From 2075400bdfef416ebcaeeee9255fcbc436a4ee7a Mon Sep 17 00:00:00 2001 From: Mason Tejera Date: Thu, 4 Jan 2024 11:42:54 -0800 Subject: [PATCH 1/5] Add new components --- .../react-nav-preview/src/NavCategory.ts | 1 + .../react-nav-preview/src/NavSubItemGroup.ts | 1 + .../NavCategory/NavCategory.test.tsx | 9 +++++ .../components/NavCategory/NavCategory.tsx | 22 ++++++++++++ .../NavCategory/NavCategory.types.ts | 17 ++++++++++ .../src/components/NavCategory/index.ts | 5 +++ .../NavCategory/renderNavCategory.tsx | 15 ++++++++ .../components/NavCategory/useNavCategory.ts | 31 +++++++++++++++++ .../useNavCategoryStyles.styles.ts | 33 ++++++++++++++++++ .../src/components/NavCategoryItem/index.ts | 10 +++--- .../NavSubItemGroup/NavSubItemGroup.test.tsx | 9 +++++ .../NavSubItemGroup/NavSubItemGroup.tsx | 22 ++++++++++++ .../NavSubItemGroup/NavSubItemGroup.types.ts | 17 ++++++++++ .../src/components/NavSubItemGroup/index.ts | 5 +++ .../NavSubItemGroup/renderNavSubItemGroup.tsx | 15 ++++++++ .../NavSubItemGroup/useNavSubItemGroup.ts | 34 +++++++++++++++++++ .../useNavSubItemGroupStyles.styles.ts | 33 ++++++++++++++++++ .../react-nav-preview/src/index.ts | 16 +++++++++ .../NavCategory/NavCategoryBestPractices.md | 5 +++ .../NavCategoryDefault.stories.tsx | 5 +++ .../NavCategory/NavCategoryDescription.md | 0 .../stories/NavCategory/index.stories.tsx | 18 ++++++++++ .../NavSubItemGroupBestPractices.md | 5 +++ .../NavSubItemGroupDefault.stories.tsx | 5 +++ .../NavSubItemGroupDescription.md | 0 .../stories/NavSubItemGroup/index.stories.tsx | 18 ++++++++++ 26 files changed, 346 insertions(+), 5 deletions(-) create mode 100644 packages/react-components/react-nav-preview/src/NavCategory.ts create mode 100644 packages/react-components/react-nav-preview/src/NavSubItemGroup.ts create mode 100644 packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.test.tsx create mode 100644 packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.tsx create mode 100644 packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.types.ts create mode 100644 packages/react-components/react-nav-preview/src/components/NavCategory/index.ts create mode 100644 packages/react-components/react-nav-preview/src/components/NavCategory/renderNavCategory.tsx create mode 100644 packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategory.ts create mode 100644 packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategoryStyles.styles.ts create mode 100644 packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.test.tsx create mode 100644 packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.tsx create mode 100644 packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.types.ts create mode 100644 packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts create mode 100644 packages/react-components/react-nav-preview/src/components/NavSubItemGroup/renderNavSubItemGroup.tsx create mode 100644 packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroup.ts create mode 100644 packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.ts create mode 100644 packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryBestPractices.md create mode 100644 packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDefault.stories.tsx create mode 100644 packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDescription.md create mode 100644 packages/react-components/react-nav-preview/stories/NavCategory/index.stories.tsx create mode 100644 packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupBestPractices.md create mode 100644 packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDefault.stories.tsx create mode 100644 packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDescription.md create mode 100644 packages/react-components/react-nav-preview/stories/NavSubItemGroup/index.stories.tsx diff --git a/packages/react-components/react-nav-preview/src/NavCategory.ts b/packages/react-components/react-nav-preview/src/NavCategory.ts new file mode 100644 index 0000000000000..9a355beb78b46 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/NavCategory.ts @@ -0,0 +1 @@ +export * from './components/NavCategory/index'; diff --git a/packages/react-components/react-nav-preview/src/NavSubItemGroup.ts b/packages/react-components/react-nav-preview/src/NavSubItemGroup.ts new file mode 100644 index 0000000000000..5861ea57dc276 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/NavSubItemGroup.ts @@ -0,0 +1 @@ +export * from './components/NavSubItemGroup/index'; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.test.tsx b/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.test.tsx new file mode 100644 index 0000000000000..06111b1ddb8a1 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.test.tsx @@ -0,0 +1,9 @@ +import { isConformant } from '../../testing/isConformant'; +import { NavCategory } from './NavCategory'; + +describe('NavCategory', () => { + isConformant({ + Component: NavCategory, + displayName: 'NavCategory', + }); +}); diff --git a/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.tsx b/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.tsx new file mode 100644 index 0000000000000..be9524e083736 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type { ForwardRefComponent } from '@fluentui/react-utilities'; +// import { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts'; +import { useNavCategory_unstable } from './useNavCategory'; +import { renderNavCategory_unstable } from './renderNavCategory'; +import { useNavCategoryStyles_unstable } from './useNavCategoryStyles.styles'; +import type { NavCategoryProps } from './NavCategory.types'; + +/** + * NavCategory component - TODO: add more docs + */ +export const NavCategory: ForwardRefComponent = React.forwardRef((props, ref) => { + const state = useNavCategory_unstable(props, ref); + + useNavCategoryStyles_unstable(state); + // TODO update types in packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/CustomStyleHooksContext.ts + // https://github.com/microsoft/fluentui/blob/master/rfcs/react-components/convergence/custom-styling.md + // useCustomStyleHook_unstable('useNavCategoryStyles_unstable')(state); + return renderNavCategory_unstable(state); +}); + +NavCategory.displayName = 'NavCategory'; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.types.ts b/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.types.ts new file mode 100644 index 0000000000000..9255f3b5f7749 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.types.ts @@ -0,0 +1,17 @@ +import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities'; + +export type NavCategorySlots = { + root: Slot<'div'>; +}; + +/** + * NavCategory Props + */ +export type NavCategoryProps = ComponentProps & {}; + +/** + * State used in rendering NavCategory + */ +export type NavCategoryState = ComponentState; +// TODO: Remove semicolon from previous line, uncomment next line, and provide union of props to pick from NavCategoryProps. +// & Required> diff --git a/packages/react-components/react-nav-preview/src/components/NavCategory/index.ts b/packages/react-components/react-nav-preview/src/components/NavCategory/index.ts new file mode 100644 index 0000000000000..afdeef6c44adf --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavCategory/index.ts @@ -0,0 +1,5 @@ +export { NavCategory } from './NavCategory'; +export type { NavCategorySlots, NavCategoryProps, NavCategoryState } from './NavCategory.types'; +export { renderNavCategory_unstable } from './renderNavCategory'; +export { useNavCategory_unstable } from './useNavCategory'; +export { useNavCategoryStyles_unstable } from './useNavCategoryStyles.styles'; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategory/renderNavCategory.tsx b/packages/react-components/react-nav-preview/src/components/NavCategory/renderNavCategory.tsx new file mode 100644 index 0000000000000..b7181b758e0c9 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavCategory/renderNavCategory.tsx @@ -0,0 +1,15 @@ +/** @jsxRuntime automatic */ +/** @jsxImportSource @fluentui/react-jsx-runtime */ + +import { assertSlots } from '@fluentui/react-utilities'; +import type { NavCategoryState, NavCategorySlots } from './NavCategory.types'; + +/** + * Render the final JSX of NavCategory + */ +export const renderNavCategory_unstable = (state: NavCategoryState) => { + assertSlots(state); + + // TODO Add additional slots in the appropriate place + return ; +}; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategory.ts b/packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategory.ts new file mode 100644 index 0000000000000..6be050e8b4e6c --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategory.ts @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { getIntrinsicElementProps, slot } from '@fluentui/react-utilities'; +import type { NavCategoryProps, NavCategoryState } from './NavCategory.types'; + +/** + * Create the state required to render NavCategory. + * + * The returned state can be modified with hooks such as useNavCategoryStyles_unstable, + * before being passed to renderNavCategory_unstable. + * + * @param props - props from this instance of NavCategory + * @param ref - reference to root HTMLDivElement of NavCategory + */ +export const useNavCategory_unstable = (props: NavCategoryProps, ref: React.Ref): NavCategoryState => { + return { + // TODO add appropriate props/defaults + components: { + // TODO add each slot's element type or component + root: 'div', + }, + // TODO add appropriate slots, for example: + // mySlot: resolveShorthand(props.mySlot), + root: slot.always( + getIntrinsicElementProps('div', { + ref, + ...props, + }), + { elementType: 'div' }, + ), + }; +}; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategoryStyles.styles.ts b/packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategoryStyles.styles.ts new file mode 100644 index 0000000000000..6afb3db11b4c3 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategoryStyles.styles.ts @@ -0,0 +1,33 @@ +import { makeStyles, mergeClasses } from '@griffel/react'; +import type { SlotClassNames } from '@fluentui/react-utilities'; +import type { NavCategorySlots, NavCategoryState } from './NavCategory.types'; + +export const navCategoryClassNames: SlotClassNames = { + root: 'fui-NavCategory', + // TODO: add class names for all slots on NavCategorySlots. + // Should be of the form `: 'fui-NavCategory__` +}; + +/** + * Styles for the root slot + */ +const useStyles = makeStyles({ + root: { + // TODO Add default styles for the root element + }, + + // TODO add additional classes for different states and/or slots +}); + +/** + * Apply styling to the NavCategory slots based on the state + */ +export const useNavCategoryStyles_unstable = (state: NavCategoryState): NavCategoryState => { + const styles = useStyles(); + state.root.className = mergeClasses(navCategoryClassNames.root, styles.root, state.root.className); + + // TODO Add class names to slots, for example: + // state.mySlot.className = mergeClasses(styles.mySlot, state.mySlot.className); + + return state; +}; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts b/packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts index 720acffd9a44d..7675fb589222a 100644 --- a/packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts +++ b/packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts @@ -1,5 +1,5 @@ -export * from './NavCategoryItem'; -export * from './NavCategoryItem.types'; -export * from './renderNavCategoryItem'; -export * from './useNavCategoryItem'; -export * from './useNavCategoryItem.styles'; +export { NavCategoryItem } from './NavCategoryItem'; +export type { NavCategoryItemSlots, NavCategoryItemProps, NavCategoryItemState } from './NavCategoryItem.types'; +export { renderNavCategoryItem_unstable } from './renderNavCategoryItem'; +export { useNavCategoryItem_unstable } from './useNavCategoryItem'; +export { useNavCategoryItemStyles_unstable } from './useNavCategoryItem.styles'; diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.test.tsx b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.test.tsx new file mode 100644 index 0000000000000..5c36d7e19bf08 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.test.tsx @@ -0,0 +1,9 @@ +import { isConformant } from '../../testing/isConformant'; +import { NavSubItemGroup } from './NavSubItemGroup'; + +describe('NavSubItemGroup', () => { + isConformant({ + Component: NavSubItemGroup, + displayName: 'NavSubItemGroup', + }); +}); diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.tsx b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.tsx new file mode 100644 index 0000000000000..40190ec31ae31 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.tsx @@ -0,0 +1,22 @@ +import * as React from 'react'; +import type { ForwardRefComponent } from '@fluentui/react-utilities'; +// import { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts'; +import { useNavSubItemGroup_unstable } from './useNavSubItemGroup'; +import { renderNavSubItemGroup_unstable } from './renderNavSubItemGroup'; +import { useNavSubItemGroupStyles_unstable } from './useNavSubItemGroupStyles.styles'; +import type { NavSubItemGroupProps } from './NavSubItemGroup.types'; + +/** + * NavSubItemGroup component - TODO: add more docs + */ +export const NavSubItemGroup: ForwardRefComponent = React.forwardRef((props, ref) => { + const state = useNavSubItemGroup_unstable(props, ref); + + useNavSubItemGroupStyles_unstable(state); + // TODO update types in packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/CustomStyleHooksContext.ts + // https://github.com/microsoft/fluentui/blob/master/rfcs/react-components/convergence/custom-styling.md + // useCustomStyleHook_unstable('useNavSubItemGroupStyles_unstable')(state); + return renderNavSubItemGroup_unstable(state); +}); + +NavSubItemGroup.displayName = 'NavSubItemGroup'; diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.types.ts b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.types.ts new file mode 100644 index 0000000000000..30ba79cfa89c1 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.types.ts @@ -0,0 +1,17 @@ +import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities'; + +export type NavSubItemGroupSlots = { + root: Slot<'div'>; +}; + +/** + * NavSubItemGroup Props + */ +export type NavSubItemGroupProps = ComponentProps & {}; + +/** + * State used in rendering NavSubItemGroup + */ +export type NavSubItemGroupState = ComponentState; +// TODO: Remove semicolon from previous line, uncomment next line, and provide union of props to pick from NavSubItemGroupProps. +// & Required> diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts new file mode 100644 index 0000000000000..099a9bc664fae --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts @@ -0,0 +1,5 @@ +export { NavSubItemGroup } from './NavSubItemGroup'; +export type { NavSubItemGroupSlots, NavSubItemGroupProps, NavSubItemGroupState } from './NavSubItemGroup.types'; +export { renderNavSubItemGroup_unstable } from './renderNavSubItemGroup'; +export { useNavSubItemGroup_unstable } from './useNavSubItemGroup'; +export { useNavSubItemGroupStyles_unstable } from './useNavSubItemGroupStyles.styles'; diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/renderNavSubItemGroup.tsx b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/renderNavSubItemGroup.tsx new file mode 100644 index 0000000000000..e6aa1e875d4f1 --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/renderNavSubItemGroup.tsx @@ -0,0 +1,15 @@ +/** @jsxRuntime automatic */ +/** @jsxImportSource @fluentui/react-jsx-runtime */ + +import { assertSlots } from '@fluentui/react-utilities'; +import type { NavSubItemGroupState, NavSubItemGroupSlots } from './NavSubItemGroup.types'; + +/** + * Render the final JSX of NavSubItemGroup + */ +export const renderNavSubItemGroup_unstable = (state: NavSubItemGroupState) => { + assertSlots(state); + + // TODO Add additional slots in the appropriate place + return ; +}; diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroup.ts b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroup.ts new file mode 100644 index 0000000000000..1d67b2442aa7f --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroup.ts @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { getIntrinsicElementProps, slot } from '@fluentui/react-utilities'; +import type { NavSubItemGroupProps, NavSubItemGroupState } from './NavSubItemGroup.types'; + +/** + * Create the state required to render NavSubItemGroup. + * + * The returned state can be modified with hooks such as useNavSubItemGroupStyles_unstable, + * before being passed to renderNavSubItemGroup_unstable. + * + * @param props - props from this instance of NavSubItemGroup + * @param ref - reference to root HTMLDivElement of NavSubItemGroup + */ +export const useNavSubItemGroup_unstable = ( + props: NavSubItemGroupProps, + ref: React.Ref, +): NavSubItemGroupState => { + return { + // TODO add appropriate props/defaults + components: { + // TODO add each slot's element type or component + root: 'div', + }, + // TODO add appropriate slots, for example: + // mySlot: resolveShorthand(props.mySlot), + root: slot.always( + getIntrinsicElementProps('div', { + ref, + ...props, + }), + { elementType: 'div' }, + ), + }; +}; diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.ts b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.ts new file mode 100644 index 0000000000000..9cdc5324882fe --- /dev/null +++ b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.ts @@ -0,0 +1,33 @@ +import { makeStyles, mergeClasses } from '@griffel/react'; +import type { SlotClassNames } from '@fluentui/react-utilities'; +import type { NavSubItemGroupSlots, NavSubItemGroupState } from './NavSubItemGroup.types'; + +export const navSubItemGroupClassNames: SlotClassNames = { + root: 'fui-NavSubItemGroup', + // TODO: add class names for all slots on NavSubItemGroupSlots. + // Should be of the form `: 'fui-NavSubItemGroup__` +}; + +/** + * Styles for the root slot + */ +const useStyles = makeStyles({ + root: { + // TODO Add default styles for the root element + }, + + // TODO add additional classes for different states and/or slots +}); + +/** + * Apply styling to the NavSubItemGroup slots based on the state + */ +export const useNavSubItemGroupStyles_unstable = (state: NavSubItemGroupState): NavSubItemGroupState => { + const styles = useStyles(); + state.root.className = mergeClasses(navSubItemGroupClassNames.root, styles.root, state.root.className); + + // TODO Add class names to slots, for example: + // state.mySlot.className = mergeClasses(styles.mySlot, state.mySlot.className); + + return state; +}; diff --git a/packages/react-components/react-nav-preview/src/index.ts b/packages/react-components/react-nav-preview/src/index.ts index 76bf8f006eecf..9861031f3f1ef 100644 --- a/packages/react-components/react-nav-preview/src/index.ts +++ b/packages/react-components/react-nav-preview/src/index.ts @@ -27,3 +27,19 @@ export type { NavSubItemSlots, NavSubItemProps, NavSubItemState } from './compon export { renderNavSubItem_unstable } from './components/NavSubItem/renderNavSubItem'; export { useNavSubItem_unstable } from './components/NavSubItem/useNavSubItem'; export { useNavSubItemStyles_unstable, navSubItemClassNames } from './components/NavSubItem/useNavSubItemStyles.styles'; + +export { NavSubItemGroup } from './components/NavSubItemGroup/NavSubItemGroup'; +export type { + NavSubItemGroupSlots, + NavSubItemGroupProps, + NavSubItemGroupState, +} from './components/NavSubItemGroup/NavSubItemGroup.types'; +export { renderNavSubItemGroup_unstable } from './components/NavSubItemGroup/renderNavSubItemGroup'; +export { useNavSubItemGroup_unstable } from './components/NavSubItemGroup/useNavSubItemGroup'; +export { useNavSubItemGroupStyles_unstable } from './components/NavSubItemGroup/useNavSubItemGroupStyles.styles'; + +export { NavCategory } from './components/NavCategory/NavCategory'; +export type { NavCategorySlots, NavCategoryProps, NavCategoryState } from './components/NavCategory/NavCategory.types'; +export { renderNavCategory_unstable } from './components/NavCategory/renderNavCategory'; +export { useNavCategory_unstable } from './components/NavCategory/useNavCategory'; +export { useNavCategoryStyles_unstable } from './components/NavCategory/useNavCategoryStyles.styles'; diff --git a/packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryBestPractices.md b/packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryBestPractices.md new file mode 100644 index 0000000000000..08ff8ddeeb5f8 --- /dev/null +++ b/packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryBestPractices.md @@ -0,0 +1,5 @@ +## Best practices + +### Do + +### Don't diff --git a/packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDefault.stories.tsx b/packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDefault.stories.tsx new file mode 100644 index 0000000000000..f14e6c5b6151e --- /dev/null +++ b/packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDefault.stories.tsx @@ -0,0 +1,5 @@ +import * as React from 'react'; +import { NavCategory } from '@fluentui/react-nav-preview'; +import type { NavCategoryProps } from '@fluentui/react-nav-preview'; + +export const Default = (props: Partial) => ; diff --git a/packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDescription.md b/packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDescription.md new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/packages/react-components/react-nav-preview/stories/NavCategory/index.stories.tsx b/packages/react-components/react-nav-preview/stories/NavCategory/index.stories.tsx new file mode 100644 index 0000000000000..5c05416a2c4db --- /dev/null +++ b/packages/react-components/react-nav-preview/stories/NavCategory/index.stories.tsx @@ -0,0 +1,18 @@ +import { NavCategory } from '@fluentui/react-nav-preview'; + +import descriptionMd from './NavCategoryDescription.md'; +import bestPracticesMd from './NavCategoryBestPractices.md'; + +export { Default } from './NavCategoryDefault.stories'; + +export default { + title: 'Preview Components/NavCategory', + component: NavCategory, + parameters: { + docs: { + description: { + component: [descriptionMd, bestPracticesMd].join('\n'), + }, + }, + }, +}; diff --git a/packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupBestPractices.md b/packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupBestPractices.md new file mode 100644 index 0000000000000..08ff8ddeeb5f8 --- /dev/null +++ b/packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupBestPractices.md @@ -0,0 +1,5 @@ +## Best practices + +### Do + +### Don't diff --git a/packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDefault.stories.tsx b/packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDefault.stories.tsx new file mode 100644 index 0000000000000..6eec96f4c7e13 --- /dev/null +++ b/packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDefault.stories.tsx @@ -0,0 +1,5 @@ +import * as React from 'react'; +import { NavSubItemGroup } from '@fluentui/react-nav-preview'; +import type { NavSubItemGroupProps } from '@fluentui/react-nav-preview'; + +export const Default = (props: Partial) => ; diff --git a/packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDescription.md b/packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDescription.md new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/packages/react-components/react-nav-preview/stories/NavSubItemGroup/index.stories.tsx b/packages/react-components/react-nav-preview/stories/NavSubItemGroup/index.stories.tsx new file mode 100644 index 0000000000000..bda49566197c8 --- /dev/null +++ b/packages/react-components/react-nav-preview/stories/NavSubItemGroup/index.stories.tsx @@ -0,0 +1,18 @@ +import { NavSubItemGroup } from '@fluentui/react-nav-preview'; + +import descriptionMd from './NavSubItemGroupDescription.md'; +import bestPracticesMd from './NavSubItemGroupBestPractices.md'; + +export { Default } from './NavSubItemGroupDefault.stories'; + +export default { + title: 'Preview Components/NavSubItemGroup', + component: NavSubItemGroup, + parameters: { + docs: { + description: { + component: [descriptionMd, bestPracticesMd].join('\n'), + }, + }, + }, +}; From ef41a7532e2b526a84e3d9af225df4a9b9dec5b6 Mon Sep 17 00:00:00 2001 From: Mason Tejera Date: Thu, 4 Jan 2024 13:26:33 -0800 Subject: [PATCH 2/5] update index files --- .../src/components/Nav/index.ts | 11 +++-- .../src/components/NavCategory/index.ts | 2 +- .../src/components/NavCategoryItem/index.ts | 2 +- .../src/components/NavSubItemGroup/index.ts | 2 +- .../react-nav-preview/src/index.ts | 48 +++++++++++-------- 5 files changed, 38 insertions(+), 27 deletions(-) diff --git a/packages/react-components/react-nav-preview/src/components/Nav/index.ts b/packages/react-components/react-nav-preview/src/components/Nav/index.ts index 2c7d5ea50a622..a95587cb093b9 100644 --- a/packages/react-components/react-nav-preview/src/components/Nav/index.ts +++ b/packages/react-components/react-nav-preview/src/components/Nav/index.ts @@ -1,5 +1,6 @@ -export * from './Nav'; -export * from './Nav.types'; -export * from './renderNav'; -export * from './useNav'; -export * from './useNavStyles.styles'; +export { Nav } from './Nav'; +// don't export evenData and EventHandler since those will be added to react-utilities +export type { NavSlots, NavProps, OnNavItemSelectData, NavState } from './Nav.types'; +export { renderNav_unstable } from './renderNav'; +export { useNav_unstable } from './useNav'; +export { useNavStyles_unstable, navClassNames } from './useNavStyles.styles'; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategory/index.ts b/packages/react-components/react-nav-preview/src/components/NavCategory/index.ts index afdeef6c44adf..09f43af2a3f04 100644 --- a/packages/react-components/react-nav-preview/src/components/NavCategory/index.ts +++ b/packages/react-components/react-nav-preview/src/components/NavCategory/index.ts @@ -2,4 +2,4 @@ export { NavCategory } from './NavCategory'; export type { NavCategorySlots, NavCategoryProps, NavCategoryState } from './NavCategory.types'; export { renderNavCategory_unstable } from './renderNavCategory'; export { useNavCategory_unstable } from './useNavCategory'; -export { useNavCategoryStyles_unstable } from './useNavCategoryStyles.styles'; +export { useNavCategoryStyles_unstable, navCategoryClassNames } from './useNavCategoryStyles.styles'; diff --git a/packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts b/packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts index 7675fb589222a..68a951f74a519 100644 --- a/packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts +++ b/packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts @@ -2,4 +2,4 @@ export { NavCategoryItem } from './NavCategoryItem'; export type { NavCategoryItemSlots, NavCategoryItemProps, NavCategoryItemState } from './NavCategoryItem.types'; export { renderNavCategoryItem_unstable } from './renderNavCategoryItem'; export { useNavCategoryItem_unstable } from './useNavCategoryItem'; -export { useNavCategoryItemStyles_unstable } from './useNavCategoryItem.styles'; +export { useNavCategoryItemStyles_unstable, navCategoryItemClassNames } from './useNavCategoryItem.styles'; diff --git a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts index 099a9bc664fae..eb77cf3395e96 100644 --- a/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts +++ b/packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts @@ -2,4 +2,4 @@ export { NavSubItemGroup } from './NavSubItemGroup'; export type { NavSubItemGroupSlots, NavSubItemGroupProps, NavSubItemGroupState } from './NavSubItemGroup.types'; export { renderNavSubItemGroup_unstable } from './renderNavSubItemGroup'; export { useNavSubItemGroup_unstable } from './useNavSubItemGroup'; -export { useNavSubItemGroupStyles_unstable } from './useNavSubItemGroupStyles.styles'; +export { useNavSubItemGroupStyles_unstable, navSubItemGroupClassNames } from './useNavSubItemGroupStyles.styles'; diff --git a/packages/react-components/react-nav-preview/src/index.ts b/packages/react-components/react-nav-preview/src/index.ts index 9861031f3f1ef..5683f9a6756fb 100644 --- a/packages/react-components/react-nav-preview/src/index.ts +++ b/packages/react-components/react-nav-preview/src/index.ts @@ -1,6 +1,15 @@ -export { Nav, navClassNames, renderNav_unstable, useNav_unstable } from './Nav'; -export type { NavProps, NavSlots, NavState } from './Nav'; -// these should probably be explicity as they are above. +export { Nav, renderNav_unstable, useNav_unstable, useNavStyles_unstable, navClassNames } from './components/Nav/index'; +export type { NavProps, NavSlots, NavState } from './components/Nav/index'; + +export { + NavCategory, + renderNavCategory_unstable, + useNavCategory_unstable, + useNavCategoryStyles_unstable, + navCategoryClassNames, +} from './components/NavCategory/index'; +export type { NavCategorySlots, NavCategoryProps, NavCategoryState } from './components/NavCategory/index'; + export { NavCategoryItem, navCategoryItemClassNames, @@ -13,6 +22,7 @@ export type { NavCategoryItemSlots, NavCategoryItemState, } from './components/NavCategoryItem/index'; + export { NavProvider, useNavContext_unstable } from './components/NavContext'; export type { NavItemValue, @@ -22,24 +32,24 @@ export type { RegisterNavItemEventHandler, } from './components/NavContext.types'; -export { NavSubItem } from './components/NavSubItem/NavSubItem'; -export type { NavSubItemSlots, NavSubItemProps, NavSubItemState } from './components/NavSubItem/NavSubItem.types'; -export { renderNavSubItem_unstable } from './components/NavSubItem/renderNavSubItem'; -export { useNavSubItem_unstable } from './components/NavSubItem/useNavSubItem'; -export { useNavSubItemStyles_unstable, navSubItemClassNames } from './components/NavSubItem/useNavSubItemStyles.styles'; +export { + NavSubItem, + renderNavSubItem_unstable, + useNavSubItem_unstable, + useNavSubItemStyles_unstable, + navSubItemClassNames, +} from './components/NavSubItem/index'; +export type { NavSubItemSlots, NavSubItemProps, NavSubItemState } from './components/NavSubItem/index'; -export { NavSubItemGroup } from './components/NavSubItemGroup/NavSubItemGroup'; +export { + NavSubItemGroup, + renderNavSubItemGroup_unstable, + useNavSubItemGroup_unstable, + useNavSubItemGroupStyles_unstable, + navSubItemGroupClassNames, +} from './components/NavSubItemGroup/index'; export type { NavSubItemGroupSlots, NavSubItemGroupProps, NavSubItemGroupState, -} from './components/NavSubItemGroup/NavSubItemGroup.types'; -export { renderNavSubItemGroup_unstable } from './components/NavSubItemGroup/renderNavSubItemGroup'; -export { useNavSubItemGroup_unstable } from './components/NavSubItemGroup/useNavSubItemGroup'; -export { useNavSubItemGroupStyles_unstable } from './components/NavSubItemGroup/useNavSubItemGroupStyles.styles'; - -export { NavCategory } from './components/NavCategory/NavCategory'; -export type { NavCategorySlots, NavCategoryProps, NavCategoryState } from './components/NavCategory/NavCategory.types'; -export { renderNavCategory_unstable } from './components/NavCategory/renderNavCategory'; -export { useNavCategory_unstable } from './components/NavCategory/useNavCategory'; -export { useNavCategoryStyles_unstable } from './components/NavCategory/useNavCategoryStyles.styles'; +} from './components/NavSubItemGroup/index'; From 777ba95ce482e9149b67d316ecd723d743035fee Mon Sep 17 00:00:00 2001 From: Mason Tejera Date: Thu, 4 Jan 2024 13:27:17 -0800 Subject: [PATCH 3/5] post build script --- .nx/cache/file-map.json | 73928 +++++++ .nx/cache/lockfile.hash | 1 + .../project-graph.html | 35 + .../static/3rdpartylicenses.txt | 665 + .../static/environment.js | 148884 +++++++++++++++ .../static/favicon.ico | Bin 0 -> 15086 bytes .../nx-console-project-graph/static/main.js | 43344 +++++ .../static/polyfills.js | 6951 + .../static/runtime.js | 75 + .../static/styles.css | 1233 + .../nx-console-project-graph/static/styles.js | 9 + .nx/cache/parsed-lock-file.json | 86639 +++++++++ .nx/cache/project-graph.json | 101797 ++++++++++ .nx/cache/run.json | 43 + .../terminalOutputs/12681223089485204946 | 8 + .nx/cache/terminalOutputs/1491914349901281437 | 8 + .nx/cache/terminalOutputs/6676604441482990855 | 8 + .../etc/react-nav-preview.api.md | 55 + 18 files changed, 463683 insertions(+) create mode 100644 .nx/cache/file-map.json create mode 100644 .nx/cache/lockfile.hash create mode 100644 .nx/cache/nx-console-project-graph/project-graph.html create mode 100644 .nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt create mode 100644 .nx/cache/nx-console-project-graph/static/environment.js create mode 100644 .nx/cache/nx-console-project-graph/static/favicon.ico create mode 100644 .nx/cache/nx-console-project-graph/static/main.js create mode 100644 .nx/cache/nx-console-project-graph/static/polyfills.js create mode 100644 .nx/cache/nx-console-project-graph/static/runtime.js create mode 100644 .nx/cache/nx-console-project-graph/static/styles.css create mode 100644 .nx/cache/nx-console-project-graph/static/styles.js create mode 100644 .nx/cache/parsed-lock-file.json create mode 100644 .nx/cache/project-graph.json create mode 100644 .nx/cache/run.json create mode 100644 .nx/cache/terminalOutputs/12681223089485204946 create mode 100644 .nx/cache/terminalOutputs/1491914349901281437 create mode 100644 .nx/cache/terminalOutputs/6676604441482990855 diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json new file mode 100644 index 0000000000000..ec874d0abad9f --- /dev/null +++ b/.nx/cache/file-map.json @@ -0,0 +1,73928 @@ +{ + "version": "6.0", + "nxVersion": "16.10.0", + "deps": { + "copy-to-clipboard": "3.3.1", + "@actions/core": "1.9.1", + "@actions/github": "5.0.3", + "@babel/core": "7.23.2", + "@babel/generator": "7.23.0", + "@babel/parser": "7.23.0", + "@babel/plugin-proposal-class-properties": "7.18.6", + "@babel/plugin-proposal-decorators": "7.23.2", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6", + "@babel/plugin-proposal-optional-chaining": "7.21.0", + "@babel/plugin-syntax-dynamic-import": "7.8.3", + "@babel/plugin-syntax-object-rest-spread": "7.8.3", + "@babel/plugin-transform-runtime": "7.23.2", + "@babel/preset-env": "7.23.2", + "@babel/preset-react": "7.22.15", + "@babel/preset-typescript": "7.23.2", + "@babel/register": "7.22.15", + "@babel/standalone": "7.23.2", + "@babel/traverse": "7.23.2", + "@babel/types": "7.23.0", + "@cactuslab/usepubsub": "^1.0.2", + "@ctrl/tinycolor": "3.3.4", + "@cypress/react": "5.12.4", + "@cypress/webpack-dev-server": "1.8.3", + "@fluentui/react-icons": "^2.0.217", + "@griffel/babel-preset": "1.4.20", + "@griffel/eslint-plugin": "^1.2.0", + "@griffel/jest-serializer": "1.1.16", + "@griffel/react": "^1.5.14", + "@griffel/shadow-dom": "0.1.5", + "@griffel/webpack-extraction-plugin": "0.3.18", + "@griffel/webpack-loader": "2.1.20", + "@jest/reporters": "29.7.0", + "@mdx-js/loader": "1.6.22", + "@microsoft/api-extractor": "7.31.2", + "@microsoft/api-extractor-model": "7.24.2", + "@microsoft/eslint-plugin-sdl": "0.1.9", + "@microsoft/load-themed-styles": "1.10.26", + "@microsoft/loader-load-themed-styles": "2.0.17", + "@microsoft/tsdoc": "0.14.1", + "@nx/devkit": "16.10.0", + "@nx/jest": "16.10.0", + "@nx/js": "16.10.0", + "@nx/node": "16.10.0", + "@nx/plugin": "16.10.0", + "@nx/workspace": "16.10.0", + "@octokit/rest": "18.12.0", + "@phenomnomnominal/tsquery": "6.1.2", + "@storybook/addon-a11y": "6.5.15", + "@storybook/addon-actions": "6.5.15", + "@storybook/addon-docs": "6.5.15", + "@storybook/addon-essentials": "6.5.15", + "@storybook/addon-knobs": "6.4.0", + "@storybook/addon-links": "6.5.15", + "@storybook/addons": "6.5.15", + "@storybook/api": "6.5.15", + "@storybook/builder-webpack5": "6.5.15", + "@storybook/channels": "6.5.15", + "@storybook/client-api": "6.5.15", + "@storybook/components": "6.5.15", + "@storybook/core": "6.5.15", + "@storybook/core-events": "6.5.15", + "@storybook/manager-webpack5": "6.5.15", + "@storybook/react": "6.5.15", + "@storybook/theming": "6.5.15", + "@swc/cli": "0.1.62", + "@swc/core": "1.3.87", + "@swc/helpers": "0.5.1", + "@testing-library/dom": "8.11.3", + "@testing-library/jest-dom": "5.16.5", + "@testing-library/react": "12.1.2", + "@testing-library/react-hooks": "7.0.2", + "@testing-library/user-event": "13.5.0", + "@tsconfig/node14": "1.0.3", + "@types/babel__core": "7.20.3", + "@types/babel__helper-plugin-utils": "7.10.2", + "@types/babel__register": "7.17.2", + "@types/babel__traverse": "7.20.3", + "@types/chrome-remote-interface": "0.30.0", + "@types/circular-dependency-plugin": "5.0.5", + "@types/copy-webpack-plugin": "6.4.0", + "@types/dedent": "0.7.0", + "@types/doctrine": "0.0.5", + "@types/ejs": "3.1.2", + "@types/enzyme": "3.10.7", + "@types/eslint": "7.2.13", + "@types/express": "4.17.15", + "@types/fs-extra": "8.0.1", + "@types/glob": "7.1.1", + "@types/graphviz": "0.0.34", + "@types/gulp": "4.0.9", + "@types/gulp-babel": "6.1.32", + "@types/gulp-cache": "0.4.5", + "@types/gulp-remember": "0.0.31", + "@types/gulp-sourcemaps": "0.0.35", + "@types/gulp-util": "3.0.36", + "@types/jest": "29.5.5", + "@types/jest-axe": "3.5.5", + "@types/jju": "1.4.1", + "@types/json-schema": "^7.0.8", + "@types/lerna-alias": "3.0.0", + "@types/loader-utils": "2.0.3", + "@types/lodash": "4.14.182", + "@types/markdown-table": "2.0.0", + "@types/micromatch": "4.0.2", + "@types/node": "18.18.6", + "@types/prettier": "2.7.2", + "@types/progress": "2.0.5", + "@types/prompts": "2.4.1", + "@types/react": "17.0.44", + "@types/react-dom": "17.0.15", + "@types/react-is": "17.0.3", + "@types/react-test-renderer": "17.0.2", + "@types/react-transition-group": "4.4.6", + "@types/request-promise-native": "1.0.18", + "@types/scheduler": "0.16.2", + "@types/semver": "^6.2.0", + "@types/tmp": "0.2.0", + "@types/vinyl": "2.0.7", + "@types/webpack-bundle-analyzer": "4.4.3", + "@types/webpack-dev-middleware": "4.1.0", + "@types/webpack-env": "1.16.0", + "@types/webpack-hot-middleware": "2.25.6", + "@types/yargs": "13.0.11", + "@types/yargs-unparser": "2.0.1", + "@typescript-eslint/eslint-plugin": "4.22.0", + "@typescript-eslint/experimental-utils": "4.22.0", + "@typescript-eslint/parser": "4.22.0", + "@wojtekmaj/enzyme-adapter-react-17": "0.6.7", + "ajv": "8.4.0", + "autoprefixer": "10.2.1", + "babel-jest": "29.7.0", + "babel-loader": "8.3.0", + "babel-plugin-annotate-pure-calls": "0.4.0", + "babel-plugin-annotate-pure-imports": "1.0.0-1", + "babel-plugin-iife-wrap-react-components": "1.0.0-5", + "babel-plugin-lodash": "3.3.4", + "babel-plugin-module-resolver": "4.1.0", + "babel-plugin-tester": "10.1.0", + "beachball": "2.31.0", + "chalk": "4.1.0", + "chrome-remote-interface": "0.28.2", + "ci-info": "3.8.0", + "circular-dependency-plugin": "5.2.2", + "clean-css": "4.2.3", + "clean-webpack-plugin": "4.0.0", + "connect-history-api-fallback": "1.6.0", + "copy-webpack-plugin": "8.1.0", + "cross-env": "^5.1.4", + "css-loader": "5.0.1", + "cypress": "10.6.0", + "cypress-real-events": "1.7.1", + "cypress-storybook": "0.5.1", + "danger": "^11.0.0", + "dedent": "0.7.0", + "del": "6.0.0", + "doctoc": "2.0.1", + "doctrine": "3.0.0", + "dotparser": "1.1.1", + "ejs": "3.1.9", + "enquirer": "2.3.6", + "enzyme": "3.10.0", + "enzyme-to-json": "3.6.2", + "esbuild": "0.14.51", + "esbuild-loader": "3.2.0", + "eslint": "7.25.0", + "eslint-config-airbnb": "18.2.1", + "eslint-config-prettier": "8.3.0", + "eslint-import-resolver-typescript": "2.5.0", + "eslint-plugin-deprecation": "1.2.1", + "eslint-plugin-es": "4.1.0", + "eslint-plugin-import": "2.25.4", + "eslint-plugin-jest": "23.20.0", + "eslint-plugin-jsdoc": "39.9.1", + "eslint-plugin-jsx-a11y": "6.4.1", + "eslint-plugin-react": "7.26.0", + "eslint-plugin-react-hooks": "4.2.0", + "express": "4.17.3", + "extract-comments": "1.1.0", + "file-loader": "6.2.0", + "find-free-port": "2.0.0", + "flamegrill": "0.2.0", + "fork-ts-checker-webpack-plugin": "6.1.0", + "fs-extra": "8.1.0", + "geckodriver": "3.0.2", + "glob": "7.2.0", + "graphviz": "0.0.9", + "gulp": "4.0.2", + "gulp-babel": "8.0.0", + "gulp-cache": "1.1.3", + "gulp-remember": "1.0.1", + "gulp-sourcemaps": "2.6.5", + "gulp-util": "3.0.8", + "html-webpack-plugin": "5.1.0", + "ignore-not-found-export-webpack-plugin": "1.0.2", + "imports-loader": "1.2.0", + "jest": "29.7.0", + "jest-axe": "6.0.1", + "jest-cli": "29.7.0", + "jest-environment-jsdom": "29.7.0", + "jest-environment-node-single-context": "29.1.0", + "jest-snapshot": "29.7.0", + "jest-watch-typeahead": "2.2.2", + "jju": "1.4.0", + "json-schema": "0.4.0", + "json-stable-stringify-without-jsonify": "1.0.1", + "jsonc-eslint-parser": "2.3.0", + "just-scripts": "1.8.2", + "lage": "1.8.8", + "lerna": "7.1.3", + "lerna-alias": "3.0.3-0", + "license-webpack-plugin": "2.3.10", + "lint-staged": "10.2.10", + "loader-utils": "2.0.4", + "lodash": "4.17.21", + "markdown-table": "2.0.0", + "memfs": "3.2.2", + "mini-css-extract-plugin": "2.6.1", + "monosize": "0.1.0", + "monosize-storage-azure": "0.0.3", + "node-plop": "0.25.0", + "node-polyfill-webpack-plugin": "1.0.2", + "nx": "16.10.0", + "p-queue": "6.6.2", + "parallel-webpack": "2.6.0", + "parse-diff": "0.7.1", + "path-browserify": "1.0.1", + "plop": "2.6.0", + "portfinder": "1.0.28", + "postcss": "8.3.5", + "postcss-loader": "4.1.0", + "postcss-modules": "4.1.3", + "prettier": "2.8.8", + "progress": "2.0.3", + "prompts": "2.4.2", + "puppeteer": "19.6.0", + "raw-loader": "4.0.2", + "react": "17.0.2", + "react-app-polyfill": "2.0.0", + "react-dom": "17.0.2", + "react-hot-loader": "4.13.0", + "react-is": "17.0.2", + "react-shadow": "20.3.0", + "react-test-renderer": "17.0.2", + "react-vis": "1.11.7", + "read-pkg-up": "7.0.1", + "replace-in-file": "6.1.0", + "request-promise-native": "1.0.9", + "resolve": "1.22.0", + "riceburn": "1.3.1", + "rollup": "2.45.2", + "rollup-plugin-commonjs": "10.1.0", + "rollup-plugin-filesize": "8.0.2", + "rollup-plugin-node-resolve": "5.2.0", + "rollup-plugin-terser": "5.3.1", + "rollup-plugin-transform-tagged-template": "0.0.3", + "rollup-plugin-typescript2": "0.27.1", + "sass": "1.49.11", + "sass-loader": "12.4.0", + "satisfied": "^1.1.1", + "scheduler": "0.20.2", + "schema-utils": "3.1.1", + "semver": "^6.2.0", + "source-map-loader": "4.0.0", + "storybook-addon-performance": "0.16.1", + "storybook-addon-swc": "1.2.0", + "storywright": "0.0.26-beta.1", + "strip-ansi": "6.0.0", + "style-loader": "2.0.0", + "swc-loader": "0.2.3", + "swc-plugin-de-indent-template-literal": "1.0.0", + "syncpack": "10.6.1", + "tachometer": "0.7.0", + "terser": "5.17.4", + "terser-webpack-plugin": "5.3.9", + "through2": "4.0.2", + "tmp": "0.2.1", + "ts-jest": "29.1.1", + "ts-loader": "9.3.1", + "ts-node": "10.9.1", + "tsconfig-paths": "4.1.0", + "tsconfig-paths-webpack-plugin": "4.0.0", + "tslib": "2.5.0", + "typescript": "4.7.4", + "vinyl": "2.2.0", + "vrscreenshotdiff": "0.0.17", + "webpack": "5.83.1", + "webpack-bundle-analyzer": "4.4.2", + "webpack-cli": "4.10.0", + "webpack-dev-middleware": "4.2.0", + "webpack-dev-server": "4.7.4", + "webpack-hot-middleware": "2.25.1", + "webpack-merge": "5.7.3", + "workspace-tools": "0.29.1", + "yargs": "13.3.2", + "yargs-parser": "13.1.2", + "yargs-unparser": "2.0.0" + }, + "pathMappings": { + "@fluentui/babel-preset-global-context": ["packages/react-components/babel-preset-global-context/src/index.ts"], + "@fluentui/babel-preset-storybook-full-source": [ + "packages/react-components/babel-preset-storybook-full-source/src/index.ts" + ], + "@fluentui/global-context": ["packages/react-components/global-context/src/index.ts"], + "@fluentui/keyboard-key": ["packages/keyboard-key/src/index.ts"], + "@fluentui/keyboard-keys": ["packages/react-components/keyboard-keys/src/index.ts"], + "@fluentui/priority-overflow": ["packages/react-components/priority-overflow/src/index.ts"], + "@fluentui/react-accordion": ["packages/react-components/react-accordion/src/index.ts"], + "@fluentui/react-alert": ["packages/react-components/react-alert/src/index.ts"], + "@fluentui/react-aria": ["packages/react-components/react-aria/src/index.ts"], + "@fluentui/react-avatar": ["packages/react-components/react-avatar/src/index.ts"], + "@fluentui/react-badge": ["packages/react-components/react-badge/src/index.ts"], + "@fluentui/react-breadcrumb": ["packages/react-components/react-breadcrumb/src/index.ts"], + "@fluentui/react-button": ["packages/react-components/react-button/src/index.ts"], + "@fluentui/react-calendar-compat": ["packages/react-components/react-calendar-compat/src/index.ts"], + "@fluentui/react-card": ["packages/react-components/react-card/src/index.ts"], + "@fluentui/react-checkbox": ["packages/react-components/react-checkbox/src/index.ts"], + "@fluentui/react-colorpicker-compat": ["packages/react-components/react-colorpicker-compat/src/index.ts"], + "@fluentui/react-combobox": ["packages/react-components/react-combobox/src/index.ts"], + "@fluentui/react-components": ["packages/react-components/react-components/src/index.ts"], + "@fluentui/react-components/unstable": ["packages/react-components/react-components/src/unstable/index.ts"], + "@fluentui/react-conformance": ["packages/react-conformance/src/index.ts"], + "@fluentui/react-conformance-griffel": ["packages/react-components/react-conformance-griffel/src/index.ts"], + "@fluentui/react-context-selector": ["packages/react-components/react-context-selector/src/index.ts"], + "@fluentui/react-datepicker-compat": ["packages/react-components/react-datepicker-compat/src/index.ts"], + "@fluentui/react-dialog": ["packages/react-components/react-dialog/src/index.ts"], + "@fluentui/react-divider": ["packages/react-components/react-divider/src/index.ts"], + "@fluentui/react-drawer": ["packages/react-components/react-drawer/src/index.ts"], + "@fluentui/react-field": ["packages/react-components/react-field/src/index.ts"], + "@fluentui/react-focus-management": ["packages/react-focus-management/src/index.ts"], + "@fluentui/react-image": ["packages/react-components/react-image/src/index.ts"], + "@fluentui/react-infobutton": ["packages/react-components/react-infobutton/src/index.ts"], + "@fluentui/react-infolabel": ["packages/react-components/react-infolabel/src/index.ts"], + "@fluentui/react-input": ["packages/react-components/react-input/src/index.ts"], + "@fluentui/react-jsx-runtime": ["packages/react-components/react-jsx-runtime/src/index.ts"], + "@fluentui/react-jsx-runtime/jsx-dev-runtime": [ + "packages/react-components/react-jsx-runtime/src/jsx-dev-runtime.ts" + ], + "@fluentui/react-jsx-runtime/jsx-runtime": ["packages/react-components/react-jsx-runtime/src/jsx-runtime.ts"], + "@fluentui/react-label": ["packages/react-components/react-label/src/index.ts"], + "@fluentui/react-link": ["packages/react-components/react-link/src/index.ts"], + "@fluentui/react-list-preview": ["packages/react-components/react-list-preview/src/index.ts"], + "@fluentui/react-menu": ["packages/react-components/react-menu/src/index.ts"], + "@fluentui/react-message-bar": ["packages/react-components/react-message-bar/src/index.ts"], + "@fluentui/react-migration-v0-v9": ["packages/react-components/react-migration-v0-v9/src/index.ts"], + "@fluentui/react-migration-v8-v9": ["packages/react-components/react-migration-v8-v9/src/index.ts"], + "@fluentui/react-motion-preview": ["packages/react-components/react-motion-preview/src/index.ts"], + "@fluentui/react-motions-preview": ["packages/react-components/react-motions-preview/src/index.ts"], + "@fluentui/react-nav-preview": ["packages/react-components/react-nav-preview/src/index.ts"], + "@fluentui/react-overflow": ["packages/react-components/react-overflow/src/index.ts"], + "@fluentui/react-persona": ["packages/react-components/react-persona/src/index.ts"], + "@fluentui/react-popover": ["packages/react-components/react-popover/src/index.ts"], + "@fluentui/react-portal": ["packages/react-components/react-portal/src/index.ts"], + "@fluentui/react-portal-compat": ["packages/react-components/react-portal-compat/src/index.ts"], + "@fluentui/react-portal-compat-context": ["packages/react-components/react-portal-compat-context/src/index.ts"], + "@fluentui/react-positioning": ["packages/react-components/react-positioning/src/index.ts"], + "@fluentui/react-progress": ["packages/react-components/react-progress/src/index.ts"], + "@fluentui/react-provider": ["packages/react-components/react-provider/src/index.ts"], + "@fluentui/react-radio": ["packages/react-components/react-radio/src/index.ts"], + "@fluentui/react-rating-preview": ["packages/react-components/react-rating-preview/src/index.ts"], + "@fluentui/react-search-preview": ["packages/react-components/react-search-preview/src/index.ts"], + "@fluentui/react-select": ["packages/react-components/react-select/src/index.ts"], + "@fluentui/react-shared-contexts": ["packages/react-components/react-shared-contexts/src/index.ts"], + "@fluentui/react-skeleton": ["packages/react-components/react-skeleton/src/index.ts"], + "@fluentui/react-slider": ["packages/react-components/react-slider/src/index.ts"], + "@fluentui/react-spinbutton": ["packages/react-components/react-spinbutton/src/index.ts"], + "@fluentui/react-spinner": ["packages/react-components/react-spinner/src/index.ts"], + "@fluentui/react-storybook-addon": ["packages/react-components/react-storybook-addon/src/index.ts"], + "@fluentui/react-storybook-addon-export-to-sandbox": [ + "packages/react-components/react-storybook-addon-export-to-sandbox/src/index.ts" + ], + "@fluentui/react-swatch-picker-preview": ["packages/react-components/react-swatch-picker-preview/src/index.ts"], + "@fluentui/react-switch": ["packages/react-components/react-switch/src/index.ts"], + "@fluentui/react-table": ["packages/react-components/react-table/src/index.ts"], + "@fluentui/react-tabs": ["packages/react-components/react-tabs/src/index.ts"], + "@fluentui/react-tabster": ["packages/react-components/react-tabster/src/index.ts"], + "@fluentui/react-tags": ["packages/react-components/react-tags/src/index.ts"], + "@fluentui/react-teaching-popover-preview": [ + "packages/react-components/react-teaching-popover-preview/src/index.ts" + ], + "@fluentui/react-text": ["packages/react-components/react-text/src/index.ts"], + "@fluentui/react-textarea": ["packages/react-components/react-textarea/src/index.ts"], + "@fluentui/react-theme": ["packages/react-components/react-theme/src/index.ts"], + "@fluentui/react-theme-sass": ["packages/react-components/react-theme-sass/src/index.ts"], + "@fluentui/react-timepicker-compat": ["packages/react-components/react-timepicker-compat/src/index.ts"], + "@fluentui/react-timepicker-compat-preview": [ + "packages/react-components/react-timepicker-compat-preview/src/index.ts" + ], + "@fluentui/react-toast": ["packages/react-components/react-toast/src/index.ts"], + "@fluentui/react-toolbar": ["packages/react-components/react-toolbar/src/index.ts"], + "@fluentui/react-tooltip": ["packages/react-components/react-tooltip/src/index.ts"], + "@fluentui/react-tree": ["packages/react-components/react-tree/src/index.ts"], + "@fluentui/react-utilities": ["packages/react-components/react-utilities/src/index.ts"], + "@fluentui/react-virtualizer": ["packages/react-components/react-virtualizer/src/index.ts"], + "@fluentui/theme-designer": ["packages/react-components/theme-designer/src/index.ts"], + "@fluentui/tokens": ["packages/tokens/src/index.ts"], + "@fluentui/workspace-plugin": ["tools/workspace-plugin/src/index.ts"] + }, + "nxJsonPlugins": [], + "pluginsConfig": { + "@nx/js": { + "analyzeSourceFiles": false + } + }, + "fileMap": { + "projectFileMap": { + "@fluentui/cra-template": [ + { + "file": "packages/cra-template/.eslintrc.json", + "hash": "13251576554014608349" + }, + { + "file": "packages/cra-template/CHANGELOG.json", + "hash": "1129702337645733471" + }, + { + "file": "packages/cra-template/CHANGELOG.md", + "hash": "5106358608425566554" + }, + { + "file": "packages/cra-template/LICENSE", + "hash": "1636749174329294352" + }, + { + "file": "packages/cra-template/README.md", + "hash": "6730490654183036004" + }, + { + "file": "packages/cra-template/package.json", + "hash": "3922138108394395761", + "deps": ["@fluentui/react", "@fluentui/scripts-projects-test"] + }, + { + "file": "packages/cra-template/project.json", + "hash": "17234406872818167309" + }, + { + "file": "packages/cra-template/scripts/test.ts", + "hash": "290681558778133128" + }, + { + "file": "packages/cra-template/template/LICENSE", + "hash": "8375661779484895636" + }, + { + "file": "packages/cra-template/template/README.md", + "hash": "6288567372830560670" + }, + { + "file": "packages/cra-template/template/gitignore", + "hash": "1381922197083867790" + }, + { + "file": "packages/cra-template/template/public/favicon.ico", + "hash": "2949791817221603359" + }, + { + "file": "packages/cra-template/template/public/index.html", + "hash": "6909331186721011181" + }, + { + "file": "packages/cra-template/template/public/manifest.json", + "hash": "14151889650470291185" + }, + { + "file": "packages/cra-template/template/src/App.css", + "hash": "16457583553712152214" + }, + { + "file": "packages/cra-template/template/src/App.test.tsx", + "hash": "1523758530738999894" + }, + { + "file": "packages/cra-template/template/src/App.tsx", + "hash": "17897325894100752891" + }, + { + "file": "packages/cra-template/template/src/index.css", + "hash": "11080820211780778568" + }, + { + "file": "packages/cra-template/template/src/index.tsx", + "hash": "272227226428571209" + }, + { + "file": "packages/cra-template/template/src/logo.svg", + "hash": "6417502148039611605" + }, + { + "file": "packages/cra-template/template/src/react-app-env.d.ts", + "hash": "4668673524524593686" + }, + { + "file": "packages/cra-template/template/src/reportWebVitals.ts", + "hash": "10503513403266688488" + }, + { + "file": "packages/cra-template/template/src/setupTests.ts", + "hash": "56515321623462775" + }, + { + "file": "packages/cra-template/template.json", + "hash": "860757225757618039" + }, + { + "file": "packages/cra-template/tsconfig.json", + "hash": "4217186867484741619" + } + ], + "@fluentui/react-tabs": [ + { + "file": "packages/react-components/react-tabs/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-tabs/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-tabs/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-tabs/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-tabs/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-tabs/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-tabs/CHANGELOG.json", + "hash": "16653990280561800435" + }, + { + "file": "packages/react-components/react-tabs/CHANGELOG.md", + "hash": "5147253273970416832" + }, + { + "file": "packages/react-components/react-tabs/LICENSE", + "hash": "4740908718758378364" + }, + { + "file": "packages/react-components/react-tabs/README.md", + "hash": "18127596344126903308" + }, + { + "file": "packages/react-components/react-tabs/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-tabs/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-tabs/docs/MIGRATION.md", + "hash": "15527478377883104682" + }, + { + "file": "packages/react-components/react-tabs/docs/Spec.md", + "hash": "5069091585937724395" + }, + { + "file": "packages/react-components/react-tabs/etc/react-tabs.api.md", + "hash": "7006711000172869136" + }, + { + "file": "packages/react-components/react-tabs/jest.config.js", + "hash": "14708845933115558170" + }, + { + "file": "packages/react-components/react-tabs/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-tabs/package.json", + "hash": "2435507149752619818", + "deps": [ + "@fluentui/react-context-selector", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-tabs/project.json", + "hash": "2488794906819146532" + }, + { + "file": "packages/react-components/react-tabs/src/Tab.ts", + "hash": "18052715041612667837" + }, + { + "file": "packages/react-components/react-tabs/src/TabList.ts", + "hash": "14259566883412751833" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/Tab.test.tsx", + "hash": "5284346870856331647" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/Tab.tsx", + "hash": "14262278411334138962" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/Tab.types.ts", + "hash": "13892973305630266674" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/__snapshots__/Tab.test.tsx.snap", + "hash": "16130306086249008716" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/index.ts", + "hash": "571853373705559422" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/renderTab.tsx", + "hash": "438513960010848710" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/useTab.ts", + "hash": "17930474082868536927" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/useTabAnimatedIndicator.styles.ts", + "hash": "17878737750085263788" + }, + { + "file": "packages/react-components/react-tabs/src/components/Tab/useTabStyles.styles.ts", + "hash": "3339130946495387865" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/TabList.test.tsx", + "hash": "248552595994159964" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/TabList.tsx", + "hash": "16824515058622491938" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/TabList.types.ts", + "hash": "15050565246393575960" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/TabListContext.ts", + "hash": "3869552624891089499" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/__snapshots__/TabList.test.tsx.snap", + "hash": "17408894838225022682" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/index.ts", + "hash": "14418839090107905003" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/renderTabList.tsx", + "hash": "13702244115276528829" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/useTabList.ts", + "hash": "11356167478206479845" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/useTabListContextValues.tsx", + "hash": "5865239856627346423" + }, + { + "file": "packages/react-components/react-tabs/src/components/TabList/useTabListStyles.styles.ts", + "hash": "12502061653707237914" + }, + { + "file": "packages/react-components/react-tabs/src/index.ts", + "hash": "4303965408378135432" + }, + { + "file": "packages/react-components/react-tabs/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListAppearance.stories.tsx", + "hash": "1756544703328115970" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListBestPractices.md", + "hash": "9690510840193383523" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListDefault.stories.tsx", + "hash": "6373688234211709605" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListDescription.md", + "hash": "9843865439273724282" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListDisabled.stories.tsx", + "hash": "1181981537502838116" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListHorizontal.stories.tsx", + "hash": "1364604632286623277" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListIconOnly.stories.tsx", + "hash": "13443109350217072013" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListSelectTabOnFocus.stories.tsx", + "hash": "10089458872641528139" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListSizeLarge.stories.tsx", + "hash": "9903831177196541741" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListSizeMedium.stories.tsx", + "hash": "12348057756948710175" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListSizeSmall.stories.tsx", + "hash": "130845448440742280" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListVertical.stories.tsx", + "hash": "9914209083956496614" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListWithIcon.stories.tsx", + "hash": "9957205148378025404" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListWithOverflow.stories.tsx", + "hash": "17612162312056098804" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/TabListWithPanels.stories.tsx", + "hash": "4021389843633563591" + }, + { + "file": "packages/react-components/react-tabs/stories/Tabs/index.stories.tsx", + "hash": "1465033720456171245" + }, + { + "file": "packages/react-components/react-tabs/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-tabs/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-tabs/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-utilities": [ + { + "file": "packages/react-components/react-utilities/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-utilities/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-utilities/.swcrc", + "hash": "471348148265161299" + }, + { + "file": "packages/react-components/react-utilities/CHANGELOG.json", + "hash": "12606149671536690059" + }, + { + "file": "packages/react-components/react-utilities/CHANGELOG.md", + "hash": "5718490295303643193" + }, + { + "file": "packages/react-components/react-utilities/LICENSE", + "hash": "4548592527434132508" + }, + { + "file": "packages/react-components/react-utilities/README.md", + "hash": "13947731880378270631" + }, + { + "file": "packages/react-components/react-utilities/bundle-size/SSRProvider.fixture.js", + "hash": "2639532017254723484" + }, + { + "file": "packages/react-components/react-utilities/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-utilities/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-utilities/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-utilities/etc/react-utilities.api.md", + "hash": "841069789972448649" + }, + { + "file": "packages/react-components/react-utilities/jest.config.js", + "hash": "13468661421719128629" + }, + { + "file": "packages/react-components/react-utilities/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-utilities/package.json", + "hash": "1280488417604585260", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-shared-contexts", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-components/react-utilities/project.json", + "hash": "10086645969078851081" + }, + { + "file": "packages/react-components/react-utilities/src/compose/README.md", + "hash": "14625676054464334966" + }, + { + "file": "packages/react-components/react-utilities/src/compose/assertSlots.test.tsx", + "hash": "5114753890814650553" + }, + { + "file": "packages/react-components/react-utilities/src/compose/assertSlots.ts", + "hash": "12263589124078345064" + }, + { + "file": "packages/react-components/react-utilities/src/compose/constants.ts", + "hash": "12568670464554309203" + }, + { + "file": "packages/react-components/react-utilities/src/compose/deprecated/getSlots.test.tsx", + "hash": "2001730957259217194" + }, + { + "file": "packages/react-components/react-utilities/src/compose/deprecated/getSlots.ts", + "hash": "1830296453746714796" + }, + { + "file": "packages/react-components/react-utilities/src/compose/deprecated/getSlotsNext.test.tsx", + "hash": "15481611158559264587" + }, + { + "file": "packages/react-components/react-utilities/src/compose/deprecated/getSlotsNext.ts", + "hash": "17468126332557367034" + }, + { + "file": "packages/react-components/react-utilities/src/compose/deprecated/resolveShorthand.test.tsx", + "hash": "12027460737839448450" + }, + { + "file": "packages/react-components/react-utilities/src/compose/deprecated/resolveShorthand.ts", + "hash": "4085975625642820386" + }, + { + "file": "packages/react-components/react-utilities/src/compose/getIntrinsicElementProps.test.ts", + "hash": "17625783833610049783" + }, + { + "file": "packages/react-components/react-utilities/src/compose/getIntrinsicElementProps.ts", + "hash": "9196198849778326580" + }, + { + "file": "packages/react-components/react-utilities/src/compose/index.ts", + "hash": "6238139875353986739" + }, + { + "file": "packages/react-components/react-utilities/src/compose/isResolvedShorthand.ts", + "hash": "10041723076556072661" + }, + { + "file": "packages/react-components/react-utilities/src/compose/isSlot.test.tsx", + "hash": "1686130142285675914" + }, + { + "file": "packages/react-components/react-utilities/src/compose/isSlot.ts", + "hash": "8873396891138973958" + }, + { + "file": "packages/react-components/react-utilities/src/compose/slot.test.tsx", + "hash": "6275674688381333524" + }, + { + "file": "packages/react-components/react-utilities/src/compose/slot.ts", + "hash": "17764427704923751237" + }, + { + "file": "packages/react-components/react-utilities/src/compose/types.test.ts", + "hash": "12006846578958764927" + }, + { + "file": "packages/react-components/react-utilities/src/compose/types.ts", + "hash": "6998235074462254421" + }, + { + "file": "packages/react-components/react-utilities/src/events/index.ts", + "hash": "5494215381271956158" + }, + { + "file": "packages/react-components/react-utilities/src/events/mouseTouchHelpers.test.ts", + "hash": "8235155130433892375" + }, + { + "file": "packages/react-components/react-utilities/src/events/mouseTouchHelpers.ts", + "hash": "7032968851854609969" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/index.ts", + "hash": "17204401905706147577" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useAnimationFrame.test.ts", + "hash": "5036573002543609992" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useAnimationFrame.ts", + "hash": "46044635345141684" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useBrowserTimer.test.ts", + "hash": "14389068346546567828" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useBrowserTimer.ts", + "hash": "11577709440845443589" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useControllableState.test.ts", + "hash": "7501091402152166732" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useControllableState.ts", + "hash": "4183798484252782583" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useEventCallback.test.ts", + "hash": "1424756617434420204" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useEventCallback.ts", + "hash": "4086500801223235507" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useFirstMount.test.ts", + "hash": "15489772157742840375" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useFirstMount.ts", + "hash": "10062658339272667832" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useForceUpdate.ts", + "hash": "15749428460651352441" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useId.test.tsx", + "hash": "8540968448007643942" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useId.ts", + "hash": "16791315725109884855" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useIsomorphicLayoutEffect.ts", + "hash": "12527101582470470210" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useMergedRefs.test.tsx", + "hash": "15625524889530719378" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useMergedRefs.ts", + "hash": "15582394188849760782" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useOnClickOutside.cy.tsx", + "hash": "9729146114040589542" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useOnClickOutside.test.ts", + "hash": "13195861638677596652" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useOnClickOutside.ts", + "hash": "2917971710023603742" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useOnScrollOutside.cy.tsx", + "hash": "111388682322343975" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useOnScrollOutside.test.ts", + "hash": "4403438015055961322" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useOnScrollOutside.ts", + "hash": "16339052801423405307" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/usePrevious.test.ts", + "hash": "11052424330262721985" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/usePrevious.ts", + "hash": "7814650654110052238" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useScrollbarWidth.ts", + "hash": "18297843172923507130" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useTimeout.test.ts", + "hash": "6143183876150228738" + }, + { + "file": "packages/react-components/react-utilities/src/hooks/useTimeout.ts", + "hash": "551248724631042442" + }, + { + "file": "packages/react-components/react-utilities/src/index.ts", + "hash": "10881091974104498336" + }, + { + "file": "packages/react-components/react-utilities/src/selection/index.ts", + "hash": "18175758767152219244" + }, + { + "file": "packages/react-components/react-utilities/src/selection/types.ts", + "hash": "7956389095795649433" + }, + { + "file": "packages/react-components/react-utilities/src/selection/useSelection.test.ts", + "hash": "16458769859979828472" + }, + { + "file": "packages/react-components/react-utilities/src/selection/useSelection.ts", + "hash": "804144186603019901" + }, + { + "file": "packages/react-components/react-utilities/src/ssr/SSRContext-node.test.tsx", + "hash": "17839409682341273470" + }, + { + "file": "packages/react-components/react-utilities/src/ssr/SSRContext.test.tsx", + "hash": "9881450806150617637" + }, + { + "file": "packages/react-components/react-utilities/src/ssr/SSRContext.tsx", + "hash": "1113275880901853979" + }, + { + "file": "packages/react-components/react-utilities/src/ssr/canUseDOM.ts", + "hash": "9966677476416266386" + }, + { + "file": "packages/react-components/react-utilities/src/ssr/index.ts", + "hash": "13577532512706846200" + }, + { + "file": "packages/react-components/react-utilities/src/testing/mockSyntheticEvent.ts", + "hash": "1212352037375346170" + }, + { + "file": "packages/react-components/react-utilities/src/trigger/applyTriggerPropsToChildren.test.tsx", + "hash": "10562372782750022367" + }, + { + "file": "packages/react-components/react-utilities/src/trigger/applyTriggerPropsToChildren.ts", + "hash": "7123990353661499142" + }, + { + "file": "packages/react-components/react-utilities/src/trigger/getTriggerChild.test.tsx", + "hash": "8599437159744729593" + }, + { + "file": "packages/react-components/react-utilities/src/trigger/getTriggerChild.ts", + "hash": "14656456857362872393" + }, + { + "file": "packages/react-components/react-utilities/src/trigger/index.ts", + "hash": "12347105081516068977" + }, + { + "file": "packages/react-components/react-utilities/src/trigger/isFluentTrigger.ts", + "hash": "14723355846450886312" + }, + { + "file": "packages/react-components/react-utilities/src/trigger/types.ts", + "hash": "14818087122904783134" + }, + { + "file": "packages/react-components/react-utilities/src/utils/clamp.test.ts", + "hash": "14460305721269143852" + }, + { + "file": "packages/react-components/react-utilities/src/utils/clamp.ts", + "hash": "5651646545287775562" + }, + { + "file": "packages/react-components/react-utilities/src/utils/createSetFromIterable.ts", + "hash": "5272994368316459991" + }, + { + "file": "packages/react-components/react-utilities/src/utils/getNativeElementProps.test.ts", + "hash": "4200849153460230731" + }, + { + "file": "packages/react-components/react-utilities/src/utils/getNativeElementProps.ts", + "hash": "11790897451229125905" + }, + { + "file": "packages/react-components/react-utilities/src/utils/getRTLSafeKey.test.ts", + "hash": "4315321514077746401" + }, + { + "file": "packages/react-components/react-utilities/src/utils/getRTLSafeKey.ts", + "hash": "10064884271406195450" + }, + { + "file": "packages/react-components/react-utilities/src/utils/getReactCallbackName.test.tsx", + "hash": "3201101536537757353" + }, + { + "file": "packages/react-components/react-utilities/src/utils/getReactCallbackName.ts", + "hash": "6579455818455583984" + }, + { + "file": "packages/react-components/react-utilities/src/utils/index.ts", + "hash": "13403671928297468691" + }, + { + "file": "packages/react-components/react-utilities/src/utils/isHTMLElement.test.ts", + "hash": "11482981990848453903" + }, + { + "file": "packages/react-components/react-utilities/src/utils/isHTMLElement.ts", + "hash": "1282709590511722740" + }, + { + "file": "packages/react-components/react-utilities/src/utils/isInteractiveHTMLElement.test.ts", + "hash": "16371310108984842884" + }, + { + "file": "packages/react-components/react-utilities/src/utils/isInteractiveHTMLElement.ts", + "hash": "8021585456494828017" + }, + { + "file": "packages/react-components/react-utilities/src/utils/mergeCallbacks.test.ts", + "hash": "18114696197479197623" + }, + { + "file": "packages/react-components/react-utilities/src/utils/mergeCallbacks.ts", + "hash": "798883161576461363" + }, + { + "file": "packages/react-components/react-utilities/src/utils/omit.test.ts", + "hash": "5161657923836885101" + }, + { + "file": "packages/react-components/react-utilities/src/utils/omit.ts", + "hash": "15464314669185068450" + }, + { + "file": "packages/react-components/react-utilities/src/utils/priorityQueue.test.ts", + "hash": "16760683918500211316" + }, + { + "file": "packages/react-components/react-utilities/src/utils/priorityQueue.ts", + "hash": "17476738038850897309" + }, + { + "file": "packages/react-components/react-utilities/src/utils/properties.test.ts", + "hash": "18102240430945997965" + }, + { + "file": "packages/react-components/react-utilities/src/utils/properties.ts", + "hash": "11898160952975282576" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/elementContains.test.ts", + "hash": "5170255865647103248" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/elementContains.ts", + "hash": "8217646841775655084" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/getParent.test.ts", + "hash": "3751432664303618425" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/getParent.ts", + "hash": "963679372623875089" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/index.ts", + "hash": "4831600202384909779" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/isVirtualElement.test.ts", + "hash": "14328481756165127483" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/isVirtualElement.ts", + "hash": "13999461821148654425" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/setVirtualParent.test.ts", + "hash": "15866095696536342231" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/setVirtualParent.ts", + "hash": "12573458924066224208" + }, + { + "file": "packages/react-components/react-utilities/src/virtualParent/types.ts", + "hash": "6862881665933269116" + }, + { + "file": "packages/react-components/react-utilities/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-utilities/tsconfig.json", + "hash": "5596071008249197618" + }, + { + "file": "packages/react-components/react-utilities/tsconfig.lib.json", + "hash": "4109592473830538944" + }, + { + "file": "packages/react-components/react-utilities/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/webpack-utilities": [ + { + "file": "packages/webpack-utilities/.eslintrc.json", + "hash": "3822933907657161418" + }, + { + "file": "packages/webpack-utilities/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/webpack-utilities/CHANGELOG.json", + "hash": "3147647764206316685" + }, + { + "file": "packages/webpack-utilities/CHANGELOG.md", + "hash": "9984789422986868432" + }, + { + "file": "packages/webpack-utilities/LICENSE", + "hash": "2164827662511184675" + }, + { + "file": "packages/webpack-utilities/README.md", + "hash": "6604358329591510428" + }, + { + "file": "packages/webpack-utilities/just.config.ts", + "hash": "7929889154186778640" + }, + { + "file": "packages/webpack-utilities/package.json", + "hash": "4032820640168261114", + "deps": ["npm:loader-utils", "npm:tslib", "@fluentui/eslint-plugin", "@fluentui/scripts-tasks", "npm:webpack"] + }, + { + "file": "packages/webpack-utilities/project.json", + "hash": "12787831108535473542" + }, + { + "file": "packages/webpack-utilities/src/fabricAsyncLoader.ts", + "hash": "9895115907536178426" + }, + { + "file": "packages/webpack-utilities/src/fabricAsyncLoaderInclude.ts", + "hash": "11145807179976432354" + }, + { + "file": "packages/webpack-utilities/src/index.ts", + "hash": "9127318911146067856" + }, + { + "file": "packages/webpack-utilities/tsconfig.json", + "hash": "13744738655515373811" + } + ], + "@fluentui/jest-serializer-merge-styles": [ + { + "file": "packages/jest-serializer-merge-styles/.eslintrc.json", + "hash": "9627670268003919245" + }, + { + "file": "packages/jest-serializer-merge-styles/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/jest-serializer-merge-styles/CHANGELOG.json", + "hash": "10954018229298175588" + }, + { + "file": "packages/jest-serializer-merge-styles/CHANGELOG.md", + "hash": "4453963391801474619" + }, + { + "file": "packages/jest-serializer-merge-styles/LICENSE", + "hash": "2632243039952250986" + }, + { + "file": "packages/jest-serializer-merge-styles/README.md", + "hash": "8547473322085278538" + }, + { + "file": "packages/jest-serializer-merge-styles/jest.config.js", + "hash": "17670261926655605039" + }, + { + "file": "packages/jest-serializer-merge-styles/just.config.ts", + "hash": "2411455081002746933" + }, + { + "file": "packages/jest-serializer-merge-styles/package.json", + "hash": "17303012843352115746", + "deps": [ + "@fluentui/merge-styles", + "@fluentui/eslint-plugin", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/jest-serializer-merge-styles/project.json", + "hash": "9258619144494602857" + }, + { + "file": "packages/jest-serializer-merge-styles/src/__snapshots__/index.test.tsx.snap", + "hash": "4400590441458842461" + }, + { + "file": "packages/jest-serializer-merge-styles/src/index.test.tsx", + "hash": "2012814102331462398" + }, + { + "file": "packages/jest-serializer-merge-styles/src/index.ts", + "hash": "15427981283161703159" + }, + { + "file": "packages/jest-serializer-merge-styles/tsconfig.json", + "hash": "18031699838750159282" + } + ], + "@fluentui/react-positioning": [ + { + "file": "packages/react-components/react-positioning/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-positioning/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-positioning/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-positioning/CHANGELOG.json", + "hash": "4356248270442561023" + }, + { + "file": "packages/react-components/react-positioning/CHANGELOG.md", + "hash": "4847233942356914741" + }, + { + "file": "packages/react-components/react-positioning/LICENSE", + "hash": "5089922527070038048" + }, + { + "file": "packages/react-components/react-positioning/README.md", + "hash": "2417768606010098926" + }, + { + "file": "packages/react-components/react-positioning/bundle-size/usePopper.fixture.js", + "hash": "5183258026047587937" + }, + { + "file": "packages/react-components/react-positioning/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-positioning/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-positioning/etc/react-positioning.api.md", + "hash": "18364179009656134909" + }, + { + "file": "packages/react-components/react-positioning/jest.config.js", + "hash": "1911801824510823535" + }, + { + "file": "packages/react-components/react-positioning/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-positioning/package.json", + "hash": "11419968880051446930", + "deps": [ + "npm:@floating-ui/dom", + "npm:@floating-ui/devtools", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-positioning/project.json", + "hash": "5245284538107226970" + }, + { + "file": "packages/react-components/react-positioning/src/constants.ts", + "hash": "4812450824066108556" + }, + { + "file": "packages/react-components/react-positioning/src/createArrowStyles.ts", + "hash": "4816621363801924689" + }, + { + "file": "packages/react-components/react-positioning/src/createPositionManager.ts", + "hash": "10300998202434588247" + }, + { + "file": "packages/react-components/react-positioning/src/createSlideStyles.ts", + "hash": "3653766009363043840" + }, + { + "file": "packages/react-components/react-positioning/src/createVirtualElementFromClick.ts", + "hash": "2923071022768484245" + }, + { + "file": "packages/react-components/react-positioning/src/index.ts", + "hash": "3889687764181437663" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/coverTarget.ts", + "hash": "11446814345254290307" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/flip.ts", + "hash": "4128332339311583311" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/index.ts", + "hash": "10004993199977720656" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/intersecting.ts", + "hash": "10280650566629227467" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/matchTargetSize.test.ts", + "hash": "15419830195167683077" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/matchTargetSize.ts", + "hash": "15376750943530628376" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/maxSize.test.ts", + "hash": "11847409733577590675" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/maxSize.ts", + "hash": "10958991407201312433" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/offset.ts", + "hash": "1347711306628883277" + }, + { + "file": "packages/react-components/react-positioning/src/middleware/shift.ts", + "hash": "13982566745452618280" + }, + { + "file": "packages/react-components/react-positioning/src/types.test.ts", + "hash": "16061796271944754604" + }, + { + "file": "packages/react-components/react-positioning/src/types.ts", + "hash": "4162330794092529449" + }, + { + "file": "packages/react-components/react-positioning/src/usePositioning.ts", + "hash": "17591020286304693906" + }, + { + "file": "packages/react-components/react-positioning/src/usePositioningMouseTarget.ts", + "hash": "8779354366062893755" + }, + { + "file": "packages/react-components/react-positioning/src/utils/debounce.ts", + "hash": "13930592765832964864" + }, + { + "file": "packages/react-components/react-positioning/src/utils/devtools.ts", + "hash": "6102556645022930270" + }, + { + "file": "packages/react-components/react-positioning/src/utils/fromFloatingUIPlacement.test.ts", + "hash": "14530768433800914418" + }, + { + "file": "packages/react-components/react-positioning/src/utils/fromFloatingUIPlacement.ts", + "hash": "5306564900046691192" + }, + { + "file": "packages/react-components/react-positioning/src/utils/getBoundary.ts", + "hash": "3368949379853203911" + }, + { + "file": "packages/react-components/react-positioning/src/utils/getFloatingUIOffset.test.ts", + "hash": "7575841896073806048" + }, + { + "file": "packages/react-components/react-positioning/src/utils/getFloatingUIOffset.ts", + "hash": "9985513219821945968" + }, + { + "file": "packages/react-components/react-positioning/src/utils/getReactFiberFromNode.ts", + "hash": "8959436210742527297" + }, + { + "file": "packages/react-components/react-positioning/src/utils/getScrollParent.ts", + "hash": "18070071901955288061" + }, + { + "file": "packages/react-components/react-positioning/src/utils/hasAutoFocusFilter.ts", + "hash": "2112971738028654481" + }, + { + "file": "packages/react-components/react-positioning/src/utils/index.ts", + "hash": "998032976871910048" + }, + { + "file": "packages/react-components/react-positioning/src/utils/listScrollParents.test.ts", + "hash": "11927392465683226617" + }, + { + "file": "packages/react-components/react-positioning/src/utils/listScrollParents.ts", + "hash": "1611437915141190212" + }, + { + "file": "packages/react-components/react-positioning/src/utils/mergeArrowOffset.test.ts", + "hash": "12878054589651221300" + }, + { + "file": "packages/react-components/react-positioning/src/utils/mergeArrowOffset.ts", + "hash": "14933934374399891510" + }, + { + "file": "packages/react-components/react-positioning/src/utils/normalizeAutoSize.test.ts", + "hash": "3117602037330931432" + }, + { + "file": "packages/react-components/react-positioning/src/utils/normalizeAutoSize.ts", + "hash": "990736725046059569" + }, + { + "file": "packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.test.ts", + "hash": "1498123558613702867" + }, + { + "file": "packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.ts", + "hash": "13333945119299100587" + }, + { + "file": "packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.test.ts", + "hash": "4826160436314984224" + }, + { + "file": "packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.ts", + "hash": "16730999955673908650" + }, + { + "file": "packages/react-components/react-positioning/src/utils/toFloatingUIPadding.test.ts", + "hash": "1971653496535654260" + }, + { + "file": "packages/react-components/react-positioning/src/utils/toFloatingUIPadding.ts", + "hash": "14419864248559003091" + }, + { + "file": "packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.test.ts", + "hash": "11727863645223188803" + }, + { + "file": "packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.ts", + "hash": "6079489230626652709" + }, + { + "file": "packages/react-components/react-positioning/src/utils/toggleScrollListener.test.ts", + "hash": "10649142849159055061" + }, + { + "file": "packages/react-components/react-positioning/src/utils/toggleScrollListener.ts", + "hash": "2156607211095016409" + }, + { + "file": "packages/react-components/react-positioning/src/utils/useCallbackRef.test.ts", + "hash": "4294465573577228095" + }, + { + "file": "packages/react-components/react-positioning/src/utils/useCallbackRef.ts", + "hash": "9531693418244808481" + }, + { + "file": "packages/react-components/react-positioning/src/utils/writeArrowUpdates.ts", + "hash": "6018473284504345707" + }, + { + "file": "packages/react-components/react-positioning/src/utils/writeContainerupdates.ts", + "hash": "4817679150978717204" + }, + { + "file": "packages/react-components/react-positioning/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/react-positioning/tsconfig.lib.json", + "hash": "14975475306433073951" + }, + { + "file": "packages/react-components/react-positioning/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/recipes-react-components": [ + { + "file": "apps/recipes-react-components/.eslintrc.json", + "hash": "6745579680639719580" + }, + { + "file": "apps/recipes-react-components/.storybook/main.js", + "hash": "3573351146020217563" + }, + { + "file": "apps/recipes-react-components/.storybook/preview.js", + "hash": "13060507936672259436" + }, + { + "file": "apps/recipes-react-components/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "apps/recipes-react-components/package.json", + "hash": "10025438426730395084", + "deps": [ + "@fluentui/react-components", + "npm:@fluentui/react-icons", + "@fluentui/react-theme", + "@fluentui/react-provider", + "@fluentui/react-storybook-addon", + "@fluentui/react-storybook-addon-export-to-sandbox", + "npm:@griffel/react", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "apps/recipes-react-components/project.json", + "hash": "16331129437784993323" + }, + { + "file": "apps/recipes-react-components/src/DocComponents/FluentDocsContainer.stories.tsx", + "hash": "2324064054925248616" + }, + { + "file": "apps/recipes-react-components/src/index.ts", + "hash": "15555827964896839803" + }, + { + "file": "apps/recipes-react-components/src/recipes/media-object/MediaObject.stories.mdx", + "hash": "2100852699300778383" + }, + { + "file": "apps/recipes-react-components/src/recipes/media-object/code-snippets/MediaObject.tsx", + "hash": "15951393116113450384" + }, + { + "file": "apps/recipes-react-components/src/recipes/media-object/code-snippets/index.ts", + "hash": "9585924820972516427" + }, + { + "file": "apps/recipes-react-components/src/templates/Example.tsx", + "hash": "270058714944668880" + }, + { + "file": "apps/recipes-react-components/src/templates/index.ts", + "hash": "6433543791903200750" + }, + { + "file": "apps/recipes-react-components/tsconfig.app.json", + "hash": "7286160734465805905" + }, + { + "file": "apps/recipes-react-components/tsconfig.json", + "hash": "820111550898000748" + } + ], + "@fluentui/theme": [ + { + "file": "packages/theme/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/theme/.npmignore", + "hash": "7699079327417375383" + }, + { + "file": "packages/theme/CHANGELOG.json", + "hash": "8694526630624738678" + }, + { + "file": "packages/theme/CHANGELOG.md", + "hash": "5405190803702508355" + }, + { + "file": "packages/theme/LICENSE", + "hash": "15786973076553793748" + }, + { + "file": "packages/theme/README.md", + "hash": "9513324721564020061" + }, + { + "file": "packages/theme/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/theme/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/theme/etc/theme.api.md", + "hash": "11990291598636491933" + }, + { + "file": "packages/theme/jest.config.js", + "hash": "8193037916930093299" + }, + { + "file": "packages/theme/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/theme/package.json", + "hash": "4880658300010728294", + "deps": [ + "@fluentui/merge-styles", + "@fluentui/utilities", + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/theme/project.json", + "hash": "5594824764663362836" + }, + { + "file": "packages/theme/src/FluentTheme.ts", + "hash": "8872927701412996736" + }, + { + "file": "packages/theme/src/__snapshots__/createTheme.test.ts.snap", + "hash": "1620181105913435241" + }, + { + "file": "packages/theme/src/__snapshots__/mergeThemes.test.ts.snap", + "hash": "3437625483425530701" + }, + { + "file": "packages/theme/src/colors/DefaultPalette.ts", + "hash": "9047280692656939649" + }, + { + "file": "packages/theme/src/colors/FluentColors.ts", + "hash": "3901943768402102586" + }, + { + "file": "packages/theme/src/colors/index.ts", + "hash": "17068496585037409656" + }, + { + "file": "packages/theme/src/createTheme.test.ts", + "hash": "13146216824160332649" + }, + { + "file": "packages/theme/src/createTheme.ts", + "hash": "165150282001144514" + }, + { + "file": "packages/theme/src/effects/DefaultEffects.ts", + "hash": "12509924764455750919" + }, + { + "file": "packages/theme/src/effects/FluentDepths.ts", + "hash": "17261250879660942101" + }, + { + "file": "packages/theme/src/effects/index.ts", + "hash": "11784798050056506025" + }, + { + "file": "packages/theme/src/fonts/DefaultFontStyles.ts", + "hash": "7513078596996372857" + }, + { + "file": "packages/theme/src/fonts/FluentFonts.ts", + "hash": "15183035779480308768" + }, + { + "file": "packages/theme/src/fonts/__snapshots__/createFontStyles.test.ts.snap", + "hash": "13260755682867724243" + }, + { + "file": "packages/theme/src/fonts/createFontStyles.test.ts", + "hash": "342084165563790114" + }, + { + "file": "packages/theme/src/fonts/createFontStyles.ts", + "hash": "6054997297777341246" + }, + { + "file": "packages/theme/src/fonts/index.ts", + "hash": "7989996203233507146" + }, + { + "file": "packages/theme/src/index.ts", + "hash": "5096156196141648071" + }, + { + "file": "packages/theme/src/mergeThemes.test.ts", + "hash": "1854964498231524841" + }, + { + "file": "packages/theme/src/mergeThemes.ts", + "hash": "8066733853025885142" + }, + { + "file": "packages/theme/src/motion/AnimationStyles.ts", + "hash": "6009016863933539960" + }, + { + "file": "packages/theme/src/motion/FluentMotion.ts", + "hash": "14434753786724348979" + }, + { + "file": "packages/theme/src/motion/index.ts", + "hash": "11675984740600839755" + }, + { + "file": "packages/theme/src/spacing/DefaultSpacing.ts", + "hash": "10219715360821251712" + }, + { + "file": "packages/theme/src/spacing/index.ts", + "hash": "3486351936943740825" + }, + { + "file": "packages/theme/src/types/IAnimationStyles.ts", + "hash": "12653971684196105051" + }, + { + "file": "packages/theme/src/types/IEffects.ts", + "hash": "10026907101397233905" + }, + { + "file": "packages/theme/src/types/IFabricConfig.ts", + "hash": "5071856735493168297" + }, + { + "file": "packages/theme/src/types/IFontStyles.ts", + "hash": "2182319282794586696" + }, + { + "file": "packages/theme/src/types/IPalette.ts", + "hash": "2529464931097454784" + }, + { + "file": "packages/theme/src/types/IScheme.ts", + "hash": "9513225299507328404" + }, + { + "file": "packages/theme/src/types/ISemanticColors.ts", + "hash": "4202804278930620465" + }, + { + "file": "packages/theme/src/types/ISemanticTextColors.ts", + "hash": "14306295845370698813" + }, + { + "file": "packages/theme/src/types/ISpacing.ts", + "hash": "15242286375604099718" + }, + { + "file": "packages/theme/src/types/ITheme.ts", + "hash": "3909617946113210701" + }, + { + "file": "packages/theme/src/types/Theme.ts", + "hash": "10290910868267444293" + }, + { + "file": "packages/theme/src/types/index.ts", + "hash": "11830819220037665655" + }, + { + "file": "packages/theme/src/utilities/makeSemanticColors.ts", + "hash": "7063463176732882313" + }, + { + "file": "packages/theme/src/version.ts", + "hash": "14766332737427891807" + }, + { + "file": "packages/theme/tsconfig.json", + "hash": "12924358714988094235" + } + ], + "@fluentui/react-input": [ + { + "file": "packages/react-components/react-input/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-input/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-input/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-input/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-input/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-input/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-input/CHANGELOG.json", + "hash": "16902776417506954393" + }, + { + "file": "packages/react-components/react-input/CHANGELOG.md", + "hash": "12659363144881103523" + }, + { + "file": "packages/react-components/react-input/LICENSE", + "hash": "17921975243735857791" + }, + { + "file": "packages/react-components/react-input/README.md", + "hash": "5789151720033807483" + }, + { + "file": "packages/react-components/react-input/bundle-size/Input.fixture.js", + "hash": "15446350093573765852" + }, + { + "file": "packages/react-components/react-input/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-input/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-input/docs/Spec-styling.md", + "hash": "12893795690828629797" + }, + { + "file": "packages/react-components/react-input/docs/Spec-variants.md", + "hash": "14494830944240525083" + }, + { + "file": "packages/react-components/react-input/docs/Spec.md", + "hash": "5306108129554253618" + }, + { + "file": "packages/react-components/react-input/etc/react-input.api.md", + "hash": "8395695789212950644" + }, + { + "file": "packages/react-components/react-input/jest.config.js", + "hash": "8466466753515983120" + }, + { + "file": "packages/react-components/react-input/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-input/package.json", + "hash": "10777907370065733381", + "deps": [ + "@fluentui/react-field", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/react-text", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-input/project.json", + "hash": "10199176759041895704" + }, + { + "file": "packages/react-components/react-input/src/Input.ts", + "hash": "10429882019873203426" + }, + { + "file": "packages/react-components/react-input/src/components/Input/Input.test.tsx", + "hash": "9943754574556771396" + }, + { + "file": "packages/react-components/react-input/src/components/Input/Input.tsx", + "hash": "2593076107497856454" + }, + { + "file": "packages/react-components/react-input/src/components/Input/Input.types.ts", + "hash": "5991618772507553577" + }, + { + "file": "packages/react-components/react-input/src/components/Input/__snapshots__/Input.test.tsx.snap", + "hash": "8696547501521471701" + }, + { + "file": "packages/react-components/react-input/src/components/Input/index.ts", + "hash": "9629035020677552243" + }, + { + "file": "packages/react-components/react-input/src/components/Input/renderInput.tsx", + "hash": "17464159116055354529" + }, + { + "file": "packages/react-components/react-input/src/components/Input/useInput.ts", + "hash": "7096296182051013434" + }, + { + "file": "packages/react-components/react-input/src/components/Input/useInputStyles.styles.ts", + "hash": "17030352388227783114" + }, + { + "file": "packages/react-components/react-input/src/index.ts", + "hash": "1860518375733372751" + }, + { + "file": "packages/react-components/react-input/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputAppearance.stories.tsx", + "hash": "16605839565629747390" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputBestPractices.md", + "hash": "84526309930099766" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputContentBeforeAfter.stories.tsx", + "hash": "8269160108933136866" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputControlled.stories.tsx", + "hash": "1485009000094407100" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputDefault.stories.tsx", + "hash": "5448587894533551399" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputDescription.md", + "hash": "11217759867033227655" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputDisabled.stories.tsx", + "hash": "10764757400929231557" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputInline.stories.tsx", + "hash": "9245622638907234352" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputPlaceholder.stories.tsx", + "hash": "7248062527841234398" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputSize.stories.tsx", + "hash": "18091173436190785431" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputType.stories.tsx", + "hash": "13006764319554437671" + }, + { + "file": "packages/react-components/react-input/stories/Input/InputUncontrolled.stories.tsx", + "hash": "3016126986246343470" + }, + { + "file": "packages/react-components/react-input/stories/Input/index.stories.tsx", + "hash": "668131335390485946" + }, + { + "file": "packages/react-components/react-input/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-input/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-input/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-bundle-size-auditor": [ + { + "file": "scripts/bundle-size-auditor/README.md", + "hash": "7308971503050426778" + }, + { + "file": "scripts/bundle-size-auditor/__fixtures__/proj-one/bundle-size-auditor.config.js", + "hash": "7435363296352118388" + }, + { + "file": "scripts/bundle-size-auditor/__fixtures__/proj-one/lib-dist/hello.js", + "hash": "3025962609255239884" + }, + { + "file": "scripts/bundle-size-auditor/__fixtures__/proj-one/lib-dist/index.js", + "hash": "9471299597521760475" + }, + { + "file": "scripts/bundle-size-auditor/__fixtures__/proj-one/package.json", + "hash": "9762295079143560402" + }, + { + "file": "scripts/bundle-size-auditor/bin/bundle-size-auditor.js", + "hash": "4162646536432802739" + }, + { + "file": "scripts/bundle-size-auditor/jest.config.js", + "hash": "8276958337121510907" + }, + { + "file": "scripts/bundle-size-auditor/package.json", + "hash": "13938274440693939530" + }, + { + "file": "scripts/bundle-size-auditor/project.json", + "hash": "5867454910317339913" + }, + { + "file": "scripts/bundle-size-auditor/src/bundle-size-collect.ts", + "hash": "6441554579105820293" + }, + { + "file": "scripts/bundle-size-auditor/src/cli.spec.ts", + "hash": "4157129729123491570" + }, + { + "file": "scripts/bundle-size-auditor/src/cli.ts", + "hash": "8957246201282732872" + }, + { + "file": "scripts/bundle-size-auditor/src/index.dev.js", + "hash": "9260712020448791085" + }, + { + "file": "scripts/bundle-size-auditor/src/index.ts", + "hash": "12839598562953646843" + }, + { + "file": "scripts/bundle-size-auditor/src/merge-bundlesizes.ts", + "hash": "6240773769950594795" + }, + { + "file": "scripts/bundle-size-auditor/src/types.ts", + "hash": "8251796727224552861" + }, + { + "file": "scripts/bundle-size-auditor/src/typings.d.ts", + "hash": "14694322115759458648" + }, + { + "file": "scripts/bundle-size-auditor/src/utils.ts", + "hash": "9195238259767401168" + }, + { + "file": "scripts/bundle-size-auditor/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/bundle-size-auditor/tsconfig.lib.json", + "hash": "1724195388906143280" + }, + { + "file": "scripts/bundle-size-auditor/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/stress-test": [ + { + "file": "apps/stress-test/.babelrc", + "hash": "12862917896289059134" + }, + { + "file": "apps/stress-test/.eslintrc.json", + "hash": "17415001537957764759" + }, + { + "file": "apps/stress-test/.gitignore", + "hash": "15381081997006216537" + }, + { + "file": "apps/stress-test/.npmignore", + "hash": "6985117138208138805" + }, + { + "file": "apps/stress-test/CHANGELOG.json", + "hash": "3437580707295011777" + }, + { + "file": "apps/stress-test/CHANGELOG.md", + "hash": "11176202236824542392" + }, + { + "file": "apps/stress-test/README.md", + "hash": "6390444478274191284" + }, + { + "file": "apps/stress-test/config/tests.js", + "hash": "11168571691074990614" + }, + { + "file": "apps/stress-test/jest.config.js", + "hash": "9458445199894798693" + }, + { + "file": "apps/stress-test/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "apps/stress-test/package.json", + "hash": "15481262008595934140", + "deps": [ + "@fluentui/react", + "@fluentui/react-components", + "npm:@fluentui/react-icons", + "@fluentui/web-components", + "npm:@microsoft/fast-element", + "npm:afterframe", + "npm:react", + "npm:react-dom", + "npm:random-seedable", + "@fluentui/scripts-tasks", + "@fluentui/scripts-storybook" + ] + }, + { + "file": "apps/stress-test/project.json", + "hash": "8519279046864749978" + }, + { + "file": "apps/stress-test/scenarios/default.js", + "hash": "5667652972228170629" + }, + { + "file": "apps/stress-test/scripts/commands/build.ts", + "hash": "9419308908411865324" + }, + { + "file": "apps/stress-test/scripts/commands/buildFixture.ts", + "hash": "4525318911210783745" + }, + { + "file": "apps/stress-test/scripts/commands/buildTestConfig.ts", + "hash": "10914442217612715419" + }, + { + "file": "apps/stress-test/scripts/commands/dev.ts", + "hash": "717550860288446011" + }, + { + "file": "apps/stress-test/scripts/commands/processResults.ts", + "hash": "12562565022016957121" + }, + { + "file": "apps/stress-test/scripts/commands/run.ts", + "hash": "4847220144281690301" + }, + { + "file": "apps/stress-test/scripts/commands/runServer.ts", + "hash": "1695533053367418885" + }, + { + "file": "apps/stress-test/scripts/commands/runTachometer.ts", + "hash": "14114252202943153800" + }, + { + "file": "apps/stress-test/scripts/stressTest.ts", + "hash": "11797513512940166661" + }, + { + "file": "apps/stress-test/scripts/utils/configureYargs.ts", + "hash": "16260029187749751820" + }, + { + "file": "apps/stress-test/scripts/utils/fixtures.ts", + "hash": "10863951851903674631" + }, + { + "file": "apps/stress-test/scripts/utils/getBrowsers.ts", + "hash": "2767025493846740149" + }, + { + "file": "apps/stress-test/scripts/utils/paths.ts", + "hash": "5278825876081271854" + }, + { + "file": "apps/stress-test/scripts/utils/server.ts", + "hash": "822087886506422870" + }, + { + "file": "apps/stress-test/scripts/utils/tachometer.ts", + "hash": "3168697832787878755" + }, + { + "file": "apps/stress-test/scripts/utils/tree/RandomSelectorTreeNode.ts", + "hash": "6146005535267643186" + }, + { + "file": "apps/stress-test/scripts/utils/tree/RandomTree.ts", + "hash": "13001941047399227604" + }, + { + "file": "apps/stress-test/scripts/utils/types.ts", + "hash": "5655566756638933089" + }, + { + "file": "apps/stress-test/src/components/v8/StressApp.tsx", + "hash": "18116729224501891286" + }, + { + "file": "apps/stress-test/src/components/v8/StressComponent.tsx", + "hash": "4244808785460217124" + }, + { + "file": "apps/stress-test/src/components/v8/StressContainer.tsx", + "hash": "9963871457639355036" + }, + { + "file": "apps/stress-test/src/components/v9/StressApp.tsx", + "hash": "8514184576449260536" + }, + { + "file": "apps/stress-test/src/components/v9/StressComponent.tsx", + "hash": "2111244307928688142" + }, + { + "file": "apps/stress-test/src/components/v9/StressContainer.tsx", + "hash": "13765506946664693107" + }, + { + "file": "apps/stress-test/src/components/wc/stressApp.ts", + "hash": "4924957931395796051" + }, + { + "file": "apps/stress-test/src/components/wc/stressComponent.ts", + "hash": "17691895993458559136" + }, + { + "file": "apps/stress-test/src/components/wc/stressContainer.ts", + "hash": "6793612953422835054" + }, + { + "file": "apps/stress-test/src/fixtures/.gitignore", + "hash": "5942482769455841618" + }, + { + "file": "apps/stress-test/src/pages/v8/simple-stress/index.html", + "hash": "17054045918937358546" + }, + { + "file": "apps/stress-test/src/pages/v8/simple-stress/index.tsx", + "hash": "8145014336300914316" + }, + { + "file": "apps/stress-test/src/pages/v8/stress-tree/index.html", + "hash": "15931849501101204950" + }, + { + "file": "apps/stress-test/src/pages/v8/stress-tree/index.tsx", + "hash": "10784484438983706757" + }, + { + "file": "apps/stress-test/src/pages/v9/simple-stress/index.html", + "hash": "17996328833487928766" + }, + { + "file": "apps/stress-test/src/pages/v9/simple-stress/index.tsx", + "hash": "5275492453195147599" + }, + { + "file": "apps/stress-test/src/pages/v9/stress-tree/index.html", + "hash": "16355370479256157553" + }, + { + "file": "apps/stress-test/src/pages/v9/stress-tree/index.tsx", + "hash": "5258794036800619415" + }, + { + "file": "apps/stress-test/src/pages/wc/simple-stress/index.html", + "hash": "1270571087989138208" + }, + { + "file": "apps/stress-test/src/pages/wc/simple-stress/index.ts", + "hash": "15556660320515370092" + }, + { + "file": "apps/stress-test/src/pages/wc/stress-tree/index.html", + "hash": "11835810937514846385" + }, + { + "file": "apps/stress-test/src/pages/wc/stress-tree/index.ts", + "hash": "15833416144539563430" + }, + { + "file": "apps/stress-test/src/renderers/v8/button.tsx", + "hash": "9045728902588530340" + }, + { + "file": "apps/stress-test/src/renderers/v8/checkbox.tsx", + "hash": "6539321948897356327" + }, + { + "file": "apps/stress-test/src/renderers/v8/spinButton.tsx", + "hash": "16265282132677230376" + }, + { + "file": "apps/stress-test/src/renderers/v8/stress.tsx", + "hash": "11516277076088170648" + }, + { + "file": "apps/stress-test/src/renderers/v8/textField.tsx", + "hash": "15777792370713890617" + }, + { + "file": "apps/stress-test/src/renderers/v8/textarea.tsx", + "hash": "5651749419672941671" + }, + { + "file": "apps/stress-test/src/renderers/v9/btn/basic.tsx", + "hash": "7135601453948143150" + }, + { + "file": "apps/stress-test/src/renderers/v9/btn/idiomatic.tsx", + "hash": "17785011319006702868" + }, + { + "file": "apps/stress-test/src/renderers/v9/btn/override.tsx", + "hash": "5832742309068265507" + }, + { + "file": "apps/stress-test/src/renderers/v9/btn/styles.ts", + "hash": "2372224596345633038" + }, + { + "file": "apps/stress-test/src/renderers/v9/button.tsx", + "hash": "12612410767034293702" + }, + { + "file": "apps/stress-test/src/renderers/v9/checkbox.tsx", + "hash": "3401473945961708472" + }, + { + "file": "apps/stress-test/src/renderers/v9/input.tsx", + "hash": "8820280999885685987" + }, + { + "file": "apps/stress-test/src/renderers/v9/spinButton/noPseudos.tsx", + "hash": "2688120599484118925" + }, + { + "file": "apps/stress-test/src/renderers/v9/spinButton/vanilla.tsx", + "hash": "13829098914655280350" + }, + { + "file": "apps/stress-test/src/renderers/v9/spinButton.tsx", + "hash": "6121116104547615511" + }, + { + "file": "apps/stress-test/src/renderers/v9/stress.tsx", + "hash": "14702699307755792534" + }, + { + "file": "apps/stress-test/src/renderers/v9/textarea/noPseudo.tsx", + "hash": "1389311219434304303" + }, + { + "file": "apps/stress-test/src/renderers/v9/textarea.tsx", + "hash": "12873383168720038622" + }, + { + "file": "apps/stress-test/src/renderers/v9/vanillaButton.tsx", + "hash": "4516616351088856213" + }, + { + "file": "apps/stress-test/src/renderers/wc/btn/vanillaButton.ts", + "hash": "10811222679811356956" + }, + { + "file": "apps/stress-test/src/renderers/wc/btn/wcBasicButton.ts", + "hash": "11539836511375251289" + }, + { + "file": "apps/stress-test/src/renderers/wc/button.ts", + "hash": "6999027257311316012" + }, + { + "file": "apps/stress-test/src/renderers/wc/checkbox.ts", + "hash": "15970545569051510853" + }, + { + "file": "apps/stress-test/src/renderers/wc/numberField/vanilla.ts", + "hash": "8959457943263928112" + }, + { + "file": "apps/stress-test/src/renderers/wc/numberField.ts", + "hash": "16321108348585429551" + }, + { + "file": "apps/stress-test/src/renderers/wc/stress.ts", + "hash": "10883422701119623451" + }, + { + "file": "apps/stress-test/src/renderers/wc/textField.ts", + "hash": "291657744163180278" + }, + { + "file": "apps/stress-test/src/shared/css/RandomSelector.ts", + "hash": "16765679475685581804" + }, + { + "file": "apps/stress-test/src/shared/css/injectStyles.ts", + "hash": "874717523769405550" + }, + { + "file": "apps/stress-test/src/shared/react/ReactSelectorTree.tsx", + "hash": "1904747251329859137" + }, + { + "file": "apps/stress-test/src/shared/react/ReactTest.tsx", + "hash": "15293360124561503855" + }, + { + "file": "apps/stress-test/src/shared/react/ReactTree.tsx", + "hash": "7152825019561051430" + }, + { + "file": "apps/stress-test/src/shared/react/TestAdd.tsx", + "hash": "12303512287437308333" + }, + { + "file": "apps/stress-test/src/shared/react/TestInjectStyles.tsx", + "hash": "15879335621216282780" + }, + { + "file": "apps/stress-test/src/shared/react/TestMount.tsx", + "hash": "7958151074071589670" + }, + { + "file": "apps/stress-test/src/shared/react/TestReRenderAll.tsx", + "hash": "11165957533216239885" + }, + { + "file": "apps/stress-test/src/shared/react/TestRemoveAll.tsx", + "hash": "9728966942634649684" + }, + { + "file": "apps/stress-test/src/shared/react/onRender.ts", + "hash": "13278968105407979487" + }, + { + "file": "apps/stress-test/src/shared/react/types.ts", + "hash": "17179176776844544347" + }, + { + "file": "apps/stress-test/src/shared/tree/iterators/dfs.ts", + "hash": "12875190868999900583" + }, + { + "file": "apps/stress-test/src/shared/tree/types.ts", + "hash": "7464791436826229288" + }, + { + "file": "apps/stress-test/src/shared/utils/performanceMeasure.ts", + "hash": "3012816799120387809" + }, + { + "file": "apps/stress-test/src/shared/utils/random.ts", + "hash": "16404106474801088880" + }, + { + "file": "apps/stress-test/src/shared/utils/testOptions.ts", + "hash": "17341661357557143378" + }, + { + "file": "apps/stress-test/src/shared/utils/testUtils.ts", + "hash": "12817262226704966804" + }, + { + "file": "apps/stress-test/src/shared/vanilla/TestAdd.ts", + "hash": "9408687668738176897" + }, + { + "file": "apps/stress-test/src/shared/vanilla/TestInjectStyles.ts", + "hash": "14944531061658898293" + }, + { + "file": "apps/stress-test/src/shared/vanilla/TestMount.ts", + "hash": "4062758155564446044" + }, + { + "file": "apps/stress-test/src/shared/vanilla/TestReRenderAll.ts", + "hash": "505702295482162602" + }, + { + "file": "apps/stress-test/src/shared/vanilla/TestRemoveAll.ts", + "hash": "6839898938459418030" + }, + { + "file": "apps/stress-test/src/shared/vanilla/VanillaSelectorTree.ts", + "hash": "13281375955283748015" + }, + { + "file": "apps/stress-test/src/shared/vanilla/VanillaTree.ts", + "hash": "577304213019575576" + }, + { + "file": "apps/stress-test/src/shared/vanilla/types.ts", + "hash": "11716853905215850052" + }, + { + "file": "apps/stress-test/src/shared/wc/TestAdd.ts", + "hash": "7712416855864373058" + }, + { + "file": "apps/stress-test/src/shared/wc/TestInjectStyles.ts", + "hash": "17649406931455398846" + }, + { + "file": "apps/stress-test/src/shared/wc/TestMount.ts", + "hash": "12906067654388519872" + }, + { + "file": "apps/stress-test/src/shared/wc/TestReRenderAll.ts", + "hash": "5312913760596417727" + }, + { + "file": "apps/stress-test/src/shared/wc/TestRemoveAll.ts", + "hash": "18443864224568875877" + }, + { + "file": "apps/stress-test/src/shared/wc/WCSelectorTree.ts", + "hash": "14790884250663509401" + }, + { + "file": "apps/stress-test/src/shared/wc/WCTest.ts", + "hash": "16321518401394895901" + }, + { + "file": "apps/stress-test/src/shared/wc/WCTree.ts", + "hash": "6417409144636896365" + }, + { + "file": "apps/stress-test/src/shared/wc/types.ts", + "hash": "16914982769205636568" + }, + { + "file": "apps/stress-test/tsconfig.json", + "hash": "14768176472458847426" + }, + { + "file": "apps/stress-test/tsconfig.scripts.json", + "hash": "14672983425013350832" + }, + { + "file": "apps/stress-test/tsconfig.type.json", + "hash": "14876708043234667071" + }, + { + "file": "apps/stress-test/webpack/griffelConfig.ts", + "hash": "5590847160006798528" + }, + { + "file": "apps/stress-test/webpack/pageConfig.ts", + "hash": "49920576016816112" + }, + { + "file": "apps/stress-test/webpack/webpack.config.ts", + "hash": "12028734856447424120" + } + ], + "@fluentui/react-spinner": [ + { + "file": "packages/react-components/react-spinner/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-spinner/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-spinner/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-spinner/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-spinner/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-spinner/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-spinner/CHANGELOG.json", + "hash": "3280890749163842627" + }, + { + "file": "packages/react-components/react-spinner/CHANGELOG.md", + "hash": "12792390149026574823" + }, + { + "file": "packages/react-components/react-spinner/LICENSE", + "hash": "14553388487284712078" + }, + { + "file": "packages/react-components/react-spinner/README.md", + "hash": "10087843760024113769" + }, + { + "file": "packages/react-components/react-spinner/bundle-size/Spinner.fixture.js", + "hash": "5992710611579886911" + }, + { + "file": "packages/react-components/react-spinner/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-spinner/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-spinner/docs/MIGRATION.md", + "hash": "4271430718709456187" + }, + { + "file": "packages/react-components/react-spinner/docs/Spec.md", + "hash": "8108242124769863167" + }, + { + "file": "packages/react-components/react-spinner/etc/react-spinner.api.md", + "hash": "6943912974007911651" + }, + { + "file": "packages/react-components/react-spinner/jest.config.js", + "hash": "11572584267529988690" + }, + { + "file": "packages/react-components/react-spinner/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-spinner/package.json", + "hash": "12596561334443842269", + "deps": [ + "@fluentui/react-jsx-runtime", + "@fluentui/react-label", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-spinner/project.json", + "hash": "16333624156321919677" + }, + { + "file": "packages/react-components/react-spinner/src/Spinner.ts", + "hash": "17775753931591747303" + }, + { + "file": "packages/react-components/react-spinner/src/components/Spinner/DefaultSvg.tsx", + "hash": "2492171149641849851" + }, + { + "file": "packages/react-components/react-spinner/src/components/Spinner/Spinner.test.tsx", + "hash": "16612308379317311160" + }, + { + "file": "packages/react-components/react-spinner/src/components/Spinner/Spinner.tsx", + "hash": "11487284038740981348" + }, + { + "file": "packages/react-components/react-spinner/src/components/Spinner/Spinner.types.ts", + "hash": "11615634852342602324" + }, + { + "file": "packages/react-components/react-spinner/src/components/Spinner/index.ts", + "hash": "5479350457561490387" + }, + { + "file": "packages/react-components/react-spinner/src/components/Spinner/renderSpinner.tsx", + "hash": "5967742638171182429" + }, + { + "file": "packages/react-components/react-spinner/src/components/Spinner/useSpinner.tsx", + "hash": "5315405786166520951" + }, + { + "file": "packages/react-components/react-spinner/src/components/Spinner/useSpinnerStyles.styles.ts", + "hash": "9739165177237335620" + }, + { + "file": "packages/react-components/react-spinner/src/contexts/SpinnerContext.ts", + "hash": "15656672469164403534" + }, + { + "file": "packages/react-components/react-spinner/src/contexts/index.ts", + "hash": "18421418232924887404" + }, + { + "file": "packages/react-components/react-spinner/src/index.ts", + "hash": "12925949466018778405" + }, + { + "file": "packages/react-components/react-spinner/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerAppearance.stories.tsx", + "hash": "2553746132280526795" + }, + { + "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerBestPractices.md", + "hash": "14494351965436565766" + }, + { + "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerDefault.stories.tsx", + "hash": "5947288127862564020" + }, + { + "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerDescription.md", + "hash": "2258339333508008098" + }, + { + "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerLabel.stories.tsx", + "hash": "15822432114109503670" + }, + { + "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerSize.stories.tsx", + "hash": "3317730365577270949" + }, + { + "file": "packages/react-components/react-spinner/stories/Spinner/index.stories.tsx", + "hash": "17876671725641816133" + }, + { + "file": "packages/react-components/react-spinner/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-spinner/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-spinner/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-teaching-popover-preview": [ + { + "file": "packages/react-components/react-teaching-popover-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/CHANGELOG.json", + "hash": "8994884635951557618" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/CHANGELOG.md", + "hash": "14480893186605819528" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/LICENSE", + "hash": "8318516742902246056" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/README.md", + "hash": "4815969679662335124" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/docs/Spec.md", + "hash": "16256309628029914774" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/etc/images/swapImage.png", + "hash": "12876338665092853890" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/etc/react-teaching-popover-preview.api.md", + "hash": "11243623359092034041" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/jest.config.js", + "hash": "13584371025946738595" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/package.json", + "hash": "17670663144617569278", + "deps": [ + "@fluentui/react-jsx-runtime", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/react-shared-contexts", + "@fluentui/react-popover", + "@fluentui/react-button", + "@fluentui/react-tabster", + "npm:@fluentui/react-icons", + "@fluentui/react-aria", + "@fluentui/react-context-selector", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-teaching-popover-preview/project.json", + "hash": "14616591285923787189" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopover.ts", + "hash": "7389541180256976710" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverActions.ts", + "hash": "5358762121561117822" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverBody.ts", + "hash": "1131558293591082898" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverButton.ts", + "hash": "7413929216130545088" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverCarousel.ts", + "hash": "12601511764903480892" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverContext.ts", + "hash": "13481016016250248226" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverHeader.ts", + "hash": "15529787251709216705" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverPageCount.ts", + "hash": "17073836279869371730" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverSurface.ts", + "hash": "14483713832663730605" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverTitle.ts", + "hash": "13840095734895178938" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverTrigger.ts", + "hash": "9281431365623494399" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.test.tsx", + "hash": "112626277921287604" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.tsx", + "hash": "14097696607211212505" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.types.ts", + "hash": "12289824331777302830" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/index.ts", + "hash": "1226227490827364046" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/renderTeachingPopover.tsx", + "hash": "11005122137749609355" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/useTeachingPopover.ts", + "hash": "9421874386964730109" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/useTeachingPopoverContext.ts", + "hash": "15884992890186760431" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.test.tsx", + "hash": "15349775667547186854" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.tsx", + "hash": "14030510950857980014" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.types.ts", + "hash": "16827896840583128219" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/__snapshots__/TeachingPopoverActions.test.tsx.snap", + "hash": "18337752677565992943" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/index.ts", + "hash": "18435084670675140657" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/renderTeachingPopoverActions.tsx", + "hash": "14266117732360718671" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/useTeachingPopoverActions.ts", + "hash": "4096968893721737403" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/useTeachingPopoverActionsStyles.styles.ts", + "hash": "17255966558997131615" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.test.tsx", + "hash": "11495521293989665067" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.tsx", + "hash": "7858610052521811915" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.types.ts", + "hash": "17319835197952734098" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/__snapshots__/TeachingPopoverBody.test.tsx.snap", + "hash": "4314797497538624872" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/index.ts", + "hash": "9472987200176136993" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/renderTeachingPopoverBody.tsx", + "hash": "7235475384754499998" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/useTeachingPopoverBody.ts", + "hash": "15612610339406533157" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.ts", + "hash": "11908879224221270510" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.test.tsx", + "hash": "12558548386874541122" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.tsx", + "hash": "4404208766411340943" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.types.ts", + "hash": "732387137400908009" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/index.ts", + "hash": "11272611281483058771" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/renderTeachingPopoverButton.tsx", + "hash": "14249489053108298165" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/useTeachingPopoverButton.ts", + "hash": "10608687828497095226" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/useTeachingPopoverButtonStyles.styles.ts", + "hash": "7486815103861852465" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.test.tsx", + "hash": "15114064730783324960" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.tsx", + "hash": "15064373276874971387" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.ts", + "hash": "6173872613171697428" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/__snapshots__/TeachingPopoverCarousel.test.tsx.snap", + "hash": "10518328939545785520" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/index.ts", + "hash": "12454703240467593591" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.tsx", + "hash": "14124941062994286254" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.ts", + "hash": "6437048122874103933" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.ts", + "hash": "7582112356649397034" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.test.tsx", + "hash": "2708718707606539991" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.tsx", + "hash": "7770809662350163780" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.types.ts", + "hash": "1284598022225209861" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/__snapshots__/TeachingPopoverHeader.test.tsx.snap", + "hash": "66542911360758428" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/index.ts", + "hash": "15576869881896674472" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/renderTeachingPopoverHeader.tsx", + "hash": "18321155974286134670" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/useTeachingPopoverHeader.tsx", + "hash": "9762382604091848558" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.ts", + "hash": "3852469850417217256" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.test.tsx", + "hash": "4837419775547071769" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.tsx", + "hash": "17504625350392450179" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.types.ts", + "hash": "2843113478541239823" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/__snapshots__/TeachingPopoverPageCount.test.tsx.snap", + "hash": "11407218936841546097" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/index.ts", + "hash": "13686490779487932487" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/renderTeachingPopoverPageCount.tsx", + "hash": "3192186327141850669" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/useTeachingPopoverPageCount.ts", + "hash": "1970193870854102598" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/useTeachingPopoverPageCountStyles.styles.ts", + "hash": "10634833093274167840" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.test.tsx", + "hash": "5724934428492091490" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.tsx", + "hash": "11272575543697199841" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.types.ts", + "hash": "14003263876187418803" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/__snapshots__/TeachingPopoverSurface.test.tsx.snap", + "hash": "9489208442087234503" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/index.ts", + "hash": "11298545263727765591" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/renderTeachingPopoverSurface.tsx", + "hash": "5159387223578862066" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/useTeachingPopoverSurface.ts", + "hash": "8311099309561251981" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.ts", + "hash": "14065583085885253091" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.test.tsx", + "hash": "17768990193341551114" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.tsx", + "hash": "525328514845513715" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.types.ts", + "hash": "3090372936974350401" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/__snapshots__/TeachingPopoverTitle.test.tsx.snap", + "hash": "4146139576376363143" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/index.ts", + "hash": "6417325189862749957" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/renderTeachingPopoverTitle.tsx", + "hash": "1606987935364254240" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/useTeachingPopoverTitle.tsx", + "hash": "1009662058008658141" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.ts", + "hash": "3770385461668929171" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.test.tsx", + "hash": "5471836767446183674" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.tsx", + "hash": "14008566932184133972" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.ts", + "hash": "14896345722113243352" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/__snapshots__/TeachingPopoverTrigger.test.tsx.snap", + "hash": "6172078088319873378" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/index.ts", + "hash": "7072858892780895633" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.tsx", + "hash": "11095981190180064218" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.ts", + "hash": "16849029819529451671" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/index.ts", + "hash": "12678804439345883397" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/src/testing/mockTeachingPopoverContext.ts", + "hash": "14032699750228718615" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverBestPractices.md", + "hash": "13132854725403121719" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverBranded.stories.tsx", + "hash": "17521116200124480646" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarousel.stories.tsx", + "hash": "5192604369618065969" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarouselBranded.stories.tsx", + "hash": "13345141870510142666" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarouselText.stories.tsx", + "hash": "18260449879385146338" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDefault.stories.tsx", + "hash": "4876509690720671779" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDefaultBranded.stories.tsx", + "hash": "17297757085466422856" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/index.stories.tsx", + "hash": "13975208357646002979" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-teaching-popover-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/babel-preset-storybook-full-source": [ + { + "file": "packages/react-components/babel-preset-storybook-full-source/.babelrc.json", + "hash": "8174012058119950495" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/.eslintignore", + "hash": "9846005931812453978" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/.eslintrc.json", + "hash": "11018738359270224912" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/LICENSE", + "hash": "2851101912028128850" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/README.md", + "hash": "10822226558355648087" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/etc/babel-preset-storybook-full-source.api.md", + "hash": "10134344240064969487" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/jest.config.js", + "hash": "17998182148295247129" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/package.json", + "hash": "16304265586387765120", + "deps": [ + "npm:@babel/core", + "npm:@swc/helpers", + "npm:prettier", + "npm:pkg-up", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/project.json", + "hash": "16617351147562126074" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-inner-assignments-from-exported/code.js", + "hash": "12250846775050869646" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-inner-assignments-from-exported/output.js", + "hash": "3913454441417757431" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-params-from-not-exported/code.js", + "hash": "5377692644416536257" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-params-from-not-exported/output.js", + "hash": "5359392563189908938" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/removes-assigns-from-exported/code.js", + "hash": "14695982501113684921" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/removes-assigns-from-exported/output.js", + "hash": "1765868221018401588" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/add-parameter/code.js", + "hash": "6315840616906615" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/add-parameter/output.js", + "hash": "15744114046571496255" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/keep-sourcecode-spacing/code.js", + "hash": "6397343963531239775" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/keep-sourcecode-spacing/output.js", + "hash": "2870614453866614178" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/import-override/code.js", + "hash": "8331756490526386489" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/import-override/output.js", + "hash": "1104668652453585821" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-declarations/code.js", + "hash": "11266463562398618277" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-declarations/output.js", + "hash": "12987886010279186167" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-specifiers/code.js", + "hash": "5428787723527841401" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-specifiers/output.js", + "hash": "16810803813997568777" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/no-import-declarations/code.js", + "hash": "17946180769179213796" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/no-import-declarations/output.js", + "hash": "17946180769179213796" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/non-fluent-import-declaration/code.js", + "hash": "3590937219013626819" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/non-fluent-import-declaration/output.js", + "hash": "6032116881122134529" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/code.js", + "hash": "11406060193416782004" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/output.js", + "hash": "9437463913197939329" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/package.json", + "hash": "16793539485026835037" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/single-import-declaration/code.js", + "hash": "17372187984601639124" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/single-import-declaration/output.js", + "hash": "6432025930017863990" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/fullsource.test.ts", + "hash": "5856907194449946095" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/fullsource.ts", + "hash": "4310623060008865206" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/index.ts", + "hash": "6047420778112851575" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/modifyImports.test.ts", + "hash": "2149201365036783550" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/modifyImports.ts", + "hash": "10423675854161091140" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/removeStorybookParameters.test.ts", + "hash": "2032450309373789045" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/removeStorybookParameters.ts", + "hash": "3606776635662219250" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/src/types.ts", + "hash": "10005011061873778871" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/tsconfig.lib.json", + "hash": "6215804205440595574" + }, + { + "file": "packages/react-components/babel-preset-storybook-full-source/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-context-selector": [ + { + "file": "packages/react-components/react-context-selector/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-context-selector/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-context-selector/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-context-selector/CHANGELOG.json", + "hash": "12357456438201883679" + }, + { + "file": "packages/react-components/react-context-selector/CHANGELOG.md", + "hash": "1688705207205191806" + }, + { + "file": "packages/react-components/react-context-selector/LICENSE", + "hash": "14418648610861842636" + }, + { + "file": "packages/react-components/react-context-selector/README.md", + "hash": "4793703731858594212" + }, + { + "file": "packages/react-components/react-context-selector/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-context-selector/config/tests.js", + "hash": "9971916367882244724" + }, + { + "file": "packages/react-components/react-context-selector/etc/react-context-selector.api.md", + "hash": "817145045488550826" + }, + { + "file": "packages/react-components/react-context-selector/jest.config.js", + "hash": "396823205152653422" + }, + { + "file": "packages/react-components/react-context-selector/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-context-selector/package.json", + "hash": "14209163811172208834", + "deps": [ + "@fluentui/react-utilities", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-context-selector/project.json", + "hash": "10672805380923032364" + }, + { + "file": "packages/react-components/react-context-selector/src/createContext.test.tsx", + "hash": "4604017868584066298" + }, + { + "file": "packages/react-components/react-context-selector/src/createContext.ts", + "hash": "1937703165389642557" + }, + { + "file": "packages/react-components/react-context-selector/src/index.ts", + "hash": "15808868075184724918" + }, + { + "file": "packages/react-components/react-context-selector/src/types.ts", + "hash": "3342966834093442693" + }, + { + "file": "packages/react-components/react-context-selector/src/useContextSelector.test.tsx", + "hash": "2957338539505755381" + }, + { + "file": "packages/react-components/react-context-selector/src/useContextSelector.ts", + "hash": "5840336099139347811" + }, + { + "file": "packages/react-components/react-context-selector/src/useHasParentContext.test.tsx", + "hash": "1290164710762769818" + }, + { + "file": "packages/react-components/react-context-selector/src/useHasParentContext.ts", + "hash": "6039941632328716696" + }, + { + "file": "packages/react-components/react-context-selector/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/react-context-selector/tsconfig.lib.json", + "hash": "14975475306433073951" + }, + { + "file": "packages/react-components/react-context-selector/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-shared-contexts": [ + { + "file": "packages/react-components/react-shared-contexts/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-shared-contexts/.eslintrc.json", + "hash": "2655957677577488347" + }, + { + "file": "packages/react-components/react-shared-contexts/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-shared-contexts/CHANGELOG.json", + "hash": "11450723176664332258" + }, + { + "file": "packages/react-components/react-shared-contexts/CHANGELOG.md", + "hash": "8041467250161143580" + }, + { + "file": "packages/react-components/react-shared-contexts/LICENSE", + "hash": "13088925295509647167" + }, + { + "file": "packages/react-components/react-shared-contexts/README.md", + "hash": "4751810605471065515" + }, + { + "file": "packages/react-components/react-shared-contexts/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-shared-contexts/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-shared-contexts/etc/react-shared-contexts.api.md", + "hash": "11556634729467213907" + }, + { + "file": "packages/react-components/react-shared-contexts/jest.config.js", + "hash": "538613335903488751" + }, + { + "file": "packages/react-components/react-shared-contexts/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-shared-contexts/package.json", + "hash": "13537722509734511610", + "deps": [ + "@fluentui/react-theme", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-components/react-shared-contexts/project.json", + "hash": "5371634384165049691" + }, + { + "file": "packages/react-components/react-shared-contexts/src/AnnounceContext/AnnounceContext.ts", + "hash": "2101100231139745435" + }, + { + "file": "packages/react-components/react-shared-contexts/src/AnnounceContext/index.ts", + "hash": "11793601976036868298" + }, + { + "file": "packages/react-components/react-shared-contexts/src/BackgroundAppearanceContext/BackgroundAppearanceContext.ts", + "hash": "11073209310416173040" + }, + { + "file": "packages/react-components/react-shared-contexts/src/BackgroundAppearanceContext/index.ts", + "hash": "4791795188203536339" + }, + { + "file": "packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/CustomStyleHooksContext.ts", + "hash": "8144953372014138588" + }, + { + "file": "packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/index.ts", + "hash": "9912580371128432978" + }, + { + "file": "packages/react-components/react-shared-contexts/src/CustomStyleHooksContext.ts", + "hash": "8242274099778806427" + }, + { + "file": "packages/react-components/react-shared-contexts/src/OverridesContext/OverridesContext.ts", + "hash": "11500774440824693477" + }, + { + "file": "packages/react-components/react-shared-contexts/src/OverridesContext/index.ts", + "hash": "11711806393149686484" + }, + { + "file": "packages/react-components/react-shared-contexts/src/PortalMountNodeContext.ts", + "hash": "11399465082133766208" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ProviderContext/ProviderContext.ts", + "hash": "9227668728843902181" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ProviderContext/index.ts", + "hash": "7579138418481595432" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ProviderContext.ts", + "hash": "7037424765520462353" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ThemeClassNameContext/ThemeClassNameContext.ts", + "hash": "3418753637748263121" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ThemeClassNameContext/index.ts", + "hash": "17327136154859927590" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ThemeClassNameContext.ts", + "hash": "16685286281086879188" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ThemeContext/ThemeContext.ts", + "hash": "17138251330974077870" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ThemeContext/index.ts", + "hash": "8055522461387744849" + }, + { + "file": "packages/react-components/react-shared-contexts/src/ThemeContext.ts", + "hash": "5803292591144406153" + }, + { + "file": "packages/react-components/react-shared-contexts/src/TooltipVisibilityContext/TooltipContext.ts", + "hash": "6624600191869567184" + }, + { + "file": "packages/react-components/react-shared-contexts/src/TooltipVisibilityContext/index.ts", + "hash": "17125185529833455986" + }, + { + "file": "packages/react-components/react-shared-contexts/src/TooltipVisibilityContext.ts", + "hash": "6523660209536733373" + }, + { + "file": "packages/react-components/react-shared-contexts/src/index.ts", + "hash": "9275468125053272462" + }, + { + "file": "packages/react-components/react-shared-contexts/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/react-shared-contexts/tsconfig.lib.json", + "hash": "14975475306433073951" + }, + { + "file": "packages/react-components/react-shared-contexts/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-datepicker-compat": [ + { + "file": "packages/react-components/react-datepicker-compat/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-datepicker-compat/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-datepicker-compat/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-datepicker-compat/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-datepicker-compat/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-datepicker-compat/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-datepicker-compat/CHANGELOG.json", + "hash": "11013446861406926313" + }, + { + "file": "packages/react-components/react-datepicker-compat/CHANGELOG.md", + "hash": "12357247949196268869" + }, + { + "file": "packages/react-components/react-datepicker-compat/LICENSE", + "hash": "15467235041157898768" + }, + { + "file": "packages/react-components/react-datepicker-compat/README.md", + "hash": "14965536454179875946" + }, + { + "file": "packages/react-components/react-datepicker-compat/bundle-size/DatePicker.fixture.js", + "hash": "5780478783270741987" + }, + { + "file": "packages/react-components/react-datepicker-compat/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-datepicker-compat/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-datepicker-compat/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-datepicker-compat/etc/react-datepicker-compat.api.md", + "hash": "6017916360745789326" + }, + { + "file": "packages/react-components/react-datepicker-compat/jest.config.js", + "hash": "15440392279685094633" + }, + { + "file": "packages/react-components/react-datepicker-compat/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-datepicker-compat/package.json", + "hash": "12713229717479939122", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-calendar-compat", + "@fluentui/react-field", + "npm:@fluentui/react-icons", + "@fluentui/react-input", + "@fluentui/react-jsx-runtime", + "@fluentui/react-popover", + "@fluentui/react-portal", + "@fluentui/react-positioning", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-datepicker-compat/project.json", + "hash": "11680857818498676120" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/DatePicker.ts", + "hash": "14140387775859161252" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.cy.tsx", + "hash": "12630229637117863596" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.test.tsx", + "hash": "12404958269483653272" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.tsx", + "hash": "8759052501401237921" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.types.ts", + "hash": "8659224020186844831" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap", + "hash": "7292979735761155863" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/defaults.ts", + "hash": "9663199247101225899" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/index.ts", + "hash": "2306196274500634021" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/renderDatePicker.tsx", + "hash": "4545229128790594608" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/useDatePicker.tsx", + "hash": "8805471839390216809" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/useDatePickerStyles.styles.ts", + "hash": "1151934265857114204" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/index.ts", + "hash": "11139978793168257780" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-datepicker-compat/src/utils/usePopupPositioning.ts", + "hash": "8552065050899537438" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerBestPractices.md", + "hash": "15284497134478716193" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerControlled.stories.tsx", + "hash": "17703752551334714090" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerCustomDateFormatting.stories.tsx", + "hash": "17923939141629207493" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDateBoundaries.stories.tsx", + "hash": "7939700521736332519" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDateRange.stories.tsx", + "hash": "6776886943573250862" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDefault.stories.tsx", + "hash": "8542138294343046914" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDescription.md", + "hash": "1753461532339200045" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDisabled.stories.tsx", + "hash": "7534425957894004424" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerErrorHandling.stories.tsx", + "hash": "3115559528923035285" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerFirstDayOfTheWeek.stories.tsx", + "hash": "2591018952854976305" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerLocalized.stories.tsx", + "hash": "11758139077848427607" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerRequired.stories.tsx", + "hash": "8512856872562400035" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerTextInput.stories.tsx", + "hash": "16850430938666912680" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerWeekNumbers.stories.tsx", + "hash": "2856056823419360247" + }, + { + "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/index.stories.tsx", + "hash": "8278766610962775166" + }, + { + "file": "packages/react-components/react-datepicker-compat/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-datepicker-compat/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-datepicker-compat/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-datepicker-compat/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-storybook-addon": [ + { + "file": "packages/react-components/react-storybook-addon/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-storybook-addon/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-storybook-addon/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-storybook-addon/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-storybook-addon/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-storybook-addon/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-storybook-addon/CHANGELOG.json", + "hash": "3474712915487995213" + }, + { + "file": "packages/react-components/react-storybook-addon/CHANGELOG.md", + "hash": "8184359278978525016" + }, + { + "file": "packages/react-components/react-storybook-addon/LICENSE", + "hash": "6669073305911860467" + }, + { + "file": "packages/react-components/react-storybook-addon/README.md", + "hash": "8064450981890936119" + }, + { + "file": "packages/react-components/react-storybook-addon/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-storybook-addon/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-storybook-addon/etc/react-storybook-addon.api.md", + "hash": "11258033129711696263" + }, + { + "file": "packages/react-components/react-storybook-addon/jest.config.js", + "hash": "7521503279647251132" + }, + { + "file": "packages/react-components/react-storybook-addon/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-storybook-addon/package.json", + "hash": "8384255895641764171", + "deps": [ + "@fluentui/react-theme", + "@fluentui/react-provider", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:@storybook/addons", + "npm:@storybook/api", + "npm:@storybook/components", + "npm:@storybook/core-events", + "npm:@storybook/theming" + ] + }, + { + "file": "packages/react-components/react-storybook-addon/preset.js", + "hash": "2087058436361447367" + }, + { + "file": "packages/react-components/react-storybook-addon/project.json", + "hash": "1682233284854212766" + }, + { + "file": "packages/react-components/react-storybook-addon/src/components/ReactStrictMode.tsx", + "hash": "1709717175354952452" + }, + { + "file": "packages/react-components/react-storybook-addon/src/components/ThemePicker.tsx", + "hash": "3302378609426153071" + }, + { + "file": "packages/react-components/react-storybook-addon/src/constants.ts", + "hash": "6964172751209884361" + }, + { + "file": "packages/react-components/react-storybook-addon/src/decorators/withFluentProvider.tsx", + "hash": "4816286417694522871" + }, + { + "file": "packages/react-components/react-storybook-addon/src/decorators/withReactStrictMode.tsx", + "hash": "16425806883864595845" + }, + { + "file": "packages/react-components/react-storybook-addon/src/hooks.ts", + "hash": "586825407018303425" + }, + { + "file": "packages/react-components/react-storybook-addon/src/index.ts", + "hash": "18114374399441569147" + }, + { + "file": "packages/react-components/react-storybook-addon/src/preset/manager.ts", + "hash": "13384330975042902281" + }, + { + "file": "packages/react-components/react-storybook-addon/src/preset/preview.ts", + "hash": "14589431869663794454" + }, + { + "file": "packages/react-components/react-storybook-addon/src/theme.ts", + "hash": "11652898211575247400" + }, + { + "file": "packages/react-components/react-storybook-addon/stories/index.stories.tsx", + "hash": "8107404018508303844" + }, + { + "file": "packages/react-components/react-storybook-addon/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-storybook-addon/tsconfig.lib.json", + "hash": "2330431448937249608" + }, + { + "file": "packages/react-components/react-storybook-addon/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/scripts-fluentui-publish": [ + { + "file": "scripts/fluentui-publish/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/fluentui-publish/index.ts", + "hash": "1957588669308405884" + }, + { + "file": "scripts/fluentui-publish/jest.config.js", + "hash": "5846928013675828309" + }, + { + "file": "scripts/fluentui-publish/package.json", + "hash": "6624435746520159601", + "deps": ["@fluentui/scripts-monorepo"] + }, + { + "file": "scripts/fluentui-publish/project.json", + "hash": "6709988330732270986" + }, + { + "file": "scripts/fluentui-publish/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/fluentui-publish/tsconfig.lib.json", + "hash": "3753806828268919288" + }, + { + "file": "scripts/fluentui-publish/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/circulars-test": [ + { + "file": "packages/fluentui/circulars-test/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/circulars-test/README.md", + "hash": "16627736154734360742" + }, + { + "file": "packages/fluentui/circulars-test/gulpfile.ts", + "hash": "8697200394590035566" + }, + { + "file": "packages/fluentui/circulars-test/package.json", + "hash": "12258503670094856879", + "deps": ["@fluentui/react-northstar", "@fluentui/scripts-gulp"] + }, + { + "file": "packages/fluentui/circulars-test/project.json", + "hash": "14472453665394675939" + } + ], + "@fluentui/react-icon-provider": [ + { + "file": "packages/react-icon-provider/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-icon-provider/.npmignore", + "hash": "7699079327417375383" + }, + { + "file": "packages/react-icon-provider/CHANGELOG.json", + "hash": "7676443020765681429" + }, + { + "file": "packages/react-icon-provider/CHANGELOG.md", + "hash": "4138333685783748774" + }, + { + "file": "packages/react-icon-provider/LICENSE", + "hash": "3916819357349058896" + }, + { + "file": "packages/react-icon-provider/README.md", + "hash": "11260395080290584789" + }, + { + "file": "packages/react-icon-provider/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/react-icon-provider/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-icon-provider/etc/react-icon-provider.api.md", + "hash": "2639769618235613758" + }, + { + "file": "packages/react-icon-provider/jest.config.js", + "hash": "12858682342254308337" + }, + { + "file": "packages/react-icon-provider/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-icon-provider/package.json", + "hash": "16700522927875202724", + "deps": [ + "@fluentui/set-version", + "@fluentui/style-utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-icon-provider/project.json", + "hash": "11213610105968358891" + }, + { + "file": "packages/react-icon-provider/src/IconProvider.test.tsx", + "hash": "9471100122187543170" + }, + { + "file": "packages/react-icon-provider/src/IconProvider.tsx", + "hash": "5846544110297203840" + }, + { + "file": "packages/react-icon-provider/src/IconProvider.types.ts", + "hash": "18141011749410796467" + }, + { + "file": "packages/react-icon-provider/src/index.ts", + "hash": "14545138585849154184" + }, + { + "file": "packages/react-icon-provider/src/version.ts", + "hash": "14409932537788799216" + }, + { + "file": "packages/react-icon-provider/tsconfig.json", + "hash": "5979352251281818134" + }, + { + "file": "packages/react-icon-provider/webpack.config.js", + "hash": "15864044479926769048" + } + ], + "@fluentui/public-docsite-setup": [ + { + "file": "packages/public-docsite-setup/.eslintrc.json", + "hash": "11992839191132505596" + }, + { + "file": "packages/public-docsite-setup/.npmignore", + "hash": "3740656116866054585" + }, + { + "file": "packages/public-docsite-setup/CHANGELOG.json", + "hash": "8618547025339672593" + }, + { + "file": "packages/public-docsite-setup/CHANGELOG.md", + "hash": "16215403087015415764" + }, + { + "file": "packages/public-docsite-setup/LICENSE", + "hash": "16265811467916620523" + }, + { + "file": "packages/public-docsite-setup/README.md", + "hash": "18053332391643812672" + }, + { + "file": "packages/public-docsite-setup/bin/create-site-manifests.js", + "hash": "2399047235238828921" + }, + { + "file": "packages/public-docsite-setup/homepage.htm", + "hash": "981869816544868480" + }, + { + "file": "packages/public-docsite-setup/index.html", + "hash": "12007521206803077125" + }, + { + "file": "packages/public-docsite-setup/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/public-docsite-setup/package.json", + "hash": "16349764460524795731", + "deps": ["@fluentui/eslint-plugin", "@fluentui/scripts-tasks"] + }, + { + "file": "packages/public-docsite-setup/project.json", + "hash": "3891386790338302307" + }, + { + "file": "packages/public-docsite-setup/scripts/generateHomepage.js", + "hash": "14016511638093064764" + }, + { + "file": "packages/public-docsite-setup/scripts/getLoadSiteConfig.js", + "hash": "8884841564332900835" + }, + { + "file": "packages/public-docsite-setup/src/constants.ts", + "hash": "16801533152691260155" + }, + { + "file": "packages/public-docsite-setup/src/index.ts", + "hash": "10886664963278811071" + }, + { + "file": "packages/public-docsite-setup/src/loadSite.ts", + "hash": "12087338822941859946" + }, + { + "file": "packages/public-docsite-setup/src/types.ts", + "hash": "17941423265517989148" + }, + { + "file": "packages/public-docsite-setup/tsconfig.json", + "hash": "5177948260028589190" + } + ], + "@fluentui/react-badge": [ + { + "file": "packages/react-components/react-badge/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-badge/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-badge/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-badge/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-badge/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-badge/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-badge/CHANGELOG.json", + "hash": "3838142065842905213" + }, + { + "file": "packages/react-components/react-badge/CHANGELOG.md", + "hash": "8328083364379344161" + }, + { + "file": "packages/react-components/react-badge/LICENSE", + "hash": "5659285969361613184" + }, + { + "file": "packages/react-components/react-badge/README.md", + "hash": "741049524515709119" + }, + { + "file": "packages/react-components/react-badge/bundle-size/Badge.fixture.js", + "hash": "18016310058213888091" + }, + { + "file": "packages/react-components/react-badge/bundle-size/CounterBadge.fixture.js", + "hash": "11116175457104908609" + }, + { + "file": "packages/react-components/react-badge/bundle-size/PresenseBadge.fixture.js", + "hash": "14243990803293442333" + }, + { + "file": "packages/react-components/react-badge/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-badge/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-badge/docs/MIGRATION.md", + "hash": "12718996084650884249" + }, + { + "file": "packages/react-components/react-badge/docs/Spec.md", + "hash": "4981436966355345762" + }, + { + "file": "packages/react-components/react-badge/etc/react-badge.api.md", + "hash": "17669930272481993235" + }, + { + "file": "packages/react-components/react-badge/jest.config.js", + "hash": "5702010820628736971" + }, + { + "file": "packages/react-components/react-badge/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-badge/package.json", + "hash": "13596268650071717014", + "deps": [ + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-badge/project.json", + "hash": "1247452013363452004" + }, + { + "file": "packages/react-components/react-badge/src/Badge.ts", + "hash": "2510791038021244676" + }, + { + "file": "packages/react-components/react-badge/src/CounterBadge.ts", + "hash": "6039544832911443106" + }, + { + "file": "packages/react-components/react-badge/src/PresenceBadge.ts", + "hash": "966139791510714730" + }, + { + "file": "packages/react-components/react-badge/src/components/Badge/Badge.test.tsx", + "hash": "2291120686699126936" + }, + { + "file": "packages/react-components/react-badge/src/components/Badge/Badge.tsx", + "hash": "5730875022532459229" + }, + { + "file": "packages/react-components/react-badge/src/components/Badge/Badge.types.ts", + "hash": "4284246403350811291" + }, + { + "file": "packages/react-components/react-badge/src/components/Badge/__snapshots__/Badge.test.tsx.snap", + "hash": "6711022694333634888" + }, + { + "file": "packages/react-components/react-badge/src/components/Badge/index.ts", + "hash": "1476629210370430931" + }, + { + "file": "packages/react-components/react-badge/src/components/Badge/renderBadge.tsx", + "hash": "9996716902381900230" + }, + { + "file": "packages/react-components/react-badge/src/components/Badge/useBadge.ts", + "hash": "6249942987623297178" + }, + { + "file": "packages/react-components/react-badge/src/components/Badge/useBadgeStyles.styles.ts", + "hash": "2198511761615120709" + }, + { + "file": "packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.test.tsx", + "hash": "16785701196245371781" + }, + { + "file": "packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.tsx", + "hash": "1852761979729563729" + }, + { + "file": "packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.types.ts", + "hash": "13654828388063681108" + }, + { + "file": "packages/react-components/react-badge/src/components/CounterBadge/__snapshots__/CounterBadge.test.tsx.snap", + "hash": "8082377041564993844" + }, + { + "file": "packages/react-components/react-badge/src/components/CounterBadge/index.ts", + "hash": "6547105508262150940" + }, + { + "file": "packages/react-components/react-badge/src/components/CounterBadge/useCounterBadge.ts", + "hash": "14338285655892039809" + }, + { + "file": "packages/react-components/react-badge/src/components/CounterBadge/useCounterBadgeStyles.styles.ts", + "hash": "10120133273911278700" + }, + { + "file": "packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.test.tsx", + "hash": "5815693297904013980" + }, + { + "file": "packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.tsx", + "hash": "9644698475507516468" + }, + { + "file": "packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.types.ts", + "hash": "16229658686092641977" + }, + { + "file": "packages/react-components/react-badge/src/components/PresenceBadge/__snapshots__/PresenceBadge.test.tsx.snap", + "hash": "15228924334910826003" + }, + { + "file": "packages/react-components/react-badge/src/components/PresenceBadge/index.ts", + "hash": "11517521578520876854" + }, + { + "file": "packages/react-components/react-badge/src/components/PresenceBadge/presenceIcons.ts", + "hash": "14406401175654278430" + }, + { + "file": "packages/react-components/react-badge/src/components/PresenceBadge/usePresenceBadge.tsx", + "hash": "7288458005042661885" + }, + { + "file": "packages/react-components/react-badge/src/components/PresenceBadge/usePresenceBadgeStyles.styles.ts", + "hash": "15934854199050763595" + }, + { + "file": "packages/react-components/react-badge/src/index.ts", + "hash": "16013987246277682438" + }, + { + "file": "packages/react-components/react-badge/src/testing/isConformant.ts", + "hash": "14447437808059758114" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/BadgeAppearance.stories.tsx", + "hash": "9157737770137255570" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/BadgeBestPractices.md", + "hash": "7394302782434059313" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/BadgeColor.stories.tsx", + "hash": "8736371573721917301" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/BadgeDefault.stories.tsx", + "hash": "16490059828019383252" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/BadgeDescription.md", + "hash": "10544040785170591815" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/BadgeIcon.stories.tsx", + "hash": "3092952115653825428" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/BadgeShapes.stories.tsx", + "hash": "3012525196355438962" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/BadgeSizes.stories.tsx", + "hash": "8996124492394830949" + }, + { + "file": "packages/react-components/react-badge/stories/Badge/index.stories.tsx", + "hash": "9336081823336802656" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeAppearance.stories.tsx", + "hash": "1132782369760502827" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeColor.stories.tsx", + "hash": "3726008495638286061" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDefault.stories.tsx", + "hash": "12495911009820026675" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDescription.md", + "hash": "17199299847592287892" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDot.stories.tsx", + "hash": "11304165446131649687" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeShapes.stories.tsx", + "hash": "2293809520768402959" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeSizes.stories.tsx", + "hash": "16654987495768560853" + }, + { + "file": "packages/react-components/react-badge/stories/CounterBadge/index.stories.tsx", + "hash": "8535943447027099881" + }, + { + "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeDefault.stories.tsx", + "hash": "15264240781375830137" + }, + { + "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeDescription.md", + "hash": "2055988351009907164" + }, + { + "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeOutOfOffice.stories.tsx", + "hash": "14955421743325613433" + }, + { + "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeSizes.stories.tsx", + "hash": "12704301323912754084" + }, + { + "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeStatus.stories.tsx", + "hash": "13799869294717671623" + }, + { + "file": "packages/react-components/react-badge/stories/PresenceBadge/index.stories.tsx", + "hash": "2602818216760981976" + }, + { + "file": "packages/react-components/react-badge/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-badge/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-badge/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/a11y-testing": [ + { + "file": "packages/a11y-testing/.eslintrc.json", + "hash": "11018738359270224912" + }, + { + "file": "packages/a11y-testing/.npmignore", + "hash": "15779616407447347661" + }, + { + "file": "packages/a11y-testing/CHANGELOG.json", + "hash": "15739043855444223084" + }, + { + "file": "packages/a11y-testing/CHANGELOG.md", + "hash": "17183189538011835521" + }, + { + "file": "packages/a11y-testing/LICENSE", + "hash": "7816564243463356568" + }, + { + "file": "packages/a11y-testing/README.md", + "hash": "10607231298984649280" + }, + { + "file": "packages/a11y-testing/just.config.ts", + "hash": "2411455081002746933" + }, + { + "file": "packages/a11y-testing/package.json", + "hash": "10737859425586630111", + "deps": [ + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "npm:jest", + "npm:@testing-library/react", + "npm:@testing-library/user-event", + "npm:react" + ] + }, + { + "file": "packages/a11y-testing/project.json", + "hash": "15648457560038035197" + }, + { + "file": "packages/a11y-testing/src/definitions/Button/buttonBehaviorDefinition.ts", + "hash": "7565738243156893217" + }, + { + "file": "packages/a11y-testing/src/definitions/Button/buttonGroupBehaviorDefinition.ts", + "hash": "3095800935524043018" + }, + { + "file": "packages/a11y-testing/src/definitions/Button/toggleButtonBehaviorDefinition.ts", + "hash": "580307916176779069" + }, + { + "file": "packages/a11y-testing/src/definitions/Link/linkBehaviorDefinition.ts", + "hash": "17397047756957383010" + }, + { + "file": "packages/a11y-testing/src/definitions/MenuButton/menuButtonBehaviorDefinition.ts", + "hash": "10953865562518239252" + }, + { + "file": "packages/a11y-testing/src/definitions/Pill/pillActionBehaviorDefinition.ts", + "hash": "6109436761723475906" + }, + { + "file": "packages/a11y-testing/src/definitions/Pill/pillBehaviorDefinition.ts", + "hash": "4554347345570701865" + }, + { + "file": "packages/a11y-testing/src/definitions/Pill/pillGroupBehaviorDefinition.ts", + "hash": "5989295955207284539" + }, + { + "file": "packages/a11y-testing/src/definitions/Pill/pillIconBehaviorDefinition.ts", + "hash": "3073001734700112300" + }, + { + "file": "packages/a11y-testing/src/definitions/Pill/pillImageBehaviorDefinition.ts", + "hash": "12369440037446817587" + }, + { + "file": "packages/a11y-testing/src/definitions/Pill/pillOptionBehaviorDefinition.ts", + "hash": "12091950550049802064" + }, + { + "file": "packages/a11y-testing/src/definitions/Popup/popupBehaviorDefinition.ts", + "hash": "7515556976799700459" + }, + { + "file": "packages/a11y-testing/src/definitions/index.ts", + "hash": "8697171680261455903" + }, + { + "file": "packages/a11y-testing/src/definitions/react-button/buttonAccessibilityBehaviorDefinition.ts", + "hash": "7074093598013342483" + }, + { + "file": "packages/a11y-testing/src/facades/ComponentTestFacade.tsx", + "hash": "5617571999278826429" + }, + { + "file": "packages/a11y-testing/src/facades/index.ts", + "hash": "8916232850542568642" + }, + { + "file": "packages/a11y-testing/src/index.ts", + "hash": "13336121115230139564" + }, + { + "file": "packages/a11y-testing/src/rules/index.ts", + "hash": "7218533088751468820" + }, + { + "file": "packages/a11y-testing/src/rules/rules.tsx", + "hash": "2997048678189845806" + }, + { + "file": "packages/a11y-testing/src/types.ts", + "hash": "17656570443003494391" + }, + { + "file": "packages/a11y-testing/src/validators/index.ts", + "hash": "4005811543520166967" + }, + { + "file": "packages/a11y-testing/src/validators/validate.ts", + "hash": "777267130200413044" + }, + { + "file": "packages/a11y-testing/tsconfig.json", + "hash": "8076373707397502125" + } + ], + "@fluentui/react-icons-northstar": [ + { + "file": "packages/fluentui/react-icons-northstar/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-icons-northstar/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-icons-northstar/README.md", + "hash": "13053638770459338997" + }, + { + "file": "packages/fluentui/react-icons-northstar/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-icons-northstar/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-icons-northstar/jest.config.js", + "hash": "3465031014798019550" + }, + { + "file": "packages/fluentui/react-icons-northstar/package.json", + "hash": "5931091629939874207", + "deps": [ + "npm:@babel/runtime", + "@fluentui/accessibility", + "@fluentui/react-bindings", + "@fluentui/styles", + "npm:classnames", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:@types/classnames", + "npm:lerna-alias", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-icons-northstar/project.json", + "hash": "2673713012878548677" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AcceptIcon.tsx", + "hash": "9767330132588126669" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AccessibilityIcon.tsx", + "hash": "3275560913924857013" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AddIcon.tsx", + "hash": "11874085924420919079" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AppFolderIcon.tsx", + "hash": "10312148648643735481" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ApprovalsAppbarIcon.tsx", + "hash": "1745626736151144385" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AppsIcon.tsx", + "hash": "15069474369474712622" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ArchiveIcon.tsx", + "hash": "11398532143434039339" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ArrowDownIcon.tsx", + "hash": "16325271689891166155" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ArrowLeftIcon.tsx", + "hash": "9221250842331686875" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ArrowRightIcon.tsx", + "hash": "2730967691145257400" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ArrowSortIcon.tsx", + "hash": "6094461093423187241" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ArrowSyncIcon.tsx", + "hash": "15766013812821710444" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ArrowUpIcon.tsx", + "hash": "4939672875425989341" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AttendeeIcon.tsx", + "hash": "14285830896017378869" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AudienceIcon.tsx", + "hash": "12250647430848484332" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AudioLoadingIcon.tsx", + "hash": "8012047090057191654" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/AudioOffIcon.tsx", + "hash": "946032617944927617" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BanIcon.tsx", + "hash": "593464898756515555" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BellIcon.tsx", + "hash": "11033097208023853390" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BellSlashIcon.tsx", + "hash": "7591509515225408307" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BellSnoozeIcon.tsx", + "hash": "6369921584818208554" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BluetoothIcon.tsx", + "hash": "15334535281749150230" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BoldIcon.tsx", + "hash": "8003201425970891211" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BookmarkIcon.tsx", + "hash": "15690454909475339837" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BreakoutRoomIcon.tsx", + "hash": "17054383108180468005" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BriefcaseIcon.tsx", + "hash": "10478364328091420482" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BroadcastIcon.tsx", + "hash": "3981239034303992809" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BroadcastViewFullscreenIcon.tsx", + "hash": "4249857887748612938" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BroadcastViewLeftIcon.tsx", + "hash": "14309947931521573574" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BuildingIcon.tsx", + "hash": "9863410715723811575" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/BulletsIcon.tsx", + "hash": "3553116472011548812" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CalendarAgendaIcon.tsx", + "hash": "13486160168791571840" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CalendarIcon.tsx", + "hash": "7908939309068871488" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CalendarWorkWeekIcon.tsx", + "hash": "15012893111927043994" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallBlockedIcon.tsx", + "hash": "11812511166458128842" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallControlCloseTrayIcon.tsx", + "hash": "13321761086561697169" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallControlPresentNewIcon.tsx", + "hash": "12300930260009159328" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallControlReleaseIcon.tsx", + "hash": "11474115645162748616" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallControlRequestIcon.tsx", + "hash": "17337124854225199349" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallControlShareIcon.tsx", + "hash": "13243426694714208518" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallControlStopPresentingNewIcon.tsx", + "hash": "6923024728426196189" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallDialpadIcon.tsx", + "hash": "18173546005506602826" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallEndIcon.tsx", + "hash": "6807397170524399524" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallIcon.tsx", + "hash": "13101657994810936681" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallMissedLineIcon.tsx", + "hash": "14382010946281942185" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallParkingIcon.tsx", + "hash": "9041753200234911760" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallPstnIcon.tsx", + "hash": "892374354652057083" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallRecordingIcon.tsx", + "hash": "1338496657346481805" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallVideoIcon.tsx", + "hash": "1747790287814309140" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CallVideoOffIcon.tsx", + "hash": "5569040523138575316" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CameraIcon.tsx", + "hash": "17772892043983818358" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CanvasAddPageIcon.tsx", + "hash": "11563591390427260327" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CartIcon.tsx", + "hash": "11772369317245466398" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CastingIcon.tsx", + "hash": "2794796235077473811" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ChannelShareIcon.tsx", + "hash": "133952854926906356" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ChatIcon.tsx", + "hash": "5891127100155450348" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ChatOffIcon.tsx", + "hash": "513054842676894271" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CheckmarkCircleIcon.tsx", + "hash": "13370034776084101658" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ChevronDownIcon.tsx", + "hash": "10679410130761146727" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ChevronDownMediumIcon.tsx", + "hash": "9881308937778058022" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ChevronEndIcon.tsx", + "hash": "14157278717926177046" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ChevronEndMediumIcon.tsx", + "hash": "9609092908967679756" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ChevronStartIcon.tsx", + "hash": "10619632485351580681" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CircleIcon.tsx", + "hash": "17759723735001282331" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ClipboardCopiedToIcon.tsx", + "hash": "17269187814463163724" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CloseIcon.tsx", + "hash": "5883069793501621836" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ClosedCaptionsIcon.tsx", + "hash": "8588005992574030043" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CodeSnippetIcon.tsx", + "hash": "3266125077547908119" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CollapseIcon.tsx", + "hash": "16990795667701224833" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CompanionIcon.tsx", + "hash": "16903738527604991088" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ComposeIcon.tsx", + "hash": "16911298295284661493" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ComputerAudioIcon.tsx", + "hash": "18002388544616103388" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ComputerAudioOffIcon.tsx", + "hash": "8092469846987677739" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ConferenceRoomDeviceIcon.tsx", + "hash": "6522927528427907880" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ContactCardIcon.tsx", + "hash": "5649466021280702633" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ContactGroupCallIcon.tsx", + "hash": "5357983575802334698" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ContactGroupIcon.tsx", + "hash": "967883254810176102" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ContentIcon.tsx", + "hash": "10364024546703268814" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ContentViewGalleryIcon.tsx", + "hash": "16956658867308258911" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/CustomerHubIcon.tsx", + "hash": "13327677392159958520" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/DesktopIcon.tsx", + "hash": "2290498536661256806" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/DoorArrowLeftIcon.tsx", + "hash": "11232970802031723674" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/DownloadIcon.tsx", + "hash": "9696663328514966811" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EditIcon.tsx", + "hash": "2445579134889833192" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EmailIcon.tsx", + "hash": "1358538480708497908" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EmailWithDotIcon.tsx", + "hash": "7629466379447640863" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EmojiAddIcon.tsx", + "hash": "16634487114604226561" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EmojiIcon.tsx", + "hash": "13544428296413020078" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EmojiSadIcon.tsx", + "hash": "16526152327799207932" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EmojiSurprisedIcon.tsx", + "hash": "17468242374398486398" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ErrorIcon.tsx", + "hash": "8264038088873975391" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ExcelColorIcon.tsx", + "hash": "5719703865902159961" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ExcelIcon.tsx", + "hash": "3091121359113518045" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ExclamationCircleIcon.tsx", + "hash": "5273179690351575014" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ExclamationTriangleIcon.tsx", + "hash": "7219678797532383065" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ExpandIcon.tsx", + "hash": "3478030962395266149" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EyeFriendlierIcon.tsx", + "hash": "12541816809773727614" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EyeIcon.tsx", + "hash": "5482205975972830342" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/EyeSlashIcon.tsx", + "hash": "14239087446261045134" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesAftereffectsIcon.tsx", + "hash": "15234785057276085979" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesCodeIcon.tsx", + "hash": "14171478505845468304" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesEmptyIcon.tsx", + "hash": "1160213663175422320" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesErrorIcon.tsx", + "hash": "11320107944649831249" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesFlashIcon.tsx", + "hash": "7938923755537745595" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesGenericColoredIcon.tsx", + "hash": "10103625455006717209" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesGifIcon.tsx", + "hash": "4457380569030031220" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesHtmlColoredIcon.tsx", + "hash": "18194598359668222388" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesIllustratorIcon.tsx", + "hash": "9403246467131235895" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesImageIcon.tsx", + "hash": "350148135600628262" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesIndesignIcon.tsx", + "hash": "5071194216838704901" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesOneNoteIcon.tsx", + "hash": "4576820073937361616" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesPdfColoredIcon.tsx", + "hash": "11369050801446260972" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesPdfIcon.tsx", + "hash": "15222484695233621043" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesPhotoshopIcon.tsx", + "hash": "8179122537363325570" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesPictureColoredIcon.tsx", + "hash": "10282255315995378774" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesSketchIcon.tsx", + "hash": "9747966208026329651" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesSoundIcon.tsx", + "hash": "13188911702512882018" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesTextColoredIcon.tsx", + "hash": "12525606082974032738" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesTxtIcon.tsx", + "hash": "11269954298617713317" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesUploadIcon.tsx", + "hash": "9955614448869579325" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesVideoIcon.tsx", + "hash": "11855260788037384210" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilesZipIcon.tsx", + "hash": "1368690835135742044" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FilterIcon.tsx", + "hash": "10501478521564293561" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FlagIcon.tsx", + "hash": "18309094007557461671" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FluidFileIcon.tsx", + "hash": "4818272200759283627" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FluidIcon.tsx", + "hash": "10327622295325099017" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FontColorIcon.tsx", + "hash": "1744684789516328003" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FontSizeIcon.tsx", + "hash": "38683636174248486" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/FormatIcon.tsx", + "hash": "1137153821765498269" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GalleryIcon.tsx", + "hash": "14131618810771546774" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GalleryNewIcon.tsx", + "hash": "16132451069627052985" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GalleryNewLargeIcon.tsx", + "hash": "12076589306496788140" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GeofenceArrivesIcon.tsx", + "hash": "4186510871357557845" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GeofenceArrivesOrLeavesIcon.tsx", + "hash": "9536982863141470609" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GeofenceLeavesIcon.tsx", + "hash": "15064869923803265193" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GiphyIcon.tsx", + "hash": "8256504984347443867" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GlassesIcon.tsx", + "hash": "18325767604386777180" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GlobeIcon.tsx", + "hash": "9653404386244516448" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GridIcon.tsx", + "hash": "1969174477760596194" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/GroupVideoCallGridIcon.tsx", + "hash": "1585568485104188562" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/HandIcon.tsx", + "hash": "16025566820558289292" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/HeadsetIcon.tsx", + "hash": "16153525151219761413" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/HighlightIcon.tsx", + "hash": "15885863172528029399" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/HorizontalRuleIcon.tsx", + "hash": "15541103414851377406" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx", + "hash": "13059579967633397450" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ImageLibraryIcon.tsx", + "hash": "7278742991513259939" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ImageUnavailableIcon.tsx", + "hash": "15118908578271240233" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/IndentIcon.tsx", + "hash": "3154547386263760649" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/InfoIcon.tsx", + "hash": "7499704622321949637" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ItalicIcon.tsx", + "hash": "5523477001534623087" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LeaveIcon.tsx", + "hash": "9574849704589104795" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LightningIcon.tsx", + "hash": "1795826485660131267" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LikeIcon.tsx", + "hash": "7063557235739393599" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LinkIcon.tsx", + "hash": "9504475344765367420" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LinkedInIcon.tsx", + "hash": "10057424091842677050" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ListIcon.tsx", + "hash": "1016000382589170647" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LiveIcon.tsx", + "hash": "5488215966531474142" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LiveOffIcon.tsx", + "hash": "16575361601864172959" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LocationIcon.tsx", + "hash": "8780492650668547069" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/LockIcon.tsx", + "hash": "4581542167815224919" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MarkAsUnreadIcon.tsx", + "hash": "8550877769355651073" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MeetingNewIcon.tsx", + "hash": "13618933089732729211" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MeetingTimeIcon.tsx", + "hash": "3462760770398000331" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MegaphoneIcon.tsx", + "hash": "13477115110126199760" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MentionIcon.tsx", + "hash": "10671365619704977659" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MenuIcon.tsx", + "hash": "15054434194038008137" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MergeCallsIcon.tsx", + "hash": "15676851599195598115" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MessageSeenIcon.tsx", + "hash": "5696795887902525033" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MicIcon.tsx", + "hash": "10360671465174889588" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MicOffIcon.tsx", + "hash": "7040357597540731851" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MicPulseIcon.tsx", + "hash": "7164242050306518142" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MicPulseOffIcon.tsx", + "hash": "7613420464512654680" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MicrophoneDisabledIcon.tsx", + "hash": "13505275375360955053" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MicrosoftStreamIcon.tsx", + "hash": "12399236842930770166" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MoleculeIcon.tsx", + "hash": "3716543851177200931" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/MoreIcon.tsx", + "hash": "16908136912455579545" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/NoPresenterIcon.tsx", + "hash": "15973919177186017219" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/NotepadPersonIcon.tsx", + "hash": "17977894304893167867" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/NotesIcon.tsx", + "hash": "16759640413579287848" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/NotificationsMutedIcon.tsx", + "hash": "5875687961337145635" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/NumberListIcon.tsx", + "hash": "1882868947842711159" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/NumberSymbolIcon.tsx", + "hash": "16604922701678220517" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OcrOffIcon.tsx", + "hash": "7440654068161564006" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OcrOnIcon.tsx", + "hash": "12156383114689500379" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OneDriveIcon.tsx", + "hash": "16545193094314310937" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OneNoteColorIcon.tsx", + "hash": "6922862962983788010" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OneNoteIcon.tsx", + "hash": "2068993209377571963" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OneNoteMonoIcon.tsx", + "hash": "2343842219262811176" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OpenOutsideIcon.tsx", + "hash": "9092134134437612636" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OptionsIcon.tsx", + "hash": "18060907312452018719" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OutdentIcon.tsx", + "hash": "18265199933622407843" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/OutlookColorIcon.tsx", + "hash": "5105630249207417895" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PageFitIcon.tsx", + "hash": "16900179939925437545" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PanoramaIcon.tsx", + "hash": "17105386830337265958" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PanoramaOffIcon.tsx", + "hash": "9219110978377875691" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PaperclipIcon.tsx", + "hash": "4239239177416059508" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ParticipantAddIcon.tsx", + "hash": "7735796838205869154" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ParticipantRemoveIcon.tsx", + "hash": "11325167042710733689" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PauseIcon.tsx", + "hash": "13917837797811056510" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PauseThickIcon.tsx", + "hash": "16173831918942597630" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PersonIcon.tsx", + "hash": "18052122118522564842" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PhoneArrowIcon.tsx", + "hash": "11801537605593537815" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PhoneClockIcon.tsx", + "hash": "6533652891516124895" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PhoneIcon.tsx", + "hash": "3382340320172925285" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PlayIcon.tsx", + "hash": "13165464782933234218" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PlugsIcon.tsx", + "hash": "11855916397961252431" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PollIcon.tsx", + "hash": "7075189384486642197" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PopupIcon.tsx", + "hash": "2065406050477623398" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PowerPointColorIcon.tsx", + "hash": "17874363582960773501" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PowerPointIcon.tsx", + "hash": "16137608827629885801" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PresenceAvailableIcon.tsx", + "hash": "9990957245604778132" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PresenceStrokeIcon.tsx", + "hash": "17824949820148605299" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/PresenterIcon.tsx", + "hash": "1698604231272056754" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/QnaIcon.tsx", + "hash": "8914778651417679270" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/QuestionCircleIcon.tsx", + "hash": "16459415809426073717" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/QuoteIcon.tsx", + "hash": "4434162689560226434" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RadioButtonIcon.tsx", + "hash": "5290220217869871570" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RaiseHandColoredIcon.tsx", + "hash": "13933793441697151098" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RaiseHandDisabledIcon.tsx", + "hash": "16001206708325701191" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RaiseHandIcon.tsx", + "hash": "10779312542230995138" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ReactionsIcon.tsx", + "hash": "6999409792852000504" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ReadAloudIcon.tsx", + "hash": "11043178403681303772" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RedbangIcon.tsx", + "hash": "16705215518281200085" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RedoIcon.tsx", + "hash": "14558141566220753769" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RemoveFormatIcon.tsx", + "hash": "18387780868820154748" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ReplyIcon.tsx", + "hash": "9946554331864851333" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RetryIcon.tsx", + "hash": "3854698078201679751" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/RobotIcon.tsx", + "hash": "2840301155558261180" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SaveIcon.tsx", + "hash": "10241612031127787183" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ScreencastIcon.tsx", + "hash": "8563482560859964140" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ScreenshareIcon.tsx", + "hash": "3541086519960619212" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SearchIcon.tsx", + "hash": "16949364921472168680" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SendIcon.tsx", + "hash": "16565582621699205586" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SettingsAudioIcon.tsx", + "hash": "8455142933026254255" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SettingsIcon.tsx", + "hash": "7451909565077434790" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ShareAltIcon.tsx", + "hash": "15780648612269482585" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ShareGenericIcon.tsx", + "hash": "10938679578550444171" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ShareLocationIcon.tsx", + "hash": "3246386558480608952" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ShareToIcon.tsx", + "hash": "8053903581216909211" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ShieldKeyholeIcon.tsx", + "hash": "14317516207879380558" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/Shift24hIcon.tsx", + "hash": "1576029036422660201" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ShiftActivityIcon.tsx", + "hash": "12476450379725202270" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SignatureIcon.tsx", + "hash": "6069221599925336926" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SkypeColorIcon.tsx", + "hash": "11964495383061464903" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SkypeLogoIcon.tsx", + "hash": "16297684578405621843" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SpeakerMuteIcon.tsx", + "hash": "10273594272555337023" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SpeakerPersonIcon.tsx", + "hash": "7942492364252775925" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SpotlightIcon.tsx", + "hash": "16387817515735522462" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SpotlightStopIcon.tsx", + "hash": "13011299275377774274" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/StarIcon.tsx", + "hash": "4739112390899235218" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/StickerIcon.tsx", + "hash": "9345777383730561198" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/StrikeIcon.tsx", + "hash": "385334962548583817" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SubtractIcon.tsx", + "hash": "8703089811411508672" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SurveyIcon.tsx", + "hash": "10594815324984023274" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SwitchCameraIcon.tsx", + "hash": "9644599959041167274" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/SyncIcon.tsx", + "hash": "3421771998885069070" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TableAddIcon.tsx", + "hash": "11081295009511690813" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TableDeleteIcon.tsx", + "hash": "11267456222392107793" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TableIcon.tsx", + "hash": "3122419123285994046" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TabsIcon.tsx", + "hash": "7652898168959998238" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TagIcon.tsx", + "hash": "17937754368960392939" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TaskListIcon.tsx", + "hash": "1664418548428026528" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TeamCreateIcon.tsx", + "hash": "270974819210504825" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TeamsIcon.tsx", + "hash": "7949896722513612029" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TeamsMonochromeIcon.tsx", + "hash": "14992713721668347008" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TenantPersonalIcon.tsx", + "hash": "6954339634002974222" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TenantWorkIcon.tsx", + "hash": "8507358463993447821" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TextBulletListTreeIcon.tsx", + "hash": "3709655949577500987" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ThumbtackIcon.tsx", + "hash": "2709424317170429241" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ThumbtackSlashIcon.tsx", + "hash": "14540796032563155748" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TiltPanZoomIcon.tsx", + "hash": "2371688619901089057" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ToDoListIcon.tsx", + "hash": "18434469593499531550" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TranscriptIcon.tsx", + "hash": "18087935866566701673" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TranslationIcon.tsx", + "hash": "11755231279667369736" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TrashCanIcon.tsx", + "hash": "1686967991801065474" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TriangleDownIcon.tsx", + "hash": "3886014635713707142" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TriangleEndIcon.tsx", + "hash": "3047775475417718304" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TriangleUpIcon.tsx", + "hash": "17735367172971239835" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TvIcon.tsx", + "hash": "10048426132113526467" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/TwitterIcon.tsx", + "hash": "1248041826801414084" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/UnderlineIcon.tsx", + "hash": "11124854209253009616" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/UndoIcon.tsx", + "hash": "15462322573799626280" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/UrgentIcon.tsx", + "hash": "4744484572233672521" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/UserBlurIcon.tsx", + "hash": "11390409467504388733" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/UserFriendsIcon.tsx", + "hash": "17291066650707229650" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/UserPhoneIcon.tsx", + "hash": "8901679073035539244" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VideoCameraEmphasisIcon.tsx", + "hash": "6451348667520126362" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VideoLoadingIcon.tsx", + "hash": "353970034285485305" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VideoPersonSparkleIcon.tsx", + "hash": "16532618699662540314" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VideoProhibitedIcon.tsx", + "hash": "6999552347189846573" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VideomailIcon.tsx", + "hash": "12381422681028134585" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VisioColorIcon.tsx", + "hash": "5000929538397412882" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VisioIcon.tsx", + "hash": "17345353077477829764" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VolumeDownIcon.tsx", + "hash": "8043599976898455867" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VolumeIcon.tsx", + "hash": "4727927519744567505" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/VolumeUpIcon.tsx", + "hash": "17041260730894082739" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/WandIcon.tsx", + "hash": "204054122499858724" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/WhiteboardIcon.tsx", + "hash": "12517907840141658211" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/WindowMaximizeIcon.tsx", + "hash": "6107504875620614835" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/WindowMinimizeIcon.tsx", + "hash": "8004388668609149200" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/WindowRestoreIcon.tsx", + "hash": "5810889239601404730" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/WordColorIcon.tsx", + "hash": "1919537979474435213" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/WordIcon.tsx", + "hash": "7577785938802895256" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/WorkOrSchoolIcon.tsx", + "hash": "13892222244017065102" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/YammerIcon.tsx", + "hash": "7970035682296632848" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ZoomInIcon.tsx", + "hash": "1687715738875566323" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ZoomOutIcon.tsx", + "hash": "11548925219174581327" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/components/ZoomToFitIcon.tsx", + "hash": "4663294501472986168" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/index.ts", + "hash": "10079002047266926316" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/utils/createSvgIcon.ts", + "hash": "8789639293750363611" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/utils/iconClassNames.ts", + "hash": "11445529543360569059" + }, + { + "file": "packages/fluentui/react-icons-northstar/src/utils/types.ts", + "hash": "15588436095144492247" + }, + { + "file": "packages/fluentui/react-icons-northstar/test/components/components-test.tsx", + "hash": "16260613535254906323" + }, + { + "file": "packages/fluentui/react-icons-northstar/test/utils/createSvgIcon-test.tsx", + "hash": "15904652190730318413" + }, + { + "file": "packages/fluentui/react-icons-northstar/tsconfig.json", + "hash": "15943827806802977490" + } + ], + "@fluentui/react-file-type-icons": [ + { + "file": "packages/react-file-type-icons/.eslintrc.json", + "hash": "777445592424795063" + }, + { + "file": "packages/react-file-type-icons/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/react-file-type-icons/CHANGELOG.json", + "hash": "1048374655728006466" + }, + { + "file": "packages/react-file-type-icons/CHANGELOG.md", + "hash": "11341487553535181736" + }, + { + "file": "packages/react-file-type-icons/LICENSE", + "hash": "6940075935154849214" + }, + { + "file": "packages/react-file-type-icons/README.md", + "hash": "4637521409527549815" + }, + { + "file": "packages/react-file-type-icons/jest.config.js", + "hash": "3240558433730290797" + }, + { + "file": "packages/react-file-type-icons/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-file-type-icons/package.json", + "hash": "2459179631925974315", + "deps": [ + "@fluentui/set-version", + "@fluentui/style-utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-file-type-icons/project.json", + "hash": "2426325572864020670" + }, + { + "file": "packages/react-file-type-icons/src/FileIconType.test.ts", + "hash": "8074533597091093516" + }, + { + "file": "packages/react-file-type-icons/src/FileIconType.ts", + "hash": "8669219161781017165" + }, + { + "file": "packages/react-file-type-icons/src/FileTypeIconMap.ts", + "hash": "1622694735442508136" + }, + { + "file": "packages/react-file-type-icons/src/getFileTypeIconAsHTMLString.test.ts", + "hash": "18012845855654093679" + }, + { + "file": "packages/react-file-type-icons/src/getFileTypeIconAsHTMLString.ts", + "hash": "17339860703958407032" + }, + { + "file": "packages/react-file-type-icons/src/getFileTypeIconAsUrl.test.ts", + "hash": "18070267997367805681" + }, + { + "file": "packages/react-file-type-icons/src/getFileTypeIconAsUrl.ts", + "hash": "12536579509046942436" + }, + { + "file": "packages/react-file-type-icons/src/getFileTypeIconProps.test.ts", + "hash": "2641647765184063437" + }, + { + "file": "packages/react-file-type-icons/src/getFileTypeIconProps.ts", + "hash": "6769978776431673776" + }, + { + "file": "packages/react-file-type-icons/src/index.ts", + "hash": "6043353553269314684" + }, + { + "file": "packages/react-file-type-icons/src/initializeFileTypeIcons.tsx", + "hash": "5377391151793324776" + }, + { + "file": "packages/react-file-type-icons/src/version.ts", + "hash": "17270333248350866991" + }, + { + "file": "packages/react-file-type-icons/tsconfig.json", + "hash": "3737244395638680036" + } + ], + "@fluentui/react-provider": [ + { + "file": "packages/react-components/react-provider/.babelrc.json", + "hash": "2096462375136904521" + }, + { + "file": "packages/react-components/react-provider/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-provider/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-provider/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-provider/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-provider/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-provider/CHANGELOG.json", + "hash": "108417590726351912" + }, + { + "file": "packages/react-components/react-provider/CHANGELOG.md", + "hash": "1116526773130530825" + }, + { + "file": "packages/react-components/react-provider/LICENSE", + "hash": "13549150797464198841" + }, + { + "file": "packages/react-components/react-provider/README.md", + "hash": "3720615893207556971" + }, + { + "file": "packages/react-components/react-provider/bundle-size/FluentProvider.fixture.js", + "hash": "12527860066414405224" + }, + { + "file": "packages/react-components/react-provider/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-provider/config/tests.js", + "hash": "14010006175392234982" + }, + { + "file": "packages/react-components/react-provider/etc/react-provider.api.md", + "hash": "5506599900252811007" + }, + { + "file": "packages/react-components/react-provider/jest.config.js", + "hash": "5036142973094437254" + }, + { + "file": "packages/react-components/react-provider/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-provider/package.json", + "hash": "1619886676318507914", + "deps": [ + "npm:@fluentui/react-icons", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/core", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-provider/project.json", + "hash": "9180676873197508756" + }, + { + "file": "packages/react-components/react-provider/src/FluentProvider.ts", + "hash": "3850447221714993967" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider-hydrate.test.tsx", + "hash": "13880435843164414546" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider-node.test.tsx", + "hash": "7793367056400359495" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.test.tsx", + "hash": "3377541994227020635" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.tsx", + "hash": "2751246076442384735" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.types.ts", + "hash": "6772065816773142755" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/__snapshots__/FluentProvider.test.tsx.snap", + "hash": "10433890136069603039" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/createCSSRuleFromTheme.test.ts", + "hash": "2527967971133399553" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/createCSSRuleFromTheme.ts", + "hash": "13841534288587055296" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/index.ts", + "hash": "6883603651365901962" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/renderFluentProvider.tsx", + "hash": "16727318347714133982" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProvider.test.tsx", + "hash": "15464636707560200947" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProvider.ts", + "hash": "11108514811781860865" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderContextValues.test.ts", + "hash": "4277988110613911860" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderContextValues.ts", + "hash": "16628905926299651978" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderStyles.styles.ts", + "hash": "4840669889939752003" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderThemeStyleTag.test.tsx", + "hash": "8101357930343770428" + }, + { + "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderThemeStyleTag.ts", + "hash": "10077234436893861533" + }, + { + "file": "packages/react-components/react-provider/src/index.ts", + "hash": "17864331557252480625" + }, + { + "file": "packages/react-components/react-provider/src/testing/isConformant.ts", + "hash": "3528474470343364133" + }, + { + "file": "packages/react-components/react-provider/stories/Provider/FluentProviderApplyStylesToPortals.stories.tsx", + "hash": "15066956984639683240" + }, + { + "file": "packages/react-components/react-provider/stories/Provider/FluentProviderBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-provider/stories/Provider/FluentProviderDefault.stories.tsx", + "hash": "1104809821168894069" + }, + { + "file": "packages/react-components/react-provider/stories/Provider/FluentProviderDescription.md", + "hash": "10297569764496749529" + }, + { + "file": "packages/react-components/react-provider/stories/Provider/FluentProviderDir.stories.tsx", + "hash": "5915476121845915577" + }, + { + "file": "packages/react-components/react-provider/stories/Provider/FluentProviderFrame.stories.tsx", + "hash": "17764123855331912505" + }, + { + "file": "packages/react-components/react-provider/stories/Provider/FluentProviderNested.stories.tsx", + "hash": "18297391744563059933" + }, + { + "file": "packages/react-components/react-provider/stories/Provider/index.stories.tsx", + "hash": "3190944166615926852" + }, + { + "file": "packages/react-components/react-provider/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-provider/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-provider/tsconfig.spec.json", + "hash": "6578707152334499940" + } + ], + "@fluentui/keyboard-key": [ + { + "file": "packages/keyboard-key/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/keyboard-key/.npmignore", + "hash": "7699079327417375383" + }, + { + "file": "packages/keyboard-key/CHANGELOG.json", + "hash": "10179365370606137091" + }, + { + "file": "packages/keyboard-key/CHANGELOG.md", + "hash": "147863297539555338" + }, + { + "file": "packages/keyboard-key/LICENSE", + "hash": "8930695425710127949" + }, + { + "file": "packages/keyboard-key/README.md", + "hash": "17220773256264690709" + }, + { + "file": "packages/keyboard-key/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/keyboard-key/etc/keyboard-key.api.md", + "hash": "10686124383883084997" + }, + { + "file": "packages/keyboard-key/jest.config.js", + "hash": "9635769799634201842" + }, + { + "file": "packages/keyboard-key/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/keyboard-key/package.json", + "hash": "1170975034285432666", + "deps": [ + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/keyboard-key/project.json", + "hash": "15756375364528527746" + }, + { + "file": "packages/keyboard-key/src/codes.ts", + "hash": "8066867947356659420" + }, + { + "file": "packages/keyboard-key/src/index.test.ts", + "hash": "11586213541177350052" + }, + { + "file": "packages/keyboard-key/src/index.ts", + "hash": "11633495272869031359" + }, + { + "file": "packages/keyboard-key/tsconfig.json", + "hash": "17161308168961447910" + } + ], + "@fluentui/react-component-nesting-registry": [ + { + "file": "packages/fluentui/react-component-nesting-registry/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/jest.config.js", + "hash": "13298147580513423019" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/package.json", + "hash": "18111405337855078839", + "deps": [ + "npm:@babel/runtime", + "npm:prop-types", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:lerna-alias", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-component-nesting-registry/project.json", + "hash": "13374112547541503236" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/NestingAuto.tsx", + "hash": "7526141950771152923" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/NestingChild.tsx", + "hash": "4246445019697112634" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/NestingContext.ts", + "hash": "16669676149117498549" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/NestingRoot.tsx", + "hash": "9446161289264562444" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/hooks/types.ts", + "hash": "10645677914917889256" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/hooks/useNestingAuto.ts", + "hash": "15907268444011966955" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/hooks/useNestingChild.ts", + "hash": "3316617878321338048" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/hooks/useNestingRoot.ts", + "hash": "6707493236734176145" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/index.ts", + "hash": "12115957419553385299" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/types.ts", + "hash": "7610298870192453020" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/src/utils/RefStack.ts", + "hash": "15272540730817118615" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/test/NestingAuto-test.tsx", + "hash": "3355074948005691137" + }, + { + "file": "packages/fluentui/react-component-nesting-registry/tsconfig.json", + "hash": "12214264623402812273" + } + ], + "@fluentui/projects-test": [ + { + "file": "packages/fluentui/projects-test/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/projects-test/README.md", + "hash": "7712439429583937954" + }, + { + "file": "packages/fluentui/projects-test/assets/.eslintrc.json", + "hash": "9463757486019526557" + }, + { + "file": "packages/fluentui/projects-test/assets/cra/src/App.tsx", + "hash": "13975067287482039525" + }, + { + "file": "packages/fluentui/projects-test/assets/nextjs/pages/index.js", + "hash": "16720790296375983707" + }, + { + "file": "packages/fluentui/projects-test/assets/rollup/app.js", + "hash": "13611222878904424794" + }, + { + "file": "packages/fluentui/projects-test/assets/rollup/index.html", + "hash": "11741015068606122975" + }, + { + "file": "packages/fluentui/projects-test/assets/rollup/rollup.config.js", + "hash": "13323537449881479399" + }, + { + "file": "packages/fluentui/projects-test/assets/typings/src/index.tsx", + "hash": "9172007156886044749" + }, + { + "file": "packages/fluentui/projects-test/assets/typings/tsconfig.json", + "hash": "3933573742264779466" + }, + { + "file": "packages/fluentui/projects-test/babel.config.js", + "hash": "7654395597360391156" + }, + { + "file": "packages/fluentui/projects-test/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/projects-test/package.json", + "hash": "4974496406254325970", + "deps": [ + "@fluentui/react-northstar", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-projects-test" + ] + }, + { + "file": "packages/fluentui/projects-test/project.json", + "hash": "11570660909808003153" + }, + { + "file": "packages/fluentui/projects-test/src/createReactApp.ts", + "hash": "14019440883191487480" + }, + { + "file": "packages/fluentui/projects-test/src/index.ts", + "hash": "6599092941110334536" + }, + { + "file": "packages/fluentui/projects-test/src/nextjs.ts", + "hash": "13103653866778791666" + }, + { + "file": "packages/fluentui/projects-test/src/rollup.ts", + "hash": "15862608973975210540" + }, + { + "file": "packages/fluentui/projects-test/src/typings.ts", + "hash": "1801624949097448713" + }, + { + "file": "packages/fluentui/projects-test/tsconfig.json", + "hash": "16064600855511744168" + } + ], + "@fluentui/react-cards": [ + { + "file": "packages/react-cards/.eslintrc.json", + "hash": "16931605920801268830" + }, + { + "file": "packages/react-cards/.npmignore", + "hash": "17767374615507000718" + }, + { + "file": "packages/react-cards/.npmrc", + "hash": "12117094813882964499" + }, + { + "file": "packages/react-cards/CHANGELOG.json", + "hash": "3202147163405935073" + }, + { + "file": "packages/react-cards/CHANGELOG.md", + "hash": "8747396549153497235" + }, + { + "file": "packages/react-cards/LICENSE", + "hash": "6253960424893387650" + }, + { + "file": "packages/react-cards/README.md", + "hash": "3477479143146211668" + }, + { + "file": "packages/react-cards/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/react-cards/config/tests.js", + "hash": "13209895427940926327" + }, + { + "file": "packages/react-cards/etc/react-cards.api.md", + "hash": "16727656835047585474" + }, + { + "file": "packages/react-cards/jest.config.js", + "hash": "8193037916930093299" + }, + { + "file": "packages/react-cards/just.config.ts", + "hash": "1545929909583215690" + }, + { + "file": "packages/react-cards/package.json", + "hash": "16789738612353226731", + "deps": [ + "@fluentui/react", + "@fluentui/foundation-legacy", + "@fluentui/set-version", + "npm:@microsoft/load-themed-styles", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/jest-serializer-merge-styles", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-cards/project.json", + "hash": "16529944636819246352" + }, + { + "file": "packages/react-cards/src/Card.ts", + "hash": "18296053792853651864" + }, + { + "file": "packages/react-cards/src/components/Card/Card.styles.ts", + "hash": "4685103703702010267" + }, + { + "file": "packages/react-cards/src/components/Card/Card.ts", + "hash": "1929423536789811973" + }, + { + "file": "packages/react-cards/src/components/Card/Card.types.ts", + "hash": "10662042676040928081" + }, + { + "file": "packages/react-cards/src/components/Card/Card.view.test.tsx", + "hash": "2651085214474441422" + }, + { + "file": "packages/react-cards/src/components/Card/Card.view.tsx", + "hash": "9706861711378212277" + }, + { + "file": "packages/react-cards/src/components/Card/CardItem/CardItem.styles.ts", + "hash": "11849349042222325569" + }, + { + "file": "packages/react-cards/src/components/Card/CardItem/CardItem.test.tsx", + "hash": "5993415043714882287" + }, + { + "file": "packages/react-cards/src/components/Card/CardItem/CardItem.ts", + "hash": "13327635575716341322" + }, + { + "file": "packages/react-cards/src/components/Card/CardItem/CardItem.types.ts", + "hash": "7220844002946880497" + }, + { + "file": "packages/react-cards/src/components/Card/CardItem/CardItem.view.tsx", + "hash": "11750096245423007155" + }, + { + "file": "packages/react-cards/src/components/Card/CardItem/__snapshots__/CardItem.test.tsx.snap", + "hash": "14582495706397215933" + }, + { + "file": "packages/react-cards/src/components/Card/CardSection/CardSection.styles.ts", + "hash": "9502018824459970625" + }, + { + "file": "packages/react-cards/src/components/Card/CardSection/CardSection.test.tsx", + "hash": "8362349948071743185" + }, + { + "file": "packages/react-cards/src/components/Card/CardSection/CardSection.ts", + "hash": "14518757228773854290" + }, + { + "file": "packages/react-cards/src/components/Card/CardSection/CardSection.types.ts", + "hash": "6877821299742157632" + }, + { + "file": "packages/react-cards/src/components/Card/CardSection/CardSection.view.tsx", + "hash": "10937983149567166874" + }, + { + "file": "packages/react-cards/src/components/Card/CardSection/__snapshots__/CardSection.test.tsx.snap", + "hash": "9695464788230094255" + }, + { + "file": "packages/react-cards/src/components/Card/__snapshots__/Card.view.test.tsx.snap", + "hash": "12038355267061100924" + }, + { + "file": "packages/react-cards/src/components/Card/index.ts", + "hash": "14729802027828598904" + }, + { + "file": "packages/react-cards/src/index.ts", + "hash": "8179513586981371037" + }, + { + "file": "packages/react-cards/src/version.ts", + "hash": "389976962689502133" + }, + { + "file": "packages/react-cards/tsconfig.json", + "hash": "15516134720009168635" + }, + { + "file": "packages/react-cards/webpack.config.js", + "hash": "17634613195548132917" + } + ], + "@fluentui/react-toolbar": [ + { + "file": "packages/react-components/react-toolbar/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-toolbar/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-toolbar/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-toolbar/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-toolbar/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-toolbar/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-toolbar/CHANGELOG.json", + "hash": "2679299470989409940" + }, + { + "file": "packages/react-components/react-toolbar/CHANGELOG.md", + "hash": "7443287667751919479" + }, + { + "file": "packages/react-components/react-toolbar/LICENSE", + "hash": "11699752302272615156" + }, + { + "file": "packages/react-components/react-toolbar/README.md", + "hash": "17327849331251576092" + }, + { + "file": "packages/react-components/react-toolbar/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-toolbar/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-toolbar/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-toolbar/docs/Spec.md", + "hash": "6230791134705908197" + }, + { + "file": "packages/react-components/react-toolbar/etc/react-toolbar.api.md", + "hash": "14892045251414762508" + }, + { + "file": "packages/react-components/react-toolbar/jest.config.js", + "hash": "1491522759465693041" + }, + { + "file": "packages/react-components/react-toolbar/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-toolbar/package.json", + "hash": "4069504963295153829", + "deps": [ + "@fluentui/react-button", + "@fluentui/react-divider", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "@fluentui/react-context-selector", + "@fluentui/react-radio", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-toolbar/project.json", + "hash": "15938424473686317514" + }, + { + "file": "packages/react-components/react-toolbar/src/Toolbar.ts", + "hash": "8394812810816711041" + }, + { + "file": "packages/react-components/react-toolbar/src/ToolbarButton.ts", + "hash": "15095606044855941967" + }, + { + "file": "packages/react-components/react-toolbar/src/ToolbarDivider.ts", + "hash": "5910102740128292344" + }, + { + "file": "packages/react-components/react-toolbar/src/ToolbarGroup.ts", + "hash": "1334304663874257745" + }, + { + "file": "packages/react-components/react-toolbar/src/ToolbarRadioButton.ts", + "hash": "16683479119449201369" + }, + { + "file": "packages/react-components/react-toolbar/src/ToolbarRadioGroup.ts", + "hash": "11025653910760393630" + }, + { + "file": "packages/react-components/react-toolbar/src/ToolbarToggleButton.ts", + "hash": "11558050513028606074" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.cy.tsx", + "hash": "18190796771724329956" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.test.tsx", + "hash": "13039308109964193960" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.tsx", + "hash": "6125519897848849531" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.types.ts", + "hash": "5769296385799820899" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/ToolbarContext.ts", + "hash": "16254330530638847001" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/__snapshots__/Toolbar.test.tsx.snap", + "hash": "3213917547931842953" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/index.ts", + "hash": "738351043517473027" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/renderToolbar.tsx", + "hash": "5344923693916361181" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/useToolbar.ts", + "hash": "16259873341228918636" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/useToolbarContextValues.tsx", + "hash": "12166336615514259420" + }, + { + "file": "packages/react-components/react-toolbar/src/components/Toolbar/useToolbarStyles.styles.ts", + "hash": "603069451744682951" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.test.tsx", + "hash": "13745661509449217165" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.tsx", + "hash": "6836800995793072290" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.types.ts", + "hash": "6180758115617748565" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/__snapshots__/ToolbarButton.test.tsx.snap", + "hash": "10247478132621931341" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/index.ts", + "hash": "11524062334948930900" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButton.ts", + "hash": "1039717625327272054" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButtonStyles.styles.ts", + "hash": "2967340636566566587" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.test.tsx", + "hash": "7264474627499337873" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.tsx", + "hash": "16225773209810846008" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.types.ts", + "hash": "14744270117949556840" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/__snapshots__/ToolbarDivider.test.tsx.snap", + "hash": "14415100046558031978" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/index.ts", + "hash": "1526444007332312428" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/useToolbarDivider.ts", + "hash": "17605264207797018150" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/useToolbarDividerStyles.styles.ts", + "hash": "5137750223570700400" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.test.tsx", + "hash": "3652445854445709654" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.tsx", + "hash": "10022688157462161383" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.types.ts", + "hash": "16010779742453253805" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/__snapshots__/ToolbarGroup.test.tsx.snap", + "hash": "16684155283501614261" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/index.ts", + "hash": "11269338224905271946" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/renderToolbarGroup.tsx", + "hash": "8478142400781213724" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroup.ts", + "hash": "16077103092893388185" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroupStyles.styles.ts", + "hash": "16900409052136883615" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.test.tsx", + "hash": "15085146305304111742" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.tsx", + "hash": "13585266228605300355" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.types.ts", + "hash": "1084262974156884328" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/__snapshots__/ToolbarRadioButton.test.tsx.snap", + "hash": "16686308830081031237" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/index.ts", + "hash": "1287773747565266338" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/useToolbarRadioButton.ts", + "hash": "13585520412147692119" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/useToolbarRadioButtonStyles.styles.ts", + "hash": "882772897875100667" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.test.tsx", + "hash": "1666645086624633077" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.tsx", + "hash": "11597493060405972029" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.types.ts", + "hash": "5362057759819616453" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/__snapshots__/ToolbarRadioGroup.test.tsx.snap", + "hash": "6778642779289195059" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/index.ts", + "hash": "6797519109209546610" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.test.tsx", + "hash": "2785987815279519313" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.tsx", + "hash": "17286377178801905329" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.types.ts", + "hash": "2799630108927680878" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/__snapshots__/ToolbarToggleButton.test.tsx.snap", + "hash": "6448662158044233507" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/index.ts", + "hash": "3726334219305394579" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/useToolbarToggleButton.ts", + "hash": "10839425491090565227" + }, + { + "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/useToolbarToggleButtonStyles.styles.ts", + "hash": "4298852610540032162" + }, + { + "file": "packages/react-components/react-toolbar/src/index.ts", + "hash": "13436624389201452827" + }, + { + "file": "packages/react-components/react-toolbar/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarBestPractices.md", + "hash": "15729850903231663767" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarControlledToggleButton.stories.tsx", + "hash": "2229491058474026133" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarDefault.stories.tsx", + "hash": "12754270821430915606" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarDescription.md", + "hash": "11864277242571194941" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarFarGroup.stories.tsx", + "hash": "15410378090287586604" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarLarge.stories.tsx", + "hash": "1969991914501961647" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarMedium.stories.tsx", + "hash": "10266984033920926402" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarOverflow.stories.tsx", + "hash": "7713723578793215758" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarRadio.stories.tsx", + "hash": "2319780391350821451" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarRadioControlled.stories.tsx", + "hash": "6752560067054092764" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarSmall.stories.tsx", + "hash": "16300341684049215640" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarSubtle.stories.tsx", + "hash": "11114266572266597332" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarVertical.stories.tsx", + "hash": "112779657426848656" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarVerticalButton.stories.tsx", + "hash": "1450220188507366907" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarWithPopover.stories.tsx", + "hash": "15385353564918673854" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarWithTooltip.stories.tsx", + "hash": "14225052960477459882" + }, + { + "file": "packages/react-components/react-toolbar/stories/Toolbar/index.stories.tsx", + "hash": "8744702613617176196" + }, + { + "file": "packages/react-components/react-toolbar/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-toolbar/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-toolbar/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-toolbar/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/pr-deploy-site": [ + { + "file": "apps/pr-deploy-site/.eslintrc.json", + "hash": "13367636068836493348" + }, + { + "file": "apps/pr-deploy-site/CHANGELOG.json", + "hash": "10223425423810861213" + }, + { + "file": "apps/pr-deploy-site/CHANGELOG.md", + "hash": "14685531263075523780" + }, + { + "file": "apps/pr-deploy-site/README.md", + "hash": "6722478197317014790" + }, + { + "file": "apps/pr-deploy-site/chiclet-test.html", + "hash": "9993395785341340820" + }, + { + "file": "apps/pr-deploy-site/index.html", + "hash": "100795799416268803" + }, + { + "file": "apps/pr-deploy-site/just.config.ts", + "hash": "17822963251943017025" + }, + { + "file": "apps/pr-deploy-site/package.json", + "hash": "15767832108474548373", + "deps": ["@fluentui/eslint-plugin", "@fluentui/scripts-tasks", "@fluentui/scripts-monorepo"] + }, + { + "file": "apps/pr-deploy-site/pr-deploy-site.css", + "hash": "4709491619076049329" + }, + { + "file": "apps/pr-deploy-site/pr-deploy-site.js", + "hash": "6526057395852723073" + }, + { + "file": "apps/pr-deploy-site/project.json", + "hash": "15758273448551696582" + }, + { + "file": "apps/pr-deploy-site/tsconfig.json", + "hash": "5982494929140394036" + } + ], + "@fluentui/react-select": [ + { + "file": "packages/react-components/react-select/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-select/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-select/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-select/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-select/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-select/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-select/CHANGELOG.json", + "hash": "17220450743865662035" + }, + { + "file": "packages/react-components/react-select/CHANGELOG.md", + "hash": "446421807821873597" + }, + { + "file": "packages/react-components/react-select/LICENSE", + "hash": "17145807327024823464" + }, + { + "file": "packages/react-components/react-select/README.md", + "hash": "10145820909930644942" + }, + { + "file": "packages/react-components/react-select/bundle-size/Select.fixture.js", + "hash": "17495459788921235447" + }, + { + "file": "packages/react-components/react-select/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-select/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-select/docs/Spec.md", + "hash": "5722250028980261869" + }, + { + "file": "packages/react-components/react-select/etc/react-select.api.md", + "hash": "3809105998633819686" + }, + { + "file": "packages/react-components/react-select/jest.config.js", + "hash": "11826049106570097430" + }, + { + "file": "packages/react-components/react-select/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-select/package.json", + "hash": "12286932727227470358", + "deps": [ + "@fluentui/react-field", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-select/project.json", + "hash": "15892150223184549744" + }, + { + "file": "packages/react-components/react-select/src/Select.ts", + "hash": "13526045668201639069" + }, + { + "file": "packages/react-components/react-select/src/components/Select/Select.test.tsx", + "hash": "932831788378200454" + }, + { + "file": "packages/react-components/react-select/src/components/Select/Select.tsx", + "hash": "7280199275130289075" + }, + { + "file": "packages/react-components/react-select/src/components/Select/Select.types.ts", + "hash": "16980961641113520849" + }, + { + "file": "packages/react-components/react-select/src/components/Select/__snapshots__/Select.test.tsx.snap", + "hash": "13921980301158282062" + }, + { + "file": "packages/react-components/react-select/src/components/Select/index.ts", + "hash": "4417052697791773506" + }, + { + "file": "packages/react-components/react-select/src/components/Select/renderSelect.tsx", + "hash": "13711059602504439985" + }, + { + "file": "packages/react-components/react-select/src/components/Select/useSelect.tsx", + "hash": "11162270922758090163" + }, + { + "file": "packages/react-components/react-select/src/components/Select/useSelectStyles.styles.ts", + "hash": "16121165471199880480" + }, + { + "file": "packages/react-components/react-select/src/index.ts", + "hash": "9960025239165988400" + }, + { + "file": "packages/react-components/react-select/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-select/stories/Select/SelectAppearance.stories.tsx", + "hash": "17338091775052657526" + }, + { + "file": "packages/react-components/react-select/stories/Select/SelectBestPractices.md", + "hash": "3732417789999507960" + }, + { + "file": "packages/react-components/react-select/stories/Select/SelectControlled.stories.tsx", + "hash": "18142795900071240816" + }, + { + "file": "packages/react-components/react-select/stories/Select/SelectDefault.stories.tsx", + "hash": "12697183069620726717" + }, + { + "file": "packages/react-components/react-select/stories/Select/SelectDescription.md", + "hash": "10480618255513286510" + }, + { + "file": "packages/react-components/react-select/stories/Select/SelectDisabled.stories.tsx", + "hash": "15695391597017870010" + }, + { + "file": "packages/react-components/react-select/stories/Select/SelectInitialValue.stories.tsx", + "hash": "15522135501908703756" + }, + { + "file": "packages/react-components/react-select/stories/Select/SelectSize.stories.tsx", + "hash": "4277834054578622137" + }, + { + "file": "packages/react-components/react-select/stories/Select/index.stories.tsx", + "hash": "10137669799075046942" + }, + { + "file": "packages/react-components/react-select/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-select/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-select/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-skeleton": [ + { + "file": "packages/react-components/react-skeleton/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-skeleton/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-skeleton/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-skeleton/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-skeleton/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-skeleton/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-skeleton/CHANGELOG.json", + "hash": "679359539185323451" + }, + { + "file": "packages/react-components/react-skeleton/CHANGELOG.md", + "hash": "6334137216127598218" + }, + { + "file": "packages/react-components/react-skeleton/LICENSE", + "hash": "6250075351376405297" + }, + { + "file": "packages/react-components/react-skeleton/README.md", + "hash": "9945271824711735043" + }, + { + "file": "packages/react-components/react-skeleton/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-skeleton/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-skeleton/docs/Spec.md", + "hash": "13897816479466826881" + }, + { + "file": "packages/react-components/react-skeleton/etc/react-skeleton.api.md", + "hash": "12992069425819779816" + }, + { + "file": "packages/react-components/react-skeleton/jest.config.js", + "hash": "16818982385918863004" + }, + { + "file": "packages/react-components/react-skeleton/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-skeleton/package.json", + "hash": "9881502438741616805", + "deps": [ + "@fluentui/react-field", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-skeleton/project.json", + "hash": "6832058475924967679" + }, + { + "file": "packages/react-components/react-skeleton/src/Skeleton.ts", + "hash": "9461944777064965632" + }, + { + "file": "packages/react-components/react-skeleton/src/SkeletonItem.ts", + "hash": "665334022754508154" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.test.tsx", + "hash": "13394572200286725794" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.tsx", + "hash": "18086715874337061343" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.types.ts", + "hash": "13299571602345388126" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/__snapshots__/Skeleton.test.tsx.snap", + "hash": "3334217445587362770" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/index.ts", + "hash": "13841092410544054723" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/renderSkeleton.tsx", + "hash": "7305045366474573892" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/useSkeleton.ts", + "hash": "2740017611819742026" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/useSkeletonContextValues.ts", + "hash": "11854161295718927797" + }, + { + "file": "packages/react-components/react-skeleton/src/components/Skeleton/useSkeletonStyles.ts", + "hash": "6689079878448742591" + }, + { + "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.test.tsx", + "hash": "4791116720155630220" + }, + { + "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.tsx", + "hash": "13870262086932997147" + }, + { + "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.types.ts", + "hash": "8046039834720139265" + }, + { + "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/__snapshots__/SkeletonItem.test.tsx.snap", + "hash": "6578516573999757376" + }, + { + "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/index.ts", + "hash": "6483213234680238457" + }, + { + "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/renderSkeletonItem.tsx", + "hash": "770450448065870423" + }, + { + "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/useSkeletonItem.tsx", + "hash": "7107674077111646501" + }, + { + "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/useSkeletonItemStyles.styles.ts", + "hash": "13609891270571949523" + }, + { + "file": "packages/react-components/react-skeleton/src/contexts/SkeletonContext.ts", + "hash": "2682913424966864288" + }, + { + "file": "packages/react-components/react-skeleton/src/contexts/index.ts", + "hash": "1181885011368758139" + }, + { + "file": "packages/react-components/react-skeleton/src/index.ts", + "hash": "12430779751846790640" + }, + { + "file": "packages/react-components/react-skeleton/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonAnimation.stories.tsx", + "hash": "1551141379498317756" + }, + { + "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonAppearance.stories.tsx", + "hash": "3606600594729972921" + }, + { + "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonBestPractices.md", + "hash": "647232277873355848" + }, + { + "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonDefault.stories.tsx", + "hash": "4735990163474792631" + }, + { + "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonDescription.md", + "hash": "4308074357904685784" + }, + { + "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonRow.stories.tsx", + "hash": "1889883679642715937" + }, + { + "file": "packages/react-components/react-skeleton/stories/Skeleton/index.stories.tsx", + "hash": "3159015755476887438" + }, + { + "file": "packages/react-components/react-skeleton/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-skeleton/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-skeleton/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/public-docsite-v9": [ + { + "file": "apps/public-docsite-v9/.eslintrc.json", + "hash": "12497812907571400468" + }, + { + "file": "apps/public-docsite-v9/.storybook/docs-root-v9.css", + "hash": "16563406447022184093" + }, + { + "file": "apps/public-docsite-v9/.storybook/fix-title.js", + "hash": "17599399265234770426" + }, + { + "file": "apps/public-docsite-v9/.storybook/main.js", + "hash": "6496718208363723616" + }, + { + "file": "apps/public-docsite-v9/.storybook/manager-head.html", + "hash": "13902987237282594488" + }, + { + "file": "apps/public-docsite-v9/.storybook/manager.js", + "hash": "540459751487629314" + }, + { + "file": "apps/public-docsite-v9/.storybook/preview.js", + "hash": "628810804158154204" + }, + { + "file": "apps/public-docsite-v9/.storybook/theme.js", + "hash": "7607713174807756313" + }, + { + "file": "apps/public-docsite-v9/.storybook/tsconfig.json", + "hash": "15192856431060810840" + }, + { + "file": "apps/public-docsite-v9/CHANGELOG.json", + "hash": "5406493558112367419" + }, + { + "file": "apps/public-docsite-v9/CHANGELOG.md", + "hash": "8062893342931727325" + }, + { + "file": "apps/public-docsite-v9/README.md", + "hash": "537846658286629306" + }, + { + "file": "apps/public-docsite-v9/just.config.ts", + "hash": "2411455081002746933" + }, + { + "file": "apps/public-docsite-v9/package.json", + "hash": "16525272186147476408", + "deps": [ + "@fluentui/react-calendar-compat", + "@fluentui/react-datepicker-compat", + "@fluentui/react-migration-v8-v9", + "@fluentui/react-migration-v0-v9", + "@fluentui/react", + "@fluentui/react-northstar", + "@fluentui/react-icons-northstar", + "@fluentui/react-components", + "@fluentui/react-storybook-addon", + "@fluentui/react-storybook-addon-export-to-sandbox", + "@fluentui/theme-designer", + "@fluentui/react-rating-preview", + "@fluentui/react-search-preview", + "@fluentui/react-motion-preview", + "@fluentui/react-teaching-popover-preview", + "@fluentui/react-timepicker-compat-preview", + "npm:@griffel/react", + "npm:@microsoft/applicationinsights-web", + "npm:react", + "npm:react-dom", + "npm:react-window", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-storybook", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "apps/public-docsite-v9/project.json", + "hash": "1043518714100618396" + }, + { + "file": "apps/public-docsite-v9/public/brand-ramp-example.png", + "hash": "15610878053853781255" + }, + { + "file": "apps/public-docsite-v9/public/favicon-192.ico", + "hash": "8084905982277287563" + }, + { + "file": "apps/public-docsite-v9/public/favicon.ico", + "hash": "16917280242094002623" + }, + { + "file": "apps/public-docsite-v9/public/fluent.svg", + "hash": "18218964943649168724" + }, + { + "file": "apps/public-docsite-v9/public/fluent9-chevrons.png", + "hash": "12840033210156090801" + }, + { + "file": "apps/public-docsite-v9/public/fluent9-spring.png", + "hash": "11573364905124166842" + }, + { + "file": "apps/public-docsite-v9/public/fluent9-stars.png", + "hash": "9893314943427985760" + }, + { + "file": "apps/public-docsite-v9/public/fluent9.png", + "hash": "5704881173370893026" + }, + { + "file": "apps/public-docsite-v9/public/fluentui-banner-meta.png", + "hash": "1719012936996521465" + }, + { + "file": "apps/public-docsite-v9/public/fluentui-banner2.jpg", + "hash": "18306632541452318124" + }, + { + "file": "apps/public-docsite-v9/public/fluentui-logo.svg", + "hash": "15653200647526419127" + }, + { + "file": "apps/public-docsite-v9/public/fluentui-wide-banner.webp", + "hash": "7418162448352499674" + }, + { + "file": "apps/public-docsite-v9/public/lightweight.svg", + "hash": "5657497639188991046" + }, + { + "file": "apps/public-docsite-v9/public/shell.css", + "hash": "5646785212764741393" + }, + { + "file": "apps/public-docsite-v9/public/spring.svg", + "hash": "1151285431788351073" + }, + { + "file": "apps/public-docsite-v9/public/style-resolution.excalidraw", + "hash": "1279300784780131453" + }, + { + "file": "apps/public-docsite-v9/public/style-resolution.png", + "hash": "3903023650636210804" + }, + { + "file": "apps/public-docsite-v9/public/tokens.svg", + "hash": "13691732948447367898" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/AdvancedConfiguration.stories.mdx", + "hash": "6027268182050122246" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/BrowserSupportMatrix.stories.mdx", + "hash": "1228607429917320857" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/BuildTimeStyles.stories.mdx", + "hash": "12437946029172170614" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Introduction.stories.mdx", + "hash": "3509193672195860507" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Avatar.stories.mdx", + "hash": "7500159876916604705" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Box.stories.mdx", + "hash": "17726929489974387754" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Button.stories.mdx", + "hash": "5165102981189121498" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/Card.stories.mdx", + "hash": "14151972520219956278" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardBody.stories.mdx", + "hash": "18162109570330781614" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardFooter.stories.mdx", + "hash": "4687093865631735497" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardHeader.stories.mdx", + "hash": "2050221457843558006" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardPreview.stories.mdx", + "hash": "11621837033913569045" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Checkbox.stories.mdx", + "hash": "18407956735545093769" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Divider.stories.mdx", + "hash": "13595048683221264730" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Flex.stories.mdx", + "hash": "11954588101481249892" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/FlexItem.stories.mdx", + "hash": "8420309599134924583" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Grid.stories.mdx", + "hash": "6700576905807336071" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Header.stories.mdx", + "hash": "4058145472704301164" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/ComparisonTile.styles.ts", + "hash": "1623254964187684935" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/ComparisonTile.tsx", + "hash": "6031510467069933075" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconCatalog.styles.ts", + "hash": "14720705468818279735" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconCatalog.tsx", + "hash": "10029602955996080382" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconGrid.tsx", + "hash": "13375498134383154357" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/iconMapping.ts", + "hash": "17191414831423116710" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/types.ts", + "hash": "13320189052275250119" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/useDebounce.ts", + "hash": "1627091520647089283" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Image.stories.mdx", + "hash": "9617825166794162424" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Input.stories.mdx", + "hash": "8366871421104612219" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/ItemLayout.stories.mdx", + "hash": "2291507764460056594" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Label.stories.mdx", + "hash": "10055988712162174323" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Loader.stories.mdx", + "hash": "14988360606182076802" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Menu.stories.mdx", + "hash": "13915961584180156834" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Popup.stories.mdx", + "hash": "18317202100908469848" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/RadioGroup.stories.mdx", + "hash": "2435464880236261514" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Ref.stories.mdx", + "hash": "6423583874536323626" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Segment.stories.mdx", + "hash": "5477278039908075779" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Slider.stories.mdx", + "hash": "18101668614946165878" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Spinner.stories.mdx", + "hash": "15312019235072516276" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/SplitButton.stories.mdx", + "hash": "1847294588723170087" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/TabList.stories.mdx", + "hash": "8391983318858567681" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Text.stories.mdx", + "hash": "10058089897799736192" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Textarea.stories.mdx", + "hash": "9208490595500693037" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Toolbar.stories.mdx", + "hash": "17071380723254082436" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Tooltip.stories.mdx", + "hash": "17455365854773573149" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Icons.stories.mdx", + "hash": "17010056017852607842" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-custom-accessibility.stories.mdx", + "hash": "2596856736038670889" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-positioning.stories.mdx", + "hash": "17529793891355272427" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-styles.stories.mdx", + "hash": "17794812762778613022" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ComponentMapping.stories.mdx", + "hash": "16243915867913704219" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/AvatarGroup.stories.mdx", + "hash": "10119565970722557988" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Button.stories.mdx", + "hash": "11656382532750115105" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/Card.stories.mdx", + "hash": "14903830942748763588" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardFooter.stories.mdx", + "hash": "4062734561496252096" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardHeader.stories.mdx", + "hash": "10725482604752600152" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardPreview.stories.mdx", + "hash": "2059119778639415486" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Checkbox.stories.mdx", + "hash": "6823461108728301975" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Divider.stories.mdx", + "hash": "17785455521448078061" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Input.stories.mdx", + "hash": "15431601912224865768" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Label.stories.mdx", + "hash": "9054058141062094741" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Menu.stories.mdx", + "hash": "2558282556221331632" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/RadioGroup.stories.mdx", + "hash": "12226839331106575731" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Slider.stories.mdx", + "hash": "8003497693586564560" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv8Examples.stories.tsx", + "hash": "14715459287100320010" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv9Examples.stories.tsx", + "hash": "5673282445582931303" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/SpinButton.stories.mdx", + "hash": "9332700504183803319" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Spinner.stories.mdx", + "hash": "1809941066840167935" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Tabs.stories.mdx", + "hash": "4052626642361921649" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Textarea.stories.mdx", + "hash": "17808685935793411891" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Theme.stories.mdx", + "hash": "4384252736065296258" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/BrandColors.stories.tsx", + "hash": "16329563639900296559" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorBlock.styles.ts", + "hash": "3160347553800729901" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorBlock.tsx", + "hash": "8565745042529971498" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorCompare.tsx", + "hash": "15976953488790079976" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorMapping.stories.mdx", + "hash": "3020894949684801504" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/NamedColors.stories.tsx", + "hash": "11934418843702881095" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/NeutralColors.stories.tsx", + "hash": "2966669084201347416" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/SemanticColors.stories.tsx", + "hash": "5560789208522828535" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/colorMap.ts", + "hash": "1488055267438205957" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/colorUtils.ts", + "hash": "11801248277102989709" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/themeMap.ts", + "hash": "17925504785797383915" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/types.ts", + "hash": "13063420644715283401" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Troubleshooting.stories.mdx", + "hash": "8747907334094583065" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/GettingStarted.stories.mdx", + "hash": "9451779699191391096" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/HandlingBreakingChanges.stories.mdx", + "hash": "13000995019411734332" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Migration/KeepingDesignConsistent.stories.mdx", + "hash": "4274985729871756294" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/AreaCard.styles.ts", + "hash": "11383167343776703189" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/AreaCard.tsx", + "hash": "6998504548639232531" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/CodeItemCard.styles.ts", + "hash": "5690225079957065794" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/CodeItemCard.tsx", + "hash": "11390534584125618959" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/CodeItemIcons.tsx", + "hash": "1009357634118917580" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/Legend.styles.ts", + "hash": "10289947676290531535" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/Legend.tsx", + "hash": "13163962968913761556" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/OverviewCard.styles.ts", + "hash": "13023911342358279998" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/OverviewCard.tsx", + "hash": "3896737839883874452" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/PackageCard.styles.ts", + "hash": "3178517568105324799" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/PackageCard.tsx", + "hash": "8149333433858496621" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/Poster.stories.mdx", + "hash": "11768706133390347465" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/Poster.styles.ts", + "hash": "10078616957021919379" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/Poster.tsx", + "hash": "13510609166964038907" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/metadata.ts", + "hash": "246122072962373895" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Poster/types.ts", + "hash": "18096539967471875526" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/QuickStart.stories.mdx", + "hash": "3639996361033081603" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/SSR/MenuSSRDefaultOpen.stories.tsx", + "hash": "17417466496504427195" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/SSR/NextJSAppDir.stories.mdx", + "hash": "5618765040692212335" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/SSR/Nextjs.stories.mdx", + "hash": "6329398926014210453" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/SSR/Portals.stories.mdx", + "hash": "14703143921670652091" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/SSR/SSR.stories.mdx", + "hash": "17007025667679716727" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Slots/SlotSketch.stories.tsx", + "hash": "15629017638520325281" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Slots/Slots.stories.mdx", + "hash": "3201251314176313597" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/StylingComponents.stories.mdx", + "hash": "14475903966694824475" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/ThemeDesigner.stories.mdx", + "hash": "10163196227003295423" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/Theming.stories.mdx", + "hash": "18265015977572975070" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/components/WhatsNewBoxes.styles.ts", + "hash": "3505954724490374240" + }, + { + "file": "apps/public-docsite-v9/src/Concepts/components/WhatsNewBoxes.tsx", + "hash": "5997681001706950540" + }, + { + "file": "apps/public-docsite-v9/src/DocsComponents/DirSwitch.stories.tsx", + "hash": "17835614396368939615" + }, + { + "file": "apps/public-docsite-v9/src/DocsComponents/FluentDocsContainer.stories.tsx", + "hash": "7165188870592901014" + }, + { + "file": "apps/public-docsite-v9/src/DocsComponents/FluentDocsPage.stories.tsx", + "hash": "7081773190048278332" + }, + { + "file": "apps/public-docsite-v9/src/DocsComponents/ThemePicker.stories.tsx", + "hash": "15694390206129851378" + }, + { + "file": "apps/public-docsite-v9/src/DocsComponents/Toc.stories.tsx", + "hash": "12094141171645307537" + }, + { + "file": "apps/public-docsite-v9/src/shims/ThemeShim/themeDuplicates.ts", + "hash": "11231048427901921409" + }, + { + "file": "apps/public-docsite-v9/src/shims/ThemeShim/v8ThemeShim.ts", + "hash": "11884523527404188288" + }, + { + "file": "apps/public-docsite-v9/src/shims/ThemeShim/v9BrandVariantsShim.ts", + "hash": "6259229093326138167" + }, + { + "file": "apps/public-docsite-v9/src/shims/ThemeShim/v9ThemeShim.ts", + "hash": "9946586764904553104" + }, + { + "file": "apps/public-docsite-v9/tsconfig.app.json", + "hash": "2683353677112626789" + }, + { + "file": "apps/public-docsite-v9/tsconfig.json", + "hash": "12149056959744678629" + } + ], + "@fluentui/react-icons-mdl2-branded": [ + { + "file": "packages/react-icons-mdl2-branded/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-icons-mdl2-branded/.npmignore", + "hash": "7699079327417375383" + }, + { + "file": "packages/react-icons-mdl2-branded/CHANGELOG.json", + "hash": "5572846064800558832" + }, + { + "file": "packages/react-icons-mdl2-branded/CHANGELOG.md", + "hash": "6004498992866846212" + }, + { + "file": "packages/react-icons-mdl2-branded/LICENSE", + "hash": "7874699040565754716" + }, + { + "file": "packages/react-icons-mdl2-branded/README.md", + "hash": "6559004903633966452" + }, + { + "file": "packages/react-icons-mdl2-branded/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-icons-mdl2-branded/package.json", + "hash": "4013216088192523680", + "deps": [ + "@fluentui/set-version", + "@fluentui/react-icons-mdl2", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-icons-mdl2-branded/project.json", + "hash": "182356497911993089" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AADLogoIcon.tsx", + "hash": "286612657429892804" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ATPLogoIcon.tsx", + "hash": "13784004784877289281" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminALogo32Icon.tsx", + "hash": "13918755500788848136" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminALogoFill32Icon.tsx", + "hash": "1271871821797964572" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminALogoInverse32Icon.tsx", + "hash": "15572356902705291320" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminCLogoInverse32Icon.tsx", + "hash": "8291878645804224665" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminDLogoInverse32Icon.tsx", + "hash": "12605925310702167699" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminELogoInverse32Icon.tsx", + "hash": "2055064523378402409" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminIcon.tsx", + "hash": "17249102460938666539" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminLLogoInverse32Icon.tsx", + "hash": "5186632936760569047" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminMLogoInverse32Icon.tsx", + "hash": "534894712628818082" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminOLogoInverse32Icon.tsx", + "hash": "7077310521163798320" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminPLogoInverse32Icon.tsx", + "hash": "10023240628776751568" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminSLogoInverse32Icon.tsx", + "hash": "16725812218512154502" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AdminYLogoInverse32Icon.tsx", + "hash": "10971688238831377884" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AnalyticsLogoIcon.tsx", + "hash": "9146491538898029640" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AppIconDefaultAddIcon.tsx", + "hash": "3057290352682393613" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AppIconDefaultIcon.tsx", + "hash": "16322368519595134458" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AppIconDefaultListIcon.tsx", + "hash": "1875525878736528866" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AuthenticatorAppIcon.tsx", + "hash": "9035246704413886179" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AzureAPIManagementIcon.tsx", + "hash": "16863931877328318762" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AzureDataExplorerIcon.tsx", + "hash": "16715482426408220220" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AzureKeyVaultIcon.tsx", + "hash": "1876735140795216492" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AzureLogoIcon.tsx", + "hash": "1157520540581726064" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/AzureServiceEndpointIcon.tsx", + "hash": "10791926301689612077" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/BingLogoIcon.tsx", + "hash": "11095005553524243037" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/BookingsLogoIcon.tsx", + "hash": "16237838276555695215" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/BusinessCenterLogoIcon.tsx", + "hash": "1992258361865159624" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CSharpIcon.tsx", + "hash": "1218562371043262076" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CSharpLanguageIcon.tsx", + "hash": "4486900751399342960" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogo16Icon.tsx", + "hash": "1306772457103002006" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogo32Icon.tsx", + "hash": "13082486700176205468" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoFill16Icon.tsx", + "hash": "8096526662570019166" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoFill32Icon.tsx", + "hash": "4902069909469199769" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverse16Icon.tsx", + "hash": "11289604115372825136" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverse32Icon.tsx", + "hash": "9762210137361100029" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverseIcon.tsx", + "hash": "5659327487607017490" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ClassroomLogoIcon.tsx", + "hash": "2658662134413257154" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CloudAddIcon.tsx", + "hash": "8823984491201494189" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CloudDownloadIcon.tsx", + "hash": "11447080274954114683" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CloudEditIcon.tsx", + "hash": "15998901405605389656" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CloudIcon.tsx", + "hash": "12803745667366798375" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CloudImportExportIcon.tsx", + "hash": "11520403045238624252" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CloudLinkIcon.tsx", + "hash": "4528047515277517448" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CloudUploadIcon.tsx", + "hash": "12111269655658299111" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoBeckonInnerIcon.tsx", + "hash": "11204650693827031651" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoBeckonOuterIcon.tsx", + "hash": "1506803459583441120" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoInnerIcon.tsx", + "hash": "4993027430341599346" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoOuterIcon.tsx", + "hash": "6570916997666699040" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoReadyInnerIcon.tsx", + "hash": "5007601663442040819" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoReadyOuterIcon.tsx", + "hash": "14586333191546845230" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/D365CoreHRIcon.tsx", + "hash": "11675479994053164507" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/D365CustomerInsightsIcon.tsx", + "hash": "7696962140726350337" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/D365ProjectOperationsIcon.tsx", + "hash": "12689837804929752593" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/D365TalentInsightIcon.tsx", + "hash": "8722510368816735518" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/D365TalentLearnIcon.tsx", + "hash": "9505091097402717202" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/DefenderTVMIcon.tsx", + "hash": "4870644410769153894" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/DelveAnalyticsIcon.tsx", + "hash": "5106396823492780885" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/DelveAnalyticsLogoIcon.tsx", + "hash": "17437764083205864353" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/DelveLogoFillIcon.tsx", + "hash": "4378901451898008002" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/DelveLogoIcon.tsx", + "hash": "11889962662708226215" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/DelveLogoInverseIcon.tsx", + "hash": "5563017822461835114" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/DocsLogoInverseIcon.tsx", + "hash": "17612230936000509677" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/DynamicSMBLogoIcon.tsx", + "hash": "8650766395468311932" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/Dynamics365LogoIcon.tsx", + "hash": "11964817414736042899" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/EaseOfAccessIcon.tsx", + "hash": "6782831925933246445" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/EdgeOldLogoIcon.tsx", + "hash": "12981348315562520653" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ExcelDocumentIcon.tsx", + "hash": "1953182811326908426" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ExcelLogo16Icon.tsx", + "hash": "15451858074289665199" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ExcelLogoIcon.tsx", + "hash": "4503561444784775358" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ExcelLogoInverse16Icon.tsx", + "hash": "10418691375627201464" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ExcelLogoInverseIcon.tsx", + "hash": "7408811467511219483" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ExchangeLogoIcon.tsx", + "hash": "1190109571660363185" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ExchangeLogoInverseIcon.tsx", + "hash": "10929102413050619142" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FSharpIcon.tsx", + "hash": "9700048294343458887" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FSharpLanguageIcon.tsx", + "hash": "12352319661851991875" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricAssetLibraryIcon.tsx", + "hash": "6355542684163004314" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricDataConnectionLibraryIcon.tsx", + "hash": "5654902665584785444" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricDocLibraryIcon.tsx", + "hash": "7635512283992981007" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderConfirmIcon.tsx", + "hash": "2211349472694303988" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderFillIcon.tsx", + "hash": "964294498720132834" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderIcon.tsx", + "hash": "10695342211099874865" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderLinkIcon.tsx", + "hash": "10429063494726626085" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderSearchIcon.tsx", + "hash": "6667557297700479924" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderUploadIcon.tsx", + "hash": "1910850107847332198" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricFormLibraryIcon.tsx", + "hash": "393856321422346232" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricFormLibraryMirroredIcon.tsx", + "hash": "2107238495815253044" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricMovetoFolderIcon.tsx", + "hash": "15441331751229855364" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricNetworkFolderIcon.tsx", + "hash": "4937769319823027311" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricNewFolderIcon.tsx", + "hash": "5011754760717216363" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricOpenFolderHorizontalIcon.tsx", + "hash": "16101556240934332161" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricPictureLibraryIcon.tsx", + "hash": "7702059312920065229" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricPublicFolderIcon.tsx", + "hash": "1406354717120035387" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricReportLibraryIcon.tsx", + "hash": "15366135833518195967" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricReportLibraryMirroredIcon.tsx", + "hash": "587360560589104239" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricSyncFolderIcon.tsx", + "hash": "11849917451986376708" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricTextHighlightCompositeIcon.tsx", + "hash": "8764540473589052096" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricTextHighlightIcon.tsx", + "hash": "16283610349878347893" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricUnsyncFolderIcon.tsx", + "hash": "15422480604060536911" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FabricUserFolderIcon.tsx", + "hash": "1192153107196064422" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FileTypeSolutionIcon.tsx", + "hash": "3662559790348026514" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/FluidLogoIcon.tsx", + "hash": "17370571241108674595" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/GallatinLogoIcon.tsx", + "hash": "395239581866816777" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/KaizalaLogoIcon.tsx", + "hash": "12996616918427120232" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/LinkedInLogoIcon.tsx", + "hash": "12410113133867699448" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/LyncLogoIcon.tsx", + "hash": "12427794773746552395" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/M365InvoicingLogoIcon.tsx", + "hash": "6432220689512606158" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MSNLogoIcon.tsx", + "hash": "997872328623258600" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MSNVideosIcon.tsx", + "hash": "3837439073069506492" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MSNVideosSolidIcon.tsx", + "hash": "6558132186060318074" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MTMLogoIcon.tsx", + "hash": "1617837189040859513" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftFlowLogoIcon.tsx", + "hash": "12738157357695453070" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftStaffhubLogoIcon.tsx", + "hash": "11635328036602536226" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoBlueIcon.tsx", + "hash": "13131018300687774701" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoGreenIcon.tsx", + "hash": "7995428099799207563" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoIcon.tsx", + "hash": "17740888294142646264" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/MixerLogoIcon.tsx", + "hash": "2066196399332209055" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/NUIFaceIcon.tsx", + "hash": "15740059719288959586" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/NugetLogoIcon.tsx", + "hash": "7248304310428830654" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeAddinsLogoIcon.tsx", + "hash": "6014758584722489650" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeAssistantLogoIcon.tsx", + "hash": "15148982425841752965" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogo16Icon.tsx", + "hash": "11563564485285736203" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogo24Icon.tsx", + "hash": "5199176739895186676" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoIcon.tsx", + "hash": "14251883998842401693" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverse16Icon.tsx", + "hash": "16828025945656129995" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverse24Icon.tsx", + "hash": "8691064696395649094" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverseIcon.tsx", + "hash": "13561091795038698825" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeLogoIcon.tsx", + "hash": "18326076488817609104" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeStoreLogoIcon.tsx", + "hash": "7632809471286021588" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoFillIcon.tsx", + "hash": "12326348413282257076" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoIcon.tsx", + "hash": "18042148677451131857" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoInverseIcon.tsx", + "hash": "9111845006778088774" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfflineOneDriveParachuteDisabledIcon.tsx", + "hash": "4569305382823957773" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OfflineOneDriveParachuteIcon.tsx", + "hash": "11708134621038314260" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneDriveAddIcon.tsx", + "hash": "1339929739213542352" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneDriveFileVaultIcon.tsx", + "hash": "7691382481774395461" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneDriveFolder16Icon.tsx", + "hash": "15118961307125957626" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneDriveLogoIcon.tsx", + "hash": "15202151660658133990" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneNoteEduLogoInverseIcon.tsx", + "hash": "5073802520265164743" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneNoteLogo16Icon.tsx", + "hash": "8126472621555093392" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneNoteLogoIcon.tsx", + "hash": "10168387188200397957" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneNoteLogoInverse16Icon.tsx", + "hash": "4050397123839257559" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OneNoteLogoInverseIcon.tsx", + "hash": "15289706149754656126" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OutlookLogo16Icon.tsx", + "hash": "7133650664491934421" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OutlookLogoIcon.tsx", + "hash": "11060465217645778207" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OutlookLogoInverse16Icon.tsx", + "hash": "17275945938623363109" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OutlookLogoInverseIcon.tsx", + "hash": "14540781013559732269" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/OutlookSpacesBucketIcon.tsx", + "hash": "12512134648162524854" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PlannerLogoIcon.tsx", + "hash": "13881355230438925573" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerApps2LogoIcon.tsx", + "hash": "9147199073187918517" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerAppsIcon.tsx", + "hash": "15945765988151351445" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerAppsLogoIcon.tsx", + "hash": "4108964653569237085" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerBILogo16Icon.tsx", + "hash": "1705883498391270004" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerBILogoBackplate16Icon.tsx", + "hash": "16863750704521208261" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerBILogoIcon.tsx", + "hash": "11744984325483917702" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerPointDocumentIcon.tsx", + "hash": "13413889276743138496" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerPointLogo16Icon.tsx", + "hash": "15159308528546989637" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerPointLogoIcon.tsx", + "hash": "1161549358748291781" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerPointLogoInverse16Icon.tsx", + "hash": "14572773921008382391" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerPointLogoInverseIcon.tsx", + "hash": "5515315351698523797" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerShell2Icon.tsx", + "hash": "9607241218249762348" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PowerShellIcon.tsx", + "hash": "1215366400765232443" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/Project2019DocumentIcon.tsx", + "hash": "2947526506141893256" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ProjectCollectionIcon.tsx", + "hash": "9137480349369194321" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ProjectDocumentIcon.tsx", + "hash": "4824514570525933892" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ProjectLogo16Icon.tsx", + "hash": "17897242666248559019" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ProjectLogo32Icon.tsx", + "hash": "17335364980672858735" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ProjectLogoInverseIcon.tsx", + "hash": "9639893396035436074" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ProtectionCenterLogo32Icon.tsx", + "hash": "5415769882865013432" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PublisherLogo16Icon.tsx", + "hash": "11547496209099992938" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PublisherLogoIcon.tsx", + "hash": "12224610314668748743" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/PublisherLogoInverse16Icon.tsx", + "hash": "10768589395164248513" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/RecycleBinIcon.tsx", + "hash": "4431919377309825291" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SchoolDataSyncLogoIcon.tsx", + "hash": "7329348036185854951" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SharepointAppIcon16Icon.tsx", + "hash": "11913691047292805113" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SharepointLogoIcon.tsx", + "hash": "2973253366437178853" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SharepointLogoInverseIcon.tsx", + "hash": "547323045296380184" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ShieldAlertIcon.tsx", + "hash": "16953362426179349363" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ShieldIcon.tsx", + "hash": "12222566642242764707" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ShieldSolidIcon.tsx", + "hash": "5674612406598905196" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleArrowIcon.tsx", + "hash": "16212602154023944478" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleCheckIcon.tsx", + "hash": "16698736842509718563" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleClockIcon.tsx", + "hash": "11187044799816934889" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleMinusIcon.tsx", + "hash": "13491166295728586000" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleSlashIcon.tsx", + "hash": "12478069904088362976" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogo16Icon.tsx", + "hash": "11717893424251261207" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoFill16Icon.tsx", + "hash": "8575456796504640227" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoFillIcon.tsx", + "hash": "3211676103062894506" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoIcon.tsx", + "hash": "3328870468482787133" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeLogo16Icon.tsx", + "hash": "4216393599475392793" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeLogoIcon.tsx", + "hash": "10970989583765084564" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeMessageIcon.tsx", + "hash": "3891774845871204894" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SkypeSlashIcon.tsx", + "hash": "15728439011720121890" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SocialListeningLogoIcon.tsx", + "hash": "9734123862450723424" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogo16Icon.tsx", + "hash": "7244885805437496064" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogo32Icon.tsx", + "hash": "12096858272751002311" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoFill16Icon.tsx", + "hash": "387841461450406720" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoFill32Icon.tsx", + "hash": "7990858656352105381" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoInverted16Icon.tsx", + "hash": "1699636953066137992" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoInverted32Icon.tsx", + "hash": "8411199570320499133" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StickyNotesOutlineAppIconIcon.tsx", + "hash": "7508617851836741600" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StickyNotesSolidAppIconIcon.tsx", + "hash": "4519535920540625805" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StoreLogo16Icon.tsx", + "hash": "3730154522145728562" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StoreLogoMed20Icon.tsx", + "hash": "16218634217032109378" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/StreamLogoIcon.tsx", + "hash": "5114054364460018332" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SwayLogo16Icon.tsx", + "hash": "13142288730916211955" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SwayLogo32Icon.tsx", + "hash": "7015704915605563198" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SwayLogoFill16Icon.tsx", + "hash": "5440418177171701369" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SwayLogoFill32Icon.tsx", + "hash": "9383255395977678826" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/SwayLogoInverseIcon.tsx", + "hash": "1651266669379649298" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/TFVCLogoIcon.tsx", + "hash": "4522981229589531678" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/TaskLogoIcon.tsx", + "hash": "6937125034367876098" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/TeamsLogo16Icon.tsx", + "hash": "4518194404707385484" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/TeamsLogoIcon.tsx", + "hash": "2058189545298767077" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/TeamsLogoInverseIcon.tsx", + "hash": "6880701599345693655" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ToDoLogoBottomIcon.tsx", + "hash": "2586784011837635459" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ToDoLogoInverseIcon.tsx", + "hash": "5713704551578775823" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ToDoLogoOutlineIcon.tsx", + "hash": "17289038086286653881" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/ToDoLogoTopIcon.tsx", + "hash": "5119451226450060347" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/TypeScriptLanguageIcon.tsx", + "hash": "4965199824729399882" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VSTSAltLogo1Icon.tsx", + "hash": "16122007415797523884" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VSTSAltLogo2Icon.tsx", + "hash": "14342687992320244536" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VSTSLogoIcon.tsx", + "hash": "5067263600814696839" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisioDiagramIcon.tsx", + "hash": "12955868772798195807" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisioDiagramSyncIcon.tsx", + "hash": "2684076828907175078" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisioDocumentIcon.tsx", + "hash": "11451545399228857597" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisioLogo16Icon.tsx", + "hash": "15699950363884732544" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisioLogoIcon.tsx", + "hash": "11277632155737288079" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisioLogoInverse16Icon.tsx", + "hash": "6579132367741458351" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisioLogoInverseIcon.tsx", + "hash": "6141482260623012289" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisualBasicLanguageIcon.tsx", + "hash": "17351361460595550751" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisualStudioIDELogo32Icon.tsx", + "hash": "3297659863569634452" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VisualStudioLogoIcon.tsx", + "hash": "3921352685862917392" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/VivaEngageIcon.tsx", + "hash": "15738913926237603580" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WaffleOffice365Icon.tsx", + "hash": "2252766351274000701" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WebAppBuilderFragmentCreateIcon.tsx", + "hash": "1463616614984543493" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WebAppBuilderFragmentIcon.tsx", + "hash": "14848667160233281856" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WebAppBuilderModuleIcon.tsx", + "hash": "9260469117886312397" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WebAppBuilderSlotIcon.tsx", + "hash": "72036574105245107" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WhiteBoardApp16Icon.tsx", + "hash": "15901343271537059202" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WhiteBoardApp32Icon.tsx", + "hash": "13969726970012006484" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WindowsLogoIcon.tsx", + "hash": "3971496456219229417" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WordDocumentIcon.tsx", + "hash": "9906863102417860978" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WordLogo16Icon.tsx", + "hash": "13294245168007756326" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WordLogoIcon.tsx", + "hash": "10758064000164288561" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WordLogoInverse16Icon.tsx", + "hash": "2761116872095713698" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/WordLogoInverseIcon.tsx", + "hash": "3972220353064318114" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/XboxLogoIcon.tsx", + "hash": "14069322545871919082" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/XboxOneConsoleIcon.tsx", + "hash": "16771077986371339927" + }, + { + "file": "packages/react-icons-mdl2-branded/src/components/YammerLogoIcon.tsx", + "hash": "15020404209578345557" + }, + { + "file": "packages/react-icons-mdl2-branded/src/index.ts", + "hash": "2586773828929508699" + }, + { + "file": "packages/react-icons-mdl2-branded/src/version.ts", + "hash": "1378911257610677358" + }, + { + "file": "packages/react-icons-mdl2-branded/tsconfig.json", + "hash": "16918675067402812126" + } + ], + "@fluentui/react-components": [ + { + "file": "packages/react-components/react-components/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-components/.eslintrc.json", + "hash": "16150242168540975786" + }, + { + "file": "packages/react-components/react-components/.gitignore", + "hash": "13372735117233221667" + }, + { + "file": "packages/react-components/react-components/.storybook/main.js", + "hash": "5645485037555221482" + }, + { + "file": "packages/react-components/react-components/.storybook/preview.js", + "hash": "8038481416891966773" + }, + { + "file": "packages/react-components/react-components/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-components/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-components/CHANGELOG.json", + "hash": "3933417667138973232" + }, + { + "file": "packages/react-components/react-components/CHANGELOG.md", + "hash": "15663227018170933658" + }, + { + "file": "packages/react-components/react-components/LICENSE", + "hash": "10255657226477075794" + }, + { + "file": "packages/react-components/react-components/README.md", + "hash": "11587884417356817137" + }, + { + "file": "packages/react-components/react-components/assets/alert-keyboard.png", + "hash": "15249732195573034994" + }, + { + "file": "packages/react-components/react-components/assets/alert-mouse-touch.png", + "hash": "12249460593997234403" + }, + { + "file": "packages/react-components/react-components/assets/dialog-anatomy.png", + "hash": "9790416628323586517" + }, + { + "file": "packages/react-components/react-components/assets/modal-keyboard.png", + "hash": "9012292467073880542" + }, + { + "file": "packages/react-components/react-components/assets/modal-mouse-touch.png", + "hash": "3033643199014309546" + }, + { + "file": "packages/react-components/react-components/assets/non-modal-keyboard.png", + "hash": "11384655701996986210" + }, + { + "file": "packages/react-components/react-components/assets/non-modal-mouse-touch.png", + "hash": "16247262641136131571" + }, + { + "file": "packages/react-components/react-components/bundle-size/ButtonProviderAndTheme.fixture.js", + "hash": "17019747510632370214" + }, + { + "file": "packages/react-components/react-components/bundle-size/MultipleComponents.fixture.js", + "hash": "7427445305648856257" + }, + { + "file": "packages/react-components/react-components/bundle-size/ProviderAndTheme.fixture.js", + "hash": "12914286093854360655" + }, + { + "file": "packages/react-components/react-components/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-components/config/api-extractor.unstable.json", + "hash": "9512960027067289088" + }, + { + "file": "packages/react-components/react-components/config/pre-copy.json", + "hash": "8933244511250124822" + }, + { + "file": "packages/react-components/react-components/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-components/docs/MIGRATION-NOTES.md", + "hash": "4521324631345225068" + }, + { + "file": "packages/react-components/react-components/etc/react-components.api.md", + "hash": "18095309827241643254" + }, + { + "file": "packages/react-components/react-components/etc/react-components.unstable.api.md", + "hash": "4109143100580997913" + }, + { + "file": "packages/react-components/react-components/jest.config.js", + "hash": "11810330001400121529" + }, + { + "file": "packages/react-components/react-components/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-components/package.json", + "hash": "6821435458712997046", + "deps": [ + "@fluentui/react-accordion", + "@fluentui/react-alert", + "@fluentui/react-avatar", + "@fluentui/react-badge", + "@fluentui/react-button", + "@fluentui/react-card", + "@fluentui/react-checkbox", + "@fluentui/react-combobox", + "@fluentui/react-dialog", + "@fluentui/react-divider", + "@fluentui/react-drawer", + "@fluentui/react-field", + "@fluentui/react-image", + "@fluentui/react-infobutton", + "@fluentui/react-infolabel", + "@fluentui/react-input", + "@fluentui/react-label", + "@fluentui/react-link", + "@fluentui/react-menu", + "@fluentui/react-overflow", + "@fluentui/react-persona", + "@fluentui/react-portal", + "@fluentui/react-popover", + "@fluentui/react-positioning", + "@fluentui/react-progress", + "@fluentui/react-provider", + "@fluentui/react-radio", + "@fluentui/react-select", + "@fluentui/react-shared-contexts", + "@fluentui/react-skeleton", + "@fluentui/react-slider", + "@fluentui/react-spinbutton", + "@fluentui/react-spinner", + "@fluentui/react-switch", + "@fluentui/react-table", + "@fluentui/react-tabs", + "@fluentui/react-tabster", + "@fluentui/react-tags", + "@fluentui/react-textarea", + "@fluentui/react-theme", + "@fluentui/react-toast", + "@fluentui/react-toolbar", + "@fluentui/react-tooltip", + "@fluentui/react-utilities", + "@fluentui/react-text", + "@fluentui/react-virtualizer", + "@fluentui/react-tree", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/react-message-bar", + "@fluentui/react-breadcrumb", + "@fluentui/eslint-plugin", + "npm:react-hook-form", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-components/project.json", + "hash": "15915132305255283070" + }, + { + "file": "packages/react-components/react-components/src/Concepts/Icons/ReactIconGrid.tsx", + "hash": "15648366075411592656" + }, + { + "file": "packages/react-components/react-components/src/index.ts", + "hash": "9602633354990534895" + }, + { + "file": "packages/react-components/react-components/src/unstable/index.ts", + "hash": "17127110014653250113" + }, + { + "file": "packages/react-components/react-components/src/unstable/package.json__tmpl__", + "hash": "14469017445902889019" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Accordion.stories.tsx", + "hash": "5261274850033724196" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/AccordionFaq.stories.tsx", + "hash": "3711296761758539461" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Button.stories.tsx", + "hash": "9135053873053394162" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Checkbox.stories.tsx", + "hash": "18422225923861027839" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Input.stories.tsx", + "hash": "13031699296131987255" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Link.stories.tsx", + "hash": "9284047790819060564" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/ListOfScenarios.stories.mdx", + "hash": "18008776474087302263" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Menu.stories.tsx", + "hash": "5496036381131988450" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/MenuSplitGroup.stories.tsx", + "hash": "13714132678203560925" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Popover.stories.tsx", + "hash": "1484726241091602586" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/RadioGroup.stories.tsx", + "hash": "7308888334073459506" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Slider.stories.tsx", + "hash": "13192574564934461371" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Spinner.stories.tsx", + "hash": "6986065893612221448" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/SplitButton.stories.tsx", + "hash": "7176544829687519936" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Switch.stories.tsx", + "hash": "15970436396001209984" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/TabListHorizontal.stories.tsx", + "hash": "9938150602800442377" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/TabListOverflow.stories.tsx", + "hash": "15038822242040527851" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/TabListVertical.stories.tsx", + "hash": "16057335239807774657" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Textarea.stories.tsx", + "hash": "9635748482005322625" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/ToggleButton.stories.tsx", + "hash": "17407275276966444104" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Tooltip.stories.tsx", + "hash": "17546321637487339355" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/index.stories.tsx", + "hash": "14658705870973190500" + }, + { + "file": "packages/react-components/react-components/stories/AccessibilityScenarios/utils.tsx", + "hash": "7215302430949320194" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Accessibility/AccessibleComponents.stories.mdx", + "hash": "3295771942860848592" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Accessibility/AccessibleExperiences.stories.mdx", + "hash": "2900291657079817589" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Accessibility/FocusIndicator.stories.mdx", + "hash": "1717337186527803258" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Axis.stories.tsx", + "hash": "10318348332393326457" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/CircularNavigation.stories.tsx", + "hash": "6781750418223870091" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Default.stories.tsx", + "hash": "13313594812236532657" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Memorize.stories.tsx", + "hash": "1820798249934632278" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/index.stories.tsx", + "hash": "6967816180948552799" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/useArrowNavigationGroupDescription.md", + "hash": "2031447657270072240" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/Default.stories.tsx", + "hash": "13224545909870604584" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindAllWhere.stories.tsx", + "hash": "9017130571781111926" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindFirst.stories.tsx", + "hash": "317264299185587249" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindLast.stories.tsx", + "hash": "18052296652579568309" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindNext.stories.tsx", + "hash": "17925103578502891443" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindPrevious.stories.tsx", + "hash": "10084829099646404716" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/index.stories.tsx", + "hash": "9794805248352104971" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/useFocusFindersDescription.md", + "hash": "9049217529934217066" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/Default.stories.tsx", + "hash": "9065252716333350570" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/Limited.stories.tsx", + "hash": "9555705919210714710" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/LimitedTrapFocus.stories.tsx", + "hash": "13702213217400448084" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/index.stories.tsx", + "hash": "157374974440116360" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/useFocusableGroupDescription.md", + "hash": "8837756520973428757" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/Default.stories.tsx", + "hash": "12297290380505646340" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/InertFocusTrap.stories.tsx", + "hash": "18201555536110422598" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/index.stories.tsx", + "hash": "6330308829316680025" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/useModalAttributesDescription.md", + "hash": "8341388369435401062" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/Default.stories.tsx", + "hash": "10152294546566560089" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/MultipleNames.stories.tsx", + "hash": "9397108312180853844" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/index.stories.tsx", + "hash": "2051553537147974031" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/useObservedElementDescription.md", + "hash": "9542011707964967918" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/Default.stories.stories.tsx", + "hash": "11494446748156496224" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/FocusRestoreHistory.stories.tsx", + "hash": "3681364596967862819" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/UserRestoreFocus.stories.stories.tsx", + "hash": "9793947365179708427" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/index.stories.tsx", + "hash": "1448366491964554873" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/useRestoreFocusSourceDescription.md", + "hash": "727321225129794077" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/Default.stories.tsx", + "hash": "6326143576473960437" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/index.stories.tsx", + "hash": "5639657332615332719" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/useUncontrolledFocusDescription.md", + "hash": "9882522118220737320" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Icons/Icon.stories.mdx", + "hash": "1197053246392928276" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Icons/IconTable.stories.mdx", + "hash": "4896154475220076794" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/MatchTargetSize.stories.tsx", + "hash": "4487974487102015866" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/OverflowBoundaryPadding.stories.tsx", + "hash": "14304319794708833793" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningAnchorToTarget.stories.tsx", + "hash": "12152022627674249494" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningBestPractices.md", + "hash": "4693427405734490301" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningCoverTarget.stories.tsx", + "hash": "15984490079701264594" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningDefault.stories.tsx", + "hash": "14129962775143693627" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningDescription.md", + "hash": "12862623453561421564" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningDisableTransform.stories.tsx", + "hash": "6806805123184905778" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningFlipBoundary.stories.tsx", + "hash": "15305995841896426816" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningImperativeAnchorTarget.stories.tsx", + "hash": "6229434466729398121" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningImperativePositionUpdate.stories.tsx", + "hash": "12186453763733206915" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningOffsetFunction.stories.tsx", + "hash": "11624576393760387377" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningOffsetValue.stories.tsx", + "hash": "13170786133550262509" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningOverflowBoundary.stories.tsx", + "hash": "8317968229863701716" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningShorthandPositions.stories.tsx", + "hash": "7414638675247295275" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/index.stories.tsx", + "hash": "9056885794431434983" + }, + { + "file": "packages/react-components/react-components/stories/Concepts/Positioning/utils.stories.tsx", + "hash": "9474602900711575872" + }, + { + "file": "packages/react-components/react-components/stories/Migrations/Flex.Stack.stories.mdx", + "hash": "828823711976364144" + }, + { + "file": "packages/react-components/react-components/stories/Migrations/Flex.StackItem.stories.mdx", + "hash": "7377444694311401484" + }, + { + "file": "packages/react-components/react-components/stories/Migrations/utils.stories.test.tsx", + "hash": "15201130176337142924" + }, + { + "file": "packages/react-components/react-components/stories/Migrations/utils.stories.tsx", + "hash": "10595453595829049863" + }, + { + "file": "packages/react-components/react-components/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-components/tsconfig.lib.json", + "hash": "2330431448937249608" + }, + { + "file": "packages/react-components/react-components/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-portal-compat-context": [ + { + "file": "packages/react-components/react-portal-compat-context/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-portal-compat-context/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-portal-compat-context/.swcrc", + "hash": "246811047642206189" + }, + { + "file": "packages/react-components/react-portal-compat-context/CHANGELOG.json", + "hash": "3286043060232160725" + }, + { + "file": "packages/react-components/react-portal-compat-context/CHANGELOG.md", + "hash": "16083951032521964094" + }, + { + "file": "packages/react-components/react-portal-compat-context/LICENSE", + "hash": "15132429679533339073" + }, + { + "file": "packages/react-components/react-portal-compat-context/README.md", + "hash": "12732380853969159320" + }, + { + "file": "packages/react-components/react-portal-compat-context/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-portal-compat-context/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-portal-compat-context/docs/Spec.md", + "hash": "12839968031342266899" + }, + { + "file": "packages/react-components/react-portal-compat-context/etc/react-portal-compat-context.api.md", + "hash": "11239910211046275802" + }, + { + "file": "packages/react-components/react-portal-compat-context/jest.config.js", + "hash": "8444108561492533698" + }, + { + "file": "packages/react-components/react-portal-compat-context/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-portal-compat-context/package.json", + "hash": "11825902232626046996", + "deps": [ + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-components/react-portal-compat-context/project.json", + "hash": "16365174501960435076" + }, + { + "file": "packages/react-components/react-portal-compat-context/src/PortalCompatContext.ts", + "hash": "2242893524372144892" + }, + { + "file": "packages/react-components/react-portal-compat-context/src/index.ts", + "hash": "16361580812256184490" + }, + { + "file": "packages/react-components/react-portal-compat-context/src/types.ts", + "hash": "15037039190645892516" + }, + { + "file": "packages/react-components/react-portal-compat-context/tsconfig.json", + "hash": "1281030173985602576" + }, + { + "file": "packages/react-components/react-portal-compat-context/tsconfig.lib.json", + "hash": "7009046833260972717" + }, + { + "file": "packages/react-components/react-portal-compat-context/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-avatar": [ + { + "file": "packages/react-components/react-avatar/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-avatar/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-avatar/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-avatar/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-avatar/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-avatar/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-avatar/CHANGELOG.json", + "hash": "17359224246229139817" + }, + { + "file": "packages/react-components/react-avatar/CHANGELOG.md", + "hash": "13775367118916418634" + }, + { + "file": "packages/react-components/react-avatar/LICENSE", + "hash": "1561472303802842351" + }, + { + "file": "packages/react-components/react-avatar/README-AvatarGroup.md", + "hash": "6635177105173945453" + }, + { + "file": "packages/react-components/react-avatar/README.md", + "hash": "3417364935367193895" + }, + { + "file": "packages/react-components/react-avatar/bundle-size/Avatar.fixture.js", + "hash": "5791018364621035780" + }, + { + "file": "packages/react-components/react-avatar/bundle-size/AvatarGroup.fixture.js", + "hash": "2351286029785799155" + }, + { + "file": "packages/react-components/react-avatar/bundle-size/AvatarGroupItem.fixture.js", + "hash": "2729519475190533563" + }, + { + "file": "packages/react-components/react-avatar/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-avatar/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-avatar/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-avatar/docs/MIGRATION.md", + "hash": "3195958884814768437" + }, + { + "file": "packages/react-components/react-avatar/docs/SPEC-AvatarGroup.md", + "hash": "11426133715399943569" + }, + { + "file": "packages/react-components/react-avatar/docs/SPEC.md", + "hash": "4287805402968502679" + }, + { + "file": "packages/react-components/react-avatar/etc/react-avatar.api.md", + "hash": "17662099340512427639" + }, + { + "file": "packages/react-components/react-avatar/jest.config.js", + "hash": "6376176729770622848" + }, + { + "file": "packages/react-components/react-avatar/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-avatar/package.json", + "hash": "8265612536199943469", + "deps": [ + "@fluentui/react-badge", + "@fluentui/react-context-selector", + "npm:@fluentui/react-icons", + "@fluentui/react-popover", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-tooltip", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "npm:es6-weak-map", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-avatar/project.json", + "hash": "15962836208333366159" + }, + { + "file": "packages/react-components/react-avatar/src/Avatar.ts", + "hash": "7635867096605850206" + }, + { + "file": "packages/react-components/react-avatar/src/AvatarGroup.ts", + "hash": "6984127121712003934" + }, + { + "file": "packages/react-components/react-avatar/src/AvatarGroupItem.ts", + "hash": "9295176073013264238" + }, + { + "file": "packages/react-components/react-avatar/src/AvatarGroupPopover.ts", + "hash": "10828507195645538418" + }, + { + "file": "packages/react-components/react-avatar/src/components/Avatar/Avatar.test.tsx", + "hash": "3799793463774131037" + }, + { + "file": "packages/react-components/react-avatar/src/components/Avatar/Avatar.tsx", + "hash": "4286195710387072464" + }, + { + "file": "packages/react-components/react-avatar/src/components/Avatar/Avatar.types.ts", + "hash": "3502910881682367236" + }, + { + "file": "packages/react-components/react-avatar/src/components/Avatar/index.ts", + "hash": "1955269048664210261" + }, + { + "file": "packages/react-components/react-avatar/src/components/Avatar/renderAvatar.tsx", + "hash": "17085450580548719997" + }, + { + "file": "packages/react-components/react-avatar/src/components/Avatar/useAvatar.tsx", + "hash": "17265171031077561605" + }, + { + "file": "packages/react-components/react-avatar/src/components/Avatar/useAvatarStyles.styles.ts", + "hash": "9237444740068646329" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.cy.tsx", + "hash": "9396486021626927639" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.test.tsx", + "hash": "667562290854564595" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.tsx", + "hash": "12574745185973390309" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.types.ts", + "hash": "11445543023522684177" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/index.ts", + "hash": "8395078397697710402" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/renderAvatarGroup.tsx", + "hash": "906681850248904049" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroup.tsx", + "hash": "9748744777328738202" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroupContextValues.ts", + "hash": "7762097512239166845" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroupStyles.styles.ts", + "hash": "14767535204413912450" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.test.tsx", + "hash": "10693309452718169000" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.tsx", + "hash": "7048541463080468607" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.types.ts", + "hash": "13088512575982029284" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/index.ts", + "hash": "282603665069963077" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/renderAvatarGroupItem.tsx", + "hash": "14044015495498541840" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItem.ts", + "hash": "6698825707962161686" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItemStyles.styles.ts", + "hash": "51869593395452064" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.test.tsx", + "hash": "3568582866102004130" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.tsx", + "hash": "17770210227374180685" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.types.ts", + "hash": "16101743792578847966" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/index.ts", + "hash": "16771975726213604396" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/renderAvatarGroupPopover.tsx", + "hash": "10757030829615508783" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopover.tsx", + "hash": "2555256022131750635" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.ts", + "hash": "6728840970785876253" + }, + { + "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.ts", + "hash": "11153103963870430610" + }, + { + "file": "packages/react-components/react-avatar/src/contexts/AvatarContext.ts", + "hash": "590498634812227243" + }, + { + "file": "packages/react-components/react-avatar/src/contexts/AvatarGroupContext.ts", + "hash": "6848247087059396651" + }, + { + "file": "packages/react-components/react-avatar/src/contexts/index.ts", + "hash": "2367898825323850098" + }, + { + "file": "packages/react-components/react-avatar/src/index.ts", + "hash": "17396567248118398568" + }, + { + "file": "packages/react-components/react-avatar/src/testing/isConformant.ts", + "hash": "14447437808059758114" + }, + { + "file": "packages/react-components/react-avatar/src/utils/getInitials.test.ts", + "hash": "1680373439266347581" + }, + { + "file": "packages/react-components/react-avatar/src/utils/getInitials.ts", + "hash": "8327067548509255430" + }, + { + "file": "packages/react-components/react-avatar/src/utils/index.ts", + "hash": "12640729207052328910" + }, + { + "file": "packages/react-components/react-avatar/src/utils/partitionAvatarGroupItems.test.ts", + "hash": "9020780588609051149" + }, + { + "file": "packages/react-components/react-avatar/src/utils/partitionAvatarGroupItems.ts", + "hash": "543320327366877998" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarActive.stories.tsx", + "hash": "11500606915849458094" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarActiveAppearance.stories.tsx", + "hash": "6182092775061915836" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarBadge.stories.tsx", + "hash": "11737232360515773548" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarBadgeIcon.stories.tsx", + "hash": "8242903931583202526" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarColorBrand.stories.tsx", + "hash": "18386464499879542692" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarColorColorful.stories.tsx", + "hash": "1485807022761171712" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarColorPalette.stories.tsx", + "hash": "3082620768392145900" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarDefault.stories.tsx", + "hash": "879195072404448224" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarDescription.md", + "hash": "13383169207186333246" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarIcon.stories.tsx", + "hash": "5602542620961988143" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarImage.stories.tsx", + "hash": "18370734978373805725" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarInitials.stories.tsx", + "hash": "6358033680498150005" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarName.stories.tsx", + "hash": "8073892423041068966" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarSize.stories.tsx", + "hash": "16769822324005143226" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/AvatarSquare.stories.tsx", + "hash": "10756829190493281080" + }, + { + "file": "packages/react-components/react-avatar/stories/Avatar/index.stories.tsx", + "hash": "14429406280611309106" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupBestPractices.md", + "hash": "2259983816839514735" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupDefault.stories.tsx", + "hash": "18379733445475677697" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupDescription.md", + "hash": "5437435466472005639" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupIndicator.stories.tsx", + "hash": "17517750698648452574" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupLayout.stories.tsx", + "hash": "16809663284413994087" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizePie.stories.tsx", + "hash": "4328408042847102333" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizeSpread.stories.tsx", + "hash": "15556124444323653952" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizeStack.stories.tsx", + "hash": "17922874870636889465" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupTooltip.stories.tsx", + "hash": "10320557607960243438" + }, + { + "file": "packages/react-components/react-avatar/stories/AvatarGroup/index.stories.tsx", + "hash": "8538042635878276171" + }, + { + "file": "packages/react-components/react-avatar/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-avatar/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-avatar/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-avatar/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-icons-mdl2": [ + { + "file": "packages/react-icons-mdl2/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/react-icons-mdl2/.npmignore", + "hash": "7699079327417375383" + }, + { + "file": "packages/react-icons-mdl2/CHANGELOG.json", + "hash": "1430423070199017856" + }, + { + "file": "packages/react-icons-mdl2/CHANGELOG.md", + "hash": "1264357153435679050" + }, + { + "file": "packages/react-icons-mdl2/LICENSE", + "hash": "9395811624481750314" + }, + { + "file": "packages/react-icons-mdl2/README.md", + "hash": "12012648870062646297" + }, + { + "file": "packages/react-icons-mdl2/config/tests.js", + "hash": "2484785926023527183" + }, + { + "file": "packages/react-icons-mdl2/jest.config.js", + "hash": "8193037916930093299" + }, + { + "file": "packages/react-icons-mdl2/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-icons-mdl2/package.json", + "hash": "12554934536586602710", + "deps": [ + "npm:@microsoft/load-themed-styles", + "@fluentui/react-icon-provider", + "@fluentui/set-version", + "@fluentui/utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:react" + ] + }, + { + "file": "packages/react-icons-mdl2/project.json", + "hash": "9405952407540858057" + }, + { + "file": "packages/react-icons-mdl2/src/components/AcceptIcon.tsx", + "hash": "13272820529719697754" + }, + { + "file": "packages/react-icons-mdl2/src/components/AcceptMediumIcon.tsx", + "hash": "233759165174457955" + }, + { + "file": "packages/react-icons-mdl2/src/components/AccessLogoIcon.tsx", + "hash": "10076820615385413143" + }, + { + "file": "packages/react-icons-mdl2/src/components/AccessibiltyCheckerIcon.tsx", + "hash": "17163154328238480502" + }, + { + "file": "packages/react-icons-mdl2/src/components/AccountActivityIcon.tsx", + "hash": "10083780395725044448" + }, + { + "file": "packages/react-icons-mdl2/src/components/AccountBrowserIcon.tsx", + "hash": "4886838405698581415" + }, + { + "file": "packages/react-icons-mdl2/src/components/AccountManagementIcon.tsx", + "hash": "14240924682416561361" + }, + { + "file": "packages/react-icons-mdl2/src/components/AccountsIcon.tsx", + "hash": "5091094539386694432" + }, + { + "file": "packages/react-icons-mdl2/src/components/ActionCenterIcon.tsx", + "hash": "7299586471180464700" + }, + { + "file": "packages/react-icons-mdl2/src/components/ActivateOrdersIcon.tsx", + "hash": "4724335180979374061" + }, + { + "file": "packages/react-icons-mdl2/src/components/ActivityFeedIcon.tsx", + "hash": "9930772763792149030" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddBookmarkIcon.tsx", + "hash": "9685299498471779185" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddEventIcon.tsx", + "hash": "9223382545511878618" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddFavoriteFillIcon.tsx", + "hash": "13153789552411326133" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddFavoriteIcon.tsx", + "hash": "16108295555277104516" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddFriendIcon.tsx", + "hash": "11602302526096078759" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddGroupIcon.tsx", + "hash": "8297395296545127141" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddHomeIcon.tsx", + "hash": "11775157314316771124" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddIcon.tsx", + "hash": "649995549095629328" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddInIcon.tsx", + "hash": "5951209157788023487" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddLinkIcon.tsx", + "hash": "7371973306206784109" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddNotesIcon.tsx", + "hash": "4656052725575234588" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddOnlineMeetingIcon.tsx", + "hash": "14406263341432389439" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddPhoneIcon.tsx", + "hash": "3625529200821399716" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddReactionIcon.tsx", + "hash": "13460751958280979491" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddSpaceAfterIcon.tsx", + "hash": "15074348565770991976" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddSpaceBeforeIcon.tsx", + "hash": "3142131346206110407" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddToIcon.tsx", + "hash": "538841695346118641" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddToShoppingListIcon.tsx", + "hash": "8565378581856667931" + }, + { + "file": "packages/react-icons-mdl2/src/components/AddWorkIcon.tsx", + "hash": "7602013393075909897" + }, + { + "file": "packages/react-icons-mdl2/src/components/AirTicketsIcon.tsx", + "hash": "17373350328176895637" + }, + { + "file": "packages/react-icons-mdl2/src/components/AirplaneIcon.tsx", + "hash": "5054051762224313358" + }, + { + "file": "packages/react-icons-mdl2/src/components/AirplaneSolidIcon.tsx", + "hash": "3959451231147223815" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlarmClockIcon.tsx", + "hash": "4729092436626120955" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlbumIcon.tsx", + "hash": "3945464638930199870" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlbumRemoveIcon.tsx", + "hash": "11070708387356752287" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlertSettingsIcon.tsx", + "hash": "16533100387166307350" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlertSolidIcon.tsx", + "hash": "13010023221781344193" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignCenterIcon.tsx", + "hash": "17076325177021464640" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignHorizontalCenterIcon.tsx", + "hash": "14349572761959928148" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignHorizontalLeftIcon.tsx", + "hash": "9773512587719486081" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignHorizontalRightIcon.tsx", + "hash": "16947375829587998009" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignJustifyIcon.tsx", + "hash": "4802981133282120135" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignLeftIcon.tsx", + "hash": "17564125727224245385" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignRightIcon.tsx", + "hash": "5970481821484554499" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignVerticalBottomIcon.tsx", + "hash": "9971142954072746645" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignVerticalCenterIcon.tsx", + "hash": "351673482399466793" + }, + { + "file": "packages/react-icons-mdl2/src/components/AlignVerticalTopIcon.tsx", + "hash": "8851249200156919191" + }, + { + "file": "packages/react-icons-mdl2/src/components/AllAppsIcon.tsx", + "hash": "16292576204589409158" + }, + { + "file": "packages/react-icons-mdl2/src/components/AllAppsMirroredIcon.tsx", + "hash": "4672918375225717266" + }, + { + "file": "packages/react-icons-mdl2/src/components/AllCurrencyIcon.tsx", + "hash": "4596000769812652830" + }, + { + "file": "packages/react-icons-mdl2/src/components/AltTextIcon.tsx", + "hash": "17657616199898733800" + }, + { + "file": "packages/react-icons-mdl2/src/components/AmazonWebServicesLogoIcon.tsx", + "hash": "11765565114057427639" + }, + { + "file": "packages/react-icons-mdl2/src/components/AnalyticsQueryIcon.tsx", + "hash": "11433855487017698147" + }, + { + "file": "packages/react-icons-mdl2/src/components/AnalyticsReportIcon.tsx", + "hash": "18354054869655929023" + }, + { + "file": "packages/react-icons-mdl2/src/components/AnalyticsViewIcon.tsx", + "hash": "10418305492179508701" + }, + { + "file": "packages/react-icons-mdl2/src/components/AnchorLockIcon.tsx", + "hash": "3423082534614830402" + }, + { + "file": "packages/react-icons-mdl2/src/components/AndroidLogoIcon.tsx", + "hash": "14686412471023102815" + }, + { + "file": "packages/react-icons-mdl2/src/components/AnnotationIcon.tsx", + "hash": "11342377332737430043" + }, + { + "file": "packages/react-icons-mdl2/src/components/ApacheIvyLogo32Icon.tsx", + "hash": "2918134896312448658" + }, + { + "file": "packages/react-icons-mdl2/src/components/ApacheMavenLogoIcon.tsx", + "hash": "16399596079327715994" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArchiveIcon.tsx", + "hash": "12280332357717161867" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArchiveUndoIcon.tsx", + "hash": "10856545521803800470" + }, + { + "file": "packages/react-icons-mdl2/src/components/AreaChartIcon.tsx", + "hash": "5179382537274327584" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrangeBringForwardIcon.tsx", + "hash": "5433898051558651326" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrangeBringToFrontIcon.tsx", + "hash": "1505051143939122001" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrangeByFromIcon.tsx", + "hash": "11165324307950102881" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrangeSendBackwardIcon.tsx", + "hash": "3571562683944194254" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrangeSendToBackIcon.tsx", + "hash": "17278998742575976905" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrivalsIcon.tsx", + "hash": "18235477685319469615" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowDownRight8Icon.tsx", + "hash": "12907225691599052628" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowDownRightMirrored8Icon.tsx", + "hash": "4497171579545271048" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowTallDownLeftIcon.tsx", + "hash": "17174274091977555889" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowTallDownRightIcon.tsx", + "hash": "12343213447484503186" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowTallUpLeftIcon.tsx", + "hash": "5438583383881980943" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowTallUpRightIcon.tsx", + "hash": "5856822185825999666" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowUpRight8Icon.tsx", + "hash": "15423363474761989994" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowUpRightIcon.tsx", + "hash": "5633293037068413854" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArrowUpRightMirrored8Icon.tsx", + "hash": "16226342630129853713" + }, + { + "file": "packages/react-icons-mdl2/src/components/ArticlesIcon.tsx", + "hash": "4505935511685500431" + }, + { + "file": "packages/react-icons-mdl2/src/components/AscendingIcon.tsx", + "hash": "17273836348684464916" + }, + { + "file": "packages/react-icons-mdl2/src/components/AspectRatioIcon.tsx", + "hash": "9472692140636682439" + }, + { + "file": "packages/react-icons-mdl2/src/components/AssessmentGroupIcon.tsx", + "hash": "9990042987655129422" + }, + { + "file": "packages/react-icons-mdl2/src/components/AssessmentGroupTemplateIcon.tsx", + "hash": "2062691050575372150" + }, + { + "file": "packages/react-icons-mdl2/src/components/AssetLibraryIcon.tsx", + "hash": "7791059590913763172" + }, + { + "file": "packages/react-icons-mdl2/src/components/AssignIcon.tsx", + "hash": "14743301672967242916" + }, + { + "file": "packages/react-icons-mdl2/src/components/AssignPolicyIcon.tsx", + "hash": "1142747429676413857" + }, + { + "file": "packages/react-icons-mdl2/src/components/AsteriskIcon.tsx", + "hash": "14432692334937635758" + }, + { + "file": "packages/react-icons-mdl2/src/components/AsteriskSolidIcon.tsx", + "hash": "10298288423353384806" + }, + { + "file": "packages/react-icons-mdl2/src/components/AttachIcon.tsx", + "hash": "11845773719191763640" + }, + { + "file": "packages/react-icons-mdl2/src/components/AustralianRulesIcon.tsx", + "hash": "4152554014500550815" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutoDeploySettingsIcon.tsx", + "hash": "5682077687972027110" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutoEnhanceOffIcon.tsx", + "hash": "3171393689469182643" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutoEnhanceOnIcon.tsx", + "hash": "698710895866528245" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutoFillTemplateIcon.tsx", + "hash": "13695873113605750361" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutoFitContentsIcon.tsx", + "hash": "2501936783055150056" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutoFitWindowIcon.tsx", + "hash": "13452477990359238332" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutoHeightIcon.tsx", + "hash": "2752523469179302565" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutoRacingIcon.tsx", + "hash": "3132079180733486488" + }, + { + "file": "packages/react-icons-mdl2/src/components/AutomateFlowIcon.tsx", + "hash": "16831072257370889941" + }, + { + "file": "packages/react-icons-mdl2/src/components/AwayStatusIcon.tsx", + "hash": "16196688126001285506" + }, + { + "file": "packages/react-icons-mdl2/src/components/BIDashboardIcon.tsx", + "hash": "18233375696995378311" + }, + { + "file": "packages/react-icons-mdl2/src/components/BackIcon.tsx", + "hash": "9049703118809299925" + }, + { + "file": "packages/react-icons-mdl2/src/components/BackToWindowIcon.tsx", + "hash": "11285424535009773565" + }, + { + "file": "packages/react-icons-mdl2/src/components/BackgroundColorIcon.tsx", + "hash": "13239767601679223355" + }, + { + "file": "packages/react-icons-mdl2/src/components/BacklogBoardIcon.tsx", + "hash": "15475298857584077772" + }, + { + "file": "packages/react-icons-mdl2/src/components/BacklogIcon.tsx", + "hash": "8025374010749681963" + }, + { + "file": "packages/react-icons-mdl2/src/components/BacklogListIcon.tsx", + "hash": "12282522729595068441" + }, + { + "file": "packages/react-icons-mdl2/src/components/BadgeIcon.tsx", + "hash": "18225924514525553158" + }, + { + "file": "packages/react-icons-mdl2/src/components/BalloonsIcon.tsx", + "hash": "13689663511218690347" + }, + { + "file": "packages/react-icons-mdl2/src/components/BankIcon.tsx", + "hash": "1418173345319401536" + }, + { + "file": "packages/react-icons-mdl2/src/components/BankSolidIcon.tsx", + "hash": "15889746559469221934" + }, + { + "file": "packages/react-icons-mdl2/src/components/BarChart4Icon.tsx", + "hash": "14519428920477073539" + }, + { + "file": "packages/react-icons-mdl2/src/components/BarChartHorizontalIcon.tsx", + "hash": "15035881198223458022" + }, + { + "file": "packages/react-icons-mdl2/src/components/BarChartVerticalEditIcon.tsx", + "hash": "10723949843818994593" + }, + { + "file": "packages/react-icons-mdl2/src/components/BarChartVerticalFillIcon.tsx", + "hash": "3129620341778946443" + }, + { + "file": "packages/react-icons-mdl2/src/components/BarChartVerticalFilterIcon.tsx", + "hash": "18371318246119377910" + }, + { + "file": "packages/react-icons-mdl2/src/components/BarChartVerticalFilterSolidIcon.tsx", + "hash": "14678037970012215655" + }, + { + "file": "packages/react-icons-mdl2/src/components/BarChartVerticalIcon.tsx", + "hash": "12226677053677932853" + }, + { + "file": "packages/react-icons-mdl2/src/components/BaseballIcon.tsx", + "hash": "12818296635193741142" + }, + { + "file": "packages/react-icons-mdl2/src/components/BeerMugIcon.tsx", + "hash": "12665371620776874704" + }, + { + "file": "packages/react-icons-mdl2/src/components/BidiLtrIcon.tsx", + "hash": "10928894856767197769" + }, + { + "file": "packages/react-icons-mdl2/src/components/BidiRtlIcon.tsx", + "hash": "3395616160090573366" + }, + { + "file": "packages/react-icons-mdl2/src/components/BirthdayCakeIcon.tsx", + "hash": "576834721585654637" + }, + { + "file": "packages/react-icons-mdl2/src/components/BitbucketLogo32Icon.tsx", + "hash": "6575071044668833382" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlobStorageIcon.tsx", + "hash": "13514398799207035118" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlockContactIcon.tsx", + "hash": "11565246906910685738" + }, + { + "file": "packages/react-icons-mdl2/src/components/Blocked12Icon.tsx", + "hash": "13462460695764374955" + }, + { + "file": "packages/react-icons-mdl2/src/components/Blocked2Icon.tsx", + "hash": "2520160366904418187" + }, + { + "file": "packages/react-icons-mdl2/src/components/Blocked2SolidIcon.tsx", + "hash": "8458365681183234441" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlockedIcon.tsx", + "hash": "3749446691227940562" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlockedSiteIcon.tsx", + "hash": "12610611766096702608" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlockedSiteSolid12Icon.tsx", + "hash": "13735398763025222883" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlockedSolidIcon.tsx", + "hash": "11543517390104023728" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlogIcon.tsx", + "hash": "15238138213428866603" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlowingSnowIcon.tsx", + "hash": "15016544739088464871" + }, + { + "file": "packages/react-icons-mdl2/src/components/BlurIcon.tsx", + "hash": "15939225359960098363" + }, + { + "file": "packages/react-icons-mdl2/src/components/BoardsIcon.tsx", + "hash": "10829570643337490973" + }, + { + "file": "packages/react-icons-mdl2/src/components/BoldIcon.tsx", + "hash": "10380225123111595334" + }, + { + "file": "packages/react-icons-mdl2/src/components/BookAnswersIcon.tsx", + "hash": "14791394905429321702" + }, + { + "file": "packages/react-icons-mdl2/src/components/BookmarkReportIcon.tsx", + "hash": "4210713580408367132" + }, + { + "file": "packages/react-icons-mdl2/src/components/BookmarksIcon.tsx", + "hash": "15356635029801629161" + }, + { + "file": "packages/react-icons-mdl2/src/components/BookmarksMirroredIcon.tsx", + "hash": "875828057988760076" + }, + { + "file": "packages/react-icons-mdl2/src/components/BorderDashIcon.tsx", + "hash": "8829457069107821324" + }, + { + "file": "packages/react-icons-mdl2/src/components/BorderDotIcon.tsx", + "hash": "9240317214925189417" + }, + { + "file": "packages/react-icons-mdl2/src/components/BoxAdditionSolidIcon.tsx", + "hash": "11350503466850356760" + }, + { + "file": "packages/react-icons-mdl2/src/components/BoxCheckmarkSolidIcon.tsx", + "hash": "3993984423108653768" + }, + { + "file": "packages/react-icons-mdl2/src/components/BoxLogoIcon.tsx", + "hash": "3477822992375579248" + }, + { + "file": "packages/react-icons-mdl2/src/components/BoxMultiplySolidIcon.tsx", + "hash": "3025940095014892577" + }, + { + "file": "packages/react-icons-mdl2/src/components/BoxPlaySolidIcon.tsx", + "hash": "651778939019116633" + }, + { + "file": "packages/react-icons-mdl2/src/components/BoxSubtractSolidIcon.tsx", + "hash": "15828442106320112550" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchCommitIcon.tsx", + "hash": "1701598958667655873" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchCompareIcon.tsx", + "hash": "7455107304051907662" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchFork2Icon.tsx", + "hash": "16019747120871666258" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchForkIcon.tsx", + "hash": "11917755225984172871" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchLockedIcon.tsx", + "hash": "11676671461632403921" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchMergeIcon.tsx", + "hash": "11636727331798320000" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchPullRequestIcon.tsx", + "hash": "18185688154471541900" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchSearchIcon.tsx", + "hash": "15942190495184577267" + }, + { + "file": "packages/react-icons-mdl2/src/components/BranchShelvesetIcon.tsx", + "hash": "9506880191029106661" + }, + { + "file": "packages/react-icons-mdl2/src/components/BreadcrumbIcon.tsx", + "hash": "16302978875050387015" + }, + { + "file": "packages/react-icons-mdl2/src/components/BreakfastIcon.tsx", + "hash": "4434316272013442903" + }, + { + "file": "packages/react-icons-mdl2/src/components/BrightnessIcon.tsx", + "hash": "4502688003795424689" + }, + { + "file": "packages/react-icons-mdl2/src/components/BroomIcon.tsx", + "hash": "15601692763557396697" + }, + { + "file": "packages/react-icons-mdl2/src/components/BrowserScreenShotIcon.tsx", + "hash": "387157802078007804" + }, + { + "file": "packages/react-icons-mdl2/src/components/BrowserTabIcon.tsx", + "hash": "16720728111746037477" + }, + { + "file": "packages/react-icons-mdl2/src/components/BrowserTabScreenshotIcon.tsx", + "hash": "9486182720700898248" + }, + { + "file": "packages/react-icons-mdl2/src/components/BrunchIcon.tsx", + "hash": "9304993816741728195" + }, + { + "file": "packages/react-icons-mdl2/src/components/BrushIcon.tsx", + "hash": "2083197491638533728" + }, + { + "file": "packages/react-icons-mdl2/src/components/BucketColorFillIcon.tsx", + "hash": "9533337610559240832" + }, + { + "file": "packages/react-icons-mdl2/src/components/BucketColorIcon.tsx", + "hash": "7483666238641885831" + }, + { + "file": "packages/react-icons-mdl2/src/components/BufferTimeAfterIcon.tsx", + "hash": "7575934789210637908" + }, + { + "file": "packages/react-icons-mdl2/src/components/BufferTimeBeforeIcon.tsx", + "hash": "10657985189959504185" + }, + { + "file": "packages/react-icons-mdl2/src/components/BufferTimeBothIcon.tsx", + "hash": "15953428896414748271" + }, + { + "file": "packages/react-icons-mdl2/src/components/BugBlockIcon.tsx", + "hash": "14977946201663289590" + }, + { + "file": "packages/react-icons-mdl2/src/components/BugIcon.tsx", + "hash": "7308488488840840943" + }, + { + "file": "packages/react-icons-mdl2/src/components/BugSolidIcon.tsx", + "hash": "13965227196570703817" + }, + { + "file": "packages/react-icons-mdl2/src/components/BugSyncIcon.tsx", + "hash": "11993139694121706389" + }, + { + "file": "packages/react-icons-mdl2/src/components/BuildDefinitionIcon.tsx", + "hash": "7405946235420127193" + }, + { + "file": "packages/react-icons-mdl2/src/components/BuildIcon.tsx", + "hash": "5745313003747949584" + }, + { + "file": "packages/react-icons-mdl2/src/components/BuildIssueIcon.tsx", + "hash": "15729409904590152849" + }, + { + "file": "packages/react-icons-mdl2/src/components/BuildQueueIcon.tsx", + "hash": "1045754058954301815" + }, + { + "file": "packages/react-icons-mdl2/src/components/BuildQueueNewIcon.tsx", + "hash": "16937549947035433544" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulkUploadIcon.tsx", + "hash": "13960447598965911434" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedList2Icon.tsx", + "hash": "10178406528500791691" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedList2MirroredIcon.tsx", + "hash": "2258742585605214586" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedListBulletIcon.tsx", + "hash": "1388559911534605379" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedListBulletMirroredIcon.tsx", + "hash": "13952921300372285478" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedListIcon.tsx", + "hash": "7216178630996754817" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedListMirroredIcon.tsx", + "hash": "6002486582315584292" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedListTextIcon.tsx", + "hash": "6332928603076498646" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedListTextMirroredIcon.tsx", + "hash": "13827292519455109191" + }, + { + "file": "packages/react-icons-mdl2/src/components/BulletedTreeListIcon.tsx", + "hash": "17841013603095641202" + }, + { + "file": "packages/react-icons-mdl2/src/components/BullseyeIcon.tsx", + "hash": "16080619879843331969" + }, + { + "file": "packages/react-icons-mdl2/src/components/BullseyeTargetEditIcon.tsx", + "hash": "6635034443595197483" + }, + { + "file": "packages/react-icons-mdl2/src/components/BullseyeTargetIcon.tsx", + "hash": "985692057574074255" + }, + { + "file": "packages/react-icons-mdl2/src/components/BusIcon.tsx", + "hash": "12406265701944432854" + }, + { + "file": "packages/react-icons-mdl2/src/components/BusSolidIcon.tsx", + "hash": "3315766964639000487" + }, + { + "file": "packages/react-icons-mdl2/src/components/BusinessHoursSignIcon.tsx", + "hash": "10489361169986732175" + }, + { + "file": "packages/react-icons-mdl2/src/components/ButtonControlIcon.tsx", + "hash": "6206420526372154740" + }, + { + "file": "packages/react-icons-mdl2/src/components/CPlusPlusIcon.tsx", + "hash": "8979710346279727933" + }, + { + "file": "packages/react-icons-mdl2/src/components/CPlusPlusLanguageIcon.tsx", + "hash": "4941896980217157487" + }, + { + "file": "packages/react-icons-mdl2/src/components/CRMProcessesIcon.tsx", + "hash": "2938521056354911192" + }, + { + "file": "packages/react-icons-mdl2/src/components/CRMReportIcon.tsx", + "hash": "9112533953352470445" + }, + { + "file": "packages/react-icons-mdl2/src/components/CRMServicesIcon.tsx", + "hash": "12711185398904941315" + }, + { + "file": "packages/react-icons-mdl2/src/components/CSSIcon.tsx", + "hash": "3945126511682309994" + }, + { + "file": "packages/react-icons-mdl2/src/components/CafeIcon.tsx", + "hash": "7242226240974353393" + }, + { + "file": "packages/react-icons-mdl2/src/components/CakeIcon.tsx", + "hash": "4772879894474086202" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorAdditionIcon.tsx", + "hash": "10209418255044745710" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorDeltaIcon.tsx", + "hash": "7288234815715793986" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorEqualToIcon.tsx", + "hash": "17995372526080182029" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorGroupIcon.tsx", + "hash": "7666201474766909219" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorIcon.tsx", + "hash": "10526111833223188068" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorMultiplyIcon.tsx", + "hash": "7337527738134685536" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorNotEqualToIcon.tsx", + "hash": "14515316967948697658" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorPercentageIcon.tsx", + "hash": "12714490605531493306" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalculatorSubtractIcon.tsx", + "hash": "7830007881922087373" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarAgendaIcon.tsx", + "hash": "9891795127440824099" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarDayIcon.tsx", + "hash": "11055456678255689564" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarIcon.tsx", + "hash": "9228334659105536946" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarMirroredIcon.tsx", + "hash": "16974288181652211965" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarReplyIcon.tsx", + "hash": "13500005999876734340" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarSettingsIcon.tsx", + "hash": "17100028494597246284" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarSettingsMirroredIcon.tsx", + "hash": "7879742555155452791" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarWeekIcon.tsx", + "hash": "10398595753853743173" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarWorkWeekIcon.tsx", + "hash": "11045818085162155973" + }, + { + "file": "packages/react-icons-mdl2/src/components/CalendarYearIcon.tsx", + "hash": "16838791748025679221" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaloriesAddIcon.tsx", + "hash": "4303229413379001786" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaloriesIcon.tsx", + "hash": "5463516468239336469" + }, + { + "file": "packages/react-icons-mdl2/src/components/CameraIcon.tsx", + "hash": "4195313564462257519" + }, + { + "file": "packages/react-icons-mdl2/src/components/CampaignTemplateIcon.tsx", + "hash": "3719909990425432023" + }, + { + "file": "packages/react-icons-mdl2/src/components/CancelIcon.tsx", + "hash": "10317700657146339525" + }, + { + "file": "packages/react-icons-mdl2/src/components/CannedChatIcon.tsx", + "hash": "15835322069038419693" + }, + { + "file": "packages/react-icons-mdl2/src/components/CarIcon.tsx", + "hash": "16485912454163323039" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretBottomLeftCenter8Icon.tsx", + "hash": "4973559050578265754" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretBottomLeftSolid8Icon.tsx", + "hash": "3785565672890408237" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretBottomRightCenter8Icon.tsx", + "hash": "5405021413196033014" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretBottomRightSolid8Icon.tsx", + "hash": "10231170155544951846" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretDown8Icon.tsx", + "hash": "12671861183780382583" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretDownSolid8Icon.tsx", + "hash": "3509733715106366075" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretHollowIcon.tsx", + "hash": "17702062177780790927" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretHollowMirroredIcon.tsx", + "hash": "16063090921609294476" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretLeft8Icon.tsx", + "hash": "1327169153711640634" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretLeftSolid8Icon.tsx", + "hash": "11402471956695437421" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretRight8Icon.tsx", + "hash": "2201211074827386143" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretRightIcon.tsx", + "hash": "11036717627633799736" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretRightSolid8Icon.tsx", + "hash": "18306534689265925179" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretSolid16Icon.tsx", + "hash": "14410687348052949902" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretSolidDownIcon.tsx", + "hash": "16375333673336697431" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretSolidIcon.tsx", + "hash": "17873238766448089274" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretSolidLeftIcon.tsx", + "hash": "17428990906911923042" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretSolidMirroredIcon.tsx", + "hash": "1243666110724694783" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretSolidRightIcon.tsx", + "hash": "7084165137666742875" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretSolidUpIcon.tsx", + "hash": "15884194277471378635" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretTopLeftCenter8Icon.tsx", + "hash": "11022898863557850878" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretTopLeftSolid8Icon.tsx", + "hash": "5263494152959946163" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretTopRightCenter8Icon.tsx", + "hash": "2686558306914655194" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretTopRightSolid8Icon.tsx", + "hash": "6964924610046017557" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretUp8Icon.tsx", + "hash": "1258617837263280580" + }, + { + "file": "packages/react-icons-mdl2/src/components/CaretUpSolid8Icon.tsx", + "hash": "9775824517440082506" + }, + { + "file": "packages/react-icons-mdl2/src/components/CatIcon.tsx", + "hash": "1307423506134103033" + }, + { + "file": "packages/react-icons-mdl2/src/components/CellPhoneIcon.tsx", + "hash": "11744883050395067387" + }, + { + "file": "packages/react-icons-mdl2/src/components/CertificateIcon.tsx", + "hash": "11098577087768643512" + }, + { + "file": "packages/react-icons-mdl2/src/components/CertifiedDatabaseIcon.tsx", + "hash": "3268197506929327507" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChangeEntitlementsIcon.tsx", + "hash": "15952062856069144014" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChartIcon.tsx", + "hash": "18370750908098125836" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChartSeriesIcon.tsx", + "hash": "13748079417130253292" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChartTemplateIcon.tsx", + "hash": "5187461118188430376" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChartXAngleIcon.tsx", + "hash": "702266279550083036" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChartYAngleIcon.tsx", + "hash": "3018945442186707874" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChatBotIcon.tsx", + "hash": "18082123027226981785" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChatIcon.tsx", + "hash": "6946313934754875430" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChatInviteFriendIcon.tsx", + "hash": "1143757992597114980" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChatSolidIcon.tsx", + "hash": "17207532252608704526" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckListCheckIcon.tsx", + "hash": "13976979216990533746" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckListCheckMirroredIcon.tsx", + "hash": "2823743636131034514" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckListIcon.tsx", + "hash": "11788721469608473297" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckListTextIcon.tsx", + "hash": "14074386913156541324" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckListTextMirroredIcon.tsx", + "hash": "15363031630517891306" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckMarkIcon.tsx", + "hash": "17574435840898453412" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckboxCompositeIcon.tsx", + "hash": "3700817757984051146" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckboxCompositeReversedIcon.tsx", + "hash": "2417548281134889934" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckboxFillIcon.tsx", + "hash": "5705636971628196823" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckboxIcon.tsx", + "hash": "13025963719826327705" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckboxIndeterminateIcon.tsx", + "hash": "9025144963287070040" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckedOutByOther12Icon.tsx", + "hash": "7597136235526734925" + }, + { + "file": "packages/react-icons-mdl2/src/components/CheckedOutByYou12Icon.tsx", + "hash": "9202668097808352856" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronDownEnd6Icon.tsx", + "hash": "1506321891243306814" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronDownIcon.tsx", + "hash": "11856688968333907060" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronDownMedIcon.tsx", + "hash": "3739656185100519795" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronDownSmallIcon.tsx", + "hash": "3912213855241788999" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronFold10Icon.tsx", + "hash": "7741275830037417768" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronLeftEnd6Icon.tsx", + "hash": "10190919535291550235" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronLeftIcon.tsx", + "hash": "8188154068860645136" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronLeftMedIcon.tsx", + "hash": "12287503609853250159" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronLeftSmallIcon.tsx", + "hash": "4861024202375522754" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronRightEnd6Icon.tsx", + "hash": "1000325959569808691" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronRightIcon.tsx", + "hash": "7320161935500998060" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronRightMedIcon.tsx", + "hash": "15746619642856054936" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronRightSmallIcon.tsx", + "hash": "17577741214588845828" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronUnfold10Icon.tsx", + "hash": "5432534879181972370" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronUpEnd6Icon.tsx", + "hash": "17078105125300754063" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronUpIcon.tsx", + "hash": "17634438659387761604" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronUpMedIcon.tsx", + "hash": "4243233577030550262" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChevronUpSmallIcon.tsx", + "hash": "11900635987956573641" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChildofIcon.tsx", + "hash": "3083904410355819819" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChopsticksIcon.tsx", + "hash": "12625847592625114711" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChromeBackIcon.tsx", + "hash": "6919618187088778088" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChromeBackMirroredIcon.tsx", + "hash": "10591631473798040220" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChromeCloseIcon.tsx", + "hash": "16206970251003091389" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChromeFullScreenIcon.tsx", + "hash": "2062494960606940699" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChromeMinimizeIcon.tsx", + "hash": "17056646203191558710" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChromeRestoreIcon.tsx", + "hash": "225347269264565974" + }, + { + "file": "packages/react-icons-mdl2/src/components/ChronosLogoIcon.tsx", + "hash": "3449218141873443765" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleAdditionIcon.tsx", + "hash": "15650364575169129058" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleAdditionSolidIcon.tsx", + "hash": "17176571996376701633" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleFillIcon.tsx", + "hash": "635408020464104748" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleHalfFullIcon.tsx", + "hash": "13078515937468162613" + }, + { + "file": "packages/react-icons-mdl2/src/components/CirclePauseIcon.tsx", + "hash": "10423095171760345779" + }, + { + "file": "packages/react-icons-mdl2/src/components/CirclePauseSolidIcon.tsx", + "hash": "201342975848082306" + }, + { + "file": "packages/react-icons-mdl2/src/components/CirclePlusIcon.tsx", + "hash": "16048474883211561128" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleRingIcon.tsx", + "hash": "13932617260710316939" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleShapeIcon.tsx", + "hash": "10337641278022257801" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleShapeSolidIcon.tsx", + "hash": "5947548758375999968" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleStopIcon.tsx", + "hash": "1746423648542538736" + }, + { + "file": "packages/react-icons-mdl2/src/components/CircleStopSolidIcon.tsx", + "hash": "17837113459357032578" + }, + { + "file": "packages/react-icons-mdl2/src/components/CityNext2Icon.tsx", + "hash": "1763087302644378770" + }, + { + "file": "packages/react-icons-mdl2/src/components/CityNextIcon.tsx", + "hash": "5006818496716556497" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClearFilterIcon.tsx", + "hash": "18094972209246152564" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClearFormattingAIcon.tsx", + "hash": "7989722697092274864" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClearFormattingEraserIcon.tsx", + "hash": "12773764554699946939" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClearFormattingIcon.tsx", + "hash": "1502190740290008586" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClearIcon.tsx", + "hash": "17999460206231765560" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClearNightIcon.tsx", + "hash": "8981354330252798935" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClearSelectionIcon.tsx", + "hash": "8882426128133630838" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClearSelectionMirroredIcon.tsx", + "hash": "3689265543794296852" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClipboardListIcon.tsx", + "hash": "9949364234238621675" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClipboardListMirroredIcon.tsx", + "hash": "7507542986998954617" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClipboardSolidIcon.tsx", + "hash": "4016618141286983825" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClockIcon.tsx", + "hash": "7108679265632247294" + }, + { + "file": "packages/react-icons-mdl2/src/components/CloneToDesktopIcon.tsx", + "hash": "16300739152915666307" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClosePaneIcon.tsx", + "hash": "737646660074456284" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClosePaneMirroredIcon.tsx", + "hash": "12926614467006734660" + }, + { + "file": "packages/react-icons-mdl2/src/components/ClosedCaptionIcon.tsx", + "hash": "3551295924436979273" + }, + { + "file": "packages/react-icons-mdl2/src/components/CloudWeatherIcon.tsx", + "hash": "11576958249735124404" + }, + { + "file": "packages/react-icons-mdl2/src/components/CloudyIcon.tsx", + "hash": "17413852503268998504" + }, + { + "file": "packages/react-icons-mdl2/src/components/CocktailsIcon.tsx", + "hash": "18417245516501428895" + }, + { + "file": "packages/react-icons-mdl2/src/components/CodeEditIcon.tsx", + "hash": "17489331345713312538" + }, + { + "file": "packages/react-icons-mdl2/src/components/CodeIcon.tsx", + "hash": "14096608821262520464" + }, + { + "file": "packages/react-icons-mdl2/src/components/CoffeeIcon.tsx", + "hash": "8186344784075218361" + }, + { + "file": "packages/react-icons-mdl2/src/components/CoffeeScriptIcon.tsx", + "hash": "4585287023832242224" + }, + { + "file": "packages/react-icons-mdl2/src/components/CollapseContentIcon.tsx", + "hash": "2764738467455020992" + }, + { + "file": "packages/react-icons-mdl2/src/components/CollapseContentSingleIcon.tsx", + "hash": "7832927660457611682" + }, + { + "file": "packages/react-icons-mdl2/src/components/CollapseMenuIcon.tsx", + "hash": "15690932050925209701" + }, + { + "file": "packages/react-icons-mdl2/src/components/CollegeFootballIcon.tsx", + "hash": "2165529139282588287" + }, + { + "file": "packages/react-icons-mdl2/src/components/CollegeHoopsIcon.tsx", + "hash": "5971236503493505870" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColorIcon.tsx", + "hash": "12876084734020488421" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColorSolidIcon.tsx", + "hash": "8778203053351823905" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColumnIcon.tsx", + "hash": "14550024425629291177" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColumnLeftTwoThirdsEditIcon.tsx", + "hash": "4510690927811420875" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColumnLeftTwoThirdsIcon.tsx", + "hash": "10422959551643051765" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColumnOptionsIcon.tsx", + "hash": "11806481398288836965" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColumnRightTwoThirdsEditIcon.tsx", + "hash": "12696569162881326759" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColumnRightTwoThirdsIcon.tsx", + "hash": "7766809221375275712" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColumnVerticalSectionEditIcon.tsx", + "hash": "5193286935066942189" + }, + { + "file": "packages/react-icons-mdl2/src/components/ColumnVerticalSectionIcon.tsx", + "hash": "16260772812663125171" + }, + { + "file": "packages/react-icons-mdl2/src/components/CombineIcon.tsx", + "hash": "2646162695904339986" + }, + { + "file": "packages/react-icons-mdl2/src/components/ComboboxIcon.tsx", + "hash": "16457432093153970010" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommandPromptIcon.tsx", + "hash": "15673370497459872355" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommentActiveIcon.tsx", + "hash": "14547628466497745489" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommentAddIcon.tsx", + "hash": "7354878907854091305" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommentIcon.tsx", + "hash": "84187469314459891" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommentNextIcon.tsx", + "hash": "14934145650932481133" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommentPreviousIcon.tsx", + "hash": "11977205977425684281" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommentSolidIcon.tsx", + "hash": "8048573688429425426" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommentUrgentIcon.tsx", + "hash": "12154048446593945708" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommitmentsIcon.tsx", + "hash": "12777910001507088329" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommonDataServiceCDSIcon.tsx", + "hash": "10573383667002356640" + }, + { + "file": "packages/react-icons-mdl2/src/components/CommunicationsIcon.tsx", + "hash": "2616929262148546398" + }, + { + "file": "packages/react-icons-mdl2/src/components/CompanyDirectoryIcon.tsx", + "hash": "13229678923851993044" + }, + { + "file": "packages/react-icons-mdl2/src/components/CompanyDirectoryMirroredIcon.tsx", + "hash": "17662995171579934161" + }, + { + "file": "packages/react-icons-mdl2/src/components/CompareIcon.tsx", + "hash": "8908469758530488215" + }, + { + "file": "packages/react-icons-mdl2/src/components/CompareUnevenIcon.tsx", + "hash": "1166031646701734056" + }, + { + "file": "packages/react-icons-mdl2/src/components/CompassNWIcon.tsx", + "hash": "15545334371181703758" + }, + { + "file": "packages/react-icons-mdl2/src/components/CompletedIcon.tsx", + "hash": "13803484294149978788" + }, + { + "file": "packages/react-icons-mdl2/src/components/CompletedSolidIcon.tsx", + "hash": "13245474842797249698" + }, + { + "file": "packages/react-icons-mdl2/src/components/ComplianceAuditIcon.tsx", + "hash": "16180906599517909755" + }, + { + "file": "packages/react-icons-mdl2/src/components/ConfigurationSolidIcon.tsx", + "hash": "18029601955623297912" + }, + { + "file": "packages/react-icons-mdl2/src/components/ConnectContactsIcon.tsx", + "hash": "12318593344407479499" + }, + { + "file": "packages/react-icons-mdl2/src/components/ConnectVirtualMachineIcon.tsx", + "hash": "15465924176916549286" + }, + { + "file": "packages/react-icons-mdl2/src/components/ConstructionConeIcon.tsx", + "hash": "3273716421616658463" + }, + { + "file": "packages/react-icons-mdl2/src/components/ConstructionConeSolidIcon.tsx", + "hash": "586555395824016181" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactCardIcon.tsx", + "hash": "15211984991523126093" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactCardSettingsIcon.tsx", + "hash": "16272932285940802787" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactCardSettingsMirroredIcon.tsx", + "hash": "6977373102157537623" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactHeartIcon.tsx", + "hash": "7536220108992365098" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactIcon.tsx", + "hash": "18132497067285314627" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactInfoIcon.tsx", + "hash": "15701291551790808988" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactLinkIcon.tsx", + "hash": "7472781293705724966" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactListIcon.tsx", + "hash": "10816086027455427927" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContactLockIcon.tsx", + "hash": "2009772246809814970" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContentFeedIcon.tsx", + "hash": "17789668203001170336" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContentSettingsIcon.tsx", + "hash": "4091778186971523972" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContextMenuIcon.tsx", + "hash": "4889107644686224881" + }, + { + "file": "packages/react-icons-mdl2/src/components/ContrastIcon.tsx", + "hash": "7174159877536029563" + }, + { + "file": "packages/react-icons-mdl2/src/components/CopyEditIcon.tsx", + "hash": "15774444388513629603" + }, + { + "file": "packages/react-icons-mdl2/src/components/CopyIcon.tsx", + "hash": "10619559648487427597" + }, + { + "file": "packages/react-icons-mdl2/src/components/CottonIcon.tsx", + "hash": "18209531163290041460" + }, + { + "file": "packages/react-icons-mdl2/src/components/CouponIcon.tsx", + "hash": "3611873400401667095" + }, + { + "file": "packages/react-icons-mdl2/src/components/CreateMailRuleIcon.tsx", + "hash": "6571912614160142078" + }, + { + "file": "packages/react-icons-mdl2/src/components/CricketIcon.tsx", + "hash": "532957463090142947" + }, + { + "file": "packages/react-icons-mdl2/src/components/CropIcon.tsx", + "hash": "3165893832516880279" + }, + { + "file": "packages/react-icons-mdl2/src/components/CrownIcon.tsx", + "hash": "2168070742611806496" + }, + { + "file": "packages/react-icons-mdl2/src/components/CrownSolidIcon.tsx", + "hash": "1596557615099764967" + }, + { + "file": "packages/react-icons-mdl2/src/components/CubeShapeIcon.tsx", + "hash": "4069367604900402339" + }, + { + "file": "packages/react-icons-mdl2/src/components/CubeShapeSolidIcon.tsx", + "hash": "6848415574728862623" + }, + { + "file": "packages/react-icons-mdl2/src/components/CurrencyIcon.tsx", + "hash": "198131067017148195" + }, + { + "file": "packages/react-icons-mdl2/src/components/CustomListIcon.tsx", + "hash": "5133831396031101349" + }, + { + "file": "packages/react-icons-mdl2/src/components/CustomListMirroredIcon.tsx", + "hash": "7095106435472983257" + }, + { + "file": "packages/react-icons-mdl2/src/components/CustomizeToolbarIcon.tsx", + "hash": "6290254269650954141" + }, + { + "file": "packages/react-icons-mdl2/src/components/CutIcon.tsx", + "hash": "14916081014776173377" + }, + { + "file": "packages/react-icons-mdl2/src/components/CyclingIcon.tsx", + "hash": "13683378182102682960" + }, + { + "file": "packages/react-icons-mdl2/src/components/DOMIcon.tsx", + "hash": "12906128418122963318" + }, + { + "file": "packages/react-icons-mdl2/src/components/DRMIcon.tsx", + "hash": "4407261542633884651" + }, + { + "file": "packages/react-icons-mdl2/src/components/DashboardAddIcon.tsx", + "hash": "1539717290960865228" + }, + { + "file": "packages/react-icons-mdl2/src/components/DataConnectionLibraryIcon.tsx", + "hash": "14933785751434321440" + }, + { + "file": "packages/react-icons-mdl2/src/components/DataManagementSettingsIcon.tsx", + "hash": "6818008293843099093" + }, + { + "file": "packages/react-icons-mdl2/src/components/DatabaseIcon.tsx", + "hash": "11588229290270208748" + }, + { + "file": "packages/react-icons-mdl2/src/components/DatabaseSyncIcon.tsx", + "hash": "15094968328211527615" + }, + { + "file": "packages/react-icons-mdl2/src/components/DatabaseViewIcon.tsx", + "hash": "843483723858348348" + }, + { + "file": "packages/react-icons-mdl2/src/components/DataflowsIcon.tsx", + "hash": "8136763344477157282" + }, + { + "file": "packages/react-icons-mdl2/src/components/DataflowsLinkIcon.tsx", + "hash": "15298746876672502190" + }, + { + "file": "packages/react-icons-mdl2/src/components/DateTime12Icon.tsx", + "hash": "6627149704556179487" + }, + { + "file": "packages/react-icons-mdl2/src/components/DateTime2Icon.tsx", + "hash": "17375769868341167560" + }, + { + "file": "packages/react-icons-mdl2/src/components/DateTimeIcon.tsx", + "hash": "10442348742589426501" + }, + { + "file": "packages/react-icons-mdl2/src/components/DateTimeMirroredIcon.tsx", + "hash": "18073453778555505627" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeactivateOrdersIcon.tsx", + "hash": "6649839772695767699" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecimalsIcon.tsx", + "hash": "17081099173842890308" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecisionSolidIcon.tsx", + "hash": "17081738077200227352" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeclineCallIcon.tsx", + "hash": "452032942065278201" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecreaseIndentArrowIcon.tsx", + "hash": "13870574334268841884" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecreaseIndentArrowMirroredIcon.tsx", + "hash": "15011548357798424123" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecreaseIndentIcon.tsx", + "hash": "13065577369695178636" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecreaseIndentLegacyIcon.tsx", + "hash": "9104839253663370211" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecreaseIndentMirroredIcon.tsx", + "hash": "13014325612888836477" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecreaseIndentTextIcon.tsx", + "hash": "18373508170355261206" + }, + { + "file": "packages/react-icons-mdl2/src/components/DecreaseIndentTextMirroredIcon.tsx", + "hash": "2564754211783847726" + }, + { + "file": "packages/react-icons-mdl2/src/components/DefaultRatioIcon.tsx", + "hash": "738622148229922878" + }, + { + "file": "packages/react-icons-mdl2/src/components/DefectSolidIcon.tsx", + "hash": "16558742789062669957" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeleteColumnsIcon.tsx", + "hash": "6313488992643060020" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeleteIcon.tsx", + "hash": "10792912710594963359" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeleteRowsIcon.tsx", + "hash": "587318337482175522" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeleteRowsMirroredIcon.tsx", + "hash": "643304616330280781" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeleteTableIcon.tsx", + "hash": "12778033820978051742" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeliveryTruckIcon.tsx", + "hash": "7364374569024104758" + }, + { + "file": "packages/react-icons-mdl2/src/components/DependencyAddIcon.tsx", + "hash": "8354637014378472414" + }, + { + "file": "packages/react-icons-mdl2/src/components/DependencyRemoveIcon.tsx", + "hash": "1599367741390634032" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeployIcon.tsx", + "hash": "12556496360695971026" + }, + { + "file": "packages/react-icons-mdl2/src/components/DescendingIcon.tsx", + "hash": "8325601826213020045" + }, + { + "file": "packages/react-icons-mdl2/src/components/DesignIcon.tsx", + "hash": "1235725354522916293" + }, + { + "file": "packages/react-icons-mdl2/src/components/DesktopScreenshotIcon.tsx", + "hash": "16279311035412850738" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeveloperToolsIcon.tsx", + "hash": "5233866801892475567" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeviceBugIcon.tsx", + "hash": "4458294965863833774" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeviceOffIcon.tsx", + "hash": "2548122455670673767" + }, + { + "file": "packages/react-icons-mdl2/src/components/DeviceRunIcon.tsx", + "hash": "6663728061603578123" + }, + { + "file": "packages/react-icons-mdl2/src/components/Devices2Icon.tsx", + "hash": "13195787250915366201" + }, + { + "file": "packages/react-icons-mdl2/src/components/Devices3Icon.tsx", + "hash": "2195077419375007119" + }, + { + "file": "packages/react-icons-mdl2/src/components/Devices4Icon.tsx", + "hash": "9032833672927497181" + }, + { + "file": "packages/react-icons-mdl2/src/components/DiagnosticDataBarTooltipIcon.tsx", + "hash": "7308105095845127562" + }, + { + "file": "packages/react-icons-mdl2/src/components/DiagnosticIcon.tsx", + "hash": "3943560896905082647" + }, + { + "file": "packages/react-icons-mdl2/src/components/DialpadIcon.tsx", + "hash": "1595420172598995832" + }, + { + "file": "packages/react-icons-mdl2/src/components/DiamondIcon.tsx", + "hash": "15385166146377920364" + }, + { + "file": "packages/react-icons-mdl2/src/components/DiamondSolidIcon.tsx", + "hash": "13946867766219515064" + }, + { + "file": "packages/react-icons-mdl2/src/components/DictionaryIcon.tsx", + "hash": "12118255852228972890" + }, + { + "file": "packages/react-icons-mdl2/src/components/DictionaryRemoveIcon.tsx", + "hash": "13370862255201060675" + }, + { + "file": "packages/react-icons-mdl2/src/components/DietPlanNotebookIcon.tsx", + "hash": "3826030876867074456" + }, + { + "file": "packages/react-icons-mdl2/src/components/DiffInlineIcon.tsx", + "hash": "15011859094277716599" + }, + { + "file": "packages/react-icons-mdl2/src/components/DiffSideBySideIcon.tsx", + "hash": "178459671925869865" + }, + { + "file": "packages/react-icons-mdl2/src/components/DisableUpdatesIcon.tsx", + "hash": "16137860201828138151" + }, + { + "file": "packages/react-icons-mdl2/src/components/DisconnectVirtualMachineIcon.tsx", + "hash": "2930597107750432543" + }, + { + "file": "packages/react-icons-mdl2/src/components/DislikeIcon.tsx", + "hash": "18225817531545216062" + }, + { + "file": "packages/react-icons-mdl2/src/components/DislikeSolidIcon.tsx", + "hash": "14087480645264709742" + }, + { + "file": "packages/react-icons-mdl2/src/components/DistributeDownIcon.tsx", + "hash": "1548125120911779786" + }, + { + "file": "packages/react-icons-mdl2/src/components/DocLibraryIcon.tsx", + "hash": "11591439189986323684" + }, + { + "file": "packages/react-icons-mdl2/src/components/DockLeftIcon.tsx", + "hash": "16847431728497961728" + }, + { + "file": "packages/react-icons-mdl2/src/components/DockLeftMirroredIcon.tsx", + "hash": "15710463884680529297" + }, + { + "file": "packages/react-icons-mdl2/src/components/DockRightIcon.tsx", + "hash": "6658426372807392828" + }, + { + "file": "packages/react-icons-mdl2/src/components/DockerLogoIcon.tsx", + "hash": "356095859023745588" + }, + { + "file": "packages/react-icons-mdl2/src/components/DocumentApprovalIcon.tsx", + "hash": "1072757051443608965" + }, + { + "file": "packages/react-icons-mdl2/src/components/DocumentIcon.tsx", + "hash": "7350668992681437371" + }, + { + "file": "packages/react-icons-mdl2/src/components/DocumentManagementIcon.tsx", + "hash": "12832475181564272735" + }, + { + "file": "packages/react-icons-mdl2/src/components/DocumentReplyIcon.tsx", + "hash": "5580080027402339929" + }, + { + "file": "packages/react-icons-mdl2/src/components/DocumentSearchIcon.tsx", + "hash": "18194129163128018046" + }, + { + "file": "packages/react-icons-mdl2/src/components/DocumentSetIcon.tsx", + "hash": "13231352338473935499" + }, + { + "file": "packages/react-icons-mdl2/src/components/DocumentationIcon.tsx", + "hash": "1944399801209430445" + }, + { + "file": "packages/react-icons-mdl2/src/components/DonutChartIcon.tsx", + "hash": "6013093794290304399" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoorIcon.tsx", + "hash": "5093568903579292976" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleBookmarkIcon.tsx", + "hash": "580642304868621494" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronDown12Icon.tsx", + "hash": "17862630360870678403" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronDown8Icon.tsx", + "hash": "3718988317405081816" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronDownIcon.tsx", + "hash": "4060633296743134167" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeft12Icon.tsx", + "hash": "12129472693083176351" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeft8Icon.tsx", + "hash": "3479157522484228650" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeftIcon.tsx", + "hash": "5239193503131271211" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeftMedIcon.tsx", + "hash": "18421213284534102233" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeftMedMirroredIcon.tsx", + "hash": "14826784435274098125" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronRight12Icon.tsx", + "hash": "8787847077895803394" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronRight8Icon.tsx", + "hash": "5185405441418862327" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronRightIcon.tsx", + "hash": "4370086810030902255" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronUp12Icon.tsx", + "hash": "4319255572784241793" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronUp8Icon.tsx", + "hash": "3769547499968682415" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleChevronUpIcon.tsx", + "hash": "6295237240279208030" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleColumnEditIcon.tsx", + "hash": "338044593060043662" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleColumnIcon.tsx", + "hash": "4963904430013447512" + }, + { + "file": "packages/react-icons-mdl2/src/components/DoubleDownArrowIcon.tsx", + "hash": "12947437490613649800" + }, + { + "file": "packages/react-icons-mdl2/src/components/DownIcon.tsx", + "hash": "1830363173706684750" + }, + { + "file": "packages/react-icons-mdl2/src/components/DownloadDocumentIcon.tsx", + "hash": "1550953316812736269" + }, + { + "file": "packages/react-icons-mdl2/src/components/DownloadIcon.tsx", + "hash": "11905139494507468856" + }, + { + "file": "packages/react-icons-mdl2/src/components/DragObjectIcon.tsx", + "hash": "16313792608666370824" + }, + { + "file": "packages/react-icons-mdl2/src/components/DrillDownIcon.tsx", + "hash": "3192472893310371370" + }, + { + "file": "packages/react-icons-mdl2/src/components/DrillDownSolidIcon.tsx", + "hash": "17814311297808427278" + }, + { + "file": "packages/react-icons-mdl2/src/components/DrillExpandIcon.tsx", + "hash": "12023259070909879851" + }, + { + "file": "packages/react-icons-mdl2/src/components/DrillShowIcon.tsx", + "hash": "907855544090803318" + }, + { + "file": "packages/react-icons-mdl2/src/components/DrillThroughIcon.tsx", + "hash": "270564848319592953" + }, + { + "file": "packages/react-icons-mdl2/src/components/DriverOffIcon.tsx", + "hash": "2646796161699213401" + }, + { + "file": "packages/react-icons-mdl2/src/components/DropIcon.tsx", + "hash": "2500983101290595010" + }, + { + "file": "packages/react-icons-mdl2/src/components/DropShapeIcon.tsx", + "hash": "4656051841581653680" + }, + { + "file": "packages/react-icons-mdl2/src/components/DropShapeSolidIcon.tsx", + "hash": "3848711829998676861" + }, + { + "file": "packages/react-icons-mdl2/src/components/DropboxLogoIcon.tsx", + "hash": "9875714476061571" + }, + { + "file": "packages/react-icons-mdl2/src/components/DropdownIcon.tsx", + "hash": "3555689926512850428" + }, + { + "file": "packages/react-icons-mdl2/src/components/DuplicateRowIcon.tsx", + "hash": "13697707925593633752" + }, + { + "file": "packages/react-icons-mdl2/src/components/DuststormIcon.tsx", + "hash": "292901588076733830" + }, + { + "file": "packages/react-icons-mdl2/src/components/EMIIcon.tsx", + "hash": "7026920700117073739" + }, + { + "file": "packages/react-icons-mdl2/src/components/EatDrinkIcon.tsx", + "hash": "405852760394722860" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditContactIcon.tsx", + "hash": "1150372315902143826" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditCreateIcon.tsx", + "hash": "13907203705880503221" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditIcon.tsx", + "hash": "17431200438072034596" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditMailIcon.tsx", + "hash": "15970390906079408472" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditMirroredIcon.tsx", + "hash": "6262748336865108686" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditNoteIcon.tsx", + "hash": "1286799354555306996" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditPhotoIcon.tsx", + "hash": "661536436530324462" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditSolid12Icon.tsx", + "hash": "10589666406189014261" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditSolidMirrored12Icon.tsx", + "hash": "10665478881594893882" + }, + { + "file": "packages/react-icons-mdl2/src/components/EditStyleIcon.tsx", + "hash": "2678806848845973724" + }, + { + "file": "packages/react-icons-mdl2/src/components/EducationIcon.tsx", + "hash": "498702559917801758" + }, + { + "file": "packages/react-icons-mdl2/src/components/EgnyteLogoIcon.tsx", + "hash": "11787586365363039828" + }, + { + "file": "packages/react-icons-mdl2/src/components/EllipseIcon.tsx", + "hash": "7563388097856529345" + }, + { + "file": "packages/react-icons-mdl2/src/components/EmbedIcon.tsx", + "hash": "12421049566526858297" + }, + { + "file": "packages/react-icons-mdl2/src/components/Emoji2Icon.tsx", + "hash": "9632797341218035400" + }, + { + "file": "packages/react-icons-mdl2/src/components/EmojiDisappointedIcon.tsx", + "hash": "11292699018502769948" + }, + { + "file": "packages/react-icons-mdl2/src/components/EmojiIcon.tsx", + "hash": "3527785752414452552" + }, + { + "file": "packages/react-icons-mdl2/src/components/EmojiNeutralIcon.tsx", + "hash": "4832038927171425591" + }, + { + "file": "packages/react-icons-mdl2/src/components/EmojiTabSymbolsIcon.tsx", + "hash": "14052316026912103488" + }, + { + "file": "packages/react-icons-mdl2/src/components/EmptyRecycleBinIcon.tsx", + "hash": "14995044938165035199" + }, + { + "file": "packages/react-icons-mdl2/src/components/EncryptionIcon.tsx", + "hash": "15075199846642749840" + }, + { + "file": "packages/react-icons-mdl2/src/components/EndPointSolidIcon.tsx", + "hash": "3167677454794359558" + }, + { + "file": "packages/react-icons-mdl2/src/components/EngineeringGroupIcon.tsx", + "hash": "998933366201572470" + }, + { + "file": "packages/react-icons-mdl2/src/components/EntitlementPolicyIcon.tsx", + "hash": "1793133232166007266" + }, + { + "file": "packages/react-icons-mdl2/src/components/EntitlementRedemptionIcon.tsx", + "hash": "16842033997814526566" + }, + { + "file": "packages/react-icons-mdl2/src/components/EntryDeclineIcon.tsx", + "hash": "6195158794810210978" + }, + { + "file": "packages/react-icons-mdl2/src/components/EntryViewIcon.tsx", + "hash": "6340409500225097365" + }, + { + "file": "packages/react-icons-mdl2/src/components/EqualizerIcon.tsx", + "hash": "5020681445912180101" + }, + { + "file": "packages/react-icons-mdl2/src/components/EraseToolIcon.tsx", + "hash": "1207971189339545279" + }, + { + "file": "packages/react-icons-mdl2/src/components/ErrorBadgeIcon.tsx", + "hash": "8777689618958285548" + }, + { + "file": "packages/react-icons-mdl2/src/components/ErrorIcon.tsx", + "hash": "12165290586267258948" + }, + { + "file": "packages/react-icons-mdl2/src/components/Event12Icon.tsx", + "hash": "2431490381627945469" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventAcceptedIcon.tsx", + "hash": "5320856392963509965" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventDateIcon.tsx", + "hash": "13151646515665406908" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventDateMissed12Icon.tsx", + "hash": "6189471729333629318" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventDeclinedIcon.tsx", + "hash": "14114511301469755687" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventIcon.tsx", + "hash": "13625411325414082247" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventInfoIcon.tsx", + "hash": "1391354774988071725" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventTentativeIcon.tsx", + "hash": "11989511012280391708" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventTentativeMirroredIcon.tsx", + "hash": "1553750628165621737" + }, + { + "file": "packages/react-icons-mdl2/src/components/EventToDoLogoIcon.tsx", + "hash": "1732699839277899742" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExerciseTrackerIcon.tsx", + "hash": "11619246031913373899" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExpandMenuIcon.tsx", + "hash": "2883637658086310412" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExploreContentIcon.tsx", + "hash": "15939418160088449230" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExploreContentSingleIcon.tsx", + "hash": "1357890855973722731" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExploreDataIcon.tsx", + "hash": "13240326137614761264" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExportIcon.tsx", + "hash": "6176838404383274226" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExportMirroredIcon.tsx", + "hash": "17058149608204609598" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExternalBuildIcon.tsx", + "hash": "7805834724391293006" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExternalGitIcon.tsx", + "hash": "2979922376124883597" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExternalTFVCIcon.tsx", + "hash": "8770119390497201960" + }, + { + "file": "packages/react-icons-mdl2/src/components/ExternalXAMLIcon.tsx", + "hash": "14897169727878082254" + }, + { + "file": "packages/react-icons-mdl2/src/components/EyeShadowIcon.tsx", + "hash": "11547250779044996711" + }, + { + "file": "packages/react-icons-mdl2/src/components/EyedropperIcon.tsx", + "hash": "17489759088299487201" + }, + { + "file": "packages/react-icons-mdl2/src/components/F12DevToolsIcon.tsx", + "hash": "15795590193304864300" + }, + { + "file": "packages/react-icons-mdl2/src/components/FacebookLogoIcon.tsx", + "hash": "3945007834451489679" + }, + { + "file": "packages/react-icons-mdl2/src/components/FamilyIcon.tsx", + "hash": "1944465575896356847" + }, + { + "file": "packages/react-icons-mdl2/src/components/FangBodyIcon.tsx", + "hash": "17642602016488988479" + }, + { + "file": "packages/react-icons-mdl2/src/components/FastForwardEightXIcon.tsx", + "hash": "18178309367561894583" + }, + { + "file": "packages/react-icons-mdl2/src/components/FastForwardFourXIcon.tsx", + "hash": "6705881211608202785" + }, + { + "file": "packages/react-icons-mdl2/src/components/FastForwardIcon.tsx", + "hash": "16351946631805874388" + }, + { + "file": "packages/react-icons-mdl2/src/components/FastForwardOneFiveXIcon.tsx", + "hash": "9945217581225705551" + }, + { + "file": "packages/react-icons-mdl2/src/components/FastForwardOneXIcon.tsx", + "hash": "1275773114276841049" + }, + { + "file": "packages/react-icons-mdl2/src/components/FastForwardPointFiveXIcon.tsx", + "hash": "17652874859284714523" + }, + { + "file": "packages/react-icons-mdl2/src/components/FastForwardTwoXIcon.tsx", + "hash": "6288769981516574323" + }, + { + "file": "packages/react-icons-mdl2/src/components/FastModeIcon.tsx", + "hash": "8565396335278143488" + }, + { + "file": "packages/react-icons-mdl2/src/components/FaviconIcon.tsx", + "hash": "12942536079808820041" + }, + { + "file": "packages/react-icons-mdl2/src/components/FavoriteListIcon.tsx", + "hash": "12205614405595495904" + }, + { + "file": "packages/react-icons-mdl2/src/components/FavoriteStarFillIcon.tsx", + "hash": "11957377664756637903" + }, + { + "file": "packages/react-icons-mdl2/src/components/FavoriteStarIcon.tsx", + "hash": "276723320467206854" + }, + { + "file": "packages/react-icons-mdl2/src/components/FaxIcon.tsx", + "hash": "15174575052554189774" + }, + { + "file": "packages/react-icons-mdl2/src/components/FeedbackIcon.tsx", + "hash": "14179107003696613703" + }, + { + "file": "packages/react-icons-mdl2/src/components/FeedbackRequestMirroredSolidIcon.tsx", + "hash": "6167066386013211705" + }, + { + "file": "packages/react-icons-mdl2/src/components/FeedbackRequestSolidIcon.tsx", + "hash": "11345199070943455551" + }, + { + "file": "packages/react-icons-mdl2/src/components/FeedbackResponseSolidIcon.tsx", + "hash": "844989139249440000" + }, + { + "file": "packages/react-icons-mdl2/src/components/FerryIcon.tsx", + "hash": "3927782908157924236" + }, + { + "file": "packages/react-icons-mdl2/src/components/FerrySolidIcon.tsx", + "hash": "16922795746977067197" + }, + { + "file": "packages/react-icons-mdl2/src/components/FieldChangedIcon.tsx", + "hash": "6362867984287681842" + }, + { + "file": "packages/react-icons-mdl2/src/components/FieldEmptyIcon.tsx", + "hash": "12951541487822180241" + }, + { + "file": "packages/react-icons-mdl2/src/components/FieldFilledIcon.tsx", + "hash": "2829813208719522960" + }, + { + "file": "packages/react-icons-mdl2/src/components/FieldNotChangedIcon.tsx", + "hash": "9143517295368689068" + }, + { + "file": "packages/react-icons-mdl2/src/components/FieldReadOnlyIcon.tsx", + "hash": "1383806378416658822" + }, + { + "file": "packages/react-icons-mdl2/src/components/FieldRequiredIcon.tsx", + "hash": "9874506948980735455" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileASPXIcon.tsx", + "hash": "6895839686502133855" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileBugIcon.tsx", + "hash": "7640769980279416101" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileCSSIcon.tsx", + "hash": "1050684036460858812" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileCodeIcon.tsx", + "hash": "16719505228843895462" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileCommentIcon.tsx", + "hash": "606968050369362343" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileHTMLIcon.tsx", + "hash": "765214480847777695" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileImageIcon.tsx", + "hash": "4844641701165238743" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileJAVAIcon.tsx", + "hash": "4450722937973378228" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileLessIcon.tsx", + "hash": "8881253924066945591" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileOffIcon.tsx", + "hash": "9345742102333117451" + }, + { + "file": "packages/react-icons-mdl2/src/components/FilePDBIcon.tsx", + "hash": "5282290141971118284" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileRequestIcon.tsx", + "hash": "7269778805807155600" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileSQLIcon.tsx", + "hash": "4971825357918078797" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileSassIcon.tsx", + "hash": "6262095417547644767" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileSymlinkIcon.tsx", + "hash": "6888643214960891177" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileSystemIcon.tsx", + "hash": "4586503443833768744" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileTemplateIcon.tsx", + "hash": "102524233678650" + }, + { + "file": "packages/react-icons-mdl2/src/components/FileYMLIcon.tsx", + "hash": "7373943771233632903" + }, + { + "file": "packages/react-icons-mdl2/src/components/FilterAscendingIcon.tsx", + "hash": "7986231996921620159" + }, + { + "file": "packages/react-icons-mdl2/src/components/FilterDescendingIcon.tsx", + "hash": "9036833625296158708" + }, + { + "file": "packages/react-icons-mdl2/src/components/FilterIcon.tsx", + "hash": "15632557997728755643" + }, + { + "file": "packages/react-icons-mdl2/src/components/FilterSettingsIcon.tsx", + "hash": "18384344814770433702" + }, + { + "file": "packages/react-icons-mdl2/src/components/FilterSolidIcon.tsx", + "hash": "16527487026441098924" + }, + { + "file": "packages/react-icons-mdl2/src/components/FiltersIcon.tsx", + "hash": "17788291567474260736" + }, + { + "file": "packages/react-icons-mdl2/src/components/FiltersSolidIcon.tsx", + "hash": "2955836481941787615" + }, + { + "file": "packages/react-icons-mdl2/src/components/FinancialIcon.tsx", + "hash": "6417373302479088294" + }, + { + "file": "packages/react-icons-mdl2/src/components/FinancialMirroredSolidIcon.tsx", + "hash": "12472787632715591727" + }, + { + "file": "packages/react-icons-mdl2/src/components/FinancialSolidIcon.tsx", + "hash": "16759164632230079118" + }, + { + "file": "packages/react-icons-mdl2/src/components/FingerprintIcon.tsx", + "hash": "1814464459187160317" + }, + { + "file": "packages/react-icons-mdl2/src/components/FitPageIcon.tsx", + "hash": "18087310676152160539" + }, + { + "file": "packages/react-icons-mdl2/src/components/FitWidthIcon.tsx", + "hash": "3330934962504444846" + }, + { + "file": "packages/react-icons-mdl2/src/components/FiveTileGridIcon.tsx", + "hash": "4303387150744159805" + }, + { + "file": "packages/react-icons-mdl2/src/components/FixedAssetManagementIcon.tsx", + "hash": "4450397116994178154" + }, + { + "file": "packages/react-icons-mdl2/src/components/FixedColumnWidthIcon.tsx", + "hash": "1282486324231742294" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlagIcon.tsx", + "hash": "1404061495096326413" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlameSolidIcon.tsx", + "hash": "1580665274438723795" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlashAutoIcon.tsx", + "hash": "6815009142415122429" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlashOffIcon.tsx", + "hash": "6505550303339807125" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlashlightIcon.tsx", + "hash": "3477643417563353345" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlickDownIcon.tsx", + "hash": "3353038571830785712" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlickLeftIcon.tsx", + "hash": "15950772530127709782" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlickRightIcon.tsx", + "hash": "10771208732872140808" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlickUpIcon.tsx", + "hash": "8892451043636875937" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlowChartIcon.tsx", + "hash": "226511449971238124" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlowIcon.tsx", + "hash": "1235278112582679794" + }, + { + "file": "packages/react-icons-mdl2/src/components/FlowerIcon.tsx", + "hash": "4427719849604199650" + }, + { + "file": "packages/react-icons-mdl2/src/components/FocalPointIcon.tsx", + "hash": "15911317157455942097" + }, + { + "file": "packages/react-icons-mdl2/src/components/FocusIcon.tsx", + "hash": "5539639720883062777" + }, + { + "file": "packages/react-icons-mdl2/src/components/FocusViewIcon.tsx", + "hash": "3939117956871096782" + }, + { + "file": "packages/react-icons-mdl2/src/components/FogIcon.tsx", + "hash": "1980192386355863521" + }, + { + "file": "packages/react-icons-mdl2/src/components/FolderFillIcon.tsx", + "hash": "9389817415866479663" + }, + { + "file": "packages/react-icons-mdl2/src/components/FolderHorizontalIcon.tsx", + "hash": "6956772245809174415" + }, + { + "file": "packages/react-icons-mdl2/src/components/FolderIcon.tsx", + "hash": "1712208359337412229" + }, + { + "file": "packages/react-icons-mdl2/src/components/FolderListIcon.tsx", + "hash": "9551306821671813083" + }, + { + "file": "packages/react-icons-mdl2/src/components/FolderListMirroredIcon.tsx", + "hash": "9938125311101616247" + }, + { + "file": "packages/react-icons-mdl2/src/components/FolderOpenIcon.tsx", + "hash": "16236857408621192617" + }, + { + "file": "packages/react-icons-mdl2/src/components/FolderQueryIcon.tsx", + "hash": "757534951338790000" + }, + { + "file": "packages/react-icons-mdl2/src/components/FolderSearchIcon.tsx", + "hash": "15912130893073646850" + }, + { + "file": "packages/react-icons-mdl2/src/components/FollowUserIcon.tsx", + "hash": "6727622312615324985" + }, + { + "file": "packages/react-icons-mdl2/src/components/FontColorAIcon.tsx", + "hash": "11470237927172903368" + }, + { + "file": "packages/react-icons-mdl2/src/components/FontColorIcon.tsx", + "hash": "15275041937967336194" + }, + { + "file": "packages/react-icons-mdl2/src/components/FontColorSwatchIcon.tsx", + "hash": "12200134352683161273" + }, + { + "file": "packages/react-icons-mdl2/src/components/FontDecreaseIcon.tsx", + "hash": "13742892961586592786" + }, + { + "file": "packages/react-icons-mdl2/src/components/FontIcon.tsx", + "hash": "13724598167896502006" + }, + { + "file": "packages/react-icons-mdl2/src/components/FontIncreaseIcon.tsx", + "hash": "11026524880036930460" + }, + { + "file": "packages/react-icons-mdl2/src/components/FontSize2Icon.tsx", + "hash": "17809756178006834445" + }, + { + "file": "packages/react-icons-mdl2/src/components/FontSizeIcon.tsx", + "hash": "5696547717711169794" + }, + { + "file": "packages/react-icons-mdl2/src/components/FooterIcon.tsx", + "hash": "2763034011155046097" + }, + { + "file": "packages/react-icons-mdl2/src/components/FormLibraryIcon.tsx", + "hash": "16894238111626919263" + }, + { + "file": "packages/react-icons-mdl2/src/components/FormLibraryMirroredIcon.tsx", + "hash": "1164345260899139517" + }, + { + "file": "packages/react-icons-mdl2/src/components/FormatPainterIcon.tsx", + "hash": "15912854457010730699" + }, + { + "file": "packages/react-icons-mdl2/src/components/ForumIcon.tsx", + "hash": "14594499032992496602" + }, + { + "file": "packages/react-icons-mdl2/src/components/ForwardEventIcon.tsx", + "hash": "12838663604244959435" + }, + { + "file": "packages/react-icons-mdl2/src/components/ForwardIcon.tsx", + "hash": "8618057237755943493" + }, + { + "file": "packages/react-icons-mdl2/src/components/FreezingIcon.tsx", + "hash": "7147821662650477276" + }, + { + "file": "packages/react-icons-mdl2/src/components/FrigidIcon.tsx", + "hash": "9172736073466509726" + }, + { + "file": "packages/react-icons-mdl2/src/components/FrontCameraIcon.tsx", + "hash": "7890552227182908605" + }, + { + "file": "packages/react-icons-mdl2/src/components/FullCircleMaskIcon.tsx", + "hash": "4033135983242084915" + }, + { + "file": "packages/react-icons-mdl2/src/components/FullHistoryIcon.tsx", + "hash": "12488798171462511493" + }, + { + "file": "packages/react-icons-mdl2/src/components/FullScreenIcon.tsx", + "hash": "12958098732161905706" + }, + { + "file": "packages/react-icons-mdl2/src/components/FullViewIcon.tsx", + "hash": "5235475494113882152" + }, + { + "file": "packages/react-icons-mdl2/src/components/FullWidthEditIcon.tsx", + "hash": "5465637594615076102" + }, + { + "file": "packages/react-icons-mdl2/src/components/FullWidthIcon.tsx", + "hash": "15366904044629970765" + }, + { + "file": "packages/react-icons-mdl2/src/components/FunctionalManagerDashboardIcon.tsx", + "hash": "12203260525418953853" + }, + { + "file": "packages/react-icons-mdl2/src/components/FunnelChartIcon.tsx", + "hash": "10790643609584269218" + }, + { + "file": "packages/react-icons-mdl2/src/components/GIFIcon.tsx", + "hash": "9632731809471011174" + }, + { + "file": "packages/react-icons-mdl2/src/components/GUIDIcon.tsx", + "hash": "15534661867014684872" + }, + { + "file": "packages/react-icons-mdl2/src/components/GameIcon.tsx", + "hash": "15746196390646228787" + }, + { + "file": "packages/react-icons-mdl2/src/components/GatherIcon.tsx", + "hash": "15848159200387148602" + }, + { + "file": "packages/react-icons-mdl2/src/components/GenerateIcon.tsx", + "hash": "8156502823136479518" + }, + { + "file": "packages/react-icons-mdl2/src/components/GenericScanFilledIcon.tsx", + "hash": "11097470524340453746" + }, + { + "file": "packages/react-icons-mdl2/src/components/GenericScanIcon.tsx", + "hash": "5566996355092293666" + }, + { + "file": "packages/react-icons-mdl2/src/components/GiftBoxSolidIcon.tsx", + "hash": "7571481021195839227" + }, + { + "file": "packages/react-icons-mdl2/src/components/GiftCardIcon.tsx", + "hash": "2807842151596238352" + }, + { + "file": "packages/react-icons-mdl2/src/components/GiftboxIcon.tsx", + "hash": "17845510496809357564" + }, + { + "file": "packages/react-icons-mdl2/src/components/GiftboxOpenIcon.tsx", + "hash": "14201350368078001710" + }, + { + "file": "packages/react-icons-mdl2/src/components/GitForkIcon.tsx", + "hash": "16940210332522310039" + }, + { + "file": "packages/react-icons-mdl2/src/components/GitGraphIcon.tsx", + "hash": "16374940073848176332" + }, + { + "file": "packages/react-icons-mdl2/src/components/GitHubLogoIcon.tsx", + "hash": "11928675214469758864" + }, + { + "file": "packages/react-icons-mdl2/src/components/GitLogoIcon.tsx", + "hash": "11522156507346313112" + }, + { + "file": "packages/react-icons-mdl2/src/components/GlassesIcon.tsx", + "hash": "8565278624735671618" + }, + { + "file": "packages/react-icons-mdl2/src/components/GlimmerIcon.tsx", + "hash": "10243000354255117688" + }, + { + "file": "packages/react-icons-mdl2/src/components/GlobalNavButtonActiveIcon.tsx", + "hash": "565660960618390405" + }, + { + "file": "packages/react-icons-mdl2/src/components/GlobalNavButtonIcon.tsx", + "hash": "9326193492154063760" + }, + { + "file": "packages/react-icons-mdl2/src/components/Globe2Icon.tsx", + "hash": "14479270011036253116" + }, + { + "file": "packages/react-icons-mdl2/src/components/GlobeFavoriteIcon.tsx", + "hash": "6439401632011068110" + }, + { + "file": "packages/react-icons-mdl2/src/components/GlobeIcon.tsx", + "hash": "13412169222349203733" + }, + { + "file": "packages/react-icons-mdl2/src/components/GoIcon.tsx", + "hash": "3851795450163977084" + }, + { + "file": "packages/react-icons-mdl2/src/components/GoMirroredIcon.tsx", + "hash": "10247853145577366265" + }, + { + "file": "packages/react-icons-mdl2/src/components/GoToDashboardIcon.tsx", + "hash": "15740169657036959208" + }, + { + "file": "packages/react-icons-mdl2/src/components/GolfIcon.tsx", + "hash": "10545511422697821400" + }, + { + "file": "packages/react-icons-mdl2/src/components/GoogleDriveLogoBottomBlueIcon.tsx", + "hash": "3001119224492718906" + }, + { + "file": "packages/react-icons-mdl2/src/components/GoogleDriveLogoIcon.tsx", + "hash": "18004521176360559242" + }, + { + "file": "packages/react-icons-mdl2/src/components/GoogleDriveLogoLeftGreenIcon.tsx", + "hash": "14815230303350470687" + }, + { + "file": "packages/react-icons-mdl2/src/components/GoogleDriveLogoRightYellowIcon.tsx", + "hash": "17655187547932670362" + }, + { + "file": "packages/react-icons-mdl2/src/components/GotoTodayIcon.tsx", + "hash": "11786306560619474198" + }, + { + "file": "packages/react-icons-mdl2/src/components/GradleLogo32Icon.tsx", + "hash": "5235762091848188661" + }, + { + "file": "packages/react-icons-mdl2/src/components/GreetingCardIcon.tsx", + "hash": "2652324495810548652" + }, + { + "file": "packages/react-icons-mdl2/src/components/GridViewLargeIcon.tsx", + "hash": "7773270874283410534" + }, + { + "file": "packages/react-icons-mdl2/src/components/GridViewMediumIcon.tsx", + "hash": "11534935878292624677" + }, + { + "file": "packages/react-icons-mdl2/src/components/GridViewSmallIcon.tsx", + "hash": "12237242453908160281" + }, + { + "file": "packages/react-icons-mdl2/src/components/GripperBarHorizontalIcon.tsx", + "hash": "6308142595012791984" + }, + { + "file": "packages/react-icons-mdl2/src/components/GripperBarVerticalIcon.tsx", + "hash": "7470598359065919341" + }, + { + "file": "packages/react-icons-mdl2/src/components/GripperDotsVerticalIcon.tsx", + "hash": "15307366740827741066" + }, + { + "file": "packages/react-icons-mdl2/src/components/GripperToolIcon.tsx", + "hash": "716840007844796444" + }, + { + "file": "packages/react-icons-mdl2/src/components/GroupIcon.tsx", + "hash": "13608367865003462107" + }, + { + "file": "packages/react-icons-mdl2/src/components/GroupListIcon.tsx", + "hash": "6518290500881406538" + }, + { + "file": "packages/react-icons-mdl2/src/components/GroupObjectIcon.tsx", + "hash": "1586879418830404806" + }, + { + "file": "packages/react-icons-mdl2/src/components/GroupedAscendingIcon.tsx", + "hash": "6856150591813394404" + }, + { + "file": "packages/react-icons-mdl2/src/components/GroupedDescendingIcon.tsx", + "hash": "13375481586542023244" + }, + { + "file": "packages/react-icons-mdl2/src/components/GroupedListIcon.tsx", + "hash": "7376169769524108343" + }, + { + "file": "packages/react-icons-mdl2/src/components/GuitarIcon.tsx", + "hash": "17314515334492037841" + }, + { + "file": "packages/react-icons-mdl2/src/components/HailDayIcon.tsx", + "hash": "12947649342042611772" + }, + { + "file": "packages/react-icons-mdl2/src/components/HailNightIcon.tsx", + "hash": "18391447311035016800" + }, + { + "file": "packages/react-icons-mdl2/src/components/HalfAlphaIcon.tsx", + "hash": "6922565485971119060" + }, + { + "file": "packages/react-icons-mdl2/src/components/HalfCircleIcon.tsx", + "hash": "2897520889126335567" + }, + { + "file": "packages/react-icons-mdl2/src/components/HandsFreeIcon.tsx", + "hash": "11239064513804798904" + }, + { + "file": "packages/react-icons-mdl2/src/components/HandwritingIcon.tsx", + "hash": "15421536123762955104" + }, + { + "file": "packages/react-icons-mdl2/src/components/HardDriveGroupIcon.tsx", + "hash": "7633148961616627245" + }, + { + "file": "packages/react-icons-mdl2/src/components/HardDriveIcon.tsx", + "hash": "5939750842377694100" + }, + { + "file": "packages/react-icons-mdl2/src/components/HardDriveLockIcon.tsx", + "hash": "17656948361291404624" + }, + { + "file": "packages/react-icons-mdl2/src/components/HardDriveUnlockIcon.tsx", + "hash": "8004000311676833368" + }, + { + "file": "packages/react-icons-mdl2/src/components/Header1Icon.tsx", + "hash": "8351749191063511306" + }, + { + "file": "packages/react-icons-mdl2/src/components/Header2Icon.tsx", + "hash": "5390568727727418817" + }, + { + "file": "packages/react-icons-mdl2/src/components/Header3Icon.tsx", + "hash": "840488768817872929" + }, + { + "file": "packages/react-icons-mdl2/src/components/Header4Icon.tsx", + "hash": "14967090543487683017" + }, + { + "file": "packages/react-icons-mdl2/src/components/HeaderIcon.tsx", + "hash": "2899809964069853826" + }, + { + "file": "packages/react-icons-mdl2/src/components/HeadsetIcon.tsx", + "hash": "1913138919122316805" + }, + { + "file": "packages/react-icons-mdl2/src/components/HeadsetSolidIcon.tsx", + "hash": "1680033626700166228" + }, + { + "file": "packages/react-icons-mdl2/src/components/HealthIcon.tsx", + "hash": "14799223708863617884" + }, + { + "file": "packages/react-icons-mdl2/src/components/HealthRefreshIcon.tsx", + "hash": "14799706733515662794" + }, + { + "file": "packages/react-icons-mdl2/src/components/HealthSolidIcon.tsx", + "hash": "15046539076256353862" + }, + { + "file": "packages/react-icons-mdl2/src/components/HeartBrokenIcon.tsx", + "hash": "1070767128146372350" + }, + { + "file": "packages/react-icons-mdl2/src/components/HeartFillIcon.tsx", + "hash": "2370001366264079587" + }, + { + "file": "packages/react-icons-mdl2/src/components/HeartIcon.tsx", + "hash": "14890364970617740611" + }, + { + "file": "packages/react-icons-mdl2/src/components/HelpIcon.tsx", + "hash": "17388551513070667300" + }, + { + "file": "packages/react-icons-mdl2/src/components/HelpMirroredIcon.tsx", + "hash": "8186137454020037762" + }, + { + "file": "packages/react-icons-mdl2/src/components/HexaditeInvestigationCancelIcon.tsx", + "hash": "8670293296701721833" + }, + { + "file": "packages/react-icons-mdl2/src/components/HexaditeInvestigationIcon.tsx", + "hash": "14080127459799947212" + }, + { + "file": "packages/react-icons-mdl2/src/components/HexaditeInvestigationSemiAutoIcon.tsx", + "hash": "10609077070546900329" + }, + { + "file": "packages/react-icons-mdl2/src/components/HexagonIcon.tsx", + "hash": "3897459486326302618" + }, + { + "file": "packages/react-icons-mdl2/src/components/Hide2Icon.tsx", + "hash": "5182329091472537173" + }, + { + "file": "packages/react-icons-mdl2/src/components/Hide3Icon.tsx", + "hash": "2906922485346461460" + }, + { + "file": "packages/react-icons-mdl2/src/components/HideIcon.tsx", + "hash": "12862215902863030841" + }, + { + "file": "packages/react-icons-mdl2/src/components/HighlightIcon.tsx", + "hash": "15762583331867575297" + }, + { + "file": "packages/react-icons-mdl2/src/components/HighlightMappedShapesIcon.tsx", + "hash": "16132141732380379547" + }, + { + "file": "packages/react-icons-mdl2/src/components/HintTextIcon.tsx", + "hash": "4279486080758729787" + }, + { + "file": "packages/react-icons-mdl2/src/components/HistoricalWeatherIcon.tsx", + "hash": "13818466974725287815" + }, + { + "file": "packages/react-icons-mdl2/src/components/HistoryIcon.tsx", + "hash": "16030330658754714190" + }, + { + "file": "packages/react-icons-mdl2/src/components/HomeDropdownIcon.tsx", + "hash": "2488444561259964042" + }, + { + "file": "packages/react-icons-mdl2/src/components/HomeGroupIcon.tsx", + "hash": "14908559223308932072" + }, + { + "file": "packages/react-icons-mdl2/src/components/HomeIcon.tsx", + "hash": "12724622983047291653" + }, + { + "file": "packages/react-icons-mdl2/src/components/HomeSolidIcon.tsx", + "hash": "11148478484135002227" + }, + { + "file": "packages/react-icons-mdl2/src/components/HomeVerifyIcon.tsx", + "hash": "15066446849328693732" + }, + { + "file": "packages/react-icons-mdl2/src/components/HorizontalDistributeCenterIcon.tsx", + "hash": "13579758295283409353" + }, + { + "file": "packages/react-icons-mdl2/src/components/HorizontalTabKeyIcon.tsx", + "hash": "2735500143879888466" + }, + { + "file": "packages/react-icons-mdl2/src/components/HospitalIcon.tsx", + "hash": "16954429495584924657" + }, + { + "file": "packages/react-icons-mdl2/src/components/HotelIcon.tsx", + "hash": "1602330941386012729" + }, + { + "file": "packages/react-icons-mdl2/src/components/HourGlassIcon.tsx", + "hash": "3191346496426536019" + }, + { + "file": "packages/react-icons-mdl2/src/components/IDBadgeIcon.tsx", + "hash": "897528330211741886" + }, + { + "file": "packages/react-icons-mdl2/src/components/IOTIcon.tsx", + "hash": "5285884083806935808" + }, + { + "file": "packages/react-icons-mdl2/src/components/IRMForwardIcon.tsx", + "hash": "362575832829977312" + }, + { + "file": "packages/react-icons-mdl2/src/components/IRMForwardMirroredIcon.tsx", + "hash": "13155918519999883784" + }, + { + "file": "packages/react-icons-mdl2/src/components/IRMReplyIcon.tsx", + "hash": "13947164312188832822" + }, + { + "file": "packages/react-icons-mdl2/src/components/IRMReplyMirroredIcon.tsx", + "hash": "1145353507746735981" + }, + { + "file": "packages/react-icons-mdl2/src/components/IconSetsFlagIcon.tsx", + "hash": "15214257063406701202" + }, + { + "file": "packages/react-icons-mdl2/src/components/IgnoreConversationIcon.tsx", + "hash": "9335776128620278432" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImageCrosshairIcon.tsx", + "hash": "5138187599671604052" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImageDiffIcon.tsx", + "hash": "13599864074318182656" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImageInARIcon.tsx", + "hash": "13855592006667470306" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImagePixelIcon.tsx", + "hash": "9154411159137130252" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImageSearchIcon.tsx", + "hash": "9041697212803531685" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImportAllMirroredIcon.tsx", + "hash": "3025801446152077118" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImportIcon.tsx", + "hash": "13040661219662628437" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImportMirroredIcon.tsx", + "hash": "12908089643626136740" + }, + { + "file": "packages/react-icons-mdl2/src/components/ImportantIcon.tsx", + "hash": "7826677808925451366" + }, + { + "file": "packages/react-icons-mdl2/src/components/InboxCheckIcon.tsx", + "hash": "13209492309610537868" + }, + { + "file": "packages/react-icons-mdl2/src/components/InboxIcon.tsx", + "hash": "16589216967091416154" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncidentTriangleIcon.tsx", + "hash": "9235238053814830523" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncomingCallIcon.tsx", + "hash": "4007250706804841898" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentArrowIcon.tsx", + "hash": "5427824453044875567" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentArrowMirroredIcon.tsx", + "hash": "16626271714978007440" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentHangingIcon.tsx", + "hash": "3186950272609104279" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentHangingMirroredIcon.tsx", + "hash": "9996178347351637205" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentIcon.tsx", + "hash": "9678011342676446086" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentLegacyIcon.tsx", + "hash": "13386453491918711782" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentMirroredIcon.tsx", + "hash": "1303278817606075548" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentTextIcon.tsx", + "hash": "9430603589597575034" + }, + { + "file": "packages/react-icons-mdl2/src/components/IncreaseIndentTextMirroredIcon.tsx", + "hash": "6756712163376617801" + }, + { + "file": "packages/react-icons-mdl2/src/components/IndentFirstLineIcon.tsx", + "hash": "370488840276189328" + }, + { + "file": "packages/react-icons-mdl2/src/components/Info2Icon.tsx", + "hash": "14020597724569194775" + }, + { + "file": "packages/react-icons-mdl2/src/components/InfoIcon.tsx", + "hash": "3721390302452091834" + }, + { + "file": "packages/react-icons-mdl2/src/components/InfoSolidIcon.tsx", + "hash": "2432153378739515036" + }, + { + "file": "packages/react-icons-mdl2/src/components/InformationBarriersIcon.tsx", + "hash": "8696582436277744629" + }, + { + "file": "packages/react-icons-mdl2/src/components/InkingToolIcon.tsx", + "hash": "11459756636301925682" + }, + { + "file": "packages/react-icons-mdl2/src/components/InputAddressIcon.tsx", + "hash": "13812358188248488657" + }, + { + "file": "packages/react-icons-mdl2/src/components/InsertColumnsLeftIcon.tsx", + "hash": "13708775557086203284" + }, + { + "file": "packages/react-icons-mdl2/src/components/InsertColumnsRightIcon.tsx", + "hash": "11557471302491603282" + }, + { + "file": "packages/react-icons-mdl2/src/components/InsertIcon.tsx", + "hash": "12107165173487530471" + }, + { + "file": "packages/react-icons-mdl2/src/components/InsertRowsAboveIcon.tsx", + "hash": "13485979422068241069" + }, + { + "file": "packages/react-icons-mdl2/src/components/InsertRowsBelowIcon.tsx", + "hash": "5877492448004420133" + }, + { + "file": "packages/react-icons-mdl2/src/components/InsertSignatureLineIcon.tsx", + "hash": "12840188565611841260" + }, + { + "file": "packages/react-icons-mdl2/src/components/InsertTextBoxIcon.tsx", + "hash": "879948278558379041" + }, + { + "file": "packages/react-icons-mdl2/src/components/InsightsIcon.tsx", + "hash": "15701471209360575195" + }, + { + "file": "packages/react-icons-mdl2/src/components/InstallToDriveIcon.tsx", + "hash": "1266954311457013518" + }, + { + "file": "packages/react-icons-mdl2/src/components/InstallationIcon.tsx", + "hash": "168933430430857110" + }, + { + "file": "packages/react-icons-mdl2/src/components/InternalInvestigationIcon.tsx", + "hash": "14733996250043645076" + }, + { + "file": "packages/react-icons-mdl2/src/components/InternetSharingIcon.tsx", + "hash": "231211082630324067" + }, + { + "file": "packages/react-icons-mdl2/src/components/IssueSolidIcon.tsx", + "hash": "10205135659021210842" + }, + { + "file": "packages/react-icons-mdl2/src/components/IssueTrackingIcon.tsx", + "hash": "13078163167098961521" + }, + { + "file": "packages/react-icons-mdl2/src/components/IssueTrackingMirroredIcon.tsx", + "hash": "6853285071464396522" + }, + { + "file": "packages/react-icons-mdl2/src/components/ItalicIcon.tsx", + "hash": "10688617757439753808" + }, + { + "file": "packages/react-icons-mdl2/src/components/JSIcon.tsx", + "hash": "7001057569749280823" + }, + { + "file": "packages/react-icons-mdl2/src/components/JavaLogoIcon.tsx", + "hash": "12341234154489462799" + }, + { + "file": "packages/react-icons-mdl2/src/components/JavaScriptLanguageIcon.tsx", + "hash": "2734361147194257907" + }, + { + "file": "packages/react-icons-mdl2/src/components/JenkinsLogoIcon.tsx", + "hash": "2671724868545436197" + }, + { + "file": "packages/react-icons-mdl2/src/components/JoinOnlineMeetingIcon.tsx", + "hash": "11532035316407786879" + }, + { + "file": "packages/react-icons-mdl2/src/components/KeubernetesLogoIcon.tsx", + "hash": "2977458046132010956" + }, + { + "file": "packages/react-icons-mdl2/src/components/KeyPhraseExtractionIcon.tsx", + "hash": "17790650281198840541" + }, + { + "file": "packages/react-icons-mdl2/src/components/KeyboardClassicIcon.tsx", + "hash": "411576966672510523" + }, + { + "file": "packages/react-icons-mdl2/src/components/KnowledgeArticleIcon.tsx", + "hash": "12469477897422924243" + }, + { + "file": "packages/react-icons-mdl2/src/components/LabelIcon.tsx", + "hash": "3378231475701239352" + }, + { + "file": "packages/react-icons-mdl2/src/components/LadybugSolidIcon.tsx", + "hash": "2255768388802589476" + }, + { + "file": "packages/react-icons-mdl2/src/components/LampIcon.tsx", + "hash": "2980312443538296758" + }, + { + "file": "packages/react-icons-mdl2/src/components/LandscapeOrientationIcon.tsx", + "hash": "4067546757606619660" + }, + { + "file": "packages/react-icons-mdl2/src/components/LaptopSecureIcon.tsx", + "hash": "6296328661135281654" + }, + { + "file": "packages/react-icons-mdl2/src/components/LaptopSelectedIcon.tsx", + "hash": "16074226251523455567" + }, + { + "file": "packages/react-icons-mdl2/src/components/LargeGridIcon.tsx", + "hash": "5229171462323349257" + }, + { + "file": "packages/react-icons-mdl2/src/components/LearningToolsIcon.tsx", + "hash": "1478670133257245649" + }, + { + "file": "packages/react-icons-mdl2/src/components/LeaveIcon.tsx", + "hash": "3413862808121824360" + }, + { + "file": "packages/react-icons-mdl2/src/components/LeaveUserIcon.tsx", + "hash": "12989890662915153188" + }, + { + "file": "packages/react-icons-mdl2/src/components/LibraryIcon.tsx", + "hash": "1291483442627924261" + }, + { + "file": "packages/react-icons-mdl2/src/components/LifesaverIcon.tsx", + "hash": "15719069419304250576" + }, + { + "file": "packages/react-icons-mdl2/src/components/LifesaverLockIcon.tsx", + "hash": "8818896047143933430" + }, + { + "file": "packages/react-icons-mdl2/src/components/LightIcon.tsx", + "hash": "5156483312012830102" + }, + { + "file": "packages/react-icons-mdl2/src/components/LightWeightIcon.tsx", + "hash": "3865104666332960985" + }, + { + "file": "packages/react-icons-mdl2/src/components/LightbulbIcon.tsx", + "hash": "2436163697764661261" + }, + { + "file": "packages/react-icons-mdl2/src/components/LightningBoltIcon.tsx", + "hash": "13485616252088130492" + }, + { + "file": "packages/react-icons-mdl2/src/components/LightningBoltSolidIcon.tsx", + "hash": "15054961729375683944" + }, + { + "file": "packages/react-icons-mdl2/src/components/LikeIcon.tsx", + "hash": "9032546788293939018" + }, + { + "file": "packages/react-icons-mdl2/src/components/LikeSolidIcon.tsx", + "hash": "18382395873982313140" + }, + { + "file": "packages/react-icons-mdl2/src/components/LineChartIcon.tsx", + "hash": "794669679327992310" + }, + { + "file": "packages/react-icons-mdl2/src/components/LineIcon.tsx", + "hash": "9556042467546249456" + }, + { + "file": "packages/react-icons-mdl2/src/components/LineSpacingIcon.tsx", + "hash": "15896967001335665868" + }, + { + "file": "packages/react-icons-mdl2/src/components/LineStyleIcon.tsx", + "hash": "18211431930869399084" + }, + { + "file": "packages/react-icons-mdl2/src/components/LineThicknessIcon.tsx", + "hash": "14859153643587611765" + }, + { + "file": "packages/react-icons-mdl2/src/components/Link12Icon.tsx", + "hash": "16081584489473752658" + }, + { + "file": "packages/react-icons-mdl2/src/components/LinkIcon.tsx", + "hash": "1908750425081902690" + }, + { + "file": "packages/react-icons-mdl2/src/components/LinkedDatabaseIcon.tsx", + "hash": "4325267157746077126" + }, + { + "file": "packages/react-icons-mdl2/src/components/LinuxLogo32Icon.tsx", + "hash": "12568846083970101391" + }, + { + "file": "packages/react-icons-mdl2/src/components/ListIcon.tsx", + "hash": "16023719582074195209" + }, + { + "file": "packages/react-icons-mdl2/src/components/ListMirroredIcon.tsx", + "hash": "5098251431463116358" + }, + { + "file": "packages/react-icons-mdl2/src/components/LiveSiteIcon.tsx", + "hash": "14048768654735729185" + }, + { + "file": "packages/react-icons-mdl2/src/components/LocaleLanguageIcon.tsx", + "hash": "12337575125571454357" + }, + { + "file": "packages/react-icons-mdl2/src/components/LocationCircleIcon.tsx", + "hash": "9758846971576171370" + }, + { + "file": "packages/react-icons-mdl2/src/components/LocationDotIcon.tsx", + "hash": "3278405111715028294" + }, + { + "file": "packages/react-icons-mdl2/src/components/LocationFillIcon.tsx", + "hash": "2138561064316564498" + }, + { + "file": "packages/react-icons-mdl2/src/components/LocationIcon.tsx", + "hash": "5208443676669918505" + }, + { + "file": "packages/react-icons-mdl2/src/components/LocationOutlineIcon.tsx", + "hash": "13218853813874807588" + }, + { + "file": "packages/react-icons-mdl2/src/components/Lock12Icon.tsx", + "hash": "16013286017315295053" + }, + { + "file": "packages/react-icons-mdl2/src/components/LockIcon.tsx", + "hash": "4801981410903331805" + }, + { + "file": "packages/react-icons-mdl2/src/components/LockShareIcon.tsx", + "hash": "10342601556498003565" + }, + { + "file": "packages/react-icons-mdl2/src/components/LockSolidIcon.tsx", + "hash": "9752255275577661679" + }, + { + "file": "packages/react-icons-mdl2/src/components/LogRemoveIcon.tsx", + "hash": "18249700207254304282" + }, + { + "file": "packages/react-icons-mdl2/src/components/LookupEntitiesIcon.tsx", + "hash": "14469241137300715864" + }, + { + "file": "packages/react-icons-mdl2/src/components/LowerBrightnessIcon.tsx", + "hash": "13419595406937683625" + }, + { + "file": "packages/react-icons-mdl2/src/components/MachineLearningIcon.tsx", + "hash": "760629027388695268" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailAlertIcon.tsx", + "hash": "15677037478095270277" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailAttachedIcon.tsx", + "hash": "4025552307791860117" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailCheckIcon.tsx", + "hash": "15178557980211822363" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailFillIcon.tsx", + "hash": "11483268666054294702" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailForwardIcon.tsx", + "hash": "3527035253875913326" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailForwardMirroredIcon.tsx", + "hash": "2291238011890235092" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailIcon.tsx", + "hash": "17100991757315805198" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailLowImportanceIcon.tsx", + "hash": "567478396963195491" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailOptionsIcon.tsx", + "hash": "200921925700068875" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailPauseIcon.tsx", + "hash": "5629390760476035405" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailReminderIcon.tsx", + "hash": "10098715243774779943" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailRepeatIcon.tsx", + "hash": "17862325693321671302" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailReplyAllIcon.tsx", + "hash": "7702777610664294929" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailReplyAllMirroredIcon.tsx", + "hash": "11280323338549747454" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailReplyIcon.tsx", + "hash": "6802930256440607638" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailReplyMirroredIcon.tsx", + "hash": "2233973513224742586" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailScheduleIcon.tsx", + "hash": "757776144436321925" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailSolidIcon.tsx", + "hash": "4634490987071651103" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailTentativeIcon.tsx", + "hash": "5135978347665218306" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailTentativeMirroredIcon.tsx", + "hash": "4300182470474070687" + }, + { + "file": "packages/react-icons-mdl2/src/components/MailUndeliveredIcon.tsx", + "hash": "14903593936856019428" + }, + { + "file": "packages/react-icons-mdl2/src/components/ManagerSelfServiceIcon.tsx", + "hash": "1848510673883736166" + }, + { + "file": "packages/react-icons-mdl2/src/components/ManufacturingIcon.tsx", + "hash": "18047977118807371741" + }, + { + "file": "packages/react-icons-mdl2/src/components/MapDirectionsIcon.tsx", + "hash": "4747623359582002035" + }, + { + "file": "packages/react-icons-mdl2/src/components/MapLayersIcon.tsx", + "hash": "8481507691523574033" + }, + { + "file": "packages/react-icons-mdl2/src/components/MapPin12Icon.tsx", + "hash": "211162128284100738" + }, + { + "file": "packages/react-icons-mdl2/src/components/MapPinIcon.tsx", + "hash": "17733996541851463646" + }, + { + "file": "packages/react-icons-mdl2/src/components/MapPinSolidIcon.tsx", + "hash": "10658541521136810339" + }, + { + "file": "packages/react-icons-mdl2/src/components/MarkAsProtectedIcon.tsx", + "hash": "3760294448808538624" + }, + { + "file": "packages/react-icons-mdl2/src/components/MarkDownLanguageIcon.tsx", + "hash": "10998137402310667703" + }, + { + "file": "packages/react-icons-mdl2/src/components/MarketDownIcon.tsx", + "hash": "1927915898613886495" + }, + { + "file": "packages/react-icons-mdl2/src/components/MarketIcon.tsx", + "hash": "9428958624159950454" + }, + { + "file": "packages/react-icons-mdl2/src/components/MasterDatabaseIcon.tsx", + "hash": "12765781549694057240" + }, + { + "file": "packages/react-icons-mdl2/src/components/MaximumValueIcon.tsx", + "hash": "9548851655060404668" + }, + { + "file": "packages/react-icons-mdl2/src/components/MedalIcon.tsx", + "hash": "9016574582699757751" + }, + { + "file": "packages/react-icons-mdl2/src/components/MedalSolidIcon.tsx", + "hash": "9775549943191019333" + }, + { + "file": "packages/react-icons-mdl2/src/components/MediaAddIcon.tsx", + "hash": "1530213724134119045" + }, + { + "file": "packages/react-icons-mdl2/src/components/MediaIcon.tsx", + "hash": "13693312563984438343" + }, + { + "file": "packages/react-icons-mdl2/src/components/MedicalIcon.tsx", + "hash": "17678556182467551513" + }, + { + "file": "packages/react-icons-mdl2/src/components/MegaphoneIcon.tsx", + "hash": "16847710342780168526" + }, + { + "file": "packages/react-icons-mdl2/src/components/MegaphoneSolidIcon.tsx", + "hash": "9812427839658596847" + }, + { + "file": "packages/react-icons-mdl2/src/components/MemoIcon.tsx", + "hash": "2637519265040979218" + }, + { + "file": "packages/react-icons-mdl2/src/components/MergeDuplicateIcon.tsx", + "hash": "14987944302662535701" + }, + { + "file": "packages/react-icons-mdl2/src/components/MergeIcon.tsx", + "hash": "16459949698224202006" + }, + { + "file": "packages/react-icons-mdl2/src/components/MessageFillIcon.tsx", + "hash": "7028167948487732677" + }, + { + "file": "packages/react-icons-mdl2/src/components/MessageFriendRequestIcon.tsx", + "hash": "10447816732492443022" + }, + { + "file": "packages/react-icons-mdl2/src/components/MessageIcon.tsx", + "hash": "9016057551501316676" + }, + { + "file": "packages/react-icons-mdl2/src/components/MicOff2Icon.tsx", + "hash": "831218772748006399" + }, + { + "file": "packages/react-icons-mdl2/src/components/MicOffIcon.tsx", + "hash": "10987570889496568468" + }, + { + "file": "packages/react-icons-mdl2/src/components/MicrophoneIcon.tsx", + "hash": "14513278060535966782" + }, + { + "file": "packages/react-icons-mdl2/src/components/MiniContractIcon.tsx", + "hash": "16511800240076613720" + }, + { + "file": "packages/react-icons-mdl2/src/components/MiniContractMirroredIcon.tsx", + "hash": "10630210747251287634" + }, + { + "file": "packages/react-icons-mdl2/src/components/MiniExpandIcon.tsx", + "hash": "13680889919501484112" + }, + { + "file": "packages/react-icons-mdl2/src/components/MiniExpandMirroredIcon.tsx", + "hash": "2291813261765776362" + }, + { + "file": "packages/react-icons-mdl2/src/components/MiniLinkIcon.tsx", + "hash": "248848982504484274" + }, + { + "file": "packages/react-icons-mdl2/src/components/MinimumValueIcon.tsx", + "hash": "13613713551566134421" + }, + { + "file": "packages/react-icons-mdl2/src/components/MiracastLogoLargeIcon.tsx", + "hash": "13842928032969802526" + }, + { + "file": "packages/react-icons-mdl2/src/components/MobileAngledIcon.tsx", + "hash": "2757052120309127402" + }, + { + "file": "packages/react-icons-mdl2/src/components/MobileReportIcon.tsx", + "hash": "9428374822461622031" + }, + { + "file": "packages/react-icons-mdl2/src/components/MobileSelectedIcon.tsx", + "hash": "16784153577217981592" + }, + { + "file": "packages/react-icons-mdl2/src/components/ModelingViewIcon.tsx", + "hash": "11311555510747362676" + }, + { + "file": "packages/react-icons-mdl2/src/components/MoneyIcon.tsx", + "hash": "1393140136935152030" + }, + { + "file": "packages/react-icons-mdl2/src/components/MoreIcon.tsx", + "hash": "4658167228466283777" + }, + { + "file": "packages/react-icons-mdl2/src/components/MoreSportsIcon.tsx", + "hash": "9221304452546249716" + }, + { + "file": "packages/react-icons-mdl2/src/components/MoreVerticalIcon.tsx", + "hash": "6230043297841631422" + }, + { + "file": "packages/react-icons-mdl2/src/components/MountainClimbingIcon.tsx", + "hash": "621750915275139874" + }, + { + "file": "packages/react-icons-mdl2/src/components/MoveIcon.tsx", + "hash": "2987620761554093824" + }, + { + "file": "packages/react-icons-mdl2/src/components/MoveToFolderIcon.tsx", + "hash": "12206384036935632470" + }, + { + "file": "packages/react-icons-mdl2/src/components/MoversIcon.tsx", + "hash": "17572755030686178354" + }, + { + "file": "packages/react-icons-mdl2/src/components/MultiSelectIcon.tsx", + "hash": "16169117549836272193" + }, + { + "file": "packages/react-icons-mdl2/src/components/MultiSelectMirroredIcon.tsx", + "hash": "10970075712547181569" + }, + { + "file": "packages/react-icons-mdl2/src/components/MusicInCollectionFillIcon.tsx", + "hash": "11485106460390186839" + }, + { + "file": "packages/react-icons-mdl2/src/components/MusicInCollectionIcon.tsx", + "hash": "16669926402142356515" + }, + { + "file": "packages/react-icons-mdl2/src/components/MusicNoteIcon.tsx", + "hash": "7789904933433989372" + }, + { + "file": "packages/react-icons-mdl2/src/components/MuteChatIcon.tsx", + "hash": "3631919255804943778" + }, + { + "file": "packages/react-icons-mdl2/src/components/MyMoviesTVIcon.tsx", + "hash": "6406183886708476503" + }, + { + "file": "packages/react-icons-mdl2/src/components/MyNetworkIcon.tsx", + "hash": "15556630167642081635" + }, + { + "file": "packages/react-icons-mdl2/src/components/NPMLogoIcon.tsx", + "hash": "15938419132213830913" + }, + { + "file": "packages/react-icons-mdl2/src/components/Nav2DMapViewIcon.tsx", + "hash": "1861942974503405839" + }, + { + "file": "packages/react-icons-mdl2/src/components/NavigateBackIcon.tsx", + "hash": "15249469567878012490" + }, + { + "file": "packages/react-icons-mdl2/src/components/NavigateBackMirroredIcon.tsx", + "hash": "1817649965554632624" + }, + { + "file": "packages/react-icons-mdl2/src/components/NavigateExternalInlineIcon.tsx", + "hash": "6636555198967266856" + }, + { + "file": "packages/react-icons-mdl2/src/components/NavigateForwardIcon.tsx", + "hash": "14548222247030754116" + }, + { + "file": "packages/react-icons-mdl2/src/components/NavigateForwardMirroredIcon.tsx", + "hash": "9630908319510065411" + }, + { + "file": "packages/react-icons-mdl2/src/components/NavigationFlipperIcon.tsx", + "hash": "16780771950942383103" + }, + { + "file": "packages/react-icons-mdl2/src/components/NetworkTowerIcon.tsx", + "hash": "8956230440629168518" + }, + { + "file": "packages/react-icons-mdl2/src/components/NewAnalyticsQueryIcon.tsx", + "hash": "5795625520702608746" + }, + { + "file": "packages/react-icons-mdl2/src/components/NewFolderIcon.tsx", + "hash": "638387074709881957" + }, + { + "file": "packages/react-icons-mdl2/src/components/NewMailIcon.tsx", + "hash": "10242820263861230200" + }, + { + "file": "packages/react-icons-mdl2/src/components/NewTeamProjectIcon.tsx", + "hash": "2354857052378159660" + }, + { + "file": "packages/react-icons-mdl2/src/components/NewsIcon.tsx", + "hash": "9041237247619422980" + }, + { + "file": "packages/react-icons-mdl2/src/components/NewsSearchIcon.tsx", + "hash": "6774536564163043043" + }, + { + "file": "packages/react-icons-mdl2/src/components/NextIcon.tsx", + "hash": "1434721563549479484" + }, + { + "file": "packages/react-icons-mdl2/src/components/NonprofitLogo32Icon.tsx", + "hash": "17298146378948801665" + }, + { + "file": "packages/react-icons-mdl2/src/components/NormalWeightIcon.tsx", + "hash": "15211035032334837971" + }, + { + "file": "packages/react-icons-mdl2/src/components/NotExecutedIcon.tsx", + "hash": "6112908944121663220" + }, + { + "file": "packages/react-icons-mdl2/src/components/NotImpactedSolidIcon.tsx", + "hash": "9668204014136724574" + }, + { + "file": "packages/react-icons-mdl2/src/components/NoteForwardIcon.tsx", + "hash": "2033093137143398401" + }, + { + "file": "packages/react-icons-mdl2/src/components/NotePinnedIcon.tsx", + "hash": "15308229896399402511" + }, + { + "file": "packages/react-icons-mdl2/src/components/NoteReplyIcon.tsx", + "hash": "5397651241606373899" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberFieldIcon.tsx", + "hash": "1073357588587963185" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberIcon.tsx", + "hash": "17254717544082558121" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberSequenceIcon.tsx", + "hash": "2062763852355939642" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberSymbolIcon.tsx", + "hash": "600780750503080926" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberedListIcon.tsx", + "hash": "13513586621250451638" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberedListMirroredIcon.tsx", + "hash": "10445687537115426123" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberedListNumberIcon.tsx", + "hash": "15541807436844196483" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberedListNumberMirroredIcon.tsx", + "hash": "7523321592675558698" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberedListTextIcon.tsx", + "hash": "17348478231420593090" + }, + { + "file": "packages/react-icons-mdl2/src/components/NumberedListTextMirroredIcon.tsx", + "hash": "9358275100316027589" + }, + { + "file": "packages/react-icons-mdl2/src/components/OEMIcon.tsx", + "hash": "16884975489193646219" + }, + { + "file": "packages/react-icons-mdl2/src/components/OctagonIcon.tsx", + "hash": "7051997867406169889" + }, + { + "file": "packages/react-icons-mdl2/src/components/OfficeChatIcon.tsx", + "hash": "3135032991082863206" + }, + { + "file": "packages/react-icons-mdl2/src/components/OfficeChatSolidIcon.tsx", + "hash": "7579003419417093508" + }, + { + "file": "packages/react-icons-mdl2/src/components/OfflineStorageIcon.tsx", + "hash": "351924355410058825" + }, + { + "file": "packages/react-icons-mdl2/src/components/OfflineStorageSolidIcon.tsx", + "hash": "2163296287816341950" + }, + { + "file": "packages/react-icons-mdl2/src/components/OnboardingIcon.tsx", + "hash": "17978163123947726803" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenEnrollmentIcon.tsx", + "hash": "9409831895624258892" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenFileIcon.tsx", + "hash": "13716013895282716360" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenFolderHorizontalIcon.tsx", + "hash": "4720433802176078702" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenInNewTabIcon.tsx", + "hash": "12616026608623184577" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenInNewWindowIcon.tsx", + "hash": "16709764145623596082" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenPaneIcon.tsx", + "hash": "14167942678189328958" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenPaneMirroredIcon.tsx", + "hash": "17902852270134103661" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenSourceIcon.tsx", + "hash": "6022581724396109402" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenWithIcon.tsx", + "hash": "16757941053329032655" + }, + { + "file": "packages/react-icons-mdl2/src/components/OpenWithMirroredIcon.tsx", + "hash": "1238747352425009933" + }, + { + "file": "packages/react-icons-mdl2/src/components/OrgIcon.tsx", + "hash": "17958497940558097203" + }, + { + "file": "packages/react-icons-mdl2/src/components/Orientation2Icon.tsx", + "hash": "9165835761068707409" + }, + { + "file": "packages/react-icons-mdl2/src/components/OrientationIcon.tsx", + "hash": "2261330004914625799" + }, + { + "file": "packages/react-icons-mdl2/src/components/OutOfOfficeIcon.tsx", + "hash": "9033234528837519595" + }, + { + "file": "packages/react-icons-mdl2/src/components/PC1Icon.tsx", + "hash": "17118061778132244317" + }, + { + "file": "packages/react-icons-mdl2/src/components/PDFIcon.tsx", + "hash": "16953159234422781856" + }, + { + "file": "packages/react-icons-mdl2/src/components/POIIcon.tsx", + "hash": "17081025063363847104" + }, + { + "file": "packages/react-icons-mdl2/src/components/POISolidIcon.tsx", + "hash": "17987066840688022197" + }, + { + "file": "packages/react-icons-mdl2/src/components/PYIcon.tsx", + "hash": "15062122769409242350" + }, + { + "file": "packages/react-icons-mdl2/src/components/PackageIcon.tsx", + "hash": "8188806034944821664" + }, + { + "file": "packages/react-icons-mdl2/src/components/PackagesIcon.tsx", + "hash": "7530672802951546585" + }, + { + "file": "packages/react-icons-mdl2/src/components/PaddingBottomIcon.tsx", + "hash": "16329407378974243459" + }, + { + "file": "packages/react-icons-mdl2/src/components/PaddingIcon.tsx", + "hash": "3693454047174570108" + }, + { + "file": "packages/react-icons-mdl2/src/components/PaddingLeftIcon.tsx", + "hash": "1940723243895739869" + }, + { + "file": "packages/react-icons-mdl2/src/components/PaddingRightIcon.tsx", + "hash": "15575572852872359348" + }, + { + "file": "packages/react-icons-mdl2/src/components/PaddingTopIcon.tsx", + "hash": "3059126148886145452" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageAddIcon.tsx", + "hash": "1028128955597352055" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageArrowRightIcon.tsx", + "hash": "10299368263307558240" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageCheckedOutIcon.tsx", + "hash": "5540250238565489701" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageCheckedinIcon.tsx", + "hash": "8733252113380883530" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageDataIcon.tsx", + "hash": "5429006082615274734" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageEditIcon.tsx", + "hash": "1302190554096056533" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageHeaderEditIcon.tsx", + "hash": "2745440594367033058" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageHeaderIcon.tsx", + "hash": "484643801273417624" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageIcon.tsx", + "hash": "13143986509256477909" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageLeftIcon.tsx", + "hash": "5225179526940112834" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageLinkIcon.tsx", + "hash": "2235935547175998368" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageListFilterIcon.tsx", + "hash": "4958536397877730157" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageListIcon.tsx", + "hash": "15592393887722894984" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageListMirroredSolidIcon.tsx", + "hash": "7072452421696131187" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageListSolidIcon.tsx", + "hash": "3011846427870316812" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageLockIcon.tsx", + "hash": "8328618170239710913" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageRemoveIcon.tsx", + "hash": "15226280653443240296" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageRightIcon.tsx", + "hash": "3409547421310272122" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageSharedIcon.tsx", + "hash": "18303121269314325046" + }, + { + "file": "packages/react-icons-mdl2/src/components/PageSolidIcon.tsx", + "hash": "11681020525884514699" + }, + { + "file": "packages/react-icons-mdl2/src/components/PanoIndicatorIcon.tsx", + "hash": "2581465768954382431" + }, + { + "file": "packages/react-icons-mdl2/src/components/ParachuteIcon.tsx", + "hash": "12501200481557600275" + }, + { + "file": "packages/react-icons-mdl2/src/components/ParachuteSolidIcon.tsx", + "hash": "1192630446492557179" + }, + { + "file": "packages/react-icons-mdl2/src/components/ParameterIcon.tsx", + "hash": "4042220669581533546" + }, + { + "file": "packages/react-icons-mdl2/src/components/ParatureLogoIcon.tsx", + "hash": "11611626752464336572" + }, + { + "file": "packages/react-icons-mdl2/src/components/ParkingLocationIcon.tsx", + "hash": "8568967650502471935" + }, + { + "file": "packages/react-icons-mdl2/src/components/ParkingLocationMirroredIcon.tsx", + "hash": "17018586187571511755" + }, + { + "file": "packages/react-icons-mdl2/src/components/ParkingMirroredSolidIcon.tsx", + "hash": "8427913959764438159" + }, + { + "file": "packages/react-icons-mdl2/src/components/ParkingSolidIcon.tsx", + "hash": "1262591929795560141" + }, + { + "file": "packages/react-icons-mdl2/src/components/PartlyCloudyDayIcon.tsx", + "hash": "8716126962689890947" + }, + { + "file": "packages/react-icons-mdl2/src/components/PartlyCloudyNightIcon.tsx", + "hash": "16235715570424586919" + }, + { + "file": "packages/react-icons-mdl2/src/components/PartyLeaderIcon.tsx", + "hash": "12711893955536705188" + }, + { + "file": "packages/react-icons-mdl2/src/components/PassiveAuthenticationIcon.tsx", + "hash": "14002588332142220944" + }, + { + "file": "packages/react-icons-mdl2/src/components/PasswordFieldIcon.tsx", + "hash": "3131426377826399559" + }, + { + "file": "packages/react-icons-mdl2/src/components/PasteAsCodeIcon.tsx", + "hash": "4805260552399940501" + }, + { + "file": "packages/react-icons-mdl2/src/components/PasteAsTextIcon.tsx", + "hash": "12623295337668507458" + }, + { + "file": "packages/react-icons-mdl2/src/components/PasteIcon.tsx", + "hash": "5004523753740808524" + }, + { + "file": "packages/react-icons-mdl2/src/components/PauseIcon.tsx", + "hash": "9059877663732204795" + }, + { + "file": "packages/react-icons-mdl2/src/components/PaymentCardIcon.tsx", + "hash": "8072989350727579864" + }, + { + "file": "packages/react-icons-mdl2/src/components/PenWorkspaceIcon.tsx", + "hash": "16399862149305076952" + }, + { + "file": "packages/react-icons-mdl2/src/components/PencilReplyIcon.tsx", + "hash": "7964544734391619918" + }, + { + "file": "packages/react-icons-mdl2/src/components/PentagonIcon.tsx", + "hash": "12576470515379649977" + }, + { + "file": "packages/react-icons-mdl2/src/components/PeopleAddIcon.tsx", + "hash": "740077196701986885" + }, + { + "file": "packages/react-icons-mdl2/src/components/PeopleAlertIcon.tsx", + "hash": "1200751904829860538" + }, + { + "file": "packages/react-icons-mdl2/src/components/PeopleBlockIcon.tsx", + "hash": "11520566292680214548" + }, + { + "file": "packages/react-icons-mdl2/src/components/PeopleIcon.tsx", + "hash": "5546815075608181083" + }, + { + "file": "packages/react-icons-mdl2/src/components/PeoplePauseIcon.tsx", + "hash": "2384543899794990203" + }, + { + "file": "packages/react-icons-mdl2/src/components/PeopleRepeatIcon.tsx", + "hash": "14144925183828792268" + }, + { + "file": "packages/react-icons-mdl2/src/components/PermissionsIcon.tsx", + "hash": "8360012995862892653" + }, + { + "file": "packages/react-icons-mdl2/src/components/PermissionsSolidIcon.tsx", + "hash": "2616240249421986755" + }, + { + "file": "packages/react-icons-mdl2/src/components/PersonalizeIcon.tsx", + "hash": "14943945156655188411" + }, + { + "file": "packages/react-icons-mdl2/src/components/PhishingIcon.tsx", + "hash": "9518959580653265457" + }, + { + "file": "packages/react-icons-mdl2/src/components/PhoneIcon.tsx", + "hash": "10123189969608843806" + }, + { + "file": "packages/react-icons-mdl2/src/components/Photo2AddIcon.tsx", + "hash": "12890535897327362569" + }, + { + "file": "packages/react-icons-mdl2/src/components/Photo2FillIcon.tsx", + "hash": "11916973734202296104" + }, + { + "file": "packages/react-icons-mdl2/src/components/Photo2Icon.tsx", + "hash": "6217669434528424813" + }, + { + "file": "packages/react-icons-mdl2/src/components/Photo2RemoveIcon.tsx", + "hash": "11045243933391741734" + }, + { + "file": "packages/react-icons-mdl2/src/components/PhotoCollectionIcon.tsx", + "hash": "14853854378220941481" + }, + { + "file": "packages/react-icons-mdl2/src/components/PhotoErrorIcon.tsx", + "hash": "15843725646187763745" + }, + { + "file": "packages/react-icons-mdl2/src/components/PhotoIcon.tsx", + "hash": "2410398483773033272" + }, + { + "file": "packages/react-icons-mdl2/src/components/PhotoVideoMediaIcon.tsx", + "hash": "11327066028793385582" + }, + { + "file": "packages/react-icons-mdl2/src/components/PictureCenterIcon.tsx", + "hash": "84076699459718279" + }, + { + "file": "packages/react-icons-mdl2/src/components/PictureFillIcon.tsx", + "hash": "14181410728380315086" + }, + { + "file": "packages/react-icons-mdl2/src/components/PictureIcon.tsx", + "hash": "15806894766658361974" + }, + { + "file": "packages/react-icons-mdl2/src/components/PictureLibraryIcon.tsx", + "hash": "5311483414434365136" + }, + { + "file": "packages/react-icons-mdl2/src/components/PicturePositionIcon.tsx", + "hash": "17409430305773109518" + }, + { + "file": "packages/react-icons-mdl2/src/components/PictureStretchIcon.tsx", + "hash": "9909515815194791190" + }, + { + "file": "packages/react-icons-mdl2/src/components/PictureTileIcon.tsx", + "hash": "5991148569776167026" + }, + { + "file": "packages/react-icons-mdl2/src/components/PieDoubleIcon.tsx", + "hash": "16668444301135366429" + }, + { + "file": "packages/react-icons-mdl2/src/components/PieSingleIcon.tsx", + "hash": "11084927429971105756" + }, + { + "file": "packages/react-icons-mdl2/src/components/PieSingleSolidIcon.tsx", + "hash": "14776155998409612678" + }, + { + "file": "packages/react-icons-mdl2/src/components/PillIcon.tsx", + "hash": "6256599255750287452" + }, + { + "file": "packages/react-icons-mdl2/src/components/PinIcon.tsx", + "hash": "1983240911784268789" + }, + { + "file": "packages/react-icons-mdl2/src/components/PinSolid12Icon.tsx", + "hash": "15020687617927332339" + }, + { + "file": "packages/react-icons-mdl2/src/components/PinSolidOff12Icon.tsx", + "hash": "3499118347569957809" + }, + { + "file": "packages/react-icons-mdl2/src/components/PinnedFillIcon.tsx", + "hash": "10585700449523261373" + }, + { + "file": "packages/react-icons-mdl2/src/components/PinnedIcon.tsx", + "hash": "9070205068592037520" + }, + { + "file": "packages/react-icons-mdl2/src/components/PinnedSolidIcon.tsx", + "hash": "5936043922736609729" + }, + { + "file": "packages/react-icons-mdl2/src/components/PivotChartIcon.tsx", + "hash": "4259767106459863102" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlainTextIcon.tsx", + "hash": "7745879903020174346" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlanViewIcon.tsx", + "hash": "15229642606192990519" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlayIcon.tsx", + "hash": "13347942971552831209" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlayResumeIcon.tsx", + "hash": "6978019009270265637" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlayReverseIcon.tsx", + "hash": "886294037536270616" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlayReverseResumeIcon.tsx", + "hash": "11828144696321574113" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlaySolidIcon.tsx", + "hash": "16883681959444751019" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlaybackRate1xIcon.tsx", + "hash": "11422776004876274435" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlayerSettingsIcon.tsx", + "hash": "2891640004616963952" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlugConnectedIcon.tsx", + "hash": "15231900144038686883" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlugDisconnectedIcon.tsx", + "hash": "9482677610736263718" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlugIcon.tsx", + "hash": "14457238032728110736" + }, + { + "file": "packages/react-icons-mdl2/src/components/PlugSolidIcon.tsx", + "hash": "14985347379238626930" + }, + { + "file": "packages/react-icons-mdl2/src/components/PollResultsIcon.tsx", + "hash": "4372641809118635212" + }, + { + "file": "packages/react-icons-mdl2/src/components/PostUpdateIcon.tsx", + "hash": "13690140920683735685" + }, + { + "file": "packages/react-icons-mdl2/src/components/PowerButtonIcon.tsx", + "hash": "13473089005670940816" + }, + { + "file": "packages/react-icons-mdl2/src/components/PrecipitationIcon.tsx", + "hash": "8700523600035334889" + }, + { + "file": "packages/react-icons-mdl2/src/components/PresenceChickletVideoIcon.tsx", + "hash": "6520898751220495588" + }, + { + "file": "packages/react-icons-mdl2/src/components/Presentation12Icon.tsx", + "hash": "12739060340199533788" + }, + { + "file": "packages/react-icons-mdl2/src/components/PresentationIcon.tsx", + "hash": "5580057635504441568" + }, + { + "file": "packages/react-icons-mdl2/src/components/PreviewIcon.tsx", + "hash": "15795109478497264543" + }, + { + "file": "packages/react-icons-mdl2/src/components/PreviewLinkIcon.tsx", + "hash": "10029955962533993761" + }, + { + "file": "packages/react-icons-mdl2/src/components/PreviousIcon.tsx", + "hash": "6343179605604117917" + }, + { + "file": "packages/react-icons-mdl2/src/components/PrimaryCalendarIcon.tsx", + "hash": "4012658748296620011" + }, + { + "file": "packages/react-icons-mdl2/src/components/PrintIcon.tsx", + "hash": "6855816325772339277" + }, + { + "file": "packages/react-icons-mdl2/src/components/PrintfaxPrinterFileIcon.tsx", + "hash": "2412318128665022986" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProFootballIcon.tsx", + "hash": "7394168027841297393" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProHockeyIcon.tsx", + "hash": "8132842062475414845" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProcessMetaTaskIcon.tsx", + "hash": "1761377875794956459" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProcessingCancelIcon.tsx", + "hash": "9583304782707343752" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProcessingIcon.tsx", + "hash": "12905437028183494715" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProcessingPauseIcon.tsx", + "hash": "10446149742784483989" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProcessingRunIcon.tsx", + "hash": "5844569557443581261" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProductCatalogIcon.tsx", + "hash": "3464921564878584487" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProductIcon.tsx", + "hash": "6348565145369557334" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProductListIcon.tsx", + "hash": "3024724900075315777" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProductReleaseIcon.tsx", + "hash": "7348620547503983607" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProductVariantIcon.tsx", + "hash": "14137645095470379174" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProductionFloorManagementIcon.tsx", + "hash": "8211043819524321465" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProfileSearchIcon.tsx", + "hash": "5360651681193046320" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProgressLoopInnerIcon.tsx", + "hash": "7344307724570892451" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProgressLoopOuterIcon.tsx", + "hash": "14115966853268295239" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProgressRingDotsIcon.tsx", + "hash": "8827595993003570158" + }, + { + "file": "packages/react-icons-mdl2/src/components/PromotedDatabaseIcon.tsx", + "hash": "13494185727052834572" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProtectRestrictIcon.tsx", + "hash": "12593153285092641043" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProtectedDocumentIcon.tsx", + "hash": "17116528624998015036" + }, + { + "file": "packages/react-icons-mdl2/src/components/ProvisioningPackageIcon.tsx", + "hash": "10104819019290694702" + }, + { + "file": "packages/react-icons-mdl2/src/components/PublicCalendarIcon.tsx", + "hash": "7928576299592465227" + }, + { + "file": "packages/react-icons-mdl2/src/components/PublicContactCardIcon.tsx", + "hash": "17137969832944727124" + }, + { + "file": "packages/react-icons-mdl2/src/components/PublicContactCardMirroredIcon.tsx", + "hash": "10653560057174265194" + }, + { + "file": "packages/react-icons-mdl2/src/components/PublicEmailIcon.tsx", + "hash": "16125961118093947862" + }, + { + "file": "packages/react-icons-mdl2/src/components/PublicFolderIcon.tsx", + "hash": "10615570374849555494" + }, + { + "file": "packages/react-icons-mdl2/src/components/PublishContentIcon.tsx", + "hash": "7418653213081864290" + }, + { + "file": "packages/react-icons-mdl2/src/components/PublishCourseIcon.tsx", + "hash": "7778181979101581966" + }, + { + "file": "packages/react-icons-mdl2/src/components/PuzzleIcon.tsx", + "hash": "16331125217924665582" + }, + { + "file": "packages/react-icons-mdl2/src/components/PythonLanguageIcon.tsx", + "hash": "12740295932941603018" + }, + { + "file": "packages/react-icons-mdl2/src/components/PythonLogoBlueIcon.tsx", + "hash": "10897963344070205190" + }, + { + "file": "packages/react-icons-mdl2/src/components/PythonLogoYellowIcon.tsx", + "hash": "10740076806574036198" + }, + { + "file": "packages/react-icons-mdl2/src/components/QRCodeIcon.tsx", + "hash": "4193817246005580075" + }, + { + "file": "packages/react-icons-mdl2/src/components/QandAIcon.tsx", + "hash": "7090567364829688083" + }, + { + "file": "packages/react-icons-mdl2/src/components/QandAMirrorIcon.tsx", + "hash": "14649054812286063495" + }, + { + "file": "packages/react-icons-mdl2/src/components/QuadColumnIcon.tsx", + "hash": "7779026997445231794" + }, + { + "file": "packages/react-icons-mdl2/src/components/QuantityIcon.tsx", + "hash": "13475748671267665668" + }, + { + "file": "packages/react-icons-mdl2/src/components/QuarterCircleIcon.tsx", + "hash": "301889233684729556" + }, + { + "file": "packages/react-icons-mdl2/src/components/QueryListIcon.tsx", + "hash": "17188232317815383853" + }, + { + "file": "packages/react-icons-mdl2/src/components/QuestionnaireIcon.tsx", + "hash": "8292236868458306187" + }, + { + "file": "packages/react-icons-mdl2/src/components/QuestionnaireMirroredIcon.tsx", + "hash": "16353546243071202079" + }, + { + "file": "packages/react-icons-mdl2/src/components/QuickNoteIcon.tsx", + "hash": "14698033081490920685" + }, + { + "file": "packages/react-icons-mdl2/src/components/QuickNoteSolidIcon.tsx", + "hash": "3853804771265454467" + }, + { + "file": "packages/react-icons-mdl2/src/components/RIcon.tsx", + "hash": "3642147187287238543" + }, + { + "file": "packages/react-icons-mdl2/src/components/RadioBtnOffIcon.tsx", + "hash": "15968365517372088454" + }, + { + "file": "packages/react-icons-mdl2/src/components/RadioBtnOnIcon.tsx", + "hash": "10401097749420578475" + }, + { + "file": "packages/react-icons-mdl2/src/components/RadioBulletIcon.tsx", + "hash": "1948109167659139504" + }, + { + "file": "packages/react-icons-mdl2/src/components/RainIcon.tsx", + "hash": "1224377299511878005" + }, + { + "file": "packages/react-icons-mdl2/src/components/RainShowersDayIcon.tsx", + "hash": "18140602978554118692" + }, + { + "file": "packages/react-icons-mdl2/src/components/RainShowersNightIcon.tsx", + "hash": "772223889186546672" + }, + { + "file": "packages/react-icons-mdl2/src/components/RainSnowIcon.tsx", + "hash": "18316749923815146432" + }, + { + "file": "packages/react-icons-mdl2/src/components/RawSourceIcon.tsx", + "hash": "2346521877928885898" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReactLogoIcon.tsx", + "hash": "11478464493583554511" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReadIcon.tsx", + "hash": "16339774116571551264" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReadOutLoudIcon.tsx", + "hash": "15512938224017499748" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReadingModeIcon.tsx", + "hash": "11225680917459055690" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReadingModeSolidIcon.tsx", + "hash": "13630184717491842494" + }, + { + "file": "packages/react-icons-mdl2/src/components/RealEstateIcon.tsx", + "hash": "12132961416106915656" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReceiptCheckIcon.tsx", + "hash": "14861339649639821612" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReceiptForwardIcon.tsx", + "hash": "16249487772177911246" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReceiptReplyIcon.tsx", + "hash": "6675712624277309058" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReceiptTentativeIcon.tsx", + "hash": "1827539807926652219" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReceiptTentativeMirroredIcon.tsx", + "hash": "10058669923175591734" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReceiptUndeliveredIcon.tsx", + "hash": "7138586237687849925" + }, + { + "file": "packages/react-icons-mdl2/src/components/RecentIcon.tsx", + "hash": "4974316867987717424" + }, + { + "file": "packages/react-icons-mdl2/src/components/Record2Icon.tsx", + "hash": "6887536974244129139" + }, + { + "file": "packages/react-icons-mdl2/src/components/RecruitmentManagementIcon.tsx", + "hash": "8365263359070724006" + }, + { + "file": "packages/react-icons-mdl2/src/components/RectangleShapeIcon.tsx", + "hash": "4970472544847083318" + }, + { + "file": "packages/react-icons-mdl2/src/components/RectangleShapeSolidIcon.tsx", + "hash": "16095443467310730950" + }, + { + "file": "packages/react-icons-mdl2/src/components/RectangularClippingIcon.tsx", + "hash": "1887047080859169150" + }, + { + "file": "packages/react-icons-mdl2/src/components/RecurringEventIcon.tsx", + "hash": "10689152471386577241" + }, + { + "file": "packages/react-icons-mdl2/src/components/RecurringTaskIcon.tsx", + "hash": "17696826538813074695" + }, + { + "file": "packages/react-icons-mdl2/src/components/RedEye12Icon.tsx", + "hash": "9382944788646394558" + }, + { + "file": "packages/react-icons-mdl2/src/components/RedEyeIcon.tsx", + "hash": "10003350948056097541" + }, + { + "file": "packages/react-icons-mdl2/src/components/RedeployIcon.tsx", + "hash": "3176549235353100481" + }, + { + "file": "packages/react-icons-mdl2/src/components/RedoIcon.tsx", + "hash": "17889709285162817999" + }, + { + "file": "packages/react-icons-mdl2/src/components/RefreshIcon.tsx", + "hash": "1584001357827257939" + }, + { + "file": "packages/react-icons-mdl2/src/components/RegistryEditorIcon.tsx", + "hash": "9576647226559022693" + }, + { + "file": "packages/react-icons-mdl2/src/components/RelationshipIcon.tsx", + "hash": "6771934588418170257" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReleaseDefinitionIcon.tsx", + "hash": "4343117846936556152" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReleaseGateCheckIcon.tsx", + "hash": "9227000183618148389" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReleaseGateErrorIcon.tsx", + "hash": "4769541476719542996" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReleaseGateIcon.tsx", + "hash": "1338124056235790076" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReminderGroupIcon.tsx", + "hash": "15062653789748442733" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReminderPersonIcon.tsx", + "hash": "14076556494330434589" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReminderTimeIcon.tsx", + "hash": "14963898626635056410" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoteIcon.tsx", + "hash": "1119526599082208697" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveContentIcon.tsx", + "hash": "10095104375646589464" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveEventIcon.tsx", + "hash": "1770474505220109854" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveFilterIcon.tsx", + "hash": "14826721607759685205" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveFromShoppingListIcon.tsx", + "hash": "5120763859319093342" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveFromTrashIcon.tsx", + "hash": "16437043087880572921" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveIcon.tsx", + "hash": "3340436694186455162" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveLinkChainIcon.tsx", + "hash": "5246466319381276908" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveLinkIcon.tsx", + "hash": "4934873079743891604" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveLinkXIcon.tsx", + "hash": "13933265474745522070" + }, + { + "file": "packages/react-icons-mdl2/src/components/RemoveOccurrenceIcon.tsx", + "hash": "17596365826540530619" + }, + { + "file": "packages/react-icons-mdl2/src/components/RenameIcon.tsx", + "hash": "8779737737100377722" + }, + { + "file": "packages/react-icons-mdl2/src/components/RenewalCurrentIcon.tsx", + "hash": "17155907495199144621" + }, + { + "file": "packages/react-icons-mdl2/src/components/RenewalFutureIcon.tsx", + "hash": "18040312749706135716" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReopenPagesIcon.tsx", + "hash": "4527483304029555468" + }, + { + "file": "packages/react-icons-mdl2/src/components/RepairIcon.tsx", + "hash": "6712323806304165735" + }, + { + "file": "packages/react-icons-mdl2/src/components/RepeatAllIcon.tsx", + "hash": "4738265788125894750" + }, + { + "file": "packages/react-icons-mdl2/src/components/RepeatHeaderRowsIcon.tsx", + "hash": "281035913588419001" + }, + { + "file": "packages/react-icons-mdl2/src/components/RepeatOneIcon.tsx", + "hash": "10153655218457688238" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReplyAllAltIcon.tsx", + "hash": "15130769254717827934" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReplyAllIcon.tsx", + "hash": "3511993612472050835" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReplyAllMirroredIcon.tsx", + "hash": "14234054208958806201" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReplyAltIcon.tsx", + "hash": "933229403573599355" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReplyIcon.tsx", + "hash": "18009439126632338426" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReplyMirroredIcon.tsx", + "hash": "4500588386003863876" + }, + { + "file": "packages/react-icons-mdl2/src/components/RepoIcon.tsx", + "hash": "7678565709884576038" + }, + { + "file": "packages/react-icons-mdl2/src/components/RepoSolidIcon.tsx", + "hash": "1226700904681954769" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReportAddIcon.tsx", + "hash": "9850194945981834406" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReportDocumentIcon.tsx", + "hash": "8565569295537691921" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReportHackedIcon.tsx", + "hash": "1554548226913281174" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReportLibraryIcon.tsx", + "hash": "7939213985314856280" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReportLibraryMirroredIcon.tsx", + "hash": "15909586393315648358" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReportLockIcon.tsx", + "hash": "6301977591104010011" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReportWarningIcon.tsx", + "hash": "85910912891216710" + }, + { + "file": "packages/react-icons-mdl2/src/components/RerunIcon.tsx", + "hash": "15819459681624916149" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReservationOrdersIcon.tsx", + "hash": "5956032173693218776" + }, + { + "file": "packages/react-icons-mdl2/src/components/ResetDeviceIcon.tsx", + "hash": "18311413279124365488" + }, + { + "file": "packages/react-icons-mdl2/src/components/ResetIcon.tsx", + "hash": "11078483500098772524" + }, + { + "file": "packages/react-icons-mdl2/src/components/ResponsesMenuIcon.tsx", + "hash": "12905327334886469706" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReturnKeyIcon.tsx", + "hash": "778062027127388163" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReturnToSessionIcon.tsx", + "hash": "13767458985926589178" + }, + { + "file": "packages/react-icons-mdl2/src/components/RevToggleKeyIcon.tsx", + "hash": "17268417034066985821" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReviewRequestMirroredSolidIcon.tsx", + "hash": "4198469853792849307" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReviewRequestSolidIcon.tsx", + "hash": "6789506402724558845" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReviewResponseSolidIcon.tsx", + "hash": "13746903940658559773" + }, + { + "file": "packages/react-icons-mdl2/src/components/ReviewSolidIcon.tsx", + "hash": "10405471729572573818" + }, + { + "file": "packages/react-icons-mdl2/src/components/RewindEightXIcon.tsx", + "hash": "5440996717647720617" + }, + { + "file": "packages/react-icons-mdl2/src/components/RewindFourXIcon.tsx", + "hash": "5950063720265872760" + }, + { + "file": "packages/react-icons-mdl2/src/components/RewindIcon.tsx", + "hash": "2976542701811024713" + }, + { + "file": "packages/react-icons-mdl2/src/components/RewindOneFiveXIcon.tsx", + "hash": "14597450931488491666" + }, + { + "file": "packages/react-icons-mdl2/src/components/RewindOneXIcon.tsx", + "hash": "96598580019507794" + }, + { + "file": "packages/react-icons-mdl2/src/components/RewindPointFiveXIcon.tsx", + "hash": "6816021643797619988" + }, + { + "file": "packages/react-icons-mdl2/src/components/RewindTwoXIcon.tsx", + "hash": "2597622895947953652" + }, + { + "file": "packages/react-icons-mdl2/src/components/RibbonIcon.tsx", + "hash": "12505056453875423322" + }, + { + "file": "packages/react-icons-mdl2/src/components/RibbonSolidIcon.tsx", + "hash": "4925073625398304103" + }, + { + "file": "packages/react-icons-mdl2/src/components/RightDoubleQuoteIcon.tsx", + "hash": "13228962573922254349" + }, + { + "file": "packages/react-icons-mdl2/src/components/RightTriangleIcon.tsx", + "hash": "8631049789896987274" + }, + { + "file": "packages/react-icons-mdl2/src/components/RingerIcon.tsx", + "hash": "10812818586902825629" + }, + { + "file": "packages/react-icons-mdl2/src/components/RingerOffIcon.tsx", + "hash": "15465109539414954011" + }, + { + "file": "packages/react-icons-mdl2/src/components/RingerRemoveIcon.tsx", + "hash": "12710104732587573905" + }, + { + "file": "packages/react-icons-mdl2/src/components/RingerSolidIcon.tsx", + "hash": "3455581175423440233" + }, + { + "file": "packages/react-icons-mdl2/src/components/RobotIcon.tsx", + "hash": "10547657026122777550" + }, + { + "file": "packages/react-icons-mdl2/src/components/RocketIcon.tsx", + "hash": "6980348616626812903" + }, + { + "file": "packages/react-icons-mdl2/src/components/RoomIcon.tsx", + "hash": "981533212673309040" + }, + { + "file": "packages/react-icons-mdl2/src/components/Rotate90ClockwiseIcon.tsx", + "hash": "1915276215806620306" + }, + { + "file": "packages/react-icons-mdl2/src/components/Rotate90CounterClockwiseIcon.tsx", + "hash": "3094633106778963512" + }, + { + "file": "packages/react-icons-mdl2/src/components/RotateIcon.tsx", + "hash": "3085258773834909203" + }, + { + "file": "packages/react-icons-mdl2/src/components/RowsChildIcon.tsx", + "hash": "4916625815271698479" + }, + { + "file": "packages/react-icons-mdl2/src/components/RowsGroupIcon.tsx", + "hash": "38971737369893317" + }, + { + "file": "packages/react-icons-mdl2/src/components/RubyGemsLogoIcon.tsx", + "hash": "1188502604572156228" + }, + { + "file": "packages/react-icons-mdl2/src/components/RugbyIcon.tsx", + "hash": "4096135401668474396" + }, + { + "file": "packages/react-icons-mdl2/src/components/RunningIcon.tsx", + "hash": "2732066696930349364" + }, + { + "file": "packages/react-icons-mdl2/src/components/RustLanguageLogoIcon.tsx", + "hash": "16245091142252201879" + }, + { + "file": "packages/react-icons-mdl2/src/components/SDCardIcon.tsx", + "hash": "16779381262121573745" + }, + { + "file": "packages/react-icons-mdl2/src/components/SIPMoveIcon.tsx", + "hash": "1292993801675064692" + }, + { + "file": "packages/react-icons-mdl2/src/components/SQLAnalyticsPoolIcon.tsx", + "hash": "16632034557361220597" + }, + { + "file": "packages/react-icons-mdl2/src/components/SVNLogoIcon.tsx", + "hash": "14471498460908665124" + }, + { + "file": "packages/react-icons-mdl2/src/components/SadIcon.tsx", + "hash": "10257664822202938065" + }, + { + "file": "packages/react-icons-mdl2/src/components/SadSolidIcon.tsx", + "hash": "2704558455731967475" + }, + { + "file": "packages/react-icons-mdl2/src/components/SaveAllIcon.tsx", + "hash": "13407768255962734586" + }, + { + "file": "packages/react-icons-mdl2/src/components/SaveAndCloseIcon.tsx", + "hash": "8461015559875601893" + }, + { + "file": "packages/react-icons-mdl2/src/components/SaveAsIcon.tsx", + "hash": "14980452498052129489" + }, + { + "file": "packages/react-icons-mdl2/src/components/SaveIcon.tsx", + "hash": "18446627481487444184" + }, + { + "file": "packages/react-icons-mdl2/src/components/SaveTemplateIcon.tsx", + "hash": "3826771779893005564" + }, + { + "file": "packages/react-icons-mdl2/src/components/SaveToMobileIcon.tsx", + "hash": "15319590927912761851" + }, + { + "file": "packages/react-icons-mdl2/src/components/SavingsIcon.tsx", + "hash": "8290884341068876497" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScaleUpIcon.tsx", + "hash": "4668475401339689006" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScaleVolumeIcon.tsx", + "hash": "7057780815839547310" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScatterChartIcon.tsx", + "hash": "11542201772664481956" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScheduleEventActionIcon.tsx", + "hash": "1143339648876710002" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScopeTemplateIcon.tsx", + "hash": "13578920299653898424" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScreenCastIcon.tsx", + "hash": "13459668514947933080" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScreenTimeIcon.tsx", + "hash": "10830108454758817807" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScriptIcon.tsx", + "hash": "14893943413659353151" + }, + { + "file": "packages/react-icons-mdl2/src/components/ScrollUpDownIcon.tsx", + "hash": "14808730472109868911" + }, + { + "file": "packages/react-icons-mdl2/src/components/SearchAndAppsIcon.tsx", + "hash": "12029624657504546412" + }, + { + "file": "packages/react-icons-mdl2/src/components/SearchBookmarkIcon.tsx", + "hash": "4453953204921014339" + }, + { + "file": "packages/react-icons-mdl2/src/components/SearchCalendarIcon.tsx", + "hash": "14309122506085434499" + }, + { + "file": "packages/react-icons-mdl2/src/components/SearchDataIcon.tsx", + "hash": "7405319181413241696" + }, + { + "file": "packages/react-icons-mdl2/src/components/SearchIcon.tsx", + "hash": "4737552673585211755" + }, + { + "file": "packages/react-icons-mdl2/src/components/SearchIssueIcon.tsx", + "hash": "12314263131119293997" + }, + { + "file": "packages/react-icons-mdl2/src/components/SearchIssueMirroredIcon.tsx", + "hash": "3761166264222642810" + }, + { + "file": "packages/react-icons-mdl2/src/components/SearchNearbyIcon.tsx", + "hash": "1744408291289346365" + }, + { + "file": "packages/react-icons-mdl2/src/components/SecondaryNavIcon.tsx", + "hash": "15282810402009236543" + }, + { + "file": "packages/react-icons-mdl2/src/components/SectionIcon.tsx", + "hash": "14395512304549333743" + }, + { + "file": "packages/react-icons-mdl2/src/components/SectionsIcon.tsx", + "hash": "9340033941601416787" + }, + { + "file": "packages/react-icons-mdl2/src/components/SecurityGroupIcon.tsx", + "hash": "8368168062014436270" + }, + { + "file": "packages/react-icons-mdl2/src/components/SeeDoIcon.tsx", + "hash": "864327855801395180" + }, + { + "file": "packages/react-icons-mdl2/src/components/SelectAllIcon.tsx", + "hash": "2167693616497991928" + }, + { + "file": "packages/react-icons-mdl2/src/components/SellIcon.tsx", + "hash": "6706494628509969641" + }, + { + "file": "packages/react-icons-mdl2/src/components/SemiboldWeightIcon.tsx", + "hash": "12437959718188817198" + }, + { + "file": "packages/react-icons-mdl2/src/components/SendIcon.tsx", + "hash": "163473083102885524" + }, + { + "file": "packages/react-icons-mdl2/src/components/SendMirroredIcon.tsx", + "hash": "8070310300829844729" + }, + { + "file": "packages/react-icons-mdl2/src/components/SentimentAnalysisIcon.tsx", + "hash": "17008129519430365444" + }, + { + "file": "packages/react-icons-mdl2/src/components/SeparatorIcon.tsx", + "hash": "14584941974872368354" + }, + { + "file": "packages/react-icons-mdl2/src/components/ServerEnviromentIcon.tsx", + "hash": "1750681348992383196" + }, + { + "file": "packages/react-icons-mdl2/src/components/ServerIcon.tsx", + "hash": "18418596094918028176" + }, + { + "file": "packages/react-icons-mdl2/src/components/ServerProcessesIcon.tsx", + "hash": "2626435703916635677" + }, + { + "file": "packages/react-icons-mdl2/src/components/ServiceOffIcon.tsx", + "hash": "7398322484195335319" + }, + { + "file": "packages/react-icons-mdl2/src/components/SetActionIcon.tsx", + "hash": "10759412809435968518" + }, + { + "file": "packages/react-icons-mdl2/src/components/SettingsIcon.tsx", + "hash": "5137684744719239592" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShakeDeviceIcon.tsx", + "hash": "1835023828739771936" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShapeSolidIcon.tsx", + "hash": "17617902965165026156" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShapesIcon.tsx", + "hash": "6072476137017589863" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShareIcon.tsx", + "hash": "14422464686258237836" + }, + { + "file": "packages/react-icons-mdl2/src/components/SharedDatabaseIcon.tsx", + "hash": "14493329677068654487" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShareiOSIcon.tsx", + "hash": "10752875289514497033" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShirtIcon.tsx", + "hash": "7533321663603564465" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShopIcon.tsx", + "hash": "1486282593886927215" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShopServerIcon.tsx", + "hash": "13775298968890066560" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShoppingCartIcon.tsx", + "hash": "6101534900506134985" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShoppingCartSolidIcon.tsx", + "hash": "15153900375002037428" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShowGridIcon.tsx", + "hash": "16948102533089602630" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShowResultsIcon.tsx", + "hash": "4042039513768687844" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShowResultsMirroredIcon.tsx", + "hash": "4971854075298613045" + }, + { + "file": "packages/react-icons-mdl2/src/components/ShowTimeAsIcon.tsx", + "hash": "10802116526854333441" + }, + { + "file": "packages/react-icons-mdl2/src/components/SidePanelIcon.tsx", + "hash": "5230482954554972066" + }, + { + "file": "packages/react-icons-mdl2/src/components/SidePanelMirroredIcon.tsx", + "hash": "13194465453275835615" + }, + { + "file": "packages/react-icons-mdl2/src/components/SignOutIcon.tsx", + "hash": "5833233050480284596" + }, + { + "file": "packages/react-icons-mdl2/src/components/SigninIcon.tsx", + "hash": "16397904076306255883" + }, + { + "file": "packages/react-icons-mdl2/src/components/SingleBookmarkIcon.tsx", + "hash": "13733961213117870249" + }, + { + "file": "packages/react-icons-mdl2/src/components/SingleBookmarkSolidIcon.tsx", + "hash": "13761241669223380881" + }, + { + "file": "packages/react-icons-mdl2/src/components/SingleColumnEditIcon.tsx", + "hash": "11657131149938670241" + }, + { + "file": "packages/react-icons-mdl2/src/components/SingleColumnIcon.tsx", + "hash": "10036499463712198961" + }, + { + "file": "packages/react-icons-mdl2/src/components/SiteScanIcon.tsx", + "hash": "15691472348770795130" + }, + { + "file": "packages/react-icons-mdl2/src/components/SixPointStarIcon.tsx", + "hash": "640268993964068647" + }, + { + "file": "packages/react-icons-mdl2/src/components/SizeLegacyIcon.tsx", + "hash": "3291225599099704555" + }, + { + "file": "packages/react-icons-mdl2/src/components/SkiResortsIcon.tsx", + "hash": "6555314944313474416" + }, + { + "file": "packages/react-icons-mdl2/src/components/SkipBack10Icon.tsx", + "hash": "17395500014457854958" + }, + { + "file": "packages/react-icons-mdl2/src/components/SkipForward30Icon.tsx", + "hash": "12807473448559234229" + }, + { + "file": "packages/react-icons-mdl2/src/components/SkypeArrowIcon.tsx", + "hash": "651592052032054337" + }, + { + "file": "packages/react-icons-mdl2/src/components/SkypeCheckIcon.tsx", + "hash": "12254126427628535507" + }, + { + "file": "packages/react-icons-mdl2/src/components/SkypeClockIcon.tsx", + "hash": "8988849702104238369" + }, + { + "file": "packages/react-icons-mdl2/src/components/SkypeMinusIcon.tsx", + "hash": "1855910970699005054" + }, + { + "file": "packages/react-icons-mdl2/src/components/SliderHandleSizeIcon.tsx", + "hash": "15024772977431511613" + }, + { + "file": "packages/react-icons-mdl2/src/components/SliderIcon.tsx", + "hash": "15128534207791862157" + }, + { + "file": "packages/react-icons-mdl2/src/components/SliderThumbIcon.tsx", + "hash": "513949632778702932" + }, + { + "file": "packages/react-icons-mdl2/src/components/SlideshowIcon.tsx", + "hash": "5071345657789319507" + }, + { + "file": "packages/react-icons-mdl2/src/components/SmartGlassRemoteIcon.tsx", + "hash": "10303634573842614020" + }, + { + "file": "packages/react-icons-mdl2/src/components/SnapToGridIcon.tsx", + "hash": "15414810379784499860" + }, + { + "file": "packages/react-icons-mdl2/src/components/SnoozeIcon.tsx", + "hash": "4519353568915020605" + }, + { + "file": "packages/react-icons-mdl2/src/components/SnowIcon.tsx", + "hash": "7951985243083773438" + }, + { + "file": "packages/react-icons-mdl2/src/components/SnowShowerDayIcon.tsx", + "hash": "9897566426056788277" + }, + { + "file": "packages/react-icons-mdl2/src/components/SnowShowerNightIcon.tsx", + "hash": "9605588432192508244" + }, + { + "file": "packages/react-icons-mdl2/src/components/SnowflakeIcon.tsx", + "hash": "11706543066981683239" + }, + { + "file": "packages/react-icons-mdl2/src/components/SoccerIcon.tsx", + "hash": "17852056075053764593" + }, + { + "file": "packages/react-icons-mdl2/src/components/SortDownIcon.tsx", + "hash": "3485561566724709043" + }, + { + "file": "packages/react-icons-mdl2/src/components/SortIcon.tsx", + "hash": "7609051582730240082" + }, + { + "file": "packages/react-icons-mdl2/src/components/SortLinesAscendingIcon.tsx", + "hash": "14233191291534846813" + }, + { + "file": "packages/react-icons-mdl2/src/components/SortLinesIcon.tsx", + "hash": "11891192657420845013" + }, + { + "file": "packages/react-icons-mdl2/src/components/SortUpIcon.tsx", + "hash": "10961926071507470926" + }, + { + "file": "packages/react-icons-mdl2/src/components/SourceIcon.tsx", + "hash": "2728937754359467002" + }, + { + "file": "packages/react-icons-mdl2/src/components/SpacerIcon.tsx", + "hash": "7050828993623671572" + }, + { + "file": "packages/react-icons-mdl2/src/components/SpeakersIcon.tsx", + "hash": "2440059018986861119" + }, + { + "file": "packages/react-icons-mdl2/src/components/SpecialEventIcon.tsx", + "hash": "16554944522040486282" + }, + { + "file": "packages/react-icons-mdl2/src/components/SpeedHighIcon.tsx", + "hash": "1870364148806547670" + }, + { + "file": "packages/react-icons-mdl2/src/components/SpellingIcon.tsx", + "hash": "5150751164294727237" + }, + { + "file": "packages/react-icons-mdl2/src/components/SplitIcon.tsx", + "hash": "5645423701987504952" + }, + { + "file": "packages/react-icons-mdl2/src/components/SplitObjectIcon.tsx", + "hash": "7696917508827033867" + }, + { + "file": "packages/react-icons-mdl2/src/components/SprintIcon.tsx", + "hash": "14509685609150224857" + }, + { + "file": "packages/react-icons-mdl2/src/components/SquallsIcon.tsx", + "hash": "13790844818296483669" + }, + { + "file": "packages/react-icons-mdl2/src/components/SquareShapeIcon.tsx", + "hash": "14194069350332456557" + }, + { + "file": "packages/react-icons-mdl2/src/components/SquareShapeSolidIcon.tsx", + "hash": "6091668410091044064" + }, + { + "file": "packages/react-icons-mdl2/src/components/StackColumnChartIcon.tsx", + "hash": "5750033709428168935" + }, + { + "file": "packages/react-icons-mdl2/src/components/StackIcon.tsx", + "hash": "2508613136410619416" + }, + { + "file": "packages/react-icons-mdl2/src/components/StackIndicatorIcon.tsx", + "hash": "17350034510560911365" + }, + { + "file": "packages/react-icons-mdl2/src/components/StackedBarChartIcon.tsx", + "hash": "2818483888288699403" + }, + { + "file": "packages/react-icons-mdl2/src/components/StackedColumnChart2FillIcon.tsx", + "hash": "6161322009720672112" + }, + { + "file": "packages/react-icons-mdl2/src/components/StackedColumnChart2Icon.tsx", + "hash": "3000388554856050094" + }, + { + "file": "packages/react-icons-mdl2/src/components/StackedLineChartIcon.tsx", + "hash": "1107216935189249093" + }, + { + "file": "packages/react-icons-mdl2/src/components/StarburstIcon.tsx", + "hash": "10780411602915789659" + }, + { + "file": "packages/react-icons-mdl2/src/components/StarburstSolidIcon.tsx", + "hash": "12448992283496117374" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleBlock2Icon.tsx", + "hash": "17684175596652858312" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleBlockIcon.tsx", + "hash": "16024578287257359985" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleCheckmarkIcon.tsx", + "hash": "13588980792697650161" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleErrorXIcon.tsx", + "hash": "8297623033959191316" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleExclamationIcon.tsx", + "hash": "1627855386051443053" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleInfoIcon.tsx", + "hash": "8350899233453241488" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleInnerIcon.tsx", + "hash": "12712482180441686353" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleOuterIcon.tsx", + "hash": "11708521576305204729" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleQuestionMarkIcon.tsx", + "hash": "13112912123387201026" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleRingIcon.tsx", + "hash": "5409734124201155449" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusCircleSyncIcon.tsx", + "hash": "7621020559065265920" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusErrorFullIcon.tsx", + "hash": "5355917476705477943" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusTriangleExclamationIcon.tsx", + "hash": "4611265576263259478" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusTriangleIcon.tsx", + "hash": "12461641900645362306" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusTriangleInnerIcon.tsx", + "hash": "15395814127262114514" + }, + { + "file": "packages/react-icons-mdl2/src/components/StatusTriangleOuterIcon.tsx", + "hash": "16298246760123913593" + }, + { + "file": "packages/react-icons-mdl2/src/components/StepIcon.tsx", + "hash": "215624494747363591" + }, + { + "file": "packages/react-icons-mdl2/src/components/StepInsertIcon.tsx", + "hash": "10138403059801626484" + }, + { + "file": "packages/react-icons-mdl2/src/components/StepSharedAddIcon.tsx", + "hash": "16344984184801001506" + }, + { + "file": "packages/react-icons-mdl2/src/components/StepSharedIcon.tsx", + "hash": "11206024398945775038" + }, + { + "file": "packages/react-icons-mdl2/src/components/StepSharedInsertIcon.tsx", + "hash": "1106979598169663081" + }, + { + "file": "packages/react-icons-mdl2/src/components/StockDownIcon.tsx", + "hash": "11921382229344091863" + }, + { + "file": "packages/react-icons-mdl2/src/components/StockUpIcon.tsx", + "hash": "1919785388202511728" + }, + { + "file": "packages/react-icons-mdl2/src/components/StopIcon.tsx", + "hash": "11185447640838295692" + }, + { + "file": "packages/react-icons-mdl2/src/components/StopSolidIcon.tsx", + "hash": "5531259320411293803" + }, + { + "file": "packages/react-icons-mdl2/src/components/StopwatchIcon.tsx", + "hash": "10549353697781477510" + }, + { + "file": "packages/react-icons-mdl2/src/components/StorageAcountIcon.tsx", + "hash": "15183665518429330152" + }, + { + "file": "packages/react-icons-mdl2/src/components/StorageOpticalIcon.tsx", + "hash": "16875020361414625799" + }, + { + "file": "packages/react-icons-mdl2/src/components/StoryboardIcon.tsx", + "hash": "10240115390494074559" + }, + { + "file": "packages/react-icons-mdl2/src/components/StreamingIcon.tsx", + "hash": "14590603862509932730" + }, + { + "file": "packages/react-icons-mdl2/src/components/StreamingOffIcon.tsx", + "hash": "18153643219661865252" + }, + { + "file": "packages/react-icons-mdl2/src/components/StreetIcon.tsx", + "hash": "15770083353298191910" + }, + { + "file": "packages/react-icons-mdl2/src/components/StreetsideSplitMinimizeIcon.tsx", + "hash": "16797873411790734665" + }, + { + "file": "packages/react-icons-mdl2/src/components/StrikethroughIcon.tsx", + "hash": "17843657592475299928" + }, + { + "file": "packages/react-icons-mdl2/src/components/SubscribeIcon.tsx", + "hash": "15333737165870772998" + }, + { + "file": "packages/react-icons-mdl2/src/components/SubscriptIcon.tsx", + "hash": "4287449504425088846" + }, + { + "file": "packages/react-icons-mdl2/src/components/SubstitutionsInIcon.tsx", + "hash": "15877960703464877683" + }, + { + "file": "packages/react-icons-mdl2/src/components/SuitcaseIcon.tsx", + "hash": "8990696133843045428" + }, + { + "file": "packages/react-icons-mdl2/src/components/SunAddIcon.tsx", + "hash": "12992348011854256285" + }, + { + "file": "packages/react-icons-mdl2/src/components/SunQuestionMarkIcon.tsx", + "hash": "11469911801746140277" + }, + { + "file": "packages/react-icons-mdl2/src/components/SunnyIcon.tsx", + "hash": "15889047483369918896" + }, + { + "file": "packages/react-icons-mdl2/src/components/SuperscriptIcon.tsx", + "hash": "16578034173194686970" + }, + { + "file": "packages/react-icons-mdl2/src/components/SurveyQuestionsIcon.tsx", + "hash": "4132590427036402223" + }, + { + "file": "packages/react-icons-mdl2/src/components/SwiftLogoIcon.tsx", + "hash": "1081384326788574017" + }, + { + "file": "packages/react-icons-mdl2/src/components/SwitchIcon.tsx", + "hash": "8855533022142411121" + }, + { + "file": "packages/react-icons-mdl2/src/components/SwitchUserIcon.tsx", + "hash": "122057253456993291" + }, + { + "file": "packages/react-icons-mdl2/src/components/SwitcherStartEndIcon.tsx", + "hash": "2850956600846505452" + }, + { + "file": "packages/react-icons-mdl2/src/components/SyncFolderIcon.tsx", + "hash": "485126926028164730" + }, + { + "file": "packages/react-icons-mdl2/src/components/SyncIcon.tsx", + "hash": "16599196910082932774" + }, + { + "file": "packages/react-icons-mdl2/src/components/SyncOccurenceIcon.tsx", + "hash": "17681248839885934426" + }, + { + "file": "packages/react-icons-mdl2/src/components/SyncStatusIcon.tsx", + "hash": "8831246306662635170" + }, + { + "file": "packages/react-icons-mdl2/src/components/SyncStatusSolidIcon.tsx", + "hash": "8739424996180616133" + }, + { + "file": "packages/react-icons-mdl2/src/components/SyncToPCIcon.tsx", + "hash": "15438372302526567778" + }, + { + "file": "packages/react-icons-mdl2/src/components/SystemIcon.tsx", + "hash": "2334158159692651821" + }, + { + "file": "packages/react-icons-mdl2/src/components/TVMonitorIcon.tsx", + "hash": "7695717662123278557" + }, + { + "file": "packages/react-icons-mdl2/src/components/TVMonitorSelectedIcon.tsx", + "hash": "18154342861238382312" + }, + { + "file": "packages/react-icons-mdl2/src/components/TabCenterIcon.tsx", + "hash": "16365803943440280956" + }, + { + "file": "packages/react-icons-mdl2/src/components/TabIcon.tsx", + "hash": "11709620884374064982" + }, + { + "file": "packages/react-icons-mdl2/src/components/TabOneColumnIcon.tsx", + "hash": "662354409894200120" + }, + { + "file": "packages/react-icons-mdl2/src/components/TabThreeColumnIcon.tsx", + "hash": "4409269179587711443" + }, + { + "file": "packages/react-icons-mdl2/src/components/TabTwoColumnIcon.tsx", + "hash": "12412377849340051037" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableBrandedColumnIcon.tsx", + "hash": "16290784899039879524" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableBrandedRowIcon.tsx", + "hash": "13986843412325957834" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableComputedIcon.tsx", + "hash": "3949507090249516656" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableFirstColumnIcon.tsx", + "hash": "1884071651585108751" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableGroupIcon.tsx", + "hash": "21416960461031223" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableHeaderRowIcon.tsx", + "hash": "10415755673543766256" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableIcon.tsx", + "hash": "7979377382125911255" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableLastColumnIcon.tsx", + "hash": "10783688531401041457" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableLinkIcon.tsx", + "hash": "5973576160447014475" + }, + { + "file": "packages/react-icons-mdl2/src/components/TableTotalRowIcon.tsx", + "hash": "4092767187779916452" + }, + { + "file": "packages/react-icons-mdl2/src/components/TabletIcon.tsx", + "hash": "9899473991876600081" + }, + { + "file": "packages/react-icons-mdl2/src/components/TabletModeIcon.tsx", + "hash": "13921024654679220987" + }, + { + "file": "packages/react-icons-mdl2/src/components/TabletSelectedIcon.tsx", + "hash": "6712523699481882152" + }, + { + "file": "packages/react-icons-mdl2/src/components/TagGroupIcon.tsx", + "hash": "17594586503679999232" + }, + { + "file": "packages/react-icons-mdl2/src/components/TagIcon.tsx", + "hash": "13685325487298013991" + }, + { + "file": "packages/react-icons-mdl2/src/components/TagSolidIcon.tsx", + "hash": "2495836356536292545" + }, + { + "file": "packages/react-icons-mdl2/src/components/TagUnknown12Icon.tsx", + "hash": "2598473569960929343" + }, + { + "file": "packages/react-icons-mdl2/src/components/TagUnknown12MirrorIcon.tsx", + "hash": "5777145997851759824" + }, + { + "file": "packages/react-icons-mdl2/src/components/TagUnknownIcon.tsx", + "hash": "14497305695419693170" + }, + { + "file": "packages/react-icons-mdl2/src/components/TagUnknownMirrorIcon.tsx", + "hash": "17711266976664051055" + }, + { + "file": "packages/react-icons-mdl2/src/components/TaskGroupIcon.tsx", + "hash": "11785630834522752706" + }, + { + "file": "packages/react-icons-mdl2/src/components/TaskGroupMirroredIcon.tsx", + "hash": "4676750509033243593" + }, + { + "file": "packages/react-icons-mdl2/src/components/TaskListIcon.tsx", + "hash": "5954157389475038868" + }, + { + "file": "packages/react-icons-mdl2/src/components/TaskManagerIcon.tsx", + "hash": "18017696453288394664" + }, + { + "file": "packages/react-icons-mdl2/src/components/TaskManagerMirroredIcon.tsx", + "hash": "17364828386753924183" + }, + { + "file": "packages/react-icons-mdl2/src/components/TaskSolidIcon.tsx", + "hash": "16676768704629323954" + }, + { + "file": "packages/react-icons-mdl2/src/components/TaskboardIcon.tsx", + "hash": "1465072882454830290" + }, + { + "file": "packages/react-icons-mdl2/src/components/TaxiIcon.tsx", + "hash": "9939668690623139701" + }, + { + "file": "packages/react-icons-mdl2/src/components/TeamFavoriteIcon.tsx", + "hash": "8834906264133174991" + }, + { + "file": "packages/react-icons-mdl2/src/components/TeamworkIcon.tsx", + "hash": "1385894294154520673" + }, + { + "file": "packages/react-icons-mdl2/src/components/TeethIcon.tsx", + "hash": "1039096284028888661" + }, + { + "file": "packages/react-icons-mdl2/src/components/TelemarketerIcon.tsx", + "hash": "6202991518436709224" + }, + { + "file": "packages/react-icons-mdl2/src/components/TemporaryUserIcon.tsx", + "hash": "2390283079187540413" + }, + { + "file": "packages/react-icons-mdl2/src/components/TennisIcon.tsx", + "hash": "9939280365510716542" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestAutoSolidIcon.tsx", + "hash": "17552513329626189757" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestBeakerIcon.tsx", + "hash": "5724817032542410021" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestBeakerSolidIcon.tsx", + "hash": "16039530830701812924" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestCaseIcon.tsx", + "hash": "3361764228168393807" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestExploreSolidIcon.tsx", + "hash": "15688596397733369335" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestImpactSolidIcon.tsx", + "hash": "4838804235311193529" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestParameterIcon.tsx", + "hash": "13233135773568991009" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestPlanIcon.tsx", + "hash": "5840777192923539247" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestStepIcon.tsx", + "hash": "2539868854009493894" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestSuiteIcon.tsx", + "hash": "11612852314150027326" + }, + { + "file": "packages/react-icons-mdl2/src/components/TestUserSolidIcon.tsx", + "hash": "17021241125114305919" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextAlignBottomIcon.tsx", + "hash": "15595304680101858004" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextAlignMiddleIcon.tsx", + "hash": "13088597654272774899" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextAlignTopIcon.tsx", + "hash": "12409789330926784540" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextBoxIcon.tsx", + "hash": "12640038380248915976" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextCalloutIcon.tsx", + "hash": "8768374329086488041" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextDocumentEditIcon.tsx", + "hash": "14033498016627891288" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextDocumentIcon.tsx", + "hash": "15681509163935654252" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextDocumentSettingsIcon.tsx", + "hash": "243054128054786567" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextDocumentSharedIcon.tsx", + "hash": "10056072914160791288" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextFieldIcon.tsx", + "hash": "16554991455092500846" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextOverflowIcon.tsx", + "hash": "14266834217281845925" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextParagraphOptionIcon.tsx", + "hash": "10524706672158436483" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextRecognitionIcon.tsx", + "hash": "5475597562621601112" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextRotate270DegreesIcon.tsx", + "hash": "3868367543183284951" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextRotate90DegreesIcon.tsx", + "hash": "7709931387604465793" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextRotateHorizontalIcon.tsx", + "hash": "9332426960722168438" + }, + { + "file": "packages/react-icons-mdl2/src/components/TextRotationIcon.tsx", + "hash": "5024976556154126592" + }, + { + "file": "packages/react-icons-mdl2/src/components/ThisPCIcon.tsx", + "hash": "4762656769096430490" + }, + { + "file": "packages/react-icons-mdl2/src/components/ThreeQuarterCircleIcon.tsx", + "hash": "14952954392359190791" + }, + { + "file": "packages/react-icons-mdl2/src/components/ThumbnailViewIcon.tsx", + "hash": "360297995023738561" + }, + { + "file": "packages/react-icons-mdl2/src/components/ThumbnailViewMirroredIcon.tsx", + "hash": "17846539039875697634" + }, + { + "file": "packages/react-icons-mdl2/src/components/ThunderstormsIcon.tsx", + "hash": "9106945935558199340" + }, + { + "file": "packages/react-icons-mdl2/src/components/TicketIcon.tsx", + "hash": "13190640847014651075" + }, + { + "file": "packages/react-icons-mdl2/src/components/Tiles2Icon.tsx", + "hash": "17203248268860884999" + }, + { + "file": "packages/react-icons-mdl2/src/components/TilesIcon.tsx", + "hash": "2672010188457684975" + }, + { + "file": "packages/react-icons-mdl2/src/components/TimeEntryIcon.tsx", + "hash": "12031904183135700464" + }, + { + "file": "packages/react-icons-mdl2/src/components/TimePickerIcon.tsx", + "hash": "8958829646877776263" + }, + { + "file": "packages/react-icons-mdl2/src/components/TimeSheetIcon.tsx", + "hash": "15539474987423139369" + }, + { + "file": "packages/react-icons-mdl2/src/components/TimelineDeliveryIcon.tsx", + "hash": "514264487208080729" + }, + { + "file": "packages/react-icons-mdl2/src/components/TimelineIcon.tsx", + "hash": "2940680805171877867" + }, + { + "file": "packages/react-icons-mdl2/src/components/TimelineMatrixViewIcon.tsx", + "hash": "5163027931014784165" + }, + { + "file": "packages/react-icons-mdl2/src/components/TimelineProgressIcon.tsx", + "hash": "12837504728733867949" + }, + { + "file": "packages/react-icons-mdl2/src/components/TimerIcon.tsx", + "hash": "10813898219243920306" + }, + { + "file": "packages/react-icons-mdl2/src/components/ToggleBorderIcon.tsx", + "hash": "14032634263947972089" + }, + { + "file": "packages/react-icons-mdl2/src/components/ToggleFilledIcon.tsx", + "hash": "15135642495766784714" + }, + { + "file": "packages/react-icons-mdl2/src/components/ToggleLeftIcon.tsx", + "hash": "2486283043481064334" + }, + { + "file": "packages/react-icons-mdl2/src/components/ToggleRightIcon.tsx", + "hash": "10855279613245750547" + }, + { + "file": "packages/react-icons-mdl2/src/components/ToggleThumbIcon.tsx", + "hash": "2749474144310917420" + }, + { + "file": "packages/react-icons-mdl2/src/components/TollIcon.tsx", + "hash": "3314679699864345856" + }, + { + "file": "packages/react-icons-mdl2/src/components/ToolboxIcon.tsx", + "hash": "4839246670380035611" + }, + { + "file": "packages/react-icons-mdl2/src/components/TotalIcon.tsx", + "hash": "4185728115118303116" + }, + { + "file": "packages/react-icons-mdl2/src/components/TouchIcon.tsx", + "hash": "10861349985175317319" + }, + { + "file": "packages/react-icons-mdl2/src/components/TouchPointerIcon.tsx", + "hash": "9852648877114095369" + }, + { + "file": "packages/react-icons-mdl2/src/components/TrackersIcon.tsx", + "hash": "13770614269976701744" + }, + { + "file": "packages/react-icons-mdl2/src/components/TrackersMirroredIcon.tsx", + "hash": "1805565580387664998" + }, + { + "file": "packages/react-icons-mdl2/src/components/TrainIcon.tsx", + "hash": "15721639617417914895" + }, + { + "file": "packages/react-icons-mdl2/src/components/TrainSolidIcon.tsx", + "hash": "976821243448214259" + }, + { + "file": "packages/react-icons-mdl2/src/components/TransferCallIcon.tsx", + "hash": "16048110274897933973" + }, + { + "file": "packages/react-icons-mdl2/src/components/TransitionEffectIcon.tsx", + "hash": "16289364194199249024" + }, + { + "file": "packages/react-icons-mdl2/src/components/TransitionIcon.tsx", + "hash": "2619796789854161438" + }, + { + "file": "packages/react-icons-mdl2/src/components/TransitionPopIcon.tsx", + "hash": "10155185082051010804" + }, + { + "file": "packages/react-icons-mdl2/src/components/TransitionPushIcon.tsx", + "hash": "16646538414614373831" + }, + { + "file": "packages/react-icons-mdl2/src/components/TranslateIcon.tsx", + "hash": "10526960969593700992" + }, + { + "file": "packages/react-icons-mdl2/src/components/Trending12Icon.tsx", + "hash": "2106873409364248506" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleDown12Icon.tsx", + "hash": "171981401139167507" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleLeft12Icon.tsx", + "hash": "16648485182410559664" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleRight12Icon.tsx", + "hash": "5798641180598467117" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleShapeIcon.tsx", + "hash": "17092372385959061650" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleShapeSolidIcon.tsx", + "hash": "688773254519750686" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleSolidDown12Icon.tsx", + "hash": "12573133610066222696" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleSolidIcon.tsx", + "hash": "6797382738731967916" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleSolidLeft12Icon.tsx", + "hash": "10900009224046619716" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleSolidRight12Icon.tsx", + "hash": "6567523118415963780" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleSolidUp12Icon.tsx", + "hash": "5329892573400991169" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriangleUp12Icon.tsx", + "hash": "5945898828306457746" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriggerApprovalIcon.tsx", + "hash": "10529063875031607672" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriggerAutoIcon.tsx", + "hash": "11476050854862480564" + }, + { + "file": "packages/react-icons-mdl2/src/components/TriggerUserIcon.tsx", + "hash": "4184658008236004234" + }, + { + "file": "packages/react-icons-mdl2/src/components/TrimEndIcon.tsx", + "hash": "4965514454211828622" + }, + { + "file": "packages/react-icons-mdl2/src/components/TrimIcon.tsx", + "hash": "4807443960521026868" + }, + { + "file": "packages/react-icons-mdl2/src/components/TrimStartIcon.tsx", + "hash": "17844194230036320959" + }, + { + "file": "packages/react-icons-mdl2/src/components/TripleColumnEditIcon.tsx", + "hash": "12058208683152277294" + }, + { + "file": "packages/react-icons-mdl2/src/components/TripleColumnIcon.tsx", + "hash": "13361733788665401723" + }, + { + "file": "packages/react-icons-mdl2/src/components/TripleColumnWideIcon.tsx", + "hash": "15774745564128248294" + }, + { + "file": "packages/react-icons-mdl2/src/components/Trophy2Icon.tsx", + "hash": "3673672684917614623" + }, + { + "file": "packages/react-icons-mdl2/src/components/Trophy2SolidIcon.tsx", + "hash": "12793846497707369710" + }, + { + "file": "packages/react-icons-mdl2/src/components/TrophyIcon.tsx", + "hash": "6385230499807289860" + }, + { + "file": "packages/react-icons-mdl2/src/components/TurnRightIcon.tsx", + "hash": "15099009340328704249" + }, + { + "file": "packages/react-icons-mdl2/src/components/TwelvePointStarIcon.tsx", + "hash": "2615911893080009096" + }, + { + "file": "packages/react-icons-mdl2/src/components/TwitterLogoIcon.tsx", + "hash": "14191461990643700502" + }, + { + "file": "packages/react-icons-mdl2/src/components/URLBlockIcon.tsx", + "hash": "1925379512545042518" + }, + { + "file": "packages/react-icons-mdl2/src/components/USBIcon.tsx", + "hash": "15098287371858184580" + }, + { + "file": "packages/react-icons-mdl2/src/components/UmbrellaIcon.tsx", + "hash": "9137237141480703628" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnSetColorIcon.tsx", + "hash": "4950692113525656602" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnderlineIcon.tsx", + "hash": "14365306570852551521" + }, + { + "file": "packages/react-icons-mdl2/src/components/UndoIcon.tsx", + "hash": "5047100941423645842" + }, + { + "file": "packages/react-icons-mdl2/src/components/Uneditable2Icon.tsx", + "hash": "9311493851993525006" + }, + { + "file": "packages/react-icons-mdl2/src/components/Uneditable2MirroredIcon.tsx", + "hash": "3871595863416323192" + }, + { + "file": "packages/react-icons-mdl2/src/components/UneditableIcon.tsx", + "hash": "6404617348036391786" + }, + { + "file": "packages/react-icons-mdl2/src/components/UneditableMirroredIcon.tsx", + "hash": "8726101644786177988" + }, + { + "file": "packages/react-icons-mdl2/src/components/UneditableSolid12Icon.tsx", + "hash": "7635003590489640246" + }, + { + "file": "packages/react-icons-mdl2/src/components/UneditableSolidMirrored12Icon.tsx", + "hash": "9921092478533934651" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnfavoriteIcon.tsx", + "hash": "17681077919815737489" + }, + { + "file": "packages/react-icons-mdl2/src/components/UngroupObjectIcon.tsx", + "hash": "14882233682302492470" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnknownCallIcon.tsx", + "hash": "5029389003388271009" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnknownIcon.tsx", + "hash": "1735921039361749128" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnknownMirroredIcon.tsx", + "hash": "9296861312750383545" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnknownMirroredSolidIcon.tsx", + "hash": "2077397235634052500" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnknownSolidIcon.tsx", + "hash": "12375948387710609319" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnlockIcon.tsx", + "hash": "3440807599248599373" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnlockSolidIcon.tsx", + "hash": "6894086335639184342" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnpinIcon.tsx", + "hash": "7061079865495252339" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnpublishContentIcon.tsx", + "hash": "8092480453385525234" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnstackSelectedIcon.tsx", + "hash": "12346661599890970553" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnsubscribeIcon.tsx", + "hash": "3774803546099902552" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnsyncFolderIcon.tsx", + "hash": "15440579740730076712" + }, + { + "file": "packages/react-icons-mdl2/src/components/UnsyncOccurenceIcon.tsx", + "hash": "1425590890607565353" + }, + { + "file": "packages/react-icons-mdl2/src/components/UntagIcon.tsx", + "hash": "8416428745272919438" + }, + { + "file": "packages/react-icons-mdl2/src/components/UpIcon.tsx", + "hash": "1277400271266174921" + }, + { + "file": "packages/react-icons-mdl2/src/components/UpdateRestoreIcon.tsx", + "hash": "549519074071086844" + }, + { + "file": "packages/react-icons-mdl2/src/components/UpgradeAnalysisIcon.tsx", + "hash": "16560770761218336942" + }, + { + "file": "packages/react-icons-mdl2/src/components/UploadIcon.tsx", + "hash": "11995652079479661348" + }, + { + "file": "packages/react-icons-mdl2/src/components/UserEventIcon.tsx", + "hash": "3769311157832514887" + }, + { + "file": "packages/react-icons-mdl2/src/components/UserFollowedIcon.tsx", + "hash": "5966706362599236619" + }, + { + "file": "packages/react-icons-mdl2/src/components/UserGaugeIcon.tsx", + "hash": "18432081529086621043" + }, + { + "file": "packages/react-icons-mdl2/src/components/UserOptionalIcon.tsx", + "hash": "5662138790735657746" + }, + { + "file": "packages/react-icons-mdl2/src/components/UserPauseIcon.tsx", + "hash": "6151704219333905884" + }, + { + "file": "packages/react-icons-mdl2/src/components/UserRemoveIcon.tsx", + "hash": "11588591275980118322" + }, + { + "file": "packages/react-icons-mdl2/src/components/UserSyncIcon.tsx", + "hash": "17310207728181411047" + }, + { + "file": "packages/react-icons-mdl2/src/components/UserWarningIcon.tsx", + "hash": "14669492216490763227" + }, + { + "file": "packages/react-icons-mdl2/src/components/VBIcon.tsx", + "hash": "9829828778039629487" + }, + { + "file": "packages/react-icons-mdl2/src/components/VacationIcon.tsx", + "hash": "8022110324115674063" + }, + { + "file": "packages/react-icons-mdl2/src/components/VaccinationIcon.tsx", + "hash": "1178726231502318145" + }, + { + "file": "packages/react-icons-mdl2/src/components/Variable2Icon.tsx", + "hash": "755960883817735294" + }, + { + "file": "packages/react-icons-mdl2/src/components/VariableGroupIcon.tsx", + "hash": "8436465373430061460" + }, + { + "file": "packages/react-icons-mdl2/src/components/VariableIcon.tsx", + "hash": "2609031573367013787" + }, + { + "file": "packages/react-icons-mdl2/src/components/VennDiagramIcon.tsx", + "hash": "6647072432606819893" + }, + { + "file": "packages/react-icons-mdl2/src/components/VerifiedBrandIcon.tsx", + "hash": "505586560668839378" + }, + { + "file": "packages/react-icons-mdl2/src/components/VerifiedBrandSolidIcon.tsx", + "hash": "8937652609160012839" + }, + { + "file": "packages/react-icons-mdl2/src/components/VersionControlPushIcon.tsx", + "hash": "1300042390675965738" + }, + { + "file": "packages/react-icons-mdl2/src/components/VerticalDistributeCenterIcon.tsx", + "hash": "13794147682172231350" + }, + { + "file": "packages/react-icons-mdl2/src/components/Video360GenericIcon.tsx", + "hash": "17226930219280265807" + }, + { + "file": "packages/react-icons-mdl2/src/components/VideoIcon.tsx", + "hash": "12278496161795627048" + }, + { + "file": "packages/react-icons-mdl2/src/components/VideoLightOffIcon.tsx", + "hash": "8856116492274615799" + }, + { + "file": "packages/react-icons-mdl2/src/components/VideoOff2Icon.tsx", + "hash": "6271894715959040359" + }, + { + "file": "packages/react-icons-mdl2/src/components/VideoOffIcon.tsx", + "hash": "10226797869303350920" + }, + { + "file": "packages/react-icons-mdl2/src/components/VideoSearchIcon.tsx", + "hash": "7205577982062949833" + }, + { + "file": "packages/react-icons-mdl2/src/components/VideoSolidIcon.tsx", + "hash": "8537354773411979077" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewAll2Icon.tsx", + "hash": "11868068469109024683" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewAllIcon.tsx", + "hash": "16818098509911006179" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewDashboardIcon.tsx", + "hash": "17093070343339581297" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewIcon.tsx", + "hash": "3174608005014370504" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewInARIcon.tsx", + "hash": "2288265271718830259" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewListGroupIcon.tsx", + "hash": "16872704757062896557" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewListIcon.tsx", + "hash": "13188750737974225743" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewListTreeIcon.tsx", + "hash": "18233067532528468437" + }, + { + "file": "packages/react-icons-mdl2/src/components/ViewOriginalIcon.tsx", + "hash": "3170951622338842638" + }, + { + "file": "packages/react-icons-mdl2/src/components/VisuallyImpairedIcon.tsx", + "hash": "4029080719537829282" + }, + { + "file": "packages/react-icons-mdl2/src/components/VisualsFolderIcon.tsx", + "hash": "15342863668915656662" + }, + { + "file": "packages/react-icons-mdl2/src/components/VisualsStoreIcon.tsx", + "hash": "3301177936267219314" + }, + { + "file": "packages/react-icons-mdl2/src/components/VivaEngageIcon.tsx", + "hash": "342057237145551020" + }, + { + "file": "packages/react-icons-mdl2/src/components/VoicemailForwardIcon.tsx", + "hash": "11252099681565531834" + }, + { + "file": "packages/react-icons-mdl2/src/components/VoicemailIRMIcon.tsx", + "hash": "5784027932985602268" + }, + { + "file": "packages/react-icons-mdl2/src/components/VoicemailReplyIcon.tsx", + "hash": "2670152969925082360" + }, + { + "file": "packages/react-icons-mdl2/src/components/Volume0Icon.tsx", + "hash": "14711966802494310008" + }, + { + "file": "packages/react-icons-mdl2/src/components/Volume1Icon.tsx", + "hash": "8628403532537549482" + }, + { + "file": "packages/react-icons-mdl2/src/components/Volume2Icon.tsx", + "hash": "10947955841676995522" + }, + { + "file": "packages/react-icons-mdl2/src/components/Volume3Icon.tsx", + "hash": "6255732894877839840" + }, + { + "file": "packages/react-icons-mdl2/src/components/VolumeDisabledIcon.tsx", + "hash": "15274266247179145671" + }, + { + "file": "packages/react-icons-mdl2/src/components/WaffleIcon.tsx", + "hash": "2950068325310779157" + }, + { + "file": "packages/react-icons-mdl2/src/components/WaitlistConfirmIcon.tsx", + "hash": "16350565265423816673" + }, + { + "file": "packages/react-icons-mdl2/src/components/WaitlistConfirmMirroredIcon.tsx", + "hash": "3192900391078337040" + }, + { + "file": "packages/react-icons-mdl2/src/components/Warning12Icon.tsx", + "hash": "10414927247423762544" + }, + { + "file": "packages/react-icons-mdl2/src/components/WarningIcon.tsx", + "hash": "11558870242564616294" + }, + { + "file": "packages/react-icons-mdl2/src/components/WarningSolidIcon.tsx", + "hash": "4806809002654438437" + }, + { + "file": "packages/react-icons-mdl2/src/components/WavingHandIcon.tsx", + "hash": "5328126403369927808" + }, + { + "file": "packages/react-icons-mdl2/src/components/WebComponentsIcon.tsx", + "hash": "6368115053369553368" + }, + { + "file": "packages/react-icons-mdl2/src/components/WebEnvironmentIcon.tsx", + "hash": "381704530527454706" + }, + { + "file": "packages/react-icons-mdl2/src/components/WebPublishIcon.tsx", + "hash": "14472183168093975238" + }, + { + "file": "packages/react-icons-mdl2/src/components/WebTemplateIcon.tsx", + "hash": "7673288651544450874" + }, + { + "file": "packages/react-icons-mdl2/src/components/Webcam2Icon.tsx", + "hash": "11408324897112205977" + }, + { + "file": "packages/react-icons-mdl2/src/components/Webcam2OffIcon.tsx", + "hash": "11112019980159583410" + }, + { + "file": "packages/react-icons-mdl2/src/components/WebsiteIcon.tsx", + "hash": "109363059098112457" + }, + { + "file": "packages/react-icons-mdl2/src/components/WeightsIcon.tsx", + "hash": "9131258169715892532" + }, + { + "file": "packages/react-icons-mdl2/src/components/WheelchairIcon.tsx", + "hash": "16945724465006768625" + }, + { + "file": "packages/react-icons-mdl2/src/components/WifiEthernetIcon.tsx", + "hash": "5960548132930795026" + }, + { + "file": "packages/react-icons-mdl2/src/components/WifiWarning4Icon.tsx", + "hash": "7927677858534751771" + }, + { + "file": "packages/react-icons-mdl2/src/components/WindDirectionIcon.tsx", + "hash": "9221883227530736535" + }, + { + "file": "packages/react-icons-mdl2/src/components/WindowEditIcon.tsx", + "hash": "4076965312930675053" + }, + { + "file": "packages/react-icons-mdl2/src/components/WinesIcon.tsx", + "hash": "1465806768413311133" + }, + { + "file": "packages/react-icons-mdl2/src/components/WipePhoneIcon.tsx", + "hash": "12670699704701586796" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorkFlowIcon.tsx", + "hash": "4175996887759720125" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorkIcon.tsx", + "hash": "7487163304911749789" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorkItemAlertIcon.tsx", + "hash": "18002172167790808215" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorkItemBarIcon.tsx", + "hash": "10251941423352191173" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorkItemBarSolidIcon.tsx", + "hash": "8361787609476204851" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorkItemBugIcon.tsx", + "hash": "16243598830165268723" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorkItemIcon.tsx", + "hash": "7038981634753058738" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorkforceManagementIcon.tsx", + "hash": "358477104320586984" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorldClockIcon.tsx", + "hash": "3089081544197638278" + }, + { + "file": "packages/react-icons-mdl2/src/components/WorldIcon.tsx", + "hash": "649726162345103873" + }, + { + "file": "packages/react-icons-mdl2/src/components/XamarinLogoIcon.tsx", + "hash": "14047036378370404231" + }, + { + "file": "packages/react-icons-mdl2/src/components/XboxControllerIcon.tsx", + "hash": "9369385320898542725" + }, + { + "file": "packages/react-icons-mdl2/src/components/ZipFolderIcon.tsx", + "hash": "9100929772659195530" + }, + { + "file": "packages/react-icons-mdl2/src/components/ZoomIcon.tsx", + "hash": "5661510962276466081" + }, + { + "file": "packages/react-icons-mdl2/src/components/ZoomInIcon.tsx", + "hash": "6270376369614251228" + }, + { + "file": "packages/react-icons-mdl2/src/components/ZoomOutIcon.tsx", + "hash": "3454829544366928700" + }, + { + "file": "packages/react-icons-mdl2/src/components/ZoomToFitIcon.tsx", + "hash": "3268567365489041315" + }, + { + "file": "packages/react-icons-mdl2/src/components/eDiscoveryIcon.tsx", + "hash": "7159112877709818566" + }, + { + "file": "packages/react-icons-mdl2/src/components/iOSAppStoreLogoIcon.tsx", + "hash": "7627089926395288748" + }, + { + "file": "packages/react-icons-mdl2/src/components.test.tsx", + "hash": "6663979517663972277" + }, + { + "file": "packages/react-icons-mdl2/src/index.ts", + "hash": "10045948948610575782" + }, + { + "file": "packages/react-icons-mdl2/src/utils/SvgIcon.scss", + "hash": "17239050675246297646" + }, + { + "file": "packages/react-icons-mdl2/src/utils/SvgIcon.types.ts", + "hash": "6367189759970436552" + }, + { + "file": "packages/react-icons-mdl2/src/utils/createSvgIcon.test.tsx", + "hash": "2001542643760954125" + }, + { + "file": "packages/react-icons-mdl2/src/utils/createSvgIcon.ts", + "hash": "11651772376542528354" + }, + { + "file": "packages/react-icons-mdl2/src/utils/types.ts", + "hash": "14103007282502894067" + }, + { + "file": "packages/react-icons-mdl2/src/version.ts", + "hash": "1883088086173265942" + }, + { + "file": "packages/react-icons-mdl2/tsconfig.json", + "hash": "10956001999050876945" + }, + { + "file": "packages/react-icons-mdl2/webpack.config.js", + "hash": "3997384588979449621" + } + ], + "@fluentui/react-switch": [ + { + "file": "packages/react-components/react-switch/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-switch/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-switch/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-switch/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-switch/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-switch/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-switch/CHANGELOG.json", + "hash": "93480200567092769" + }, + { + "file": "packages/react-components/react-switch/CHANGELOG.md", + "hash": "4993373179594467646" + }, + { + "file": "packages/react-components/react-switch/LICENSE", + "hash": "7758643350479616012" + }, + { + "file": "packages/react-components/react-switch/README.md", + "hash": "6695124769051641866" + }, + { + "file": "packages/react-components/react-switch/bundle-size/Switch.fixture.js", + "hash": "18142234447983599749" + }, + { + "file": "packages/react-components/react-switch/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-switch/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-switch/docs/MIGRATION.md", + "hash": "15118859291030401714" + }, + { + "file": "packages/react-components/react-switch/docs/Spec.md", + "hash": "17548703377455617725" + }, + { + "file": "packages/react-components/react-switch/etc/react-switch.api.md", + "hash": "10388195155800950811" + }, + { + "file": "packages/react-components/react-switch/jest.config.js", + "hash": "11796909119431137923" + }, + { + "file": "packages/react-components/react-switch/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-switch/package.json", + "hash": "13345183038821483661", + "deps": [ + "@fluentui/react-field", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-label", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-switch/project.json", + "hash": "17239642703487167945" + }, + { + "file": "packages/react-components/react-switch/src/Switch.ts", + "hash": "4931084963559363607" + }, + { + "file": "packages/react-components/react-switch/src/components/Switch/Switch.test.tsx", + "hash": "7606500747307139081" + }, + { + "file": "packages/react-components/react-switch/src/components/Switch/Switch.tsx", + "hash": "159146658299780809" + }, + { + "file": "packages/react-components/react-switch/src/components/Switch/Switch.types.ts", + "hash": "3218403624876301764" + }, + { + "file": "packages/react-components/react-switch/src/components/Switch/index.ts", + "hash": "792032061260370567" + }, + { + "file": "packages/react-components/react-switch/src/components/Switch/renderSwitch.tsx", + "hash": "10093392201553883072" + }, + { + "file": "packages/react-components/react-switch/src/components/Switch/useSwitch.tsx", + "hash": "12151981653417627061" + }, + { + "file": "packages/react-components/react-switch/src/components/Switch/useSwitchStyles.styles.ts", + "hash": "5898159194979167501" + }, + { + "file": "packages/react-components/react-switch/src/index.ts", + "hash": "13437810719619271071" + }, + { + "file": "packages/react-components/react-switch/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/SwitchBestPractices.md", + "hash": "8459364606907620813" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/SwitchChecked.stories.tsx", + "hash": "3140098803061046154" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/SwitchDefault.stories.tsx", + "hash": "3109229446861735999" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/SwitchDescription.md", + "hash": "16734928102220688292" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/SwitchDisabled.stories.tsx", + "hash": "2972558941372219207" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/SwitchLabel.stories.tsx", + "hash": "6846171252178115747" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/SwitchLabelWrapping.stories.tsx", + "hash": "13592280099387883871" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/SwitchRequired.stories.tsx", + "hash": "341782030343560004" + }, + { + "file": "packages/react-components/react-switch/stories/Switch/index.stories.tsx", + "hash": "8026541863353447357" + }, + { + "file": "packages/react-components/react-switch/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-switch/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-switch/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/e2e": [ + { + "file": "packages/fluentui/e2e/.eslintrc.json", + "hash": "4582290292281873136" + }, + { + "file": "packages/fluentui/e2e/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/e2e/README.md", + "hash": "7359165508010786092" + }, + { + "file": "packages/fluentui/e2e/babel.config.js", + "hash": "7654395597360391156" + }, + { + "file": "packages/fluentui/e2e/cypress/support/commands.js", + "hash": "4346932210195998935" + }, + { + "file": "packages/fluentui/e2e/cypress/support/e2e.js", + "hash": "8958390892426780845" + }, + { + "file": "packages/fluentui/e2e/cypress/support/index.d.ts", + "hash": "1050349724913102223" + }, + { + "file": "packages/fluentui/e2e/cypress.config.ts", + "hash": "10650622636735033301" + }, + { + "file": "packages/fluentui/e2e/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/e2e/package.json", + "hash": "12477681538209041201", + "deps": [ + "@fluentui/accessibility", + "@fluentui/react", + "@fluentui/react-icons-northstar", + "@fluentui/react-northstar", + "@fluentui/react-northstar-prototypes", + "npm:@types/react-router-dom", + "npm:lerna-alias", + "npm:lodash", + "npm:react-router-dom", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp" + ] + }, + { + "file": "packages/fluentui/e2e/project.json", + "hash": "16913508845340459099" + }, + { + "file": "packages/fluentui/e2e/server/E2EExample.tsx", + "hash": "3499014286167000988" + }, + { + "file": "packages/fluentui/e2e/server/app.tsx", + "hash": "16202489186045223673" + }, + { + "file": "packages/fluentui/e2e/server/index.html", + "hash": "15258269720062780830" + }, + { + "file": "packages/fluentui/e2e/server/routes.ts", + "hash": "11057375900294827994" + }, + { + "file": "packages/fluentui/e2e/tests/carouselClickableContent-example.tsx", + "hash": "4743069259029583882" + }, + { + "file": "packages/fluentui/e2e/tests/carouselClickableContent.spec.ts", + "hash": "16237255077237516656" + }, + { + "file": "packages/fluentui/e2e/tests/chatMessageActionMenu-example.tsx", + "hash": "5076963271459573150" + }, + { + "file": "packages/fluentui/e2e/tests/chatMessageActionMenu.spec.ts", + "hash": "5324476327709994437" + }, + { + "file": "packages/fluentui/e2e/tests/datepicker-example.tsx", + "hash": "1803629627979009758" + }, + { + "file": "packages/fluentui/e2e/tests/datepicker.spec.ts", + "hash": "5328620499026462603" + }, + { + "file": "packages/fluentui/e2e/tests/datepickerWithControlledSelectedDate-example.tsx", + "hash": "17232189297346500144" + }, + { + "file": "packages/fluentui/e2e/tests/datepickerWithControlledSelectedDate.spec.ts", + "hash": "9972000812362213438" + }, + { + "file": "packages/fluentui/e2e/tests/dialog-example.tsx", + "hash": "14670395535679878228" + }, + { + "file": "packages/fluentui/e2e/tests/dialog.spec.ts", + "hash": "9080139584052903217" + }, + { + "file": "packages/fluentui/e2e/tests/dialogInDialog-example.tsx", + "hash": "5368077115082155956" + }, + { + "file": "packages/fluentui/e2e/tests/dialogInDialog.spec.ts", + "hash": "9403986057790407239" + }, + { + "file": "packages/fluentui/e2e/tests/dialogInDialogWithDropdown-example.tsx", + "hash": "10611038361335342361" + }, + { + "file": "packages/fluentui/e2e/tests/dialogInDialogWithDropdown.spec.ts", + "hash": "6276305052387579257" + }, + { + "file": "packages/fluentui/e2e/tests/dialogInPopup-example.tsx", + "hash": "7674716831651329345" + }, + { + "file": "packages/fluentui/e2e/tests/dialogInPopup.spec.ts", + "hash": "14897258850010389359" + }, + { + "file": "packages/fluentui/e2e/tests/dialogPreventScroll-example.tsx", + "hash": "5559084864562935041" + }, + { + "file": "packages/fluentui/e2e/tests/dialogPreventScroll.spec.ts", + "hash": "9250859085534201583" + }, + { + "file": "packages/fluentui/e2e/tests/dialogWithDropdown-example.tsx", + "hash": "9967621738597251618" + }, + { + "file": "packages/fluentui/e2e/tests/dialogWithDropdown.spec.ts", + "hash": "10460346809481457060" + }, + { + "file": "packages/fluentui/e2e/tests/dropdown-example.tsx", + "hash": "7085571512538860924" + }, + { + "file": "packages/fluentui/e2e/tests/dropdown.spec.ts", + "hash": "12180675537760796473" + }, + { + "file": "packages/fluentui/e2e/tests/dropdownMoveFocusOnTab-example.tsx", + "hash": "1590492383482503996" + }, + { + "file": "packages/fluentui/e2e/tests/dropdownMoveFocusOnTab.spec.ts", + "hash": "16366076377253442699" + }, + { + "file": "packages/fluentui/e2e/tests/dropdownSearch-example.tsx", + "hash": "2243581698923060983" + }, + { + "file": "packages/fluentui/e2e/tests/dropdownSearch.spec.ts", + "hash": "8222488631505443553" + }, + { + "file": "packages/fluentui/e2e/tests/fabricLayerInPopup-example.tsx", + "hash": "5654558685761775986" + }, + { + "file": "packages/fluentui/e2e/tests/fabricLayerInPopup.spec.ts", + "hash": "13704094458215714046" + }, + { + "file": "packages/fluentui/e2e/tests/menuDismissOnItemClick-example.tsx", + "hash": "14437376863888489746" + }, + { + "file": "packages/fluentui/e2e/tests/menuDismissOnItemClick.spec.ts", + "hash": "9686476550271301697" + }, + { + "file": "packages/fluentui/e2e/tests/menuDismissScroll-example.tsx", + "hash": "13874781962939393061" + }, + { + "file": "packages/fluentui/e2e/tests/menuDismissScroll.spec.ts", + "hash": "14223321295916642370" + }, + { + "file": "packages/fluentui/e2e/tests/popupClickHandling-example.tsx", + "hash": "13213920161361176518" + }, + { + "file": "packages/fluentui/e2e/tests/popupClickHandling.spec.ts", + "hash": "2885575729341377987" + }, + { + "file": "packages/fluentui/e2e/tests/popupDismissScroll-example.tsx", + "hash": "7328442500399212185" + }, + { + "file": "packages/fluentui/e2e/tests/popupDismissScroll.spec.ts", + "hash": "5254233567644407063" + }, + { + "file": "packages/fluentui/e2e/tests/popupEscHandling-example.tsx", + "hash": "6592433637981138545" + }, + { + "file": "packages/fluentui/e2e/tests/popupEscHandling.spec.ts", + "hash": "1420963620788681365" + }, + { + "file": "packages/fluentui/e2e/tests/popupIframeDismiss-example.tsx", + "hash": "16346724390930618534" + }, + { + "file": "packages/fluentui/e2e/tests/popupIframeDismiss.spec.ts", + "hash": "6795602607780227830" + }, + { + "file": "packages/fluentui/e2e/tests/popupIframeInContent-example.tsx", + "hash": "4283302905232813226" + }, + { + "file": "packages/fluentui/e2e/tests/popupIframeInContent.spec.ts", + "hash": "17137734889454790279" + }, + { + "file": "packages/fluentui/e2e/tests/popupInMenu-example.tsx", + "hash": "16013900017767357976" + }, + { + "file": "packages/fluentui/e2e/tests/popupInMenu.spec.ts", + "hash": "7044470440674261311" + }, + { + "file": "packages/fluentui/e2e/tests/popupInPopup-example.tsx", + "hash": "9668277406755016860" + }, + { + "file": "packages/fluentui/e2e/tests/popupInPopup.spec.ts", + "hash": "1201516165930426055" + }, + { + "file": "packages/fluentui/e2e/tests/popupInSubmenuInToolbarMenu-example.tsx", + "hash": "15332631901223067083" + }, + { + "file": "packages/fluentui/e2e/tests/popupInSubmenuInToolbarMenu.spec.ts", + "hash": "1637590511583110830" + }, + { + "file": "packages/fluentui/e2e/tests/popupInToolbarMenu-example.tsx", + "hash": "17370124098474055427" + }, + { + "file": "packages/fluentui/e2e/tests/popupInToolbarMenu.spec.ts", + "hash": "17677000527941342638" + }, + { + "file": "packages/fluentui/e2e/tests/popupMouseDownSelecting-example.tsx", + "hash": "3023855540168575913" + }, + { + "file": "packages/fluentui/e2e/tests/popupMouseDownSelecting.spec.ts", + "hash": "7209143637156518437" + }, + { + "file": "packages/fluentui/e2e/tests/popupWithCloseInContent-example.tsx", + "hash": "138822329630966902" + }, + { + "file": "packages/fluentui/e2e/tests/popupWithCloseInContent.spec.ts", + "hash": "17534692300788679823" + }, + { + "file": "packages/fluentui/e2e/tests/popupWithTooltipTrigger-example.tsx", + "hash": "11807861820707471620" + }, + { + "file": "packages/fluentui/e2e/tests/popupWithTooltipTrigger.spec.ts", + "hash": "8697303816170122801" + }, + { + "file": "packages/fluentui/e2e/tests/popupWithoutTrigger-example.tsx", + "hash": "11139766354954965358" + }, + { + "file": "packages/fluentui/e2e/tests/popupWithoutTrigger.spec.ts", + "hash": "13246623807056887583" + }, + { + "file": "packages/fluentui/e2e/tests/submenuInToolbarMenu-example.tsx", + "hash": "575582352463613891" + }, + { + "file": "packages/fluentui/e2e/tests/submenuInToolbarMenu.spec.ts", + "hash": "1027166173685153422" + }, + { + "file": "packages/fluentui/e2e/tests/tableNavigable-example.tsx", + "hash": "14905569497518850229" + }, + { + "file": "packages/fluentui/e2e/tests/tableNavigable.spec.ts", + "hash": "12594198720782866612" + }, + { + "file": "packages/fluentui/e2e/tests/toolbarMenu-example.tsx", + "hash": "13362869464990240922" + }, + { + "file": "packages/fluentui/e2e/tests/toolbarMenu.spec.ts", + "hash": "11350393418665355075" + }, + { + "file": "packages/fluentui/e2e/tests/toolbarMenuOverflow-example.tsx", + "hash": "10545456953613671616" + }, + { + "file": "packages/fluentui/e2e/tests/toolbarMenuOverflow.spec.ts", + "hash": "7996186393233017896" + }, + { + "file": "packages/fluentui/e2e/tests/toolbarMenuOverflowWrapped-example.tsx", + "hash": "14754152518540080632" + }, + { + "file": "packages/fluentui/e2e/tests/toolbarMenuOverflowWrapped.spec.ts", + "hash": "706311342140479878" + }, + { + "file": "packages/fluentui/e2e/tests/toolbarWithPopupTooltip-example.tsx", + "hash": "2005065269202164843" + }, + { + "file": "packages/fluentui/e2e/tests/toolbarWithPopupTooltip.spec.ts", + "hash": "5925650631025544121" + }, + { + "file": "packages/fluentui/e2e/tests/tooltipDismissOnHoverContent-example.tsx", + "hash": "9489541278644546841" + }, + { + "file": "packages/fluentui/e2e/tests/tooltipDismissOnHoverContent.ts", + "hash": "9737872412877402347" + }, + { + "file": "packages/fluentui/e2e/tests/tooltipUnhandledProps-example.tsx", + "hash": "17958332038007928519" + }, + { + "file": "packages/fluentui/e2e/tests/tooltipUnhandledProps.spec.ts", + "hash": "5538405689313863866" + }, + { + "file": "packages/fluentui/e2e/tests/treeKeyboardNavigation-example.tsx", + "hash": "6918808607628651153" + }, + { + "file": "packages/fluentui/e2e/tests/treeKeyboardNavigation.spec.ts", + "hash": "14204769954003254618" + }, + { + "file": "packages/fluentui/e2e/tests/treeVirtualizedKeyboardNavigation-example.tsx", + "hash": "10207361172658324571" + }, + { + "file": "packages/fluentui/e2e/tests/treeVirtualizedKeyboardNavigation.spec.ts", + "hash": "38611835611465959" + }, + { + "file": "packages/fluentui/e2e/tsconfig.json", + "hash": "10977915997837140135" + } + ], + "@fluentui/scripts-babel": [ + { + "file": "scripts/babel/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/babel/index.js", + "hash": "7993737580679407702" + }, + { + "file": "scripts/babel/jest.config.js", + "hash": "1277314660710374279" + }, + { + "file": "scripts/babel/package.json", + "hash": "14364435620713749886" + }, + { + "file": "scripts/babel/plugins/index.ts", + "hash": "483902564153285887" + }, + { + "file": "scripts/babel/plugins/transform-star-import-plugin.ts", + "hash": "497207983086485622" + }, + { + "file": "scripts/babel/plugins/types.ts", + "hash": "16362335534208576628" + }, + { + "file": "scripts/babel/preset-v9.js", + "hash": "18020626006821864392" + }, + { + "file": "scripts/babel/preset-v9.spec.ts", + "hash": "1556910749991715657" + }, + { + "file": "scripts/babel/project.json", + "hash": "6727545952869869660" + }, + { + "file": "scripts/babel/register.js", + "hash": "18183864298469557088" + }, + { + "file": "scripts/babel/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/babel/tsconfig.lib.json", + "hash": "3753806828268919288" + }, + { + "file": "scripts/babel/tsconfig.spec.json", + "hash": "16242416785763058919" + }, + { + "file": "scripts/babel/types.ts", + "hash": "4791608823641193595" + } + ], + "@fluentui/react-northstar-prototypes": [ + { + "file": "packages/fluentui/react-northstar-prototypes/.eslintrc.json", + "hash": "3016770829865385537" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/README.md", + "hash": "9816779029527592217" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/package.json", + "hash": "16036884325989784037", + "deps": [ + "npm:@babel/runtime", + "@fluentui/accessibility", + "@fluentui/code-sandbox", + "@fluentui/docs-components", + "@fluentui/react-bindings", + "@fluentui/react-component-event-listener", + "@fluentui/react-component-ref", + "@fluentui/react-icons-northstar", + "@fluentui/react-northstar", + "npm:classnames", + "npm:copy-to-clipboard", + "npm:csstype", + "npm:faker", + "npm:formik", + "npm:lodash", + "npm:moment", + "npm:react-custom-scrollbars", + "npm:react-document-title", + "npm:react-dom", + "npm:react-hook-form", + "npm:react-textarea-autosize", + "npm:react-virtualized", + "npm:react-window", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "npm:@types/classnames", + "npm:@types/faker", + "npm:@types/react-custom-scrollbars", + "npm:@types/react-virtualized", + "npm:@types/react-window", + "npm:react" + ] + }, + { + "file": "packages/fluentui/react-northstar-prototypes/project.json", + "hash": "6886430218315295405" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/index.ts", + "hash": "15523276757469001647" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/AsyncShorthand/AsyncShorthand.tsx", + "hash": "4666694168826124059" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/AsyncShorthand/index.ts", + "hash": "16572492250719503250" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/CopyToClipboard.tsx", + "hash": "16139491727209802991" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/NotificationProvider.tsx", + "hash": "2013404344230368604" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/index.tsx", + "hash": "8498148850336520649" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/themeOverrides.ts", + "hash": "12351912667975777465" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/EditorToolbar.tsx", + "hash": "5151494454522358996" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/EditorToolbarTable.tsx", + "hash": "3640519683252577060" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/PortalWindow.tsx", + "hash": "5792280337595091743" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/editorToolbarReducer.ts", + "hash": "9583114788120990687" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/index.tsx", + "hash": "7397171196134146399" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/FormHooks.tsx", + "hash": "2494698095444226618" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/Formik.tsx", + "hash": "9102962171879800100" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/index.tsx", + "hash": "7274259884984694722" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/Menu.tsx", + "hash": "8629232587523790782" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuButton.tsx", + "hash": "9006084202427548109" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuItem.tsx", + "hash": "13103428700998832060" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuList.tsx", + "hash": "2487141510217772541" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuTrigger.tsx", + "hash": "10976183634001532481" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/index.tsx", + "hash": "18332154448991086610" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/menuContext.ts", + "hash": "17782320631648149413" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/menuListContext.tsx", + "hash": "14993198406917925287" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/NestedPopupsAndDialogs/index.tsx", + "hash": "1786212070449744493" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/ParticipantsList/index.tsx", + "hash": "11122842396313230268" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Prototypes.tsx", + "hash": "11002418107785047261" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/animations.tsx", + "hash": "8011321726213482462" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/index.tsx", + "hash": "9750242519854799147" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/participant.tsx", + "hash": "1908497880154833078" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/participantData.tsx", + "hash": "16995079246413273861" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/presentersData.tsx", + "hash": "11413443463145832458" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/styles.tsx", + "hash": "8681317249512926709" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/SearchPage/SearchPage.tsx", + "hash": "10043146942965451830" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/SearchPage/index.ts", + "hash": "5111008576834445045" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/TextAreaAutoSize/TextAreaAutoResize.tsx", + "hash": "5899564604445925894" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/TextAreaAutoSize/index.tsx", + "hash": "12960044669039013142" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/VirtualStickyTree.tsx", + "hash": "18312785735105369972" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/VirtualStickyTreePrototype.tsx", + "hash": "15487238422160188716" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/index.tsx", + "hash": "9119716162571119978" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/itemsGenerator.ts", + "hash": "13610599499519671039" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/VirtualizedTable.tsx", + "hash": "15908692109639964535" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/VirtualizedTables.tsx", + "hash": "5363058945850172332" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/index.tsx", + "hash": "1129921799744469312" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/itemsGenerator.ts", + "hash": "7508346131761412752" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/VirtualTree.tsx", + "hash": "3954137309594916393" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/VirtualTreePrototype.tsx", + "hash": "7421258757962426229" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/index.tsx", + "hash": "2218309949858402834" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/itemsGenerator.ts", + "hash": "15771527193717335030" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/AnimatedBannerAlert.tsx", + "hash": "17051906888739797582" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/BannerAlerts.tsx", + "hash": "164096548589224380" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/index.tsx", + "hash": "542944501762417749" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/ChatWithPopover.tsx", + "hash": "7719768216659998424" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/Popover.tsx", + "hash": "7110368926253847972" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/ReactionPopup.tsx", + "hash": "1809282408748721844" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/index.tsx", + "hash": "2363228290761620536" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/ControlMessage.tsx", + "hash": "9083963234031169891" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/GroupControlMessages.tsx", + "hash": "15712001723372243367" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/controlMessagesGroupBehavior.ts", + "hash": "363546636055422204" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/index.tsx", + "hash": "8124578659080196615" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/mockData.tsx", + "hash": "13929098419252934815" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ImportantAndMentionMessages/index.tsx", + "hash": "7229266695634489078" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ScreenReaderHeaderText.tsx", + "hash": "10353957772979700593" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadReplies.tsx", + "hash": "1942287349317638581" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadReplyEditor.tsx", + "hash": "9957383241598274658" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadedMessage.tsx", + "hash": "7837775770648961687" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/classNames.ts", + "hash": "3650699319544402311" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/index.tsx", + "hash": "7871235040883754343" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/mockData.tsx", + "hash": "14452775535735897762" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/repliesButtonBehavior.ts", + "hash": "12128219743725138914" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/theme.tsx", + "hash": "11066989221639267136" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/threadChatBehavior.ts", + "hash": "1441781496556702753" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/threadedMessageBehavior.ts", + "hash": "3858861000785802665" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/index.tsx", + "hash": "9449896320086879311" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneContent.tsx", + "hash": "6658772003455648363" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneHeader.tsx", + "hash": "643323282552019782" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneLayout.tsx", + "hash": "14116176100758089028" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatProtoStyle.ts", + "hash": "475572491409726938" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/composeMessage.tsx", + "hash": "12541651470084120461" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/index.tsx", + "hash": "163284684608788454" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/dataMock.ts", + "hash": "11566122887388108984" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/dateUtils.ts", + "hash": "9986525303334363468" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/index.ts", + "hash": "9049264600443968590" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/messageFactoryMock.tsx", + "hash": "14942065203643453962" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/types.ts", + "hash": "14861415723836622381" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshSimple.tsx", + "hash": "13663591883845115261" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshStressTest.tsx", + "hash": "15770991472046356681" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshTimestampTooltip.tsx", + "hash": "17200046557466620008" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/index.tsx", + "hash": "6314076623887472756" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatErrorState.tsx", + "hash": "8306663112845027098" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatSlots.tsx", + "hash": "15622079419906473134" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithAuthor.tsx", + "hash": "10933173294027489801" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithBadges.tsx", + "hash": "10067159577153996227" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithDetails.tsx", + "hash": "12176481734681230005" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithReactions.tsx", + "hash": "12675957219152936570" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithReadReceipts.tsx", + "hash": "8201566125102339683" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/compactAvatars.ts", + "hash": "11621426604052727034" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/index.tsx", + "hash": "4222694708370470229" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customScrollbar/index.tsx", + "hash": "16423493249816236908" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/CustomToolbar.tsx", + "hash": "14798705590211106914" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/darkThemeOverrides.ts", + "hash": "1765730341598063989" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/highContrastThemeOverrides.ts", + "hash": "7341831179174477997" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/index.tsx", + "hash": "3818480630864383081" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/dropdowns/AsyncDropdownSearch.tsx", + "hash": "4245437456080655048" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/dropdowns/index.tsx", + "hash": "10504698972700931271" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/AvatarEmployeeCard.tsx", + "hash": "18080501605845941120" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/CustomText.tsx", + "hash": "15147690821457289889" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/EmployeeCard.tsx", + "hash": "17647767873511892219" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/index.tsx", + "hash": "12239498765757344987" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/hexagonalAvatar/CustomAvatar.tsx", + "hash": "5584088432540470900" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/hexagonalAvatar/index.tsx", + "hash": "8379883381403321309" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsFooter.tsx", + "hash": "4813121796634612750" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsHeader.tsx", + "hash": "7945036494904555092" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsLink.tsx", + "hash": "15822692067236061508" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsLogo.tsx", + "hash": "15193117497529466118" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsMeetingOptions.tsx", + "hash": "5195077200654195155" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/TransparentDivider.tsx", + "hash": "11355458298767631749" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/index.tsx", + "hash": "8044441448311472388" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/styles.ts", + "hash": "6968770458826471464" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/MentionsDropdown.tsx", + "hash": "8803027406609593843" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/MentionsEditor.tsx", + "hash": "10665932680699585384" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/PortalAtCursorPosition.ts", + "hash": "15136805012626452053" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/dataMocks.ts", + "hash": "3503103682131204402" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/index.tsx", + "hash": "33233848936932089" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/utils.ts", + "hash": "11455328573947869477" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/GridImagePicker/GridImagePicker.tsx", + "hash": "5931266799517865445" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/GridImagePicker/GridImagePickerItem.tsx", + "hash": "2326425296192747302" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/dataMocks.ts", + "hash": "16378935872851174954" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/emojiPicker.tsx", + "hash": "17257330712623278054" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/index.tsx", + "hash": "3156365344886310754" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/stickerPicker.tsx", + "hash": "16248346637506964495" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/AdvancedTable.tsx", + "hash": "13074602433465138810" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/InteractiveTable.tsx", + "hash": "17153306276689477036" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/ResponsiveTableContainer.tsx", + "hash": "4594526012647494857" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/SelectableTable.tsx", + "hash": "2077966948058956818" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/calculateBreakpoints.ts", + "hash": "17045471959855509527" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/index.tsx", + "hash": "13735701997417262705" + }, + { + "file": "packages/fluentui/react-northstar-prototypes/tsconfig.json", + "hash": "253585536554020032" + } + ], + "@fluentui/merge-styles": [ + { + "file": "packages/merge-styles/.eslintrc.json", + "hash": "7788135779233596637" + }, + { + "file": "packages/merge-styles/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/merge-styles/CHANGELOG.json", + "hash": "14519500364564262199" + }, + { + "file": "packages/merge-styles/CHANGELOG.md", + "hash": "5079020724245270269" + }, + { + "file": "packages/merge-styles/LICENSE", + "hash": "815830957326308777" + }, + { + "file": "packages/merge-styles/README.md", + "hash": "16105783888956655297" + }, + { + "file": "packages/merge-styles/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/merge-styles/etc/merge-styles.api.md", + "hash": "4006799045914192092" + }, + { + "file": "packages/merge-styles/jest.config.js", + "hash": "3240558433730290797" + }, + { + "file": "packages/merge-styles/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/merge-styles/package.json", + "hash": "6801726133528920040", + "deps": [ + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "packages/merge-styles/project.json", + "hash": "7472429389665071083" + }, + { + "file": "packages/merge-styles/src/DeepPartial.ts", + "hash": "15403652248930272332" + }, + { + "file": "packages/merge-styles/src/IKeyframes.ts", + "hash": "5082581657992946140" + }, + { + "file": "packages/merge-styles/src/IRawStyle.ts", + "hash": "9178367776936796482" + }, + { + "file": "packages/merge-styles/src/IRawStyleBase.ts", + "hash": "14075360098318767891" + }, + { + "file": "packages/merge-styles/src/IStyle.ts", + "hash": "16366386667546584254" + }, + { + "file": "packages/merge-styles/src/IStyleFunction.ts", + "hash": "17786864697711385839" + }, + { + "file": "packages/merge-styles/src/IStyleOptions.ts", + "hash": "3576511368376128738" + }, + { + "file": "packages/merge-styles/src/IStyleSet.ts", + "hash": "12275969819165855980" + }, + { + "file": "packages/merge-styles/src/ObjectOnly.ts", + "hash": "7192624357398241626" + }, + { + "file": "packages/merge-styles/src/StyleOptionsState.ts", + "hash": "13663652144977743975" + }, + { + "file": "packages/merge-styles/src/Stylesheet.test.ts", + "hash": "9000703876191062841" + }, + { + "file": "packages/merge-styles/src/Stylesheet.ts", + "hash": "6265891817547056926" + }, + { + "file": "packages/merge-styles/src/concatStyleSets.test.ts", + "hash": "17199879701993332183" + }, + { + "file": "packages/merge-styles/src/concatStyleSets.ts", + "hash": "6102742474386530601" + }, + { + "file": "packages/merge-styles/src/concatStyleSetsWithProps.test.ts", + "hash": "10140930549319677976" + }, + { + "file": "packages/merge-styles/src/concatStyleSetsWithProps.ts", + "hash": "17386815918035826575" + }, + { + "file": "packages/merge-styles/src/extractStyleParts.test.ts", + "hash": "12818094951126093006" + }, + { + "file": "packages/merge-styles/src/extractStyleParts.ts", + "hash": "13216560657869606108" + }, + { + "file": "packages/merge-styles/src/fontFace.test.ts", + "hash": "4830155305419350516" + }, + { + "file": "packages/merge-styles/src/fontFace.ts", + "hash": "18171437276766485053" + }, + { + "file": "packages/merge-styles/src/getVendorSettings.ts", + "hash": "17712460932352389426" + }, + { + "file": "packages/merge-styles/src/index.ts", + "hash": "2179480601942243073" + }, + { + "file": "packages/merge-styles/src/keyframes.test.ts", + "hash": "16939692635795227731" + }, + { + "file": "packages/merge-styles/src/keyframes.ts", + "hash": "15229455629128638112" + }, + { + "file": "packages/merge-styles/src/mergeCss.test.ts", + "hash": "2692449794265662204" + }, + { + "file": "packages/merge-styles/src/mergeCssSets.test.ts", + "hash": "5716085156824388044" + }, + { + "file": "packages/merge-styles/src/mergeStyleSets.test.ts", + "hash": "10196256844054668807" + }, + { + "file": "packages/merge-styles/src/mergeStyleSets.ts", + "hash": "2171161145484021112" + }, + { + "file": "packages/merge-styles/src/mergeStyles.test.ts", + "hash": "1026104081850829361" + }, + { + "file": "packages/merge-styles/src/mergeStyles.ts", + "hash": "17412756440920485348" + }, + { + "file": "packages/merge-styles/src/server.test.ts", + "hash": "6400343995946700252" + }, + { + "file": "packages/merge-styles/src/server.ts", + "hash": "6363853718485863544" + }, + { + "file": "packages/merge-styles/src/styleToClassName.test.ts", + "hash": "7801431564365181732" + }, + { + "file": "packages/merge-styles/src/styleToClassName.ts", + "hash": "3054023107822799465" + }, + { + "file": "packages/merge-styles/src/tokenizeWithParentheses.test.ts", + "hash": "18391684658944695176" + }, + { + "file": "packages/merge-styles/src/tokenizeWithParentheses.ts", + "hash": "17064764508063973069" + }, + { + "file": "packages/merge-styles/src/transforms/kebabRules.test.ts", + "hash": "5637365605019891583" + }, + { + "file": "packages/merge-styles/src/transforms/kebabRules.ts", + "hash": "7834985428724123977" + }, + { + "file": "packages/merge-styles/src/transforms/prefixRules.test.ts", + "hash": "17108740823848277505" + }, + { + "file": "packages/merge-styles/src/transforms/prefixRules.ts", + "hash": "10825527420894611070" + }, + { + "file": "packages/merge-styles/src/transforms/provideUnits.test.ts", + "hash": "3636386315637903392" + }, + { + "file": "packages/merge-styles/src/transforms/provideUnits.ts", + "hash": "8082799170974129277" + }, + { + "file": "packages/merge-styles/src/transforms/rtlifyRules.test.ts", + "hash": "339048301821636658" + }, + { + "file": "packages/merge-styles/src/transforms/rtlifyRules.ts", + "hash": "5076345400622292378" + }, + { + "file": "packages/merge-styles/src/version.ts", + "hash": "1460361919700822627" + }, + { + "file": "packages/merge-styles/tsconfig.json", + "hash": "17469839658577306420" + }, + { + "file": "packages/merge-styles/webpack.config.js", + "hash": "7491670909379831444" + } + ], + "@fluentui/react-northstar": [ + { + "file": "packages/fluentui/react-northstar/.eslintrc.json", + "hash": "13803004907869012609" + }, + { + "file": "packages/fluentui/react-northstar/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-northstar/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-northstar/bundle-size-auditor.config.js", + "hash": "8028542614695662015" + }, + { + "file": "packages/fluentui/react-northstar/gulpfile.ts", + "hash": "14333776487082390359" + }, + { + "file": "packages/fluentui/react-northstar/jest-setup.js", + "hash": "17870551335504754824" + }, + { + "file": "packages/fluentui/react-northstar/jest.config.js", + "hash": "4825447735539633911" + }, + { + "file": "packages/fluentui/react-northstar/package.json", + "hash": "499347416330387156", + "deps": [ + "npm:@babel/runtime", + "@fluentui/accessibility", + "@fluentui/dom-utilities", + "@fluentui/react-bindings", + "@fluentui/react-component-event-listener", + "@fluentui/react-component-nesting-registry", + "@fluentui/react-component-ref", + "@fluentui/react-icons-northstar", + "@fluentui/react-northstar-styles-renderer", + "@fluentui/react-portal-compat-context", + "@fluentui/react-proptypes", + "@fluentui/state", + "@fluentui/styles", + "npm:@popperjs/core", + "npm:body-scroll-lock", + "npm:classnames", + "npm:compute-scroll-into-view", + "npm:downshift", + "npm:lodash", + "npm:prop-types", + "npm:react-is", + "npm:react-transition-group", + "@fluentui/a11y-testing", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:@types/classnames", + "npm:@types/faker", + "npm:@types/simulant", + "npm:csstype", + "npm:faker", + "npm:fela-tools", + "npm:lerna-alias", + "npm:qs", + "npm:simulant", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-northstar/project.json", + "hash": "7507003061923116844" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Accordion/Accordion.tsx", + "hash": "7847851307995452672" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Accordion/AccordionContent.tsx", + "hash": "5958238493847788660" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Accordion/AccordionTitle.tsx", + "hash": "11415776891352447674" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Alert/Alert.tsx", + "hash": "9224562400260505665" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Alert/AlertDismissAction.tsx", + "hash": "7141232459421707385" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Animation/Animation.tsx", + "hash": "4846505342841501437" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Animation/useAnimationStyles.ts", + "hash": "14061391268464766749" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Attachment/Attachment.tsx", + "hash": "6863685528312287349" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentAction.tsx", + "hash": "9228082367920242983" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentBody.tsx", + "hash": "5925296059771866051" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentDescription.tsx", + "hash": "6198469028872251324" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentHeader.tsx", + "hash": "3372430972652335250" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentIcon.tsx", + "hash": "8521330284142418811" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Avatar/Avatar.tsx", + "hash": "748495765262535632" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarIcon.tsx", + "hash": "6356413093529093028" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarImage.tsx", + "hash": "10099046153004731582" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarLabel.tsx", + "hash": "6515048819985511977" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarStatus.tsx", + "hash": "12428186955649381416" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarStatusIcon.tsx", + "hash": "23743443202367657" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarStatusImage.tsx", + "hash": "7400669439155618306" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Box/Box.tsx", + "hash": "17633032765631059213" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/Breadcrumb.tsx", + "hash": "14104155212011880671" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbDivider.tsx", + "hash": "8114640623799863659" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbItem.tsx", + "hash": "17240006574900530403" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbLink.tsx", + "hash": "1048134297688410819" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/breadcrumbContext.ts", + "hash": "1438190142722133938" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Button/Button.tsx", + "hash": "4311649433023922831" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Button/ButtonContent.tsx", + "hash": "3931831893392389213" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Button/ButtonGroup.tsx", + "hash": "7402632697949078434" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Card/Card.tsx", + "hash": "9533175431319145381" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Card/CardBody.tsx", + "hash": "3806087985347141687" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Card/CardColumn.tsx", + "hash": "2871691175852794018" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Card/CardExpandableBox.tsx", + "hash": "17304646012266738418" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Card/CardFooter.tsx", + "hash": "6069914877925460964" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Card/CardHeader.tsx", + "hash": "14899392316230501271" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Card/CardPreview.tsx", + "hash": "1386160146759486587" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Card/CardTopControls.tsx", + "hash": "17777570770525993895" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Carousel/Carousel.tsx", + "hash": "11520270933550892655" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselItem.tsx", + "hash": "1704241988545725264" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselNavigation.tsx", + "hash": "4510245105983260686" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselNavigationItem.tsx", + "hash": "10603463667236101339" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselPaddle.tsx", + "hash": "9122961265585463134" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselPaddlesContainer.tsx", + "hash": "5884466783611926198" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Carousel/utils.ts", + "hash": "6646904547431357450" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/Chat.tsx", + "hash": "13880991049888535467" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/ChatItem.tsx", + "hash": "1137720096355947257" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessage.tsx", + "hash": "8979923955515009671" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessageContent.tsx", + "hash": "2975300193933132172" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessageDetails.tsx", + "hash": "10975285986126230325" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessageHeader.tsx", + "hash": "4772325511787546898" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessageReadStatus.tsx", + "hash": "17571050160211548251" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/chatContext.ts", + "hash": "5000819501526969887" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/chatDensity.ts", + "hash": "5054885706948365266" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Chat/chatItemContext.ts", + "hash": "13614626662989007113" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Checkbox/Checkbox.tsx", + "hash": "14439246164524684209" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/Datepicker.tsx", + "hash": "9534980117701527084" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendar.tsx", + "hash": "3211241399984334245" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarCell.tsx", + "hash": "16785975453348029131" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarCellButton.tsx", + "hash": "2761189948651095557" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarGrid.tsx", + "hash": "5019574059023183656" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarGridRow.tsx", + "hash": "12416200835622390859" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeader.tsx", + "hash": "17486710640239626226" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeaderAction.tsx", + "hash": "8284481544334173905" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeaderCell.tsx", + "hash": "8518396826686737330" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/navigateToNewDate.tsx", + "hash": "7051424537855326066" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Datepicker/validateDate.tsx", + "hash": "9396488240033088261" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/Debug.tsx", + "hash": "14065203870232706053" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/DebugComponentViewer.tsx", + "hash": "312272768687233713" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/DebugLine.tsx", + "hash": "6997002265541711848" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/DebugPanel.tsx", + "hash": "2098947295622538161" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/DebugPanelData.tsx", + "hash": "8428394548659896147" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/DebugPanelItem.tsx", + "hash": "9645300271690604629" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/DebugRect.tsx", + "hash": "16625045838109269939" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/DebugSelector.tsx", + "hash": "3361885019360260680" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/FiberNavigator.ts", + "hash": "10855844848543490871" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/ScrollToBottom.tsx", + "hash": "14726500017049937957" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Debug/utils.ts", + "hash": "9684972719826588233" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Design/Design.tsx", + "hash": "6229896215043380269" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Dialog/Dialog.tsx", + "hash": "18211608977012615962" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Dialog/DialogFooter.tsx", + "hash": "1435085386463972271" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Divider/Divider.tsx", + "hash": "6350215477669300948" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Divider/DividerContent.tsx", + "hash": "9591743889610800047" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Dropdown/Dropdown.tsx", + "hash": "13599762255086408029" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Dropdown/DropdownItem.tsx", + "hash": "3323611497200258084" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Dropdown/DropdownSearchInput.tsx", + "hash": "17164119620919997898" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Dropdown/DropdownSelectedItem.tsx", + "hash": "2904683542301281280" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Embed/Embed.tsx", + "hash": "12376322776372112440" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Flex/Flex.tsx", + "hash": "6982818452667314494" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Flex/FlexItem.tsx", + "hash": "7403794678590116362" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/Form.tsx", + "hash": "8800910644203565529" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormButton.tsx", + "hash": "6828241720533638517" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormCheckbox.tsx", + "hash": "8436042708466632685" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormDatepicker.tsx", + "hash": "9982491292209506743" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormDropdown.tsx", + "hash": "18343620127439352258" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormField.tsx", + "hash": "9850188118835358297" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormFieldCustom.tsx", + "hash": "16478427839518575650" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormInput.tsx", + "hash": "4163778940666564276" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormLabel.tsx", + "hash": "17043166478578447646" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormMessage.tsx", + "hash": "14582622186573458664" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormRadioGroup.tsx", + "hash": "13787505355590378398" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormSlider.tsx", + "hash": "2295018312442464350" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/FormTextArea.tsx", + "hash": "11999103602418495457" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/utils/formFieldBase.tsx", + "hash": "16744216472522332613" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Form/utils/formFieldBaseContext.ts", + "hash": "6795608341138352021" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Grid/Grid.tsx", + "hash": "17829217997130257266" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Header/Header.tsx", + "hash": "8321592622301865843" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Header/HeaderDescription.tsx", + "hash": "12329129616562820040" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Image/Image.tsx", + "hash": "11715297073047328469" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Input/Input.tsx", + "hash": "17524959832323688861" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Input/InputLabel.tsx", + "hash": "3206187582738539858" + }, + { + "file": "packages/fluentui/react-northstar/src/components/ItemLayout/ItemLayout.tsx", + "hash": "12259100651728852178" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Label/Label.tsx", + "hash": "5574878035520448894" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Layout/Layout.tsx", + "hash": "15086000609764124919" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/List.tsx", + "hash": "6719230630130939027" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/ListItem.tsx", + "hash": "10782306238570299215" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/ListItemContent.tsx", + "hash": "48301783195265259" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/ListItemContentMedia.tsx", + "hash": "5598481049636795501" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/ListItemEndMedia.tsx", + "hash": "6789731293643721633" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/ListItemHeader.tsx", + "hash": "7891876198223932068" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/ListItemHeaderMedia.tsx", + "hash": "17353093073515839995" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/ListItemMedia.tsx", + "hash": "1839407672304566822" + }, + { + "file": "packages/fluentui/react-northstar/src/components/List/listContext.ts", + "hash": "5582826283619864480" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Loader/Loader.tsx", + "hash": "15483985739222235559" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Menu/Menu.tsx", + "hash": "12313766017894638815" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Menu/MenuDivider.tsx", + "hash": "17427088955008148713" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItem.tsx", + "hash": "11169096155311292931" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItemContent.tsx", + "hash": "157525961668173349" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItemIcon.tsx", + "hash": "762586184035746897" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItemIndicator.tsx", + "hash": "6320687466613633373" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItemWrapper.tsx", + "hash": "782835574565158855" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Menu/menuContext.ts", + "hash": "15576168683242631358" + }, + { + "file": "packages/fluentui/react-northstar/src/components/MenuButton/MenuButton.tsx", + "hash": "17186151859409294592" + }, + { + "file": "packages/fluentui/react-northstar/src/components/MenuButton/focusUtils.ts", + "hash": "4021202567179231632" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Pill/Pill.tsx", + "hash": "6737044775224698236" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Pill/PillAction.tsx", + "hash": "16439491134552422595" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Pill/PillContent.tsx", + "hash": "15130144542802390574" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Pill/PillGroup.tsx", + "hash": "2031881207353659816" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Pill/PillIcon.tsx", + "hash": "2997520707141875519" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Pill/PillImage.tsx", + "hash": "10744709375563168633" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Pill/pillContext.ts", + "hash": "2505511281109627168" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Popup/Popup.tsx", + "hash": "2116950962772469808" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Popup/PopupContent.tsx", + "hash": "13214942977844333994" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Portal/Portal.tsx", + "hash": "4059113526247197181" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Portal/PortalInner.tsx", + "hash": "15771138805122631486" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Portal/usePortalBox.ts", + "hash": "7292873357741174388" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Provider/Provider.tsx", + "hash": "17319200045661840105" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Provider/ProviderConsumer.tsx", + "hash": "9577051673823507002" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Provider/portalContext.ts", + "hash": "2790279822616713840" + }, + { + "file": "packages/fluentui/react-northstar/src/components/RadioGroup/RadioGroup.tsx", + "hash": "8185987492309397036" + }, + { + "file": "packages/fluentui/react-northstar/src/components/RadioGroup/RadioGroupItem.tsx", + "hash": "17763337922187266080" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Reaction/Reaction.tsx", + "hash": "9855657459992333918" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Reaction/ReactionGroup.tsx", + "hash": "12898639338834562081" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Segment/Segment.tsx", + "hash": "10802148962264378566" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Skeleton/Skeleton.tsx", + "hash": "9194215087688328488" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonAvatar.tsx", + "hash": "1752780832066126053" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonButton.tsx", + "hash": "13776964169747188024" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonInput.tsx", + "hash": "10520006317011318873" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonLine.tsx", + "hash": "6189182797866988357" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonShape.tsx", + "hash": "12564093305001034373" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonText.tsx", + "hash": "16689091522861482541" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Slider/Slider.tsx", + "hash": "12542593756393248009" + }, + { + "file": "packages/fluentui/react-northstar/src/components/SplitButton/SplitButton.tsx", + "hash": "4787098714518653252" + }, + { + "file": "packages/fluentui/react-northstar/src/components/SplitButton/SplitButtonDivider.tsx", + "hash": "175848223623461295" + }, + { + "file": "packages/fluentui/react-northstar/src/components/SplitButton/SplitButtonToggle.tsx", + "hash": "2707343881608045507" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Status/Status.tsx", + "hash": "10821702057553428900" + }, + { + "file": "packages/fluentui/react-northstar/src/components/SvgIcon/SvgIcon.tsx", + "hash": "3109903244853284027" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Table/Table.tsx", + "hash": "778871863897788019" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Table/TableCell.tsx", + "hash": "8238803278213630517" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Table/TableRow.tsx", + "hash": "6734512422896790121" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Text/Text.tsx", + "hash": "9973884439099941954" + }, + { + "file": "packages/fluentui/react-northstar/src/components/TextArea/TextArea.tsx", + "hash": "5641130885212054333" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/Toolbar.tsx", + "hash": "11935729523711567724" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarCustomItem.tsx", + "hash": "1279085528159215065" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarDivider.tsx", + "hash": "5043878662361527710" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItem.tsx", + "hash": "12695800097714476460" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItemIcon.tsx", + "hash": "16151370246926301063" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItemWrapper.tsx", + "hash": "9012982409637720351" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenu.tsx", + "hash": "6478316462425984571" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuDivider.tsx", + "hash": "6546410737380971683" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItem.tsx", + "hash": "15769073730736985424" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemActiveIndicator.tsx", + "hash": "14041778004530243120" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemContent.tsx", + "hash": "3998710959312647803" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemIcon.tsx", + "hash": "16155135638075618501" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemSubmenuIndicator.tsx", + "hash": "13302511047352503675" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuRadioGroup.tsx", + "hash": "5603033942394130558" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuRadioGroupWrapper.tsx", + "hash": "8466623792113768046" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarRadioGroup.tsx", + "hash": "3123593901161826064" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/toolbarMenuContext.ts", + "hash": "1238926081544242605" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Toolbar/toolbarVariablesContext.ts", + "hash": "13932160866218966251" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tooltip/Tooltip.tsx", + "hash": "13070181950608226518" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tooltip/TooltipContent.tsx", + "hash": "4939757598129192274" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tree/Tree.tsx", + "hash": "12771547015248644605" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tree/TreeItem.tsx", + "hash": "15202258227432023831" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tree/TreeTitle.tsx", + "hash": "16953890156543402421" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tree/context.ts", + "hash": "8437912965928316617" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tree/hooks/flattenTree.ts", + "hash": "4113590590764830277" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tree/hooks/useTree.ts", + "hash": "6320206367937777801" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Tree/hooks/useVirtualTree.ts", + "hash": "9631571422855687019" + }, + { + "file": "packages/fluentui/react-northstar/src/components/Video/Video.tsx", + "hash": "18023367418046249698" + }, + { + "file": "packages/fluentui/react-northstar/src/index.ts", + "hash": "6778225692631498331" + }, + { + "file": "packages/fluentui/react-northstar/src/styles/debugStyles.ts", + "hash": "7688079653834349124" + }, + { + "file": "packages/fluentui/react-northstar/src/styles/translateAlignProp.ts", + "hash": "752370909825380216" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/colorUtils.ts", + "hash": "8838768133109851282" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/animations/durations.ts", + "hash": "14771948159306756204" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/animations/fade.ts", + "hash": "14454986281428325810" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/animations/index.ts", + "hash": "5678496085930231257" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/animations/scale.ts", + "hash": "5109538634901918243" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/animations/slide.ts", + "hash": "14163477310393579173" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/animations/timingFunctions.ts", + "hash": "14028571513420355031" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/categoryColors.ts", + "hash": "15037112319325605062" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/colors.ts", + "hash": "9976161978364344114" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/componentStyles.ts", + "hash": "16362963385923622430" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/componentVariables.ts", + "hash": "6218887021869389764" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionContentStyles.ts", + "hash": "17970759815785909371" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionStyles.ts", + "hash": "10413457414052477945" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionTitleStyles.ts", + "hash": "295522687558612603" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionTitleVariables.ts", + "hash": "3774561873064648852" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionVariables.ts", + "hash": "2912430932263239034" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/activeIndicatorUrl.ts", + "hash": "16959025885783912107" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertDismissActionStyles.ts", + "hash": "8883629395591772539" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertDismissActionVariables.ts", + "hash": "10804710916761328142" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertStyles.ts", + "hash": "4347489529828032292" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertVariables.ts", + "hash": "12020207677689671077" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/dismissIndicatorUrl.ts", + "hash": "17196885391107542824" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentActionStyles.ts", + "hash": "3122251545754751723" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentActionVariables.ts", + "hash": "596237278780895444" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentBodyStyles.ts", + "hash": "1236954075014915745" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentBodyVariables.ts", + "hash": "12990805591124852936" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionStyles.ts", + "hash": "14860428913123777034" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionVariables.ts", + "hash": "12291059340948640249" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentHeaderStyles.ts", + "hash": "12349457700947533899" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentHeaderVariables.ts", + "hash": "4518110835309799445" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentIconStyles.ts", + "hash": "11569135969451134352" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentIconVariables.ts", + "hash": "9483175780455240001" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentStyles.ts", + "hash": "15779846505997170050" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentVariables.ts", + "hash": "3257016234041658496" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarIconStyles.ts", + "hash": "4028758838427045017" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarIconVariables.ts", + "hash": "2591587808385506936" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarImageStyles.ts", + "hash": "96468916043586572" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarImageVariables.ts", + "hash": "364078636829947123" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarLabelStyles.ts", + "hash": "13782254950157830747" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarLabelVariables.ts", + "hash": "15759326830419612042" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarSizes.ts", + "hash": "17627426635900559520" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusIconStyles.ts", + "hash": "7312150310195387786" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusIconVariables.ts", + "hash": "17985283974275043652" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusImageStyles.ts", + "hash": "17469601204550358676" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusImageVariables.ts", + "hash": "11925769658427898988" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusStyles.ts", + "hash": "332835912119700268" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusVariables.ts", + "hash": "2572589371592075388" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStyles.ts", + "hash": "7585220263493020546" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarVariables.ts", + "hash": "1013220856886105656" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbDividerStyles.ts", + "hash": "4926331907265324786" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbDividerVariables.ts", + "hash": "796340858591518739" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbItemStyles.ts", + "hash": "13388667582142870191" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbItemVariables.ts", + "hash": "18399125144127877635" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbLinkStyles.ts", + "hash": "15716129793825526055" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbLinkVariables.ts", + "hash": "10738404229116591081" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbStyles.ts", + "hash": "4179557242661646205" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbVariables.ts", + "hash": "17363705806688584245" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonContentStyles.ts", + "hash": "4077583070496852803" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonContentVariables.ts", + "hash": "3289841248962264502" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonGroupStyles.ts", + "hash": "9666507498286403452" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonGroupVariables.ts", + "hash": "10499263055740846178" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonStyles.ts", + "hash": "17973504828742089357" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonVariables.ts", + "hash": "2640286218711607201" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardBodyStyles.ts", + "hash": "14909172558254849017" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardBodyVariables.ts", + "hash": "2437497254977026043" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardExpandableBoxStyles.ts", + "hash": "980512905984835656" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardExpandableBoxVariables.ts", + "hash": "7021338153745781003" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardFooterStyles.ts", + "hash": "17580288039580491037" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardFooterVariables.ts", + "hash": "12358596455283625937" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardHeaderStyles.ts", + "hash": "14086292031994645477" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardHeaderVariables.ts", + "hash": "2022030864723901395" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardPreviewStyles.ts", + "hash": "5004518115363761937" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardPreviewVariables.ts", + "hash": "16953706850035132585" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardStyles.ts", + "hash": "8302957385846401488" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardTopControlsStyles.ts", + "hash": "13727651601497210158" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardTopControlsVariables.ts", + "hash": "16228876906977315452" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardVariables.ts", + "hash": "16781711713357575232" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselItemStyles.ts", + "hash": "11574307512058055804" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselItemVariables.ts", + "hash": "1924793607788525017" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationItemStyles.ts", + "hash": "10541311879922069072" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationItemVariables.ts", + "hash": "17505837565706332131" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationStyles.ts", + "hash": "17465257619175089673" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationVariables.ts", + "hash": "14862644286814505112" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddleStyles.ts", + "hash": "15768400598026354031" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddleVariables.ts", + "hash": "7026837716515901632" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddlesContainerStyles.ts", + "hash": "1218307281472286341" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddlesContainerVariables.ts", + "hash": "13329330458608992530" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselStyles.ts", + "hash": "7060921143444106976" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselVariables.ts", + "hash": "11487998778791836037" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/paddleIndicatorUrl.ts", + "hash": "8627628437681655368" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStyles.ts", + "hash": "1582706642481936333" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStylesComfy.ts", + "hash": "11386244492140747182" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStylesCompact.ts", + "hash": "5016674558785701877" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemVariables.ts", + "hash": "16688620331680813181" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageContentStyles.ts", + "hash": "11540241569015783983" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageContentVariables.ts", + "hash": "5708450603124165917" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageDetailsStyles.ts", + "hash": "6048357409017311258" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageDetailsVariables.ts", + "hash": "16718678480987624974" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageReadStatusStyles.ts", + "hash": "5475193133926447801" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageReadStatusVariables.ts", + "hash": "15740441158743863734" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStyles.ts", + "hash": "17222338827680820446" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesComfy.ts", + "hash": "16595188472100188261" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesComfyRefresh.ts", + "hash": "4128950085386110082" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesCompact.ts", + "hash": "757629473240833905" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageVariables.ts", + "hash": "8007373764332878604" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatStyles.ts", + "hash": "15390513661512796187" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatVariables.ts", + "hash": "6419897043496563561" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxIndeterminateIndicatorUrl.ts", + "hash": "12604005374596722201" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxIndicatorUrl.ts", + "hash": "2353877159274223154" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxStyles.ts", + "hash": "7878158666403457041" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxVariables.ts", + "hash": "364391724717931561" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellButtonStyles.ts", + "hash": "3176373166612231046" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellButtonVariables.ts", + "hash": "15696217644406185001" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellStyles.ts", + "hash": "3042327811010476138" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellVariables.ts", + "hash": "4640561316133584018" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridRowStyles.ts", + "hash": "16537271159983756821" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridRowVariables.ts", + "hash": "9947680763140590997" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridStyles.ts", + "hash": "15005502310321623331" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridVariables.ts", + "hash": "2746967052288976729" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderCellStyles.ts", + "hash": "16834387999097607022" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderCellVariables.ts", + "hash": "5137706892589995908" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderStyles.ts", + "hash": "3409270825204207165" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderVariables.ts", + "hash": "17773754208072779203" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarStyles.ts", + "hash": "11348966078360204974" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarVariables.ts", + "hash": "17049658367728325474" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerStyles.ts", + "hash": "11904634714735254465" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerVariables.ts", + "hash": "1230329683489056098" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogFooterStyles.ts", + "hash": "8619218828106996268" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogStyles.ts", + "hash": "8701768500376985092" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogVariables.ts", + "hash": "14149951396267779743" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerContentStyles.ts", + "hash": "7008797215036081870" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerStyles.ts", + "hash": "13628850534872246317" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerVariables.ts", + "hash": "6700241170430353431" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/checkableIndicatorUrl.ts", + "hash": "8426540039198534384" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownItemStyles.ts", + "hash": "452058418927530843" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownItemVariables.ts", + "hash": "12518581659264948700" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSearchInputStyles.ts", + "hash": "17403407436454230120" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSearchInputVariables.ts", + "hash": "4778959973055463483" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSelectedItemStyles.ts", + "hash": "5036604166569706092" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSelectedItemVariables.ts", + "hash": "14555252578886112431" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownStyles.ts", + "hash": "12075814017562592102" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownVariables.ts", + "hash": "11773654079465347425" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Embed/embedStyles.ts", + "hash": "11157393565182874186" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Embed/embedVariables.ts", + "hash": "10946929391434652119" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Embed/pauseIndicatorUrl.ts", + "hash": "14163463494638038708" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Embed/playIndicatorUrl.ts", + "hash": "1165694472322477497" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexItemStyles.ts", + "hash": "2381351329806131630" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexItemVariables.ts", + "hash": "11530360091302042085" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexStyles.ts", + "hash": "5534555220898109500" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexVariables.ts", + "hash": "5828825052348643989" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/utils.ts", + "hash": "4853854352747265011" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formFieldStyles.ts", + "hash": "17727513840262178993" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formFieldVariables.ts", + "hash": "18442808810925646135" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formLabelStyles.ts", + "hash": "6489034326455172577" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formLabelVariables.ts", + "hash": "9967727401450345621" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formMessageStyles.ts", + "hash": "11729883337119568865" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formMessageVariables.ts", + "hash": "8869872308474735363" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formStyles.ts", + "hash": "14707309113461419683" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formVariables.tsx", + "hash": "2786566580798801176" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Grid/gridStyles.ts", + "hash": "10049913074815360538" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Grid/gridVariables.ts", + "hash": "12210096003294268830" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Header/headerDescriptionStyles.ts", + "hash": "11898695898065277973" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Header/headerDescriptionVariables.ts", + "hash": "3619509329923923644" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Header/headerStyles.ts", + "hash": "16835135212128136021" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Header/headerVariables.ts", + "hash": "7758571779047444865" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Image/imageStyles.ts", + "hash": "17845919072455127529" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Image/imageVariables.ts", + "hash": "1845819916963201984" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Input/inputLabelStyles.ts", + "hash": "15104638982297733077" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Input/inputLabelVariables.ts", + "hash": "11133331271628197753" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Input/inputStyles.ts", + "hash": "16976371114124373927" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Input/inputVariables.ts", + "hash": "11698651023241377505" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/ItemLayout/itemLayoutStyles.ts", + "hash": "100148364675088556" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/ItemLayout/itemLayoutVariables.ts", + "hash": "14521132758200335944" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Label/labelStyles.ts", + "hash": "14608065136488682405" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Label/labelVariables.ts", + "hash": "7479397155226657895" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Layout/layoutStyles.ts", + "hash": "13744831783491541854" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Layout/layoutVariables.ts", + "hash": "7302828397390671261" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentMediaStyles.ts", + "hash": "1727630438167673409" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentMediaVariables.ts", + "hash": "6423418385782322076" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentStyles.ts", + "hash": "7860236970815947468" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentVariables.ts", + "hash": "17891798796238203862" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemEndMediaStyles.ts", + "hash": "246926601143118644" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemEndMediaVariables.ts", + "hash": "7729472269563542419" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderMediaStyles.ts", + "hash": "12777502619116582480" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderMediaVariables.ts", + "hash": "7507427195942104304" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderStyles.ts", + "hash": "14906219517476433568" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderVariables.ts", + "hash": "12344372430050573068" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemMediaStyles.ts", + "hash": "17898380125799493607" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemMediaVariables.ts", + "hash": "6861309937633703425" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemStyles.ts", + "hash": "205333425101367318" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemVariables.ts", + "hash": "7222413230872375070" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listStyles.ts", + "hash": "5463710304513147120" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Loader/loaderStyles.ts", + "hash": "5135493479101604144" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Loader/loaderVariables.ts", + "hash": "1883827659536054756" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuDividerStyles.ts", + "hash": "15828338080211425311" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuDividerVariables.ts", + "hash": "11560978881139451417" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemContentStyles.ts", + "hash": "1918897226975957072" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemContentVariables.ts", + "hash": "621507624809262373" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIconStyles.ts", + "hash": "1657821507101974044" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIconVariables.ts", + "hash": "6954194845806585307" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIndicatorStyles.ts", + "hash": "4334389388364090134" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIndicatorVariables.ts", + "hash": "8707343247379130288" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemStyles.ts", + "hash": "10906382449999724608" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemVariables.ts", + "hash": "9114105854017503869" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemWrapperStyles.ts", + "hash": "6570713768429180434" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemWrapperVariables.ts", + "hash": "6034023239339142317" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuStyles.ts", + "hash": "11330709786324826763" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuVariables.ts", + "hash": "12202973407267122016" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/submenuIndicatorDirection.ts", + "hash": "16676013216713793391" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/MenuButton/menuButtonStyles.ts", + "hash": "14056489040055258236" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillActionStyles.ts", + "hash": "8218667687715450430" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillContentStyles.ts", + "hash": "5988198946627089021" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillGroupStyles.ts", + "hash": "14234046157967030444" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillIconStyles.ts", + "hash": "4833084607297422898" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillImageStyles.ts", + "hash": "5722176440840103726" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillStyles.ts", + "hash": "7875089542439177635" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillVariables.ts", + "hash": "16970434371176489441" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Popup/popupContentStyles.ts", + "hash": "11551065107006703006" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Popup/popupContentVariables.ts", + "hash": "15155299609498501605" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Provider/providerStyles.ts", + "hash": "12246946909178636635" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Provider/providerVariables.ts", + "hash": "4237050843596393851" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupItemStyles.ts", + "hash": "11733141247895106973" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupItemVariables.ts", + "hash": "1410963406810642414" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupStyles.ts", + "hash": "11216109689208890084" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionGroupStyles.ts", + "hash": "15600202085985659691" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionGroupVariables.ts", + "hash": "18279501337260248711" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionStyles.ts", + "hash": "16702933675759395312" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionVariables.ts", + "hash": "2326991576926697453" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Segment/segmentStyles.ts", + "hash": "6018260944382324087" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Segment/segmentVariables.ts", + "hash": "2340445252375615581" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonAvatarStyles.ts", + "hash": "4671061646797557270" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonAvatarVariables.ts", + "hash": "14164441955309142561" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonButtonStyles.ts", + "hash": "11213343765328628389" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonButtonVariables.ts", + "hash": "14164441955309142561" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonInputStyles.ts", + "hash": "9558645324788876370" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonInputVariables.ts", + "hash": "14164441955309142561" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonLineStyles.ts", + "hash": "72797108529890029" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonLineVariables.ts", + "hash": "14164441955309142561" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonShapeStyles.ts", + "hash": "10985309027364307359" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonShapeVariables.ts", + "hash": "14164441955309142561" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonStyles.ts", + "hash": "11582752166254840270" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonTextStyles.ts", + "hash": "10892819700266300746" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonTextVariables.ts", + "hash": "14164441955309142561" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonVariables.ts", + "hash": "12261413425486166426" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/utils/animations.ts", + "hash": "1544522978559374540" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/utils/keyframes.ts", + "hash": "10955688557993146324" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Slider/sliderStyles.ts", + "hash": "6775086548562939701" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Slider/sliderVariables.ts", + "hash": "12781842405418282858" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonDividerStyles.ts", + "hash": "14170254709512265654" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonDividerVariables.ts", + "hash": "13873446195431433000" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonStyles.ts", + "hash": "11310296505673783875" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonToggleStyles.ts", + "hash": "140511560137775517" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonToggleVariables.ts", + "hash": "9706228838613710649" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonVariables.ts", + "hash": "14969065795237070330" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/toggleIndicatorUrl.ts", + "hash": "17515531167061030155" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Status/statusStyles.ts", + "hash": "7498377440803947079" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Status/statusVariables.ts", + "hash": "5995887502689944116" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SvgIcon/svgIconStyles.ts", + "hash": "13789787697452677280" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/SvgIcon/svgIconVariables.ts", + "hash": "16830963035373843584" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableCellStyles.ts", + "hash": "9998047582789173077" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableCellVariables.ts", + "hash": "17179676172813842787" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableRowStyles.ts", + "hash": "569206166407569943" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableRowVariables.ts", + "hash": "7014195797531800777" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableStyles.ts", + "hash": "11099077070308203536" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableVariables.ts", + "hash": "14836140358238840768" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Text/textStyles.ts", + "hash": "13098771883429361252" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Text/textVariables.ts", + "hash": "7484315766041928064" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/TextArea/textAreaStyles.ts", + "hash": "12699271763260628640" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/TextArea/textAreaVariables.ts", + "hash": "7855750672377342463" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/activeIndicatorUrl.ts", + "hash": "2132244196695703598" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarCustomItemStyles.ts", + "hash": "11824158878246713951" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarCustomItemVariables.ts", + "hash": "17800092133851657140" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarDividerStyles.ts", + "hash": "9220078841634176508" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarDividerVariables.ts", + "hash": "13693107050922161757" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarItemStyles.ts", + "hash": "3328062806257722365" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarItemVariables.ts", + "hash": "17798359867619653287" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuDividerStyles.ts", + "hash": "18250406595810300819" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuDividerVariables.ts", + "hash": "13636735754107782600" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemActiveIndicatorStyles.ts", + "hash": "17858199384397461495" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemActiveIndicatorVariables.ts", + "hash": "4530719691202493349" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemIconStyles.ts", + "hash": "17700533519447906336" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemIconVariables.ts", + "hash": "5608597360865866046" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemStyles.ts", + "hash": "5949064902679255671" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemSubmenuIndicatorStyles.ts", + "hash": "15101458209206663075" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemSubmenuIndicatorVariables.ts", + "hash": "17449689611987700443" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemVariables.ts", + "hash": "8470828041757837184" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupStyles.ts", + "hash": "15990216618563936162" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupVariables.ts", + "hash": "17782808359179237346" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupWrapperStyles.ts", + "hash": "8420482674146878097" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupWrapperVariables.ts", + "hash": "6053349822566342387" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuStyles.ts", + "hash": "8946254653014395366" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuVariables.ts", + "hash": "6550857273809841135" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarRadioGroupStyles.ts", + "hash": "14314529550618535408" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarStyles.ts", + "hash": "9226371412509812252" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarVariables.ts", + "hash": "3149192147963050155" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tooltip/tooltipContentStyles.ts", + "hash": "16289553962671155894" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tooltip/tooltipContentVariables.ts", + "hash": "4629835890193990737" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/checkboxIndicatorIndeterminatedUrl.ts", + "hash": "16599601719567193527" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeItemStyles.ts", + "hash": "12208941305020675428" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeStyles.ts", + "hash": "8258447660898337239" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeTitleStyles.ts", + "hash": "14461539179534007204" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeTitleVariables.ts", + "hash": "10503889573482266724" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Video/videoStyles.ts", + "hash": "10973700802785870748" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/components/Video/videoVariables.ts", + "hash": "7696286689663916995" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/fontFaces.ts", + "hash": "5974686039723308038" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/getBorderFocusStyles.ts", + "hash": "9125604089500988430" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/getIconFillOrOutlineStyles.ts", + "hash": "8643445364266943120" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/getPointerStyles.ts", + "hash": "4467874883863290210" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/index.tsx", + "hash": "1581374776596636836" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/pointerSvgUrl.ts", + "hash": "2857368959516864884" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/siteVariables.ts", + "hash": "14661460717873001608" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/staticStyles/globalStyles.ts", + "hash": "15748922728945704003" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/staticStyles/index.ts", + "hash": "12265298600364461032" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/staticStyles/normalizeCSS.ts", + "hash": "17217307756892067800" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams/types.ts", + "hash": "7556703929819539276" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/colors.ts", + "hash": "14687655991173518735" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/componentVariables.ts", + "hash": "2041102859363169439" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Avatar/avatarVariables.ts", + "hash": "7485469476929669546" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Chat/chatMessageVariables.ts", + "hash": "10541089496613679112" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Datepicker/datepickerCalendarCellButtonVariables.ts", + "hash": "13743134975937251199" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Datepicker/datepickerCalendarCellVariables.ts", + "hash": "13635538325655268603" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Dialog/dialogVariables.ts", + "hash": "16661416746382876765" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Divider/dividerVariables.ts", + "hash": "457606091003616472" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Header/headerDescriptionVariables.ts", + "hash": "13740213389422477604" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Header/headerVariables.ts", + "hash": "15951103257039214959" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Label/labelVariables.ts", + "hash": "12614290507403279127" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuDividerVariables.ts", + "hash": "11560978881139451417" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemContentVariables.ts", + "hash": "621507624809262373" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemIconVariables.ts", + "hash": "6954194845806585307" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemIndicatorVariables.ts", + "hash": "8707343247379130288" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemVariables.ts", + "hash": "9114105854017503869" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemWrapperVariables.ts", + "hash": "6034023239339142317" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuVariables.ts", + "hash": "18299115008131538027" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Provider/providerVariables.ts", + "hash": "8926038134835895724" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/RadioGroup/radioGroupItemVariables.ts", + "hash": "2019025478424256877" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Reaction/reactionVariables.ts", + "hash": "7086243477847928114" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Segment/segmentVariables.ts", + "hash": "3470197313996434519" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/SplitButton/splitButtonVariables.ts", + "hash": "4894562380788390580" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/SvgIcon/svgIconVariables.ts", + "hash": "10250719142105668304" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Text/textVariables.ts", + "hash": "7219713579841817306" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/index.ts", + "hash": "8831629279983580483" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark/siteVariables.ts", + "hash": "13865421087482632956" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/componentVariables.ts", + "hash": "33620482670618895" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Chat/chatMessageDetailsVariables.ts", + "hash": "10294568132566105829" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Chat/chatMessageVariables.ts", + "hash": "12838676128597460041" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Datepicker/datepickerCalendarCellButtonVariables.ts", + "hash": "17272841726990664443" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Dialog/dialogVariables.ts", + "hash": "12638905351755113117" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Text/textVariables.ts", + "hash": "6345058832963791127" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/index.ts", + "hash": "9797885670991484222" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/siteVariables.ts", + "hash": "9936863096117855431" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/componentStyles.ts", + "hash": "2359425232917487546" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/componentVariables.ts", + "hash": "1708402668906207631" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Button/buttonStyles.ts", + "hash": "7008985540648425028" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Checkbox/checkboxStyles.ts", + "hash": "15138412880018022295" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarCellButtonStyles.ts", + "hash": "7870619796997738972" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarCellStyles.ts", + "hash": "6206233104341220487" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarGridRowStyles.ts", + "hash": "2119543217722202588" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Dropdown/dropdownItemStyles.ts", + "hash": "4165428385506424575" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Embed/embedVariables.ts", + "hash": "7897291940205825257" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Menu/menuItemWrapperStyles.ts", + "hash": "13211947306758208686" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Slider/sliderStyles.ts", + "hash": "2080253347622693642" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SplitButton/splitButtonDividerStyles.ts", + "hash": "5778044792599420671" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SplitButton/splitButtonToggleStyles.ts", + "hash": "12593872137564797775" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SvgIcon/svgIconStyles.ts", + "hash": "1467745510690848118" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Toolbar/toolbarItemStyles.ts", + "hash": "6529203507339313836" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/index.ts", + "hash": "13828693508172020337" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/colors.ts", + "hash": "13380170100585365255" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/componentVariables.ts", + "hash": "12850886699449788115" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Avatar/avatarVariables.ts", + "hash": "5929945505833645363" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Button/buttonVariables.ts", + "hash": "4230100176295354725" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Card/cardVariables.ts", + "hash": "4441392006693378487" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Chat/chatMessageVariables.ts", + "hash": "10277153225320233374" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Chat/chatVariables.ts", + "hash": "15428558076173865476" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Checkbox/checkboxVariables.ts", + "hash": "1438647470493103546" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarCellButtonVariables.ts", + "hash": "5108786434431634510" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarCellVariables.ts", + "hash": "15882597416321592805" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarGridRowVariables.ts", + "hash": "3274762635991417057" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dialog/dialogVariables.ts", + "hash": "800524904879833383" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Divider/dividerVariables.ts", + "hash": "7016648034119248666" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownItemVariables.ts", + "hash": "12518581659264948700" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownSelectedItemVariables.ts", + "hash": "14555252578886112431" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownVariables.ts", + "hash": "13983034283305393777" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Embed/embedVariables.ts", + "hash": "13092970836696786627" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Header/headerVariables.ts", + "hash": "8503267197439685170" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Input/inputVariables.ts", + "hash": "520353307861641229" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Label/labelVariables.ts", + "hash": "11589864746261847205" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Loader/loaderVariables.ts", + "hash": "9405199539273439418" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuDividerVariables.ts", + "hash": "11560978881139451417" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemContentVariables.ts", + "hash": "621507624809262373" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemIconVariables.ts", + "hash": "6954194845806585307" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemIndicatorVariables.ts", + "hash": "8707343247379130288" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemVariables.ts", + "hash": "9114105854017503869" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemWrapperVariables.ts", + "hash": "6034023239339142317" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuVariables.ts", + "hash": "1277746220742188888" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Provider/providerVariables.ts", + "hash": "10571309971208651489" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/RadioGroup/radioGroupItemVariables.ts", + "hash": "1439639555343322710" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Reaction/reactionVariables.ts", + "hash": "5062189662819961655" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Segment/segmentVariables.ts", + "hash": "14062126404753888651" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/SplitButton/splitButtonVariables.ts", + "hash": "2324856329243342733" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Text/textVariables.ts", + "hash": "7369839868744494882" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/TextArea/textAreaVariables.ts", + "hash": "5737337775538968850" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarCustomItemVariables.ts", + "hash": "17800092133851657140" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarDividerVariables.ts", + "hash": "13693107050922161757" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarItemVariables.ts", + "hash": "17798359867619653287" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuDividerVariables.ts", + "hash": "13636735754107782600" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemActiveIndicatorVariables.ts", + "hash": "4530719691202493349" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemIconVariables.ts", + "hash": "5608597360865866046" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemSubmenuIndicatorVariables.ts", + "hash": "17449689611987700443" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemVariables.ts", + "hash": "8470828041757837184" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuRadioGroupVariables.ts", + "hash": "17782808359179237346" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuRadioGroupWrapperVariables.ts", + "hash": "6053349822566342387" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuVariables.ts", + "hash": "6550857273809841135" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarVariables.ts", + "hash": "15415334169765226340" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Tooltip/tooltipContentVariables.ts", + "hash": "11033527039317202465" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/index.ts", + "hash": "10952774136721087966" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/siteVariables.ts", + "hash": "4549791645439227052" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-v2/componentVariables.ts", + "hash": "15533000153074961336" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-v2/components/Chat/chatMessageDetailsVariables.ts", + "hash": "10294568132566105829" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-v2/components/Chat/chatMessageVariables.ts", + "hash": "4391401100274700451" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-v2/components/Text/textVariables.ts", + "hash": "6345058832963791127" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-v2/index.ts", + "hash": "4177525779689153766" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/teams-v2/siteVariables.ts", + "hash": "17867815598183882592" + }, + { + "file": "packages/fluentui/react-northstar/src/themes/types.ts", + "hash": "4007152926719875180" + }, + { + "file": "packages/fluentui/react-northstar/src/types.ts", + "hash": "8034626796951276018" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/accessibility/FocusHandling/FocusContainer.ts", + "hash": "8373133028965064743" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/accessibility/Styles/accessibilityStyles.ts", + "hash": "3664069971041003478" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/commonPropInterfaces.ts", + "hash": "1867192726082976183" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/commonPropTypes.ts", + "hash": "9865645421311194631" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/constants.ts", + "hash": "16875657864767821301" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/createComponent.tsx", + "hash": "13489270601672849222" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/createComponentInternal.ts", + "hash": "4922907263354399064" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/dateFormatting.defaults.ts", + "hash": "13692590557899151685" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/dateFormatting.types.ts", + "hash": "16508226785106265770" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatDay.ts", + "hash": "18225295570491744117" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatMonthDayYear.ts", + "hash": "13079395079301750418" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatMonthYear.ts", + "hash": "8693233030079857638" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatYear.ts", + "hash": "11737192759499506409" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/index.ts", + "hash": "17338481091946929409" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/dateGrid.types.ts", + "hash": "9429451993053819858" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/findAvailableDate.ts", + "hash": "17812579345659974705" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getBoundedDateRange.ts", + "hash": "5151142947748778290" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getDateRangeTypeToUse.ts", + "hash": "16696959932960635992" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getDayGrid.ts", + "hash": "8170172914110350314" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/index.ts", + "hash": "12957004530838335926" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isAfterMaxDate.ts", + "hash": "4879284728703250347" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isBeforeMinDate.ts", + "hash": "9762482266014451107" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isContiguous.ts", + "hash": "17889414780369493822" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isRestrictedDate.ts", + "hash": "8608321153134897550" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateMath/dateMath.ts", + "hash": "1559935868198869990" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateValues/dateValues.ts", + "hash": "6136428444968832474" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateValues/timeConstants.ts", + "hash": "11246283356384718781" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/index.ts", + "hash": "9964063213143333808" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/doesNodeContainClick.tsx", + "hash": "12125759582258943223" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/factories.ts", + "hash": "17858959541041954517" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/fontSizeUtility.ts", + "hash": "8951310441334447681" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/format.ts", + "hash": "660643786560617444" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/getKindProp.ts", + "hash": "10668323006325811482" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/getOrGenerateIdFromShorthand.ts", + "hash": "7159609441996775627" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/getReactFiberFromNode.ts", + "hash": "15887164690270712100" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/htmlPropsUtils.tsx", + "hash": "8492245048141318554" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/index.ts", + "hash": "10809702915518222560" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/isBrowser.tsx", + "hash": "8377252813388330231" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/isRightClick.ts", + "hash": "9229416080838438451" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/mergeProviderContexts.ts", + "hash": "5994964037716514132" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/Popper.tsx", + "hash": "6388171080340640615" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/createReferenceFromClick.ts", + "hash": "7463861146748463910" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/getBasePlacement.ts", + "hash": "9075466749088351681" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/getBoundary.ts", + "hash": "4063574645465863990" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/getScrollParent.ts", + "hash": "6406857083616074429" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/index.ts", + "hash": "16741470065971830342" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/isIntersectingModifier.ts", + "hash": "14996281385889671915" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/partitionPopperPropsFromShorthand.ts", + "hash": "60902350216586212" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/positioningHelper.ts", + "hash": "11838972231834093918" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/types.internal.ts", + "hash": "8041393692256519971" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/types.ts", + "hash": "10059359397654935976" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/positioner/usePopper.ts", + "hash": "5361783124069308182" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/providerMissingHandler.ts", + "hash": "1279551015713903316" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/renderComponent.tsx", + "hash": "16927930450112016967" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/rtlTextContainer.tsx", + "hash": "4868725216145875527" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/shouldPreventDefaultOnKeyDown.ts", + "hash": "5655537719905651960" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/stringLiteralsArray.ts", + "hash": "10689007480493641009" + }, + { + "file": "packages/fluentui/react-northstar/src/utils/whatInput.ts", + "hash": "15905753664237270166" + }, + { + "file": "packages/fluentui/react-northstar/test/__mocks__/@popperjs/core.ts", + "hash": "7478175262164732181" + }, + { + "file": "packages/fluentui/react-northstar/test/__mocks__/lodash.ts", + "hash": "17131456654501248151" + }, + { + "file": "packages/fluentui/react-northstar/test/__mocks__/react-transition-group.ts", + "hash": "12729441849589802586" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/commonHelpers.ts", + "hash": "15161560263721820605" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/eventTarget.ts", + "hash": "10879088653306825915" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/extraConformanceTests.tsx", + "hash": "7660913897739216792" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/handlesAccessibility.tsx", + "hash": "14547718182071292892" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/htmlIsAccessibilityCompliant.ts", + "hash": "10577071958328154685" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/implementsCollectionShorthandProp.tsx", + "hash": "3217428025445274887" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/implementsPopperProps.tsx", + "hash": "9652296180090228330" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/implementsShorthandProp.tsx", + "hash": "17761144056956912361" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/implementsWrapperProp.tsx", + "hash": "3773268252436089902" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/index.ts", + "hash": "2058280329446324209" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/commonTests/isConformant.tsx", + "hash": "10778236703368157250" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Accordion/Accordion-test.tsx", + "hash": "16603233108252648288" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Accordion/AccordionContent-test.tsx", + "hash": "8235180871538684066" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Accordion/AccordionTitle-test.tsx", + "hash": "1913859106925668364" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Alert/Alert-test.tsx", + "hash": "17921665851972536059" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Alert/AlertDismissAction-test.tsx", + "hash": "10345856310136386920" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Animation/Animation-test.tsx", + "hash": "13826604861874426066" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/Attachment-test.tsx", + "hash": "16957293851459536363" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentAction-test.tsx", + "hash": "14620159586847349890" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentBody-test.tsx", + "hash": "7772374243305788108" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentDescription-test.tsx", + "hash": "17209875525350538285" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentHeader-test.tsx", + "hash": "1651566118295417225" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentIcon-test.tsx", + "hash": "17933537462765513484" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Avatar/Avatar-test.tsx", + "hash": "4322381528047759922" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Avatar/AvatarStatusIcon-test.tsx", + "hash": "6251030996757450195" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Box/Box-test.tsx", + "hash": "17835161325052902783" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Breadcrumb/Breadcrumb-test.ts", + "hash": "16386882857663541002" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbDivider-test.ts", + "hash": "8035817973357532220" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbItem-test.ts", + "hash": "3181156825954883132" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbLink-test.ts", + "hash": "11147658363668547992" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Button/Button-test.tsx", + "hash": "1326436848149099376" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Button/ButtonContent-test.tsx", + "hash": "10169093068037721396" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Button/ButtonGroup-test.tsx", + "hash": "13404732748774538333" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Card/Card-test.tsx", + "hash": "14872801092154452183" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardBody-test.tsx", + "hash": "4961802290389165907" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardColumn-test.tsx", + "hash": "2946857707153904783" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardExpandableBox-test.tsx", + "hash": "18081246896977472476" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardFooter-test.tsx", + "hash": "4568333006684685536" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardHeader-test.tsx", + "hash": "5973905523470608280" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardPreview-test.tsx", + "hash": "15380903345359050138" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardTopControls-test.tsx", + "hash": "12718460699447619691" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/Carousel-test.tsx", + "hash": "6512271293541251118" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselItem-test.tsx", + "hash": "15488894922033434421" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselNavigation-test.tsx", + "hash": "1989696240370193656" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselNavigationItem-test.tsx", + "hash": "4630459689601325689" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselPaddle-test.tsx", + "hash": "17284552819210128139" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Chat/Chat-test.tsx", + "hash": "16240544497376105969" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatItem-test.tsx", + "hash": "9317815919826984931" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessage-test.tsx", + "hash": "15704714301524573565" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageContent-test.tsx", + "hash": "12206648926544507089" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageDetails-test.tsx", + "hash": "3897749336843958446" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageHeader-test.tsx", + "hash": "12042384580656900705" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageReadStatus-test.tsx", + "hash": "13588198715754619111" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Checkbox/Checkbox-test.tsx", + "hash": "7825630663755003476" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/Datepicker-test.tsx", + "hash": "1861003246359552439" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendar-test.tsx", + "hash": "2233720293546010797" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarCell-test.tsx", + "hash": "15892486420343153903" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarCellButton-test.tsx", + "hash": "8997437747079875984" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarGrid-test.tsx", + "hash": "12491487181544275019" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarGridRow-test.tsx", + "hash": "6748518535575405844" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeader-test.tsx", + "hash": "15227031319512760357" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeaderAction-test.tsx", + "hash": "14664648722850097564" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeaderCell-test.tsx", + "hash": "8616588072472146297" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/navigateToNewDate-test.tsx", + "hash": "8732936018653634364" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/validateDate-test.tsx", + "hash": "2834079238353411400" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Debug/utils-test.ts", + "hash": "1339206635125466021" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Dialog/Dialog-test.tsx", + "hash": "9237941996732807559" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Dialog/DialogFooter-test.tsx", + "hash": "9235047452155095681" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Divider/Divider-test.tsx", + "hash": "12854080868881418619" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Divider/DividerContent-test.tsx", + "hash": "14342575122727540692" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/Dropdown-test.tsx", + "hash": "7604599215403052112" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownItem-test.tsx", + "hash": "1473585089237751717" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownSearchInput-test.tsx", + "hash": "3925975303508541947" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownSelectedItem-test.tsx", + "hash": "12109862275815818659" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/test-utils.tsx", + "hash": "9778718411390596817" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Embed/Embed-test.tsx", + "hash": "18004703066055679324" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/Form-test.tsx", + "hash": "4357145295874511821" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormButton-test.tsx", + "hash": "2480530927011052275" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormCheckbox-test.tsx", + "hash": "16595455459410141480" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormDatepicker-test.tsx", + "hash": "6123129437006011085" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormDropdown-test.tsx", + "hash": "3439503302665132723" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormField-test.tsx", + "hash": "9414094539119391119" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormFieldCustom-test.tsx", + "hash": "7542078810202115053" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormInput-test.tsx", + "hash": "8382766727191067703" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormLabel-test.tsx", + "hash": "2042354020208887865" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormMessage-test.tsx", + "hash": "15906543573128503902" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormRadioGroup-test.tsx", + "hash": "5056958632862126533" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormSlider-test.tsx", + "hash": "364414860270359616" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormTextArea-test.tsx", + "hash": "14998274972297178761" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Grid/Grid-test.tsx", + "hash": "17892297248944202229" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Header/Header-test.ts", + "hash": "9487762096743194623" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Header/HeaderDescription-test.ts", + "hash": "15842708465317391877" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Image/Image-test.tsx", + "hash": "12851937568039079063" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Input/Input-test.tsx", + "hash": "1691823196277230616" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Input/InputLabel-test.tsx", + "hash": "877087592278268379" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/ItemLayout/ItemLayout-test.ts", + "hash": "8485818133839845423" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Label/Label-test.tsx", + "hash": "9474396410541813616" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Layout/Layout-test.ts", + "hash": "1900237706348259417" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/List/List-test.tsx", + "hash": "3097287775703992573" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItem-test.tsx", + "hash": "9928356118452444044" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemContent-test.tsx", + "hash": "1095048506653080069" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemContentMedia-test.tsx", + "hash": "17371151810202432116" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemEndMedia-test.tsx", + "hash": "1322925889570751378" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemHeader-test.tsx", + "hash": "2846611475396535397" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemHeaderMedia-test.tsx", + "hash": "4877505627170088792" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemMedia-test.tsx", + "hash": "18069936088151066910" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Loader/Loader-test.tsx", + "hash": "9449749231197165968" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Menu/Menu-test.tsx", + "hash": "12165382481008066044" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuDivider-test.ts", + "hash": "11686102310312265839" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItem-test.tsx", + "hash": "2654099299647523812" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemContent-test.tsx", + "hash": "7715872639743413366" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemIcon-test.tsx", + "hash": "14320571732615103337" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemIndicator-test.tsx", + "hash": "8332513050282139750" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemWrapper-test.tsx", + "hash": "5853615396637177252" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/MenuButton/MenuButton-test.tsx", + "hash": "10459616558362422535" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Pill/Pill-test.tsx", + "hash": "9581060234870722120" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Pill/PillAction-test.ts", + "hash": "6179880651922626996" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Pill/PillGroup-test.ts", + "hash": "11981612515295806007" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Popup/Popup-test.tsx", + "hash": "8434777514512007216" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Popup/PopupContent-test.ts", + "hash": "13638739475903005750" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Portal/Portal-test.tsx", + "hash": "15465996118162269272" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Portal/PortalInner-test.tsx", + "hash": "5754434891661785018" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Provider/Provider-test.tsx", + "hash": "2240640287140070383" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Provider/ProviderConsumer-test.tsx", + "hash": "13002904769286609320" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/RadioGroup/RadioGroup-test.tsx", + "hash": "17457288701005817085" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/RadioGroup/RadioGroupItem-test.ts", + "hash": "3694787136224530727" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Reaction/Reaction-test.tsx", + "hash": "17460569499475553055" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Reaction/ReactionGroup-test.tsx", + "hash": "8891288184075771422" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Segment/Segment-test.ts", + "hash": "18342948157651185262" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/Skeleton-test.tsx", + "hash": "5431693271941474537" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonAvatar-test.tsx", + "hash": "633215657105970504" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonButton-test.tsx", + "hash": "857912520415791019" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonInput-test.tsx", + "hash": "16014302676971243686" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonLine-test.tsx", + "hash": "6710987888418158263" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonShape-test.tsx", + "hash": "417051666742724868" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonText-test.tsx", + "hash": "13342668590815722830" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Slider/Slider-test.tsx", + "hash": "17195985081238689502" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/SplitButton/SplitButton-test.tsx", + "hash": "6285634676352090825" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/SplitButton/SplitButtonToggle-test.tsx", + "hash": "17168430121306085647" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Status/Status-test.tsx", + "hash": "9207495202148573899" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Table/Table-test.tsx", + "hash": "14320851970052755336" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Table/TableCell-test.tsx", + "hash": "13268733205756804476" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Table/TableRow-test.tsx", + "hash": "15721665457219970259" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Text/Text-test.tsx", + "hash": "15774609461339472960" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/TextArea/TextArea-test.tsx", + "hash": "10904772413893805454" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/Toolbar-test.tsx", + "hash": "3273080662216660222" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarCustomItem-test.ts", + "hash": "1971629901099191306" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarDivider-test.ts", + "hash": "1961608604314474618" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItem-test.tsx", + "hash": "18244914693327485303" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItemIcon-test.tsx", + "hash": "13596680737528963805" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItemWrapper-test.tsx", + "hash": "13156786441078339060" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenu-test.tsx", + "hash": "17322254714369170926" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuDivider-test.ts", + "hash": "2317588345846814381" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItem-test.ts", + "hash": "14252176927580183276" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemActiveIndicator-test.ts", + "hash": "7338121822972968481" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemContent-test.ts", + "hash": "16940688787172569278" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemIcon-test.ts", + "hash": "12036502141770290712" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemSubmenuIndicator-test.ts", + "hash": "17060725767436850200" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuRadioGroup-test.ts", + "hash": "13251209218976290123" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuRadioGroupWrapper-test.ts", + "hash": "12304408542935772201" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarRadioGroup-test.tsx", + "hash": "10137003306110435359" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Tooltip/Tooltip-test.tsx", + "hash": "8889331025271088718" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Tooltip/TooltipContent-test.ts", + "hash": "7678283977980244711" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Tree/Tree-test.tsx", + "hash": "10244675648720734018" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Tree/TreeItem-test.tsx", + "hash": "4945161483942705254" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Tree/TreeTitle-test.tsx", + "hash": "8773859907745772342" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Tree/useTree-test.tsx", + "hash": "5793822819577735110" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Tree/useVirtualTree-test.tsx", + "hash": "5626760577217895360" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/components/Video/Video-test.tsx", + "hash": "1926816928517605541" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/themes/colorUtils-test.ts", + "hash": "7657706024055204904" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/accessibility/FocusContainer-test.ts", + "hash": "223800887962504547" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/createComponent-test.tsx", + "hash": "7246460273016057939" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatDay-test.ts", + "hash": "2311094940376933322" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatMonthDayYear-test.ts", + "hash": "1872098968821842300" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatMonthYear-test.ts", + "hash": "2459189009262561277" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatYear-test.ts", + "hash": "16280194774285350298" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/__snapshots__/getDayGrid-test.ts.snap", + "hash": "2311635867604483689" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/findAvailableDate-test.ts", + "hash": "15572784148609697340" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getBoundedDateRange-test.ts", + "hash": "2623791697737703526" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getDateRangeTypeToUse-test.ts", + "hash": "14573867150223039839" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getDayGrid-test.ts", + "hash": "6975924948134206302" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isAfterMaxDate-test.ts", + "hash": "12815467872040329995" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isBeforeMinDate-test.ts", + "hash": "3803387967835514747" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isContiguous-test.ts", + "hash": "16494931337448801984" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isRestrictedDate-test.ts", + "hash": "3940731087686096730" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateMath/dateMath-test.ts", + "hash": "10661094989801549340" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/doesNodeContainClick-test.ts", + "hash": "16229342285576678393" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/factories-test.tsx", + "hash": "15646126022037774298" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/fontSizeUtility-test.ts", + "hash": "17646536945264760221" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/getReactFiberFromNode-test.tsx", + "hash": "14994895051922141272" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/htmlInputPropsUtils-test.ts", + "hash": "7674098100722179265" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/isBrowser-test.ts", + "hash": "17150880185040762390" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/mergeProviderContexts/mergeBooleanValues-test.ts", + "hash": "16868530262621193395" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/mergeProviderContexts/mergeProviderContexts-test.ts", + "hash": "15934990098831498959" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/positioner/getScrollParent-test.ts", + "hash": "15923669357357889226" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/positioner/positioningHelper-test.ts", + "hash": "12724373629963656299" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/shouldPreventDefaultOnKeyDown-test.ts", + "hash": "284482009341561469" + }, + { + "file": "packages/fluentui/react-northstar/test/specs/utils/whatInput-test.tsx", + "hash": "4965920864058832888" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/assertNodeContains.ts", + "hash": "16326988012836660074" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/consoleUtil.ts", + "hash": "1538858825893602837" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/domEvent.ts", + "hash": "1337068844579757941" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/findIntrinsicElement.ts", + "hash": "11574652103696867807" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/getDisplayName.ts", + "hash": "13697273738737733112" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/index.ts", + "hash": "1972489484976587726" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/nextFrame.ts", + "hash": "7596599917002412285" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/syntheticEvent.ts", + "hash": "10249353881461568646" + }, + { + "file": "packages/fluentui/react-northstar/test/utils/withProvider.tsx", + "hash": "14725531562489182975" + }, + { + "file": "packages/fluentui/react-northstar/tsconfig.json", + "hash": "3307365675788742834" + }, + { + "file": "packages/fluentui/react-northstar/tsconfig.spec.json", + "hash": "8498668848331699403" + } + ], + "@fluentui/react-conformance-griffel": [ + { + "file": "packages/react-components/react-conformance-griffel/.babelrc.json", + "hash": "8174012058119950495" + }, + { + "file": "packages/react-components/react-conformance-griffel/.eslintrc.json", + "hash": "11018738359270224912" + }, + { + "file": "packages/react-components/react-conformance-griffel/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-conformance-griffel/CHANGELOG.json", + "hash": "1599448451519957366" + }, + { + "file": "packages/react-components/react-conformance-griffel/CHANGELOG.md", + "hash": "15963932008129979815" + }, + { + "file": "packages/react-components/react-conformance-griffel/LICENSE", + "hash": "9276497511127924988" + }, + { + "file": "packages/react-components/react-conformance-griffel/README.md", + "hash": "17310260780896769631" + }, + { + "file": "packages/react-components/react-conformance-griffel/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-conformance-griffel/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-conformance-griffel/etc/react-conformance-griffel.api.md", + "hash": "17760332850409220085" + }, + { + "file": "packages/react-components/react-conformance-griffel/jest.config.js", + "hash": "15227294323143014741" + }, + { + "file": "packages/react-components/react-conformance-griffel/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-conformance-griffel/package.json", + "hash": "13528663482705912139", + "deps": [ + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:typescript" + ] + }, + { + "file": "packages/react-components/react-conformance-griffel/project.json", + "hash": "13900267515539558779" + }, + { + "file": "packages/react-components/react-conformance-griffel/src/index.ts", + "hash": "7791951983184089960" + }, + { + "file": "packages/react-components/react-conformance-griffel/src/matchers/index.ts", + "hash": "12326396871232725303" + }, + { + "file": "packages/react-components/react-conformance-griffel/src/matchers/toContainClassNameLastInCalls.test.ts", + "hash": "8633457890093301366" + }, + { + "file": "packages/react-components/react-conformance-griffel/src/matchers/toContainClassNameLastInCalls.ts", + "hash": "419654042826238667" + }, + { + "file": "packages/react-components/react-conformance-griffel/src/matchers/toHaveMergeClassesCalledTimesWithClassName.test.ts", + "hash": "17095451530468328915" + }, + { + "file": "packages/react-components/react-conformance-griffel/src/matchers/toHaveMergeClassesCalledTimesWithClassName.ts", + "hash": "10742531573460176078" + }, + { + "file": "packages/react-components/react-conformance-griffel/src/overridesWin.ts", + "hash": "5177685846648410797" + }, + { + "file": "packages/react-components/react-conformance-griffel/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/react-conformance-griffel/tsconfig.lib.json", + "hash": "13650566283900444399" + }, + { + "file": "packages/react-components/react-conformance-griffel/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/style-utilities": [ + { + "file": "packages/style-utilities/.eslintrc.json", + "hash": "777445592424795063" + }, + { + "file": "packages/style-utilities/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/style-utilities/CHANGELOG.json", + "hash": "16559089319701978657" + }, + { + "file": "packages/style-utilities/CHANGELOG.md", + "hash": "11293021336094530000" + }, + { + "file": "packages/style-utilities/LICENSE", + "hash": "10631102846389405471" + }, + { + "file": "packages/style-utilities/README.md", + "hash": "8785584383498049932" + }, + { + "file": "packages/style-utilities/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/style-utilities/config/config.json", + "hash": "492575458105150550" + }, + { + "file": "packages/style-utilities/config/write-manifests.json", + "hash": "9493299321895719529" + }, + { + "file": "packages/style-utilities/etc/style-utilities.api.md", + "hash": "1346941679710414993" + }, + { + "file": "packages/style-utilities/jest.config.js", + "hash": "3240558433730290797" + }, + { + "file": "packages/style-utilities/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/style-utilities/package.json", + "hash": "10054612952908139680", + "deps": [ + "npm:@microsoft/load-themed-styles", + "@fluentui/theme", + "@fluentui/merge-styles", + "@fluentui/set-version", + "@fluentui/utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/style-utilities/project.json", + "hash": "2354001145725204558" + }, + { + "file": "packages/style-utilities/src/MergeStyles.ts", + "hash": "12687567316096870855" + }, + { + "file": "packages/style-utilities/src/Utilities.ts", + "hash": "7452799764049456122" + }, + { + "file": "packages/style-utilities/src/cdn.ts", + "hash": "2068649209194047104" + }, + { + "file": "packages/style-utilities/src/classNames/AnimationClassNames.ts", + "hash": "10911362795623760003" + }, + { + "file": "packages/style-utilities/src/classNames/ColorClassNames.ts", + "hash": "15467006911252499549" + }, + { + "file": "packages/style-utilities/src/classNames/FontClassNames.ts", + "hash": "12726977663961178186" + }, + { + "file": "packages/style-utilities/src/classNames/index.ts", + "hash": "14430502139131911936" + }, + { + "file": "packages/style-utilities/src/index.ts", + "hash": "16923130164332550840" + }, + { + "file": "packages/style-utilities/src/interfaces/IAnimationStyles.ts", + "hash": "12986432637445274053" + }, + { + "file": "packages/style-utilities/src/interfaces/IGetFocusStyles.ts", + "hash": "6841339027325532436" + }, + { + "file": "packages/style-utilities/src/interfaces/index.ts", + "hash": "4233406151298891077" + }, + { + "file": "packages/style-utilities/src/styles/AnimationStyles.ts", + "hash": "13873762751663857941" + }, + { + "file": "packages/style-utilities/src/styles/CommonStyles.ts", + "hash": "17789799438239226639" + }, + { + "file": "packages/style-utilities/src/styles/DefaultEffects.ts", + "hash": "17737879615641440019" + }, + { + "file": "packages/style-utilities/src/styles/DefaultFontStyles.ts", + "hash": "16110133181151166893" + }, + { + "file": "packages/style-utilities/src/styles/DefaultPalette.ts", + "hash": "308226778033962556" + }, + { + "file": "packages/style-utilities/src/styles/DefaultSpacing.ts", + "hash": "9920566915208494979" + }, + { + "file": "packages/style-utilities/src/styles/GeneralStyles.ts", + "hash": "351343555411730221" + }, + { + "file": "packages/style-utilities/src/styles/PulsingBeaconAnimationStyles.ts", + "hash": "1690259696892853135" + }, + { + "file": "packages/style-utilities/src/styles/fonts.ts", + "hash": "8465894030987436105" + }, + { + "file": "packages/style-utilities/src/styles/getFadedOverflowStyle.ts", + "hash": "2192178636602906456" + }, + { + "file": "packages/style-utilities/src/styles/getFocusStyle.ts", + "hash": "14892328874399091488" + }, + { + "file": "packages/style-utilities/src/styles/getGlobalClassNames.test.ts", + "hash": "15322990379229959297" + }, + { + "file": "packages/style-utilities/src/styles/getGlobalClassNames.ts", + "hash": "11769296658838531911" + }, + { + "file": "packages/style-utilities/src/styles/getPlaceholderStyles.ts", + "hash": "1528620556961214673" + }, + { + "file": "packages/style-utilities/src/styles/hiddenContentStyle.ts", + "hash": "15085522144708332270" + }, + { + "file": "packages/style-utilities/src/styles/index.ts", + "hash": "13699769295309937200" + }, + { + "file": "packages/style-utilities/src/styles/scheme.test.ts", + "hash": "14291007267009640848" + }, + { + "file": "packages/style-utilities/src/styles/scheme.ts", + "hash": "7384403392194222555" + }, + { + "file": "packages/style-utilities/src/styles/theme.test.ts", + "hash": "17085591667890151459" + }, + { + "file": "packages/style-utilities/src/styles/theme.ts", + "hash": "6368189951590670151" + }, + { + "file": "packages/style-utilities/src/styles/zIndexes.ts", + "hash": "5466025012238433759" + }, + { + "file": "packages/style-utilities/src/utilities/buildClassMap.ts", + "hash": "8219739827132639559" + }, + { + "file": "packages/style-utilities/src/utilities/getIconClassName.ts", + "hash": "7401286075380243893" + }, + { + "file": "packages/style-utilities/src/utilities/icons.test.ts", + "hash": "13392146120626313866" + }, + { + "file": "packages/style-utilities/src/utilities/icons.ts", + "hash": "11770390318349620343" + }, + { + "file": "packages/style-utilities/src/utilities/index.ts", + "hash": "14587868060223513086" + }, + { + "file": "packages/style-utilities/src/version.ts", + "hash": "571632617522871792" + }, + { + "file": "packages/style-utilities/tsconfig.json", + "hash": "1525836875762683581" + } + ], + "@fluentui/scripts-ts-node": [ + { + "file": "scripts/ts-node/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/ts-node/jest.config.js", + "hash": "17845001107193385709" + }, + { + "file": "scripts/ts-node/package.json", + "hash": "12828502435875523151" + }, + { + "file": "scripts/ts-node/project.json", + "hash": "2171572583854711182" + }, + { + "file": "scripts/ts-node/register.js", + "hash": "7326554617006767970" + }, + { + "file": "scripts/ts-node/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/ts-node/tsconfig.lib.json", + "hash": "3753806828268919288" + }, + { + "file": "scripts/ts-node/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/react-northstar-emotion-renderer": [ + { + "file": "packages/fluentui/react-northstar-emotion-renderer/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/jest.config.js", + "hash": "10065914605359659073" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/package.json", + "hash": "16057095585920927971", + "deps": [ + "npm:@babel/runtime", + "npm:@emotion/cache", + "npm:@emotion/serialize", + "npm:@emotion/sheet", + "npm:@emotion/utils", + "@fluentui/react-northstar-styles-renderer", + "@fluentui/styles", + "npm:stylis", + "npm:stylis-plugin-rtl", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:@types/stylis", + "npm:lerna-alias", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/project.json", + "hash": "5988446854191171584" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/src/createEmotionRenderer.tsx", + "hash": "3527459238388368320" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/src/disableAnimations.ts", + "hash": "15169298850039687481" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/src/focusVisiblePlugin.ts", + "hash": "15882127862814043576" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/src/fontUtils.ts", + "hash": "2024523837323362739" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/src/index.ts", + "hash": "4595283533174490101" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/src/invokeKeyframes.ts", + "hash": "8615174738355072265" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/src/utils.ts", + "hash": "4045080220261049628" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/test/__snapshots__/emotionRenderer-test.ts.snap", + "hash": "10413787701503712849" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/test/emotionRenderer-test.ts", + "hash": "13586919140231825454" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/test/focusVisiblePlugin-test.ts", + "hash": "13336232390182493707" + }, + { + "file": "packages/fluentui/react-northstar-emotion-renderer/tsconfig.json", + "hash": "17948747254354210464" + } + ], + "@fluentui/react-table": [ + { + "file": "packages/react-components/react-table/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-table/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-table/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-table/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-table/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-table/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-table/CHANGELOG.json", + "hash": "15976043308258216480" + }, + { + "file": "packages/react-components/react-table/CHANGELOG.md", + "hash": "12284887034328568848" + }, + { + "file": "packages/react-components/react-table/LICENSE", + "hash": "4345477832354288605" + }, + { + "file": "packages/react-components/react-table/README.md", + "hash": "4901443484789913206" + }, + { + "file": "packages/react-components/react-table/bundle-size/DataGrid.fixture.js", + "hash": "3853986990699722698" + }, + { + "file": "packages/react-components/react-table/bundle-size/PrimitivesOnly.fixture.js", + "hash": "2453502332089171285" + }, + { + "file": "packages/react-components/react-table/bundle-size/TableAsDataGrid.fixture.js", + "hash": "3489469272183983884" + }, + { + "file": "packages/react-components/react-table/bundle-size/TableSelectionOnly.fixture.js", + "hash": "15101770674769534092" + }, + { + "file": "packages/react-components/react-table/bundle-size/TableSortOnly.fixture.js", + "hash": "16772869715114899305" + }, + { + "file": "packages/react-components/react-table/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-table/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-table/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-table/docs/Spec.md", + "hash": "6293734900932760050" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide1.PNG", + "hash": "12816229816120791114" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide10.PNG", + "hash": "507403483594248181" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide11.PNG", + "hash": "10821002649331152305" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide12.PNG", + "hash": "16044207046169017904" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide13.PNG", + "hash": "4558085957645872825" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide14.PNG", + "hash": "15784983474924862966" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide15.PNG", + "hash": "3911357198091251632" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide16.PNG", + "hash": "16044207046169017904" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide17.PNG", + "hash": "3771765972594141142" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide18.PNG", + "hash": "1847454647595839912" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide19.PNG", + "hash": "378265804099762004" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide2.PNG", + "hash": "2013925037770347199" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide20.PNG", + "hash": "11286961965291772510" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide21.PNG", + "hash": "12780997597152140914" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide22.PNG", + "hash": "11635355027693465335" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide23.PNG", + "hash": "6091420021788820418" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide24.PNG", + "hash": "185692542212997928" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide25.PNG", + "hash": "765679849171402571" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide26.PNG", + "hash": "14966586126216280425" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide27.PNG", + "hash": "659754405265581401" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide28.PNG", + "hash": "7909581484454979875" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide29.PNG", + "hash": "15406246910192488097" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide3.PNG", + "hash": "5018292620786143049" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide30.PNG", + "hash": "8445475416143163908" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide4.PNG", + "hash": "1410512037832003271" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide5.PNG", + "hash": "7251737589323072305" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide6.PNG", + "hash": "3097621861574444839" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide7.PNG", + "hash": "7233386375010557980" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide8.PNG", + "hash": "14959995681332803620" + }, + { + "file": "packages/react-components/react-table/etc/images/table-interactions/Slide9.PNG", + "hash": "6476023258270782882" + }, + { + "file": "packages/react-components/react-table/etc/react-table.api.md", + "hash": "17698100367778503037" + }, + { + "file": "packages/react-components/react-table/jest.config.js", + "hash": "6598540019410527330" + }, + { + "file": "packages/react-components/react-table/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-table/package.json", + "hash": "7942069547503742693", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-aria", + "@fluentui/react-avatar", + "@fluentui/react-checkbox", + "@fluentui/react-context-selector", + "npm:@fluentui/react-icons", + "@fluentui/react-radio", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-table/project.json", + "hash": "4794127214983829980" + }, + { + "file": "packages/react-components/react-table/src/DataGrid.ts", + "hash": "17079061606149660778" + }, + { + "file": "packages/react-components/react-table/src/DataGridBody.ts", + "hash": "8672044046349703751" + }, + { + "file": "packages/react-components/react-table/src/DataGridCell.ts", + "hash": "15985493277395717549" + }, + { + "file": "packages/react-components/react-table/src/DataGridHeader.ts", + "hash": "4414606268997421070" + }, + { + "file": "packages/react-components/react-table/src/DataGridHeaderCell.ts", + "hash": "4464250898020673551" + }, + { + "file": "packages/react-components/react-table/src/DataGridRow.ts", + "hash": "4969572224027565081" + }, + { + "file": "packages/react-components/react-table/src/DataGridSelectionCell.ts", + "hash": "9370795542556916127" + }, + { + "file": "packages/react-components/react-table/src/Table.ts", + "hash": "14778241596221356404" + }, + { + "file": "packages/react-components/react-table/src/TableBody.ts", + "hash": "586474510137933838" + }, + { + "file": "packages/react-components/react-table/src/TableCell.ts", + "hash": "13156803246933880197" + }, + { + "file": "packages/react-components/react-table/src/TableCellActions.ts", + "hash": "11397146158367149472" + }, + { + "file": "packages/react-components/react-table/src/TableCellLayout.ts", + "hash": "4640880441986165945" + }, + { + "file": "packages/react-components/react-table/src/TableCellPrimaryLayout.ts", + "hash": "4640880441986165945" + }, + { + "file": "packages/react-components/react-table/src/TableHeader.ts", + "hash": "838114321023204504" + }, + { + "file": "packages/react-components/react-table/src/TableHeaderCell.ts", + "hash": "6850659350249070005" + }, + { + "file": "packages/react-components/react-table/src/TableResizeHandle.ts", + "hash": "3108675560738752517" + }, + { + "file": "packages/react-components/react-table/src/TableRow.ts", + "hash": "3608582872695367179" + }, + { + "file": "packages/react-components/react-table/src/TableSelectionCell.ts", + "hash": "12503410089805101497" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/DataGrid.cy.tsx", + "hash": "3350411529027605508" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/DataGrid.test.tsx", + "hash": "3121991208076853892" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/DataGrid.tsx", + "hash": "17321264386000624870" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/DataGrid.types.ts", + "hash": "709704323174809435" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/__snapshots__/DataGrid.test.tsx.snap", + "hash": "17976811616864604250" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/index.ts", + "hash": "14447930360764847420" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/renderDataGrid.tsx", + "hash": "15762584639505010258" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/useDataGrid.ts", + "hash": "18296519326555141072" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/useDataGridContextValues.ts", + "hash": "4001850224425972488" + }, + { + "file": "packages/react-components/react-table/src/components/DataGrid/useDataGridStyles.styles.ts", + "hash": "15924802483199645208" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridBody/DataGridBody.test.tsx", + "hash": "365690180230643745" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridBody/DataGridBody.tsx", + "hash": "13092328809030939159" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridBody/DataGridBody.types.ts", + "hash": "989688156850890464" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridBody/__snapshots__/DataGridBody.test.tsx.snap", + "hash": "12795865007847060242" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridBody/index.ts", + "hash": "8074172754573827448" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridBody/renderDataGridBody.tsx", + "hash": "13006146274395870229" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridBody/useDataGridBody.tsx", + "hash": "2490474312124892640" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridBody/useDataGridBodyStyles.styles.ts", + "hash": "3088072580687221418" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridCell/DataGridCell.test.tsx", + "hash": "14284493750094275925" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridCell/DataGridCell.tsx", + "hash": "5979950167817855884" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridCell/DataGridCell.types.ts", + "hash": "1469647611878513101" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridCell/__snapshots__/DataGridCell.test.tsx.snap", + "hash": "13297941497219637881" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridCell/index.ts", + "hash": "1950686883714060159" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridCell/renderDataGridCell.tsx", + "hash": "15672771230460021783" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridCell/useDataGridCell.ts", + "hash": "5633900691479417673" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridCell/useDataGridCellStyles.styles.ts", + "hash": "17197964593221316773" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.test.tsx", + "hash": "4388468238184479221" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.tsx", + "hash": "13625463631116259235" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.types.ts", + "hash": "16511931732912371303" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeader/__snapshots__/DataGridHeader.test.tsx.snap", + "hash": "9406093122186695703" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeader/index.ts", + "hash": "3201680452232731904" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeader/renderDataGridHeader.tsx", + "hash": "7782227593392993150" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeader/useDataGridHeader.ts", + "hash": "8544879729013780740" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeader/useDataGridHeaderStyles.styles.ts", + "hash": "5887884145834485645" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.test.tsx", + "hash": "8046473821173442128" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.tsx", + "hash": "15401726210547002467" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.types.ts", + "hash": "10061728147229226131" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/__snapshots__/DataGridHeaderCell.test.tsx.snap", + "hash": "15607676364797409456" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/index.ts", + "hash": "11744360188312949192" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/renderDataGridHeaderCell.tsx", + "hash": "9804925281648575111" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/useDataGridHeaderCell.ts", + "hash": "8322177597417145595" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/useDataGridHeaderCellStyles.styles.ts", + "hash": "3064467005010167574" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridRow/DataGridRow.test.tsx", + "hash": "609493596336427704" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridRow/DataGridRow.tsx", + "hash": "2583011202432098234" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridRow/DataGridRow.types.ts", + "hash": "11184462291089499466" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridRow/__snapshots__/DataGridRow.test.tsx.snap", + "hash": "1090916004093623854" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridRow/index.ts", + "hash": "3088124891029267509" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridRow/renderDataGridRow.tsx", + "hash": "5595776796766230678" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridRow/useDataGridRow.tsx", + "hash": "10140518523773109235" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridRow/useDataGridRowStyles.styles.ts", + "hash": "16017903646265286705" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.test.tsx", + "hash": "13797254308524947112" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.tsx", + "hash": "3499170646948071005" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.types.ts", + "hash": "15778410513528664058" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/index.ts", + "hash": "4837457285516816283" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/renderDataGridSelectionCell.tsx", + "hash": "4778904848491643018" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/useDataGridSelectionCell.ts", + "hash": "9424237769629002853" + }, + { + "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/useDataGridSelectionCellStyles.styles.ts", + "hash": "14851722426357391505" + }, + { + "file": "packages/react-components/react-table/src/components/Table/Table.test.tsx", + "hash": "3988653820926313102" + }, + { + "file": "packages/react-components/react-table/src/components/Table/Table.tsx", + "hash": "2616887241723560373" + }, + { + "file": "packages/react-components/react-table/src/components/Table/Table.types.ts", + "hash": "1207824533076839058" + }, + { + "file": "packages/react-components/react-table/src/components/Table/__snapshots__/Table.test.tsx.snap", + "hash": "12819927518323792222" + }, + { + "file": "packages/react-components/react-table/src/components/Table/index.ts", + "hash": "7246842283080963730" + }, + { + "file": "packages/react-components/react-table/src/components/Table/renderTable.tsx", + "hash": "8231460164589478020" + }, + { + "file": "packages/react-components/react-table/src/components/Table/useTable.ts", + "hash": "4091732233640072596" + }, + { + "file": "packages/react-components/react-table/src/components/Table/useTableContextValues.test.ts", + "hash": "17213058547749828900" + }, + { + "file": "packages/react-components/react-table/src/components/Table/useTableContextValues.ts", + "hash": "1963700558737794813" + }, + { + "file": "packages/react-components/react-table/src/components/Table/useTableStyles.styles.ts", + "hash": "14779006953385619770" + }, + { + "file": "packages/react-components/react-table/src/components/TableBody/TableBody.test.tsx", + "hash": "7329165518323718931" + }, + { + "file": "packages/react-components/react-table/src/components/TableBody/TableBody.tsx", + "hash": "16817188515472471544" + }, + { + "file": "packages/react-components/react-table/src/components/TableBody/TableBody.types.ts", + "hash": "14083323400314851537" + }, + { + "file": "packages/react-components/react-table/src/components/TableBody/__snapshots__/TableBody.test.tsx.snap", + "hash": "1975112668078964741" + }, + { + "file": "packages/react-components/react-table/src/components/TableBody/index.ts", + "hash": "10642595759435101538" + }, + { + "file": "packages/react-components/react-table/src/components/TableBody/renderTableBody.tsx", + "hash": "4826167259779664753" + }, + { + "file": "packages/react-components/react-table/src/components/TableBody/useTableBody.ts", + "hash": "9253008564346211435" + }, + { + "file": "packages/react-components/react-table/src/components/TableBody/useTableBodyStyles.styles.ts", + "hash": "15817108164807954583" + }, + { + "file": "packages/react-components/react-table/src/components/TableCell/TableCell.test.tsx", + "hash": "11051355167652939228" + }, + { + "file": "packages/react-components/react-table/src/components/TableCell/TableCell.tsx", + "hash": "11710651907704353877" + }, + { + "file": "packages/react-components/react-table/src/components/TableCell/TableCell.types.ts", + "hash": "17804113583782862038" + }, + { + "file": "packages/react-components/react-table/src/components/TableCell/__snapshots__/TableCell.test.tsx.snap", + "hash": "6687739069799966419" + }, + { + "file": "packages/react-components/react-table/src/components/TableCell/index.ts", + "hash": "16281915016360298866" + }, + { + "file": "packages/react-components/react-table/src/components/TableCell/renderTableCell.tsx", + "hash": "2144713445527733389" + }, + { + "file": "packages/react-components/react-table/src/components/TableCell/useTableCell.ts", + "hash": "1756265038339941425" + }, + { + "file": "packages/react-components/react-table/src/components/TableCell/useTableCellStyles.styles.ts", + "hash": "17128545363356648646" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellActions/TableCellActions.test.tsx", + "hash": "12709244819248138161" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellActions/TableCellActions.tsx", + "hash": "14339356881426535917" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellActions/TableCellActions.types.ts", + "hash": "7023150195642875227" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellActions/__snapshots__/TableCellActions.test.tsx.snap", + "hash": "13335438201516937847" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellActions/index.ts", + "hash": "6025687967602825335" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellActions/renderTableCellActions.tsx", + "hash": "8725034395046660102" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellActions/useTableCellActions.ts", + "hash": "551858063680153270" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellActions/useTableCellActionsStyles.styles.ts", + "hash": "13342768590814720244" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.test.tsx", + "hash": "2653762218990098068" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.tsx", + "hash": "593798165276555146" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.types.ts", + "hash": "8930913243964287427" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/__snapshots__/TableCellLayout.test.tsx.snap", + "hash": "5152227318550539174" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/index.ts", + "hash": "11647574449621743593" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/renderTableCellLayout.tsx", + "hash": "6392547495725436491" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayout.ts", + "hash": "4174329990714482289" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayoutContextValues.ts", + "hash": "13285913200028190631" + }, + { + "file": "packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayoutStyles.styles.ts", + "hash": "9106906690843979872" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeader/TableHeader.test.tsx", + "hash": "2390014384311299291" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeader/TableHeader.tsx", + "hash": "4148101233480039052" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeader/TableHeader.types.ts", + "hash": "12959063516863293240" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeader/__snapshots__/TableHeader.test.tsx.snap", + "hash": "7035183146798587016" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeader/index.ts", + "hash": "3410642880769399092" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeader/renderTableHeader.tsx", + "hash": "7047894267214818202" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeader/useTableHeader.ts", + "hash": "12447444909845573720" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeader/useTableHeaderStyles.styles.ts", + "hash": "14320945159865933979" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.test.tsx", + "hash": "88312877306148306" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.tsx", + "hash": "11824252066886075845" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.types.ts", + "hash": "5064822055977353598" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeaderCell/__snapshots__/TableHeaderCell.test.tsx.snap", + "hash": "17461620234162290241" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeaderCell/index.ts", + "hash": "16326026053823034514" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeaderCell/renderTableHeaderCell.tsx", + "hash": "12533290613338772096" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCell.tsx", + "hash": "1186488255705582440" + }, + { + "file": "packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCellStyles.styles.ts", + "hash": "4722792324071201971" + }, + { + "file": "packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.test.tsx", + "hash": "4908009169325787003" + }, + { + "file": "packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.tsx", + "hash": "4119029624056477906" + }, + { + "file": "packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.types.ts", + "hash": "3788214349953356490" + }, + { + "file": "packages/react-components/react-table/src/components/TableResizeHandle/__snapshots__/TableResizeHandle.test.tsx.snap", + "hash": "9257042895276257861" + }, + { + "file": "packages/react-components/react-table/src/components/TableResizeHandle/index.ts", + "hash": "7452972912560494075" + }, + { + "file": "packages/react-components/react-table/src/components/TableResizeHandle/renderTableResizeHandle.tsx", + "hash": "5219167715943845526" + }, + { + "file": "packages/react-components/react-table/src/components/TableResizeHandle/useTableResizeHandle.ts", + "hash": "7328222721425120839" + }, + { + "file": "packages/react-components/react-table/src/components/TableResizeHandle/useTableResizeHandleStyles.styles.ts", + "hash": "15733935328878813985" + }, + { + "file": "packages/react-components/react-table/src/components/TableRow/TableRow.test.tsx", + "hash": "15478826047233568881" + }, + { + "file": "packages/react-components/react-table/src/components/TableRow/TableRow.tsx", + "hash": "18444837132530435350" + }, + { + "file": "packages/react-components/react-table/src/components/TableRow/TableRow.types.ts", + "hash": "6367169166660505131" + }, + { + "file": "packages/react-components/react-table/src/components/TableRow/__snapshots__/TableRow.test.tsx.snap", + "hash": "15440056760632672248" + }, + { + "file": "packages/react-components/react-table/src/components/TableRow/index.ts", + "hash": "16433222686764991881" + }, + { + "file": "packages/react-components/react-table/src/components/TableRow/renderTableRow.tsx", + "hash": "9020356206322865233" + }, + { + "file": "packages/react-components/react-table/src/components/TableRow/useTableRow.ts", + "hash": "11761709334920900157" + }, + { + "file": "packages/react-components/react-table/src/components/TableRow/useTableRowStyles.styles.ts", + "hash": "12531923330452599881" + }, + { + "file": "packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.test.tsx", + "hash": "6411551806011869763" + }, + { + "file": "packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.tsx", + "hash": "650480750958853" + }, + { + "file": "packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.types.ts", + "hash": "18184138947631542698" + }, + { + "file": "packages/react-components/react-table/src/components/TableSelectionCell/__snapshots__/TableSelectionCell.test.tsx.snap", + "hash": "4876836364386778508" + }, + { + "file": "packages/react-components/react-table/src/components/TableSelectionCell/index.ts", + "hash": "12366029392607972381" + }, + { + "file": "packages/react-components/react-table/src/components/TableSelectionCell/renderTableSelectionCell.tsx", + "hash": "10405033063074637043" + }, + { + "file": "packages/react-components/react-table/src/components/TableSelectionCell/useTableSelectionCell.tsx", + "hash": "13549839021610253427" + }, + { + "file": "packages/react-components/react-table/src/components/TableSelectionCell/useTableSelectionCellStyles.styles.ts", + "hash": "9336811611325446753" + }, + { + "file": "packages/react-components/react-table/src/contexts/columnIdContext.ts", + "hash": "1084340240683719750" + }, + { + "file": "packages/react-components/react-table/src/contexts/dataGridContext.ts", + "hash": "5570658827395223292" + }, + { + "file": "packages/react-components/react-table/src/contexts/rowIdContext.ts", + "hash": "3534861151135745095" + }, + { + "file": "packages/react-components/react-table/src/contexts/tableContext.ts", + "hash": "1391145068294881469" + }, + { + "file": "packages/react-components/react-table/src/contexts/tableHeaderContext.ts", + "hash": "13631502139309569843" + }, + { + "file": "packages/react-components/react-table/src/hooks/createColumn.ts", + "hash": "1982242325429104491" + }, + { + "file": "packages/react-components/react-table/src/hooks/index.ts", + "hash": "13799373635655725354" + }, + { + "file": "packages/react-components/react-table/src/hooks/types.ts", + "hash": "6174182288606230308" + }, + { + "file": "packages/react-components/react-table/src/hooks/useKeyboardResizing.ts", + "hash": "15626054918149148172" + }, + { + "file": "packages/react-components/react-table/src/hooks/useMeasureElement.test.tsx", + "hash": "15127064510536374752" + }, + { + "file": "packages/react-components/react-table/src/hooks/useMeasureElement.ts", + "hash": "4021244669807144498" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableColumnResizeMouseHandler.ts", + "hash": "15338397319447945983" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableColumnResizeState.test.ts", + "hash": "14299849820910707739" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableColumnResizeState.ts", + "hash": "14235677586849461204" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableColumnSizing.test.ts", + "hash": "5213967468781703495" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableColumnSizing.tsx", + "hash": "12200350387517053981" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableCompositeNavigation.ts", + "hash": "12883916471074441744" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableFeatures.test.ts", + "hash": "14407794722332764337" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableFeatures.ts", + "hash": "11316047060762564043" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableSelection.test.ts", + "hash": "10642268899411474511" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableSelection.ts", + "hash": "274106747344727539" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableSort.test.ts", + "hash": "4876939199901475944" + }, + { + "file": "packages/react-components/react-table/src/hooks/useTableSort.ts", + "hash": "3031703309871912592" + }, + { + "file": "packages/react-components/react-table/src/index.ts", + "hash": "15694762333787260772" + }, + { + "file": "packages/react-components/react-table/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-table/src/testing/mockDataGridContext.ts", + "hash": "12345405769834274534" + }, + { + "file": "packages/react-components/react-table/src/testing/mockSyntheticEvent.ts", + "hash": "1212352037375346170" + }, + { + "file": "packages/react-components/react-table/src/testing/mockTableState.ts", + "hash": "15042778666285051569" + }, + { + "file": "packages/react-components/react-table/src/utils/columnResizeUtils.test.ts", + "hash": "6011727881236160373" + }, + { + "file": "packages/react-components/react-table/src/utils/columnResizeUtils.ts", + "hash": "15912676873764422519" + }, + { + "file": "packages/react-components/react-table/src/utils/isColumnSortable.ts", + "hash": "17332718086331285738" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/CompositeNavigation.stories.tsx", + "hash": "462497658692016730" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/CustomRowId.stories.tsx", + "hash": "7200996654339205885" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/DataGridDescription.md", + "hash": "14297991401899578735" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/Default.stories.tsx", + "hash": "12603562064528492256" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/FocusableElementsInCells.stories.tsx", + "hash": "8698941837297046634" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/MultipleSelect.stories.tsx", + "hash": "12528499231255362163" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/MultipleSelectControlled.stories.tsx", + "hash": "17764972028460656409" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/ResizableColumns.stories.tsx", + "hash": "17972472683075739426" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/SelectionAppearance.stories.tsx", + "hash": "5103565752129711868" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/SingleSelect.stories.tsx", + "hash": "5263004353615079277" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/SingleSelectControlled.stories.tsx", + "hash": "10982877708572451543" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/Sort.stories.tsx", + "hash": "514907417437481165" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/SortControlled.stories.tsx", + "hash": "18333722598813021923" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/SubtleSelection.stories.tsx", + "hash": "16193231600548811672" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/Virtualization.stories.tsx", + "hash": "12648284986353904171" + }, + { + "file": "packages/react-components/react-table/stories/DataGrid/index.stories.tsx", + "hash": "9938818216767215778" + }, + { + "file": "packages/react-components/react-table/stories/Table/CellActions.stories.tsx", + "hash": "6452579492109796205" + }, + { + "file": "packages/react-components/react-table/stories/Table/CellNavigation.stories.tsx", + "hash": "5784594627376239400" + }, + { + "file": "packages/react-components/react-table/stories/Table/CompositeNavigation.stories.tsx", + "hash": "4853594687376691180" + }, + { + "file": "packages/react-components/react-table/stories/Table/DataGrid.stories.tsx", + "hash": "10870920636539121573" + }, + { + "file": "packages/react-components/react-table/stories/Table/Default.stories.tsx", + "hash": "12771585741670131315" + }, + { + "file": "packages/react-components/react-table/stories/Table/FocusableElements.Cells.stories.tsx", + "hash": "4563520350364841246" + }, + { + "file": "packages/react-components/react-table/stories/Table/Memoization.stories.tsx", + "hash": "9716844619909358490" + }, + { + "file": "packages/react-components/react-table/stories/Table/MultipleSelect.stories.tsx", + "hash": "18256653912049404303" + }, + { + "file": "packages/react-components/react-table/stories/Table/MultipleSelectControlled.stories.tsx", + "hash": "17511909197299034459" + }, + { + "file": "packages/react-components/react-table/stories/Table/NonNativeElements.stories.tsx", + "hash": "8410279079044763167" + }, + { + "file": "packages/react-components/react-table/stories/Table/PrimaryCell.stories.tsx", + "hash": "6210883377837677944" + }, + { + "file": "packages/react-components/react-table/stories/Table/ResizableColumnsControlled.stories.tsx", + "hash": "11377008235631273853" + }, + { + "file": "packages/react-components/react-table/stories/Table/ResizableColumnsUncontrolled.stories.tsx", + "hash": "10073256218889568076" + }, + { + "file": "packages/react-components/react-table/stories/Table/SelectionWithCellActions.stories.tsx", + "hash": "14166585273063843176" + }, + { + "file": "packages/react-components/react-table/stories/Table/SingleSelect.stories.tsx", + "hash": "16735239486844118885" + }, + { + "file": "packages/react-components/react-table/stories/Table/SingleSelectControlled.stories.tsx", + "hash": "4263285025688012103" + }, + { + "file": "packages/react-components/react-table/stories/Table/SizeExtraSmall.stories.tsx", + "hash": "16418257672340977129" + }, + { + "file": "packages/react-components/react-table/stories/Table/SizeSmall.stories.tsx", + "hash": "18012367151988365241" + }, + { + "file": "packages/react-components/react-table/stories/Table/Sort.stories.tsx", + "hash": "4414973333139307988" + }, + { + "file": "packages/react-components/react-table/stories/Table/SortControlled.stories.tsx", + "hash": "1218547722178532512" + }, + { + "file": "packages/react-components/react-table/stories/Table/SubtleSelection.stories.tsx", + "hash": "9363051409608050544" + }, + { + "file": "packages/react-components/react-table/stories/Table/TableDescription.md", + "hash": "8803727497508721727" + }, + { + "file": "packages/react-components/react-table/stories/Table/Virtualization.stories.tsx", + "hash": "11309226498381645330" + }, + { + "file": "packages/react-components/react-table/stories/Table/index.stories.tsx", + "hash": "1915606669720448584" + }, + { + "file": "packages/react-components/react-table/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-table/tsconfig.json", + "hash": "17847181103745608939" + }, + { + "file": "packages/react-components/react-table/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-table/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/priority-overflow": [ + { + "file": "packages/react-components/priority-overflow/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/priority-overflow/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/priority-overflow/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/priority-overflow/CHANGELOG.json", + "hash": "4333659162810779590" + }, + { + "file": "packages/react-components/priority-overflow/CHANGELOG.md", + "hash": "4398841463571116898" + }, + { + "file": "packages/react-components/priority-overflow/LICENSE", + "hash": "11030407222875521344" + }, + { + "file": "packages/react-components/priority-overflow/README.md", + "hash": "10857736672267528914" + }, + { + "file": "packages/react-components/priority-overflow/bundle-size/overflow-manager.fixture.js", + "hash": "8551267840124202928" + }, + { + "file": "packages/react-components/priority-overflow/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/priority-overflow/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/priority-overflow/etc/priority-overflow.api.md", + "hash": "7306121779845882287" + }, + { + "file": "packages/react-components/priority-overflow/jest.config.js", + "hash": "2868823370633145472" + }, + { + "file": "packages/react-components/priority-overflow/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/priority-overflow/package.json", + "hash": "15007389892501600147", + "deps": [ + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/react-components/priority-overflow/project.json", + "hash": "14779383503117085597" + }, + { + "file": "packages/react-components/priority-overflow/src/consts.ts", + "hash": "6620526346221759496" + }, + { + "file": "packages/react-components/priority-overflow/src/createResizeObserver.ts", + "hash": "4909053736922267358" + }, + { + "file": "packages/react-components/priority-overflow/src/debounce.test.ts", + "hash": "5063760544945907806" + }, + { + "file": "packages/react-components/priority-overflow/src/debounce.ts", + "hash": "17670239388147233622" + }, + { + "file": "packages/react-components/priority-overflow/src/index.ts", + "hash": "3206036393944881754" + }, + { + "file": "packages/react-components/priority-overflow/src/overflowManager.ts", + "hash": "9555740708619762309" + }, + { + "file": "packages/react-components/priority-overflow/src/priorityQueue.test.ts", + "hash": "16760683918500211316" + }, + { + "file": "packages/react-components/priority-overflow/src/priorityQueue.ts", + "hash": "12058761107106633401" + }, + { + "file": "packages/react-components/priority-overflow/src/types.ts", + "hash": "3269039576612425811" + }, + { + "file": "packages/react-components/priority-overflow/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/priority-overflow/tsconfig.lib.json", + "hash": "14975475306433073951" + }, + { + "file": "packages/react-components/priority-overflow/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/ssr-tests": [ + { + "file": "apps/ssr-tests/CHANGELOG.json", + "hash": "1972360179664073596" + }, + { + "file": "apps/ssr-tests/CHANGELOG.md", + "hash": "10968265984611611699" + }, + { + "file": "apps/ssr-tests/just.config.ts", + "hash": "994669034758141798" + }, + { + "file": "apps/ssr-tests/package.json", + "hash": "7229768634367163191", + "deps": [ + "npm:tslib", + "@fluentui/react", + "npm:@microsoft/load-themed-styles", + "npm:@types/mocha", + "@fluentui/public-docsite-resources", + "npm:mocha", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "apps/ssr-tests/project.json", + "hash": "1374228985476810396" + }, + { + "file": "apps/ssr-tests/test/test.js", + "hash": "13862241030754584160" + }, + { + "file": "apps/ssr-tests/webpack.config.js", + "hash": "4897565737584022724" + } + ], + "@fluentui/scripts-api-extractor": [ + { + "file": "scripts/api-extractor/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/api-extractor/api-extractor.common.json", + "hash": "2748281453618585856" + }, + { + "file": "scripts/api-extractor/api-extractor.common.v-next.json", + "hash": "13189487548181031930" + }, + { + "file": "scripts/api-extractor/jest.config.js", + "hash": "9107139503166004092" + }, + { + "file": "scripts/api-extractor/package.json", + "hash": "6434448276705142187" + }, + { + "file": "scripts/api-extractor/project.json", + "hash": "10051297786450075718" + }, + { + "file": "scripts/api-extractor/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/api-extractor/tsconfig.lib.json", + "hash": "3753806828268919288" + }, + { + "file": "scripts/api-extractor/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/theme-designer": [ + { + "file": "packages/react-components/theme-designer/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/theme-designer/.eslintrc.json", + "hash": "8960568516666702720" + }, + { + "file": "packages/react-components/theme-designer/.storybook/docs-root-theme-designer.css", + "hash": "18108071375275259207" + }, + { + "file": "packages/react-components/theme-designer/.storybook/main.js", + "hash": "8606236827640245693" + }, + { + "file": "packages/react-components/theme-designer/.storybook/preview.js", + "hash": "1921063914901244173" + }, + { + "file": "packages/react-components/theme-designer/.storybook/tsconfig.json", + "hash": "14109446059604296292" + }, + { + "file": "packages/react-components/theme-designer/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/theme-designer/CHANGELOG.json", + "hash": "5851783219770066992" + }, + { + "file": "packages/react-components/theme-designer/CHANGELOG.md", + "hash": "8975015774552523747" + }, + { + "file": "packages/react-components/theme-designer/LICENSE", + "hash": "10180586615754479660" + }, + { + "file": "packages/react-components/theme-designer/README.md", + "hash": "14064362199792243849" + }, + { + "file": "packages/react-components/theme-designer/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/theme-designer/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/theme-designer/etc/theme-designer.api.md", + "hash": "11098378957995542872" + }, + { + "file": "packages/react-components/theme-designer/jest.config.js", + "hash": "16512775771668900261" + }, + { + "file": "packages/react-components/theme-designer/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/theme-designer/package.json", + "hash": "7658291426595211212", + "deps": [ + "@fluentui/react-alert", + "@fluentui/react-components", + "@fluentui/react-context-selector", + "npm:@fluentui/react-icons", + "@fluentui/react-storybook-addon-export-to-sandbox", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "npm:@types/dedent", + "npm:codesandbox-import-utils", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/theme-designer/project.json", + "hash": "2501994155968039113" + }, + { + "file": "packages/react-components/theme-designer/public/favicon.ico", + "hash": "16917280242094002623" + }, + { + "file": "packages/react-components/theme-designer/src/Context/ThemeDesignerContext.tsx", + "hash": "6521680253608875060" + }, + { + "file": "packages/react-components/theme-designer/src/ThemeDesigner.stories.mdx", + "hash": "17563249137426555093" + }, + { + "file": "packages/react-components/theme-designer/src/ThemeDesigner.styles.ts", + "hash": "10646684073193415474" + }, + { + "file": "packages/react-components/theme-designer/src/ThemeDesigner.tsx", + "hash": "6850157977355746733" + }, + { + "file": "packages/react-components/theme-designer/src/ThemeDesigner.types.ts", + "hash": "7008675520752455334" + }, + { + "file": "packages/react-components/theme-designer/src/colors/csswg.ts", + "hash": "14081639457171883273" + }, + { + "file": "packages/react-components/theme-designer/src/colors/geometry.ts", + "hash": "5151745733028687223" + }, + { + "file": "packages/react-components/theme-designer/src/colors/hueMap.ts", + "hash": "6840317620183457137" + }, + { + "file": "packages/react-components/theme-designer/src/colors/index.ts", + "hash": "10120776492809956055" + }, + { + "file": "packages/react-components/theme-designer/src/colors/palettes.ts", + "hash": "594085197204633186" + }, + { + "file": "packages/react-components/theme-designer/src/colors/templates.ts", + "hash": "7173519415315531121" + }, + { + "file": "packages/react-components/theme-designer/src/colors/types.ts", + "hash": "3696924197174361435" + }, + { + "file": "packages/react-components/theme-designer/src/components/ColorTokens/AccessibilityList.tsx", + "hash": "13584096774872756219" + }, + { + "file": "packages/react-components/theme-designer/src/components/ColorTokens/AccessiblePairs.ts", + "hash": "9980370910954070894" + }, + { + "file": "packages/react-components/theme-designer/src/components/ColorTokens/ColorTokens.stories.tsx", + "hash": "17717517716066720300" + }, + { + "file": "packages/react-components/theme-designer/src/components/ColorTokens/ColorTokens.tsx", + "hash": "15029148600024713618" + }, + { + "file": "packages/react-components/theme-designer/src/components/ColorTokens/TokenIssueList.tsx", + "hash": "456852385357751599" + }, + { + "file": "packages/react-components/theme-designer/src/components/ColorTokens/TokenList.style.ts", + "hash": "6110208615250697552" + }, + { + "file": "packages/react-components/theme-designer/src/components/ColorTokens/TokenList.tsx", + "hash": "6839783308263373433" + }, + { + "file": "packages/react-components/theme-designer/src/components/ColorTokens/UsageList.ts", + "hash": "6471683859253310231" + }, + { + "file": "packages/react-components/theme-designer/src/components/Content/Content.tsx", + "hash": "8865181677608404415" + }, + { + "file": "packages/react-components/theme-designer/src/components/Demo/Demo.tsx", + "hash": "9430858355440318210" + }, + { + "file": "packages/react-components/theme-designer/src/components/Export/ExportLink.tsx", + "hash": "7106033445972881846" + }, + { + "file": "packages/react-components/theme-designer/src/components/Export/ExportPanel.tsx", + "hash": "6672747784401972674" + }, + { + "file": "packages/react-components/theme-designer/src/components/Header/Header.tsx", + "hash": "1884392546660410312" + }, + { + "file": "packages/react-components/theme-designer/src/components/Nav/Nav.tsx", + "hash": "17160060027347264573" + }, + { + "file": "packages/react-components/theme-designer/src/components/Palette/Palette.stories.tsx", + "hash": "6708215907448994313" + }, + { + "file": "packages/react-components/theme-designer/src/components/Palette/Palette.tsx", + "hash": "4659580268217856921" + }, + { + "file": "packages/react-components/theme-designer/src/components/Sidebar/AccessibilityPanel.tsx", + "hash": "6455399193904547699" + }, + { + "file": "packages/react-components/theme-designer/src/components/Sidebar/Form.tsx", + "hash": "11931296187612905580" + }, + { + "file": "packages/react-components/theme-designer/src/components/Sidebar/Sidebar.tsx", + "hash": "17598468332394862702" + }, + { + "file": "packages/react-components/theme-designer/src/components/TokenBoxes/TokenBoxes.stories.tsx", + "hash": "9135371313045620466" + }, + { + "file": "packages/react-components/theme-designer/src/components/TokenBoxes/TokenBoxes.tsx", + "hash": "13667538306866313466" + }, + { + "file": "packages/react-components/theme-designer/src/index.ts", + "hash": "13556419056930201248" + }, + { + "file": "packages/react-components/theme-designer/src/utils/brandColors.ts", + "hash": "4703220043784343979" + }, + { + "file": "packages/react-components/theme-designer/src/utils/getAccessibilityChecker.ts", + "hash": "1858552788568779359" + }, + { + "file": "packages/react-components/theme-designer/src/utils/getBrandTokensFromPalette.ts", + "hash": "11734162430969398099" + }, + { + "file": "packages/react-components/theme-designer/src/utils/getOverridableTokenBrandColors.ts", + "hash": "13942400570012229410" + }, + { + "file": "packages/react-components/theme-designer/src/utils/themeList.ts", + "hash": "16498805653931489221" + }, + { + "file": "packages/react-components/theme-designer/src/utils/toString.ts", + "hash": "15697896118709132521" + }, + { + "file": "packages/react-components/theme-designer/src/utils/useDebounce.ts", + "hash": "8761248074653183998" + }, + { + "file": "packages/react-components/theme-designer/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/theme-designer/tsconfig.lib.json", + "hash": "2330431448937249608" + }, + { + "file": "packages/react-components/theme-designer/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/scripts-tasks": [ + { + "file": "scripts/tasks/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/tasks/jest.config.js", + "hash": "4708879655841723493" + }, + { + "file": "scripts/tasks/package.json", + "hash": "1141372761188294099", + "deps": [ + "@fluentui/scripts-monorepo", + "@fluentui/scripts-utils", + "@fluentui/scripts-prettier", + "npm:flamegrill" + ] + }, + { + "file": "scripts/tasks/project.json", + "hash": "965696958534677795" + }, + { + "file": "scripts/tasks/src/api-extractor.ts", + "hash": "9347093659713672189" + }, + { + "file": "scripts/tasks/src/argv.spec.ts", + "hash": "10864686402712112244" + }, + { + "file": "scripts/tasks/src/argv.ts", + "hash": "9089616204911607118" + }, + { + "file": "scripts/tasks/src/babel.ts", + "hash": "15123611823011343405" + }, + { + "file": "scripts/tasks/src/clean.ts", + "hash": "15254131685435404356" + }, + { + "file": "scripts/tasks/src/copy.ts", + "hash": "7659902067209473182" + }, + { + "file": "scripts/tasks/src/eslint.ts", + "hash": "8568875961692972591" + }, + { + "file": "scripts/tasks/src/generate-api.ts", + "hash": "9894536861852274383" + }, + { + "file": "scripts/tasks/src/index.ts", + "hash": "8224622240191636854" + }, + { + "file": "scripts/tasks/src/jest.ts", + "hash": "10455500877410106889" + }, + { + "file": "scripts/tasks/src/lint-imports.ts", + "hash": "12249387039371508759" + }, + { + "file": "scripts/tasks/src/perf-task/env.ts", + "hash": "12915350541218118666" + }, + { + "file": "scripts/tasks/src/perf-task/index.ts", + "hash": "5355819150311401782" + }, + { + "file": "scripts/tasks/src/perf-task/perf-test.ts", + "hash": "11772931894476179226" + }, + { + "file": "scripts/tasks/src/perf-task/settings.ts", + "hash": "277930756461011304" + }, + { + "file": "scripts/tasks/src/postprocess-amd.ts", + "hash": "16748273849080544377" + }, + { + "file": "scripts/tasks/src/postprocess.ts", + "hash": "8523540960661454852" + }, + { + "file": "scripts/tasks/src/presets.ts", + "hash": "1602287635639050721" + }, + { + "file": "scripts/tasks/src/prettier.ts", + "hash": "7736749199691527952" + }, + { + "file": "scripts/tasks/src/sass.ts", + "hash": "1665001166635814228" + }, + { + "file": "scripts/tasks/src/storybook.ts", + "hash": "6223916877426257565" + }, + { + "file": "scripts/tasks/src/swc.ts", + "hash": "9077529349977385172" + }, + { + "file": "scripts/tasks/src/ts.ts", + "hash": "6299748037607840284" + }, + { + "file": "scripts/tasks/src/type-check.ts", + "hash": "257376398191037736" + }, + { + "file": "scripts/tasks/src/utils.spec.ts", + "hash": "5122114332452916234" + }, + { + "file": "scripts/tasks/src/utils.ts", + "hash": "12065994095118738331" + }, + { + "file": "scripts/tasks/src/verify-packaging.ts", + "hash": "11797726481686014501" + }, + { + "file": "scripts/tasks/src/webpack.ts", + "hash": "13272387079461955495" + }, + { + "file": "scripts/tasks/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/tasks/tsconfig.lib.json", + "hash": "12941910922159424720" + }, + { + "file": "scripts/tasks/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/vr-tests-react-components": [ + { + "file": "apps/vr-tests-react-components/.eslintrc.json", + "hash": "17051087815880730676" + }, + { + "file": "apps/vr-tests-react-components/.storybook/main.js", + "hash": "16447464207126584132" + }, + { + "file": "apps/vr-tests-react-components/.storybook/manager.js", + "hash": "8031267414392898657" + }, + { + "file": "apps/vr-tests-react-components/.storybook/preview.js", + "hash": "1405562776238959726" + }, + { + "file": "apps/vr-tests-react-components/CHANGELOG.json", + "hash": "8713462158622485954" + }, + { + "file": "apps/vr-tests-react-components/CHANGELOG.md", + "hash": "922481796685944490" + }, + { + "file": "apps/vr-tests-react-components/jest.config.js", + "hash": "18250610868151833128" + }, + { + "file": "apps/vr-tests-react-components/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "apps/vr-tests-react-components/package.json", + "hash": "15467568357846093319", + "deps": [ + "@fluentui/react-accordion", + "@fluentui/react-avatar", + "@fluentui/react-badge", + "@fluentui/react-button", + "@fluentui/react-calendar-compat", + "@fluentui/react-card", + "@fluentui/react-checkbox", + "@fluentui/react-combobox", + "@fluentui/react-context-selector", + "@fluentui/react-datepicker-compat", + "@fluentui/react-dialog", + "@fluentui/react-divider", + "@fluentui/react-drawer", + "@fluentui/react-field", + "npm:@fluentui/react-icons", + "@fluentui/react-image", + "@fluentui/react-infolabel", + "@fluentui/react-input", + "@fluentui/react-label", + "@fluentui/react-link", + "@fluentui/react-menu", + "@fluentui/react-message-bar", + "@fluentui/react-persona", + "@fluentui/react-popover", + "@fluentui/react-portal", + "@fluentui/react-positioning", + "@fluentui/react-progress", + "@fluentui/react-provider", + "@fluentui/react-radio", + "@fluentui/react-search-preview", + "@fluentui/react-select", + "@fluentui/react-shared-contexts", + "@fluentui/react-skeleton", + "@fluentui/react-slider", + "@fluentui/react-spinner", + "@fluentui/react-spinbutton", + "@fluentui/react-storybook-addon", + "@fluentui/react-storybook-addon-export-to-sandbox", + "@fluentui/react-switch", + "@fluentui/react-table", + "@fluentui/react-tabs", + "@fluentui/react-tags", + "@fluentui/react-text", + "@fluentui/react-textarea", + "@fluentui/react-theme", + "@fluentui/react-timepicker-compat-preview", + "@fluentui/react-toast", + "@fluentui/react-tooltip", + "@fluentui/react-toolbar", + "@fluentui/react-tree", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/react-breadcrumb", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-storybook" + ] + }, + { + "file": "apps/vr-tests-react-components/project.json", + "hash": "17568527081165183056" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Accordion/Accordion.stories.tsx", + "hash": "10802056647365454387" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Accordion/AccordionFocusInteractions.stories.tsx", + "hash": "12477522633746407895" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Avatar.stories.tsx", + "hash": "11835834961897487764" + }, + { + "file": "apps/vr-tests-react-components/src/stories/AvatarGroup.stories.tsx", + "hash": "4929814886456362496" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Badge/BadgeAppearance.stories.tsx", + "hash": "10168539343704943738" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Badge/BadgeSize.stories.tsx", + "hash": "16160796655612161127" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Badge/utils.ts", + "hash": "6118267633036591097" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Breadcrumb/Breadcrumb.stories.tsx", + "hash": "17471728733473708203" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Breadcrumb/utils.tsx", + "hash": "8994666879173275795" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Button/Button.stories.tsx", + "hash": "8952848022067892547" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Button/CompoundButton.stories.tsx", + "hash": "5035074194925427883" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Button/CompoundButtonDefault.stories.tsx", + "hash": "1305553845183934325" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Button/MenuButton.stories.tsx", + "hash": "13965237860398268503" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Button/ToggleButton.stories.tsx", + "hash": "893838250947943192" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Button/utils.ts", + "hash": "17518265861498153706" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Card/Card.stories.tsx", + "hash": "14477985068019565096" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Card/CardInteractive.stories.tsx", + "hash": "186550975270387769" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Card/CardSelectable.stories.tsx", + "hash": "5785195401617980058" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Card/utils.tsx", + "hash": "5969705096698007032" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Checkbox.stories.tsx", + "hash": "14302551104030304517" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Combobox.stories.tsx", + "hash": "4653018683490688054" + }, + { + "file": "apps/vr-tests-react-components/src/stories/CounterBadge/CounterBadge.stories.tsx", + "hash": "239199618520874280" + }, + { + "file": "apps/vr-tests-react-components/src/stories/CustomStyleHooks.stories.tsx", + "hash": "236060052935181185" + }, + { + "file": "apps/vr-tests-react-components/src/stories/DatePickerCompat.stories.tsx", + "hash": "6549687002867576038" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Dialog/Dialog.stories.tsx", + "hash": "10532256696189809745" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Divider.stories.tsx", + "hash": "7482775426741585443" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Drawer/Drawer.stories.tsx", + "hash": "5294822480024344223" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Dropdown.stories.tsx", + "hash": "5679345717914244801" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Field.stories.tsx", + "hash": "2654387542189040184" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Image/Image.stories.tsx", + "hash": "9028033951370882415" + }, + { + "file": "apps/vr-tests-react-components/src/stories/InfoLabel.stories.tsx", + "hash": "9018757720315450699" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Input.stories.tsx", + "hash": "6082880859858442107" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Label.stories.tsx", + "hash": "7365811914943309065" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Link.stories.tsx", + "hash": "11164254909120924736" + }, + { + "file": "apps/vr-tests-react-components/src/stories/MakeStyles.stories.tsx", + "hash": "5374078103145095337" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Menu/Menu.stories.tsx", + "hash": "662425745359612659" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Menu/NestedMenuSmallViewportFlipped.stories.tsx", + "hash": "4207061815563668430" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Menu/NestedMenuSmallViewportStacked.stories.tsx", + "hash": "10843562005475523999" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Menu/ScrollableMenuSmallViewport.stories.tsx", + "hash": "13072984958963346506" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Menu/index.stories.tsx", + "hash": "1566494951297209959" + }, + { + "file": "apps/vr-tests-react-components/src/stories/MessageBar/MessageBar.stories.tsx", + "hash": "15938873440241031592" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Persona.stories.tsx", + "hash": "5574790192439785115" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Popover.stories.tsx", + "hash": "9052399005531340378" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Portal.stories.tsx", + "hash": "1005202949174245424" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Positioning.stories.tsx", + "hash": "7715953737126353587" + }, + { + "file": "apps/vr-tests-react-components/src/stories/PresenceBadge.stories.tsx", + "hash": "2647256473336266202" + }, + { + "file": "apps/vr-tests-react-components/src/stories/ProgressBar.stories.tsx", + "hash": "10031985096183867134" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Radio.stories.tsx", + "hash": "9787853735635171255" + }, + { + "file": "apps/vr-tests-react-components/src/stories/SearchBox.stories.tsx", + "hash": "6689146726273525192" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Select.stories.tsx", + "hash": "13570490118904764464" + }, + { + "file": "apps/vr-tests-react-components/src/stories/ShadowDOM/ShadowDOMDefault.stories.tsx", + "hash": "5123752633212812486" + }, + { + "file": "apps/vr-tests-react-components/src/stories/ShadowDOM/ShadowDOMPortal.stories.tsx", + "hash": "3054045323519028786" + }, + { + "file": "apps/vr-tests-react-components/src/stories/ShadowDOM/index.stories.tsx", + "hash": "14320345630061803079" + }, + { + "file": "apps/vr-tests-react-components/src/stories/ShadowDOM/utils.tsx", + "hash": "1966017359067066561" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Skeleton.stories.tsx", + "hash": "10611661155375095131" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Slider.stories.tsx", + "hash": "7314685389185684835" + }, + { + "file": "apps/vr-tests-react-components/src/stories/SpinButton.stories.tsx", + "hash": "9292538058178901686" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Spinner.stories.tsx", + "hash": "2744820722201482553" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Switch.stories.tsx", + "hash": "14911403922953624770" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Table.stories.tsx", + "hash": "1638611668631605166" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tabs.stories.tsx", + "hash": "13601518669064467851" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tag/InteractionTag.stories.tsx", + "hash": "4840942032152646191" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tag/InteractionTagAppearances.stories.tsx", + "hash": "8980561851146009031" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tag/InteractionTagShape.stories.tsx", + "hash": "4929897156362970104" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tag/Tag.stories.tsx", + "hash": "12870879108242600931" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tag/TagAppearances.stories.tsx", + "hash": "15571718618318180513" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tag/TagGroup.stories.tsx", + "hash": "16134648819693825642" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tag/TagShape.stories.tsx", + "hash": "12356360998116909355" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Text.stories.tsx", + "hash": "2693658843261750616" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Textarea.stories.tsx", + "hash": "10747023707033333684" + }, + { + "file": "apps/vr-tests-react-components/src/stories/TimePicker.stories.tsx", + "hash": "16205435768899076152" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Toast/Toast.stories.tsx", + "hash": "17283697070771380505" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Toolbar/Toolbar.stories.tsx", + "hash": "1049562789492471246" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Toolbar/utils.ts", + "hash": "17710412857489277107" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tooltip.stories.tsx", + "hash": "2877402368872042170" + }, + { + "file": "apps/vr-tests-react-components/src/stories/Tree.stories.tsx", + "hash": "8798218328353603049" + }, + { + "file": "apps/vr-tests-react-components/src/utilities/TestWrapperDecorator.tsx", + "hash": "17367712127918236987" + }, + { + "file": "apps/vr-tests-react-components/src/utilities/getStoryVariant.ts", + "hash": "306062868073991727" + }, + { + "file": "apps/vr-tests-react-components/src/utilities/index.ts", + "hash": "4163392530867960544" + }, + { + "file": "apps/vr-tests-react-components/src/utilities/types.ts", + "hash": "12540806464937045320" + }, + { + "file": "apps/vr-tests-react-components/src/utilities/utilities.test.tsx", + "hash": "12678737986393557967" + }, + { + "file": "apps/vr-tests-react-components/src/utilities/withStoryWrightSteps.tsx", + "hash": "9632377530298948430" + }, + { + "file": "apps/vr-tests-react-components/tsconfig.json", + "hash": "14896982538111972183" + } + ], + "@fluentui/react-window-provider": [ + { + "file": "packages/react-window-provider/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-window-provider/.npmignore", + "hash": "7699079327417375383" + }, + { + "file": "packages/react-window-provider/CHANGELOG.json", + "hash": "17196202453103955991" + }, + { + "file": "packages/react-window-provider/CHANGELOG.md", + "hash": "14116626830318945402" + }, + { + "file": "packages/react-window-provider/LICENSE", + "hash": "11661279664396385797" + }, + { + "file": "packages/react-window-provider/README.md", + "hash": "7476292892779210215" + }, + { + "file": "packages/react-window-provider/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/react-window-provider/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-window-provider/etc/react-window-provider.api.md", + "hash": "17731887639684768729" + }, + { + "file": "packages/react-window-provider/jest.config.js", + "hash": "12858682342254308337" + }, + { + "file": "packages/react-window-provider/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-window-provider/package.json", + "hash": "16162568207572742971", + "deps": [ + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/test-utilities", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-window-provider/project.json", + "hash": "9373053046562156021" + }, + { + "file": "packages/react-window-provider/src/WindowProvider.test.tsx", + "hash": "2877876259272044445" + }, + { + "file": "packages/react-window-provider/src/WindowProvider.tsx", + "hash": "2732980198195700826" + }, + { + "file": "packages/react-window-provider/src/index.ts", + "hash": "9447988520403946318" + }, + { + "file": "packages/react-window-provider/src/version.ts", + "hash": "11880968333285263790" + }, + { + "file": "packages/react-window-provider/tsconfig.json", + "hash": "17912118017775714616" + } + ], + "@fluentui/react-storybook-addon-export-to-sandbox": [ + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/.eslintrc.json", + "hash": "11018738359270224912" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/LICENSE", + "hash": "5967641454269899786" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/README.md", + "hash": "2499909989248215183" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/etc/react-storybook-addon-export-to-sandbox.api.md", + "hash": "5494337558277006328" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/jest.config.js", + "hash": "9919031605228870875" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/package.json", + "hash": "5155999668375146046", + "deps": [ + "npm:@swc/helpers", + "npm:@types/dedent", + "npm:codesandbox-import-utils", + "@fluentui/babel-preset-storybook-full-source", + "npm:dedent", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@storybook/addons" + ] + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/preset.js", + "hash": "6822632498536641539" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/project.json", + "hash": "6370982920554095857" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/decorators/with-export-to-sandbox-button.ts", + "hash": "466454051426915967" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/getDependencies.test.ts", + "hash": "17898521010029603023" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/getDependencies.ts", + "hash": "15483781329479952564" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/index.ts", + "hash": "15555827964896839803" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preset.ts", + "hash": "17366032390171216343" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preview.ts", + "hash": "6360847473423006182" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/public-types.ts", + "hash": "12101660067213946265" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-factory.spec.ts", + "hash": "14851454481375425606" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-factory.ts", + "hash": "3768624125514363470" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-scaffold.spec.ts", + "hash": "904384803371274770" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-scaffold.ts", + "hash": "8649250263437017824" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-utils.spec.ts", + "hash": "5331689109961892313" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-utils.ts", + "hash": "16034308923572524868" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/styles.css", + "hash": "18413253947347252396" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/types.ts", + "hash": "15294403858832099609" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/utils.ts", + "hash": "1265135705758458783" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/webpack.spec.ts", + "hash": "11999431958700731244" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/webpack.ts", + "hash": "14753243909660912317" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.lib.json", + "hash": "12699777983452779566" + }, + { + "file": "packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-conformance": [ + { + "file": "packages/react-conformance/.eslintrc.json", + "hash": "11018738359270224912" + }, + { + "file": "packages/react-conformance/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-conformance/CHANGELOG.json", + "hash": "6578657003336071113" + }, + { + "file": "packages/react-conformance/CHANGELOG.md", + "hash": "66641472905235873" + }, + { + "file": "packages/react-conformance/LICENSE", + "hash": "7780562789533159941" + }, + { + "file": "packages/react-conformance/README.md", + "hash": "6556208184847558914" + }, + { + "file": "packages/react-conformance/config/api-extractor.json", + "hash": "13718895879978423572" + }, + { + "file": "packages/react-conformance/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-conformance/etc/react-conformance.api.md", + "hash": "840228627974102754" + }, + { + "file": "packages/react-conformance/jest.config.js", + "hash": "5527543839095969732" + }, + { + "file": "packages/react-conformance/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-conformance/package.json", + "hash": "58094267094777417", + "deps": [ + "npm:lodash", + "npm:chalk", + "npm:react-docgen-typescript", + "npm:react-is", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:@testing-library/react", + "npm:jest", + "npm:react", + "npm:react-dom", + "npm:typescript" + ] + }, + { + "file": "packages/react-conformance/project.json", + "hash": "214209136939617400" + }, + { + "file": "packages/react-conformance/src/defaultErrorMessages.tsx", + "hash": "1214813805605604373" + }, + { + "file": "packages/react-conformance/src/defaultTests.tsx", + "hash": "214491534434202084" + }, + { + "file": "packages/react-conformance/src/index.ts", + "hash": "13966697755180852351" + }, + { + "file": "packages/react-conformance/src/isConformant.ts", + "hash": "2029686572280398735" + }, + { + "file": "packages/react-conformance/src/types.ts", + "hash": "1086329725081600766" + }, + { + "file": "packages/react-conformance/src/utils/createTsProgram.ts", + "hash": "15323993820830846187" + }, + { + "file": "packages/react-conformance/src/utils/errorMessages.ts", + "hash": "12936357018639293921" + }, + { + "file": "packages/react-conformance/src/utils/getCallbackArguments.test.ts", + "hash": "3190033166404173726" + }, + { + "file": "packages/react-conformance/src/utils/getCallbackArguments.ts", + "hash": "10149531500130398942" + }, + { + "file": "packages/react-conformance/src/utils/getComponentDoc.ts", + "hash": "16416622701949776911" + }, + { + "file": "packages/react-conformance/src/utils/getPackagePath.ts", + "hash": "14010501437001551216" + }, + { + "file": "packages/react-conformance/src/utils/index.ts", + "hash": "17773056335241924487" + }, + { + "file": "packages/react-conformance/src/utils/merge.test.ts", + "hash": "11835591977761030799" + }, + { + "file": "packages/react-conformance/src/utils/merge.ts", + "hash": "16613229026682068851" + }, + { + "file": "packages/react-conformance/src/utils/validateCallbackArguments.test.ts", + "hash": "3119507892883401399" + }, + { + "file": "packages/react-conformance/src/utils/validateCallbackArguments.ts", + "hash": "14962630765061713958" + }, + { + "file": "packages/react-conformance/tsconfig.json", + "hash": "1064149269220154025" + }, + { + "file": "packages/react-conformance/tsconfig.lib.json", + "hash": "16857783929210866443" + }, + { + "file": "packages/react-conformance/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-calendar-compat": [ + { + "file": "packages/react-components/react-calendar-compat/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-calendar-compat/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-calendar-compat/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-calendar-compat/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-calendar-compat/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-calendar-compat/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-calendar-compat/CHANGELOG.json", + "hash": "7092211169174649637" + }, + { + "file": "packages/react-components/react-calendar-compat/CHANGELOG.md", + "hash": "2828901146932446647" + }, + { + "file": "packages/react-components/react-calendar-compat/LICENSE", + "hash": "8614029084732105219" + }, + { + "file": "packages/react-components/react-calendar-compat/README.md", + "hash": "4014635926778646785" + }, + { + "file": "packages/react-components/react-calendar-compat/bundle-size/Calendar.fixture.js", + "hash": "10845155123644884091" + }, + { + "file": "packages/react-components/react-calendar-compat/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-calendar-compat/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-calendar-compat/etc/react-calendar-compat.api.md", + "hash": "11280265714401482809" + }, + { + "file": "packages/react-components/react-calendar-compat/jest.config.js", + "hash": "17594938369918384400" + }, + { + "file": "packages/react-components/react-calendar-compat/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-calendar-compat/package.json", + "hash": "12780475791619375299", + "deps": [ + "@fluentui/keyboard-keys", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-calendar-compat/project.json", + "hash": "10336287111758931158" + }, + { + "file": "packages/react-components/react-calendar-compat/src/Calendar.ts", + "hash": "569100325234550221" + }, + { + "file": "packages/react-components/react-calendar-compat/src/CalendarDay.ts", + "hash": "8597632098014907945" + }, + { + "file": "packages/react-components/react-calendar-compat/src/CalendarDayGrid.ts", + "hash": "9006730546358771150" + }, + { + "file": "packages/react-components/react-calendar-compat/src/CalendarMonth.ts", + "hash": "15700967951441475220" + }, + { + "file": "packages/react-components/react-calendar-compat/src/CalendarPicker.ts", + "hash": "14523906469553885140" + }, + { + "file": "packages/react-components/react-calendar-compat/src/CalendarYear.ts", + "hash": "5034780660418317532" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.test.tsx", + "hash": "13664934943248530105" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.tsx", + "hash": "12075814383556349697" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.types.ts", + "hash": "6962729070181472361" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/Calendar/defaults.ts", + "hash": "12150049920056951841" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/Calendar/index.ts", + "hash": "280614579109648880" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/Calendar/useCalendarStyles.styles.ts", + "hash": "1006542229430292590" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDay/CalendarDay.tsx", + "hash": "7046653937375099156" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDay/CalendarDay.types.ts", + "hash": "7254463921971646205" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDay/index.ts", + "hash": "5069320966498210852" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDay/useCalendarDayStyles.styles.ts", + "hash": "14296708635223528064" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.test.tsx", + "hash": "5166513198801435477" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.tsx", + "hash": "14150020809682641348" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.types.ts", + "hash": "16844172177097176878" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarGridDayCell.tsx", + "hash": "8539280218068598115" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarGridRow.tsx", + "hash": "12406916342262678923" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarMonthHeaderRow.tsx", + "hash": "4731438398885101298" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/index.ts", + "hash": "8094953342360531716" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useCalendarDayGridStyles.styles.ts", + "hash": "9465252406194562240" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useWeekCornerStyles.styles.ts", + "hash": "14768584383717911854" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useWeeks.ts", + "hash": "5738594502898152200" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarMonth/CalendarMonth.tsx", + "hash": "16366612975234214650" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarMonth/CalendarMonth.types.ts", + "hash": "17523810711583792348" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarMonth/index.ts", + "hash": "17307579052286375469" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarMonth/useCalendarMonthStyles.ts", + "hash": "4576688148791858990" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarPicker/CalendarPicker.types.ts", + "hash": "4275469484249014334" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarPicker/index.ts", + "hash": "14592164704749861149" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarPicker/useCalendarPickerStyles.styles.ts", + "hash": "8049535238955487663" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarYear/CalendarYear.tsx", + "hash": "2490533279016265988" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarYear/CalendarYear.types.ts", + "hash": "11446533358687332984" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarYear/index.ts", + "hash": "18404670979156991646" + }, + { + "file": "packages/react-components/react-calendar-compat/src/components/CalendarYear/useCalendarYearStyles.styles.ts", + "hash": "8791019775600337052" + }, + { + "file": "packages/react-components/react-calendar-compat/src/index.ts", + "hash": "11058792551302697956" + }, + { + "file": "packages/react-components/react-calendar-compat/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/animations.ts", + "hash": "11768504868995077808" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/constants.ts", + "hash": "6954577135884407208" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.defaults.ts", + "hash": "960516216584631364" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.test.ts", + "hash": "1328095693882055479" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.types.ts", + "hash": "3964238463408131802" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateFormatting/index.ts", + "hash": "11444866860731853863" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/dateGrid.types.ts", + "hash": "13869017007540650023" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/findAvailableDate.ts", + "hash": "1044521199169079412" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/getBoundedDateRange.ts", + "hash": "5151142947748778290" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/getDateRangeTypeToUse.ts", + "hash": "6352858266315262616" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/getDayGrid.ts", + "hash": "10043549393078829484" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/index.ts", + "hash": "10066372923074331696" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/isAfterMaxDate.ts", + "hash": "5477043376904704413" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/isBeforeMinDate.ts", + "hash": "7418121542564448874" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/isContiguous.ts", + "hash": "5454231782673888564" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/isRestrictedDate.ts", + "hash": "17835191090077548002" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateMath/dateMath.test.ts", + "hash": "10841282865769457042" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateMath/dateMath.ts", + "hash": "15051247567906633079" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/dateMath/index.ts", + "hash": "12772919650999189149" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/focus.ts", + "hash": "7882318112925005824" + }, + { + "file": "packages/react-components/react-calendar-compat/src/utils/index.ts", + "hash": "2304887399068246115" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarBestPractices.md", + "hash": "12332716352476795030" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarContiguousWork.stories.tsx", + "hash": "9107126930642284008" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarCustomDayCellRef.stories.tsx", + "hash": "1634922785720367782" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarDateBoundaries.stories.tsx", + "hash": "12778969296532591271" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarDefault.stories.tsx", + "hash": "1209565745415093032" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarDescription.md", + "hash": "621070059803414892" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarMarkedDays.stories.tsx", + "hash": "14380631099370286571" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarMonthOnly.stories.tsx", + "hash": "18071268346481390719" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarMonthSelection.stories.tsx", + "hash": "4355438240880441608" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarMultiDayView.stories.tsx", + "hash": "15852493648870531727" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarNonContiguousWorkWeekDays.stories.tsx", + "hash": "6659257569324158817" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarOverlaidMonthPicker.stories.tsx", + "hash": "6466716036656954449" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarSixWeeks.stories.tsx", + "hash": "4478784017377594668" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarWeekNumbers.stories.tsx", + "hash": "8784780254995702862" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarWeekSelection.stories.tsx", + "hash": "16213513011473001401" + }, + { + "file": "packages/react-components/react-calendar-compat/stories/Calendar/index.stories.tsx", + "hash": "16088818829018348985" + }, + { + "file": "packages/react-components/react-calendar-compat/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-calendar-compat/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-calendar-compat/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/fluent2-theme": [ + { + "file": "packages/fluent2-theme/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/fluent2-theme/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/fluent2-theme/CHANGELOG.json", + "hash": "14000262545189246502" + }, + { + "file": "packages/fluent2-theme/CHANGELOG.md", + "hash": "12092648922828663973" + }, + { + "file": "packages/fluent2-theme/LICENSE", + "hash": "13314032916801402668" + }, + { + "file": "packages/fluent2-theme/README.md", + "hash": "5178866690875074267" + }, + { + "file": "packages/fluent2-theme/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/fluent2-theme/package.json", + "hash": "15050535793510851951", + "deps": [ + "@fluentui/react", + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "packages/fluent2-theme/project.json", + "hash": "4537333210814173348" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/BasePicker.styles.ts", + "hash": "15260600776551767882" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Breadcrumb.styles.ts", + "hash": "15372291180115099675" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Button.styles.ts", + "hash": "17753640107838954652" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Callout.styles.ts", + "hash": "16077482378149077721" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Check.styles.ts", + "hash": "13810909077831846777" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Checkbox.styles.ts", + "hash": "3424414869442365214" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/ChoiceGroup.styles.ts", + "hash": "7308999010808507589" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/ChoiceGroupOption.styles.ts", + "hash": "15788544625313028693" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/ColorPickerGridStyles.styles.ts", + "hash": "16658141192552402060" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/CommandBar.styles.ts", + "hash": "12555985599653262034" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/CommandBarButton.styles.ts", + "hash": "6257552873011644753" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/ContextualMenu.styles.ts", + "hash": "6595251738348705689" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/DetailsRowCheck.styles.ts", + "hash": "15893703503136844888" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Dialog.styles.ts", + "hash": "15676106242050735701" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Dropdown.styles.ts", + "hash": "17429374229032292005" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/HoverCard.styles.ts", + "hash": "11420731975731615304" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/MessageBar.styles.ts", + "hash": "6970817193015414941" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Modal.styles.ts", + "hash": "6149565223591052328" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Pivot.styles.ts", + "hash": "17110489539848042310" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/SearchBox.styles.ts", + "hash": "11165416111356502027" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Slider.styles.ts", + "hash": "1801686107186612471" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/SpinButton.styles.ts", + "hash": "5436783297629394729" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Spinner.styles.ts", + "hash": "2297587064235108640" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/TagItem.styles.ts", + "hash": "8562803234129863321" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/TextField.styles.ts", + "hash": "4531925913638019222" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/Toggle.styles.ts", + "hash": "1148580698831778292" + }, + { + "file": "packages/fluent2-theme/src/componentStyles/inputStyleHelpers.utils.ts", + "hash": "10599679107732509558" + }, + { + "file": "packages/fluent2-theme/src/fluent2ComponentStyles.ts", + "hash": "4167974845032497451" + }, + { + "file": "packages/fluent2-theme/src/fluent2SharedColors.ts", + "hash": "17417864239864681637" + }, + { + "file": "packages/fluent2-theme/src/fluent2WebDarkTheme.ts", + "hash": "4115228166445543492" + }, + { + "file": "packages/fluent2-theme/src/fluent2WebLightTheme.ts", + "hash": "6879190915920168265" + }, + { + "file": "packages/fluent2-theme/src/index.ts", + "hash": "10220108571584631462" + }, + { + "file": "packages/fluent2-theme/src/types.ts", + "hash": "6590217542999449010" + }, + { + "file": "packages/fluent2-theme/src/version.ts", + "hash": "16446534884769303039" + }, + { + "file": "packages/fluent2-theme/tsconfig.json", + "hash": "6054155811259967380" + }, + { + "file": "packages/fluent2-theme/webpack.config.js", + "hash": "203595246380395220" + } + ], + "@fluentui/scripts-generators": [ + { + "file": "scripts/generators/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/generators/README.md", + "hash": "3244421341483603138" + }, + { + "file": "scripts/generators/copy-notices.js", + "hash": "8339956232807130894" + }, + { + "file": "scripts/generators/create-package/index.ts", + "hash": "1023464366955464488" + }, + { + "file": "scripts/generators/create-package/plop-templates/.npmignore", + "hash": "15779616407447347661" + }, + { + "file": "scripts/generators/create-package/plop-templates/LICENSE", + "hash": "7784678994578688470" + }, + { + "file": "scripts/generators/create-package/plop-templates-node/.eslintrc.json", + "hash": "11018738359270224912" + }, + { + "file": "scripts/generators/create-package/plop-templates-node/README.md", + "hash": "11488531901706867964" + }, + { + "file": "scripts/generators/create-package/plop-templates-node/jest.config.js", + "hash": "5767287689832801759" + }, + { + "file": "scripts/generators/create-package/plop-templates-node/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "scripts/generators/create-package/plop-templates-node/package.json.hbs", + "hash": "1858263664827995967" + }, + { + "file": "scripts/generators/create-package/plop-templates-node/src/index.ts", + "hash": "3244421341483603138" + }, + { + "file": "scripts/generators/create-package/plop-templates-node/tsconfig.json", + "hash": "14003963471471549059" + }, + { + "file": "scripts/generators/generate-package-manifest.js", + "hash": "829917185810683924" + }, + { + "file": "scripts/generators/generate-version-files.spec.ts", + "hash": "11734705974912052662" + }, + { + "file": "scripts/generators/generate-version-files.ts", + "hash": "16599489589663836752" + }, + { + "file": "scripts/generators/jest.config.js", + "hash": "17142233150211201331" + }, + { + "file": "scripts/generators/package.json", + "hash": "17736771304901104740", + "deps": ["@fluentui/scripts-monorepo", "@fluentui/scripts-projects-test"] + }, + { + "file": "scripts/generators/project.json", + "hash": "13911854573080798778" + }, + { + "file": "scripts/generators/rename-package.ts", + "hash": "18400035219499976562" + }, + { + "file": "scripts/generators/token-pipeline.ts", + "hash": "3747370135770113790" + }, + { + "file": "scripts/generators/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/generators/tsconfig.lib.json", + "hash": "504082678461750961" + }, + { + "file": "scripts/generators/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/scripts-cypress": [ + { + "file": "scripts/cypress/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/cypress/jest.config.js", + "hash": "518561776419926196" + }, + { + "file": "scripts/cypress/package.json", + "hash": "17552627759162863426" + }, + { + "file": "scripts/cypress/project.json", + "hash": "3565894995875395203" + }, + { + "file": "scripts/cypress/src/base.config.ts", + "hash": "15157171578083653468" + }, + { + "file": "scripts/cypress/src/fixtures/example.json", + "hash": "13882982864087580737" + }, + { + "file": "scripts/cypress/src/index.ts", + "hash": "16896299082554130027" + }, + { + "file": "scripts/cypress/src/support/commands.js", + "hash": "11219619752715906948" + }, + { + "file": "scripts/cypress/src/support/component-index.html", + "hash": "1832624220235093789" + }, + { + "file": "scripts/cypress/src/support/component.js", + "hash": "7239146018917213442" + }, + { + "file": "scripts/cypress/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/cypress/tsconfig.lib.json", + "hash": "7437868646531824504" + }, + { + "file": "scripts/cypress/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/code-sandbox": [ + { + "file": "packages/fluentui/code-sandbox/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/code-sandbox/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/code-sandbox/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/code-sandbox/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/code-sandbox/package.json", + "hash": "11253220741395450065", + "deps": [ + "@fluentui/docs-components", + "npm:lodash", + "@fluentui/eslint-plugin", + "@fluentui/react-northstar", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/code-sandbox/project.json", + "hash": "5162402659160918655" + }, + { + "file": "packages/fluentui/code-sandbox/src/KnobsSnippet.tsx", + "hash": "1773927934854982206" + }, + { + "file": "packages/fluentui/code-sandbox/src/SandboxApp.tsx", + "hash": "3987921530467467936" + }, + { + "file": "packages/fluentui/code-sandbox/src/createCallbackLogFormatter.ts", + "hash": "5527801291715599944" + }, + { + "file": "packages/fluentui/code-sandbox/src/index.ts", + "hash": "3876221794154391346" + }, + { + "file": "packages/fluentui/code-sandbox/src/knobComponents.tsx", + "hash": "12929511866022094531" + }, + { + "file": "packages/fluentui/code-sandbox/tsconfig.json", + "hash": "10710169321765083407" + } + ], + "@fluentui/react-combobox": [ + { + "file": "packages/react-components/react-combobox/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-combobox/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-combobox/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-combobox/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-combobox/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-combobox/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-combobox/CHANGELOG.json", + "hash": "3985528873419017670" + }, + { + "file": "packages/react-components/react-combobox/CHANGELOG.md", + "hash": "9154813673257028545" + }, + { + "file": "packages/react-components/react-combobox/LICENSE", + "hash": "9860549950015593842" + }, + { + "file": "packages/react-components/react-combobox/README.md", + "hash": "9155355691234160061" + }, + { + "file": "packages/react-components/react-combobox/bundle-size/Combobox.fixture.js", + "hash": "9982117868040139071" + }, + { + "file": "packages/react-components/react-combobox/bundle-size/Dropdown.fixture.js", + "hash": "8112300604899923822" + }, + { + "file": "packages/react-components/react-combobox/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-combobox/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-combobox/docs/Migration.md", + "hash": "15736839676233684150" + }, + { + "file": "packages/react-components/react-combobox/docs/Spec.md", + "hash": "13792868429925902060" + }, + { + "file": "packages/react-components/react-combobox/etc/react-combobox.api.md", + "hash": "12110621555092127445" + }, + { + "file": "packages/react-components/react-combobox/jest.config.js", + "hash": "14434437269927222502" + }, + { + "file": "packages/react-components/react-combobox/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-combobox/package.json", + "hash": "8415023961919121570", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-context-selector", + "@fluentui/react-field", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-portal", + "@fluentui/react-positioning", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-combobox/project.json", + "hash": "17856213337526301744" + }, + { + "file": "packages/react-components/react-combobox/src/Combobox.ts", + "hash": "13212991580912314567" + }, + { + "file": "packages/react-components/react-combobox/src/Dropdown.ts", + "hash": "18194367805350925119" + }, + { + "file": "packages/react-components/react-combobox/src/Listbox.ts", + "hash": "2994750780024488790" + }, + { + "file": "packages/react-components/react-combobox/src/Option.ts", + "hash": "8134140143396359331" + }, + { + "file": "packages/react-components/react-combobox/src/OptionGroup.ts", + "hash": "3135556529192386201" + }, + { + "file": "packages/react-components/react-combobox/src/Selection.ts", + "hash": "9515203752361595812" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/Combobox.test.tsx", + "hash": "11060583859767248781" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/Combobox.tsx", + "hash": "10311117368400437139" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/Combobox.types.ts", + "hash": "6722880387444505841" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/__snapshots__/Combobox.test.tsx.snap", + "hash": "84774976154997620" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/index.ts", + "hash": "6601828869047344697" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/renderCombobox.tsx", + "hash": "6280296408622563178" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/useCombobox.tsx", + "hash": "520267582978251132" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/useComboboxStyles.styles.ts", + "hash": "15274002347501714576" + }, + { + "file": "packages/react-components/react-combobox/src/components/Combobox/useInputTriggerSlot.ts", + "hash": "9223211072539326676" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/Dropdown.test.tsx", + "hash": "627380512353886242" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/Dropdown.tsx", + "hash": "5534345575162447099" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/Dropdown.types.ts", + "hash": "14900938450773068428" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/__snapshots__/Dropdown.test.tsx.snap", + "hash": "14529732928227940878" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/index.ts", + "hash": "2679793517316704607" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/renderDropdown.tsx", + "hash": "2334816031473000713" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/useButtonTriggerSlot.ts", + "hash": "17670001280220951598" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/useDropdown.tsx", + "hash": "7158597820481445308" + }, + { + "file": "packages/react-components/react-combobox/src/components/Dropdown/useDropdownStyles.styles.ts", + "hash": "8988619665109997777" + }, + { + "file": "packages/react-components/react-combobox/src/components/Listbox/Listbox.test.tsx", + "hash": "5240177981222686361" + }, + { + "file": "packages/react-components/react-combobox/src/components/Listbox/Listbox.tsx", + "hash": "11961102491274010486" + }, + { + "file": "packages/react-components/react-combobox/src/components/Listbox/Listbox.types.ts", + "hash": "2057681249960441904" + }, + { + "file": "packages/react-components/react-combobox/src/components/Listbox/__snapshots__/Listbox.test.tsx.snap", + "hash": "16313140357488500172" + }, + { + "file": "packages/react-components/react-combobox/src/components/Listbox/index.ts", + "hash": "10149829330954397429" + }, + { + "file": "packages/react-components/react-combobox/src/components/Listbox/renderListbox.tsx", + "hash": "9529356921915895894" + }, + { + "file": "packages/react-components/react-combobox/src/components/Listbox/useListbox.ts", + "hash": "9517705189017094768" + }, + { + "file": "packages/react-components/react-combobox/src/components/Listbox/useListboxStyles.styles.ts", + "hash": "10512360566143520474" + }, + { + "file": "packages/react-components/react-combobox/src/components/Option/Option.test.tsx", + "hash": "5177864859865280746" + }, + { + "file": "packages/react-components/react-combobox/src/components/Option/Option.tsx", + "hash": "12671939144116063908" + }, + { + "file": "packages/react-components/react-combobox/src/components/Option/Option.types.ts", + "hash": "3862608407678106174" + }, + { + "file": "packages/react-components/react-combobox/src/components/Option/__snapshots__/Option.test.tsx.snap", + "hash": "12111334467294524539" + }, + { + "file": "packages/react-components/react-combobox/src/components/Option/index.ts", + "hash": "3914311942511823178" + }, + { + "file": "packages/react-components/react-combobox/src/components/Option/renderOption.tsx", + "hash": "16662341201277600348" + }, + { + "file": "packages/react-components/react-combobox/src/components/Option/useOption.tsx", + "hash": "2142576164571353029" + }, + { + "file": "packages/react-components/react-combobox/src/components/Option/useOptionStyles.styles.ts", + "hash": "5670469110030125289" + }, + { + "file": "packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.test.tsx", + "hash": "4384866626424502977" + }, + { + "file": "packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.tsx", + "hash": "3182087730059989119" + }, + { + "file": "packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.types.ts", + "hash": "8445554751423183315" + }, + { + "file": "packages/react-components/react-combobox/src/components/OptionGroup/__snapshots__/OptionGroup.test.tsx.snap", + "hash": "163861498277196073" + }, + { + "file": "packages/react-components/react-combobox/src/components/OptionGroup/index.ts", + "hash": "16578744468575825163" + }, + { + "file": "packages/react-components/react-combobox/src/components/OptionGroup/renderOptionGroup.tsx", + "hash": "3110647036943882995" + }, + { + "file": "packages/react-components/react-combobox/src/components/OptionGroup/useOptionGroup.ts", + "hash": "11097943236829005456" + }, + { + "file": "packages/react-components/react-combobox/src/components/OptionGroup/useOptionGroupStyles.styles.ts", + "hash": "17434221321981968949" + }, + { + "file": "packages/react-components/react-combobox/src/contexts/ComboboxContext.ts", + "hash": "929963705666598824" + }, + { + "file": "packages/react-components/react-combobox/src/contexts/ListboxContext.ts", + "hash": "3439369373193236577" + }, + { + "file": "packages/react-components/react-combobox/src/contexts/useComboboxContextValues.ts", + "hash": "13340091498314471026" + }, + { + "file": "packages/react-components/react-combobox/src/contexts/useListboxContextValues.ts", + "hash": "13800266999970494762" + }, + { + "file": "packages/react-components/react-combobox/src/index.ts", + "hash": "9936586546212580500" + }, + { + "file": "packages/react-components/react-combobox/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-combobox/src/utils/ComboboxBase.types.ts", + "hash": "16300109512749709073" + }, + { + "file": "packages/react-components/react-combobox/src/utils/OptionCollection.types.ts", + "hash": "6054787405511182417" + }, + { + "file": "packages/react-components/react-combobox/src/utils/Selection.types.ts", + "hash": "11972870952754376840" + }, + { + "file": "packages/react-components/react-combobox/src/utils/dropdownKeyActions.ts", + "hash": "1316510657660803656" + }, + { + "file": "packages/react-components/react-combobox/src/utils/internalTokens.ts", + "hash": "14963293680083608660" + }, + { + "file": "packages/react-components/react-combobox/src/utils/useComboboxBaseState.ts", + "hash": "8250739279614188233" + }, + { + "file": "packages/react-components/react-combobox/src/utils/useComboboxPositioning.ts", + "hash": "2550337742911701970" + }, + { + "file": "packages/react-components/react-combobox/src/utils/useListboxSlot.ts", + "hash": "13952757643081324859" + }, + { + "file": "packages/react-components/react-combobox/src/utils/useOptionCollection.ts", + "hash": "7314571815979167399" + }, + { + "file": "packages/react-components/react-combobox/src/utils/useScrollOptionsIntoView.ts", + "hash": "4142049665632735367" + }, + { + "file": "packages/react-components/react-combobox/src/utils/useSelection.ts", + "hash": "14996013758550257473" + }, + { + "file": "packages/react-components/react-combobox/src/utils/useTriggerSlot.ts", + "hash": "9101709088659355024" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxAppearance.stories.tsx", + "hash": "8548703503941685749" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxBestPractices.md", + "hash": "744684511504791082" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxComplexOptions.stories.tsx", + "hash": "297723454355376697" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxControlled.stories.tsx", + "hash": "3456633706628545626" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxCustomOptions.stories.tsx", + "hash": "12685238925861146979" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxDefault.stories.tsx", + "hash": "18266674055953269566" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxDescription.md", + "hash": "17843666779395466277" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxDisabled.stories.tsx", + "hash": "3128410187237974780" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxFiltering.stories.tsx", + "hash": "17936456203850376223" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxFreeform.stories.tsx", + "hash": "18323167836197074615" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxGrouped.stories.tsx", + "hash": "13215087173770388938" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselect.stories.tsx", + "hash": "10893488920315906460" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselectWithTags.stories.tsx", + "hash": "15979300667814621916" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselectWithValueString.stories.tsx", + "hash": "12249468363876146555" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxSize.stories.tsx", + "hash": "5130255855723498846" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxVirtualizer.stories.tsx", + "hash": "12188006947587273256" + }, + { + "file": "packages/react-components/react-combobox/stories/Combobox/index.stories.tsx", + "hash": "2631140498889026435" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownAccessibility.md", + "hash": "4273687250426205790" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownAccessibility.stories.mdx", + "hash": "9909411046506801934" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownAppearance.stories.tsx", + "hash": "4084551238588706930" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownBestPractices.md", + "hash": "10254108218710739116" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownComplexOptions.stories.tsx", + "hash": "3922375352896055609" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownControlled.stories.tsx", + "hash": "9427431566998959031" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownCustomOptions.stories.tsx", + "hash": "15198432756208424589" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownDefault.stories.tsx", + "hash": "13981062825270634122" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownDescription.md", + "hash": "11457027239647719668" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownDisabled.stories.tsx", + "hash": "11574745316902443091" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownGrouped.stories.tsx", + "hash": "14312832856975740807" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownMultiselect.stories.tsx", + "hash": "11055633430384623307" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownSize.stories.tsx", + "hash": "11497543963552536578" + }, + { + "file": "packages/react-components/react-combobox/stories/Dropdown/index.stories.tsx", + "hash": "210961802901619491" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-click.png", + "hash": "12453121186810189264" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-collapsed.png", + "hash": "10962727780164198655" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-hover.png", + "hash": "10323365367312532038" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-key-select.png", + "hash": "1567787049728258184" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-multiselection1.png", + "hash": "6198988657172575792" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-multiselection2.png", + "hash": "7045883760343802146" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-nav.png", + "hash": "16470357799642190126" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-open.png", + "hash": "17524257435370515355" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-option-hover.png", + "hash": "5908223504128174873" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-selected-open.png", + "hash": "6726587615125601571" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-semantics.png", + "hash": "14939116960473785956" + }, + { + "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-tabbing.png", + "hash": "10541967115071968036" + }, + { + "file": "packages/react-components/react-combobox/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-combobox/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-combobox/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/codemods": [ + { + "file": "packages/codemods/.eslintrc.json", + "hash": "4428152067048705317" + }, + { + "file": "packages/codemods/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/codemods/CHANGELOG.json", + "hash": "11347495108269306727" + }, + { + "file": "packages/codemods/CHANGELOG.md", + "hash": "8867042710605885765" + }, + { + "file": "packages/codemods/LICENSE", + "hash": "14163660608650232522" + }, + { + "file": "packages/codemods/README.md", + "hash": "13860676800098945886" + }, + { + "file": "packages/codemods/bin/upgrade.js", + "hash": "16520232535087589005" + }, + { + "file": "packages/codemods/documentation/howTo.md", + "hash": "7461052920490961802" + }, + { + "file": "packages/codemods/documentation/renamePropTransforms.md", + "hash": "241704516325919730" + }, + { + "file": "packages/codemods/jest.config.js", + "hash": "5767287689832801759" + }, + { + "file": "packages/codemods/just.config.ts", + "hash": "2411455081002746933" + }, + { + "file": "packages/codemods/package.json", + "hash": "2182322265430513456", + "deps": [ + "npm:tslib", + "npm:react", + "npm:ts-morph", + "npm:glob", + "npm:yargs", + "@fluentui/eslint-plugin", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/codemods/project.json", + "hash": "1183081484802960152" + }, + { + "file": "packages/codemods/src/codeMods/mods/componentToCompat/compatHelpers.ts", + "hash": "9240806428948769680" + }, + { + "file": "packages/codemods/src/codeMods/mods/componentToCompat/componentToCompat.mod.ts", + "hash": "17273743481686930406" + }, + { + "file": "packages/codemods/src/codeMods/mods/componentToCompat/namedExports.ts", + "hash": "10333643041167619988" + }, + { + "file": "packages/codemods/src/codeMods/mods/configMod/configMod.mod.ts", + "hash": "8256406929658905577" + }, + { + "file": "packages/codemods/src/codeMods/mods/officeToFluentImport/officeToFluentImport.mod.ts", + "hash": "16353032478154865044" + }, + { + "file": "packages/codemods/src/codeMods/mods/oldToNewButton/oldToNewButton.mod.ts", + "hash": "1357173166044755082" + }, + { + "file": "packages/codemods/src/codeMods/mods/personaToAvatar/personaToAvatar.mod.ts", + "hash": "3425367627829998026" + }, + { + "file": "packages/codemods/src/codeMods/mods/upgrades.json", + "hash": "8534611347961339460" + }, + { + "file": "packages/codemods/src/codeMods/tests/componentToCompat/componentToCompat.test.ts", + "hash": "9545073426540253167" + }, + { + "file": "packages/codemods/src/codeMods/tests/configMod/configMod.test.ts", + "hash": "9507343427469922246" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/button/mButtonProps.tsx", + "hash": "7468149991658358259" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/button/mButtonStyles.tsx", + "hash": "12384006366854582909" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/button/mCompoundButtonProps.tsx", + "hash": "15112058447461572698" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/compat/Button.tsx", + "hash": "10262838276442804862" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/compat/DefaultButton.tsx", + "hash": "8256931557089837956" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/compat/ImportsStuff.tsx", + "hash": "1518893783011304840" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/compat/mockIndex.ts", + "hash": "3709648605083778684" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/dropdown/mDropdownProps.tsx", + "hash": "4363796598908677651" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/dropdown/mDropdownSpreadProps.tsx", + "hash": "4375066566216277476" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/mockFunction.tsx", + "hash": "311456311444952405" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/mockImport.tsx", + "hash": "17710243442170095470" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/persona/mClass.tsx", + "hash": "17753879045974249120" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/persona/mFunction.tsx", + "hash": "5626766255761670481" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/persona/mInterface.tsx", + "hash": "9034839761500607237" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/persona/mPersonaProps.tsx", + "hash": "11328331329653495165" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/persona/mPersonaSpreadProps.tsx", + "hash": "13995810082966974410" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/persona/mWithPersonaSize.tsx", + "hash": "3491347508505688659" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/spinner/mSpinnerProps.tsx", + "hash": "7870275173352507482" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/spinner/mSpinnerSpreadProps.tsx", + "hash": "11413584911410415206" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/utils/mockEdgeImports.tsx", + "hash": "6904143302243784622" + }, + { + "file": "packages/codemods/src/codeMods/tests/mock/utils/mockImports.tsx", + "hash": "4989490717297183261" + }, + { + "file": "packages/codemods/src/codeMods/tests/officeToFluentImport/officeToFluentImport.test.ts", + "hash": "7003135997588781179" + }, + { + "file": "packages/codemods/src/codeMods/tests/oldToNewButton/oldToNewButton.test.ts", + "hash": "1764156562373966815" + }, + { + "file": "packages/codemods/src/codeMods/tests/personaToAvatar/componentMod.test.ts", + "hash": "12262799446987997670" + }, + { + "file": "packages/codemods/src/codeMods/tests/personaToAvatar/propsMod.test.ts", + "hash": "11171104898829191255" + }, + { + "file": "packages/codemods/src/codeMods/tests/utilities/importUtils.test.ts", + "hash": "7159995125621984221" + }, + { + "file": "packages/codemods/src/codeMods/tests/utilities/jsxUtilities.test.ts", + "hash": "8007580690693405560" + }, + { + "file": "packages/codemods/src/codeMods/tests/utilities/propUtilities.test.ts", + "hash": "4677491295252227055" + }, + { + "file": "packages/codemods/src/codeMods/types.ts", + "hash": "13021417299316460312" + }, + { + "file": "packages/codemods/src/codeMods/utilities/helpers/propHelpers.ts", + "hash": "2484056730035742925" + }, + { + "file": "packages/codemods/src/codeMods/utilities/imports.ts", + "hash": "15301094299013895104" + }, + { + "file": "packages/codemods/src/codeMods/utilities/index.ts", + "hash": "2555049955491844014" + }, + { + "file": "packages/codemods/src/codeMods/utilities/jsx.ts", + "hash": "13793530493669573769" + }, + { + "file": "packages/codemods/src/codeMods/utilities/props.ts", + "hash": "12666028733730733197" + }, + { + "file": "packages/codemods/src/codeMods/utilities/transforms.ts", + "hash": "16926870991077811697" + }, + { + "file": "packages/codemods/src/command.ts", + "hash": "18096051007695008033" + }, + { + "file": "packages/codemods/src/helpers/chainable.ts", + "hash": "8733383370644214781" + }, + { + "file": "packages/codemods/src/helpers/maybe.ts", + "hash": "14176675661170324955" + }, + { + "file": "packages/codemods/src/helpers/result.ts", + "hash": "5450803410888169633" + }, + { + "file": "packages/codemods/src/helpers/tests/maybe.test.ts", + "hash": "4721878516108784302" + }, + { + "file": "packages/codemods/src/helpers/tests/result.test.ts", + "hash": "12287505420809316455" + }, + { + "file": "packages/codemods/src/index.ts", + "hash": "7306275544208333527" + }, + { + "file": "packages/codemods/src/modRunner/logger.ts", + "hash": "3590337614079459744" + }, + { + "file": "packages/codemods/src/modRunner/modFilter.ts", + "hash": "7822802422462301002" + }, + { + "file": "packages/codemods/src/modRunner/runnerUtilities.ts", + "hash": "16535238509257622858" + }, + { + "file": "packages/codemods/src/modRunner/tests/command.test.ts", + "hash": "12681799096963602133" + }, + { + "file": "packages/codemods/src/modRunner/tests/filters.test.ts", + "hash": "3040657239305293440" + }, + { + "file": "packages/codemods/src/modRunner/tests/mocks/MockMods/CodeMod.mock.ts", + "hash": "15197719005968264090" + }, + { + "file": "packages/codemods/src/modRunner/tests/mocks/MockMods/JSMock.mod.js", + "hash": "11801600890007965326" + }, + { + "file": "packages/codemods/src/modRunner/tests/mocks/MockProject/projects/subProject/tsconfig.json", + "hash": "5954153889229813267" + }, + { + "file": "packages/codemods/src/modRunner/tests/mocks/MockProject/src/File-react.tsx", + "hash": "15555827964896839803" + }, + { + "file": "packages/codemods/src/modRunner/tests/mocks/MockProject/src/File.ts", + "hash": "15555827964896839803" + }, + { + "file": "packages/codemods/src/modRunner/tests/mocks/MockProject/tsconfig.json", + "hash": "5954153889229813267" + }, + { + "file": "packages/codemods/src/modRunner/tests/modRunner.test.ts", + "hash": "15492578309836042993" + }, + { + "file": "packages/codemods/src/modRunner/tests/upgrade.test.ts", + "hash": "17926476974248175499" + }, + { + "file": "packages/codemods/src/upgrade.ts", + "hash": "10683793787605745167" + }, + { + "file": "packages/codemods/tsconfig.json", + "hash": "9192670197236996538" + } + ], + "@fluentui/utilities": [ + { + "file": "packages/utilities/.eslintrc.json", + "hash": "2580200865767780480" + }, + { + "file": "packages/utilities/CHANGELOG.json", + "hash": "6335607398106611430" + }, + { + "file": "packages/utilities/CHANGELOG.md", + "hash": "12816284100488688515" + }, + { + "file": "packages/utilities/LICENSE", + "hash": "2164827662511184675" + }, + { + "file": "packages/utilities/README.md", + "hash": "5244410816745376968" + }, + { + "file": "packages/utilities/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/utilities/config/tests.js", + "hash": "16641653404356876419" + }, + { + "file": "packages/utilities/etc/utilities.api.md", + "hash": "15018932460167178414" + }, + { + "file": "packages/utilities/jest.config.js", + "hash": "304128120137977307" + }, + { + "file": "packages/utilities/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/utilities/package.json", + "hash": "675003616675843412", + "deps": [ + "@fluentui/dom-utilities", + "@fluentui/merge-styles", + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/jest-serializer-merge-styles", + "@fluentui/test-utilities", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/utilities/project.json", + "hash": "17280231558626148637" + }, + { + "file": "packages/utilities/src/Async.test.ts", + "hash": "5759589505192850170" + }, + { + "file": "packages/utilities/src/Async.ts", + "hash": "15143769995860493369" + }, + { + "file": "packages/utilities/src/AutoScroll.ts", + "hash": "5601078848280160212" + }, + { + "file": "packages/utilities/src/BaseComponent.test.tsx", + "hash": "3877588864845288553" + }, + { + "file": "packages/utilities/src/BaseComponent.ts", + "hash": "9118405640307315372" + }, + { + "file": "packages/utilities/src/BaseComponent.types.ts", + "hash": "783638621225026234" + }, + { + "file": "packages/utilities/src/DelayedRender.tsx", + "hash": "4642510121216492222" + }, + { + "file": "packages/utilities/src/EventGroup.test.ts", + "hash": "12138699095578563984" + }, + { + "file": "packages/utilities/src/EventGroup.ts", + "hash": "14471280002975870863" + }, + { + "file": "packages/utilities/src/FabricPerformance.ts", + "hash": "4714530500644440274" + }, + { + "file": "packages/utilities/src/FocusRectsProvider.tsx", + "hash": "15787740731290076280" + }, + { + "file": "packages/utilities/src/GlobalSettings.ts", + "hash": "342336038417369589" + }, + { + "file": "packages/utilities/src/IClassNames.ts", + "hash": "3076168777488422116" + }, + { + "file": "packages/utilities/src/IComponentAs.ts", + "hash": "252446323054408189" + }, + { + "file": "packages/utilities/src/IDisposable.ts", + "hash": "2478442062744367057" + }, + { + "file": "packages/utilities/src/IRectangle.ts", + "hash": "10995019983178257971" + }, + { + "file": "packages/utilities/src/IRenderComponent.ts", + "hash": "461886732816612547" + }, + { + "file": "packages/utilities/src/IRenderFunction.ts", + "hash": "17813586765380303785" + }, + { + "file": "packages/utilities/src/ISize.ts", + "hash": "14461979371085555856" + }, + { + "file": "packages/utilities/src/IStyleFunction.ts", + "hash": "6791316609268819404" + }, + { + "file": "packages/utilities/src/KeyCodes.ts", + "hash": "14564321873164316746" + }, + { + "file": "packages/utilities/src/Point.ts", + "hash": "376713868510813523" + }, + { + "file": "packages/utilities/src/React.types.ts", + "hash": "17800794849670035313" + }, + { + "file": "packages/utilities/src/Rectangle.ts", + "hash": "824886417592807336" + }, + { + "file": "packages/utilities/src/__snapshots__/styled.test.tsx.snap", + "hash": "12979173466984991107" + }, + { + "file": "packages/utilities/src/appendFunction.test.ts", + "hash": "8729525214092344649" + }, + { + "file": "packages/utilities/src/appendFunction.ts", + "hash": "4083488610739721922" + }, + { + "file": "packages/utilities/src/aria.test.ts", + "hash": "14138603899583562794" + }, + { + "file": "packages/utilities/src/aria.ts", + "hash": "5735708631711502150" + }, + { + "file": "packages/utilities/src/array.test.ts", + "hash": "15801175074736137302" + }, + { + "file": "packages/utilities/src/array.ts", + "hash": "1894347163613481431" + }, + { + "file": "packages/utilities/src/asAsync.test.tsx", + "hash": "10697304036797267807" + }, + { + "file": "packages/utilities/src/asAsync.tsx", + "hash": "4181533372244279705" + }, + { + "file": "packages/utilities/src/assertNever.ts", + "hash": "1515606681749095367" + }, + { + "file": "packages/utilities/src/classNamesFunction.test.ts", + "hash": "6343392581387687372" + }, + { + "file": "packages/utilities/src/classNamesFunction.ts", + "hash": "8023095563856715213" + }, + { + "file": "packages/utilities/src/componentAs/__snapshots__/composeComponentAs.test.tsx.snap", + "hash": "2752369257854721166" + }, + { + "file": "packages/utilities/src/componentAs/composeComponentAs.test.tsx", + "hash": "8746889857353005866" + }, + { + "file": "packages/utilities/src/componentAs/composeComponentAs.tsx", + "hash": "2140110881671918461" + }, + { + "file": "packages/utilities/src/controlled.test.ts", + "hash": "9058866301967561226" + }, + { + "file": "packages/utilities/src/controlled.ts", + "hash": "9066208032224367059" + }, + { + "file": "packages/utilities/src/createMergedRef.test.tsx", + "hash": "1416955141188369611" + }, + { + "file": "packages/utilities/src/createMergedRef.ts", + "hash": "1251098934683385949" + }, + { + "file": "packages/utilities/src/createRef.ts", + "hash": "9238843200674099325" + }, + { + "file": "packages/utilities/src/css.test.ts", + "hash": "10031246422893899008" + }, + { + "file": "packages/utilities/src/css.ts", + "hash": "1793825490912883658" + }, + { + "file": "packages/utilities/src/customizations/Customizations.test.ts", + "hash": "10105610822375110835" + }, + { + "file": "packages/utilities/src/customizations/Customizations.ts", + "hash": "3495907360416689960" + }, + { + "file": "packages/utilities/src/customizations/Customizer.test.tsx", + "hash": "12908700688009649933" + }, + { + "file": "packages/utilities/src/customizations/Customizer.tsx", + "hash": "7793381447130808575" + }, + { + "file": "packages/utilities/src/customizations/Customizer.types.tsx", + "hash": "13989787286778459151" + }, + { + "file": "packages/utilities/src/customizations/CustomizerContext.ts", + "hash": "13773513164298209090" + }, + { + "file": "packages/utilities/src/customizations/customizable.test.tsx", + "hash": "17417709320635180368" + }, + { + "file": "packages/utilities/src/customizations/customizable.tsx", + "hash": "3874477594453762777" + }, + { + "file": "packages/utilities/src/customizations/mergeCustomizations.ts", + "hash": "7624715242722992448" + }, + { + "file": "packages/utilities/src/customizations/mergeSettings.ts", + "hash": "949575409405210085" + }, + { + "file": "packages/utilities/src/customizations/useCustomizationSettings.test.tsx", + "hash": "9461785824933750783" + }, + { + "file": "packages/utilities/src/customizations/useCustomizationSettings.ts", + "hash": "9469212748401813506" + }, + { + "file": "packages/utilities/src/dom/IVirtualElement.ts", + "hash": "1272603442600869120" + }, + { + "file": "packages/utilities/src/dom/canUseDOM.ts", + "hash": "14283484485691740206" + }, + { + "file": "packages/utilities/src/dom/dom.test.ts", + "hash": "15189535752284549665" + }, + { + "file": "packages/utilities/src/dom/elementContains.ts", + "hash": "6731392015328967658" + }, + { + "file": "packages/utilities/src/dom/elementContainsAttribute.ts", + "hash": "9998380691696155229" + }, + { + "file": "packages/utilities/src/dom/findElementRecursive.ts", + "hash": "12204766649587740636" + }, + { + "file": "packages/utilities/src/dom/getChildren.ts", + "hash": "10521633747754719556" + }, + { + "file": "packages/utilities/src/dom/getDocument.ts", + "hash": "9086020502057242037" + }, + { + "file": "packages/utilities/src/dom/getFirstVisibleElementFromSelector.ts", + "hash": "6447989736279473834" + }, + { + "file": "packages/utilities/src/dom/getParent.ts", + "hash": "9718084071153318455" + }, + { + "file": "packages/utilities/src/dom/getRect.ts", + "hash": "60430354175429724" + }, + { + "file": "packages/utilities/src/dom/getVirtualParent.ts", + "hash": "11252940205299737616" + }, + { + "file": "packages/utilities/src/dom/getWindow.ts", + "hash": "18428128074541184664" + }, + { + "file": "packages/utilities/src/dom/isVirtualElement.ts", + "hash": "517001433736903322" + }, + { + "file": "packages/utilities/src/dom/on.ts", + "hash": "12860909919214186505" + }, + { + "file": "packages/utilities/src/dom/portalContainsElement.ts", + "hash": "5168170300745806070" + }, + { + "file": "packages/utilities/src/dom/raiseClick.ts", + "hash": "1733874287643999407" + }, + { + "file": "packages/utilities/src/dom/setPortalAttribute.ts", + "hash": "6856150449255039282" + }, + { + "file": "packages/utilities/src/dom/setSSR.ts", + "hash": "15371249151282858961" + }, + { + "file": "packages/utilities/src/dom/setVirtualParent.ts", + "hash": "10955819039440267009" + }, + { + "file": "packages/utilities/src/dom.ts", + "hash": "6537626984778766649" + }, + { + "file": "packages/utilities/src/extendComponent.test.tsx", + "hash": "13891293003835934127" + }, + { + "file": "packages/utilities/src/extendComponent.ts", + "hash": "11310818425939132405" + }, + { + "file": "packages/utilities/src/focus.test.tsx", + "hash": "18400430136451594057" + }, + { + "file": "packages/utilities/src/focus.ts", + "hash": "6643169002879769058" + }, + { + "file": "packages/utilities/src/getId.ts", + "hash": "6800706428956972366" + }, + { + "file": "packages/utilities/src/getNativeElementProps.test.ts", + "hash": "284309430326406258" + }, + { + "file": "packages/utilities/src/getNativeElementProps.ts", + "hash": "11067196988575191658" + }, + { + "file": "packages/utilities/src/getPropsWithDefaults.test.ts", + "hash": "13824695188429262134" + }, + { + "file": "packages/utilities/src/getPropsWithDefaults.ts", + "hash": "9323023684459143650" + }, + { + "file": "packages/utilities/src/hoist.ts", + "hash": "904637284183141448" + }, + { + "file": "packages/utilities/src/hoistStatics.ts", + "hash": "5921127637819176945" + }, + { + "file": "packages/utilities/src/ie11Detector.ts", + "hash": "8304370647762605469" + }, + { + "file": "packages/utilities/src/index.ts", + "hash": "8052320402088512943" + }, + { + "file": "packages/utilities/src/initializeComponentRef.test.tsx", + "hash": "16876304708087993207" + }, + { + "file": "packages/utilities/src/initializeComponentRef.ts", + "hash": "17624525091723477913" + }, + { + "file": "packages/utilities/src/initializeDir.ts", + "hash": "5746005562232527516" + }, + { + "file": "packages/utilities/src/initializeFocusRects.test.ts", + "hash": "9347386513877106337" + }, + { + "file": "packages/utilities/src/initializeFocusRects.ts", + "hash": "6836970356225779843" + }, + { + "file": "packages/utilities/src/initials.test.ts", + "hash": "17208878865390886151" + }, + { + "file": "packages/utilities/src/initials.ts", + "hash": "2246058192270431676" + }, + { + "file": "packages/utilities/src/keyboard.test.ts", + "hash": "2465005779275079326" + }, + { + "file": "packages/utilities/src/keyboard.ts", + "hash": "3375700092477164063" + }, + { + "file": "packages/utilities/src/language.ts", + "hash": "12255952474581979791" + }, + { + "file": "packages/utilities/src/localStorage.ts", + "hash": "9752275918665499733" + }, + { + "file": "packages/utilities/src/math.test.ts", + "hash": "15627959349529587251" + }, + { + "file": "packages/utilities/src/math.ts", + "hash": "1028645173261075305" + }, + { + "file": "packages/utilities/src/memoize.test.ts", + "hash": "14950283053726570866" + }, + { + "file": "packages/utilities/src/memoize.ts", + "hash": "9330385561301352185" + }, + { + "file": "packages/utilities/src/merge.test.ts", + "hash": "15739663652754460066" + }, + { + "file": "packages/utilities/src/merge.ts", + "hash": "17766544532271599629" + }, + { + "file": "packages/utilities/src/mobileDetector.test.ts", + "hash": "12078587837878594136" + }, + { + "file": "packages/utilities/src/mobileDetector.ts", + "hash": "10591507586021763956" + }, + { + "file": "packages/utilities/src/modalize.test.ts", + "hash": "4846297644711417399" + }, + { + "file": "packages/utilities/src/modalize.ts", + "hash": "4481198429821105814" + }, + { + "file": "packages/utilities/src/object.test.ts", + "hash": "10254436151796777817" + }, + { + "file": "packages/utilities/src/object.ts", + "hash": "17154324253698227529" + }, + { + "file": "packages/utilities/src/osDetector.test.ts", + "hash": "14894283611897002433" + }, + { + "file": "packages/utilities/src/osDetector.ts", + "hash": "13801506817898268308" + }, + { + "file": "packages/utilities/src/overflow.test.ts", + "hash": "12139207908953484445" + }, + { + "file": "packages/utilities/src/overflow.ts", + "hash": "12647135475165398177" + }, + { + "file": "packages/utilities/src/properties.test.ts", + "hash": "4741910110570935513" + }, + { + "file": "packages/utilities/src/properties.ts", + "hash": "16773543696469058656" + }, + { + "file": "packages/utilities/src/renderFunction/__snapshots__/composeRenderFunction.test.tsx.snap", + "hash": "2752369257854721166" + }, + { + "file": "packages/utilities/src/renderFunction/composeRenderFunction.test.tsx", + "hash": "13687964334743642959" + }, + { + "file": "packages/utilities/src/renderFunction/composeRenderFunction.tsx", + "hash": "12949119472709400410" + }, + { + "file": "packages/utilities/src/resources.ts", + "hash": "13625698663830748145" + }, + { + "file": "packages/utilities/src/rtl.test.ts", + "hash": "13900837640822362624" + }, + { + "file": "packages/utilities/src/rtl.ts", + "hash": "14222644107188927084" + }, + { + "file": "packages/utilities/src/safeRequestAnimationFrame.test.tsx", + "hash": "16982205117397880539" + }, + { + "file": "packages/utilities/src/safeRequestAnimationFrame.ts", + "hash": "975133229678661328" + }, + { + "file": "packages/utilities/src/safeSetTimeout.test.tsx", + "hash": "9649408720700553344" + }, + { + "file": "packages/utilities/src/safeSetTimeout.ts", + "hash": "13218288715921649583" + }, + { + "file": "packages/utilities/src/scroll.ts", + "hash": "5360381395447204868" + }, + { + "file": "packages/utilities/src/selection/Selection.test.ts", + "hash": "16981423786519042627" + }, + { + "file": "packages/utilities/src/selection/Selection.ts", + "hash": "13343736426577884626" + }, + { + "file": "packages/utilities/src/selection/Selection.types.ts", + "hash": "2551952221941279699" + }, + { + "file": "packages/utilities/src/selection/index.ts", + "hash": "14851851460036267236" + }, + { + "file": "packages/utilities/src/sessionStorage.ts", + "hash": "11470067955594116423" + }, + { + "file": "packages/utilities/src/setFocusVisibility.test.tsx", + "hash": "3836380506317020464" + }, + { + "file": "packages/utilities/src/setFocusVisibility.ts", + "hash": "8156237404251675203" + }, + { + "file": "packages/utilities/src/string.ts", + "hash": "11645503253289741054" + }, + { + "file": "packages/utilities/src/styled.test.tsx", + "hash": "4946383566021141652" + }, + { + "file": "packages/utilities/src/styled.tsx", + "hash": "13378054297508466343" + }, + { + "file": "packages/utilities/src/useFocusRects.test.tsx", + "hash": "9129928342627505077" + }, + { + "file": "packages/utilities/src/useFocusRects.ts", + "hash": "17577250466138189088" + }, + { + "file": "packages/utilities/src/useIsomorphicLayoutEffect.ts", + "hash": "14729958331705232742" + }, + { + "file": "packages/utilities/src/version.ts", + "hash": "6263395338863769015" + }, + { + "file": "packages/utilities/src/warn/warn.test.ts", + "hash": "11418325315738532285" + }, + { + "file": "packages/utilities/src/warn/warn.ts", + "hash": "2637561142778231776" + }, + { + "file": "packages/utilities/src/warn/warnConditionallyRequiredProps.ts", + "hash": "16835554844251258233" + }, + { + "file": "packages/utilities/src/warn/warnControlledUsage.test.ts", + "hash": "13092967152654014039" + }, + { + "file": "packages/utilities/src/warn/warnControlledUsage.ts", + "hash": "796636411188940959" + }, + { + "file": "packages/utilities/src/warn/warnDeprecations.ts", + "hash": "12191875958213993028" + }, + { + "file": "packages/utilities/src/warn/warnMutuallyExclusive.ts", + "hash": "6917399654413973457" + }, + { + "file": "packages/utilities/src/warn.ts", + "hash": "16985317042801848559" + }, + { + "file": "packages/utilities/tsconfig.json", + "hash": "12681959843186909680" + } + ], + "@fluentui/digest": [ + { + "file": "packages/fluentui/digest/README.md", + "hash": "4858304439522311096" + }, + { + "file": "packages/fluentui/digest/assets/index.html", + "hash": "3216416950227096753" + }, + { + "file": "packages/fluentui/digest/just.config.ts", + "hash": "8979360801753407872" + }, + { + "file": "packages/fluentui/digest/package.json", + "hash": "8214724770717997582", + "deps": ["npm:querystring"] + }, + { + "file": "packages/fluentui/digest/project.json", + "hash": "3735961437424315139" + }, + { + "file": "packages/fluentui/digest/src/bundle/index.digest.tsx", + "hash": "6951110182645338430" + }, + { + "file": "packages/fluentui/digest/src/bundle/stories.tsx", + "hash": "2490260158626841599" + }, + { + "file": "packages/fluentui/digest/src/config.tsx", + "hash": "6214931607336280193" + }, + { + "file": "packages/fluentui/digest/src/digest.tsx", + "hash": "2244345445035896456" + }, + { + "file": "packages/fluentui/digest/src/webpack.config.ts", + "hash": "15142160838349309385" + }, + { + "file": "packages/fluentui/digest/tsconfig.json", + "hash": "16047973009729968895" + } + ], + "@fluentui/react-list-preview": [ + { + "file": "packages/react-components/react-list-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-list-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-list-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-list-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-list-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-list-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-list-preview/LICENSE", + "hash": "5128350754157408457" + }, + { + "file": "packages/react-components/react-list-preview/README.md", + "hash": "13329727955369014943" + }, + { + "file": "packages/react-components/react-list-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-list-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-list-preview/docs/Spec.md", + "hash": "17280073763812887463" + }, + { + "file": "packages/react-components/react-list-preview/etc/react-list-preview.api.md", + "hash": "17650744448258090218" + }, + { + "file": "packages/react-components/react-list-preview/jest.config.js", + "hash": "16230585065887809640" + }, + { + "file": "packages/react-components/react-list-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-list-preview/package.json", + "hash": "5076334288358975452", + "deps": [ + "@fluentui/react-jsx-runtime", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-shared-contexts", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-list-preview/project.json", + "hash": "18301453267181054182" + }, + { + "file": "packages/react-components/react-list-preview/src/List.ts", + "hash": "10892037581495151528" + }, + { + "file": "packages/react-components/react-list-preview/src/ListItem.ts", + "hash": "14415772845252035707" + }, + { + "file": "packages/react-components/react-list-preview/src/ListItemButton.ts", + "hash": "12363711673052210096" + }, + { + "file": "packages/react-components/react-list-preview/src/components/List/List.test.tsx", + "hash": "12322910775799983605" + }, + { + "file": "packages/react-components/react-list-preview/src/components/List/List.tsx", + "hash": "1906116023345710491" + }, + { + "file": "packages/react-components/react-list-preview/src/components/List/List.types.ts", + "hash": "8206792748462071029" + }, + { + "file": "packages/react-components/react-list-preview/src/components/List/__snapshots__/List.test.tsx.snap", + "hash": "1227827408222929890" + }, + { + "file": "packages/react-components/react-list-preview/src/components/List/index.ts", + "hash": "17107546934093025866" + }, + { + "file": "packages/react-components/react-list-preview/src/components/List/renderList.tsx", + "hash": "15714918800686291357" + }, + { + "file": "packages/react-components/react-list-preview/src/components/List/useList.ts", + "hash": "1027276539563479344" + }, + { + "file": "packages/react-components/react-list-preview/src/components/List/useListStyles.styles.ts", + "hash": "6095077202937619016" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItem/ListItem.test.tsx", + "hash": "3230708006815606248" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItem/ListItem.tsx", + "hash": "3046689597475996224" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItem/ListItem.types.ts", + "hash": "8027419436099248507" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItem/__snapshots__/ListItem.test.tsx.snap", + "hash": "2250098978442735994" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItem/index.ts", + "hash": "13458219659794583076" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItem/renderListItem.tsx", + "hash": "4538665908862285107" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItem/useListItem.ts", + "hash": "8332993251183877292" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItem/useListItemStyles.styles.ts", + "hash": "145972862822319399" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.test.tsx", + "hash": "8574153664309206265" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.tsx", + "hash": "15946025473178805384" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.types.ts", + "hash": "12013190060983824846" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItemButton/__snapshots__/ListItemButton.test.tsx.snap", + "hash": "7851601325088660553" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItemButton/index.ts", + "hash": "10205948326421395785" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItemButton/renderListItemButton.tsx", + "hash": "4278382112469247585" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItemButton/useListItemButton.ts", + "hash": "17042796213188080990" + }, + { + "file": "packages/react-components/react-list-preview/src/components/ListItemButton/useListItemButtonStyles.styles.ts", + "hash": "8509921485527948458" + }, + { + "file": "packages/react-components/react-list-preview/src/index.ts", + "hash": "12167157468152511670" + }, + { + "file": "packages/react-components/react-list-preview/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-list-preview/stories/List/ListBestPractices.md", + "hash": "13132854725403121719" + }, + { + "file": "packages/react-components/react-list-preview/stories/List/ListDefault.stories.tsx", + "hash": "5601696470293348097" + }, + { + "file": "packages/react-components/react-list-preview/stories/List/ListDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-list-preview/stories/List/index.stories.tsx", + "hash": "9555990577237225551" + }, + { + "file": "packages/react-components/react-list-preview/stories/ListItem/ListItemBestPractices.md", + "hash": "13132854725403121719" + }, + { + "file": "packages/react-components/react-list-preview/stories/ListItem/ListItemDefault.stories.tsx", + "hash": "13381635606214282007" + }, + { + "file": "packages/react-components/react-list-preview/stories/ListItem/ListItemDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-list-preview/stories/ListItem/index.stories.tsx", + "hash": "9558837703344875089" + }, + { + "file": "packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonBestPractices.md", + "hash": "13132854725403121719" + }, + { + "file": "packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonDefault.stories.tsx", + "hash": "6954470783452371311" + }, + { + "file": "packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-list-preview/stories/ListItemButton/index.stories.tsx", + "hash": "5432902562725269627" + }, + { + "file": "packages/react-components/react-list-preview/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-list-preview/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-list-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/date-time-utilities": [ + { + "file": "packages/date-time-utilities/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/date-time-utilities/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/date-time-utilities/CHANGELOG.json", + "hash": "2164381804076873918" + }, + { + "file": "packages/date-time-utilities/CHANGELOG.md", + "hash": "3188049663660729300" + }, + { + "file": "packages/date-time-utilities/LICENSE", + "hash": "1406600530965153382" + }, + { + "file": "packages/date-time-utilities/README.md", + "hash": "15663058025015777167" + }, + { + "file": "packages/date-time-utilities/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/date-time-utilities/etc/date-time-utilities.api.md", + "hash": "4147546351800268056" + }, + { + "file": "packages/date-time-utilities/jest.config.js", + "hash": "14422260967582952706" + }, + { + "file": "packages/date-time-utilities/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/date-time-utilities/package.json", + "hash": "11495122545919054215", + "deps": [ + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/date-time-utilities/project.json", + "hash": "14457318988314402231" + }, + { + "file": "packages/date-time-utilities/src/dateFormatting/dateFormatting.defaults.ts", + "hash": "3121003231405885904" + }, + { + "file": "packages/date-time-utilities/src/dateFormatting/dateFormatting.test.ts", + "hash": "10780573025705000265" + }, + { + "file": "packages/date-time-utilities/src/dateFormatting/dateFormatting.types.ts", + "hash": "17447457680448716723" + }, + { + "file": "packages/date-time-utilities/src/dateFormatting/index.ts", + "hash": "10491802775163290807" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/__snapshots__/getDayGrid.test.ts.snap", + "hash": "2311635867604483689" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/dateGrid.types.ts", + "hash": "10377546010866108302" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/findAvailableDate.test.ts", + "hash": "16014593248943699532" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/findAvailableDate.ts", + "hash": "17812579345659974705" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/getBoundedDateRange.test.ts", + "hash": "16271701688173551694" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/getBoundedDateRange.ts", + "hash": "5151142947748778290" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/getDateRangeTypeToUse.test.ts", + "hash": "13578684931193299139" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/getDateRangeTypeToUse.ts", + "hash": "16696959932960635992" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/getDayGrid.test.ts", + "hash": "15740649517213788929" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/getDayGrid.ts", + "hash": "9476685343421711322" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/index.ts", + "hash": "12957004530838335926" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/isAfterMaxDate.test.ts", + "hash": "10840956339319765451" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/isAfterMaxDate.ts", + "hash": "4879284728703250347" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/isBeforeMinDate.test.ts", + "hash": "13690478736915468966" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/isBeforeMinDate.ts", + "hash": "9762482266014451107" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/isContiguous.test.ts", + "hash": "2343134183304754683" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/isContiguous.ts", + "hash": "9358593535087643745" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/isRestrictedDate.test.ts", + "hash": "609331876505347603" + }, + { + "file": "packages/date-time-utilities/src/dateGrid/isRestrictedDate.ts", + "hash": "8608321153134897550" + }, + { + "file": "packages/date-time-utilities/src/dateMath/dateMath.test.ts", + "hash": "6289703901015116667" + }, + { + "file": "packages/date-time-utilities/src/dateMath/dateMath.ts", + "hash": "5518748274490320630" + }, + { + "file": "packages/date-time-utilities/src/dateValues/dateValues.ts", + "hash": "18269157894089480859" + }, + { + "file": "packages/date-time-utilities/src/dateValues/timeConstants.ts", + "hash": "13010220875930774354" + }, + { + "file": "packages/date-time-utilities/src/index.ts", + "hash": "5651837990155102462" + }, + { + "file": "packages/date-time-utilities/src/timeFormatting/index.ts", + "hash": "881792922337031636" + }, + { + "file": "packages/date-time-utilities/src/timeFormatting/timeFormatting.test.ts", + "hash": "2360306042898603230" + }, + { + "file": "packages/date-time-utilities/src/timeMath/timeMath.test.ts", + "hash": "491224792424595929" + }, + { + "file": "packages/date-time-utilities/src/timeMath/timeMath.ts", + "hash": "16292546276501068965" + }, + { + "file": "packages/date-time-utilities/src/version.ts", + "hash": "8665770230245968868" + }, + { + "file": "packages/date-time-utilities/tsconfig.json", + "hash": "1822303577405251995" + } + ], + "@fluentui/react-virtualizer": [ + { + "file": "packages/react-components/react-virtualizer/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-virtualizer/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-virtualizer/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-virtualizer/.storybook/preview-body.html", + "hash": "16210685040217365676" + }, + { + "file": "packages/react-components/react-virtualizer/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-virtualizer/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-virtualizer/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-virtualizer/CHANGELOG.json", + "hash": "2673709193866183261" + }, + { + "file": "packages/react-components/react-virtualizer/CHANGELOG.md", + "hash": "1256483738986476246" + }, + { + "file": "packages/react-components/react-virtualizer/LICENSE", + "hash": "3825891881571607092" + }, + { + "file": "packages/react-components/react-virtualizer/README.md", + "hash": "3856986220850823081" + }, + { + "file": "packages/react-components/react-virtualizer/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-virtualizer/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-virtualizer/etc/react-virtualizer.api.md", + "hash": "5965603531558644273" + }, + { + "file": "packages/react-components/react-virtualizer/jest.config.js", + "hash": "13492638879859403130" + }, + { + "file": "packages/react-components/react-virtualizer/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-virtualizer/package.json", + "hash": "2669636919577574734", + "deps": [ + "@fluentui/react-jsx-runtime", + "@fluentui/react-utilities", + "@fluentui/react-shared-contexts", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-virtualizer/project.json", + "hash": "5902224839509606522" + }, + { + "file": "packages/react-components/react-virtualizer/src/Hooks.ts", + "hash": "13096719515407822478" + }, + { + "file": "packages/react-components/react-virtualizer/src/Utilities.ts", + "hash": "7452799764049456122" + }, + { + "file": "packages/react-components/react-virtualizer/src/Virtualizer.ts", + "hash": "7518409004355669143" + }, + { + "file": "packages/react-components/react-virtualizer/src/VirtualizerScrollView.ts", + "hash": "11480930697508633208" + }, + { + "file": "packages/react-components/react-virtualizer/src/VirtualizerScrollViewDynamic.ts", + "hash": "4620222288124351857" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/Virtualizer.ts", + "hash": "7927844774255893543" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/Virtualizer.types.ts", + "hash": "14998671851453166952" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/index.ts", + "hash": "223893684398285344" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/renderVirtualizer.tsx", + "hash": "5049901196873287610" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizer.ts", + "hash": "11296231769951241238" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizerStyles.styles.ts", + "hash": "16200927493257981129" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/VirtualizerScrollView.ts", + "hash": "14670667260237630417" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/VirtualizerScrollView.types.ts", + "hash": "12726462037379246806" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/index.ts", + "hash": "5341561606535506170" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/renderVirtualizerScrollView.tsx", + "hash": "9987866317880670081" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/useVirtualizerScrollView.ts", + "hash": "6242430380123640601" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/useVirtualizerScrollViewStyles.styles.ts", + "hash": "14637414451604734747" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.ts", + "hash": "3091671186485391286" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.types.ts", + "hash": "1268211048994777683" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/index.ts", + "hash": "4575113466604915676" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/renderVirtualizerScrollViewDynamic.tsx", + "hash": "517632922593748593" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamic.tsx", + "hash": "11382510692058695315" + }, + { + "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamicStyles.styles.ts", + "hash": "15915807425457867423" + }, + { + "file": "packages/react-components/react-virtualizer/src/hooks/hooks.types.ts", + "hash": "11437064553272591592" + }, + { + "file": "packages/react-components/react-virtualizer/src/hooks/index.ts", + "hash": "11212568211093860115" + }, + { + "file": "packages/react-components/react-virtualizer/src/hooks/useDynamicVirtualizerMeasure.ts", + "hash": "1401715616925791324" + }, + { + "file": "packages/react-components/react-virtualizer/src/hooks/useIntersectionObserver.ts", + "hash": "9327842803804721" + }, + { + "file": "packages/react-components/react-virtualizer/src/hooks/useMeasureList.ts", + "hash": "7611797157667966265" + }, + { + "file": "packages/react-components/react-virtualizer/src/hooks/useMutationObserver.ts", + "hash": "890252352384347130" + }, + { + "file": "packages/react-components/react-virtualizer/src/hooks/useResizeObserverRef.ts", + "hash": "1724813061379453082" + }, + { + "file": "packages/react-components/react-virtualizer/src/hooks/useVirtualizerMeasure.ts", + "hash": "17204283105924926987" + }, + { + "file": "packages/react-components/react-virtualizer/src/index.ts", + "hash": "12055461814549449062" + }, + { + "file": "packages/react-components/react-virtualizer/src/testing/useVirtualizer.test.ts", + "hash": "17923925798907638535" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrolling.ts", + "hash": "10130952681932487924" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrolling.types.ts", + "hash": "15254358818932563361" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrollingDynamic.ts", + "hash": "12482063325179436183" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/index.ts", + "hash": "11870388641348364336" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/VirtualizerContext.ts", + "hash": "15927935393898582112" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/index.ts", + "hash": "7211653521627416542" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/types.ts", + "hash": "14680922875446214691" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/createResizeObserverFromDocument.ts", + "hash": "15813223612896660990" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/debounce.ts", + "hash": "16454772419717378051" + }, + { + "file": "packages/react-components/react-virtualizer/src/utilities/index.ts", + "hash": "5587345159392749401" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/Default.stories.tsx", + "hash": "136999915172207859" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/DefaultUnbounded.stories.tsx", + "hash": "13655720455891631220" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/Dynamic.stories.tsx", + "hash": "4055773401446967685" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/Horizontal.stories.tsx", + "hash": "3108876537717609011" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/MultiUnbounded.stories.tsx", + "hash": "8935973420982175120" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/RTL.stories.tsx", + "hash": "8439153336966493360" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/Reversed.stories.tsx", + "hash": "15184551952582601701" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/ReversedHorizontal.stories.tsx", + "hash": "17483635137462024459" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/VirtualizerDescription.md", + "hash": "14678160273834792229" + }, + { + "file": "packages/react-components/react-virtualizer/stories/Virtualizer/index.stories.ts", + "hash": "7671933387398296295" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/Default.stories.tsx", + "hash": "11832986632353617854" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/ScrollTo.stories.tsx", + "hash": "7929370554351259593" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/SnapToAlignment.stories.tsx", + "hash": "8680098754472857303" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/VirtualizerScrollViewDescription.md", + "hash": "2316021851908929761" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/index.stories.ts", + "hash": "8372571143132881416" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/AutoMeasure.stories.tsx", + "hash": "5028243045914419788" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/Default.stories.tsx", + "hash": "11215602148714725309" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/ScrollLoading.stories.tsx", + "hash": "1876399932572606927" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/ScrollTo.stories.tsx", + "hash": "10867398943529884768" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamicDescription.md", + "hash": "11114530826542561672" + }, + { + "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/index.stories.ts", + "hash": "17243437446105887357" + }, + { + "file": "packages/react-components/react-virtualizer/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-virtualizer/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-virtualizer/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-text": [ + { + "file": "packages/react-components/react-text/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-text/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-text/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-text/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-text/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-text/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-text/CHANGELOG.json", + "hash": "14746472734011799848" + }, + { + "file": "packages/react-components/react-text/CHANGELOG.md", + "hash": "5530030983973534839" + }, + { + "file": "packages/react-components/react-text/LICENSE", + "hash": "4936020564043377923" + }, + { + "file": "packages/react-components/react-text/README.md", + "hash": "14594000409558953178" + }, + { + "file": "packages/react-components/react-text/bundle-size/Text.Default.fixture.js", + "hash": "9372275947322015042" + }, + { + "file": "packages/react-components/react-text/bundle-size/Text.Wrappers.fixture.js", + "hash": "4343285488848262892" + }, + { + "file": "packages/react-components/react-text/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-text/config/tests.js", + "hash": "14010006175392234982" + }, + { + "file": "packages/react-components/react-text/docs/MIGRATION.md", + "hash": "4926594767893644190" + }, + { + "file": "packages/react-components/react-text/docs/Spec.md", + "hash": "11156190551232632838" + }, + { + "file": "packages/react-components/react-text/docs/assets/typography-examples.gif", + "hash": "5944766188234749424" + }, + { + "file": "packages/react-components/react-text/etc/react-text.api.md", + "hash": "15630657575673412419" + }, + { + "file": "packages/react-components/react-text/jest.config.js", + "hash": "13250048585224657153" + }, + { + "file": "packages/react-components/react-text/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-text/package.json", + "hash": "9181332167887385646", + "deps": [ + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-text/project.json", + "hash": "497480200449367797" + }, + { + "file": "packages/react-components/react-text/src/Body1.ts", + "hash": "9667282400563853276" + }, + { + "file": "packages/react-components/react-text/src/Body1Strong.ts", + "hash": "13823224720861472657" + }, + { + "file": "packages/react-components/react-text/src/Body1Stronger.ts", + "hash": "3286566584428617482" + }, + { + "file": "packages/react-components/react-text/src/Body2.ts", + "hash": "8183283637965760260" + }, + { + "file": "packages/react-components/react-text/src/Caption1.ts", + "hash": "4788522305935816127" + }, + { + "file": "packages/react-components/react-text/src/Caption1Strong.ts", + "hash": "2149384589348724474" + }, + { + "file": "packages/react-components/react-text/src/Caption1Stronger.ts", + "hash": "10916957720193657172" + }, + { + "file": "packages/react-components/react-text/src/Caption2.ts", + "hash": "5102526396849719794" + }, + { + "file": "packages/react-components/react-text/src/Caption2Strong.ts", + "hash": "7572462389090243622" + }, + { + "file": "packages/react-components/react-text/src/Display.ts", + "hash": "4685022632235662968" + }, + { + "file": "packages/react-components/react-text/src/LargeTitle.ts", + "hash": "16487674571008795637" + }, + { + "file": "packages/react-components/react-text/src/Subtitle1.ts", + "hash": "16033303200156257737" + }, + { + "file": "packages/react-components/react-text/src/Subtitle2.ts", + "hash": "3476755232628464350" + }, + { + "file": "packages/react-components/react-text/src/Subtitle2Stronger.ts", + "hash": "16315524108236767900" + }, + { + "file": "packages/react-components/react-text/src/Text.ts", + "hash": "18074790047408023562" + }, + { + "file": "packages/react-components/react-text/src/Title1.ts", + "hash": "17555355943170034657" + }, + { + "file": "packages/react-components/react-text/src/Title2.ts", + "hash": "7269104715253581064" + }, + { + "file": "packages/react-components/react-text/src/Title3.ts", + "hash": "13543050376223625530" + }, + { + "file": "packages/react-components/react-text/src/components/Text/Text.test.tsx", + "hash": "10358087802752874407" + }, + { + "file": "packages/react-components/react-text/src/components/Text/Text.tsx", + "hash": "15225570993742240023" + }, + { + "file": "packages/react-components/react-text/src/components/Text/Text.types.ts", + "hash": "14628039381215441828" + }, + { + "file": "packages/react-components/react-text/src/components/Text/index.ts", + "hash": "3679423971540201261" + }, + { + "file": "packages/react-components/react-text/src/components/Text/renderText.tsx", + "hash": "12277062145316794641" + }, + { + "file": "packages/react-components/react-text/src/components/Text/useText.ts", + "hash": "10631330431687230925" + }, + { + "file": "packages/react-components/react-text/src/components/Text/useTextStyles.styles.ts", + "hash": "8180430562340821244" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1/Body1.test.tsx", + "hash": "9894037939799415333" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1/Body1.tsx", + "hash": "5366069605146131494" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1/index.ts", + "hash": "14114934386458292686" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1/useBody1Styles.styles.ts", + "hash": "12844845312353658561" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1Strong/Body1Strong.test.tsx", + "hash": "10855272301661388234" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1Strong/Body1Strong.tsx", + "hash": "11524714835326398685" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1Strong/index.ts", + "hash": "1459948605428759386" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1Strong/useBody1StrongStyles.styles.ts", + "hash": "6414602464149070199" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1Stronger/Body1Stronger.test.tsx", + "hash": "1484282817804899892" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1Stronger/Body1Stronger.tsx", + "hash": "3334814281589344133" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1Stronger/index.ts", + "hash": "10194746070259772281" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body1Stronger/useBody1StrongerStyles.styles.ts", + "hash": "8876787566301622094" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body2/Body2.test.tsx", + "hash": "16080733609312017065" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body2/Body2.tsx", + "hash": "10543167376626268951" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body2/index.ts", + "hash": "15734780964608692484" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Body2/useBody2Styles.styles.ts", + "hash": "2179965817036105151" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1/Caption1.test.tsx", + "hash": "18364219394070326703" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1/Caption1.tsx", + "hash": "5365603815581407077" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1/index.ts", + "hash": "13292481802490231528" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1/useCaption1Styles.styles.ts", + "hash": "17678336276744860638" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1Strong/Caption1Strong.test.tsx", + "hash": "10855745484138944673" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1Strong/Caption1Strong.tsx", + "hash": "13139698996938859077" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1Strong/index.ts", + "hash": "15003375483982098027" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1Strong/useCaption1StrongStyles.styles.ts", + "hash": "14992344039816775280" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1Stronger/Caption1Stronger.test.tsx", + "hash": "145900403893458087" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1Stronger/Caption1Stronger.tsx", + "hash": "8060776291855045773" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1Stronger/index.ts", + "hash": "15869920445770356096" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption1Stronger/useCaption1Stronger.styles.ts", + "hash": "6637626472059456130" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption2/Caption2.test.tsx", + "hash": "18403821228559899680" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption2/Caption2.tsx", + "hash": "4576498597993247268" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption2/index.ts", + "hash": "7336284101298750631" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption2/useCaption2Styles.styles.ts", + "hash": "3351567266887346725" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption2Strong/Caption2Strong.test.tsx", + "hash": "2398079818540772501" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption2Strong/Caption2Strong.tsx", + "hash": "4951760950137277604" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption2Strong/index.ts", + "hash": "17023856116505366051" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Caption2Strong/useCaption2StrongStyles.styles.ts", + "hash": "16711009952230674581" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Display/Display.test.tsx", + "hash": "8902387253771320134" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Display/Display.tsx", + "hash": "15163273678942990099" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Display/index.ts", + "hash": "1655129168591164529" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Display/useDisplayStyles.styles.ts", + "hash": "2155688834321594944" + }, + { + "file": "packages/react-components/react-text/src/components/presets/LargeTitle/LargeTitle.test.tsx", + "hash": "10689996326037032312" + }, + { + "file": "packages/react-components/react-text/src/components/presets/LargeTitle/LargeTitle.tsx", + "hash": "10845770827182851022" + }, + { + "file": "packages/react-components/react-text/src/components/presets/LargeTitle/index.ts", + "hash": "10381804999879881593" + }, + { + "file": "packages/react-components/react-text/src/components/presets/LargeTitle/useLargeTitleStyles.styles.ts", + "hash": "9204784057218126288" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle1/Subtitle1.test.tsx", + "hash": "8400411135710061570" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle1/Subtitle1.tsx", + "hash": "6818323249646657027" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle1/index.ts", + "hash": "17144394370666913272" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle1/useSubtitle1Styles.styles.ts", + "hash": "13973796368695964185" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle2/Subtitle2.test.tsx", + "hash": "16800739000274466640" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle2/Subtitle2.tsx", + "hash": "15995954742755224260" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle2/index.ts", + "hash": "2395262566287968836" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle2/useSubtitle2Styles.styles.ts", + "hash": "3548578033972741049" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle2Stronger/Subtitle2Stronger.test.tsx", + "hash": "9486754707899734006" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle2Stronger/Subtitle2Stronger.tsx", + "hash": "11834028200088074682" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle2Stronger/index.ts", + "hash": "15834411329339240732" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Subtitle2Stronger/useSubtitle2Stronger.styles.ts", + "hash": "14099105492801059828" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title1/Title1.test.tsx", + "hash": "13980206727970199045" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title1/Title1.tsx", + "hash": "15892461228380942200" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title1/index.ts", + "hash": "8932830417608409787" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title1/useTitle1Styles.styles.ts", + "hash": "10323980728201993935" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title2/Title2.test.tsx", + "hash": "9313693279109464292" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title2/Title2.tsx", + "hash": "16219814511697192588" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title2/index.ts", + "hash": "13092072330785019922" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title2/useTitle2Styles.styles.ts", + "hash": "15767653350255270679" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title3/Title3.test.tsx", + "hash": "16041612927712782515" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title3/Title3.tsx", + "hash": "1482714465420909906" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title3/index.ts", + "hash": "5421005612796075725" + }, + { + "file": "packages/react-components/react-text/src/components/presets/Title3/useTitle3Styles.styles.ts", + "hash": "13551327395414956915" + }, + { + "file": "packages/react-components/react-text/src/components/presets/createPreset.ts", + "hash": "17313362690045924117" + }, + { + "file": "packages/react-components/react-text/src/index.ts", + "hash": "4004944184614105514" + }, + { + "file": "packages/react-components/react-text/src/testing/isConformant.ts", + "hash": "10210662947692554095" + }, + { + "file": "packages/react-components/react-text/stories/Text/Default.stories.tsx", + "hash": "5287666121360600616" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextAlignment.stories.tsx", + "hash": "6242707523860852359" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextBestPractices.md", + "hash": "7035477963273089456" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextDescription.md", + "hash": "16470577204288111202" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextFont.stories.tsx", + "hash": "11116949968316746227" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextItalic.stories.tsx", + "hash": "10422272221648492172" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextPresets.md", + "hash": "10418459320242657564" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextPresets.stories.tsx", + "hash": "8737629838560008759" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextSize.stories.tsx", + "hash": "14604640943488556546" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextStrikeThrough.stories.tsx", + "hash": "5360501811450986755" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextTruncate.stories.tsx", + "hash": "11750770438919753549" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextUnderline.stories.tsx", + "hash": "16315826356528260583" + }, + { + "file": "packages/react-components/react-text/stories/Text/TextWeight.stories.tsx", + "hash": "6081025630306336337" + }, + { + "file": "packages/react-components/react-text/stories/Text/index.stories.tsx", + "hash": "2698621728331086757" + }, + { + "file": "packages/react-components/react-text/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-text/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-text/tsconfig.spec.json", + "hash": "6578707152334499940" + } + ], + "@fluentui/scripts-jest": [ + { + "file": "scripts/jest/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/jest/jest.config.js", + "hash": "3813261862233335890" + }, + { + "file": "scripts/jest/package.json", + "hash": "14164984823080938344", + "deps": ["@fluentui/scripts-monorepo", "@fluentui/scripts-utils"] + }, + { + "file": "scripts/jest/project.json", + "hash": "12078030697868316929" + }, + { + "file": "scripts/jest/src/index.js", + "hash": "16087382004284617467" + }, + { + "file": "scripts/jest/src/jest.preset.v0.js", + "hash": "5867124286943409158" + }, + { + "file": "scripts/jest/src/jest.preset.v0.spec.ts", + "hash": "14542700976601267891" + }, + { + "file": "scripts/jest/src/jest.preset.v8.js", + "hash": "7214783837184776239" + }, + { + "file": "scripts/jest/src/jest.preset.v8.spec.ts", + "hash": "12951278503786579953" + }, + { + "file": "scripts/jest/src/v0/setupTests.js", + "hash": "12654493952027143402" + }, + { + "file": "scripts/jest/src/v8/jest-mock.js", + "hash": "10441877977763399001" + }, + { + "file": "scripts/jest/src/v8/jest-reporter.js", + "hash": "17340096134020818293" + }, + { + "file": "scripts/jest/src/v8/jest-setup.js", + "hash": "7778886422321321206" + }, + { + "file": "scripts/jest/src/v8/jest-style-mock.js", + "hash": "3486721905956313351" + }, + { + "file": "scripts/jest/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/jest/tsconfig.lib.json", + "hash": "3593133700658772030" + }, + { + "file": "scripts/jest/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/ts-minbar-test-react": [ + { + "file": "apps/ts-minbar-test-react/CHANGELOG.json", + "hash": "17761077664360148852" + }, + { + "file": "apps/ts-minbar-test-react/CHANGELOG.md", + "hash": "14470523675549078295" + }, + { + "file": "apps/ts-minbar-test-react/README.md", + "hash": "4419651569658703681" + }, + { + "file": "apps/ts-minbar-test-react/files/src/index.tsx", + "hash": "18103345228235893227" + }, + { + "file": "apps/ts-minbar-test-react/files/tsconfig.json", + "hash": "5092064063558585511" + }, + { + "file": "apps/ts-minbar-test-react/just.config.ts", + "hash": "7156839958691239049" + }, + { + "file": "apps/ts-minbar-test-react/package.json", + "hash": "17975545398563137137", + "deps": ["@fluentui/react", "@fluentui/scripts-tasks", "@fluentui/scripts-projects-test"] + }, + { + "file": "apps/ts-minbar-test-react/project.json", + "hash": "1282750908468855311" + }, + { + "file": "apps/ts-minbar-test-react/src/index.ts", + "hash": "6919848813558476158" + }, + { + "file": "apps/ts-minbar-test-react/tsconfig.json", + "hash": "10809149894665832803" + } + ], + "@fluentui/react": [ + { + "file": "packages/react/.eslintrc.js", + "hash": "18322613162592272510" + }, + { + "file": "packages/react/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/react/.vscode/settings.json", + "hash": "12021589480221246916" + }, + { + "file": "packages/react/CHANGELOG.json", + "hash": "6951825329134936821" + }, + { + "file": "packages/react/CHANGELOG.md", + "hash": "12099638385382086950" + }, + { + "file": "packages/react/LICENSE", + "hash": "2813735303365335595" + }, + { + "file": "packages/react/README.md", + "hash": "3435017277481595030" + }, + { + "file": "packages/react/__mocks__/@fluentui/utilities.ts", + "hash": "12050978786399858000" + }, + { + "file": "packages/react/bundle-size-auditor.config.js", + "hash": "1614748617965411486" + }, + { + "file": "packages/react/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/react/config/pre-copy.json", + "hash": "14026383330722125688" + }, + { + "file": "packages/react/config/tests.js", + "hash": "13158865319411973838" + }, + { + "file": "packages/react/empty-entrypoint.js", + "hash": "1610763553242483540" + }, + { + "file": "packages/react/etc/react.api.md", + "hash": "10965535314750180986" + }, + { + "file": "packages/react/jest.config.js", + "hash": "8193037916930093299" + }, + { + "file": "packages/react/just.config.ts", + "hash": "3344775425486365003" + }, + { + "file": "packages/react/package.json", + "hash": "12246868904466760490", + "deps": [ + "@fluentui/date-time-utilities", + "@fluentui/foundation-legacy", + "@fluentui/font-icons-mdl2", + "@fluentui/merge-styles", + "@fluentui/react-focus", + "@fluentui/react-hooks", + "@fluentui/react-portal-compat-context", + "@fluentui/react-window-provider", + "@fluentui/set-version", + "@fluentui/style-utilities", + "@fluentui/theme", + "@fluentui/utilities", + "npm:@microsoft/load-themed-styles", + "npm:tslib", + "@fluentui/common-styles", + "@fluentui/eslint-plugin", + "@fluentui/example-data", + "@fluentui/jest-serializer-merge-styles", + "@fluentui/react-conformance", + "@fluentui/test-utilities", + "@fluentui/webpack-utilities", + "npm:office-ui-fabric-core", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react/project.json", + "hash": "17701349262890228270" + }, + { + "file": "packages/react/src/ActivityItem.ts", + "hash": "15691553335115204721" + }, + { + "file": "packages/react/src/Announced.ts", + "hash": "7828906494215171216" + }, + { + "file": "packages/react/src/Autofill.ts", + "hash": "16457316051496421810" + }, + { + "file": "packages/react/src/Breadcrumb.ts", + "hash": "4692325558598841885" + }, + { + "file": "packages/react/src/Button.ts", + "hash": "8626324674700708044" + }, + { + "file": "packages/react/src/ButtonGrid.ts", + "hash": "881856585163408327" + }, + { + "file": "packages/react/src/Calendar.ts", + "hash": "569100325234550221" + }, + { + "file": "packages/react/src/Callout.ts", + "hash": "11821162718730855739" + }, + { + "file": "packages/react/src/Check.ts", + "hash": "12837435387320211305" + }, + { + "file": "packages/react/src/Checkbox.ts", + "hash": "15174834295790980707" + }, + { + "file": "packages/react/src/ChoiceGroup.ts", + "hash": "8551466585424623975" + }, + { + "file": "packages/react/src/ChoiceGroupOption.ts", + "hash": "12282666165702349379" + }, + { + "file": "packages/react/src/Coachmark.ts", + "hash": "10298383592307786534" + }, + { + "file": "packages/react/src/Color.ts", + "hash": "1851453512554942402" + }, + { + "file": "packages/react/src/ColorPicker.ts", + "hash": "11367027736402733854" + }, + { + "file": "packages/react/src/ComboBox.ts", + "hash": "6941430331366320497" + }, + { + "file": "packages/react/src/CommandBar.ts", + "hash": "13781943264137645943" + }, + { + "file": "packages/react/src/ContextualMenu.ts", + "hash": "11044360894834949697" + }, + { + "file": "packages/react/src/DatePicker.ts", + "hash": "14140387775859161252" + }, + { + "file": "packages/react/src/DateTimeUtilities.ts", + "hash": "16407665973972677758" + }, + { + "file": "packages/react/src/DetailsList.ts", + "hash": "11060283209431896804" + }, + { + "file": "packages/react/src/Dialog.ts", + "hash": "4454994753170598490" + }, + { + "file": "packages/react/src/Divider.ts", + "hash": "11741977117356417348" + }, + { + "file": "packages/react/src/DocumentCard.ts", + "hash": "15635077762585676697" + }, + { + "file": "packages/react/src/DragDrop.ts", + "hash": "15334126186863286998" + }, + { + "file": "packages/react/src/DraggableZone.ts", + "hash": "8347592647128284806" + }, + { + "file": "packages/react/src/Dropdown.ts", + "hash": "18194367805350925119" + }, + { + "file": "packages/react/src/ExtendedPicker.ts", + "hash": "1781688548792408840" + }, + { + "file": "packages/react/src/Fabric.ts", + "hash": "9388144000989131059" + }, + { + "file": "packages/react/src/Facepile.ts", + "hash": "13878559315498248276" + }, + { + "file": "packages/react/src/FloatingPicker.ts", + "hash": "8168562264864126910" + }, + { + "file": "packages/react/src/FocusTrapZone.ts", + "hash": "13340226361778469587" + }, + { + "file": "packages/react/src/FocusZone.ts", + "hash": "17163596780283843540" + }, + { + "file": "packages/react/src/Grid.ts", + "hash": "881856585163408327" + }, + { + "file": "packages/react/src/GroupedList.ts", + "hash": "17984522349933548027" + }, + { + "file": "packages/react/src/GroupedListV2.ts", + "hash": "5354730782250258919" + }, + { + "file": "packages/react/src/HoverCard.ts", + "hash": "10703228722220731271" + }, + { + "file": "packages/react/src/Icon.ts", + "hash": "313947480257717044" + }, + { + "file": "packages/react/src/Icons.ts", + "hash": "11257336694483866853" + }, + { + "file": "packages/react/src/Image.ts", + "hash": "16464656776672641880" + }, + { + "file": "packages/react/src/Keytip.ts", + "hash": "14735860805141051080" + }, + { + "file": "packages/react/src/KeytipData.ts", + "hash": "13233209451898491569" + }, + { + "file": "packages/react/src/KeytipLayer.ts", + "hash": "5673003055379526700" + }, + { + "file": "packages/react/src/Keytips.ts", + "hash": "10469364805952831599" + }, + { + "file": "packages/react/src/Label.ts", + "hash": "4712475947755339018" + }, + { + "file": "packages/react/src/Layer.ts", + "hash": "1733045992777260244" + }, + { + "file": "packages/react/src/Link.ts", + "hash": "10181647052088224625" + }, + { + "file": "packages/react/src/List.ts", + "hash": "10892037581495151528" + }, + { + "file": "packages/react/src/MarqueeSelection.ts", + "hash": "10113684216889674368" + }, + { + "file": "packages/react/src/MessageBar.ts", + "hash": "11069752646730668502" + }, + { + "file": "packages/react/src/Modal.ts", + "hash": "4724632803121488282" + }, + { + "file": "packages/react/src/Nav.ts", + "hash": "16517290324481129723" + }, + { + "file": "packages/react/src/OverflowSet.ts", + "hash": "16078762239706375810" + }, + { + "file": "packages/react/src/Overlay.ts", + "hash": "3285303095679141452" + }, + { + "file": "packages/react/src/Panel.ts", + "hash": "16595715402019817627" + }, + { + "file": "packages/react/src/Persona.ts", + "hash": "11634239554265983330" + }, + { + "file": "packages/react/src/PersonaCoin.ts", + "hash": "11634239554265983330" + }, + { + "file": "packages/react/src/PersonaPresence.ts", + "hash": "16657819352363000963" + }, + { + "file": "packages/react/src/Pickers.ts", + "hash": "7315127516418647489" + }, + { + "file": "packages/react/src/Pivot.ts", + "hash": "13900400919767902771" + }, + { + "file": "packages/react/src/Popup.ts", + "hash": "11254074860887789694" + }, + { + "file": "packages/react/src/Positioning.ts", + "hash": "12929630452344570883" + }, + { + "file": "packages/react/src/PositioningContainer.ts", + "hash": "14723175961025769754" + }, + { + "file": "packages/react/src/ProgressIndicator.ts", + "hash": "6533264803521264651" + }, + { + "file": "packages/react/src/Rating.ts", + "hash": "15823645109042535388" + }, + { + "file": "packages/react/src/ResizeGroup.ts", + "hash": "17736351568471188817" + }, + { + "file": "packages/react/src/ResponsiveMode.ts", + "hash": "4238096090649122928" + }, + { + "file": "packages/react/src/ScrollablePane.ts", + "hash": "11525201575146771343" + }, + { + "file": "packages/react/src/SearchBox.ts", + "hash": "15808954179607126400" + }, + { + "file": "packages/react/src/SelectableOption.ts", + "hash": "12748464959660480730" + }, + { + "file": "packages/react/src/SelectedItemsList.ts", + "hash": "8395059039592633644" + }, + { + "file": "packages/react/src/Selection.ts", + "hash": "10143265323494697518" + }, + { + "file": "packages/react/src/Separator.ts", + "hash": "1811822594030495246" + }, + { + "file": "packages/react/src/Shimmer.ts", + "hash": "3579635837268703050" + }, + { + "file": "packages/react/src/ShimmeredDetailsList.ts", + "hash": "3558579282568365265" + }, + { + "file": "packages/react/src/Slider.ts", + "hash": "8062765663185726667" + }, + { + "file": "packages/react/src/SpinButton.ts", + "hash": "10602772673075263099" + }, + { + "file": "packages/react/src/Spinner.ts", + "hash": "17775753931591747303" + }, + { + "file": "packages/react/src/Stack.ts", + "hash": "14506809887411988561" + }, + { + "file": "packages/react/src/Sticky.ts", + "hash": "4023672496774955026" + }, + { + "file": "packages/react/src/Styling.ts", + "hash": "18075108818090873357" + }, + { + "file": "packages/react/src/SwatchColorPicker.ts", + "hash": "6007149929098899385" + }, + { + "file": "packages/react/src/TeachingBubble.ts", + "hash": "14630397906653552215" + }, + { + "file": "packages/react/src/Text.ts", + "hash": "18074790047408023562" + }, + { + "file": "packages/react/src/TextField.ts", + "hash": "8776486715515654409" + }, + { + "file": "packages/react/src/Theme.ts", + "hash": "4060037938213976140" + }, + { + "file": "packages/react/src/ThemeGenerator.ts", + "hash": "10341606355790351710" + }, + { + "file": "packages/react/src/TimePicker.ts", + "hash": "8919003633615161634" + }, + { + "file": "packages/react/src/Toggle.ts", + "hash": "17043961152625470253" + }, + { + "file": "packages/react/src/Tooltip.ts", + "hash": "17674670289509594830" + }, + { + "file": "packages/react/src/Utilities.ts", + "hash": "17137381318660875692" + }, + { + "file": "packages/react/src/Viewport.ts", + "hash": "9695251108878314796" + }, + { + "file": "packages/react/src/WeeklyDayPicker.ts", + "hash": "13543915856335724087" + }, + { + "file": "packages/react/src/WindowProvider.ts", + "hash": "10613406804967383798" + }, + { + "file": "packages/react/src/common/DirectionalHint.ts", + "hash": "4075025867885052120" + }, + { + "file": "packages/react/src/common/DocPage.types.ts", + "hash": "3317054908413247007" + }, + { + "file": "packages/react/src/common/IAccessiblePopupProps.ts", + "hash": "15218209719259118451" + }, + { + "file": "packages/react/src/common/TestImages.ts", + "hash": "10252575403022796568" + }, + { + "file": "packages/react/src/common/isConformant.ts", + "hash": "14501087979372828339" + }, + { + "file": "packages/react/src/common/shallowUntilTarget.ts", + "hash": "9363535113840956016" + }, + { + "file": "packages/react/src/common/testUtilities.ts", + "hash": "15153870803575118415" + }, + { + "file": "packages/react/src/components/ActivityItem/ActivityItem.classNames.ts", + "hash": "10959441434876498415" + }, + { + "file": "packages/react/src/components/ActivityItem/ActivityItem.styles.ts", + "hash": "17922129355434787187" + }, + { + "file": "packages/react/src/components/ActivityItem/ActivityItem.test.tsx", + "hash": "9308564639709118220" + }, + { + "file": "packages/react/src/components/ActivityItem/ActivityItem.tsx", + "hash": "15024881015934520035" + }, + { + "file": "packages/react/src/components/ActivityItem/ActivityItem.types.ts", + "hash": "5658929453140030040" + }, + { + "file": "packages/react/src/components/ActivityItem/__snapshots__/ActivityItem.test.tsx.snap", + "hash": "2875045296901384882" + }, + { + "file": "packages/react/src/components/ActivityItem/index.ts", + "hash": "15613685813342155204" + }, + { + "file": "packages/react/src/components/Announced/Announced.base.tsx", + "hash": "14808936570361767980" + }, + { + "file": "packages/react/src/components/Announced/Announced.styles.ts", + "hash": "2609277003134345376" + }, + { + "file": "packages/react/src/components/Announced/Announced.test.tsx", + "hash": "13159186001787092755" + }, + { + "file": "packages/react/src/components/Announced/Announced.ts", + "hash": "5520471808720202213" + }, + { + "file": "packages/react/src/components/Announced/Announced.types.ts", + "hash": "1166604111861235670" + }, + { + "file": "packages/react/src/components/Announced/__snapshots__/Announced.test.tsx.snap", + "hash": "11083460018032104443" + }, + { + "file": "packages/react/src/components/Announced/index.ts", + "hash": "15185491289973397311" + }, + { + "file": "packages/react/src/components/Autofill/Autofill.test.tsx", + "hash": "14829303470930849800" + }, + { + "file": "packages/react/src/components/Autofill/Autofill.tsx", + "hash": "2844735981914153753" + }, + { + "file": "packages/react/src/components/Autofill/Autofill.types.ts", + "hash": "1324609616284281878" + }, + { + "file": "packages/react/src/components/Autofill/index.ts", + "hash": "9802973723482047247" + }, + { + "file": "packages/react/src/components/Breadcrumb/Breadcrumb.base.tsx", + "hash": "2959849278643511780" + }, + { + "file": "packages/react/src/components/Breadcrumb/Breadcrumb.styles.ts", + "hash": "5490687911274150064" + }, + { + "file": "packages/react/src/components/Breadcrumb/Breadcrumb.test.tsx", + "hash": "1397742070578054284" + }, + { + "file": "packages/react/src/components/Breadcrumb/Breadcrumb.tsx", + "hash": "1697940405249114382" + }, + { + "file": "packages/react/src/components/Breadcrumb/Breadcrumb.types.ts", + "hash": "8602583152421031524" + }, + { + "file": "packages/react/src/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap", + "hash": "11005458348753777619" + }, + { + "file": "packages/react/src/components/Breadcrumb/index.ts", + "hash": "2400277785402358351" + }, + { + "file": "packages/react/src/components/Button/ActionButton/ActionButton.styles.ts", + "hash": "5681673974154994069" + }, + { + "file": "packages/react/src/components/Button/ActionButton/ActionButton.tsx", + "hash": "13604987828611667561" + }, + { + "file": "packages/react/src/components/Button/BaseButton.classNames.ts", + "hash": "17560792537917575282" + }, + { + "file": "packages/react/src/components/Button/BaseButton.styles.ts", + "hash": "13775319018755096354" + }, + { + "file": "packages/react/src/components/Button/BaseButton.tsx", + "hash": "11691847524303977471" + }, + { + "file": "packages/react/src/components/Button/Button.deprecated.test.tsx", + "hash": "3790866997069875783" + }, + { + "file": "packages/react/src/components/Button/Button.test.tsx", + "hash": "8768289926859505225" + }, + { + "file": "packages/react/src/components/Button/Button.tsx", + "hash": "2897151106942011808" + }, + { + "file": "packages/react/src/components/Button/Button.types.ts", + "hash": "2214420206943208397" + }, + { + "file": "packages/react/src/components/Button/ButtonThemes.ts", + "hash": "858669685161863380" + }, + { + "file": "packages/react/src/components/Button/CommandBarButton/CommandBarButton.styles.ts", + "hash": "12384204530508226570" + }, + { + "file": "packages/react/src/components/Button/CommandBarButton/CommandBarButton.tsx", + "hash": "12454085510449396776" + }, + { + "file": "packages/react/src/components/Button/CommandButton/CommandButton.tsx", + "hash": "15919999991405643341" + }, + { + "file": "packages/react/src/components/Button/CompoundButton/CompoundButton.styles.ts", + "hash": "15121334606545964834" + }, + { + "file": "packages/react/src/components/Button/CompoundButton/CompoundButton.tsx", + "hash": "11269834283536570675" + }, + { + "file": "packages/react/src/components/Button/DefaultButton/DefaultButton.styles.ts", + "hash": "18241509591047606021" + }, + { + "file": "packages/react/src/components/Button/DefaultButton/DefaultButton.tsx", + "hash": "15772839065412790331" + }, + { + "file": "packages/react/src/components/Button/IconButton/IconButton.styles.ts", + "hash": "9769004099447041949" + }, + { + "file": "packages/react/src/components/Button/IconButton/IconButton.tsx", + "hash": "2733847614666169059" + }, + { + "file": "packages/react/src/components/Button/MessageBarButton/MessageBarButton.styles.ts", + "hash": "9568488038348577146" + }, + { + "file": "packages/react/src/components/Button/MessageBarButton/MessageBarButton.tsx", + "hash": "4960487562370824955" + }, + { + "file": "packages/react/src/components/Button/PrimaryButton/PrimaryButton.tsx", + "hash": "611494823225309972" + }, + { + "file": "packages/react/src/components/Button/SplitButton/SplitButton.classNames.ts", + "hash": "180913642668624058" + }, + { + "file": "packages/react/src/components/Button/SplitButton/SplitButton.styles.ts", + "hash": "13161165176196832651" + }, + { + "file": "packages/react/src/components/Button/__snapshots__/Button.deprecated.test.tsx.snap", + "hash": "10779387157892625644" + }, + { + "file": "packages/react/src/components/Button/__snapshots__/Button.test.tsx.snap", + "hash": "6525828065674363022" + }, + { + "file": "packages/react/src/components/Button/index.ts", + "hash": "3026621165842617645" + }, + { + "file": "packages/react/src/components/Calendar/Calendar.base.tsx", + "hash": "3698885589942741371" + }, + { + "file": "packages/react/src/components/Calendar/Calendar.styles.ts", + "hash": "7681885833460442019" + }, + { + "file": "packages/react/src/components/Calendar/Calendar.test.tsx", + "hash": "12113283689946056276" + }, + { + "file": "packages/react/src/components/Calendar/Calendar.tsx", + "hash": "17842804668188421221" + }, + { + "file": "packages/react/src/components/Calendar/Calendar.types.ts", + "hash": "16761844729622092230" + }, + { + "file": "packages/react/src/components/Calendar/CalendarDay/CalendarDay.base.tsx", + "hash": "8612771638643633009" + }, + { + "file": "packages/react/src/components/Calendar/CalendarDay/CalendarDay.styles.ts", + "hash": "14371245373320384030" + }, + { + "file": "packages/react/src/components/Calendar/CalendarDay/CalendarDay.tsx", + "hash": "2868624136863589280" + }, + { + "file": "packages/react/src/components/Calendar/CalendarDay/CalendarDay.types.ts", + "hash": "1572652125125308751" + }, + { + "file": "packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.base.tsx", + "hash": "14029913455996670188" + }, + { + "file": "packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.styles.ts", + "hash": "13220094357196562209" + }, + { + "file": "packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.tsx", + "hash": "14175881740264283095" + }, + { + "file": "packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.types.ts", + "hash": "11761404676563048345" + }, + { + "file": "packages/react/src/components/Calendar/CalendarPicker/CalendarPicker.styles.ts", + "hash": "16513698440551210411" + }, + { + "file": "packages/react/src/components/Calendar/CalendarPicker/CalendarPicker.types.ts", + "hash": "13641312866335280338" + }, + { + "file": "packages/react/src/components/Calendar/CalendarYear/CalendarYear.base.tsx", + "hash": "14931817285159607366" + }, + { + "file": "packages/react/src/components/Calendar/CalendarYear/CalendarYear.styles.ts", + "hash": "5022118626516064814" + }, + { + "file": "packages/react/src/components/Calendar/CalendarYear/CalendarYear.tsx", + "hash": "3790852113301377423" + }, + { + "file": "packages/react/src/components/Calendar/CalendarYear/CalendarYear.types.ts", + "hash": "1212633857493091969" + }, + { + "file": "packages/react/src/components/Calendar/defaults.ts", + "hash": "10932514365007165542" + }, + { + "file": "packages/react/src/components/Calendar/index.ts", + "hash": "8926931160772554368" + }, + { + "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.base.tsx", + "hash": "9364545756154110372" + }, + { + "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.styles.ts", + "hash": "5474799333794445305" + }, + { + "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.test.tsx", + "hash": "14077376632654469516" + }, + { + "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.tsx", + "hash": "13954748508369387771" + }, + { + "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.types.ts", + "hash": "1315148665165774731" + }, + { + "file": "packages/react/src/components/CalendarDayGrid/CalendarGridDayCell.tsx", + "hash": "4377391835895631601" + }, + { + "file": "packages/react/src/components/CalendarDayGrid/CalendarGridRow.tsx", + "hash": "11836484162619787282" + }, + { + "file": "packages/react/src/components/CalendarDayGrid/CalendarMonthHeaderRow.tsx", + "hash": "1425249185322741479" + }, + { + "file": "packages/react/src/components/Callout/Callout.test.tsx", + "hash": "5054917375884985643" + }, + { + "file": "packages/react/src/components/Callout/Callout.tsx", + "hash": "15098348347424675166" + }, + { + "file": "packages/react/src/components/Callout/Callout.types.ts", + "hash": "9671085334529620331" + }, + { + "file": "packages/react/src/components/Callout/CalloutContent.base.tsx", + "hash": "7711216549782122145" + }, + { + "file": "packages/react/src/components/Callout/CalloutContent.styles.ts", + "hash": "14671269818620114958" + }, + { + "file": "packages/react/src/components/Callout/CalloutContent.tsx", + "hash": "2613599015627140647" + }, + { + "file": "packages/react/src/components/Callout/FocusTrapCallout.tsx", + "hash": "5711466981505374301" + }, + { + "file": "packages/react/src/components/Callout/FocusTrapCallout.types.ts", + "hash": "13099154175811699019" + }, + { + "file": "packages/react/src/components/Callout/__snapshots__/Callout.test.tsx.snap", + "hash": "7092676668363738687" + }, + { + "file": "packages/react/src/components/Callout/index.ts", + "hash": "18337988706537354723" + }, + { + "file": "packages/react/src/components/Check/Check.base.tsx", + "hash": "8099389880777908630" + }, + { + "file": "packages/react/src/components/Check/Check.styles.ts", + "hash": "11959653952883669852" + }, + { + "file": "packages/react/src/components/Check/Check.test.tsx", + "hash": "7098964263180304704" + }, + { + "file": "packages/react/src/components/Check/Check.tsx", + "hash": "2854772255457713049" + }, + { + "file": "packages/react/src/components/Check/Check.types.ts", + "hash": "1581118031102622036" + }, + { + "file": "packages/react/src/components/Check/__snapshots__/Check.test.tsx.snap", + "hash": "2994867670221716739" + }, + { + "file": "packages/react/src/components/Check/index.ts", + "hash": "760208717723128464" + }, + { + "file": "packages/react/src/components/Checkbox/Checkbox.base.tsx", + "hash": "17742414755561541210" + }, + { + "file": "packages/react/src/components/Checkbox/Checkbox.styles.ts", + "hash": "14738880418511813030" + }, + { + "file": "packages/react/src/components/Checkbox/Checkbox.test.tsx", + "hash": "3079724934788581514" + }, + { + "file": "packages/react/src/components/Checkbox/Checkbox.tsx", + "hash": "13026628343713587440" + }, + { + "file": "packages/react/src/components/Checkbox/Checkbox.types.ts", + "hash": "12031426030660668047" + }, + { + "file": "packages/react/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap", + "hash": "13716157077664308640" + }, + { + "file": "packages/react/src/components/Checkbox/index.ts", + "hash": "7986300600148701571" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.base.tsx", + "hash": "13068795033757508402" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.styles.ts", + "hash": "4320475055744560416" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.test.tsx", + "hash": "14850742821881609942" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.tsx", + "hash": "8195161768483642804" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.types.ts", + "hash": "758817708746738591" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.tsx", + "hash": "16705429588975673989" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.ts", + "hash": "7899251538753065410" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.test.tsx", + "hash": "15957366648578097033" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.tsx", + "hash": "4190193031612152205" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.types.ts", + "hash": "12527274131552227495" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/__snapshots__/ChoiceGroupOption.test.tsx.snap", + "hash": "8810824705317029428" + }, + { + "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/index.ts", + "hash": "18423094160257844331" + }, + { + "file": "packages/react/src/components/ChoiceGroup/__snapshots__/ChoiceGroup.test.tsx.snap", + "hash": "9569553682240889905" + }, + { + "file": "packages/react/src/components/ChoiceGroup/index.ts", + "hash": "328194483357894544" + }, + { + "file": "packages/react/src/components/Coachmark/Beak/Beak.styles.ts", + "hash": "10190924621190518847" + }, + { + "file": "packages/react/src/components/Coachmark/Beak/Beak.tsx", + "hash": "5905785957078046086" + }, + { + "file": "packages/react/src/components/Coachmark/Beak/Beak.types.ts", + "hash": "7291097281646749393" + }, + { + "file": "packages/react/src/components/Coachmark/Coachmark.base.tsx", + "hash": "9056756754402703923" + }, + { + "file": "packages/react/src/components/Coachmark/Coachmark.styles.ts", + "hash": "10326954716722979061" + }, + { + "file": "packages/react/src/components/Coachmark/Coachmark.test.tsx", + "hash": "16185438735178022700" + }, + { + "file": "packages/react/src/components/Coachmark/Coachmark.ts", + "hash": "5196593985187011138" + }, + { + "file": "packages/react/src/components/Coachmark/Coachmark.types.ts", + "hash": "7489711855929492755" + }, + { + "file": "packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.styles.ts", + "hash": "2162783246021921799" + }, + { + "file": "packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.tsx", + "hash": "6990834051214097788" + }, + { + "file": "packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.types.ts", + "hash": "13774772956859115836" + }, + { + "file": "packages/react/src/components/Coachmark/PositioningContainer/index.ts", + "hash": "10130805448946875991" + }, + { + "file": "packages/react/src/components/Coachmark/__snapshots__/Coachmark.test.tsx.snap", + "hash": "3728261009976044833" + }, + { + "file": "packages/react/src/components/Coachmark/index.ts", + "hash": "17067815343666058002" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorPicker.base.tsx", + "hash": "7180003949049537184" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorPicker.deprecated.test.tsx", + "hash": "1858759756402820397" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorPicker.styles.ts", + "hash": "13861598838815848006" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorPicker.test.tsx", + "hash": "14055911644872002613" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorPicker.tsx", + "hash": "3828925813868702320" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorPicker.types.ts", + "hash": "18374948044378105293" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.base.tsx", + "hash": "2973631643717621166" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.styles.ts", + "hash": "157313535816601706" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.test.tsx", + "hash": "15268079714026099074" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.tsx", + "hash": "6995462218313240219" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.types.ts", + "hash": "10322384115733206371" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorRectangle/__snapshots__/ColorRectangle.test.tsx.snap", + "hash": "10729672506798250519" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.base.tsx", + "hash": "13278161114456779756" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.deprecated.test.tsx", + "hash": "13316991814195708224" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.styles.ts", + "hash": "17221012701587550663" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.test.tsx", + "hash": "3883018588900249454" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.tsx", + "hash": "5339430979491373150" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.types.ts", + "hash": "447516077491216644" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorSlider/__snapshots__/ColorSlider.deprecated.test.tsx.snap", + "hash": "16239289712154164621" + }, + { + "file": "packages/react/src/components/ColorPicker/ColorSlider/__snapshots__/ColorSlider.test.tsx.snap", + "hash": "12518773005539682818" + }, + { + "file": "packages/react/src/components/ColorPicker/__snapshots__/ColorPicker.test.tsx.snap", + "hash": "7343175688397682026" + }, + { + "file": "packages/react/src/components/ColorPicker/index.ts", + "hash": "7939662011628958779" + }, + { + "file": "packages/react/src/components/ComboBox/ComboBox.classNames.ts", + "hash": "3467725814675995660" + }, + { + "file": "packages/react/src/components/ComboBox/ComboBox.styles.ts", + "hash": "6464576420747089558" + }, + { + "file": "packages/react/src/components/ComboBox/ComboBox.test.tsx", + "hash": "16954748442404999255" + }, + { + "file": "packages/react/src/components/ComboBox/ComboBox.tsx", + "hash": "8989906260515157173" + }, + { + "file": "packages/react/src/components/ComboBox/ComboBox.types.ts", + "hash": "957405394456490575" + }, + { + "file": "packages/react/src/components/ComboBox/VirtualizedComboBox.tsx", + "hash": "18330214605208399631" + }, + { + "file": "packages/react/src/components/ComboBox/__snapshots__/ComboBox.test.tsx.snap", + "hash": "5482146850650565127" + }, + { + "file": "packages/react/src/components/ComboBox/index.ts", + "hash": "9834057037475040238" + }, + { + "file": "packages/react/src/components/CommandBar/CommandBar.base.tsx", + "hash": "2552079397073764410" + }, + { + "file": "packages/react/src/components/CommandBar/CommandBar.deprecated.test.tsx", + "hash": "12378369935626821833" + }, + { + "file": "packages/react/src/components/CommandBar/CommandBar.styles.ts", + "hash": "5993613558436675319" + }, + { + "file": "packages/react/src/components/CommandBar/CommandBar.test.tsx", + "hash": "11216319412535445892" + }, + { + "file": "packages/react/src/components/CommandBar/CommandBar.tsx", + "hash": "700267282760851139" + }, + { + "file": "packages/react/src/components/CommandBar/CommandBar.types.ts", + "hash": "3532179943527593242" + }, + { + "file": "packages/react/src/components/CommandBar/__snapshots__/CommandBar.deprecated.test.tsx.snap", + "hash": "16088271511149617368" + }, + { + "file": "packages/react/src/components/CommandBar/__snapshots__/CommandBar.test.tsx.snap", + "hash": "12207775744090479986" + }, + { + "file": "packages/react/src/components/CommandBar/index.ts", + "hash": "3215200113690211413" + }, + { + "file": "packages/react/src/components/ComponentConformance.test.tsx", + "hash": "10480277133274272228" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenu.base.tsx", + "hash": "5877188823725891655" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenu.classNames.ts", + "hash": "10706196024534983914" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenu.cnstyles.ts", + "hash": "3654706946123482754" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenu.deprecated.test.tsx", + "hash": "198235862324324028" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenu.styles.ts", + "hash": "17175239582403304459" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenu.test.tsx", + "hash": "2120930861885774156" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenu.tsx", + "hash": "3920779922044026270" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenu.types.ts", + "hash": "11798924850247416531" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItem.base.tsx", + "hash": "6854375821061177190" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItem.test.tsx", + "hash": "9752520632902479921" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItem.ts", + "hash": "63171619528417113" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItem.types.ts", + "hash": "13270971864325546680" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.deprecated.test.tsx", + "hash": "3558946452323923907" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.test.tsx", + "hash": "9918131864879234023" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.tsx", + "hash": "3098687527450227800" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.deprecated.test.tsx", + "hash": "12212037314653515053" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.test.tsx", + "hash": "15584535416442484383" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.tsx", + "hash": "9063110335323343604" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.tsx", + "hash": "14701963235740302031" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.types.ts", + "hash": "13008443172857294424" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.deprecated.test.tsx", + "hash": "3989543743399102394" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.test.tsx", + "hash": "5321812505019653351" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.tsx", + "hash": "4663915473238241475" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuAnchor.deprecated.test.tsx.snap", + "hash": "14041414160285571668" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuAnchor.test.tsx.snap", + "hash": "14041414160285571668" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuButton.deprecated.test.tsx.snap", + "hash": "14710957708359584012" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuButton.test.tsx.snap", + "hash": "14710957708359584012" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuSplitButton.deprecated.test.tsx.snap", + "hash": "8437199313117887841" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuSplitButton.test.tsx.snap", + "hash": "8437199313117887841" + }, + { + "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/index.ts", + "hash": "11528547953994929240" + }, + { + "file": "packages/react/src/components/ContextualMenu/__snapshots__/ContextualMenu.test.tsx.snap", + "hash": "3252836540291663345" + }, + { + "file": "packages/react/src/components/ContextualMenu/__snapshots__/ContextualMenuItem.test.tsx.snap", + "hash": "17054590227599556346" + }, + { + "file": "packages/react/src/components/ContextualMenu/index.ts", + "hash": "3835542198813000796" + }, + { + "file": "packages/react/src/components/DatePicker/DatePicker.base.tsx", + "hash": "11556118508861459365" + }, + { + "file": "packages/react/src/components/DatePicker/DatePicker.styles.ts", + "hash": "13564743909105234986" + }, + { + "file": "packages/react/src/components/DatePicker/DatePicker.test.tsx", + "hash": "1752159393780274598" + }, + { + "file": "packages/react/src/components/DatePicker/DatePicker.tsx", + "hash": "4670714210270594435" + }, + { + "file": "packages/react/src/components/DatePicker/DatePicker.types.ts", + "hash": "15140280667936305477" + }, + { + "file": "packages/react/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap", + "hash": "13576409900070206139" + }, + { + "file": "packages/react/src/components/DatePicker/defaults.ts", + "hash": "9768572084554514711" + }, + { + "file": "packages/react/src/components/DatePicker/index.ts", + "hash": "17974637769310028943" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsColumn.base.tsx", + "hash": "6308648217640225380" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsColumn.styles.ts", + "hash": "4880164232418754095" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsColumn.test.tsx", + "hash": "6798921407981461914" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsColumn.ts", + "hash": "4902399603567842665" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsColumn.types.ts", + "hash": "8180062505592077016" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsFooter.types.ts", + "hash": "11446456440966141852" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsHeader.base.tsx", + "hash": "3928141695731168504" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsHeader.styles.ts", + "hash": "5073662827578508154" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsHeader.test.tsx", + "hash": "3014066941567472289" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsHeader.ts", + "hash": "17422579751459550432" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsHeader.types.ts", + "hash": "7637123501724238546" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsList.base.tsx", + "hash": "2799961499477794228" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsList.styles.ts", + "hash": "7526554567819721912" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsList.test.tsx", + "hash": "6228800664354956955" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsList.ts", + "hash": "12728534349659462744" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsList.types.ts", + "hash": "9537843069676358412" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsListV2.test.tsx", + "hash": "18360992886402272534" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRow.base.tsx", + "hash": "5406961765015794815" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRow.styles.ts", + "hash": "3731969425006369055" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRow.test.tsx", + "hash": "2834031795765256016" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRow.ts", + "hash": "11470577206839450556" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRow.types.ts", + "hash": "17665153010720544130" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRowCheck.styles.ts", + "hash": "15671426098715829029" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRowCheck.tsx", + "hash": "5242923550637359098" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRowCheck.types.ts", + "hash": "7924190524800312148" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRowFields.tsx", + "hash": "11847639474237705982" + }, + { + "file": "packages/react/src/components/DetailsList/DetailsRowFields.types.ts", + "hash": "1010241688363163897" + }, + { + "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.base.tsx", + "hash": "3035507686770242754" + }, + { + "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.styles.ts", + "hash": "14244971813247985296" + }, + { + "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.test.tsx", + "hash": "2424496070241863869" + }, + { + "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.ts", + "hash": "5199934512938546464" + }, + { + "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.types.ts", + "hash": "11982842825329048243" + }, + { + "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsColumn.test.tsx.snap", + "hash": "10877029629695718863" + }, + { + "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsHeader.test.tsx.snap", + "hash": "7752035837626973782" + }, + { + "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsList.test.tsx.snap", + "hash": "9571333155875344655" + }, + { + "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsListV2.test.tsx.snap", + "hash": "16889062212530889471" + }, + { + "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsRow.test.tsx.snap", + "hash": "11109931562984326200" + }, + { + "file": "packages/react/src/components/DetailsList/__snapshots__/ShimmeredDetailsList.test.tsx.snap", + "hash": "13956054951020044610" + }, + { + "file": "packages/react/src/components/DetailsList/index.ts", + "hash": "11905967269357664057" + }, + { + "file": "packages/react/src/components/Dialog/Dialog.base.tsx", + "hash": "1335031672704243772" + }, + { + "file": "packages/react/src/components/Dialog/Dialog.deprecated.test.tsx", + "hash": "2188927542479579813" + }, + { + "file": "packages/react/src/components/Dialog/Dialog.styles.ts", + "hash": "1274186165067202097" + }, + { + "file": "packages/react/src/components/Dialog/Dialog.test.tsx", + "hash": "1250079322956341113" + }, + { + "file": "packages/react/src/components/Dialog/Dialog.tsx", + "hash": "10039529914607071950" + }, + { + "file": "packages/react/src/components/Dialog/Dialog.types.ts", + "hash": "18136777266972422495" + }, + { + "file": "packages/react/src/components/Dialog/DialogContent.base.tsx", + "hash": "11343728294232910282" + }, + { + "file": "packages/react/src/components/Dialog/DialogContent.styles.ts", + "hash": "4270458193570647094" + }, + { + "file": "packages/react/src/components/Dialog/DialogContent.tsx", + "hash": "17518100903877368017" + }, + { + "file": "packages/react/src/components/Dialog/DialogContent.types.ts", + "hash": "4747961404545812644" + }, + { + "file": "packages/react/src/components/Dialog/DialogFooter.base.tsx", + "hash": "10782995317447912366" + }, + { + "file": "packages/react/src/components/Dialog/DialogFooter.styles.ts", + "hash": "17208002434260655427" + }, + { + "file": "packages/react/src/components/Dialog/DialogFooter.tsx", + "hash": "12109203749703017200" + }, + { + "file": "packages/react/src/components/Dialog/DialogFooter.types.ts", + "hash": "6262905726334995933" + }, + { + "file": "packages/react/src/components/Dialog/__snapshots__/Dialog.deprecated.test.tsx.snap", + "hash": "1205677692101133734" + }, + { + "file": "packages/react/src/components/Dialog/__snapshots__/Dialog.test.tsx.snap", + "hash": "14260178774430004740" + }, + { + "file": "packages/react/src/components/Dialog/index.ts", + "hash": "7399685691520743552" + }, + { + "file": "packages/react/src/components/Divider/VerticalDivider.base.tsx", + "hash": "14747514845048329254" + }, + { + "file": "packages/react/src/components/Divider/VerticalDivider.classNames.ts", + "hash": "14958285190679663562" + }, + { + "file": "packages/react/src/components/Divider/VerticalDivider.styles.ts", + "hash": "2333036108043844947" + }, + { + "file": "packages/react/src/components/Divider/VerticalDivider.test.tsx", + "hash": "15996912185164124298" + }, + { + "file": "packages/react/src/components/Divider/VerticalDivider.tsx", + "hash": "4835536727331111736" + }, + { + "file": "packages/react/src/components/Divider/VerticalDivider.types.ts", + "hash": "10846488578576759054" + }, + { + "file": "packages/react/src/components/Divider/index.ts", + "hash": "11460793940690681257" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCard.base.tsx", + "hash": "13812626508580200819" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCard.styles.ts", + "hash": "2131296789428441065" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCard.test.tsx", + "hash": "15482888094788676500" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCard.ts", + "hash": "8676978884832092435" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCard.types.ts", + "hash": "15823224865111213520" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardActions.base.tsx", + "hash": "12618360925624178049" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardActions.styles.ts", + "hash": "18073006403572164218" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardActions.ts", + "hash": "7210607681946114376" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardActions.types.ts", + "hash": "17216634669902609499" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardActivity.base.tsx", + "hash": "15733532529261222511" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardActivity.styles.ts", + "hash": "4735425582448454346" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardActivity.ts", + "hash": "15086127853218677837" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardActivity.types.ts", + "hash": "9561565954234648002" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardDetails.base.tsx", + "hash": "6440829969312645425" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardDetails.styles.ts", + "hash": "11880948122737474571" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardDetails.ts", + "hash": "18132989513726564615" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardDetails.types.ts", + "hash": "2756943457533117735" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardImage.base.tsx", + "hash": "11014604612367552221" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardImage.styles.ts", + "hash": "3780284966890539977" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardImage.test.tsx", + "hash": "1580886441918862054" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardImage.ts", + "hash": "10433805243649759860" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardImage.types.ts", + "hash": "15934884145645343404" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardLocation.base.tsx", + "hash": "11939763814866414085" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardLocation.styles.ts", + "hash": "13514891004140091333" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardLocation.ts", + "hash": "8735208547155425896" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardLocation.types.ts", + "hash": "8841526483942904591" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardLogo.base.tsx", + "hash": "8438097103948406750" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardLogo.styles.ts", + "hash": "15136768782429072113" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardLogo.ts", + "hash": "7856356439067054499" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardLogo.types.ts", + "hash": "14701492463350455067" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardPreview.base.tsx", + "hash": "11848821011500897044" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardPreview.styles.ts", + "hash": "5544712449354910585" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardPreview.ts", + "hash": "11787269282631307300" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardPreview.types.ts", + "hash": "8047917283408471306" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardStatus.base.tsx", + "hash": "12393731567818105572" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardStatus.styles.ts", + "hash": "3622145673328933221" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardStatus.ts", + "hash": "5034770503855371748" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardStatus.types.ts", + "hash": "12693285533780951481" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardTitle.base.tsx", + "hash": "2674068828407692747" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardTitle.styles.ts", + "hash": "746101100616079977" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardTitle.ts", + "hash": "4490870589977340710" + }, + { + "file": "packages/react/src/components/DocumentCard/DocumentCardTitle.types.ts", + "hash": "10582359202711643083" + }, + { + "file": "packages/react/src/components/DocumentCard/__snapshots__/DocumentCard.test.tsx.snap", + "hash": "4538584156885630867" + }, + { + "file": "packages/react/src/components/DocumentCard/__snapshots__/DocumentCardImage.test.tsx.snap", + "hash": "9362918664972220624" + }, + { + "file": "packages/react/src/components/DocumentCard/index.ts", + "hash": "15416848639888338244" + }, + { + "file": "packages/react/src/components/Dropdown/Dropdown.base.tsx", + "hash": "5982101215514390747" + }, + { + "file": "packages/react/src/components/Dropdown/Dropdown.styles.ts", + "hash": "6706815686211379956" + }, + { + "file": "packages/react/src/components/Dropdown/Dropdown.test.tsx", + "hash": "10675635400111409800" + }, + { + "file": "packages/react/src/components/Dropdown/Dropdown.tsx", + "hash": "3664291599270262346" + }, + { + "file": "packages/react/src/components/Dropdown/Dropdown.types.ts", + "hash": "805386249723069476" + }, + { + "file": "packages/react/src/components/Dropdown/__snapshots__/Dropdown.test.tsx.snap", + "hash": "13951042411364693238" + }, + { + "file": "packages/react/src/components/Dropdown/index.ts", + "hash": "10944128569618040409" + }, + { + "file": "packages/react/src/components/Dropdown/utilities/DropdownSizePosCache.test.ts", + "hash": "14298618403894076114" + }, + { + "file": "packages/react/src/components/Dropdown/utilities/DropdownSizePosCache.ts", + "hash": "14573545613857367131" + }, + { + "file": "packages/react/src/components/ExtendedPicker/BaseExtendedPicker.scss", + "hash": "12208239487391689192" + }, + { + "file": "packages/react/src/components/ExtendedPicker/BaseExtendedPicker.test.tsx", + "hash": "2841294449776155583" + }, + { + "file": "packages/react/src/components/ExtendedPicker/BaseExtendedPicker.tsx", + "hash": "2417453781687326962" + }, + { + "file": "packages/react/src/components/ExtendedPicker/BaseExtendedPicker.types.ts", + "hash": "15463802587148449884" + }, + { + "file": "packages/react/src/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss", + "hash": "17786163747904205632" + }, + { + "file": "packages/react/src/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.tsx", + "hash": "13191670132860696607" + }, + { + "file": "packages/react/src/components/ExtendedPicker/__snapshots__/BaseExtendedPicker.test.tsx.snap", + "hash": "6741546184545952465" + }, + { + "file": "packages/react/src/components/ExtendedPicker/index.ts", + "hash": "16868542197048982054" + }, + { + "file": "packages/react/src/components/Fabric/Fabric.base.tsx", + "hash": "15683732381298373787" + }, + { + "file": "packages/react/src/components/Fabric/Fabric.styles.ts", + "hash": "3127272392985933000" + }, + { + "file": "packages/react/src/components/Fabric/Fabric.test.tsx", + "hash": "17910243263768585833" + }, + { + "file": "packages/react/src/components/Fabric/Fabric.tsx", + "hash": "1121061255147231937" + }, + { + "file": "packages/react/src/components/Fabric/Fabric.types.ts", + "hash": "9200626287532995187" + }, + { + "file": "packages/react/src/components/Fabric/__snapshots__/Fabric.test.tsx.snap", + "hash": "1783002843621059971" + }, + { + "file": "packages/react/src/components/Fabric/index.ts", + "hash": "16845651033210989707" + }, + { + "file": "packages/react/src/components/Facepile/Facepile.base.tsx", + "hash": "11217134564165655591" + }, + { + "file": "packages/react/src/components/Facepile/Facepile.styles.ts", + "hash": "3138742609820872548" + }, + { + "file": "packages/react/src/components/Facepile/Facepile.test.tsx", + "hash": "11808318394624143691" + }, + { + "file": "packages/react/src/components/Facepile/Facepile.tsx", + "hash": "4306908805761378642" + }, + { + "file": "packages/react/src/components/Facepile/Facepile.types.ts", + "hash": "10072003322857041114" + }, + { + "file": "packages/react/src/components/Facepile/FacepileButton.styles.ts", + "hash": "7829359605023940665" + }, + { + "file": "packages/react/src/components/Facepile/FacepileButton.tsx", + "hash": "2155259046902727571" + }, + { + "file": "packages/react/src/components/Facepile/__snapshots__/Facepile.test.tsx.snap", + "hash": "6035729035787766585" + }, + { + "file": "packages/react/src/components/Facepile/index.ts", + "hash": "3843010742943322381" + }, + { + "file": "packages/react/src/components/FloatingPicker/BaseFloatingPicker.scss", + "hash": "3604756766474209425" + }, + { + "file": "packages/react/src/components/FloatingPicker/BaseFloatingPicker.test.tsx", + "hash": "10402050741886698050" + }, + { + "file": "packages/react/src/components/FloatingPicker/BaseFloatingPicker.tsx", + "hash": "11401685007576339654" + }, + { + "file": "packages/react/src/components/FloatingPicker/BaseFloatingPicker.types.ts", + "hash": "1645066791828351675" + }, + { + "file": "packages/react/src/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.tsx", + "hash": "10382637701827323538" + }, + { + "file": "packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePicker.scss", + "hash": "3905654351229104045" + }, + { + "file": "packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/PickerItemsDefault.scss", + "hash": "998801082346015725" + }, + { + "file": "packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SelectedItemDefault.tsx", + "hash": "897588648460287399" + }, + { + "file": "packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx", + "hash": "10345250805301606220" + }, + { + "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionStore.test.tsx", + "hash": "17752174539815674325" + }, + { + "file": "packages/react/src/components/FloatingPicker/Suggestions/Suggestions.types.ts", + "hash": "1619086524390486592" + }, + { + "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.scss", + "hash": "14094996955090584456" + }, + { + "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.test.tsx", + "hash": "2858897028514122286" + }, + { + "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.tsx", + "hash": "5387100967775322843" + }, + { + "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsCore.scss", + "hash": "1212577356362130966" + }, + { + "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsCore.tsx", + "hash": "17624290543989563506" + }, + { + "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsStore.ts", + "hash": "647289822927373071" + }, + { + "file": "packages/react/src/components/FloatingPicker/__snapshots__/BaseFloatingPicker.test.tsx.snap", + "hash": "16517390094975721383" + }, + { + "file": "packages/react/src/components/FloatingPicker/index.ts", + "hash": "1170539822572092906" + }, + { + "file": "packages/react/src/components/FocusTrapZone/FocusTrapZone.test.tsx", + "hash": "3653120050351888108" + }, + { + "file": "packages/react/src/components/FocusTrapZone/FocusTrapZone.tsx", + "hash": "10749728776021839597" + }, + { + "file": "packages/react/src/components/FocusTrapZone/FocusTrapZone.types.ts", + "hash": "6325135567045903758" + }, + { + "file": "packages/react/src/components/FocusTrapZone/index.ts", + "hash": "8327216471932571554" + }, + { + "file": "packages/react/src/components/GroupedList/GroupFooter.base.tsx", + "hash": "14198741911962538297" + }, + { + "file": "packages/react/src/components/GroupedList/GroupFooter.styles.ts", + "hash": "14745204278246478319" + }, + { + "file": "packages/react/src/components/GroupedList/GroupFooter.ts", + "hash": "14580690585539484982" + }, + { + "file": "packages/react/src/components/GroupedList/GroupFooter.types.ts", + "hash": "1147400551367794739" + }, + { + "file": "packages/react/src/components/GroupedList/GroupHeader.base.tsx", + "hash": "3726588132786848597" + }, + { + "file": "packages/react/src/components/GroupedList/GroupHeader.styles.ts", + "hash": "127249141428848245" + }, + { + "file": "packages/react/src/components/GroupedList/GroupHeader.ts", + "hash": "14406360241147099907" + }, + { + "file": "packages/react/src/components/GroupedList/GroupHeader.types.ts", + "hash": "869293819287687801" + }, + { + "file": "packages/react/src/components/GroupedList/GroupShowAll.base.tsx", + "hash": "13430177116838777970" + }, + { + "file": "packages/react/src/components/GroupedList/GroupShowAll.styles.ts", + "hash": "9173240059922396704" + }, + { + "file": "packages/react/src/components/GroupedList/GroupShowAll.ts", + "hash": "18241463491945654086" + }, + { + "file": "packages/react/src/components/GroupedList/GroupShowAll.types.ts", + "hash": "15505112258738188159" + }, + { + "file": "packages/react/src/components/GroupedList/GroupSpacer.tsx", + "hash": "2382614986997954733" + }, + { + "file": "packages/react/src/components/GroupedList/GroupSpacer.types.ts", + "hash": "16962133135384591377" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedList.base.tsx", + "hash": "15701306319172639078" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedList.styles.ts", + "hash": "14642443188238030052" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedList.test.tsx", + "hash": "14268783024355777066" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedList.ts", + "hash": "4364629580250318037" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedList.types.ts", + "hash": "6313853039955612053" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedListSection.tsx", + "hash": "15904592677032813529" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedListV2.base.tsx", + "hash": "6481450481892001553" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedListV2.test.tsx", + "hash": "17238450217629509752" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedListV2.tsx", + "hash": "6260798994381323732" + }, + { + "file": "packages/react/src/components/GroupedList/GroupedListV2.types.ts", + "hash": "8326581936979434519" + }, + { + "file": "packages/react/src/components/GroupedList/index.ts", + "hash": "1461761807935333812" + }, + { + "file": "packages/react/src/components/HoverCard/BaseCard.types.ts", + "hash": "7854988721086480335" + }, + { + "file": "packages/react/src/components/HoverCard/CardCallout/CardCallout.tsx", + "hash": "6318903072711304556" + }, + { + "file": "packages/react/src/components/HoverCard/ExpandingCard.base.tsx", + "hash": "12920278905857343993" + }, + { + "file": "packages/react/src/components/HoverCard/ExpandingCard.styles.ts", + "hash": "2569486849539241092" + }, + { + "file": "packages/react/src/components/HoverCard/ExpandingCard.ts", + "hash": "14634468554846579407" + }, + { + "file": "packages/react/src/components/HoverCard/ExpandingCard.types.ts", + "hash": "6870429964911366844" + }, + { + "file": "packages/react/src/components/HoverCard/HoverCard.base.tsx", + "hash": "7594950086626185659" + }, + { + "file": "packages/react/src/components/HoverCard/HoverCard.styles.ts", + "hash": "13603738129536779165" + }, + { + "file": "packages/react/src/components/HoverCard/HoverCard.test.tsx", + "hash": "12683699210328003784" + }, + { + "file": "packages/react/src/components/HoverCard/HoverCard.ts", + "hash": "9256784689499188401" + }, + { + "file": "packages/react/src/components/HoverCard/HoverCard.types.ts", + "hash": "9375330990542611125" + }, + { + "file": "packages/react/src/components/HoverCard/PlainCard/PlainCard.base.tsx", + "hash": "3832709380523488574" + }, + { + "file": "packages/react/src/components/HoverCard/PlainCard/PlainCard.styles.ts", + "hash": "1750819295487788524" + }, + { + "file": "packages/react/src/components/HoverCard/PlainCard/PlainCard.ts", + "hash": "876829282032579574" + }, + { + "file": "packages/react/src/components/HoverCard/PlainCard/PlainCard.types.ts", + "hash": "17980034747921061565" + }, + { + "file": "packages/react/src/components/HoverCard/__snapshots__/HoverCard.test.tsx.snap", + "hash": "8142014490582894703" + }, + { + "file": "packages/react/src/components/HoverCard/index.ts", + "hash": "9603968589460798746" + }, + { + "file": "packages/react/src/components/Icon/FontIcon.test.tsx", + "hash": "9649120469191571884" + }, + { + "file": "packages/react/src/components/Icon/FontIcon.tsx", + "hash": "7793447455696767318" + }, + { + "file": "packages/react/src/components/Icon/Icon.base.tsx", + "hash": "3422716483088640348" + }, + { + "file": "packages/react/src/components/Icon/Icon.styles.ts", + "hash": "15493732365313653034" + }, + { + "file": "packages/react/src/components/Icon/Icon.test.tsx", + "hash": "17082809089358473376" + }, + { + "file": "packages/react/src/components/Icon/Icon.tsx", + "hash": "17379752979197206906" + }, + { + "file": "packages/react/src/components/Icon/Icon.types.ts", + "hash": "3134559495065858448" + }, + { + "file": "packages/react/src/components/Icon/ImageIcon.test.tsx", + "hash": "18144711626394801617" + }, + { + "file": "packages/react/src/components/Icon/ImageIcon.tsx", + "hash": "1808967559310429816" + }, + { + "file": "packages/react/src/components/Icon/__snapshots__/FontIcon.test.tsx.snap", + "hash": "13051146926087860573" + }, + { + "file": "packages/react/src/components/Icon/__snapshots__/Icon.test.tsx.snap", + "hash": "120175245064663605" + }, + { + "file": "packages/react/src/components/Icon/__snapshots__/ImageIcon.test.tsx.snap", + "hash": "4160491147454961750" + }, + { + "file": "packages/react/src/components/Icon/index.ts", + "hash": "18332890298919647701" + }, + { + "file": "packages/react/src/components/Image/Image.base.tsx", + "hash": "14123135419720583714" + }, + { + "file": "packages/react/src/components/Image/Image.styles.ts", + "hash": "7530737254051669603" + }, + { + "file": "packages/react/src/components/Image/Image.test.tsx", + "hash": "72724674218984311" + }, + { + "file": "packages/react/src/components/Image/Image.tsx", + "hash": "4184098376163028342" + }, + { + "file": "packages/react/src/components/Image/Image.types.ts", + "hash": "17944297075205116667" + }, + { + "file": "packages/react/src/components/Image/__snapshots__/Image.test.tsx.snap", + "hash": "8589950869797284375" + }, + { + "file": "packages/react/src/components/Image/index.ts", + "hash": "6117348458737991291" + }, + { + "file": "packages/react/src/components/Keytip/Keytip.styles.ts", + "hash": "26470584495180607" + }, + { + "file": "packages/react/src/components/Keytip/Keytip.tsx", + "hash": "1766817765311778495" + }, + { + "file": "packages/react/src/components/Keytip/Keytip.types.ts", + "hash": "16293725386152764984" + }, + { + "file": "packages/react/src/components/Keytip/KeytipContent.base.tsx", + "hash": "5493927869174904437" + }, + { + "file": "packages/react/src/components/Keytip/KeytipContent.test.tsx", + "hash": "5086309600864173535" + }, + { + "file": "packages/react/src/components/Keytip/KeytipContent.tsx", + "hash": "11611940156425372619" + }, + { + "file": "packages/react/src/components/Keytip/__snapshots__/KeytipContent.test.tsx.snap", + "hash": "2596460814892278429" + }, + { + "file": "packages/react/src/components/Keytip/index.ts", + "hash": "1589728284157203563" + }, + { + "file": "packages/react/src/components/KeytipData/KeytipData.tsx", + "hash": "15775201828664799680" + }, + { + "file": "packages/react/src/components/KeytipData/KeytipData.types.ts", + "hash": "12324447823866814267" + }, + { + "file": "packages/react/src/components/KeytipData/index.ts", + "hash": "4712198936381945548" + }, + { + "file": "packages/react/src/components/KeytipData/useKeytipData.test.tsx", + "hash": "17009869791449521401" + }, + { + "file": "packages/react/src/components/KeytipData/useKeytipData.ts", + "hash": "5488949258786574622" + }, + { + "file": "packages/react/src/components/KeytipData/useKeytipRef.test.ts", + "hash": "6346566064757434343" + }, + { + "file": "packages/react/src/components/KeytipData/useKeytipRef.ts", + "hash": "14435606425695323098" + }, + { + "file": "packages/react/src/components/KeytipLayer/IKeytipTreeNode.ts", + "hash": "4259987714669396673" + }, + { + "file": "packages/react/src/components/KeytipLayer/KeytipLayer.base.tsx", + "hash": "6544893700817273089" + }, + { + "file": "packages/react/src/components/KeytipLayer/KeytipLayer.styles.ts", + "hash": "16884186816077888808" + }, + { + "file": "packages/react/src/components/KeytipLayer/KeytipLayer.test.tsx", + "hash": "9818784360532204726" + }, + { + "file": "packages/react/src/components/KeytipLayer/KeytipLayer.tsx", + "hash": "9909297938001309774" + }, + { + "file": "packages/react/src/components/KeytipLayer/KeytipLayer.types.ts", + "hash": "15640944128209193732" + }, + { + "file": "packages/react/src/components/KeytipLayer/KeytipTree.test.tsx", + "hash": "9517751630103101293" + }, + { + "file": "packages/react/src/components/KeytipLayer/KeytipTree.ts", + "hash": "14167456441228340020" + }, + { + "file": "packages/react/src/components/KeytipLayer/index.ts", + "hash": "333553465631618123" + }, + { + "file": "packages/react/src/components/Label/Label.base.tsx", + "hash": "8190575964210506548" + }, + { + "file": "packages/react/src/components/Label/Label.styles.ts", + "hash": "5738839503600392947" + }, + { + "file": "packages/react/src/components/Label/Label.test.tsx", + "hash": "10090713217767425577" + }, + { + "file": "packages/react/src/components/Label/Label.tsx", + "hash": "8942462394854847624" + }, + { + "file": "packages/react/src/components/Label/Label.types.ts", + "hash": "8823718327343549516" + }, + { + "file": "packages/react/src/components/Label/LabelMixins.scss", + "hash": "2865796132641773676" + }, + { + "file": "packages/react/src/components/Label/__snapshots__/Label.test.tsx.snap", + "hash": "16950664531217292276" + }, + { + "file": "packages/react/src/components/Label/index.ts", + "hash": "701782372226603037" + }, + { + "file": "packages/react/src/components/Layer/Layer.base.tsx", + "hash": "14484890726556761152" + }, + { + "file": "packages/react/src/components/Layer/Layer.notification.ts", + "hash": "14110203098247553111" + }, + { + "file": "packages/react/src/components/Layer/Layer.styles.ts", + "hash": "9132996130234515054" + }, + { + "file": "packages/react/src/components/Layer/Layer.test.tsx", + "hash": "10526067785847207172" + }, + { + "file": "packages/react/src/components/Layer/Layer.tsx", + "hash": "16441278557794939293" + }, + { + "file": "packages/react/src/components/Layer/Layer.types.ts", + "hash": "18253182603761913277" + }, + { + "file": "packages/react/src/components/Layer/LayerHost.tsx", + "hash": "6415687165915280246" + }, + { + "file": "packages/react/src/components/Layer/LayerHost.types.ts", + "hash": "12435084507892692287" + }, + { + "file": "packages/react/src/components/Layer/__snapshots__/Layer.test.tsx.snap", + "hash": "4347345238023347739" + }, + { + "file": "packages/react/src/components/Layer/index.ts", + "hash": "2702225210959749876" + }, + { + "file": "packages/react/src/components/Link/Link.base.tsx", + "hash": "4696009851687537006" + }, + { + "file": "packages/react/src/components/Link/Link.styles.ts", + "hash": "6380541707633307769" + }, + { + "file": "packages/react/src/components/Link/Link.test.tsx", + "hash": "13162337841979270382" + }, + { + "file": "packages/react/src/components/Link/Link.tsx", + "hash": "1483460583795267065" + }, + { + "file": "packages/react/src/components/Link/Link.types.ts", + "hash": "7950997878673908950" + }, + { + "file": "packages/react/src/components/Link/__snapshots__/Link.test.tsx.snap", + "hash": "13236755011027298137" + }, + { + "file": "packages/react/src/components/Link/index.ts", + "hash": "16962753458348462360" + }, + { + "file": "packages/react/src/components/Link/useLink.ts", + "hash": "6771451659717631459" + }, + { + "file": "packages/react/src/components/List/List.test.tsx", + "hash": "14182207209684571411" + }, + { + "file": "packages/react/src/components/List/List.tsx", + "hash": "337398525385147578" + }, + { + "file": "packages/react/src/components/List/List.types.ts", + "hash": "1931441716112280094" + }, + { + "file": "packages/react/src/components/List/__snapshots__/List.test.tsx.snap", + "hash": "6603110722863245756" + }, + { + "file": "packages/react/src/components/List/index.ts", + "hash": "3791292240660287058" + }, + { + "file": "packages/react/src/components/List/utils/scroll.test.ts", + "hash": "5035250436686997299" + }, + { + "file": "packages/react/src/components/List/utils/scroll.ts", + "hash": "3276954363382087534" + }, + { + "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.base.tsx", + "hash": "8108986356865954062" + }, + { + "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.styles.tsx", + "hash": "11629235192520125274" + }, + { + "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.test.tsx", + "hash": "4097529235713830466" + }, + { + "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.tsx", + "hash": "3131729497757785613" + }, + { + "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.types.ts", + "hash": "7652722384397140480" + }, + { + "file": "packages/react/src/components/MarqueeSelection/__snapshots__/MarqueeSelection.test.tsx.snap", + "hash": "1476072118831675136" + }, + { + "file": "packages/react/src/components/MessageBar/MessageBar.base.tsx", + "hash": "3641725290805595446" + }, + { + "file": "packages/react/src/components/MessageBar/MessageBar.styles.ts", + "hash": "16901430479262789866" + }, + { + "file": "packages/react/src/components/MessageBar/MessageBar.test.tsx", + "hash": "4200531768298042001" + }, + { + "file": "packages/react/src/components/MessageBar/MessageBar.tsx", + "hash": "15934533885780135935" + }, + { + "file": "packages/react/src/components/MessageBar/MessageBar.types.ts", + "hash": "12107460841232965387" + }, + { + "file": "packages/react/src/components/MessageBar/__snapshots__/MessageBar.test.tsx.snap", + "hash": "12089438488535566985" + }, + { + "file": "packages/react/src/components/MessageBar/index.ts", + "hash": "10165783190127395700" + }, + { + "file": "packages/react/src/components/Modal/Modal.base.tsx", + "hash": "7774473038141256639" + }, + { + "file": "packages/react/src/components/Modal/Modal.styles.ts", + "hash": "13010493938273472658" + }, + { + "file": "packages/react/src/components/Modal/Modal.test.tsx", + "hash": "7330042059600029952" + }, + { + "file": "packages/react/src/components/Modal/Modal.ts", + "hash": "13683187870561493708" + }, + { + "file": "packages/react/src/components/Modal/Modal.types.ts", + "hash": "9311092462398275867" + }, + { + "file": "packages/react/src/components/Modal/__snapshots__/Modal.test.tsx.snap", + "hash": "16603919199555912093" + }, + { + "file": "packages/react/src/components/Modal/index.ts", + "hash": "13798025325857153668" + }, + { + "file": "packages/react/src/components/Nav/Nav.base.tsx", + "hash": "8394582414073501513" + }, + { + "file": "packages/react/src/components/Nav/Nav.styles.ts", + "hash": "14512050744103400087" + }, + { + "file": "packages/react/src/components/Nav/Nav.test.tsx", + "hash": "15514537140918235707" + }, + { + "file": "packages/react/src/components/Nav/Nav.tsx", + "hash": "10638284599870328707" + }, + { + "file": "packages/react/src/components/Nav/Nav.types.ts", + "hash": "8186856480909759678" + }, + { + "file": "packages/react/src/components/Nav/__snapshots__/Nav.test.tsx.snap", + "hash": "9307439353878066651" + }, + { + "file": "packages/react/src/components/Nav/index.ts", + "hash": "12662416181288669629" + }, + { + "file": "packages/react/src/components/OverflowSet/OverflowButton.tsx", + "hash": "9769707305996342513" + }, + { + "file": "packages/react/src/components/OverflowSet/OverflowSet.base.tsx", + "hash": "7113035684216930208" + }, + { + "file": "packages/react/src/components/OverflowSet/OverflowSet.styles.ts", + "hash": "5647135014154387382" + }, + { + "file": "packages/react/src/components/OverflowSet/OverflowSet.test.tsx", + "hash": "10333146601109509690" + }, + { + "file": "packages/react/src/components/OverflowSet/OverflowSet.ts", + "hash": "11238335157785127924" + }, + { + "file": "packages/react/src/components/OverflowSet/OverflowSet.types.ts", + "hash": "13948203100630407433" + }, + { + "file": "packages/react/src/components/OverflowSet/__snapshots__/OverflowSet.test.tsx.snap", + "hash": "248229536782956095" + }, + { + "file": "packages/react/src/components/OverflowSet/index.ts", + "hash": "16933137934852433852" + }, + { + "file": "packages/react/src/components/Overlay/Overlay.base.tsx", + "hash": "11398904192435363344" + }, + { + "file": "packages/react/src/components/Overlay/Overlay.styles.ts", + "hash": "12479301927551480916" + }, + { + "file": "packages/react/src/components/Overlay/Overlay.test.tsx", + "hash": "5375182851494505692" + }, + { + "file": "packages/react/src/components/Overlay/Overlay.tsx", + "hash": "14338623169213129149" + }, + { + "file": "packages/react/src/components/Overlay/Overlay.types.ts", + "hash": "2235807634895380003" + }, + { + "file": "packages/react/src/components/Overlay/index.ts", + "hash": "11296397034515992856" + }, + { + "file": "packages/react/src/components/Panel/Panel.base.tsx", + "hash": "12463543702726193236" + }, + { + "file": "packages/react/src/components/Panel/Panel.styles.ts", + "hash": "11077941591310445928" + }, + { + "file": "packages/react/src/components/Panel/Panel.test.tsx", + "hash": "1588567945652832575" + }, + { + "file": "packages/react/src/components/Panel/Panel.ts", + "hash": "8839731453608919663" + }, + { + "file": "packages/react/src/components/Panel/Panel.types.ts", + "hash": "6670275864375140828" + }, + { + "file": "packages/react/src/components/Panel/__snapshots__/Panel.test.tsx.snap", + "hash": "559260894059668605" + }, + { + "file": "packages/react/src/components/Panel/index.ts", + "hash": "13335174913237626780" + }, + { + "file": "packages/react/src/components/Persona/Persona.base.tsx", + "hash": "6194967196605028938" + }, + { + "file": "packages/react/src/components/Persona/Persona.deprecated.test.tsx", + "hash": "11989340987137030740" + }, + { + "file": "packages/react/src/components/Persona/Persona.styles.ts", + "hash": "1920607507152248627" + }, + { + "file": "packages/react/src/components/Persona/Persona.test.tsx", + "hash": "17539018815879877692" + }, + { + "file": "packages/react/src/components/Persona/Persona.tsx", + "hash": "9379532642372744584" + }, + { + "file": "packages/react/src/components/Persona/Persona.types.ts", + "hash": "17005696098342686371" + }, + { + "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.base.tsx", + "hash": "7978214084573190099" + }, + { + "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.deprecated.test.tsx", + "hash": "12416360491602756091" + }, + { + "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.styles.ts", + "hash": "3840381039426790312" + }, + { + "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.test.tsx", + "hash": "2750927891149479510" + }, + { + "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.tsx", + "hash": "1454207390708087949" + }, + { + "file": "packages/react/src/components/Persona/PersonaCoin/__snapshots__/PersonaCoin.deprecated.test.tsx.snap", + "hash": "8688578988288194326" + }, + { + "file": "packages/react/src/components/Persona/PersonaCoin/__snapshots__/PersonaCoin.test.tsx.snap", + "hash": "4893031829279367457" + }, + { + "file": "packages/react/src/components/Persona/PersonaCoin/index.ts", + "hash": "10833710250217357347" + }, + { + "file": "packages/react/src/components/Persona/PersonaConsts.tsx", + "hash": "1957132599773504778" + }, + { + "file": "packages/react/src/components/Persona/PersonaInitialsColor.test.ts", + "hash": "301179335668360928" + }, + { + "file": "packages/react/src/components/Persona/PersonaInitialsColor.ts", + "hash": "18170963028405037460" + }, + { + "file": "packages/react/src/components/Persona/PersonaPresence/PersonaPresence.base.tsx", + "hash": "3062885056415174826" + }, + { + "file": "packages/react/src/components/Persona/PersonaPresence/PersonaPresence.styles.ts", + "hash": "6615263651250958481" + }, + { + "file": "packages/react/src/components/Persona/PersonaPresence/PersonaPresence.test.tsx", + "hash": "13226130009014815513" + }, + { + "file": "packages/react/src/components/Persona/PersonaPresence/PersonaPresence.tsx", + "hash": "9491698373175359234" + }, + { + "file": "packages/react/src/components/Persona/PersonaPresence/__snapshots__/PersonaPresence.test.tsx.snap", + "hash": "1987937457430225355" + }, + { + "file": "packages/react/src/components/Persona/PersonaPresence/index.ts", + "hash": "8712998843474566045" + }, + { + "file": "packages/react/src/components/Persona/__snapshots__/Persona.deprecated.test.tsx.snap", + "hash": "12606532779411858656" + }, + { + "file": "packages/react/src/components/Persona/__snapshots__/Persona.test.tsx.snap", + "hash": "5243408820705783769" + }, + { + "file": "packages/react/src/components/Persona/index.ts", + "hash": "1003635016468659877" + }, + { + "file": "packages/react/src/components/Persona/test-utils.tsx", + "hash": "18432891952579134324" + }, + { + "file": "packages/react/src/components/Pivot/Pivot.base.tsx", + "hash": "5254684007184867388" + }, + { + "file": "packages/react/src/components/Pivot/Pivot.deprecated.test.tsx", + "hash": "1235740737998705772" + }, + { + "file": "packages/react/src/components/Pivot/Pivot.styles.ts", + "hash": "9108562916062400261" + }, + { + "file": "packages/react/src/components/Pivot/Pivot.test.tsx", + "hash": "1862426908183434633" + }, + { + "file": "packages/react/src/components/Pivot/Pivot.tsx", + "hash": "5829419170269708419" + }, + { + "file": "packages/react/src/components/Pivot/Pivot.types.ts", + "hash": "15724983107723831286" + }, + { + "file": "packages/react/src/components/Pivot/PivotItem.tsx", + "hash": "5498227973895913176" + }, + { + "file": "packages/react/src/components/Pivot/PivotItem.types.ts", + "hash": "7463314133865753309" + }, + { + "file": "packages/react/src/components/Pivot/__snapshots__/Pivot.deprecated.test.tsx.snap", + "hash": "9350737731021987462" + }, + { + "file": "packages/react/src/components/Pivot/__snapshots__/Pivot.test.tsx.snap", + "hash": "14812844193113361128" + }, + { + "file": "packages/react/src/components/Pivot/index.ts", + "hash": "16401592313694217989" + }, + { + "file": "packages/react/src/components/Popup/Popup.test.tsx", + "hash": "14748219392463636319" + }, + { + "file": "packages/react/src/components/Popup/Popup.tsx", + "hash": "18303114733075754228" + }, + { + "file": "packages/react/src/components/Popup/Popup.types.ts", + "hash": "2644822833966833698" + }, + { + "file": "packages/react/src/components/Popup/index.ts", + "hash": "15938578186587982924" + }, + { + "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.base.tsx", + "hash": "2266128567453655067" + }, + { + "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.styles.ts", + "hash": "17437177184475748779" + }, + { + "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.test.tsx", + "hash": "13377810921948144940" + }, + { + "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.tsx", + "hash": "3338648644072271163" + }, + { + "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.types.ts", + "hash": "13275827929777402920" + }, + { + "file": "packages/react/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.test.tsx.snap", + "hash": "5669310949553554689" + }, + { + "file": "packages/react/src/components/ProgressIndicator/index.ts", + "hash": "16364455361019886446" + }, + { + "file": "packages/react/src/components/Rating/Rating.base.tsx", + "hash": "4565165120321522700" + }, + { + "file": "packages/react/src/components/Rating/Rating.styles.ts", + "hash": "9112171566781846387" + }, + { + "file": "packages/react/src/components/Rating/Rating.test.tsx", + "hash": "12019971281630417718" + }, + { + "file": "packages/react/src/components/Rating/Rating.tsx", + "hash": "8474775138709046972" + }, + { + "file": "packages/react/src/components/Rating/Rating.types.ts", + "hash": "3293957530885947735" + }, + { + "file": "packages/react/src/components/Rating/__snapshots__/Rating.test.tsx.snap", + "hash": "6878166199175042678" + }, + { + "file": "packages/react/src/components/Rating/index.ts", + "hash": "6936810521464100990" + }, + { + "file": "packages/react/src/components/ResizeGroup/ResizeGroup.base.tsx", + "hash": "9694591702737967514" + }, + { + "file": "packages/react/src/components/ResizeGroup/ResizeGroup.test.tsx", + "hash": "5245675499839808625" + }, + { + "file": "packages/react/src/components/ResizeGroup/ResizeGroup.tsx", + "hash": "11042089564242243766" + }, + { + "file": "packages/react/src/components/ResizeGroup/ResizeGroup.types.ts", + "hash": "18215672949674225534" + }, + { + "file": "packages/react/src/components/ResizeGroup/__snapshots__/ResizeGroup.test.tsx.snap", + "hash": "11336585111154751236" + }, + { + "file": "packages/react/src/components/ResizeGroup/index.ts", + "hash": "18030751737929359966" + }, + { + "file": "packages/react/src/components/ScrollablePane/ScrollablePane.base.tsx", + "hash": "4728891024798577999" + }, + { + "file": "packages/react/src/components/ScrollablePane/ScrollablePane.scss", + "hash": "12660556819721993651" + }, + { + "file": "packages/react/src/components/ScrollablePane/ScrollablePane.styles.ts", + "hash": "7630057771040368786" + }, + { + "file": "packages/react/src/components/ScrollablePane/ScrollablePane.test.tsx", + "hash": "5450045075671214421" + }, + { + "file": "packages/react/src/components/ScrollablePane/ScrollablePane.tsx", + "hash": "10278226015705813013" + }, + { + "file": "packages/react/src/components/ScrollablePane/ScrollablePane.types.ts", + "hash": "11149654521789685360" + }, + { + "file": "packages/react/src/components/ScrollablePane/__snapshots__/ScrollablePane.test.tsx.snap", + "hash": "11917452609133122703" + }, + { + "file": "packages/react/src/components/ScrollablePane/index.ts", + "hash": "9022712096012739667" + }, + { + "file": "packages/react/src/components/SearchBox/SearchBox.base.tsx", + "hash": "4225740635739479085" + }, + { + "file": "packages/react/src/components/SearchBox/SearchBox.styles.tsx", + "hash": "1901328636794627212" + }, + { + "file": "packages/react/src/components/SearchBox/SearchBox.test.tsx", + "hash": "15270693759819107024" + }, + { + "file": "packages/react/src/components/SearchBox/SearchBox.tsx", + "hash": "14815922271880527031" + }, + { + "file": "packages/react/src/components/SearchBox/SearchBox.types.ts", + "hash": "16561624650344526815" + }, + { + "file": "packages/react/src/components/SearchBox/__snapshots__/SearchBox.test.tsx.snap", + "hash": "5163262981591412955" + }, + { + "file": "packages/react/src/components/SearchBox/index.ts", + "hash": "2002340183405233581" + }, + { + "file": "packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.test.tsx", + "hash": "2439461074165366957" + }, + { + "file": "packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.tsx", + "hash": "15017942153576064679" + }, + { + "file": "packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.types.ts", + "hash": "13036270235408570430" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.scss", + "hash": "15475341105828219619" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.ts", + "hash": "15633592521000750806" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.tsx", + "hash": "14514987165749763434" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.types.ts", + "hash": "14366127583648771435" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss", + "hash": "758761801215317040" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.tsx", + "hash": "17437319372558202829" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.tsx", + "hash": "17756749329382603092" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.test.tsx", + "hash": "13657963705753195239" + }, + { + "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.tsx", + "hash": "2188525700728877068" + }, + { + "file": "packages/react/src/components/SelectedItemsList/__snapshots__/BaseSelectedItemsList.test.tsx.snap", + "hash": "17274296306189210980" + }, + { + "file": "packages/react/src/components/SelectedItemsList/index.ts", + "hash": "7595379961393666277" + }, + { + "file": "packages/react/src/components/Separator/Separator.base.tsx", + "hash": "17294625678770939029" + }, + { + "file": "packages/react/src/components/Separator/Separator.styles.ts", + "hash": "14230472610755643944" + }, + { + "file": "packages/react/src/components/Separator/Separator.test.tsx", + "hash": "7738872471754358071" + }, + { + "file": "packages/react/src/components/Separator/Separator.tsx", + "hash": "2708132967434374502" + }, + { + "file": "packages/react/src/components/Separator/Separator.types.ts", + "hash": "13040932608955788124" + }, + { + "file": "packages/react/src/components/Separator/index.ts", + "hash": "14575455021946241513" + }, + { + "file": "packages/react/src/components/Shimmer/Shimmer.base.tsx", + "hash": "622305100319727334" + }, + { + "file": "packages/react/src/components/Shimmer/Shimmer.styles.ts", + "hash": "7858803940928495535" + }, + { + "file": "packages/react/src/components/Shimmer/Shimmer.test.tsx", + "hash": "14192583860063774916" + }, + { + "file": "packages/react/src/components/Shimmer/Shimmer.tsx", + "hash": "1394717753894766880" + }, + { + "file": "packages/react/src/components/Shimmer/Shimmer.types.ts", + "hash": "17331228457676528659" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.base.tsx", + "hash": "10275032889626978683" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.ts", + "hash": "11420523654698134729" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.tsx", + "hash": "9694371307250105703" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.types.ts", + "hash": "1728577304450374260" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.tsx", + "hash": "18379310095005316743" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.ts", + "hash": "2545105839221331446" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.tsx", + "hash": "14250368054107805040" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.types.ts", + "hash": "7115051155111137833" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.base.tsx", + "hash": "78556124504108996" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.styles.ts", + "hash": "2064652991532358343" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.tsx", + "hash": "11476010222559961913" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.types.ts", + "hash": "2110669865470376426" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.base.tsx", + "hash": "11316009371793371654" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.styles.ts", + "hash": "16825660826402859755" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.tsx", + "hash": "6810202527433669183" + }, + { + "file": "packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.types.ts", + "hash": "18351243406956033223" + }, + { + "file": "packages/react/src/components/Shimmer/__snapshots__/Shimmer.test.tsx.snap", + "hash": "3185768282225296628" + }, + { + "file": "packages/react/src/components/Shimmer/index.ts", + "hash": "13927227349171452284" + }, + { + "file": "packages/react/src/components/Slider/Slider.base.tsx", + "hash": "15798451710094592561" + }, + { + "file": "packages/react/src/components/Slider/Slider.styles.ts", + "hash": "4607291680675548022" + }, + { + "file": "packages/react/src/components/Slider/Slider.test.tsx", + "hash": "8613310415484639048" + }, + { + "file": "packages/react/src/components/Slider/Slider.tsx", + "hash": "7410622987581707582" + }, + { + "file": "packages/react/src/components/Slider/Slider.types.ts", + "hash": "14952151059140667704" + }, + { + "file": "packages/react/src/components/Slider/__snapshots__/Slider.test.tsx.snap", + "hash": "9285732807236239098" + }, + { + "file": "packages/react/src/components/Slider/index.ts", + "hash": "16670111655346245754" + }, + { + "file": "packages/react/src/components/Slider/useSlider.ts", + "hash": "12900564936250592122" + }, + { + "file": "packages/react/src/components/SpinButton/SpinButton.base.tsx", + "hash": "18058269695188263893" + }, + { + "file": "packages/react/src/components/SpinButton/SpinButton.styles.ts", + "hash": "9802419801197429803" + }, + { + "file": "packages/react/src/components/SpinButton/SpinButton.test.tsx", + "hash": "1102850678003036987" + }, + { + "file": "packages/react/src/components/SpinButton/SpinButton.tsx", + "hash": "5507489409647508695" + }, + { + "file": "packages/react/src/components/SpinButton/SpinButton.types.ts", + "hash": "2703760200830686057" + }, + { + "file": "packages/react/src/components/SpinButton/__snapshots__/SpinButton.test.tsx.snap", + "hash": "12546769869747196784" + }, + { + "file": "packages/react/src/components/SpinButton/index.ts", + "hash": "6778975452233565727" + }, + { + "file": "packages/react/src/components/Spinner/Spinner.base.tsx", + "hash": "7258097721326686377" + }, + { + "file": "packages/react/src/components/Spinner/Spinner.styles.tsx", + "hash": "716100486567492388" + }, + { + "file": "packages/react/src/components/Spinner/Spinner.test.tsx", + "hash": "12060499305856970384" + }, + { + "file": "packages/react/src/components/Spinner/Spinner.tsx", + "hash": "3200211062084468851" + }, + { + "file": "packages/react/src/components/Spinner/Spinner.types.ts", + "hash": "1544606461056547194" + }, + { + "file": "packages/react/src/components/Spinner/__snapshots__/Spinner.test.tsx.snap", + "hash": "10255693095285678582" + }, + { + "file": "packages/react/src/components/Spinner/index.ts", + "hash": "1855220178076017776" + }, + { + "file": "packages/react/src/components/Stack/Stack.styles.ts", + "hash": "16321254993662249061" + }, + { + "file": "packages/react/src/components/Stack/Stack.test.tsx", + "hash": "11883216989281561254" + }, + { + "file": "packages/react/src/components/Stack/Stack.tsx", + "hash": "4140006760718240707" + }, + { + "file": "packages/react/src/components/Stack/Stack.types.ts", + "hash": "13977158692936683168" + }, + { + "file": "packages/react/src/components/Stack/StackItem/StackItem.styles.ts", + "hash": "10908263818739168703" + }, + { + "file": "packages/react/src/components/Stack/StackItem/StackItem.test.tsx", + "hash": "15972135318103519144" + }, + { + "file": "packages/react/src/components/Stack/StackItem/StackItem.tsx", + "hash": "15838468526064014217" + }, + { + "file": "packages/react/src/components/Stack/StackItem/StackItem.types.ts", + "hash": "3129159544618735975" + }, + { + "file": "packages/react/src/components/Stack/StackUtils.test.ts", + "hash": "521690037370632650" + }, + { + "file": "packages/react/src/components/Stack/StackUtils.ts", + "hash": "12286636882102513809" + }, + { + "file": "packages/react/src/components/Stack/__snapshots__/Stack.test.tsx.snap", + "hash": "12864004073364256598" + }, + { + "file": "packages/react/src/components/Stack/index.ts", + "hash": "1979466436394549136" + }, + { + "file": "packages/react/src/components/Sticky/Sticky.test.tsx", + "hash": "483009900348746854" + }, + { + "file": "packages/react/src/components/Sticky/Sticky.tsx", + "hash": "4820400588900345897" + }, + { + "file": "packages/react/src/components/Sticky/Sticky.types.ts", + "hash": "3615404119608318992" + }, + { + "file": "packages/react/src/components/Sticky/index.ts", + "hash": "2542216627679221864" + }, + { + "file": "packages/react/src/components/Sticky/util/comparison.test.ts", + "hash": "14096854823836155200" + }, + { + "file": "packages/react/src/components/Sticky/util/comparison.ts", + "hash": "4588257025943731766" + }, + { + "file": "packages/react/src/components/Sticky/util/scroll.test.ts", + "hash": "12778441671228486454" + }, + { + "file": "packages/react/src/components/Sticky/util/scroll.ts", + "hash": "7073818532586250683" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.base.tsx", + "hash": "4877535088844461282" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.styles.ts", + "hash": "1746093924526525911" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.tsx", + "hash": "12490850924711508436" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.types.ts", + "hash": "11755498344911849810" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.base.tsx", + "hash": "15148770286190928984" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.styles.ts", + "hash": "10927866444432786096" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.test.tsx", + "hash": "14920126625218364277" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.tsx", + "hash": "11572086435543663291" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.types.ts", + "hash": "804021372959073378" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/__snapshots__/SwatchColorPicker.test.tsx.snap", + "hash": "9703469669882626284" + }, + { + "file": "packages/react/src/components/SwatchColorPicker/index.ts", + "hash": "13458739188607801516" + }, + { + "file": "packages/react/src/components/TeachingBubble/TeachingBubble.base.tsx", + "hash": "11960677283213387231" + }, + { + "file": "packages/react/src/components/TeachingBubble/TeachingBubble.deprecated.test.tsx", + "hash": "11992566066080602646" + }, + { + "file": "packages/react/src/components/TeachingBubble/TeachingBubble.styles.ts", + "hash": "15359886714365052297" + }, + { + "file": "packages/react/src/components/TeachingBubble/TeachingBubble.test.tsx", + "hash": "13726719835642907185" + }, + { + "file": "packages/react/src/components/TeachingBubble/TeachingBubble.ts", + "hash": "2444446477830155936" + }, + { + "file": "packages/react/src/components/TeachingBubble/TeachingBubble.types.ts", + "hash": "16828074886234505184" + }, + { + "file": "packages/react/src/components/TeachingBubble/TeachingBubbleContent.base.tsx", + "hash": "16413351954180758506" + }, + { + "file": "packages/react/src/components/TeachingBubble/TeachingBubbleContent.ts", + "hash": "14936507102622600629" + }, + { + "file": "packages/react/src/components/TeachingBubble/__snapshots__/TeachingBubble.deprecated.test.tsx.snap", + "hash": "13317529128477000448" + }, + { + "file": "packages/react/src/components/TeachingBubble/__snapshots__/TeachingBubble.test.tsx.snap", + "hash": "11608354909874598053" + }, + { + "file": "packages/react/src/components/TeachingBubble/index.ts", + "hash": "5537273073495594935" + }, + { + "file": "packages/react/src/components/Text/Text.styles.ts", + "hash": "16557720552861338265" + }, + { + "file": "packages/react/src/components/Text/Text.test.tsx", + "hash": "10229486515428514407" + }, + { + "file": "packages/react/src/components/Text/Text.ts", + "hash": "18117337464299047121" + }, + { + "file": "packages/react/src/components/Text/Text.types.tsx", + "hash": "17642157339175361608" + }, + { + "file": "packages/react/src/components/Text/Text.view.tsx", + "hash": "10365127091762030027" + }, + { + "file": "packages/react/src/components/Text/__snapshots__/Text.test.tsx.snap", + "hash": "9078894318583755413" + }, + { + "file": "packages/react/src/components/Text/index.ts", + "hash": "230878242475216758" + }, + { + "file": "packages/react/src/components/TextField/MaskedTextField/MaskedTextField.test.tsx", + "hash": "14177584564035837064" + }, + { + "file": "packages/react/src/components/TextField/MaskedTextField/MaskedTextField.tsx", + "hash": "9197609096631929679" + }, + { + "file": "packages/react/src/components/TextField/MaskedTextField/__snapshots__/MaskedTextField.test.tsx.snap", + "hash": "2368489911375711210" + }, + { + "file": "packages/react/src/components/TextField/MaskedTextField/inputMask.test.ts", + "hash": "12837909525862283635" + }, + { + "file": "packages/react/src/components/TextField/MaskedTextField/inputMask.ts", + "hash": "3204972971904546695" + }, + { + "file": "packages/react/src/components/TextField/TextField.base.tsx", + "hash": "3135520502977693022" + }, + { + "file": "packages/react/src/components/TextField/TextField.styles.tsx", + "hash": "16053279269199542379" + }, + { + "file": "packages/react/src/components/TextField/TextField.test.tsx", + "hash": "12025014664871757235" + }, + { + "file": "packages/react/src/components/TextField/TextField.ts", + "hash": "6203821991228467732" + }, + { + "file": "packages/react/src/components/TextField/TextField.types.ts", + "hash": "9000956738092230779" + }, + { + "file": "packages/react/src/components/TextField/__snapshots__/TextField.test.tsx.snap", + "hash": "16446484854028579884" + }, + { + "file": "packages/react/src/components/TextField/index.ts", + "hash": "9634891770694366652" + }, + { + "file": "packages/react/src/components/ThemeGenerator/IThemeRules.ts", + "hash": "343349790449113474" + }, + { + "file": "packages/react/src/components/ThemeGenerator/IThemeSlotRule.ts", + "hash": "2798819573170736586" + }, + { + "file": "packages/react/src/components/ThemeGenerator/ThemeGenerator.ts", + "hash": "4318009942218972946" + }, + { + "file": "packages/react/src/components/ThemeGenerator/ThemeRulesStandard.ts", + "hash": "15460702558815436477" + }, + { + "file": "packages/react/src/components/ThemeGenerator/index.ts", + "hash": "2662606445442538581" + }, + { + "file": "packages/react/src/components/TimePicker/TimePicker.test.tsx", + "hash": "4430602795911846347" + }, + { + "file": "packages/react/src/components/TimePicker/TimePicker.tsx", + "hash": "14587751084581473926" + }, + { + "file": "packages/react/src/components/TimePicker/TimePicker.types.ts", + "hash": "4871830345667101562" + }, + { + "file": "packages/react/src/components/TimePicker/__snapshots__/TimePicker.test.tsx.snap", + "hash": "1192043543094055950" + }, + { + "file": "packages/react/src/components/TimePicker/index.ts", + "hash": "4043660638174848621" + }, + { + "file": "packages/react/src/components/Toggle/Toggle.base.tsx", + "hash": "17041455243236331064" + }, + { + "file": "packages/react/src/components/Toggle/Toggle.deprecated.test.tsx", + "hash": "16420708565250016535" + }, + { + "file": "packages/react/src/components/Toggle/Toggle.styles.ts", + "hash": "10235414160628441935" + }, + { + "file": "packages/react/src/components/Toggle/Toggle.test.tsx", + "hash": "4749697846961425208" + }, + { + "file": "packages/react/src/components/Toggle/Toggle.tsx", + "hash": "13754746495419401585" + }, + { + "file": "packages/react/src/components/Toggle/Toggle.types.ts", + "hash": "10425114743254470105" + }, + { + "file": "packages/react/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap", + "hash": "14294764514930879696" + }, + { + "file": "packages/react/src/components/Toggle/index.ts", + "hash": "10198894087612340427" + }, + { + "file": "packages/react/src/components/Tooltip/Tooltip.base.tsx", + "hash": "14315739255581701896" + }, + { + "file": "packages/react/src/components/Tooltip/Tooltip.styles.ts", + "hash": "14364410225416825987" + }, + { + "file": "packages/react/src/components/Tooltip/Tooltip.test.tsx", + "hash": "6829170781879921284" + }, + { + "file": "packages/react/src/components/Tooltip/Tooltip.tsx", + "hash": "17811006348031671798" + }, + { + "file": "packages/react/src/components/Tooltip/Tooltip.types.ts", + "hash": "2660943847897709290" + }, + { + "file": "packages/react/src/components/Tooltip/TooltipHost.base.tsx", + "hash": "4222571360856747469" + }, + { + "file": "packages/react/src/components/Tooltip/TooltipHost.styles.ts", + "hash": "7084784521266667387" + }, + { + "file": "packages/react/src/components/Tooltip/TooltipHost.test.tsx", + "hash": "9044319496664347486" + }, + { + "file": "packages/react/src/components/Tooltip/TooltipHost.ts", + "hash": "15304936019843856429" + }, + { + "file": "packages/react/src/components/Tooltip/TooltipHost.types.ts", + "hash": "15670380784192667360" + }, + { + "file": "packages/react/src/components/Tooltip/__snapshots__/Tooltip.test.tsx.snap", + "hash": "2529886458703393903" + }, + { + "file": "packages/react/src/components/Tooltip/__snapshots__/TooltipHost.test.tsx.snap", + "hash": "13426358771837104817" + }, + { + "file": "packages/react/src/components/Tooltip/index.ts", + "hash": "13628541413104800808" + }, + { + "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.base.tsx", + "hash": "10662405248411854209" + }, + { + "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.styles.ts", + "hash": "17655471458969559384" + }, + { + "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.test.tsx", + "hash": "1018673177354104156" + }, + { + "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.tsx", + "hash": "14453694537649714043" + }, + { + "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.types.ts", + "hash": "14595811500325100502" + }, + { + "file": "packages/react/src/components/WeeklyDayPicker/__snapshots__/WeeklyDayPicker.test.tsx.snap", + "hash": "2528983063086393230" + }, + { + "file": "packages/react/src/components/WeeklyDayPicker/defaults.ts", + "hash": "11377986538922612005" + }, + { + "file": "packages/react/src/components/WeeklyDayPicker/index.ts", + "hash": "6171109175880934046" + }, + { + "file": "packages/react/src/components/pickers/AutoFill/BaseAutoFill.tsx", + "hash": "7343802070330089599" + }, + { + "file": "packages/react/src/components/pickers/AutoFill/BaseAutoFill.types.ts", + "hash": "6487201084997771499" + }, + { + "file": "packages/react/src/components/pickers/BasePicker.scss", + "hash": "2254284533524560358" + }, + { + "file": "packages/react/src/components/pickers/BasePicker.styles.ts", + "hash": "3491115508506418137" + }, + { + "file": "packages/react/src/components/pickers/BasePicker.test.tsx", + "hash": "15043266091913983080" + }, + { + "file": "packages/react/src/components/pickers/BasePicker.tsx", + "hash": "4054535122222800596" + }, + { + "file": "packages/react/src/components/pickers/BasePicker.types.ts", + "hash": "717340499218281756" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePicker.test.tsx", + "hash": "17876839589477737141" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePicker.tsx", + "hash": "16286230654566725538" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.ts", + "hash": "10855489273418432861" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.tsx", + "hash": "9083961797742224049" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.types.ts", + "hash": "16912167381812988428" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.ts", + "hash": "4670107728068065016" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.tsx", + "hash": "15063617562799640000" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PickerItemsDefault.scss", + "hash": "6384005023815280495" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SelectedItemDefault.tsx", + "hash": "15159392081114259751" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.scss", + "hash": "5379873812562665385" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx", + "hash": "9441381518993515989" + }, + { + "file": "packages/react/src/components/pickers/PeoplePicker/__snapshots__/PeoplePicker.test.tsx.snap", + "hash": "1340262275578671623" + }, + { + "file": "packages/react/src/components/pickers/PickerItem.types.ts", + "hash": "5019879866432474699" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/Suggestions.scss", + "hash": "7217102423921295318" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/Suggestions.styles.ts", + "hash": "13383952703102640475" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/Suggestions.test.tsx", + "hash": "15081865941454159082" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/Suggestions.tsx", + "hash": "14271707022680072031" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/Suggestions.types.ts", + "hash": "13968761647371279988" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/SuggestionsController.ts", + "hash": "4740113206090778515" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/SuggestionsItem.styles.ts", + "hash": "9617715724013431436" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/SuggestionsItem.tsx", + "hash": "12808779264432058945" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/SuggestionsItem.types.ts", + "hash": "3287646201182813027" + }, + { + "file": "packages/react/src/components/pickers/Suggestions/__snapshots__/Suggestions.test.tsx.snap", + "hash": "13924503482300913537" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/TagItem.styles.ts", + "hash": "17090589944968694753" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/TagItem.test.tsx", + "hash": "2142568253152648703" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/TagItem.tsx", + "hash": "17339491415717015901" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/TagItemSuggestion.styles.ts", + "hash": "12290923035788842340" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/TagItemSuggestion.tsx", + "hash": "3602386350156259409" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/TagPicker.test.tsx", + "hash": "10483533162038956926" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/TagPicker.tsx", + "hash": "13849646905761086680" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/TagPicker.types.ts", + "hash": "2960981203569246534" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/__snapshots__/TagItem.test.tsx.snap", + "hash": "7121888399084993878" + }, + { + "file": "packages/react/src/components/pickers/TagPicker/__snapshots__/TagPicker.test.tsx.snap", + "hash": "10689900816861068695" + }, + { + "file": "packages/react/src/components/pickers/__snapshots__/BasePicker.test.tsx.snap", + "hash": "6231335031253357456" + }, + { + "file": "packages/react/src/components/pickers/index.ts", + "hash": "6869692424936090453" + }, + { + "file": "packages/react/src/index.bundle.ts", + "hash": "15702876611017698133" + }, + { + "file": "packages/react/src/index.ts", + "hash": "3984584751531391776" + }, + { + "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.base.tsx", + "hash": "13048871594096070691" + }, + { + "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.styles.ts", + "hash": "10672241857310378691" + }, + { + "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.test.tsx", + "hash": "2437098213636126623" + }, + { + "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.tsx", + "hash": "5275609746550163481" + }, + { + "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.types.ts", + "hash": "7471614519619311838" + }, + { + "file": "packages/react/src/utilities/ButtonGrid/ButtonGridCell.tsx", + "hash": "8863275249735168504" + }, + { + "file": "packages/react/src/utilities/ButtonGrid/ButtonGridCell.types.ts", + "hash": "12269526535022680538" + }, + { + "file": "packages/react/src/utilities/ButtonGrid/index.ts", + "hash": "5606101914026628430" + }, + { + "file": "packages/react/src/utilities/DraggableZone/DraggableZone.styles.ts", + "hash": "7360859405718713398" + }, + { + "file": "packages/react/src/utilities/DraggableZone/DraggableZone.tsx", + "hash": "14662144876543203208" + }, + { + "file": "packages/react/src/utilities/DraggableZone/DraggableZone.types.ts", + "hash": "5286539702076790666" + }, + { + "file": "packages/react/src/utilities/DraggableZone/index.ts", + "hash": "991165440448171187" + }, + { + "file": "packages/react/src/utilities/MenuContext/MenuContext.ts", + "hash": "13949440192832242509" + }, + { + "file": "packages/react/src/utilities/MenuContext/index.ts", + "hash": "4195339341740520128" + }, + { + "file": "packages/react/src/utilities/MenuContext/types.ts", + "hash": "601766763771540766" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/README.md", + "hash": "17637903867269031542" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/ThemeContext.ts", + "hash": "13892208870743977838" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/ThemeProvider.test.tsx", + "hash": "13679567931341185936" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/ThemeProvider.tsx", + "hash": "6179047605470404754" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/ThemeProvider.types.ts", + "hash": "17118972086321263161" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/__snapshots__/ThemeProvider.test.tsx.snap", + "hash": "9894426767005176096" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/index.ts", + "hash": "15095908332300329015" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/makeStyles.test.tsx", + "hash": "13703934544629777309" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/makeStyles.ts", + "hash": "13518684396676587434" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/renderThemeProvider.tsx", + "hash": "7031715562059584568" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/styleRenderers/mergeStylesRenderer.tsx", + "hash": "3592602241860269066" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/styleRenderers/types.ts", + "hash": "10071936263955037148" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/useTheme.ts", + "hash": "7002881355475012640" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/useThemeProvider.tsx", + "hash": "16631113233994729461" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/useThemeProviderClasses.tsx", + "hash": "5375575044419126164" + }, + { + "file": "packages/react/src/utilities/ThemeProvider/useThemeProviderState.tsx", + "hash": "17027141080033889589" + }, + { + "file": "packages/react/src/utilities/color/_rgbaOrHexString.ts", + "hash": "670629510036329557" + }, + { + "file": "packages/react/src/utilities/color/clamp.ts", + "hash": "8432403036522356124" + }, + { + "file": "packages/react/src/utilities/color/colors.test.ts", + "hash": "6514813408979578421" + }, + { + "file": "packages/react/src/utilities/color/colors.ts", + "hash": "14938309597260952164" + }, + { + "file": "packages/react/src/utilities/color/consts.ts", + "hash": "9659661416934864320" + }, + { + "file": "packages/react/src/utilities/color/correctHSV.ts", + "hash": "14305033368774440121" + }, + { + "file": "packages/react/src/utilities/color/correctHex.ts", + "hash": "14248417825592490956" + }, + { + "file": "packages/react/src/utilities/color/correctRGB.ts", + "hash": "15564249153975134575" + }, + { + "file": "packages/react/src/utilities/color/cssColor.ts", + "hash": "17411936481260342773" + }, + { + "file": "packages/react/src/utilities/color/getColorFromHSV.ts", + "hash": "5677659457274240736" + }, + { + "file": "packages/react/src/utilities/color/getColorFromRGBA.ts", + "hash": "1765799052939282201" + }, + { + "file": "packages/react/src/utilities/color/getColorFromString.ts", + "hash": "6313423634844260228" + }, + { + "file": "packages/react/src/utilities/color/getFullColorString.ts", + "hash": "3471378158992256582" + }, + { + "file": "packages/react/src/utilities/color/hsl2hsv.ts", + "hash": "6244023491766357157" + }, + { + "file": "packages/react/src/utilities/color/hsl2rgb.ts", + "hash": "15569236605928242144" + }, + { + "file": "packages/react/src/utilities/color/hsv2hex.ts", + "hash": "15287927800285061921" + }, + { + "file": "packages/react/src/utilities/color/hsv2hsl.ts", + "hash": "10595103910974750850" + }, + { + "file": "packages/react/src/utilities/color/hsv2rgb.ts", + "hash": "17472983733505672226" + }, + { + "file": "packages/react/src/utilities/color/index.ts", + "hash": "915658032881491641" + }, + { + "file": "packages/react/src/utilities/color/interfaces.ts", + "hash": "2432356879188360615" + }, + { + "file": "packages/react/src/utilities/color/rgb2hex.ts", + "hash": "12975140826208974199" + }, + { + "file": "packages/react/src/utilities/color/rgb2hsv.ts", + "hash": "5684905026209857335" + }, + { + "file": "packages/react/src/utilities/color/shades.ts", + "hash": "6374966934341090657" + }, + { + "file": "packages/react/src/utilities/color/updateA.ts", + "hash": "14416377082519676806" + }, + { + "file": "packages/react/src/utilities/color/updateH.ts", + "hash": "10044554694569887243" + }, + { + "file": "packages/react/src/utilities/color/updateRGB.ts", + "hash": "11322026034603094475" + }, + { + "file": "packages/react/src/utilities/color/updateSV.ts", + "hash": "15989758908719986538" + }, + { + "file": "packages/react/src/utilities/color/updateT.ts", + "hash": "11425172802903888793" + }, + { + "file": "packages/react/src/utilities/contextualMenu/contextualMenuUtility.test.ts", + "hash": "11775032268395869200" + }, + { + "file": "packages/react/src/utilities/contextualMenu/contextualMenuUtility.ts", + "hash": "6439318017315226732" + }, + { + "file": "packages/react/src/utilities/contextualMenu/index.ts", + "hash": "14561010750715978131" + }, + { + "file": "packages/react/src/utilities/decorators/BaseDecorator.ts", + "hash": "12680571413768582546" + }, + { + "file": "packages/react/src/utilities/decorators/withContainsFocus.tsx", + "hash": "4199916114998813247" + }, + { + "file": "packages/react/src/utilities/decorators/withResponsiveMode.test.tsx", + "hash": "15396955314160038481" + }, + { + "file": "packages/react/src/utilities/decorators/withResponsiveMode.tsx", + "hash": "17698455087137585448" + }, + { + "file": "packages/react/src/utilities/decorators/withViewport.tsx", + "hash": "17941994249211471417" + }, + { + "file": "packages/react/src/utilities/dragdrop/DragDropHelper.tsx", + "hash": "2030077348553558869" + }, + { + "file": "packages/react/src/utilities/dragdrop/index.ts", + "hash": "3437101347851446346" + }, + { + "file": "packages/react/src/utilities/dragdrop/interfaces.ts", + "hash": "7577495661441722234" + }, + { + "file": "packages/react/src/utilities/groupedList/GroupedListUtility.test.tsx", + "hash": "16326497141718659536" + }, + { + "file": "packages/react/src/utilities/groupedList/GroupedListUtility.tsx", + "hash": "9856016773806578336" + }, + { + "file": "packages/react/src/utilities/hooks/useResponsiveMode.test.tsx", + "hash": "5869527387854552719" + }, + { + "file": "packages/react/src/utilities/hooks/useResponsiveMode.tsx", + "hash": "8652722068210931815" + }, + { + "file": "packages/react/src/utilities/keytips/IKeytipTransitionKey.test.ts", + "hash": "4487932675350890302" + }, + { + "file": "packages/react/src/utilities/keytips/IKeytipTransitionKey.ts", + "hash": "3993741686850747808" + }, + { + "file": "packages/react/src/utilities/keytips/KeytipConfig.test.ts", + "hash": "16228241456219329106" + }, + { + "file": "packages/react/src/utilities/keytips/KeytipConfig.ts", + "hash": "7633671420559248320" + }, + { + "file": "packages/react/src/utilities/keytips/KeytipConstants.ts", + "hash": "11846497808787026280" + }, + { + "file": "packages/react/src/utilities/keytips/KeytipManager.test.tsx", + "hash": "17114794707717858153" + }, + { + "file": "packages/react/src/utilities/keytips/KeytipManager.ts", + "hash": "4203378422840049741" + }, + { + "file": "packages/react/src/utilities/keytips/KeytipUtils.test.ts", + "hash": "7804697362348876619" + }, + { + "file": "packages/react/src/utilities/keytips/KeytipUtils.ts", + "hash": "3236660558323138655" + }, + { + "file": "packages/react/src/utilities/keytips/index.ts", + "hash": "6578652756422328106" + }, + { + "file": "packages/react/src/utilities/observeResize.ts", + "hash": "2332028751791908020" + }, + { + "file": "packages/react/src/utilities/positioning/index.ts", + "hash": "13313221551798480810" + }, + { + "file": "packages/react/src/utilities/positioning/positioning.test.ts", + "hash": "12108737569186708694" + }, + { + "file": "packages/react/src/utilities/positioning/positioning.ts", + "hash": "2267803550900081928" + }, + { + "file": "packages/react/src/utilities/positioning/positioning.types.ts", + "hash": "1308506524023896539" + }, + { + "file": "packages/react/src/utilities/positioning.ts", + "hash": "7688065479262789318" + }, + { + "file": "packages/react/src/utilities/selectableOption/SelectableDroppableText.types.ts", + "hash": "9756133308604085986" + }, + { + "file": "packages/react/src/utilities/selectableOption/SelectableOption.ts", + "hash": "10362914716162970193" + }, + { + "file": "packages/react/src/utilities/selectableOption/SelectableOption.types.ts", + "hash": "539190171132149946" + }, + { + "file": "packages/react/src/utilities/selectableOption/index.ts", + "hash": "14391316765249285599" + }, + { + "file": "packages/react/src/utilities/selection/Selection.ts", + "hash": "15273105317210853787" + }, + { + "file": "packages/react/src/utilities/selection/SelectionZone.test.tsx", + "hash": "9021204914729111832" + }, + { + "file": "packages/react/src/utilities/selection/SelectionZone.tsx", + "hash": "8379252325004428129" + }, + { + "file": "packages/react/src/utilities/selection/index.ts", + "hash": "4368398702750911810" + }, + { + "file": "packages/react/src/utilities/selection/interfaces.ts", + "hash": "4575419091812881390" + }, + { + "file": "packages/react/src/utilities/useOverflow.ts", + "hash": "17763233002228636342" + }, + { + "file": "packages/react/src/version.ts", + "hash": "3619079259107913232" + }, + { + "file": "packages/react/tsconfig.json", + "hash": "5170099299450870280" + }, + { + "file": "packages/react/webpack.codepen.config.js", + "hash": "7053689822501882700" + }, + { + "file": "packages/react/webpack.config.js", + "hash": "7917211140041849215" + }, + { + "file": "packages/react/webpack.mf.config.js", + "hash": "14493054853418434433" + } + ], + "@fluentui/foundation-legacy": [ + { + "file": "packages/foundation-legacy/.eslintrc.json", + "hash": "7788135779233596637" + }, + { + "file": "packages/foundation-legacy/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/foundation-legacy/CHANGELOG.json", + "hash": "11298518728473754760" + }, + { + "file": "packages/foundation-legacy/CHANGELOG.md", + "hash": "16846161063283363485" + }, + { + "file": "packages/foundation-legacy/LICENSE", + "hash": "13685109437677902912" + }, + { + "file": "packages/foundation-legacy/README.md", + "hash": "15150879100026194024" + }, + { + "file": "packages/foundation-legacy/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/foundation-legacy/config/tests.js", + "hash": "14311629952979925442" + }, + { + "file": "packages/foundation-legacy/etc/foundation-legacy.api.md", + "hash": "14544843647228988854" + }, + { + "file": "packages/foundation-legacy/jest.config.js", + "hash": "8193037916930093299" + }, + { + "file": "packages/foundation-legacy/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/foundation-legacy/package.json", + "hash": "13399846164496288089", + "deps": [ + "@fluentui/merge-styles", + "@fluentui/set-version", + "@fluentui/style-utilities", + "@fluentui/utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/jest-serializer-merge-styles", + "npm:react-hooks-testing-library", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/foundation-legacy/project.json", + "hash": "11276530119421788355" + }, + { + "file": "packages/foundation-legacy/src/IComponent.ts", + "hash": "12873869061209405696" + }, + { + "file": "packages/foundation-legacy/src/IHTMLSlots.ts", + "hash": "7155527235082397630" + }, + { + "file": "packages/foundation-legacy/src/ISlots.ts", + "hash": "14464439662037354785" + }, + { + "file": "packages/foundation-legacy/src/ThemeProvider.tsx", + "hash": "9773670166953555244" + }, + { + "file": "packages/foundation-legacy/src/__snapshots__/slots.test.tsx.snap", + "hash": "2934915321740022132" + }, + { + "file": "packages/foundation-legacy/src/createComponent.test.tsx", + "hash": "15652826177782635176" + }, + { + "file": "packages/foundation-legacy/src/createComponent.tsx", + "hash": "8094359274865822450" + }, + { + "file": "packages/foundation-legacy/src/hooks/controlled.test.tsx", + "hash": "12333211994600071919" + }, + { + "file": "packages/foundation-legacy/src/hooks/controlled.ts", + "hash": "3122361485496884833" + }, + { + "file": "packages/foundation-legacy/src/hooks/index.ts", + "hash": "9409545618871287298" + }, + { + "file": "packages/foundation-legacy/src/index.ts", + "hash": "12930357685631545172" + }, + { + "file": "packages/foundation-legacy/src/next/IComponent.ts", + "hash": "8757900071418225654" + }, + { + "file": "packages/foundation-legacy/src/next/ISlots.ts", + "hash": "4759905666795430527" + }, + { + "file": "packages/foundation-legacy/src/next/composed.test.tsx", + "hash": "479587016516331393" + }, + { + "file": "packages/foundation-legacy/src/next/composed.tsx", + "hash": "10226147199765955542" + }, + { + "file": "packages/foundation-legacy/src/slots.test.tsx", + "hash": "7249480130106203402" + }, + { + "file": "packages/foundation-legacy/src/slots.tsx", + "hash": "7288443331153031485" + }, + { + "file": "packages/foundation-legacy/src/utilities.ts", + "hash": "14062945912928854747" + }, + { + "file": "packages/foundation-legacy/src/version.ts", + "hash": "14340592035898007548" + }, + { + "file": "packages/foundation-legacy/tsconfig.json", + "hash": "3335700563706807422" + }, + { + "file": "packages/foundation-legacy/webpack.config.js", + "hash": "9200631243869629539" + } + ], + "@fluentui/react-divider": [ + { + "file": "packages/react-components/react-divider/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-divider/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-divider/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-divider/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-divider/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-divider/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-divider/CHANGELOG.json", + "hash": "13479079640864241012" + }, + { + "file": "packages/react-components/react-divider/CHANGELOG.md", + "hash": "1395793154130333585" + }, + { + "file": "packages/react-components/react-divider/LICENSE", + "hash": "14023817589098421944" + }, + { + "file": "packages/react-components/react-divider/README.md", + "hash": "4056766105974983014" + }, + { + "file": "packages/react-components/react-divider/bundle-size/Divider.fixture.js", + "hash": "11373332966181672710" + }, + { + "file": "packages/react-components/react-divider/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-divider/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-divider/docs/MIGRATION.md", + "hash": "1643705267251793566" + }, + { + "file": "packages/react-components/react-divider/docs/Spec.md", + "hash": "10507791707433600269" + }, + { + "file": "packages/react-components/react-divider/etc/react-divider.api.md", + "hash": "16630984229525847963" + }, + { + "file": "packages/react-components/react-divider/jest.config.js", + "hash": "1152927763039745529" + }, + { + "file": "packages/react-components/react-divider/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-divider/package.json", + "hash": "414161679037595975", + "deps": [ + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-divider/project.json", + "hash": "12787666147608019291" + }, + { + "file": "packages/react-components/react-divider/src/Divider.ts", + "hash": "11741977117356417348" + }, + { + "file": "packages/react-components/react-divider/src/components/Divider/Divider.test.tsx", + "hash": "3056478946647445040" + }, + { + "file": "packages/react-components/react-divider/src/components/Divider/Divider.tsx", + "hash": "9130488984128699236" + }, + { + "file": "packages/react-components/react-divider/src/components/Divider/Divider.types.ts", + "hash": "13344028649484127587" + }, + { + "file": "packages/react-components/react-divider/src/components/Divider/__snapshots__/Divider.test.tsx.snap", + "hash": "8915016820289301301" + }, + { + "file": "packages/react-components/react-divider/src/components/Divider/index.ts", + "hash": "8553978515837008839" + }, + { + "file": "packages/react-components/react-divider/src/components/Divider/renderDivider.tsx", + "hash": "10546145220103482807" + }, + { + "file": "packages/react-components/react-divider/src/components/Divider/useDivider.ts", + "hash": "8203516345352424438" + }, + { + "file": "packages/react-components/react-divider/src/components/Divider/useDividerStyles.styles.ts", + "hash": "2052352461363498101" + }, + { + "file": "packages/react-components/react-divider/src/index.ts", + "hash": "12277375761739938933" + }, + { + "file": "packages/react-components/react-divider/src/testing/isConformant.ts", + "hash": "17159661999478583888" + }, + { + "file": "packages/react-components/react-divider/stories/Divider/DividerAlignContent.stories.tsx", + "hash": "15576400069782630240" + }, + { + "file": "packages/react-components/react-divider/stories/Divider/DividerAppearance.stories.tsx", + "hash": "14036585423451622453" + }, + { + "file": "packages/react-components/react-divider/stories/Divider/DividerCustomStyles.stories.tsx", + "hash": "6179818489606984873" + }, + { + "file": "packages/react-components/react-divider/stories/Divider/DividerDefault.stories.tsx", + "hash": "5883094048084295487" + }, + { + "file": "packages/react-components/react-divider/stories/Divider/DividerDescription.md", + "hash": "1060509776422159278" + }, + { + "file": "packages/react-components/react-divider/stories/Divider/DividerInset.stories.tsx", + "hash": "11405478731423348346" + }, + { + "file": "packages/react-components/react-divider/stories/Divider/DividerVertical.stories.tsx", + "hash": "16290598666283219629" + }, + { + "file": "packages/react-components/react-divider/stories/Divider/index.stories.tsx", + "hash": "17125349910069173416" + }, + { + "file": "packages/react-components/react-divider/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-divider/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-divider/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-test-ssr": [ + { + "file": "scripts/test-ssr/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/test-ssr/README.md", + "hash": "12699687466976303239" + }, + { + "file": "scripts/test-ssr/bin/test-ssr.js", + "hash": "8805610837379847465" + }, + { + "file": "scripts/test-ssr/jest.config.js", + "hash": "11527576380239430971" + }, + { + "file": "scripts/test-ssr/package.json", + "hash": "5757712170384653205", + "deps": ["@fluentui/scripts-puppeteer", "@fluentui/scripts-ts-node"] + }, + { + "file": "scripts/test-ssr/project.json", + "hash": "8607452646844129216" + }, + { + "file": "scripts/test-ssr/src/cli.ts", + "hash": "9681510604885864279" + }, + { + "file": "scripts/test-ssr/src/commands/main.ts", + "hash": "5373798188839451215" + }, + { + "file": "scripts/test-ssr/src/shims/module.js", + "hash": "6994254687357316236" + }, + { + "file": "scripts/test-ssr/src/utils/buildAssets.test.ts", + "hash": "7131330003385329020" + }, + { + "file": "scripts/test-ssr/src/utils/buildAssets.ts", + "hash": "8657021135056357882" + }, + { + "file": "scripts/test-ssr/src/utils/constants.ts", + "hash": "13310172053469550506" + }, + { + "file": "scripts/test-ssr/src/utils/generateEntryPoints.test.ts", + "hash": "4312975137369069285" + }, + { + "file": "scripts/test-ssr/src/utils/generateEntryPoints.ts", + "hash": "15091510962787083993" + }, + { + "file": "scripts/test-ssr/src/utils/getExportFromFile.test.ts", + "hash": "15350347943875414675" + }, + { + "file": "scripts/test-ssr/src/utils/getExportFromFile.ts", + "hash": "16525910075835513493" + }, + { + "file": "scripts/test-ssr/src/utils/helpers.ts", + "hash": "907485589681988891" + }, + { + "file": "scripts/test-ssr/src/utils/renderToHTML.test.ts", + "hash": "18102029768147530086" + }, + { + "file": "scripts/test-ssr/src/utils/renderToHTML.ts", + "hash": "8653651019165466798" + }, + { + "file": "scripts/test-ssr/src/utils/visitPage.ts", + "hash": "13302790300574375017" + }, + { + "file": "scripts/test-ssr/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/test-ssr/tsconfig.lib.json", + "hash": "15222053984038389170" + }, + { + "file": "scripts/test-ssr/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/react-18-tests-v9": [ + { + "file": "apps/react-18-tests-v9/.eslintrc.json", + "hash": "273467718057503654" + }, + { + "file": "apps/react-18-tests-v9/README.md", + "hash": "15038214804025114768" + }, + { + "file": "apps/react-18-tests-v9/config/tests.js", + "hash": "14010006175392234982" + }, + { + "file": "apps/react-18-tests-v9/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "apps/react-18-tests-v9/jest.config.js", + "hash": "1432362935093989965" + }, + { + "file": "apps/react-18-tests-v9/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "apps/react-18-tests-v9/package.json", + "hash": "1062290610976451640", + "deps": [ + "@fluentui/react-components", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "apps/react-18-tests-v9/project.json", + "hash": "11399828626299105622" + }, + { + "file": "apps/react-18-tests-v9/src/App.cy.tsx", + "hash": "11549801901057863626" + }, + { + "file": "apps/react-18-tests-v9/src/App.test.tsx", + "hash": "2670902714833840717" + }, + { + "file": "apps/react-18-tests-v9/src/App.tsx", + "hash": "7525441005714447901" + }, + { + "file": "apps/react-18-tests-v9/src/Portal.cy.tsx", + "hash": "4580707977750569950" + }, + { + "file": "apps/react-18-tests-v9/src/components/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "apps/react-18-tests-v9/src/index.tsx", + "hash": "2918296648402810869" + }, + { + "file": "apps/react-18-tests-v9/tsconfig.app.json", + "hash": "7764918925105932542" + }, + { + "file": "apps/react-18-tests-v9/tsconfig.cy.json", + "hash": "4669440979528425638" + }, + { + "file": "apps/react-18-tests-v9/tsconfig.json", + "hash": "15327827180026486345" + }, + { + "file": "apps/react-18-tests-v9/tsconfig.react-compat-check.json", + "hash": "5090552958223827867" + }, + { + "file": "apps/react-18-tests-v9/tsconfig.spec.json", + "hash": "13287603543641469083" + }, + { + "file": "apps/react-18-tests-v9/webpack.config.js", + "hash": "6286313998835058704" + } + ], + "@fluentui/set-version": [ + { + "file": "packages/set-version/.eslintrc.json", + "hash": "5040365066206164447" + }, + { + "file": "packages/set-version/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/set-version/CHANGELOG.json", + "hash": "4884908875942182344" + }, + { + "file": "packages/set-version/CHANGELOG.md", + "hash": "14468298258455261263" + }, + { + "file": "packages/set-version/LICENSE", + "hash": "17405240926357137557" + }, + { + "file": "packages/set-version/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/set-version/package.json", + "hash": "14326386381338996167", + "deps": ["npm:tslib", "@fluentui/eslint-plugin", "@fluentui/scripts-tasks"] + }, + { + "file": "packages/set-version/project.json", + "hash": "17714374313672910233" + }, + { + "file": "packages/set-version/src/index.ts", + "hash": "2116276611683583139" + }, + { + "file": "packages/set-version/src/serVersion.test.ts", + "hash": "5429814530530758929" + }, + { + "file": "packages/set-version/src/setVersion.ts", + "hash": "4028316957040317271" + }, + { + "file": "packages/set-version/tsconfig.json", + "hash": "7584822408996227960" + } + ], + "@fluentui/global-context": [ + { + "file": "packages/react-components/global-context/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/global-context/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/global-context/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/global-context/CHANGELOG.json", + "hash": "3559008600431803229" + }, + { + "file": "packages/react-components/global-context/CHANGELOG.md", + "hash": "3002425371666790025" + }, + { + "file": "packages/react-components/global-context/LICENSE", + "hash": "16085635044836667477" + }, + { + "file": "packages/react-components/global-context/README.md", + "hash": "11497599280276646781" + }, + { + "file": "packages/react-components/global-context/bundle-size/createContext.fixture.js", + "hash": "18051433675935440280" + }, + { + "file": "packages/react-components/global-context/bundle-size/createContextSelector.fixture.js", + "hash": "6607661730451392027" + }, + { + "file": "packages/react-components/global-context/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/global-context/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/global-context/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/global-context/etc/global-context.api.md", + "hash": "16388687583245900658" + }, + { + "file": "packages/react-components/global-context/jest.config.js", + "hash": "11996786684390609645" + }, + { + "file": "packages/react-components/global-context/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/global-context/monosize.config.mjs", + "hash": "5627908047013620305" + }, + { + "file": "packages/react-components/global-context/package.json", + "hash": "779619587821778079", + "deps": [ + "@fluentui/react-context-selector", + "@fluentui/react-utilities", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/global-context/project.json", + "hash": "16893704753425154668" + }, + { + "file": "packages/react-components/global-context/src/global-context-selector.test.ts", + "hash": "6487703100303991950" + }, + { + "file": "packages/react-components/global-context/src/global-context-selector.ts", + "hash": "1078475965261159391" + }, + { + "file": "packages/react-components/global-context/src/global-context.cy.tsx", + "hash": "14149888652164360210" + }, + { + "file": "packages/react-components/global-context/src/global-context.test.ts", + "hash": "8559469442155352347" + }, + { + "file": "packages/react-components/global-context/src/global-context.ts", + "hash": "5788531003606375031" + }, + { + "file": "packages/react-components/global-context/src/index.ts", + "hash": "6688086211177314226" + }, + { + "file": "packages/react-components/global-context/src/types.ts", + "hash": "1907364711162234682" + }, + { + "file": "packages/react-components/global-context/src/utils.test.ts", + "hash": "195903445294291101" + }, + { + "file": "packages/react-components/global-context/src/utils.ts", + "hash": "6047271728724939229" + }, + { + "file": "packages/react-components/global-context/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/global-context/tsconfig.json", + "hash": "5596071008249197618" + }, + { + "file": "packages/react-components/global-context/tsconfig.lib.json", + "hash": "6390891856014566094" + }, + { + "file": "packages/react-components/global-context/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-tree": [ + { + "file": "packages/react-components/react-tree/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-tree/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-tree/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-tree/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-tree/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-tree/.swcrc", + "hash": "471348148265161299" + }, + { + "file": "packages/react-components/react-tree/CHANGELOG.json", + "hash": "14945776354293379806" + }, + { + "file": "packages/react-components/react-tree/CHANGELOG.md", + "hash": "8406039216746902252" + }, + { + "file": "packages/react-components/react-tree/LICENSE", + "hash": "3873147923064391806" + }, + { + "file": "packages/react-components/react-tree/README.md", + "hash": "1655105929125156477" + }, + { + "file": "packages/react-components/react-tree/bundle-size/FlatTree.fixture.js", + "hash": "2096294319910126247" + }, + { + "file": "packages/react-components/react-tree/bundle-size/PersonaFlatTree.fixture.js", + "hash": "2466378024792562687" + }, + { + "file": "packages/react-components/react-tree/bundle-size/PersonaTree.fixture.js", + "hash": "15287090904891878665" + }, + { + "file": "packages/react-components/react-tree/bundle-size/Tree.fixture.js", + "hash": "7148247114221090114" + }, + { + "file": "packages/react-components/react-tree/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-tree/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-tree/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-tree/docs/Spec.md", + "hash": "13010540724639653030" + }, + { + "file": "packages/react-components/react-tree/etc/react-tree.api.md", + "hash": "13860625462824413119" + }, + { + "file": "packages/react-components/react-tree/jest.config.js", + "hash": "10708835875569314405" + }, + { + "file": "packages/react-components/react-tree/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-tree/package.json", + "hash": "7402928316943794822", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-aria", + "@fluentui/react-avatar", + "@fluentui/react-button", + "@fluentui/react-checkbox", + "@fluentui/react-context-selector", + "npm:@fluentui/react-icons", + "@fluentui/react-radio", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "npm:@dnd-kit/core", + "npm:@dnd-kit/sortable", + "npm:@dnd-kit/utilities", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "@fluentui/scripts-cypress", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-tree/project.json", + "hash": "6740901632218515604" + }, + { + "file": "packages/react-components/react-tree/src/FlatTree.ts", + "hash": "3072125634594593749" + }, + { + "file": "packages/react-components/react-tree/src/FlatTreeItem.ts", + "hash": "15656750125723370276" + }, + { + "file": "packages/react-components/react-tree/src/Tree.ts", + "hash": "4993286404603910313" + }, + { + "file": "packages/react-components/react-tree/src/TreeItem.ts", + "hash": "5004543986527416872" + }, + { + "file": "packages/react-components/react-tree/src/TreeItemLayout.ts", + "hash": "5622771649031762853" + }, + { + "file": "packages/react-components/react-tree/src/TreeItemPersonaLayout.ts", + "hash": "11087562497649748862" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/FlatTree.cy.tsx", + "hash": "15277321125093847254" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/FlatTree.test.tsx", + "hash": "14643582718113491293" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/FlatTree.tsx", + "hash": "11721769760756262032" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/FlatTree.types.ts", + "hash": "15765492707089510760" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/__snapshots__/FlatTree.test.tsx.snap", + "hash": "8095076814149978457" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/index.ts", + "hash": "18386732580869025361" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/renderFlatTree.ts", + "hash": "16266937452093330039" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/useFlatControllableCheckedItems.ts", + "hash": "8460437433223988350" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/useFlatTree.ts", + "hash": "516202047807557685" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/useFlatTreeContextValues.ts", + "hash": "10385911432056358558" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/useFlatTreeStyles.styles.ts", + "hash": "11049922061536000776" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTree/useHeadlessFlatTree.ts", + "hash": "1536915137937169328" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTreeItem/FlatTreeItem.tsx", + "hash": "18390777847785657350" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTreeItem/FlatTreeItem.types.ts", + "hash": "11242388741613448331" + }, + { + "file": "packages/react-components/react-tree/src/components/FlatTreeItem/index.ts", + "hash": "6325146452568581988" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/Tree.cy.tsx", + "hash": "6095631539329784239" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/Tree.test.tsx", + "hash": "11577143859729634817" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/Tree.tsx", + "hash": "17751061759550709708" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/Tree.types.ts", + "hash": "17953901364028168287" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/__snapshots__/Tree.test.tsx.snap", + "hash": "1504935046973585286" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/index.ts", + "hash": "14906481201574349395" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/renderTree.tsx", + "hash": "4415101119287494887" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/useNestedControllableCheckedItems.ts", + "hash": "17960401285554147445" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/useTree.ts", + "hash": "16065649229389296428" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/useTreeContextValues.ts", + "hash": "7332326623699850354" + }, + { + "file": "packages/react-components/react-tree/src/components/Tree/useTreeStyles.styles.ts", + "hash": "16851585648924973193" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/TreeItem.test.tsx", + "hash": "8789954357801559131" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/TreeItem.tsx", + "hash": "16468084185954122243" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/TreeItem.types.ts", + "hash": "14716955389701026936" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/__snapshots__/TreeItem.test.tsx.snap", + "hash": "8018539892959985230" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/index.ts", + "hash": "1326136393613796142" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/renderTreeItem.tsx", + "hash": "423938715411658182" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/useTreeItem.tsx", + "hash": "2946674587697501147" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/useTreeItemContextValues.ts", + "hash": "7521332398662164287" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItem/useTreeItemStyles.styles.ts", + "hash": "3910268932895175685" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemChevron.tsx", + "hash": "13111855959190541713" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.test.tsx", + "hash": "2579116581358045080" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.tsx", + "hash": "2849103380227024635" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.types.ts", + "hash": "2990369194733272697" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemLayout/__snapshots__/TreeItemLayout.test.tsx.snap", + "hash": "9466630829797683724" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemLayout/index.ts", + "hash": "17567081473447998944" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemLayout/renderTreeItemLayout.tsx", + "hash": "8168067713043998322" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayout.tsx", + "hash": "8546937425436191095" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayoutStyles.styles.ts", + "hash": "11057546586913473576" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.test.tsx", + "hash": "5784701546408248173" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.tsx", + "hash": "18041779658234398117" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.ts", + "hash": "5850649340938347040" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/__snapshots__/TreeItemPersonaLayout.test.tsx.snap", + "hash": "493101854707647726" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/index.ts", + "hash": "5706098966977998655" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.tsx", + "hash": "11893124970293607637" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.ts", + "hash": "17115760138027961283" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.ts", + "hash": "12504747604672555491" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.ts", + "hash": "2760083827584951946" + }, + { + "file": "packages/react-components/react-tree/src/components/TreeProvider.tsx", + "hash": "7517422617459581682" + }, + { + "file": "packages/react-components/react-tree/src/contexts/index.ts", + "hash": "6882555427867434756" + }, + { + "file": "packages/react-components/react-tree/src/contexts/subtreeContext.ts", + "hash": "6249658885115935790" + }, + { + "file": "packages/react-components/react-tree/src/contexts/treeContext.ts", + "hash": "4036683755492528965" + }, + { + "file": "packages/react-components/react-tree/src/contexts/treeItemContext.ts", + "hash": "11517978604553072645" + }, + { + "file": "packages/react-components/react-tree/src/hooks/useControllableOpenItems.ts", + "hash": "4816774097134854864" + }, + { + "file": "packages/react-components/react-tree/src/hooks/useFlatTreeNavigation.ts", + "hash": "17983963822301935882" + }, + { + "file": "packages/react-components/react-tree/src/hooks/useHTMLElementWalkerRef.ts", + "hash": "12602091648031084383" + }, + { + "file": "packages/react-components/react-tree/src/hooks/useRootTree.ts", + "hash": "16041317070023655062" + }, + { + "file": "packages/react-components/react-tree/src/hooks/useRovingTabIndexes.ts", + "hash": "16208067110669278387" + }, + { + "file": "packages/react-components/react-tree/src/hooks/useSubtree.ts", + "hash": "8213543736847331171" + }, + { + "file": "packages/react-components/react-tree/src/hooks/useTreeNavigation.ts", + "hash": "4105758237008898129" + }, + { + "file": "packages/react-components/react-tree/src/index.ts", + "hash": "17215199998523638799" + }, + { + "file": "packages/react-components/react-tree/src/testing/flattenTreeFromElement.ts", + "hash": "17352909156336948309" + }, + { + "file": "packages/react-components/react-tree/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-tree/src/utils/ImmutableMap.ts", + "hash": "18191754425073445309" + }, + { + "file": "packages/react-components/react-tree/src/utils/ImmutableSet.ts", + "hash": "7975523845111866724" + }, + { + "file": "packages/react-components/react-tree/src/utils/assert.ts", + "hash": "1469332169996285562" + }, + { + "file": "packages/react-components/react-tree/src/utils/createCheckedItems.ts", + "hash": "7113512274716840836" + }, + { + "file": "packages/react-components/react-tree/src/utils/createHTMLElementWalker.ts", + "hash": "13950261002817970754" + }, + { + "file": "packages/react-components/react-tree/src/utils/createHeadlessTree.ts", + "hash": "15503462296358436766" + }, + { + "file": "packages/react-components/react-tree/src/utils/createOpenItems.ts", + "hash": "2544348651417480592" + }, + { + "file": "packages/react-components/react-tree/src/utils/flattenTree.ts", + "hash": "4703444536314081832" + }, + { + "file": "packages/react-components/react-tree/src/utils/getTreeItemValueFromElement.ts", + "hash": "8002251387458635096" + }, + { + "file": "packages/react-components/react-tree/src/utils/nextTypeAheadElement.ts", + "hash": "11291753067468538470" + }, + { + "file": "packages/react-components/react-tree/src/utils/normalizeOpenItems.ts", + "hash": "16095895542449977581" + }, + { + "file": "packages/react-components/react-tree/src/utils/tokens.ts", + "hash": "3974420961756921691" + }, + { + "file": "packages/react-components/react-tree/src/utils/treeItemFilter.ts", + "hash": "12235784334461474461" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/FlatTree.stories.tsx", + "hash": "6464304357476423385" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/OpenItemControlled.stories.tsx", + "hash": "4633474533903741112" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/OpenItemsControlled.stories.tsx", + "hash": "14382852307558690931" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeA11y.md", + "hash": "18278713554142398706" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeActions.stories.tsx", + "hash": "12149000182087747702" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeAppearance.stories.tsx", + "hash": "4022938655114250405" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeAside.stories.tsx", + "hash": "15498843229827369748" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeBestPractices.md", + "hash": "6217951044650240936" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeCustomizingInteraction.stories.tsx", + "hash": "6487662564534500772" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeDefault.stories.tsx", + "hash": "3281424809310801489" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeDefaultOpen.stories.tsx", + "hash": "13051992569108747955" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeDescription.md", + "hash": "3591680887237708383" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeDragAndDrop.stories.tsx", + "hash": "5557484249944494015" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeExpandIcon.stories.tsx", + "hash": "8975769184899329868" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeIconBeforeAndAfter.stories.tsx", + "hash": "2974051680275017294" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeInfiniteScrolling.stories.tsx", + "hash": "15927831107506523909" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeInlineStylingTreeItemLevel.stories.tsx", + "hash": "15669582785010273897" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeLayouts.stories.tsx", + "hash": "14629023937799779028" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeLazyLoading.stories.tsx", + "hash": "16480494302565356882" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeManipulation.stories.tsx", + "hash": "4369546527713118115" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeSelection.stories.tsx", + "hash": "3961405183329974459" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/TreeSize.stories.tsx", + "hash": "4652411936099155946" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/UseHeadlessFlatTree.stories.tsx", + "hash": "15284690713944369839" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/Virtualization.stories.tsx", + "hash": "17275731017871637387" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/index.stories.tsx", + "hash": "5752380234511737172" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/utils/mockFetch.ts", + "hash": "3306783506830490620" + }, + { + "file": "packages/react-components/react-tree/stories/Tree/utils/useQuery.ts", + "hash": "175410983663244781" + }, + { + "file": "packages/react-components/react-tree/tsconfig.cy.json", + "hash": "4393960456153312170" + }, + { + "file": "packages/react-components/react-tree/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-tree/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-tree/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-tags": [ + { + "file": "packages/react-components/react-tags/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-tags/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-tags/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-tags/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-tags/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-tags/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-tags/CHANGELOG.json", + "hash": "194138550563336131" + }, + { + "file": "packages/react-components/react-tags/CHANGELOG.md", + "hash": "3161502209421304381" + }, + { + "file": "packages/react-components/react-tags/LICENSE", + "hash": "15984548770641206248" + }, + { + "file": "packages/react-components/react-tags/README.md", + "hash": "10500482775121349906" + }, + { + "file": "packages/react-components/react-tags/bundle-size/InteractionTag.fixture.js", + "hash": "17358477118197912493" + }, + { + "file": "packages/react-components/react-tags/bundle-size/TagGroup.fixture.js", + "hash": "5014611251005463486" + }, + { + "file": "packages/react-components/react-tags/bundle-size/tag.fixture.js", + "hash": "15289223331746822136" + }, + { + "file": "packages/react-components/react-tags/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-tags/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-tags/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-tags/docs/Spec.md", + "hash": "6616655976701304277" + }, + { + "file": "packages/react-components/react-tags/etc/react-tags.api.md", + "hash": "10336091631530896536" + }, + { + "file": "packages/react-components/react-tags/jest.config.js", + "hash": "14977555368232687164" + }, + { + "file": "packages/react-components/react-tags/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-tags/package.json", + "hash": "12340442389795941756", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-aria", + "@fluentui/react-avatar", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-tags/project.json", + "hash": "584427480657467091" + }, + { + "file": "packages/react-components/react-tags/src/InteractionTag.ts", + "hash": "13983274673714466720" + }, + { + "file": "packages/react-components/react-tags/src/InteractionTagPrimary.ts", + "hash": "6256468456880889102" + }, + { + "file": "packages/react-components/react-tags/src/InteractionTagSecondary.ts", + "hash": "5368134246602714141" + }, + { + "file": "packages/react-components/react-tags/src/Tag.ts", + "hash": "16167036964551788704" + }, + { + "file": "packages/react-components/react-tags/src/TagGroup.ts", + "hash": "6013255966207939916" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.test.tsx", + "hash": "10842010645442217057" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.tsx", + "hash": "4399038313425811042" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.types.ts", + "hash": "2420146369576242616" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTag/index.ts", + "hash": "2950543417664974367" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTag/renderInteractionTag.tsx", + "hash": "3182765218771271515" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTag/useInteractionTag.tsx", + "hash": "13752441498224431555" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTag/useInteractionTagContextValues.ts", + "hash": "17161257668063955216" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTag/useInteractionTagStyles.styles.ts", + "hash": "13821784447335059322" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.test.tsx", + "hash": "3842149846104916172" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.tsx", + "hash": "1076682495847369815" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.types.ts", + "hash": "9283581625076046764" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/index.ts", + "hash": "9669082753145957501" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/renderInteractionTagPrimary.tsx", + "hash": "4745226362693984168" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/useInteractionTagPrimary.ts", + "hash": "9872086138500406659" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/useInteractionTagPrimaryStyles.styles.ts", + "hash": "4030905491761244906" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.test.tsx", + "hash": "16228802968407103171" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.tsx", + "hash": "2448716909616843548" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.types.ts", + "hash": "6736225241350796857" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/index.ts", + "hash": "7102847806939032650" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/renderInteractionTagSecondary.tsx", + "hash": "3049407018416866218" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/useInteractionTagSecondary.tsx", + "hash": "13926257627148833119" + }, + { + "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/useInteractionTagSecondaryStyles.styles.ts", + "hash": "13474997088340994505" + }, + { + "file": "packages/react-components/react-tags/src/components/Tag/Tag.test.tsx", + "hash": "5880691168325391715" + }, + { + "file": "packages/react-components/react-tags/src/components/Tag/Tag.tsx", + "hash": "13044814626181179943" + }, + { + "file": "packages/react-components/react-tags/src/components/Tag/Tag.types.ts", + "hash": "3362487479164759445" + }, + { + "file": "packages/react-components/react-tags/src/components/Tag/index.ts", + "hash": "13324190693234466903" + }, + { + "file": "packages/react-components/react-tags/src/components/Tag/renderTag.tsx", + "hash": "14357471753040999319" + }, + { + "file": "packages/react-components/react-tags/src/components/Tag/useTag.test.tsx", + "hash": "7838179506645271588" + }, + { + "file": "packages/react-components/react-tags/src/components/Tag/useTag.tsx", + "hash": "6625208145382546803" + }, + { + "file": "packages/react-components/react-tags/src/components/Tag/useTagStyles.styles.ts", + "hash": "18039718330512640670" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/TagGroup.cy.tsx", + "hash": "12274824442453552339" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/TagGroup.test.tsx", + "hash": "1229481110407317788" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/TagGroup.tsx", + "hash": "17830583590301202997" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/TagGroup.types.ts", + "hash": "10915367910465333863" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/index.ts", + "hash": "6068868025557275912" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/renderTagGroup.tsx", + "hash": "8785077840389673202" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/useTagGroup.ts", + "hash": "14679630283213287791" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/useTagGroupContextValues.ts", + "hash": "8227330079283938096" + }, + { + "file": "packages/react-components/react-tags/src/components/TagGroup/useTagGroupStyles.styles.ts", + "hash": "7778412192044924650" + }, + { + "file": "packages/react-components/react-tags/src/contexts/interactionTagContext.tsx", + "hash": "2243187516882251719" + }, + { + "file": "packages/react-components/react-tags/src/contexts/tagGroupContext.tsx", + "hash": "12895731128273514711" + }, + { + "file": "packages/react-components/react-tags/src/index.ts", + "hash": "4735439958633325990" + }, + { + "file": "packages/react-components/react-tags/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-tags/src/utils/index.ts", + "hash": "3821017355254528299" + }, + { + "file": "packages/react-components/react-tags/src/utils/types.ts", + "hash": "596369915833561848" + }, + { + "file": "packages/react-components/react-tags/src/utils/useTagAvatarContextValues.ts", + "hash": "8470255531493033889" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagAppearance.stories.tsx", + "hash": "15179750862216411333" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagBestPractices.md", + "hash": "8376548529359937030" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagDefault.stories.tsx", + "hash": "2681683984692337791" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagDescription.md", + "hash": "12243047500544241920" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagDisabled.stories.tsx", + "hash": "9839825437772271568" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagDismiss.stories.tsx", + "hash": "494691391610982935" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagHasPrimaryAction.stories.tsx", + "hash": "15611238270398355789" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagIcon.stories.tsx", + "hash": "12852002179133268371" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagMedia.md", + "hash": "4762879944479477719" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagMedia.stories.tsx", + "hash": "10949724879323552658" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagSecondaryText.stories.tsx", + "hash": "3604279324954000926" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagShape.stories.tsx", + "hash": "10907466358493935001" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagSize.stories.tsx", + "hash": "10016659096879367027" + }, + { + "file": "packages/react-components/react-tags/stories/InteractionTag/index.stories.tsx", + "hash": "5827689478757246692" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagAppearance.stories.tsx", + "hash": "3919694861981977634" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagBestPractices.md", + "hash": "12858297417514368292" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagDefault.stories.tsx", + "hash": "17713833537975864762" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagDescription.md", + "hash": "7715548073631177926" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagDisabled.stories.tsx", + "hash": "16500515061880366924" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagDismiss.stories.tsx", + "hash": "17508285979156894864" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagIcon.stories.tsx", + "hash": "3059091904526791471" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagMedia.stories.tsx", + "hash": "3760481520461679314" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagSecondaryText.stories.tsx", + "hash": "16438231938445811823" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagShape.stories.tsx", + "hash": "15631510183237341762" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/TagSize.stories.tsx", + "hash": "10054136554160599561" + }, + { + "file": "packages/react-components/react-tags/stories/Tag/index.stories.tsx", + "hash": "605437294753359930" + }, + { + "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupBestPractices.md", + "hash": "4295534675539626496" + }, + { + "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupDefault.stories.tsx", + "hash": "11205413669957950629" + }, + { + "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupDescription.md", + "hash": "8733036749501389712" + }, + { + "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupDismiss.stories.tsx", + "hash": "2371595253438866621" + }, + { + "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupOverflow.stories.tsx", + "hash": "6620702853877345768" + }, + { + "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupSizes.stories.tsx", + "hash": "48436092750364017" + }, + { + "file": "packages/react-components/react-tags/stories/TagGroup/index.stories.tsx", + "hash": "8148050799531276468" + }, + { + "file": "packages/react-components/react-tags/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-tags/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-tags/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-tags/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-popover": [ + { + "file": "packages/react-components/react-popover/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-popover/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-popover/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-popover/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-popover/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-popover/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-popover/CHANGELOG.json", + "hash": "799414624182040767" + }, + { + "file": "packages/react-components/react-popover/CHANGELOG.md", + "hash": "15935155906664144779" + }, + { + "file": "packages/react-components/react-popover/LICENSE", + "hash": "13212047852807775160" + }, + { + "file": "packages/react-components/react-popover/README.md", + "hash": "13050354636904224629" + }, + { + "file": "packages/react-components/react-popover/bundle-size/Popover.fixture.js", + "hash": "5887030192339858914" + }, + { + "file": "packages/react-components/react-popover/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-popover/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-popover/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-popover/docs/Spec.md", + "hash": "4609286566686568557" + }, + { + "file": "packages/react-components/react-popover/etc/react-popover.api.md", + "hash": "7514615129011558376" + }, + { + "file": "packages/react-components/react-popover/jest.config.js", + "hash": "14026599071184978672" + }, + { + "file": "packages/react-components/react-popover/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-popover/package.json", + "hash": "9762499192074740118", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-aria", + "@fluentui/react-context-selector", + "@fluentui/react-portal", + "@fluentui/react-positioning", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-popover/project.json", + "hash": "13728026763707518386" + }, + { + "file": "packages/react-components/react-popover/src/Popover.ts", + "hash": "82425603334873078" + }, + { + "file": "packages/react-components/react-popover/src/PopoverSurface.ts", + "hash": "14221118331298170467" + }, + { + "file": "packages/react-components/react-popover/src/PopoverTrigger.ts", + "hash": "5974644824026413780" + }, + { + "file": "packages/react-components/react-popover/src/components/Popover/Popover.cy.tsx", + "hash": "14911237654227630815" + }, + { + "file": "packages/react-components/react-popover/src/components/Popover/Popover.test.tsx", + "hash": "4654989182333163446" + }, + { + "file": "packages/react-components/react-popover/src/components/Popover/Popover.tsx", + "hash": "5929512317701067411" + }, + { + "file": "packages/react-components/react-popover/src/components/Popover/Popover.types.ts", + "hash": "17729441559883210548" + }, + { + "file": "packages/react-components/react-popover/src/components/Popover/constants.ts", + "hash": "4627999313797808057" + }, + { + "file": "packages/react-components/react-popover/src/components/Popover/index.ts", + "hash": "1977828869061472401" + }, + { + "file": "packages/react-components/react-popover/src/components/Popover/renderPopover.tsx", + "hash": "8998572893306941337" + }, + { + "file": "packages/react-components/react-popover/src/components/Popover/usePopover.ts", + "hash": "3450341196926624385" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.test.tsx", + "hash": "6823809963025237390" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.tsx", + "hash": "18183468277526097917" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.types.ts", + "hash": "3484467807402199312" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverSurface/__snapshots__/PopoverSurface.test.tsx.snap", + "hash": "8906207879497919239" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverSurface/index.ts", + "hash": "11111917236962218660" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverSurface/renderPopoverSurface.tsx", + "hash": "331735011709120147" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverSurface/usePopoverSurface.ts", + "hash": "13899100915034814530" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverSurface/usePopoverSurfaceStyles.styles.ts", + "hash": "12459251168906298722" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.test.tsx", + "hash": "8874285659567391752" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.tsx", + "hash": "14243495002152923383" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.types.ts", + "hash": "10978545043348849880" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverTrigger/__snapshots__/PopoverTrigger.test.tsx.snap", + "hash": "7049001353719709106" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverTrigger/index.ts", + "hash": "6566947698041733501" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverTrigger/renderPopoverTrigger.tsx", + "hash": "12559738220691999133" + }, + { + "file": "packages/react-components/react-popover/src/components/PopoverTrigger/usePopoverTrigger.ts", + "hash": "17244988510897269019" + }, + { + "file": "packages/react-components/react-popover/src/index.ts", + "hash": "9032593331933710944" + }, + { + "file": "packages/react-components/react-popover/src/popoverContext.ts", + "hash": "10247319476918690150" + }, + { + "file": "packages/react-components/react-popover/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-popover/src/testing/mockUsePopoverContext.ts", + "hash": "17560436447699119942" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverAnchorToCustomTarget.stories.tsx", + "hash": "214805130071163403" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverAppearance.stories.tsx", + "hash": "1911028944506386880" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverBestPractices.md", + "hash": "2732588484685589689" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverControllingOpenAndClose.stories.tsx", + "hash": "12207010824761379535" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverCustomTrigger.stories.tsx", + "hash": "3517858408299763563" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverDefault.stories.tsx", + "hash": "16713073541667462208" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverDescription.md", + "hash": "8500557139312334970" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverInternalUpdateContent.stories.tsx", + "hash": "16021108580550194296" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverNestedPopovers.stories.tsx", + "hash": "4287991275281069452" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverTrappingFocus.stories.tsx", + "hash": "14078581443974686242" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverWithArrow.stories.tsx", + "hash": "3955407080794549289" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/PopoverWithoutTrigger.stories.tsx", + "hash": "12108642192411900216" + }, + { + "file": "packages/react-components/react-popover/stories/Popover/index.stories.tsx", + "hash": "9781352630408705313" + }, + { + "file": "packages/react-components/react-popover/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-popover/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-popover/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-popover/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-focus": [ + { + "file": "packages/react-focus/.eslintrc.js", + "hash": "11599896202272347932" + }, + { + "file": "packages/react-focus/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/react-focus/CHANGELOG.json", + "hash": "11397692279063814692" + }, + { + "file": "packages/react-focus/CHANGELOG.md", + "hash": "9242204259519410788" + }, + { + "file": "packages/react-focus/LICENSE", + "hash": "7265601084779359537" + }, + { + "file": "packages/react-focus/README.md", + "hash": "18222287515603784300" + }, + { + "file": "packages/react-focus/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/react-focus/config/tests.js", + "hash": "2484785926023527183" + }, + { + "file": "packages/react-focus/etc/react-focus.api.md", + "hash": "8432716012628281751" + }, + { + "file": "packages/react-focus/jest.config.js", + "hash": "8193037916930093299" + }, + { + "file": "packages/react-focus/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-focus/package.json", + "hash": "1454256065022966065", + "deps": [ + "@fluentui/keyboard-key", + "@fluentui/merge-styles", + "@fluentui/set-version", + "@fluentui/style-utilities", + "@fluentui/utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/test-utilities", + "@fluentui/jest-serializer-merge-styles", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-focus/project.json", + "hash": "12135015730228535780" + }, + { + "file": "packages/react-focus/src/common/isConformant.ts", + "hash": "17939211175933685277" + }, + { + "file": "packages/react-focus/src/components/FocusZone/FocusZone.EventHandler.test.tsx", + "hash": "16947583524623201794" + }, + { + "file": "packages/react-focus/src/components/FocusZone/FocusZone.deprecated.test.tsx", + "hash": "16034862313093379614" + }, + { + "file": "packages/react-focus/src/components/FocusZone/FocusZone.test.tsx", + "hash": "11650445686348954059" + }, + { + "file": "packages/react-focus/src/components/FocusZone/FocusZone.tsx", + "hash": "828175718691919235" + }, + { + "file": "packages/react-focus/src/components/FocusZone/FocusZone.types.ts", + "hash": "3786532300293271588" + }, + { + "file": "packages/react-focus/src/components/FocusZone/__snapshots__/FocusZone.deprecated.test.tsx.snap", + "hash": "4503134291514100538" + }, + { + "file": "packages/react-focus/src/components/FocusZone/__snapshots__/FocusZone.test.tsx.snap", + "hash": "1103751063082866005" + }, + { + "file": "packages/react-focus/src/components/FocusZone/index.ts", + "hash": "4235833670383521310" + }, + { + "file": "packages/react-focus/src/index.ts", + "hash": "9196176394022516894" + }, + { + "file": "packages/react-focus/src/version.ts", + "hash": "1527424341116993644" + }, + { + "file": "packages/react-focus/tsconfig.json", + "hash": "9970069326013741624" + }, + { + "file": "packages/react-focus/webpack.config.js", + "hash": "16051215899742671889" + } + ], + "@fluentui/scripts-executors": [ + { + "file": "scripts/executors/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/executors/README.md", + "hash": "3244421341483603138" + }, + { + "file": "scripts/executors/buildTo.js", + "hash": "3177712464592732161" + }, + { + "file": "scripts/executors/check-for-modified-files.ts", + "hash": "10763607801252226068" + }, + { + "file": "scripts/executors/checkIfPackagesAffected.js", + "hash": "9043336426953832291" + }, + { + "file": "scripts/executors/debug-test.js", + "hash": "8593654279449055223" + }, + { + "file": "scripts/executors/format.js", + "hash": "10819326993618316495" + }, + { + "file": "scripts/executors/invalidate-just-cache.js", + "hash": "7264489028234806785" + }, + { + "file": "scripts/executors/jest.config.js", + "hash": "13109292494898296739" + }, + { + "file": "scripts/executors/local-codepen.js", + "hash": "10392194689106589533" + }, + { + "file": "scripts/executors/package.json", + "hash": "2367017281587144268", + "deps": ["@fluentui/scripts-utils", "@fluentui/scripts-monorepo", "@fluentui/scripts-prettier"] + }, + { + "file": "scripts/executors/project.json", + "hash": "4424758346050050205" + }, + { + "file": "scripts/executors/runPublished.js", + "hash": "10512724592827008811" + }, + { + "file": "scripts/executors/runPublished.spec.ts", + "hash": "13578313146003609025" + }, + { + "file": "scripts/executors/runTo.js", + "hash": "16974010502221615189" + }, + { + "file": "scripts/executors/scrub.js", + "hash": "13651139657942254610" + }, + { + "file": "scripts/executors/start.js", + "hash": "4541487088238761962" + }, + { + "file": "scripts/executors/tag-react-components.ts", + "hash": "6138569374629742911" + }, + { + "file": "scripts/executors/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/executors/tsconfig.lib.json", + "hash": "3753806828268919288" + }, + { + "file": "scripts/executors/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/react-tooltip": [ + { + "file": "packages/react-components/react-tooltip/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-tooltip/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-tooltip/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-tooltip/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-tooltip/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-tooltip/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-tooltip/CHANGELOG.json", + "hash": "3662493496073081408" + }, + { + "file": "packages/react-components/react-tooltip/CHANGELOG.md", + "hash": "10310449083261891923" + }, + { + "file": "packages/react-components/react-tooltip/LICENSE", + "hash": "9763231512341770511" + }, + { + "file": "packages/react-components/react-tooltip/README.md", + "hash": "661874467406925808" + }, + { + "file": "packages/react-components/react-tooltip/bundle-size/Tooltip.fixture.js", + "hash": "9177557631885470146" + }, + { + "file": "packages/react-components/react-tooltip/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-tooltip/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-tooltip/docs/MIGRATION.md", + "hash": "5365591817175551380" + }, + { + "file": "packages/react-components/react-tooltip/docs/Spec.md", + "hash": "17197430516596177065" + }, + { + "file": "packages/react-components/react-tooltip/etc/react-tooltip.api.md", + "hash": "2714968178754266809" + }, + { + "file": "packages/react-components/react-tooltip/jest.config.js", + "hash": "17702233081399248314" + }, + { + "file": "packages/react-components/react-tooltip/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-tooltip/package.json", + "hash": "16144738716875989028", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-jsx-runtime", + "@fluentui/react-portal", + "@fluentui/react-positioning", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-tooltip/project.json", + "hash": "2551932128317709476" + }, + { + "file": "packages/react-components/react-tooltip/src/Tooltip.ts", + "hash": "17674670289509594830" + }, + { + "file": "packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.test.tsx", + "hash": "17679454188098067382" + }, + { + "file": "packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.tsx", + "hash": "2076110390038335139" + }, + { + "file": "packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.types.ts", + "hash": "7659262091557687785" + }, + { + "file": "packages/react-components/react-tooltip/src/components/Tooltip/index.ts", + "hash": "10782409254965928182" + }, + { + "file": "packages/react-components/react-tooltip/src/components/Tooltip/private/constants.ts", + "hash": "17507315038679873174" + }, + { + "file": "packages/react-components/react-tooltip/src/components/Tooltip/renderTooltip.tsx", + "hash": "10271874667511265520" + }, + { + "file": "packages/react-components/react-tooltip/src/components/Tooltip/useTooltip.tsx", + "hash": "8598847911993358157" + }, + { + "file": "packages/react-components/react-tooltip/src/components/Tooltip/useTooltipStyles.styles.ts", + "hash": "16095804872310022228" + }, + { + "file": "packages/react-components/react-tooltip/src/index.ts", + "hash": "6245897041394836575" + }, + { + "file": "packages/react-components/react-tooltip/src/testing/isConformant.ts", + "hash": "3528474470343364133" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipControlled.stories.tsx", + "hash": "5745568244813610421" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipCustomMount.stories.tsx", + "hash": "8324075453347831325" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipDefault.stories.tsx", + "hash": "13630401926476137506" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipDescription.md", + "hash": "8413835280603585851" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipIcon.stories.tsx", + "hash": "6181017139676638802" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipInverted.stories.tsx", + "hash": "8768085614823736193" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipPositioning.stories.tsx", + "hash": "5481407588906963902" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipRelationshipDescription.stories.tsx", + "hash": "4706562087197084277" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipRelationshipLabel.stories.tsx", + "hash": "15754488881985482673" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipStyled.stories.tsx", + "hash": "16695082406495294835" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipTarget.stories.tsx", + "hash": "15587023689407586107" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipWithArrow.stories.tsx", + "hash": "13589492126622145976" + }, + { + "file": "packages/react-components/react-tooltip/stories/Tooltip/index.stories.tsx", + "hash": "16607203418029566096" + }, + { + "file": "packages/react-components/react-tooltip/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-tooltip/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-tooltip/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scheme-utilities": [ + { + "file": "packages/scheme-utilities/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/scheme-utilities/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/scheme-utilities/CHANGELOG.json", + "hash": "10831990114637121424" + }, + { + "file": "packages/scheme-utilities/CHANGELOG.md", + "hash": "11561547596405105751" + }, + { + "file": "packages/scheme-utilities/LICENSE", + "hash": "15398908318832700008" + }, + { + "file": "packages/scheme-utilities/README.md", + "hash": "17462190804923423170" + }, + { + "file": "packages/scheme-utilities/example.png", + "hash": "5304605585461739441" + }, + { + "file": "packages/scheme-utilities/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/scheme-utilities/package.json", + "hash": "16797713160660247554", + "deps": [ + "@fluentui/theme", + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "packages/scheme-utilities/project.json", + "hash": "18207278494590169669" + }, + { + "file": "packages/scheme-utilities/src/index.ts", + "hash": "12035799633836013526" + }, + { + "file": "packages/scheme-utilities/src/utilities.ts", + "hash": "12593228511294575624" + }, + { + "file": "packages/scheme-utilities/src/variantThemeType.ts", + "hash": "848702664263651221" + }, + { + "file": "packages/scheme-utilities/src/variants.ts", + "hash": "11090517405357739151" + }, + { + "file": "packages/scheme-utilities/src/version.ts", + "hash": "6347835831859264688" + }, + { + "file": "packages/scheme-utilities/tsconfig.json", + "hash": "2384178432518439606" + }, + { + "file": "packages/scheme-utilities/webpack.config.js", + "hash": "3900466450664749944" + } + ], + "@fluentui/react-charting": [ + { + "file": "packages/react-charting/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/react-charting/.npmignore", + "hash": "10443000086742372933" + }, + { + "file": "packages/react-charting/CHANGELOG.json", + "hash": "10337539383484491208" + }, + { + "file": "packages/react-charting/CHANGELOG.md", + "hash": "2897961143973799288" + }, + { + "file": "packages/react-charting/LICENSE", + "hash": "5841135995716851283" + }, + { + "file": "packages/react-charting/README.md", + "hash": "9832175539157864072" + }, + { + "file": "packages/react-charting/UnitTests/AreaChartUT.test.tsx", + "hash": "3269270683542684159" + }, + { + "file": "packages/react-charting/UnitTests/GroupedVerticalBarChartUT.test.tsx", + "hash": "4207344687334815004" + }, + { + "file": "packages/react-charting/UnitTests/HorizontalBarChartUT.test.tsx", + "hash": "14364237786286584260" + }, + { + "file": "packages/react-charting/UnitTests/HorizontalBarChartWithAxisUT.test.tsx", + "hash": "396547921618780460" + }, + { + "file": "packages/react-charting/UnitTests/LineChartUT.test.tsx", + "hash": "12769882572288793601" + }, + { + "file": "packages/react-charting/UnitTests/MultiStackedBarChartUT.test.tsx", + "hash": "14188312585490958332" + }, + { + "file": "packages/react-charting/UnitTests/StackedBarChartUT.test.tsx", + "hash": "14028248580129783923" + }, + { + "file": "packages/react-charting/UnitTests/VerticalBarChartUT.test.tsx", + "hash": "13015857820296401822" + }, + { + "file": "packages/react-charting/UnitTests/VerticalStackedBarChartUT.test.tsx", + "hash": "12113770954987743955" + }, + { + "file": "packages/react-charting/UnitTests/__snapshots__/VerticalBarChartUT.test.tsx.snap", + "hash": "13857412498194334317" + }, + { + "file": "packages/react-charting/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/react-charting/config/pre-copy.json", + "hash": "5645154898618432291" + }, + { + "file": "packages/react-charting/config/setup-env.js", + "hash": "13680425379733665451" + }, + { + "file": "packages/react-charting/config/tests.js", + "hash": "5180650933005958887" + }, + { + "file": "packages/react-charting/docs/TechnicalDetails.md", + "hash": "9068612762267236502" + }, + { + "file": "packages/react-charting/docs/TestPlans/AreaChart/ComponentTests.md", + "hash": "14808774995763296983" + }, + { + "file": "packages/react-charting/docs/TestPlans/BasicDonutChart.png", + "hash": "8407699490179041368" + }, + { + "file": "packages/react-charting/docs/TestPlans/DonutChart/ComponentTests.md", + "hash": "9978601866171924879" + }, + { + "file": "packages/react-charting/docs/TestPlans/GaugeChart/ComponentTests.md", + "hash": "310841682701784075" + }, + { + "file": "packages/react-charting/docs/TestPlans/GroupedVerticalBarChart/ComponentTests.md", + "hash": "12842079364814684" + }, + { + "file": "packages/react-charting/docs/TestPlans/HorizontalBarChart/ComponentTests.md", + "hash": "11442832876400028967" + }, + { + "file": "packages/react-charting/docs/TestPlans/HorizontalBarChart/UnitTests.md", + "hash": "10509359828932691467" + }, + { + "file": "packages/react-charting/docs/TestPlans/HorizontalBarChartWithAxis/ComponentTests.md", + "hash": "3270467057658799047" + }, + { + "file": "packages/react-charting/docs/TestPlans/HorizontalBarChartWithAxis/UnitTests.md", + "hash": "8883796341179029573" + }, + { + "file": "packages/react-charting/docs/TestPlans/LineChart/ComponentTests.md", + "hash": "7011218632953601663" + }, + { + "file": "packages/react-charting/docs/TestPlans/MultiStackedBarChart/componentTests.md", + "hash": "16030515404603127361" + }, + { + "file": "packages/react-charting/docs/TestPlans/SankeyChart/ComponentTests.md", + "hash": "5523536025954683769" + }, + { + "file": "packages/react-charting/docs/TestPlans/StackedBarChart/ComponentTests.md", + "hash": "11182984734598181536" + }, + { + "file": "packages/react-charting/docs/TestPlans/TestingGuide.md", + "hash": "16025073943200425017" + }, + { + "file": "packages/react-charting/docs/TestPlans/Utilities/UnitTests.md", + "hash": "3088628899195709632" + }, + { + "file": "packages/react-charting/docs/TestPlans/VerticalBarChart/ComponentTests.md", + "hash": "1432440988369222322" + }, + { + "file": "packages/react-charting/docs/TestPlans/VerticalStackedBarChart/ComponentTests.md", + "hash": "8333002027037114092" + }, + { + "file": "packages/react-charting/docs/TestingStrategy.md", + "hash": "8717563894637714579" + }, + { + "file": "packages/react-charting/docs/colors.md", + "hash": "7347026905651813323" + }, + { + "file": "packages/react-charting/docs/images/TestingStrategy/Coverage.png", + "hash": "8082557619038467829" + }, + { + "file": "packages/react-charting/docs/images/TestingStrategy/DonutCoverage.png", + "hash": "7002143582449968195" + }, + { + "file": "packages/react-charting/docs/images/TestingStrategy/TestingStrategy1.png", + "hash": "11991739759037126570" + }, + { + "file": "packages/react-charting/docs/images/TestingStrategy/TestingStrategy2.png", + "hash": "11433090512127547288" + }, + { + "file": "packages/react-charting/docs/images/TestingStrategy/TestingStrategy3.png", + "hash": "16609601640683868044" + }, + { + "file": "packages/react-charting/docs/images/colors/1.png", + "hash": "201676099951062663" + }, + { + "file": "packages/react-charting/docs/images/colors/2.png", + "hash": "10654733953245985134" + }, + { + "file": "packages/react-charting/docs/images/colors/3.png", + "hash": "15688568969133689415" + }, + { + "file": "packages/react-charting/docs/images/colors/4.png", + "hash": "13996815610302054930" + }, + { + "file": "packages/react-charting/docs/images/colors/5.png", + "hash": "4015781559900671761" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/1.png", + "hash": "16183317420418679061" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/10.png", + "hash": "236882421274026225" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/11.png", + "hash": "2725308868258316006" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/2.png", + "hash": "7719706811747650766" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/3.png", + "hash": "14939467763985185821" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/4.png", + "hash": "129590479685383509" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/5.png", + "hash": "11049231658598955416" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/6.png", + "hash": "5338725798371591663" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/7.png", + "hash": "6382351246325415711" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/8.png", + "hash": "13344871051125951407" + }, + { + "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/9.png", + "hash": "2749678903073188113" + }, + { + "file": "packages/react-charting/docs/implementing-2-to-1-spacing.md", + "hash": "7322196383453923002" + }, + { + "file": "packages/react-charting/etc/react-charting.api.md", + "hash": "882926847407876595" + }, + { + "file": "packages/react-charting/jest.config.js", + "hash": "3098401836869255977" + }, + { + "file": "packages/react-charting/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-charting/package.json", + "hash": "4788671312083472529", + "deps": [ + "@fluentui/react-focus", + "@fluentui/theme-samples", + "npm:@microsoft/load-themed-styles", + "npm:@types/d3-array", + "npm:@types/d3-axis", + "npm:@types/d3-format", + "npm:@types/d3-hierarchy", + "npm:@types/d3-sankey", + "npm:@types/d3-scale", + "npm:@types/d3-selection", + "npm:@types/d3-shape", + "npm:@types/d3-time-format", + "npm:@types/d3-time", + "@fluentui/set-version", + "npm:d3-array", + "npm:d3-axis", + "npm:d3-format", + "npm:d3-hierarchy", + "npm:d3-sankey", + "npm:d3-scale", + "npm:d3-selection", + "npm:d3-shape", + "npm:d3-time-format", + "npm:d3-time", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/react", + "npm:@types/react-addons-test-utils", + "@fluentui/jest-serializer-merge-styles", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:jest-canvas-mock", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-charting/project.json", + "hash": "8731393738633682151" + }, + { + "file": "packages/react-charting/src/AreaChart.ts", + "hash": "15073804980104349351" + }, + { + "file": "packages/react-charting/src/CartesianChart.ts", + "hash": "10891466127503117236" + }, + { + "file": "packages/react-charting/src/DonutChart.ts", + "hash": "7490426087311823403" + }, + { + "file": "packages/react-charting/src/GaugeChart.ts", + "hash": "4226033961047400976" + }, + { + "file": "packages/react-charting/src/GroupedVerticalBarChart.ts", + "hash": "15489797924433052709" + }, + { + "file": "packages/react-charting/src/HeatMapChart.ts", + "hash": "15435667564912730853" + }, + { + "file": "packages/react-charting/src/HorizontalBarChart.ts", + "hash": "10237813703175935798" + }, + { + "file": "packages/react-charting/src/HorizontalBarChartWithAxis.ts", + "hash": "12029490792828532534" + }, + { + "file": "packages/react-charting/src/Legends.ts", + "hash": "16460403896873996968" + }, + { + "file": "packages/react-charting/src/LineChart.ts", + "hash": "16659807295692186177" + }, + { + "file": "packages/react-charting/src/PieChart.ts", + "hash": "16778366934887091872" + }, + { + "file": "packages/react-charting/src/SankeyChart.ts", + "hash": "13055558930716559295" + }, + { + "file": "packages/react-charting/src/Sparkline.ts", + "hash": "5671805886276599207" + }, + { + "file": "packages/react-charting/src/StackedBarChart.ts", + "hash": "12980182364190103589" + }, + { + "file": "packages/react-charting/src/Styling.ts", + "hash": "8123475635573030392" + }, + { + "file": "packages/react-charting/src/TreeChart.ts", + "hash": "1109041212000572589" + }, + { + "file": "packages/react-charting/src/Utilities.ts", + "hash": "15929919672659535220" + }, + { + "file": "packages/react-charting/src/VerticalBarChart.ts", + "hash": "16278638938827171251" + }, + { + "file": "packages/react-charting/src/VerticalStackedBarChart.ts", + "hash": "9129833978468491495" + }, + { + "file": "packages/react-charting/src/components/AreaChart/AreaChart.base.tsx", + "hash": "4093034690624345489" + }, + { + "file": "packages/react-charting/src/components/AreaChart/AreaChart.styles.ts", + "hash": "12408836760076335613" + }, + { + "file": "packages/react-charting/src/components/AreaChart/AreaChart.test.tsx", + "hash": "8652410830145203690" + }, + { + "file": "packages/react-charting/src/components/AreaChart/AreaChart.tsx", + "hash": "6835702614777497887" + }, + { + "file": "packages/react-charting/src/components/AreaChart/AreaChart.types.ts", + "hash": "10272504202604440056" + }, + { + "file": "packages/react-charting/src/components/AreaChart/AreaChartRTL.test.tsx", + "hash": "4470895609937221769" + }, + { + "file": "packages/react-charting/src/components/AreaChart/__snapshots__/AreaChart.test.tsx.snap", + "hash": "4845588270529473456" + }, + { + "file": "packages/react-charting/src/components/AreaChart/__snapshots__/AreaChartRTL.test.tsx.snap", + "hash": "2471985332886744964" + }, + { + "file": "packages/react-charting/src/components/AreaChart/index.ts", + "hash": "5251573637088898864" + }, + { + "file": "packages/react-charting/src/components/CommonComponents/CartesianChart.base.tsx", + "hash": "16404912240725708681" + }, + { + "file": "packages/react-charting/src/components/CommonComponents/CartesianChart.styles.ts", + "hash": "761592581144672563" + }, + { + "file": "packages/react-charting/src/components/CommonComponents/CartesianChart.tsx", + "hash": "10250008309232000423" + }, + { + "file": "packages/react-charting/src/components/CommonComponents/CartesianChart.types.ts", + "hash": "17814415498036662069" + }, + { + "file": "packages/react-charting/src/components/CommonComponents/index.ts", + "hash": "18427500395577533163" + }, + { + "file": "packages/react-charting/src/components/DonutChart/Arc/Arc.styles.ts", + "hash": "7895309768491440724" + }, + { + "file": "packages/react-charting/src/components/DonutChart/Arc/Arc.tsx", + "hash": "2330806458474842227" + }, + { + "file": "packages/react-charting/src/components/DonutChart/Arc/Arc.types.ts", + "hash": "16065720622755568506" + }, + { + "file": "packages/react-charting/src/components/DonutChart/Arc/index.ts", + "hash": "1900034318969066403" + }, + { + "file": "packages/react-charting/src/components/DonutChart/DonutChart.base.tsx", + "hash": "10268361611138934570" + }, + { + "file": "packages/react-charting/src/components/DonutChart/DonutChart.styles.ts", + "hash": "11358002037113474527" + }, + { + "file": "packages/react-charting/src/components/DonutChart/DonutChart.test.tsx", + "hash": "5958743739940266923" + }, + { + "file": "packages/react-charting/src/components/DonutChart/DonutChart.tsx", + "hash": "7275902301021404929" + }, + { + "file": "packages/react-charting/src/components/DonutChart/DonutChart.types.ts", + "hash": "4516278623257219501" + }, + { + "file": "packages/react-charting/src/components/DonutChart/DonutChartRTL.test.tsx", + "hash": "14322898289149593579" + }, + { + "file": "packages/react-charting/src/components/DonutChart/Pie/Pie.styles.ts", + "hash": "10152053319232122101" + }, + { + "file": "packages/react-charting/src/components/DonutChart/Pie/Pie.tsx", + "hash": "11614740086900193123" + }, + { + "file": "packages/react-charting/src/components/DonutChart/Pie/Pie.types.ts", + "hash": "11125249214832061206" + }, + { + "file": "packages/react-charting/src/components/DonutChart/Pie/index.ts", + "hash": "10239719749643656780" + }, + { + "file": "packages/react-charting/src/components/DonutChart/__snapshots__/DonutChart.test.tsx.snap", + "hash": "9016515451622476991" + }, + { + "file": "packages/react-charting/src/components/DonutChart/__snapshots__/DonutChartRTL.test.tsx.snap", + "hash": "17036608489000678631" + }, + { + "file": "packages/react-charting/src/components/DonutChart/index.ts", + "hash": "806476801011512331" + }, + { + "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.base.tsx", + "hash": "16183101230137736688" + }, + { + "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.styles.ts", + "hash": "12584121085851326284" + }, + { + "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.test.tsx", + "hash": "10662024859942869001" + }, + { + "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.tsx", + "hash": "865686789344357921" + }, + { + "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.types.ts", + "hash": "4362068369519411803" + }, + { + "file": "packages/react-charting/src/components/GaugeChart/__snapshots__/GaugeChart.test.tsx.snap", + "hash": "11405406597359121046" + }, + { + "file": "packages/react-charting/src/components/GaugeChart/index.ts", + "hash": "4092070756489945207" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.base.tsx", + "hash": "14453233103862816273" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.styles.ts", + "hash": "12477643478465004864" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.test.tsx", + "hash": "9445138471362825733" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.tsx", + "hash": "547590682698808044" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.types.tsx", + "hash": "12889683239252933321" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChartRTL.test.tsx", + "hash": "10525872028168114118" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/__snapshots__/GroupedVerticalBarChart.test.tsx.snap", + "hash": "8040317183569723433" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/__snapshots__/GroupedVerticalBarChartRTL.test.tsx.snap", + "hash": "299674228253636226" + }, + { + "file": "packages/react-charting/src/components/GroupedVerticalBarChart/index.ts", + "hash": "13964524092875310611" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.base.tsx", + "hash": "14736055171474099514" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.styles.ts", + "hash": "3628619072673059761" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.test.tsx", + "hash": "13713221853867964395" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.ts", + "hash": "16716363014827473773" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.types.ts", + "hash": "3674068218531855343" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChartRTL.test.tsx", + "hash": "17060242443347982036" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/__snapshots__/HeatMapChart.test.tsx.snap", + "hash": "6387895552680780102" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/__snapshots__/HeatMapChartRTL.test.tsx.snap", + "hash": "16624646934983480883" + }, + { + "file": "packages/react-charting/src/components/HeatMapChart/index.ts", + "hash": "13482718997286729011" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.base.tsx", + "hash": "13566135812259845013" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.styles.ts", + "hash": "4803222885505764720" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.test.tsx", + "hash": "174550185337193462" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.tsx", + "hash": "167672050024112358" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.types.ts", + "hash": "18260154883030747993" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChartRTL.test.tsx", + "hash": "3109701644691445553" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/__snapshots__/HorizontalBarChart.test.tsx.snap", + "hash": "14352873482900009557" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/__snapshots__/HorizontalBarChartRTL.test.tsx.snap", + "hash": "6955011355447270715" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChart/index.ts", + "hash": "9333962282124191662" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.base.tsx", + "hash": "1693916576160075498" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.styles.ts", + "hash": "6304783213286072684" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.test.tsx", + "hash": "4341461412662372767" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.tsx", + "hash": "12967004230463593214" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.types.ts", + "hash": "16087732441245592913" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxisRTL.test.tsx", + "hash": "9255529074178961905" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/__snapshots__/HorizontalBarChartWithAxis.test.tsx.snap", + "hash": "17394200814316753927" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/__snapshots__/HorizontalBarChartWithAxisRTL.test.tsx.snap", + "hash": "8510830069076786321" + }, + { + "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/index.ts", + "hash": "2159216284678808164" + }, + { + "file": "packages/react-charting/src/components/Legends/Legends.base.tsx", + "hash": "8336604979277864868" + }, + { + "file": "packages/react-charting/src/components/Legends/Legends.styles.ts", + "hash": "4390445994177513641" + }, + { + "file": "packages/react-charting/src/components/Legends/Legends.test.tsx", + "hash": "12838721524269860" + }, + { + "file": "packages/react-charting/src/components/Legends/Legends.tsx", + "hash": "17763042590237256403" + }, + { + "file": "packages/react-charting/src/components/Legends/Legends.types.ts", + "hash": "10719772021828530616" + }, + { + "file": "packages/react-charting/src/components/Legends/__snapshots__/Legends.test.tsx.snap", + "hash": "7042275020175287303" + }, + { + "file": "packages/react-charting/src/components/Legends/index.ts", + "hash": "11962396932209767202" + }, + { + "file": "packages/react-charting/src/components/Legends/shape.tsx", + "hash": "9410159346354247531" + }, + { + "file": "packages/react-charting/src/components/LineChart/LineChart.base.tsx", + "hash": "1743467768340726551" + }, + { + "file": "packages/react-charting/src/components/LineChart/LineChart.styles.ts", + "hash": "4772105040357989417" + }, + { + "file": "packages/react-charting/src/components/LineChart/LineChart.test.tsx", + "hash": "4473160801976779354" + }, + { + "file": "packages/react-charting/src/components/LineChart/LineChart.tsx", + "hash": "17773336946261757726" + }, + { + "file": "packages/react-charting/src/components/LineChart/LineChart.types.ts", + "hash": "10257967280247755900" + }, + { + "file": "packages/react-charting/src/components/LineChart/LineChartRTL.test.tsx", + "hash": "7383273194652858704" + }, + { + "file": "packages/react-charting/src/components/LineChart/__snapshots__/LineChart.test.tsx.snap", + "hash": "2565168848531218728" + }, + { + "file": "packages/react-charting/src/components/LineChart/__snapshots__/LineChartRTL.test.tsx.snap", + "hash": "16961247164859363448" + }, + { + "file": "packages/react-charting/src/components/LineChart/eventAnnotation/EventAnnotation.tsx", + "hash": "1448438468217299215" + }, + { + "file": "packages/react-charting/src/components/LineChart/eventAnnotation/LabelLink.tsx", + "hash": "4839885737511228824" + }, + { + "file": "packages/react-charting/src/components/LineChart/eventAnnotation/Textbox.tsx", + "hash": "5832348627714078393" + }, + { + "file": "packages/react-charting/src/components/LineChart/index.ts", + "hash": "4650408877452069117" + }, + { + "file": "packages/react-charting/src/components/PieChart/Arc/Arc.styles.ts", + "hash": "13106112677766064183" + }, + { + "file": "packages/react-charting/src/components/PieChart/Arc/Arc.tsx", + "hash": "10390303130266047054" + }, + { + "file": "packages/react-charting/src/components/PieChart/Arc/Arc.types.ts", + "hash": "3997819974378711901" + }, + { + "file": "packages/react-charting/src/components/PieChart/Arc/index.ts", + "hash": "1900034318969066403" + }, + { + "file": "packages/react-charting/src/components/PieChart/Pie/Pie.styles.ts", + "hash": "11381302664912127439" + }, + { + "file": "packages/react-charting/src/components/PieChart/Pie/Pie.tsx", + "hash": "5623368322288978473" + }, + { + "file": "packages/react-charting/src/components/PieChart/Pie/Pie.types.ts", + "hash": "1875472874734088782" + }, + { + "file": "packages/react-charting/src/components/PieChart/Pie/index.ts", + "hash": "10239719749643656780" + }, + { + "file": "packages/react-charting/src/components/PieChart/PieChart.base.tsx", + "hash": "12921994545695521033" + }, + { + "file": "packages/react-charting/src/components/PieChart/PieChart.styles.ts", + "hash": "11321424857209075565" + }, + { + "file": "packages/react-charting/src/components/PieChart/PieChart.test.tsx", + "hash": "11677544683436052134" + }, + { + "file": "packages/react-charting/src/components/PieChart/PieChart.tsx", + "hash": "4527556264484607554" + }, + { + "file": "packages/react-charting/src/components/PieChart/PieChart.types.ts", + "hash": "15623409056434247426" + }, + { + "file": "packages/react-charting/src/components/PieChart/PieChartRTL.test.tsx", + "hash": "16233211447376373011" + }, + { + "file": "packages/react-charting/src/components/PieChart/__snapshots__/PieChart.test.tsx.snap", + "hash": "4016198114503601082" + }, + { + "file": "packages/react-charting/src/components/PieChart/__snapshots__/PieChartRTL.test.tsx.snap", + "hash": "8413701594029012718" + }, + { + "file": "packages/react-charting/src/components/PieChart/index.ts", + "hash": "5955166752264931769" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.base.tsx", + "hash": "4238588452395692138" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.styles.ts", + "hash": "11368532189204175738" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.test.tsx", + "hash": "16134333975133506558" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.tsx", + "hash": "9289951482328354569" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.types.ts", + "hash": "15014298009889412684" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/SankeyChartRTL.test.tsx", + "hash": "868790866629945990" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/__snapshots__/SankeyChart.test.tsx.snap", + "hash": "4049212962907979931" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/__snapshots__/SankeyChartRTL.test.tsx.snap", + "hash": "5700523192183358557" + }, + { + "file": "packages/react-charting/src/components/SankeyChart/index.ts", + "hash": "13870984042315143866" + }, + { + "file": "packages/react-charting/src/components/Sparkline/Sparkline.base.tsx", + "hash": "7967151691860791302" + }, + { + "file": "packages/react-charting/src/components/Sparkline/Sparkline.styles.ts", + "hash": "2202640113884915397" + }, + { + "file": "packages/react-charting/src/components/Sparkline/Sparkline.test.tsx", + "hash": "8468249823093830932" + }, + { + "file": "packages/react-charting/src/components/Sparkline/Sparkline.tsx", + "hash": "8843740910926078940" + }, + { + "file": "packages/react-charting/src/components/Sparkline/Sparkline.types.ts", + "hash": "8837031610239272804" + }, + { + "file": "packages/react-charting/src/components/Sparkline/SparklineRTL.test.tsx", + "hash": "17767147002141960667" + }, + { + "file": "packages/react-charting/src/components/Sparkline/__snapshots__/Sparkline.test.tsx.snap", + "hash": "18168444434486593058" + }, + { + "file": "packages/react-charting/src/components/Sparkline/__snapshots__/SparklineRTL.test.tsx.snap", + "hash": "17716551567309776610" + }, + { + "file": "packages/react-charting/src/components/Sparkline/index.ts", + "hash": "9268351487690962554" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.base.tsx", + "hash": "16352182103019411834" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.styles.ts", + "hash": "14038483678757699445" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.test.tsx", + "hash": "5169005374924869809" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.tsx", + "hash": "6725276213177702647" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.types.ts", + "hash": "431656116944400988" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChartRTL.test.tsx", + "hash": "14736367081219831047" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.base.tsx", + "hash": "2927471067626698909" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.styles.ts", + "hash": "11603146486475755241" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.test.tsx", + "hash": "5336773472540129552" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.tsx", + "hash": "4436183465389462436" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.types.ts", + "hash": "10981829443029230848" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChartRTL.test.tsx", + "hash": "3869922963895117385" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/__snapshots__/MultiStackedBarChart.test.tsx.snap", + "hash": "8446879553536508446" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/__snapshots__/MultiStackedBarChartRTL.test.tsx.snap", + "hash": "16448004251364457038" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/__snapshots__/StackedBarChart.test.tsx.snap", + "hash": "7252639629933796491" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/__snapshots__/StackedBarChartRTL.test.tsx.snap", + "hash": "9503984772139484704" + }, + { + "file": "packages/react-charting/src/components/StackedBarChart/index.ts", + "hash": "15578486466730932711" + }, + { + "file": "packages/react-charting/src/components/TreeChart/TreeChart.base.tsx", + "hash": "10623309691759917195" + }, + { + "file": "packages/react-charting/src/components/TreeChart/TreeChart.md", + "hash": "5175369282106178614" + }, + { + "file": "packages/react-charting/src/components/TreeChart/TreeChart.styles.ts", + "hash": "17861002185407290370" + }, + { + "file": "packages/react-charting/src/components/TreeChart/TreeChart.test.tsx", + "hash": "8465420044933020987" + }, + { + "file": "packages/react-charting/src/components/TreeChart/TreeChart.tsx", + "hash": "13438935336731785436" + }, + { + "file": "packages/react-charting/src/components/TreeChart/TreeChart.types.ts", + "hash": "9815794191923244384" + }, + { + "file": "packages/react-charting/src/components/TreeChart/__snapshots__/TreeChart.test.tsx.snap", + "hash": "238652132373299106" + }, + { + "file": "packages/react-charting/src/components/TreeChart/index.ts", + "hash": "2826009403154309363" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.base.tsx", + "hash": "8336076320828394951" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.styles.ts", + "hash": "6267631615960523739" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.test.tsx", + "hash": "10655231889810527960" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.tsx", + "hash": "3592096069015647087" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.types.ts", + "hash": "1360416350825185069" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChartRTL.test.tsx", + "hash": "17820943011845170989" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/__snapshots__/VerticalBarChart.test.tsx.snap", + "hash": "13303928231674988916" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/__snapshots__/VerticalBarChartRTL.test.tsx.snap", + "hash": "8170413271310272463" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/index.ts", + "hash": "9875808817767585330" + }, + { + "file": "packages/react-charting/src/components/VerticalBarChart/react-dom.jsx", + "hash": "17581154772148716541" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.base.tsx", + "hash": "12977454775737757480" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.styles.ts", + "hash": "14229107687470008229" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.test.tsx", + "hash": "4877115899948100379" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.tsx", + "hash": "11335430591061979311" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.types.ts", + "hash": "18235795669827468523" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChartRTL.test.tsx", + "hash": "8425206743206271978" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/__snapshots__/VerticalStackedBarChart.test.tsx.snap", + "hash": "5222520582796619900" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/__snapshots__/VerticalStackedBarChartRTL.test.tsx.snap", + "hash": "12764028698035015713" + }, + { + "file": "packages/react-charting/src/components/VerticalStackedBarChart/index.ts", + "hash": "1771243465102915081" + }, + { + "file": "packages/react-charting/src/index.ts", + "hash": "16175531709538828878" + }, + { + "file": "packages/react-charting/src/types/IDataPoint.ts", + "hash": "12293155624419644902" + }, + { + "file": "packages/react-charting/src/types/IEventAnnotation.ts", + "hash": "9553620252041460313" + }, + { + "file": "packages/react-charting/src/types/ILegendDataItem.ts", + "hash": "453827769507159528" + }, + { + "file": "packages/react-charting/src/types/index.ts", + "hash": "17984122460489873361" + }, + { + "file": "packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.base.tsx", + "hash": "13613396689005880572" + }, + { + "file": "packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.styles.ts", + "hash": "1188961640666456662" + }, + { + "file": "packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.tsx", + "hash": "16352669973586416577" + }, + { + "file": "packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.types.ts", + "hash": "2731466171182375306" + }, + { + "file": "packages/react-charting/src/utilities/ChartHoverCard/index.ts", + "hash": "18016841014173982452" + }, + { + "file": "packages/react-charting/src/utilities/FocusableTooltipText.tsx", + "hash": "8807412423501985193" + }, + { + "file": "packages/react-charting/src/utilities/SVGTooltipText.tsx", + "hash": "15758375221240808115" + }, + { + "file": "packages/react-charting/src/utilities/TestUtility.test.tsx", + "hash": "13941124207198777159" + }, + { + "file": "packages/react-charting/src/utilities/UtilityUnitTests.test.ts", + "hash": "12459529793627868533" + }, + { + "file": "packages/react-charting/src/utilities/__snapshots__/UtilityUnitTests.test.ts.snap", + "hash": "5180532810822606706" + }, + { + "file": "packages/react-charting/src/utilities/colors.ts", + "hash": "18245164562320937467" + }, + { + "file": "packages/react-charting/src/utilities/index.ts", + "hash": "7657671373760345128" + }, + { + "file": "packages/react-charting/src/utilities/test-data.ts", + "hash": "5562381519452570272" + }, + { + "file": "packages/react-charting/src/utilities/utilities.ts", + "hash": "4711024040231083860" + }, + { + "file": "packages/react-charting/src/version.ts", + "hash": "15896380775009511348" + }, + { + "file": "packages/react-charting/tsconfig.json", + "hash": "7639079792952290029" + }, + { + "file": "packages/react-charting/webpack.codepen.config.js", + "hash": "10315398573475886442" + }, + { + "file": "packages/react-charting/webpack.config.js", + "hash": "399209706662205981" + }, + { + "file": "packages/react-charting/webpack.serve.config.js", + "hash": "7443825724669908634" + } + ], + "@fluentui/react-18-tests-v8": [ + { + "file": "apps/react-18-tests-v8/.eslintrc.json", + "hash": "273467718057503654" + }, + { + "file": "apps/react-18-tests-v8/CHANGELOG.json", + "hash": "5977916475780078531" + }, + { + "file": "apps/react-18-tests-v8/CHANGELOG.md", + "hash": "10718461854066933788" + }, + { + "file": "apps/react-18-tests-v8/README.md", + "hash": "15862859216428956123" + }, + { + "file": "apps/react-18-tests-v8/config/tests.js", + "hash": "14010006175392234982" + }, + { + "file": "apps/react-18-tests-v8/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "apps/react-18-tests-v8/jest.config.js", + "hash": "10470340730394489937" + }, + { + "file": "apps/react-18-tests-v8/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "apps/react-18-tests-v8/package.json", + "hash": "4505824314366546808", + "deps": [ + "@fluentui/react", + "@fluentui/react-hooks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-cypress", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "apps/react-18-tests-v8/project.json", + "hash": "11648713096666160953" + }, + { + "file": "apps/react-18-tests-v8/src/App.tsx", + "hash": "13987255915692999850" + }, + { + "file": "apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.cy.tsx", + "hash": "17770592271590427144" + }, + { + "file": "apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.test.tsx", + "hash": "14913890186636114321" + }, + { + "file": "apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.tsx", + "hash": "17838905144516352385" + }, + { + "file": "apps/react-18-tests-v8/src/components/ContextualMenu/index.ts", + "hash": "11003213546574535151" + }, + { + "file": "apps/react-18-tests-v8/src/components/Panel.Basic.Example.tsx", + "hash": "11941803416852956776" + }, + { + "file": "apps/react-18-tests-v8/src/components/index.ts", + "hash": "13495884275277437011" + }, + { + "file": "apps/react-18-tests-v8/src/index.tsx", + "hash": "2918296648402810869" + }, + { + "file": "apps/react-18-tests-v8/tsconfig.app.json", + "hash": "17704136081794340261" + }, + { + "file": "apps/react-18-tests-v8/tsconfig.cy.json", + "hash": "4669440979528425638" + }, + { + "file": "apps/react-18-tests-v8/tsconfig.json", + "hash": "12085512686550681295" + }, + { + "file": "apps/react-18-tests-v8/tsconfig.react-compat-check.json", + "hash": "5090552958223827867" + }, + { + "file": "apps/react-18-tests-v8/tsconfig.spec.json", + "hash": "13287603543641469083" + }, + { + "file": "apps/react-18-tests-v8/webpack.config.js", + "hash": "18327882615681333843" + } + ], + "@fluentui/theme-samples": [ + { + "file": "packages/theme-samples/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/theme-samples/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/theme-samples/CHANGELOG.json", + "hash": "4107014302643558583" + }, + { + "file": "packages/theme-samples/CHANGELOG.md", + "hash": "16681506395571679930" + }, + { + "file": "packages/theme-samples/LICENSE", + "hash": "15482603230267471744" + }, + { + "file": "packages/theme-samples/README.md", + "hash": "3926556167459327423" + }, + { + "file": "packages/theme-samples/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/theme-samples/package.json", + "hash": "15427753799492686926", + "deps": [ + "@fluentui/react", + "@fluentui/set-version", + "@fluentui/scheme-utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "packages/theme-samples/project.json", + "hash": "6409800190469398757" + }, + { + "file": "packages/theme-samples/src/DarkCustomizations/DarkCustomizations.ts", + "hash": "5200885300371184710" + }, + { + "file": "packages/theme-samples/src/DarkCustomizations/index.ts", + "hash": "14444893938817993003" + }, + { + "file": "packages/theme-samples/src/DarkCustomizations/styles/DatePickerStyles.ts", + "hash": "15259319016214443724" + }, + { + "file": "packages/theme-samples/src/DarkCustomizations/styles/PeoplePickerStyles.ts", + "hash": "12867402699419709127" + }, + { + "file": "packages/theme-samples/src/DarkCustomizations/styles/index.ts", + "hash": "13786226689429555298" + }, + { + "file": "packages/theme-samples/src/DefaultCustomizations.ts", + "hash": "7362911222450954562" + }, + { + "file": "packages/theme-samples/src/TeamsCustomizations.ts", + "hash": "10750998333330948600" + }, + { + "file": "packages/theme-samples/src/WordCustomizations.ts", + "hash": "3224157461993899137" + }, + { + "file": "packages/theme-samples/src/index.ts", + "hash": "16878372643173057795" + }, + { + "file": "packages/theme-samples/src/version.ts", + "hash": "8159374621578079077" + }, + { + "file": "packages/theme-samples/tsconfig.json", + "hash": "5760297339315905719" + }, + { + "file": "packages/theme-samples/webpack.config.js", + "hash": "5642468613982628084" + } + ], + "@fluentui/react-menu": [ + { + "file": "packages/react-components/react-menu/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-menu/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-menu/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-menu/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-menu/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-menu/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-menu/CHANGELOG.json", + "hash": "13476910229160629174" + }, + { + "file": "packages/react-components/react-menu/CHANGELOG.md", + "hash": "14554664184101537573" + }, + { + "file": "packages/react-components/react-menu/LICENSE", + "hash": "15736152015969238586" + }, + { + "file": "packages/react-components/react-menu/README.md", + "hash": "9974219480792599156" + }, + { + "file": "packages/react-components/react-menu/bundle-size/Menu.Selectable.fixture.js", + "hash": "10055718406591672962" + }, + { + "file": "packages/react-components/react-menu/bundle-size/Menu.fixture.js", + "hash": "7380423072833944343" + }, + { + "file": "packages/react-components/react-menu/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-menu/config/tests.js", + "hash": "14010006175392234982" + }, + { + "file": "packages/react-components/react-menu/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-menu/docs/Spec.md", + "hash": "3976522757863907944" + }, + { + "file": "packages/react-components/react-menu/etc/images/linked-keyboard-mouse-navigation.gif", + "hash": "9534445546290517565" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide1.PNG", + "hash": "10996843919047425143" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide10.PNG", + "hash": "7762249894771317134" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide11.PNG", + "hash": "13152679522862275183" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide12.PNG", + "hash": "8847288720715588337" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide13.PNG", + "hash": "9104014278253187127" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide14.PNG", + "hash": "7315926729919914999" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide15.PNG", + "hash": "8236518680473418181" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide16.PNG", + "hash": "9980447627512903644" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide17.PNG", + "hash": "17422977984885863150" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide18.PNG", + "hash": "14759594747101336129" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide19.PNG", + "hash": "17650756235105260437" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide2.PNG", + "hash": "30424365879784040" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide20.PNG", + "hash": "1612062547793799900" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide21.PNG", + "hash": "11124503703698606421" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide22.PNG", + "hash": "811262722789076426" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide3.PNG", + "hash": "10845368115041205445" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide4.PNG", + "hash": "8986088429055328339" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide5.PNG", + "hash": "10871140165914991445" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide6.PNG", + "hash": "13977431754554812773" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide7.PNG", + "hash": "499398108476843717" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide8.PNG", + "hash": "3744764180890858266" + }, + { + "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide9.PNG", + "hash": "892375687068162726" + }, + { + "file": "packages/react-components/react-menu/etc/images/splitbutton-left-right.jpg", + "hash": "11974008894047502409" + }, + { + "file": "packages/react-components/react-menu/etc/images/splitbutton-up-down.jpg", + "hash": "3421245233520048777" + }, + { + "file": "packages/react-components/react-menu/etc/react-menu.api.md", + "hash": "2625235660532732525" + }, + { + "file": "packages/react-components/react-menu/jest.config.js", + "hash": "1745463398219509870" + }, + { + "file": "packages/react-components/react-menu/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-menu/package.json", + "hash": "16266155024367291616", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-aria", + "@fluentui/react-context-selector", + "npm:@fluentui/react-icons", + "@fluentui/react-portal", + "@fluentui/react-positioning", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-menu/project.json", + "hash": "9575547020162500401" + }, + { + "file": "packages/react-components/react-menu/src/Menu.ts", + "hash": "8756792321904454806" + }, + { + "file": "packages/react-components/react-menu/src/MenuDivider.ts", + "hash": "9623716229305140831" + }, + { + "file": "packages/react-components/react-menu/src/MenuGroup.ts", + "hash": "12488100988105222327" + }, + { + "file": "packages/react-components/react-menu/src/MenuGroupHeader.ts", + "hash": "14350848624142614817" + }, + { + "file": "packages/react-components/react-menu/src/MenuItem.ts", + "hash": "3661288238805445610" + }, + { + "file": "packages/react-components/react-menu/src/MenuItemCheckbox.ts", + "hash": "17719054125879305473" + }, + { + "file": "packages/react-components/react-menu/src/MenuItemLink.ts", + "hash": "558019554312927506" + }, + { + "file": "packages/react-components/react-menu/src/MenuItemRadio.ts", + "hash": "12593718358566802102" + }, + { + "file": "packages/react-components/react-menu/src/MenuList.ts", + "hash": "8846519038441631805" + }, + { + "file": "packages/react-components/react-menu/src/MenuPopover.ts", + "hash": "2983509257027835571" + }, + { + "file": "packages/react-components/react-menu/src/MenuSplitGroup.ts", + "hash": "15513016859210475093" + }, + { + "file": "packages/react-components/react-menu/src/MenuTrigger.ts", + "hash": "11698345674200359338" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/Menu.cy.tsx", + "hash": "6444122186839663883" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/Menu.test.tsx", + "hash": "17729822688881618421" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/Menu.tsx", + "hash": "5848268992573469282" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/Menu.types.ts", + "hash": "9651040264007662262" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/__snapshots__/Menu.test.tsx.snap", + "hash": "3975719831104486533" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/index.ts", + "hash": "1304198499668176681" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/renderMenu.tsx", + "hash": "9385651029638656923" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/useMenu.tsx", + "hash": "14860197231320244296" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/useMenuContextValues.test.tsx", + "hash": "5547672389280910376" + }, + { + "file": "packages/react-components/react-menu/src/components/Menu/useMenuContextValues.ts", + "hash": "12642077360124745015" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.test.tsx", + "hash": "11549581151984489972" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.tsx", + "hash": "16805562512970289459" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.types.ts", + "hash": "15007456810137280687" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuDivider/__snapshots__/MenuDivider.test.tsx.snap", + "hash": "14233671526668994289" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuDivider/index.ts", + "hash": "2565091352590454773" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuDivider/renderMenuDivider.tsx", + "hash": "11018995948109107341" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuDivider/useMenuDivider.ts", + "hash": "5780887031541246803" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuDivider/useMenuDividerStyles.styles.ts", + "hash": "10077324190440540609" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.test.tsx", + "hash": "1204087493474192749" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.tsx", + "hash": "4498560461645350515" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.types.ts", + "hash": "15219881719761407189" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/__snapshots__/MenuGroup.test.tsx.snap", + "hash": "16965914614106720477" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/index.ts", + "hash": "9209511433755125706" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/renderMenuGroup.tsx", + "hash": "8181753885401947257" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/useMenuGroup.ts", + "hash": "3910564680106426846" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupContextValues.test.ts", + "hash": "18001211045297471397" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupContextValues.ts", + "hash": "9216932486656446401" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupStyles.styles.ts", + "hash": "8932499573143732756" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.test.tsx", + "hash": "6988462447077728607" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.tsx", + "hash": "1503771799834923441" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.types.ts", + "hash": "17330269037191754353" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/__snapshots__/MenuGroupHeader.test.tsx.snap", + "hash": "7337392803220596786" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/index.ts", + "hash": "6033635462197304978" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/renderMenuGroupHeader.tsx", + "hash": "3324830091053494995" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/useMenuGroupHeader.ts", + "hash": "15653895465410418163" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/useMenuGroupHeaderStyles.styles.ts", + "hash": "14997030694868856005" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/MenuItem.test.tsx", + "hash": "2873679684291235423" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/MenuItem.tsx", + "hash": "12024201470866756651" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/MenuItem.types.ts", + "hash": "10707482172801795547" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/__snapshots__/MenuItem.test.tsx.snap", + "hash": "5385709528323368001" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/index.ts", + "hash": "9541045283331288441" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/renderMenuItem.tsx", + "hash": "14942392158866532539" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/useCharacterSearch.ts", + "hash": "6267469289989024961" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/useMenuItem.tsx", + "hash": "1396724368639234346" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItem/useMenuItemStyles.styles.ts", + "hash": "6460526830763324982" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.test.tsx", + "hash": "14984384382944601371" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.tsx", + "hash": "787477252537168940" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.types.ts", + "hash": "5905203447588022674" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/__snapshots__/MenuItemCheckbox.test.tsx.snap", + "hash": "7828754620629991266" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/index.ts", + "hash": "3588188147991430141" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/renderMenuItemCheckbox.tsx", + "hash": "258385211829308265" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/useMenuItemCheckbox.tsx", + "hash": "5944646457710051085" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/useMenuItemCheckboxStyles.styles.ts", + "hash": "7462323984399882305" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.test.tsx", + "hash": "17595296506760269868" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.tsx", + "hash": "17248523960727803144" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.types.ts", + "hash": "2020161238381044485" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemLink/__snapshots__/MenuItemLink.test.tsx.snap", + "hash": "15703671203227564493" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemLink/index.ts", + "hash": "13697213369728295884" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemLink/renderMenuItemLink.tsx", + "hash": "1571195633627266707" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemLink/useMenuItemLink.ts", + "hash": "15485512175090047445" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemLink/useMenuItemLinkStyles.styles.ts", + "hash": "10673459437642068479" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.test.tsx", + "hash": "17830365470523402000" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.tsx", + "hash": "15806557780886661014" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.types.ts", + "hash": "5784410031569147629" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemRadio/__snapshots__/MenuItemRadio.test.tsx.snap", + "hash": "7601418981291270276" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemRadio/index.ts", + "hash": "16477535113948742245" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemRadio/renderMenuItemRadio.tsx", + "hash": "6094725217997746798" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemRadio/useMenuItemRadio.tsx", + "hash": "18361762024477785461" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuItemRadio/useMenuItemRadioStyles.styles.ts", + "hash": "7787085258183418184" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/MenuList.cy.tsx", + "hash": "10558493214717613555" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/MenuList.test.tsx", + "hash": "7501375996347123259" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/MenuList.tsx", + "hash": "17587090556546066160" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/MenuList.types.ts", + "hash": "13914750447147370364" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/__snapshots__/MenuList.test.tsx.snap", + "hash": "2592775585730575933" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/index.ts", + "hash": "15342917811343006430" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/renderMenuList.tsx", + "hash": "5602566865692845045" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/useMenuList.test.ts", + "hash": "12471856953641215156" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/useMenuList.ts", + "hash": "9802933237562563138" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/useMenuListContextValues.test.ts", + "hash": "17123086118342755317" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/useMenuListContextValues.ts", + "hash": "13896741539445495081" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuList/useMenuListStyles.styles.ts", + "hash": "4780194249150348842" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.test.tsx", + "hash": "6189729203934803945" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.tsx", + "hash": "12082762929186071460" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.types.ts", + "hash": "8455769478368286917" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuPopover/__snapshots__/MenuPopover.test.tsx.snap", + "hash": "2150294699172352256" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuPopover/index.ts", + "hash": "14317626586151272452" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuPopover/renderMenuPopover.tsx", + "hash": "8869926913492328294" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuPopover/useMenuPopover.ts", + "hash": "13420499812023202946" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuPopover/useMenuPopoverStyles.styles.ts", + "hash": "1253775784838469533" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.test.tsx", + "hash": "1840138852833662611" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.tsx", + "hash": "16572984695100801171" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.types.ts", + "hash": "13031355897166894941" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/__snapshots__/MenuSplitGroup.test.tsx.snap", + "hash": "17458023320221705773" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/index.ts", + "hash": "318475417289781564" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/renderMenuSplitGroup.tsx", + "hash": "5901409832995632926" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/useMenuSplitGroup.ts", + "hash": "17746241506547851787" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/useMenuSplitGroupStyles.styles.ts", + "hash": "12933949261295792806" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.test.tsx", + "hash": "11060889766755576204" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.tsx", + "hash": "1394653538801574152" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.types.ts", + "hash": "946719309818581252" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuTrigger/__snapshots__/MenuTrigger.test.tsx.snap", + "hash": "11843977669537975918" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuTrigger/index.ts", + "hash": "10359213883192490894" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuTrigger/renderMenuTrigger.tsx", + "hash": "486853907445320152" + }, + { + "file": "packages/react-components/react-menu/src/components/MenuTrigger/useMenuTrigger.ts", + "hash": "9150439686645890667" + }, + { + "file": "packages/react-components/react-menu/src/components/index.ts", + "hash": "15281374471627944273" + }, + { + "file": "packages/react-components/react-menu/src/contexts/menuContext.ts", + "hash": "6239917358806324505" + }, + { + "file": "packages/react-components/react-menu/src/contexts/menuGroupContext.ts", + "hash": "6370087999253214975" + }, + { + "file": "packages/react-components/react-menu/src/contexts/menuListContext.tsx", + "hash": "6819638168391932370" + }, + { + "file": "packages/react-components/react-menu/src/contexts/menuTriggerContext.ts", + "hash": "6036099642596285418" + }, + { + "file": "packages/react-components/react-menu/src/index.ts", + "hash": "10360275651669209236" + }, + { + "file": "packages/react-components/react-menu/src/selectable/index.ts", + "hash": "4319182688114126685" + }, + { + "file": "packages/react-components/react-menu/src/selectable/types.ts", + "hash": "16485900127811599667" + }, + { + "file": "packages/react-components/react-menu/src/selectable/useCheckmarkStyles.styles.ts", + "hash": "3906585967852877939" + }, + { + "file": "packages/react-components/react-menu/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-menu/src/testing/mockUseMenuContext.ts", + "hash": "6314525062221789050" + }, + { + "file": "packages/react-components/react-menu/src/testing/selectors.ts", + "hash": "8209790805045598641" + }, + { + "file": "packages/react-components/react-menu/src/utils/index.ts", + "hash": "4078004951295563239" + }, + { + "file": "packages/react-components/react-menu/src/utils/useIsSubmenu.ts", + "hash": "11033603198558854107" + }, + { + "file": "packages/react-components/react-menu/src/utils/useOnMenuEnter.ts", + "hash": "6826503496950204850" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuAligningWithIcons.stories.tsx", + "hash": "16433524456963419092" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuAligningWithSelectableItems.stories.tsx", + "hash": "14474345408241564020" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuAnchorToTarget.stories.tsx", + "hash": "9486718017680407788" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuBestPractices.md", + "hash": "5249056618079920833" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuCheckboxItems.stories.tsx", + "hash": "8841710572274735202" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuControlledCheckboxItems.stories.tsx", + "hash": "16683035339345466174" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuControlledRadioItems.stories.tsx", + "hash": "1922948447837293872" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuControllingOpenAndClose.stories.tsx", + "hash": "987124754558044067" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuCustomTrigger.stories.tsx", + "hash": "18094199124507674772" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuDefault.stories.tsx", + "hash": "16799265814272918058" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuDescription.md", + "hash": "9350708939226578245" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuGroupingItems.stories.tsx", + "hash": "6589559459586809781" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuInteraction.stories.tsx", + "hash": "5236924903760670398" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuItemLinkNavigation.stories.tsx", + "hash": "10427912434970875220" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuMemoizedMenuItems.stories.tsx", + "hash": "18299823585577487381" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuMenuItemsWithIcons.stories.tsx", + "hash": "17400593762694855498" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuNestedSubmenus.stories.tsx", + "hash": "16674356508768541596" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuNestedSubmenusControlled.stories.tsx", + "hash": "3051040041580907048" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuRadioItems.stories.tsx", + "hash": "15098987322999033693" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuRenderFunctionTrigger.stories.tsx", + "hash": "15200765170839343603" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuSecondaryContentForMenuItems.stories.tsx", + "hash": "10654468810932398313" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuSelectionGroup.stories.tsx", + "hash": "306600798412747459" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuSplitMenuItem.stories.tsx", + "hash": "797134403737860059" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuTriggerWithTooltip.stories.tsx", + "hash": "13215432807511638517" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/MenuVisualDividerOnly.stories.tsx", + "hash": "4883926450294571262" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/NestedSubmenusResponsiveness.stories.tsx", + "hash": "14146194086814006414" + }, + { + "file": "packages/react-components/react-menu/stories/Menu/index.stories.tsx", + "hash": "3296822820272671917" + }, + { + "file": "packages/react-components/react-menu/stories/MenuList/MenuListCheckboxItems.stories.tsx", + "hash": "3251768030696211806" + }, + { + "file": "packages/react-components/react-menu/stories/MenuList/MenuListControlledCheckboxItems.stories.tsx", + "hash": "16990448086722515461" + }, + { + "file": "packages/react-components/react-menu/stories/MenuList/MenuListControlledRadioItems.stories.tsx", + "hash": "7291360822499525379" + }, + { + "file": "packages/react-components/react-menu/stories/MenuList/MenuListDefault.stories.tsx", + "hash": "10353579900915928948" + }, + { + "file": "packages/react-components/react-menu/stories/MenuList/MenuListDescription.md", + "hash": "4214626428591226389" + }, + { + "file": "packages/react-components/react-menu/stories/MenuList/MenuListNestedSubmenus.stories.tsx", + "hash": "12052013926643032775" + }, + { + "file": "packages/react-components/react-menu/stories/MenuList/MenuListRadioItems.stories.tsx", + "hash": "3448944709947031326" + }, + { + "file": "packages/react-components/react-menu/stories/MenuList/index.stories.tsx", + "hash": "17161123005114922980" + }, + { + "file": "packages/react-components/react-menu/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-menu/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-menu/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-menu/tsconfig.spec.json", + "hash": "6578707152334499940" + } + ], + "@fluentui/react-proptypes": [ + { + "file": "packages/fluentui/react-proptypes/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-proptypes/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-proptypes/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-proptypes/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-proptypes/jest.config.js", + "hash": "13298147580513423019" + }, + { + "file": "packages/fluentui/react-proptypes/package.json", + "hash": "7789869904881339211", + "deps": [ + "npm:@babel/runtime", + "npm:lodash", + "npm:prop-types", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:lerna-alias" + ] + }, + { + "file": "packages/fluentui/react-proptypes/project.json", + "hash": "15801865268072002675" + }, + { + "file": "packages/fluentui/react-proptypes/src/index.ts", + "hash": "1441906070263022901" + }, + { + "file": "packages/fluentui/react-proptypes/src/leven.ts", + "hash": "8912276677069105379" + }, + { + "file": "packages/fluentui/react-proptypes/test/customPropTypes-test.ts", + "hash": "17583040494138182165" + }, + { + "file": "packages/fluentui/react-proptypes/tsconfig.json", + "hash": "2135287164835617870" + } + ], + "@fluentui/react-radio": [ + { + "file": "packages/react-components/react-radio/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-radio/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-radio/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-radio/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-radio/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-radio/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-radio/CHANGELOG.json", + "hash": "3459686486196441964" + }, + { + "file": "packages/react-components/react-radio/CHANGELOG.md", + "hash": "14578999085479219777" + }, + { + "file": "packages/react-components/react-radio/LICENSE", + "hash": "9112585887229860601" + }, + { + "file": "packages/react-components/react-radio/README.md", + "hash": "7429449480780465656" + }, + { + "file": "packages/react-components/react-radio/bundle-size/Radio.fixture.js", + "hash": "6056476279648699462" + }, + { + "file": "packages/react-components/react-radio/bundle-size/RadioGroup.fixture.js", + "hash": "2347449671562100332" + }, + { + "file": "packages/react-components/react-radio/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-radio/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-radio/docs/Spec.md", + "hash": "13554510639360837723" + }, + { + "file": "packages/react-components/react-radio/etc/images/horizontal-group-stacked.png", + "hash": "13781148661598441913" + }, + { + "file": "packages/react-components/react-radio/etc/images/horizontal-group.png", + "hash": "17430229115123999828" + }, + { + "file": "packages/react-components/react-radio/etc/images/vertical-group-with-dropdown.png", + "hash": "16718633047948489140" + }, + { + "file": "packages/react-components/react-radio/etc/images/vertical-group-with-input.png", + "hash": "767002637445042851" + }, + { + "file": "packages/react-components/react-radio/etc/images/vertical-group.png", + "hash": "4914366318572506386" + }, + { + "file": "packages/react-components/react-radio/etc/react-radio.api.md", + "hash": "14339882295224824349" + }, + { + "file": "packages/react-components/react-radio/jest.config.js", + "hash": "4378835463518598771" + }, + { + "file": "packages/react-components/react-radio/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-radio/package.json", + "hash": "12751640571718797407", + "deps": [ + "@fluentui/react-field", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-label", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-radio/project.json", + "hash": "7820595109551665028" + }, + { + "file": "packages/react-components/react-radio/src/Radio.ts", + "hash": "7263746132466436601" + }, + { + "file": "packages/react-components/react-radio/src/RadioGroup.ts", + "hash": "9616148445474045919" + }, + { + "file": "packages/react-components/react-radio/src/components/Radio/Radio.test.tsx", + "hash": "6736735414979302828" + }, + { + "file": "packages/react-components/react-radio/src/components/Radio/Radio.tsx", + "hash": "3790282066800805246" + }, + { + "file": "packages/react-components/react-radio/src/components/Radio/Radio.types.ts", + "hash": "9229799828831420871" + }, + { + "file": "packages/react-components/react-radio/src/components/Radio/index.ts", + "hash": "8479995711248948636" + }, + { + "file": "packages/react-components/react-radio/src/components/Radio/renderRadio.tsx", + "hash": "12246486103260771246" + }, + { + "file": "packages/react-components/react-radio/src/components/Radio/useRadio.tsx", + "hash": "4422675660519438615" + }, + { + "file": "packages/react-components/react-radio/src/components/Radio/useRadioStyles.styles.ts", + "hash": "9322792565954029544" + }, + { + "file": "packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.test.tsx", + "hash": "1729336792797867060" + }, + { + "file": "packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.tsx", + "hash": "13051368676540290025" + }, + { + "file": "packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.types.ts", + "hash": "2456202840593717778" + }, + { + "file": "packages/react-components/react-radio/src/components/RadioGroup/index.ts", + "hash": "8969274474740272512" + }, + { + "file": "packages/react-components/react-radio/src/components/RadioGroup/renderRadioGroup.tsx", + "hash": "4848267084755134712" + }, + { + "file": "packages/react-components/react-radio/src/components/RadioGroup/useRadioGroup.ts", + "hash": "1485129830782544789" + }, + { + "file": "packages/react-components/react-radio/src/components/RadioGroup/useRadioGroupStyles.styles.ts", + "hash": "9187301613711214224" + }, + { + "file": "packages/react-components/react-radio/src/contexts/RadioGroupContext.ts", + "hash": "10239000936212442133" + }, + { + "file": "packages/react-components/react-radio/src/contexts/index.ts", + "hash": "6039445079577715801" + }, + { + "file": "packages/react-components/react-radio/src/contexts/useRadioGroupContextValues.ts", + "hash": "5680455141558794134" + }, + { + "file": "packages/react-components/react-radio/src/index.ts", + "hash": "8493262146993548233" + }, + { + "file": "packages/react-components/react-radio/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupBestPractices.md", + "hash": "11896541066091939987" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupControlledValue.stories.tsx", + "hash": "17594916395232449758" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDefault.stories.tsx", + "hash": "17660784807463505960" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDefaultValue.stories.tsx", + "hash": "17633773687365122976" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDescription.md", + "hash": "11915016562314600380" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDisabled.stories.tsx", + "hash": "17381303118996967824" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDisabledItem.stories.tsx", + "hash": "14317893343810056642" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupHorizontal.stories.tsx", + "hash": "12753958700259064575" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupHorizontalStacked.stories.tsx", + "hash": "14132521406762046576" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupLabelSubtext.stories.tsx", + "hash": "12387472870045441934" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupRequired.stories.tsx", + "hash": "13962288512679376395" + }, + { + "file": "packages/react-components/react-radio/stories/RadioGroup/index.stories.tsx", + "hash": "1915432931712324752" + }, + { + "file": "packages/react-components/react-radio/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-radio/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-radio/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-theme": [ + { + "file": "packages/react-components/react-theme/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-theme/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-theme/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-theme/.storybook/preview-head.html", + "hash": "177346033808426115" + }, + { + "file": "packages/react-components/react-theme/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-theme/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-theme/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-theme/CHANGELOG.json", + "hash": "15851009324481788504" + }, + { + "file": "packages/react-components/react-theme/CHANGELOG.md", + "hash": "8148872566269969725" + }, + { + "file": "packages/react-components/react-theme/LICENSE", + "hash": "7790297149303267088" + }, + { + "file": "packages/react-components/react-theme/README.md", + "hash": "8110783886660945488" + }, + { + "file": "packages/react-components/react-theme/bundle-size/SingleThemeToken.fixture.js", + "hash": "48190699545478805" + }, + { + "file": "packages/react-components/react-theme/bundle-size/TeamsAllThemes.fixture.js", + "hash": "8896684391654619670" + }, + { + "file": "packages/react-components/react-theme/bundle-size/TeamsLightTheme.fixture.js", + "hash": "14215547226107299921" + }, + { + "file": "packages/react-components/react-theme/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-theme/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-theme/etc/react-theme.api.md", + "hash": "1026602756558119011" + }, + { + "file": "packages/react-components/react-theme/jest.config.js", + "hash": "10881208247988768850" + }, + { + "file": "packages/react-components/react-theme/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-theme/package.json", + "hash": "8050136086276026658", + "deps": [ + "@fluentui/tokens", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/react-components/react-theme/project.json", + "hash": "12372302467798064068" + }, + { + "file": "packages/react-components/react-theme/src/index.ts", + "hash": "8707625999909623354" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/borderRadii/ThemeBorderRadii.stories.tsx", + "hash": "3187948697713321066" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/borderRadii/index.stories.mdx", + "hash": "12453961250297731337" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/colors/ColorRamp.stories.tsx", + "hash": "16299384491400767513" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/colors/FilterButton.stories.tsx", + "hash": "17370458700570599868" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/colors/ThemeColors.stories.tsx", + "hash": "1404087490752180885" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/colors/index.stories.mdx", + "hash": "12236570761233077569" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/fonts/ThemeFonts.stories.tsx", + "hash": "17201499561988764854" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/fonts/index.stories.mdx", + "hash": "2798815260444835062" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/motion/ThemeMotion.stories.tsx", + "hash": "16846307853033966247" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/motion/index.stories.mdx", + "hash": "16078226543713423992" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/shadows/ThemeShadows.stories.tsx", + "hash": "6901031965285366839" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/shadows/index.stories.mdx", + "hash": "18347467915038705974" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/spacing/ThemeSpacing.stories.tsx", + "hash": "12809328850478978466" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/spacing/index.stories.mdx", + "hash": "9169587683523609544" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/strokeWidths/ThemeStrokeWidths.stories.tsx", + "hash": "1558556278663600963" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/strokeWidths/index.stories.mdx", + "hash": "10215274721582502890" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/typography/Composing.stories.tsx", + "hash": "11728628513694072539" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/typography/Example.stories.tsx", + "hash": "3336989101772861512" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/typography/MixedStyles.stories.tsx", + "hash": "10948636943541688820" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/typography/ThemeTypography.stories.tsx", + "hash": "2870834578309054765" + }, + { + "file": "packages/react-components/react-theme/stories/Theme/typography/index.stories.mdx", + "hash": "2985843863773666943" + }, + { + "file": "packages/react-components/react-theme/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-theme/tsconfig.lib.json", + "hash": "2330431448937249608" + }, + { + "file": "packages/react-components/react-theme/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-textarea": [ + { + "file": "packages/react-components/react-textarea/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-textarea/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-textarea/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-textarea/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-textarea/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-textarea/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-textarea/CHANGELOG.json", + "hash": "11520373447395147471" + }, + { + "file": "packages/react-components/react-textarea/CHANGELOG.md", + "hash": "11980578315049592601" + }, + { + "file": "packages/react-components/react-textarea/LICENSE", + "hash": "4498715062543112309" + }, + { + "file": "packages/react-components/react-textarea/README.md", + "hash": "5344125108621430649" + }, + { + "file": "packages/react-components/react-textarea/bundle-size/Textarea.fixture.js", + "hash": "17192439065238344351" + }, + { + "file": "packages/react-components/react-textarea/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-textarea/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-textarea/docs/MIGRATION.md", + "hash": "17526740844244675212" + }, + { + "file": "packages/react-components/react-textarea/docs/Spec.md", + "hash": "14303084858892571145" + }, + { + "file": "packages/react-components/react-textarea/etc/react-textarea.api.md", + "hash": "5342628119613252095" + }, + { + "file": "packages/react-components/react-textarea/jest.config.js", + "hash": "10624360471583357965" + }, + { + "file": "packages/react-components/react-textarea/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-textarea/package.json", + "hash": "4053548600420780000", + "deps": [ + "@fluentui/react-field", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-textarea/project.json", + "hash": "1644416225662266477" + }, + { + "file": "packages/react-components/react-textarea/src/Textarea.ts", + "hash": "13370679537604069238" + }, + { + "file": "packages/react-components/react-textarea/src/components/Textarea/Textarea.test.tsx", + "hash": "16757346701550754906" + }, + { + "file": "packages/react-components/react-textarea/src/components/Textarea/Textarea.tsx", + "hash": "16800492880889954221" + }, + { + "file": "packages/react-components/react-textarea/src/components/Textarea/Textarea.types.ts", + "hash": "13003143832388706091" + }, + { + "file": "packages/react-components/react-textarea/src/components/Textarea/__snapshots__/Textarea.test.tsx.snap", + "hash": "16171152998841505643" + }, + { + "file": "packages/react-components/react-textarea/src/components/Textarea/index.ts", + "hash": "10698797457300083130" + }, + { + "file": "packages/react-components/react-textarea/src/components/Textarea/renderTextarea.tsx", + "hash": "6185419952357045299" + }, + { + "file": "packages/react-components/react-textarea/src/components/Textarea/useTextarea.ts", + "hash": "11772613917085952848" + }, + { + "file": "packages/react-components/react-textarea/src/components/Textarea/useTextareaStyles.styles.ts", + "hash": "13631958646115528732" + }, + { + "file": "packages/react-components/react-textarea/src/index.ts", + "hash": "6584368484105727560" + }, + { + "file": "packages/react-components/react-textarea/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaAppearance.stories.tsx", + "hash": "3539206738445718143" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaBestPractices.md", + "hash": "18227114171815669424" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaControlled.stories.tsx", + "hash": "6872279739035536493" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaDefault.stories.tsx", + "hash": "8318281564179232897" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaDescription.md", + "hash": "13485520316389720001" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaDisabled.stories.tsx", + "hash": "983048653998254023" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaPlaceholder.stories.tsx", + "hash": "462631168486124274" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaResize.stories.tsx", + "hash": "5894749941129343810" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaSize.stories.tsx", + "hash": "13553877523019339375" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/TextareaUncontrolled.stories.tsx", + "hash": "16181491644002402100" + }, + { + "file": "packages/react-components/react-textarea/stories/Textarea/index.stories.tsx", + "hash": "4062141522867859029" + }, + { + "file": "packages/react-components/react-textarea/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-textarea/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-textarea/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/common-styles": [ + { + "file": "packages/common-styles/.npmignore", + "hash": "327479296810377636" + }, + { + "file": "packages/common-styles/CHANGELOG.json", + "hash": "273257757340656739" + }, + { + "file": "packages/common-styles/CHANGELOG.md", + "hash": "3103668277148981926" + }, + { + "file": "packages/common-styles/LICENSE", + "hash": "4436358303113749104" + }, + { + "file": "packages/common-styles/README.md", + "hash": "4674155591335065321" + }, + { + "file": "packages/common-styles/config/pre-copy.json", + "hash": "13536315415449720583" + }, + { + "file": "packages/common-styles/just.config.ts", + "hash": "1976825945203391633" + }, + { + "file": "packages/common-styles/package.json", + "hash": "17165989050030419928", + "deps": ["npm:office-ui-fabric-core", "@fluentui/style-utilities", "@fluentui/scripts-tasks"] + }, + { + "file": "packages/common-styles/project.json", + "hash": "9937167994900158632" + }, + { + "file": "packages/common-styles/scripts/generateDefaultThemeSassFiles.js", + "hash": "4930205392535843957" + }, + { + "file": "packages/common-styles/src/ThemingSass.scss", + "hash": "6636654454988071435" + }, + { + "file": "packages/common-styles/src/_common.scss", + "hash": "6954687516387477622" + }, + { + "file": "packages/common-styles/src/_constants.scss", + "hash": "1069234499133074227" + }, + { + "file": "packages/common-styles/src/_effects.scss", + "hash": "8102725403571912427" + }, + { + "file": "packages/common-styles/src/_focusBorder.scss", + "hash": "10537019636132615427" + }, + { + "file": "packages/common-styles/src/_highContrast.scss", + "hash": "17939297006735694085" + }, + { + "file": "packages/common-styles/src/_i18n.scss", + "hash": "13301901823299427213" + }, + { + "file": "packages/common-styles/src/_legacyThemePalette.scss", + "hash": "6382729561059486833" + }, + { + "file": "packages/common-styles/src/_semanticSlots.scss", + "hash": "15520402900566886591" + }, + { + "file": "packages/common-styles/src/_themeCssVariables.scss", + "hash": "13486063986535911847" + }, + { + "file": "packages/common-styles/src/_themeOverrides.scss", + "hash": "6442887095598285123" + }, + { + "file": "packages/common-styles/src/_themeVariables.scss", + "hash": "8347442751634693629" + } + ], + "@fluentui/web-components": [ + { + "file": "packages/web-components/.eslintignore", + "hash": "5775863605913830991" + }, + { + "file": "packages/web-components/.eslintrc.js", + "hash": "14755478749016622181" + }, + { + "file": "packages/web-components/.mocharc.json", + "hash": "15702441908913539244" + }, + { + "file": "packages/web-components/.npmignore", + "hash": "4758005407379917060" + }, + { + "file": "packages/web-components/.storybook/main.js", + "hash": "6854078585881544184" + }, + { + "file": "packages/web-components/.storybook/manager-head.html", + "hash": "1303988664724770496" + }, + { + "file": "packages/web-components/.storybook/manager.js", + "hash": "9922702844286404452" + }, + { + "file": "packages/web-components/.storybook/preview-body.html", + "hash": "8850778173875476467" + }, + { + "file": "packages/web-components/.storybook/preview-head.html", + "hash": "13062935119136599012" + }, + { + "file": "packages/web-components/.storybook/preview.js", + "hash": "12365267785927470531" + }, + { + "file": "packages/web-components/.storybook/theme.js", + "hash": "18352466443106182508" + }, + { + "file": "packages/web-components/CHANGELOG.json", + "hash": "8058481764020614289" + }, + { + "file": "packages/web-components/CHANGELOG.md", + "hash": "6384940985575291649" + }, + { + "file": "packages/web-components/README.md", + "hash": "4957194106169855827" + }, + { + "file": "packages/web-components/api-extractor.json", + "hash": "9874037910410511459" + }, + { + "file": "packages/web-components/build/clean.js", + "hash": "11994715428858511375" + }, + { + "file": "packages/web-components/build/transform-fragments.js", + "hash": "1955758831314508427" + }, + { + "file": "packages/web-components/docs/api-report.md", + "hash": "844890942029344443" + }, + { + "file": "packages/web-components/karma.conf.js", + "hash": "14430480556588129331" + }, + { + "file": "packages/web-components/package.json", + "hash": "15722874774916562492", + "deps": [ + "npm:@microsoft/fast-colors", + "npm:@microsoft/fast-element", + "npm:@microsoft/fast-foundation", + "npm:@microsoft/fast-web-utilities", + "npm:tslib", + "npm:@types/chai", + "npm:@types/chai-spies", + "npm:@types/karma", + "npm:@types/mocha", + "npm:chai", + "npm:chai-spies", + "npm:esm", + "npm:ignore-loader", + "npm:istanbul", + "npm:istanbul-instrumenter-loader", + "npm:jsdom-global", + "npm:karma", + "npm:karma-chrome-launcher", + "npm:karma-coverage", + "npm:karma-coverage-istanbul-reporter", + "npm:karma-firefox-launcher", + "npm:karma-mocha", + "npm:karma-mocha-reporter", + "npm:karma-source-map-support", + "npm:karma-sourcemap-loader", + "npm:karma-webpack", + "npm:mocha" + ] + }, + { + "file": "packages/web-components/project.json", + "hash": "7492841716046999594" + }, + { + "file": "packages/web-components/public/SegoeUI-VF.ttf", + "hash": "159686266127969426" + }, + { + "file": "packages/web-components/public/favicon.ico", + "hash": "16917280242094002623" + }, + { + "file": "packages/web-components/public/favicon.png", + "hash": "16917280242094002623" + }, + { + "file": "packages/web-components/public/switches.ts", + "hash": "14622635503477959780" + }, + { + "file": "packages/web-components/rollup.config.js", + "hash": "7231520777044994700" + }, + { + "file": "packages/web-components/src/__test__/setup-browser.ts", + "hash": "6393925655190445281" + }, + { + "file": "packages/web-components/src/__test__/setup-node.ts", + "hash": "10490210284254745630" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/app.ts", + "hash": "16525852101308145550" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/colors.ts", + "hash": "11069410898767285125" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/component-types.ts", + "hash": "2864670655219117529" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-block.ts", + "hash": "1726259444168974953" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/README.md", + "hash": "573207147273672762" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.form-associated.ts", + "hash": "4081018318203536876" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.styles.ts", + "hash": "14217737468289347354" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.template.ts", + "hash": "6460489283275707263" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.ts", + "hash": "1188287099420052879" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/index.ts", + "hash": "4796903837287128591" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.styles.ts", + "hash": "13389882208060587252" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.template.ts", + "hash": "7850318752774051418" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.ts", + "hash": "752439651934052007" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/index.ts", + "hash": "11120522045483047713" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.styles.ts", + "hash": "3501318262647633045" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.template.ts", + "hash": "6158298528985374425" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.ts", + "hash": "7588390216618702944" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/gradient/index.ts", + "hash": "2196251964914651675" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/layer-background/index.ts", + "hash": "18236296328006163975" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/index.ts", + "hash": "16377584099774881830" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.styles.ts", + "hash": "12061728961981948522" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.template.ts", + "hash": "4788615482582359415" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.ts", + "hash": "16153773168746232984" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/index.ts", + "hash": "6340537480537054989" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.styles.ts", + "hash": "9130564643805750499" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.template.ts", + "hash": "12771066886177107872" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.ts", + "hash": "9635151930465854500" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/components/swatch.ts", + "hash": "2374441040995379727" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/custom-elements.ts", + "hash": "16005845429757574099" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer/index.ts", + "hash": "4139861018587252333" + }, + { + "file": "packages/web-components/src/_docs/design-system/color-explorer.stories.mdx", + "hash": "6027445366609787259" + }, + { + "file": "packages/web-components/src/_docs/design-system/design-tokens.stories.mdx", + "hash": "4311551588301406129" + }, + { + "file": "packages/web-components/src/_docs/design-system/high-contrast.stories.mdx", + "hash": "1191903792423292585" + }, + { + "file": "packages/web-components/src/_docs/getting-started/customization.stories.mdx", + "hash": "6142489713038292709" + }, + { + "file": "packages/web-components/src/_docs/getting-started/installation.stories.mdx", + "hash": "11992526890383732411" + }, + { + "file": "packages/web-components/src/_docs/getting-started/overview.stories.mdx", + "hash": "15478620496390793328" + }, + { + "file": "packages/web-components/src/_docs/integrations/angular.stories.mdx", + "hash": "6548470739007879103" + }, + { + "file": "packages/web-components/src/_docs/integrations/asp-net.stories.mdx", + "hash": "1204259937998840622" + }, + { + "file": "packages/web-components/src/_docs/integrations/aurelia.stories.mdx", + "hash": "16909805295122252141" + }, + { + "file": "packages/web-components/src/_docs/integrations/blazor.stories.mdx", + "hash": "3869770627389256989" + }, + { + "file": "packages/web-components/src/_docs/integrations/ember.stories.mdx", + "hash": "4203072166496955732" + }, + { + "file": "packages/web-components/src/_docs/integrations/introduction.stories.mdx", + "hash": "12602937042859133081" + }, + { + "file": "packages/web-components/src/_docs/integrations/react.stories.mdx", + "hash": "13708967245288712513" + }, + { + "file": "packages/web-components/src/_docs/integrations/vue.stories.mdx", + "hash": "6426963800392484861" + }, + { + "file": "packages/web-components/src/_docs/integrations/webpack.stories.mdx", + "hash": "13317554170485302751" + }, + { + "file": "packages/web-components/src/_docs/resources/browsersupport.stories.mdx", + "hash": "6524546059336092673" + }, + { + "file": "packages/web-components/src/_docs/resources/faq.stories.mdx", + "hash": "1456453727682391063" + }, + { + "file": "packages/web-components/src/_docs/resources/license.stories.mdx", + "hash": "17683392767993753638" + }, + { + "file": "packages/web-components/src/_docs/resources/security.stories.mdx", + "hash": "3322758800487682588" + }, + { + "file": "packages/web-components/src/accordion/accordion-item/accordion-item.styles.ts", + "hash": "14627617678842515919" + }, + { + "file": "packages/web-components/src/accordion/accordion-item/accordion-item.vscode.definition.json", + "hash": "10920057210901896913" + }, + { + "file": "packages/web-components/src/accordion/accordion-item/index.ts", + "hash": "4286703823452132924" + }, + { + "file": "packages/web-components/src/accordion/accordion.stories.ts", + "hash": "2382937437500019241" + }, + { + "file": "packages/web-components/src/accordion/accordion.styles.ts", + "hash": "2616249570117394811" + }, + { + "file": "packages/web-components/src/accordion/accordion.vscode.definition.json", + "hash": "3672417981681016275" + }, + { + "file": "packages/web-components/src/accordion/fixtures/base.html", + "hash": "3024182331118481628" + }, + { + "file": "packages/web-components/src/accordion/index.ts", + "hash": "15914740497616545827" + }, + { + "file": "packages/web-components/src/anchor/anchor.stories.ts", + "hash": "9035706192012038979" + }, + { + "file": "packages/web-components/src/anchor/anchor.styles.ts", + "hash": "15465582227507334647" + }, + { + "file": "packages/web-components/src/anchor/anchor.vscode.definition.json", + "hash": "8651034818913508540" + }, + { + "file": "packages/web-components/src/anchor/fixtures/anchor.html", + "hash": "1883443565225204972" + }, + { + "file": "packages/web-components/src/anchor/index.ts", + "hash": "9458058924011538243" + }, + { + "file": "packages/web-components/src/anchored-region/anchored-region.stories.ts", + "hash": "6610076333735702586" + }, + { + "file": "packages/web-components/src/anchored-region/anchored-region.styles.ts", + "hash": "2080261711970935100" + }, + { + "file": "packages/web-components/src/anchored-region/anchored-region.vscode.definition.json", + "hash": "7027541124759585311" + }, + { + "file": "packages/web-components/src/anchored-region/fixtures/anchored-region.html", + "hash": "13833082773725244734" + }, + { + "file": "packages/web-components/src/anchored-region/fixtures/base.html", + "hash": "10206902182629300261" + }, + { + "file": "packages/web-components/src/anchored-region/index.ts", + "hash": "14805381512806178877" + }, + { + "file": "packages/web-components/src/badge/badge.stories.ts", + "hash": "7829870913424487971" + }, + { + "file": "packages/web-components/src/badge/badge.styles.ts", + "hash": "12835744543244711667" + }, + { + "file": "packages/web-components/src/badge/badge.vscode.definition.json", + "hash": "9410590778436486830" + }, + { + "file": "packages/web-components/src/badge/fixtures/badge.html", + "hash": "16582051032870590828" + }, + { + "file": "packages/web-components/src/badge/index.ts", + "hash": "6337176198244249127" + }, + { + "file": "packages/web-components/src/breadcrumb/breadcrumb.stories.ts", + "hash": "5576414352984007107" + }, + { + "file": "packages/web-components/src/breadcrumb/breadcrumb.styles.ts", + "hash": "9025531678944737635" + }, + { + "file": "packages/web-components/src/breadcrumb/breadcrumb.vscode.definition.json", + "hash": "15362924125727856865" + }, + { + "file": "packages/web-components/src/breadcrumb/fixtures/breadcrumb.html", + "hash": "17580794197360813354" + }, + { + "file": "packages/web-components/src/breadcrumb/index.ts", + "hash": "12107279212669363072" + }, + { + "file": "packages/web-components/src/breadcrumb-item/breadcrumb-item.stories.ts", + "hash": "13923942058307616526" + }, + { + "file": "packages/web-components/src/breadcrumb-item/breadcrumb-item.styles.ts", + "hash": "5697066427813550138" + }, + { + "file": "packages/web-components/src/breadcrumb-item/breadcrumb-item.vscode.definition.json", + "hash": "14973238164249621524" + }, + { + "file": "packages/web-components/src/breadcrumb-item/fixtures/breadcrumb-item.html", + "hash": "2256941841461897698" + }, + { + "file": "packages/web-components/src/breadcrumb-item/index.ts", + "hash": "10170598475715757416" + }, + { + "file": "packages/web-components/src/button/button.stories.ts", + "hash": "15149950852222389704" + }, + { + "file": "packages/web-components/src/button/button.styles.ts", + "hash": "5581033725893685730" + }, + { + "file": "packages/web-components/src/button/button.vscode.definition.json", + "hash": "10606722258837298009" + }, + { + "file": "packages/web-components/src/button/fixtures/button.html", + "hash": "16048526820639725636" + }, + { + "file": "packages/web-components/src/button/index.ts", + "hash": "10025134503936741972" + }, + { + "file": "packages/web-components/src/calendar/calendar.stories.ts", + "hash": "5415731527118018368" + }, + { + "file": "packages/web-components/src/calendar/calendar.styles.ts", + "hash": "16178939379219751620" + }, + { + "file": "packages/web-components/src/calendar/calendar.vscode.definition.json", + "hash": "16600596959429761196" + }, + { + "file": "packages/web-components/src/calendar/index.ts", + "hash": "15025313120163570844" + }, + { + "file": "packages/web-components/src/card/README.md", + "hash": "11211708820769945594" + }, + { + "file": "packages/web-components/src/card/card.stories.ts", + "hash": "12665353260196568301" + }, + { + "file": "packages/web-components/src/card/card.styles.ts", + "hash": "6642788192196104020" + }, + { + "file": "packages/web-components/src/card/card.vscode.definition.json", + "hash": "17543345289019782769" + }, + { + "file": "packages/web-components/src/card/fixtures/card.html", + "hash": "6380789712877866529" + }, + { + "file": "packages/web-components/src/card/index.ts", + "hash": "5042732203638931431" + }, + { + "file": "packages/web-components/src/checkbox/checkbox.stories.ts", + "hash": "13426973479653470345" + }, + { + "file": "packages/web-components/src/checkbox/checkbox.styles.ts", + "hash": "17928013517930224953" + }, + { + "file": "packages/web-components/src/checkbox/checkbox.vscode.definition.json", + "hash": "16978196820818757251" + }, + { + "file": "packages/web-components/src/checkbox/fixtures/checkbox.html", + "hash": "6155825574223549734" + }, + { + "file": "packages/web-components/src/checkbox/index.ts", + "hash": "17137250591561709651" + }, + { + "file": "packages/web-components/src/color/README.md", + "hash": "4936538017083268507" + }, + { + "file": "packages/web-components/src/color/palette.ts", + "hash": "6346372797428139526" + }, + { + "file": "packages/web-components/src/color/recipe.ts", + "hash": "17848275818537597627" + }, + { + "file": "packages/web-components/src/color/recipes/contrast-and-delta-swatch-set.ts", + "hash": "8821478327577403201" + }, + { + "file": "packages/web-components/src/color/recipes/contrast-swatch.spec.ts", + "hash": "6763034643025562411" + }, + { + "file": "packages/web-components/src/color/recipes/contrast-swatch.ts", + "hash": "7186179222835665608" + }, + { + "file": "packages/web-components/src/color/recipes/delta-swatch-set.ts", + "hash": "7250566564026757202" + }, + { + "file": "packages/web-components/src/color/recipes/delta-swatch.ts", + "hash": "5230101181632974034" + }, + { + "file": "packages/web-components/src/color/recipes/focus-stroke.ts", + "hash": "11313432750226566291" + }, + { + "file": "packages/web-components/src/color/recipes/foreground-on-accent.spec.ts", + "hash": "8984772606233286102" + }, + { + "file": "packages/web-components/src/color/recipes/foreground-on-accent.ts", + "hash": "7868139582681267883" + }, + { + "file": "packages/web-components/src/color/recipes/gradient-shadow-stroke.ts", + "hash": "1080599906647216754" + }, + { + "file": "packages/web-components/src/color/recipes/gradient-swatch.ts", + "hash": "16930925285077040022" + }, + { + "file": "packages/web-components/src/color/recipes/neutral-layer-1.ts", + "hash": "16539227990178814071" + }, + { + "file": "packages/web-components/src/color/recipes/neutral-layer-2.ts", + "hash": "2950854254364558014" + }, + { + "file": "packages/web-components/src/color/recipes/neutral-layer-3.ts", + "hash": "1932920790538911795" + }, + { + "file": "packages/web-components/src/color/recipes/neutral-layer-4.ts", + "hash": "13763578604655049880" + }, + { + "file": "packages/web-components/src/color/recipes/neutral-layer-floating.ts", + "hash": "10634764317331887319" + }, + { + "file": "packages/web-components/src/color/recipes/neutral-layer.spec.ts", + "hash": "17728122078622142462" + }, + { + "file": "packages/web-components/src/color/recipes/underline-stroke.ts", + "hash": "2940626098590149659" + }, + { + "file": "packages/web-components/src/color/swatch.ts", + "hash": "1182115399952126154" + }, + { + "file": "packages/web-components/src/color/utilities/base-layer-luminance.ts", + "hash": "908846549069598899" + }, + { + "file": "packages/web-components/src/color/utilities/binary-search.ts", + "hash": "15965810484399746558" + }, + { + "file": "packages/web-components/src/color/utilities/color-constants.ts", + "hash": "911283116326368460" + }, + { + "file": "packages/web-components/src/color/utilities/direction-by-is-dark.ts", + "hash": "18271209538472530614" + }, + { + "file": "packages/web-components/src/color/utilities/is-dark.ts", + "hash": "6499864583431099903" + }, + { + "file": "packages/web-components/src/color/utilities/relative-luminance.ts", + "hash": "14920099726333320744" + }, + { + "file": "packages/web-components/src/combobox/combobox.stories.ts", + "hash": "17737189549554104347" + }, + { + "file": "packages/web-components/src/combobox/combobox.styles.ts", + "hash": "3612590046027629706" + }, + { + "file": "packages/web-components/src/combobox/combobox.vscode.definition.json", + "hash": "9215948502134970537" + }, + { + "file": "packages/web-components/src/combobox/fixtures/base.html", + "hash": "6377341256028355854" + }, + { + "file": "packages/web-components/src/combobox/index.ts", + "hash": "3868760329188361549" + }, + { + "file": "packages/web-components/src/component-definitions.js", + "hash": "11596938288017647617" + }, + { + "file": "packages/web-components/src/custom-elements.ts", + "hash": "6853381506349662742" + }, + { + "file": "packages/web-components/src/data-grid/data-grid-cell.styles.ts", + "hash": "6470686871497764974" + }, + { + "file": "packages/web-components/src/data-grid/data-grid-cell.vscode.definition.json", + "hash": "9813169389670938623" + }, + { + "file": "packages/web-components/src/data-grid/data-grid-row.styles.ts", + "hash": "11995342787697800927" + }, + { + "file": "packages/web-components/src/data-grid/data-grid-row.vscode.definition.json", + "hash": "11698027083491170633" + }, + { + "file": "packages/web-components/src/data-grid/data-grid.stories.ts", + "hash": "195082341198715577" + }, + { + "file": "packages/web-components/src/data-grid/data-grid.styles.ts", + "hash": "13015545836734548464" + }, + { + "file": "packages/web-components/src/data-grid/data-grid.vscode.definition.json", + "hash": "306394395578200698" + }, + { + "file": "packages/web-components/src/data-grid/fixtures/base.html", + "hash": "2029975176933840135" + }, + { + "file": "packages/web-components/src/data-grid/index.ts", + "hash": "4479416102272360583" + }, + { + "file": "packages/web-components/src/design-system-provider/design-system-provider.vscode.definition.json", + "hash": "6893455381211055281" + }, + { + "file": "packages/web-components/src/design-system-provider/index.ts", + "hash": "3408274569365595348" + }, + { + "file": "packages/web-components/src/design-tokens.ts", + "hash": "1346759514197492713" + }, + { + "file": "packages/web-components/src/dialog/dialog.stories.ts", + "hash": "2154549264856264739" + }, + { + "file": "packages/web-components/src/dialog/dialog.styles.ts", + "hash": "5515912159065122827" + }, + { + "file": "packages/web-components/src/dialog/dialog.vscode.definition.json", + "hash": "16390661561666024442" + }, + { + "file": "packages/web-components/src/dialog/fixtures/dialog-button-test.html", + "hash": "11659848668155489028" + }, + { + "file": "packages/web-components/src/dialog/fixtures/dialog.html", + "hash": "9387354624656226834" + }, + { + "file": "packages/web-components/src/dialog/index.ts", + "hash": "13366407519684789611" + }, + { + "file": "packages/web-components/src/divider/divider.stories.ts", + "hash": "17515431205036180141" + }, + { + "file": "packages/web-components/src/divider/divider.styles.ts", + "hash": "6522522780375068846" + }, + { + "file": "packages/web-components/src/divider/divider.vscode.definition.json", + "hash": "6566644835494387709" + }, + { + "file": "packages/web-components/src/divider/fixtures/divider.html", + "hash": "16919230271383725260" + }, + { + "file": "packages/web-components/src/divider/index.ts", + "hash": "8744051297202798600" + }, + { + "file": "packages/web-components/src/flipper/fixtures/flipper.html", + "hash": "18037503031749648176" + }, + { + "file": "packages/web-components/src/flipper/flipper.stories.ts", + "hash": "2029950660051487243" + }, + { + "file": "packages/web-components/src/flipper/flipper.styles.ts", + "hash": "4668183589375500408" + }, + { + "file": "packages/web-components/src/flipper/flipper.vscode.definition.json", + "hash": "12395863857403691147" + }, + { + "file": "packages/web-components/src/flipper/index.ts", + "hash": "6961115814822049464" + }, + { + "file": "packages/web-components/src/fluent-design-system.ts", + "hash": "5328357756403196513" + }, + { + "file": "packages/web-components/src/horizontal-scroll/fixtures/horizontal-scroll.html", + "hash": "7407142165672045966" + }, + { + "file": "packages/web-components/src/horizontal-scroll/horizontal-scroll.stories.ts", + "hash": "4659753969493120079" + }, + { + "file": "packages/web-components/src/horizontal-scroll/horizontal-scroll.styles.ts", + "hash": "17117201230261875828" + }, + { + "file": "packages/web-components/src/horizontal-scroll/horizontal-scroll.vscode.definition.json", + "hash": "15741080570528073250" + }, + { + "file": "packages/web-components/src/horizontal-scroll/index.ts", + "hash": "3921419103069630757" + }, + { + "file": "packages/web-components/src/index-rollup.ts", + "hash": "12034689146002278856" + }, + { + "file": "packages/web-components/src/index.ts", + "hash": "11220157624258882526" + }, + { + "file": "packages/web-components/src/listbox/fixtures/base.html", + "hash": "17450593149878454417" + }, + { + "file": "packages/web-components/src/listbox/index.ts", + "hash": "16849842894902376949" + }, + { + "file": "packages/web-components/src/listbox/listbox.stories.ts", + "hash": "13218899992076915796" + }, + { + "file": "packages/web-components/src/listbox/listbox.styles.ts", + "hash": "13134007790432984126" + }, + { + "file": "packages/web-components/src/listbox/listbox.vscode.definition.json", + "hash": "2285504249297576385" + }, + { + "file": "packages/web-components/src/listbox-option/fixtures/base.html", + "hash": "3298043976123174324" + }, + { + "file": "packages/web-components/src/listbox-option/index.ts", + "hash": "16884845165196211430" + }, + { + "file": "packages/web-components/src/listbox-option/listbox-option.stories.ts", + "hash": "3911485353912942204" + }, + { + "file": "packages/web-components/src/listbox-option/listbox-option.styles.ts", + "hash": "5472503796825828800" + }, + { + "file": "packages/web-components/src/listbox-option/listbox-option.vscode.definition.json", + "hash": "12169738874365537443" + }, + { + "file": "packages/web-components/src/menu/README.md", + "hash": "4690086985797850547" + }, + { + "file": "packages/web-components/src/menu/fixtures/menu.html", + "hash": "5223795368357672574" + }, + { + "file": "packages/web-components/src/menu/index.ts", + "hash": "12984518409457391743" + }, + { + "file": "packages/web-components/src/menu/menu.stories.ts", + "hash": "1915731898569110702" + }, + { + "file": "packages/web-components/src/menu/menu.styles.ts", + "hash": "18032407382470608123" + }, + { + "file": "packages/web-components/src/menu/menu.vscode.definition.json", + "hash": "18361015692746540616" + }, + { + "file": "packages/web-components/src/menu-item/README.md", + "hash": "2471380614271240054" + }, + { + "file": "packages/web-components/src/menu-item/fixtures/menu-item.html", + "hash": "5477478551196226019" + }, + { + "file": "packages/web-components/src/menu-item/index.ts", + "hash": "13279240957752518825" + }, + { + "file": "packages/web-components/src/menu-item/menu-item.stories.ts", + "hash": "15838076638865005660" + }, + { + "file": "packages/web-components/src/menu-item/menu-item.styles.ts", + "hash": "2974801370502077276" + }, + { + "file": "packages/web-components/src/menu-item/menu-item.vscode.definition.json", + "hash": "4234336076730373087" + }, + { + "file": "packages/web-components/src/number-field/fixtures/number-field.html", + "hash": "12708685999913269967" + }, + { + "file": "packages/web-components/src/number-field/index.ts", + "hash": "17115789385951625638" + }, + { + "file": "packages/web-components/src/number-field/number-field.stories.ts", + "hash": "10394814183714311962" + }, + { + "file": "packages/web-components/src/number-field/number-field.styles.ts", + "hash": "14623549441627572541" + }, + { + "file": "packages/web-components/src/number-field/number-field.vscode.definition.json", + "hash": "17028415243423832455" + }, + { + "file": "packages/web-components/src/progress/index.ts", + "hash": "9496752774618153345" + }, + { + "file": "packages/web-components/src/progress/progress/fixtures/linear.html", + "hash": "14829341784378032052" + }, + { + "file": "packages/web-components/src/progress/progress/index.ts", + "hash": "8564604076877239707" + }, + { + "file": "packages/web-components/src/progress/progress/progress.stories.ts", + "hash": "10058603555464601723" + }, + { + "file": "packages/web-components/src/progress/progress/progress.styles.ts", + "hash": "7330116120779358919" + }, + { + "file": "packages/web-components/src/progress/progress/progress.vscode.definition.json", + "hash": "643769287652126004" + }, + { + "file": "packages/web-components/src/progress/progress-ring/fixtures/circular.html", + "hash": "996605311265918770" + }, + { + "file": "packages/web-components/src/progress/progress-ring/index.ts", + "hash": "3669697685676353985" + }, + { + "file": "packages/web-components/src/progress/progress-ring/progress-ring.stories.ts", + "hash": "5925755196880654290" + }, + { + "file": "packages/web-components/src/progress/progress-ring/progress-ring.styles.ts", + "hash": "13716354703004415471" + }, + { + "file": "packages/web-components/src/progress/progress-ring/progress-ring.vscode.definition.json", + "hash": "1596825291672570393" + }, + { + "file": "packages/web-components/src/radio/fixtures/radio.html", + "hash": "3697080352666891110" + }, + { + "file": "packages/web-components/src/radio/index.ts", + "hash": "9493466062086373076" + }, + { + "file": "packages/web-components/src/radio/radio.stories.ts", + "hash": "16960884279123718841" + }, + { + "file": "packages/web-components/src/radio/radio.styles.ts", + "hash": "15891108481971467349" + }, + { + "file": "packages/web-components/src/radio/radio.vscode.definition.json", + "hash": "15322865574627303302" + }, + { + "file": "packages/web-components/src/radio-group/fixtures/radio-group.html", + "hash": "3544612516605771549" + }, + { + "file": "packages/web-components/src/radio-group/index.ts", + "hash": "10678490228381938292" + }, + { + "file": "packages/web-components/src/radio-group/radio-group.stories.ts", + "hash": "13806414560882825653" + }, + { + "file": "packages/web-components/src/radio-group/radio-group.styles.ts", + "hash": "8385177110378110077" + }, + { + "file": "packages/web-components/src/radio-group/radio-group.vscode.definition.json", + "hash": "9271414887629310175" + }, + { + "file": "packages/web-components/src/search/fixtures/search.html", + "hash": "6265150396064403674" + }, + { + "file": "packages/web-components/src/search/index.ts", + "hash": "8294135650557793902" + }, + { + "file": "packages/web-components/src/search/search.stories.ts", + "hash": "216592019599942783" + }, + { + "file": "packages/web-components/src/search/search.styles.ts", + "hash": "13868212863949268972" + }, + { + "file": "packages/web-components/src/search/search.template.ts", + "hash": "4266947506982034813" + }, + { + "file": "packages/web-components/src/search/search.vscode.definition.json", + "hash": "3563472923699786280" + }, + { + "file": "packages/web-components/src/select/fixtures/base.html", + "hash": "11891972925697834096" + }, + { + "file": "packages/web-components/src/select/index.ts", + "hash": "15687565201409112674" + }, + { + "file": "packages/web-components/src/select/select.stories.ts", + "hash": "5863175660897259663" + }, + { + "file": "packages/web-components/src/select/select.styles.ts", + "hash": "3712406194482296781" + }, + { + "file": "packages/web-components/src/select/select.vscode.definition.json", + "hash": "1271918521554254770" + }, + { + "file": "packages/web-components/src/skeleton/fixtures/base.html", + "hash": "3861851238801918486" + }, + { + "file": "packages/web-components/src/skeleton/index.ts", + "hash": "14218825009776077853" + }, + { + "file": "packages/web-components/src/skeleton/skeleton.stories.ts", + "hash": "16344059134848271871" + }, + { + "file": "packages/web-components/src/skeleton/skeleton.styles.ts", + "hash": "11569102660410314421" + }, + { + "file": "packages/web-components/src/skeleton/skeleton.vscode.definition.json", + "hash": "13776399384905340449" + }, + { + "file": "packages/web-components/src/slider/fixtures/slider.html", + "hash": "3716629413656055620" + }, + { + "file": "packages/web-components/src/slider/index.ts", + "hash": "5357812953333546672" + }, + { + "file": "packages/web-components/src/slider/slider.stories.ts", + "hash": "13123047633146822298" + }, + { + "file": "packages/web-components/src/slider/slider.styles.ts", + "hash": "1892611936955814405" + }, + { + "file": "packages/web-components/src/slider/slider.vscode.definition.json", + "hash": "483900830475074249" + }, + { + "file": "packages/web-components/src/slider-label/fixtures/slider-label.html", + "hash": "5161368272209451404" + }, + { + "file": "packages/web-components/src/slider-label/index.ts", + "hash": "4092561486820287710" + }, + { + "file": "packages/web-components/src/slider-label/slider-label.stories.ts", + "hash": "7954258599589121077" + }, + { + "file": "packages/web-components/src/slider-label/slider-label.styles.ts", + "hash": "15491455773337860108" + }, + { + "file": "packages/web-components/src/slider-label/slider-label.vscode.definition.json", + "hash": "12483410102321937264" + }, + { + "file": "packages/web-components/src/storybook-typings.d.ts", + "hash": "3211079156530734795" + }, + { + "file": "packages/web-components/src/styles/direction.ts", + "hash": "12153415263316843969" + }, + { + "file": "packages/web-components/src/styles/elevation.ts", + "hash": "18412120983521623359" + }, + { + "file": "packages/web-components/src/styles/focus.ts", + "hash": "17539677533372493279" + }, + { + "file": "packages/web-components/src/styles/index.ts", + "hash": "6230421608586153211" + }, + { + "file": "packages/web-components/src/styles/patterns/button.styles.ts", + "hash": "5706917304841520211" + }, + { + "file": "packages/web-components/src/styles/patterns/index.ts", + "hash": "4458343837008236369" + }, + { + "file": "packages/web-components/src/styles/patterns/input.styles.ts", + "hash": "181101141302214379" + }, + { + "file": "packages/web-components/src/styles/patterns/type-ramp.ts", + "hash": "17065074643329213778" + }, + { + "file": "packages/web-components/src/styles/size.ts", + "hash": "15940819158744117174" + }, + { + "file": "packages/web-components/src/switch/fixtures/switch.html", + "hash": "10602632632551276568" + }, + { + "file": "packages/web-components/src/switch/index.ts", + "hash": "5179464485079991269" + }, + { + "file": "packages/web-components/src/switch/switch.stories.ts", + "hash": "3466964228880452094" + }, + { + "file": "packages/web-components/src/switch/switch.styles.ts", + "hash": "5702651356821793779" + }, + { + "file": "packages/web-components/src/switch/switch.vscode.definition.json", + "hash": "5174398227224275632" + }, + { + "file": "packages/web-components/src/tabs/fixtures/tabs.html", + "hash": "10764808029296259753" + }, + { + "file": "packages/web-components/src/tabs/index.ts", + "hash": "6864070573253276769" + }, + { + "file": "packages/web-components/src/tabs/tab/index.ts", + "hash": "7968168443944979516" + }, + { + "file": "packages/web-components/src/tabs/tab/tab.styles.ts", + "hash": "10696814832104289036" + }, + { + "file": "packages/web-components/src/tabs/tab/tab.vscode.definition.json", + "hash": "7548102164156459410" + }, + { + "file": "packages/web-components/src/tabs/tab-panel/index.ts", + "hash": "4232187005100764135" + }, + { + "file": "packages/web-components/src/tabs/tab-panel/tab-panel.styles.ts", + "hash": "15248109099456817024" + }, + { + "file": "packages/web-components/src/tabs/tab-panel/tab-panel.vscode.definition.json", + "hash": "5488351415097828677" + }, + { + "file": "packages/web-components/src/tabs/tabs.stories.ts", + "hash": "2082227165927264768" + }, + { + "file": "packages/web-components/src/tabs/tabs.styles.ts", + "hash": "600355650265281296" + }, + { + "file": "packages/web-components/src/tabs/tabs.vscode.definition.json", + "hash": "9227590925350873549" + }, + { + "file": "packages/web-components/src/text-area/fixtures/text-area.html", + "hash": "17685073421574527347" + }, + { + "file": "packages/web-components/src/text-area/index.ts", + "hash": "12878684250332954269" + }, + { + "file": "packages/web-components/src/text-area/text-area.stories.ts", + "hash": "11877407321391546524" + }, + { + "file": "packages/web-components/src/text-area/text-area.styles.ts", + "hash": "15065223636243919006" + }, + { + "file": "packages/web-components/src/text-area/text-area.vscode.definition.json", + "hash": "7076320621770108386" + }, + { + "file": "packages/web-components/src/text-field/fixtures/text-field.html", + "hash": "15248188101787500482" + }, + { + "file": "packages/web-components/src/text-field/index.ts", + "hash": "1431468122200118439" + }, + { + "file": "packages/web-components/src/text-field/text-field.stories.ts", + "hash": "7013818112713918649" + }, + { + "file": "packages/web-components/src/text-field/text-field.styles.ts", + "hash": "12256332793993937125" + }, + { + "file": "packages/web-components/src/text-field/text-field.vscode.definition.json", + "hash": "15993315262587875629" + }, + { + "file": "packages/web-components/src/toolbar/fixtures/toolbar.html", + "hash": "17064050504128491248" + }, + { + "file": "packages/web-components/src/toolbar/index.ts", + "hash": "12453222644810232136" + }, + { + "file": "packages/web-components/src/toolbar/toolbar.stories.ts", + "hash": "1697799914310593179" + }, + { + "file": "packages/web-components/src/toolbar/toolbar.styles.ts", + "hash": "4289308017211955597" + }, + { + "file": "packages/web-components/src/toolbar/toolbar.vscode.definition.json", + "hash": "16347874792378119250" + }, + { + "file": "packages/web-components/src/tooltip/fixtures/tooltip.html", + "hash": "12389500920015921635" + }, + { + "file": "packages/web-components/src/tooltip/index.ts", + "hash": "743200588034782954" + }, + { + "file": "packages/web-components/src/tooltip/tooltip.stories.ts", + "hash": "10665079383825093491" + }, + { + "file": "packages/web-components/src/tooltip/tooltip.styles.ts", + "hash": "11453551560318568053" + }, + { + "file": "packages/web-components/src/tooltip/tooltip.vscode.definition.json", + "hash": "255164464472711194" + }, + { + "file": "packages/web-components/src/tree-item/fixtures/tree-item.html", + "hash": "6727518786838440297" + }, + { + "file": "packages/web-components/src/tree-item/index.ts", + "hash": "16017492355039150238" + }, + { + "file": "packages/web-components/src/tree-item/tree-item.stories.ts", + "hash": "9783937195087600816" + }, + { + "file": "packages/web-components/src/tree-item/tree-item.styles.ts", + "hash": "2044030214397984029" + }, + { + "file": "packages/web-components/src/tree-item/tree-item.vscode.definition.json", + "hash": "16684450343776413349" + }, + { + "file": "packages/web-components/src/tree-view/fixtures/tree-view.html", + "hash": "3740603599119795018" + }, + { + "file": "packages/web-components/src/tree-view/index.ts", + "hash": "8827730462378185588" + }, + { + "file": "packages/web-components/src/tree-view/tree-view.stories.ts", + "hash": "7887196535139156937" + }, + { + "file": "packages/web-components/src/tree-view/tree-view.styles.ts", + "hash": "462034363628475408" + }, + { + "file": "packages/web-components/src/tree-view/tree-view.vscode.definition.json", + "hash": "10110096905446449680" + }, + { + "file": "packages/web-components/src/utilities/behaviors.ts", + "hash": "16191844928733345933" + }, + { + "file": "packages/web-components/src/utilities/type-ramp.ts", + "hash": "4704993640298765791" + }, + { + "file": "packages/web-components/storybook-typings.d.ts", + "hash": "3211079156530734795" + }, + { + "file": "packages/web-components/tsconfig.json", + "hash": "6412759596685248991" + } + ], + "@fluentui/scripts-projects-test": [ + { + "file": "scripts/projects-test/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/projects-test/jest.config.js", + "hash": "14803115449739597477" + }, + { + "file": "scripts/projects-test/package.json", + "hash": "2440450978402607536", + "deps": ["@fluentui/scripts-utils", "@fluentui/scripts-puppeteer", "@fluentui/scripts-monorepo"] + }, + { + "file": "scripts/projects-test/project.json", + "hash": "7187626296521124201" + }, + { + "file": "scripts/projects-test/src/createReactApp.ts", + "hash": "12302227798055165115" + }, + { + "file": "scripts/projects-test/src/index.ts", + "hash": "14506511509153432346" + }, + { + "file": "scripts/projects-test/src/packPackages.ts", + "hash": "11290851018015733867" + }, + { + "file": "scripts/projects-test/src/performBrowserTest.ts", + "hash": "13012556253100885968" + }, + { + "file": "scripts/projects-test/src/utils.ts", + "hash": "3861302237109431008" + }, + { + "file": "scripts/projects-test/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/projects-test/tsconfig.lib.json", + "hash": "15222053984038389170" + }, + { + "file": "scripts/projects-test/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/ts-minbar-test-react-components": [ + { + "file": "apps/ts-minbar-test-react-components/CHANGELOG.json", + "hash": "656745615605467027" + }, + { + "file": "apps/ts-minbar-test-react-components/CHANGELOG.md", + "hash": "7646044303546398326" + }, + { + "file": "apps/ts-minbar-test-react-components/README.md", + "hash": "16461979801860699917" + }, + { + "file": "apps/ts-minbar-test-react-components/files/src/index.tsx", + "hash": "18098612965669564749" + }, + { + "file": "apps/ts-minbar-test-react-components/files/tsconfig.json", + "hash": "11617511591496749178" + }, + { + "file": "apps/ts-minbar-test-react-components/just.config.ts", + "hash": "7156839958691239049" + }, + { + "file": "apps/ts-minbar-test-react-components/package.json", + "hash": "13593808421142598329", + "deps": ["@fluentui/react-components", "@fluentui/scripts-tasks", "@fluentui/scripts-projects-test"] + }, + { + "file": "apps/ts-minbar-test-react-components/project.json", + "hash": "1464494342633365324" + }, + { + "file": "apps/ts-minbar-test-react-components/src/index.ts", + "hash": "13329464376822014146" + }, + { + "file": "apps/ts-minbar-test-react-components/tsconfig.json", + "hash": "10809149894665832803" + } + ], + "@fluentui/react-motions-preview": [ + { + "file": "packages/react-components/react-motions-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-motions-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-motions-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-motions-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-motions-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-motions-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-motions-preview/LICENSE", + "hash": "7138711571438781774" + }, + { + "file": "packages/react-components/react-motions-preview/README.md", + "hash": "17498722335979354024" + }, + { + "file": "packages/react-components/react-motions-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-motions-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-motions-preview/etc/react-motions-preview.api.md", + "hash": "12743696528407065677" + }, + { + "file": "packages/react-components/react-motions-preview/jest.config.js", + "hash": "15864305436409793865" + }, + { + "file": "packages/react-components/react-motions-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-motions-preview/package.json", + "hash": "3696756658694654553", + "deps": [ + "@fluentui/react-shared-contexts", + "@fluentui/react-utilities", + "npm:@swc/helpers", + "npm:react-is", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-motions-preview/project.json", + "hash": "12296590422921745095" + }, + { + "file": "packages/react-components/react-motions-preview/src/factories/createAtom.test.tsx", + "hash": "1047206177802055811" + }, + { + "file": "packages/react-components/react-motions-preview/src/factories/createAtom.ts", + "hash": "17739657523056274812" + }, + { + "file": "packages/react-components/react-motions-preview/src/factories/createPresence.test.tsx", + "hash": "2448045071357828784" + }, + { + "file": "packages/react-components/react-motions-preview/src/factories/createPresence.ts", + "hash": "11236981719297968322" + }, + { + "file": "packages/react-components/react-motions-preview/src/hooks/useIsReducedMotion.test.tsx", + "hash": "8887201488767817033" + }, + { + "file": "packages/react-components/react-motions-preview/src/hooks/useIsReducedMotion.ts", + "hash": "4106377544759115907" + }, + { + "file": "packages/react-components/react-motions-preview/src/hooks/useMotionImperativeRef.test.tsx", + "hash": "7993664620419479161" + }, + { + "file": "packages/react-components/react-motions-preview/src/hooks/useMotionImperativeRef.ts", + "hash": "1632631879080868129" + }, + { + "file": "packages/react-components/react-motions-preview/src/index.ts", + "hash": "8131632330745602255" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/atom/fade.ts", + "hash": "7486748159940927914" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/atom/index.ts", + "hash": "16753120998278687480" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/atom/scale.ts", + "hash": "16979265713479036920" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/atom/slide.ts", + "hash": "5741435285593211782" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/atom/tokens.ts", + "hash": "15231772390421822079" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/presence/fade.ts", + "hash": "10807810800143017859" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/presence/index.ts", + "hash": "16753120998278687480" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/presence/scale.ts", + "hash": "7134190811033882315" + }, + { + "file": "packages/react-components/react-motions-preview/src/motions/presence/slide.ts", + "hash": "8481780441080782244" + }, + { + "file": "packages/react-components/react-motions-preview/src/types.ts", + "hash": "16229776850125672679" + }, + { + "file": "packages/react-components/react-motions-preview/src/utils/getChildElement.test.tsx", + "hash": "8841238823050513452" + }, + { + "file": "packages/react-components/react-motions-preview/src/utils/getChildElement.ts", + "hash": "12546952061692389581" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/CreateAtom.stories.md", + "hash": "5893255975788056106" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/CreateAtom.stories.tsx", + "hash": "5782165169486360963" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/CreatePresence.stories.md", + "hash": "12142141077619929634" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/CreatePresence.stories.tsx", + "hash": "11545114550073710457" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/CustomAtom.stories.md", + "hash": "8191854486238302831" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/CustomAtom.stories.tsx", + "hash": "4462772013305188622" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/ImperativeRefPlayState.stories.md", + "hash": "5961784044077758105" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/ImperativeRefPlayState.stories.tsx", + "hash": "11804399789389445656" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/MotionDefault.stories.tsx", + "hash": "12159791219112165896" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/MotionDescription.md", + "hash": "6774937818624891077" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/MotionLibrary.stories.md", + "hash": "4799461372227860502" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/MotionLibrary.stories.tsx", + "hash": "18001169511280264377" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/PresenceAppear.stories.md", + "hash": "16813191778445729025" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/PresenceAppear.stories.tsx", + "hash": "10249922983205892831" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/PresenceUnmountOnExit.stories.md", + "hash": "4980239457863910445" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/PresenceUnmountOnExit.stories.tsx", + "hash": "16450904187679412076" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/TokensUsage.stories.md", + "hash": "13013623227649516115" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/TokensUsage.stories.tsx", + "hash": "7189530296843671807" + }, + { + "file": "packages/react-components/react-motions-preview/stories/Motion/index.stories.ts", + "hash": "11605213295335544089" + }, + { + "file": "packages/react-components/react-motions-preview/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-motions-preview/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-motions-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-northstar-styles-renderer": [ + { + "file": "packages/fluentui/react-northstar-styles-renderer/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/package.json", + "hash": "13310199486065829792", + "deps": [ + "npm:@babel/runtime", + "@fluentui/styles", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "npm:lerna-alias", + "npm:react" + ] + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/project.json", + "hash": "8332394439489930408" + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/src/index.ts", + "hash": "17458262484157446193" + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/src/noopRenderer.ts", + "hash": "10378848867356110502" + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/src/types.ts", + "hash": "5323224652889144013" + }, + { + "file": "packages/fluentui/react-northstar-styles-renderer/tsconfig.json", + "hash": "2122159932199081123" + } + ], + "@fluentui/ssr-tests-v9": [ + { + "file": "apps/ssr-tests-v9/.eslintrc.json", + "hash": "17415001537957764759" + }, + { + "file": "apps/ssr-tests-v9/.npmignore", + "hash": "6985117138208138805" + }, + { + "file": "apps/ssr-tests-v9/.storybook/main.js", + "hash": "1212305810175821020" + }, + { + "file": "apps/ssr-tests-v9/.storybook/preview.js", + "hash": "3771044947140527406" + }, + { + "file": "apps/ssr-tests-v9/.storybook/tsconfig.json", + "hash": "14109446059604296292" + }, + { + "file": "apps/ssr-tests-v9/CHANGELOG.json", + "hash": "10565813083365182125" + }, + { + "file": "apps/ssr-tests-v9/CHANGELOG.md", + "hash": "7027171009374181352" + }, + { + "file": "apps/ssr-tests-v9/README.md", + "hash": "14065455051967402252" + }, + { + "file": "apps/ssr-tests-v9/config/tests.js", + "hash": "11168571691074990614" + }, + { + "file": "apps/ssr-tests-v9/jest.config.js", + "hash": "9458445199894798693" + }, + { + "file": "apps/ssr-tests-v9/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "apps/ssr-tests-v9/package.json", + "hash": "8923427910776151549", + "deps": [ + "@fluentui/react-components", + "@fluentui/react-utilities", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-storybook" + ] + }, + { + "file": "apps/ssr-tests-v9/project.json", + "hash": "15064735109472825928" + }, + { + "file": "apps/ssr-tests-v9/src/stories/Menu/DefaultOpen.stories.tsx", + "hash": "9756001618427095260" + }, + { + "file": "apps/ssr-tests-v9/src/stories/Menu/index.stories.tsx", + "hash": "9459470396080333721" + }, + { + "file": "apps/ssr-tests-v9/src/stories/Tooltip/DefaultOpen.stories.tsx", + "hash": "14503999588850100551" + }, + { + "file": "apps/ssr-tests-v9/src/stories/Tooltip/index.stories.tsx", + "hash": "2359036706156696468" + }, + { + "file": "apps/ssr-tests-v9/src/stories/Utilitites/index.stories.tsx", + "hash": "11459814591521163889" + }, + { + "file": "apps/ssr-tests-v9/src/stories/Utilitites/useAnimationFrame.stories.tsx", + "hash": "4136409707688092330" + }, + { + "file": "apps/ssr-tests-v9/tsconfig.json", + "hash": "4637104942856286995" + }, + { + "file": "apps/ssr-tests-v9/tsconfig.lib.json", + "hash": "9469665441243672593" + }, + { + "file": "apps/ssr-tests-v9/tsconfig.spec.json", + "hash": "13287603543641469083" + }, + { + "file": "apps/ssr-tests-v9/tsconfig.stories.json", + "hash": "3244421341483603138" + } + ], + "@fluentui/react-message-bar": [ + { + "file": "packages/react-components/react-message-bar/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-message-bar/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-message-bar/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-message-bar/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-message-bar/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-message-bar/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-message-bar/CHANGELOG.json", + "hash": "12868552992585073378" + }, + { + "file": "packages/react-components/react-message-bar/CHANGELOG.md", + "hash": "3351778526796692282" + }, + { + "file": "packages/react-components/react-message-bar/LICENSE", + "hash": "16327043439041055681" + }, + { + "file": "packages/react-components/react-message-bar/README.md", + "hash": "15953389640457019950" + }, + { + "file": "packages/react-components/react-message-bar/bundle-size/Default.fixture.js", + "hash": "13627711057272473768" + }, + { + "file": "packages/react-components/react-message-bar/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-message-bar/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-message-bar/docs/Spec.md", + "hash": "13237932483207544458" + }, + { + "file": "packages/react-components/react-message-bar/etc/react-message-bar.api.md", + "hash": "2630926883949754792" + }, + { + "file": "packages/react-components/react-message-bar/jest.config.js", + "hash": "16413207529227807353" + }, + { + "file": "packages/react-components/react-message-bar/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-message-bar/package.json", + "hash": "124120508206091990", + "deps": [ + "@fluentui/react-button", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "npm:react-transition-group", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-message-bar/project.json", + "hash": "7248934092611567757" + }, + { + "file": "packages/react-components/react-message-bar/src/MessageBar.ts", + "hash": "11069752646730668502" + }, + { + "file": "packages/react-components/react-message-bar/src/MessageBarActions.ts", + "hash": "6350244474931654916" + }, + { + "file": "packages/react-components/react-message-bar/src/MessageBarBody.ts", + "hash": "15258723960017893150" + }, + { + "file": "packages/react-components/react-message-bar/src/MessageBarGroup.ts", + "hash": "13446753258376394884" + }, + { + "file": "packages/react-components/react-message-bar/src/MessageBarTitle.ts", + "hash": "12103042897925369057" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.test.tsx", + "hash": "9506020889676043856" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.tsx", + "hash": "11248815863695310059" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.types.ts", + "hash": "10265815128886080638" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/__snapshots__/MessageBar.test.tsx.snap", + "hash": "7502280520215239903" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/getIntentIcon.tsx", + "hash": "4277324912438122135" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/index.ts", + "hash": "9803266154576642022" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/renderMessageBar.tsx", + "hash": "7217534775651955585" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/useMessageBar.ts", + "hash": "3795650310140008286" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarContextValues.ts", + "hash": "6205540263050481251" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarReflow.ts", + "hash": "3614108844810135926" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarStyles.styles.ts", + "hash": "10150166265258600139" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.test.tsx", + "hash": "6343373343822998356" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.tsx", + "hash": "2692361793179622035" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.types.ts", + "hash": "5031837590524241274" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/__snapshots__/MessageBarActions.test.tsx.snap", + "hash": "5374791425502198609" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/index.ts", + "hash": "6652705818627569799" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/renderMessageBarActions.tsx", + "hash": "17591955117442494635" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActions.ts", + "hash": "811010621446034593" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActionsContextValues.ts", + "hash": "5538020371246007312" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActionsStyles.styles.ts", + "hash": "5228797381152039444" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.test.tsx", + "hash": "4203182302311597189" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.tsx", + "hash": "10959738536866784870" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.types.ts", + "hash": "13189627554707243979" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/__snapshots__/MessageBarBody.test.tsx.snap", + "hash": "3169659039358924689" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/index.ts", + "hash": "6409436879092391979" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/renderMessageBarBody.tsx", + "hash": "7153916570245760883" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/useMessageBarBody.ts", + "hash": "16009894493284767820" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/useMessageBarBodyStyles.styles.ts", + "hash": "786785408048331858" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.test.tsx", + "hash": "10746505726784798319" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.tsx", + "hash": "11942212723426358383" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.types.ts", + "hash": "17580485053530706223" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarTransition.tsx", + "hash": "1897606092423574196" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/__snapshots__/MessageBarGroup.test.tsx.snap", + "hash": "11797626360229827566" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/index.ts", + "hash": "141029932104411197" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/renderMessageBarGroup.tsx", + "hash": "9292110846219555557" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/useMessageBarGroup.ts", + "hash": "13080914534948221759" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/useMessageBarGroupStyles.styles.ts", + "hash": "4114910048574266033" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.test.tsx", + "hash": "13107564461531935709" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.tsx", + "hash": "15080023250269401769" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.types.ts", + "hash": "16764194630667813256" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/__snapshots__/MessageBarTitle.test.tsx.snap", + "hash": "17734021380652132090" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/index.ts", + "hash": "15767480419136494943" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/renderMessageBarTitle.tsx", + "hash": "17586122560297000640" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/useMessageBarTitle.ts", + "hash": "13066611263584781770" + }, + { + "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/useMessageBarTitleStyles.styles.ts", + "hash": "13091896643774309043" + }, + { + "file": "packages/react-components/react-message-bar/src/contexts/messageBarContext.ts", + "hash": "435413260933637702" + }, + { + "file": "packages/react-components/react-message-bar/src/contexts/messageBarTransitionContext.ts", + "hash": "6522240939806347526" + }, + { + "file": "packages/react-components/react-message-bar/src/index.ts", + "hash": "8389702385165675435" + }, + { + "file": "packages/react-components/react-message-bar/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/Actions.stories.tsx", + "hash": "2287271431760496557" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/Animation.stories.tsx", + "hash": "881524708691207187" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/Default.stories.tsx", + "hash": "4575863936191746397" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/Dismiss.stories.tsx", + "hash": "16912282858601457050" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/Intent.stories.tsx", + "hash": "14771748215068096830" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/ManualLayout.stories.tsx", + "hash": "17909419254727221572" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/MessageBarBestPractices.md", + "hash": "689727808186723124" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/MessageBarDescription.md", + "hash": "2054562495258492479" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/Reflow.stories.tsx", + "hash": "2381235900578476619" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/Shape.stories.tsx", + "hash": "11863170233070670412" + }, + { + "file": "packages/react-components/react-message-bar/stories/MessageBar/index.stories.tsx", + "hash": "7570405686550661948" + }, + { + "file": "packages/react-components/react-message-bar/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-message-bar/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-message-bar/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/test-utilities": [ + { + "file": "packages/test-utilities/.eslintrc.json", + "hash": "9627670268003919245" + }, + { + "file": "packages/test-utilities/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/test-utilities/CHANGELOG.json", + "hash": "6925444267223690531" + }, + { + "file": "packages/test-utilities/CHANGELOG.md", + "hash": "245017999491184014" + }, + { + "file": "packages/test-utilities/LICENSE", + "hash": "17713567152459448383" + }, + { + "file": "packages/test-utilities/README.md", + "hash": "11222179757855280088" + }, + { + "file": "packages/test-utilities/jest.config.js", + "hash": "8457350006614220129" + }, + { + "file": "packages/test-utilities/just.config.ts", + "hash": "2411455081002746933" + }, + { + "file": "packages/test-utilities/package.json", + "hash": "15251649362734981725", + "deps": [ + "@fluentui/eslint-plugin", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:enzyme", + "npm:react", + "npm:react-test-renderer" + ] + }, + { + "file": "packages/test-utilities/project.json", + "hash": "6621699011379255295" + }, + { + "file": "packages/test-utilities/src/createTestContainer.ts", + "hash": "11747895423438256529" + }, + { + "file": "packages/test-utilities/src/getCSSRules.test.ts", + "hash": "11036085907418427536" + }, + { + "file": "packages/test-utilities/src/getCSSRules.ts", + "hash": "2768262409733817568" + }, + { + "file": "packages/test-utilities/src/index.ts", + "hash": "6090673740632506280" + }, + { + "file": "packages/test-utilities/src/reactTestRenderer.ts", + "hash": "7045247159912462473" + }, + { + "file": "packages/test-utilities/src/safeCreate.ts", + "hash": "9642739023254695591" + }, + { + "file": "packages/test-utilities/src/safeMount.ts", + "hash": "6689811110183811221" + }, + { + "file": "packages/test-utilities/tsconfig.json", + "hash": "13522081573676588409" + } + ], + "@fluentui/example-data": [ + { + "file": "packages/example-data/.eslintrc.json", + "hash": "3229880202825641002" + }, + { + "file": "packages/example-data/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/example-data/CHANGELOG.json", + "hash": "9048642913278741833" + }, + { + "file": "packages/example-data/CHANGELOG.md", + "hash": "12235872426400347757" + }, + { + "file": "packages/example-data/LICENSE", + "hash": "12367838612108125011" + }, + { + "file": "packages/example-data/README.md", + "hash": "7119854316177950935" + }, + { + "file": "packages/example-data/config/api-extractor.json", + "hash": "10981721980506993079" + }, + { + "file": "packages/example-data/etc/example-data.api.md", + "hash": "4672979637124934763" + }, + { + "file": "packages/example-data/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/example-data/package.json", + "hash": "17742021473028152345", + "deps": [ + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "packages/example-data/project.json", + "hash": "17680685214412804652" + }, + { + "file": "packages/example-data/src/facepile.ts", + "hash": "2655635451145751592" + }, + { + "file": "packages/example-data/src/index.ts", + "hash": "476073902722847914" + }, + { + "file": "packages/example-data/src/listItems.ts", + "hash": "4874104725793960628" + }, + { + "file": "packages/example-data/src/lorem.ts", + "hash": "8053126041927246028" + }, + { + "file": "packages/example-data/src/people.ts", + "hash": "6416917373887433733" + }, + { + "file": "packages/example-data/src/range.ts", + "hash": "3302006145478468298" + }, + { + "file": "packages/example-data/src/testImages.ts", + "hash": "4417580955949983984" + }, + { + "file": "packages/example-data/tsconfig.json", + "hash": "10705276064557648381" + }, + { + "file": "packages/example-data/webpack.config.js", + "hash": "1655035376737530180" + } + ], + "@fluentui/react-monaco-editor": [ + { + "file": "packages/react-monaco-editor/.eslintrc.json", + "hash": "7340591681907052528" + }, + { + "file": "packages/react-monaco-editor/.npmignore", + "hash": "7699079327417375383" + }, + { + "file": "packages/react-monaco-editor/CHANGELOG.json", + "hash": "4052769043464886293" + }, + { + "file": "packages/react-monaco-editor/CHANGELOG.md", + "hash": "4378676521123102836" + }, + { + "file": "packages/react-monaco-editor/LICENSE", + "hash": "15857057829823514426" + }, + { + "file": "packages/react-monaco-editor/README.md", + "hash": "215778933993031194" + }, + { + "file": "packages/react-monaco-editor/config/pre-copy.json", + "hash": "10496597701824624187" + }, + { + "file": "packages/react-monaco-editor/index.html", + "hash": "1791716988592375380" + }, + { + "file": "packages/react-monaco-editor/jest.config.js", + "hash": "5168375124118756559" + }, + { + "file": "packages/react-monaco-editor/just.config.ts", + "hash": "404017912661233600" + }, + { + "file": "packages/react-monaco-editor/package.json", + "hash": "10660752150120145130", + "deps": [ + "@fluentui/react", + "npm:@microsoft/load-themed-styles", + "@fluentui/example-data", + "@fluentui/monaco-editor", + "@fluentui/react-hooks", + "@fluentui/react-charting", + "npm:raw-loader", + "npm:react-syntax-highlighter", + "npm:tslib", + "@fluentui/eslint-plugin", + "npm:@types/react-syntax-highlighter", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-monaco-editor/project.json", + "hash": "1052909350799747146" + }, + { + "file": "packages/react-monaco-editor/scripts/addMonacoWebpackConfig.js", + "hash": "5333027717716750886" + }, + { + "file": "packages/react-monaco-editor/scripts/copyTypes.ts", + "hash": "15470147487360395774" + }, + { + "file": "packages/react-monaco-editor/src/Editor.ts", + "hash": "6017495469224351667" + }, + { + "file": "packages/react-monaco-editor/src/EditorWrapper.ts", + "hash": "10125870415289685067" + }, + { + "file": "packages/react-monaco-editor/src/TsxEditor.ts", + "hash": "10751227075439005751" + }, + { + "file": "packages/react-monaco-editor/src/components/Editor.tsx", + "hash": "13590339725241717557" + }, + { + "file": "packages/react-monaco-editor/src/components/Editor.types.ts", + "hash": "931518761748666165" + }, + { + "file": "packages/react-monaco-editor/src/components/EditorError.tsx", + "hash": "6978711720466275879" + }, + { + "file": "packages/react-monaco-editor/src/components/EditorErrorHandler.tsx", + "hash": "7094031796655130638" + }, + { + "file": "packages/react-monaco-editor/src/components/EditorLoading.tsx", + "hash": "17756141341694568257" + }, + { + "file": "packages/react-monaco-editor/src/components/EditorWrapper.tsx", + "hash": "14675879456062578953" + }, + { + "file": "packages/react-monaco-editor/src/components/EditorWrapper.types.ts", + "hash": "10918850883274788009" + }, + { + "file": "packages/react-monaco-editor/src/components/TsxEditor.tsx", + "hash": "16895967541425618893" + }, + { + "file": "packages/react-monaco-editor/src/components/TsxEditor.types.ts", + "hash": "6382517796676619793" + }, + { + "file": "packages/react-monaco-editor/src/components/TypeScriptSnippet.tsx", + "hash": "9289521752302825874" + }, + { + "file": "packages/react-monaco-editor/src/components/consts.ts", + "hash": "17899882920572319776" + }, + { + "file": "packages/react-monaco-editor/src/components/index.ts", + "hash": "17378269472056454119" + }, + { + "file": "packages/react-monaco-editor/src/demo/App.tsx", + "hash": "3398055607368439105" + }, + { + "file": "packages/react-monaco-editor/src/demo/index.tsx", + "hash": "6366974914566276988" + }, + { + "file": "packages/react-monaco-editor/src/imports.test.ts", + "hash": "16558841996641162330" + }, + { + "file": "packages/react-monaco-editor/src/index.ts", + "hash": "2660105875934296833" + }, + { + "file": "packages/react-monaco-editor/src/interfaces/index.ts", + "hash": "10563128095872578362" + }, + { + "file": "packages/react-monaco-editor/src/interfaces/monaco.ts", + "hash": "5365919266167576279" + }, + { + "file": "packages/react-monaco-editor/src/interfaces/packageGroup.ts", + "hash": "15072110747073265711" + }, + { + "file": "packages/react-monaco-editor/src/interfaces/transformedCode.ts", + "hash": "9629925872874446454" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/__snapshots__/exampleTransform.test.ts.snap", + "hash": "10292795761254527001" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/exampleParser.test.ts", + "hash": "9891990965669883703" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/exampleParser.ts", + "hash": "8211624242523849272" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/exampleTransform.test.ts", + "hash": "1522140756961621850" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/exampleTransform.ts", + "hash": "14477424259989592192" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/examples/class.txt", + "hash": "12975026045123300332" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/examples/classTranspiled.txt", + "hash": "16439102531686810302" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/examples/customPackages.txt", + "hash": "7179133814494836586" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/examples/customPackagesFluent.txt", + "hash": "10058548755387005189" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/examples/function.txt", + "hash": "9563192592967671900" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/examples/functionTranspiled.txt", + "hash": "6749082270165661166" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/examples/relativeImport.txt", + "hash": "6088749950053757682" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/index.ts", + "hash": "18278831555090185964" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/transpile.ts", + "hash": "16889766031692255838" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/transpileHelpers.test.ts", + "hash": "4371018842887360839" + }, + { + "file": "packages/react-monaco-editor/src/transpiler/transpileHelpers.ts", + "hash": "2760415028804555715" + }, + { + "file": "packages/react-monaco-editor/src/utilities/defaultSupportedPackages.ts", + "hash": "667082477780337268" + }, + { + "file": "packages/react-monaco-editor/src/utilities/getQueryParam.test.ts", + "hash": "17807893369167537417" + }, + { + "file": "packages/react-monaco-editor/src/utilities/getQueryParam.ts", + "hash": "5415427488872325615" + }, + { + "file": "packages/react-monaco-editor/src/utilities/index.ts", + "hash": "5755389207234709934" + }, + { + "file": "packages/react-monaco-editor/src/utilities/isEditorSupported.ts", + "hash": "14471034323467341722" + }, + { + "file": "packages/react-monaco-editor/src/utilities/settings.ts", + "hash": "4543245557747589830" + }, + { + "file": "packages/react-monaco-editor/tsconfig.json", + "hash": "18188014709090939787" + }, + { + "file": "packages/react-monaco-editor/webpack.serve.config.js", + "hash": "14712024823986301981" + } + ], + "@fluentui/react-alert": [ + { + "file": "packages/react-components/react-alert/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-alert/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-alert/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-alert/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-alert/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-alert/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-alert/CHANGELOG.json", + "hash": "83764038971076835" + }, + { + "file": "packages/react-components/react-alert/CHANGELOG.md", + "hash": "5175289707873145207" + }, + { + "file": "packages/react-components/react-alert/LICENSE", + "hash": "16252253352334995182" + }, + { + "file": "packages/react-components/react-alert/README.md", + "hash": "8131351181258092235" + }, + { + "file": "packages/react-components/react-alert/bundle-size/Alert.fixture.js", + "hash": "6960359331564279967" + }, + { + "file": "packages/react-components/react-alert/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-alert/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-alert/docs/Migration.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-alert/docs/Spec.md", + "hash": "3535638354464497682" + }, + { + "file": "packages/react-components/react-alert/etc/react-alert.api.md", + "hash": "11555109672566503552" + }, + { + "file": "packages/react-components/react-alert/jest.config.js", + "hash": "6773733652008972475" + }, + { + "file": "packages/react-components/react-alert/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-alert/package.json", + "hash": "9312706055205409696", + "deps": [ + "@fluentui/react-avatar", + "@fluentui/react-button", + "npm:@fluentui/react-icons", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-alert/project.json", + "hash": "17708818428810623099" + }, + { + "file": "packages/react-components/react-alert/src/Alert.ts", + "hash": "478807590469964963" + }, + { + "file": "packages/react-components/react-alert/src/components/Alert/Alert.test.tsx", + "hash": "17628692932786280219" + }, + { + "file": "packages/react-components/react-alert/src/components/Alert/Alert.tsx", + "hash": "8611980662277149012" + }, + { + "file": "packages/react-components/react-alert/src/components/Alert/Alert.types.ts", + "hash": "8366251069357697620" + }, + { + "file": "packages/react-components/react-alert/src/components/Alert/index.ts", + "hash": "11930097802137833911" + }, + { + "file": "packages/react-components/react-alert/src/components/Alert/renderAlert.tsx", + "hash": "264769270216256867" + }, + { + "file": "packages/react-components/react-alert/src/components/Alert/useAlert.tsx", + "hash": "14231640179437609527" + }, + { + "file": "packages/react-components/react-alert/src/components/Alert/useAlertStyles.styles.ts", + "hash": "4259845399899254015" + }, + { + "file": "packages/react-components/react-alert/src/index.ts", + "hash": "6190406855358997804" + }, + { + "file": "packages/react-components/react-alert/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-alert/stories/Alert/AlertAction.stories.tsx", + "hash": "8515455195432805008" + }, + { + "file": "packages/react-components/react-alert/stories/Alert/AlertAppearance.stories.tsx", + "hash": "4232635026830561594" + }, + { + "file": "packages/react-components/react-alert/stories/Alert/AlertAvatar.stories.tsx", + "hash": "11364985778976863191" + }, + { + "file": "packages/react-components/react-alert/stories/Alert/AlertDefault.stories.tsx", + "hash": "10864479039782208759" + }, + { + "file": "packages/react-components/react-alert/stories/Alert/AlertDescription.md", + "hash": "3742228099756735432" + }, + { + "file": "packages/react-components/react-alert/stories/Alert/AlertIcon.stories.tsx", + "hash": "10179515381949480946" + }, + { + "file": "packages/react-components/react-alert/stories/Alert/AlertIntent.stories.tsx", + "hash": "8283473983697123165" + }, + { + "file": "packages/react-components/react-alert/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-alert/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-alert/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-card": [ + { + "file": "packages/react-components/react-card/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-card/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-card/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-card/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-card/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-card/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-card/CHANGELOG.json", + "hash": "16120836240991081328" + }, + { + "file": "packages/react-components/react-card/CHANGELOG.md", + "hash": "982678929693669752" + }, + { + "file": "packages/react-components/react-card/LICENSE", + "hash": "2188560866401644945" + }, + { + "file": "packages/react-components/react-card/README.md", + "hash": "11877879705104426476" + }, + { + "file": "packages/react-components/react-card/bundle-size/Card.All.fixture.js", + "hash": "9678671079204535147" + }, + { + "file": "packages/react-components/react-card/bundle-size/Card.fixture.js", + "hash": "17044429561188065558" + }, + { + "file": "packages/react-components/react-card/bundle-size/CardFooter.fixture.js", + "hash": "15097452954087720794" + }, + { + "file": "packages/react-components/react-card/bundle-size/CardHeader.fixture.js", + "hash": "9372357943462304670" + }, + { + "file": "packages/react-components/react-card/bundle-size/CardPreview.fixture.js", + "hash": "2766458474759225677" + }, + { + "file": "packages/react-components/react-card/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-card/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-card/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-card/docs/Spec.md", + "hash": "133649701608289193" + }, + { + "file": "packages/react-components/react-card/docs/assets/Card.png", + "hash": "8621537168628927824" + }, + { + "file": "packages/react-components/react-card/docs/assets/CardHeader.png", + "hash": "14490283695070957660" + }, + { + "file": "packages/react-components/react-card/docs/assets/CardPreview.png", + "hash": "1838343721682392559" + }, + { + "file": "packages/react-components/react-card/docs/assets/ai_deck_template.png", + "hash": "7288944920457398910" + }, + { + "file": "packages/react-components/react-card/docs/assets/avatar_mauricio.svg", + "hash": "798618793155809767" + }, + { + "file": "packages/react-components/react-card/docs/assets/card-example.png", + "hash": "16213957152649995111" + }, + { + "file": "packages/react-components/react-card/docs/assets/context-interaction-keyboard.png", + "hash": "16120849394699770653" + }, + { + "file": "packages/react-components/react-card/docs/assets/context-interaction-mouse.png", + "hash": "17968123321031789650" + }, + { + "file": "packages/react-components/react-card/docs/assets/context-narrator.png", + "hash": "12645539401046132098" + }, + { + "file": "packages/react-components/react-card/docs/assets/disabled-narrator.png", + "hash": "2566029565229306184" + }, + { + "file": "packages/react-components/react-card/docs/assets/disabled.png", + "hash": "826913629030223189" + }, + { + "file": "packages/react-components/react-card/docs/assets/intelligence.png", + "hash": "8986692323019308027" + }, + { + "file": "packages/react-components/react-card/docs/assets/interactive-example.png", + "hash": "16139223062879931574" + }, + { + "file": "packages/react-components/react-card/docs/assets/interactive-interaction-keyboard.png", + "hash": "15639838958589057587" + }, + { + "file": "packages/react-components/react-card/docs/assets/interactive-interaction-mouse.png", + "hash": "13603809071411899987" + }, + { + "file": "packages/react-components/react-card/docs/assets/interactive-narrator.png", + "hash": "8045885383518893015" + }, + { + "file": "packages/react-components/react-card/docs/assets/non-interactive-interaction-keyboard.png", + "hash": "7324405548581008515" + }, + { + "file": "packages/react-components/react-card/docs/assets/non-interactive-interaction-mouse.png", + "hash": "14389441996799242835" + }, + { + "file": "packages/react-components/react-card/docs/assets/non-interactive-narrator.png", + "hash": "18012095954511675112" + }, + { + "file": "packages/react-components/react-card/docs/assets/non-interactive-selectable-interaction-keyboard.png", + "hash": "12221987790543441657" + }, + { + "file": "packages/react-components/react-card/docs/assets/non-interactive-selectable-interaction-mouse.png", + "hash": "8943180528124548767" + }, + { + "file": "packages/react-components/react-card/docs/assets/selectable-interaction-keyboard.png", + "hash": "3413035361011770976" + }, + { + "file": "packages/react-components/react-card/docs/assets/selectable-interaction-mouse.png", + "hash": "13723554415792087034" + }, + { + "file": "packages/react-components/react-card/docs/assets/selectable-narrator.png", + "hash": "17363651610905279991" + }, + { + "file": "packages/react-components/react-card/etc/react-card.api.md", + "hash": "10685004744171166720" + }, + { + "file": "packages/react-components/react-card/jest.config.js", + "hash": "1186570427670545163" + }, + { + "file": "packages/react-components/react-card/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-card/package.json", + "hash": "1922847737090488424", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance-griffel", + "@fluentui/react-conformance", + "@fluentui/react-button", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-card/project.json", + "hash": "3792275988646366268" + }, + { + "file": "packages/react-components/react-card/src/Card.ts", + "hash": "18296053792853651864" + }, + { + "file": "packages/react-components/react-card/src/CardFooter.ts", + "hash": "7561174730803302695" + }, + { + "file": "packages/react-components/react-card/src/CardHeader.ts", + "hash": "11488685953149160992" + }, + { + "file": "packages/react-components/react-card/src/CardPreview.ts", + "hash": "13744048761580656089" + }, + { + "file": "packages/react-components/react-card/src/components/Card/Card.cy.tsx", + "hash": "2105453024913473649" + }, + { + "file": "packages/react-components/react-card/src/components/Card/Card.test.tsx", + "hash": "553476840907813350" + }, + { + "file": "packages/react-components/react-card/src/components/Card/Card.tsx", + "hash": "7076191578603293422" + }, + { + "file": "packages/react-components/react-card/src/components/Card/Card.types.ts", + "hash": "9093785096818348353" + }, + { + "file": "packages/react-components/react-card/src/components/Card/CardContext.ts", + "hash": "5313906443440265390" + }, + { + "file": "packages/react-components/react-card/src/components/Card/__snapshots__/Card.test.tsx.snap", + "hash": "10908852138267868471" + }, + { + "file": "packages/react-components/react-card/src/components/Card/index.ts", + "hash": "4412053949287446293" + }, + { + "file": "packages/react-components/react-card/src/components/Card/renderCard.tsx", + "hash": "1433067605483476608" + }, + { + "file": "packages/react-components/react-card/src/components/Card/useCard.ts", + "hash": "7381777414402087275" + }, + { + "file": "packages/react-components/react-card/src/components/Card/useCardContextValue.ts", + "hash": "11473343537526781780" + }, + { + "file": "packages/react-components/react-card/src/components/Card/useCardSelectable.ts", + "hash": "4499997916310000329" + }, + { + "file": "packages/react-components/react-card/src/components/Card/useCardStyles.styles.ts", + "hash": "3260247311744362996" + }, + { + "file": "packages/react-components/react-card/src/components/CardFooter/CardFooter.test.tsx", + "hash": "7622635874606375345" + }, + { + "file": "packages/react-components/react-card/src/components/CardFooter/CardFooter.tsx", + "hash": "7889064387052454866" + }, + { + "file": "packages/react-components/react-card/src/components/CardFooter/CardFooter.types.ts", + "hash": "15847435805993234907" + }, + { + "file": "packages/react-components/react-card/src/components/CardFooter/__snapshots__/CardFooter.test.tsx.snap", + "hash": "13290122802036257097" + }, + { + "file": "packages/react-components/react-card/src/components/CardFooter/index.ts", + "hash": "17558814753364081460" + }, + { + "file": "packages/react-components/react-card/src/components/CardFooter/renderCardFooter.tsx", + "hash": "9307070283238530438" + }, + { + "file": "packages/react-components/react-card/src/components/CardFooter/useCardFooter.ts", + "hash": "2145180249134842105" + }, + { + "file": "packages/react-components/react-card/src/components/CardFooter/useCardFooterStyles.styles.ts", + "hash": "1083821341387929360" + }, + { + "file": "packages/react-components/react-card/src/components/CardHeader/CardHeader.test.tsx", + "hash": "14165954293035533075" + }, + { + "file": "packages/react-components/react-card/src/components/CardHeader/CardHeader.tsx", + "hash": "4181728876463672231" + }, + { + "file": "packages/react-components/react-card/src/components/CardHeader/CardHeader.types.ts", + "hash": "6184633634019281557" + }, + { + "file": "packages/react-components/react-card/src/components/CardHeader/__snapshots__/CardHeader.test.tsx.snap", + "hash": "7156722307139223011" + }, + { + "file": "packages/react-components/react-card/src/components/CardHeader/index.ts", + "hash": "16584665457828373794" + }, + { + "file": "packages/react-components/react-card/src/components/CardHeader/renderCardHeader.tsx", + "hash": "1737812013511382678" + }, + { + "file": "packages/react-components/react-card/src/components/CardHeader/useCardHeader.ts", + "hash": "10695894625791794917" + }, + { + "file": "packages/react-components/react-card/src/components/CardHeader/useCardHeaderStyles.styles.ts", + "hash": "4022899973834377131" + }, + { + "file": "packages/react-components/react-card/src/components/CardPreview/CardPreview.test.tsx", + "hash": "951239204372092264" + }, + { + "file": "packages/react-components/react-card/src/components/CardPreview/CardPreview.tsx", + "hash": "14878782731745105216" + }, + { + "file": "packages/react-components/react-card/src/components/CardPreview/CardPreview.types.ts", + "hash": "14504123763327617675" + }, + { + "file": "packages/react-components/react-card/src/components/CardPreview/__snapshots__/CardPreview.test.tsx.snap", + "hash": "8716685275269430990" + }, + { + "file": "packages/react-components/react-card/src/components/CardPreview/index.ts", + "hash": "3007392998775828301" + }, + { + "file": "packages/react-components/react-card/src/components/CardPreview/renderCardPreview.tsx", + "hash": "14553561723104936319" + }, + { + "file": "packages/react-components/react-card/src/components/CardPreview/useCardPreview.ts", + "hash": "4307043996778361696" + }, + { + "file": "packages/react-components/react-card/src/components/CardPreview/useCardPreviewStyles.styles.ts", + "hash": "11199041551264682609" + }, + { + "file": "packages/react-components/react-card/src/index.ts", + "hash": "15466602958638333138" + }, + { + "file": "packages/react-components/react-card/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardAppearance.stories.tsx", + "hash": "5604951275060761597" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardBestPractices.md", + "hash": "9308224653380770229" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardDefault.stories.tsx", + "hash": "12855457768309390333" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardDescription.md", + "hash": "3049495499082503502" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardFocusMode.stories.tsx", + "hash": "13084607985882534580" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardOrientation.stories.tsx", + "hash": "4533715330779289813" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardSelectable.stories.tsx", + "hash": "8302053683602571951" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardSelectableIndicator.stories.tsx", + "hash": "18084073634622817532" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardSize.stories.tsx", + "hash": "16436840345511589357" + }, + { + "file": "packages/react-components/react-card/stories/Card/CardTemplates.stories.tsx", + "hash": "987134944539571023" + }, + { + "file": "packages/react-components/react-card/stories/Card/index.stories.tsx", + "hash": "8678212714962414506" + }, + { + "file": "packages/react-components/react-card/stories/CardFooter/CardFooterDefault.stories.tsx", + "hash": "10194971669813246487" + }, + { + "file": "packages/react-components/react-card/stories/CardFooter/CardFooterDescription.md", + "hash": "17958053600000174792" + }, + { + "file": "packages/react-components/react-card/stories/CardFooter/index.stories.tsx", + "hash": "15149208140262958802" + }, + { + "file": "packages/react-components/react-card/stories/CardHeader/CardHeaderDefault.stories.tsx", + "hash": "7030182012670348854" + }, + { + "file": "packages/react-components/react-card/stories/CardHeader/CardHeaderDescription.md", + "hash": "278184689441639698" + }, + { + "file": "packages/react-components/react-card/stories/CardHeader/index.stories.tsx", + "hash": "17193498931451041088" + }, + { + "file": "packages/react-components/react-card/stories/CardPreview/CardPreviewDefault.stories.tsx", + "hash": "14549936026171874196" + }, + { + "file": "packages/react-components/react-card/stories/CardPreview/CardPreviewDescription.md", + "hash": "8805484546756020533" + }, + { + "file": "packages/react-components/react-card/stories/CardPreview/index.stories.tsx", + "hash": "6381064104818270081" + }, + { + "file": "packages/react-components/react-card/stories/assets/app_logo.svg", + "hash": "1145867221942749854" + }, + { + "file": "packages/react-components/react-card/stories/assets/avatar_colin.svg", + "hash": "13980132709968424389" + }, + { + "file": "packages/react-components/react-card/stories/assets/avatar_elvia.svg", + "hash": "12306115599923301814" + }, + { + "file": "packages/react-components/react-card/stories/assets/doc_template.png", + "hash": "16781486718899349419" + }, + { + "file": "packages/react-components/react-card/stories/assets/docx.png", + "hash": "12646787685627878886" + }, + { + "file": "packages/react-components/react-card/stories/assets/intelligence.png", + "hash": "8986692323019308027" + }, + { + "file": "packages/react-components/react-card/stories/assets/logo.svg", + "hash": "16479129341081339952" + }, + { + "file": "packages/react-components/react-card/stories/assets/logo2.svg", + "hash": "15824796547274656557" + }, + { + "file": "packages/react-components/react-card/stories/assets/logo3.svg", + "hash": "8392637098591831239" + }, + { + "file": "packages/react-components/react-card/stories/assets/office1.png", + "hash": "13326536504039238663" + }, + { + "file": "packages/react-components/react-card/stories/assets/office2.png", + "hash": "4573548322140247346" + }, + { + "file": "packages/react-components/react-card/stories/assets/pptx.png", + "hash": "3265152117027098916" + }, + { + "file": "packages/react-components/react-card/stories/assets/sales_template.png", + "hash": "10998262158388512370" + }, + { + "file": "packages/react-components/react-card/stories/assets/xlsx.png", + "hash": "5592114303427511673" + }, + { + "file": "packages/react-components/react-card/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-card/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-card/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-card/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-colorpicker-compat": [ + { + "file": "packages/react-components/react-colorpicker-compat/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-colorpicker-compat/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-colorpicker-compat/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-colorpicker-compat/LICENSE", + "hash": "17896713687333863732" + }, + { + "file": "packages/react-components/react-colorpicker-compat/README.md", + "hash": "8828254010565736603" + }, + { + "file": "packages/react-components/react-colorpicker-compat/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-colorpicker-compat/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-colorpicker-compat/docs/Spec.md", + "hash": "7692605215066064795" + }, + { + "file": "packages/react-components/react-colorpicker-compat/etc/react-colorpicker-compat.api.md", + "hash": "8304047180392637752" + }, + { + "file": "packages/react-components/react-colorpicker-compat/jest.config.js", + "hash": "11566748837314507290" + }, + { + "file": "packages/react-components/react-colorpicker-compat/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-colorpicker-compat/package.json", + "hash": "10909466317582711840", + "deps": [ + "@fluentui/react-jsx-runtime", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-colorpicker-compat/project.json", + "hash": "10678425435316637330" + }, + { + "file": "packages/react-components/react-colorpicker-compat/src/index.ts", + "hash": "17055841062299011540" + }, + { + "file": "packages/react-components/react-colorpicker-compat/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/react-colorpicker-compat/tsconfig.lib.json", + "hash": "14975475306433073951" + }, + { + "file": "packages/react-components/react-colorpicker-compat/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/typings": [ + { + "file": "typings/README.md", + "hash": "10583482367772263258" + }, + { + "file": "typings/custom-global/README.md", + "hash": "5649541318408753542" + }, + { + "file": "typings/custom-global/index.d.ts", + "hash": "7011206993849892993" + }, + { + "file": "typings/custom-global/tsconfig.json", + "hash": "18038664144425018676" + }, + { + "file": "typings/environment/README.md", + "hash": "10578036741537756312" + }, + { + "file": "typings/environment/index.d.ts", + "hash": "12285001276050637139" + }, + { + "file": "typings/environment/tsconfig.json", + "hash": "18038664144425018676" + }, + { + "file": "typings/find-free-port/index.d.ts", + "hash": "2397853445417492311" + }, + { + "file": "typings/find-free-port/tsconfig.json", + "hash": "18038664144425018676" + }, + { + "file": "typings/ignore-not-found-export-webpack-plugin/index.d.ts", + "hash": "1725452347235429415" + }, + { + "file": "typings/ignore-not-found-export-webpack-plugin/tsconfig.json", + "hash": "4750736256261933835" + }, + { + "file": "typings/json-stable-stringify-without-jsonify/index.d.ts", + "hash": "18439733450073198259" + }, + { + "file": "typings/json-stable-stringify-without-jsonify/tsconfig.json", + "hash": "18038664144425018676" + }, + { + "file": "typings/lerna/index.d.ts", + "hash": "9898149106273015856" + }, + { + "file": "typings/lerna/tsconfig.json", + "hash": "18038664144425018676" + }, + { + "file": "typings/package.json", + "hash": "12934772172736494740" + }, + { + "file": "typings/project.json", + "hash": "12537270325437916372" + }, + { + "file": "typings/static-assets/README.md", + "hash": "17775554958060567487" + }, + { + "file": "typings/static-assets/index.d.ts", + "hash": "10117523410007827376" + }, + { + "file": "typings/static-assets/tsconfig.json", + "hash": "18038664144425018676" + }, + { + "file": "typings/storybook__addons/index.d.ts", + "hash": "13039226549181277056" + }, + { + "file": "typings/storybook__addons/tsconfig.json", + "hash": "18038664144425018676" + }, + { + "file": "typings/tsconfig.json", + "hash": "15097887487356030189" + } + ], + "@fluentui/scripts-triage-bot": [ + { + "file": "scripts/triage-bot/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/triage-bot/README.md", + "hash": "9335607649677537584" + }, + { + "file": "scripts/triage-bot/jest.config.js", + "hash": "10011597394858720856" + }, + { + "file": "scripts/triage-bot/package.json", + "hash": "13913251469002073545" + }, + { + "file": "scripts/triage-bot/project.json", + "hash": "18400117140775395500" + }, + { + "file": "scripts/triage-bot/src/index.js", + "hash": "3622410874074552090" + }, + { + "file": "scripts/triage-bot/src/triage-bot.js", + "hash": "17650430027921283627" + }, + { + "file": "scripts/triage-bot/src/triage-bot.spec.ts", + "hash": "4833519488384355610" + }, + { + "file": "scripts/triage-bot/src/types.ts", + "hash": "1994322224594096886" + }, + { + "file": "scripts/triage-bot/triage-bot.schema.json", + "hash": "6056199013007068625" + }, + { + "file": "scripts/triage-bot/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/triage-bot/tsconfig.lib.json", + "hash": "3593133700658772030" + }, + { + "file": "scripts/triage-bot/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/keyboard-keys": [ + { + "file": "packages/react-components/keyboard-keys/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/keyboard-keys/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/keyboard-keys/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/keyboard-keys/CHANGELOG.json", + "hash": "13375252770582910819" + }, + { + "file": "packages/react-components/keyboard-keys/CHANGELOG.md", + "hash": "11434158720079159921" + }, + { + "file": "packages/react-components/keyboard-keys/LICENSE", + "hash": "16002335077248403003" + }, + { + "file": "packages/react-components/keyboard-keys/README.md", + "hash": "5919627830079932907" + }, + { + "file": "packages/react-components/keyboard-keys/bundle-size/MultipleKeyCodes.fixture.js", + "hash": "16990105420210242292" + }, + { + "file": "packages/react-components/keyboard-keys/bundle-size/MultipleKeys.fixture.js", + "hash": "6478992813196866639" + }, + { + "file": "packages/react-components/keyboard-keys/bundle-size/SingleKey.fixture.js", + "hash": "14569573360111858150" + }, + { + "file": "packages/react-components/keyboard-keys/bundle-size/SingleKeyCode.fixture.js", + "hash": "4166421080442685952" + }, + { + "file": "packages/react-components/keyboard-keys/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/keyboard-keys/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/keyboard-keys/etc/keyboard-keys.api.md", + "hash": "2343404673575691731" + }, + { + "file": "packages/react-components/keyboard-keys/jest.config.js", + "hash": "17965212772199600814" + }, + { + "file": "packages/react-components/keyboard-keys/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/keyboard-keys/package.json", + "hash": "14836732657023890952", + "deps": [ + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/react-components/keyboard-keys/project.json", + "hash": "10127551444731352685" + }, + { + "file": "packages/react-components/keyboard-keys/src/index.ts", + "hash": "3130694789980667875" + }, + { + "file": "packages/react-components/keyboard-keys/src/keyCodes.ts", + "hash": "12246297791239691352" + }, + { + "file": "packages/react-components/keyboard-keys/src/keys.ts", + "hash": "16125329113468597476" + }, + { + "file": "packages/react-components/keyboard-keys/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/keyboard-keys/tsconfig.lib.json", + "hash": "14975475306433073951" + }, + { + "file": "packages/react-components/keyboard-keys/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/perf-test-northstar": [ + { + "file": "packages/fluentui/perf-test-northstar/.digest/config.tsx", + "hash": "4770113341000384297" + }, + { + "file": "packages/fluentui/perf-test-northstar/just.config.ts", + "hash": "13576606665214849514" + }, + { + "file": "packages/fluentui/perf-test-northstar/package.json", + "hash": "8642285019896310713", + "deps": [ + "@fluentui/react-northstar", + "@fluentui/react-northstar-prototypes", + "@fluentui/digest", + "npm:flamegrill", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/fluentui/perf-test-northstar/project.json", + "hash": "16333162126337688832" + }, + { + "file": "packages/fluentui/perf-test-northstar/tasks/fluentPerfRegressions.ts", + "hash": "10043449040042657596" + }, + { + "file": "packages/fluentui/perf-test-northstar/tasks/perf-test.config.ts", + "hash": "6425901650244247513" + }, + { + "file": "packages/fluentui/perf-test-northstar/tasks/perf-test.ts", + "hash": "6993888231747376071" + }, + { + "file": "packages/fluentui/perf-test-northstar/tsconfig.json", + "hash": "14973691866308938473" + } + ], + "@fluentui/react-builder": [ + { + "file": "packages/fluentui/react-builder/.eslintrc.json", + "hash": "14831957113987152077" + }, + { + "file": "packages/fluentui/react-builder/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-builder/README.md", + "hash": "10016986543265046541" + }, + { + "file": "packages/fluentui/react-builder/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-builder/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-builder/jest.config.js", + "hash": "10802544048614070297" + }, + { + "file": "packages/fluentui/react-builder/package.json", + "hash": "9631564501580531266", + "deps": [ + "@fluentui/accessibility", + "@fluentui/code-sandbox", + "@fluentui/docs-components", + "@fluentui/react-component-event-listener", + "@fluentui/react-component-ref", + "@fluentui/react-icons-northstar", + "@fluentui/react-northstar", + "npm:axe-core", + "npm:immer", + "npm:lodash", + "npm:lz-string", + "npm:react-document-title", + "npm:react-frame-component", + "npm:react-is", + "npm:use-immer", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:@types/react-frame-component", + "npm:lerna-alias", + "npm:@babel/standalone", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-builder/project.json", + "hash": "204489873756000033" + }, + { + "file": "packages/fluentui/react-builder/src/accessibility/types.ts", + "hash": "929935902224512126" + }, + { + "file": "packages/fluentui/react-builder/src/componentInfo/componentInfoContext.ts", + "hash": "12952343612439281311" + }, + { + "file": "packages/fluentui/react-builder/src/componentInfo/types.ts", + "hash": "10871122169681405192" + }, + { + "file": "packages/fluentui/react-builder/src/components/Anatomy.tsx", + "hash": "9559709697063752825" + }, + { + "file": "packages/fluentui/react-builder/src/components/BrowserWindow.tsx", + "hash": "1305587436928706280" + }, + { + "file": "packages/fluentui/react-builder/src/components/Builder.tsx", + "hash": "11101607489312975810" + }, + { + "file": "packages/fluentui/react-builder/src/components/Canvas.tsx", + "hash": "8782503380612329753" + }, + { + "file": "packages/fluentui/react-builder/src/components/CanvasWindow.tsx", + "hash": "9073503633717464783" + }, + { + "file": "packages/fluentui/react-builder/src/components/CodeEditor.tsx", + "hash": "623657732253296337" + }, + { + "file": "packages/fluentui/react-builder/src/components/ComponentList.tsx", + "hash": "14364923839728311600" + }, + { + "file": "packages/fluentui/react-builder/src/components/ComponentPropertiesPanel.tsx", + "hash": "5268511189036678893" + }, + { + "file": "packages/fluentui/react-builder/src/components/ComponentTree.tsx", + "hash": "7846923338340185906" + }, + { + "file": "packages/fluentui/react-builder/src/components/DebugButtons.tsx", + "hash": "12509122275448910125" + }, + { + "file": "packages/fluentui/react-builder/src/components/DebugFrame.tsx", + "hash": "10043329517725525136" + }, + { + "file": "packages/fluentui/react-builder/src/components/Description.tsx", + "hash": "9567475832531969499" + }, + { + "file": "packages/fluentui/react-builder/src/components/Designer.tsx", + "hash": "13036707724185814545" + }, + { + "file": "packages/fluentui/react-builder/src/components/DropSelector.tsx", + "hash": "3542664213591641212" + }, + { + "file": "packages/fluentui/react-builder/src/components/ErrorBoundary.tsx", + "hash": "11122869423617163119" + }, + { + "file": "packages/fluentui/react-builder/src/components/ErrorPanel.tsx", + "hash": "9164703090634963658" + }, + { + "file": "packages/fluentui/react-builder/src/components/FullScreenPreview.tsx", + "hash": "16011726969178031086" + }, + { + "file": "packages/fluentui/react-builder/src/components/GetShareableLink.tsx", + "hash": "15433656223699742764" + }, + { + "file": "packages/fluentui/react-builder/src/components/InsertComponent.tsx", + "hash": "9906566956658338491" + }, + { + "file": "packages/fluentui/react-builder/src/components/Knobs.tsx", + "hash": "2567043305485912803" + }, + { + "file": "packages/fluentui/react-builder/src/components/MultiTypeKnob.tsx", + "hash": "2930992216485547340" + }, + { + "file": "packages/fluentui/react-builder/src/components/NavBarItem.tsx", + "hash": "6913624690736282433" + }, + { + "file": "packages/fluentui/react-builder/src/components/NavigationPanel.tsx", + "hash": "9800200967616636940" + }, + { + "file": "packages/fluentui/react-builder/src/components/ReaderNarration.tsx", + "hash": "16220487698280846067" + }, + { + "file": "packages/fluentui/react-builder/src/components/Toolbar.tsx", + "hash": "543702787129451118" + }, + { + "file": "packages/fluentui/react-builder/src/components/tabPanels/AccessibilityTabPanel.tsx", + "hash": "13590036990892215305" + }, + { + "file": "packages/fluentui/react-builder/src/components/tabPanels/AddTabPanel.tsx", + "hash": "11042719876676903669" + }, + { + "file": "packages/fluentui/react-builder/src/components/tabPanels/NavigationTabPanel.tsx", + "hash": "9858807996756415860" + }, + { + "file": "packages/fluentui/react-builder/src/components/types.ts", + "hash": "1832743028101149231" + }, + { + "file": "packages/fluentui/react-builder/src/config.tsx", + "hash": "5814245327475203313" + }, + { + "file": "packages/fluentui/react-builder/src/hooks/index.ts", + "hash": "11226509319231205349" + }, + { + "file": "packages/fluentui/react-builder/src/hooks/runAxe.ts", + "hash": "8860485983799780375" + }, + { + "file": "packages/fluentui/react-builder/src/hooks/useMode.ts", + "hash": "17910004894933185109" + }, + { + "file": "packages/fluentui/react-builder/src/index.ts", + "hash": "7302446320173355624" + }, + { + "file": "packages/fluentui/react-builder/src/narration/NarrationComputer.tsx", + "hash": "3889128191066894050" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-Definitions.tsx", + "hash": "8320166329157302802" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-ElementStates-Win_JAWS.tsx", + "hash": "6332595224770733718" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-ElementTypes-Win_JAWS.tsx", + "hash": "7650259396047917910" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-ElementTypes-Win_JAWS_VPC.tsx", + "hash": "1312765730158700516" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-LandmarksAndGroups-Win_JAWS.tsx", + "hash": "4029867906059143388" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-LandmarksAndGroups-Win_JAWS_VPC.tsx", + "hash": "2972313100645343181" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-ReadingOrder-Win_JAWS.tsx", + "hash": "11595690551124846854" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-ReadingOrder-Win_JAWS_VPC.tsx", + "hash": "15637529703244180336" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-StateRules-Win_JAWS.tsx", + "hash": "15839976440027101995" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-StateRules-Win_JAWS_VPC.tsx", + "hash": "16696028047627629469" + }, + { + "file": "packages/fluentui/react-builder/src/narration/SRNC-Usages-Win_JAWS.tsx", + "hash": "3454242724591971760" + }, + { + "file": "packages/fluentui/react-builder/src/state/index.tsx", + "hash": "2685696966902878094" + }, + { + "file": "packages/fluentui/react-builder/src/state/state.ts", + "hash": "14164046665851924982" + }, + { + "file": "packages/fluentui/react-builder/src/state/utils.ts", + "hash": "2393629447381052912" + }, + { + "file": "packages/fluentui/react-builder/src/utils/codeToTree.ts", + "hash": "13828598921945434473" + }, + { + "file": "packages/fluentui/react-builder/src/utils/getUUID.ts", + "hash": "10027271916887760783" + }, + { + "file": "packages/fluentui/react-builder/src/utils/treeStore.ts", + "hash": "3825005232368357598" + }, + { + "file": "packages/fluentui/react-builder/test/config-test.tsx", + "hash": "2603837748451585594" + }, + { + "file": "packages/fluentui/react-builder/test/utils/treeStore-test.ts", + "hash": "7324853206959097484" + }, + { + "file": "packages/fluentui/react-builder/todo.md", + "hash": "8222318070280973140" + }, + { + "file": "packages/fluentui/react-builder/tsconfig.json", + "hash": "4419506872376571172" + } + ], + "@fluentui/react-motion-preview": [ + { + "file": "packages/react-components/react-motion-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-motion-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-motion-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-motion-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-motion-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-motion-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-motion-preview/CHANGELOG.json", + "hash": "11137084770627020814" + }, + { + "file": "packages/react-components/react-motion-preview/CHANGELOG.md", + "hash": "7183679563961265393" + }, + { + "file": "packages/react-components/react-motion-preview/LICENSE", + "hash": "1234262793966931881" + }, + { + "file": "packages/react-components/react-motion-preview/README.md", + "hash": "5121976902997572308" + }, + { + "file": "packages/react-components/react-motion-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-motion-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-motion-preview/docs/Spec.md", + "hash": "17845913729800975033" + }, + { + "file": "packages/react-components/react-motion-preview/etc/react-motion-preview.api.md", + "hash": "11822234989690462944" + }, + { + "file": "packages/react-components/react-motion-preview/jest.config.js", + "hash": "14155382610793147225" + }, + { + "file": "packages/react-components/react-motion-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-motion-preview/package.json", + "hash": "15544045345364563922", + "deps": [ + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-motion-preview/project.json", + "hash": "9755635695534125383" + }, + { + "file": "packages/react-components/react-motion-preview/src/hooks/index.ts", + "hash": "8858878511737786592" + }, + { + "file": "packages/react-components/react-motion-preview/src/hooks/useMotion.test.ts", + "hash": "5083954587357687141" + }, + { + "file": "packages/react-components/react-motion-preview/src/hooks/useMotion.ts", + "hash": "8532028455825888123" + }, + { + "file": "packages/react-components/react-motion-preview/src/hooks/useMotionClassNames.test.ts", + "hash": "2430367888544834912" + }, + { + "file": "packages/react-components/react-motion-preview/src/hooks/useMotionClassNames.ts", + "hash": "10739644114435117367" + }, + { + "file": "packages/react-components/react-motion-preview/src/hooks/useReducedMotion.ts", + "hash": "15515325398588090509" + }, + { + "file": "packages/react-components/react-motion-preview/src/index.ts", + "hash": "479877564955136295" + }, + { + "file": "packages/react-components/react-motion-preview/src/styles/useReducedMotionStyles.styles.ts", + "hash": "4540984684513496074" + }, + { + "file": "packages/react-components/react-motion-preview/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-motion-preview/src/utils/dom-style.ts", + "hash": "6443096568349431012" + }, + { + "file": "packages/react-components/react-motion-preview/stories/UseMotion/MotionDescription.md", + "hash": "4620999901264858225" + }, + { + "file": "packages/react-components/react-motion-preview/stories/UseMotion/MotionPreview.md", + "hash": "9912155066303383782" + }, + { + "file": "packages/react-components/react-motion-preview/stories/UseMotion/MotionUsage.md", + "hash": "10800830911355677136" + }, + { + "file": "packages/react-components/react-motion-preview/stories/UseMotion/UseMotion.stories.tsx", + "hash": "3965154038000933055" + }, + { + "file": "packages/react-components/react-motion-preview/stories/UseMotion/UseMotionClassNames.stories.tsx", + "hash": "972675374824631381" + }, + { + "file": "packages/react-components/react-motion-preview/stories/UseMotion/UseMotionWithDuration.stories.tsx", + "hash": "7144854141420674605" + }, + { + "file": "packages/react-components/react-motion-preview/stories/UseMotion/index.stories.ts", + "hash": "8283014325877865669" + }, + { + "file": "packages/react-components/react-motion-preview/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-motion-preview/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-motion-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-experiments": [ + { + "file": "packages/react-experiments/.eslintrc.json", + "hash": "7788135779233596637" + }, + { + "file": "packages/react-experiments/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/react-experiments/.vscode/settings.json", + "hash": "16922900037095686213" + }, + { + "file": "packages/react-experiments/CHANGELOG.json", + "hash": "1759451528711803273" + }, + { + "file": "packages/react-experiments/CHANGELOG.md", + "hash": "841769307207834070" + }, + { + "file": "packages/react-experiments/LICENSE", + "hash": "13203729021017389157" + }, + { + "file": "packages/react-experiments/README.md", + "hash": "6069065823927244357" + }, + { + "file": "packages/react-experiments/config/pre-copy.json", + "hash": "5645154898618432291" + }, + { + "file": "packages/react-experiments/config/tests.js", + "hash": "1298251390361832964" + }, + { + "file": "packages/react-experiments/jest.config.js", + "hash": "8193037916930093299" + }, + { + "file": "packages/react-experiments/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-experiments/package.json", + "hash": "8173131559828053357", + "deps": [ + "@fluentui/react", + "@fluentui/theme", + "npm:@microsoft/load-themed-styles", + "@fluentui/example-data", + "@fluentui/foundation-legacy", + "@fluentui/font-icons-mdl2", + "@fluentui/merge-styles", + "@fluentui/react-hooks", + "@fluentui/set-version", + "@fluentui/style-utilities", + "@fluentui/utilities", + "npm:deep-assign", + "npm:prop-types", + "npm:tslib", + "@fluentui/common-styles", + "@fluentui/eslint-plugin", + "npm:@types/deep-assign", + "npm:@types/prop-types", + "npm:@types/react-addons-test-utils", + "@fluentui/jest-serializer-merge-styles", + "npm:react-hooks-testing-library", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-experiments/project.json", + "hash": "3501476537050508852" + }, + { + "file": "packages/react-experiments/src/Accordion.ts", + "hash": "16785143114878803654" + }, + { + "file": "packages/react-experiments/src/Chiclet.ts", + "hash": "11155256979043085396" + }, + { + "file": "packages/react-experiments/src/CollapsibleSection.ts", + "hash": "2758608677691324557" + }, + { + "file": "packages/react-experiments/src/CommandBar.ts", + "hash": "6705151224568579037" + }, + { + "file": "packages/react-experiments/src/FloatingPeopleSuggestions.ts", + "hash": "15119309918904920431" + }, + { + "file": "packages/react-experiments/src/FloatingPeopleSuggestionsComposite.ts", + "hash": "1574102834641737891" + }, + { + "file": "packages/react-experiments/src/FloatingSuggestions.ts", + "hash": "4926410936868705646" + }, + { + "file": "packages/react-experiments/src/FloatingSuggestionsComposite.ts", + "hash": "2076343655190795668" + }, + { + "file": "packages/react-experiments/src/FolderCover.ts", + "hash": "7108040609502246617" + }, + { + "file": "packages/react-experiments/src/Foundation.ts", + "hash": "4347195763759381731" + }, + { + "file": "packages/react-experiments/src/LayoutGroup.ts", + "hash": "6487040189142004344" + }, + { + "file": "packages/react-experiments/src/MicroFeedback.ts", + "hash": "8888494769050870648" + }, + { + "file": "packages/react-experiments/src/Pagination.ts", + "hash": "4350794388615723689" + }, + { + "file": "packages/react-experiments/src/Persona.ts", + "hash": "11634239554265983330" + }, + { + "file": "packages/react-experiments/src/PersonaCoin.ts", + "hash": "8412453628380985510" + }, + { + "file": "packages/react-experiments/src/SelectedItemsList.ts", + "hash": "8395059039592633644" + }, + { + "file": "packages/react-experiments/src/Separator.ts", + "hash": "4641114773120917684" + }, + { + "file": "packages/react-experiments/src/Sidebar.ts", + "hash": "17768333116531200071" + }, + { + "file": "packages/react-experiments/src/Signals.ts", + "hash": "620991364519481258" + }, + { + "file": "packages/react-experiments/src/Slider.ts", + "hash": "8062765663185726667" + }, + { + "file": "packages/react-experiments/src/Stack.ts", + "hash": "7034361302360469020" + }, + { + "file": "packages/react-experiments/src/StaticList.ts", + "hash": "7488446108983563702" + }, + { + "file": "packages/react-experiments/src/Styling.ts", + "hash": "8123475635573030392" + }, + { + "file": "packages/react-experiments/src/Text.ts", + "hash": "298153759206803748" + }, + { + "file": "packages/react-experiments/src/Tile.ts", + "hash": "15115386942984335447" + }, + { + "file": "packages/react-experiments/src/TilesList.ts", + "hash": "4067127055357787810" + }, + { + "file": "packages/react-experiments/src/UnifiedPeoplePicker.ts", + "hash": "3493245017176473579" + }, + { + "file": "packages/react-experiments/src/UnifiedPicker.ts", + "hash": "7374717927815807161" + }, + { + "file": "packages/react-experiments/src/Utilities.ts", + "hash": "15929919672659535220" + }, + { + "file": "packages/react-experiments/src/VirtualizedList.ts", + "hash": "15787698144324878502" + }, + { + "file": "packages/react-experiments/src/common/TestImages.ts", + "hash": "7314752036436624417" + }, + { + "file": "packages/react-experiments/src/components/Accordion/Accordion.styles.ts", + "hash": "10103728486657545453" + }, + { + "file": "packages/react-experiments/src/components/Accordion/Accordion.tsx", + "hash": "10919603374232920421" + }, + { + "file": "packages/react-experiments/src/components/Accordion/Accordion.types.ts", + "hash": "1763826350692402116" + }, + { + "file": "packages/react-experiments/src/components/Accordion/index.ts", + "hash": "14810765027328618110" + }, + { + "file": "packages/react-experiments/src/components/BAFAccordion/Accordion.scss", + "hash": "3159494616127549602" + }, + { + "file": "packages/react-experiments/src/components/BAFAccordion/Accordion.tsx", + "hash": "13071939116549721336" + }, + { + "file": "packages/react-experiments/src/components/BAFAccordion/Accordion.types.tsx", + "hash": "11818567710826420017" + }, + { + "file": "packages/react-experiments/src/components/BAFAccordion/index.ts", + "hash": "17043733982335872409" + }, + { + "file": "packages/react-experiments/src/components/BAFAccordion/owners.txt", + "hash": "3476385688937999347" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/Chiclet.base.tsx", + "hash": "3409074486319435397" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/Chiclet.styles.ts", + "hash": "8569233722529425104" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/Chiclet.test.tsx", + "hash": "6008395739054324573" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/Chiclet.tsx", + "hash": "13141819538538406114" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/Chiclet.types.ts", + "hash": "5622013660578992775" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/ChicletCard.base.tsx", + "hash": "16702394850503035254" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/ChicletCard.styles.ts", + "hash": "10739227742080388232" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/ChicletCard.tsx", + "hash": "7902323050637313004" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/ChicletCard.types.ts", + "hash": "5412841689924415351" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/ChicletXsmall.base.tsx", + "hash": "12511258243374624230" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/ChicletXsmall.styles.tsx", + "hash": "11420917528936773262" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/ChicletXsmall.tsx", + "hash": "14249571087042892150" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/__snapshots__/Chiclet.test.tsx.snap", + "hash": "6081639501010760453" + }, + { + "file": "packages/react-experiments/src/components/Chiclet/index.ts", + "hash": "10160553347801902812" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.state.tsx", + "hash": "18322757302069591719" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.styles.ts", + "hash": "2779693142844014460" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.ts", + "hash": "4591584793160304813" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.types.ts", + "hash": "14444496592959954320" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.view.tsx", + "hash": "1782191095359759951" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.styles.ts", + "hash": "3431138696688297563" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.ts", + "hash": "5820505541536991668" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.types.ts", + "hash": "13707897512874248717" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.view.tsx", + "hash": "13865182112328305874" + }, + { + "file": "packages/react-experiments/src/components/CollapsibleSection/index.ts", + "hash": "6854421450006391828" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/FloatingPeopleSuggestions.tsx", + "hash": "3757060386559289795" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.scss", + "hash": "3905654351229104045" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.tsx", + "hash": "5377638749757585082" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/index.ts", + "hash": "2813564923569936104" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.scss", + "hash": "3604756766474209425" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.tsx", + "hash": "381444847938224424" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.types.ts", + "hash": "4632979514109731236" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/Suggestions.types.ts", + "hash": "7068927902778183292" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.scss", + "hash": "8577107595666309036" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.test.tsx", + "hash": "15850210107969836877" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.tsx", + "hash": "1708624113233746184" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsCore.scss", + "hash": "1212577356362130966" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsCore.tsx", + "hash": "13870857510612252988" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.styles.ts", + "hash": "17338743388339628589" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.tsx", + "hash": "11715318481696458315" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.types.ts", + "hash": "11160815825282002971" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsStore.ts", + "hash": "13386259745322524879" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestions/index.ts", + "hash": "17810609914691297881" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestionItems/SuggestionItemDefault.styles.ts", + "hash": "4743105042530766310" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestionItems/SuggestionItemDefault.tsx", + "hash": "3453583868207626678" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestions.tsx", + "hash": "13050158639049570556" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestions.types.ts", + "hash": "12837034505758908897" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.styles.ts", + "hash": "16302313942165176658" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.tsx", + "hash": "10782913239539786536" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.types.ts", + "hash": "11084868562405984032" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsComposite.test.tsx", + "hash": "12982544863657252401" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.styles.ts", + "hash": "1111839729707920702" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.tsx", + "hash": "7254408377977084011" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.types.ts", + "hash": "1703025396759223111" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.styles.ts", + "hash": "7000086168349821996" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.tsx", + "hash": "15765347135995471597" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.types.ts", + "hash": "2183956652895868185" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.styles.ts", + "hash": "15453606984512324352" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.tsx", + "hash": "10271927908577936066" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.types.ts", + "hash": "11125748956408054438" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/__snapshots__/FloatingSuggestionsComposite.test.tsx.snap", + "hash": "9917759799883970820" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/index.ts", + "hash": "3574819925110002578" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/utils/getNextSuggestionIndex.ts", + "hash": "11830895391681216780" + }, + { + "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/utils/getPreviousSuggestionIndex.ts", + "hash": "8265911307876280394" + }, + { + "file": "packages/react-experiments/src/components/FolderCover/FolderCover.scss", + "hash": "12904864827355527393" + }, + { + "file": "packages/react-experiments/src/components/FolderCover/FolderCover.tsx", + "hash": "5241141501904891354" + }, + { + "file": "packages/react-experiments/src/components/FolderCover/FolderCover.types.ts", + "hash": "15996641639839082729" + }, + { + "file": "packages/react-experiments/src/components/FolderCover/index.ts", + "hash": "1965305132211953917" + }, + { + "file": "packages/react-experiments/src/components/FolderCover/initializeFolderCovers.tsx", + "hash": "7166539941536670708" + }, + { + "file": "packages/react-experiments/src/components/LayoutGroup/LayoutGroup.tsx", + "hash": "11503592609729761699" + }, + { + "file": "packages/react-experiments/src/components/LayoutGroup/LayoutGroup.types.ts", + "hash": "11477832012990329444" + }, + { + "file": "packages/react-experiments/src/components/LayoutGroup/index.ts", + "hash": "4937009151180128495" + }, + { + "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.state.ts", + "hash": "8558097265940582588" + }, + { + "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.styles.ts", + "hash": "3664376394785762021" + }, + { + "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.test.tsx", + "hash": "16693792913876566657" + }, + { + "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.tsx", + "hash": "6201110364847208132" + }, + { + "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.types.ts", + "hash": "3034977262470562098" + }, + { + "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.view.tsx", + "hash": "8949946573282186190" + }, + { + "file": "packages/react-experiments/src/components/MicroFeedback/__snapshots__/MicroFeedback.test.tsx.snap", + "hash": "10058342721573506314" + }, + { + "file": "packages/react-experiments/src/components/MicroFeedback/index.ts", + "hash": "13677606644297986230" + }, + { + "file": "packages/react-experiments/src/components/Pagination/PageNumber.tsx", + "hash": "4546005481250467622" + }, + { + "file": "packages/react-experiments/src/components/Pagination/PageNumber.types.ts", + "hash": "18320997077151981120" + }, + { + "file": "packages/react-experiments/src/components/Pagination/Pagination.base.tsx", + "hash": "10087620027863872208" + }, + { + "file": "packages/react-experiments/src/components/Pagination/Pagination.styles.ts", + "hash": "12065043136280449004" + }, + { + "file": "packages/react-experiments/src/components/Pagination/Pagination.test.tsx", + "hash": "2308659567326285802" + }, + { + "file": "packages/react-experiments/src/components/Pagination/Pagination.tsx", + "hash": "6872288120100005013" + }, + { + "file": "packages/react-experiments/src/components/Pagination/Pagination.types.ts", + "hash": "4670107751414484026" + }, + { + "file": "packages/react-experiments/src/components/Pagination/__snapshots__/Pagination.test.tsx.snap", + "hash": "535135098638587946" + }, + { + "file": "packages/react-experiments/src/components/Pagination/index.ts", + "hash": "17421102762909672330" + }, + { + "file": "packages/react-experiments/src/components/Persona/Persona.tsx", + "hash": "7714910874570066235" + }, + { + "file": "packages/react-experiments/src/components/Persona/Persona.types.ts", + "hash": "2581738252277925013" + }, + { + "file": "packages/react-experiments/src/components/Persona/PersonaText/PersonaText.tsx", + "hash": "5859930998899639965" + }, + { + "file": "packages/react-experiments/src/components/Persona/PersonaText/index.ts", + "hash": "12160704872550378359" + }, + { + "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.styles.ts", + "hash": "486193162841061838" + }, + { + "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.test.tsx", + "hash": "11707248106656605624" + }, + { + "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.ts", + "hash": "44114845465802009" + }, + { + "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.types.ts", + "hash": "9606945673643607753" + }, + { + "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.view.tsx", + "hash": "13016462774222819904" + }, + { + "file": "packages/react-experiments/src/components/Persona/Vertical/__snapshots__/VerticalPersona.test.tsx.snap", + "hash": "13220328470775192500" + }, + { + "file": "packages/react-experiments/src/components/Persona/index.ts", + "hash": "6348331949361760859" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.state.ts", + "hash": "8710872931461018024" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.styles.ts", + "hash": "9772456920698375671" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.test.tsx", + "hash": "12048974165692997332" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.ts", + "hash": "12724479649793425338" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.types.ts", + "hash": "12490952391090838709" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.view.tsx", + "hash": "11386862964080294929" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/PersonaCoinImage.tsx", + "hash": "381924212602934673" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/PersonaCoinImage.types.ts", + "hash": "13914464509117049729" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/index.ts", + "hash": "17897665529387283662" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinInitials/PersonaCoinInitials.tsx", + "hash": "8356149681486052893" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinSize10/PersonaCoinSize10.tsx", + "hash": "17367608678914536633" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/__snapshots__/PersonaCoin.test.tsx.snap", + "hash": "14084163329842627549" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/index.ts", + "hash": "4690765837432319189" + }, + { + "file": "packages/react-experiments/src/components/PersonaCoin/propHelpers.ts", + "hash": "11515578808103658372" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/Items/CopyableItem.tsx", + "hash": "4460092286991826468" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/Items/EditableItem.tsx", + "hash": "1506153315791396911" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/Items/ItemTrigger.types.ts", + "hash": "1066552443382932370" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/Items/ItemWithContextMenu.tsx", + "hash": "9212113507745444261" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/Items/TriggerOnContextMenu.tsx", + "hash": "1936797453681473708" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/Items/index.ts", + "hash": "1847408114707276401" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.scss", + "hash": "2123961347839935533" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.tsx", + "hash": "11599018992220337350" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.test.tsx", + "hash": "10026648953646638887" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.tsx", + "hash": "6459558609762136724" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.types.ts", + "hash": "2686034838864743834" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.styles.ts", + "hash": "16362109281402062667" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.tsx", + "hash": "4174472656133855628" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.types.ts", + "hash": "10640929694904910998" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.test.tsx", + "hash": "5076323846252697640" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.tsx", + "hash": "1942004760255062545" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/__snapshots__/SelectedPeopleList.test.tsx.snap", + "hash": "13037658191009713151" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/index.ts", + "hash": "10546884526866399704" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/__snapshots__/SelectedItemsList.test.tsx.snap", + "hash": "15353071673818879597" + }, + { + "file": "packages/react-experiments/src/components/SelectedItemsList/index.ts", + "hash": "11969545535632613866" + }, + { + "file": "packages/react-experiments/src/components/Sidebar/Sidebar.classNames.tsx", + "hash": "7010893654002625166" + }, + { + "file": "packages/react-experiments/src/components/Sidebar/Sidebar.styles.tsx", + "hash": "13754931327925901039" + }, + { + "file": "packages/react-experiments/src/components/Sidebar/Sidebar.test.tsx", + "hash": "14465723933222876442" + }, + { + "file": "packages/react-experiments/src/components/Sidebar/Sidebar.tsx", + "hash": "52139508622844580" + }, + { + "file": "packages/react-experiments/src/components/Sidebar/Sidebar.types.tsx", + "hash": "331900337538358997" + }, + { + "file": "packages/react-experiments/src/components/Sidebar/SidebarButton.styles.tsx", + "hash": "4173292561399305330" + }, + { + "file": "packages/react-experiments/src/components/Sidebar/SidebarButton.tsx", + "hash": "4286211183338076407" + }, + { + "file": "packages/react-experiments/src/components/Sidebar/index.ts", + "hash": "10615726587843841544" + }, + { + "file": "packages/react-experiments/src/components/Slider/Slider.base.tsx", + "hash": "4429192687504958983" + }, + { + "file": "packages/react-experiments/src/components/Slider/Slider.styles.tsx", + "hash": "4479449330147508383" + }, + { + "file": "packages/react-experiments/src/components/Slider/Slider.test.tsx", + "hash": "4966249706265165218" + }, + { + "file": "packages/react-experiments/src/components/Slider/Slider.tsx", + "hash": "10723765216778814719" + }, + { + "file": "packages/react-experiments/src/components/Slider/Slider.types.ts", + "hash": "13593910734039395002" + }, + { + "file": "packages/react-experiments/src/components/Slider/__snapshots__/Slider.test.tsx.snap", + "hash": "6166737303082448600" + }, + { + "file": "packages/react-experiments/src/components/Slider/index.ts", + "hash": "16426302468400422346" + }, + { + "file": "packages/react-experiments/src/components/StaticList/List.types.ts", + "hash": "13029505571285717375" + }, + { + "file": "packages/react-experiments/src/components/StaticList/StaticList.scss", + "hash": "6418642908294752521" + }, + { + "file": "packages/react-experiments/src/components/StaticList/StaticList.tsx", + "hash": "641714830964085194" + }, + { + "file": "packages/react-experiments/src/components/StaticList/StaticList.types.ts", + "hash": "10427582978882602229" + }, + { + "file": "packages/react-experiments/src/components/StaticList/index.ts", + "hash": "14396733320191333641" + }, + { + "file": "packages/react-experiments/src/components/Tile/Check.scss", + "hash": "17140661851251461349" + }, + { + "file": "packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.base.tsx", + "hash": "13442204835589282229" + }, + { + "file": "packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.styles.ts", + "hash": "8193484691228559393" + }, + { + "file": "packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.tsx", + "hash": "6580041504660615377" + }, + { + "file": "packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.types.ts", + "hash": "4381964922523372138" + }, + { + "file": "packages/react-experiments/src/components/Tile/Tile.scss", + "hash": "7384527406222800300" + }, + { + "file": "packages/react-experiments/src/components/Tile/Tile.tsx", + "hash": "18267954738149232245" + }, + { + "file": "packages/react-experiments/src/components/Tile/Tile.types.ts", + "hash": "18099294555385488476" + }, + { + "file": "packages/react-experiments/src/components/Tile/index.ts", + "hash": "12634420449656108817" + }, + { + "file": "packages/react-experiments/src/components/TilesList/TilesList.scss", + "hash": "842071301340357996" + }, + { + "file": "packages/react-experiments/src/components/TilesList/TilesList.tsx", + "hash": "10430063901723355839" + }, + { + "file": "packages/react-experiments/src/components/TilesList/TilesList.types.ts", + "hash": "17504993610037147225" + }, + { + "file": "packages/react-experiments/src/components/TilesList/index.ts", + "hash": "9841529760922503529" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.test.tsx", + "hash": "3517327827280940319" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.tsx", + "hash": "14506214779457586241" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.types.ts", + "hash": "1543295232261040062" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/__snapshots__/UnifiedPeoplePicker.test.tsx.snap", + "hash": "7774749062177847028" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.styles.ts", + "hash": "15570590120604449971" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.test.tsx", + "hash": "8424483237745143282" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.tsx", + "hash": "3366336271139962794" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.types.ts", + "hash": "14552322759660156163" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/__snapshots__/UnifiedPicker.test.tsx.snap", + "hash": "7297314502332383484" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/hooks/useFloatingSuggestionItems.ts", + "hash": "1758471814706513672" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/hooks/useSelectedItems.ts", + "hash": "5077487519667132696" + }, + { + "file": "packages/react-experiments/src/components/UnifiedPicker/index.ts", + "hash": "6262690888054952770" + }, + { + "file": "packages/react-experiments/src/components/VirtualizedList/VirtualizedList.scss", + "hash": "4311027338679150061" + }, + { + "file": "packages/react-experiments/src/components/VirtualizedList/VirtualizedList.test.tsx", + "hash": "6172968722546270192" + }, + { + "file": "packages/react-experiments/src/components/VirtualizedList/VirtualizedList.tsx", + "hash": "4533817653005411344" + }, + { + "file": "packages/react-experiments/src/components/VirtualizedList/VirtualizedList.types.ts", + "hash": "17801838772746123231" + }, + { + "file": "packages/react-experiments/src/components/VirtualizedList/__snapshots__/VirtualizedList.test.tsx.snap", + "hash": "14732020310207096293" + }, + { + "file": "packages/react-experiments/src/components/VirtualizedList/index.ts", + "hash": "135447240498174383" + }, + { + "file": "packages/react-experiments/src/components/fluent/FluentColors.ts", + "hash": "225500492131065146" + }, + { + "file": "packages/react-experiments/src/components/fluent/FluentDepths.ts", + "hash": "6148133275576816574" + }, + { + "file": "packages/react-experiments/src/components/fluent/FluentMotion.ts", + "hash": "11714246076652372730" + }, + { + "file": "packages/react-experiments/src/components/fluent/FluentTheme.ts", + "hash": "8840513458027493895" + }, + { + "file": "packages/react-experiments/src/components/fluent/FluentType.ts", + "hash": "17693899800607942246" + }, + { + "file": "packages/react-experiments/src/components/signals/Signal.scss", + "hash": "16352737707440812602" + }, + { + "file": "packages/react-experiments/src/components/signals/Signal.tsx", + "hash": "14827070792321820050" + }, + { + "file": "packages/react-experiments/src/components/signals/SignalField.scss", + "hash": "14738164499262173795" + }, + { + "file": "packages/react-experiments/src/components/signals/SignalField.tsx", + "hash": "18433200084518909301" + }, + { + "file": "packages/react-experiments/src/components/signals/Signals.Props.ts", + "hash": "11137791629269371778" + }, + { + "file": "packages/react-experiments/src/components/signals/Signals.scss", + "hash": "12630874552248492839" + }, + { + "file": "packages/react-experiments/src/components/signals/Signals.tsx", + "hash": "5541756948576717681" + }, + { + "file": "packages/react-experiments/src/index.ts", + "hash": "8087115123738644940" + }, + { + "file": "packages/react-experiments/src/utilities/factoryComponents.tsx", + "hash": "16120135515651635803" + }, + { + "file": "packages/react-experiments/src/utilities/factoryComponents.types.tsx", + "hash": "17345407460455718193" + }, + { + "file": "packages/react-experiments/src/utilities/scrolling/ScrollContainer.scss", + "hash": "1448566863525499310" + }, + { + "file": "packages/react-experiments/src/utilities/scrolling/ScrollContainer.tsx", + "hash": "9543898172760502245" + }, + { + "file": "packages/react-experiments/src/utilities/scrolling/ScrollContainer.types.ts", + "hash": "5510579575255177883" + }, + { + "file": "packages/react-experiments/src/utilities/scrolling/index.ts", + "hash": "14000842761119700127" + }, + { + "file": "packages/react-experiments/src/utilities/textHelpers.ts", + "hash": "8358896990955050500" + }, + { + "file": "packages/react-experiments/src/version.ts", + "hash": "3147508813634178729" + }, + { + "file": "packages/react-experiments/tsconfig.json", + "hash": "4921836023195560350" + }, + { + "file": "packages/react-experiments/webpack.config.js", + "hash": "13362749979705105070" + }, + { + "file": "packages/react-experiments/webpack.serve.config.js", + "hash": "7443825724669908634" + } + ], + "@fluentui/react-component-ref": [ + { + "file": "packages/fluentui/react-component-ref/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-component-ref/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-component-ref/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-component-ref/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-component-ref/jest.config.js", + "hash": "16229841778322564435" + }, + { + "file": "packages/fluentui/react-component-ref/package.json", + "hash": "7529430488905102947", + "deps": [ + "npm:@babel/runtime", + "npm:react-is", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:lerna-alias", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-component-ref/project.json", + "hash": "6126110977524113939" + }, + { + "file": "packages/fluentui/react-component-ref/src/Ref.tsx", + "hash": "8736695420541124411" + }, + { + "file": "packages/fluentui/react-component-ref/src/index.ts", + "hash": "2957471030756768947" + }, + { + "file": "packages/fluentui/react-component-ref/src/utils.ts", + "hash": "5021221117969286327" + }, + { + "file": "packages/fluentui/react-component-ref/test/Ref-test.tsx", + "hash": "15199118732810061095" + }, + { + "file": "packages/fluentui/react-component-ref/test/fixtures.tsx", + "hash": "17981835075008341893" + }, + { + "file": "packages/fluentui/react-component-ref/test/handleRef-test.ts", + "hash": "14323864877924546412" + }, + { + "file": "packages/fluentui/react-component-ref/test/isRefObject-test.ts", + "hash": "1265088125532153475" + }, + { + "file": "packages/fluentui/react-component-ref/tsconfig.json", + "hash": "12214264623402812273" + } + ], + "@fluentui/react-overflow": [ + { + "file": "packages/react-components/react-overflow/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-overflow/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-overflow/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-overflow/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-overflow/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-overflow/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-overflow/CHANGELOG.json", + "hash": "17151345637925750323" + }, + { + "file": "packages/react-components/react-overflow/CHANGELOG.md", + "hash": "11159453311878671621" + }, + { + "file": "packages/react-components/react-overflow/LICENSE", + "hash": "9818542165238110929" + }, + { + "file": "packages/react-components/react-overflow/README.md", + "hash": "14042413657447533493" + }, + { + "file": "packages/react-components/react-overflow/bundle-size/hooks.fixture.js", + "hash": "98538218520861936" + }, + { + "file": "packages/react-components/react-overflow/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-overflow/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-overflow/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-overflow/etc/react-overflow.api.md", + "hash": "5944085284944377635" + }, + { + "file": "packages/react-components/react-overflow/etc/react-priority-overflow.api.md", + "hash": "6850313133803861984" + }, + { + "file": "packages/react-components/react-overflow/jest.config.js", + "hash": "1514962155860067226" + }, + { + "file": "packages/react-components/react-overflow/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-overflow/package.json", + "hash": "2219755465510116858", + "deps": [ + "@fluentui/priority-overflow", + "@fluentui/react-context-selector", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-overflow/project.json", + "hash": "14511368221817073832" + }, + { + "file": "packages/react-components/react-overflow/src/Overflow.cy.tsx", + "hash": "5903549386456079078" + }, + { + "file": "packages/react-components/react-overflow/src/components/Overflow.test.tsx", + "hash": "4616096457460375706" + }, + { + "file": "packages/react-components/react-overflow/src/components/Overflow.tsx", + "hash": "15335767250878277368" + }, + { + "file": "packages/react-components/react-overflow/src/components/OverflowDivider/OverflowDivider.tsx", + "hash": "9991237880667566221" + }, + { + "file": "packages/react-components/react-overflow/src/components/OverflowDivider/OverflowDivider.types.ts", + "hash": "10260336547526921784" + }, + { + "file": "packages/react-components/react-overflow/src/components/OverflowItem/OverflowItem.tsx", + "hash": "13525090351953575094" + }, + { + "file": "packages/react-components/react-overflow/src/components/OverflowItem/OverflowItem.types.ts", + "hash": "8179926864947790425" + }, + { + "file": "packages/react-components/react-overflow/src/components/OverflowItem/index.ts", + "hash": "18199425824488830312" + }, + { + "file": "packages/react-components/react-overflow/src/components/useOverflowStyles.styles.ts", + "hash": "16931751093871652445" + }, + { + "file": "packages/react-components/react-overflow/src/constants.ts", + "hash": "11914410734725550543" + }, + { + "file": "packages/react-components/react-overflow/src/index.ts", + "hash": "928923642684209487" + }, + { + "file": "packages/react-components/react-overflow/src/overflowContext.ts", + "hash": "7769612302933074122" + }, + { + "file": "packages/react-components/react-overflow/src/types.ts", + "hash": "5492746861660879830" + }, + { + "file": "packages/react-components/react-overflow/src/useIsOverflowGroupVisible.ts", + "hash": "4841996585229831820" + }, + { + "file": "packages/react-components/react-overflow/src/useIsOverflowItemVisible.ts", + "hash": "6306945866532867469" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowContainer.test.ts", + "hash": "11708115788843291653" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowContainer.ts", + "hash": "6511953937396193454" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowCount.ts", + "hash": "5628822841071015476" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowDivider.ts", + "hash": "7563026932439474358" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowItem.test.tsx", + "hash": "6068719971330329687" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowItem.ts", + "hash": "11076561095104277063" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowMenu.ts", + "hash": "2665228874597285133" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowVisibility.test.tsx", + "hash": "3159144109608287371" + }, + { + "file": "packages/react-components/react-overflow/src/useOverflowVisibility.ts", + "hash": "816675367100410748" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/Default.stories.tsx", + "hash": "13636933276269901073" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/Dividers.stories.tsx", + "hash": "17525297437007530058" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/LargerDividers.stories.tsx", + "hash": "12330010832915645500" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/MinimumVisible.stories.tsx", + "hash": "14537983058431798177" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/OverflowByPriority.stories.tsx", + "hash": "14209658414845891889" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/OverflowDescription.md", + "hash": "3103387157794012604" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/Pinned.stories.tsx", + "hash": "6120787215013052902" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/PriorityWithDividers.stories.tsx", + "hash": "1841267361857628080" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/ReverseDomOrder.stories.tsx", + "hash": "528035539893611447" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/Vertical.stories.tsx", + "hash": "15263716140745374237" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/Wrapped.stories.tsx", + "hash": "3049936368731116819" + }, + { + "file": "packages/react-components/react-overflow/stories/Overflow/index.stories.tsx", + "hash": "11843265896563295928" + }, + { + "file": "packages/react-components/react-overflow/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-overflow/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-overflow/tsconfig.lib.json", + "hash": "2390123189881839961" + }, + { + "file": "packages/react-components/react-overflow/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-infobutton": [ + { + "file": "packages/react-components/react-infobutton/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-infobutton/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-infobutton/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-infobutton/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-infobutton/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-infobutton/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-infobutton/CHANGELOG.json", + "hash": "15238147816511200513" + }, + { + "file": "packages/react-components/react-infobutton/CHANGELOG.md", + "hash": "13746918152090924083" + }, + { + "file": "packages/react-components/react-infobutton/LICENSE", + "hash": "17633016642573289784" + }, + { + "file": "packages/react-components/react-infobutton/README.md", + "hash": "6386604485399176422" + }, + { + "file": "packages/react-components/react-infobutton/bundle-size/InfoButton.fixture.js", + "hash": "759644844444210261" + }, + { + "file": "packages/react-components/react-infobutton/bundle-size/InfoLabel.fixture.js", + "hash": "8561557699756231013" + }, + { + "file": "packages/react-components/react-infobutton/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-infobutton/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-infobutton/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-infobutton/docs/Spec.md", + "hash": "12415704727702896077" + }, + { + "file": "packages/react-components/react-infobutton/etc/images/anatomy.png", + "hash": "13995183815818235250" + }, + { + "file": "packages/react-components/react-infobutton/etc/react-infobutton.api.md", + "hash": "7166180765339852355" + }, + { + "file": "packages/react-components/react-infobutton/jest.config.js", + "hash": "4511360346170781976" + }, + { + "file": "packages/react-components/react-infobutton/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-infobutton/package.json", + "hash": "10722911638598738598", + "deps": [ + "npm:@fluentui/react-icons", + "@fluentui/react-label", + "@fluentui/react-popover", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-infobutton/project.json", + "hash": "10924230166498856608" + }, + { + "file": "packages/react-components/react-infobutton/src/InfoButton.ts", + "hash": "6736681049567293007" + }, + { + "file": "packages/react-components/react-infobutton/src/InfoLabel.ts", + "hash": "10491035089563452821" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoButton/DefaultInfoButtonIcons.tsx", + "hash": "2356653625358885392" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.test.tsx", + "hash": "8713205559683010958" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.tsx", + "hash": "9270853198934657958" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.types.ts", + "hash": "12891027815312333985" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoButton/index.ts", + "hash": "7451520123696318723" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoButton/renderInfoButton.tsx", + "hash": "2954075369945934214" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoButton/useInfoButton.tsx", + "hash": "3914295003966763922" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoButton/useInfoButtonStyles.styles.ts", + "hash": "12015306674106208473" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.cy.tsx", + "hash": "14532858853239359506" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.test.tsx", + "hash": "1718709338479656088" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.tsx", + "hash": "13094067001932444234" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.types.ts", + "hash": "8128906299140167967" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoLabel/index.ts", + "hash": "1040167975180781477" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoLabel/renderInfoLabel.tsx", + "hash": "12063702469681501912" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts", + "hash": "10543420685351752865" + }, + { + "file": "packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabelStyles.styles.ts", + "hash": "14482136840318409233" + }, + { + "file": "packages/react-components/react-infobutton/src/index.ts", + "hash": "1780398361093080958" + }, + { + "file": "packages/react-components/react-infobutton/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-infobutton/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-infobutton/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-infobutton/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-infobutton/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/perf-test": [ + { + "file": "apps/perf-test/.eslintrc.json", + "hash": "10547952771306076160" + }, + { + "file": "apps/perf-test/CHANGELOG.json", + "hash": "3690860680265631274" + }, + { + "file": "apps/perf-test/CHANGELOG.md", + "hash": "9969572947780794950" + }, + { + "file": "apps/perf-test/README.md", + "hash": "12764928321652014507" + }, + { + "file": "apps/perf-test/config/perf-test/index.ts", + "hash": "15575701111399511894" + }, + { + "file": "apps/perf-test/config/perf-test/scenarioIterations.ts", + "hash": "1467367775531702909" + }, + { + "file": "apps/perf-test/config/perf-test/scenarioNames.ts", + "hash": "10066279640267329814" + }, + { + "file": "apps/perf-test/config/perf-test/scenarioRenderTypes.ts", + "hash": "14788378254920081233" + }, + { + "file": "apps/perf-test/config/pre-copy.json", + "hash": "5251859254196291210" + }, + { + "file": "apps/perf-test/index.html", + "hash": "2745716322290525623" + }, + { + "file": "apps/perf-test/just.config.ts", + "hash": "4618050165307861195" + }, + { + "file": "apps/perf-test/package.json", + "hash": "4151768643695656396", + "deps": [ + "@fluentui/scripts-perf-test-flamegrill", + "@fluentui/example-data", + "@fluentui/react", + "npm:@microsoft/load-themed-styles", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-storybook" + ] + }, + { + "file": "apps/perf-test/project.json", + "hash": "5899890915664975397" + }, + { + "file": "apps/perf-test/src/app.tsx", + "hash": "12332207993597947267" + }, + { + "file": "apps/perf-test/src/scenarios/BaseButton.tsx", + "hash": "7039729498171122609" + }, + { + "file": "apps/perf-test/src/scenarios/Breadcrumb.tsx", + "hash": "16313024224495253730" + }, + { + "file": "apps/perf-test/src/scenarios/Checkbox.tsx", + "hash": "17155260053343035107" + }, + { + "file": "apps/perf-test/src/scenarios/CheckboxBase.tsx", + "hash": "10358952204764439200" + }, + { + "file": "apps/perf-test/src/scenarios/ChoiceGroup.tsx", + "hash": "15318243762546027140" + }, + { + "file": "apps/perf-test/src/scenarios/ComboBox.tsx", + "hash": "18118694370519216172" + }, + { + "file": "apps/perf-test/src/scenarios/CommandBar.tsx", + "hash": "6091443890586328828" + }, + { + "file": "apps/perf-test/src/scenarios/ContextualMenu.tsx", + "hash": "14094654232604367120" + }, + { + "file": "apps/perf-test/src/scenarios/DefaultButton.tsx", + "hash": "13562761979210098938" + }, + { + "file": "apps/perf-test/src/scenarios/DetailsRow.tsx", + "hash": "10889146823819281010" + }, + { + "file": "apps/perf-test/src/scenarios/DetailsRowFast.tsx", + "hash": "9350356486541871260" + }, + { + "file": "apps/perf-test/src/scenarios/DetailsRowNoStyles.tsx", + "hash": "3324923498330798880" + }, + { + "file": "apps/perf-test/src/scenarios/Dialog.tsx", + "hash": "1622520893332066150" + }, + { + "file": "apps/perf-test/src/scenarios/DocumentCardTitle.tsx", + "hash": "4017785122739704762" + }, + { + "file": "apps/perf-test/src/scenarios/Dropdown.tsx", + "hash": "9674266945938654081" + }, + { + "file": "apps/perf-test/src/scenarios/FocusTrapZone.tsx", + "hash": "12804820792601734124" + }, + { + "file": "apps/perf-test/src/scenarios/FocusZone.tsx", + "hash": "1772332301941374739" + }, + { + "file": "apps/perf-test/src/scenarios/GroupedList.tsx", + "hash": "2729166176625295421" + }, + { + "file": "apps/perf-test/src/scenarios/GroupedListV2.tsx", + "hash": "6083440523386377794" + }, + { + "file": "apps/perf-test/src/scenarios/IconButton.tsx", + "hash": "9783541165587624706" + }, + { + "file": "apps/perf-test/src/scenarios/Label.tsx", + "hash": "10333297231209743060" + }, + { + "file": "apps/perf-test/src/scenarios/Layer.tsx", + "hash": "7525187532864277839" + }, + { + "file": "apps/perf-test/src/scenarios/Link.tsx", + "hash": "17134170605875713013" + }, + { + "file": "apps/perf-test/src/scenarios/MenuButton.tsx", + "hash": "12482470571362753709" + }, + { + "file": "apps/perf-test/src/scenarios/MessageBar.tsx", + "hash": "6613648289670595058" + }, + { + "file": "apps/perf-test/src/scenarios/Nav.tsx", + "hash": "5798771953346508490" + }, + { + "file": "apps/perf-test/src/scenarios/OverflowSet.tsx", + "hash": "9513079940270145993" + }, + { + "file": "apps/perf-test/src/scenarios/Panel.tsx", + "hash": "1158665086373748648" + }, + { + "file": "apps/perf-test/src/scenarios/Persona.tsx", + "hash": "18289029128740009386" + }, + { + "file": "apps/perf-test/src/scenarios/Pivot.tsx", + "hash": "10244319942289181285" + }, + { + "file": "apps/perf-test/src/scenarios/PrimaryButton.tsx", + "hash": "12459806105681511644" + }, + { + "file": "apps/perf-test/src/scenarios/Rating.tsx", + "hash": "14731327159912128514" + }, + { + "file": "apps/perf-test/src/scenarios/SearchBox.tsx", + "hash": "5237818112665442932" + }, + { + "file": "apps/perf-test/src/scenarios/Shimmer.tsx", + "hash": "11956647389275749102" + }, + { + "file": "apps/perf-test/src/scenarios/Slider.tsx", + "hash": "11778722341113439217" + }, + { + "file": "apps/perf-test/src/scenarios/SpinButton.tsx", + "hash": "9965853523492667198" + }, + { + "file": "apps/perf-test/src/scenarios/Spinner.tsx", + "hash": "2726138929103130728" + }, + { + "file": "apps/perf-test/src/scenarios/SplitButton.tsx", + "hash": "477263295800307708" + }, + { + "file": "apps/perf-test/src/scenarios/Stack.tsx", + "hash": "1140119322094176286" + }, + { + "file": "apps/perf-test/src/scenarios/StackWithIntrinsicChildren.tsx", + "hash": "1362817365828357956" + }, + { + "file": "apps/perf-test/src/scenarios/StackWithTextChildren.tsx", + "hash": "11161962004038112758" + }, + { + "file": "apps/perf-test/src/scenarios/SwatchColorPicker.tsx", + "hash": "13643965778697826890" + }, + { + "file": "apps/perf-test/src/scenarios/TagPicker.tsx", + "hash": "4504938228669326581" + }, + { + "file": "apps/perf-test/src/scenarios/TeachingBubble.tsx", + "hash": "2658825098623550378" + }, + { + "file": "apps/perf-test/src/scenarios/Text.tsx", + "hash": "11640958193635725056" + }, + { + "file": "apps/perf-test/src/scenarios/TextField.tsx", + "hash": "17031475880417719245" + }, + { + "file": "apps/perf-test/src/scenarios/ThemeProvider.tsx", + "hash": "11898213004948485176" + }, + { + "file": "apps/perf-test/src/scenarios/Toggle.tsx", + "hash": "4108297911933308158" + }, + { + "file": "apps/perf-test/src/scenarios/buttonNative.tsx", + "hash": "15107688448206415163" + }, + { + "file": "apps/perf-test/tsconfig.json", + "hash": "14794982171392571729" + }, + { + "file": "apps/perf-test/webpack.config.js", + "hash": "14057463434392795636" + } + ], + "@fluentui/scripts-beachball": [ + { + "file": "scripts/beachball/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/beachball/base.config.json", + "hash": "18294427476962403546" + }, + { + "file": "scripts/beachball/config.test.ts", + "hash": "17068829733399846091" + }, + { + "file": "scripts/beachball/customRenderers.ts", + "hash": "2804302704640461371" + }, + { + "file": "scripts/beachball/index.ts", + "hash": "3737354317537434882" + }, + { + "file": "scripts/beachball/jest.config.js", + "hash": "2008262210406061286" + }, + { + "file": "scripts/beachball/package.json", + "hash": "953464476337955798", + "deps": ["@fluentui/scripts-github", "@fluentui/scripts-monorepo", "@fluentui/scripts-ts-node"] + }, + { + "file": "scripts/beachball/project.json", + "hash": "73363171559233326" + }, + { + "file": "scripts/beachball/register.js", + "hash": "7204532544120368288" + }, + { + "file": "scripts/beachball/release-v8.config.js", + "hash": "12329776896108476656" + }, + { + "file": "scripts/beachball/release-vNext.config.js", + "hash": "12645380069464220490" + }, + { + "file": "scripts/beachball/shared.config.ts", + "hash": "3554874950759589528" + }, + { + "file": "scripts/beachball/tsconfig.json", + "hash": "3297202739442548297" + }, + { + "file": "scripts/beachball/tsconfig.lib.json", + "hash": "2990800560681471715" + }, + { + "file": "scripts/beachball/tsconfig.spec.json", + "hash": "16242416785763058919" + }, + { + "file": "scripts/beachball/utils.ts", + "hash": "13805748505039690586" + } + ], + "@fluentui/react-tabster": [ + { + "file": "packages/react-components/react-tabster/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-tabster/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-tabster/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-tabster/CHANGELOG.json", + "hash": "17283868674843285410" + }, + { + "file": "packages/react-components/react-tabster/CHANGELOG.md", + "hash": "1343400762706998062" + }, + { + "file": "packages/react-components/react-tabster/LICENSE", + "hash": "8780663838113620346" + }, + { + "file": "packages/react-components/react-tabster/README.md", + "hash": "12252804276424131116" + }, + { + "file": "packages/react-components/react-tabster/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-tabster/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-tabster/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-tabster/etc/react-tabster.api.md", + "hash": "2288916014796255296" + }, + { + "file": "packages/react-components/react-tabster/jest.config.js", + "hash": "18325348387735168838" + }, + { + "file": "packages/react-components/react-tabster/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-tabster/package.json", + "hash": "9722559108762075220", + "deps": [ + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "npm:keyborg", + "npm:tabster", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-tabster/project.json", + "hash": "4885231158788135051" + }, + { + "file": "packages/react-components/react-tabster/src/focus/constants.ts", + "hash": "11610761315621037017" + }, + { + "file": "packages/react-components/react-tabster/src/focus/createCustomFocusIndicatorStyle.ts", + "hash": "10135999026179805427" + }, + { + "file": "packages/react-components/react-tabster/src/focus/createFocusOutlineStyle.ts", + "hash": "2999734728216420753" + }, + { + "file": "packages/react-components/react-tabster/src/focus/focusVisiblePolyfill.test.ts", + "hash": "7780914345110669573" + }, + { + "file": "packages/react-components/react-tabster/src/focus/focusVisiblePolyfill.ts", + "hash": "17613086650502476862" + }, + { + "file": "packages/react-components/react-tabster/src/focus/focusWithinPolyfill.ts", + "hash": "13269786247543402149" + }, + { + "file": "packages/react-components/react-tabster/src/focus/index.ts", + "hash": "119617557468013632" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/index.ts", + "hash": "10780671055306574479" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useArrowNavigationGroup.ts", + "hash": "13010941348645235525" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useFocusFinders.ts", + "hash": "4287553250764137007" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useFocusObserved.ts", + "hash": "5423822093800652739" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useFocusVisible.cy.tsx", + "hash": "7947075782985402033" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useFocusVisible.test.tsx", + "hash": "1954438373418047311" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useFocusVisible.ts", + "hash": "11746992728975359453" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useFocusWithin.ts", + "hash": "514927461607676297" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useFocusableGroup.ts", + "hash": "3474408154515309341" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useKeyboardNavAttribute.ts", + "hash": "13537309225714687781" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useMergeTabsterAttributes.ts", + "hash": "10846465615831234216" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useModalAttributes.ts", + "hash": "7363526368192805001" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useObservedElement.ts", + "hash": "5721509457510651126" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useRestoreFocus.ts", + "hash": "11825775820569907957" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useTabster.ts", + "hash": "6433329624895994249" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useTabsterAttributes.ts", + "hash": "12511269325455079018" + }, + { + "file": "packages/react-components/react-tabster/src/hooks/useUncontrolledFocus.ts", + "hash": "3918052114715897957" + }, + { + "file": "packages/react-components/react-tabster/src/index.ts", + "hash": "11056968312503357075" + }, + { + "file": "packages/react-components/react-tabster/src/useFocusObserved.cy.tsx", + "hash": "4941677566385580864" + }, + { + "file": "packages/react-components/react-tabster/src/useKeyborg.cy.tsx", + "hash": "2163661386752319470" + }, + { + "file": "packages/react-components/react-tabster/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-tabster/tsconfig.json", + "hash": "5596071008249197618" + }, + { + "file": "packages/react-components/react-tabster/tsconfig.lib.json", + "hash": "4109592473830538944" + }, + { + "file": "packages/react-components/react-tabster/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-migration-v0-v9": [ + { + "file": "packages/react-components/react-migration-v0-v9/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-migration-v0-v9/.eslintrc.json", + "hash": "12940771472901318782" + }, + { + "file": "packages/react-components/react-migration-v0-v9/.storybook/main.js", + "hash": "4776051661051838074" + }, + { + "file": "packages/react-components/react-migration-v0-v9/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-migration-v0-v9/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-migration-v0-v9/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-migration-v0-v9/CHANGELOG.json", + "hash": "10897993854186447786" + }, + { + "file": "packages/react-components/react-migration-v0-v9/CHANGELOG.md", + "hash": "13587647231916958745" + }, + { + "file": "packages/react-components/react-migration-v0-v9/LICENSE", + "hash": "11594246018623427034" + }, + { + "file": "packages/react-components/react-migration-v0-v9/README.md", + "hash": "9978296153426966189" + }, + { + "file": "packages/react-components/react-migration-v0-v9/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-migration-v0-v9/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-migration-v0-v9/etc/react-migration-v0-v9.api.md", + "hash": "7256229108422340938" + }, + { + "file": "packages/react-components/react-migration-v0-v9/jest.config.js", + "hash": "12315810592738285777" + }, + { + "file": "packages/react-components/react-migration-v0-v9/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-migration-v0-v9/package.json", + "hash": "4946657624895448195", + "deps": [ + "@fluentui/react-aria", + "@fluentui/react-components", + "@fluentui/react-context-selector", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-northstar", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "@fluentui/scripts-storybook", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-migration-v0-v9/project.json", + "hash": "8381556923960860136" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Button/ButtonMigration.mixins.test.ts", + "hash": "13688439579328644579" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Button/ButtonMigration.mixins.ts", + "hash": "1521380022745067625" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Button/__snapshots__/ButtonMigration.mixins.test.ts.snap", + "hash": "15238523249422194295" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Button/index.tsx", + "hash": "15015419502366000969" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.styles.ts", + "hash": "9815013043102458902" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.test.tsx", + "hash": "10901172007854977441" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.tsx", + "hash": "17887385485034197387" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/FlexItem.mixins.test.ts", + "hash": "11976568329525176935" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/FlexItem.mixins.ts", + "hash": "387312665307964792" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/index.ts", + "hash": "3930111333542680336" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/FormField/FormFieldShim.tsx", + "hash": "8378950965437301147" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/FormField/index.ts", + "hash": "14212427842038029290" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.mixins.test.ts", + "hash": "5330293473945457870" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.mixins.ts", + "hash": "9668215664283966023" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.styles.ts", + "hash": "10034584101967878894" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/GridShim.test.tsx", + "hash": "755034056319894577" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/GridShim.tsx", + "hash": "626707608599544926" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/index.ts", + "hash": "15523671876724164145" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Input/Input.mixins.test.ts", + "hash": "15443926802107261170" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Input/Input.mixins.ts", + "hash": "1228629484584016948" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Input/index.ts", + "hash": "406734113437868625" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.styles.ts", + "hash": "9958570926942258881" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.test.tsx", + "hash": "16916108475755138538" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.tsx", + "hash": "475159289973551721" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/ItemLayout/index.tsx", + "hash": "3113838002366069990" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/List.test.tsx", + "hash": "12805398032478901779" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/List.tsx", + "hash": "4068680904225237891" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/List.types.ts", + "hash": "11908378584937348503" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/__snapshots__/List.test.tsx.snap", + "hash": "12189414601608078303" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/index.ts", + "hash": "17107546934093025866" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/listContext.ts", + "hash": "9337597684660879030" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/renderList.tsx", + "hash": "2186521174788678765" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/useList.ts", + "hash": "11318024193224137697" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/useListContextValues.ts", + "hash": "11563979621193940730" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/useListStyles.styles.ts", + "hash": "10381177976274865563" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.test.tsx", + "hash": "8056764134477992026" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.tsx", + "hash": "12481687515454290723" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.types.ts", + "hash": "13437384804128457294" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/__snapshots__/ListItem.test.tsx.snap", + "hash": "9019909192155778823" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/index.ts", + "hash": "13458219659794583076" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/renderListItem.tsx", + "hash": "14567909198214388091" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/useListItem.tsx", + "hash": "8349808383490405801" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/useListItemStyles.styles.ts", + "hash": "10549323801670309271" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/hooks/index.ts", + "hash": "14536450081702718010" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/hooks/types.ts", + "hash": "11011618432504847952" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/hooks/useListSelection.tsx", + "hash": "18367481209994946833" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/List/index.ts", + "hash": "6837911686204013385" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Primitive/Primitive.test.tsx", + "hash": "10954895803829758288" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Primitive/Primitive.tsx", + "hash": "8102630166808687777" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Primitive/index.tsx", + "hash": "8320853195778671583" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.styles.ts", + "hash": "163465406698795241" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.test.tsx", + "hash": "2074843457095701442" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.tsx", + "hash": "9318348374337572435" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Segment/index.ts", + "hash": "6478703878423887942" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Slider/Slider.mixins.test.ts", + "hash": "14618851225306044609" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Slider/Slider.mixins.ts", + "hash": "1724504369532945724" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Slider/index.ts", + "hash": "4185767866868550439" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Spinner/SpinnerMigration.mixins.test.ts", + "hash": "2617086967168608302" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Spinner/SpinnerMigration.mixins.ts", + "hash": "1036577262271937885" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/Spinner/index.tsx", + "hash": "1625672833113366276" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.styles.ts", + "hash": "9672829306212420518" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.test.tsx", + "hash": "11969189071958437142" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.tsx", + "hash": "11324608273378346647" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/components/StyledText/index.tsx", + "hash": "9128570621886886223" + }, + { + "file": "packages/react-components/react-migration-v0-v9/src/index.ts", + "hash": "1478560306537712184" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/Button/Description.md", + "hash": "17654230325647330180" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/Button/index.stories.tsx", + "hash": "2357883713191857365" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/Flex/Description.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/Flex/index.stories.tsx", + "hash": "11624234279834608424" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/FormFieldShim/Description.md", + "hash": "17245299467260723598" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/FormFieldShim/index.stories.tsx", + "hash": "5822881442487782254" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/GridShim/Description.md", + "hash": "11904517854334539499" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/GridShim/index.stories.tsx", + "hash": "6258327294094268259" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/Input/Description.md", + "hash": "13460661974646312287" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/Input/index.stories.tsx", + "hash": "4344639936932010242" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/List/Default.stories.tsx", + "hash": "7596825406422268438" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/List/ListDescription.md", + "hash": "17355733937330781996" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/List/Navigable.stories.tsx", + "hash": "15380368917294536797" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/List/Selectable.stories.tsx", + "hash": "12620296337149399839" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/List/index.stories.tsx", + "hash": "6157921948866129838" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/SegmentShim/Description.md", + "hash": "15545594269846251957" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/SegmentShim/index.stories.tsx", + "hash": "12880934640704780643" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/SliderMixin/Description.md", + "hash": "8272780712725776392" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/SliderMixin/index.stories.tsx", + "hash": "6363553375590128729" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/Spinner/Description.md", + "hash": "10637276773146727799" + }, + { + "file": "packages/react-components/react-migration-v0-v9/stories/Spinner/index.stories.tsx", + "hash": "10694249060338362664" + }, + { + "file": "packages/react-components/react-migration-v0-v9/tsconfig.json", + "hash": "13343058975825373724" + }, + { + "file": "packages/react-components/react-migration-v0-v9/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-migration-v0-v9/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/ability-attributes": [ + { + "file": "packages/fluentui/ability-attributes/.gitignore", + "hash": "11739575227553609806" + }, + { + "file": "packages/fluentui/ability-attributes/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/ability-attributes/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/ability-attributes/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/ability-attributes/package.json", + "hash": "15170941952482138179", + "deps": [ + "npm:ability-attributes", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "npm:ability-attributes-generator" + ] + }, + { + "file": "packages/fluentui/ability-attributes/project.json", + "hash": "1227490013893515185" + }, + { + "file": "packages/fluentui/ability-attributes/schema.json", + "hash": "10503311233137281773" + }, + { + "file": "packages/fluentui/ability-attributes/src/index.ts", + "hash": "2999499642231436910" + }, + { + "file": "packages/fluentui/ability-attributes/tsconfig.json", + "hash": "9156245422548100079" + } + ], + "@fluentui/react-migration-v8-v9": [ + { + "file": "packages/react-components/react-migration-v8-v9/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-migration-v8-v9/.eslintrc.json", + "hash": "12940771472901318782" + }, + { + "file": "packages/react-components/react-migration-v8-v9/.storybook/main.js", + "hash": "7685356111495756458" + }, + { + "file": "packages/react-components/react-migration-v8-v9/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-migration-v8-v9/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-migration-v8-v9/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-migration-v8-v9/CHANGELOG.json", + "hash": "4482660811503421238" + }, + { + "file": "packages/react-components/react-migration-v8-v9/CHANGELOG.md", + "hash": "3437347504588188651" + }, + { + "file": "packages/react-components/react-migration-v8-v9/LICENSE", + "hash": "10913970292391220170" + }, + { + "file": "packages/react-components/react-migration-v8-v9/README.md", + "hash": "15667163717531608187" + }, + { + "file": "packages/react-components/react-migration-v8-v9/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-migration-v8-v9/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-migration-v8-v9/docs/Spec.md", + "hash": "3855974602588191742" + }, + { + "file": "packages/react-components/react-migration-v8-v9/etc/react-migration-v8-v9.api.md", + "hash": "2219432216497333075" + }, + { + "file": "packages/react-components/react-migration-v8-v9/jest.config.js", + "hash": "12480753325623125896" + }, + { + "file": "packages/react-components/react-migration-v8-v9/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-migration-v8-v9/package.json", + "hash": "663868487500583523", + "deps": [ + "npm:@ctrl/tinycolor", + "@fluentui/fluent2-theme", + "@fluentui/react", + "@fluentui/react-components", + "npm:@fluentui/react-icons", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-migration-v8-v9/project.json", + "hash": "17528918550118370943" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/ActionButtonShim.tsx", + "hash": "4110087356959872754" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/ButtonShim.tsx", + "hash": "16685654881402239626" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/CommandButtonShim.tsx", + "hash": "4759681242635364297" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/CompoundButtonShim.tsx", + "hash": "980584788610671562" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/DefaultButtonShim.tsx", + "hash": "1506610680792068683" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/MenuButtonShim.tsx", + "hash": "8742878838054043627" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/PrimaryButtonShim.tsx", + "hash": "6779100275448036846" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/ToggleButtonShim.tsx", + "hash": "14084275913679095107" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/index.ts", + "hash": "15474820367684411221" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Button/shimButtonProps.tsx", + "hash": "13480263659535974927" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Menu/MenuShim.tsx", + "hash": "326950797068294927" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Menu/index.ts", + "hash": "8609775169523161902" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Menu/shimMenuProps.tsx", + "hash": "6020802296135092829" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/StackItemShim.styles.ts", + "hash": "4960978407952946760" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/StackItemShim.tsx", + "hash": "14483473330383428973" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/StackShim.styles.ts", + "hash": "6869802001657343935" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/StackShim.tsx", + "hash": "7702757711522861692" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/index.ts", + "hash": "1941368763660759388" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/stackUtils.ts", + "hash": "523900441251478792" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/index.ts", + "hash": "3659296414290183689" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/themeDuplicates.ts", + "hash": "3014332871161126707" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/v8ThemeShim.ts", + "hash": "7128294389039183692" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/v9BrandVariantsShim.ts", + "hash": "15701946189222231667" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/v9ThemeShim.ts", + "hash": "16396774737410343002" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/index.ts", + "hash": "15917486237367269151" + }, + { + "file": "packages/react-components/react-migration-v8-v9/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ActionButtonShim/Description.md", + "hash": "17799358882441678529" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ActionButtonShim/index.stories.tsx", + "hash": "9619742389496589062" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/CommandButtonShim/Description.md", + "hash": "15808068507500321486" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/CommandButtonShim/index.stories.tsx", + "hash": "18400507665025012879" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/CompoundButtonShim/Description.md", + "hash": "15615121418417537709" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/CompoundButtonShim/index.stories.tsx", + "hash": "6103598228001237977" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/DefaultButtonShim/Description.md", + "hash": "15808068507500321486" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/DefaultButtonShim/index.stories.tsx", + "hash": "265941327074415516" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/MenuButtonShim/Description.md", + "hash": "14517934418526815308" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/MenuButtonShim/index.stories.tsx", + "hash": "17296333858974276990" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/PrimaryButtonShim/Description.md", + "hash": "6403447194976241983" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/PrimaryButtonShim/index.stories.tsx", + "hash": "9512401406819475429" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/Stack/Description.md", + "hash": "15468957204558403920" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/Stack/index.stories.tsx", + "hash": "13606024100413921215" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/ThemePreviewV8.stories.tsx", + "hash": "8609587245661663745" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/ThemePreviewV9.stories.tsx", + "hash": "13812748298400740871" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createBrandVariants/Description.md", + "hash": "2972834094669803032" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createBrandVariants/index.stories.tsx", + "hash": "3007379002370881485" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV8Theme/Description.md", + "hash": "8730786855857856968" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV8Theme/index.stories.tsx", + "hash": "7073847923381154773" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV9Theme/Description.md", + "hash": "16317707978565389600" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV9Theme/index.stories.tsx", + "hash": "1981086446371619663" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ToggleButtonShim/Description.md", + "hash": "6884975637287055051" + }, + { + "file": "packages/react-components/react-migration-v8-v9/stories/ToggleButtonShim/index.stories.tsx", + "hash": "12333612406901703840" + }, + { + "file": "packages/react-components/react-migration-v8-v9/tsconfig.json", + "hash": "4817934933929993148" + }, + { + "file": "packages/react-components/react-migration-v8-v9/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-migration-v8-v9/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-lint-staged": [ + { + "file": "scripts/lint-staged/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/lint-staged/eslint-for-package.js", + "hash": "4738514625431014423" + }, + { + "file": "scripts/lint-staged/eslint.js", + "hash": "13861068640127141789" + }, + { + "file": "scripts/lint-staged/jest.config.js", + "hash": "7963143772161094500" + }, + { + "file": "scripts/lint-staged/package.json", + "hash": "7493691809580746414", + "deps": ["@fluentui/scripts-monorepo"] + }, + { + "file": "scripts/lint-staged/project.json", + "hash": "14668309250613706165" + }, + { + "file": "scripts/lint-staged/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/lint-staged/tsconfig.lib.json", + "hash": "3753806828268919288" + }, + { + "file": "scripts/lint-staged/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/vr-tests": [ + { + "file": "apps/vr-tests/.eslintrc.json", + "hash": "10551831104493574097" + }, + { + "file": "apps/vr-tests/.storybook/main.js", + "hash": "14940333360803121656" + }, + { + "file": "apps/vr-tests/.storybook/manager.js", + "hash": "8031267414392898657" + }, + { + "file": "apps/vr-tests/.storybook/preview.js", + "hash": "3982292904030882131" + }, + { + "file": "apps/vr-tests/CHANGELOG.json", + "hash": "7449587578967385188" + }, + { + "file": "apps/vr-tests/CHANGELOG.md", + "hash": "2930179689752298073" + }, + { + "file": "apps/vr-tests/dndSim.js", + "hash": "724746063622656033" + }, + { + "file": "apps/vr-tests/just.config.ts", + "hash": "2411455081002746933" + }, + { + "file": "apps/vr-tests/package.json", + "hash": "5047474567217814010", + "deps": [ + "@fluentui/example-data", + "@fluentui/font-icons-mdl2", + "@fluentui/react", + "@fluentui/react-experiments", + "@fluentui/react-hooks", + "@fluentui/react-icons-mdl2", + "@fluentui/storybook", + "@fluentui/react-charting", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-storybook", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "apps/vr-tests/project.json", + "hash": "15420030406986740766" + }, + { + "file": "apps/vr-tests/src/stories/ActivityItem.stories.tsx", + "hash": "11569687009388202467" + }, + { + "file": "apps/vr-tests/src/stories/Breadcrumb.stories.tsx", + "hash": "15341591510460372817" + }, + { + "file": "apps/vr-tests/src/stories/Button.stories.tsx", + "hash": "2914444188833757479" + }, + { + "file": "apps/vr-tests/src/stories/Calendar.stories.tsx", + "hash": "8538109429933462804" + }, + { + "file": "apps/vr-tests/src/stories/Checkbox.stories.tsx", + "hash": "3325419673387896680" + }, + { + "file": "apps/vr-tests/src/stories/ChoiceGroup.stories.tsx", + "hash": "1195574547624136369" + }, + { + "file": "apps/vr-tests/src/stories/Coachmark.stories.tsx", + "hash": "13321973702134234996" + }, + { + "file": "apps/vr-tests/src/stories/ColorPicker.stories.tsx", + "hash": "1213299846978993705" + }, + { + "file": "apps/vr-tests/src/stories/ComboBox.stories.tsx", + "hash": "9573414728786821330" + }, + { + "file": "apps/vr-tests/src/stories/CommandBar.stories.tsx", + "hash": "16263711139643921965" + }, + { + "file": "apps/vr-tests/src/stories/ContextualMenu.stories.tsx", + "hash": "7001519228488221050" + }, + { + "file": "apps/vr-tests/src/stories/DatePicker.stories.tsx", + "hash": "11469137129615659110" + }, + { + "file": "apps/vr-tests/src/stories/DetailsHeader.stories.tsx", + "hash": "5006577645632454049" + }, + { + "file": "apps/vr-tests/src/stories/DetailsList.stories.tsx", + "hash": "2879269659033154743" + }, + { + "file": "apps/vr-tests/src/stories/Dialog.stories.tsx", + "hash": "8052652729179956677" + }, + { + "file": "apps/vr-tests/src/stories/DocumentCard.stories.tsx", + "hash": "13899581374990015662" + }, + { + "file": "apps/vr-tests/src/stories/Dropdown.stories.tsx", + "hash": "2496251228511985784" + }, + { + "file": "apps/vr-tests/src/stories/Facepile.stories.tsx", + "hash": "12643002484132090873" + }, + { + "file": "apps/vr-tests/src/stories/FocusTrapZone.stories.tsx", + "hash": "5799413550175548528" + }, + { + "file": "apps/vr-tests/src/stories/FolderCover.stories.tsx", + "hash": "4906025218546588645" + }, + { + "file": "apps/vr-tests/src/stories/Fonts.stories.tsx", + "hash": "9549012890812409892" + }, + { + "file": "apps/vr-tests/src/stories/GroupedList.stories.tsx", + "hash": "11989572581811905811" + }, + { + "file": "apps/vr-tests/src/stories/HoverCard.stories.tsx", + "hash": "9319677405272986757" + }, + { + "file": "apps/vr-tests/src/stories/Icon.stories.tsx", + "hash": "15565848215587566233" + }, + { + "file": "apps/vr-tests/src/stories/Image.stories.tsx", + "hash": "6543648971192419845" + }, + { + "file": "apps/vr-tests/src/stories/Keytip.stories.tsx", + "hash": "14260629868498047882" + }, + { + "file": "apps/vr-tests/src/stories/Label.stories.tsx", + "hash": "16290920097226483294" + }, + { + "file": "apps/vr-tests/src/stories/Layer.stories.tsx", + "hash": "5774399677897090021" + }, + { + "file": "apps/vr-tests/src/stories/Link.stories.tsx", + "hash": "7575426125237736148" + }, + { + "file": "apps/vr-tests/src/stories/List.stories.tsx", + "hash": "8890180346033902095" + }, + { + "file": "apps/vr-tests/src/stories/MessageBar.stories.tsx", + "hash": "17616959218745846857" + }, + { + "file": "apps/vr-tests/src/stories/Modal.stories.tsx", + "hash": "9481699508246475797" + }, + { + "file": "apps/vr-tests/src/stories/Nav.stories.tsx", + "hash": "3467793982394536754" + }, + { + "file": "apps/vr-tests/src/stories/OverflowSet.stories.tsx", + "hash": "11103702669391570247" + }, + { + "file": "apps/vr-tests/src/stories/Overlay.stories.tsx", + "hash": "7861384592809448582" + }, + { + "file": "apps/vr-tests/src/stories/Panel.stories.tsx", + "hash": "4738198071916866546" + }, + { + "file": "apps/vr-tests/src/stories/PeoplePicker.stories.tsx", + "hash": "9173552436371785845" + }, + { + "file": "apps/vr-tests/src/stories/Persona.stories.tsx", + "hash": "16082800449887917174" + }, + { + "file": "apps/vr-tests/src/stories/Pivot.stories.tsx", + "hash": "484161555692287630" + }, + { + "file": "apps/vr-tests/src/stories/ProgressIndicator.stories.tsx", + "hash": "7137422605283021864" + }, + { + "file": "apps/vr-tests/src/stories/Rating.stories.tsx", + "hash": "8013473872216302645" + }, + { + "file": "apps/vr-tests/src/stories/ResizeGroup.stories.tsx", + "hash": "14761542910375483519" + }, + { + "file": "apps/vr-tests/src/stories/ScrollablePane.DetailsList.stories.tsx", + "hash": "2739168817822626656" + }, + { + "file": "apps/vr-tests/src/stories/ScrollablePane.GroupedDetailsList.stories.tsx", + "hash": "14761350823260518667" + }, + { + "file": "apps/vr-tests/src/stories/ScrollablePane.stories.tsx", + "hash": "13192871338079180854" + }, + { + "file": "apps/vr-tests/src/stories/SearchBox.stories.tsx", + "hash": "10379901043117580437" + }, + { + "file": "apps/vr-tests/src/stories/Separator.stories.tsx", + "hash": "13858622861667232974" + }, + { + "file": "apps/vr-tests/src/stories/Shimmer.stories.tsx", + "hash": "2903504102464264659" + }, + { + "file": "apps/vr-tests/src/stories/Signals.stories.tsx", + "hash": "17328372343649759425" + }, + { + "file": "apps/vr-tests/src/stories/Slider.stories.tsx", + "hash": "2368783335741726350" + }, + { + "file": "apps/vr-tests/src/stories/SpinButton.stories.tsx", + "hash": "8338452628845866471" + }, + { + "file": "apps/vr-tests/src/stories/Spinner.stories.tsx", + "hash": "1055217432712008178" + }, + { + "file": "apps/vr-tests/src/stories/Stack.stories.tsx", + "hash": "6523560878963516561" + }, + { + "file": "apps/vr-tests/src/stories/Sticky.Breadcrumb.stories.tsx", + "hash": "4487830027107272051" + }, + { + "file": "apps/vr-tests/src/stories/Suggestions.stories.tsx", + "hash": "17815861088103051556" + }, + { + "file": "apps/vr-tests/src/stories/SwatchColorPicker.stories.tsx", + "hash": "13775012423130559181" + }, + { + "file": "apps/vr-tests/src/stories/TagPicker.stories.tsx", + "hash": "14671286227568644399" + }, + { + "file": "apps/vr-tests/src/stories/TeachingBubble.stories.tsx", + "hash": "9348122633621119111" + }, + { + "file": "apps/vr-tests/src/stories/Text.stories.tsx", + "hash": "8527555373311206159" + }, + { + "file": "apps/vr-tests/src/stories/TextField.stories.tsx", + "hash": "11402453234080773139" + }, + { + "file": "apps/vr-tests/src/stories/ThemeProvider.stories.tsx", + "hash": "16275933529011562097" + }, + { + "file": "apps/vr-tests/src/stories/Tile.stories.tsx", + "hash": "14561588542669597183" + }, + { + "file": "apps/vr-tests/src/stories/TilesList.stories.tsx", + "hash": "3260762837761387433" + }, + { + "file": "apps/vr-tests/src/stories/Toggle.stories.tsx", + "hash": "10938683553158804823" + }, + { + "file": "apps/vr-tests/src/stories/Tooltip.stories.tsx", + "hash": "15939194512245739562" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/AreaChart.stories.tsx", + "hash": "8203280599867073608" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/DonutChart.stories.tsx", + "hash": "11937359916768393790" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/GaugeChart.stories.tsx", + "hash": "15594215412651597314" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/HeatMapChart.stories.tsx", + "hash": "17519556808732036733" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/HorizontalBarChart.stories.tsx", + "hash": "13460446107341381296" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/Legend.stories.tsx", + "hash": "4654126725540170806" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/LineChart.stories.tsx", + "hash": "6506744441684266097" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/MultiStackBarChart.stories.tsx", + "hash": "7178505763800800532" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/Piechart.stories.tsx", + "hash": "15708474069628495010" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/SankeyChart.stories.tsx", + "hash": "1792240597863600821" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/SparklineChart.stories.tsx", + "hash": "5855342004212481143" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/StackedBarChart.stories.tsx", + "hash": "14972009123979681780" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/TreeChart.stories.tsx", + "hash": "15398948019288529805" + }, + { + "file": "apps/vr-tests/src/stories/react-charting/VerticalBarChart.stories.tsx", + "hash": "7754085844637102451" + }, + { + "file": "apps/vr-tests/src/stories/z_Callout.stories.tsx", + "hash": "4524354447780660422" + }, + { + "file": "apps/vr-tests/src/utilities/DevOnlyStoryHeader.tsx", + "hash": "8874774277832379592" + }, + { + "file": "apps/vr-tests/src/utilities/TestWrapperDecorator.tsx", + "hash": "13027273294579000586" + }, + { + "file": "apps/vr-tests/src/utilities/index.ts", + "hash": "77713048722310053" + }, + { + "file": "apps/vr-tests/src/utilities/types.ts", + "hash": "9013455218348419096" + }, + { + "file": "apps/vr-tests/tsconfig.json", + "hash": "3557499061294487570" + } + ], + "@fluentui/scripts-perf-test-flamegrill": [ + { + "file": "scripts/perf-test-flamegrill/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/perf-test-flamegrill/jest.config.js", + "hash": "8618634705738605800" + }, + { + "file": "scripts/perf-test-flamegrill/package.json", + "hash": "11021363269324038115", + "deps": ["npm:@types/react", "npm:@types/react-dom", "npm:react", "npm:react-dom", "npm:webpack"] + }, + { + "file": "scripts/perf-test-flamegrill/project.json", + "hash": "10759724985611859010" + }, + { + "file": "scripts/perf-test-flamegrill/src/index.ts", + "hash": "11035012132823640935" + }, + { + "file": "scripts/perf-test-flamegrill/src/load-scenarios.ts", + "hash": "7976963383113325782" + }, + { + "file": "scripts/perf-test-flamegrill/src/renderer.tsx", + "hash": "12543503922466542873" + }, + { + "file": "scripts/perf-test-flamegrill/src/types.ts", + "hash": "16361176486131323805" + }, + { + "file": "scripts/perf-test-flamegrill/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/perf-test-flamegrill/tsconfig.lib.json", + "hash": "14190301940653848041" + }, + { + "file": "scripts/perf-test-flamegrill/tsconfig.spec.json", + "hash": "11895456033159184725" + } + ], + "@fluentui/perf": [ + { + "file": "packages/fluentui/perf/.eslintrc.json", + "hash": "12796673075337106714" + }, + { + "file": "packages/fluentui/perf/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/perf/babel.config.js", + "hash": "7654395597360391156" + }, + { + "file": "packages/fluentui/perf/doc/perf.md", + "hash": "16405507312382777299" + }, + { + "file": "packages/fluentui/perf/doc/perf_chart.png", + "hash": "7877526086333983849" + }, + { + "file": "packages/fluentui/perf/gulp/perf.ts", + "hash": "18417645318330609886" + }, + { + "file": "packages/fluentui/perf/gulp/shared.ts", + "hash": "852922162071245063" + }, + { + "file": "packages/fluentui/perf/gulp/webpack.config.ts", + "hash": "11522594695527201750" + }, + { + "file": "packages/fluentui/perf/gulpfile.ts", + "hash": "3266338574519543788" + }, + { + "file": "packages/fluentui/perf/package.json", + "hash": "16720766364830109335", + "deps": [ + "npm:@babel/polyfill", + "@fluentui/docs", + "@fluentui/eslint-plugin", + "@fluentui/react-northstar", + "npm:lodash", + "npm:minimatch", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-monorepo" + ] + }, + { + "file": "packages/fluentui/perf/project.json", + "hash": "14841239227301538929" + }, + { + "file": "packages/fluentui/perf/src/globals.ts", + "hash": "774283950763954109" + }, + { + "file": "packages/fluentui/perf/src/index.html", + "hash": "1997664863642561261" + }, + { + "file": "packages/fluentui/perf/src/index.tsx", + "hash": "6151998969720127036" + }, + { + "file": "packages/fluentui/perf/tsconfig.json", + "hash": "339684603525678365" + }, + { + "file": "packages/fluentui/perf/types.ts", + "hash": "13985186482084305211" + } + ], + "@fluentui/scripts-monorepo": [ + { + "file": "scripts/monorepo/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/monorepo/jest.config.js", + "hash": "1384953526716204487" + }, + { + "file": "scripts/monorepo/package.json", + "hash": "3151914312966891220", + "deps": ["@fluentui/scripts-utils"] + }, + { + "file": "scripts/monorepo/project.json", + "hash": "17093955917889568889" + }, + { + "file": "scripts/monorepo/src/eslint-constants.js", + "hash": "7443856441866657412" + }, + { + "file": "scripts/monorepo/src/findGitRoot.js", + "hash": "4363463957869502799" + }, + { + "file": "scripts/monorepo/src/findRepoDeps.js", + "hash": "7553372038547408261" + }, + { + "file": "scripts/monorepo/src/get-lerna-aliases.js", + "hash": "11009367209609457683" + }, + { + "file": "scripts/monorepo/src/getAffectedPackages.js", + "hash": "17525808605986894312" + }, + { + "file": "scripts/monorepo/src/getAllPackageInfo.js", + "hash": "2379402033617125376" + }, + { + "file": "scripts/monorepo/src/getAllPackageInfo.spec.ts", + "hash": "1140840808034567865" + }, + { + "file": "scripts/monorepo/src/getDefaultEnvironmentVars.js", + "hash": "5734650452138389015" + }, + { + "file": "scripts/monorepo/src/getDependencies.d.ts", + "hash": "11422852845790360359" + }, + { + "file": "scripts/monorepo/src/getDependencies.js", + "hash": "7623291918152264365" + }, + { + "file": "scripts/monorepo/src/getDependencies.spec.js", + "hash": "18441659048142407685" + }, + { + "file": "scripts/monorepo/src/getNthCommit.js", + "hash": "508999649282071492" + }, + { + "file": "scripts/monorepo/src/index.d.ts", + "hash": "633307509083187231" + }, + { + "file": "scripts/monorepo/src/index.js", + "hash": "3480277268839262091" + }, + { + "file": "scripts/monorepo/src/isConvergedPackage.js", + "hash": "5285532099277225326" + }, + { + "file": "scripts/monorepo/src/tree.js", + "hash": "3417107466093454766" + }, + { + "file": "scripts/monorepo/src/types.ts", + "hash": "12073047551950673729" + }, + { + "file": "scripts/monorepo/src/utils.js", + "hash": "13391023183473540106" + }, + { + "file": "scripts/monorepo/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/monorepo/tsconfig.lib.json", + "hash": "3593133700658772030" + }, + { + "file": "scripts/monorepo/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/storybook": [ + { + "file": "packages/storybook/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/storybook/.npmignore", + "hash": "15779616407447347661" + }, + { + "file": "packages/storybook/CHANGELOG.json", + "hash": "9684832229916596120" + }, + { + "file": "packages/storybook/CHANGELOG.md", + "hash": "6591049344540378333" + }, + { + "file": "packages/storybook/LICENSE", + "hash": "6831112954983569679" + }, + { + "file": "packages/storybook/README.md", + "hash": "14770738643865662074" + }, + { + "file": "packages/storybook/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/storybook/package.json", + "hash": "11762021688884133970", + "deps": [ + "@fluentui/react", + "@fluentui/theme", + "npm:@storybook/addon-knobs", + "npm:@storybook/addon-essentials", + "npm:@storybook/addons", + "@fluentui/azure-themes", + "@fluentui/theme-samples", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/storybook/project.json", + "hash": "10709984597705834020" + }, + { + "file": "packages/storybook/src/decorators/index.ts", + "hash": "16391345502308910273" + }, + { + "file": "packages/storybook/src/decorators/withKeytipLayer.tsx", + "hash": "8532635969922419204" + }, + { + "file": "packages/storybook/src/decorators/withStrictMode.tsx", + "hash": "13082330610558521527" + }, + { + "file": "packages/storybook/src/index.ts", + "hash": "15433361193389949391" + }, + { + "file": "packages/storybook/src/knobs/useStrictMode.ts", + "hash": "1532086437071717950" + }, + { + "file": "packages/storybook/tsconfig.json", + "hash": "3498435803851457058" + } + ], + "@fluentui/react-bindings": [ + { + "file": "packages/fluentui/react-bindings/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-bindings/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-bindings/README.md", + "hash": "5554826359153268764" + }, + { + "file": "packages/fluentui/react-bindings/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-bindings/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-bindings/jest.config.js", + "hash": "13482069522961692092" + }, + { + "file": "packages/fluentui/react-bindings/package.json", + "hash": "14346723190653309755", + "deps": [ + "npm:@babel/runtime", + "@fluentui/accessibility", + "@fluentui/dom-utilities", + "@fluentui/react-component-event-listener", + "@fluentui/react-component-ref", + "@fluentui/react-northstar-fela-renderer", + "@fluentui/react-northstar-styles-renderer", + "@fluentui/state", + "@fluentui/styles", + "npm:classnames", + "npm:lodash", + "npm:prop-types", + "npm:react-is", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:@types/classnames", + "npm:lerna-alias", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/fluentui/react-bindings/project.json", + "hash": "3098724062779490806" + }, + { + "file": "packages/fluentui/react-bindings/src/FocusZone/AutoFocusZone.tsx", + "hash": "4199334887796948956" + }, + { + "file": "packages/fluentui/react-bindings/src/FocusZone/AutoFocusZone.types.tsx", + "hash": "16937245917268822243" + }, + { + "file": "packages/fluentui/react-bindings/src/FocusZone/CHANGELOG.md", + "hash": "5737717684221164128" + }, + { + "file": "packages/fluentui/react-bindings/src/FocusZone/FocusTrapZone.tsx", + "hash": "9271770944176692894" + }, + { + "file": "packages/fluentui/react-bindings/src/FocusZone/FocusTrapZone.types.tsx", + "hash": "6721933620429714223" + }, + { + "file": "packages/fluentui/react-bindings/src/FocusZone/FocusZone.tsx", + "hash": "14087648694060844766" + }, + { + "file": "packages/fluentui/react-bindings/src/FocusZone/FocusZone.types.ts", + "hash": "6484887556753817232" + }, + { + "file": "packages/fluentui/react-bindings/src/FocusZone/focusUtilities.ts", + "hash": "2134347144387795778" + }, + { + "file": "packages/fluentui/react-bindings/src/accessibility/getAccessibility.ts", + "hash": "9905959387087432414" + }, + { + "file": "packages/fluentui/react-bindings/src/accessibility/getKeyDownHandlers.ts", + "hash": "6508602261516528592" + }, + { + "file": "packages/fluentui/react-bindings/src/accessibility/shouldHandleOnKeys.ts", + "hash": "12329884440950941235" + }, + { + "file": "packages/fluentui/react-bindings/src/accessibility/types.ts", + "hash": "8507962475349685827" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/compose.ts", + "hash": "16921634422497416980" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/computeDisplayNames.ts", + "hash": "704472153739541249" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/consts.ts", + "hash": "18337356828678773963" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/index.ts", + "hash": "7773316450141562148" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/mergeComposeOptions.ts", + "hash": "17185748125330766477" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/mergeProps.ts", + "hash": "15881221697179785074" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/mergeSlotProp.ts", + "hash": "18383256050663696082" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/resolveSlotProps.ts", + "hash": "8030070576146247010" + }, + { + "file": "packages/fluentui/react-bindings/src/compose/wasComposedPreviously.ts", + "hash": "1226672711091759257" + }, + { + "file": "packages/fluentui/react-bindings/src/context-selector/createContext.ts", + "hash": "6163243789877254688" + }, + { + "file": "packages/fluentui/react-bindings/src/context-selector/types.ts", + "hash": "3161780195518143211" + }, + { + "file": "packages/fluentui/react-bindings/src/context-selector/useContextSelector.ts", + "hash": "3491395144900557629" + }, + { + "file": "packages/fluentui/react-bindings/src/context-selector/useContextSelectors.ts", + "hash": "1342159682866982236" + }, + { + "file": "packages/fluentui/react-bindings/src/context-selector/utils.ts", + "hash": "17756608188575203033" + }, + { + "file": "packages/fluentui/react-bindings/src/context.ts", + "hash": "2504617840057081701" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useAccessibility.ts", + "hash": "3730530656873314231" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useAutoControlled.ts", + "hash": "12020210326362175081" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useCallbackRef.ts", + "hash": "15260364968763194765" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useDeepMemo.ts", + "hash": "17664904316742192049" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useDispatchEffect.ts", + "hash": "523797428438187487" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useEventCallback.ts", + "hash": "11138167901000764022" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useFirstMount.ts", + "hash": "5753842204700810434" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useIFrameFocusDispatch.ts", + "hash": "13901258080296261682" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useIFrameListener.ts", + "hash": "4676672547320515687" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useIsomorphicLayoutEffect.ts", + "hash": "16377582332034814703" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useMergedRefs.ts", + "hash": "15582394188849760782" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useOnIFrameFocus.ts", + "hash": "56459656605781305" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/usePrevious.ts", + "hash": "5452705422744365770" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useStateManager.ts", + "hash": "8134058115156793670" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useStyles.ts", + "hash": "11209977391116869457" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useTriggerElement.tsx", + "hash": "9730828956065644548" + }, + { + "file": "packages/fluentui/react-bindings/src/hooks/useUnhandledProps.ts", + "hash": "4316059602380733165" + }, + { + "file": "packages/fluentui/react-bindings/src/index.ts", + "hash": "13182088506342331974" + }, + { + "file": "packages/fluentui/react-bindings/src/renderer/RendererContext.ts", + "hash": "4606835393501439883" + }, + { + "file": "packages/fluentui/react-bindings/src/styles/calculateAnimationTimeout.ts", + "hash": "3577142684966313424" + }, + { + "file": "packages/fluentui/react-bindings/src/styles/convertCssTimeToNumber.ts", + "hash": "3428534051178975951" + }, + { + "file": "packages/fluentui/react-bindings/src/styles/createAnimationStyles.tsx", + "hash": "14985851399239248408" + }, + { + "file": "packages/fluentui/react-bindings/src/styles/getStyles.ts", + "hash": "7851722266115206239" + }, + { + "file": "packages/fluentui/react-bindings/src/styles/resolveStyles.ts", + "hash": "7494741231570264675" + }, + { + "file": "packages/fluentui/react-bindings/src/styles/resolveVariables.ts", + "hash": "3897312963989673948" + }, + { + "file": "packages/fluentui/react-bindings/src/styles/types.ts", + "hash": "2676463631309134474" + }, + { + "file": "packages/fluentui/react-bindings/src/telemetry/types.ts", + "hash": "3385728758588133783" + }, + { + "file": "packages/fluentui/react-bindings/src/telemetry/useTelemetry.ts", + "hash": "14279666623156289577" + }, + { + "file": "packages/fluentui/react-bindings/src/utils/childrenExist.ts", + "hash": "3619272524856284343" + }, + { + "file": "packages/fluentui/react-bindings/src/utils/findScrollableParent.ts", + "hash": "8216732174798600668" + }, + { + "file": "packages/fluentui/react-bindings/src/utils/getDocument.ts", + "hash": "397452915165775464" + }, + { + "file": "packages/fluentui/react-bindings/src/utils/getElementType.ts", + "hash": "14632862614401893634" + }, + { + "file": "packages/fluentui/react-bindings/src/utils/getUnhandledProps.ts", + "hash": "14871327633567128163" + }, + { + "file": "packages/fluentui/react-bindings/src/utils/getWindow.ts", + "hash": "7683375961842184637" + }, + { + "file": "packages/fluentui/react-bindings/src/utils/mergeVariablesOverrides.ts", + "hash": "14811737278601338124" + }, + { + "file": "packages/fluentui/react-bindings/src/utils/shouldWrapFocus.ts", + "hash": "8136869381532219162" + }, + { + "file": "packages/fluentui/react-bindings/test/FocusZone/AutoFocusZone-test.tsx", + "hash": "432487377960798699" + }, + { + "file": "packages/fluentui/react-bindings/test/FocusZone/FocusTrapZone-test.tsx", + "hash": "14127515033989798787" + }, + { + "file": "packages/fluentui/react-bindings/test/FocusZone/FocusZone-EventHandler-test.tsx", + "hash": "5758157999812473111" + }, + { + "file": "packages/fluentui/react-bindings/test/FocusZone/FocusZone-test.tsx", + "hash": "11460017440070152700" + }, + { + "file": "packages/fluentui/react-bindings/test/FocusZone/test-utils.ts", + "hash": "16799898351626858078" + }, + { + "file": "packages/fluentui/react-bindings/test/accesibility/getKeyDownHandlers-test.ts", + "hash": "1314342481233369549" + }, + { + "file": "packages/fluentui/react-bindings/test/accesibility/shouldHandleOnKeys-test.ts", + "hash": "13917629719032260976" + }, + { + "file": "packages/fluentui/react-bindings/test/compose/compose-test.tsx", + "hash": "3618138711751616693" + }, + { + "file": "packages/fluentui/react-bindings/test/compose/mergeProps-test.ts", + "hash": "1891371554949461375" + }, + { + "file": "packages/fluentui/react-bindings/test/compose/resolveSlotProps-test.tsx", + "hash": "2129678302506557664" + }, + { + "file": "packages/fluentui/react-bindings/test/compose/useCompose-test.tsx", + "hash": "14515254382037114858" + }, + { + "file": "packages/fluentui/react-bindings/test/consoleUtil.ts", + "hash": "11997294564447184338" + }, + { + "file": "packages/fluentui/react-bindings/test/context-selector/createContext-test.tsx", + "hash": "15993208680747699154" + }, + { + "file": "packages/fluentui/react-bindings/test/context-selector/useContextSelector-test.tsx", + "hash": "6822936490356771304" + }, + { + "file": "packages/fluentui/react-bindings/test/context-selector/useContextSelectors-test.tsx", + "hash": "3338357613132226466" + }, + { + "file": "packages/fluentui/react-bindings/test/hooks/useAccessibility-test.tsx", + "hash": "5452579922559097617" + }, + { + "file": "packages/fluentui/react-bindings/test/hooks/useAutoControlled-test.tsx", + "hash": "14614999468088827773" + }, + { + "file": "packages/fluentui/react-bindings/test/hooks/useDispatchEffect-test.tsx", + "hash": "6496925804728216557" + }, + { + "file": "packages/fluentui/react-bindings/test/hooks/usePrevious-test.tsx", + "hash": "13651472287362297844" + }, + { + "file": "packages/fluentui/react-bindings/test/hooks/useStateManager-test.tsx", + "hash": "11737377582758503546" + }, + { + "file": "packages/fluentui/react-bindings/test/hooks/useStyles-test.tsx", + "hash": "2925905690540636262" + }, + { + "file": "packages/fluentui/react-bindings/test/hooks/useTriggerElement-test.tsx", + "hash": "18153385961075510546" + }, + { + "file": "packages/fluentui/react-bindings/test/styles/convertCssTimeToNumber-test.ts", + "hash": "5642114857287271136" + }, + { + "file": "packages/fluentui/react-bindings/test/styles/createAnimationStyles-test.ts", + "hash": "15257190023862954681" + }, + { + "file": "packages/fluentui/react-bindings/test/styles/resolveStyles-test.ts", + "hash": "8240816706156827159" + }, + { + "file": "packages/fluentui/react-bindings/test/styles/resolveVariables-test.ts", + "hash": "10826720913442109057" + }, + { + "file": "packages/fluentui/react-bindings/test/utils/childrenExist-test.tsx", + "hash": "13994241964374512709" + }, + { + "file": "packages/fluentui/react-bindings/test/utils/getElementType-test.ts", + "hash": "13908434027580439892" + }, + { + "file": "packages/fluentui/react-bindings/test/utils/getUnhandledProps-test.ts", + "hash": "1460976605323951307" + }, + { + "file": "packages/fluentui/react-bindings/tsconfig.json", + "hash": "1277968607411436930" + } + ], + "@fluentui/state": [ + { + "file": "packages/fluentui/state/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/state/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/state/README.md", + "hash": "8309543667100109097" + }, + { + "file": "packages/fluentui/state/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/state/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/state/package.json", + "hash": "5978700995662223330", + "deps": [ + "npm:@babel/runtime", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "npm:lerna-alias" + ] + }, + { + "file": "packages/fluentui/state/project.json", + "hash": "13103481987735488037" + }, + { + "file": "packages/fluentui/state/src/createManager.ts", + "hash": "7270086196410713232" + }, + { + "file": "packages/fluentui/state/src/index.ts", + "hash": "1091673469609146900" + }, + { + "file": "packages/fluentui/state/src/managers/carouselManager.ts", + "hash": "16464933274868458393" + }, + { + "file": "packages/fluentui/state/src/managers/checkboxManager.ts", + "hash": "4406845810056310598" + }, + { + "file": "packages/fluentui/state/src/managers/dialogManager.ts", + "hash": "3282345229108806027" + }, + { + "file": "packages/fluentui/state/src/managers/sliderManager.ts", + "hash": "8249114539083994643" + }, + { + "file": "packages/fluentui/state/src/types.ts", + "hash": "15073017630940548162" + }, + { + "file": "packages/fluentui/state/tsconfig.json", + "hash": "12214264623402812273" + } + ], + "@fluentui/public-docsite": [ + { + "file": "apps/public-docsite/.eslintrc.json", + "hash": "337673835369909864" + }, + { + "file": "apps/public-docsite/.markdownlint.json", + "hash": "3193456444247028636" + }, + { + "file": "apps/public-docsite/.npmignore", + "hash": "2926714820578262549" + }, + { + "file": "apps/public-docsite/.vscode/settings.json", + "hash": "18069303981834661546" + }, + { + "file": "apps/public-docsite/CHANGELOG.json", + "hash": "5555074616181483386" + }, + { + "file": "apps/public-docsite/CHANGELOG.md", + "hash": "14192424771490611728" + }, + { + "file": "apps/public-docsite/LICENSE", + "hash": "16915259497383323988" + }, + { + "file": "apps/public-docsite/README.md", + "hash": "3559688253950229776" + }, + { + "file": "apps/public-docsite/Third Party Notices.txt", + "hash": "14646301618710015874" + }, + { + "file": "apps/public-docsite/config/pre-copy.json", + "hash": "7054591292658078092" + }, + { + "file": "apps/public-docsite/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "apps/public-docsite/package.json", + "hash": "9136041470273463055", + "deps": [ + "@fluentui/font-icons-mdl2", + "@fluentui/public-docsite-resources", + "@fluentui/public-docsite-setup", + "@fluentui/react", + "@fluentui/react-docsite-components", + "@fluentui/react-examples", + "@fluentui/react-experiments", + "@fluentui/fluent2-theme", + "@fluentui/react-file-type-icons", + "@fluentui/react-icons-mdl2", + "@fluentui/react-icons-mdl2-branded", + "@fluentui/set-version", + "@fluentui/theme", + "@fluentui/theme-samples", + "@fluentui/utilities", + "npm:@microsoft/load-themed-styles", + "npm:office-ui-fabric-core", + "npm:react", + "npm:react-dom", + "npm:tslib", + "npm:whatwg-fetch", + "@fluentui/common-styles", + "@fluentui/eslint-plugin", + "@fluentui/react-monaco-editor", + "npm:write-file-webpack-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "apps/public-docsite/project.json", + "hash": "7196581607791710012" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/Controls.pages.tsx", + "hash": "10145604053049751028" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/android.tsx", + "hash": "17738143955260006201" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/cross.tsx", + "hash": "1058502723279157309" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/index.ts", + "hash": "6413192895410987168" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/ios.tsx", + "hash": "7399549156069476958" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/mac.tsx", + "hash": "16436402022180708284" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/web.tsx", + "hash": "408483203285204310" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/webcomponents.tsx", + "hash": "6792765439676230780" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/windows.tsx", + "hash": "12124107861870090256" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/GetStarted/GetStarted.pages.tsx", + "hash": "13847506009956934136" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/GetStarted/index.ts", + "hash": "7608958459492300262" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Resources/Resources.pages.tsx", + "hash": "7467311968307614147" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Resources/index.ts", + "hash": "11141788384203020155" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/Styles.pages.tsx", + "hash": "3354179824228056507" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/index.ts", + "hash": "9885949247618547411" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/web.tsx", + "hash": "13036525375730422403" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/index.ts", + "hash": "15668129546048702595" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.platforms.ts", + "hash": "4374814516883291103" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.tsx", + "hash": "7416597600515030422" + }, + { + "file": "apps/public-docsite/src/SiteDefinition/index.ts", + "hash": "16170069659361476539" + }, + { + "file": "apps/public-docsite/src/components/IconGrid/IconGrid.module.scss", + "hash": "10088935074752784208" + }, + { + "file": "apps/public-docsite/src/components/IconGrid/IconGrid.tsx", + "hash": "3126832381939275604" + }, + { + "file": "apps/public-docsite/src/components/Nav/Nav.module.scss", + "hash": "17010202827328751810" + }, + { + "file": "apps/public-docsite/src/components/Nav/Nav.tsx", + "hash": "5895207924940259300" + }, + { + "file": "apps/public-docsite/src/components/Nav/index.ts", + "hash": "8845112648504599256" + }, + { + "file": "apps/public-docsite/src/components/PageHeader/PageHeader.ts", + "hash": "2023580731281621870" + }, + { + "file": "apps/public-docsite/src/components/Site/AppThemes.ts", + "hash": "8449132186114492836" + }, + { + "file": "apps/public-docsite/src/components/Site/Site.module.scss", + "hash": "1167611558215402625" + }, + { + "file": "apps/public-docsite/src/components/Site/Site.tsx", + "hash": "11712024304722443777" + }, + { + "file": "apps/public-docsite/src/components/Site/index.ts", + "hash": "4416097142125773802" + }, + { + "file": "apps/public-docsite/src/components/Table/Table.module.scss", + "hash": "2351390884860253930" + }, + { + "file": "apps/public-docsite/src/components/Table/Table.tsx", + "hash": "10981690018718548291" + }, + { + "file": "apps/public-docsite/src/data/colors-neutral.json", + "hash": "16653124453141777542" + }, + { + "file": "apps/public-docsite/src/data/colors-persona-groups.json", + "hash": "3616184185780250103" + }, + { + "file": "apps/public-docsite/src/data/colors-personas.json", + "hash": "2075722162646162911" + }, + { + "file": "apps/public-docsite/src/data/colors-shared.json", + "hash": "5294560336154413274" + }, + { + "file": "apps/public-docsite/src/data/colors-theme-accents.json", + "hash": "13906940430607557455" + }, + { + "file": "apps/public-docsite/src/data/colors-theme-neutrals.json", + "hash": "181167838507207900" + }, + { + "file": "apps/public-docsite/src/data/colors-theme-slots.json", + "hash": "17490638679045466346" + }, + { + "file": "apps/public-docsite/src/data/directional-icons.json", + "hash": "14304305003999879088" + }, + { + "file": "apps/public-docsite/src/data/layout-visibility.json", + "hash": "8022012966563745167" + }, + { + "file": "apps/public-docsite/src/data/localized-fonts.json", + "hash": "4593860147000401033" + }, + { + "file": "apps/public-docsite/src/data/product-icons-documents.json", + "hash": "17196664511062641524" + }, + { + "file": "apps/public-docsite/src/data/product-icons.json", + "hash": "14205424375330295192" + }, + { + "file": "apps/public-docsite/src/data/responsive-breakpoints.json", + "hash": "12157493310076411491" + }, + { + "file": "apps/public-docsite/src/interfaces/Platforms.ts", + "hash": "7456260135347758029" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ActivityItemPage/ActivityItemPage.doc.ts", + "hash": "12084996801726727128" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ActivityItemPage/ActivityItemPage.tsx", + "hash": "10525847806067360709" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedBulkOperationsPage.doc.ts", + "hash": "765722563957421787" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedBulkOperationsPage.tsx", + "hash": "193322179625131144" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedLazyLoadingPage.doc.ts", + "hash": "15566486176498941210" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedLazyLoadingPage.tsx", + "hash": "17777911651455362870" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedPage.doc.ts", + "hash": "15674441994070588327" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedPage.tsx", + "hash": "8232552932583924532" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedQuickActionsPage.doc.ts", + "hash": "15362780660373157918" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedQuickActionsPage.tsx", + "hash": "12352004516650637228" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedSearchResultsPage.doc.ts", + "hash": "16198598794387830431" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedSearchResultsPage.tsx", + "hash": "5328511635142039063" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AreaChartPage/AreaChartPage.doc.ts", + "hash": "6722728441282287493" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AreaChartPage/AreaChartPage.tsx", + "hash": "8859288386603113959" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/AvatarPage.doc.ts", + "hash": "12515277458764441324" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/AvatarPage.tsx", + "hash": "9083556730732774728" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/android/AvatarImplementation.md", + "hash": "16726958883259254492" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/android/AvatarOverview.md", + "hash": "2647093289656117320" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/ios/AvatarImplementation.md", + "hash": "17606495654142164819" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/ios/AvatarOverview.md", + "hash": "18186034623443237973" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarImplementation.md", + "hash": "5199120976977691610" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarOverview.md", + "hash": "6959005975866544522" + }, + { + "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarUsage.md", + "hash": "11821820304812674613" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/BottomNavigationPage.doc.ts", + "hash": "15569579807820313583" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/BottomNavigationPage.tsx", + "hash": "8488861682256094075" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/android/BottomNavigationImplementation.md", + "hash": "1435366324864337035" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/android/BottomNavigationOverview.md", + "hash": "10514823264895514315" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/ios/BottomNavigationImplementation.md", + "hash": "18025927293153857052" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/ios/BottomNavigationOverview.md", + "hash": "2617859208595378528" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomSheetPage/BottomSheetPage.doc.ts", + "hash": "9673062355771995912" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomSheetPage/BottomSheetPage.tsx", + "hash": "2031437537765094207" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomSheetPage/docs/android/BottomSheetImplementation.md", + "hash": "1327623026650085087" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BottomSheetPage/docs/android/BottomSheetOverview.md", + "hash": "13377435451580553570" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BreadcrumbPage/BreadcrumbPage.doc.ts", + "hash": "1160032916934762643" + }, + { + "file": "apps/public-docsite/src/pages/Controls/BreadcrumbPage/BreadcrumbPage.tsx", + "hash": "12715444766885574444" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/ButtonPage.doc.ts", + "hash": "5592476238467391864" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/ButtonPage.tsx", + "hash": "11913245284362943875" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/android/ButtonImplementation.md", + "hash": "1658627094040539265" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/android/ButtonOverview.md", + "hash": "4417937612509791357" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonImplementation.md", + "hash": "14266053475926286467" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonOverview.md", + "hash": "6639038237332629321" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonUsage.md", + "hash": "8882723746766233591" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/ios/ButtonImplementation.md", + "hash": "9913277924895889569" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/ios/ButtonOverview.md", + "hash": "14531658870536079463" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonImplementation.md", + "hash": "17284353348286665677" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonOverview.md", + "hash": "13523925454607623553" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonUsage.md", + "hash": "13729646828336872891" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonImplementation.md", + "hash": "10916114615457699893" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonOverview.md", + "hash": "6639038237332629321" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonUsage.md", + "hash": "1439538779926957798" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CalendarPage/CalendarPage.doc.ts", + "hash": "15404698135211720064" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CalendarPage/CalendarPage.tsx", + "hash": "733924089141682023" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CalendarPage/docs/android/CalendarImplementation.md", + "hash": "4860285518777187466" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CalendarPage/docs/android/CalendarOverview.md", + "hash": "5705143573515914746" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CalloutPage/CalloutPage.doc.ts", + "hash": "17209687824658981404" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CalloutPage/CalloutPage.tsx", + "hash": "4954896427572159163" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CheckboxPage/CheckboxPage.doc.ts", + "hash": "17682692614187019453" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CheckboxPage/CheckboxPage.tsx", + "hash": "15199835598879362142" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ChipPage/ChipPage.doc.ts", + "hash": "9154869513355420399" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ChipPage/ChipPage.tsx", + "hash": "981184700842655718" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ChipPage/docs/android/ChipImplementation.md", + "hash": "14417461789034157394" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ChipPage/docs/android/ChipOverview.md", + "hash": "1523854707197205553" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ChipPage/docs/ios/ChipImplementation.md", + "hash": "11470797543630326488" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ChipPage/docs/ios/ChipOverview.md", + "hash": "11319279887742645925" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ChoiceGroupPage/ChoiceGroupPage.doc.ts", + "hash": "7647967381634329619" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ChoiceGroupPage/ChoiceGroupPage.tsx", + "hash": "16877181384541805954" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CoachmarkPage/CoachmarkPage.doc.ts", + "hash": "14163935830576365816" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CoachmarkPage/CoachmarkPage.tsx", + "hash": "8670254362732558332" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ColorPickerPage/ColorPickerPage.doc.ts", + "hash": "9648425641137727669" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ColorPickerPage/ColorPickerPage.tsx", + "hash": "1953534517712852428" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ComboBoxPage/ComboBoxPage.doc.ts", + "hash": "17894563094905674110" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ComboBoxPage/ComboBoxPage.tsx", + "hash": "15755905243024863031" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CommandBarPage/CommandBarPage.doc.ts", + "hash": "10705841520651205980" + }, + { + "file": "apps/public-docsite/src/pages/Controls/CommandBarPage/CommandBarPage.tsx", + "hash": "16602894129752653191" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ContextualMenuPage/ContextualMenuPage.doc.ts", + "hash": "17593522149548888502" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ContextualMenuPage/ContextualMenuPage.tsx", + "hash": "13424275747858799542" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ControlsAreaPage.tsx", + "hash": "9958449542131719090" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/DatePickerPage.doc.ts", + "hash": "3993601356330496007" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/DatePickerPage.tsx", + "hash": "1723921104985000544" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/android/DateTimePickerImplementation.md", + "hash": "4345043770986870496" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/android/DateTimePickerOverview.md", + "hash": "11120022423482682019" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/ios/DateTimePickerImplementation.md", + "hash": "14053008236220258161" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/ios/DateTimePickerOverview.md", + "hash": "4486063773040028910" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerImplementation.md", + "hash": "4082356119249858996" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerOverview.md", + "hash": "15042893916627662031" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerUsage.md", + "hash": "17536202668797782112" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAdvancedPage.doc.ts", + "hash": "13724797365802926226" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAdvancedPage.tsx", + "hash": "8378129203862067121" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAnimationPage.doc.ts", + "hash": "273818136230702976" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAnimationPage.tsx", + "hash": "6670837662453517114" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListBasicPage.doc.ts", + "hash": "1442216069029798172" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListBasicPage.tsx", + "hash": "4221366272271259902" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCompactPage.doc.ts", + "hash": "6232054459873438925" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCompactPage.tsx", + "hash": "18182423396708136557" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomColumnsPage.doc.ts", + "hash": "15223218059571854467" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomColumnsPage.tsx", + "hash": "12996021462166043167" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomFooterPage.doc.ts", + "hash": "10919167593613811146" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomFooterPage.tsx", + "hash": "7518356388618202761" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomGroupHeadersPage.doc.ts", + "hash": "17610097000352036009" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomGroupHeadersPage.tsx", + "hash": "15389447506854098798" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomRowsPage.doc.ts", + "hash": "11557821808808553995" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomRowsPage.tsx", + "hash": "17778521908305216176" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListDragDropPage.doc.ts", + "hash": "15376862959987969006" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListDragDropPage.tsx", + "hash": "13925969251211828899" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedPage.doc.ts", + "hash": "5039276744638943818" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedPage.tsx", + "hash": "13234611186431244970" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedV2Page.doc.ts", + "hash": "14584174087660249527" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedV2Page.tsx", + "hash": "7869708837554642335" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardDragDropPage.doc.ts", + "hash": "10248465266551079389" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardDragDropPage.tsx", + "hash": "7771372193160661271" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardOverrides.doc.ts", + "hash": "13903439600356956947" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardOverridesPage.tsx", + "hash": "13769261388459893054" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedPage.doc.ts", + "hash": "7589110390501473746" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedPage.tsx", + "hash": "16649160011157063345" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedV2Page.doc.ts", + "hash": "15039681966980186456" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedV2Page.tsx", + "hash": "5613915619387420589" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListNavigatingFocusPage.doc.ts", + "hash": "10978504225563324314" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListNavigatingFocusPage.tsx", + "hash": "18444419229465588680" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListPage.doc.ts", + "hash": "13633038424697591891" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListPage.tsx", + "hash": "5795984366319231084" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListProportionalColumnsPage.doc.ts", + "hash": "13880518862320453327" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListProportionalColumnsPage.tsx", + "hash": "5728239731010542367" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListScrollToIndexGroupedV2Page.doc.ts", + "hash": "13772461902671039983" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListScrollToIndexGroupedV2Page.tsx", + "hash": "751985772745896294" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListShimmerPage.doc.ts", + "hash": "16886325733296036163" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListShimmerPage.tsx", + "hash": "17986580787370038200" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DialogPage/DialogPage.doc.ts", + "hash": "8114424727878114054" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DialogPage/DialogPage.tsx", + "hash": "16571889001557518810" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DocumentCardPage/DocumentCardPage.doc.ts", + "hash": "5798884632274572457" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DocumentCardPage/DocumentCardPage.tsx", + "hash": "14114745195456671394" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DonutChartPage/DonutChartPage.doc.ts", + "hash": "9925495805804097607" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DonutChartPage/DonutChartPage.tsx", + "hash": "13140207290823243844" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DrawerPage/DrawerPage.doc.ts", + "hash": "8809379390024773173" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DrawerPage/DrawerPage.tsx", + "hash": "7007852614279864723" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DrawerPage/docs/android/DrawerImplementation.md", + "hash": "17858680396931236249" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DrawerPage/docs/android/DrawerOverview.md", + "hash": "11716337942532244924" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DrawerPage/docs/ios/DrawerImplementation.md", + "hash": "11983059621422817768" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DrawerPage/docs/ios/DrawerOverview.md", + "hash": "5111313044522355867" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DropdownPage/DropdownPage.doc.ts", + "hash": "9046898387726582968" + }, + { + "file": "apps/public-docsite/src/pages/Controls/DropdownPage/DropdownPage.tsx", + "hash": "4993205477226125515" + }, + { + "file": "apps/public-docsite/src/pages/Controls/FacepilePage/FacepilePage.doc.ts", + "hash": "11140776998441194718" + }, + { + "file": "apps/public-docsite/src/pages/Controls/FacepilePage/FacepilePage.tsx", + "hash": "14403058980587352582" + }, + { + "file": "apps/public-docsite/src/pages/Controls/FocusTrapZonePage/FocusTrapZonePage.doc.ts", + "hash": "17285560986103134198" + }, + { + "file": "apps/public-docsite/src/pages/Controls/FocusTrapZonePage/FocusTrapZonePage.tsx", + "hash": "8686318644067342747" + }, + { + "file": "apps/public-docsite/src/pages/Controls/FocusZonePage/FocusZonePage.doc.ts", + "hash": "11651121915621513982" + }, + { + "file": "apps/public-docsite/src/pages/Controls/FocusZonePage/FocusZonePage.tsx", + "hash": "5773578364287739971" + }, + { + "file": "apps/public-docsite/src/pages/Controls/GaugeChartPage/GaugeChartPage.doc.ts", + "hash": "6968035975342074349" + }, + { + "file": "apps/public-docsite/src/pages/Controls/GaugeChartPage/GaugeChartPage.tsx", + "hash": "15615937935738864018" + }, + { + "file": "apps/public-docsite/src/pages/Controls/GroupedListPage/GroupedListPage.doc.ts", + "hash": "7967128270511032399" + }, + { + "file": "apps/public-docsite/src/pages/Controls/GroupedListPage/GroupedListPage.tsx", + "hash": "703544659258297209" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HeatMapChartPage/HeatMapChartPage.doc.ts", + "hash": "18432271012134230268" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HeatMapChartPage/HeatMapChartPage.tsx", + "hash": "1325089474077311913" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartPage.doc.ts", + "hash": "12161394458131890595" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartPage.tsx", + "hash": "12506076174393262754" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartWithAxisPage.doc.ts", + "hash": "10690241468891464352" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartWithAxisPage.tsx", + "hash": "2086325801396426601" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/MultiStackedBarChartPage.doc.ts", + "hash": "18349688674284806158" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/MultiStackedBarChartPage.tsx", + "hash": "4440166238265478633" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/StackedBarChartPage.doc.ts", + "hash": "2223329163564677843" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/StackedBarChartPage.tsx", + "hash": "14809007092545647863" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HoverCardPage/HoverCardPage.doc.ts", + "hash": "2636562850252085917" + }, + { + "file": "apps/public-docsite/src/pages/Controls/HoverCardPage/HoverCardPage.tsx", + "hash": "13868840759782232781" + }, + { + "file": "apps/public-docsite/src/pages/Controls/IconPage/IconPage.doc.ts", + "hash": "14320589840826195768" + }, + { + "file": "apps/public-docsite/src/pages/Controls/IconPage/IconPage.tsx", + "hash": "64311493418413559" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ImagePage/ImagePage.doc.ts", + "hash": "7988651808500005441" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ImagePage/ImagePage.tsx", + "hash": "11931915285603305728" + }, + { + "file": "apps/public-docsite/src/pages/Controls/KeytipsPage/KeytipsPage.doc.ts", + "hash": "18207607363175849480" + }, + { + "file": "apps/public-docsite/src/pages/Controls/KeytipsPage/KeytipsPage.tsx", + "hash": "6670239696591483784" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LabelPage/LabelPage.doc.ts", + "hash": "12862325935849575873" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LabelPage/LabelPage.tsx", + "hash": "1362646498263943376" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LayerPage/LayerPage.doc.ts", + "hash": "13150585050034998454" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LayerPage/LayerPage.tsx", + "hash": "15712879744679708674" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LegendsPage/LegendsPage.doc.ts", + "hash": "13025909135398732412" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LegendsPage/LegendsPage.tsx", + "hash": "3594589130378637610" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LineChartPage/LineChartPage.doc.ts", + "hash": "8123770768122993985" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LineChartPage/LineChartPage.tsx", + "hash": "9907654634238606126" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/LinkPage.doc.ts", + "hash": "13092967827659090455" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/LinkPage.tsx", + "hash": "17634813694797845520" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkImplementation.md", + "hash": "17106399576572784288" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkOverview.md", + "hash": "14935792960205653974" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkUsage.md", + "hash": "574308995351374939" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkImplementation.md", + "hash": "9700325112175340981" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkOverview.md", + "hash": "14051902312080603746" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkUsage.md", + "hash": "2205135936392778140" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkImplementation.md", + "hash": "11016907395505236155" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkOverview.md", + "hash": "14935792960205653974" + }, + { + "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkUsage.md", + "hash": "12676870463584061993" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/ListCellsPage.doc.ts", + "hash": "11180251346063450202" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/ListCellsPage.tsx", + "hash": "2988382794666245470" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/docs/android/ListCellsImplementation.md", + "hash": "17993162330760725826" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/docs/android/ListCellsOverview.md", + "hash": "179484507631924202" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/docs/ios/ListCellsImplementation.md", + "hash": "17351970042206748282" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/docs/ios/ListCellsOverview.md", + "hash": "3442453361108839689" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ListPage/ListPage.doc.ts", + "hash": "2301015653585082199" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ListPage/ListPage.tsx", + "hash": "5736725840541138556" + }, + { + "file": "apps/public-docsite/src/pages/Controls/MarqueeSelectionPage/MarqueeSelectionPage.doc.ts", + "hash": "16568125096922152773" + }, + { + "file": "apps/public-docsite/src/pages/Controls/MarqueeSelectionPage/MarqueeSelectionPage.tsx", + "hash": "9351457843573166754" + }, + { + "file": "apps/public-docsite/src/pages/Controls/MessageBarPage/MessageBarPage.doc.ts", + "hash": "10642099967354842490" + }, + { + "file": "apps/public-docsite/src/pages/Controls/MessageBarPage/MessageBarPage.tsx", + "hash": "7371696166946877741" + }, + { + "file": "apps/public-docsite/src/pages/Controls/MessageBarPage/docs/ios/MessageBarImplementation.md", + "hash": "9135534442852614741" + }, + { + "file": "apps/public-docsite/src/pages/Controls/MessageBarPage/docs/ios/MessageBarOverview.md", + "hash": "16816993281554800685" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ModalPage/ModalPage.doc.ts", + "hash": "14953419698933388913" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ModalPage/ModalPage.tsx", + "hash": "9565379238246035586" + }, + { + "file": "apps/public-docsite/src/pages/Controls/NavBarPage/NavBarPage.doc.ts", + "hash": "10719528931963184631" + }, + { + "file": "apps/public-docsite/src/pages/Controls/NavBarPage/NavBarPage.tsx", + "hash": "10936268848263953483" + }, + { + "file": "apps/public-docsite/src/pages/Controls/NavBarPage/docs/android/NavBarImplementation.md", + "hash": "1783050725314136794" + }, + { + "file": "apps/public-docsite/src/pages/Controls/NavBarPage/docs/android/NavBarOverview.md", + "hash": "7625782876387635132" + }, + { + "file": "apps/public-docsite/src/pages/Controls/NavBarPage/docs/ios/NavBarImplementation.md", + "hash": "982664057702071391" + }, + { + "file": "apps/public-docsite/src/pages/Controls/NavBarPage/docs/ios/NavBarOverview.md", + "hash": "4333661315575739487" + }, + { + "file": "apps/public-docsite/src/pages/Controls/NavPage/NavPage.doc.ts", + "hash": "16485914742907636236" + }, + { + "file": "apps/public-docsite/src/pages/Controls/NavPage/NavPage.tsx", + "hash": "10147833889521608864" + }, + { + "file": "apps/public-docsite/src/pages/Controls/OverflowSetPage/OverflowSetPage.doc.ts", + "hash": "430419847824661530" + }, + { + "file": "apps/public-docsite/src/pages/Controls/OverflowSetPage/OverflowSetPage.tsx", + "hash": "8723062280124814020" + }, + { + "file": "apps/public-docsite/src/pages/Controls/OverlayPage/OverlayPage.doc.ts", + "hash": "7152352627564917321" + }, + { + "file": "apps/public-docsite/src/pages/Controls/OverlayPage/OverlayPage.tsx", + "hash": "8099233458936522353" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PanelPage/PanelPage.doc.ts", + "hash": "12944203394740296953" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PanelPage/PanelPage.tsx", + "hash": "15825828482154862989" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PeoplePickerPage/PeoplePickerPage.doc.ts", + "hash": "2300266927767413033" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PeoplePickerPage/PeoplePickerPage.tsx", + "hash": "16377269163422996503" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PeoplePickerPage/docs/android/PeoplePickerImplementation.md", + "hash": "17195704506742427669" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PeoplePickerPage/docs/android/PeoplePickerOverview.md", + "hash": "11396020997468636727" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/PersonaPage.doc.ts", + "hash": "16810002338180568264" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/PersonaPage.tsx", + "hash": "3845501556021269696" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/android/PersonaImplementation.md", + "hash": "9137167883852598922" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/android/PersonaOverview.md", + "hash": "9940780276971069007" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaImplementation.md", + "hash": "4174781638758350021" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaOverview.md", + "hash": "13949429323385095957" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaUsage.md", + "hash": "11952547679957023592" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaDonts.md", + "hash": "13591587715632279480" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaDos.md", + "hash": "7471256642317270680" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaImplementation.md", + "hash": "7814508756737995088" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaOverview.md", + "hash": "17809409197730676625" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PickersPage/PickersPage.doc.ts", + "hash": "3574709739493425796" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PickersPage/PickersPage.tsx", + "hash": "1072062355713612559" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PieChartPage/PieChartPage.doc.ts", + "hash": "8610861634097736947" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PieChartPage/PieChartPage.tsx", + "hash": "17628955712828535439" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PillButtonBarPage/PillButtonBarPage.doc.ts", + "hash": "9959120100527712235" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PillButtonBarPage/PillButtonBarPage.tsx", + "hash": "3511437485944024034" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PillButtonBarPage/docs/ios/PillButtonBarImplementation.md", + "hash": "8164387113171008361" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PillButtonBarPage/docs/ios/PillButtonBarOverview.md", + "hash": "1311771358032116984" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PivotPage/PivotPage.doc.ts", + "hash": "12797279737032918886" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PivotPage/PivotPage.tsx", + "hash": "15299694073578426860" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PivotPage/docs/ios/PivotImplementation.md", + "hash": "4427576342081942127" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PivotPage/docs/ios/PivotOverview.md", + "hash": "11302721871784110641" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/PopupMenuPage.doc.ts", + "hash": "5617733850255104610" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/PopupMenuPage.tsx", + "hash": "9794250830285127360" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/android/PopupMenuImplementation.md", + "hash": "5020177404051028794" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/android/PopupMenuOverview.md", + "hash": "7290210998594527902" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/ios/PopupMenuImplementation.md", + "hash": "2743838143178393759" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/ios/PopupMenuOverview.md", + "hash": "2323001488577540827" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PopupPage/PopupPage.doc.ts", + "hash": "17816142309948511850" + }, + { + "file": "apps/public-docsite/src/pages/Controls/PopupPage/PopupPage.tsx", + "hash": "14142913708830808491" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ProgressIndicatorPage/ProgressIndicatorPage.doc.ts", + "hash": "15168136959043150323" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ProgressIndicatorPage/ProgressIndicatorPage.tsx", + "hash": "16828944186777538232" + }, + { + "file": "apps/public-docsite/src/pages/Controls/RatingPage/RatingPage.doc.ts", + "hash": "15930522879045080288" + }, + { + "file": "apps/public-docsite/src/pages/Controls/RatingPage/RatingPage.tsx", + "hash": "17430307553838477372" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ResizeGroupPage/ResizeGroupPage.doc.ts", + "hash": "12453097290421274476" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ResizeGroupPage/ResizeGroupPage.tsx", + "hash": "12724627887686361752" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SankeyChartPage/SankeyChartPage.doc.ts", + "hash": "4714530689649545039" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SankeyChartPage/SankeyChartPage.tsx", + "hash": "7367984007280521841" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ScrollablePanePage/ScrollablePanePage.doc.ts", + "hash": "10517815238812573514" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ScrollablePanePage/ScrollablePanePage.tsx", + "hash": "3794982073534288445" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SearchBoxPage/SearchBoxPage.doc.ts", + "hash": "3109877617295800527" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SearchBoxPage/SearchBoxPage.tsx", + "hash": "12119673235668910121" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SelectionPage/SelectionPage.doc.ts", + "hash": "4064413911248877629" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SelectionPage/SelectionPage.tsx", + "hash": "16645407528859551007" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/SeparatorPage.doc.ts", + "hash": "1869624805197331867" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/SeparatorPage.tsx", + "hash": "16530346594627497113" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/android/SeparatorImplementation.md", + "hash": "12050467316544862538" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/android/SeparatorOverview.md", + "hash": "3262490832239817243" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorImplementation.md", + "hash": "12735278674009299795" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorOverview.md", + "hash": "1638982018715209032" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorUsage.md", + "hash": "6447265103101755700" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/ios/SeparatorImplementation.md", + "hash": "385144131002868470" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/ios/SeparatorOverview.md", + "hash": "6917827556785225902" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorImplementation.md", + "hash": "11121036677182941869" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorOverview.md", + "hash": "14689844598752795287" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorUsage.md", + "hash": "3022219560847233209" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ShimmerPage/ShimmerPage.doc.ts", + "hash": "4599512040229497021" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ShimmerPage/ShimmerPage.tsx", + "hash": "878300177551071679" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ShimmerPage/docs/ios/ShimmerImplementation.md", + "hash": "15492298048019929155" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ShimmerPage/docs/ios/ShimmerOverview.md", + "hash": "8414580170604108926" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SliderPage/SliderPage.doc.ts", + "hash": "8834532409719588553" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SliderPage/SliderPage.tsx", + "hash": "14698906948989490334" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SnackbarPage/SnackbarPage.doc.ts", + "hash": "15438585596944920328" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SnackbarPage/SnackbarPage.tsx", + "hash": "1654437770309584305" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SnackbarPage/docs/android/SnackbarImplementation.md", + "hash": "17388804743906070461" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SnackbarPage/docs/android/SnackbarOverview.md", + "hash": "11312290812971405184" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SparklineChartPage/SparklineChartPage.doc.ts", + "hash": "7943019505043975866" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SparklineChartPage/SparklineChartPage.tsx", + "hash": "4869292233657636749" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SpinButtonPage/SpinButtonPage.doc.ts", + "hash": "1286261109085750776" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SpinButtonPage/SpinButtonPage.tsx", + "hash": "9268993758022694057" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/SpinnerPage.doc.ts", + "hash": "1896652091488762683" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/SpinnerPage.tsx", + "hash": "9394631982953595234" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/docs/android/SpinnerImplementation.md", + "hash": "10118420338312992410" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/docs/android/SpinnerOverview.md", + "hash": "18348680623727412435" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/docs/ios/SpinnerImplementation.md", + "hash": "13216727849992575340" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/docs/ios/SpinnerOverview.md", + "hash": "529524600353268627" + }, + { + "file": "apps/public-docsite/src/pages/Controls/StackPage/StackPage.doc.ts", + "hash": "4896656422620049208" + }, + { + "file": "apps/public-docsite/src/pages/Controls/StackPage/StackPage.tsx", + "hash": "1396217349101542509" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SwatchColorPickerPage/SwatchColorPickerPage.doc.ts", + "hash": "8742501851320362146" + }, + { + "file": "apps/public-docsite/src/pages/Controls/SwatchColorPickerPage/SwatchColorPickerPage.tsx", + "hash": "4210928475728699833" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TeachingBubblePage/TeachingBubblePage.doc.ts", + "hash": "11210860060788798223" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TeachingBubblePage/TeachingBubblePage.tsx", + "hash": "13265818964473803315" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextFieldPage/TextFieldPage.doc.ts", + "hash": "16844169516739817994" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextFieldPage/TextFieldPage.tsx", + "hash": "1449781130504185070" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/TextPage.doc.ts", + "hash": "14795579619725173204" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/TextPage.tsx", + "hash": "6444362485742213388" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/android/TextImplementation.md", + "hash": "6925117502959094792" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/android/TextOverview.md", + "hash": "9300573456933043605" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextImplementation.md", + "hash": "14482685637634165402" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextOverview.md", + "hash": "9847077317112859434" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextUsage.md", + "hash": "10221235043224874219" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/ios/TextImplementation.md", + "hash": "4487517554098015359" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/ios/TextOverview.md", + "hash": "17732920760835217296" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ThemeProviderPage/ThemeProviderPage.doc.ts", + "hash": "10132739553311476432" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ThemeProviderPage/ThemeProviderPage.tsx", + "hash": "9993449517972929988" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ThemesPage/ThemesPage.doc.ts", + "hash": "16869713101131606107" + }, + { + "file": "apps/public-docsite/src/pages/Controls/ThemesPage/ThemesPage.tsx", + "hash": "18264313343382082196" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TimePickerPage/TimePickerPage.doc.ts", + "hash": "15443779538362138546" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TimePickerPage/TimePickerPage.tsx", + "hash": "1756852736786007892" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TogglePage/TogglePage.doc.ts", + "hash": "1437864563683354605" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TogglePage/TogglePage.tsx", + "hash": "16970515178361027990" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TooltipPage/TooltipPage.doc.ts", + "hash": "13004555359529279060" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TooltipPage/TooltipPage.tsx", + "hash": "14058489552994957425" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TooltipPage/docs/android/TooltipImplementation.md", + "hash": "3456588364072825371" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TooltipPage/docs/android/TooltipOverview.md", + "hash": "13455839940298411742" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TooltipPage/docs/ios/TooltipImplementation.md", + "hash": "16965261284922775306" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TooltipPage/docs/ios/TooltipOverview.md", + "hash": "1046254076984026596" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TreeChartPage/TreeChartPage.doc.ts", + "hash": "363208411377797558" + }, + { + "file": "apps/public-docsite/src/pages/Controls/TreeChartPage/TreeChartPage.tsx", + "hash": "7076431616057000589" + }, + { + "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/GroupedVerticalBarChartPage.doc.ts", + "hash": "15633758479616455994" + }, + { + "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/GroupedVerticalBarChartPage.tsx", + "hash": "16990192553217188860" + }, + { + "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartPage.doc.ts", + "hash": "2049947327391988989" + }, + { + "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartPage.tsx", + "hash": "4883971900739832624" + }, + { + "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartStandardPage.doc.ts", + "hash": "620999018417199421" + }, + { + "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartStandardPage.tsx", + "hash": "6590169349353606228" + }, + { + "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalStackedBarChartPage.doc.ts", + "hash": "8155972576439835208" + }, + { + "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalStackedBarChartPage.tsx", + "hash": "9550842220108020399" + }, + { + "file": "apps/public-docsite/src/pages/HomePage/HomePage.base.tsx", + "hash": "465866457058775620" + }, + { + "file": "apps/public-docsite/src/pages/HomePage/HomePage.styles.ts", + "hash": "10861640978446414062" + }, + { + "file": "apps/public-docsite/src/pages/HomePage/HomePage.tsx", + "hash": "18276424432609590467" + }, + { + "file": "apps/public-docsite/src/pages/HomePage/HomePage.types.ts", + "hash": "13340032817135044576" + }, + { + "file": "apps/public-docsite/src/pages/NotFoundPage/NotFoundPage.tsx", + "hash": "16207216040893461209" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/ControlsPage.doc.ts", + "hash": "18380040089134554336" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/ControlsPage.tsx", + "hash": "16414020117622852720" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/android/ControlsOverview.md", + "hash": "3916707571718470487" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/android/ControlsRequest.md", + "hash": "15489980504060478950" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/cross/ControlsOverview.md", + "hash": "6622634875300562460" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/cross/ControlsRequest.md", + "hash": "14193834682038686587" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/ios/ControlsOverview.md", + "hash": "1695529372061376072" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/ios/ControlsRequest.md", + "hash": "12954123961090236040" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/mac/ControlsOverview.md", + "hash": "7424290293222382000" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/mac/ControlsRequest.md", + "hash": "12954123961090236040" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/web/ControlsOverview.md", + "hash": "5663961913773712180" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/web/ControlsRequest.md", + "hash": "15105504059791492762" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/webcomponents/ControlsOverview.md", + "hash": "2414983111943358773" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/windows/ControlsOverview.md", + "hash": "9037427483021073364" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/GetStartedPage.doc.ts", + "hash": "11826556445642419724" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/GetStartedPage.tsx", + "hash": "7268018460850661290" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/android/GetStartedOverview.md", + "hash": "12060562653436793345" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/cross/GetStartedOverview.md", + "hash": "16091509152687312443" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/ios/GetStartedOverview.md", + "hash": "9274172313490666165" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/mac/GetStartedOverview.md", + "hash": "164867267244845671" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDesign.md", + "hash": "8569760566844298580" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopCore.md", + "hash": "10927339412684879146" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopExisting.md", + "hash": "14091981290948965896" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopSimple.md", + "hash": "460857128821419712" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedNextSteps.md", + "hash": "2931506436585850526" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedOverview.md", + "hash": "3274675777583234778" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/webcomponents/GetStartedOverview.md", + "hash": "2414983111943358773" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/windows/GetStartedOverview.md", + "hash": "629152349317496328" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/ResourcesPage.doc.ts", + "hash": "17499625808237404491" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/ResourcesPage.tsx", + "hash": "13149788078858940663" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/MicrosoftEmployees.md", + "hash": "6370171942935038278" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesContributionProcess.md", + "hash": "1080822247761201590" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesDesignResources.md", + "hash": "7106528753518723741" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesDeveloperResources.md", + "hash": "5756619609720157923" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesOverview.md", + "hash": "8996628649432074956" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.doc.ts", + "hash": "15501069257697476063" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.module.scss", + "hash": "12219944696373065363" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.tsx", + "hash": "15067860422087630323" + }, + { + "file": "apps/public-docsite/src/pages/Overviews/StylesPage/docs/web/StylesOverview.md", + "hash": "3244421341483603138" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.doc.ts", + "hash": "7583962091710138917" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.module.scss", + "hash": "4445718406155664912" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.tsx", + "hash": "7799339281702303232" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateBestPractices.md", + "hash": "6424746113342347311" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateContact.md", + "hash": "2267529183204956536" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateCustom.md", + "hash": "3501294107890524915" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDesign.md", + "hash": "8252275691557389867" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDonts.md", + "hash": "16777043376435169207" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDos.md", + "hash": "17181944727235091082" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateMarkdown.md", + "hash": "1824316788706149358" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateOverview.md", + "hash": "2353018080647090922" + }, + { + "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateUsage.md", + "hash": "17999602798252555441" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/MessagingPage.doc.ts", + "hash": "4029206581609651525" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/MessagingPage.tsx", + "hash": "8517833539006814777" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/NeutralsPage.doc.ts", + "hash": "8557524095289881833" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/NeutralsPage.tsx", + "hash": "3881861710033677192" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/PersonasPage.doc.ts", + "hash": "6969256656078507324" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/PersonasPage.tsx", + "hash": "4181755802529383445" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/PresencePage.doc.ts", + "hash": "7698330973277559727" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/PresencePage.tsx", + "hash": "10452373578783830576" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/ProductsPage.doc.ts", + "hash": "12064673447368071473" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/ProductsPage.tsx", + "hash": "8166681864376445004" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/SharedPage.doc.ts", + "hash": "8709294250181685180" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/SharedPage.tsx", + "hash": "16477473000087952085" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsImplementation.md", + "hash": "9662445079717403281" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsMessaging.md", + "hash": "12057596805615388585" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsNeutrals.md", + "hash": "8166035078035367122" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPersonas.md", + "hash": "766096296213343466" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPersonasGroups.md", + "hash": "3244421341483603138" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPresence.md", + "hash": "12188095201817930748" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsProducts.md", + "hash": "17564225775262966216" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsShared.md", + "hash": "5320481516820254115" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/getColorsImplementation.tsx", + "hash": "9396878996590273337" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Excel.tsx", + "hash": "6668403593313565275" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Exchange.tsx", + "hash": "5874575945733322646" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/OneDrive.tsx", + "hash": "4908314519718315370" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/OneNote.tsx", + "hash": "1931898637381696069" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/PowerPoint.tsx", + "hash": "7528087448102567999" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/SharePoint.tsx", + "hash": "11970481403739113120" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Skype.tsx", + "hash": "18324379671806732775" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Teams.tsx", + "hash": "6050608167770584322" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/WXPNeutrals.tsx", + "hash": "8359383161438920081" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Word.tsx", + "hash": "249723548676881716" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/index.ts", + "hash": "2054469954853867485" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/palettes.tsx", + "hash": "9146560715594749357" + }, + { + "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/sharePointThemes.ts", + "hash": "17648378765769579029" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.doc.ts", + "hash": "15552069943951308130" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.module.scss", + "hash": "7345581142680317731" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.tsx", + "hash": "6842210506591976353" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ElevationPage/docs/web/ElevationDepth.md", + "hash": "10648356807866455467" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ElevationPage/docs/web/ElevationImplementation.md", + "hash": "6698065193994919867" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.doc.ts", + "hash": "13287110333933946288" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.module.scss", + "hash": "16603198109401679117" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.tsx", + "hash": "3215356932259775497" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsOverview.md", + "hash": "14584716617056468743" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsSvgUsage.md", + "hash": "4660598507310955359" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsUsage.md", + "hash": "2763351544178437746" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.doc.ts", + "hash": "13738324400228116747" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.module.scss", + "hash": "5442444884118063709" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.tsx", + "hash": "9814549566499373451" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsFormat.md", + "hash": "13099450167737000846" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsImplementation.md", + "hash": "17767304393597237392" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsOverview.md", + "hash": "2860311402143920947" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsResolutions.md", + "hash": "3244421341483603138" + }, + { + "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsSingleColor.md", + "hash": "8025714887263263869" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.doc.ts", + "hash": "6624340925972145937" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.module.scss", + "hash": "3083280209208898114" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.tsx", + "hash": "689216079218174724" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LayoutPage/docs/web/LayoutGridImplementation.md", + "hash": "3762983355142824943" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.doc.ts", + "hash": "13592687785339047277" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.module.scss", + "hash": "3580745211607670472" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.tsx", + "hash": "9117877808176694225" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/docs/web/LocalizationFonts.md", + "hash": "13947455427954126849" + }, + { + "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/docs/web/LocalizationRTL.md", + "hash": "12243536948304525425" + }, + { + "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.doc.ts", + "hash": "14850740324986435630" + }, + { + "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.module.scss", + "hash": "1501359429485906614" + }, + { + "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.tsx", + "hash": "8637326613161354274" + }, + { + "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsFormat.md", + "hash": "14137903468084545672" + }, + { + "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsImplementation.md", + "hash": "7064531828854196736" + }, + { + "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsOverview.md", + "hash": "4644609833618920221" + }, + { + "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsResolutions.md", + "hash": "9882773965947757517" + }, + { + "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsSingleColor.md", + "hash": "6428363293740106994" + }, + { + "file": "apps/public-docsite/src/pages/Styles/MotionPage/MotionPage.doc.ts", + "hash": "7551229294685878607" + }, + { + "file": "apps/public-docsite/src/pages/Styles/MotionPage/MotionPage.tsx", + "hash": "4255866037727374519" + }, + { + "file": "apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionAnimationPatterns.md", + "hash": "2424745151389010475" + }, + { + "file": "apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionBasicAnimations.md", + "hash": "11591939522054441904" + }, + { + "file": "apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionOverview.md", + "hash": "17619066456585865023" + }, + { + "file": "apps/public-docsite/src/pages/Styles/StylesAreaPage.tsx", + "hash": "2330551012169262981" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.base.tsx", + "hash": "13978554545030628372" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.doc.ts", + "hash": "8797032471318912664" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.styles.ts", + "hash": "670745936737153511" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.ts", + "hash": "17448422164112446045" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.types.ts", + "hash": "17598414037388291257" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/docs/web/ThemeSlotsImplementation.md", + "hash": "10651296754730631708" + }, + { + "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/docs/web/ThemeSlotsOverview.md", + "hash": "2166965680185322299" + }, + { + "file": "apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.doc.ts", + "hash": "9165765088336036121" + }, + { + "file": "apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.module.scss", + "hash": "16018951629111799776" + }, + { + "file": "apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.tsx", + "hash": "10818548696224375374" + }, + { + "file": "apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyCustomization.md", + "hash": "13014783898773428593" + }, + { + "file": "apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyImplementation.md", + "hash": "238697434924652490" + }, + { + "file": "apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographySizes.md", + "hash": "15059354838444238039" + }, + { + "file": "apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyWeights.md", + "hash": "7954208076253865127" + }, + { + "file": "apps/public-docsite/src/root.tsx", + "hash": "2758584264461977324" + }, + { + "file": "apps/public-docsite/src/styles/_base.scss", + "hash": "1849673723161206113" + }, + { + "file": "apps/public-docsite/src/styles/_common.scss", + "hash": "9046917025896875813" + }, + { + "file": "apps/public-docsite/src/styles/_overrides.scss", + "hash": "4420994798235433884" + }, + { + "file": "apps/public-docsite/src/styles/_reset.scss", + "hash": "17974127147527998359" + }, + { + "file": "apps/public-docsite/src/styles/_semanticSlots.scss", + "hash": "15520402900566886591" + }, + { + "file": "apps/public-docsite/src/styles/_typography.scss", + "hash": "2598463171315010195" + }, + { + "file": "apps/public-docsite/src/styles/constants.ts", + "hash": "15680145100038897039" + }, + { + "file": "apps/public-docsite/src/styles/styles.scss", + "hash": "2768824223736871501" + }, + { + "file": "apps/public-docsite/src/utilities/cdn.ts", + "hash": "2720323465115190399" + }, + { + "file": "apps/public-docsite/src/utilities/createSite.tsx", + "hash": "13422298383237972784" + }, + { + "file": "apps/public-docsite/src/utilities/getSubTitle.ts", + "hash": "1812390680457891556" + }, + { + "file": "apps/public-docsite/src/utilities/index.ts", + "hash": "15090850838105549481" + }, + { + "file": "apps/public-docsite/src/utilities/location.ts", + "hash": "2937621053370628509" + }, + { + "file": "apps/public-docsite/src/utilities/svgIcons.module.scss", + "hash": "3242932209884530734" + }, + { + "file": "apps/public-docsite/src/utilities/svgIcons.tsx", + "hash": "5235987200223732108" + }, + { + "file": "apps/public-docsite/src/utilities/svgIconsColor.tsx", + "hash": "4853467040983417652" + }, + { + "file": "apps/public-docsite/src/version.ts", + "hash": "9775686497058364768" + }, + { + "file": "apps/public-docsite/tsconfig.json", + "hash": "12512132474600727181" + }, + { + "file": "apps/public-docsite/webpack.config.js", + "hash": "2835503529795351612" + }, + { + "file": "apps/public-docsite/webpack.serve.config.js", + "hash": "13648462903372555254" + } + ], + "@fluentui/react-portal-compat": [ + { + "file": "packages/react-components/react-portal-compat/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-portal-compat/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-portal-compat/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-portal-compat/CHANGELOG.json", + "hash": "6310547495553252113" + }, + { + "file": "packages/react-components/react-portal-compat/CHANGELOG.md", + "hash": "637890491534529925" + }, + { + "file": "packages/react-components/react-portal-compat/LICENSE", + "hash": "2734216586406312338" + }, + { + "file": "packages/react-components/react-portal-compat/README.md", + "hash": "13552660956899760048" + }, + { + "file": "packages/react-components/react-portal-compat/bundle-size/PortalCompat.fixture.js", + "hash": "8933784648953307496" + }, + { + "file": "packages/react-components/react-portal-compat/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-portal-compat/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-portal-compat/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-portal-compat/etc/react-portal-compat.api.md", + "hash": "12672897639085221881" + }, + { + "file": "packages/react-components/react-portal-compat/jest.config.js", + "hash": "7201973850221979533" + }, + { + "file": "packages/react-components/react-portal-compat/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-portal-compat/package.json", + "hash": "2242680828023904012", + "deps": [ + "@fluentui/react-portal-compat-context", + "@fluentui/react-tabster", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-components", + "@fluentui/react-shared-contexts", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-components/react-portal-compat/project.json", + "hash": "4163289893969820182" + }, + { + "file": "packages/react-components/react-portal-compat/src/PortalCompat.cy.tsx", + "hash": "7224010505980293781" + }, + { + "file": "packages/react-components/react-portal-compat/src/PortalCompatProvider.test.tsx", + "hash": "4950300713413640133" + }, + { + "file": "packages/react-components/react-portal-compat/src/PortalCompatProvider.tsx", + "hash": "6743743402925755352" + }, + { + "file": "packages/react-components/react-portal-compat/src/index.ts", + "hash": "11087139990223362374" + }, + { + "file": "packages/react-components/react-portal-compat/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-portal-compat/tsconfig.json", + "hash": "5596071008249197618" + }, + { + "file": "packages/react-components/react-portal-compat/tsconfig.lib.json", + "hash": "4109592473830538944" + }, + { + "file": "packages/react-components/react-portal-compat/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-infolabel": [ + { + "file": "packages/react-components/react-infolabel/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-infolabel/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-infolabel/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-infolabel/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-infolabel/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-infolabel/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-infolabel/CHANGELOG.json", + "hash": "14825917095076416560" + }, + { + "file": "packages/react-components/react-infolabel/CHANGELOG.md", + "hash": "5575191642924707850" + }, + { + "file": "packages/react-components/react-infolabel/LICENSE", + "hash": "2987466484218074898" + }, + { + "file": "packages/react-components/react-infolabel/README.md", + "hash": "5543000756530108389" + }, + { + "file": "packages/react-components/react-infolabel/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-infolabel/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-infolabel/docs/Spec.md", + "hash": "12415704727702896077" + }, + { + "file": "packages/react-components/react-infolabel/etc/images/anatomy.png", + "hash": "13995183815818235250" + }, + { + "file": "packages/react-components/react-infolabel/etc/react-infolabel.api.md", + "hash": "9231325368668071686" + }, + { + "file": "packages/react-components/react-infolabel/jest.config.js", + "hash": "5573754893493331513" + }, + { + "file": "packages/react-components/react-infolabel/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-infolabel/package.json", + "hash": "3691223503924983980", + "deps": [ + "npm:@fluentui/react-icons", + "@fluentui/react-label", + "@fluentui/react-popover", + "@fluentui/react-tabster", + "@fluentui/react-jsx-runtime", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-infolabel/project.json", + "hash": "2136490827902334281" + }, + { + "file": "packages/react-components/react-infolabel/src/InfoButton.ts", + "hash": "6736681049567293007" + }, + { + "file": "packages/react-components/react-infolabel/src/InfoLabel.ts", + "hash": "10491035089563452821" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoButton/DefaultInfoButtonIcons.tsx", + "hash": "2356653625358885392" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.test.tsx", + "hash": "13091422380860995039" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.tsx", + "hash": "5812446199269029862" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.types.ts", + "hash": "14174263946567083160" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoButton/index.ts", + "hash": "7451520123696318723" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoButton/renderInfoButton.tsx", + "hash": "16476543032585061641" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoButton/useInfoButton.tsx", + "hash": "12562846819852203468" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoButton/useInfoButtonStyles.styles.ts", + "hash": "4457053427318314740" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.cy.tsx", + "hash": "2745939329689272907" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.test.tsx", + "hash": "6162167383950242729" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.tsx", + "hash": "12414993670554885735" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.types.ts", + "hash": "12259668345002550793" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoLabel/index.ts", + "hash": "1040167975180781477" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoLabel/renderInfoLabel.tsx", + "hash": "5569550196608831394" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoLabel/useInfoLabel.ts", + "hash": "14332118226680718175" + }, + { + "file": "packages/react-components/react-infolabel/src/components/InfoLabel/useInfoLabelStyles.styles.ts", + "hash": "11079399471116346237" + }, + { + "file": "packages/react-components/react-infolabel/src/index.ts", + "hash": "12739416375820815573" + }, + { + "file": "packages/react-components/react-infolabel/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelBestPractices.md", + "hash": "18109648245575154087" + }, + { + "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelDefault.stories.tsx", + "hash": "33809515516315681" + }, + { + "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelDescription.md", + "hash": "3255656647713314223" + }, + { + "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelInField.stories.tsx", + "hash": "15564638452241970423" + }, + { + "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelPatternDecision.md", + "hash": "14148502240650949226" + }, + { + "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelRequired.stories.tsx", + "hash": "16536409628055983147" + }, + { + "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelSize.stories.tsx", + "hash": "14310723017255313418" + }, + { + "file": "packages/react-components/react-infolabel/stories/InfoLabel/index.stories.tsx", + "hash": "4506291592511583485" + }, + { + "file": "packages/react-components/react-infolabel/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-infolabel/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-infolabel/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/theming-designer": [ + { + "file": "apps/theming-designer/.eslintrc.json", + "hash": "15624877064293233006" + }, + { + "file": "apps/theming-designer/CHANGELOG.json", + "hash": "12291746697898346988" + }, + { + "file": "apps/theming-designer/CHANGELOG.md", + "hash": "2344453555304636804" + }, + { + "file": "apps/theming-designer/config/pre-copy.json", + "hash": "7137810373311645754" + }, + { + "file": "apps/theming-designer/index.html", + "hash": "8525451778566725428" + }, + { + "file": "apps/theming-designer/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "apps/theming-designer/package.json", + "hash": "5895925697172101667", + "deps": [ + "@fluentui/react", + "@fluentui/merge-styles", + "@fluentui/react-docsite-components", + "@fluentui/foundation-legacy", + "@fluentui/scheme-utilities", + "@fluentui/set-version", + "@fluentui/font-icons-mdl2", + "npm:@microsoft/load-themed-styles", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "apps/theming-designer/project.json", + "hash": "9081308584738412223" + }, + { + "file": "apps/theming-designer/src/components/AccessibilityChecker.tsx", + "hash": "16506844564323751906" + }, + { + "file": "apps/theming-designer/src/components/AccessibilityDetailsList.tsx", + "hash": "5938047411396517048" + }, + { + "file": "apps/theming-designer/src/components/FabricPalette.tsx", + "hash": "9986798636782472459" + }, + { + "file": "apps/theming-designer/src/components/FabricSlotWidget.tsx", + "hash": "7010333939466710623" + }, + { + "file": "apps/theming-designer/src/components/Header.tsx", + "hash": "2142641914456137998" + }, + { + "file": "apps/theming-designer/src/components/Samples/index.tsx", + "hash": "7706638862259866271" + }, + { + "file": "apps/theming-designer/src/components/SemanticSlots.tsx", + "hash": "13534245869120806388" + }, + { + "file": "apps/theming-designer/src/components/SemanticSlotsDetailsList.tsx", + "hash": "8958989502641470533" + }, + { + "file": "apps/theming-designer/src/components/ThemeDesignerColorPicker.tsx", + "hash": "10551357834195680053" + }, + { + "file": "apps/theming-designer/src/components/ThemeSlots.tsx", + "hash": "6097271652755743157" + }, + { + "file": "apps/theming-designer/src/components/ThemingDesigner.tsx", + "hash": "11004141289564786969" + }, + { + "file": "apps/theming-designer/src/index.tsx", + "hash": "12575369939743920224" + }, + { + "file": "apps/theming-designer/src/shared/MainPanelStyles.tsx", + "hash": "4729267293215866647" + }, + { + "file": "apps/theming-designer/src/shared/Typography.tsx", + "hash": "15775203349013380082" + }, + { + "file": "apps/theming-designer/src/version.ts", + "hash": "17927131915821894877" + }, + { + "file": "apps/theming-designer/tsconfig.json", + "hash": "9192958159039358107" + }, + { + "file": "apps/theming-designer/webpack.config.js", + "hash": "8376152823140446600" + }, + { + "file": "apps/theming-designer/webpack.serve.config.js", + "hash": "5761943271931032973" + } + ], + "@fluentui/docs": [ + { + "file": "packages/fluentui/docs/.eslintrc.json", + "hash": "1170321389672620885" + }, + { + "file": "packages/fluentui/docs/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/docs/.storybook/main.js", + "hash": "12358817451942068777" + }, + { + "file": "packages/fluentui/docs/.storybook/preview.js", + "hash": "3982093891370695252" + }, + { + "file": "packages/fluentui/docs/README.md", + "hash": "12267980008240015629" + }, + { + "file": "packages/fluentui/docs/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/docs/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/docs/package.json", + "hash": "8290575613183760036", + "deps": [ + "npm:@charlietango/use-script", + "@fluentui/ability-attributes", + "@fluentui/accessibility", + "@fluentui/code-sandbox", + "@fluentui/docs-components", + "@fluentui/react-bindings", + "@fluentui/react-builder", + "@fluentui/react-component-event-listener", + "@fluentui/react-component-ref", + "@fluentui/react-icons-northstar", + "@fluentui/react-northstar", + "@fluentui/react-northstar-emotion-renderer", + "@fluentui/react-northstar-fela-renderer", + "@fluentui/react-northstar-prototypes", + "@fluentui/react-northstar-styles-renderer", + "@fluentui/react-telemetry", + "@fluentui/styles", + "npm:@mdx-js/react", + "npm:classnames", + "npm:color", + "npm:copy-to-clipboard", + "npm:csstype", + "npm:faker", + "npm:formik", + "npm:lodash", + "npm:moment", + "npm:prop-types", + "npm:qs", + "npm:react", + "npm:react-codesandboxer", + "npm:react-custom-scrollbars", + "npm:react-document-title", + "npm:react-dom", + "npm:react-hook-form", + "npm:react-hot-loader", + "npm:react-markdown", + "npm:react-router-dom", + "npm:react-source-render", + "npm:react-textarea-autosize", + "npm:react-virtualized", + "npm:react-vis", + "npm:react-window", + "npm:semver", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-storybook", + "npm:@types/classnames", + "npm:@types/color", + "npm:@types/faker", + "npm:@types/react-custom-scrollbars", + "npm:@types/react-router-dom", + "npm:@types/react-virtualized", + "npm:@types/react-window" + ] + }, + { + "file": "packages/fluentui/docs/project.json", + "hash": "4100322648323751291" + }, + { + "file": "packages/fluentui/docs/src/404.html", + "hash": "16925733810327691789" + }, + { + "file": "packages/fluentui/docs/src/app.tsx", + "hash": "18133583866406948391" + }, + { + "file": "packages/fluentui/docs/src/components/CategoryColorSchemes.tsx", + "hash": "15471500166894313476" + }, + { + "file": "packages/fluentui/docs/src/components/ColorBox.tsx", + "hash": "14313769847234351375" + }, + { + "file": "packages/fluentui/docs/src/components/ColorSchemes.tsx", + "hash": "3520451365588087548" + }, + { + "file": "packages/fluentui/docs/src/components/ColorVariants.tsx", + "hash": "842961233657171499" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentBestPractices.tsx", + "hash": "13258213592237770558" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/BehaviorCard.tsx", + "hash": "13248919281639354955" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/BehaviorDescription.tsx", + "hash": "11611880834697824134" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentBestPractices.tsx", + "hash": "12268344819894559200" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/ComponentBundleSizeChart.tsx", + "hash": "5854648503741754888" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/ComponentBundleSizeExample.tsx", + "hash": "15384963319034106554" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/index.ts", + "hash": "14862062994631854818" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/CodeSnippetIcon.tsx", + "hash": "14251722938533789516" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/ComponentControls.tsx", + "hash": "9947607547435043640" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/ComponentControlsCopyLink.tsx", + "hash": "7333719996921105622" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/index.tsx", + "hash": "13908880925817708925" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentDoc.tsx", + "hash": "5520896650160253888" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentDocAccessibility.tsx", + "hash": "14757167341788460626" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentDocLinks.tsx", + "hash": "839836439025932509" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentDocSee.tsx", + "hash": "12461586076268291141" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExample.tsx", + "hash": "5514555960395912952" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleColorPicker.tsx", + "hash": "7037081424336012966" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleTitle.tsx", + "hash": "2105810739355291829" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleVariable.tsx", + "hash": "7458209552924434794" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleVariables.tsx", + "hash": "8891305186508476923" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/index.tsx", + "hash": "2296233322321885223" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExamples.tsx", + "hash": "4233547624388976179" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentPerfChart.tsx", + "hash": "14815322288871573142" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentPerfExample.tsx", + "hash": "15847736411030574387" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentResourcesChart.tsx", + "hash": "2363646192975627812" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/index.ts", + "hash": "1676134879561531313" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropExtra.tsx", + "hash": "6838830300296755682" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropFunctionSignature.tsx", + "hash": "10792148067626293752" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropName.tsx", + "hash": "14551087482273992161" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentPropCard.tsx", + "hash": "17734443721751745496" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentProps.tsx", + "hash": "8021120662876666781" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentPropsOutline.tsx", + "hash": "1812145246479991942" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/index.tsx", + "hash": "14760205468189979139" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/ComponentPropsRow.tsx", + "hash": "8804751983735030185" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/ComponentPropsTable.tsx", + "hash": "3033990319844379436" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/index.tsx", + "hash": "15915107543961869783" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/ComponentSourceManager.ts", + "hash": "12290598306417344934" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/componentAPIs.ts", + "hash": "17725740098421921107" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/getExampleModule.ts", + "hash": "1528303749855518129" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/index.ts", + "hash": "14841104208504728645" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ContributionPrompt.tsx", + "hash": "3821542561099762451" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/ExampleSection.tsx", + "hash": "9424508500379564987" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/InlineMarkdown.tsx", + "hash": "7764978463030319620" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/LazyWithBabel.tsx", + "hash": "7266537121864960789" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/MegaphoneIcon.tsx", + "hash": "1353394853001713106" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/NonPublicSection.tsx", + "hash": "5071796385606465642" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/BundleSizeChart.tsx", + "hash": "1230066324202601264" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/BundleSizeChartTooltip.tsx", + "hash": "9294095566216501043" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/Chart.tsx", + "hash": "15073388818411239276" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ComponentChart.tsx", + "hash": "2349492653467491734" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfChart.tsx", + "hash": "10722755004997547482" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfChartTooltip.tsx", + "hash": "16354879607043443697" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfDataContext.ts", + "hash": "17768741877392199555" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfDataProvider.tsx", + "hash": "13018281500416904568" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChart.tsx", + "hash": "15920626007856751052" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChartTooltip.tsx", + "hash": "6613165649107428623" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChartValues.ts", + "hash": "7226839342472307850" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/index.ts", + "hash": "2832162539747081776" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/useBundleSizeData.ts", + "hash": "5349831237877493080" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/usePerfData.ts", + "hash": "5249215270999363975" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/PrototypePerfControls.tsx", + "hash": "9976991334716769425" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/PrototypePerfExample.tsx", + "hash": "852200345847239746" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/index.ts", + "hash": "4729113650901068359" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/SourceRender.tsx", + "hash": "10553593762698452511" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/Suggestions.tsx", + "hash": "18179397695680456104" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/index.tsx", + "hash": "7960769531776792410" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/useAccessibilityKnob.ts", + "hash": "1885682283062558721" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentDoc/useComponentProps.ts", + "hash": "14616206315160726672" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlayground.tsx", + "hash": "16798864798174922360" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlaygroundSnippet.tsx", + "hash": "12726973953832627498" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlaygroundTemplate.tsx", + "hash": "12391832860362490896" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentPlayground/componentGenerators.tsx", + "hash": "4442013590407697715" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentPlayground/createHookGenerator.ts", + "hash": "3350539221678551323" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentPlayground/propGenerators.tsx", + "hash": "14831694351072993146" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentPlayground/typeGenerators.ts", + "hash": "6837634186526809821" + }, + { + "file": "packages/fluentui/docs/src/components/ComponentPlayground/usePlaygroundComponent.tsx", + "hash": "14080850754774097617" + }, + { + "file": "packages/fluentui/docs/src/components/DocPage/DocPage.tsx", + "hash": "2808652576979717110" + }, + { + "file": "packages/fluentui/docs/src/components/DocPage/index.tsx", + "hash": "3554578022119957414" + }, + { + "file": "packages/fluentui/docs/src/components/DocsBehaviorRoot.tsx", + "hash": "3267577223041500795" + }, + { + "file": "packages/fluentui/docs/src/components/DocsLayout.tsx", + "hash": "10910177656516070161" + }, + { + "file": "packages/fluentui/docs/src/components/DocsRoot.tsx", + "hash": "15835475100706638555" + }, + { + "file": "packages/fluentui/docs/src/components/ExampleSnippet/ExampleSnippet.tsx", + "hash": "7883815714929857953" + }, + { + "file": "packages/fluentui/docs/src/components/ExampleSnippet/index.ts", + "hash": "17429250596636602902" + }, + { + "file": "packages/fluentui/docs/src/components/ExternalExampleLayout.tsx", + "hash": "1824287292430373603" + }, + { + "file": "packages/fluentui/docs/src/components/Fader.tsx", + "hash": "12119643171890670621" + }, + { + "file": "packages/fluentui/docs/src/components/GuidesNavigationFooter.tsx", + "hash": "17244329877842186098" + }, + { + "file": "packages/fluentui/docs/src/components/Icons/CodeSandboxIcon.tsx", + "hash": "12825871339196808359" + }, + { + "file": "packages/fluentui/docs/src/components/Icons/GitHubIcon.tsx", + "hash": "13546583538224460080" + }, + { + "file": "packages/fluentui/docs/src/components/Logo/Logo.tsx", + "hash": "13542005493777121336" + }, + { + "file": "packages/fluentui/docs/src/components/MarkdownPage.tsx", + "hash": "4953894111157650411" + }, + { + "file": "packages/fluentui/docs/src/components/Playground/renderConfig.ts", + "hash": "10431467891315399907" + }, + { + "file": "packages/fluentui/docs/src/components/Sidebar/Sidebar.tsx", + "hash": "8581565888016772807" + }, + { + "file": "packages/fluentui/docs/src/components/Sidebar/SidebarTitle.tsx", + "hash": "16945465435959960216" + }, + { + "file": "packages/fluentui/docs/src/components/Sidebar/VersionDropdown.tsx", + "hash": "12481878360155018358" + }, + { + "file": "packages/fluentui/docs/src/components/SystemColors.tsx", + "hash": "12396673138560940111" + }, + { + "file": "packages/fluentui/docs/src/components/ThemeDropdown.tsx", + "hash": "14901215571694103867" + }, + { + "file": "packages/fluentui/docs/src/components/VariableResolver/VariableResolver.tsx", + "hash": "16680318961348211176" + }, + { + "file": "packages/fluentui/docs/src/components/VariableResolver/useClassNamesListener.ts", + "hash": "11649694264640734161" + }, + { + "file": "packages/fluentui/docs/src/components/VariableResolver/useEnhancedRenderer.ts", + "hash": "15034481148342293240" + }, + { + "file": "packages/fluentui/docs/src/config.ts", + "hash": "6996878476232482390" + }, + { + "file": "packages/fluentui/docs/src/context/ExampleContext.ts", + "hash": "10330266777140873919" + }, + { + "file": "packages/fluentui/docs/src/context/ThemeContext.tsx", + "hash": "16056950884178562898" + }, + { + "file": "packages/fluentui/docs/src/contexts/exampleBestPracticesContext.ts", + "hash": "12541982430198054583" + }, + { + "file": "packages/fluentui/docs/src/contexts/exampleIndexContext.ts", + "hash": "3797907133032756872" + }, + { + "file": "packages/fluentui/docs/src/contexts/examplePlaygroundContext.ts", + "hash": "17947392003372189775" + }, + { + "file": "packages/fluentui/docs/src/contexts/exampleSourcesContext.ts", + "hash": "8034222086074861764" + }, + { + "file": "packages/fluentui/docs/src/contexts/examplesContext.ts", + "hash": "12651984967732339594" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/BestPractices/AccordionBestPractices.tsx", + "hash": "14940093359008461823" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Performance/AccordionDefault.bsize.tsx", + "hash": "5038944270254129774" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Performance/AccordionMinimal.perf.tsx", + "hash": "4523842466251260104" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Performance/index.tsx", + "hash": "8866257628355307503" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Rtl/AccordionExample.rtl.tsx", + "hash": "1340717939325240012" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Rtl/index.tsx", + "hash": "5552494584834402354" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExample.shorthand.tsx", + "hash": "3147689295083767338" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExclusiveExample.shorthand.tsx", + "hash": "15034575430186873739" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExclusiveExpandedExample.shorthand.tsx", + "hash": "15676788536874893013" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Types/index.tsx", + "hash": "14312132533086915079" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Usage/AccordionPanelCustomContentExample.shorthand.tsx", + "hash": "7961165322085785908" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Usage/AccordionPanelCustomTitleExample.shorthand.tsx", + "hash": "8110444025715338724" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Usage/index.tsx", + "hash": "17414639719818391537" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Visual/AccordionExampleCustomTitle.shorthand.tsx", + "hash": "18093647188251049061" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Visual/AccordionExampleDefault.shorthand.tsx", + "hash": "2490953812708114604" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/Visual/index.tsx", + "hash": "10396872897756178975" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Accordion/index.tsx", + "hash": "11939699836458558174" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/BestPractices/AlertBestPractices.tsx", + "hash": "7390556831277044686" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Performance/AlertDefault.bsize.tsx", + "hash": "7400263696216573396" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Performance/AlertMinimal.perf.tsx", + "hash": "7491789731685439785" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Performance/index.tsx", + "hash": "3486656088797749483" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExample.rtl.tsx", + "hash": "5833501351144547293" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExampleChildren.rtl.tsx", + "hash": "12215913207571214134" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExampleDismissAction.rtl.tsx", + "hash": "4960020110180002666" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Rtl/index.tsx", + "hash": "18392778337533776532" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleActions.shorthand.tsx", + "hash": "7214084965447715805" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleDismissAction.shorthand.tsx", + "hash": "14975932104835320922" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleHeader.shorthand.tsx", + "hash": "15241039013902720472" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleHeader.tsx", + "hash": "15241039013902720472" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleIcon.shorthand.tsx", + "hash": "11946303643665979959" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleIcon.tsx", + "hash": "11946303643665979959" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/index.tsx", + "hash": "9417792554044457971" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/State/AlertExampleVisible.shorthand.tsx", + "hash": "4314747878253818932" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/State/index.tsx", + "hash": "427501161644241166" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Types/AlertExample.shorthand.tsx", + "hash": "6679581942737953936" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Types/AlertExample.tsx", + "hash": "14282449354851154943" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Types/AlertExampleDismissible.shorthand.tsx", + "hash": "4521264338600019335" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Types/index.tsx", + "hash": "1993823099664567117" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleDismissActions.shorthand.tsx", + "hash": "12664361614821025048" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleImportantMessage.shorthand.tsx", + "hash": "8126990145533658212" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleImportantMessage.tsx", + "hash": "16239592046038933070" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleWidth.shorthand.tsx", + "hash": "16822018458802875153" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/index.tsx", + "hash": "4901587673450050108" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleAttached.shorthand.tsx", + "hash": "3025165918987383951" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleAttached.tsx", + "hash": "5383005919345233169" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleDanger.shorthand.tsx", + "hash": "13738658100729092838" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleDanger.tsx", + "hash": "8624847794273310051" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleFitted.shorthand.tsx", + "hash": "10384659722601669421" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleInfo.shorthand.tsx", + "hash": "12429957374972912633" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleInfo.tsx", + "hash": "6158313321973269291" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleOofs.shorthand.tsx", + "hash": "14878611782723821420" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleOofs.tsx", + "hash": "8687939285475336161" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleSuccess.shorthand.tsx", + "hash": "12170565269305523670" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleSuccess.tsx", + "hash": "8327763406932136591" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleUrgent.shorthand.tsx", + "hash": "2288896043914439472" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleUrgent.tsx", + "hash": "11981014665208428662" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleWarning.shorthand.tsx", + "hash": "6109440345280173133" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleWarning.tsx", + "hash": "11344022326745153812" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/index.tsx", + "hash": "3522446524631300400" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Alert/index.tsx", + "hash": "6156151819414933177" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Performance/AnimationMinimal.perf.tsx", + "hash": "2381218558170861435" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExample.shorthand.tsx", + "hash": "3918693122533672885" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDelay.shorthand.tsx", + "hash": "2091576222896710552" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDirection.shorthand.tsx", + "hash": "4658602649524581668" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDuration.shorthand.tsx", + "hash": "6551064054536947130" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleFillMode.shorthand.tsx", + "hash": "11254807112587801880" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleIterationCount.shorthand.tsx", + "hash": "11637399197514567584" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleKeyframeParams.shorthand.tsx", + "hash": "13004954253678987714" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExamplePlayState.shorthand.tsx", + "hash": "6519757348253113407" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleTimingFunction.shorthand.tsx", + "hash": "15834656771211499058" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Types/index.tsx", + "hash": "1892899388103006614" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Usage/AnimationExampleVisible.shorthand.tsx", + "hash": "2585833965021996678" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/Usage/index.tsx", + "hash": "15802851789513126937" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Animation/index.tsx", + "hash": "9269300506542533759" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentDefault.bsize.tsx", + "hash": "6702521006817921355" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentMinimal.perf.tsx", + "hash": "17668472981551080779" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentSlots.perf.tsx", + "hash": "13203505537913137537" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Performance/index.tsx", + "hash": "10043924621416924896" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Rtl/AttachmentExample.rtl.tsx", + "hash": "3773914650402755856" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Rtl/index.tsx", + "hash": "7918308442798410107" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentActionExample.shorthand.tsx", + "hash": "14423791370968139949" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentDescriptionExample.shorthand.tsx", + "hash": "18212994103096220748" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentHeaderExample.shorthand.tsx", + "hash": "11467050344618666719" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentIconExample.shorthand.tsx", + "hash": "529101159307576502" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/index.tsx", + "hash": "13875462072877340926" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Types/AttachmentExample.shorthand.tsx", + "hash": "11475662725209531559" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Types/AttachmentProgressExample.shorthand.tsx", + "hash": "4267523487196377390" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Types/index.tsx", + "hash": "16150497455545793404" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Variations/AttachmentActionableExample.shorthand.tsx", + "hash": "16317017442072917555" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/Variations/index.tsx", + "hash": "14864620316228068394" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Attachment/index.tsx", + "hash": "15967332739376281903" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Performance/AvatarDefault.bsize.tsx", + "hash": "1993116627814229169" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Performance/AvatarMinimal.perf.tsx", + "hash": "9403745575313193219" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Performance/index.tsx", + "hash": "6542918934081901377" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Rtl/AvatarExample.rtl.tsx", + "hash": "3766421030295524250" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Rtl/index.tsx", + "hash": "704258527059101064" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Types/AvatarExample.shorthand.tsx", + "hash": "1777762071026836373" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Types/index.tsx", + "hash": "16081847642128254144" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Usage/AvatarUsageExample.shorthand.tsx", + "hash": "6133089331845764022" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Usage/index.tsx", + "hash": "4919268998864960207" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleExcludedInitials.shorthand.tsx", + "hash": "9691484376749818242" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleGetInitials.shorthand.tsx", + "hash": "11980464763288742306" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleIcon.shorthand.tsx", + "hash": "9292214088414339760" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleImage.shorthand.tsx", + "hash": "6931871230275748642" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleLabel.shorthand.tsx", + "hash": "13239318061369965763" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleName.shorthand.tsx", + "hash": "3765438618458682092" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleSize.shorthand.tsx", + "hash": "995651699228554888" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleSquare.shorthand.tsx", + "hash": "7535329349351590670" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatus.shorthand.tsx", + "hash": "12764376649431176331" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatusCustomization.shorthand.tsx", + "hash": "5665191359621923461" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatusImage.shorthand.tsx", + "hash": "13641513045200282607" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/index.tsx", + "hash": "9169180906304167841" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Visual/AvatarStatusOverrideExample.shorthand.tsx", + "hash": "10472091611668977334" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/Visual/index.tsx", + "hash": "13634418070411306125" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Avatar/index.tsx", + "hash": "17452750855947681835" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Box/Performance/BoxDefault.bsize.tsx", + "hash": "5878861180993128281" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Box/Performance/BoxMinimal.perf.tsx", + "hash": "11528177275513521419" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Box/Performance/index.tsx", + "hash": "12468667700184196719" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Box/Types/BoxExample.shorthand.tsx", + "hash": "2621463162801806623" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Box/Types/BoxExample.tsx", + "hash": "11822710890006965982" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Box/Types/index.tsx", + "hash": "16292168244991601444" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Box/index.tsx", + "hash": "8445463683172518341" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/BestPractices/BreadcrumbBestPractices.tsx", + "hash": "12037027317396022887" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Content/BreadcrumbExampleIconDivider.tsx", + "hash": "13040774096198084811" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Content/index.tsx", + "hash": "5737535689842502282" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Types/BreadcrumbExampleBasic.tsx", + "hash": "10867835066367364838" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Types/index.tsx", + "hash": "6251320465555826583" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Variations/BreadcrumbExampleSizes.tsx", + "hash": "3756439437541515697" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Variations/index.tsx", + "hash": "17864851291665966953" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/index.tsx", + "hash": "11963669822888507151" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/BestPractices/ButtonBestPractices.tsx", + "hash": "875405029256638882" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Groups/ButtonGroupCircularExample.shorthand.tsx", + "hash": "10014541288147975902" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Groups/ButtonGroupExample.shorthand.tsx", + "hash": "12616941824892942654" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Groups/index.tsx", + "hash": "14608855000457409706" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Performance/ButtonDefault.bsize.tsx", + "hash": "14013260610212467529" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Performance/ButtonMinimal.perf.tsx", + "hash": "17702693323586748847" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Performance/ButtonOverridesMiss.perf.tsx", + "hash": "246033419451815290" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Performance/ButtonSlots.perf.tsx", + "hash": "1232086238686224207" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Performance/index.tsx", + "hash": "5684247435424607199" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Rtl/ButtonExample.rtl.tsx", + "hash": "10401747556514954499" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Rtl/index.tsx", + "hash": "13167615523401755239" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabled.shorthand.tsx", + "hash": "7501376052839836585" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabled.tsx", + "hash": "12680506556909276531" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabledFocusable.shorthand.tsx", + "hash": "11418740839881366692" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabledFocusable.tsx", + "hash": "8223189472340503350" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleLoading.shorthand.tsx", + "hash": "7387668981444340419" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/States/index.tsx", + "hash": "8104062184649371336" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExample.shorthand.tsx", + "hash": "13949356969555112957" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExample.tsx", + "hash": "1770835918201234538" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleEmphasis.shorthand.tsx", + "hash": "9141195104899468218" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleEmphasis.tsx", + "hash": "4417989313376075228" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleIconOnly.shorthand.tsx", + "hash": "3634071676473637322" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleIconOnly.tsx", + "hash": "8460167654876772802" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleInverted.tsx", + "hash": "17687677670120489335" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleText.shorthand.tsx", + "hash": "4888038742337651213" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleText.tsx", + "hash": "3859583648668982831" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Types/index.tsx", + "hash": "14640357627717561574" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleContentAndIcon.shorthand.tsx", + "hash": "5196548647582650534" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleContentAndIcon.tsx", + "hash": "5592983281587280992" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleOverflow.shorthand.tsx", + "hash": "15179431573106673255" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleOverflow.tsx", + "hash": "2042263174918498793" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleWithTooltip.shorthand.tsx", + "hash": "13714099140756432098" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonUsageExample.shorthand.tsx", + "hash": "1604253431835541038" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Usage/index.tsx", + "hash": "17896536485132705289" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleCircular.shorthand.tsx", + "hash": "12465483641909329594" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleCircular.tsx", + "hash": "16231051050308741969" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFlat.shorthand.tsx", + "hash": "5922720345605217261" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFluid.shorthand.tsx", + "hash": "8376453203529581016" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFluid.tsx", + "hash": "3869666308436030997" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleSize.shorthand.tsx", + "hash": "14569123258309762053" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Variations/index.tsx", + "hash": "17927782900865629373" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Visual/ButtonExampleCompose.shorthand.tsx", + "hash": "3313797131089084689" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/Visual/index.tsx", + "hash": "18308318623693669223" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Button/index.tsx", + "hash": "8430030252345530972" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/BestPractices/CardBestPractices.tsx", + "hash": "6175072564179136722" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Performance/CardMinimal.perf.tsx", + "hash": "7683423593541735565" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleBody.tsx", + "hash": "3670140939178073629" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleFooter.tsx", + "hash": "13947850720017990863" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleHeader.tsx", + "hash": "3871336181361575552" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Slots/CardExamplePreview.tsx", + "hash": "1607326112717492472" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Slots/index.tsx", + "hash": "276288527915583652" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/States/CardExampleDisabled.tsx", + "hash": "12903340330589409049" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/States/CardExampleSelected.tsx", + "hash": "4743335789023795653" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/States/index.tsx", + "hash": "4326877489289388573" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleContextMenu.tsx", + "hash": "16278614755070598860" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleExpandable.tsx", + "hash": "8649390718286655876" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusable.tsx", + "hash": "6380226764451546460" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusableChildrenGrid.tsx", + "hash": "6133487715791923353" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusableGrid.tsx", + "hash": "14970933824604047026" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleSelectableGrid.tsx", + "hash": "7940517742425222555" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleSimple.tsx", + "hash": "14390955054934178808" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleWithPreview.tsx", + "hash": "6755223202306762576" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Usage/index.tsx", + "hash": "14661769582418275555" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleCentered.tsx", + "hash": "16162090632028658213" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleElevated.tsx", + "hash": "4937534743147512554" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleFluid.tsx", + "hash": "3882323249492889843" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleHorizontal.tsx", + "hash": "7447178276334602059" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleInverted.tsx", + "hash": "11869197865997729597" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleQuiet.tsx", + "hash": "10258900114037369883" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleSize.tsx", + "hash": "15604663897001783874" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/Variations/index.tsx", + "hash": "14404897511921736607" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Card/index.tsx", + "hash": "12440696140065370056" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/BestPractices/CarouselBestPractices.tsx", + "hash": "5104464237642387440" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Performance/CarouselMinimal.perf.tsx", + "hash": "17230944198296978089" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Types/CarouselExample.shorthand.tsx", + "hash": "3019474799700121608" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Types/CarouselPaginationExample.shorthand.tsx", + "hash": "10219382050743159723" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Types/index.tsx", + "hash": "16549052418389007332" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselCircularExample.shorthand.tsx", + "hash": "726029106221673650" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselExampleWithFocusableElements.tsx", + "hash": "10412458986088851923" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselSlideAnimationExample.shorthand.tsx", + "hash": "11437707182698079093" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselThumbnailsExample.shorthand.tsx", + "hash": "3376835901612583306" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/index.tsx", + "hash": "2236036551358009719" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Carousel/index.tsx", + "hash": "8852005626228076387" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleActions.shorthand.tsx", + "hash": "11499081318773462966" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleHeader.shorthand.tsx", + "hash": "17627840143032452273" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleHeaderOverride.shorthand.tsx", + "hash": "10286084095369574056" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReactionGroup.shorthand.tsx", + "hash": "8638907150003707098" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReactionGroupMeReacting.shorthand.tsx", + "hash": "5402390244908178596" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReadStatus.shorthand.tsx", + "hash": "17553154374675903213" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Content/index.tsx", + "hash": "14432992613578840826" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Performance/ChatDuplicateMessages.perf.tsx", + "hash": "5328917073152073046" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Performance/ChatMinimal.perf.tsx", + "hash": "17663247331696372307" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Performance/ChatWithPopover.perf.tsx", + "hash": "929883892646559438" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Performance/index.tsx", + "hash": "8533950221499546871" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Playground.tsx", + "hash": "482100186069058437" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Rtl/ChatExample.rtl.tsx", + "hash": "12890530333579628741" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Rtl/index.tsx", + "hash": "7651977407876655266" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExample.shorthand.tsx", + "hash": "6447802063656597961" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleComfyRefresh.tsx", + "hash": "9349394183632742337" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleCompact.shorthand.tsx", + "hash": "13715037756615115885" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleCompact.tsx", + "hash": "6775219425799289574" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleContentPosition.shorthand.tsx", + "hash": "15861811597540900890" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleDetails.shorthand.tsx", + "hash": "8029995682815196086" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatMessageExampleBadge.shorthand.tsx", + "hash": "17776264375069324126" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatMessageExampleStyled.shorthand.tsx", + "hash": "5027022958570589282" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Types/index.tsx", + "hash": "10701634754456562503" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Usage/ChatExampleInScrollable.shorthand.tsx", + "hash": "8374238996916588629" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/Usage/index.tsx", + "hash": "9980155400741893378" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Chat/index.tsx", + "hash": "8493367295079208248" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/BestPractices/CheckboxBestPractices.tsx", + "hash": "18223611762110439939" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Performance/CheckboxMinimal.perf.tsx", + "hash": "548755024468105758" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Rtl/CheckboxExample.rtl.tsx", + "hash": "1128826523532930705" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Rtl/index.tsx", + "hash": "1395384208118196672" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Slots/CheckboxExampleLabel.shorthand.tsx", + "hash": "13064520088118359332" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Slots/index.tsx", + "hash": "9385043156927810366" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleChecked.shorthand.tsx", + "hash": "1021615820140575379" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleCheckedMixed.tsx", + "hash": "2279404225432948332" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleDisabled.shorthand.tsx", + "hash": "5799044504758222972" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/States/index.tsx", + "hash": "1443320154760987498" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Types/CheckboxExample.shorthand.tsx", + "hash": "2803361228273614712" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Types/CheckboxExampleToggle.shorthand.tsx", + "hash": "6490823576580920212" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Types/index.tsx", + "hash": "6143827655904626084" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Visual/CheckboxExampleLabelFlexColumn.shorthand.tsx", + "hash": "1248585251262906403" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/Visual/index.tsx", + "hash": "4703329705091263656" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Checkbox/index.tsx", + "hash": "7699016520185168354" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/BestPractices/DatepickerBestPractices.tsx", + "hash": "14658038377629620116" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Performance/DatepickerMinimal.perf.tsx", + "hash": "11883786566201308365" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Performance/index.tsx", + "hash": "10285630222835501286" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerCellExample.shorthand.tsx", + "hash": "2216960557906603023" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerExampleClearable.shorthand.tsx", + "hash": "691503666246176747" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerHeaderCellExample.shorthand.tsx", + "hash": "2954066980042365464" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerHeaderExample.shorthand.tsx", + "hash": "4738431955016572938" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/index.tsx", + "hash": "18386959363850184352" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleDisabled.shorthand.tsx", + "hash": "12255600267163387649" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleRequired.shorthand.tsx", + "hash": "17702199861644173417" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleSelectedDate.shorthand.tsx", + "hash": "8532825318168330503" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleToday.shorthand.tsx", + "hash": "8713734961732335095" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/index.tsx", + "hash": "11296468703106288343" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExample.shorthand.tsx", + "hash": "6846107523874285218" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleLocalizationStrings.shorthand.tsx", + "hash": "17524216608660332950" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleMinMaxDate.shorthand.tsx", + "hash": "7777605866903021481" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleNoInput.shorthand.tsx", + "hash": "16605143463380033608" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleOpen.shorthand.tsx", + "hash": "4543526859621525767" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleRestrictedDates.shorthand.tsx", + "hash": "11273520771450330651" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleWeek.shorthand.tsx", + "hash": "17700066685642168358" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/index.tsx", + "hash": "5123663188391578147" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerFirstWeekDayExample.shorthand.tsx", + "hash": "6801357975378394323" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerFormatExample.shorthand.tsx", + "hash": "6926030396132538520" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerNoInputPlaceholderExample.shorthand.tsx", + "hash": "11592675238822744600" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerParseExample.shorthand.tsx", + "hash": "11358215010058344895" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/index.tsx", + "hash": "12813493520771041761" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Variations/DatepickerExampleStandaloneCalendarButton.shorthand.tsx", + "hash": "14190744365069654201" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Variations/DatepickerExampleStandaloneCalendarInput.shorthand.tsx", + "hash": "3280141344322348081" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/Variations/index.tsx", + "hash": "14877018099015199576" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/datepickerCalendarCellSelector.ts", + "hash": "4512443095283466106" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Datepicker/index.tsx", + "hash": "2577934043163934210" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/BestPractices/DialogBestPractices.tsx", + "hash": "14260830851629896857" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleContent.shorthand.tsx", + "hash": "12377463484984823727" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleFooter.shorthand.tsx", + "hash": "17988792199130038865" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleFullWidth.shorthand.tsx", + "hash": "16078279811160423478" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleHeaderAction.shorthand.tsx", + "hash": "12456284637876482599" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleZoomContent.shorthand.tsx", + "hash": "7395294606546393853" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleZoomCustomFooter.shorthand.tsx", + "hash": "12988031539830275311" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/index.tsx", + "hash": "7519254899298717488" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Performance/DialogMinimal.perf.tsx", + "hash": "12277136355006118770" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Rtl/DialogExample.rtl.tsx", + "hash": "12130562440285824815" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Rtl/index.tsx", + "hash": "6285202181558572658" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Types/DialogExample.shorthand.tsx", + "hash": "13993226013804074696" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Types/index.tsx", + "hash": "18282978571056602747" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Usage/DialogExampleCallbacks.shorthand.tsx", + "hash": "2381692102417755746" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Usage/index.tsx", + "hash": "7882165995889355660" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Variations/DialogExampleBackdrop.shorthand.tsx", + "hash": "4307433218568996125" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Variations/DialogExampleScroll.shorthand.tsx", + "hash": "9671806836586772310" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/Variations/index.tsx", + "hash": "16158666808898205471" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dialog/index.tsx", + "hash": "4142905135655717486" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Performance/DividerMinimal.perf.tsx", + "hash": "1618744828317117143" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Performance/index.tsx", + "hash": "2284629446526020790" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Rtl/DividerExample.rtl.tsx", + "hash": "12247005208114230384" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Rtl/index.tsx", + "hash": "7078633835680831899" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Types/DividerExample.shorthand.tsx", + "hash": "5746094543465502941" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Types/DividerExampleContent.shorthand.tsx", + "hash": "1611823870656417247" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Types/DividerExampleContent.tsx", + "hash": "4194350913838679961" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Types/index.tsx", + "hash": "11368777759905312335" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleColor.shorthand.tsx", + "hash": "2681676744265735788" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleFitted.shorthand.tsx", + "hash": "13684475891877616638" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleImportant.shorthand.tsx", + "hash": "437776456355447840" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleImportant.tsx", + "hash": "6386113623863546527" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleSize.shorthand.tsx", + "hash": "12928272173652669541" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleSize.tsx", + "hash": "10864025889517401905" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleVertical.shorthand.tsx", + "hash": "14552765098852998269" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/index.tsx", + "hash": "1785542878842749187" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Visuals/DividerExampleRtlAndLtr.tsx", + "hash": "9798021593130619224" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/Visuals/index.tsx", + "hash": "9222615053153918782" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Divider/index.tsx", + "hash": "14235140459762121043" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/BestPractices/DropdownBestPractices.tsx", + "hash": "16726827083630930640" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Performance/DropdownManyItems.perf.tsx", + "hash": "8315175362323959522" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Performance/DropdownMinimal.perf.tsx", + "hash": "12532562062498627334" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Performance/index.tsx", + "hash": "5374991165033626972" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Rtl/DropdownExample.rtl.tsx", + "hash": "13183277357458072753" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Rtl/index.tsx", + "hash": "2820325268687576580" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Slots/DropdownExampleHeaderMessage.shorthand.tsx", + "hash": "12627865128962361689" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Slots/index.tsx", + "hash": "3945549868267392271" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/State/DropdownExampleDisabled.shorthand.tsx", + "hash": "6213534420806785166" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/State/DropdownExampleLoading.shorthand.tsx", + "hash": "14531425989713052820" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/State/index.tsx", + "hash": "17101438230209286123" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExample.shorthand.tsx", + "hash": "17080911572702169315" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleClearable.shorthand.tsx", + "hash": "14649463536937589220" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleFreeform.shorthand.tsx", + "hash": "36631747644339491" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleInline.shorthand.tsx", + "hash": "2368225702870682798" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleInverted.shorthand.tsx", + "hash": "1256304487568835216" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleMultiple.shorthand.tsx", + "hash": "14453131596234298619" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleSearch.shorthand.tsx", + "hash": "11345981179193784990" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleSearchMultiple.shorthand.tsx", + "hash": "16912889630350609564" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/index.tsx", + "hash": "11249932439843066393" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleControlled.shorthand.tsx", + "hash": "10914293369711090357" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleHeaderMessage.shorthand.tsx", + "hash": "7484846361714883755" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleRender.shorthand.tsx", + "hash": "12735533195513404349" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Usage/index.tsx", + "hash": "10372174955857748557" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleOffset.shorthand.tsx", + "hash": "8878106917840913450" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExamplePosition.shorthand.tsx", + "hash": "15030695889532996878" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleFluid.shorthand.tsx", + "hash": "2823634216814611259" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleFrenchLanguage.shorthand.tsx", + "hash": "11500036917111802737" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleImageAndContent.shorthand.tsx", + "hash": "899871089361290733" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/index.tsx", + "hash": "10984380790981850041" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Visual/DropdownExampleCustomClearable.shorthand.tsx", + "hash": "9297663856524401359" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/Visual/index.tsx", + "hash": "9129097450560402411" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Dropdown/index.tsx", + "hash": "10937488397683749460" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Embed/Performance/EmbedMinimal.perf.tsx", + "hash": "13349535745803780087" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Embed/Slots/EmbedExampleVideo.shorthand.tsx", + "hash": "5521089746614766109" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Embed/Slots/index.tsx", + "hash": "4311408216226913591" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Embed/Usage/EmbedExampleYouTube.shorthand.tsx", + "hash": "15513298030058753217" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Embed/Usage/index.tsx", + "hash": "7470763844759721977" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Embed/index.tsx", + "hash": "10144010630743895149" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Performance/FlexMinimal.perf.tsx", + "hash": "12501107038452642246" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Recipes.mdx", + "hash": "17295467775326810200" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Rtl/FlexExample.rtl.tsx", + "hash": "8048699383448891868" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Rtl/index.tsx", + "hash": "12333133982344563985" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleColumns.shorthand.tsx", + "hash": "9494669297093995444" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleInput.shorthand.tsx", + "hash": "6151230046666799951" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleItemsAlignment.shorthand.tsx", + "hash": "17665003590332687702" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleMediaCard.shorthand.tsx", + "hash": "5255190600379815597" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleMixedAlignment.shorthand.tsx", + "hash": "14670896287883140894" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleNavMenu.shorthand.tsx", + "hash": "42145263656539355" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/Types/index.tsx", + "hash": "2783746349735568035" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Flex/index.tsx", + "hash": "9529941190943702247" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/BestPractices/FormBestPractices.tsx", + "hash": "4136184157997267686" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Performance/FormMinimal.perf.tsx", + "hash": "2571551938411128386" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Rtl/FormExample.rtl.tsx", + "hash": "10506727184234633255" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Rtl/index.tsx", + "hash": "4614138208583971475" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Types/FormExampleBase.tsx", + "hash": "10121099561877496153" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Types/FormExampleInline.tsx", + "hash": "2538286387249164206" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Types/index.tsx", + "hash": "16126961388117750847" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleCheckbox.tsx", + "hash": "4046681236153968736" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleDatepicker.tsx", + "hash": "11361687445062035356" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleDropdown.tsx", + "hash": "16899693285659366324" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleErrorAndSuccessful.tsx", + "hash": "13266856889811549954" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleSlider.tsx", + "hash": "10198029342425902438" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Usage/index.tsx", + "hash": "15086437689148636434" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Variants/FormExampleComponents.tsx", + "hash": "2573371969871522344" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/Variants/index.tsx", + "hash": "9823028957988922526" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Form/index.tsx", + "hash": "11972671644921053635" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/BestPractices/GridBestPractices.tsx", + "hash": "1193691283068665299" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Performance/GridMinimal.perf.tsx", + "hash": "4079832271606619442" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Rtl/GridExample.rtl.tsx", + "hash": "12468929948335278655" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Rtl/index.tsx", + "hash": "7983227345755296662" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Types/GridExample.shorthand.tsx", + "hash": "11467276478685629311" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Types/GridExample.tsx", + "hash": "8643475293237398036" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Types/index.tsx", + "hash": "13229359958304259286" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumns.shorthand.tsx", + "hash": "6425137964439956574" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumns.tsx", + "hash": "7420224291209639457" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumnsAndRows.shorthand.tsx", + "hash": "3567925282059655667" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumnsAndRows.tsx", + "hash": "4824891686913113193" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleKeyboardNavigable.shorthand.tsx", + "hash": "9131649190027849541" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleKeyboardNavigable.tsx", + "hash": "4293702764822798471" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleRows.shorthand.tsx", + "hash": "15962531291130856093" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleRows.tsx", + "hash": "8543754780402711167" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/index.tsx", + "hash": "9972281313863506308" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Grid/index.tsx", + "hash": "10416747021370596299" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Performance/HeaderMinimal.perf.tsx", + "hash": "5323374520410167057" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Performance/HeaderSlots.perf.tsx", + "hash": "8830529866730138179" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Performance/index.tsx", + "hash": "5795973500029634072" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Rtl/HeaderExample.rtl.tsx", + "hash": "8397027536443740326" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Rtl/index.tsx", + "hash": "14621479683050448407" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Types/HeaderExample.shorthand.tsx", + "hash": "15385530257979275701" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Types/HeaderExample.tsx", + "hash": "7968422868759978259" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Types/index.tsx", + "hash": "15468349939030115969" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExample.shorthand.tsx", + "hash": "11022697380901723002" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleAlign.tsx", + "hash": "8225784069630751692" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleColor.shorthand.tsx", + "hash": "17405830202188634827" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleColor.tsx", + "hash": "16859685718898289475" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescription.shorthand.tsx", + "hash": "15241634986814391461" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescription.tsx", + "hash": "14029563099860337841" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescriptionCustomization.shorthand.tsx", + "hash": "1620088646142946953" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescriptionCustomization.tsx", + "hash": "6282939784028655517" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/Variations/index.tsx", + "hash": "16357029446829677127" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Header/index.tsx", + "hash": "15138625360246765758" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Performance/ImageMinimal.perf.tsx", + "hash": "4482660474477179886" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Rtl/ImageExample.rtl.tsx", + "hash": "568591531191807451" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Rtl/index.tsx", + "hash": "16250337141935650130" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Types/ImageExample.shorthand.tsx", + "hash": "7033086185340563868" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Types/ImageExampleAvatar.shorthand.tsx", + "hash": "16106436339944453184" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Types/index.tsx", + "hash": "8871094264144824226" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Variations/ImageExampleCircular.tsx", + "hash": "16218168966715421410" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Variations/ImageExampleFluid.tsx", + "hash": "3771396024984176184" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/Variations/index.tsx", + "hash": "12718161915963599283" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Image/index.tsx", + "hash": "14778751457497188202" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/BestPractices/InputBestPractices.tsx", + "hash": "4536840931722831119" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Performance/InputMinimal.perf.tsx", + "hash": "1742422238398296030" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Rtl/InputExample.rtl.tsx", + "hash": "5453138406020243009" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Rtl/index.tsx", + "hash": "5209340204092211504" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Slots/InputExampleLabel.shorthand.tsx", + "hash": "3651591885077867826" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Slots/index.tsx", + "hash": "13661927172029543202" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/State/InputExampleDisabled.shorthand.tsx", + "hash": "14365373317059379602" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/State/index.tsx", + "hash": "12831465518877123178" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Types/InputExample.shorthand.tsx", + "hash": "6755849521905541062" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Types/InputInvertedExample.shorthand.tsx", + "hash": "4117066794446027951" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Types/index.tsx", + "hash": "7632673967977727996" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleClearable.shorthand.tsx", + "hash": "9404606633555359873" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleFluid.shorthand.tsx", + "hash": "15266243787978450262" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIcon.shorthand.tsx", + "hash": "15895186166085714878" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIconClearable.shorthand.tsx", + "hash": "7104733062363489717" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIconPosition.shorthand.tsx", + "hash": "9935358360489714868" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInline.shorthand.tsx", + "hash": "5468257279265642045" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInlineIconClearable.shorthand.tsx", + "hash": "10478121607870935520" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInputSlot.shorthand.tsx", + "hash": "2201703452647000286" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleTargeting.shorthand.tsx", + "hash": "4209791436950689520" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleWrapperSlot.shorthand.tsx", + "hash": "7800523774844648983" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/Variations/index.tsx", + "hash": "13104632528145391550" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Input/index.tsx", + "hash": "1509719792316300905" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleContent.shorthand.tsx", + "hash": "14894828782699454086" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleContentMedia.shorthand.tsx", + "hash": "7573352761909351504" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleEndMedia.shorthand.tsx", + "hash": "15740083457201401325" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeader.shorthand.tsx", + "hash": "8410753305863486273" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeaderContent.shorthand.tsx", + "hash": "16895479213370900048" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeaderMedia.shorthand.tsx", + "hash": "11253012967216694098" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleMedia.shorthand.tsx", + "hash": "17926492654675453519" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/index.tsx", + "hash": "13030288130334378633" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Performance/ItemLayoutMinimal.perf.tsx", + "hash": "6631643315923856192" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Rtl/ItemLayoutExample.rtl.tsx", + "hash": "2444060836574253170" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Rtl/index.tsx", + "hash": "2780506083804436194" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Types/ItemLayoutExample.shorthand.tsx", + "hash": "10247570755509089808" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Types/ItemLayoutExampleSelection.shorthand.tsx", + "hash": "4981524316985719543" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Types/index.tsx", + "hash": "18017725912507536879" + }, + { + "file": "packages/fluentui/docs/src/examples/components/ItemLayout/index.tsx", + "hash": "10709585972443187997" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExample.shorthand.tsx", + "hash": "2696046522043543355" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExample.tsx", + "hash": "10559071231023839069" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleContentCustomization.shorthand.tsx", + "hash": "9851366695884214163" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleIcon.shorthand.tsx", + "hash": "8646930987303616079" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleIconPosition.shorthand.tsx", + "hash": "1622761577410217418" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleImage.shorthand.tsx", + "hash": "1926729956091713246" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleImagePosition.shorthand.tsx", + "hash": "18244060208028061242" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Content/index.tsx", + "hash": "14951390822192745489" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Performance/LabelMinimal.perf.tsx", + "hash": "5844538879014925645" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Rtl/LabelExample.rtl.tsx", + "hash": "12525130322147919346" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Rtl/index.tsx", + "hash": "6166665281101154932" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Variations/LabelExampleCircular.shorthand.tsx", + "hash": "5966462711603098031" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Variations/LabelExampleColor.shorthand.tsx", + "hash": "16476847855911341045" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/Variations/index.tsx", + "hash": "9682314536491900536" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Label/index.tsx", + "hash": "15608403142644399383" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Performance/LayoutMinimal.perf.tsx", + "hash": "10124786163741257471" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Types/LayoutExample.shorthand.tsx", + "hash": "10004038094153834525" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Types/LayoutExampleVertical.shorthand.tsx", + "hash": "13323460735978321752" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Types/index.tsx", + "hash": "3361086206811625978" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExample.shorthand.tsx", + "hash": "10004038094153834525" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleDisappearing.shorthand.tsx", + "hash": "4691140278882749774" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleGap.shorthand.tsx", + "hash": "7999888195762166326" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleReducing.shorthand.tsx", + "hash": "634677705856392968" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/index.tsx", + "hash": "763791615822724394" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Layout/index.tsx", + "hash": "9774975278713176393" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleContent.shorthand.tsx", + "hash": "9231151213039467861" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleContent.tsx", + "hash": "10885188019894963771" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleContentMedia.shorthand.tsx", + "hash": "4325683898037784798" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleContentMedia.tsx", + "hash": "6363831081270265783" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleEndMedia.shorthand.tsx", + "hash": "17569021195811716801" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleEndMedia.tsx", + "hash": "14049157749409821911" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeader.shorthand.tsx", + "hash": "12422873342579196668" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeader.tsx", + "hash": "1361664582927291347" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderContent.shorthand.tsx", + "hash": "15027504677421412306" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderContent.tsx", + "hash": "68215173808336733" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderMedia.shorthand.tsx", + "hash": "4824113237188296040" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderMedia.tsx", + "hash": "8487392130030578913" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleMedia.shorthand.tsx", + "hash": "18000108466405842359" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleMedia.tsx", + "hash": "9930526857857226875" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Content/index.tsx", + "hash": "1748480120885819339" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Performance/ListCommon.perf.tsx", + "hash": "6561515821134606538" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Performance/ListMinimal.perf.tsx", + "hash": "9571773797160334331" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Performance/ListNested.perf.tsx", + "hash": "3216303131903272594" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Performance/ListWith60ListItems.perf.tsx", + "hash": "3855415483199286809" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Performance/index.tsx", + "hash": "14285660182588942022" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Rtl/ListExample.rtl.tsx", + "hash": "13442933759393369223" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Rtl/index.tsx", + "hash": "11819586909959517693" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExample.shorthand.tsx", + "hash": "15333657866263057316" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExample.tsx", + "hash": "16258065849372258640" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleNavigable.shorthand.tsx", + "hash": "6407980487296804294" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleNavigable.tsx", + "hash": "7635503171903939112" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectable.shorthand.tsx", + "hash": "1873769023807454836" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectable.tsx", + "hash": "1698957149768324171" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectableControlled.shorthand.tsx", + "hash": "12782378747286920342" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Types/index.tsx", + "hash": "5415106785487907370" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Usage/ListExampleMemo.tsx", + "hash": "8917577665825762351" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Usage/index.tsx", + "hash": "15349833127032366157" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Variations/ListExampleFixedTruncate.shorthand.tsx", + "hash": "2730379426120339855" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Variations/ListExampleHorizontal.shorthand.tsx", + "hash": "16997648851325108063" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Variations/ListExampleTruncate.shorthand.tsx", + "hash": "16550693054611575574" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Variations/ListExampleTruncate.tsx", + "hash": "13452277803109662735" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/Variations/index.tsx", + "hash": "5881166162270636169" + }, + { + "file": "packages/fluentui/docs/src/examples/components/List/index.tsx", + "hash": "6856587354159162620" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/BestPractices/LoaderBestPractices.tsx", + "hash": "17076787117927919687" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Performance/LoaderMinimal.perf.tsx", + "hash": "10825944497092424482" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Performance/index.tsx", + "hash": "2672455834481754469" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Rtl/LoaderExample.rtl.tsx", + "hash": "6894689127573694081" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Rtl/index.tsx", + "hash": "11467653178340820209" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Types/LoaderExample.shorthand.tsx", + "hash": "17386374381567659804" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Types/LoaderExampleLabel.shorthand.tsx", + "hash": "536227871747389527" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Types/index.tsx", + "hash": "1853722176510785772" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Usage/LoaderExampleDelay.tsx", + "hash": "3124554476920325960" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Usage/index.tsx", + "hash": "12904058592937147794" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleInline.tsx", + "hash": "1865826805469384195" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleLabelPosition.shorthand.tsx", + "hash": "14823352032932489651" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleSecondary.tsx", + "hash": "6805369726553471930" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleSize.tsx", + "hash": "928971371710753426" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/index.tsx", + "hash": "7707531497740640339" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Loader/index.tsx", + "hash": "15491664950196071284" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/BestPractices/MenuBestPractices.tsx", + "hash": "1148764178301497175" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Performance/MenuMinimal.perf.tsx", + "hash": "2401373787281935539" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Playground.tsx", + "hash": "1091516363403052049" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Rtl/MenuExample.rtl.tsx", + "hash": "11856368448634044769" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Rtl/index.tsx", + "hash": "11822002180748385531" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDivider.shorthand.tsx", + "hash": "15129455285604720244" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDivider.tsx", + "hash": "11841541853492995378" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDividerHorizontal.shorthand.tsx", + "hash": "13359961286051787592" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDividerHorizontal.tsx", + "hash": "5143724620376855284" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleIconOnly.shorthand.tsx", + "hash": "11000640034821314031" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleIconOnly.tsx", + "hash": "2306115093079629299" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleSlot.shorthand.tsx", + "hash": "9656116265171394237" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleSlot.tsx", + "hash": "945046029822481092" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleWithIcons.shorthand.tsx", + "hash": "4785937693664823680" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleWithIcons.tsx", + "hash": "2971564546782610091" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/index.tsx", + "hash": "6283686420977361754" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/States/MenuControlledExample.shorthand.tsx", + "hash": "10194642940947694217" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/States/MenuItemExampleDisabled.shorthand.tsx", + "hash": "235258550393281513" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/States/MenuItemExampleDisabled.tsx", + "hash": "4812993067582864952" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/States/index.tsx", + "hash": "17402268562551851474" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExample.shorthand.tsx", + "hash": "18127778721870174508" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExample.tsx", + "hash": "4746656654908753746" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExamplePointing.shorthand.tsx", + "hash": "3306766872106443980" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExamplePointing.tsx", + "hash": "9515561015913587630" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.shorthand.tsx", + "hash": "8847444862932826819" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.tsx", + "hash": "3492819735314541593" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Types/index.tsx", + "hash": "16878301856711676587" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleTabList.shorthand.tsx", + "hash": "7610120576477353894" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleTabList.tsx", + "hash": "2011627756318785489" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleToolbar.shorthand.tsx", + "hash": "17064202586037134935" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenu.shorthand.tsx", + "hash": "5596368956995949414" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenuControlled.shorthand.tsx", + "hash": "220813465245031774" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenuHover.shorthand.tsx", + "hash": "17161303855803153450" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithTooltip.shorthand.tsx", + "hash": "6243550488720737656" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithTooltip.tsx", + "hash": "12000097960576681213" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/index.tsx", + "hash": "12302412292361952698" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleFluid.shorthand.tsx", + "hash": "13064471807127524035" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleFluid.tsx", + "hash": "13692909798327607747" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVertical.shorthand.tsx", + "hash": "13733685118568006661" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPointing.shorthand.tsx", + "hash": "8068757237899528017" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPointing.tsx", + "hash": "13474885059913991450" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPrimary.shorthand.tsx", + "hash": "9419549282178692813" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/index.tsx", + "hash": "9812201022681861443" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExamplePositioning.shorthand.tsx", + "hash": "7352296603393000933" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExamplePositioningUpdate.shorthand.tsx", + "hash": "16893348791643087442" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExampleVertical.tsx", + "hash": "1918671705400028108" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/Visual/index.tsx", + "hash": "14921709986822918982" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Menu/index.tsx", + "hash": "7093431700049905369" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/Performance/MenuButtonMinimal.perf.tsx", + "hash": "8542732171269113775" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/Rtl/MenuButtonExample.rtl.tsx", + "hash": "6337724502663305552" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/Rtl/index.tsx", + "hash": "6638186061182872564" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/State/MenuButtonExampleOpen.shorthand.tsx", + "hash": "2608597770808588352" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/State/index.tsx", + "hash": "14634225165658357467" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/Usage/MenuButtonExampleContextMenu.shorthand.tsx", + "hash": "1026610848202498026" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/Usage/MenuButtonExampleOn.shorthand.tsx", + "hash": "3135948295889322686" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/Usage/index.tsx", + "hash": "10027429472797848590" + }, + { + "file": "packages/fluentui/docs/src/examples/components/MenuButton/index.tsx", + "hash": "16849312605865228993" + }, + { + "file": "packages/fluentui/docs/src/examples/components/PerformanceTests/Performance/Roster.perf.tsx", + "hash": "1671137001377166992" + }, + { + "file": "packages/fluentui/docs/src/examples/components/PerformanceTests/index.tsx", + "hash": "16182572711134628967" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/BestPractices/PillBestPractices.tsx", + "hash": "15184619707213158796" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/State/PillExampleDisabled.tsx", + "hash": "225635531870302008" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/State/index.tsx", + "hash": "7850230691816422967" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Types/PillExample.tsx", + "hash": "3917196493748856429" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Types/PillsExample.tsx", + "hash": "8180071303992218841" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Types/index.tsx", + "hash": "11535681964715845934" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleActionable.tsx", + "hash": "13550250194486157707" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleAppearance.tsx", + "hash": "12642313646398949118" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleIcon.tsx", + "hash": "3033494631218963635" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleImage.tsx", + "hash": "12025962676000518988" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleRectangular.tsx", + "hash": "9475227123919005662" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleSelectable.tsx", + "hash": "4059077961421342466" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleSizes.tsx", + "hash": "1372461143642718047" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/index.tsx", + "hash": "4794134926682899725" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Pill/index.tsx", + "hash": "308800105363798938" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/BestPractices/PopupBestPractices.tsx", + "hash": "14691495679088971408" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Performance/PopupMinimal.perf.tsx", + "hash": "769127780080565910" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Rtl/PopupExample.rtl.tsx", + "hash": "4025468581995924373" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Rtl/index.tsx", + "hash": "10873636211257697823" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupControlledExample.shorthand.tsx", + "hash": "11360271729888420335" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupControlledExample.tsx", + "hash": "15236078454659808077" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupCustomTargetExample.shorthand.tsx", + "hash": "14177824506531876219" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupCustomTargetExample.tsx", + "hash": "15618421921267612568" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExample.shorthand.tsx", + "hash": "5651623114942915273" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExample.tsx", + "hash": "2201968360249751569" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExampleInline.shorthand.tsx", + "hash": "16143307516772722391" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExampleInline.tsx", + "hash": "15436059692901633142" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExamplePointing.shorthand.tsx", + "hash": "11380429919678701304" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupFocusTrapExample.shorthand.tsx", + "hash": "4844970199294400171" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Types/index.tsx", + "hash": "1038283187659463283" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleAsync.shorthand.tsx", + "hash": "13310281521799433826" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleCloseButton.shorthand.tsx", + "hash": "15497765193228430672" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleCloseButton.tsx", + "hash": "9958856842982015940" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleContextOnElement.tsx", + "hash": "16810053831311380677" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleNested.shorthand.tsx", + "hash": "6977345676829096553" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOn.shorthand.tsx", + "hash": "12040021593308161947" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOnMultiple.shorthand.tsx", + "hash": "11901628195575852306" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOnWithFocusTrap.shorthand.tsx", + "hash": "11387245286688535625" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/index.tsx", + "hash": "15583074628811659850" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExampleAutoSize.shorthand.tsx", + "hash": "18051787308840745700" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExampleOffset.shorthand.tsx", + "hash": "2598279928927838796" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExamplePosition.shorthand.tsx", + "hash": "5014667790535831638" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExamplePosition.tsx", + "hash": "14724531471909272772" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/index.tsx", + "hash": "11205808743807307793" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopperExamplePositioning.tsx", + "hash": "3402356215985975741" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopperExampleVisibilityModifiers.tsx", + "hash": "5930513785737904564" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExampleContainerTransformed.tsx", + "hash": "6454123585379870685" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExamplePointerMargin.shorthand.tsx", + "hash": "12246850078535057943" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExamplePointerOffset.tsx", + "hash": "8557789888384105072" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopupScrollExample.tsx", + "hash": "1092456042955589651" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/index.tsx", + "hash": "1257556053517955659" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Popup/index.tsx", + "hash": "14244818971203151580" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/Performance/PortalMinimal.perf.tsx", + "hash": "1280050399468706846" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/State/PortalExampleOpen.tsx", + "hash": "7747918653201416489" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/State/index.tsx", + "hash": "2471947539793886914" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/Types/PortalExample.shorthand.tsx", + "hash": "7093133557609363165" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/Types/PortalExample.tsx", + "hash": "16973700092145622013" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/Types/PortalExampleFocusTrapped.shorthand.tsx", + "hash": "18157629743013996375" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/Types/PortalExampleFocusTrapped.tsx", + "hash": "6823047004923659443" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/Types/index.tsx", + "hash": "12807792126420428514" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Portal/index.tsx", + "hash": "4816663574998133171" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Performance/ProviderMergeThemes.perf.tsx", + "hash": "10357042662153941278" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Performance/ProviderMinimal.perf.tsx", + "hash": "875685099328132794" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Performance/index.tsx", + "hash": "14396567022906488393" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderDisableAnimationsExample.shorthand.tsx", + "hash": "12158931261228946976" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExample.shorthand.tsx", + "hash": "7876580913304867265" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleFocusBorder.shorthand.tsx", + "hash": "18315534677363544150" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleRendererFelaPluginFallbackValue.shorthand.tsx", + "hash": "9376927013985860098" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleScrollbar.shorthand.tsx", + "hash": "14869269664997133421" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleStyles.shorthand.tsx", + "hash": "915498641226028817" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderRtlExample.shorthand.tsx", + "hash": "971324591208205115" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Types/index.tsx", + "hash": "1548681423522224763" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Usage/ProviderExampleTarget.tsx", + "hash": "13947434155337757662" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Usage/ProviderExampleTargetFrame.tsx", + "hash": "10241159316166337828" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/Usage/index.tsx", + "hash": "1591294953056712013" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Provider/index.tsx", + "hash": "14961953425430424666" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExample.shorthand.tsx", + "hash": "8794932438885348780" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExampleChecked.shorthand.tsx", + "hash": "10851098855382529857" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExampleDisabled.shorthand.tsx", + "hash": "11656138751705946866" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Item/index.tsx", + "hash": "14497407002158091465" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Performance/RadioGroupMinimal.perf.tsx", + "hash": "15053198625352535132" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Rtl/RadioGroupExample.rtl.tsx", + "hash": "4471510346867972515" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Rtl/index.tsx", + "hash": "3850717975312738992" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupColorPickerExample.shorthand.tsx", + "hash": "1963146957713849165" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupExample.shorthand.tsx", + "hash": "15576873279871783334" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupVerticalExample.shorthand.tsx", + "hash": "6799207127209368586" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Types/index.tsx", + "hash": "1765245586396985668" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Usage/RadioGroupCustomExample.shorthand.tsx", + "hash": "13561962407174439681" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Usage/index.tsx", + "hash": "16582427638124774793" + }, + { + "file": "packages/fluentui/docs/src/examples/components/RadioGroup/index.tsx", + "hash": "8270839829663713461" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Reaction/BestPractices/ReactionBestPractices.tsx", + "hash": "9273372572363071132" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Reaction/Performance/ReactionMinimal.perf.tsx", + "hash": "1050040320316407323" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Reaction/Rtl/ReactionExample.rtl.tsx", + "hash": "4248876968732174230" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Reaction/Rtl/index.tsx", + "hash": "2015079013080726768" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Reaction/Types/ReactionExample.shorthand.tsx", + "hash": "17305309175171886727" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Reaction/Types/ReactionGroupExample.shorthand.tsx", + "hash": "5653765080526238268" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Reaction/Types/index.tsx", + "hash": "4533187858270278955" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Reaction/index.tsx", + "hash": "13552494968983937345" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Ref/Performance/RefMinimal.perf.tsx", + "hash": "12734421099743106835" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Ref/Types/RefExample.shorthand.tsx", + "hash": "947545573143756399" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Ref/Types/RefForwardingExample.shorthand.tsx", + "hash": "12714715976648162928" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Ref/Types/index.tsx", + "hash": "17846087013936532796" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Ref/index.tsx", + "hash": "15630243285341224194" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Performance/SegmentMinimal.perf.tsx", + "hash": "6106209279245030302" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Rtl/SegmentExample.rtl.tsx", + "hash": "4984314994571441949" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Rtl/index.tsx", + "hash": "7264175941352362763" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/States/SegmentExampleDisabled.shorthand.tsx", + "hash": "1447666560336142634" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/States/SegmentExampleDisabled.tsx", + "hash": "9939080071452335784" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/States/index.tsx", + "hash": "15510553270873649507" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Types/SegmentExample.shorthand.tsx", + "hash": "4521252015219986379" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Types/SegmentExample.tsx", + "hash": "14191539552345947271" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Types/index.tsx", + "hash": "6425801768050272369" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleColor.shorthand.tsx", + "hash": "4018577540283862271" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleColor.tsx", + "hash": "11898578555204733155" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleInverted.shorthand.tsx", + "hash": "5006772346970981875" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleInverted.tsx", + "hash": "4674557655748034557" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/index.tsx", + "hash": "17210751842025928867" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Segment/index.tsx", + "hash": "13165167863480646704" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/BestPractices/SkeletonBestPractices.tsx", + "hash": "11299779863031749491" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Performance/SkeletonMinimal.perf.tsx", + "hash": "17151828783466057607" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Performance/index.tsx", + "hash": "13068110492453554314" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleCard.tsx", + "hash": "11681636039219057772" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleDefault.tsx", + "hash": "5298862632862212220" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleList.tsx", + "hash": "3994728901000370391" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Usage/index.tsx", + "hash": "8658623377452207069" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Variations/SkeletonExampleAnimations.tsx", + "hash": "5840051234383928667" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Variations/SkeletonExampleComponents.tsx", + "hash": "6146256229951310790" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/Variations/index.tsx", + "hash": "4963526455682049474" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Skeleton/index.tsx", + "hash": "4930155455556413528" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/BestPractices/SliderBestPractices.tsx", + "hash": "16971553798248851448" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Performance/SliderMinimal.perf.tsx", + "hash": "5683915994532975308" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Rtl/SliderExample.rtl.tsx", + "hash": "11110359940013906638" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Rtl/index.tsx", + "hash": "5828325333876107293" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/States/SliderExampleDisabled.shorthand.tsx", + "hash": "14759118373998593037" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/States/index.tsx", + "hash": "5819082409675027780" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Types/SliderExample.shorthand.tsx", + "hash": "5451486256462625366" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Types/index.tsx", + "hash": "7324547195758132067" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Usage/SliderExampleAction.shorthand.tsx", + "hash": "7745582782640576862" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Usage/SliderExampleForm.shorthand.tsx", + "hash": "2111231209869031445" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Usage/index.tsx", + "hash": "3885309747960239628" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Variations/SliderExampleFluid.shorthand.tsx", + "hash": "4637699113225425671" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Variations/SliderExampleVertical.shorthand.tsx", + "hash": "17437641334520746677" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/Variations/index.tsx", + "hash": "11924443720597252865" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Slider/index.tsx", + "hash": "5206201463804797308" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/BestPractices/SplitButtonBestPractices.tsx", + "hash": "2000902291897511495" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Performance/SplitButtonMinimal.perf.tsx", + "hash": "3500159460743084221" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Slots/SplitButtonIconAndContentExample.shorthand.tsx", + "hash": "13085330416997443259" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Slots/SplitButtonToggleButtonExample.shorthand.tsx", + "hash": "10202142522989619458" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Slots/index.tsx", + "hash": "7830322805396207627" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/States/SplitButtonExampleDisabled.shorthand.tsx", + "hash": "9620865874445391479" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/States/index.tsx", + "hash": "11088877437828424103" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExample.shorthand.tsx", + "hash": "18444227571953934657" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExampleFlat.shorthand.tsx", + "hash": "2950485000675828410" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExamplePrimary.shorthand.tsx", + "hash": "3342011974196004167" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExampleSmall.shorthand.tsx", + "hash": "4795058889272829421" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/index.tsx", + "hash": "7397507779112941418" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Usage/SplitButtonMainOptionChangeExample.shorthand.tsx", + "hash": "9023600002190709651" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Usage/SplitButtonPositioningExampleShorthand.shorthand.tsx", + "hash": "8489259726922924849" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Usage/index.tsx", + "hash": "16562305662577179570" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Visual/SplitButtonExampleSmallContainer.tsx", + "hash": "13278820737132459641" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/Visual/index.tsx", + "hash": "133837785704319957" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SplitButton/index.tsx", + "hash": "12516377041553330988" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/BestPractices/StatusBestPractices.tsx", + "hash": "2842206438674642976" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Performance/StatusMinimal.perf.tsx", + "hash": "3467231160851523327" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Types/StatusExample.shorthand.tsx", + "hash": "12044042368016196218" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Types/StatusTypeExample.shorthand.tsx", + "hash": "13350748024954070133" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Types/index.tsx", + "hash": "2811353043156884507" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Variations/StatusColorExample.shorthand.tsx", + "hash": "3987068556304091057" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Variations/StatusCustomExample.shorthand.tsx", + "hash": "2548938419948027605" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Variations/StatusIconExample.shorthand.tsx", + "hash": "5524818873389068964" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Variations/StatusSizeExample.shorthand.tsx", + "hash": "5707553982966709248" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/Variations/index.tsx", + "hash": "9120569656874648802" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Status/index.tsx", + "hash": "2816738493521398893" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/BestPractices/IconBestPractices.tsx", + "hash": "4072626567249075080" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Performance/IconMinimal.perf.tsx", + "hash": "5190579029005441788" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Performance/index.tsx", + "hash": "16814660870533487226" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Playground.tsx", + "hash": "8812012154417175908" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/SvgIconExample.rtl.tsx", + "hash": "14644173506843824353" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/SvgIconExampleRotate.rtl.tsx", + "hash": "15057195332144981474" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/index.tsx", + "hash": "1612672297693581878" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/States/SvgIconExampleDisabled.shorthand.tsx", + "hash": "3470608587583128076" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/States/index.tsx", + "hash": "10545754726360979463" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Types/SvgIconExample.shorthand.tsx", + "hash": "10086633318723837555" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Types/index.tsx", + "hash": "17535747109177872834" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Usage/SvgIconSetExample.shorthand.tsx", + "hash": "712280352364671982" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Usage/index.tsx", + "hash": "7787500621832502210" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleBordered.shorthand.tsx", + "hash": "13663934745164798152" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleCircular.shorthand.tsx", + "hash": "10039662552931739" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleColor.shorthand.tsx", + "hash": "11096658655423303569" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleRotate.shorthand.tsx", + "hash": "9100232926702492531" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleSize.shorthand.tsx", + "hash": "4188316930125539160" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleSpace.shorthand.tsx", + "hash": "5992719719142309327" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/index.tsx", + "hash": "167430481359948232" + }, + { + "file": "packages/fluentui/docs/src/examples/components/SvgIcon/index.tsx", + "hash": "17532453811600698785" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/BestPractices/TableBestPractices.tsx", + "hash": "13116952679854774648" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Performance/TableManyItems.perf.tsx", + "hash": "8843379085853058190" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Performance/TableMinimal.perf.tsx", + "hash": "6451763713975397742" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Performance/index.tsx", + "hash": "5455578957824022592" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleNavigable.shorthand.tsx", + "hash": "1321971208257382513" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStatic.shorthand.tsx", + "hash": "14512923368632768022" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStatic.tsx", + "hash": "5761370134080040759" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticCompact.shorthand.tsx", + "hash": "5032942767772539042" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticHeadless.shorthand.tsx", + "hash": "1984701926003492154" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticRowless.shorthand.tsx", + "hash": "12862859521290575140" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticTruncate.shorthand.tsx", + "hash": "3789911366669930488" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/Usage/index.tsx", + "hash": "7212079707197341769" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Table/index.tsx", + "hash": "8209480989900875119" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/BestPractices/TextBestPractices.tsx", + "hash": "13758922197264512339" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Performance/TextMinimal.perf.tsx", + "hash": "6082426067430696487" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Rtl/TextExample.rtl.tsx", + "hash": "18253220197384221052" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Rtl/index.tsx", + "hash": "7916814126989481073" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleDisabled.shorthand.tsx", + "hash": "10005342357982055357" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleDisabled.tsx", + "hash": "10682467434654740662" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleError.shorthand.tsx", + "hash": "12523200570024022826" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleError.tsx", + "hash": "2268246935270334744" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleSuccess.shorthand.tsx", + "hash": "2741758658117195387" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleSuccess.tsx", + "hash": "12695842757449186386" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleTemporary.shorthand.tsx", + "hash": "12157727285162703176" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleTemporary.tsx", + "hash": "10489178677587453901" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleTruncated.shorthand.tsx", + "hash": "3078072220366705288" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleTruncated.tsx", + "hash": "4460110182775161240" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/States/index.tsx", + "hash": "14949581414261390973" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Types/TextSizesExample.shorthand.tsx", + "hash": "3821817729761856817" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Types/TextSizesExample.tsx", + "hash": "7100085658781908208" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Types/TextWeightsExample.shorthand.tsx", + "hash": "7898500173523470913" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Types/TextWeightsExample.tsx", + "hash": "7525213490240351962" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Types/index.tsx", + "hash": "8170466156453858773" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAlign.shorthand.tsx", + "hash": "10090528081301512500" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAlign.tsx", + "hash": "9602188435828454504" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAtMention.shorthand.tsx", + "hash": "9568381306981174747" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAtMention.tsx", + "hash": "7273333936839378560" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleColor.shorthand.tsx", + "hash": "593035909691715305" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleColor.tsx", + "hash": "14979348856804430653" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleImportant.shorthand.tsx", + "hash": "16945189331882039626" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleImportant.tsx", + "hash": "15237789108945229891" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleTimestamp.shorthand.tsx", + "hash": "7819109379560072233" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleTimestamp.tsx", + "hash": "5887414291140974047" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/Variations/index.tsx", + "hash": "18148527819162278688" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Text/index.tsx", + "hash": "5505583030986180768" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Performance/TextAreaMinimal.perf.tsx", + "hash": "787763541317368544" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/States/TextAreaDisabledExample.shorthand.tsx", + "hash": "1398148223167664272" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/States/TextAreaValueExample.shorthand.tsx", + "hash": "10331862364447876823" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/States/index.tsx", + "hash": "6698344117014108055" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Types/TextAreaExample.shorthand.tsx", + "hash": "14733924463548594253" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Types/index.tsx", + "hash": "3683382352963583728" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleHeight.shorthand.tsx", + "hash": "1211085858101929404" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleMaxLength.shorthand.tsx", + "hash": "9562510689858609706" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleResize.shorthand.tsx", + "hash": "4876842304034575135" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Usage/index.tsx", + "hash": "2237594003502654008" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Variations/TextAreaExampleFluid.shorthand.tsx", + "hash": "3545887297492075263" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Variations/TextAreaExampleInverted.shorthand.tsx", + "hash": "17087013464811584960" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/Variations/index.tsx", + "hash": "4704806062673855327" + }, + { + "file": "packages/fluentui/docs/src/examples/components/TextArea/index.tsx", + "hash": "12188412524533348165" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/BestPractices/ToolbarBestPractices.tsx", + "hash": "7690630516491632299" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleCustomContent.shorthand.tsx", + "hash": "9350437590169425941" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenu.shorthand.tsx", + "hash": "14374045559814061777" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuItemToggle.shorthand.tsx", + "hash": "11619348413229807632" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuRadioGroup.shorthand.tsx", + "hash": "12932498558254125079" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuWithSubmenu.shorthand.tsx", + "hash": "9181858135213078479" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleOverflow.shorthand.tsx", + "hash": "14123305047218867877" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExamplePopup.shorthand.tsx", + "hash": "6947040501896189720" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleRadioGroup.shorthand.tsx", + "hash": "10794513158764683839" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/index.tsx", + "hash": "10481282122210591927" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Performance/CustomToolbar.perf.tsx", + "hash": "12947291466463780126" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Performance/ToolbarMinimal.perf.tsx", + "hash": "8305048149129463206" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Performance/index.tsx", + "hash": "6873361932430304586" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExample.shorthand.tsx", + "hash": "7261997885886261076" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExample.tsx", + "hash": "14847037438949442568" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExampleEditor.shorthand.tsx", + "hash": "17212861393922761147" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Types/index.tsx", + "hash": "10426904223974509115" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExampleActionPopupInMenu.shorthand.tsx", + "hash": "16581044095774214451" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExamplePopupInMenu.shorthand.tsx", + "hash": "15559958015729382474" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExampleWithTooltip.shorthand.tsx", + "hash": "9360949351884014708" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Usage/index.tsx", + "hash": "3741193560673302929" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleChatMessage.tsx", + "hash": "597807714766702107" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleCompose.shorthand.tsx", + "hash": "2943541742173150125" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleOverflowPositioning.rtl.tsx", + "hash": "8896970923041455552" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleOverflowPositioning.shorthand.tsx", + "hash": "8392159780916116340" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleVariables.shorthand.tsx", + "hash": "973954519216817273" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/index.tsx", + "hash": "2280780949824614506" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Toolbar/index.tsx", + "hash": "3955145262259009939" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/BestPractices/TooltipBestPractices.tsx", + "hash": "12264769787489140472" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Performance/TooltipMinimal.perf.tsx", + "hash": "8391989295459389123" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Rtl/TooltipExample.rtl.tsx", + "hash": "17501348274045005215" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Rtl/index.tsx", + "hash": "8231368109071058412" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/States/TooltipOpenControlledExample.shorthand.tsx", + "hash": "6291038619515393728" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/States/TooltipOpenControlledExample.tsx", + "hash": "5717027646454076412" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/States/index.tsx", + "hash": "4692331360484948060" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExample.shorthand.tsx", + "hash": "14387757590222922955" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExample.tsx", + "hash": "3040316856705893337" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExamplePointing.shorthand.tsx", + "hash": "13893994275100589306" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExamplePointing.tsx", + "hash": "6599114506851208409" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/index.tsx", + "hash": "9674896746410444932" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDialogContent.shorthand.tsx", + "hash": "16672009771982611827" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDisabledTrigger.shorthand.tsx", + "hash": "9432946789900165765" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDismissOnContentMouseEnter.tsx", + "hash": "1895508525939336631" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleTarget.shorthand.tsx", + "hash": "10439831362752589746" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleTarget.tsx", + "hash": "10582264869563911497" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/index.tsx", + "hash": "1997186623739287675" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Variations/TooltipExamplePosition.shorthand.tsx", + "hash": "16854894253130607416" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Variations/TooltipExamplePosition.tsx", + "hash": "11808497640753109890" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Variations/index.tsx", + "hash": "6731401908207692704" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Visual/TooltipExamplePointerMargin.shorthand.tsx", + "hash": "12872392821532343061" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/Visual/index.tsx", + "hash": "13603571994211374586" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tooltip/index.tsx", + "hash": "2058144254470973416" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/BestPractices/TreeBestPractices.tsx", + "hash": "5269011941010168614" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Performance/TreeMinimal.perf.tsx", + "hash": "489946794118741384" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Performance/TreeWith60ListItems.perf.tsx", + "hash": "12416168620018960866" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Performance/index.tsx", + "hash": "18200172470583665933" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Types/TreeExample.shorthand.tsx", + "hash": "10987719260332768720" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Types/TreeExclusiveExample.shorthand.tsx", + "hash": "8101844356066711523" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Types/index.tsx", + "hash": "10799362557329168225" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/TreeInitiallyOpenExample.shorthand.tsx", + "hash": "17737307388979450495" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/TreeMultiselectBasicExample.shorthand.tsx", + "hash": "6401296778527594059" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/TreeMultiselectExample.shorthand.tsx", + "hash": "12495650092802007936" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/TreeTitleCustomizationExample.shorthand.tsx", + "hash": "11056546458539147302" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/index.tsx", + "hash": "8490738550400826673" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Tree/index.tsx", + "hash": "7170014822219967037" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Video/Performance/VideoMinimal.perf.tsx", + "hash": "4983642729868410970" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Video/Types/VideoExample.shorthand.tsx", + "hash": "17150204613404177820" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Video/Types/index.tsx", + "hash": "3759187239395817059" + }, + { + "file": "packages/fluentui/docs/src/examples/components/Video/index.tsx", + "hash": "259172865122869557" + }, + { + "file": "packages/fluentui/docs/src/global.d.ts", + "hash": "14936706255065350562" + }, + { + "file": "packages/fluentui/docs/src/index.ejs", + "hash": "4900373226579034748" + }, + { + "file": "packages/fluentui/docs/src/index.html", + "hash": "9592085092662455894" + }, + { + "file": "packages/fluentui/docs/src/index.tsx", + "hash": "9684143093088289648" + }, + { + "file": "packages/fluentui/docs/src/pages/Composition.mdx", + "hash": "10186491244501102909" + }, + { + "file": "packages/fluentui/docs/src/pages/Debugging.mdx", + "hash": "18375082099652213990" + }, + { + "file": "packages/fluentui/docs/src/pages/Layout.mdx", + "hash": "3180541691175480199" + }, + { + "file": "packages/fluentui/docs/src/pages/ShorthandProps.mdx", + "hash": "15976754765035424430" + }, + { + "file": "packages/fluentui/docs/src/public/images/2020_MSFT_Icon_Celebration_placeholder.jpg", + "hash": "2925398530444399930" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/AllanMunger.jpg", + "hash": "3613388593767865605" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/AmandaBrady.jpg", + "hash": "5478322598207531530" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/AshleyMcCarthy.jpg", + "hash": "2754307271603289620" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/CameronEvans.jpg", + "hash": "5294189036657935794" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/CarlosSlattery.jpg", + "hash": "10178184967006338761" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/CarolePoland.jpg", + "hash": "11147373829946689608" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/CecilFolk.jpg", + "hash": "14225108329051412439" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/CelesteBurton.jpg", + "hash": "11316135954594294363" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/CharlotteWaltson.jpg", + "hash": "2774426450807629827" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/ColinBallinger.jpg", + "hash": "17681050335581092084" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/DaisyPhillips.jpg", + "hash": "10949871083575484027" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/ElliotWoodward.jpg", + "hash": "3405760508019923303" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/ElviaAtkins.jpg", + "hash": "5611089447394491790" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/ErikNason.jpg", + "hash": "1413017518416054984" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/HenryBrill.jpg", + "hash": "15861918850676483061" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/IsaacFielder.jpg", + "hash": "7118775979671994925" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/JohnieMcConnell.jpg", + "hash": "17367508280523725103" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/KatLarsson.jpg", + "hash": "2670919255846102339" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/KatriAthokas.jpg", + "hash": "487231194185754540" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/KevinSturgis.jpg", + "hash": "3013064020880462661" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/KristinPatterson.jpg", + "hash": "13412995139552529437" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/LydiaBauer.jpg", + "hash": "4175277172402001465" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/MauricioAugust.jpg", + "hash": "5491418556314909777" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/MiguelGarcia.jpg", + "hash": "3336511373738327952" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/MonaKane.jpg", + "hash": "18325328201356331133" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/RobertTolbert.jpg", + "hash": "4300254536734927938" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/RobinCounts.jpg", + "hash": "13340930959792462337" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/TimDeboer.jpg", + "hash": "10257406127647555763" + }, + { + "file": "packages/fluentui/docs/src/public/images/avatar/WandaHoward.jpg", + "hash": "11836273278313166429" + }, + { + "file": "packages/fluentui/docs/src/public/images/debug-panel.png", + "hash": "1763594797351844515" + }, + { + "file": "packages/fluentui/docs/src/public/images/flex-column.svg", + "hash": "13420908369708187834" + }, + { + "file": "packages/fluentui/docs/src/public/images/flex.svg", + "hash": "12705524441791002011" + }, + { + "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo-black.png", + "hash": "17285458065082868156" + }, + { + "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo-dev.png", + "hash": "18384050230717677814" + }, + { + "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo-inverted.png", + "hash": "7323049856764235678" + }, + { + "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo-white.png", + "hash": "16873796944914726880" + }, + { + "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo.png", + "hash": "4223357833293521573" + }, + { + "file": "packages/fluentui/docs/src/public/images/grid-page.svg", + "hash": "5845272755759141768" + }, + { + "file": "packages/fluentui/docs/src/public/images/grid.svg", + "hash": "18145659620074116750" + }, + { + "file": "packages/fluentui/docs/src/public/images/leaves/4.png", + "hash": "9698121306957908242" + }, + { + "file": "packages/fluentui/docs/src/public/images/merge-themes.png", + "hash": "10780854662329195358" + }, + { + "file": "packages/fluentui/docs/src/public/images/telemetry-popover.png", + "hash": "14868284227356840303" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/centered-paragraph.png", + "hash": "10969773164831580739" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/image-square.png", + "hash": "16581090418038656475" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/image-text.png", + "hash": "3041367255737086447" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/image.png", + "hash": "747346878701406979" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/media-paragraph-alt.png", + "hash": "4471622377677331550" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/media-paragraph.png", + "hash": "11364423197818185453" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/paragraph.png", + "hash": "9934416593936712637" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/short-paragraph.png", + "hash": "16858210220403627072" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/square-image.png", + "hash": "16889948977609430935" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/text-image.png", + "hash": "7314099801723707747" + }, + { + "file": "packages/fluentui/docs/src/public/images/wireframe/white-image.png", + "hash": "8491941802269190219" + }, + { + "file": "packages/fluentui/docs/src/routes.tsx", + "hash": "548899793948079259" + }, + { + "file": "packages/fluentui/docs/src/types.ts", + "hash": "3690356436343090709" + }, + { + "file": "packages/fluentui/docs/src/utils/componentInfoContext.ts", + "hash": "14141966615007506394" + }, + { + "file": "packages/fluentui/docs/src/utils/exampleKebabNameToFilename.ts", + "hash": "13723917716259720251" + }, + { + "file": "packages/fluentui/docs/src/utils/examplePathToHash.ts", + "hash": "17785041489810962660" + }, + { + "file": "packages/fluentui/docs/src/utils/getComponentGroup.ts", + "hash": "10023209888705973382" + }, + { + "file": "packages/fluentui/docs/src/utils/getComponentPathname.ts", + "hash": "15202045931346218345" + }, + { + "file": "packages/fluentui/docs/src/utils/getFormattedHash.ts", + "hash": "3411076362027193243" + }, + { + "file": "packages/fluentui/docs/src/utils/getInfoForSeeTags.ts", + "hash": "4991392641415004304" + }, + { + "file": "packages/fluentui/docs/src/utils/helpers.tsx", + "hash": "1810044703867440324" + }, + { + "file": "packages/fluentui/docs/src/utils/index.tsx", + "hash": "13806331586645047503" + }, + { + "file": "packages/fluentui/docs/src/utils/parseExamplePath.ts", + "hash": "16706072088821032380" + }, + { + "file": "packages/fluentui/docs/src/utils/scrollToAnchor.ts", + "hash": "17162046583042382009" + }, + { + "file": "packages/fluentui/docs/src/utils/systemColors.ts", + "hash": "12421366474515129353" + }, + { + "file": "packages/fluentui/docs/src/views/Accessibility.tsx", + "hash": "14313422365893815015" + }, + { + "file": "packages/fluentui/docs/src/views/AccessibilityBehaviors.tsx", + "hash": "4339850402107540172" + }, + { + "file": "packages/fluentui/docs/src/views/AutoFocusZoneDoc.tsx", + "hash": "7307499123829744760" + }, + { + "file": "packages/fluentui/docs/src/views/ButtonNameComputation.tsx", + "hash": "12480504237081445002" + }, + { + "file": "packages/fluentui/docs/src/views/CategoryColorPalette.tsx", + "hash": "16022603617278599885" + }, + { + "file": "packages/fluentui/docs/src/views/CategoryColorSchemes.tsx", + "hash": "6249285355893149247" + }, + { + "file": "packages/fluentui/docs/src/views/ColorPalette.tsx", + "hash": "14361136615216977425" + }, + { + "file": "packages/fluentui/docs/src/views/ColorSchemes.tsx", + "hash": "5696274395708458130" + }, + { + "file": "packages/fluentui/docs/src/views/Colors.tsx", + "hash": "18267685702508182429" + }, + { + "file": "packages/fluentui/docs/src/views/FAQ.tsx", + "hash": "9327556336647218856" + }, + { + "file": "packages/fluentui/docs/src/views/FocusTrapZoneDoc.tsx", + "hash": "5869377137718940548" + }, + { + "file": "packages/fluentui/docs/src/views/FocusZoneDoc.tsx", + "hash": "14378636742874247590" + }, + { + "file": "packages/fluentui/docs/src/views/IconViewer.tsx", + "hash": "4798597363505578805" + }, + { + "file": "packages/fluentui/docs/src/views/IntegrateCustomComponents.tsx", + "hash": "6622788869327045608" + }, + { + "file": "packages/fluentui/docs/src/views/Introduction.tsx", + "hash": "11800775140060361692" + }, + { + "file": "packages/fluentui/docs/src/views/Layout.tsx", + "hash": "13766368756168310176" + }, + { + "file": "packages/fluentui/docs/src/views/PageNotFound.tsx", + "hash": "3991127502619281965" + }, + { + "file": "packages/fluentui/docs/src/views/Performance.tsx", + "hash": "6468674394624662279" + }, + { + "file": "packages/fluentui/docs/src/views/PerformanceTests.tsx", + "hash": "11399504417377192266" + }, + { + "file": "packages/fluentui/docs/src/views/QuickStart.tsx", + "hash": "5780470598893800470" + }, + { + "file": "packages/fluentui/docs/src/views/Theming.tsx", + "hash": "645654017210929903" + }, + { + "file": "packages/fluentui/docs/src/views/ThemingExamples.tsx", + "hash": "16084639066734426970" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Accordion/Accordion.stories.tsx", + "hash": "2908197600057391553" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Accordion/AccordionExampleCustomTitle.stories.tsx", + "hash": "16179710846324635696" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Alert/Alert.stories.tsx", + "hash": "10767343889850384505" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleDanger.stories.tsx", + "hash": "15155761001088390209" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleDismissible.stories.tsx", + "hash": "6857463277843533941" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleInfo.stories.tsx", + "hash": "3791698035384736485" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleOof.stories.tsx", + "hash": "2342828234592925900" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleUrgent.stories.tsx", + "hash": "17054968989162414493" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Alert/commonStoryWrightSteps.ts", + "hash": "12721790327113813325" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Animation/Animation.stories.tsx", + "hash": "4181148551675552707" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Attachment/Attachment.stories.tsx", + "hash": "16642720576436713986" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Attachment/AttachmentActionExampleShorthand.stories.tsx", + "hash": "3716793378492317277" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Attachment/AttachmentActionableExampleShorthand.stories.tsx", + "hash": "10698904945091264204" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Attachment/commonStoryWrightSteps.ts", + "hash": "1980623060784981451" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Avatar/Avatar.stories.tsx", + "hash": "11199104726299349165" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Box/Box.stories.tsx", + "hash": "3317368452319233198" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Breadcrumb/Breadcrumb.stories.tsx", + "hash": "14840601935862189481" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/Button.stories.tsx", + "hash": "6775530068213781537" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExample.stories.tsx", + "hash": "13171374555278763771" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExampleContentAndIcon.stories.tsx", + "hash": "16926446962302972010" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExampleDisabled.stories.tsx", + "hash": "8847011181951402328" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExampleTextShorthand.stories.tsx", + "hash": "2002621327211757642" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExampleWithTooltip.stories.tsx", + "hash": "10371603433001352361" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonGroupCircularExampleShorthand.stories.tsx", + "hash": "12419436000181409993" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonGroupExampleShorthand.stories.tsx", + "hash": "594990976777991069" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Button/commonStoryWrightSteps.ts", + "hash": "13040400329679067273" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Card/Card.stories.tsx", + "hash": "15326725132438471431" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Card/CardExampleFocusable.stories.tsx", + "hash": "4156768447595492362" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Card/CardExampleWithPreview.stories.tsx", + "hash": "13478840147494527644" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Carousel/Carousel.stories.tsx", + "hash": "14817153570410016798" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Chat/Chat.stories.tsx", + "hash": "15245816339893430959" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatExample.stories.tsx", + "hash": "1425446495779930194" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatExampleCompact.stories.tsx", + "hash": "13251803643511980833" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatExampleDetails.stories.tsx", + "hash": "7469309566711005970" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatExampleInScrollableShorthand.stories.tsx", + "hash": "14139475853124801776" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatMessageExampleBadge.stories.tsx", + "hash": "6649561404943581914" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Chat/MessageReactionsWithPopup.stories.tsx", + "hash": "2125275788346988499" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Checkbox/Checkbox.stories.tsx", + "hash": "9297591130763312835" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExample.stories.tsx", + "hash": "11981576073340880701" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExampleCheckedMixed.stories.tsx", + "hash": "6988841085427624024" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExampleToggle.stories.tsx", + "hash": "17041672079763277726" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Checkbox/commonStoryWrightSteps.ts", + "hash": "15779623513387323485" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/Datepicker.stories.tsx", + "hash": "16950762239704288937" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerCellExample.stories.tsx", + "hash": "5803726279486497054" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleClearable.stories.tsx", + "hash": "17708742659733322937" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleLocalizationStrings.stories.tsx", + "hash": "9501925128341184053" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleMinMaxDate.stories.tsx", + "hash": "4670026384566950417" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleNoInput.stories.tsx", + "hash": "15040560426204632860" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleRequired.stories.tsx", + "hash": "9370669105425882114" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleRestrictedDates.stories.tsx", + "hash": "5967310705340174608" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleStandaloneCalendarButton.stories.tsx", + "hash": "15633474592787066601" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleToday.stories.tsx", + "hash": "7515178996452324600" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleWeek.stories.tsx", + "hash": "6208343740595701430" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerFormatExample.stories.tsx", + "hash": "16933697073992990458" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerHeaderCellExample.stories.tsx", + "hash": "395850943947398801" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Datepicker/utils.ts", + "hash": "4512443095283466106" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/Dialog.stories.tsx", + "hash": "14959937483740676108" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleBackdrop.stories.tsx", + "hash": "10310462023880394967" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleContent.stories.tsx", + "hash": "15603482485839891799" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleFooter.stories.tsx", + "hash": "8780643621620224764" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleFullWidth.stories.tsx", + "hash": "12526215090824633553" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleHeaderAction.stories.tsx", + "hash": "3608597711373337505" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleRtl.stories.tsx", + "hash": "13913266811227693801" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleScroll.stories.tsx", + "hash": "8727638438511381346" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleZoomContent.stories.tsx", + "hash": "2646322061726867805" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dialog/commonStoryWrightSteps.ts", + "hash": "5035117655443987294" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/Divider.stories.tsx", + "hash": "2336088392374210039" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleColor.stories.tsx", + "hash": "9350984882141975047" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleContent.stories.tsx", + "hash": "15713735976335551192" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleFittedShorthand.stories.tsx", + "hash": "7575714561514384677" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleImportantShorthand.stories.tsx", + "hash": "7934661102588913154" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleRtl.stories.tsx", + "hash": "1919741483563311435" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleRtlAndLtr.stories.tsx", + "hash": "1596553248176707554" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleShorthand.stories.tsx", + "hash": "1836745762037086729" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleSize.stories.tsx", + "hash": "749462362943519466" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/Dropdown.stories.tsx", + "hash": "7380798490621690637" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownClearableExample.stories.tsx", + "hash": "10901930380665357639" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownCustomClearableExample.stories.tsx", + "hash": "16599115945490633817" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExample.stories.tsx", + "hash": "6746037870592578958" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleDisabled.stories.tsx", + "hash": "2548138539726891611" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleHeaderMessage.stories.tsx", + "hash": "7474610870874134535" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleLoading.stories.tsx", + "hash": "4750019353543139535" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleMultiple.stories.tsx", + "hash": "4943875313427980342" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExamplePosition.stories.tsx", + "hash": "5226721723577165111" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleRtl.stories.tsx", + "hash": "4267473619245331597" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleSearchMultiple.stories.tsx", + "hash": "17639475738577957204" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Embed/Embed.stories.tsx", + "hash": "14352696819000693300" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Flex/Flex.stories.tsx", + "hash": "4876944789388275395" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Form/Form.stories.tsx", + "hash": "10319055880626561175" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Grid/Grid.stories.tsx", + "hash": "9747090622440024910" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Header/Header.stories.tsx", + "hash": "11713594437092210982" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Image/Image.stories.tsx", + "hash": "13728569992723813207" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Input/Input.stories.tsx", + "hash": "3117706994055304869" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Input/InputExample.stories.tsx", + "hash": "4259709115869032841" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Input/InputExampleClearable.stories.tsx", + "hash": "13357124920678294349" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Input/InputExampleLabelShorthand.stories.tsx", + "hash": "9403554131586270215" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/ItemLayout/ItemLayout.stories.tsx", + "hash": "11291004727629675957" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Label/Label.stories.tsx", + "hash": "8322646797296035677" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Layout/Layout.stories.tsx", + "hash": "12305168029748552920" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/List/List.stories.tsx", + "hash": "10005658482092092172" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/List/ListExampleNavigable.stories.tsx", + "hash": "2033264551140513567" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/List/ListExampleSelectable.stories.tsx", + "hash": "14791665715268384357" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Loader/Loader.stories.tsx", + "hash": "8685629729393552982" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/Menu.stories.tsx", + "hash": "16522996101712812439" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExample.stories.tsx", + "hash": "7874842300195873502" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleIconOnly.stories.tsx", + "hash": "8811514051065876803" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePointing.stories.tsx", + "hash": "1770809861026398977" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePositioningShorthand.stories.tsx", + "hash": "12047715271551824840" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePositioningUpdateShorthand.stories.tsx", + "hash": "9844235307744556267" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleToolbarShorthand.stories.tsx", + "hash": "12430374699620979123" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleUnderlined.stories.tsx", + "hash": "2828156010439144931" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleVertical.stories.tsx", + "hash": "3930389962001801874" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleVerticalPointing.stories.tsx", + "hash": "2242695733298295403" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithIcons.stories.tsx", + "hash": "7212200464392574991" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithSubMenu.stories.tsx", + "hash": "12177337937806814467" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithSubMenuHover.stories.tsx", + "hash": "13893143021108359130" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithTooltip.stories.tsx", + "hash": "13597485382012665494" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Menu/commonStoryWrightSteps.ts", + "hash": "2988540096115097198" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/MenuButton/MenuButton.stories.tsx", + "hash": "13465199678920766931" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/MenuButton/MenuButtonExampleRtl.stories.tsx", + "hash": "14881944460208222872" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Pill/Pill.stories.tsx", + "hash": "16209955480601373171" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/PopperExamplePositioning.stories.tsx", + "hash": "17108778031370138215" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/PopperExampleVisibilityModifiers.stories.tsx", + "hash": "14496472523165935743" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/Popup.stories.tsx", + "hash": "12982035354835778622" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupControlledExample.stories.tsx", + "hash": "14219445074388559561" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupCustomTargetExample.stories.tsx", + "hash": "16628596992789755265" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupExample.stories.tsx", + "hash": "273093962948343256" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupExampleOffset.stories.tsx", + "hash": "17279656499074273202" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupExampleRtl.stories.tsx", + "hash": "17821588893262132237" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupScrollExample.stories.tsx", + "hash": "7472589559301459687" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Portal/Portal.stories.tsx", + "hash": "18329814951255029859" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Provider/Provider.stories.tsx", + "hash": "1849411383435458007" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Provider/ProviderExampleFocusBorderShorthand.stories.tsx", + "hash": "556263522791941668" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/RadioGroup/RadioGroup.stories.tsx", + "hash": "3002626285268418385" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/RadioGroup/RadioGroupVerticalExample.stories.tsx", + "hash": "1882653333358837562" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Reaction/Reaction.stories.tsx", + "hash": "12197126940858620978" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Segment/Segment.stories.tsx", + "hash": "5752809249559982694" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Skeleton/Skeleton.stories.tsx", + "hash": "452440236106245320" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Slider/Slider.stories.tsx", + "hash": "5261459962563409855" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Slider/SliderExampleRtl.stories.tsx", + "hash": "3914854734713079222" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Slider/SliderExampleShorthand.stories.tsx", + "hash": "9929060552557872639" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Slider/commonStoryWrightSteps.ts", + "hash": "2651038160251967308" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SplitButton/SplitButton.stories.tsx", + "hash": "8519984363954494070" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonExamplePrimaryShorthand.stories.tsx", + "hash": "8422849834173982846" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonExampleSmallContainer.stories.tsx", + "hash": "7689840483461586695" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonPositioningExampleShorthand.stories.tsx", + "hash": "5894858692563044601" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Status/Status.stories.tsx", + "hash": "14667992198519604702" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Status/StatusTypeExampleShorthand.stories.tsx", + "hash": "1420982689125655842" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIcon.stories.tsx", + "hash": "13844315544099130747" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExample.stories.tsx", + "hash": "17296559805843725617" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleCircular.stories.tsx", + "hash": "15602236924226983002" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleColor.stories.tsx", + "hash": "3200142409606409793" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleDisabled.stories.tsx", + "hash": "12086886858916930169" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleSize.stories.tsx", + "hash": "3300404581410564444" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleSpace.stories.tsx", + "hash": "16223808322314871624" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconSetExampleShorthand.stories.tsx", + "hash": "3614912091945043787" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgconExampleBordered.stories.tsx", + "hash": "3229855193108540106" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Table/StaticTable.stories.tsx", + "hash": "6191690595588093057" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Table/Table.stories.tsx", + "hash": "925276430554274312" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Text/Text.stories.tsx", + "hash": "17715685917275609993" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/TextArea/TextArea.stories.tsx", + "hash": "10595951872412841348" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/TextArea/TextAreaExample.stories.tsx", + "hash": "9931006383186087473" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/TextArea/TextAreaExampleInverted.stories.tsx", + "hash": "9373604424649653510" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/Toolbar.stories.tsx", + "hash": "8697615237273139195" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleActionPopupInMenu.stories.tsx", + "hash": "11324502800226063998" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleEditorShorthand.stories.tsx", + "hash": "17289603700788241000" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleMenuShorthand.stories.tsx", + "hash": "7548137847935688166" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleMenuWithSubmenuShorthand.stories.tsx", + "hash": "10032109462229660098" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflow.stories.tsx", + "hash": "3169480496775116993" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflowPositioningShorthand.stories.tsx", + "hash": "18419392648893855481" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflowPositioningShorthandRtl.stories.tsx", + "hash": "3162366872774944657" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExamplePopupInMenu.stories.tsx", + "hash": "3063647798902196619" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExamplePopupShorthand.stories.tsx", + "hash": "4914685865878468106" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleRadioGroupShorthand.stories.tsx", + "hash": "8706800865705494388" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleShorthand.stories.tsx", + "hash": "16747780565214128517" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleVariables.stories.tsx", + "hash": "4469272913605194531" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tooltip/Tooltip.stories.tsx", + "hash": "15792984072210537690" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExample.stories.tsx", + "hash": "15679492189176217862" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleDialogContentShorthand.stories.tsx", + "hash": "13135746159300986169" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExamplePointing.stories.tsx", + "hash": "12950718817577864559" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleRtl.stories.tsx", + "hash": "12279619360757980168" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleTarget.stories.tsx", + "hash": "16157157304124443814" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tree/Tree.stories.tsx", + "hash": "1332342421862574948" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tree/TreeExampleShorthand.stories.tsx", + "hash": "4500943896345512926" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tree/TreeMultiselectExample.stories.tsx", + "hash": "14765947487485746937" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Tree/TreeTitleCustomizationExample.stories.tsx", + "hash": "10973446212198458933" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/Video/Video.stories.tsx", + "hash": "8562641388055379331" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/utilities/getThemeStoryVariant.tsx", + "hash": "15628272627810505572" + }, + { + "file": "packages/fluentui/docs/src/vr-tests/utilities/index.ts", + "hash": "4893167292256393098" + }, + { + "file": "packages/fluentui/docs/tsconfig.json", + "hash": "872626015430090431" + } + ], + "@fluentui/babel-preset-global-context": [ + { + "file": "packages/react-components/babel-preset-global-context/.babelrc.json", + "hash": "8174012058119950495" + }, + { + "file": "packages/react-components/babel-preset-global-context/.eslintrc.json", + "hash": "11018738359270224912" + }, + { + "file": "packages/react-components/babel-preset-global-context/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/babel-preset-global-context/CHANGELOG.json", + "hash": "5417064940796633011" + }, + { + "file": "packages/react-components/babel-preset-global-context/CHANGELOG.md", + "hash": "1179969149095187494" + }, + { + "file": "packages/react-components/babel-preset-global-context/LICENSE", + "hash": "14190649456716274433" + }, + { + "file": "packages/react-components/babel-preset-global-context/README.md", + "hash": "2765826339745082237" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import/code.ts", + "hash": "540836392442536101" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import/output.ts", + "hash": "8855713537863264717" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import/package.json", + "hash": "5845952152817567832" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/code.ts", + "hash": "5755535872738424522" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/output.ts", + "hash": "16344199303412147364" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/package.json", + "hash": "5845952152817567832" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/call-expression/code.ts", + "hash": "6457279347199086388" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/call-expression/output.ts", + "hash": "18170017368785370515" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/call-expression/package.json", + "hash": "5845952152817567832" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/context-selector/code.ts", + "hash": "4212325560787905314" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/context-selector/output.ts", + "hash": "13486019690859880148" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/context-selector/package.json", + "hash": "5845952152817567832" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/member-expression/code.ts", + "hash": "4301657457449045903" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/member-expression/output.ts", + "hash": "2550115010040710680" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/member-expression/package.json", + "hash": "2153100761834963628" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/code.ts", + "hash": "11786811587042864195" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/output.ts", + "hash": "17579592712235480589" + }, + { + "file": "packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/package.json", + "hash": "5845952152817567832" + }, + { + "file": "packages/react-components/babel-preset-global-context/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/babel-preset-global-context/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/babel-preset-global-context/cypress.config.ts", + "hash": "13649228528803766538" + }, + { + "file": "packages/react-components/babel-preset-global-context/etc/babel-preset-global-context.api.md", + "hash": "12834843629459989830" + }, + { + "file": "packages/react-components/babel-preset-global-context/jest.config.js", + "hash": "6273091954231700587" + }, + { + "file": "packages/react-components/babel-preset-global-context/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/babel-preset-global-context/package.json", + "hash": "16706351104698363424", + "deps": [ + "npm:@babel/core", + "npm:@babel/generator", + "npm:@babel/helper-plugin-utils", + "npm:@babel/template", + "npm:@babel/traverse", + "npm:@emotion/hash", + "npm:@swc/helpers", + "npm:find-up", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "@fluentui/global-context" + ] + }, + { + "file": "packages/react-components/babel-preset-global-context/project.json", + "hash": "3325210329699772171" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/Test.cy.tsx", + "hash": "1050395668237072729" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/constants.ts", + "hash": "1647429312599845483" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/index.ts", + "hash": "11265352065572634989" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.0.0/index.ts", + "hash": "6805989268245995993" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.0.0/package.json", + "hash": "7963718438922702732" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.1.0/index.ts", + "hash": "8948839052546966835" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.1.0/package.json", + "hash": "10943502151074734339" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v2.0.0/index.ts", + "hash": "7358917093904128037" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v2.0.0/package.json", + "hash": "16359445692526088068" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.0.0/index.ts", + "hash": "6303143986350152029" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.0.0/package.json", + "hash": "17824096733509037060" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.1.0/index.ts", + "hash": "5082100761918055252" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.1.0/package.json", + "hash": "11003212486459360733" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/transformPlugin.test.ts", + "hash": "13741100513004991440" + }, + { + "file": "packages/react-components/babel-preset-global-context/src/transformPlugin.ts", + "hash": "15750846611983059767" + }, + { + "file": "packages/react-components/babel-preset-global-context/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/babel-preset-global-context/tsconfig.json", + "hash": "5596071008249197618" + }, + { + "file": "packages/react-components/babel-preset-global-context/tsconfig.lib.json", + "hash": "3693653838336081970" + }, + { + "file": "packages/react-components/babel-preset-global-context/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-label": [ + { + "file": "packages/react-components/react-label/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-label/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-label/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-label/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-label/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-label/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-label/CHANGELOG.json", + "hash": "15967607658001790716" + }, + { + "file": "packages/react-components/react-label/CHANGELOG.md", + "hash": "2679890539344327293" + }, + { + "file": "packages/react-components/react-label/LICENSE", + "hash": "12737615233351762377" + }, + { + "file": "packages/react-components/react-label/README.md", + "hash": "16581094109821911033" + }, + { + "file": "packages/react-components/react-label/bundle-size/Label.fixture.js", + "hash": "12714736312436909972" + }, + { + "file": "packages/react-components/react-label/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-label/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-label/docs/MIGRATION.md", + "hash": "8973789574999379237" + }, + { + "file": "packages/react-components/react-label/docs/Spec.md", + "hash": "9483683590469917676" + }, + { + "file": "packages/react-components/react-label/etc/react-label.api.md", + "hash": "9487234802999168387" + }, + { + "file": "packages/react-components/react-label/jest.config.js", + "hash": "15752885123418439598" + }, + { + "file": "packages/react-components/react-label/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-label/package.json", + "hash": "14662469562447826963", + "deps": [ + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-label/project.json", + "hash": "12851828682182600309" + }, + { + "file": "packages/react-components/react-label/src/Label.ts", + "hash": "4712475947755339018" + }, + { + "file": "packages/react-components/react-label/src/components/Label/Label.test.tsx", + "hash": "753838017696023469" + }, + { + "file": "packages/react-components/react-label/src/components/Label/Label.tsx", + "hash": "18398721846668611007" + }, + { + "file": "packages/react-components/react-label/src/components/Label/Label.types.ts", + "hash": "15292574198375936571" + }, + { + "file": "packages/react-components/react-label/src/components/Label/__snapshots__/Label.test.tsx.snap", + "hash": "16100124649470847201" + }, + { + "file": "packages/react-components/react-label/src/components/Label/index.ts", + "hash": "5020371410472237279" + }, + { + "file": "packages/react-components/react-label/src/components/Label/renderLabel.tsx", + "hash": "16436124598547877124" + }, + { + "file": "packages/react-components/react-label/src/components/Label/useLabel.tsx", + "hash": "7056413739845035308" + }, + { + "file": "packages/react-components/react-label/src/components/Label/useLabelStyles.styles.ts", + "hash": "9164626135008328986" + }, + { + "file": "packages/react-components/react-label/src/index.ts", + "hash": "5978491449724056660" + }, + { + "file": "packages/react-components/react-label/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-label/stories/Label/LabelDefault.stories.tsx", + "hash": "14841468930192781303" + }, + { + "file": "packages/react-components/react-label/stories/Label/LabelDescription.md", + "hash": "7798368864438073846" + }, + { + "file": "packages/react-components/react-label/stories/Label/LabelDisabled.stories.tsx", + "hash": "1464439726235154207" + }, + { + "file": "packages/react-components/react-label/stories/Label/LabelRequired.stories.tsx", + "hash": "10394030120071368744" + }, + { + "file": "packages/react-components/react-label/stories/Label/LabelSize.stories.tsx", + "hash": "420198798163138293" + }, + { + "file": "packages/react-components/react-label/stories/Label/LabelWeight.stories.tsx", + "hash": "1458579849047401397" + }, + { + "file": "packages/react-components/react-label/stories/Label/index.stories.tsx", + "hash": "3602262048666383799" + }, + { + "file": "packages/react-components/react-label/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-label/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-label/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-drawer": [ + { + "file": "packages/react-components/react-drawer/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-drawer/.eslintrc.json", + "hash": "2955813886510177408" + }, + { + "file": "packages/react-components/react-drawer/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-drawer/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-drawer/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-drawer/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-drawer/CHANGELOG.json", + "hash": "3334772755866320042" + }, + { + "file": "packages/react-components/react-drawer/CHANGELOG.md", + "hash": "13301267702379936773" + }, + { + "file": "packages/react-components/react-drawer/LICENSE", + "hash": "740118108425064671" + }, + { + "file": "packages/react-components/react-drawer/README.md", + "hash": "11963902967276611543" + }, + { + "file": "packages/react-components/react-drawer/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-drawer/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-drawer/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-drawer/docs/Spec.md", + "hash": "2197025006070261905" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/drawer-anatomy.png", + "hash": "1500223499677642584" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/drawer-content-anatomy.png", + "hash": "7337310129908385365" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/drawer-footer-anatomy.png", + "hash": "15968075167955159306" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/drawer-header-anatomy-2.png", + "hash": "15111955334914916166" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/drawer-header-anatomy.png", + "hash": "3803359533875519043" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/inline.png", + "hash": "5978580365629415041" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/left-drawer-entering.png", + "hash": "13990966208435724679" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/left-drawer-exiting.png", + "hash": "10933889414890912981" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/overlay.png", + "hash": "10025973739764391600" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/right-drawer-entering.png", + "hash": "11906352803476453494" + }, + { + "file": "packages/react-components/react-drawer/docs/assets/right-drawer-exiting.png", + "hash": "6335665869796474774" + }, + { + "file": "packages/react-components/react-drawer/etc/react-drawer.api.md", + "hash": "13302017186739810777" + }, + { + "file": "packages/react-components/react-drawer/jest.config.js", + "hash": "4250780866251609094" + }, + { + "file": "packages/react-components/react-drawer/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-drawer/package.json", + "hash": "12517140293057050843", + "deps": [ + "@fluentui/react-dialog", + "@fluentui/react-jsx-runtime", + "@fluentui/react-motion-preview", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "@fluentui/scripts-cypress", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-drawer/project.json", + "hash": "9919233202400054757" + }, + { + "file": "packages/react-components/react-drawer/src/Drawer.ts", + "hash": "11221601650910664334" + }, + { + "file": "packages/react-components/react-drawer/src/DrawerBody.ts", + "hash": "7338982733713392097" + }, + { + "file": "packages/react-components/react-drawer/src/DrawerFooter.ts", + "hash": "5695661765252072865" + }, + { + "file": "packages/react-components/react-drawer/src/DrawerHeader.ts", + "hash": "13535607987439298798" + }, + { + "file": "packages/react-components/react-drawer/src/DrawerHeaderNavigation.ts", + "hash": "6953221975415457948" + }, + { + "file": "packages/react-components/react-drawer/src/DrawerHeaderTitle.ts", + "hash": "16108223116441377991" + }, + { + "file": "packages/react-components/react-drawer/src/InlineDrawer.ts", + "hash": "3467980062468343437" + }, + { + "file": "packages/react-components/react-drawer/src/OverlayDrawer.ts", + "hash": "6005987632714369128" + }, + { + "file": "packages/react-components/react-drawer/src/components/Drawer/Drawer.cy.tsx", + "hash": "9976548186562610025" + }, + { + "file": "packages/react-components/react-drawer/src/components/Drawer/Drawer.test.tsx", + "hash": "3258138558465537535" + }, + { + "file": "packages/react-components/react-drawer/src/components/Drawer/Drawer.tsx", + "hash": "14189538430868974037" + }, + { + "file": "packages/react-components/react-drawer/src/components/Drawer/Drawer.types.ts", + "hash": "7596568606038435688" + }, + { + "file": "packages/react-components/react-drawer/src/components/Drawer/index.ts", + "hash": "8903003969802349622" + }, + { + "file": "packages/react-components/react-drawer/src/components/Drawer/renderDrawer.tsx", + "hash": "1962203168411743376" + }, + { + "file": "packages/react-components/react-drawer/src/components/Drawer/useDrawer.ts", + "hash": "16023591426944063555" + }, + { + "file": "packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.styles.ts", + "hash": "3440636274415578957" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.cy.tsx", + "hash": "14312254338312974357" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.test.tsx", + "hash": "11124466918374216574" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.tsx", + "hash": "9899299681699977181" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.types.ts", + "hash": "5970414215130956080" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerBody/index.ts", + "hash": "2213989776887775833" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerBody/renderDrawerBody.tsx", + "hash": "12051762259788356439" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerBody/useDrawerBody.ts", + "hash": "5951737292486433185" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerBody/useDrawerBodyStyles.styles.ts", + "hash": "14117735045889604548" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.cy.tsx", + "hash": "4176957745829325863" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.test.tsx", + "hash": "6315412814367390570" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.tsx", + "hash": "10474972272773722473" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.types.ts", + "hash": "1254037035957768607" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerFooter/index.ts", + "hash": "2668743984619182660" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerFooter/renderDrawerFooter.tsx", + "hash": "2364940287036197384" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerFooter/useDrawerFooter.ts", + "hash": "2629575781960125765" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerFooter/useDrawerFooterStyles.styles.ts", + "hash": "14195586442062588538" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.cy.tsx", + "hash": "2720505955624318008" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.test.tsx", + "hash": "13287733185764092304" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.tsx", + "hash": "15198858964118093034" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.types.ts", + "hash": "1981631250559778022" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeader/index.ts", + "hash": "14935830325701069661" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeader/renderDrawerHeader.tsx", + "hash": "8637027449203313542" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeader/useDrawerHeader.ts", + "hash": "5439588260000478116" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeader/useDrawerHeaderStyles.styles.ts", + "hash": "3600667656694694657" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.cy.tsx", + "hash": "6842686981357806109" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.test.tsx", + "hash": "286593939728550244" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.tsx", + "hash": "13907663498001911842" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.types.ts", + "hash": "15748492738947212670" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/index.ts", + "hash": "16525415580323529597" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/renderDrawerHeaderNavigation.tsx", + "hash": "2030483516903315656" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/useDrawerHeaderNavigation.ts", + "hash": "3714757292895032918" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/useDrawerHeaderNavigationStyles.styles.ts", + "hash": "14688416647222067346" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.cy.tsx", + "hash": "4874390888203798273" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.test.tsx", + "hash": "4659425440310179178" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.tsx", + "hash": "9759918053055998438" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.types.ts", + "hash": "6708213319646751915" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/index.ts", + "hash": "553152765299639280" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/renderDrawerHeaderTitle.tsx", + "hash": "2880605945908819152" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/useDrawerHeaderTitle.ts", + "hash": "16962668464797352460" + }, + { + "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/useDrawerHeaderTitleStyles.styles.ts", + "hash": "4462460874600345803" + }, + { + "file": "packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.cy.tsx", + "hash": "10935299378541551079" + }, + { + "file": "packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.test.tsx", + "hash": "5459550878774982041" + }, + { + "file": "packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.tsx", + "hash": "2316461845720527923" + }, + { + "file": "packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.types.ts", + "hash": "12211214710166012354" + }, + { + "file": "packages/react-components/react-drawer/src/components/InlineDrawer/index.ts", + "hash": "12743325615369778070" + }, + { + "file": "packages/react-components/react-drawer/src/components/InlineDrawer/renderInlineDrawer.tsx", + "hash": "12410200335359328618" + }, + { + "file": "packages/react-components/react-drawer/src/components/InlineDrawer/useInlineDrawer.ts", + "hash": "7131000520997258422" + }, + { + "file": "packages/react-components/react-drawer/src/components/InlineDrawer/useInlineDrawerStyles.styles.ts", + "hash": "3573487867951650531" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.cy.tsx", + "hash": "8908117202890831376" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.test.tsx", + "hash": "4147783508785600839" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.tsx", + "hash": "15373047995135411071" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.types.ts", + "hash": "193052991178562131" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.tsx", + "hash": "5497055863831459516" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.types.ts", + "hash": "14701729419117754100" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/index.ts", + "hash": "9425620489322803056" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/useOverlayDrawerSurfaceStyles.styles.ts", + "hash": "4555814239666234639" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/index.ts", + "hash": "17879692229770633251" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/renderOverlayDrawer.tsx", + "hash": "2556628436156881064" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/useOverlayDrawer.ts", + "hash": "7605551203464800685" + }, + { + "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/useOverlayDrawerStyles.styles.ts", + "hash": "10580201821703971096" + }, + { + "file": "packages/react-components/react-drawer/src/e2e/DrawerShared.tsx", + "hash": "936115772091026838" + }, + { + "file": "packages/react-components/react-drawer/src/index.ts", + "hash": "775526746411328515" + }, + { + "file": "packages/react-components/react-drawer/src/shared/DrawerBase.types.ts", + "hash": "11496680792337184124" + }, + { + "file": "packages/react-components/react-drawer/src/shared/useDrawerBaseStyles.styles.ts", + "hash": "16702909432180860514" + }, + { + "file": "packages/react-components/react-drawer/src/shared/useDrawerDefaultProps.ts", + "hash": "12462017753033126715" + }, + { + "file": "packages/react-components/react-drawer/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerAlwaysOpen.stories.tsx", + "hash": "17441129776678279830" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerBestPractices.md", + "hash": "8576535028433213605" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerCustomSize.stories.tsx", + "hash": "12659231673979654430" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerDefault.stories.tsx", + "hash": "6085860333003416708" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerDescription.md", + "hash": "9808324706794076649" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerMotionCustom.stories.tsx", + "hash": "9523834993317055105" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerMotionDisabled.stories.tsx", + "hash": "13839616447163935751" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerMultipleLevels.stories.tsx", + "hash": "9540883675482678570" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerPosition.stories.tsx", + "hash": "2394237202950561636" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerPreventClose.stories.tsx", + "hash": "11771866130608760234" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerResizable.stories.tsx", + "hash": "3845362180623033104" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerResponsive.stories.tsx", + "hash": "3565589653073552824" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerSeparator.stories.tsx", + "hash": "12197121116589288703" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerSize.stories.tsx", + "hash": "6072210477412842010" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerWithNavigation.stories.tsx", + "hash": "17182879587578834946" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerWithScroll.stories.tsx", + "hash": "17078029246368551938" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/DrawerWithTitle.stories.tsx", + "hash": "10695556627122993750" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/InlineDrawer.stories.tsx", + "hash": "7668429865114850623" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/OverlayDrawer.stories.tsx", + "hash": "5354320336788476906" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/OverlayDrawerNoModal.stories.tsx", + "hash": "10703118439062497997" + }, + { + "file": "packages/react-components/react-drawer/stories/Drawer/index.stories.tsx", + "hash": "13012963814919023462" + }, + { + "file": "packages/react-components/react-drawer/tsconfig.cy.json", + "hash": "18261064269935263965" + }, + { + "file": "packages/react-components/react-drawer/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-drawer/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-drawer/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-gulp": [ + { + "file": "scripts/gulp/.eslintrc.json", + "hash": "1780714561029609382" + }, + { + "file": "scripts/gulp/jest.config.js", + "hash": "5062185366330253835" + }, + { + "file": "scripts/gulp/package.json", + "hash": "620703661800637679", + "deps": [ + "@fluentui/scripts-monorepo", + "@fluentui/scripts-utils", + "@fluentui/scripts-prettier", + "@fluentui/scripts-puppeteer", + "@fluentui/scripts-babel", + "@fluentui/scripts-projects-test" + ] + }, + { + "file": "scripts/gulp/project.json", + "hash": "3096408817704266345" + }, + { + "file": "scripts/gulp/src/config.ts", + "hash": "1152274046574746097" + }, + { + "file": "scripts/gulp/src/index.ts", + "hash": "7155269880542520414" + }, + { + "file": "scripts/gulp/src/plugins/gulp-component-menu-behaviors.ts", + "hash": "14794995339262339082" + }, + { + "file": "scripts/gulp/src/plugins/gulp-cypress.ts", + "hash": "594034633777443767" + }, + { + "file": "scripts/gulp/src/plugins/gulp-doctoc.ts", + "hash": "16179003157117981064" + }, + { + "file": "scripts/gulp/src/plugins/gulp-example-menu.ts", + "hash": "16356696777619040236" + }, + { + "file": "scripts/gulp/src/plugins/gulp-example-source.ts", + "hash": "385517391147554585" + }, + { + "file": "scripts/gulp/src/plugins/gulp-jest.ts", + "hash": "8955289815280817773" + }, + { + "file": "scripts/gulp/src/plugins/gulp-react-docgen.ts", + "hash": "6408676183752597483" + }, + { + "file": "scripts/gulp/src/plugins/gulp-webpack.ts", + "hash": "9370131498478486856" + }, + { + "file": "scripts/gulp/src/plugins/util/docgen.ts", + "hash": "10272339795154204934" + }, + { + "file": "scripts/gulp/src/plugins/util/docs-types.ts", + "hash": "11426038160844139699" + }, + { + "file": "scripts/gulp/src/plugins/util/getComponentInfo.ts", + "hash": "2980768138909657298" + }, + { + "file": "scripts/gulp/src/plugins/util/getRelativePathToSourceFile.ts", + "hash": "4636174730281639056" + }, + { + "file": "scripts/gulp/src/plugins/util/getShorthandInfo.ts", + "hash": "82871639742268498" + }, + { + "file": "scripts/gulp/src/plugins/util/index.ts", + "hash": "10847390264829094108" + }, + { + "file": "scripts/gulp/src/plugins/util/parseBuffer.ts", + "hash": "4873230922314432063" + }, + { + "file": "scripts/gulp/src/plugins/util/parseDefaultPropsValues.ts", + "hash": "5238221904296974450" + }, + { + "file": "scripts/gulp/src/plugins/util/parseDocSection.ts", + "hash": "13639522712631005195" + }, + { + "file": "scripts/gulp/src/plugins/util/parseDocblock.ts", + "hash": "5229957627777581211" + }, + { + "file": "scripts/gulp/src/plugins/util/parseType.ts", + "hash": "2020153800369620730" + }, + { + "file": "scripts/gulp/src/plugins/util/parseTypeAnnotation.ts", + "hash": "17653591491975389214" + }, + { + "file": "scripts/gulp/src/plugins/util/tsLanguageService.ts", + "hash": "15783400455653817887" + }, + { + "file": "scripts/gulp/src/preset.ts", + "hash": "2711454985674092336" + }, + { + "file": "scripts/gulp/src/tasks/browserAdapters.ts", + "hash": "4567420568985195828" + }, + { + "file": "scripts/gulp/src/tasks/bundle.ts", + "hash": "16595672668696770467" + }, + { + "file": "scripts/gulp/src/tasks/component-info.ts", + "hash": "9646456630648543387" + }, + { + "file": "scripts/gulp/src/tasks/docs.ts", + "hash": "4428791750588770695" + }, + { + "file": "scripts/gulp/src/tasks/serve.ts", + "hash": "2927945412709591114" + }, + { + "file": "scripts/gulp/src/tasks/stats.ts", + "hash": "10337716767911269452" + }, + { + "file": "scripts/gulp/src/tasks/test-circulars/config.ts", + "hash": "3696039267764445384" + }, + { + "file": "scripts/gulp/src/tasks/test-circulars/index.ts", + "hash": "4002982004987266417" + }, + { + "file": "scripts/gulp/src/tasks/test-circulars/utils.ts", + "hash": "10987622128974484970" + }, + { + "file": "scripts/gulp/src/tasks/test-dependencies/index.ts", + "hash": "9734234285232294639" + }, + { + "file": "scripts/gulp/src/tasks/test-dependencies/utils.ts", + "hash": "11287650727847866426" + }, + { + "file": "scripts/gulp/src/tasks/test-e2e.ts", + "hash": "3235213262210072558" + }, + { + "file": "scripts/gulp/src/tasks/test-unit.ts", + "hash": "9289024222620648246" + }, + { + "file": "scripts/gulp/src/webpack/webpack.config.e2e.ts", + "hash": "13987955866919355449" + }, + { + "file": "scripts/gulp/src/webpack/webpack.config.stats.ts", + "hash": "17071462924856297081" + }, + { + "file": "scripts/gulp/src/webpack/webpack.config.ts", + "hash": "8112596741759733054" + }, + { + "file": "scripts/gulp/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/gulp/tsconfig.lib.json", + "hash": "10054891788177936356" + }, + { + "file": "scripts/gulp/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/react-link": [ + { + "file": "packages/react-components/react-link/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-link/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-link/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-link/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-link/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-link/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-link/CHANGELOG.json", + "hash": "3962037913672436497" + }, + { + "file": "packages/react-components/react-link/CHANGELOG.md", + "hash": "18194813021463348387" + }, + { + "file": "packages/react-components/react-link/LICENSE", + "hash": "9832907009994579246" + }, + { + "file": "packages/react-components/react-link/README.md", + "hash": "6792617757650079592" + }, + { + "file": "packages/react-components/react-link/bundle-size/Label.fixture.js", + "hash": "9121178836648557554" + }, + { + "file": "packages/react-components/react-link/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-link/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-link/docs/MIGRATION.md", + "hash": "15493690066707415440" + }, + { + "file": "packages/react-components/react-link/docs/SPEC.md", + "hash": "12261141108370125154" + }, + { + "file": "packages/react-components/react-link/etc/react-link.api.md", + "hash": "9312917724489390831" + }, + { + "file": "packages/react-components/react-link/jest.config.js", + "hash": "11862231451554250380" + }, + { + "file": "packages/react-components/react-link/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-link/package.json", + "hash": "12694717080936649426", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/a11y-testing", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-link/project.json", + "hash": "11422930109814152197" + }, + { + "file": "packages/react-components/react-link/src/Link.ts", + "hash": "7031503808279670627" + }, + { + "file": "packages/react-components/react-link/src/components/Link/Link.test.tsx", + "hash": "17540359287886314045" + }, + { + "file": "packages/react-components/react-link/src/components/Link/Link.tsx", + "hash": "3711147948241012629" + }, + { + "file": "packages/react-components/react-link/src/components/Link/Link.types.ts", + "hash": "3756492797898260450" + }, + { + "file": "packages/react-components/react-link/src/components/Link/__snapshots__/Link.test.tsx.snap", + "hash": "18030217870111124529" + }, + { + "file": "packages/react-components/react-link/src/components/Link/index.ts", + "hash": "4320358890099633430" + }, + { + "file": "packages/react-components/react-link/src/components/Link/renderLink.tsx", + "hash": "9789431458503251801" + }, + { + "file": "packages/react-components/react-link/src/components/Link/useLink.ts", + "hash": "17399821058666932648" + }, + { + "file": "packages/react-components/react-link/src/components/Link/useLinkState.ts", + "hash": "3824048378179671478" + }, + { + "file": "packages/react-components/react-link/src/components/Link/useLinkStyles.styles.ts", + "hash": "300714945188623948" + }, + { + "file": "packages/react-components/react-link/src/index.ts", + "hash": "4845491281378724120" + }, + { + "file": "packages/react-components/react-link/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkAppearance.stories.tsx", + "hash": "4374522065294609674" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkAsButton.stories.tsx", + "hash": "7456747567086542617" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkAsSpan.stories.tsx", + "hash": "3652403217738880018" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkDefault.stories.tsx", + "hash": "15067384076845671705" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkDescription.md", + "hash": "7236969301982012236" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkDisabled.stories.tsx", + "hash": "4914115128158846428" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkDisabledFocusable.stories.tsx", + "hash": "14219911784243672353" + }, + { + "file": "packages/react-components/react-link/stories/Link/LinkInline.stories.tsx", + "hash": "9590348700846670455" + }, + { + "file": "packages/react-components/react-link/stories/Link/index.stories.tsx", + "hash": "1901570717605656364" + }, + { + "file": "packages/react-components/react-link/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-link/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-link/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-progress": [ + { + "file": "packages/react-components/react-progress/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-progress/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-progress/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-progress/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-progress/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-progress/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-progress/CHANGELOG.json", + "hash": "9943518116241887368" + }, + { + "file": "packages/react-components/react-progress/CHANGELOG.md", + "hash": "2919392667075419280" + }, + { + "file": "packages/react-components/react-progress/LICENSE", + "hash": "14720059712718439480" + }, + { + "file": "packages/react-components/react-progress/README.md", + "hash": "13443295487418840260" + }, + { + "file": "packages/react-components/react-progress/bundle-size/ProgressBar.fixture.js", + "hash": "15597136298352513674" + }, + { + "file": "packages/react-components/react-progress/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-progress/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-progress/docs/MIGRATION.md", + "hash": "17724398627946676243" + }, + { + "file": "packages/react-components/react-progress/docs/Spec.md", + "hash": "438580243654009753" + }, + { + "file": "packages/react-components/react-progress/etc/react-progress.api.md", + "hash": "2044101360763309253" + }, + { + "file": "packages/react-components/react-progress/jest.config.js", + "hash": "15037937544956502248" + }, + { + "file": "packages/react-components/react-progress/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-progress/package.json", + "hash": "11790477356992419563", + "deps": [ + "@fluentui/react-field", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-progress/project.json", + "hash": "5040085670575357633" + }, + { + "file": "packages/react-components/react-progress/src/ProgressBar.ts", + "hash": "364130850726833580" + }, + { + "file": "packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.test.tsx", + "hash": "14575183606779621510" + }, + { + "file": "packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.tsx", + "hash": "4512060500927164739" + }, + { + "file": "packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.types.ts", + "hash": "9316131922315655010" + }, + { + "file": "packages/react-components/react-progress/src/components/ProgressBar/index.ts", + "hash": "4919717671078177086" + }, + { + "file": "packages/react-components/react-progress/src/components/ProgressBar/renderProgressBar.tsx", + "hash": "11139269590983552304" + }, + { + "file": "packages/react-components/react-progress/src/components/ProgressBar/useProgressBar.tsx", + "hash": "17486562887893116895" + }, + { + "file": "packages/react-components/react-progress/src/components/ProgressBar/useProgressBarStyles.styles.ts", + "hash": "2415416680026256368" + }, + { + "file": "packages/react-components/react-progress/src/index.ts", + "hash": "1052162520942589490" + }, + { + "file": "packages/react-components/react-progress/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-progress/src/utils/clampMax.test.ts", + "hash": "695087334567732346" + }, + { + "file": "packages/react-components/react-progress/src/utils/clampMax.ts", + "hash": "12888234946148193959" + }, + { + "file": "packages/react-components/react-progress/src/utils/clampValue.test.ts", + "hash": "5779163804989289991" + }, + { + "file": "packages/react-components/react-progress/src/utils/clampValue.ts", + "hash": "16938278361569231669" + }, + { + "file": "packages/react-components/react-progress/src/utils/index.ts", + "hash": "3102189156362851491" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarBestPractices.md", + "hash": "1479531832796336749" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarColor.stories.tsx", + "hash": "13098706062395114051" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarDefault.stories.tsx", + "hash": "3754883609787042687" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarDescription.md", + "hash": "9681824475682879438" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarIndeterminate.stories.tsx", + "hash": "1451847449685400166" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarMax.stories.tsx", + "hash": "56730184557657606" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarShape.stories.tsx", + "hash": "4732385307276466804" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarThickness.stories.tsx", + "hash": "7152955996834570477" + }, + { + "file": "packages/react-components/react-progress/stories/ProgressBar/index.stories.tsx", + "hash": "11861079216936079150" + }, + { + "file": "packages/react-components/react-progress/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-progress/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-progress/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-button": [ + { + "file": "packages/react-components/react-button/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-button/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-button/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-button/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-button/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-button/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-button/CHANGELOG.json", + "hash": "17401411806497239454" + }, + { + "file": "packages/react-components/react-button/CHANGELOG.md", + "hash": "3853339592724016178" + }, + { + "file": "packages/react-components/react-button/LICENSE", + "hash": "15868623612285827359" + }, + { + "file": "packages/react-components/react-button/README.md", + "hash": "5927466127429275027" + }, + { + "file": "packages/react-components/react-button/bundle-size/Button.fixture.js", + "hash": "11196911714669572347" + }, + { + "file": "packages/react-components/react-button/bundle-size/CompoundButton.fixture.js", + "hash": "15437191715127790243" + }, + { + "file": "packages/react-components/react-button/bundle-size/MenuButton.fixture.js", + "hash": "16399742671333906926" + }, + { + "file": "packages/react-components/react-button/bundle-size/SplitButton.fixture.js", + "hash": "846732347456677371" + }, + { + "file": "packages/react-components/react-button/bundle-size/ToggleButton.fixture.js", + "hash": "17911106882285084354" + }, + { + "file": "packages/react-components/react-button/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-button/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-button/docs/MIGRATION.md", + "hash": "10748989622082685018" + }, + { + "file": "packages/react-components/react-button/docs/SPEC.md", + "hash": "12520006170877160397" + }, + { + "file": "packages/react-components/react-button/etc/react-button.api.md", + "hash": "11861696843617479842" + }, + { + "file": "packages/react-components/react-button/jest.config.js", + "hash": "18021156044048013372" + }, + { + "file": "packages/react-components/react-button/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-button/package.json", + "hash": "10168246310506993332", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-aria", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/a11y-testing", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-button/project.json", + "hash": "16431721494337088002" + }, + { + "file": "packages/react-components/react-button/src/Button.tsx", + "hash": "8626324674700708044" + }, + { + "file": "packages/react-components/react-button/src/CompoundButton.ts", + "hash": "153412803858965389" + }, + { + "file": "packages/react-components/react-button/src/MenuButton.ts", + "hash": "6393132779025454217" + }, + { + "file": "packages/react-components/react-button/src/SplitButton.ts", + "hash": "7296004887201615859" + }, + { + "file": "packages/react-components/react-button/src/ToggleButton.ts", + "hash": "9087773820539969166" + }, + { + "file": "packages/react-components/react-button/src/components/Button/Button.test.tsx", + "hash": "13234018766360395070" + }, + { + "file": "packages/react-components/react-button/src/components/Button/Button.tsx", + "hash": "7131784988858573117" + }, + { + "file": "packages/react-components/react-button/src/components/Button/Button.types.ts", + "hash": "18132117076552392300" + }, + { + "file": "packages/react-components/react-button/src/components/Button/index.ts", + "hash": "14415446849596795722" + }, + { + "file": "packages/react-components/react-button/src/components/Button/renderButton.tsx", + "hash": "3788273996539907589" + }, + { + "file": "packages/react-components/react-button/src/components/Button/useButton.ts", + "hash": "18239797257817765877" + }, + { + "file": "packages/react-components/react-button/src/components/Button/useButtonStyles.styles.ts", + "hash": "16766982605993587713" + }, + { + "file": "packages/react-components/react-button/src/components/CompoundButton/CompoundButton.test.tsx", + "hash": "17699079322699347030" + }, + { + "file": "packages/react-components/react-button/src/components/CompoundButton/CompoundButton.tsx", + "hash": "12527753452428197456" + }, + { + "file": "packages/react-components/react-button/src/components/CompoundButton/CompoundButton.types.ts", + "hash": "10403113155713189779" + }, + { + "file": "packages/react-components/react-button/src/components/CompoundButton/index.ts", + "hash": "17693470936175651660" + }, + { + "file": "packages/react-components/react-button/src/components/CompoundButton/renderCompoundButton.tsx", + "hash": "9392084413752564294" + }, + { + "file": "packages/react-components/react-button/src/components/CompoundButton/useCompoundButton.ts", + "hash": "11789753697687684577" + }, + { + "file": "packages/react-components/react-button/src/components/CompoundButton/useCompoundButtonStyles.styles.ts", + "hash": "4022940355968932853" + }, + { + "file": "packages/react-components/react-button/src/components/MenuButton/MenuButton.test.tsx", + "hash": "5565395958656768489" + }, + { + "file": "packages/react-components/react-button/src/components/MenuButton/MenuButton.tsx", + "hash": "5952211904245417062" + }, + { + "file": "packages/react-components/react-button/src/components/MenuButton/MenuButton.types.ts", + "hash": "12380706571984102748" + }, + { + "file": "packages/react-components/react-button/src/components/MenuButton/index.ts", + "hash": "11687749806294814925" + }, + { + "file": "packages/react-components/react-button/src/components/MenuButton/renderMenuButton.tsx", + "hash": "2242695625944355651" + }, + { + "file": "packages/react-components/react-button/src/components/MenuButton/useMenuButton.tsx", + "hash": "4984356046412164557" + }, + { + "file": "packages/react-components/react-button/src/components/MenuButton/useMenuButtonStyles.styles.ts", + "hash": "1835897370503685351" + }, + { + "file": "packages/react-components/react-button/src/components/SplitButton/SplitButton.test.tsx", + "hash": "2434348402973527636" + }, + { + "file": "packages/react-components/react-button/src/components/SplitButton/SplitButton.tsx", + "hash": "1351240890806868292" + }, + { + "file": "packages/react-components/react-button/src/components/SplitButton/SplitButton.types.ts", + "hash": "16806214858697550880" + }, + { + "file": "packages/react-components/react-button/src/components/SplitButton/index.ts", + "hash": "9834531422308196215" + }, + { + "file": "packages/react-components/react-button/src/components/SplitButton/renderSplitButton.tsx", + "hash": "14418301058346299709" + }, + { + "file": "packages/react-components/react-button/src/components/SplitButton/useSplitButton.ts", + "hash": "563564198843507208" + }, + { + "file": "packages/react-components/react-button/src/components/SplitButton/useSplitButtonStyles.styles.ts", + "hash": "4700348312000575170" + }, + { + "file": "packages/react-components/react-button/src/components/ToggleButton/ToggleButton.test.tsx", + "hash": "13746632596170630901" + }, + { + "file": "packages/react-components/react-button/src/components/ToggleButton/ToggleButton.tsx", + "hash": "8650462963352411057" + }, + { + "file": "packages/react-components/react-button/src/components/ToggleButton/ToggleButton.types.ts", + "hash": "3341137315114432486" + }, + { + "file": "packages/react-components/react-button/src/components/ToggleButton/index.ts", + "hash": "510559736809727155" + }, + { + "file": "packages/react-components/react-button/src/components/ToggleButton/renderToggleButton.tsx", + "hash": "10961580694544111609" + }, + { + "file": "packages/react-components/react-button/src/components/ToggleButton/useToggleButton.ts", + "hash": "7201515539310652846" + }, + { + "file": "packages/react-components/react-button/src/components/ToggleButton/useToggleButtonStyles.styles.ts", + "hash": "16388660867399193722" + }, + { + "file": "packages/react-components/react-button/src/contexts/ButtonContext.ts", + "hash": "16773333999453776678" + }, + { + "file": "packages/react-components/react-button/src/contexts/index.ts", + "hash": "13132760355664250784" + }, + { + "file": "packages/react-components/react-button/src/index.ts", + "hash": "13339233335156002081" + }, + { + "file": "packages/react-components/react-button/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-button/src/utils/index.ts", + "hash": "250554734181228029" + }, + { + "file": "packages/react-components/react-button/src/utils/useToggleState.test.ts", + "hash": "16429899316216024046" + }, + { + "file": "packages/react-components/react-button/src/utils/useToggleState.ts", + "hash": "18013134462047555620" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonAppearance.stories.tsx", + "hash": "18327432462363093567" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonBestPractices.md", + "hash": "15966904879684831389" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonDefault.stories.tsx", + "hash": "16309520140968874517" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonDescription.md", + "hash": "16532145145344636837" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonDisabled.stories.tsx", + "hash": "14560255335512811980" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonIcon.stories.tsx", + "hash": "18026469457173329885" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonShape.stories.tsx", + "hash": "10293515556003357551" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonSize.stories.tsx", + "hash": "10198198054469729891" + }, + { + "file": "packages/react-components/react-button/stories/Button/ButtonWithLongText.stories.tsx", + "hash": "5582045194995381624" + }, + { + "file": "packages/react-components/react-button/stories/Button/index.stories.tsx", + "hash": "10629806941826268136" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonAppearance.stories.tsx", + "hash": "11751323304847853244" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonDefault.stories.tsx", + "hash": "6554013591312608741" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonDescription.md", + "hash": "11239283790606707108" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonDisabled.stories.tsx", + "hash": "14823921486630978871" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonIcon.stories.tsx", + "hash": "8025939386619198410" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonShape.stories.tsx", + "hash": "12767597618316035307" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonSize.stories.tsx", + "hash": "11351827693353756555" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonWithLongText.stories.tsx", + "hash": "10636944211269219355" + }, + { + "file": "packages/react-components/react-button/stories/CompoundButton/index.stories.tsx", + "hash": "18420395090802840095" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonAppearance.stories.tsx", + "hash": "11772149593198224779" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonDefault.stories.tsx", + "hash": "14407394285640449777" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonDescription.md", + "hash": "7709633773581627486" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonDisabled.stories.tsx", + "hash": "172889004189161693" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonIcon.stories.tsx", + "hash": "12403472180433417597" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonShape.stories.tsx", + "hash": "1625891071317679416" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonSize.stories.tsx", + "hash": "15865604958975837898" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonSizeLarge.stories.tsx", + "hash": "15800808442274998205" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonSizeMedium.stories.tsx", + "hash": "14883010632519272607" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonSizeSmall.stories.tsx", + "hash": "9004306881864596423" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonWithLongText.stories.tsx", + "hash": "1089695309675211024" + }, + { + "file": "packages/react-components/react-button/stories/MenuButton/index.stories.tsx", + "hash": "12902323920864641887" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonAppearance.stories.tsx", + "hash": "16001178453275385358" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonDefault.stories.tsx", + "hash": "16390183972199802935" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonDescription.md", + "hash": "1218508324013847579" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonDisabled.stories.tsx", + "hash": "6999498071146279140" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonIcon.stories.tsx", + "hash": "3096822792677050391" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonShape.stories.tsx", + "hash": "17602511593093438153" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonSize.stories.tsx", + "hash": "6396106470924168525" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonSizeLarge.stories.tsx", + "hash": "7470419675292342106" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonSizeMedium.stories.tsx", + "hash": "16591027078031376997" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonSizeSmall.stories.tsx", + "hash": "18281348385773762433" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonWithLongText.stories.tsx", + "hash": "16343968451839078562" + }, + { + "file": "packages/react-components/react-button/stories/SplitButton/index.stories.tsx", + "hash": "12187964862290984524" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonAppearance.stories.tsx", + "hash": "17780270857595078579" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonChecked.stories.tsx", + "hash": "14152692013864493219" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonDefault.stories.tsx", + "hash": "1097715229128497190" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonDescription.md", + "hash": "12813726539373137853" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonDisabled.stories.tsx", + "hash": "18227486994944172131" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonIcon.stories.tsx", + "hash": "18321466124278295375" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonShape.stories.tsx", + "hash": "14209255492890451017" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonSize.stories.tsx", + "hash": "4734052364110908515" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonWithLongText.stories.tsx", + "hash": "16462181566839467831" + }, + { + "file": "packages/react-components/react-button/stories/ToggleButton/index.stories.tsx", + "hash": "377636607901370479" + }, + { + "file": "packages/react-components/react-button/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-button/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-button/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-github": [ + { + "file": "scripts/github/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/github/jest.config.js", + "hash": "8128260008604718717" + }, + { + "file": "scripts/github/package.json", + "hash": "5070381828275052321" + }, + { + "file": "scripts/github/project.json", + "hash": "6576404163705013612" + }, + { + "file": "scripts/github/src/constants.ts", + "hash": "10180569673778437792" + }, + { + "file": "scripts/github/src/index.ts", + "hash": "17300117057778175664" + }, + { + "file": "scripts/github/src/pullRequests.ts", + "hash": "4776695204948789570" + }, + { + "file": "scripts/github/src/types.ts", + "hash": "10055482745627176296" + }, + { + "file": "scripts/github/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/github/tsconfig.lib.json", + "hash": "15222053984038389170" + }, + { + "file": "scripts/github/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/scripts-puppeteer": [ + { + "file": "scripts/puppeteer/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/puppeteer/jest.config.js", + "hash": "10929530115692286437" + }, + { + "file": "scripts/puppeteer/package.json", + "hash": "11715990510411273897" + }, + { + "file": "scripts/puppeteer/project.json", + "hash": "4445166320068989333" + }, + { + "file": "scripts/puppeteer/src/index.ts", + "hash": "764454282084297596" + }, + { + "file": "scripts/puppeteer/src/types.ts", + "hash": "957137470538575277" + }, + { + "file": "scripts/puppeteer/src/utils.spec.ts", + "hash": "13205245988193183269" + }, + { + "file": "scripts/puppeteer/src/utils.ts", + "hash": "17989793353365278853" + }, + { + "file": "scripts/puppeteer/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/puppeteer/tsconfig.lib.json", + "hash": "15222053984038389170" + }, + { + "file": "scripts/puppeteer/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/scripts-storybook": [ + { + "file": "scripts/storybook/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/storybook/README.md", + "hash": "6260771668642713165" + }, + { + "file": "scripts/storybook/jest.config.js", + "hash": "16159426598495183550" + }, + { + "file": "scripts/storybook/package.json", + "hash": "12768044836505529310", + "deps": ["@fluentui/scripts-monorepo"] + }, + { + "file": "scripts/storybook/project.json", + "hash": "11232580624195990329" + }, + { + "file": "scripts/storybook/src/index.d.ts", + "hash": "826157356781274866" + }, + { + "file": "scripts/storybook/src/index.js", + "hash": "1482846448957198356" + }, + { + "file": "scripts/storybook/src/loaders/custom-loader.js", + "hash": "4294621560128078241" + }, + { + "file": "scripts/storybook/src/rules.js", + "hash": "3284759671334880193" + }, + { + "file": "scripts/storybook/src/rules.spec.ts", + "hash": "13748453131777334686" + }, + { + "file": "scripts/storybook/src/utils.js", + "hash": "16447078335761239049" + }, + { + "file": "scripts/storybook/src/utils.spec.js", + "hash": "7235305373409857463" + }, + { + "file": "scripts/storybook/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/storybook/tsconfig.lib.json", + "hash": "3593133700658772030" + }, + { + "file": "scripts/storybook/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/react-swatch-picker-preview": [ + { + "file": "packages/react-components/react-swatch-picker-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/LICENSE", + "hash": "5934331551714403714" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/README.md", + "hash": "7419281624987644468" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/docs/Spec.md", + "hash": "6103625817265663911" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/etc/react-swatch-picker-preview.api.md", + "hash": "16193202918846092278" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/jest.config.js", + "hash": "17033989963135647545" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/package.json", + "hash": "549445429650425408", + "deps": [ + "@fluentui/react-jsx-runtime", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-swatch-picker-preview/project.json", + "hash": "18290180041366416211" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/SwatchPicker.ts", + "hash": "9804286450005810402" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.test.tsx", + "hash": "9571205629442676551" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.tsx", + "hash": "10932485903494897566" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.types.ts", + "hash": "2241787495689417402" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/__snapshots__/SwatchPicker.test.tsx.snap", + "hash": "18252006600174267969" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/index.ts", + "hash": "7361079493278890998" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/renderSwatchPicker.tsx", + "hash": "6990947521985192591" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/useSwatchPicker.ts", + "hash": "769200771881258129" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/useSwatchPickerStyles.styles.ts", + "hash": "17752194373954321560" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/index.ts", + "hash": "1833191522506500701" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/stories/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerBestPractices.md", + "hash": "13132854725403121719" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerDefault.stories.tsx", + "hash": "17318452984797150085" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/index.stories.tsx", + "hash": "12173169998730479378" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-swatch-picker-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-rating-preview": [ + { + "file": "packages/react-components/react-rating-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-rating-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-rating-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-rating-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-rating-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-rating-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-rating-preview/CHANGELOG.json", + "hash": "1386950926958177706" + }, + { + "file": "packages/react-components/react-rating-preview/CHANGELOG.md", + "hash": "7481927941742122982" + }, + { + "file": "packages/react-components/react-rating-preview/LICENSE", + "hash": "11029626774304352386" + }, + { + "file": "packages/react-components/react-rating-preview/README.md", + "hash": "2315553695549024501" + }, + { + "file": "packages/react-components/react-rating-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-rating-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-rating-preview/docs/Spec.md", + "hash": "13399743181965079106" + }, + { + "file": "packages/react-components/react-rating-preview/etc/react-rating-preview.api.md", + "hash": "546737215946085466" + }, + { + "file": "packages/react-components/react-rating-preview/jest.config.js", + "hash": "13638262759997247348" + }, + { + "file": "packages/react-components/react-rating-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-rating-preview/package.json", + "hash": "6500567209729890407", + "deps": [ + "@fluentui/react-jsx-runtime", + "npm:@fluentui/react-icons", + "@fluentui/react-theme", + "@fluentui/react-tabster", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-rating-preview/project.json", + "hash": "309846336706056488" + }, + { + "file": "packages/react-components/react-rating-preview/src/Rating.ts", + "hash": "15823645109042535388" + }, + { + "file": "packages/react-components/react-rating-preview/src/RatingItem.ts", + "hash": "2041029226151546635" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/Rating/Rating.test.tsx", + "hash": "5283780706645667459" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/Rating/Rating.tsx", + "hash": "17937483042811168623" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/Rating/Rating.types.ts", + "hash": "11581003550124668523" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/Rating/__snapshots__/Rating.test.tsx.snap", + "hash": "12871779555702267298" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/Rating/index.ts", + "hash": "16560610711340093657" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/Rating/renderRating.tsx", + "hash": "17511663661061571492" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/Rating/useRating.tsx", + "hash": "778443718043001840" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/Rating/useRatingStyles.styles.ts", + "hash": "8465426701306811937" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.test.tsx", + "hash": "6919100699748520443" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.tsx", + "hash": "14249217300465265132" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.types.ts", + "hash": "3463608295260686451" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/RatingItem/__snapshots__/RatingItem.test.tsx.snap", + "hash": "12673552041574392517" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/RatingItem/index.ts", + "hash": "7256066201974826524" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/RatingItem/renderRatingItem.tsx", + "hash": "17922546264381731658" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/RatingItem/useRatingItem.tsx", + "hash": "73122377714334878" + }, + { + "file": "packages/react-components/react-rating-preview/src/components/RatingItem/useRatingItemStyles.styles.ts", + "hash": "13473747997341116040" + }, + { + "file": "packages/react-components/react-rating-preview/src/contexts/RatingContext.tsx", + "hash": "14442501886031449970" + }, + { + "file": "packages/react-components/react-rating-preview/src/contexts/index.ts", + "hash": "897686478701984368" + }, + { + "file": "packages/react-components/react-rating-preview/src/contexts/useRatingContextValues.ts", + "hash": "14732512412813204150" + }, + { + "file": "packages/react-components/react-rating-preview/src/index.ts", + "hash": "542036710468795052" + }, + { + "file": "packages/react-components/react-rating-preview/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingBestPractices.md", + "hash": "13132854725403121719" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingCompact.stories.tsx", + "hash": "10038980048705258013" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingDefault.stories.tsx", + "hash": "10411813347289797490" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingMax.stories.tsx", + "hash": "13823895250729025068" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingPrecision.stories.tsx", + "hash": "13010653961703171182" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingReadOnly.stories.tsx", + "hash": "16740155415181268133" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingShape.stories.tsx", + "hash": "10702844511181810660" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/RatingSize.stories.tsx", + "hash": "15592318112463151981" + }, + { + "file": "packages/react-components/react-rating-preview/stories/Rating/index.stories.tsx", + "hash": "16840504286423106121" + }, + { + "file": "packages/react-components/react-rating-preview/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-rating-preview/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-rating-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-telemetry": [ + { + "file": "packages/fluentui/react-telemetry/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-telemetry/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-telemetry/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-telemetry/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-telemetry/package.json", + "hash": "11597637505080461496", + "deps": [ + "npm:@babel/runtime", + "@fluentui/react-bindings", + "@fluentui/react-component-event-listener", + "npm:lodash", + "npm:react-table", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "npm:@types/react-table", + "npm:lerna-alias", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-telemetry/project.json", + "hash": "1545707455027966891" + }, + { + "file": "packages/fluentui/react-telemetry/src/TelemetryPerfFlags.tsx", + "hash": "15047243473559560992" + }, + { + "file": "packages/fluentui/react-telemetry/src/TelemetryPopover.tsx", + "hash": "17978132699403522947" + }, + { + "file": "packages/fluentui/react-telemetry/src/TelemetryTable.tsx", + "hash": "13466198782982969536" + }, + { + "file": "packages/fluentui/react-telemetry/src/index.ts", + "hash": "17796473986958886897" + }, + { + "file": "packages/fluentui/react-telemetry/src/styles.ts", + "hash": "15766090010848193032" + }, + { + "file": "packages/fluentui/react-telemetry/src/useIntervalUpdate.ts", + "hash": "11690443637827723090" + }, + { + "file": "packages/fluentui/react-telemetry/src/useTelemetryColumns.tsx", + "hash": "1843080583577724726" + }, + { + "file": "packages/fluentui/react-telemetry/src/useTelemetryData.ts", + "hash": "7679325461230384030" + }, + { + "file": "packages/fluentui/react-telemetry/src/useTelemetryState.ts", + "hash": "11457929168335446841" + }, + { + "file": "packages/fluentui/react-telemetry/tsconfig.json", + "hash": "9267037586801109256" + } + ], + "@fluentui/react-dialog": [ + { + "file": "packages/react-components/react-dialog/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-dialog/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-dialog/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-dialog/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-dialog/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-dialog/.swcrc", + "hash": "471348148265161299" + }, + { + "file": "packages/react-components/react-dialog/CHANGELOG.json", + "hash": "6085765037859185787" + }, + { + "file": "packages/react-components/react-dialog/CHANGELOG.md", + "hash": "2434122158939463922" + }, + { + "file": "packages/react-components/react-dialog/LICENSE", + "hash": "4256434193176290151" + }, + { + "file": "packages/react-components/react-dialog/README.md", + "hash": "1497980874896642378" + }, + { + "file": "packages/react-components/react-dialog/bundle-size/Dialog.fixture.js", + "hash": "5764444469502119445" + }, + { + "file": "packages/react-components/react-dialog/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-dialog/config/tests.js", + "hash": "14010006175392234982" + }, + { + "file": "packages/react-components/react-dialog/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-dialog/docs/Spec.md", + "hash": "18129707136231408032" + }, + { + "file": "packages/react-components/react-dialog/docs/assets/AlertDialogKeyboardInteraction.png", + "hash": "13183178900446740370" + }, + { + "file": "packages/react-components/react-dialog/docs/assets/AlertDialogMouseInteraction.png", + "hash": "14303341550723004589" + }, + { + "file": "packages/react-components/react-dialog/docs/assets/ModalDialogKeyboardInteraction.png", + "hash": "11090212249781690940" + }, + { + "file": "packages/react-components/react-dialog/docs/assets/ModalDialogMouseInteraction.png", + "hash": "5309545076786861609" + }, + { + "file": "packages/react-components/react-dialog/docs/assets/NonModalDialogKeyboardInteraction.png", + "hash": "11487147899341732505" + }, + { + "file": "packages/react-components/react-dialog/docs/assets/NonModalDialogMouseInteraction.png", + "hash": "7627930701325333139" + }, + { + "file": "packages/react-components/react-dialog/etc/react-dialog.api.md", + "hash": "13186150910557458242" + }, + { + "file": "packages/react-components/react-dialog/jest.config.js", + "hash": "2212714289394290007" + }, + { + "file": "packages/react-components/react-dialog/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-dialog/package.json", + "hash": "1137127162811369009", + "deps": [ + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:react-transition-group", + "@fluentui/keyboard-keys", + "@fluentui/react-context-selector", + "@fluentui/react-shared-contexts", + "@fluentui/react-aria", + "npm:@fluentui/react-icons", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-portal", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-dialog/project.json", + "hash": "1593776171207895375" + }, + { + "file": "packages/react-components/react-dialog/src/Dialog.ts", + "hash": "7614391750837937500" + }, + { + "file": "packages/react-components/react-dialog/src/DialogActions.ts", + "hash": "6501368177261565003" + }, + { + "file": "packages/react-components/react-dialog/src/DialogBody.ts", + "hash": "1679083201725254068" + }, + { + "file": "packages/react-components/react-dialog/src/DialogContent.ts", + "hash": "6834626365839640188" + }, + { + "file": "packages/react-components/react-dialog/src/DialogSurface.ts", + "hash": "2183784150146559110" + }, + { + "file": "packages/react-components/react-dialog/src/DialogTitle.ts", + "hash": "3159547512722278904" + }, + { + "file": "packages/react-components/react-dialog/src/DialogTrigger.ts", + "hash": "14937508139502512966" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/Dialog.cy.tsx", + "hash": "2739398937444627575" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/Dialog.test.tsx", + "hash": "3844477481217755323" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/Dialog.tsx", + "hash": "17117780814439457607" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/Dialog.types.ts", + "hash": "3167557189119634950" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/__snapshots__/Dialog.test.tsx.snap", + "hash": "6387916450749041874" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/index.ts", + "hash": "9063948780008868764" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/renderDialog.tsx", + "hash": "15434040824683363960" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/useDialog.test.ts", + "hash": "13640949584726189974" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/useDialog.ts", + "hash": "9234251070886907331" + }, + { + "file": "packages/react-components/react-dialog/src/components/Dialog/useDialogContextValues.ts", + "hash": "14604638666966312339" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogActions/DialogActions.test.tsx", + "hash": "3862407181068648115" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogActions/DialogActions.tsx", + "hash": "2665085773669039653" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogActions/DialogActions.types.ts", + "hash": "13952106127501133459" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogActions/__snapshots__/DialogActions.test.tsx.snap", + "hash": "9879192408649306339" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogActions/index.ts", + "hash": "10997266245526734202" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogActions/renderDialogActions.tsx", + "hash": "12604892974082609712" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogActions/useDialogActions.ts", + "hash": "11701599453758756444" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogActions/useDialogActionsStyles.styles.ts", + "hash": "10819211647069438860" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogBody/DialogBody.test.tsx", + "hash": "14475823408062819496" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogBody/DialogBody.tsx", + "hash": "14017098954018666482" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogBody/DialogBody.types.ts", + "hash": "9658295494660160346" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogBody/__snapshots__/DialogBody.test.tsx.snap", + "hash": "11651296553611813582" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogBody/index.ts", + "hash": "14036818210030993605" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogBody/renderDialogBody.tsx", + "hash": "4670394357462636632" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogBody/useDialogBody.ts", + "hash": "10540755511073542654" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogBody/useDialogBodyStyles.styles.ts", + "hash": "5142001486085645225" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogContent/DialogContent.test.tsx", + "hash": "7579162779048284428" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogContent/DialogContent.tsx", + "hash": "6285589207963179145" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogContent/DialogContent.types.ts", + "hash": "5680115798417242790" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogContent/__snapshots__/DialogContent.test.tsx.snap", + "hash": "4103540723511950746" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogContent/index.ts", + "hash": "14518234974361262884" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogContent/renderDialogContent.tsx", + "hash": "8525939742007444644" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogContent/useDialogContent.ts", + "hash": "9956821653223924569" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogContent/useDialogContentStyles.styles.ts", + "hash": "2680471230329021351" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.test.tsx", + "hash": "8550862405162377121" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.tsx", + "hash": "10302476452612932521" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.types.ts", + "hash": "15073482470524864646" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/__snapshots__/DialogSurface.test.tsx.snap", + "hash": "5754145182784132163" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/index.ts", + "hash": "4045975660109409458" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/renderDialogSurface.tsx", + "hash": "12541449551639055808" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurface.ts", + "hash": "9107214140896834439" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurfaceContextValues.ts", + "hash": "2363445813728113956" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurfaceStyles.styles.ts", + "hash": "13214703133443642860" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.cy.tsx", + "hash": "8039933273383891584" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.test.tsx", + "hash": "1613995791781650658" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.tsx", + "hash": "13145752080337682920" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.types.ts", + "hash": "1996415862795187750" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/__snapshots__/DialogTitle.test.tsx.snap", + "hash": "4812873543797308805" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/index.ts", + "hash": "2680563011959958634" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/renderDialogTitle.tsx", + "hash": "292258614427830609" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/useDialogTitle.tsx", + "hash": "15310505910673020995" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTitle/useDialogTitleStyles.styles.ts", + "hash": "7636358250199335822" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.test.tsx", + "hash": "1402232731592992356" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.tsx", + "hash": "16111386851757642694" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.types.ts", + "hash": "15754792245182397714" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTrigger/__snapshots__/DialogTrigger.test.tsx.snap", + "hash": "15349658709586452249" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTrigger/index.ts", + "hash": "5301397907530381498" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTrigger/renderDialogTrigger.tsx", + "hash": "5459199244809190499" + }, + { + "file": "packages/react-components/react-dialog/src/components/DialogTrigger/useDialogTrigger.ts", + "hash": "12286782142162182081" + }, + { + "file": "packages/react-components/react-dialog/src/contexts/constants.ts", + "hash": "6190891133932018158" + }, + { + "file": "packages/react-components/react-dialog/src/contexts/dialogContext.ts", + "hash": "4234838693206379174" + }, + { + "file": "packages/react-components/react-dialog/src/contexts/dialogSurfaceContext.ts", + "hash": "16279975393744354586" + }, + { + "file": "packages/react-components/react-dialog/src/contexts/dialogTransitionContext.ts", + "hash": "8520465009143452270" + }, + { + "file": "packages/react-components/react-dialog/src/contexts/index.ts", + "hash": "14786615568304329742" + }, + { + "file": "packages/react-components/react-dialog/src/index.ts", + "hash": "11179932823285468334" + }, + { + "file": "packages/react-components/react-dialog/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-dialog/src/testing/mockUseDialogContext.ts", + "hash": "15081100806553676964" + }, + { + "file": "packages/react-components/react-dialog/src/testing/selectors.ts", + "hash": "14197921886153798563" + }, + { + "file": "packages/react-components/react-dialog/src/utils/index.ts", + "hash": "9921567441268489854" + }, + { + "file": "packages/react-components/react-dialog/src/utils/useDisableBodyScroll.ts", + "hash": "10847958514196072311" + }, + { + "file": "packages/react-components/react-dialog/src/utils/useFocusFirstElement.ts", + "hash": "10941774999208531161" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogA11y.md", + "hash": "679082905829069796" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogAlert.md", + "hash": "2672952536005254418" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogAlert.stories.tsx", + "hash": "12397098830725963885" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogBestPractices.md", + "hash": "5032283973958903493" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogChangeFocus.stories.tsx", + "hash": "676013714115936995" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogControllingOpenAndClose.md", + "hash": "14656403629598821845" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogControllingOpenAndClose.stories.tsx", + "hash": "3641672445058163436" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogCustomTrigger.md", + "hash": "16816646341237511822" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogCustomTrigger.stories.tsx", + "hash": "1374547463519489314" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogDefault.stories.tsx", + "hash": "854035252666479494" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogDescription.md", + "hash": "11000425708368126382" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogFluidDialogActions.md", + "hash": "12247949510009193278" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogFluidDialogActions.stories.tsx", + "hash": "5383668325653872167" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogNoFocusableElement.md", + "hash": "6143738976469988971" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogNoFocusableElement.stories.tsx", + "hash": "17216947668804365391" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogNonModal.md", + "hash": "5441682859607869665" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogNonModal.stories.tsx", + "hash": "17621734798983363303" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogScrollingLongContent.stories.tsx", + "hash": "14247822807945780299" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogTitleCustomAction.md", + "hash": "650878191513690735" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogTitleCustomAction.stories.tsx", + "hash": "4100443228224733194" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogTitleNoAction.md", + "hash": "8381986865674275003" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogTitleNoAction.stories.tsx", + "hash": "17768139917992326981" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogTriggerOutsideDialog.md", + "hash": "555082381172387824" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogTriggerOutsideDialog.stories.tsx", + "hash": "13910480372673957340" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogWithForm.md", + "hash": "17307812149546381291" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/DialogWithForm.stories.tsx", + "hash": "13325038626143987414" + }, + { + "file": "packages/react-components/react-dialog/stories/Dialog/index.stories.tsx", + "hash": "15727902005989339948" + }, + { + "file": "packages/react-components/react-dialog/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-dialog/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-dialog/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-dialog/tsconfig.spec.json", + "hash": "6578707152334499940" + } + ], + "@fluentui/scripts-package-manager": [ + { + "file": "scripts/package-manager/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/package-manager/jest.config.js", + "hash": "16568789143873113093" + }, + { + "file": "scripts/package-manager/package.json", + "hash": "2809962615901878866" + }, + { + "file": "scripts/package-manager/postinstall.js", + "hash": "9250556824353534057" + }, + { + "file": "scripts/package-manager/project.json", + "hash": "16573537905473013173" + }, + { + "file": "scripts/package-manager/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/package-manager/tsconfig.lib.json", + "hash": "3753806828268919288" + }, + { + "file": "scripts/package-manager/tsconfig.spec.json", + "hash": "16242416785763058919" + }, + { + "file": "scripts/package-manager/use-yarn-please.js", + "hash": "363289590456864077" + } + ], + "@fluentui/react-component-event-listener": [ + { + "file": "packages/fluentui/react-component-event-listener/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-component-event-listener/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-component-event-listener/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-component-event-listener/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-component-event-listener/jest.config.js", + "hash": "17864063104223117741" + }, + { + "file": "packages/fluentui/react-component-event-listener/package.json", + "hash": "982990065091895253", + "deps": [ + "npm:@babel/runtime", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:@types/simulant", + "npm:lerna-alias", + "npm:simulant", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-component-event-listener/project.json", + "hash": "7603987250497277862" + }, + { + "file": "packages/fluentui/react-component-event-listener/src/EventListener.ts", + "hash": "6339105570437663348" + }, + { + "file": "packages/fluentui/react-component-event-listener/src/index.ts", + "hash": "16230065282180187300" + }, + { + "file": "packages/fluentui/react-component-event-listener/src/types.ts", + "hash": "2021465131345141924" + }, + { + "file": "packages/fluentui/react-component-event-listener/src/useEventListener.ts", + "hash": "2879126978776296235" + }, + { + "file": "packages/fluentui/react-component-event-listener/test/EventListener-test.tsx", + "hash": "14784711746104707618" + }, + { + "file": "packages/fluentui/react-component-event-listener/tsconfig.json", + "hash": "12214264623402812273" + } + ], + "@fluentui/react-docsite-components": [ + { + "file": "packages/react-docsite-components/.eslintrc.json", + "hash": "17910802694759075705" + }, + { + "file": "packages/react-docsite-components/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/react-docsite-components/CHANGELOG.json", + "hash": "15623346196486686" + }, + { + "file": "packages/react-docsite-components/CHANGELOG.md", + "hash": "16667333957296172062" + }, + { + "file": "packages/react-docsite-components/LICENSE", + "hash": "9616427488211660399" + }, + { + "file": "packages/react-docsite-components/README.md", + "hash": "2220872118300718726" + }, + { + "file": "packages/react-docsite-components/config/pre-copy.json", + "hash": "10496597701824624187" + }, + { + "file": "packages/react-docsite-components/index.html", + "hash": "2640797298882155798" + }, + { + "file": "packages/react-docsite-components/jest.config.js", + "hash": "5767287689832801759" + }, + { + "file": "packages/react-docsite-components/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-docsite-components/package.json", + "hash": "10314344290287066915", + "deps": [ + "@fluentui/react", + "@fluentui/theme", + "npm:@microsoft/load-themed-styles", + "@fluentui/example-data", + "@fluentui/public-docsite-setup", + "@fluentui/react-hooks", + "@fluentui/set-version", + "@fluentui/react-monaco-editor", + "npm:color-check", + "npm:markdown-to-jsx", + "npm:office-ui-fabric-core", + "npm:react-custom-scrollbars", + "npm:react-syntax-highlighter", + "npm:tslib", + "@fluentui/common-styles", + "@fluentui/eslint-plugin", + "npm:@types/color-check", + "npm:@types/react-custom-scrollbars", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-docsite-components/project.json", + "hash": "10631926172196863479" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationDetail/AnimationDetail.tsx", + "hash": "11264131826746095967" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationDetail/AnimationDetail.types.ts", + "hash": "10921051691769202943" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationDetail/index.ts", + "hash": "3670912092410067411" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/AnimationDetailGrid.tsx", + "hash": "16347224904878135663" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/AnimationDetailGrid.types.ts", + "hash": "12493861838927048618" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/index.ts", + "hash": "3186403042237813675" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationExample/AnimationExample.tsx", + "hash": "9795940310449634330" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationExample/AnimationExample.types.ts", + "hash": "11921866709470015362" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/AnimationExample/index.ts", + "hash": "14853755572767387801" + }, + { + "file": "packages/react-docsite-components/src/components/Animation/index.ts", + "hash": "13772077451262221428" + }, + { + "file": "packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTable.tsx", + "hash": "6693920952919094704" + }, + { + "file": "packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTableSet.tsx", + "hash": "12110962144033825225" + }, + { + "file": "packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTableSet.types.ts", + "hash": "14792084498059802857" + }, + { + "file": "packages/react-docsite-components/src/components/ApiReferencesTable/index.ts", + "hash": "15605678694974685331" + }, + { + "file": "packages/react-docsite-components/src/components/ApiReferencesTable/tokenResolver.test.ts", + "hash": "17246629434563524157" + }, + { + "file": "packages/react-docsite-components/src/components/ApiReferencesTable/tokenResolver.ts", + "hash": "11203029933842193563" + }, + { + "file": "packages/react-docsite-components/src/components/App/App.styles.ts", + "hash": "16366742593675220433" + }, + { + "file": "packages/react-docsite-components/src/components/App/App.tsx", + "hash": "5479481127201385538" + }, + { + "file": "packages/react-docsite-components/src/components/App/App.types.ts", + "hash": "3013181038616524203" + }, + { + "file": "packages/react-docsite-components/src/components/App/index.ts", + "hash": "14112724461615500278" + }, + { + "file": "packages/react-docsite-components/src/components/Badge/Badge.tsx", + "hash": "11558535686674202398" + }, + { + "file": "packages/react-docsite-components/src/components/Badge/Badge.types.ts", + "hash": "8744809654982521758" + }, + { + "file": "packages/react-docsite-components/src/components/Badge/index.ts", + "hash": "4962031303727737639" + }, + { + "file": "packages/react-docsite-components/src/components/CodeSnippet/CodeSnippet.styles.ts", + "hash": "6620062364833710851" + }, + { + "file": "packages/react-docsite-components/src/components/CodeSnippet/CodeSnippet.tsx", + "hash": "13813234680433505694" + }, + { + "file": "packages/react-docsite-components/src/components/CodeSnippet/PrismCodeSnippet.tsx", + "hash": "15729185984999372459" + }, + { + "file": "packages/react-docsite-components/src/components/CodeSnippet/index.ts", + "hash": "4078061758664398964" + }, + { + "file": "packages/react-docsite-components/src/components/CodepenComponent/CodepenComponent.tsx", + "hash": "11870257513293450538" + }, + { + "file": "packages/react-docsite-components/src/components/CodepenComponent/CodepenComponent.types.ts", + "hash": "15369017375806556484" + }, + { + "file": "packages/react-docsite-components/src/components/CodepenComponent/index.ts", + "hash": "6992589686786059677" + }, + { + "file": "packages/react-docsite-components/src/components/ColorPalette/ColorPalette.styles.ts", + "hash": "10408275644401713063" + }, + { + "file": "packages/react-docsite-components/src/components/ColorPalette/ColorPalette.tsx", + "hash": "13383233160734780830" + }, + { + "file": "packages/react-docsite-components/src/components/ColorPalette/ColorPalette.types.ts", + "hash": "7727147804317552266" + }, + { + "file": "packages/react-docsite-components/src/components/ColorPalette/index.ts", + "hash": "2243447153520337046" + }, + { + "file": "packages/react-docsite-components/src/components/ComponentPage/ComponentPage.styles.ts", + "hash": "2847849537891104567" + }, + { + "file": "packages/react-docsite-components/src/components/ComponentPage/ComponentPage.tsx", + "hash": "12667409702626479674" + }, + { + "file": "packages/react-docsite-components/src/components/ComponentPage/ComponentPage.types.ts", + "hash": "11238805679830811443" + }, + { + "file": "packages/react-docsite-components/src/components/ComponentPage/index.ts", + "hash": "5520169500609217837" + }, + { + "file": "packages/react-docsite-components/src/components/DisplayToggle/DisplayToggle.tsx", + "hash": "4910289010839064091" + }, + { + "file": "packages/react-docsite-components/src/components/DisplayToggle/DisplayToggle.types.ts", + "hash": "6899766017438718203" + }, + { + "file": "packages/react-docsite-components/src/components/DisplayToggle/index.ts", + "hash": "11307196144261154083" + }, + { + "file": "packages/react-docsite-components/src/components/EditSection/EditSection.tsx", + "hash": "12854715732857349029" + }, + { + "file": "packages/react-docsite-components/src/components/EditSection/EditSection.types.ts", + "hash": "5572300696319586102" + }, + { + "file": "packages/react-docsite-components/src/components/EditSection/index.ts", + "hash": "12495031237438416611" + }, + { + "file": "packages/react-docsite-components/src/components/ExampleCard/ExampleCard.styles.ts", + "hash": "9033267256349918834" + }, + { + "file": "packages/react-docsite-components/src/components/ExampleCard/ExampleCard.tsx", + "hash": "17338998690457603436" + }, + { + "file": "packages/react-docsite-components/src/components/ExampleCard/ExampleCard.types.ts", + "hash": "7242972042750925022" + }, + { + "file": "packages/react-docsite-components/src/components/ExampleCard/index.ts", + "hash": "15094305405003736612" + }, + { + "file": "packages/react-docsite-components/src/components/FeedbackList/FeedbackList.styles.ts", + "hash": "15527272981673495220" + }, + { + "file": "packages/react-docsite-components/src/components/FeedbackList/FeedbackList.tsx", + "hash": "6913565087332624295" + }, + { + "file": "packages/react-docsite-components/src/components/FeedbackList/FeedbackList.types.ts", + "hash": "12055884543860903617" + }, + { + "file": "packages/react-docsite-components/src/components/FeedbackList/index.ts", + "hash": "9242617650315490998" + }, + { + "file": "packages/react-docsite-components/src/components/FeedbackList/relativeDates.test.tsx", + "hash": "14205011362976557372" + }, + { + "file": "packages/react-docsite-components/src/components/FeedbackList/relativeDates.ts", + "hash": "7957536793518410690" + }, + { + "file": "packages/react-docsite-components/src/components/Header/Header.styles.ts", + "hash": "8473524780432870952" + }, + { + "file": "packages/react-docsite-components/src/components/Header/Header.tsx", + "hash": "10303724695287218835" + }, + { + "file": "packages/react-docsite-components/src/components/Header/Header.types.ts", + "hash": "16233883555288466961" + }, + { + "file": "packages/react-docsite-components/src/components/Header/index.ts", + "hash": "5506779718460944000" + }, + { + "file": "packages/react-docsite-components/src/components/LoadingComponent/LoadingComponent.tsx", + "hash": "13650245432014634690" + }, + { + "file": "packages/react-docsite-components/src/components/LoadingComponent/LoadingComponent.types.ts", + "hash": "6400960813027923111" + }, + { + "file": "packages/react-docsite-components/src/components/LoadingComponent/index.ts", + "hash": "5799557727547273435" + }, + { + "file": "packages/react-docsite-components/src/components/Markdown/Markdown.tsx", + "hash": "3265394082177415297" + }, + { + "file": "packages/react-docsite-components/src/components/Markdown/Markdown.types.ts", + "hash": "15550085183233549182" + }, + { + "file": "packages/react-docsite-components/src/components/Markdown/MarkdownCode.tsx", + "hash": "5782844213118550369" + }, + { + "file": "packages/react-docsite-components/src/components/Markdown/MarkdownHeader.tsx", + "hash": "170166514560079612" + }, + { + "file": "packages/react-docsite-components/src/components/Markdown/MarkdownLink.tsx", + "hash": "11369738457711070204" + }, + { + "file": "packages/react-docsite-components/src/components/Markdown/MarkdownParagraph.tsx", + "hash": "927651713797114180" + }, + { + "file": "packages/react-docsite-components/src/components/Markdown/MarkdownPre.tsx", + "hash": "11549614759760207006" + }, + { + "file": "packages/react-docsite-components/src/components/Markdown/index.ts", + "hash": "2104250620797368259" + }, + { + "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownCell.tsx", + "hash": "18279001039219757069" + }, + { + "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTBody.tsx", + "hash": "6801091733446794095" + }, + { + "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTHead.tsx", + "hash": "6573393184264059451" + }, + { + "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.styles.ts", + "hash": "11753276764079744984" + }, + { + "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.tsx", + "hash": "15567154242683678350" + }, + { + "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.types.ts", + "hash": "17986119871571670228" + }, + { + "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTr.tsx", + "hash": "14456901982183056649" + }, + { + "file": "packages/react-docsite-components/src/components/MarkdownTable/index.ts", + "hash": "13169572237147661272" + }, + { + "file": "packages/react-docsite-components/src/components/Nav/Nav.types.ts", + "hash": "15448548289405977557" + }, + { + "file": "packages/react-docsite-components/src/components/Nav/index.ts", + "hash": "16980948111742648072" + }, + { + "file": "packages/react-docsite-components/src/components/Page/Page.module.scss", + "hash": "15997096924270964157" + }, + { + "file": "packages/react-docsite-components/src/components/Page/Page.tsx", + "hash": "1385652342251007383" + }, + { + "file": "packages/react-docsite-components/src/components/Page/Page.types.ts", + "hash": "5020195258814514625" + }, + { + "file": "packages/react-docsite-components/src/components/Page/index.ts", + "hash": "3560070557009333257" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/BannerSection.tsx", + "hash": "9459583740729657611" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/BestPracticesSection.tsx", + "hash": "2625722722092540946" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/ExamplesSection.tsx", + "hash": "7459818529105091139" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/FeedbackSection.tsx", + "hash": "5163148693013218817" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/ImplementationSection.tsx", + "hash": "12817609470043729" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/MarkdownSection.tsx", + "hash": "13600727208740058364" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/OtherPageSection.tsx", + "hash": "6448538661393121940" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/OverviewSection.tsx", + "hash": "5819020254044237698" + }, + { + "file": "packages/react-docsite-components/src/components/Page/sections/index.ts", + "hash": "11022066208682099058" + }, + { + "file": "packages/react-docsite-components/src/components/PageHeader/PageHeader.tsx", + "hash": "14224263990280196724" + }, + { + "file": "packages/react-docsite-components/src/components/PageHeader/PageHeader.types.ts", + "hash": "12065952942620058849" + }, + { + "file": "packages/react-docsite-components/src/components/PageHeader/index.ts", + "hash": "5118033474718800442" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformBar/PlatformBar.base.tsx", + "hash": "6676147153439959496" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformBar/PlatformBar.styles.ts", + "hash": "12425173100815747296" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformBar/PlatformBar.tsx", + "hash": "14835312562071670454" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformBar/PlatformBar.types.ts", + "hash": "5050109515969688623" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformBar/index.ts", + "hash": "17000560713892606846" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.module.scss", + "hash": "10129437058013725451" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.tsx", + "hash": "1723918811407193241" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.types.ts", + "hash": "5209849757397689134" + }, + { + "file": "packages/react-docsite-components/src/components/PlatformPicker/index.ts", + "hash": "3704407012159645691" + }, + { + "file": "packages/react-docsite-components/src/components/PropertiesTable/PropertiesTable.tsx", + "hash": "10609321670064992912" + }, + { + "file": "packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.styles.ts", + "hash": "7576556022262521007" + }, + { + "file": "packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.tsx", + "hash": "4252564358131238265" + }, + { + "file": "packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.types.ts", + "hash": "10649805137209477089" + }, + { + "file": "packages/react-docsite-components/src/components/PropertiesTable/index.ts", + "hash": "5168601532031671044" + }, + { + "file": "packages/react-docsite-components/src/components/ScrollBars/ScrollBars.tsx", + "hash": "7492893318732139089" + }, + { + "file": "packages/react-docsite-components/src/components/ScrollBars/ScrollBars.types.ts", + "hash": "8892757102835863185" + }, + { + "file": "packages/react-docsite-components/src/components/ScrollBars/index.ts", + "hash": "2488975222934078523" + }, + { + "file": "packages/react-docsite-components/src/components/SideRail/SideRail.styles.ts", + "hash": "17464653957499105858" + }, + { + "file": "packages/react-docsite-components/src/components/SideRail/SideRail.tsx", + "hash": "10530651215123821136" + }, + { + "file": "packages/react-docsite-components/src/components/SideRail/SideRail.types.ts", + "hash": "12378737735663262739" + }, + { + "file": "packages/react-docsite-components/src/components/SideRail/index.ts", + "hash": "15350023720092837224" + }, + { + "file": "packages/react-docsite-components/src/components/SiteMessageBar/SiteMessageBar.tsx", + "hash": "5692542924300314898" + }, + { + "file": "packages/react-docsite-components/src/components/SiteMessageBar/SiteMessageBar.types.ts", + "hash": "4633620292447014093" + }, + { + "file": "packages/react-docsite-components/src/components/SiteMessageBar/index.ts", + "hash": "8013242729655963168" + }, + { + "file": "packages/react-docsite-components/src/components/Table/Table.module.scss", + "hash": "16550842896320001700" + }, + { + "file": "packages/react-docsite-components/src/components/Table/Table.tsx", + "hash": "14379197659162050526" + }, + { + "file": "packages/react-docsite-components/src/components/Table/Table.types.ts", + "hash": "14075813774070979305" + }, + { + "file": "packages/react-docsite-components/src/components/Table/index.ts", + "hash": "5229940266654307261" + }, + { + "file": "packages/react-docsite-components/src/components/TopBanner/TopBanner.module.scss", + "hash": "15038493170820400757" + }, + { + "file": "packages/react-docsite-components/src/components/TopBanner/TopBanner.tsx", + "hash": "8333453547241102032" + }, + { + "file": "packages/react-docsite-components/src/components/TopBanner/TopBanner.types.ts", + "hash": "10791569416871748217" + }, + { + "file": "packages/react-docsite-components/src/components/TopBanner/index.ts", + "hash": "12469409406838065289" + }, + { + "file": "packages/react-docsite-components/src/components/TopNav/TopNav.module.scss", + "hash": "15528005425186561560" + }, + { + "file": "packages/react-docsite-components/src/components/TopNav/TopNav.tsx", + "hash": "12121264468935953169" + }, + { + "file": "packages/react-docsite-components/src/components/TopNav/TopNav.types.ts", + "hash": "484556540365286005" + }, + { + "file": "packages/react-docsite-components/src/components/TopNav/index.ts", + "hash": "18228330905927286130" + }, + { + "file": "packages/react-docsite-components/src/components/Video/Video.module.scss", + "hash": "17577067756746920297" + }, + { + "file": "packages/react-docsite-components/src/components/Video/Video.tsx", + "hash": "4885650580642838040" + }, + { + "file": "packages/react-docsite-components/src/components/Video/Video.types.ts", + "hash": "16538062891442897525" + }, + { + "file": "packages/react-docsite-components/src/components/Video/index.ts", + "hash": "10289931313091974900" + }, + { + "file": "packages/react-docsite-components/src/demo/demo.md", + "hash": "16278892541003887014" + }, + { + "file": "packages/react-docsite-components/src/index.demo.tsx", + "hash": "16084233626171032953" + }, + { + "file": "packages/react-docsite-components/src/index.ts", + "hash": "3402088956271963260" + }, + { + "file": "packages/react-docsite-components/src/index2.ts", + "hash": "10858750401029740114" + }, + { + "file": "packages/react-docsite-components/src/styles/_common.scss", + "hash": "4739691154712696008" + }, + { + "file": "packages/react-docsite-components/src/styles/constants.ts", + "hash": "18113821495747227057" + }, + { + "file": "packages/react-docsite-components/src/utilities/PlatformContext.tsx", + "hash": "10721691462706379471" + }, + { + "file": "packages/react-docsite-components/src/utilities/SiteDefinition.types.ts", + "hash": "3483411585517637402" + }, + { + "file": "packages/react-docsite-components/src/utilities/activePage.ts", + "hash": "8612871338526660105" + }, + { + "file": "packages/react-docsite-components/src/utilities/appInsightsHelper.ts", + "hash": "8138553450890304073" + }, + { + "file": "packages/react-docsite-components/src/utilities/baseDefinition.tsx", + "hash": "17208312766058810770" + }, + { + "file": "packages/react-docsite-components/src/utilities/createApp.tsx", + "hash": "17969024525428726625" + }, + { + "file": "packages/react-docsite-components/src/utilities/createDemoApp.tsx", + "hash": "2653224455280570175" + }, + { + "file": "packages/react-docsite-components/src/utilities/data.ts", + "hash": "18386193858659404356" + }, + { + "file": "packages/react-docsite-components/src/utilities/examplesOf.ts", + "hash": "10037047487220822653" + }, + { + "file": "packages/react-docsite-components/src/utilities/extractAnchorLink.test.ts", + "hash": "14821204508688466308" + }, + { + "file": "packages/react-docsite-components/src/utilities/extractAnchorLink.ts", + "hash": "4010749088974230211" + }, + { + "file": "packages/react-docsite-components/src/utilities/getCurrentUrl.ts", + "hash": "10998380089641402222" + }, + { + "file": "packages/react-docsite-components/src/utilities/getEditUrl.ts", + "hash": "13662911029079054150" + }, + { + "file": "packages/react-docsite-components/src/utilities/getLinkColors.ts", + "hash": "12700816332715066801" + }, + { + "file": "packages/react-docsite-components/src/utilities/getNormalizedPath.ts", + "hash": "1431721679199564653" + }, + { + "file": "packages/react-docsite-components/src/utilities/getPageFirstPlatform.ts", + "hash": "1789802822213132435" + }, + { + "file": "packages/react-docsite-components/src/utilities/getSiteArea.ts", + "hash": "6341403548239437859" + }, + { + "file": "packages/react-docsite-components/src/utilities/index.ts", + "hash": "5861053845170178010" + }, + { + "file": "packages/react-docsite-components/src/utilities/index2.ts", + "hash": "18232133903563724366" + }, + { + "file": "packages/react-docsite-components/src/utilities/jumpToAnchor.ts", + "hash": "12726337012761599975" + }, + { + "file": "packages/react-docsite-components/src/utilities/parser/BaseParser.ts", + "hash": "17784227666965957282" + }, + { + "file": "packages/react-docsite-components/src/utilities/parser/EnumParserHelper.ts", + "hash": "15839387552642550867" + }, + { + "file": "packages/react-docsite-components/src/utilities/parser/InterfaceParserHelper.ts", + "hash": "17116487468584992291" + }, + { + "file": "packages/react-docsite-components/src/utilities/parser/Parse.ts", + "hash": "1455887245422584040" + }, + { + "file": "packages/react-docsite-components/src/utilities/parser/index.ts", + "hash": "12084374931088726602" + }, + { + "file": "packages/react-docsite-components/src/utilities/parser/interfaces.ts", + "hash": "4063379421402413669" + }, + { + "file": "packages/react-docsite-components/src/utilities/randomEntry.ts", + "hash": "6198528484003308287" + }, + { + "file": "packages/react-docsite-components/src/utilities/redirects.ts", + "hash": "17409290045674525834" + }, + { + "file": "packages/react-docsite-components/src/utilities/removeAnchorLink.test.ts", + "hash": "11015103027632462396" + }, + { + "file": "packages/react-docsite-components/src/utilities/removeAnchorLink.ts", + "hash": "15447886450914037200" + }, + { + "file": "packages/react-docsite-components/src/utilities/router/Route.tsx", + "hash": "10175416453822392064" + }, + { + "file": "packages/react-docsite-components/src/utilities/router/Router.tsx", + "hash": "14816371583147992581" + }, + { + "file": "packages/react-docsite-components/src/utilities/router/index.ts", + "hash": "5321333771325496376" + }, + { + "file": "packages/react-docsite-components/src/utilities/showOnlyExamples.ts", + "hash": "17505358712249837772" + }, + { + "file": "packages/react-docsite-components/src/utilities/string.ts", + "hash": "10417563592158032366" + }, + { + "file": "packages/react-docsite-components/src/utilities/theme.ts", + "hash": "11154753743358389279" + }, + { + "file": "packages/react-docsite-components/src/utilities/windowWidth.ts", + "hash": "2891539011908030225" + }, + { + "file": "packages/react-docsite-components/src/version.ts", + "hash": "10007923850948970376" + }, + { + "file": "packages/react-docsite-components/tsconfig.json", + "hash": "3306502114190941300" + }, + { + "file": "packages/react-docsite-components/webpack.serve.config.js", + "hash": "8490482500988848252" + } + ], + "@fluentui/react-date-time": [ + { + "file": "packages/react-date-time/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/react-date-time/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/react-date-time/CHANGELOG.json", + "hash": "18156196373815370050" + }, + { + "file": "packages/react-date-time/CHANGELOG.md", + "hash": "4855813969435406760" + }, + { + "file": "packages/react-date-time/LICENSE", + "hash": "12975953156565096830" + }, + { + "file": "packages/react-date-time/README.md", + "hash": "15691804740406296083" + }, + { + "file": "packages/react-date-time/jest.config.js", + "hash": "8193037916930093299" + }, + { + "file": "packages/react-date-time/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-date-time/package.json", + "hash": "9250053857878111678", + "deps": [ + "@fluentui/react", + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-date-time/project.json", + "hash": "17422642528566626285" + }, + { + "file": "packages/react-date-time/src/Calendar.ts", + "hash": "14700922771323523697" + }, + { + "file": "packages/react-date-time/src/DatePicker.ts", + "hash": "3623451289574798351" + }, + { + "file": "packages/react-date-time/src/DateTimeUtilities.ts", + "hash": "5456722169763545772" + }, + { + "file": "packages/react-date-time/src/WeeklyDayPicker.ts", + "hash": "1544570974339003405" + }, + { + "file": "packages/react-date-time/src/index.ts", + "hash": "15527264248861218523" + }, + { + "file": "packages/react-date-time/src/version.ts", + "hash": "9682315595235674523" + }, + { + "file": "packages/react-date-time/tsconfig.json", + "hash": "15516134720009168635" + }, + { + "file": "packages/react-date-time/webpack.config.js", + "hash": "13232597493584319508" + } + ], + "@fluentui/azure-themes": [ + { + "file": "packages/azure-themes/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/azure-themes/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/azure-themes/CHANGELOG.json", + "hash": "2814564121899980480" + }, + { + "file": "packages/azure-themes/CHANGELOG.md", + "hash": "12008305137318728187" + }, + { + "file": "packages/azure-themes/LICENSE", + "hash": "11805460047251502307" + }, + { + "file": "packages/azure-themes/README.md", + "hash": "9487251565582550648" + }, + { + "file": "packages/azure-themes/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/azure-themes/package.json", + "hash": "13993476586447731937", + "deps": [ + "@fluentui/react", + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "packages/azure-themes/project.json", + "hash": "6299750457924615058" + }, + { + "file": "packages/azure-themes/src/AzureCustomizations.ts", + "hash": "4760252950292272729" + }, + { + "file": "packages/azure-themes/src/azure/AzureColors.ts", + "hash": "14152952468054705526" + }, + { + "file": "packages/azure-themes/src/azure/AzureDepths.ts", + "hash": "17261250879660942101" + }, + { + "file": "packages/azure-themes/src/azure/AzureStyleSettings.ts", + "hash": "8316665480931492390" + }, + { + "file": "packages/azure-themes/src/azure/AzureThemeDark.ts", + "hash": "4313722604489990327" + }, + { + "file": "packages/azure-themes/src/azure/AzureThemeHighContrastDark.ts", + "hash": "7102611927819756797" + }, + { + "file": "packages/azure-themes/src/azure/AzureThemeHighContrastLight.ts", + "hash": "9454370145371971118" + }, + { + "file": "packages/azure-themes/src/azure/AzureThemeLight.ts", + "hash": "18091326576033638586" + }, + { + "file": "packages/azure-themes/src/azure/AzureType.ts", + "hash": "15414580302593572625" + }, + { + "file": "packages/azure-themes/src/azure/Constants.ts", + "hash": "2809813925329042682" + }, + { + "file": "packages/azure-themes/src/azure/IAzureSemanticColors.ts", + "hash": "13420497678842227618" + }, + { + "file": "packages/azure-themes/src/azure/IExtendedSemanticColors.ts", + "hash": "14227374167342092383" + }, + { + "file": "packages/azure-themes/src/azure/index.ts", + "hash": "4374715962088181245" + }, + { + "file": "packages/azure-themes/src/azure/styles/ActionButton.styles.ts", + "hash": "13596369672849093373" + }, + { + "file": "packages/azure-themes/src/azure/styles/Breadcrumb.styles.ts", + "hash": "17718963414523065709" + }, + { + "file": "packages/azure-themes/src/azure/styles/Calendar.styles.ts", + "hash": "16971015327285923408" + }, + { + "file": "packages/azure-themes/src/azure/styles/Callout.styles.ts", + "hash": "4549843136555746723" + }, + { + "file": "packages/azure-themes/src/azure/styles/Checkbox.styles.ts", + "hash": "7581482770815269795" + }, + { + "file": "packages/azure-themes/src/azure/styles/ChoiceGroupOptions.styles.ts", + "hash": "2636532473744196771" + }, + { + "file": "packages/azure-themes/src/azure/styles/ColorPicker.styles.ts", + "hash": "6392088099577082345" + }, + { + "file": "packages/azure-themes/src/azure/styles/ColorPickerGridCell.styles.ts", + "hash": "10160459480635280492" + }, + { + "file": "packages/azure-themes/src/azure/styles/ComboBox.styles.ts", + "hash": "17823202381537620748" + }, + { + "file": "packages/azure-themes/src/azure/styles/CommandBar.styles.ts", + "hash": "12712977659203094181" + }, + { + "file": "packages/azure-themes/src/azure/styles/CommandBarButton.styles.ts", + "hash": "2033780080583129886" + }, + { + "file": "packages/azure-themes/src/azure/styles/CompoundButton.styles.ts", + "hash": "17349175564712120044" + }, + { + "file": "packages/azure-themes/src/azure/styles/ContextualMenu.styles.ts", + "hash": "13424731381391286619" + }, + { + "file": "packages/azure-themes/src/azure/styles/DatePicker.styles.ts", + "hash": "11990316255925778035" + }, + { + "file": "packages/azure-themes/src/azure/styles/DefaultButton.styles.ts", + "hash": "15716448895851031924" + }, + { + "file": "packages/azure-themes/src/azure/styles/DetailsList.styles.ts", + "hash": "14513801309827161140" + }, + { + "file": "packages/azure-themes/src/azure/styles/Dialog.styles.ts", + "hash": "6387972746686542555" + }, + { + "file": "packages/azure-themes/src/azure/styles/DocumentCard.styles.ts", + "hash": "5072704218799592150" + }, + { + "file": "packages/azure-themes/src/azure/styles/DropDown.styles.ts", + "hash": "12791379548962019908" + }, + { + "file": "packages/azure-themes/src/azure/styles/HoverCard.styles.ts", + "hash": "437137438162278789" + }, + { + "file": "packages/azure-themes/src/azure/styles/IconButton.styles.ts", + "hash": "13095050026182229537" + }, + { + "file": "packages/azure-themes/src/azure/styles/Label.styles.ts", + "hash": "18308403615151462886" + }, + { + "file": "packages/azure-themes/src/azure/styles/Link.styles.ts", + "hash": "10966391963600700609" + }, + { + "file": "packages/azure-themes/src/azure/styles/MessageBar.styles.ts", + "hash": "13968504130946602066" + }, + { + "file": "packages/azure-themes/src/azure/styles/Modal.styles.ts", + "hash": "6304647593323757102" + }, + { + "file": "packages/azure-themes/src/azure/styles/Nav.styles.ts", + "hash": "3062138929163538025" + }, + { + "file": "packages/azure-themes/src/azure/styles/Overlay.styles.ts", + "hash": "7092008763459894671" + }, + { + "file": "packages/azure-themes/src/azure/styles/Panel.styles.ts", + "hash": "16260399713980995173" + }, + { + "file": "packages/azure-themes/src/azure/styles/Pivot.styles.ts", + "hash": "4205451113277631358" + }, + { + "file": "packages/azure-themes/src/azure/styles/PrimaryButton.styles.ts", + "hash": "10584165192860092413" + }, + { + "file": "packages/azure-themes/src/azure/styles/ProgressIndicator.styles.ts", + "hash": "11169363722773949196" + }, + { + "file": "packages/azure-themes/src/azure/styles/Rating.styles.ts", + "hash": "17915376534463516724" + }, + { + "file": "packages/azure-themes/src/azure/styles/SearchBox.styles.ts", + "hash": "10058059892588619195" + }, + { + "file": "packages/azure-themes/src/azure/styles/Slider.styles.ts", + "hash": "9299139275175695869" + }, + { + "file": "packages/azure-themes/src/azure/styles/SpinButton.styles.ts", + "hash": "3167652000896331774" + }, + { + "file": "packages/azure-themes/src/azure/styles/Suggestions.styles.ts", + "hash": "17170068933032839751" + }, + { + "file": "packages/azure-themes/src/azure/styles/SuggestionsItem.styles.ts", + "hash": "14260189213202838970" + }, + { + "file": "packages/azure-themes/src/azure/styles/TagItem.styles.ts", + "hash": "13074235089176650019" + }, + { + "file": "packages/azure-themes/src/azure/styles/TagPicker.styles.ts", + "hash": "17455813293478966913" + }, + { + "file": "packages/azure-themes/src/azure/styles/TeachingBubble.styles.ts", + "hash": "9742274931439777845" + }, + { + "file": "packages/azure-themes/src/azure/styles/TextField.styles.ts", + "hash": "16504341065904792603" + }, + { + "file": "packages/azure-themes/src/azure/styles/Toggle.styles.ts", + "hash": "9820131752972096051" + }, + { + "file": "packages/azure-themes/src/azure/styles/Tooltip.styles.ts", + "hash": "1137867786174432089" + }, + { + "file": "packages/azure-themes/src/index.ts", + "hash": "7441033631543621919" + }, + { + "file": "packages/azure-themes/src/version.ts", + "hash": "14756785630021474777" + }, + { + "file": "packages/azure-themes/tsconfig.json", + "hash": "6054155811259967380" + }, + { + "file": "packages/azure-themes/webpack.config.js", + "hash": "14062494459790566470" + } + ], + "@fluentui/react-breadcrumb": [ + { + "file": "packages/react-components/react-breadcrumb/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-breadcrumb/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-breadcrumb/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-breadcrumb/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-breadcrumb/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-breadcrumb/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-breadcrumb/CHANGELOG.json", + "hash": "2570283488899410161" + }, + { + "file": "packages/react-components/react-breadcrumb/CHANGELOG.md", + "hash": "1735034764987370929" + }, + { + "file": "packages/react-components/react-breadcrumb/LICENSE", + "hash": "16481799524039364263" + }, + { + "file": "packages/react-components/react-breadcrumb/README.md", + "hash": "16815256696382455714" + }, + { + "file": "packages/react-components/react-breadcrumb/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-breadcrumb/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-breadcrumb/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/MIGRATION.md", + "hash": "17124393446517252405" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/Spec.md", + "hash": "16525832846360908320" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb-overflow.png", + "hash": "2473429825315886427" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb-truncated-text.png", + "hash": "16585691422223282118" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb.png", + "hash": "11475088599067018810" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/beadcrumb-states.png", + "hash": "1882688032436144693" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/breadcrumb-anatomy.png", + "hash": "4894770811587900772" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/breadcrumb-collapsed-items.png", + "hash": "4795354596016889485" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/breadcrumb-keyboard-interaction.png", + "hash": "9771384705522163308" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/breadcrumb-tooltip.png", + "hash": "9656854138789449118" + }, + { + "file": "packages/react-components/react-breadcrumb/docs/assets/button-beadcrumb.png", + "hash": "2606983199978138996" + }, + { + "file": "packages/react-components/react-breadcrumb/etc/react-breadcrumb.api.md", + "hash": "5866624564911992559" + }, + { + "file": "packages/react-components/react-breadcrumb/jest.config.js", + "hash": "15096978446821584885" + }, + { + "file": "packages/react-components/react-breadcrumb/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-breadcrumb/package.json", + "hash": "8595538614651167172", + "deps": [ + "@fluentui/react-aria", + "@fluentui/react-button", + "npm:@fluentui/react-icons", + "@fluentui/react-link", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-breadcrumb/project.json", + "hash": "16891773604498379506" + }, + { + "file": "packages/react-components/react-breadcrumb/src/Breadcrumb.ts", + "hash": "4692325558598841885" + }, + { + "file": "packages/react-components/react-breadcrumb/src/BreadcrumbButton.ts", + "hash": "13142461312489699262" + }, + { + "file": "packages/react-components/react-breadcrumb/src/BreadcrumbDivider.ts", + "hash": "17595441548180529431" + }, + { + "file": "packages/react-components/react-breadcrumb/src/BreadcrumbItem.ts", + "hash": "1650401439078923478" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.cy.tsx", + "hash": "5131453721576360491" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.test.tsx", + "hash": "1478477349638612290" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.tsx", + "hash": "17948809077375736751" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.types.ts", + "hash": "8628138238589389834" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/BreadcrumbContext.ts", + "hash": "16805312103383567144" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/BreadcrumbWithMenu.cy.tsx", + "hash": "7203087750206932430" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/index.ts", + "hash": "9032724877765988093" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/renderBreadcrumb.tsx", + "hash": "5792393368173279133" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumb.ts", + "hash": "6340783675223266602" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbContextValue.ts", + "hash": "17467019924492118170" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbStyles.styles.ts", + "hash": "7820283913277421146" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.test.tsx", + "hash": "2653884237723303862" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.tsx", + "hash": "16222238748512939394" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.types.ts", + "hash": "7142817545924236721" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/index.ts", + "hash": "10954122702786375744" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/renderBreadcrumbButton.tsx", + "hash": "10083161542978976558" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/useBreadcrumbButton.ts", + "hash": "10220476350761926617" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.ts", + "hash": "13929106455172225784" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.test.tsx", + "hash": "2740829010159730811" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.tsx", + "hash": "6530941049629619903" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.types.ts", + "hash": "9811041371185527372" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/index.ts", + "hash": "2366895614594973706" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/renderBreadcrumbDivider.tsx", + "hash": "9225555914960429542" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/useBreadcrumbDivider.tsx", + "hash": "1405733621306022692" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.ts", + "hash": "9947518297677346549" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.test.tsx", + "hash": "3021827718308952245" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.tsx", + "hash": "5649139577683726299" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.types.ts", + "hash": "6057980798464983090" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/index.ts", + "hash": "14997305546070859164" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/renderBreadcrumbItem.tsx", + "hash": "16948262709942899186" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/useBreadcrumbItem.ts", + "hash": "8502803056347678860" + }, + { + "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.ts", + "hash": "7253756977649122971" + }, + { + "file": "packages/react-components/react-breadcrumb/src/index.ts", + "hash": "403224537735235068" + }, + { + "file": "packages/react-components/react-breadcrumb/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-breadcrumb/src/utils/index.ts", + "hash": "6102866357142899175" + }, + { + "file": "packages/react-components/react-breadcrumb/src/utils/partitionBreadcrumbItems.test.ts", + "hash": "10295724281836694216" + }, + { + "file": "packages/react-components/react-breadcrumb/src/utils/partitionBreadcrumbItems.ts", + "hash": "10722155471173273905" + }, + { + "file": "packages/react-components/react-breadcrumb/src/utils/truncateBreadcrumb.test.ts", + "hash": "2965978281950772724" + }, + { + "file": "packages/react-components/react-breadcrumb/src/utils/truncateBreadcrumb.ts", + "hash": "10752014325791471505" + }, + { + "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbDefault.stories.tsx", + "hash": "8869935600499207876" + }, + { + "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbDescription.md", + "hash": "17689646751484476668" + }, + { + "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbSize.stories.tsx", + "hash": "13976348487297585255" + }, + { + "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbWithOverflow.stories.tsx", + "hash": "2989295134577667826" + }, + { + "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbWithTooltip.stories.tsx", + "hash": "12929963736895107743" + }, + { + "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/index.stories.tsx", + "hash": "6924523627962872578" + }, + { + "file": "packages/react-components/react-breadcrumb/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-breadcrumb/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-breadcrumb/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-breadcrumb/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/font-icons-mdl2": [ + { + "file": "packages/font-icons-mdl2/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/font-icons-mdl2/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/font-icons-mdl2/CHANGELOG.json", + "hash": "6596473413517250674" + }, + { + "file": "packages/font-icons-mdl2/CHANGELOG.md", + "hash": "11813262917588591655" + }, + { + "file": "packages/font-icons-mdl2/LICENSE", + "hash": "12908007654657131543" + }, + { + "file": "packages/font-icons-mdl2/README.md", + "hash": "1942754853377387705" + }, + { + "file": "packages/font-icons-mdl2/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-0.json", + "hash": "7706377881449390395" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-1.json", + "hash": "12994875537715451137" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-10.json", + "hash": "2815620732732830195" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-11.json", + "hash": "7236241969158321736" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-12.json", + "hash": "9678062810318118885" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-13.json", + "hash": "5156040440638150948" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-14.json", + "hash": "13039891500113351097" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-15.json", + "hash": "8801652855336313148" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-16.json", + "hash": "15516953590367115156" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-17.json", + "hash": "13589667259558619548" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-2.json", + "hash": "7875540344301974216" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-3.json", + "hash": "16077858637040139431" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-4.json", + "hash": "2841366491057342586" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-5.json", + "hash": "2556643830595083093" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-6.json", + "hash": "15068278795867487161" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-7.json", + "hash": "9212439579894632972" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-8.json", + "hash": "2080398174427644166" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons-9.json", + "hash": "4759858566820518147" + }, + { + "file": "packages/font-icons-mdl2/config/fabric-icons.json", + "hash": "6963775744796371758" + }, + { + "file": "packages/font-icons-mdl2/config/pre-copy.json", + "hash": "7054591292658078092" + }, + { + "file": "packages/font-icons-mdl2/etc/font-icons-mdl2.api.md", + "hash": "1040272583929107432" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-0-467ee27f.woff", + "hash": "9727409240084950456" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-1-4d521695.woff", + "hash": "11782482911719233328" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-10-c4ded8e4.woff", + "hash": "8683213800300962823" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-11-2a8393d6.woff", + "hash": "4800192945444416049" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-12-7e945a1e.woff", + "hash": "7152385435025376386" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-13-c3989a02.woff", + "hash": "15826418001211840958" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-14-5cf58db8.woff", + "hash": "1568575544080586197" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-15-3807251b.woff", + "hash": "6679690953050194640" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-16-9cf93f3b.woff", + "hash": "10385869052298718372" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-17-0c4ed701.woff", + "hash": "9879264519512726611" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-2-63c99abf.woff", + "hash": "4248354025373691406" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-3-089e217a.woff", + "hash": "10079215862186498571" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-4-a656cc0a.woff", + "hash": "763904542900725867" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-5-f95ba260.woff", + "hash": "12283581664107513526" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-6-ef6fd590.woff", + "hash": "6636588578906150594" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-7-2b97bb99.woff", + "hash": "1562652165603914188" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-8-6fdf1528.woff", + "hash": "10760299555913719264" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-9-c6162b42.woff", + "hash": "11880077812956966882" + }, + { + "file": "packages/font-icons-mdl2/fonts/fabric-icons-a13498cf.woff", + "hash": "9094530928610613666" + }, + { + "file": "packages/font-icons-mdl2/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/font-icons-mdl2/package.json", + "hash": "6766348593423021237", + "deps": [ + "@fluentui/set-version", + "@fluentui/style-utilities", + "@fluentui/utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/font-icons-mdl2/project.json", + "hash": "16347449220567014521" + }, + { + "file": "packages/font-icons-mdl2/src/IconNames.ts", + "hash": "15040646129596948898" + }, + { + "file": "packages/font-icons-mdl2/src/data/AllIconNames.json", + "hash": "255000302489916290" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-0.ts", + "hash": "8915246145745466284" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-1.ts", + "hash": "8405252460772238398" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-10.ts", + "hash": "13454595347227280180" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-11.ts", + "hash": "3846349522741700547" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-12.ts", + "hash": "14919245803957946133" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-13.ts", + "hash": "13421949462798247163" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-14.ts", + "hash": "11651766092006487866" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-15.ts", + "hash": "5913067749739754889" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-16.ts", + "hash": "1938273561721658506" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-17.ts", + "hash": "16745157463180821700" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-2.ts", + "hash": "8089041981968012677" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-3.ts", + "hash": "15666268342868477210" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-4.ts", + "hash": "7141991849238464261" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-5.ts", + "hash": "17978308980500404278" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-6.ts", + "hash": "4598385603964478011" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-7.ts", + "hash": "7191688199835628637" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-8.ts", + "hash": "15977938474733404181" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons-9.ts", + "hash": "4640504316025068722" + }, + { + "file": "packages/font-icons-mdl2/src/fabric-icons.ts", + "hash": "16136330814992617156" + }, + { + "file": "packages/font-icons-mdl2/src/iconAliases.ts", + "hash": "14099067786273144772" + }, + { + "file": "packages/font-icons-mdl2/src/iconNames.test.ts", + "hash": "1735850012565977488" + }, + { + "file": "packages/font-icons-mdl2/src/index.ts", + "hash": "18182222310833360328" + }, + { + "file": "packages/font-icons-mdl2/src/version.ts", + "hash": "2559425555783107307" + }, + { + "file": "packages/font-icons-mdl2/tsconfig.json", + "hash": "279610058387507708" + } + ], + "@fluentui/react-portal": [ + { + "file": "packages/react-components/react-portal/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-portal/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-portal/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-portal/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-portal/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-portal/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-portal/CHANGELOG.json", + "hash": "6591119815101217949" + }, + { + "file": "packages/react-components/react-portal/CHANGELOG.md", + "hash": "3274066332542757743" + }, + { + "file": "packages/react-components/react-portal/LICENSE", + "hash": "5436713769968226347" + }, + { + "file": "packages/react-components/react-portal/README.md", + "hash": "8273149864735662535" + }, + { + "file": "packages/react-components/react-portal/bundle-size/Portal.fixture.js", + "hash": "16985937506839637290" + }, + { + "file": "packages/react-components/react-portal/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-portal/config/tests.js", + "hash": "14010006175392234982" + }, + { + "file": "packages/react-components/react-portal/docs/Spec.md", + "hash": "6366170172262274459" + }, + { + "file": "packages/react-components/react-portal/etc/react-portal.api.md", + "hash": "10658581800869826363" + }, + { + "file": "packages/react-components/react-portal/jest.config.js", + "hash": "9910520644242674457" + }, + { + "file": "packages/react-components/react-portal/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-portal/package.json", + "hash": "11677510734866859682", + "deps": [ + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "npm:use-disposable", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-portal/project.json", + "hash": "14457468981824115850" + }, + { + "file": "packages/react-components/react-portal/src/Portal.ts", + "hash": "7845203508181959455" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/Portal-node.test.tsx", + "hash": "9136445508182774156" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/Portal.test.tsx", + "hash": "17392842799512127596" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/Portal.tsx", + "hash": "11011410844879135032" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/Portal.types.ts", + "hash": "11324991944097355967" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/__snapshots__/Portal.test.tsx.snap", + "hash": "9062428348270700463" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/index.ts", + "hash": "16697091254987862602" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/renderPortal.tsx", + "hash": "8968293240803067495" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/usePortal.ts", + "hash": "16841979113281129113" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/usePortalMountNode.test.tsx", + "hash": "11910220960810678723" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/usePortalMountNode.ts", + "hash": "2336349602905310883" + }, + { + "file": "packages/react-components/react-portal/src/components/Portal/usePortalMountNodeStyles.styles.ts", + "hash": "10679524190507651237" + }, + { + "file": "packages/react-components/react-portal/src/index.ts", + "hash": "8374907855495313520" + }, + { + "file": "packages/react-components/react-portal/src/utils/toMountNodeProps.test.ts", + "hash": "6575869444091968759" + }, + { + "file": "packages/react-components/react-portal/src/utils/toMountNodeProps.ts", + "hash": "17503404067390627007" + }, + { + "file": "packages/react-components/react-portal/stories/Portal/PortalDefault.stories.tsx", + "hash": "840727895949819606" + }, + { + "file": "packages/react-components/react-portal/stories/Portal/PortalDescription.md", + "hash": "3241420095240977648" + }, + { + "file": "packages/react-components/react-portal/stories/Portal/index.stories.tsx", + "hash": "17009993612510309048" + }, + { + "file": "packages/react-components/react-portal/stories/toMountNodeProps/Default.stories.tsx", + "hash": "18309127042547897604" + }, + { + "file": "packages/react-components/react-portal/stories/toMountNodeProps/index.stories.tsx", + "hash": "15428942433571628197" + }, + { + "file": "packages/react-components/react-portal/stories/toMountNodeProps/toMountNodePropsDescription.md", + "hash": "11465112477349060741" + }, + { + "file": "packages/react-components/react-portal/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-portal/tsconfig.lib.json", + "hash": "2330431448937249608" + }, + { + "file": "packages/react-components/react-portal/tsconfig.spec.json", + "hash": "5989250612042187831" + } + ], + "@fluentui/react-jsx-runtime": [ + { + "file": "packages/react-components/react-jsx-runtime/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-jsx-runtime/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-jsx-runtime/.gitignore", + "hash": "9550321157120374298" + }, + { + "file": "packages/react-components/react-jsx-runtime/.swcrc", + "hash": "471348148265161299" + }, + { + "file": "packages/react-components/react-jsx-runtime/CHANGELOG.json", + "hash": "10971670868821144686" + }, + { + "file": "packages/react-components/react-jsx-runtime/CHANGELOG.md", + "hash": "12062860809062640425" + }, + { + "file": "packages/react-components/react-jsx-runtime/LICENSE", + "hash": "8462864562846768755" + }, + { + "file": "packages/react-components/react-jsx-runtime/README.md", + "hash": "11109812187361138131" + }, + { + "file": "packages/react-components/react-jsx-runtime/bundle-size/Classic.fixture.js", + "hash": "2189361890724554761" + }, + { + "file": "packages/react-components/react-jsx-runtime/bundle-size/DevRuntime.fixture.js", + "hash": "12091473808950978917" + }, + { + "file": "packages/react-components/react-jsx-runtime/bundle-size/Runtime.fixture.js", + "hash": "6901675173806772497" + }, + { + "file": "packages/react-components/react-jsx-runtime/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-jsx-runtime/config/pre-copy.json", + "hash": "447189867406931907" + }, + { + "file": "packages/react-components/react-jsx-runtime/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-jsx-runtime/etc/react-jsx-runtime.api.md", + "hash": "16798684193978159480" + }, + { + "file": "packages/react-components/react-jsx-runtime/jest.config.js", + "hash": "2360704257532875213" + }, + { + "file": "packages/react-components/react-jsx-runtime/just.config.ts", + "hash": "8807236478034018475" + }, + { + "file": "packages/react-components/react-jsx-runtime/package.json", + "hash": "7260507828872674596", + "deps": [ + "@fluentui/react-utilities", + "npm:react-is", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-components/react-jsx-runtime/project.json", + "hash": "10908212225777993114" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/createElement.test.tsx", + "hash": "7857934002103683381" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/createElement.ts", + "hash": "5143903251423192488" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/index.ts", + "hash": "10432910293518490296" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/interop.test.tsx", + "hash": "7355979823247544430" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx/createElementFromSlotComponent.ts", + "hash": "3242772620948003538" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx/createJSX.ts", + "hash": "16587162612105716723" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx/jsxDEVSlot.ts", + "hash": "13641530372240414573" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx/jsxSlot.ts", + "hash": "3757873525937880939" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx/jsxsSlot.ts", + "hash": "14860851723228540792" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx-dev-runtime/index.d.ts__tmpl__", + "hash": "853853025402546499" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx-dev-runtime/package.json__tmpl__", + "hash": "12566889565698761272" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx-dev-runtime.ts", + "hash": "1020294888243174344" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx-runtime/index.d.ts__tmpl__", + "hash": "9028021041769997884" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx-runtime/package.json__tmpl__", + "hash": "4896823238390758319" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx-runtime.test.tsx", + "hash": "4011489009326148226" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/jsx-runtime.ts", + "hash": "1117252994552105149" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/utils/DevRuntime.ts", + "hash": "16814367357734031505" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/utils/Runtime.ts", + "hash": "1866520596003103388" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/utils/createCompatSlotComponent.ts", + "hash": "3622659148642250765" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/utils/getMetadataFromSlotComponent.test.ts", + "hash": "6977890710643796475" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/utils/getMetadataFromSlotComponent.ts", + "hash": "7143021942311493841" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/utils/types.ts", + "hash": "12638258598676338443" + }, + { + "file": "packages/react-components/react-jsx-runtime/src/utils/warnIfElementTypeIsInvalid.ts", + "hash": "17606458788076983412" + }, + { + "file": "packages/react-components/react-jsx-runtime/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/react-jsx-runtime/tsconfig.lib.json", + "hash": "14975475306433073951" + }, + { + "file": "packages/react-components/react-jsx-runtime/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/react-image": [ + { + "file": "packages/react-components/react-image/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-image/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-image/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-image/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-image/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-image/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-image/CHANGELOG.json", + "hash": "12972083916301177064" + }, + { + "file": "packages/react-components/react-image/CHANGELOG.md", + "hash": "3050448768160993159" + }, + { + "file": "packages/react-components/react-image/LICENSE", + "hash": "6217079007318333882" + }, + { + "file": "packages/react-components/react-image/README.md", + "hash": "1363519546262385559" + }, + { + "file": "packages/react-components/react-image/bundle-size/Image.fixture.js", + "hash": "16899974605924331648" + }, + { + "file": "packages/react-components/react-image/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-image/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-image/docs/MIGRATION.md", + "hash": "11324318193252804635" + }, + { + "file": "packages/react-components/react-image/docs/Spec.md", + "hash": "3759599989017744849" + }, + { + "file": "packages/react-components/react-image/etc/react-image.api.md", + "hash": "16047758325502523106" + }, + { + "file": "packages/react-components/react-image/jest.config.js", + "hash": "17059578713221881884" + }, + { + "file": "packages/react-components/react-image/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-image/package.json", + "hash": "13785354620659825348", + "deps": [ + "@fluentui/react-shared-contexts", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "@fluentui/react-theme", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-image/project.json", + "hash": "14014664761946749721" + }, + { + "file": "packages/react-components/react-image/src/Image.ts", + "hash": "16464656776672641880" + }, + { + "file": "packages/react-components/react-image/src/components/Image/Image.test.tsx", + "hash": "12718530982841221568" + }, + { + "file": "packages/react-components/react-image/src/components/Image/Image.tsx", + "hash": "5286392891935920670" + }, + { + "file": "packages/react-components/react-image/src/components/Image/Image.types.ts", + "hash": "109715587094993652" + }, + { + "file": "packages/react-components/react-image/src/components/Image/__snapshots__/Image.test.tsx.snap", + "hash": "16033528447138702018" + }, + { + "file": "packages/react-components/react-image/src/components/Image/index.ts", + "hash": "3654391162566112964" + }, + { + "file": "packages/react-components/react-image/src/components/Image/renderImage.tsx", + "hash": "8704104212170780282" + }, + { + "file": "packages/react-components/react-image/src/components/Image/useImage.ts", + "hash": "7614888159156795171" + }, + { + "file": "packages/react-components/react-image/src/components/Image/useImageStyles.styles.ts", + "hash": "5034345938613758190" + }, + { + "file": "packages/react-components/react-image/src/index.ts", + "hash": "9024266930531352710" + }, + { + "file": "packages/react-components/react-image/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageBestPractices.md", + "hash": "12632277717522951694" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageBlock.stories.tsx", + "hash": "11733438778682927144" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageBordered.stories.tsx", + "hash": "18093213642290742067" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageDefault.stories.tsx", + "hash": "15360143901742590023" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageDescription.md", + "hash": "1568935439820178083" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageFallback.stories.tsx", + "hash": "5767623493687585505" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageFit.stories.tsx", + "hash": "1094106785743098401" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageShadow.stories.tsx", + "hash": "11132081493084711018" + }, + { + "file": "packages/react-components/react-image/stories/Image/ImageShape.stories.tsx", + "hash": "15738169211055779651" + }, + { + "file": "packages/react-components/react-image/stories/Image/index.stories.tsx", + "hash": "809696348755387075" + }, + { + "file": "packages/react-components/react-image/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-image/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-image/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/tokens": [ + { + "file": "packages/tokens/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/tokens/.eslintrc.json", + "hash": "7826845955212215663" + }, + { + "file": "packages/tokens/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/tokens/CHANGELOG.json", + "hash": "14841026886481865649" + }, + { + "file": "packages/tokens/CHANGELOG.md", + "hash": "3366136784723633930" + }, + { + "file": "packages/tokens/LICENSE", + "hash": "2957492313707768209" + }, + { + "file": "packages/tokens/README.md", + "hash": "1744177084782103850" + }, + { + "file": "packages/tokens/config/api-extractor.json", + "hash": "10178698400109090564" + }, + { + "file": "packages/tokens/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/tokens/etc/tokens.api.md", + "hash": "9001732672187428224" + }, + { + "file": "packages/tokens/jest.config.js", + "hash": "15807496765609650508" + }, + { + "file": "packages/tokens/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/tokens/package.json", + "hash": "2400468319047909006", + "deps": [ + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/tokens/project.json", + "hash": "207057935229196254" + }, + { + "file": "packages/tokens/src/alias/darkColor.ts", + "hash": "6524628836699045198" + }, + { + "file": "packages/tokens/src/alias/darkColorPalette.ts", + "hash": "18318455665690501717" + }, + { + "file": "packages/tokens/src/alias/highContrastColor.ts", + "hash": "17333459973956732870" + }, + { + "file": "packages/tokens/src/alias/highContrastColorPalette.ts", + "hash": "7598837583164836057" + }, + { + "file": "packages/tokens/src/alias/lightColor.ts", + "hash": "699927236436408252" + }, + { + "file": "packages/tokens/src/alias/lightColorPalette.ts", + "hash": "15665362712347405664" + }, + { + "file": "packages/tokens/src/alias/teamsDarkColor.ts", + "hash": "495554757685176995" + }, + { + "file": "packages/tokens/src/global/borderRadius.ts", + "hash": "10922533387751712670" + }, + { + "file": "packages/tokens/src/global/brandColors.ts", + "hash": "13470927145154942037" + }, + { + "file": "packages/tokens/src/global/colorPalette.ts", + "hash": "14811325803284691358" + }, + { + "file": "packages/tokens/src/global/colors.ts", + "hash": "7382183712404700876" + }, + { + "file": "packages/tokens/src/global/curves.ts", + "hash": "15506710049223549044" + }, + { + "file": "packages/tokens/src/global/durations.ts", + "hash": "11571525354434980387" + }, + { + "file": "packages/tokens/src/global/fonts.ts", + "hash": "16300469290703263152" + }, + { + "file": "packages/tokens/src/global/index.ts", + "hash": "2397229802645905796" + }, + { + "file": "packages/tokens/src/global/spacings.ts", + "hash": "6252071470469473214" + }, + { + "file": "packages/tokens/src/global/strokeWidths.ts", + "hash": "1605802753556060163" + }, + { + "file": "packages/tokens/src/global/typographyStyles.ts", + "hash": "18192818131277542845" + }, + { + "file": "packages/tokens/src/index.ts", + "hash": "10799930784753146153" + }, + { + "file": "packages/tokens/src/sharedColorNames.ts", + "hash": "17837956492232571546" + }, + { + "file": "packages/tokens/src/statusColorMapping.ts", + "hash": "3958570264250862025" + }, + { + "file": "packages/tokens/src/themeToTokensObject.test.ts", + "hash": "15766396418114753078" + }, + { + "file": "packages/tokens/src/themeToTokensObject.ts", + "hash": "8566019407815526884" + }, + { + "file": "packages/tokens/src/themes/index.ts", + "hash": "16328840743172684649" + }, + { + "file": "packages/tokens/src/themes/teams/darkTheme.ts", + "hash": "10162129513779528421" + }, + { + "file": "packages/tokens/src/themes/teams/highContrastTheme.ts", + "hash": "8737380161356881067" + }, + { + "file": "packages/tokens/src/themes/teams/index.ts", + "hash": "17608448649042645716" + }, + { + "file": "packages/tokens/src/themes/teams/lightTheme.ts", + "hash": "15856732036176289418" + }, + { + "file": "packages/tokens/src/themes/web/darkTheme.ts", + "hash": "12650699875162499107" + }, + { + "file": "packages/tokens/src/themes/web/index.ts", + "hash": "13361016594897630736" + }, + { + "file": "packages/tokens/src/themes/web/lightTheme.ts", + "hash": "13431256856349139698" + }, + { + "file": "packages/tokens/src/tokens.test.ts", + "hash": "3282789169986695786" + }, + { + "file": "packages/tokens/src/tokens.ts", + "hash": "2285311445095864008" + }, + { + "file": "packages/tokens/src/types.ts", + "hash": "528143425245606708" + }, + { + "file": "packages/tokens/src/utils/createDarkTheme.ts", + "hash": "7754017445960908345" + }, + { + "file": "packages/tokens/src/utils/createHighContrastTheme.ts", + "hash": "5919985595387454286" + }, + { + "file": "packages/tokens/src/utils/createLightTheme.ts", + "hash": "13838707512292291141" + }, + { + "file": "packages/tokens/src/utils/createTeamsDarkTheme.ts", + "hash": "313717060099057838" + }, + { + "file": "packages/tokens/src/utils/index.ts", + "hash": "15545758859304259047" + }, + { + "file": "packages/tokens/src/utils/shadows.ts", + "hash": "2299298543354272552" + }, + { + "file": "packages/tokens/tsconfig.json", + "hash": "3768914200062126724" + }, + { + "file": "packages/tokens/tsconfig.lib.json", + "hash": "13671966270683185407" + }, + { + "file": "packages/tokens/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/react-timepicker-compat-preview": [ + { + "file": "packages/react-components/react-timepicker-compat-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/CHANGELOG.json", + "hash": "7443897928512652454" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/CHANGELOG.md", + "hash": "10288519529322773910" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/LICENSE", + "hash": "16008528871596961028" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/README.md", + "hash": "1809579314509941543" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/bundle-size/TimePicker.fixture.js", + "hash": "14241624297653717010" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/docs/Migration.md", + "hash": "4021833649227823482" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/docs/Spec.md", + "hash": "8635174822444888522" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/etc/react-timepicker-compat-preview.api.md", + "hash": "10410088753599407092" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/jest.config.js", + "hash": "9766146148654026096" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/package.json", + "hash": "18075287189948415372", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-combobox", + "@fluentui/react-field", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/project.json", + "hash": "11623526912155252897" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/TimePicker.ts", + "hash": "8919003633615161634" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.cy.tsx", + "hash": "2268766357020981108" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.test.tsx", + "hash": "4625180512860312676" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.tsx", + "hash": "6856338812317042222" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.types.ts", + "hash": "16705913128014134642" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/index.ts", + "hash": "14317002683791819993" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/timeMath.test.ts", + "hash": "9610495087449809696" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/timeMath.ts", + "hash": "16427594297458443598" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/useTimePicker.tsx", + "hash": "10101090423944398224" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/useTimePickerStyles.styles.ts", + "hash": "9323957650113310013" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/index.ts", + "hash": "15110596364222141948" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerBestPractices.md", + "hash": "4715016281428560167" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerControlled.md", + "hash": "4542577073511108011" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerControlled.stories.tsx", + "hash": "14159446324711651597" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerDefault.stories.tsx", + "hash": "3866129310777451618" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerDescription.md", + "hash": "6543020975323479896" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformCustomParsing.md", + "hash": "8328212493981358431" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformCustomParsing.stories.tsx", + "hash": "13973002934670696970" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformWithErrorHandling.md", + "hash": "9839268275704554451" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformWithErrorHandling.stories.tsx", + "hash": "4213027057161624603" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerWithDatePicker.stories.tsx", + "hash": "11484153653506326666" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/index.stories.tsx", + "hash": "2147694366172160105" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/tsconfig.lib.json", + "hash": "8117551715541039118" + }, + { + "file": "packages/react-components/react-timepicker-compat-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/api-docs": [ + { + "file": "packages/api-docs/.eslintrc.json", + "hash": "9627670268003919245" + }, + { + "file": "packages/api-docs/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/api-docs/CHANGELOG.json", + "hash": "12711583694195328654" + }, + { + "file": "packages/api-docs/CHANGELOG.md", + "hash": "2344515844001916141" + }, + { + "file": "packages/api-docs/LICENSE", + "hash": "7466169225848381887" + }, + { + "file": "packages/api-docs/README.md", + "hash": "4151301246977188865" + }, + { + "file": "packages/api-docs/just.config.ts", + "hash": "2411455081002746933" + }, + { + "file": "packages/api-docs/package.json", + "hash": "8623523342725706688", + "deps": [ + "npm:@microsoft/api-extractor-model", + "npm:@microsoft/tsdoc", + "npm:fs-extra", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/api-docs/project.json", + "hash": "9716814402591382366" + }, + { + "file": "packages/api-docs/src/generatePageJsonFiles.ts", + "hash": "12223137603416192167" + }, + { + "file": "packages/api-docs/src/index.ts", + "hash": "15889215557140595103" + }, + { + "file": "packages/api-docs/src/pageJson.ts", + "hash": "5578611035939541223" + }, + { + "file": "packages/api-docs/src/rendering.ts", + "hash": "7915129139089798906" + }, + { + "file": "packages/api-docs/src/tableJson.ts", + "hash": "18347889133488948496" + }, + { + "file": "packages/api-docs/src/tableRowJson.ts", + "hash": "12702627324845232143" + }, + { + "file": "packages/api-docs/src/types-private.ts", + "hash": "5292858344273348012" + }, + { + "file": "packages/api-docs/src/types.ts", + "hash": "9057104128889182660" + }, + { + "file": "packages/api-docs/tsconfig.json", + "hash": "7070703656195421188" + } + ], + "@fluentui/react-field": [ + { + "file": "packages/react-components/react-field/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-field/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-field/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-field/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-field/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-field/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-field/CHANGELOG.json", + "hash": "8039457963269041194" + }, + { + "file": "packages/react-components/react-field/CHANGELOG.md", + "hash": "1060451877954283372" + }, + { + "file": "packages/react-components/react-field/LICENSE", + "hash": "554933104331199409" + }, + { + "file": "packages/react-components/react-field/README.md", + "hash": "893706678477031575" + }, + { + "file": "packages/react-components/react-field/bundle-size/Field.fixture.js", + "hash": "4838490527905075486" + }, + { + "file": "packages/react-components/react-field/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-field/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-field/docs/Migration.md", + "hash": "10612980883908926799" + }, + { + "file": "packages/react-components/react-field/docs/Spec.md", + "hash": "3881094108645122580" + }, + { + "file": "packages/react-components/react-field/etc/react-field.api.md", + "hash": "12427575368903476413" + }, + { + "file": "packages/react-components/react-field/jest.config.js", + "hash": "16251327533616583441" + }, + { + "file": "packages/react-components/react-field/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-field/package.json", + "hash": "17322716232717629014", + "deps": [ + "@fluentui/react-context-selector", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-label", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-field/project.json", + "hash": "10933597292463507432" + }, + { + "file": "packages/react-components/react-field/src/Field.ts", + "hash": "9870089672195185903" + }, + { + "file": "packages/react-components/react-field/src/components/Field/Field.test.tsx", + "hash": "8461276573503618894" + }, + { + "file": "packages/react-components/react-field/src/components/Field/Field.tsx", + "hash": "12598293249723199107" + }, + { + "file": "packages/react-components/react-field/src/components/Field/Field.types.ts", + "hash": "5054979877071605023" + }, + { + "file": "packages/react-components/react-field/src/components/Field/index.ts", + "hash": "5707729203640261208" + }, + { + "file": "packages/react-components/react-field/src/components/Field/renderField.tsx", + "hash": "14499036947624830423" + }, + { + "file": "packages/react-components/react-field/src/components/Field/useField.tsx", + "hash": "5536967628399082504" + }, + { + "file": "packages/react-components/react-field/src/components/Field/useFieldStyles.styles.ts", + "hash": "14064633758097641501" + }, + { + "file": "packages/react-components/react-field/src/contexts/FieldContext.ts", + "hash": "14919646964922443401" + }, + { + "file": "packages/react-components/react-field/src/contexts/index.ts", + "hash": "4751556762048871598" + }, + { + "file": "packages/react-components/react-field/src/contexts/useFieldContextValues.ts", + "hash": "17279845786865652248" + }, + { + "file": "packages/react-components/react-field/src/contexts/useFieldControlProps.ts", + "hash": "6840257994312578601" + }, + { + "file": "packages/react-components/react-field/src/index.ts", + "hash": "16864027966588469169" + }, + { + "file": "packages/react-components/react-field/src/testing/isConformant.ts", + "hash": "17159661999478583888" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldBestPractices.md", + "hash": "15241567885935055286" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldComponentExamples.stories.tsx", + "hash": "7102357499471409146" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldDefault.stories.tsx", + "hash": "2389481372061903880" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldDescription.md", + "hash": "8562502418038242748" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldDisabled.stories.tsx", + "hash": "8279245328832126716" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldHint.stories.tsx", + "hash": "4859776890358075498" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldHorizontal.stories.tsx", + "hash": "17955668180315832249" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldInfo.stories.tsx", + "hash": "13887433711882633123" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldRenderFunction.stories.tsx", + "hash": "11505527767084781239" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldRequired.stories.tsx", + "hash": "9204847011564345692" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldSize.stories.tsx", + "hash": "4363541870704469900" + }, + { + "file": "packages/react-components/react-field/stories/Field/FieldValidationMessage.stories.tsx", + "hash": "3714923557314846878" + }, + { + "file": "packages/react-components/react-field/stories/Field/index.stories.tsx", + "hash": "11784715857108891473" + }, + { + "file": "packages/react-components/react-field/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-field/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-field/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-nav-preview": [ + { + "file": "packages/react-components/react-nav-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-nav-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-nav-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-nav-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-nav-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-nav-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-nav-preview/LICENSE", + "hash": "3088430307979696734" + }, + { + "file": "packages/react-components/react-nav-preview/README.md", + "hash": "6756387922919562077" + }, + { + "file": "packages/react-components/react-nav-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-nav-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-nav-preview/etc/react-nav-preview.api.md", + "hash": "9876017806119506379" + }, + { + "file": "packages/react-components/react-nav-preview/jest.config.js", + "hash": "15169909463829389022" + }, + { + "file": "packages/react-components/react-nav-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-nav-preview/package.json", + "hash": "7915169346457060300", + "deps": [ + "@fluentui/react-context-selector", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-jsx-runtime", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-nav-preview/project.json", + "hash": "7707482133573803757" + }, + { + "file": "packages/react-components/react-nav-preview/src/Nav.ts", + "hash": "15226117353876273492" + }, + { + "file": "packages/react-components/react-nav-preview/src/NavCategory.ts", + "hash": "5434715511121912691" + }, + { + "file": "packages/react-components/react-nav-preview/src/NavSubItem.ts", + "hash": "3915242774151390182" + }, + { + "file": "packages/react-components/react-nav-preview/src/NavSubItemGroup.ts", + "hash": "8938240070373757142" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/Nav/Nav.test.tsx", + "hash": "158053486174122653" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/Nav/Nav.tsx", + "hash": "18218270146485422609" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/Nav/Nav.types.ts", + "hash": "10929201366834975573" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/Nav/index.ts", + "hash": "4485693392122920731" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/Nav/renderNav.tsx", + "hash": "7230375357800654130" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/Nav/useNav.ts", + "hash": "8897080659886028628" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/Nav/useNavStyles.styles.ts", + "hash": "4834411169954684266" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.test.tsx", + "hash": "16413704721569380745" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.tsx", + "hash": "1720640811070915642" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.types.ts", + "hash": "10098374413585683092" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategory/index.ts", + "hash": "8839475292241642578" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategory/renderNavCategory.tsx", + "hash": "16804799807584464526" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategory.ts", + "hash": "6494678626284114753" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategoryStyles.styles.ts", + "hash": "12633430787449097937" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.tsx", + "hash": "5847751961393315587" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.types.ts", + "hash": "7891776628441432322" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts", + "hash": "15928452925752890833" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/renderNavCategoryItem.tsx", + "hash": "15736603289382147000" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.styles.ts", + "hash": "15146860763036639062" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.ts", + "hash": "9680309884423010271" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavContext.ts", + "hash": "4576616369669494997" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavContext.types.ts", + "hash": "15231348000793781746" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.test.tsx", + "hash": "14827165463744239965" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.tsx", + "hash": "6052519162523369385" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.types.ts", + "hash": "3032984695700474774" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/index.ts", + "hash": "9427525485211945814" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/renderNavSubItem.tsx", + "hash": "4410008557955283003" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItem.ts", + "hash": "4983794637195202580" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItemStyles.styles.ts", + "hash": "17902598759527383244" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.test.tsx", + "hash": "17591529711307606773" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.tsx", + "hash": "3095811377236672166" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.types.ts", + "hash": "16579070003339013595" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts", + "hash": "12507449088354686105" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/renderNavSubItemGroup.tsx", + "hash": "9750078084299244923" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroup.ts", + "hash": "17877101108238726429" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.ts", + "hash": "17570522853172330214" + }, + { + "file": "packages/react-components/react-nav-preview/src/components/useNavContextValues.tsx", + "hash": "11962765496813473933" + }, + { + "file": "packages/react-components/react-nav-preview/src/index.ts", + "hash": "17244185278957544199" + }, + { + "file": "packages/react-components/react-nav-preview/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-nav-preview/stories/Nav/NavBestPractices.md", + "hash": "13132854725403121719" + }, + { + "file": "packages/react-components/react-nav-preview/stories/Nav/NavDefault.stories.tsx", + "hash": "10523927771920967635" + }, + { + "file": "packages/react-components/react-nav-preview/stories/Nav/NavDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-nav-preview/stories/Nav/NavWithDefaultSelection.stories.tsx", + "hash": "15867010514756758396" + }, + { + "file": "packages/react-components/react-nav-preview/stories/Nav/index.stories.tsx", + "hash": "15202140072825373679" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryBestPractices.md", + "hash": "5558067163628176900" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDefault.stories.tsx", + "hash": "7778044457764643490" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavCategory/index.stories.tsx", + "hash": "9437617484325163212" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemBestPractices.md", + "hash": "13132854725403121719" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemDefault.stories.tsx", + "hash": "11220194927216964124" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavSubItem/index.stories.tsx", + "hash": "7866030612555590358" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupBestPractices.md", + "hash": "5558067163628176900" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDefault.stories.tsx", + "hash": "984192011107987187" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDescription.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-components/react-nav-preview/stories/NavSubItemGroup/index.stories.tsx", + "hash": "17887561937213764921" + }, + { + "file": "packages/react-components/react-nav-preview/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-nav-preview/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-nav-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-update-release-notes": [ + { + "file": "scripts/update-release-notes/.eslintrc.json", + "hash": "3383833998949875450" + }, + { + "file": "scripts/update-release-notes/changelogsAndTags.ts", + "hash": "9695448628784925143" + }, + { + "file": "scripts/update-release-notes/index.ts", + "hash": "4586362800451860761" + }, + { + "file": "scripts/update-release-notes/init.ts", + "hash": "7376748252051231026" + }, + { + "file": "scripts/update-release-notes/jest.config.js", + "hash": "14450656967466977753" + }, + { + "file": "scripts/update-release-notes/markdown.ts", + "hash": "2689630508375349858" + }, + { + "file": "scripts/update-release-notes/package.json", + "hash": "10460076229097447114", + "deps": ["@fluentui/scripts-github"] + }, + { + "file": "scripts/update-release-notes/project.json", + "hash": "14473144405799169564" + }, + { + "file": "scripts/update-release-notes/pullRequests.ts", + "hash": "13578436414946334968" + }, + { + "file": "scripts/update-release-notes/releases.ts", + "hash": "5175589060836789611" + }, + { + "file": "scripts/update-release-notes/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/update-release-notes/tsconfig.lib.json", + "hash": "3753806828268919288" + }, + { + "file": "scripts/update-release-notes/tsconfig.spec.json", + "hash": "16242416785763058919" + }, + { + "file": "scripts/update-release-notes/types.ts", + "hash": "2247159842994839983" + } + ], + "@fluentui/dom-utilities": [ + { + "file": "packages/dom-utilities/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/dom-utilities/.npmignore", + "hash": "7699079327417375383" + }, + { + "file": "packages/dom-utilities/CHANGELOG.json", + "hash": "8068234031633819591" + }, + { + "file": "packages/dom-utilities/CHANGELOG.md", + "hash": "16100292252780397155" + }, + { + "file": "packages/dom-utilities/LICENSE", + "hash": "4650556597768654521" + }, + { + "file": "packages/dom-utilities/README.md", + "hash": "2433927414357617456" + }, + { + "file": "packages/dom-utilities/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/dom-utilities/etc/dom-utilities.api.md", + "hash": "10454177134700198954" + }, + { + "file": "packages/dom-utilities/jest.config.js", + "hash": "8457350006614220129" + }, + { + "file": "packages/dom-utilities/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/dom-utilities/package.json", + "hash": "4796838588752972627", + "deps": [ + "@fluentui/set-version", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/dom-utilities/project.json", + "hash": "15540251548798604047" + }, + { + "file": "packages/dom-utilities/src/IVirtualElement.ts", + "hash": "15055156890037686138" + }, + { + "file": "packages/dom-utilities/src/elementContains.ts", + "hash": "5166646740547888307" + }, + { + "file": "packages/dom-utilities/src/elementContainsAttribute.ts", + "hash": "240530313650375428" + }, + { + "file": "packages/dom-utilities/src/findElementRecursive.ts", + "hash": "15902457052705517702" + }, + { + "file": "packages/dom-utilities/src/getChildren.ts", + "hash": "17303479692229336714" + }, + { + "file": "packages/dom-utilities/src/getParent.ts", + "hash": "17207135018437651072" + }, + { + "file": "packages/dom-utilities/src/getVirtualParent.ts", + "hash": "12867277850625566919" + }, + { + "file": "packages/dom-utilities/src/index.test.ts", + "hash": "9241586715584521733" + }, + { + "file": "packages/dom-utilities/src/index.ts", + "hash": "11567655210902058086" + }, + { + "file": "packages/dom-utilities/src/isVirtualElement.ts", + "hash": "5785282851313588602" + }, + { + "file": "packages/dom-utilities/src/portalContainsElement.ts", + "hash": "17978580743449785402" + }, + { + "file": "packages/dom-utilities/src/setPortalAttribute.ts", + "hash": "11039697298779251904" + }, + { + "file": "packages/dom-utilities/src/setVirtualParent.ts", + "hash": "14427122606930692518" + }, + { + "file": "packages/dom-utilities/src/version.ts", + "hash": "9176519080116557418" + }, + { + "file": "packages/dom-utilities/tsconfig.json", + "hash": "17721705097427987892" + } + ], + "@fluentui/eslint-plugin": [ + { + "file": "packages/eslint-plugin/.eslintrc.json", + "hash": "6702248602835585560" + }, + { + "file": "packages/eslint-plugin/CHANGELOG.json", + "hash": "13566414994364152721" + }, + { + "file": "packages/eslint-plugin/CHANGELOG.md", + "hash": "2382653209781718305" + }, + { + "file": "packages/eslint-plugin/README.md", + "hash": "6515429868455497447" + }, + { + "file": "packages/eslint-plugin/package.json", + "hash": "2069193219073938718", + "deps": [ + "npm:@griffel/eslint-plugin", + "npm:@rnx-kit/eslint-plugin", + "npm:@typescript-eslint/eslint-plugin", + "npm:@typescript-eslint/experimental-utils", + "npm:@typescript-eslint/parser", + "npm:eslint-config-airbnb", + "npm:eslint-config-prettier", + "npm:eslint-import-resolver-typescript", + "npm:eslint-plugin-deprecation", + "npm:eslint-plugin-import", + "npm:eslint-plugin-jest", + "npm:eslint-plugin-jsdoc", + "npm:eslint-plugin-jsx-a11y", + "npm:eslint-plugin-react", + "npm:eslint-plugin-react-hooks", + "npm:fs-extra", + "npm:minimatch", + "npm:jju", + "npm:eslint", + "npm:typescript" + ] + }, + { + "file": "packages/eslint-plugin/project.json", + "hash": "1301597791484806568" + }, + { + "file": "packages/eslint-plugin/src/configs/base-legacy.js", + "hash": "14665444077677365009" + }, + { + "file": "packages/eslint-plugin/src/configs/base.js", + "hash": "13118811890005841714" + }, + { + "file": "packages/eslint-plugin/src/configs/core.js", + "hash": "7987804994885855829" + }, + { + "file": "packages/eslint-plugin/src/configs/imports.js", + "hash": "11327634237007787886" + }, + { + "file": "packages/eslint-plugin/src/configs/node-legacy.js", + "hash": "10767308883214650760" + }, + { + "file": "packages/eslint-plugin/src/configs/node.js", + "hash": "1222248047971981401" + }, + { + "file": "packages/eslint-plugin/src/configs/react-config.js", + "hash": "9068321685220036799" + }, + { + "file": "packages/eslint-plugin/src/configs/react-legacy.js", + "hash": "9470003892035401491" + }, + { + "file": "packages/eslint-plugin/src/configs/react-northstar.js", + "hash": "9533814243477463140" + }, + { + "file": "packages/eslint-plugin/src/configs/react.js", + "hash": "8307907617103516118" + }, + { + "file": "packages/eslint-plugin/src/configs/restricted-globals.js", + "hash": "18376104961223750479" + }, + { + "file": "packages/eslint-plugin/src/index.js", + "hash": "17643391091811701371" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/src/context.ts", + "hash": "921614066716619819" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/src/index.ts", + "hash": "12767886012319403268" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/tsconfig.json", + "hash": "8939312372276470872" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/exclude/special-path/src/index.ts", + "hash": "12767886012319403268" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/exclude/tsconfig.json", + "hash": "8939312372276470872" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/src/context.ts", + "hash": "6433024526995447386" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/src/index.ts", + "hash": "12767886012319403268" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/tsconfig.json", + "hash": "8939312372276470872" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/src/internal/context.ts", + "hash": "6433024526995447386" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/src/internal/index.ts", + "hash": "12767886012319403268" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/tsconfig.json", + "hash": "8939312372276470872" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/named-export/src/index.ts", + "hash": "12767886012319403268" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/named-export/tsconfig.json", + "hash": "8939312372276470872" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/src/context.ts", + "hash": "17105299796982801295" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/src/index.ts", + "hash": "12767886012319403268" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/tsconfig.json", + "hash": "8939312372276470872" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/index.js", + "hash": "12847161635521615310" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-context-export/index.test.js", + "hash": "464311512855807170" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-imports.js", + "hash": "14494031545397940759" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-instanceof-html-element/index.js", + "hash": "17266374067885429294" + }, + { + "file": "packages/eslint-plugin/src/rules/ban-instanceof-html-element/index.test.js", + "hash": "6679306743942455995" + }, + { + "file": "packages/eslint-plugin/src/rules/deprecated-keyboard-event-props.js", + "hash": "14382391648336116412" + }, + { + "file": "packages/eslint-plugin/src/rules/max-len.js", + "hash": "6542972604164962236" + }, + { + "file": "packages/eslint-plugin/src/rules/no-context-default-value/index.js", + "hash": "12837708352970806418" + }, + { + "file": "packages/eslint-plugin/src/rules/no-context-default-value/index.test.js", + "hash": "11131012401618805739" + }, + { + "file": "packages/eslint-plugin/src/rules/no-global-react.js", + "hash": "2921266244182474215" + }, + { + "file": "packages/eslint-plugin/src/rules/no-restricted-imports/index.js", + "hash": "13917956998549149408" + }, + { + "file": "packages/eslint-plugin/src/rules/no-restricted-imports/index.test.js", + "hash": "9202308256820145329" + }, + { + "file": "packages/eslint-plugin/src/rules/no-tslint-comments.js", + "hash": "12222375696974991780" + }, + { + "file": "packages/eslint-plugin/src/rules/no-visibility-modifiers.js", + "hash": "9342359926437404469" + }, + { + "file": "packages/eslint-plugin/src/utils/configHelpers.js", + "hash": "2104693757629241199" + }, + { + "file": "packages/eslint-plugin/src/utils/createRule.js", + "hash": "9300592942279712397" + }, + { + "file": "packages/eslint-plugin/src/utils/type-services.js", + "hash": "12027578898158183503" + }, + { + "file": "packages/eslint-plugin/tsconfig.json", + "hash": "17734194482250290088" + } + ], + "@fluentui/public-docsite-resources": [ + { + "file": "apps/public-docsite-resources/.eslintrc.json", + "hash": "1006039826695126320" + }, + { + "file": "apps/public-docsite-resources/.npmignore", + "hash": "2926714820578262549" + }, + { + "file": "apps/public-docsite-resources/CHANGELOG.json", + "hash": "16283141252976196454" + }, + { + "file": "apps/public-docsite-resources/CHANGELOG.md", + "hash": "16861719145102182217" + }, + { + "file": "apps/public-docsite-resources/LICENSE", + "hash": "10066751927269712564" + }, + { + "file": "apps/public-docsite-resources/README.md", + "hash": "7141883042692341254" + }, + { + "file": "apps/public-docsite-resources/config/api-docs.js", + "hash": "11668101459963587459" + }, + { + "file": "apps/public-docsite-resources/config/pre-copy.json", + "hash": "6078374637344320600" + }, + { + "file": "apps/public-docsite-resources/just.config.ts", + "hash": "3934073888276956957" + }, + { + "file": "apps/public-docsite-resources/package.json", + "hash": "3404403150191974449", + "deps": [ + "@fluentui/react", + "@fluentui/react-charting", + "@fluentui/react-examples", + "npm:@microsoft/load-themed-styles", + "@fluentui/azure-themes", + "@fluentui/react-docsite-components", + "@fluentui/font-icons-mdl2", + "@fluentui/set-version", + "@fluentui/theme-samples", + "@fluentui/react-monaco-editor", + "npm:office-ui-fabric-core", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/api-docs", + "@fluentui/eslint-plugin", + "@fluentui/scripts-monorepo", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack" + ] + }, + { + "file": "apps/public-docsite-resources/project.json", + "hash": "1147105777361919067" + }, + { + "file": "apps/public-docsite-resources/src/AppDefinition.tsx", + "hash": "7277832506832781573" + }, + { + "file": "apps/public-docsite-resources/src/GettingStartedPage.tsx", + "hash": "3862410802762460924" + }, + { + "file": "apps/public-docsite-resources/src/components/DemoPage.tsx", + "hash": "9020549840902458335" + }, + { + "file": "apps/public-docsite-resources/src/components/DemoPage.types.ts", + "hash": "13637648667090905659" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ActivityItemPage.tsx", + "hash": "12874555494259594381" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedBulkOperationsPage.tsx", + "hash": "14152797804181136183" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedLazyLoadingPage.tsx", + "hash": "12845085304038823878" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedPage.tsx", + "hash": "7616571420309216578" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedQuickActionsPage.tsx", + "hash": "3085789639514069691" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedSearchResultsPage.tsx", + "hash": "4759661553964954805" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/BreadcrumbPage.tsx", + "hash": "17749543750938202238" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ButtonPage.tsx", + "hash": "1074859371510836896" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/CalendarPage.tsx", + "hash": "9066959064675474449" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/CalloutPage.tsx", + "hash": "3985615511416534706" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/AreaChartPage.tsx", + "hash": "9142849699720576026" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/DonutChartPage.tsx", + "hash": "8401913092164120335" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/GaugeChartPage.tsx", + "hash": "5909945778333785594" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/GroupedVerticalBarChartPage.tsx", + "hash": "5871885321022510668" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/HeatMapChartPage.tsx", + "hash": "447712487347504671" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/HorizontalBarChartPage.tsx", + "hash": "10635783908789682392" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/HorizontalBarChartWithAxisPage.tsx", + "hash": "15860945913932029918" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/LegendsPage.tsx", + "hash": "5931039197259354517" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/LineChartPage.tsx", + "hash": "5931039197259354517" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/MultiStackedBarChartPage.tsx", + "hash": "6864870389254610389" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/PieChartPage.tsx", + "hash": "14073402168693410464" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/SankeyChartPage.tsx", + "hash": "1773501327481125982" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/SparklineChartPage.tsx", + "hash": "234023845337169016" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/StackedBarChartPage.tsx", + "hash": "3762902924545887431" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/TreeChartPage.tsx", + "hash": "6379781915487945751" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/VerticalBarChartStandardPage.tsx", + "hash": "10657208350562091459" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/Charting/VerticalStackedBarChartPage.tsx", + "hash": "18035167189116711073" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/CheckboxPage.tsx", + "hash": "4704363360278678460" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ChoiceGroupPage.tsx", + "hash": "14065659955961397923" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/CoachmarkPage.tsx", + "hash": "6023492553801230509" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ColorPickerPage.tsx", + "hash": "9314814354432295747" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ColorsPage.global.scss", + "hash": "8516477111204758268" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ColorsPage.tsx", + "hash": "14293885024317434682" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ComboBoxPage.tsx", + "hash": "14225846150450310921" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/CommandBarPage.tsx", + "hash": "2983211923980480407" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ContextualMenuPage.tsx", + "hash": "11322341863360396305" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DatePickerPage.tsx", + "hash": "9693425122656743109" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListAdvancedPage.tsx", + "hash": "10497699611319342029" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListAnimationPage.tsx", + "hash": "13246065446364453753" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListBasicPage.tsx", + "hash": "5610768878447358512" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCompactPage.tsx", + "hash": "9764384910422782275" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomColumnsPage.tsx", + "hash": "1693193915191907175" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomFooterPage.tsx", + "hash": "17455300748596259298" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomGroupHeadersPage.tsx", + "hash": "17528947698984247944" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomRowsPage.tsx", + "hash": "18378788640799452555" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListDragDropPage.tsx", + "hash": "14997912916660581544" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListKeyboardDragDropPage.tsx", + "hash": "1981206541946206946" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListKeyboardOverridesPage.tsx", + "hash": "7924074756106420545" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListLargeGroupedPage.tsx", + "hash": "17556143238825852135" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListNavigatingFocusPage.tsx", + "hash": "17751629156569546517" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListPage.tsx", + "hash": "16641730452823548384" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListProportionalColumnsPage.tsx", + "hash": "16630306616595775231" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListShimmerPage.tsx", + "hash": "14148595482952030923" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListSimpleGroupedPage.tsx", + "hash": "3338805991866415156" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DialogPage.tsx", + "hash": "5841632104556317487" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DividerPage.tsx", + "hash": "17426411170169843402" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DocumentCardPage.tsx", + "hash": "14158468745118722213" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/DropdownPage.tsx", + "hash": "14720258869656067591" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ExtendedPeoplePickerPage.tsx", + "hash": "12659529066039516185" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/FacepilePage.tsx", + "hash": "3803403514969383383" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/FloatingPeoplePickerPage.tsx", + "hash": "18005353677452631413" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/FocusTrapZonePage.tsx", + "hash": "15037290987307246733" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/FocusZonePage.tsx", + "hash": "11010664311417327928" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/GroupedListPage.tsx", + "hash": "15069269515386649438" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/HoverCardPage.tsx", + "hash": "10856368801549589069" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/IconPage.tsx", + "hash": "2231566654499636239" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ImagePage.tsx", + "hash": "1743385979724412862" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/KeytipsPage.tsx", + "hash": "7131832946901219494" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/LabelPage.tsx", + "hash": "5089297279315795147" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/LayerPage.tsx", + "hash": "10390176672824469574" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/LinkPage.tsx", + "hash": "6989305525356878229" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ListPage.tsx", + "hash": "15036518738078275188" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/MarqueeSelectionPage.tsx", + "hash": "804408648016633702" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/MessageBarPage.tsx", + "hash": "7035159494733576301" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ModalPage.tsx", + "hash": "547344146741172952" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/NavPage.tsx", + "hash": "15148247899806790313" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/OverflowSetPage.tsx", + "hash": "3573843971840842412" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/OverlayPage.tsx", + "hash": "15606061420059807231" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/PanelPage.tsx", + "hash": "1119918289902627721" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/PeoplePickerPage.tsx", + "hash": "12052940092962775123" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/PersonaPage.tsx", + "hash": "6831941677144068143" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/PickersPage.tsx", + "hash": "11964132278983850456" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/PivotPage.tsx", + "hash": "2959788360604830538" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/PopupPage.tsx", + "hash": "13606486863467912445" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ProgressIndicatorPage.tsx", + "hash": "4186603000795134820" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/RatingPage.tsx", + "hash": "4350031286872721266" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ResizeGroupPage.tsx", + "hash": "2973060030244344700" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ScrollablePanePage.tsx", + "hash": "16819364679994888960" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/SearchBoxPage.tsx", + "hash": "3029224427276024716" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/SelectedPeopleListPage.tsx", + "hash": "7772640726096248692" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/SelectionPage.tsx", + "hash": "12409427404313953929" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/SeparatorPage.tsx", + "hash": "17281088957051862846" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ShimmerPage.tsx", + "hash": "3280936027558693643" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/SliderPage.tsx", + "hash": "8366292712707135930" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/SpinButtonPage.tsx", + "hash": "12119173098289938380" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/SpinnerPage.tsx", + "hash": "2885100480385886395" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/StackPage.tsx", + "hash": "12041367432076032971" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/SwatchColorPickerPage.tsx", + "hash": "11506943068731345318" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/TeachingBubblePage.tsx", + "hash": "6577733362138824835" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/TextFieldPage.tsx", + "hash": "1127323915038076733" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/TextPage.tsx", + "hash": "17491494741568173358" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ThemePage.styles.ts", + "hash": "16939098392212581786" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ThemePage.tsx", + "hash": "5968573234874446418" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/ThemeProviderPage.tsx", + "hash": "18028324695488637599" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/TimePickerPage.tsx", + "hash": "2391481625512082875" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/TogglePage.tsx", + "hash": "611908229068244253" + }, + { + "file": "apps/public-docsite-resources/src/components/pages/TooltipPage.tsx", + "hash": "4157242533682705545" + }, + { + "file": "apps/public-docsite-resources/src/docs/GettingStartedOverview.md", + "hash": "9186252321786039138" + }, + { + "file": "apps/public-docsite-resources/src/index.tsx", + "hash": "15810414772634229766" + }, + { + "file": "apps/public-docsite-resources/src/theme/AppThemes.ts", + "hash": "2651411579354420478" + }, + { + "file": "apps/public-docsite-resources/src/version.ts", + "hash": "3127048310947807269" + }, + { + "file": "apps/public-docsite-resources/tsconfig.json", + "hash": "1759609835745211941" + }, + { + "file": "apps/public-docsite-resources/webpack.config.js", + "hash": "8276713782046820680" + }, + { + "file": "apps/public-docsite-resources/webpack.serve.config.js", + "hash": "16193407125720974232" + } + ], + "@fluentui/react-persona": [ + { + "file": "packages/react-components/react-persona/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-persona/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-persona/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-persona/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-persona/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-persona/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-persona/CHANGELOG.json", + "hash": "5916678123087417001" + }, + { + "file": "packages/react-components/react-persona/CHANGELOG.md", + "hash": "3363492742739613050" + }, + { + "file": "packages/react-components/react-persona/LICENSE", + "hash": "6137498738426131383" + }, + { + "file": "packages/react-components/react-persona/README.md", + "hash": "12675629857136863246" + }, + { + "file": "packages/react-components/react-persona/bundle-size/Persona.fixture.js", + "hash": "15487570408879567833" + }, + { + "file": "packages/react-components/react-persona/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-persona/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-persona/docs/MIGRATION.md", + "hash": "17378712130195637222" + }, + { + "file": "packages/react-components/react-persona/docs/Spec.md", + "hash": "6967437294349522091" + }, + { + "file": "packages/react-components/react-persona/etc/images/anatomy.png", + "hash": "10781667208635285558" + }, + { + "file": "packages/react-components/react-persona/etc/images/avatar.png", + "hash": "9562625475398502185" + }, + { + "file": "packages/react-components/react-persona/etc/images/avatar_badge.png", + "hash": "9338819851581626892" + }, + { + "file": "packages/react-components/react-persona/etc/images/badge.png", + "hash": "17522195762955017669" + }, + { + "file": "packages/react-components/react-persona/etc/images/grid_after.png", + "hash": "6933613033871152976" + }, + { + "file": "packages/react-components/react-persona/etc/images/grid_before.png", + "hash": "13998141908743472922" + }, + { + "file": "packages/react-components/react-persona/etc/images/grid_below.png", + "hash": "3859323812046760721" + }, + { + "file": "packages/react-components/react-persona/etc/react-persona.api.md", + "hash": "14795997154590965053" + }, + { + "file": "packages/react-components/react-persona/jest.config.js", + "hash": "8129347973438031603" + }, + { + "file": "packages/react-components/react-persona/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-persona/package.json", + "hash": "7140288082976502672", + "deps": [ + "@fluentui/react-avatar", + "@fluentui/react-badge", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "@fluentui/react-jsx-runtime", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-persona/project.json", + "hash": "5858224934607894803" + }, + { + "file": "packages/react-components/react-persona/src/Persona.ts", + "hash": "11634239554265983330" + }, + { + "file": "packages/react-components/react-persona/src/components/Persona/Persona.test.tsx", + "hash": "8861398421216942861" + }, + { + "file": "packages/react-components/react-persona/src/components/Persona/Persona.tsx", + "hash": "6767483379236609829" + }, + { + "file": "packages/react-components/react-persona/src/components/Persona/Persona.types.ts", + "hash": "891732937289352445" + }, + { + "file": "packages/react-components/react-persona/src/components/Persona/index.ts", + "hash": "815066361299291068" + }, + { + "file": "packages/react-components/react-persona/src/components/Persona/renderPersona.tsx", + "hash": "12503343474919913859" + }, + { + "file": "packages/react-components/react-persona/src/components/Persona/usePersona.ts", + "hash": "7299955268610853887" + }, + { + "file": "packages/react-components/react-persona/src/components/Persona/usePersonaStyles.styles.ts", + "hash": "13429552607938862653" + }, + { + "file": "packages/react-components/react-persona/src/index.ts", + "hash": "733085347323584427" + }, + { + "file": "packages/react-components/react-persona/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-persona/stories/Persona/PersonaAvatarSize.stories.tsx", + "hash": "7330072247446824330" + }, + { + "file": "packages/react-components/react-persona/stories/Persona/PersonaDefault.stories.tsx", + "hash": "6962823296596584994" + }, + { + "file": "packages/react-components/react-persona/stories/Persona/PersonaDescription.md", + "hash": "2005954066348145499" + }, + { + "file": "packages/react-components/react-persona/stories/Persona/PersonaPresencePreviousBehavior.stories.tsx", + "hash": "7780860207726490895" + }, + { + "file": "packages/react-components/react-persona/stories/Persona/PersonaPresenceSize.stories.tsx", + "hash": "17996713618212360785" + }, + { + "file": "packages/react-components/react-persona/stories/Persona/PersonaTextAlignment.stories.tsx", + "hash": "14036210296442852602" + }, + { + "file": "packages/react-components/react-persona/stories/Persona/PersonaTextPosition.stories.tsx", + "hash": "3716010766339279556" + }, + { + "file": "packages/react-components/react-persona/stories/Persona/index.stories.tsx", + "hash": "11619656050038070907" + }, + { + "file": "packages/react-components/react-persona/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-persona/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-persona/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-utils": [ + { + "file": "scripts/utils/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/utils/jest.config.js", + "hash": "17478340034450362864" + }, + { + "file": "scripts/utils/package.json", + "hash": "542681258199471675" + }, + { + "file": "scripts/utils/project.json", + "hash": "10329661453886386946" + }, + { + "file": "scripts/utils/src/find-config.js", + "hash": "7121643082165988615" + }, + { + "file": "scripts/utils/src/index.d.ts", + "hash": "8147967967359353990" + }, + { + "file": "scripts/utils/src/index.js", + "hash": "16511538452090280361" + }, + { + "file": "scripts/utils/src/logging.js", + "hash": "16191873597712382186" + }, + { + "file": "scripts/utils/src/merge.js", + "hash": "7681850102607767771" + }, + { + "file": "scripts/utils/src/read-config.js", + "hash": "16708908046750970227" + }, + { + "file": "scripts/utils/src/sh.js", + "hash": "13078038786871011385" + }, + { + "file": "scripts/utils/src/write-config.js", + "hash": "14568723559054940193" + }, + { + "file": "scripts/utils/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/utils/tsconfig.lib.json", + "hash": "15222053984038389170" + }, + { + "file": "scripts/utils/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/react-checkbox": [ + { + "file": "packages/react-components/react-checkbox/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-checkbox/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-checkbox/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-checkbox/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-checkbox/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-checkbox/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-checkbox/CHANGELOG.json", + "hash": "6251263507773022820" + }, + { + "file": "packages/react-components/react-checkbox/CHANGELOG.md", + "hash": "1862977653705488160" + }, + { + "file": "packages/react-components/react-checkbox/LICENSE", + "hash": "11993684871533073860" + }, + { + "file": "packages/react-components/react-checkbox/README.md", + "hash": "14475892364465331260" + }, + { + "file": "packages/react-components/react-checkbox/bundle-size/Checkbox.fixture.js", + "hash": "9856851692934806951" + }, + { + "file": "packages/react-components/react-checkbox/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-checkbox/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-checkbox/docs/MIGRATION.md", + "hash": "17821656469887470547" + }, + { + "file": "packages/react-components/react-checkbox/docs/Spec.md", + "hash": "800448152257069737" + }, + { + "file": "packages/react-components/react-checkbox/etc/react-checkbox.api.md", + "hash": "6742814156489691658" + }, + { + "file": "packages/react-components/react-checkbox/jest.config.js", + "hash": "2828201757173184213" + }, + { + "file": "packages/react-components/react-checkbox/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-checkbox/package.json", + "hash": "13472705379965958285", + "deps": [ + "@fluentui/react-field", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-label", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-checkbox/project.json", + "hash": "9606278957344776446" + }, + { + "file": "packages/react-components/react-checkbox/src/Checkbox.ts", + "hash": "15174834295790980707" + }, + { + "file": "packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.test.tsx", + "hash": "8211270012158977067" + }, + { + "file": "packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.tsx", + "hash": "15421247335816478745" + }, + { + "file": "packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.types.ts", + "hash": "7638085825644002506" + }, + { + "file": "packages/react-components/react-checkbox/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap", + "hash": "18216818328841741726" + }, + { + "file": "packages/react-components/react-checkbox/src/components/Checkbox/index.ts", + "hash": "15121887018938208362" + }, + { + "file": "packages/react-components/react-checkbox/src/components/Checkbox/renderCheckbox.tsx", + "hash": "12658297094559328876" + }, + { + "file": "packages/react-components/react-checkbox/src/components/Checkbox/useCheckbox.tsx", + "hash": "17250806306955700270" + }, + { + "file": "packages/react-components/react-checkbox/src/components/Checkbox/useCheckboxStyles.styles.ts", + "hash": "1839450190559183146" + }, + { + "file": "packages/react-components/react-checkbox/src/index.ts", + "hash": "15785934890379634251" + }, + { + "file": "packages/react-components/react-checkbox/src/testing/isConformant.ts", + "hash": "17159661999478583888" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxChecked.stories.tsx", + "hash": "3038686077884136197" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxCircular.stories.tsx", + "hash": "17609452160533925883" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxDefault.stories.tsx", + "hash": "1331911594678712826" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxDisabled.stories.tsx", + "hash": "10626006350267777410" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxLabelBefore.stories.tsx", + "hash": "2830523750214014197" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxLabelWrapping.stories.tsx", + "hash": "10579880296711360605" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxLarge.stories.tsx", + "hash": "12315598358509648828" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxMixed.stories.tsx", + "hash": "16393572027865684906" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxRequired.stories.tsx", + "hash": "17304011180749936418" + }, + { + "file": "packages/react-components/react-checkbox/stories/Checkbox/index.stories.tsx", + "hash": "13443276241766089166" + }, + { + "file": "packages/react-components/react-checkbox/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-checkbox/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-checkbox/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-examples": [ + { + "file": "packages/react-examples/.eslintrc.json", + "hash": "1702330080249613942" + }, + { + "file": "packages/react-examples/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/react-examples/.storybook/main.js", + "hash": "14816398585331678918" + }, + { + "file": "packages/react-examples/.storybook/manager.js", + "hash": "10262691162070439084" + }, + { + "file": "packages/react-examples/.storybook/preview-loader.js", + "hash": "11880477845897264629" + }, + { + "file": "packages/react-examples/.storybook/preview.js", + "hash": "285925511367961485" + }, + { + "file": "packages/react-examples/.storybook/tsconfig.json", + "hash": "8998439185517558766" + }, + { + "file": "packages/react-examples/CHANGELOG.json", + "hash": "1657021903900291541" + }, + { + "file": "packages/react-examples/CHANGELOG.md", + "hash": "8540291172350589844" + }, + { + "file": "packages/react-examples/LICENSE", + "hash": "16146362590109763261" + }, + { + "file": "packages/react-examples/README.md", + "hash": "9006185454830750184" + }, + { + "file": "packages/react-examples/cypress.config.ts", + "hash": "14032725885983203266" + }, + { + "file": "packages/react-examples/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-examples/package.json", + "hash": "15873865825890157794", + "deps": [ + "@fluentui/azure-themes", + "@fluentui/date-time-utilities", + "@fluentui/dom-utilities", + "@fluentui/example-data", + "@fluentui/font-icons-mdl2", + "@fluentui/foundation-legacy", + "@fluentui/merge-styles", + "@fluentui/react", + "@fluentui/react-cards", + "@fluentui/react-charting", + "@fluentui/react-docsite-components", + "@fluentui/react-experiments", + "@fluentui/react-file-type-icons", + "@fluentui/react-focus", + "@fluentui/react-hooks", + "@fluentui/react-icons-mdl2", + "@fluentui/scheme-utilities", + "@fluentui/style-utilities", + "@fluentui/theme", + "@fluentui/theme-samples", + "@fluentui/utilities", + "npm:@microsoft/load-themed-styles", + "npm:d3-fetch", + "npm:d3-format", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/storybook", + "npm:@types/d3-format", + "npm:@types/d3-fetch", + "@fluentui/scripts-webpack", + "@fluentui/scripts-cypress", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/react-examples/project.json", + "hash": "9649139128656182995" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/Themes/Themes.stories.tsx", + "hash": "2125217204908134883" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/CalendarInlineMultidayDayView.stories.tsx", + "hash": "9777485459679979455" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/ContextMenu.stories.tsx", + "hash": "11906792680589086576" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/DetailsListCustomColumnsExample.stories.tsx", + "hash": "1526604806666311017" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/Pivots.stories.tsx", + "hash": "8505117310795656110" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/ProgressIndicator.stories.tsx", + "hash": "7878042562887496662" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/SpinButton.stories.tsx", + "hash": "9644363006615395796" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/TeachingBubble.stories.tsx", + "hash": "6363913365421312335" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/actionButton.stories.tsx", + "hash": "2943437613734380711" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx", + "hash": "15773176792318513295" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/activityitempersonas.stories.tsx", + "hash": "17493377115708891980" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/buttonToggle.stories.tsx", + "hash": "13322041471963459713" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/callout.stories.tsx", + "hash": "12572487828916593340" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/choiceGroupWithImagesandIcons.stories.tsx", + "hash": "11988481674102576150" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/choicegroup.stories.tsx", + "hash": "1830356398977442236" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/colorpicker.stories.tsx", + "hash": "17135174824570336702" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/comboBox.stories.tsx", + "hash": "11774074986199852070" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/commandBar.stories.tsx", + "hash": "18251599124601402250" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/commandBarButton.stories.tsx", + "hash": "7982136203595322144" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/contextualMenu.stories.tsx", + "hash": "9107686953554100721" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/dateBoundary.stories.tsx", + "hash": "13784003701073842051" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/defaultDatePicker.tsx", + "hash": "12667593297047487456" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/detailsList.stories.tsx", + "hash": "9912609037404072743" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/dropdown.stories.tsx", + "hash": "10420437495479310291" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/iconButton.stories.tsx", + "hash": "3357533028131049247" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/iconTooltip.stories.tsx", + "hash": "5754928710161508947" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/messageBar.stories.tsx", + "hash": "16203732642630267765" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/slider.stories.tsx", + "hash": "14770656390957719230" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/spinner.stories.tsx", + "hash": "5676613769831055307" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/splitButton.stories.tsx", + "hash": "13342035394552227782" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/tags.stories.tsx", + "hash": "3454619756727937887" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/toggle.stories.tsx", + "hash": "3283213291269405540" + }, + { + "file": "packages/react-examples/src/azure-themes/stories/components/tooltip.stories.tsx", + "hash": "10393279098064559619" + }, + { + "file": "packages/react-examples/src/react/ActivityItem/ActivityItem.Basic.Example.tsx", + "hash": "13914346728006709604" + }, + { + "file": "packages/react-examples/src/react/ActivityItem/ActivityItem.Compact.Example.tsx", + "hash": "10799670486824503656" + }, + { + "file": "packages/react-examples/src/react/ActivityItem/ActivityItem.Persona.Example.tsx", + "hash": "4530460165784137223" + }, + { + "file": "packages/react-examples/src/react/ActivityItem/ActivityItem.doc.tsx", + "hash": "18382057917831206852" + }, + { + "file": "packages/react-examples/src/react/ActivityItem/docs/ActivityItemBestPractices.md", + "hash": "14641514549794392494" + }, + { + "file": "packages/react-examples/src/react/ActivityItem/docs/ActivityItemOverview.md", + "hash": "13943306819186175577" + }, + { + "file": "packages/react-examples/src/react/Announced/Announced.BulkOperations.Example.tsx", + "hash": "723390365406397872" + }, + { + "file": "packages/react-examples/src/react/Announced/Announced.LazyLoading.Example.tsx", + "hash": "5721743437762442725" + }, + { + "file": "packages/react-examples/src/react/Announced/Announced.QuickActions.Example.tsx", + "hash": "13040897774565725346" + }, + { + "file": "packages/react-examples/src/react/Announced/Announced.SearchResults.Example.tsx", + "hash": "8593960476119642725" + }, + { + "file": "packages/react-examples/src/react/Announced/Announced.doc.tsx", + "hash": "13290861637697161815" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/AnnouncedOverview.md", + "hash": "7286146550152171442" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/Asynchronous/Donts.md", + "hash": "10308843472612849527" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/Asynchronous/Dos.md", + "hash": "8151809050993285928" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/Asynchronous/Overview.md", + "hash": "17122414855820838170" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/BulkLongRunning/Donts.md", + "hash": "3313655889678117965" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/BulkLongRunning/Dos.md", + "hash": "5257417610796255358" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/BulkLongRunning/Overview.md", + "hash": "13728180440979579656" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/QuickActions/Donts.md", + "hash": "3921478636485365154" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/QuickActions/Dos.md", + "hash": "15174421481868869367" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/QuickActions/Overview.md", + "hash": "15688976934623723027" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/SearchResults/Donts.md", + "hash": "7961540872895838551" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/SearchResults/Dos.md", + "hash": "14589829831559595933" + }, + { + "file": "packages/react-examples/src/react/Announced/docs/SearchResults/Overview.md", + "hash": "15600377904142434146" + }, + { + "file": "packages/react-examples/src/react/Breadcrumb/Breadcrumb.Basic.Example.tsx", + "hash": "3179480932676095995" + }, + { + "file": "packages/react-examples/src/react/Breadcrumb/Breadcrumb.Collapsing.Example.tsx", + "hash": "12999198751733228695" + }, + { + "file": "packages/react-examples/src/react/Breadcrumb/Breadcrumb.Static.Example.tsx", + "hash": "16266848918167291560" + }, + { + "file": "packages/react-examples/src/react/Breadcrumb/Breadcrumb.doc.tsx", + "hash": "1036348250448252175" + }, + { + "file": "packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbBestPractices.md", + "hash": "13343729804615205774" + }, + { + "file": "packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbDonts.md", + "hash": "15126643046228785634" + }, + { + "file": "packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbDos.md", + "hash": "9779072492094064773" + }, + { + "file": "packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbOverview.md", + "hash": "18079527568158322334" + }, + { + "file": "packages/react-examples/src/react/Button/Button.Action.Example.tsx", + "hash": "17593143648911728928" + }, + { + "file": "packages/react-examples/src/react/Button/Button.Anchor.Example.tsx", + "hash": "10364344687196047790" + }, + { + "file": "packages/react-examples/src/react/Button/Button.Command.Example.tsx", + "hash": "17701013651033269340" + }, + { + "file": "packages/react-examples/src/react/Button/Button.CommandBar.Example.tsx", + "hash": "2442938012510837186" + }, + { + "file": "packages/react-examples/src/react/Button/Button.Compound.Example.tsx", + "hash": "10064596175304087228" + }, + { + "file": "packages/react-examples/src/react/Button/Button.ContextualMenu.Example.tsx", + "hash": "2327815820929103506" + }, + { + "file": "packages/react-examples/src/react/Button/Button.CustomSplit.Example.tsx", + "hash": "3510559926954356307" + }, + { + "file": "packages/react-examples/src/react/Button/Button.Default.Example.tsx", + "hash": "15170870096351325084" + }, + { + "file": "packages/react-examples/src/react/Button/Button.Icon.Example.tsx", + "hash": "16864707904196884373" + }, + { + "file": "packages/react-examples/src/react/Button/Button.IconWithTooltip.Example.tsx", + "hash": "5856918498084472394" + }, + { + "file": "packages/react-examples/src/react/Button/Button.Split.Example.tsx", + "hash": "6443594856225278219" + }, + { + "file": "packages/react-examples/src/react/Button/Button.Toggle.Example.tsx", + "hash": "11273168701657466174" + }, + { + "file": "packages/react-examples/src/react/Button/Button.doc.tsx", + "hash": "14798888054962382957" + }, + { + "file": "packages/react-examples/src/react/Button/docs/ButtonBestPractices.md", + "hash": "8262488791457160795" + }, + { + "file": "packages/react-examples/src/react/Button/docs/ButtonOverview.md", + "hash": "15025314181002136189" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Button.Example.tsx", + "hash": "11670713828649373426" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.ContiguousWorkWeekDays.Example.tsx", + "hash": "6025642632513182041" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.CustomDayCellRef.Example.tsx", + "hash": "10101935902661584177" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.DateBoundaries.Example.tsx", + "hash": "14122370693085520131" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.Example.tsx", + "hash": "5895412511470144388" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.MarkedDays.Example.tsx", + "hash": "7115975224915797628" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.MonthOnly.Example.tsx", + "hash": "7514301355919486445" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.MonthSelection.Example.tsx", + "hash": "12194911337183155096" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.MultidayDayView.Example.tsx", + "hash": "9777485459679979455" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.NonContiguousWorkWeekDays.Example.tsx", + "hash": "16739657324829049689" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.OverlaidMonthPicker.Example.tsx", + "hash": "8598152411539421499" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.SixWeeks.tsx", + "hash": "9814512951353916548" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.WeekNumbers.Example.tsx", + "hash": "2353257937602785635" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.WeekSelection.Example.tsx", + "hash": "711746990858717859" + }, + { + "file": "packages/react-examples/src/react/Calendar/Calendar.doc.tsx", + "hash": "5098259750648110690" + }, + { + "file": "packages/react-examples/src/react/Calendar/docs/CalendarBestPractices.md", + "hash": "1724779152274891464" + }, + { + "file": "packages/react-examples/src/react/Calendar/docs/CalendarOverview.md", + "hash": "621070059803414892" + }, + { + "file": "packages/react-examples/src/react/Callout/Callout.Basic.Example.tsx", + "hash": "10375834041956947410" + }, + { + "file": "packages/react-examples/src/react/Callout/Callout.Cover.Example.tsx", + "hash": "13961468534046685528" + }, + { + "file": "packages/react-examples/src/react/Callout/Callout.Directional.Example.tsx", + "hash": "4473873551862082509" + }, + { + "file": "packages/react-examples/src/react/Callout/Callout.FocusTrap.Example.tsx", + "hash": "5386241572332227912" + }, + { + "file": "packages/react-examples/src/react/Callout/Callout.Status.Example.tsx", + "hash": "4084051320422216883" + }, + { + "file": "packages/react-examples/src/react/Callout/Callout.doc.tsx", + "hash": "6417004314429107130" + }, + { + "file": "packages/react-examples/src/react/Callout/docs/CalloutBestPractices.md", + "hash": "240584423619826575" + }, + { + "file": "packages/react-examples/src/react/Callout/docs/CalloutOverview.md", + "hash": "1386018283761269927" + }, + { + "file": "packages/react-examples/src/react/Checkbox/Checkbox.Basic.Example.tsx", + "hash": "16088471200763141215" + }, + { + "file": "packages/react-examples/src/react/Checkbox/Checkbox.Indeterminate.Example.tsx", + "hash": "2573388622640783503" + }, + { + "file": "packages/react-examples/src/react/Checkbox/Checkbox.Other.Example.tsx", + "hash": "17065609027463333266" + }, + { + "file": "packages/react-examples/src/react/Checkbox/Checkbox.doc.tsx", + "hash": "7637244348529120014" + }, + { + "file": "packages/react-examples/src/react/Checkbox/docs/CheckboxBestPractices.md", + "hash": "17643376500449998917" + }, + { + "file": "packages/react-examples/src/react/Checkbox/docs/CheckboxOverview.md", + "hash": "6127085583634782780" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Basic.Example.tsx", + "hash": "1830356398977442236" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Controlled.Example.tsx", + "hash": "13372284433648480700" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Custom.Example.tsx", + "hash": "6563198185507424076" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Icon.Example.tsx", + "hash": "11509984463129156349" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Image.Example.tsx", + "hash": "9440296067970459789" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Label.Example.tsx", + "hash": "3118031141092502161" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.doc.tsx", + "hash": "10803705851408154810" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/docs/ChoiceGroupBestPractices.md", + "hash": "6729357172259799389" + }, + { + "file": "packages/react-examples/src/react/ChoiceGroup/docs/ChoiceGroupOverview.md", + "hash": "13427093563652446624" + }, + { + "file": "packages/react-examples/src/react/Coachmark/Coachmark.Basic.Example.tsx", + "hash": "8115923272607319524" + }, + { + "file": "packages/react-examples/src/react/Coachmark/Coachmark.doc.tsx", + "hash": "2170188443948751602" + }, + { + "file": "packages/react-examples/src/react/Coachmark/docs/CoachmarkBestPractices.md", + "hash": "3542754544981209669" + }, + { + "file": "packages/react-examples/src/react/Coachmark/docs/CoachmarkOverview.md", + "hash": "8005866302720607190" + }, + { + "file": "packages/react-examples/src/react/ColorPicker/ColorPicker.Basic.Example.tsx", + "hash": "10522614933577852925" + }, + { + "file": "packages/react-examples/src/react/ColorPicker/ColorPicker.doc.tsx", + "hash": "12006933118369254888" + }, + { + "file": "packages/react-examples/src/react/ColorPicker/docs/ColorPickerBestPractices.md", + "hash": "3795548029277003302" + }, + { + "file": "packages/react-examples/src/react/ColorPicker/docs/ColorPickerOverview.md", + "hash": "3453145954457329699" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.Basic.Example.tsx", + "hash": "7502722137008929143" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.Controlled.Example.tsx", + "hash": "14501769400595421085" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.ControlledMulti.Example.tsx", + "hash": "16765727178232050486" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.CustomStyled.Example.tsx", + "hash": "5820589524560737520" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.ErrorHandling.Example.tsx", + "hash": "13622785407850884952" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.FreeInput.Example.tsx", + "hash": "4208904628665600564" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.Inline.Example.tsx", + "hash": "2616579794797596961" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.SelectAll.Example.tsx", + "hash": "5983196249930964714" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.Toggles.Example.tsx", + "hash": "2377940844185308494" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.Virtualized.Example.tsx", + "hash": "365148847710436100" + }, + { + "file": "packages/react-examples/src/react/ComboBox/ComboBox.doc.tsx", + "hash": "357185813601538313" + }, + { + "file": "packages/react-examples/src/react/ComboBox/docs/ComboBoxBestPractices.md", + "hash": "17035604686479250820" + }, + { + "file": "packages/react-examples/src/react/ComboBox/docs/ComboBoxOverview.md", + "hash": "9370671476619575997" + }, + { + "file": "packages/react-examples/src/react/CommandBar/CommandBar.Basic.Example.tsx", + "hash": "17066427437658259595" + }, + { + "file": "packages/react-examples/src/react/CommandBar/CommandBar.ButtonAs.Example.tsx", + "hash": "5837946070733281923" + }, + { + "file": "packages/react-examples/src/react/CommandBar/CommandBar.CommandBarButtonAs.Example.tsx", + "hash": "14239124937065302117" + }, + { + "file": "packages/react-examples/src/react/CommandBar/CommandBar.Lazy.Example.tsx", + "hash": "17807876090463777179" + }, + { + "file": "packages/react-examples/src/react/CommandBar/CommandBar.SplitDisabled.Example.tsx", + "hash": "7982136203595322144" + }, + { + "file": "packages/react-examples/src/react/CommandBar/CommandBar.doc.tsx", + "hash": "1658365400337715044" + }, + { + "file": "packages/react-examples/src/react/CommandBar/docs/CommandBarBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/CommandBar/docs/CommandBarDonts.md", + "hash": "2936847419132216345" + }, + { + "file": "packages/react-examples/src/react/CommandBar/docs/CommandBarDos.md", + "hash": "8038266723043974091" + }, + { + "file": "packages/react-examples/src/react/CommandBar/docs/CommandBarOverview.md", + "hash": "12433928073671197593" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Basic.Example.tsx", + "hash": "15024050478757158039" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Checkmarks.Example.tsx", + "hash": "14515122039023548947" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomMenuItem.Example.tsx", + "hash": "15406133367855884805" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomMenuList.Example.tsx", + "hash": "18080008874280316465" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Customization.Example.tsx", + "hash": "10303354487583732973" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomizationWithNoWrap.Example.tsx", + "hash": "7575207669815626429" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Default.Example.tsx", + "hash": "1530319152823290747" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Directional.Example.tsx", + "hash": "15516342593661369094" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Header.Example.tsx", + "hash": "8334550483772262315" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.CustomLayout.Example.tsx", + "hash": "13454632454935162608" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.Example.tsx", + "hash": "6142740927821312183" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.SecondaryText.Example.tsx", + "hash": "5961826317856918036" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Persisted.Example.tsx", + "hash": "8213806715052253524" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.ScreenReader.Example.tsx", + "hash": "10697606395198110360" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.ScrollBar.Example.tsx", + "hash": "1722708791515401786" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Section.Example.tsx", + "hash": "18436301671278993690" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Submenu.Example.tsx", + "hash": "9533551810157961455" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.doc.tsx", + "hash": "14800238289383689439" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/docs/ContextualMenuBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/ContextualMenu/docs/ContextualMenuOverview.md", + "hash": "12656464994679017844" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.Basic.Example.tsx", + "hash": "6549048858535079254" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.Bounded.Example.tsx", + "hash": "945690607138379041" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.Disabled.Example.tsx", + "hash": "7852459322286540417" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.ExternalControls.Example.tsx", + "hash": "2929655713090247834" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.Format.Example.tsx", + "hash": "4800851782533937854" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.Input.Example.tsx", + "hash": "17862152781842630711" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.Required.Example.tsx", + "hash": "1199588964446882734" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.WeekNumbers.Example.tsx", + "hash": "455026032289058001" + }, + { + "file": "packages/react-examples/src/react/DatePicker/DatePicker.doc.tsx", + "hash": "9390102577745904173" + }, + { + "file": "packages/react-examples/src/react/DatePicker/docs/DatePickerBestPractices.md", + "hash": "6027517843294263285" + }, + { + "file": "packages/react-examples/src/react/DatePicker/docs/DatePickerOverview.md", + "hash": "16501907132069119744" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.Advanced.Example.tsx", + "hash": "10936658170286572027" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.Animation.Example.tsx", + "hash": "12952134854918913476" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.Basic.Example.tsx", + "hash": "12601034262536179240" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.ColumnResize.Example.tsx", + "hash": "7933016525740133567" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.Compact.Example.tsx", + "hash": "17284966156754520880" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.CustomColumns.Example.tsx", + "hash": "15299506464582400188" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.CustomFooter.Example.tsx", + "hash": "5723594411723316360" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.CustomGroupHeaders.Example.tsx", + "hash": "17474804655111743620" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.CustomRows.Example.tsx", + "hash": "17718844388107480115" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.Documents.Example.tsx", + "hash": "16360957095806271966" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.DragDrop.Example.tsx", + "hash": "13225220291514927647" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.Grouped.Example.tsx", + "hash": "15295013036594439238" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.Grouped.Large.Example.tsx", + "hash": "9002360090695420523" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.Example.tsx", + "hash": "7191711872095586308" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.Large.Example.tsx", + "hash": "13050903748181177330" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.ScrollToIndex.Example.tsx", + "hash": "3810081735068958509" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.KeyboardAccessibleResizeAndReorder.Example.tsx", + "hash": "12957527607896668759" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.KeyboardOverrides.Example.tsx", + "hash": "1988461786659592263" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.NavigatingFocus.Example.tsx", + "hash": "10665961175021256090" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.OnRender.Example.tsx", + "hash": "2862235458283001317" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.ProportionalColumns.Example.tsx", + "hash": "3643204862810472365" + }, + { + "file": "packages/react-examples/src/react/DetailsList/DetailsList.doc.tsx", + "hash": "17139182265007990631" + }, + { + "file": "packages/react-examples/src/react/DetailsList/docs/DetailsListBestPractices.md", + "hash": "14636184564336669454" + }, + { + "file": "packages/react-examples/src/react/DetailsList/docs/DetailsListOverview.md", + "hash": "11157854257701048090" + }, + { + "file": "packages/react-examples/src/react/Dialog/Dialog.Basic.Example.tsx", + "hash": "14926128857017700522" + }, + { + "file": "packages/react-examples/src/react/Dialog/Dialog.Blocking.Example.tsx", + "hash": "119258777603234032" + }, + { + "file": "packages/react-examples/src/react/Dialog/Dialog.LargeHeader.Example.tsx", + "hash": "12232932083852256459" + }, + { + "file": "packages/react-examples/src/react/Dialog/Dialog.Modeless.Example.tsx", + "hash": "9025354215202154957" + }, + { + "file": "packages/react-examples/src/react/Dialog/Dialog.TopOffsetFixed.Example.tsx", + "hash": "13790338846169811872" + }, + { + "file": "packages/react-examples/src/react/Dialog/Dialog.doc.tsx", + "hash": "2269612876944993533" + }, + { + "file": "packages/react-examples/src/react/Dialog/docs/DialogBestPractices.md", + "hash": "11907210801286321316" + }, + { + "file": "packages/react-examples/src/react/Dialog/docs/DialogOverview.md", + "hash": "3268738518893757993" + }, + { + "file": "packages/react-examples/src/react/Divider/Divider.doc.tsx", + "hash": "1350864656580636149" + }, + { + "file": "packages/react-examples/src/react/Divider/VerticalDivider.Basic.Example.tsx", + "hash": "3257087342624713968" + }, + { + "file": "packages/react-examples/src/react/Divider/VerticalDivider.Custom.Example.tsx", + "hash": "7108559914889829781" + }, + { + "file": "packages/react-examples/src/react/Divider/docs/DividerBestPractices.md", + "hash": "11242884916003164840" + }, + { + "file": "packages/react-examples/src/react/Divider/docs/DividerDonts.md", + "hash": "13755611818631916263" + }, + { + "file": "packages/react-examples/src/react/Divider/docs/DividerDos.md", + "hash": "14635313222160471004" + }, + { + "file": "packages/react-examples/src/react/Divider/docs/DividerOverview.md", + "hash": "10876792181377551346" + }, + { + "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Basic.Example.tsx", + "hash": "3873407903814701928" + }, + { + "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Compact.Example.tsx", + "hash": "7410695870915872714" + }, + { + "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Complete.Example.tsx", + "hash": "14950282326681339256" + }, + { + "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Conversation.Example.tsx", + "hash": "7359603887504081024" + }, + { + "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Image.Example.tsx", + "hash": "12288266672582981378" + }, + { + "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.doc.tsx", + "hash": "6543750251896297702" + }, + { + "file": "packages/react-examples/src/react/DocumentCard/docs/DocumentCardBestPractices.md", + "hash": "18440794351515262745" + }, + { + "file": "packages/react-examples/src/react/DocumentCard/docs/DocumentCardOverview.md", + "hash": "16511513555890905893" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.Basic.Example.tsx", + "hash": "9014889844532656913" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.Controlled.Example.tsx", + "hash": "9831538055339985201" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.ControlledMulti.Example.tsx", + "hash": "17207319378954556138" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.Custom.Example.tsx", + "hash": "7423142535989082375" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.Error.Example.tsx", + "hash": "18282001024220261190" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.Required.Example.tsx", + "hash": "169052893274483609" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.SelectStyle.Example.tsx", + "hash": "15296133929690564301" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.Wrapping.Example.tsx", + "hash": "11743290379097092920" + }, + { + "file": "packages/react-examples/src/react/Dropdown/Dropdown.doc.tsx", + "hash": "9086926411011225144" + }, + { + "file": "packages/react-examples/src/react/Dropdown/docs/DropdownBestPractices.md", + "hash": "6884534436204458575" + }, + { + "file": "packages/react-examples/src/react/Dropdown/docs/DropdownOverview.md", + "hash": "1588924648391255177" + }, + { + "file": "packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.Basic.Example.tsx", + "hash": "5193709435476630783" + }, + { + "file": "packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.Controlled.Example.tsx", + "hash": "12108009187713968836" + }, + { + "file": "packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.doc.tsx", + "hash": "9397038313871032020" + }, + { + "file": "packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerBestPractices.md", + "hash": "17994737321331640608" + }, + { + "file": "packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerDonts.md", + "hash": "13761658156329873951" + }, + { + "file": "packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerDos.md", + "hash": "2988442599845077013" + }, + { + "file": "packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerOverview.md", + "hash": "7342423013769981200" + }, + { + "file": "packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.Basic.Example.tsx", + "hash": "802101070041496746" + }, + { + "file": "packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.Controlled.Example.tsx", + "hash": "2701111392899146044" + }, + { + "file": "packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.doc.tsx", + "hash": "9904931083626785664" + }, + { + "file": "packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerBestPractices.md", + "hash": "17994737321331640608" + }, + { + "file": "packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerDonts.md", + "hash": "13761658156329873951" + }, + { + "file": "packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerDos.md", + "hash": "2988442599845077013" + }, + { + "file": "packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerOverview.md", + "hash": "7342423013769981200" + }, + { + "file": "packages/react-examples/src/react/Facepile/Facepile.AddFace.Example.tsx", + "hash": "3378218549063950791" + }, + { + "file": "packages/react-examples/src/react/Facepile/Facepile.Basic.Example.tsx", + "hash": "10441413266599899897" + }, + { + "file": "packages/react-examples/src/react/Facepile/Facepile.Overflow.Example.tsx", + "hash": "7638052892921375329" + }, + { + "file": "packages/react-examples/src/react/Facepile/Facepile.doc.tsx", + "hash": "11908784292302046334" + }, + { + "file": "packages/react-examples/src/react/Facepile/docs/FacepileBestPractices.md", + "hash": "3422765395890976172" + }, + { + "file": "packages/react-examples/src/react/Facepile/docs/FacepileOverview.md", + "hash": "9798433928308762020" + }, + { + "file": "packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.Basic.Example.tsx", + "hash": "12622245239280094415" + }, + { + "file": "packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.SelectableFooter.Example.tsx", + "hash": "123789111774379882" + }, + { + "file": "packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.doc.tsx", + "hash": "14963739742697498603" + }, + { + "file": "packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerBestPractices.md", + "hash": "15181747479013544023" + }, + { + "file": "packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerDonts.md", + "hash": "5113401384613823537" + }, + { + "file": "packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerDos.md", + "hash": "15524347270405680831" + }, + { + "file": "packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerOverview.md", + "hash": "6547824185873455057" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.Click.Example.tsx", + "hash": "257684823259240373" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.Example.tsx", + "hash": "4891878368416196997" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.FocusOnCustomElement.Example.tsx", + "hash": "8218921500198309959" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.DialogInPanel.Example.tsx", + "hash": "8454932298771962096" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.FocusZone.Example.tsx", + "hash": "13002184895825458792" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Nested.Example.tsx", + "hash": "7467898439076848824" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.doc.tsx", + "hash": "10554829977581816321" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/docs/FocusTrapZoneBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/docs/FocusTrapZoneOverview.md", + "hash": "16489263610855687923" + }, + { + "file": "packages/react-examples/src/react/FocusTrapZone/e2e/FocusTrapZone.e2e.tsx", + "hash": "2315340949449524344" + }, + { + "file": "packages/react-examples/src/react/GroupedList/GroupedList.Basic.Example.tsx", + "hash": "3068219762651657477" + }, + { + "file": "packages/react-examples/src/react/GroupedList/GroupedList.Custom.Example.tsx", + "hash": "5036102286324939709" + }, + { + "file": "packages/react-examples/src/react/GroupedList/GroupedList.CustomCheckbox.Example.tsx", + "hash": "3409300813165441827" + }, + { + "file": "packages/react-examples/src/react/GroupedList/GroupedList.doc.tsx", + "hash": "13027056762316810629" + }, + { + "file": "packages/react-examples/src/react/GroupedList/GroupedListV2.Basic.Example.tsx", + "hash": "6877910189807441405" + }, + { + "file": "packages/react-examples/src/react/GroupedList/GroupedListV2.Custom.Example.tsx", + "hash": "6166019240691139606" + }, + { + "file": "packages/react-examples/src/react/GroupedList/GroupedListV2.CustomCheckbox.Example.tsx", + "hash": "7013803679530459064" + }, + { + "file": "packages/react-examples/src/react/GroupedList/docs/GroupedListBestPractices.md", + "hash": "4396915049264391582" + }, + { + "file": "packages/react-examples/src/react/GroupedList/docs/GroupedListOverview.md", + "hash": "17801108937409570084" + }, + { + "file": "packages/react-examples/src/react/HoverCard/HoverCard.Basic.Example.tsx", + "hash": "15689722060711630441" + }, + { + "file": "packages/react-examples/src/react/HoverCard/HoverCard.EventListenerTarget.Example.tsx", + "hash": "1184877838989704587" + }, + { + "file": "packages/react-examples/src/react/HoverCard/HoverCard.InstantDismiss.Example.tsx", + "hash": "4282847255970339858" + }, + { + "file": "packages/react-examples/src/react/HoverCard/HoverCard.PlainCard.Example.tsx", + "hash": "17731134095378448713" + }, + { + "file": "packages/react-examples/src/react/HoverCard/HoverCard.Target.Example.tsx", + "hash": "8142630273180268427" + }, + { + "file": "packages/react-examples/src/react/HoverCard/HoverCard.doc.tsx", + "hash": "17447330564499037589" + }, + { + "file": "packages/react-examples/src/react/HoverCard/docs/HoverCardBestPractices.md", + "hash": "6402841024745661251" + }, + { + "file": "packages/react-examples/src/react/HoverCard/docs/HoverCardDonts.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/HoverCard/docs/HoverCardDos.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/HoverCard/docs/HoverCardOverview.md", + "hash": "1328985595064008706" + }, + { + "file": "packages/react-examples/src/react/Icon/Icon.Basic.Example.tsx", + "hash": "17984128308105474954" + }, + { + "file": "packages/react-examples/src/react/Icon/Icon.Color.Example.tsx", + "hash": "16645252243482480020" + }, + { + "file": "packages/react-examples/src/react/Icon/Icon.ImageSheet.Example.tsx", + "hash": "12417527067508713040" + }, + { + "file": "packages/react-examples/src/react/Icon/Icon.Svg.Example.tsx", + "hash": "9804999214021296737" + }, + { + "file": "packages/react-examples/src/react/Icon/Icon.SvgFactory.Example.tsx", + "hash": "12995738621667765130" + }, + { + "file": "packages/react-examples/src/react/Icon/Icon.doc.tsx", + "hash": "9600632903019317388" + }, + { + "file": "packages/react-examples/src/react/Icon/docs/IconBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Icon/docs/IconDonts.md", + "hash": "15344252599448800187" + }, + { + "file": "packages/react-examples/src/react/Icon/docs/IconDos.md", + "hash": "15524612824331846611" + }, + { + "file": "packages/react-examples/src/react/Icon/docs/IconOverview.md", + "hash": "14232662465928493194" + }, + { + "file": "packages/react-examples/src/react/Image/Image.Center.Example.tsx", + "hash": "13688308880362680216" + }, + { + "file": "packages/react-examples/src/react/Image/Image.CenterContain.Example.tsx", + "hash": "15537033815011706562" + }, + { + "file": "packages/react-examples/src/react/Image/Image.CenterCover.Example.tsx", + "hash": "16676516025593185140" + }, + { + "file": "packages/react-examples/src/react/Image/Image.Contain.Example.tsx", + "hash": "3464235972853729614" + }, + { + "file": "packages/react-examples/src/react/Image/Image.Cover.Example.tsx", + "hash": "14128222888645305083" + }, + { + "file": "packages/react-examples/src/react/Image/Image.Default.Example.tsx", + "hash": "16195834891851780437" + }, + { + "file": "packages/react-examples/src/react/Image/Image.MaximizeFrame.Example.tsx", + "hash": "1849642479791586733" + }, + { + "file": "packages/react-examples/src/react/Image/Image.None.Example.tsx", + "hash": "310091402227357972" + }, + { + "file": "packages/react-examples/src/react/Image/Image.doc.tsx", + "hash": "16404311410705072998" + }, + { + "file": "packages/react-examples/src/react/Image/docs/ImageBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Image/docs/ImageDonts.md", + "hash": "13782942017733195935" + }, + { + "file": "packages/react-examples/src/react/Image/docs/ImageDos.md", + "hash": "15316394944600606401" + }, + { + "file": "packages/react-examples/src/react/Image/docs/ImageOverview.md", + "hash": "9859623914128876128" + }, + { + "file": "packages/react-examples/src/react/Keytip/KeytipSetup.ts", + "hash": "11317631626897306946" + }, + { + "file": "packages/react-examples/src/react/Keytip/Keytips.Basic.Example.tsx", + "hash": "6640280617156300280" + }, + { + "file": "packages/react-examples/src/react/Keytip/Keytips.Button.Example.tsx", + "hash": "16592718340595109676" + }, + { + "file": "packages/react-examples/src/react/Keytip/Keytips.CommandBar.Example.tsx", + "hash": "6426746182364253601" + }, + { + "file": "packages/react-examples/src/react/Keytip/Keytips.Dynamic.Example.tsx", + "hash": "3832300351857332106" + }, + { + "file": "packages/react-examples/src/react/Keytip/Keytips.Overflow.Example.tsx", + "hash": "7360673924545900757" + }, + { + "file": "packages/react-examples/src/react/Keytip/Keytips.doc.tsx", + "hash": "13060212283774655089" + }, + { + "file": "packages/react-examples/src/react/Keytip/docs/KeytipBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Keytip/docs/KeytipDonts.md", + "hash": "7427975219778042435" + }, + { + "file": "packages/react-examples/src/react/Keytip/docs/KeytipDos.md", + "hash": "16533272425370690610" + }, + { + "file": "packages/react-examples/src/react/Keytip/docs/KeytipOverview.md", + "hash": "5466366661710388407" + }, + { + "file": "packages/react-examples/src/react/Label/Label.Basic.Example.tsx", + "hash": "3115439932532188730" + }, + { + "file": "packages/react-examples/src/react/Label/Label.doc.tsx", + "hash": "13629702760836766009" + }, + { + "file": "packages/react-examples/src/react/Label/docs/LabelBestPractices.md", + "hash": "2651885143282491468" + }, + { + "file": "packages/react-examples/src/react/Label/docs/LabelOverview.md", + "hash": "12429300776760883752" + }, + { + "file": "packages/react-examples/src/react/Layer/Layer.Basic.Example.tsx", + "hash": "12030336442605652258" + }, + { + "file": "packages/react-examples/src/react/Layer/Layer.Customized.Example.tsx", + "hash": "11956652046660618414" + }, + { + "file": "packages/react-examples/src/react/Layer/Layer.Hosted.Example.tsx", + "hash": "10293813580636768822" + }, + { + "file": "packages/react-examples/src/react/Layer/Layer.NestedLayers.Example.tsx", + "hash": "10313887427342640125" + }, + { + "file": "packages/react-examples/src/react/Layer/Layer.doc.tsx", + "hash": "15060647147787646094" + }, + { + "file": "packages/react-examples/src/react/Layer/docs/LayerBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Layer/docs/LayerDonts.md", + "hash": "14968157154523423" + }, + { + "file": "packages/react-examples/src/react/Layer/docs/LayerDos.md", + "hash": "3762722919646391153" + }, + { + "file": "packages/react-examples/src/react/Layer/docs/LayerOverview.md", + "hash": "8188173414299539873" + }, + { + "file": "packages/react-examples/src/react/Link/Link.Basic.Example.tsx", + "hash": "9677832399895249361" + }, + { + "file": "packages/react-examples/src/react/Link/Link.doc.tsx", + "hash": "4750051426322737107" + }, + { + "file": "packages/react-examples/src/react/Link/docs/LinkBestPractices.md", + "hash": "2033998257774753154" + }, + { + "file": "packages/react-examples/src/react/Link/docs/LinkOverview.md", + "hash": "8574338900119621794" + }, + { + "file": "packages/react-examples/src/react/List/List.Basic.Example.tsx", + "hash": "15939721599071437024" + }, + { + "file": "packages/react-examples/src/react/List/List.Ghosting.Example.tsx", + "hash": "17859063248793674054" + }, + { + "file": "packages/react-examples/src/react/List/List.Grid.Example.tsx", + "hash": "10849003690715510287" + }, + { + "file": "packages/react-examples/src/react/List/List.Scrolling.Example.tsx", + "hash": "15072124581431867101" + }, + { + "file": "packages/react-examples/src/react/List/List.doc.tsx", + "hash": "6049496841500809671" + }, + { + "file": "packages/react-examples/src/react/List/docs/ListBestPractices.md", + "hash": "906673786462981672" + }, + { + "file": "packages/react-examples/src/react/List/docs/ListOverview.md", + "hash": "7235412708700446784" + }, + { + "file": "packages/react-examples/src/react/MarqueeSelection/MarqueeSelection.Basic.Example.tsx", + "hash": "8571825305728269079" + }, + { + "file": "packages/react-examples/src/react/MarqueeSelection/MarqueeSelection.doc.tsx", + "hash": "3267846887614393481" + }, + { + "file": "packages/react-examples/src/react/MarqueeSelection/docs/MarqueeSelectionBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/MarqueeSelection/docs/MarqueeSelectionOverview.md", + "hash": "9757531769826842687" + }, + { + "file": "packages/react-examples/src/react/MessageBar/MessageBar.Basic.Example.tsx", + "hash": "9255977763381882612" + }, + { + "file": "packages/react-examples/src/react/MessageBar/MessageBar.NoDelay.Example.tsx", + "hash": "8419449418470358759" + }, + { + "file": "packages/react-examples/src/react/MessageBar/MessageBar.doc.tsx", + "hash": "3375136037863448156" + }, + { + "file": "packages/react-examples/src/react/MessageBar/docs/MessageBarBestPractices.md", + "hash": "14552579103480173435" + }, + { + "file": "packages/react-examples/src/react/MessageBar/docs/MessageBarOverview.md", + "hash": "18169650851106535878" + }, + { + "file": "packages/react-examples/src/react/Modal/Modal.Basic.Example.tsx", + "hash": "12053434654761993165" + }, + { + "file": "packages/react-examples/src/react/Modal/Modal.Modeless.Example.tsx", + "hash": "8430039276142769105" + }, + { + "file": "packages/react-examples/src/react/Modal/Modal.doc.tsx", + "hash": "1692491552675013468" + }, + { + "file": "packages/react-examples/src/react/Modal/docs/ModalBestPractices.md", + "hash": "17303831486824291557" + }, + { + "file": "packages/react-examples/src/react/Modal/docs/ModalOverview.md", + "hash": "750264115238529685" + }, + { + "file": "packages/react-examples/src/react/Nav/Nav.Basic.Example.tsx", + "hash": "7068700491956882868" + }, + { + "file": "packages/react-examples/src/react/Nav/Nav.CustomGroupHeaders.Example.tsx", + "hash": "11381396761722683633" + }, + { + "file": "packages/react-examples/src/react/Nav/Nav.FabricDemoApp.Example.tsx", + "hash": "14556451596879196930" + }, + { + "file": "packages/react-examples/src/react/Nav/Nav.FocusZone.Example.tsx", + "hash": "9346626568314365401" + }, + { + "file": "packages/react-examples/src/react/Nav/Nav.Nested.Example.tsx", + "hash": "5579623567974645982" + }, + { + "file": "packages/react-examples/src/react/Nav/Nav.Wrapped.Example.tsx", + "hash": "448985030608262017" + }, + { + "file": "packages/react-examples/src/react/Nav/Nav.doc.tsx", + "hash": "336230450141047609" + }, + { + "file": "packages/react-examples/src/react/Nav/docs/NavBestPractices.md", + "hash": "14284117560595097883" + }, + { + "file": "packages/react-examples/src/react/Nav/docs/NavOverview.md", + "hash": "1264928082970175275" + }, + { + "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.Basic.Example.tsx", + "hash": "13374794158924025300" + }, + { + "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.BasicReversed.Example.tsx", + "hash": "6883040674335126457" + }, + { + "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.Custom.Example.tsx", + "hash": "18395805109691746051" + }, + { + "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.Vertical.Example.tsx", + "hash": "2772424211657725630" + }, + { + "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.doc.tsx", + "hash": "17904403700316649397" + }, + { + "file": "packages/react-examples/src/react/OverflowSet/docs/OverflowSetOverview.md", + "hash": "16450753773806735512" + }, + { + "file": "packages/react-examples/src/react/Overlay/Overlay.Dark.Example.tsx", + "hash": "5211673163618366885" + }, + { + "file": "packages/react-examples/src/react/Overlay/Overlay.Light.Example.tsx", + "hash": "12813896686728752122" + }, + { + "file": "packages/react-examples/src/react/Overlay/Overlay.doc.tsx", + "hash": "12351709045741002672" + }, + { + "file": "packages/react-examples/src/react/Overlay/docs/OverlayBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Overlay/docs/OverlayDonts.md", + "hash": "7421340973886295081" + }, + { + "file": "packages/react-examples/src/react/Overlay/docs/OverlayDos.md", + "hash": "1721162984869848674" + }, + { + "file": "packages/react-examples/src/react/Overlay/docs/OverlayOverview.md", + "hash": "109444894527994868" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.Basic.Example.tsx", + "hash": "18348534594647973417" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.ConfirmDismiss.Example.tsx", + "hash": "13758804553242827638" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.Controlled.Example.tsx", + "hash": "11469069615638120232" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.Footer.Example.tsx", + "hash": "282488112062051188" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.HandleDismissTarget.Example.tsx", + "hash": "6813491291038054532" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.HiddenOnDismiss.Example.tsx", + "hash": "8068150090023928072" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.LightDismiss.Example.tsx", + "hash": "10066513719817603751" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.LightDismissCustom.Example.tsx", + "hash": "5480968978251464037" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.Navigation.Example.tsx", + "hash": "14746977786281311809" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.NonModal.Example.tsx", + "hash": "8537776278560152960" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.Sizes.Example.tsx", + "hash": "11589826232157726221" + }, + { + "file": "packages/react-examples/src/react/Panel/Panel.doc.tsx", + "hash": "12570788300801762430" + }, + { + "file": "packages/react-examples/src/react/Panel/docs/PanelBestPractices.md", + "hash": "8066461067264139077" + }, + { + "file": "packages/react-examples/src/react/Panel/docs/PanelOverview.md", + "hash": "12758515869681944156" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.Compact.Example.tsx", + "hash": "6698475318564411316" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.Controlled.Example.tsx", + "hash": "10151453783919524204" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.LimitedSearch.Example.tsx", + "hash": "2497287395716121825" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.List.Example.tsx", + "hash": "17729190275421189817" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.Normal.Example.tsx", + "hash": "4039497620015636126" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.PreselectedItems.Example.tsx", + "hash": "15252965684870874172" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.ProcessSelection.Example.tsx", + "hash": "7503099760438933307" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.doc.tsx", + "hash": "778687821583669658" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/docs/PeoplePickerBestPractices.md", + "hash": "9928440444910866942" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/docs/PeoplePickerOverview.md", + "hash": "15330317123451214903" + }, + { + "file": "packages/react-examples/src/react/PeoplePicker/examples/PeoplePickerExampleData.ts", + "hash": "14353130418831610367" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.Alternate.Example.tsx", + "hash": "2866159117048715114" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.Basic.Example.tsx", + "hash": "7932380203044306436" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.Colors.Example.tsx", + "hash": "2032631877590110768" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.CustomCoinRender.Example.tsx", + "hash": "13016865546518992020" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.CustomRender.Example.tsx", + "hash": "7454634260085383601" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.Initials.Example.tsx", + "hash": "2802357776118691299" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.Presence.Example.tsx", + "hash": "8911648096661539539" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.PresenceColor.Example.tsx", + "hash": "14904713972765434990" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.UnknownPersona.Example.tsx", + "hash": "16568116341804152510" + }, + { + "file": "packages/react-examples/src/react/Persona/Persona.doc.tsx", + "hash": "2240522496260828325" + }, + { + "file": "packages/react-examples/src/react/Persona/docs/PersonaBestPractices.md", + "hash": "16737357533417045300" + }, + { + "file": "packages/react-examples/src/react/Persona/docs/PersonaOverview.md", + "hash": "6206273138744719771" + }, + { + "file": "packages/react-examples/src/react/Pickers/Picker.CustomResult.Example.tsx", + "hash": "15301754753278259359" + }, + { + "file": "packages/react-examples/src/react/Pickers/Pickers.doc.tsx", + "hash": "5987417366770875328" + }, + { + "file": "packages/react-examples/src/react/Pickers/TagPicker.Basic.Example.tsx", + "hash": "2914453979140321065" + }, + { + "file": "packages/react-examples/src/react/Pickers/TagPicker.CustomRemoveIcon.Example.tsx", + "hash": "5506752771543619207" + }, + { + "file": "packages/react-examples/src/react/Pickers/TagPicker.Inline.Example.tsx", + "hash": "10670703175363899826" + }, + { + "file": "packages/react-examples/src/react/Pickers/docs/PickersBestPractices.md", + "hash": "3300666071909453850" + }, + { + "file": "packages/react-examples/src/react/Pickers/docs/PickersOverview.md", + "hash": "8724244213473266172" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.AlwaysRender.Example.tsx", + "hash": "16012670621837773894" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.Basic.Example.tsx", + "hash": "997670773469861034" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.IconCount.Example.tsx", + "hash": "11061311590518813315" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.Large.Example.tsx", + "hash": "16210398516447265344" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.OnChange.Example.tsx", + "hash": "4429540683677202104" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.OverflowMenu.Example.tsx", + "hash": "1648219339233567984" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.Override.Example.tsx", + "hash": "4593536575634024443" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.Remove.Example.tsx", + "hash": "18273271464801981813" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.Separate.Example.tsx", + "hash": "9803273520945449452" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.Tabs.Example.tsx", + "hash": "208905264665611074" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.TabsLarge.Example.tsx", + "hash": "583401572950803339" + }, + { + "file": "packages/react-examples/src/react/Pivot/Pivot.doc.tsx", + "hash": "6678416039317864807" + }, + { + "file": "packages/react-examples/src/react/Pivot/docs/PivotBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Pivot/docs/PivotDonts.md", + "hash": "13132784219352103008" + }, + { + "file": "packages/react-examples/src/react/Pivot/docs/PivotDos.md", + "hash": "13517426324971769199" + }, + { + "file": "packages/react-examples/src/react/Pivot/docs/PivotOverview.md", + "hash": "12751248200398699321" + }, + { + "file": "packages/react-examples/src/react/Popup/Popup.Basic.Example.tsx", + "hash": "15279825885362117643" + }, + { + "file": "packages/react-examples/src/react/Popup/Popup.Modal.Example.tsx", + "hash": "14146653354220845648" + }, + { + "file": "packages/react-examples/src/react/Popup/Popup.doc.tsx", + "hash": "6530362493639771944" + }, + { + "file": "packages/react-examples/src/react/Popup/docs/PopupBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Popup/docs/PopupDonts.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Popup/docs/PopupDos.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Popup/docs/PopupOverview.md", + "hash": "6239682717430606881" + }, + { + "file": "packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.Basic.Example.tsx", + "hash": "7878042562887496662" + }, + { + "file": "packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.Indeterminate.Example.tsx", + "hash": "13545740794685865816" + }, + { + "file": "packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.doc.tsx", + "hash": "4525749493416033155" + }, + { + "file": "packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorDonts.md", + "hash": "1846679186045071833" + }, + { + "file": "packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorDos.md", + "hash": "2737665049045063520" + }, + { + "file": "packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorOverview.md", + "hash": "4902324094361584629" + }, + { + "file": "packages/react-examples/src/react/Rating/Rating.Basic.Example.tsx", + "hash": "541982030987552717" + }, + { + "file": "packages/react-examples/src/react/Rating/Rating.ButtonControlled.Example.tsx", + "hash": "9584707866723820214" + }, + { + "file": "packages/react-examples/src/react/Rating/Rating.doc.tsx", + "hash": "9281360173408764036" + }, + { + "file": "packages/react-examples/src/react/Rating/docs/RatingBestPractices.md", + "hash": "15970256686322638446" + }, + { + "file": "packages/react-examples/src/react/Rating/docs/RatingOverview.md", + "hash": "4717872153473304763" + }, + { + "file": "packages/react-examples/src/react/ResizeGroup/ResizeGroup.FlexBox.Example.tsx", + "hash": "5819645475632931604" + }, + { + "file": "packages/react-examples/src/react/ResizeGroup/ResizeGroup.OverflowSet.Example.tsx", + "hash": "5721473211608888978" + }, + { + "file": "packages/react-examples/src/react/ResizeGroup/ResizeGroup.VerticalOverflowSet.Example.tsx", + "hash": "9364272985055697723" + }, + { + "file": "packages/react-examples/src/react/ResizeGroup/ResizeGroup.doc.tsx", + "hash": "9940807793702429141" + }, + { + "file": "packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupDonts.md", + "hash": "1750390794817632172" + }, + { + "file": "packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupDos.md", + "hash": "7245572358491681391" + }, + { + "file": "packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupOverview.md", + "hash": "2352326427353831267" + }, + { + "file": "packages/react-examples/src/react/ScrollablePane/ScrollablePane.Default.Example.tsx", + "hash": "11113877117518547723" + }, + { + "file": "packages/react-examples/src/react/ScrollablePane/ScrollablePane.DetailsList.Example.tsx", + "hash": "1882085002600555650" + }, + { + "file": "packages/react-examples/src/react/ScrollablePane/ScrollablePane.doc.tsx", + "hash": "8461319800418810321" + }, + { + "file": "packages/react-examples/src/react/ScrollablePane/docs/ScrollablePaneBestPractices.md", + "hash": "13904886968403828885" + }, + { + "file": "packages/react-examples/src/react/ScrollablePane/docs/ScrollablePaneOverview.md", + "hash": "10084326919845044900" + }, + { + "file": "packages/react-examples/src/react/SearchBox/SearchBox.CustomIcon.Example.tsx", + "hash": "5426414070818314082" + }, + { + "file": "packages/react-examples/src/react/SearchBox/SearchBox.Disabled.Example.tsx", + "hash": "7664933528098226509" + }, + { + "file": "packages/react-examples/src/react/SearchBox/SearchBox.FullSize.Example.tsx", + "hash": "9644008808837079699" + }, + { + "file": "packages/react-examples/src/react/SearchBox/SearchBox.Small.Example.tsx", + "hash": "11299667884153755044" + }, + { + "file": "packages/react-examples/src/react/SearchBox/SearchBox.Underlined.Example.tsx", + "hash": "16619076302738754714" + }, + { + "file": "packages/react-examples/src/react/SearchBox/SearchBox.doc.tsx", + "hash": "11032357203793675680" + }, + { + "file": "packages/react-examples/src/react/SearchBox/docs/SearchBoxBestPractices.md", + "hash": "3557439061338581490" + }, + { + "file": "packages/react-examples/src/react/SearchBox/docs/SearchBoxOverview.md", + "hash": "6266717057770798423" + }, + { + "file": "packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.Basic.Example.tsx", + "hash": "10946830108355350291" + }, + { + "file": "packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.Controlled.Example.tsx", + "hash": "17272459144010908201" + }, + { + "file": "packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.doc.tsx", + "hash": "5408048338806923770" + }, + { + "file": "packages/react-examples/src/react/SelectedPeopleList/docs/SelectedPeopleListDonts.md", + "hash": "970258102470137051" + }, + { + "file": "packages/react-examples/src/react/SelectedPeopleList/docs/SelectedPeopleListDos.md", + "hash": "14926848229419922236" + }, + { + "file": "packages/react-examples/src/react/Selection/Selection.Basic.Example.tsx", + "hash": "14256235658935737442" + }, + { + "file": "packages/react-examples/src/react/Selection/Selection.doc.tsx", + "hash": "14968163274251836508" + }, + { + "file": "packages/react-examples/src/react/Selection/docs/SelectionOverview.md", + "hash": "1749544745534143256" + }, + { + "file": "packages/react-examples/src/react/Separator/Separator.Basic.Example.tsx", + "hash": "9574867819311136970" + }, + { + "file": "packages/react-examples/src/react/Separator/Separator.Icon.Example.tsx", + "hash": "13637856394144991987" + }, + { + "file": "packages/react-examples/src/react/Separator/Separator.Theming.Example.tsx", + "hash": "23141840819740680" + }, + { + "file": "packages/react-examples/src/react/Separator/Separator.doc.tsx", + "hash": "3926454664949544719" + }, + { + "file": "packages/react-examples/src/react/Separator/docs/SeparatorBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Separator/docs/SeparatorDonts.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Separator/docs/SeparatorDos.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Separator/docs/SeparatorOverview.md", + "hash": "9460225228566615517" + }, + { + "file": "packages/react-examples/src/react/Shimmer/Shimmer.Application.Example.tsx", + "hash": "16376361212863184150" + }, + { + "file": "packages/react-examples/src/react/Shimmer/Shimmer.Basic.Example.tsx", + "hash": "9370768287624512121" + }, + { + "file": "packages/react-examples/src/react/Shimmer/Shimmer.CustomElements.Example.tsx", + "hash": "17104489554377523890" + }, + { + "file": "packages/react-examples/src/react/Shimmer/Shimmer.LoadData.Example.tsx", + "hash": "5030842721342374838" + }, + { + "file": "packages/react-examples/src/react/Shimmer/Shimmer.Styling.Example.tsx", + "hash": "6915665004198389032" + }, + { + "file": "packages/react-examples/src/react/Shimmer/Shimmer.doc.tsx", + "hash": "8736141412298840736" + }, + { + "file": "packages/react-examples/src/react/Shimmer/docs/ShimmerBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Shimmer/docs/ShimmerDonts.md", + "hash": "13934448943707141694" + }, + { + "file": "packages/react-examples/src/react/Shimmer/docs/ShimmerDos.md", + "hash": "1558710628742347330" + }, + { + "file": "packages/react-examples/src/react/Shimmer/docs/ShimmerOverview.md", + "hash": "4843985997669345004" + }, + { + "file": "packages/react-examples/src/react/Slider/Slider.Basic.Example.tsx", + "hash": "16122885293446272894" + }, + { + "file": "packages/react-examples/src/react/Slider/Slider.Ranged.Example.tsx", + "hash": "11422561318027565393" + }, + { + "file": "packages/react-examples/src/react/Slider/Slider.Vertical.Example.tsx", + "hash": "13206520944105997136" + }, + { + "file": "packages/react-examples/src/react/Slider/Slider.doc.tsx", + "hash": "8913922147770701189" + }, + { + "file": "packages/react-examples/src/react/Slider/docs/SliderBestPractices.md", + "hash": "2387148131789983162" + }, + { + "file": "packages/react-examples/src/react/Slider/docs/SliderOverview.md", + "hash": "8504488320612513093" + }, + { + "file": "packages/react-examples/src/react/SpinButton/SpinButton.Basic.Example.tsx", + "hash": "9006433823948792522" + }, + { + "file": "packages/react-examples/src/react/SpinButton/SpinButton.Controlled.Example.tsx", + "hash": "12209496242538369748" + }, + { + "file": "packages/react-examples/src/react/SpinButton/SpinButton.CustomStyled.Example.tsx", + "hash": "16465650619764579179" + }, + { + "file": "packages/react-examples/src/react/SpinButton/SpinButton.Icon.Example.tsx", + "hash": "6626788932726993518" + }, + { + "file": "packages/react-examples/src/react/SpinButton/SpinButton.Suffix.Example.tsx", + "hash": "1079251097865055762" + }, + { + "file": "packages/react-examples/src/react/SpinButton/SpinButton.TopPosition.Example.tsx", + "hash": "582843143874513756" + }, + { + "file": "packages/react-examples/src/react/SpinButton/SpinButton.doc.tsx", + "hash": "7586160469216796173" + }, + { + "file": "packages/react-examples/src/react/SpinButton/docs/SpinButtonBestPractices.md", + "hash": "7394595204008996672" + }, + { + "file": "packages/react-examples/src/react/SpinButton/docs/SpinButtonOverview.md", + "hash": "1350428310209392348" + }, + { + "file": "packages/react-examples/src/react/Spinner/Spinner.Basic.Example.tsx", + "hash": "5676613769831055307" + }, + { + "file": "packages/react-examples/src/react/Spinner/Spinner.Labeled.Example.tsx", + "hash": "6554690103655359792" + }, + { + "file": "packages/react-examples/src/react/Spinner/Spinner.doc.tsx", + "hash": "2680295685347079214" + }, + { + "file": "packages/react-examples/src/react/Spinner/docs/SpinnerBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Spinner/docs/SpinnerDonts.md", + "hash": "13465962442451970729" + }, + { + "file": "packages/react-examples/src/react/Spinner/docs/SpinnerDos.md", + "hash": "15907047634456378207" + }, + { + "file": "packages/react-examples/src/react/Spinner/docs/SpinnerOverview.md", + "hash": "1153354032756284251" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Basic.Example.tsx", + "hash": "397185853371300849" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Configure.Example.tsx", + "hash": "3068600573305640316" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Grow.Example.tsx", + "hash": "7663043324894099728" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.HorizontalAlign.Example.tsx", + "hash": "16107132022246210787" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Reversed.Example.tsx", + "hash": "6241489615533027431" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Shrink.Example.tsx", + "hash": "4124600081374028027" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Spacing.Example.tsx", + "hash": "1220623790429356324" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.VerticalAlign.Example.tsx", + "hash": "2844202655523336279" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Wrap.Example.tsx", + "hash": "4432830012103328674" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.WrapAdvanced.Example.tsx", + "hash": "5719721466279762631" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.WrapNested.Example.tsx", + "hash": "8495148496978143621" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Basic.Example.tsx", + "hash": "6782079249119429213" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Configure.Example.tsx", + "hash": "8514056594295328011" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Grow.Example.tsx", + "hash": "17937660614534801046" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.HorizontalAlign.Example.tsx", + "hash": "4266961035406961486" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Reversed.Example.tsx", + "hash": "11573608768450252432" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Shrink.Example.tsx", + "hash": "15026509761358180518" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Spacing.Example.tsx", + "hash": "10900219514926473354" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.VerticalAlign.Example.tsx", + "hash": "3270795531306189517" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Wrap.Example.tsx", + "hash": "15143405347761112638" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.WrapAdvanced.Example.tsx", + "hash": "921574311353468954" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.Vertical.WrapNested.Example.tsx", + "hash": "15383052396031418364" + }, + { + "file": "packages/react-examples/src/react/Stack/Stack.doc.tsx", + "hash": "7761546058475299469" + }, + { + "file": "packages/react-examples/src/react/Stack/docs/StackBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Stack/docs/StackDonts.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Stack/docs/StackDos.md", + "hash": "11728596372223301314" + }, + { + "file": "packages/react-examples/src/react/Stack/docs/StackOverview.md", + "hash": "12397352656042692504" + }, + { + "file": "packages/react-examples/src/react/SwatchColorPicker/SwatchColorPicker.Basic.Example.tsx", + "hash": "4923638072801173377" + }, + { + "file": "packages/react-examples/src/react/SwatchColorPicker/SwatchColorPicker.doc.tsx", + "hash": "5507998858411018179" + }, + { + "file": "packages/react-examples/src/react/SwatchColorPicker/docs/SwatchColorPickerBestPractices.md", + "hash": "4392559887818317006" + }, + { + "file": "packages/react-examples/src/react/SwatchColorPicker/docs/SwatchColorPickerOverview.md", + "hash": "17352028475438906319" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.Basic.Example.tsx", + "hash": "7495237260950355108" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.ButtonOrder.Example.tsx", + "hash": "5239155264005845143" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.Condensed.Example.tsx", + "hash": "877446611084859392" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.Illustration.Example.tsx", + "hash": "7966558914940147995" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.MultiStep.Example.tsx", + "hash": "1471557829804882323" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.SmallHeadline.Example.tsx", + "hash": "6347084873900866086" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.Wide.Example.tsx", + "hash": "11343270132436278903" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.WideIllustration.Example.tsx", + "hash": "18124615145562684929" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.doc.tsx", + "hash": "3164002226905703915" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/docs/TeachingBubbleBestPractices.md", + "hash": "12253372352985739055" + }, + { + "file": "packages/react-examples/src/react/TeachingBubble/docs/TeachingBubbleOverview.md", + "hash": "9592985478022845846" + }, + { + "file": "packages/react-examples/src/react/Text/Text.Block.Example.tsx", + "hash": "2572640488515201257" + }, + { + "file": "packages/react-examples/src/react/Text/Text.Ramp.Example.tsx", + "hash": "17910302471956741708" + }, + { + "file": "packages/react-examples/src/react/Text/Text.Weights.Example.tsx", + "hash": "651063831392855072" + }, + { + "file": "packages/react-examples/src/react/Text/Text.Wrap.Example.tsx", + "hash": "1806536952248660360" + }, + { + "file": "packages/react-examples/src/react/Text/Text.doc.tsx", + "hash": "11970359592381181046" + }, + { + "file": "packages/react-examples/src/react/Text/docs/TextBestPractices.md", + "hash": "3244421341483603138" + }, + { + "file": "packages/react-examples/src/react/Text/docs/TextDonts.md", + "hash": "1812687761537955713" + }, + { + "file": "packages/react-examples/src/react/Text/docs/TextDos.md", + "hash": "3552494451723474854" + }, + { + "file": "packages/react-examples/src/react/Text/docs/TextOverview.md", + "hash": "6201808888188087402" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.Basic.Example.tsx", + "hash": "17697340126601025361" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.Borderless.Example.tsx", + "hash": "5776762670076842305" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.Controlled.Example.tsx", + "hash": "13387913485237516134" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.CustomRender.Example.tsx", + "hash": "15731781620662596897" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.ErrorMessage.Example.tsx", + "hash": "13848334992902664893" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.Masked.Example.tsx", + "hash": "16940421866897217217" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.Multiline.Example.tsx", + "hash": "14466852683033202902" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.PrefixAndSuffix.Example.tsx", + "hash": "5621047978049180529" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.Styled.Example.tsx", + "hash": "17474113732489640237" + }, + { + "file": "packages/react-examples/src/react/TextField/TextField.doc.tsx", + "hash": "351449129733137615" + }, + { + "file": "packages/react-examples/src/react/TextField/docs/TextFieldBestPractices.md", + "hash": "4891779884027992136" + }, + { + "file": "packages/react-examples/src/react/TextField/docs/TextFieldOverview.md", + "hash": "1575292705357077088" + }, + { + "file": "packages/react-examples/src/react/Theme/Theme.doc.tsx", + "hash": "5725525103292734150" + }, + { + "file": "packages/react-examples/src/react/Theme/docs/ThemesOverview.md", + "hash": "1025689132255097325" + }, + { + "file": "packages/react-examples/src/react/ThemeGenerator/ThemeGenerator.doc.tsx", + "hash": "2481012262064489377" + }, + { + "file": "packages/react-examples/src/react/ThemeProvider/ThemeProvider.Basic.Example.tsx", + "hash": "18065435800720689216" + }, + { + "file": "packages/react-examples/src/react/ThemeProvider/ThemeProvider.Nested.Example.tsx", + "hash": "17498722943115260456" + }, + { + "file": "packages/react-examples/src/react/ThemeProvider/ThemeProvider.doc.tsx", + "hash": "14679110571809507221" + }, + { + "file": "packages/react-examples/src/react/ThemeProvider/ThemeProvider.stories.tsx", + "hash": "4360939645926293819" + }, + { + "file": "packages/react-examples/src/react/ThemeProvider/docs/ThemeProviderBestPractices.md", + "hash": "9291823125102619223" + }, + { + "file": "packages/react-examples/src/react/ThemeProvider/docs/ThemeProviderOverview.md", + "hash": "16911649373008640709" + }, + { + "file": "packages/react-examples/src/react/TimePicker/TimePicker.Basic.Example.tsx", + "hash": "2986069269055991177" + }, + { + "file": "packages/react-examples/src/react/TimePicker/TimePicker.Controlled.Example.tsx", + "hash": "175125299373631613" + }, + { + "file": "packages/react-examples/src/react/TimePicker/TimePicker.CustomTimeStrings.Example.tsx", + "hash": "7605314919297467891" + }, + { + "file": "packages/react-examples/src/react/TimePicker/TimePicker.DateTimePicker.Example.tsx", + "hash": "8634935140509827042" + }, + { + "file": "packages/react-examples/src/react/TimePicker/TimePicker.ValidationResult.Example.tsx", + "hash": "4869507487398466300" + }, + { + "file": "packages/react-examples/src/react/TimePicker/TimePicker.doc.tsx", + "hash": "15162167716925661256" + }, + { + "file": "packages/react-examples/src/react/TimePicker/docs/TimePickerBestPractices.md", + "hash": "17184947854592075536" + }, + { + "file": "packages/react-examples/src/react/TimePicker/docs/TimePickerOverview.md", + "hash": "12628229697985609328" + }, + { + "file": "packages/react-examples/src/react/Toggle/Toggle.Basic.Example.tsx", + "hash": "296997063617274157" + }, + { + "file": "packages/react-examples/src/react/Toggle/Toggle.CustomLabel.Example.tsx", + "hash": "12819052129733986050" + }, + { + "file": "packages/react-examples/src/react/Toggle/Toggle.doc.tsx", + "hash": "16648643731009257993" + }, + { + "file": "packages/react-examples/src/react/Toggle/docs/ToggleBestPractices.md", + "hash": "14671921759592124956" + }, + { + "file": "packages/react-examples/src/react/Toggle/docs/ToggleOverview.md", + "hash": "5058309645448523639" + }, + { + "file": "packages/react-examples/src/react/Tooltip/Tooltip.AbsolutePosition.Example.tsx", + "hash": "6422947980529143287" + }, + { + "file": "packages/react-examples/src/react/Tooltip/Tooltip.Basic.Example.tsx", + "hash": "11598663710486420109" + }, + { + "file": "packages/react-examples/src/react/Tooltip/Tooltip.Custom.Example.tsx", + "hash": "13584977360149752361" + }, + { + "file": "packages/react-examples/src/react/Tooltip/Tooltip.Display.Example.tsx", + "hash": "4847577445051092212" + }, + { + "file": "packages/react-examples/src/react/Tooltip/Tooltip.Interactive.Example.tsx", + "hash": "7828051206751308669" + }, + { + "file": "packages/react-examples/src/react/Tooltip/Tooltip.Overflow.Example.tsx", + "hash": "806920868530231686" + }, + { + "file": "packages/react-examples/src/react/Tooltip/Tooltip.doc.tsx", + "hash": "296399804726274849" + }, + { + "file": "packages/react-examples/src/react/Tooltip/docs/TooltipBestPractices.md", + "hash": "7755171346331932930" + }, + { + "file": "packages/react-examples/src/react/Tooltip/docs/TooltipOverview.md", + "hash": "8796628313378671712" + }, + { + "file": "packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Example.scss", + "hash": "8887148203940963303" + }, + { + "file": "packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Example.tsx", + "hash": "11074158271954337286" + }, + { + "file": "packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx", + "hash": "1782051463240559076" + }, + { + "file": "packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.MarkedDays.Example.tsx", + "hash": "83617302861297456" + }, + { + "file": "packages/react-examples/src/react-cards/Card/Card.Configure.Example.tsx", + "hash": "6829387816201221529" + }, + { + "file": "packages/react-examples/src/react-cards/Card/Card.Horizontal.Example.tsx", + "hash": "17316572223916603990" + }, + { + "file": "packages/react-examples/src/react-cards/Card/Card.Vertical.Example.tsx", + "hash": "8828664300500480205" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.Basic.Example.tsx", + "hash": "17280228016338608640" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.CustomAccessibility.Example.tsx", + "hash": "91286154134076767" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.DataChange.Example.tsx", + "hash": "6688939291679086171" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.LargeData.Example.tsx", + "hash": "14375772672176497300" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.Multiple.Example.tsx", + "hash": "5790932728445775074" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.Styled.Example.tsx", + "hash": "3219925141936248769" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.doc.tsx", + "hash": "4837721049513527166" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/AreaChartPage.tsx", + "hash": "4908599330711186091" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/docs/AreaChartBestPractices.md", + "hash": "8667501283021664942" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/docs/AreaChartDonts.md", + "hash": "6341862057868122032" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/docs/AreaChartDos.md", + "hash": "13112543964230723538" + }, + { + "file": "packages/react-examples/src/react-charting/AreaChart/docs/AreaChartOverview.md", + "hash": "6557352484419296085" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.Basic.Example.tsx", + "hash": "14742041563816254972" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.CustomAccessibility.Example.tsx", + "hash": "5947170745589368987" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.CustomCallout.Example.tsx", + "hash": "10044935613886027628" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.Dynamic.Example.tsx", + "hash": "12862431042025783292" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.doc.tsx", + "hash": "12628122887827348086" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/DonutChartPage.tsx", + "hash": "372760954603184761" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/docs/DonutChartBestPractices.md", + "hash": "16300067599723018120" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/docs/DonutChartDonts.md", + "hash": "13677672991812468743" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/docs/DonutChartDos.md", + "hash": "13594512462831129291" + }, + { + "file": "packages/react-examples/src/react-charting/DonutChart/docs/DonutChartOverview.md", + "hash": "6204014879587669217" + }, + { + "file": "packages/react-examples/src/react-charting/GaugeChart/GaugeChart.Basic.Example.tsx", + "hash": "16149580628524933008" + }, + { + "file": "packages/react-examples/src/react-charting/GaugeChart/GaugeChart.Variant.Example.tsx", + "hash": "9126260302719343105" + }, + { + "file": "packages/react-examples/src/react-charting/GaugeChart/GaugeChart.doc.tsx", + "hash": "10718149355691209173" + }, + { + "file": "packages/react-examples/src/react-charting/GaugeChart/GaugeChartPage.tsx", + "hash": "16640437771472467039" + }, + { + "file": "packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartBestPractices.md", + "hash": "15727587785304445954" + }, + { + "file": "packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartDonts.md", + "hash": "1081792757328488596" + }, + { + "file": "packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartDos.md", + "hash": "7794023420355098591" + }, + { + "file": "packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartOverview.md", + "hash": "17251215862264929766" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Basic.Example.tsx", + "hash": "8765749276400440476" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.CustomAccessibility.Example.tsx", + "hash": "7855107173035791090" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Styled.Example.tsx", + "hash": "10072552460465707316" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Truncated.Example.tsx", + "hash": "14359382740573587985" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.doc.tsx", + "hash": "11514123822468590747" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChartPage.tsx", + "hash": "8452333274806373661" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartBestPractices.md", + "hash": "15294929844943858089" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartDonts.md", + "hash": "16148048113015171770" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartDos.md", + "hash": "14610165816610031867" + }, + { + "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartOverview.md", + "hash": "10931229892839990338" + }, + { + "file": "packages/react-examples/src/react-charting/HeatMapChart/HeatMapChart.doc.tsx", + "hash": "16115623563074567806" + }, + { + "file": "packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartBasic.CustomAccessibility.Example.tsx", + "hash": "11708850517126970876" + }, + { + "file": "packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartBasic.Example.tsx", + "hash": "10262357403800107" + }, + { + "file": "packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartPage.tsx", + "hash": "6875793756240523159" + }, + { + "file": "packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartBestPractices.md", + "hash": "2397917437906085447" + }, + { + "file": "packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartDonts.md", + "hash": "3773423687848795802" + }, + { + "file": "packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartDos.md", + "hash": "15371103820530549100" + }, + { + "file": "packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartOverview.md", + "hash": "11879653409540920034" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Basic.Example.tsx", + "hash": "13252158935887926671" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Benchmark.Example.tsx", + "hash": "4287642655868330949" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.CustomAccessibility.Example.tsx", + "hash": "8745243420945124223" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.CustomCallout.Example.tsx", + "hash": "13406079384862782588" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Variant.Example.tsx", + "hash": "2920049457733182532" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.doc.tsx", + "hash": "17502781025553440606" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChartPage.tsx", + "hash": "8291344898342706236" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartBestPractices.md", + "hash": "16151128446301762382" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartDonts.md", + "hash": "9744770780362582179" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartDos.md", + "hash": "325930012420447456" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartOverview.md", + "hash": "10347106881597446108" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.AxisTooltip.Example.tsx", + "hash": "6459704628651063468" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.Basic.Example.tsx", + "hash": "5516921156313325496" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.StringAxisTooltip.Example.tsx", + "hash": "16828106331991834440" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.doc.tsx", + "hash": "14590401134663921680" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxisPage.tsx", + "hash": "5035299730033890133" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisBestPractices.md", + "hash": "1883076091925546845" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisDonts.md", + "hash": "1929719836825879626" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisDos.md", + "hash": "7882006878115043204" + }, + { + "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisOverview.md", + "hash": "2090146818650993319" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/Legends.Basic.Example.tsx", + "hash": "13318547901894743623" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/Legends.OnChange.Example.tsx", + "hash": "254509847114453779" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/Legends.Overflow.Example.tsx", + "hash": "13509103622834344877" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/Legends.Styled.Example.tsx", + "hash": "14549351446904751647" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/Legends.WrapLines.Example.tsx", + "hash": "10763696579939743825" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/Legends.doc.tsx", + "hash": "7266834029940545539" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/LegendsPage.tsx", + "hash": "5015802845987146061" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/docs/LegendsBestPractices.md", + "hash": "16372519399062358981" + }, + { + "file": "packages/react-examples/src/react-charting/Legends/docs/LegendsOverview.md", + "hash": "6669044032918395598" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Basic.Example.tsx", + "hash": "16609453156609940493" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.CustomAccessibility.Example.tsx", + "hash": "15848904157802634625" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.CustomLocaleDateAxis.Example.tsx", + "hash": "17424975472863078490" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Events.Example.tsx", + "hash": "11443099609081595243" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Gaps.Example.tsx", + "hash": "6439669200786227256" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.LargeData.Example.tsx", + "hash": "16829926365893456599" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Multiple.Example.tsx", + "hash": "17987367081455407416" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Styled.Example.tsx", + "hash": "12410478632737069679" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChart.doc.tsx", + "hash": "7678613275504857548" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/LineChartPage.tsx", + "hash": "6723436798090404763" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/docs/LineChartBestPractices.md", + "hash": "6714629733050737300" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/docs/LineChartDonts.md", + "hash": "14412880537195715769" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/docs/LineChartDos.md", + "hash": "3909689919490469374" + }, + { + "file": "packages/react-examples/src/react-charting/LineChart/docs/LineChartOverview.md", + "hash": "10371717520503731024" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.Example.tsx", + "hash": "3428263105847588170" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.Variant.Example.tsx", + "hash": "14478237278453578125" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.doc.tsx", + "hash": "10516361952942143793" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChartPage.tsx", + "hash": "8031095526414554570" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChartWithPlaceHolder.Example.tsx", + "hash": "5387327515635763623" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartBestPractices.md", + "hash": "2690332724878924286" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartDonts.md", + "hash": "9744770780362582179" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartDos.md", + "hash": "17058286745613894005" + }, + { + "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartOverview.md", + "hash": "9567727283032560252" + }, + { + "file": "packages/react-examples/src/react-charting/PieChart/PieChart.Basic.Example.tsx", + "hash": "8203334510932548198" + }, + { + "file": "packages/react-examples/src/react-charting/PieChart/PieChart.Dynamic.Example.tsx", + "hash": "10449071395922245157" + }, + { + "file": "packages/react-examples/src/react-charting/PieChart/PieChart.doc.tsx", + "hash": "11344460396535720753" + }, + { + "file": "packages/react-examples/src/react-charting/PieChart/PieChartPage.tsx", + "hash": "3067168850426368882" + }, + { + "file": "packages/react-examples/src/react-charting/PieChart/docs/PieChartBestPractices.md", + "hash": "9239548385463694443" + }, + { + "file": "packages/react-examples/src/react-charting/PieChart/docs/PieChartOverview.md", + "hash": "12435926360300087351" + }, + { + "file": "packages/react-examples/src/react-charting/SankeyChart/SankeyChart.Basic.Example.tsx", + "hash": "15895521692770891123" + }, + { + "file": "packages/react-examples/src/react-charting/SankeyChart/SankeyChart.Inbox.Example.tsx", + "hash": "11338422240875637555" + }, + { + "file": "packages/react-examples/src/react-charting/SankeyChart/SankeyChart.doc.tsx", + "hash": "5612032228516822569" + }, + { + "file": "packages/react-examples/src/react-charting/SankeyChart/SankeyChartPage.tsx", + "hash": "6599378000696069918" + }, + { + "file": "packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartBestPractices.md", + "hash": "10660018979829767509" + }, + { + "file": "packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartDonts.md", + "hash": "13301146973251673370" + }, + { + "file": "packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartDos.md", + "hash": "1539175195150153200" + }, + { + "file": "packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartOverview.md", + "hash": "7891621325208064656" + }, + { + "file": "packages/react-examples/src/react-charting/SparklineChart/SparklineChart.Basic.Example.tsx", + "hash": "7996953674632164929" + }, + { + "file": "packages/react-examples/src/react-charting/SparklineChart/SparklineChart.doc.tsx", + "hash": "520593925782042104" + }, + { + "file": "packages/react-examples/src/react-charting/SparklineChart/SparklineChartPage.tsx", + "hash": "6550554335150726180" + }, + { + "file": "packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartBestPractices.md", + "hash": "13483173933522190353" + }, + { + "file": "packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartDonts.md", + "hash": "11299798707424545592" + }, + { + "file": "packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartDos.md", + "hash": "1697315164222562053" + }, + { + "file": "packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartOverview.md", + "hash": "14809910634717392563" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChart.CustomAccessibility.Example.tsx", + "hash": "7681705201021791043" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChart.Example.tsx", + "hash": "11601994178156060431" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChartWithPlaceHolder.Example.tsx", + "hash": "15927852500748954627" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.BaseBar.Example.tsx", + "hash": "9651160196089340776" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Basic.Example.tsx", + "hash": "5364722359703304730" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Benchmark.Example.tsx", + "hash": "11978417296447961080" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.CustomAccessibility.Example.tsx", + "hash": "2288295920028534361" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Dynamic.Example.tsx", + "hash": "16401953707966301386" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Multiple.Example.tsx", + "hash": "15030752846565030223" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.doc.tsx", + "hash": "15556279018016952835" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChartPage.tsx", + "hash": "12068599533954281772" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartBestPractices.md", + "hash": "16329234638281406580" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartDonts.md", + "hash": "9744770780362582179" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartDos.md", + "hash": "12392110646580197178" + }, + { + "file": "packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartOverview.md", + "hash": "9514828762490962803" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayer.Example.tsx", + "hash": "7678522819956493260" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerCompact.Example.tsx", + "hash": "12235799044053510801" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerCompactDocSite.Example.tsx", + "hash": "16627233669655998907" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerDocSite.Example.tsx", + "hash": "14668717497310929772" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerLong.Example.tsx", + "hash": "2717068418213538167" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.TwoLayer.Example.tsx", + "hash": "10571073613589868518" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.doc.tsx", + "hash": "11173162709033730647" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/TreeChartPage.tsx", + "hash": "2366910803326724394" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/docs/TreeChartBestPractices.md", + "hash": "4433147631214615208" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/docs/TreeChartDonts.md", + "hash": "17448766090531150739" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/docs/TreeChartDos.md", + "hash": "17299718083732552010" + }, + { + "file": "packages/react-examples/src/react-charting/TreeChart/docs/TreeChartOverview.md", + "hash": "13281315253395855539" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.AxisTooltip.Example.tsx", + "hash": "3440368874285633954" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Basic.Example.tsx", + "hash": "7236293491875440718" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.CustomAccessibility.Example.tsx", + "hash": "9720292503266491395" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Dynamic.Example.tsx", + "hash": "13174372272560557644" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.RotateLabels.Example.tsx", + "hash": "9266907551817692921" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Styled.Example.tsx", + "hash": "16741806930992796868" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.doc.tsx", + "hash": "4797540806541545801" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChartPage.tsx", + "hash": "15128301750103217480" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartBestPractices.md", + "hash": "16364767162395907158" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartDonts.md", + "hash": "7968404933206089384" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartDos.md", + "hash": "15311150692622924592" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartOverview.md", + "hash": "765353722265452356" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.AxisTooltip.Example.tsx", + "hash": "13191895355624307502" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Basic.Example.tsx", + "hash": "17782065064180114250" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Callout.Example.tsx", + "hash": "10944347787777491182" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.CustomAccessibility.Example.tsx", + "hash": "1070898371773461860" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Styled.Example.tsx", + "hash": "4504351050897917110" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.doc.tsx", + "hash": "3287708940831127290" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChartPage.tsx", + "hash": "15864858780968607914" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartBestPractices.md", + "hash": "7575666629590817987" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartDonts.md", + "hash": "16148048113015171770" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartDos.md", + "hash": "14610165816610031867" + }, + { + "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartOverview.md", + "hash": "17155804307757386673" + }, + { + "file": "packages/react-examples/src/react-charting/demo/AppDefinition.tsx", + "hash": "5500226316546506996" + }, + { + "file": "packages/react-examples/src/react-charting/demo/AppThemes.ts", + "hash": "4733901559184113020" + }, + { + "file": "packages/react-examples/src/react-charting/demo/GettingStartedPage.tsx", + "hash": "16105541935593779438" + }, + { + "file": "packages/react-examples/src/react-charting/demo/index.tsx", + "hash": "17416720422326067006" + }, + { + "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Basic.Example.tsx", + "hash": "8930719020880385792" + }, + { + "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Breadcrumb.Example.tsx", + "hash": "4984296336724180173" + }, + { + "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Footer.Example.tsx", + "hash": "8685788575260044113" + }, + { + "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Preview.Example.tsx", + "hash": "9204835405452805309" + }, + { + "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Xsmall.Example.tsx", + "hash": "9883949284175000331" + }, + { + "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Xsmall.Footer.Example.tsx", + "hash": "13684300580914819009" + }, + { + "file": "packages/react-examples/src/react-experiments/Chiclet/ChicletPage.tsx", + "hash": "6309817484233845154" + }, + { + "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Accordion.Example.tsx", + "hash": "15159333797981158652" + }, + { + "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Basic.Example.tsx", + "hash": "12659675144452419206" + }, + { + "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Controlled.Example.tsx", + "hash": "8952443015251807929" + }, + { + "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Recursive.Example.tsx", + "hash": "9112946933932153761" + }, + { + "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Slots.Example.tsx", + "hash": "6677308251806862729" + }, + { + "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Styled.Example.tsx", + "hash": "8619495061269822495" + }, + { + "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSectionPage.tsx", + "hash": "5288564094978258535" + }, + { + "file": "packages/react-examples/src/react-experiments/FileTypeIcon/FileTypeIcon.Basic.Example.tsx", + "hash": "917684447694156665" + }, + { + "file": "packages/react-examples/src/react-experiments/FileTypeIcon/FileTypeIconPage.tsx", + "hash": "858993541312384290" + }, + { + "file": "packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.CustomRender.Example.tsx", + "hash": "6292110668678104288" + }, + { + "file": "packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.Example.tsx", + "hash": "707642620583749699" + }, + { + "file": "packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.HeaderFooter.Example.tsx", + "hash": "13106417764492493310" + }, + { + "file": "packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingSuggestionsPage.tsx", + "hash": "16474647862080665137" + }, + { + "file": "packages/react-examples/src/react-experiments/FolderCover/FolderCover.Basic.Example.tsx", + "hash": "13644616959959750103" + }, + { + "file": "packages/react-examples/src/react-experiments/FolderCover/FolderCoverPage.tsx", + "hash": "16138332361658578983" + }, + { + "file": "packages/react-examples/src/react-experiments/LayoutGroup/LayoutGroup.Basic.Example.tsx", + "hash": "2242368482669957303" + }, + { + "file": "packages/react-examples/src/react-experiments/LayoutGroup/LayoutGroupPage.tsx", + "hash": "10999466950766503186" + }, + { + "file": "packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedback.Example.tsx", + "hash": "9963588234996656191" + }, + { + "file": "packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackCallout.Example.tsx", + "hash": "7009666584489671037" + }, + { + "file": "packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackPage.tsx", + "hash": "8117285971645963619" + }, + { + "file": "packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackStack.Example.tsx", + "hash": "8215761124552069416" + }, + { + "file": "packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Basic.Example.tsx", + "hash": "16672023748927658570" + }, + { + "file": "packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Customization.Example.tsx", + "hash": "15746267823289451390" + }, + { + "file": "packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Customization.Round.Example.tsx", + "hash": "16588942881062896611" + }, + { + "file": "packages/react-examples/src/react-experiments/Pagination/Pagination.ComboBox.Example.tsx", + "hash": "10221865281541950791" + }, + { + "file": "packages/react-examples/src/react-experiments/Pagination/PaginationPage.tsx", + "hash": "8871130369002585937" + }, + { + "file": "packages/react-examples/src/react-experiments/Persona/Persona.Example.tsx", + "hash": "13323610891568828947" + }, + { + "file": "packages/react-examples/src/react-experiments/Persona/PersonaPage.tsx", + "hash": "4386929712448366979" + }, + { + "file": "packages/react-examples/src/react-experiments/Persona/VerticalPersona.Example.tsx", + "hash": "6280952920806886611" + }, + { + "file": "packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoin.Example.tsx", + "hash": "5198304688619672463" + }, + { + "file": "packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoinPage.tsx", + "hash": "597153685931096748" + }, + { + "file": "packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoinSizeAndColor.Example.tsx", + "hash": "15925621842330965615" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.Basic.DragDrop.Example.tsx", + "hash": "11998599855861317186" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.Basic.Example.tsx", + "hash": "1813147298084512047" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.DragDropBetweenWells.Example.tsx", + "hash": "10334562335982740605" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithContextMenu.Example.tsx", + "hash": "15548997466564876088" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithEdit.Example.tsx", + "hash": "7110135765839362365" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithEditInContextMenu.Example.tsx", + "hash": "17140363768491353808" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithGroupExpand.Example.tsx", + "hash": "12324471504246880713" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleListPage.tsx", + "hash": "13688015502388949655" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/docs/SelectedPeopleListDonts.md", + "hash": "970258102470137051" + }, + { + "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/docs/SelectedPeopleListDos.md", + "hash": "14926848229419922236" + }, + { + "file": "packages/react-examples/src/react-experiments/Sidebar/Sidebar.Basic.Example.tsx", + "hash": "16661739891134879041" + }, + { + "file": "packages/react-examples/src/react-experiments/Sidebar/Sidebar.Collapsed.Example.tsx", + "hash": "15003512523536440179" + }, + { + "file": "packages/react-examples/src/react-experiments/Sidebar/SidebarPage.tsx", + "hash": "14960004064937642663" + }, + { + "file": "packages/react-examples/src/react-experiments/Signals/SignalField.Basic.Example.tsx", + "hash": "10922412750446698665" + }, + { + "file": "packages/react-examples/src/react-experiments/Signals/Signals.Basic.Example.tsx", + "hash": "10060294351317517165" + }, + { + "file": "packages/react-examples/src/react-experiments/Signals/Signals.Example.scss", + "hash": "8438670691459106267" + }, + { + "file": "packages/react-examples/src/react-experiments/Signals/SignalsPage.tsx", + "hash": "14146406673869305765" + }, + { + "file": "packages/react-examples/src/react-experiments/Slider/Slider.Example.tsx", + "hash": "9917636369122157024" + }, + { + "file": "packages/react-examples/src/react-experiments/Slider/Slider.Vertical.Example.tsx", + "hash": "11870888312804408806" + }, + { + "file": "packages/react-examples/src/react-experiments/Slider/SliderPage.tsx", + "hash": "16202212692805425480" + }, + { + "file": "packages/react-examples/src/react-experiments/StaticList/StaticListPage.tsx", + "hash": "16599220045566881237" + }, + { + "file": "packages/react-examples/src/react-experiments/Theming/Theming.Schemes.Custom.Example.tsx", + "hash": "6092325306258851700" + }, + { + "file": "packages/react-examples/src/react-experiments/Theming/Theming.Schemes.Variant.Example.tsx", + "hash": "6414750604467205160" + }, + { + "file": "packages/react-examples/src/react-experiments/Theming/ThemingPage.tsx", + "hash": "11929647568890781490" + }, + { + "file": "packages/react-examples/src/react-experiments/Tile/Tile.Document.Example.tsx", + "hash": "1451127257262809525" + }, + { + "file": "packages/react-examples/src/react-experiments/Tile/Tile.Example.scss", + "hash": "9239083632746717173" + }, + { + "file": "packages/react-examples/src/react-experiments/Tile/Tile.Folder.Example.tsx", + "hash": "10313966864598219856" + }, + { + "file": "packages/react-examples/src/react-experiments/Tile/Tile.Media.Example.tsx", + "hash": "7825783569121455932" + }, + { + "file": "packages/react-examples/src/react-experiments/Tile/TilePage.tsx", + "hash": "16986402846290123940" + }, + { + "file": "packages/react-examples/src/react-experiments/TilesList/ExampleHelpers.tsx", + "hash": "5885130793784814347" + }, + { + "file": "packages/react-examples/src/react-experiments/TilesList/TilesList.Basic.Example.tsx", + "hash": "12689940136040547907" + }, + { + "file": "packages/react-examples/src/react-experiments/TilesList/TilesList.Document.Example.tsx", + "hash": "15268770873391847911" + }, + { + "file": "packages/react-examples/src/react-experiments/TilesList/TilesList.Example.scss", + "hash": "16795486179587091785" + }, + { + "file": "packages/react-examples/src/react-experiments/TilesList/TilesList.Media.Example.tsx", + "hash": "5060510999175829594" + }, + { + "file": "packages/react-examples/src/react-experiments/TilesList/TilesListPage.tsx", + "hash": "5893706552312839035" + }, + { + "file": "packages/react-examples/src/react-experiments/UnifiedPeoplePicker/DoubleUnifiedPeoplePicker.Example.tsx", + "hash": "17345325041048264800" + }, + { + "file": "packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePicker.Example.tsx", + "hash": "17726985096447711321" + }, + { + "file": "packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePicker.WithEdit.Example.tsx", + "hash": "18072241743869642673" + }, + { + "file": "packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePickerPage.tsx", + "hash": "17760392667692101835" + }, + { + "file": "packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Basic.Example.tsx", + "hash": "68072280452097755" + }, + { + "file": "packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Basic2.Example.tsx", + "hash": "1955269037613322544" + }, + { + "file": "packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Example.scss", + "hash": "13239750418457062169" + }, + { + "file": "packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedListPage.tsx", + "hash": "11902707775214362543" + }, + { + "file": "packages/react-examples/src/react-experiments/demo/AppDefinition.tsx", + "hash": "18428760086075985217" + }, + { + "file": "packages/react-examples/src/react-experiments/demo/AppThemes.ts", + "hash": "16940588306323476143" + }, + { + "file": "packages/react-examples/src/react-experiments/demo/GettingStartedPage.tsx", + "hash": "8926393232991035941" + }, + { + "file": "packages/react-examples/src/react-experiments/demo/index.tsx", + "hash": "8452953617370397632" + }, + { + "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.Disabled.Example.tsx", + "hash": "591105582283659640" + }, + { + "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.HorizontalMenu.Example.tsx", + "hash": "15025677695253467860" + }, + { + "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.List.Example.tsx", + "hash": "7052917308202375780" + }, + { + "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.Photos.Example.tsx", + "hash": "15312191457300881752" + }, + { + "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.Tabbable.Example.tsx", + "hash": "14660928901055405455" + }, + { + "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.doc.tsx", + "hash": "1079957587186782410" + }, + { + "file": "packages/react-examples/src/react-focus/FocusZone/docs/FocusZoneOverview.md", + "hash": "13397458153671891240" + }, + { + "file": "packages/react-examples/tsconfig.cy.json", + "hash": "15298769101167954295" + }, + { + "file": "packages/react-examples/tsconfig.json", + "hash": "6768911732744882519" + } + ], + "@fluentui/react-theme-sass": [ + { + "file": "packages/react-components/react-theme-sass/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-theme-sass/.eslintrc.json", + "hash": "11018738359270224912" + }, + { + "file": "packages/react-components/react-theme-sass/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-theme-sass/CHANGELOG.json", + "hash": "5594685481643840414" + }, + { + "file": "packages/react-components/react-theme-sass/CHANGELOG.md", + "hash": "4856582190832297662" + }, + { + "file": "packages/react-components/react-theme-sass/LICENSE", + "hash": "7651792034110510731" + }, + { + "file": "packages/react-components/react-theme-sass/README.md", + "hash": "15214253752717970109" + }, + { + "file": "packages/react-components/react-theme-sass/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-theme-sass/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-theme-sass/etc/react-theme-sass.api.md", + "hash": "14358162522400668675" + }, + { + "file": "packages/react-components/react-theme-sass/jest.config.js", + "hash": "17399809852034663364" + }, + { + "file": "packages/react-components/react-theme-sass/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-theme-sass/package.json", + "hash": "5930055320158030255", + "deps": [ + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-theme", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/react-components/react-theme-sass/project.json", + "hash": "2766526344846927114" + }, + { + "file": "packages/react-components/react-theme-sass/sass/Sass.test.ts", + "hash": "3297823665033471734" + }, + { + "file": "packages/react-components/react-theme-sass/sass/borderRadiusTokens.scss", + "hash": "4143081919880994643" + }, + { + "file": "packages/react-components/react-theme-sass/sass/colorPaletteTokens.scss", + "hash": "1410739843977013578" + }, + { + "file": "packages/react-components/react-theme-sass/sass/colorTokens.scss", + "hash": "5989857681329073660" + }, + { + "file": "packages/react-components/react-theme-sass/sass/curveTokens.scss", + "hash": "17869535884671872417" + }, + { + "file": "packages/react-components/react-theme-sass/sass/durationTokens.scss", + "hash": "5806122938809088304" + }, + { + "file": "packages/react-components/react-theme-sass/sass/fontTokens.scss", + "hash": "6033061885418814247" + }, + { + "file": "packages/react-components/react-theme-sass/sass/shadowTokens.scss", + "hash": "4177663170137987842" + }, + { + "file": "packages/react-components/react-theme-sass/sass/spacingTokens.scss", + "hash": "977102655101265716" + }, + { + "file": "packages/react-components/react-theme-sass/sass/strokeWidthTokens.scss", + "hash": "8747232526648247088" + }, + { + "file": "packages/react-components/react-theme-sass/sass/tokens.scss", + "hash": "17672327996225294765" + }, + { + "file": "packages/react-components/react-theme-sass/src/index.ts", + "hash": "15196355143394379680" + }, + { + "file": "packages/react-components/react-theme-sass/tsconfig.json", + "hash": "11066276364833551840" + }, + { + "file": "packages/react-components/react-theme-sass/tsconfig.lib.json", + "hash": "14975475306433073951" + }, + { + "file": "packages/react-components/react-theme-sass/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/monaco-editor": [ + { + "file": "packages/monaco-editor/.eslintrc.json", + "hash": "16401897427305223968" + }, + { + "file": "packages/monaco-editor/.npmignore", + "hash": "1899321021843931458" + }, + { + "file": "packages/monaco-editor/CHANGELOG.json", + "hash": "15516623440398366724" + }, + { + "file": "packages/monaco-editor/CHANGELOG.md", + "hash": "5240386572839593668" + }, + { + "file": "packages/monaco-editor/LICENSE", + "hash": "15366233199009037529" + }, + { + "file": "packages/monaco-editor/README.md", + "hash": "5047488952633449612" + }, + { + "file": "packages/monaco-editor/config/pre-copy.json", + "hash": "2815249492915298685" + }, + { + "file": "packages/monaco-editor/just.config.ts", + "hash": "2285251981020918959" + }, + { + "file": "packages/monaco-editor/package.json", + "hash": "11766581813993022377", + "deps": [ + "npm:@microsoft/load-themed-styles", + "npm:tslib", + "@fluentui/eslint-plugin", + "npm:monaco-editor", + "@fluentui/scripts-tasks" + ] + }, + { + "file": "packages/monaco-editor/project.json", + "hash": "12676125939877011820" + }, + { + "file": "packages/monaco-editor/scripts/addMonacoWebpackConfig.js", + "hash": "568918676415136703" + }, + { + "file": "packages/monaco-editor/src/configureEnvironment.ts", + "hash": "10685711845254021009" + }, + { + "file": "packages/monaco-editor/src/monacoBundle.ts", + "hash": "14849047751141537856" + }, + { + "file": "packages/monaco-editor/src/monacoCoreBundle.ts", + "hash": "10703107346378158529" + }, + { + "file": "packages/monaco-editor/tasks/transformCssTask.ts", + "hash": "15488444608261061401" + }, + { + "file": "packages/monaco-editor/tsconfig.json", + "hash": "14351017736851024254" + } + ], + "@fluentui/react-spinbutton": [ + { + "file": "packages/react-components/react-spinbutton/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-spinbutton/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-spinbutton/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-spinbutton/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-spinbutton/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-spinbutton/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-spinbutton/CHANGELOG.json", + "hash": "4847245186650734891" + }, + { + "file": "packages/react-components/react-spinbutton/CHANGELOG.md", + "hash": "4902713454531527375" + }, + { + "file": "packages/react-components/react-spinbutton/LICENSE", + "hash": "4901619448559189631" + }, + { + "file": "packages/react-components/react-spinbutton/README.md", + "hash": "6512108027180420597" + }, + { + "file": "packages/react-components/react-spinbutton/bundle-size/SpinButton.fixture.js", + "hash": "16023973476048778455" + }, + { + "file": "packages/react-components/react-spinbutton/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-spinbutton/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-spinbutton/docs/Spec.md", + "hash": "17048980095820677857" + }, + { + "file": "packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-anatomy-alt-optional.png", + "hash": "13753539968611981470" + }, + { + "file": "packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-anatomy.png", + "hash": "18087276809080644822" + }, + { + "file": "packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-rtl.png", + "hash": "10178174469976600135" + }, + { + "file": "packages/react-components/react-spinbutton/etc/react-spinbutton.api.md", + "hash": "18118992056737806686" + }, + { + "file": "packages/react-components/react-spinbutton/jest.config.js", + "hash": "5038573041434583937" + }, + { + "file": "packages/react-components/react-spinbutton/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-spinbutton/package.json", + "hash": "17080806880489308285", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-field", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/react-label", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-spinbutton/project.json", + "hash": "6379772465996644580" + }, + { + "file": "packages/react-components/react-spinbutton/src/SpinButton.ts", + "hash": "10602772673075263099" + }, + { + "file": "packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.test.tsx", + "hash": "2529374188480590348" + }, + { + "file": "packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.tsx", + "hash": "788511591351181259" + }, + { + "file": "packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.types.ts", + "hash": "3207195866649797051" + }, + { + "file": "packages/react-components/react-spinbutton/src/components/SpinButton/index.ts", + "hash": "5065932832394680212" + }, + { + "file": "packages/react-components/react-spinbutton/src/components/SpinButton/renderSpinButton.tsx", + "hash": "17782965779459944100" + }, + { + "file": "packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButton.tsx", + "hash": "10465556537581682721" + }, + { + "file": "packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButtonStyles.styles.ts", + "hash": "15271342305082281981" + }, + { + "file": "packages/react-components/react-spinbutton/src/index.ts", + "hash": "2388138643531843309" + }, + { + "file": "packages/react-components/react-spinbutton/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-spinbutton/src/utils/clamp.test.ts", + "hash": "3964669773551288141" + }, + { + "file": "packages/react-components/react-spinbutton/src/utils/clamp.ts", + "hash": "10177435754315781459" + }, + { + "file": "packages/react-components/react-spinbutton/src/utils/getBound.test.ts", + "hash": "18120932611634343469" + }, + { + "file": "packages/react-components/react-spinbutton/src/utils/getBound.ts", + "hash": "515581470280674119" + }, + { + "file": "packages/react-components/react-spinbutton/src/utils/index.ts", + "hash": "16890875363210734367" + }, + { + "file": "packages/react-components/react-spinbutton/src/utils/precision.test.ts", + "hash": "798415561525743906" + }, + { + "file": "packages/react-components/react-spinbutton/src/utils/precision.ts", + "hash": "16903292310337878641" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonAccessibility.stories.mdx", + "hash": "1503270725368707028" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonAppearance.stories.tsx", + "hash": "13092748199560825495" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonBestPractices.md", + "hash": "4783838838611473205" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonBounds.stories.tsx", + "hash": "7858054212332861516" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonControlled.stories.tsx", + "hash": "207977934062393475" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDefault.stories.tsx", + "hash": "1013817923674569921" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDescription.md", + "hash": "13202291952905790897" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDisabled.stories.tsx", + "hash": "4734117348533727561" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDisplayValue.stories.tsx", + "hash": "10424051550481513902" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonSize.stories.tsx", + "hash": "1604059465229598492" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonStep.stories.tsx", + "hash": "231949000919450310" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonUncontrolled.stories.tsx", + "hash": "16327167484923159262" + }, + { + "file": "packages/react-components/react-spinbutton/stories/SpinButton/index.stories.tsx", + "hash": "16340081334536213963" + }, + { + "file": "packages/react-components/react-spinbutton/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-spinbutton/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-spinbutton/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-dangerjs": [ + { + "file": "scripts/dangerjs/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/dangerjs/jest.config.js", + "hash": "15039385487328949367" + }, + { + "file": "scripts/dangerjs/package.json", + "hash": "14603021980298066337", + "deps": ["@fluentui/scripts-monorepo", "@fluentui/scripts-utils"] + }, + { + "file": "scripts/dangerjs/project.json", + "hash": "13321965326957637416" + }, + { + "file": "scripts/dangerjs/src/api.ts", + "hash": "12918818137725486638" + }, + { + "file": "scripts/dangerjs/src/checkChangelog.ts", + "hash": "15268879974615931016" + }, + { + "file": "scripts/dangerjs/src/checkStorybookVersions.ts", + "hash": "3640144866496664527" + }, + { + "file": "scripts/dangerjs/src/detectNonApprovedDependencies/approvedPackages.ts", + "hash": "2479532893562050074" + }, + { + "file": "scripts/dangerjs/src/detectNonApprovedDependencies/index.ts", + "hash": "1357749020419503428" + }, + { + "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/getFailedPackageVersionConstraints.ts", + "hash": "1282063424853297229" + }, + { + "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/getRuntimeDependencies.ts", + "hash": "14851787653196049793" + }, + { + "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/getVersionConstraints.ts", + "hash": "11852620236094004296" + }, + { + "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/index.ts", + "hash": "2091566142952858380" + }, + { + "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/packageNameUtils.ts", + "hash": "17117849726828671038" + }, + { + "file": "scripts/dangerjs/src/index.js", + "hash": "8330967872875689137" + }, + { + "file": "scripts/dangerjs/src/types.ts", + "hash": "7630856845524243144" + }, + { + "file": "scripts/dangerjs/src/utils.ts", + "hash": "17556742610557548328" + }, + { + "file": "scripts/dangerjs/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/dangerjs/tsconfig.lib.json", + "hash": "15222053984038389170" + }, + { + "file": "scripts/dangerjs/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/react-aria": [ + { + "file": "packages/react-components/react-aria/.babelrc.json", + "hash": "496283691468190474" + }, + { + "file": "packages/react-components/react-aria/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-aria/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-aria/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-aria/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-aria/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-aria/CHANGELOG.json", + "hash": "5002040490185146431" + }, + { + "file": "packages/react-components/react-aria/CHANGELOG.md", + "hash": "9845108113925652540" + }, + { + "file": "packages/react-components/react-aria/LICENSE", + "hash": "7531954833459612349" + }, + { + "file": "packages/react-components/react-aria/README.md", + "hash": "14375212147544522453" + }, + { + "file": "packages/react-components/react-aria/bundle-size/Default.fixture.js", + "hash": "11831374877528803617" + }, + { + "file": "packages/react-components/react-aria/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-aria/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-aria/docs/Spec.md", + "hash": "14175263881684879744" + }, + { + "file": "packages/react-components/react-aria/etc/react-aria.api.md", + "hash": "17480600883303618628" + }, + { + "file": "packages/react-components/react-aria/jest.config.js", + "hash": "5668187947540498334" + }, + { + "file": "packages/react-components/react-aria/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-aria/package.json", + "hash": "11413694720494713369", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-shared-contexts", + "@fluentui/react-utilities", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-aria/project.json", + "hash": "6597091360640365171" + }, + { + "file": "packages/react-components/react-aria/src/activedescendant/constants.ts", + "hash": "2666008086063449551" + }, + { + "file": "packages/react-components/react-aria/src/activedescendant/index.ts", + "hash": "9186068050361306869" + }, + { + "file": "packages/react-components/react-aria/src/activedescendant/types.ts", + "hash": "17616275751509811525" + }, + { + "file": "packages/react-components/react-aria/src/activedescendant/useActiveDescendant.ts", + "hash": "5696088335642593312" + }, + { + "file": "packages/react-components/react-aria/src/activedescendant/useActivedescendant.test.tsx", + "hash": "10147830263085325805" + }, + { + "file": "packages/react-components/react-aria/src/activedescendant/useOptionWalker.ts", + "hash": "17164705128178287278" + }, + { + "file": "packages/react-components/react-aria/src/button/index.ts", + "hash": "10853837358746446063" + }, + { + "file": "packages/react-components/react-aria/src/button/types.ts", + "hash": "3047686119329172592" + }, + { + "file": "packages/react-components/react-aria/src/button/useARIAButtonProps.test.tsx", + "hash": "10819497450726165514" + }, + { + "file": "packages/react-components/react-aria/src/button/useARIAButtonProps.ts", + "hash": "724969559128884261" + }, + { + "file": "packages/react-components/react-aria/src/button/useARIAButtonShorthand.test.tsx", + "hash": "12952904029879209806" + }, + { + "file": "packages/react-components/react-aria/src/button/useARIAButtonShorthand.ts", + "hash": "14643602163518543160" + }, + { + "file": "packages/react-components/react-aria/src/index.ts", + "hash": "1321370508676472973" + }, + { + "file": "packages/react-components/react-aria/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-aria/tsconfig.lib.json", + "hash": "2330431448937249608" + }, + { + "file": "packages/react-components/react-aria/tsconfig.spec.json", + "hash": "13916911291935990408" + } + ], + "@fluentui/styles": [ + { + "file": "packages/fluentui/styles/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/styles/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/styles/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/styles/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/styles/jest.config.js", + "hash": "15647476349875375422" + }, + { + "file": "packages/fluentui/styles/package.json", + "hash": "11071553275048489771", + "deps": [ + "npm:@babel/runtime", + "npm:csstype", + "npm:lodash", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:lerna-alias" + ] + }, + { + "file": "packages/fluentui/styles/project.json", + "hash": "17384367070850273645" + }, + { + "file": "packages/fluentui/styles/src/callable.ts", + "hash": "14898759116337720669" + }, + { + "file": "packages/fluentui/styles/src/createTheme.ts", + "hash": "12329304854575333027" + }, + { + "file": "packages/fluentui/styles/src/debugEnabled.ts", + "hash": "260520645944752742" + }, + { + "file": "packages/fluentui/styles/src/deepmerge.ts", + "hash": "2446057837788726932" + }, + { + "file": "packages/fluentui/styles/src/index.ts", + "hash": "13730197638323966220" + }, + { + "file": "packages/fluentui/styles/src/mergeThemes.ts", + "hash": "16347750142281054157" + }, + { + "file": "packages/fluentui/styles/src/objectKeysToValues.ts", + "hash": "7930115653642188401" + }, + { + "file": "packages/fluentui/styles/src/types.ts", + "hash": "3955806072566441450" + }, + { + "file": "packages/fluentui/styles/src/withDebugId.ts", + "hash": "6145826506046863525" + }, + { + "file": "packages/fluentui/styles/test/deepmerge-test.ts", + "hash": "16642574076278537669" + }, + { + "file": "packages/fluentui/styles/test/mergeThemes/mergeComponentStyles-test.ts", + "hash": "98280428890954350" + }, + { + "file": "packages/fluentui/styles/test/mergeThemes/mergeComponentVariables-test.ts", + "hash": "13200727275279230669" + }, + { + "file": "packages/fluentui/styles/test/mergeThemes/mergeFontFaces-test.ts", + "hash": "16551537175877227090" + }, + { + "file": "packages/fluentui/styles/test/mergeThemes/mergeSiteVariables-test.ts", + "hash": "10628393023615026415" + }, + { + "file": "packages/fluentui/styles/test/mergeThemes/mergeStaticStyles-test.ts", + "hash": "6893282198271389648" + }, + { + "file": "packages/fluentui/styles/test/mergeThemes/mergeThemeVariables-test.ts", + "hash": "10108992874118614309" + }, + { + "file": "packages/fluentui/styles/test/mergeThemes/mergeThemes-test.ts", + "hash": "2201778227520253577" + }, + { + "file": "packages/fluentui/styles/test/objectKeysToValues-test.ts", + "hash": "13631092081735629577" + }, + { + "file": "packages/fluentui/styles/tsconfig.json", + "hash": "6941511733406172219" + } + ], + "@fluentui/react-accordion": [ + { + "file": "packages/react-components/react-accordion/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-accordion/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-accordion/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-accordion/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-accordion/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-accordion/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-accordion/CHANGELOG.json", + "hash": "6704438454373788221" + }, + { + "file": "packages/react-components/react-accordion/CHANGELOG.md", + "hash": "6697478859424030169" + }, + { + "file": "packages/react-components/react-accordion/LICENSE", + "hash": "10515969215667611391" + }, + { + "file": "packages/react-components/react-accordion/README.md", + "hash": "35811706167284032" + }, + { + "file": "packages/react-components/react-accordion/bundle-size/Accordion.fixture.js", + "hash": "13025293423793119149" + }, + { + "file": "packages/react-components/react-accordion/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-accordion/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-accordion/docs/Spec.md", + "hash": "6652265893767303498" + }, + { + "file": "packages/react-components/react-accordion/etc/react-accordion.api.md", + "hash": "11114769121820098904" + }, + { + "file": "packages/react-components/react-accordion/jest.config.js", + "hash": "10085574794168449847" + }, + { + "file": "packages/react-components/react-accordion/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-accordion/package.json", + "hash": "5342481591420806101", + "deps": [ + "@fluentui/react-aria", + "@fluentui/react-context-selector", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:scheduler" + ] + }, + { + "file": "packages/react-components/react-accordion/project.json", + "hash": "11440399097110510166" + }, + { + "file": "packages/react-components/react-accordion/src/Accordion.ts", + "hash": "16785143114878803654" + }, + { + "file": "packages/react-components/react-accordion/src/AccordionHeader.ts", + "hash": "1289798043912099911" + }, + { + "file": "packages/react-components/react-accordion/src/AccordionItem.ts", + "hash": "13880495646436759837" + }, + { + "file": "packages/react-components/react-accordion/src/AccordionPanel.ts", + "hash": "2438131819937850194" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/Accordion.test.tsx", + "hash": "16976759395372490307" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/Accordion.tsx", + "hash": "15197950880235884291" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/Accordion.types.ts", + "hash": "15153786169925228028" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/__snapshots__/Accordion.test.tsx.snap", + "hash": "5440086178578092926" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/index.ts", + "hash": "17015962739051035664" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/renderAccordion.tsx", + "hash": "6544593693425754680" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordion.test.ts", + "hash": "12537166421869993251" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordion.ts", + "hash": "10592401544867876413" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordionContextValues.test.ts", + "hash": "10384572688653114691" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordionContextValues.ts", + "hash": "10925599516232107360" + }, + { + "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordionStyles.styles.ts", + "hash": "12739953739489862888" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.test.tsx", + "hash": "5484094921469231221" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.tsx", + "hash": "4502134863578619717" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.types.ts", + "hash": "5748973260493932389" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/__snapshots__/AccordionHeader.test.tsx.snap", + "hash": "11481347373076612900" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/index.ts", + "hash": "11564966910913854684" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/renderAccordionHeader.tsx", + "hash": "6656884323774064240" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeader.test.tsx", + "hash": "18006183417930942098" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeader.tsx", + "hash": "4234484994424947618" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderContextValues.test.ts", + "hash": "12191753425986561264" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderContextValues.ts", + "hash": "8394955758226906343" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderStyles.styles.ts", + "hash": "7258185454670979521" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.test.tsx", + "hash": "5425981379802688695" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.tsx", + "hash": "2321336620717464241" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.types.ts", + "hash": "14496451663354119304" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/__snapshots__/AccordionItem.test.tsx.snap", + "hash": "64784876023442588" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/index.ts", + "hash": "6963096868193264995" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/renderAccordionItem.tsx", + "hash": "17207020838960006677" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItem.ts", + "hash": "2809714543727973223" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemContextValues.test.ts", + "hash": "15386535776538766060" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemContextValues.ts", + "hash": "13547940835645645091" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemStyles.styles.ts", + "hash": "12158531883424991447" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.test.tsx", + "hash": "7403067348982790520" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.tsx", + "hash": "12495705955231481459" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.types.ts", + "hash": "7103168862077477490" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionPanel/__snapshots__/AccordionPanel.test.tsx.snap", + "hash": "10697015544631848634" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionPanel/index.ts", + "hash": "11587887317947469666" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionPanel/renderAccordionPanel.tsx", + "hash": "7472039993286476875" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionPanel/useAccordionPanel.ts", + "hash": "6080867399999950807" + }, + { + "file": "packages/react-components/react-accordion/src/components/AccordionPanel/useAccordionPanelStyles.styles.ts", + "hash": "6138244921461656114" + }, + { + "file": "packages/react-components/react-accordion/src/contexts/accordion.ts", + "hash": "16736880611846345591" + }, + { + "file": "packages/react-components/react-accordion/src/contexts/accordionHeader.ts", + "hash": "15693653098769319600" + }, + { + "file": "packages/react-components/react-accordion/src/contexts/accordionItem.ts", + "hash": "9005618419480165756" + }, + { + "file": "packages/react-components/react-accordion/src/index.ts", + "hash": "11836421926908868045" + }, + { + "file": "packages/react-components/react-accordion/src/testing/isConformant.ts", + "hash": "14447437808059758114" + }, + { + "file": "packages/react-components/react-accordion/src/testing/mockContextValue.ts", + "hash": "14895647593596771238" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionCollapsible.stories.tsx", + "hash": "4629635531241842185" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionControlled.stories.tsx", + "hash": "13597522106183020319" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionDefault.stories.tsx", + "hash": "8772977066618335771" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionDescription.md", + "hash": "10120928891625568491" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionDisabled.stories.tsx", + "hash": "9121740621629891803" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionExpandIcon.stories.tsx", + "hash": "10117909561030074085" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionExpandIconPosition.stories.tsx", + "hash": "15839297606794072409" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionHeaders.stories.tsx", + "hash": "17224421090665489535" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionInline.stories.tsx", + "hash": "2053407323239713367" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionMultiple.stories.tsx", + "hash": "3384058409854640541" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionNavigation.stories.tsx", + "hash": "14976414457374632634" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionOpenItems.stories.tsx", + "hash": "7862328611087952935" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionSizes.stories.tsx", + "hash": "3647343044623226526" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/AccordionWithIcon.stories.tsx", + "hash": "9331458468679791705" + }, + { + "file": "packages/react-components/react-accordion/stories/Accordion/index.stories.tsx", + "hash": "15027356603113973585" + }, + { + "file": "packages/react-components/react-accordion/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-accordion/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-accordion/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/scripts-prettier": [ + { + "file": "scripts/prettier/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/prettier/jest.config.js", + "hash": "12223295979119876176" + }, + { + "file": "scripts/prettier/package.json", + "hash": "5291951655628615430", + "deps": ["@fluentui/scripts-monorepo"] + }, + { + "file": "scripts/prettier/project.json", + "hash": "6167879023111685572" + }, + { + "file": "scripts/prettier/src/index.d.ts", + "hash": "14316083377466315843" + }, + { + "file": "scripts/prettier/src/index.js", + "hash": "10984052681773998567" + }, + { + "file": "scripts/prettier/src/prettier-helpers.js", + "hash": "14195801102266884159" + }, + { + "file": "scripts/prettier/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/prettier/tsconfig.lib.json", + "hash": "15222053984038389170" + }, + { + "file": "scripts/prettier/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/scripts-webpack": [ + { + "file": "scripts/webpack/.eslintrc.json", + "hash": "6682885118106241118" + }, + { + "file": "scripts/webpack/README.md", + "hash": "4067032978229351632" + }, + { + "file": "scripts/webpack/jest.config.js", + "hash": "14139019284460164056" + }, + { + "file": "scripts/webpack/package.json", + "hash": "9113209827864624699", + "deps": ["@fluentui/scripts-monorepo", "@fluentui/scripts-utils"] + }, + { + "file": "scripts/webpack/project.json", + "hash": "8527254449760351839" + }, + { + "file": "scripts/webpack/src/getResolveAlias.js", + "hash": "15182557477202690456" + }, + { + "file": "scripts/webpack/src/index.d.ts", + "hash": "10952550470895145852" + }, + { + "file": "scripts/webpack/src/index.js", + "hash": "10843399883229391707" + }, + { + "file": "scripts/webpack/src/storybook-webpack.config.js", + "hash": "17136657291484397150" + }, + { + "file": "scripts/webpack/src/webpack-resources.js", + "hash": "10289861416065351518" + }, + { + "file": "scripts/webpack/tsconfig.json", + "hash": "2808213717553039801" + }, + { + "file": "scripts/webpack/tsconfig.lib.json", + "hash": "7589346801816210336" + }, + { + "file": "scripts/webpack/tsconfig.spec.json", + "hash": "16242416785763058919" + } + ], + "@fluentui/local-sandbox": [ + { + "file": "packages/fluentui/local-sandbox/.browserslistrc", + "hash": "600685962376487384" + }, + { + "file": "packages/fluentui/local-sandbox/README.md", + "hash": "11541093473991115874" + }, + { + "file": "packages/fluentui/local-sandbox/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/local-sandbox/package.json", + "hash": "15957460845464361736", + "deps": ["@fluentui/react-northstar", "@fluentui/scripts-babel"] + }, + { + "file": "packages/fluentui/local-sandbox/project.json", + "hash": "8676907972640714240" + }, + { + "file": "packages/fluentui/local-sandbox/public/index.html", + "hash": "11568775693172797411" + }, + { + "file": "packages/fluentui/local-sandbox/server.js", + "hash": "18020281195852225446" + }, + { + "file": "packages/fluentui/local-sandbox/src/index.tsx", + "hash": "14096238598856045997" + }, + { + "file": "packages/fluentui/local-sandbox/tsconfig.json", + "hash": "12941930694457671903" + }, + { + "file": "packages/fluentui/local-sandbox/webpack.config.js", + "hash": "4777308610290967055" + } + ], + "@fluentui/react-hooks": [ + { + "file": "packages/react-hooks/.eslintrc.json", + "hash": "7047059270393627238" + }, + { + "file": "packages/react-hooks/.npmignore", + "hash": "47056201363133096" + }, + { + "file": "packages/react-hooks/CHANGELOG.json", + "hash": "6903353318491270734" + }, + { + "file": "packages/react-hooks/CHANGELOG.md", + "hash": "4373204522688068180" + }, + { + "file": "packages/react-hooks/LICENSE", + "hash": "8744700261631581284" + }, + { + "file": "packages/react-hooks/README.md", + "hash": "9078140562214112263" + }, + { + "file": "packages/react-hooks/config/api-extractor.json", + "hash": "10799316696017961032" + }, + { + "file": "packages/react-hooks/config/tests.js", + "hash": "2484785926023527183" + }, + { + "file": "packages/react-hooks/etc/react-hooks.api.md", + "hash": "14890692399752787928" + }, + { + "file": "packages/react-hooks/jest.config.js", + "hash": "12858682342254308337" + }, + { + "file": "packages/react-hooks/just.config.ts", + "hash": "10393370776333958822" + }, + { + "file": "packages/react-hooks/package.json", + "hash": "6276994753942711587", + "deps": [ + "@fluentui/react-window-provider", + "@fluentui/set-version", + "@fluentui/utilities", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/test-utilities", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-jest", + "@fluentui/scripts-tasks", + "@fluentui/scripts-webpack", + "npm:@types/react", + "npm:react" + ] + }, + { + "file": "packages/react-hooks/project.json", + "hash": "6754036360657165220" + }, + { + "file": "packages/react-hooks/src/index.ts", + "hash": "8812997253771358596" + }, + { + "file": "packages/react-hooks/src/testUtilities.tsx", + "hash": "15657115562759724898" + }, + { + "file": "packages/react-hooks/src/useAsync.ts", + "hash": "1414020915847618581" + }, + { + "file": "packages/react-hooks/src/useBoolean.test.tsx", + "hash": "10482234089618244690" + }, + { + "file": "packages/react-hooks/src/useBoolean.ts", + "hash": "16859819035326470427" + }, + { + "file": "packages/react-hooks/src/useConst.test.tsx", + "hash": "6312687103484766497" + }, + { + "file": "packages/react-hooks/src/useConst.ts", + "hash": "10777778552058882248" + }, + { + "file": "packages/react-hooks/src/useConstCallback.test.tsx", + "hash": "16043395328514584024" + }, + { + "file": "packages/react-hooks/src/useConstCallback.ts", + "hash": "1361219448301389173" + }, + { + "file": "packages/react-hooks/src/useControllableValue.test.tsx", + "hash": "5762110490075486825" + }, + { + "file": "packages/react-hooks/src/useControllableValue.ts", + "hash": "6509890426237455715" + }, + { + "file": "packages/react-hooks/src/useEventCallback.test.ts", + "hash": "17051523471062309998" + }, + { + "file": "packages/react-hooks/src/useEventCallback.ts", + "hash": "11398682938274370856" + }, + { + "file": "packages/react-hooks/src/useForceUpdate.test.tsx", + "hash": "888582721771798845" + }, + { + "file": "packages/react-hooks/src/useForceUpdate.ts", + "hash": "2712133802208231920" + }, + { + "file": "packages/react-hooks/src/useId.test.tsx", + "hash": "15852945873220308736" + }, + { + "file": "packages/react-hooks/src/useId.ts", + "hash": "783247756396774564" + }, + { + "file": "packages/react-hooks/src/useMergedRefs.test.tsx", + "hash": "10700249183639223030" + }, + { + "file": "packages/react-hooks/src/useMergedRefs.ts", + "hash": "15582394188849760782" + }, + { + "file": "packages/react-hooks/src/useMount.test.tsx", + "hash": "14206136109322867617" + }, + { + "file": "packages/react-hooks/src/useMount.ts", + "hash": "18329731702911365804" + }, + { + "file": "packages/react-hooks/src/useMountSync.test.tsx", + "hash": "11189345965072550047" + }, + { + "file": "packages/react-hooks/src/useMountSync.ts", + "hash": "9299027787812325818" + }, + { + "file": "packages/react-hooks/src/useOnEvent.ts", + "hash": "17052043779489947676" + }, + { + "file": "packages/react-hooks/src/usePrevious.test.tsx", + "hash": "9069046424079428945" + }, + { + "file": "packages/react-hooks/src/usePrevious.ts", + "hash": "12310076477386868431" + }, + { + "file": "packages/react-hooks/src/useRefEffect.test.tsx", + "hash": "2259278510254299602" + }, + { + "file": "packages/react-hooks/src/useRefEffect.ts", + "hash": "17383740752291583544" + }, + { + "file": "packages/react-hooks/src/useSetInterval.test.tsx", + "hash": "13864624324407150233" + }, + { + "file": "packages/react-hooks/src/useSetInterval.ts", + "hash": "18010635980916199311" + }, + { + "file": "packages/react-hooks/src/useSetTimeout.test.tsx", + "hash": "13604802953379833692" + }, + { + "file": "packages/react-hooks/src/useSetTimeout.ts", + "hash": "762592617994036615" + }, + { + "file": "packages/react-hooks/src/useTarget.ts", + "hash": "12682105242997500082" + }, + { + "file": "packages/react-hooks/src/useUnmount.test.tsx", + "hash": "12554573688970283861" + }, + { + "file": "packages/react-hooks/src/useUnmount.ts", + "hash": "14158102226970174047" + }, + { + "file": "packages/react-hooks/src/useWarnings.test.tsx", + "hash": "11910066874523431865" + }, + { + "file": "packages/react-hooks/src/useWarnings.ts", + "hash": "10008379029190216816" + }, + { + "file": "packages/react-hooks/src/version.ts", + "hash": "5995781004115751505" + }, + { + "file": "packages/react-hooks/tsconfig.json", + "hash": "15516134720009168635" + }, + { + "file": "packages/react-hooks/webpack.config.js", + "hash": "5701859674302912997" + } + ], + "@fluentui/accessibility": [ + { + "file": "packages/fluentui/accessibility/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/accessibility/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/accessibility/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/accessibility/gulpfile.ts", + "hash": "176942506073220361" + }, + { + "file": "packages/fluentui/accessibility/jest.config.js", + "hash": "17874205282351665656" + }, + { + "file": "packages/fluentui/accessibility/package.json", + "hash": "1428119293457422413", + "deps": [ + "npm:@babel/runtime", + "npm:lodash", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:lerna-alias" + ] + }, + { + "file": "packages/fluentui/accessibility/project.json", + "hash": "2397489462938001575" + }, + { + "file": "packages/fluentui/accessibility/src/attributes.ts", + "hash": "6126580553423144593" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Accordion/accordionBehavior.ts", + "hash": "17324611406861834071" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Accordion/accordionContentBehavior.ts", + "hash": "12181381870618121400" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Accordion/accordionTitleBehavior.ts", + "hash": "17796073271152580" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Alert/alertBaseBehavior.ts", + "hash": "15503638703161663370" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Alert/alertBehavior.ts", + "hash": "14876942720104755676" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Alert/alertWarningBehavior.ts", + "hash": "16670372342351572102" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Attachment/attachmentBehavior.ts", + "hash": "14711350566311191339" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Box/indicatorBehavior.ts", + "hash": "4710211886869035027" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbBehavior.ts", + "hash": "6624882585753288771" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbDividerBehavior.ts", + "hash": "15345187736983796585" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbItemBehavior.ts", + "hash": "2474998566450288440" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Button/buttonBehavior.ts", + "hash": "4436560634489457374" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Button/buttonGroupBehavior.ts", + "hash": "15604332073167090358" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Button/toggleButtonBehavior.ts", + "hash": "6341598390491948665" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Card/cardBehavior.ts", + "hash": "7147184136409471442" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Card/cardChildrenFocusableBehavior.ts", + "hash": "1480635677105411390" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Card/cardFocusableBehavior.ts", + "hash": "8581885383405449382" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Card/cardSelectableBehavior.ts", + "hash": "9823225621542171085" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Card/cardsContainerBehavior.ts", + "hash": "8399647585268892796" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Carousel/carouselBehavior.ts", + "hash": "16735531794753117694" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Carousel/carouselItemBehavior.ts", + "hash": "666533224599054599" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Chat/chatBehavior.ts", + "hash": "10307880287350282214" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Chat/chatMessageBehavior.ts", + "hash": "14062608507289014893" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Checkbox/checkboxBehavior.ts", + "hash": "5573660540498990" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Common/hiddenComponentBehavior.ts", + "hash": "8752565833665693320" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerBehavior.ts", + "hash": "16681584818965517163" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarBehavior.ts", + "hash": "6694622893463831583" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarCellBehavior.ts", + "hash": "15743873885274486004" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarCellButtonBehavior.ts", + "hash": "14811251142968646419" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarGridBehavior.ts", + "hash": "436589778918574077" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarGridRowBehavior.ts", + "hash": "11408415070483512748" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarHeaderBehavior.ts", + "hash": "11583385781059816627" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Dialog/dialogBehavior.ts", + "hash": "3238470165136100361" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Dropdown/dropdownSelectedItemBehavior.ts", + "hash": "110616840354724677" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Embed/embedBehavior.ts", + "hash": "6943112027252523091" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Form/formFieldBehavior.tsx", + "hash": "8410832565631631431" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Grid/gridBehavior.ts", + "hash": "4359446512837990017" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Grid/gridHorizontalBehavior.ts", + "hash": "15843361779325307873" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Icon/iconBehavior.ts", + "hash": "2207992782795803718" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Image/imageBehavior.ts", + "hash": "13577625865581953782" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Input/inputBehavior.ts", + "hash": "1320238384030157432" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/List/basicListBehavior.ts", + "hash": "12896324333351505002" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/List/basicListItemBehavior.ts", + "hash": "5678163359671203676" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/List/listBehavior.ts", + "hash": "15868999383422317488" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/List/listItemBehavior.ts", + "hash": "17611607068265691873" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/List/navigableListBehavior.ts", + "hash": "1138383627412710723" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/List/navigableListItemBehavior.ts", + "hash": "8352293840311308214" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/List/selectableListBehavior.ts", + "hash": "4590781714857354592" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/List/selectableListItemBehavior.ts", + "hash": "3143195808065744213" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Loader/loaderBehavior.ts", + "hash": "13855327585064394709" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Menu/menuBehavior.ts", + "hash": "14678079248792887047" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Menu/menuDividerBehavior.ts", + "hash": "16474793021650517124" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Menu/menuItemBehavior.ts", + "hash": "7179572448282857084" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Menu/submenuBehavior.ts", + "hash": "13096512577056529572" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/MenuButton/menuButtonBehavior.ts", + "hash": "5038428572466939489" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillActionBehavior.ts", + "hash": "7155328372028007540" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillBehavior.ts", + "hash": "11077768158910457625" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillGroupBehavior.ts", + "hash": "15643334338602012397" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillIconBehavior.ts", + "hash": "1320149294645573451" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillImageBehavior.ts", + "hash": "17028543991514093621" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillOptionBehavior.ts", + "hash": "9922794901762647086" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Popup/popupBehavior.ts", + "hash": "14955898547553867919" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Radio/radioGroupBehavior.ts", + "hash": "13697404999060333401" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Radio/radioGroupItemBehavior.ts", + "hash": "10842489646198712586" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Slider/sliderBehavior.ts", + "hash": "16619822794642755440" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/SplitButton/splitButtonBehavior.ts", + "hash": "10498336736474909429" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Status/statusBehavior.ts", + "hash": "15095623654951310160" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tab/tabBehavior.ts", + "hash": "13343668174251408028" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tab/tabListBehavior.ts", + "hash": "3649750043955821807" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/gridCellBehavior.ts", + "hash": "16115154876003545072" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/gridCellMultipleFocusableBehavior.ts", + "hash": "8205386212064830567" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/gridCellWithFocusableElementBehavior.ts", + "hash": "11169401865825718455" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/gridHeaderCellBehavior.ts", + "hash": "10316613685585593548" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/gridHeaderRowBehavior.ts", + "hash": "14353233905207834678" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/gridNestedBehavior.ts", + "hash": "5223927548405850610" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/gridRowBehavior.ts", + "hash": "11534643350766657695" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/gridRowNestedBehavior.ts", + "hash": "6036028543837403233" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/tableBehavior.ts", + "hash": "15734694712075449666" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/tableCellBehavior.ts", + "hash": "247888810071717795" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/tableHeaderCellBehavior.ts", + "hash": "8543257944544197065" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Table/tableRowBehavior.ts", + "hash": "13529178146159239947" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/TextArea/textAreaBehavior.ts", + "hash": "6844501444659162474" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/menuAsToolbarBehavior.ts", + "hash": "1168779870270907687" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/menuItemAsToolbarButtonBehavior.ts", + "hash": "13604841550587544122" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarBehavior.ts", + "hash": "10375286365453415016" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarItemBehavior.ts", + "hash": "3223369498067500941" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuBehavior.ts", + "hash": "14285729647871437262" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuDividerBehavior.ts", + "hash": "15861708930917223847" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemBehavior.ts", + "hash": "10779092372332843312" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemCheckboxBehavior.ts", + "hash": "12585360257044015499" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemRadioBehavior.ts", + "hash": "14398017813178023378" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuRadioGroupBehavior.ts", + "hash": "13209139658156443905" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuRadioGroupWrapperBehavior.ts", + "hash": "10315186287981664781" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarRadioGroupBehavior.ts", + "hash": "14423838109163982625" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarRadioGroupItemBehavior.ts", + "hash": "4945835072624273403" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tooltip/tooltipAsDescriptionBehavior.ts", + "hash": "6750563588637322290" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tooltip/tooltipAsLabelBehavior.ts", + "hash": "1463731405657391158" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeAsListBehavior.ts", + "hash": "6548396450394702602" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeAsListboxBehavior.ts", + "hash": "15994951088316249662" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeBehavior.ts", + "hash": "16075950710176999397" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeItemAsListItemBehavior.ts", + "hash": "2754809114498177875" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeItemAsOptionBehavior.ts", + "hash": "2738733369485414781" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeItemBehavior.ts", + "hash": "853033884357985145" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeTitleAsListItemTitleBehavior.ts", + "hash": "8550309938789182057" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeTitleAsOptionBehavior.ts", + "hash": "4750004437661185204" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeTitleBehavior.ts", + "hash": "1279045353923030959" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/Video/videoBehavior.ts", + "hash": "17435873847915410399" + }, + { + "file": "packages/fluentui/accessibility/src/behaviors/index.ts", + "hash": "10592048789013221274" + }, + { + "file": "packages/fluentui/accessibility/src/focusZone/types.ts", + "hash": "8290525201717420413" + }, + { + "file": "packages/fluentui/accessibility/src/index.ts", + "hash": "17846023419384888294" + }, + { + "file": "packages/fluentui/accessibility/src/keyboard-key/codes.ts", + "hash": "8066867947356659420" + }, + { + "file": "packages/fluentui/accessibility/src/keyboard-key/index.test.ts", + "hash": "11586213541177350052" + }, + { + "file": "packages/fluentui/accessibility/src/keyboard-key/index.ts", + "hash": "15545154138089162926" + }, + { + "file": "packages/fluentui/accessibility/src/types.ts", + "hash": "943053640310977860" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/accordionTitleBehavior-test.tsx", + "hash": "8591737914797308393" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/alertBehavior-test.tsx", + "hash": "3800300251770286795" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/behavior-test.tsx", + "hash": "16838078441122709130" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/caroselBehavior-test.tsx", + "hash": "2681040911353087361" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/caroseltemBehavior-test.tsx", + "hash": "12757169696399672513" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/dialogBehavior-test.tsx", + "hash": "7702041866389015810" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/gridRowBehavior-test.tsx", + "hash": "12429407748112289925" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/listBehavior-test.tsx", + "hash": "15933862797684258290" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/listItemBehavior-test.tsx", + "hash": "6331805374367020114" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/loaderBehavior-test.tsx", + "hash": "9965769228119512081" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/menuButtonBehavior-test.tsx", + "hash": "3474631202858190529" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/popupBehavior-test.tsx", + "hash": "4455620227373588680" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/sliderBehavior-test.ts", + "hash": "1496488828314145704" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/splitButtonBehavior-test.tsx", + "hash": "5237191764740671671" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/tableRowBehavior-test.tsx", + "hash": "13911979183562314470" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/testDefinitions.ts", + "hash": "18350988259364493242" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/testHelper.tsx", + "hash": "13187273701176546577" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/treeItemAsListItemBehavior-test.tsx", + "hash": "3914609384428714413" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/treeItemAsOptionBehavior-test.tsx", + "hash": "9405458900547864979" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/treeItemBehavior-test.tsx", + "hash": "16616006821624562727" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/treeTitleAsListItemTitleBehavior-test.tsx", + "hash": "10422237936892479508" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/treeTitleAsOptionBehavior-test.tsx", + "hash": "14002345569026863398" + }, + { + "file": "packages/fluentui/accessibility/test/behaviors/treeTitleBehavior-test.tsx", + "hash": "17773411748774405789" + }, + { + "file": "packages/fluentui/accessibility/tsconfig.json", + "hash": "5873357200515143860" + } + ], + "@fluentui/react-toast": [ + { + "file": "packages/react-components/react-toast/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-toast/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-toast/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-toast/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-toast/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-toast/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-toast/CHANGELOG.json", + "hash": "10682980803074083997" + }, + { + "file": "packages/react-components/react-toast/CHANGELOG.md", + "hash": "81747637200741746" + }, + { + "file": "packages/react-components/react-toast/LICENSE", + "hash": "16949844902912624644" + }, + { + "file": "packages/react-components/react-toast/README.md", + "hash": "5200240906534650137" + }, + { + "file": "packages/react-components/react-toast/bundle-size/Toast.fixture.js", + "hash": "6560991872473022341" + }, + { + "file": "packages/react-components/react-toast/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-toast/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-toast/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-toast/docs/Spec.md", + "hash": "5531735670500748841" + }, + { + "file": "packages/react-components/react-toast/etc/react-toast.api.md", + "hash": "17225121659189868810" + }, + { + "file": "packages/react-components/react-toast/jest.config.js", + "hash": "15944780785972716927" + }, + { + "file": "packages/react-components/react-toast/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-toast/package.json", + "hash": "9896839657513933603", + "deps": [ + "npm:react-transition-group", + "@fluentui/keyboard-keys", + "@fluentui/react-aria", + "npm:@fluentui/react-icons", + "@fluentui/react-jsx-runtime", + "@fluentui/react-portal", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-toast/project.json", + "hash": "13521513962168744879" + }, + { + "file": "packages/react-components/react-toast/src/AriaLive.ts", + "hash": "5934469984273040875" + }, + { + "file": "packages/react-components/react-toast/src/Toast.ts", + "hash": "15307374811813973691" + }, + { + "file": "packages/react-components/react-toast/src/ToastBody.ts", + "hash": "14018551671824986687" + }, + { + "file": "packages/react-components/react-toast/src/ToastContainer.ts", + "hash": "4549595851046325076" + }, + { + "file": "packages/react-components/react-toast/src/ToastFooter.ts", + "hash": "3447343814030086069" + }, + { + "file": "packages/react-components/react-toast/src/ToastTitle.ts", + "hash": "18222299034471560017" + }, + { + "file": "packages/react-components/react-toast/src/ToastTrigger.ts", + "hash": "17586437167278520860" + }, + { + "file": "packages/react-components/react-toast/src/Toaster.ts", + "hash": "14175431586628349058" + }, + { + "file": "packages/react-components/react-toast/src/components/AriaLive/AriaLive.test.tsx", + "hash": "6442107386395292215" + }, + { + "file": "packages/react-components/react-toast/src/components/AriaLive/AriaLive.tsx", + "hash": "10793716600399358394" + }, + { + "file": "packages/react-components/react-toast/src/components/AriaLive/AriaLive.types.ts", + "hash": "1840525305665705621" + }, + { + "file": "packages/react-components/react-toast/src/components/AriaLive/__snapshots__/AriaLive.test.tsx.snap", + "hash": "9299768569933835789" + }, + { + "file": "packages/react-components/react-toast/src/components/AriaLive/index.ts", + "hash": "10741602548266810528" + }, + { + "file": "packages/react-components/react-toast/src/components/AriaLive/renderAriaLive.tsx", + "hash": "804859745476151280" + }, + { + "file": "packages/react-components/react-toast/src/components/AriaLive/useAriaLive.ts", + "hash": "9086600559679733817" + }, + { + "file": "packages/react-components/react-toast/src/components/AriaLive/useAriaLiveStyles.styles.ts", + "hash": "3048096877751050924" + }, + { + "file": "packages/react-components/react-toast/src/components/Timer/Timer.tsx", + "hash": "13074196879071224508" + }, + { + "file": "packages/react-components/react-toast/src/components/Timer/index.ts", + "hash": "11991616074639956962" + }, + { + "file": "packages/react-components/react-toast/src/components/Timer/useTimerStyles.styles.ts", + "hash": "3655775969916230892" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/Toast.cy.tsx", + "hash": "2288544208526258981" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/Toast.test.tsx", + "hash": "7287555393203087881" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/Toast.tsx", + "hash": "2224711623959003139" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/Toast.types.ts", + "hash": "4125010440475230441" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/__snapshots__/Toast.test.tsx.snap", + "hash": "17132507511060694009" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/index.ts", + "hash": "9618109493875621933" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/renderToast.tsx", + "hash": "10720877630875372757" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/useToast.ts", + "hash": "14393623992813194661" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/useToastContextValues.ts", + "hash": "17198227334991763932" + }, + { + "file": "packages/react-components/react-toast/src/components/Toast/useToastStyles.styles.ts", + "hash": "5557503513257771403" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastBody/ToastBody.test.tsx", + "hash": "4615164798964869091" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastBody/ToastBody.tsx", + "hash": "16250573446787171280" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastBody/ToastBody.types.ts", + "hash": "13920834813969313152" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastBody/__snapshots__/ToastBody.test.tsx.snap", + "hash": "12684431859116950296" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastBody/index.ts", + "hash": "5968957915263728965" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastBody/renderToastBody.tsx", + "hash": "17351686009722435973" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastBody/useToastBody.ts", + "hash": "13885753874205757551" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastBody/useToastBodyStyles.styles.ts", + "hash": "16206700759378001578" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.test.tsx", + "hash": "13901012506742295174" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.tsx", + "hash": "8153427315959101768" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.types.ts", + "hash": "11863328464789215239" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/__snapshots__/ToastContainer.test.tsx.snap", + "hash": "8668649856276633305" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/index.ts", + "hash": "11995343187778965101" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/renderToastContainer.tsx", + "hash": "502309263840540420" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/useToastContainer.ts", + "hash": "4141911229094274827" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/useToastContainerContextValues.ts", + "hash": "2939155370336925438" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastContainer/useToastContainerStyles.styles.ts", + "hash": "13104713389251292492" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.test.tsx", + "hash": "11424619225162201801" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.tsx", + "hash": "14593751910312704304" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.types.ts", + "hash": "16374988639865684493" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastFooter/__snapshots__/ToastFooter.test.tsx.snap", + "hash": "11711970304670119990" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastFooter/index.ts", + "hash": "8513825837838800870" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastFooter/renderToastFooter.tsx", + "hash": "207596864359220555" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastFooter/useToastFooter.ts", + "hash": "5228857853735293339" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastFooter/useToastFooterStyles.styles.ts", + "hash": "10893633555471477285" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.test.tsx", + "hash": "11441684459784269904" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.tsx", + "hash": "14292430330710862628" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.types.ts", + "hash": "11837561380110483063" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTitle/__snapshots__/ToastTitle.test.tsx.snap", + "hash": "4821473578764279817" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTitle/index.ts", + "hash": "18016065779722545690" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTitle/renderToastTitle.tsx", + "hash": "1333420123859818252" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTitle/useToastTitle.tsx", + "hash": "3210588607959161520" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTitle/useToastTitleStyles.styles.ts", + "hash": "9426158279615934679" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.test.tsx", + "hash": "5699776953831978713" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.tsx", + "hash": "12726203067935754162" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.types.ts", + "hash": "3842715180784819968" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTrigger/__snapshots__/ToastTrigger.test.tsx.snap", + "hash": "7844219453060346860" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTrigger/index.ts", + "hash": "12655493691993462210" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTrigger/renderToastTrigger.tsx", + "hash": "9466096862869316156" + }, + { + "file": "packages/react-components/react-toast/src/components/ToastTrigger/useToastTrigger.ts", + "hash": "14019618160278474734" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/Toaster.test.tsx", + "hash": "12635356051816143342" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/Toaster.tsx", + "hash": "11964445524095106184" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/Toaster.types.ts", + "hash": "6892226576257011954" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/__snapshots__/Toaster.test.tsx.snap", + "hash": "7319367689813891897" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/index.ts", + "hash": "13462024364787886895" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/renderToaster.tsx", + "hash": "9152323389222907502" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/useToastAnnounce.test.ts", + "hash": "9116052771586688891" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/useToastAnnounce.ts", + "hash": "14195815015884209829" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/useToaster.tsx", + "hash": "7064899387464883541" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/useToasterFocusManagement.ts", + "hash": "10371120963803549058" + }, + { + "file": "packages/react-components/react-toast/src/components/Toaster/useToasterStyles.styles.ts", + "hash": "7051660454651767404" + }, + { + "file": "packages/react-components/react-toast/src/contexts/toastContainerContext.tsx", + "hash": "15337355315856952234" + }, + { + "file": "packages/react-components/react-toast/src/index.ts", + "hash": "6864147601055510200" + }, + { + "file": "packages/react-components/react-toast/src/state/constants.ts", + "hash": "4536377250461792080" + }, + { + "file": "packages/react-components/react-toast/src/state/index.ts", + "hash": "14875581869228627377" + }, + { + "file": "packages/react-components/react-toast/src/state/types.ts", + "hash": "11674482699256017506" + }, + { + "file": "packages/react-components/react-toast/src/state/useToastController.test.ts", + "hash": "423595520882331462" + }, + { + "file": "packages/react-components/react-toast/src/state/useToastController.ts", + "hash": "14902116527194633878" + }, + { + "file": "packages/react-components/react-toast/src/state/useToaster.test.ts", + "hash": "15339475067759049682" + }, + { + "file": "packages/react-components/react-toast/src/state/useToaster.ts", + "hash": "4010526536948328405" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/createToaster.test.ts", + "hash": "16596155413226223798" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/createToaster.ts", + "hash": "2152902961797097092" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/dismissAllToasts.ts", + "hash": "15412166527852405711" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/dismissToast.ts", + "hash": "17045451126332775989" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/dispatchToast.ts", + "hash": "14216726211594981683" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/getPositionStyles.test.ts", + "hash": "16064541192915922154" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/getPositionStyles.ts", + "hash": "5733826555173060559" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/index.ts", + "hash": "4917379822293467718" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/pauseToast.ts", + "hash": "8244489699298786724" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/playToast.ts", + "hash": "14560953344582947245" + }, + { + "file": "packages/react-components/react-toast/src/state/vanilla/updateToast.ts", + "hash": "8004308242007218224" + }, + { + "file": "packages/react-components/react-toast/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/CustomTimeout.stories.tsx", + "hash": "16096607677990871710" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/Default.stories.tsx", + "hash": "1974781387464513603" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/DefaultToastOptions.stories.tsx", + "hash": "8958973929668160517" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/DismissAll.stories.tsx", + "hash": "2685894480482990937" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/DismissToast.stories.tsx", + "hash": "8774218450743142683" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/DismissToastWithAction.stories.tsx", + "hash": "8458792279487386337" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/FocusKeyboardShortcut.stories.tsx", + "hash": "14074369499061671706" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/Inline.stories.tsx", + "hash": "17578441719614929430" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/Intent.stories.tsx", + "hash": "1090435765951400454" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/InvertedAppearance.stories.tsx", + "hash": "10760961140479438812" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/MultipleToasters.stories.tsx", + "hash": "12056886636971994811" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/Offset.stories.tsx", + "hash": "8806183767015813092" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/PauseAndPlay.stories.tsx", + "hash": "5162053943050726387" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/PauseOnHover.stories.tsx", + "hash": "4073400650824333528" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/PauseOnWindowBlur.stories.tsx", + "hash": "8548636225339869647" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/ProgressToast.stories.tsx", + "hash": "13662336240826558606" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/ToastDescription.md", + "hash": "8747828005507942046" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/ToastLifecycle.stories.tsx", + "hash": "1932874522668137805" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/ToastPositions.stories.tsx", + "hash": "18410503127903303083" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/ToasterLimit.stories.tsx", + "hash": "68893506097705199" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/UpdateToast.stories.tsx", + "hash": "14044906220579458655" + }, + { + "file": "packages/react-components/react-toast/stories/Toast/index.stories.tsx", + "hash": "10239704938406017702" + }, + { + "file": "packages/react-components/react-toast/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-toast/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-toast/tsconfig.lib.json", + "hash": "3027287810670149763" + }, + { + "file": "packages/react-components/react-toast/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/react-timepicker-compat": [ + { + "file": "packages/react-components/react-timepicker-compat/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-timepicker-compat/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-timepicker-compat/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-timepicker-compat/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-timepicker-compat/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-timepicker-compat/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-timepicker-compat/CHANGELOG.json", + "hash": "11191853975729478248" + }, + { + "file": "packages/react-components/react-timepicker-compat/CHANGELOG.md", + "hash": "16788805867679456860" + }, + { + "file": "packages/react-components/react-timepicker-compat/LICENSE", + "hash": "5894441072731856187" + }, + { + "file": "packages/react-components/react-timepicker-compat/README.md", + "hash": "3680685275246455558" + }, + { + "file": "packages/react-components/react-timepicker-compat/bundle-size/TimePicker.fixture.js", + "hash": "16899056741609557245" + }, + { + "file": "packages/react-components/react-timepicker-compat/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-timepicker-compat/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-timepicker-compat/cypress.config.ts", + "hash": "17230281421398791592" + }, + { + "file": "packages/react-components/react-timepicker-compat/docs/Migration.md", + "hash": "7575090176618687513" + }, + { + "file": "packages/react-components/react-timepicker-compat/docs/Spec.md", + "hash": "4434180370389108781" + }, + { + "file": "packages/react-components/react-timepicker-compat/etc/react-timepicker-compat.api.md", + "hash": "806412966990929511" + }, + { + "file": "packages/react-components/react-timepicker-compat/jest.config.js", + "hash": "12661834635702904638" + }, + { + "file": "packages/react-components/react-timepicker-compat/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-timepicker-compat/package.json", + "hash": "9651141473165413674", + "deps": [ + "@fluentui/keyboard-keys", + "@fluentui/react-combobox", + "@fluentui/react-field", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-timepicker-compat/project.json", + "hash": "12017860013643936176" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/TimePicker.ts", + "hash": "8919003633615161634" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.cy.tsx", + "hash": "577280389277013309" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.test.tsx", + "hash": "4625180512860312676" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.tsx", + "hash": "6856338812317042222" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.types.ts", + "hash": "16705913128014134642" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/index.ts", + "hash": "14317002683791819993" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/timeMath.test.ts", + "hash": "9610495087449809696" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/timeMath.ts", + "hash": "16427594297458443598" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/useTimePicker.tsx", + "hash": "10101090423944398224" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/useTimePickerStyles.styles.ts", + "hash": "9323957650113310013" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/index.ts", + "hash": "15110596364222141948" + }, + { + "file": "packages/react-components/react-timepicker-compat/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerBestPractices.md", + "hash": "4715016281428560167" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerControlled.md", + "hash": "4542577073511108011" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerControlled.stories.tsx", + "hash": "12390911091164732918" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerDefault.stories.tsx", + "hash": "8034977353354719858" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerDescription.md", + "hash": "6543020975323479896" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformCustomParsing.md", + "hash": "8328212493981358431" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformCustomParsing.stories.tsx", + "hash": "10623384923512153992" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformWithErrorHandling.md", + "hash": "9839268275704554451" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformWithErrorHandling.stories.tsx", + "hash": "726484920919964579" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerWithDatePicker.stories.tsx", + "hash": "16534919271336122442" + }, + { + "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/index.stories.tsx", + "hash": "6042911818401085451" + }, + { + "file": "packages/react-components/react-timepicker-compat/tsconfig.cy.json", + "hash": "7215147373970103512" + }, + { + "file": "packages/react-components/react-timepicker-compat/tsconfig.json", + "hash": "5326137440511234645" + }, + { + "file": "packages/react-components/react-timepicker-compat/tsconfig.lib.json", + "hash": "8117551715541039118" + }, + { + "file": "packages/react-components/react-timepicker-compat/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/perf-test-react-components": [ + { + "file": "apps/perf-test-react-components/.eslintrc.json", + "hash": "11394998712033899358" + }, + { + "file": "apps/perf-test-react-components/CHANGELOG.json", + "hash": "9705294603087361552" + }, + { + "file": "apps/perf-test-react-components/CHANGELOG.md", + "hash": "1955031280662643285" + }, + { + "file": "apps/perf-test-react-components/README.md", + "hash": "12764928321652014507" + }, + { + "file": "apps/perf-test-react-components/config/perf-test/index.ts", + "hash": "9382341332431634376" + }, + { + "file": "apps/perf-test-react-components/config/perf-test/scenarioIterations.ts", + "hash": "2689308603351418909" + }, + { + "file": "apps/perf-test-react-components/config/perf-test/scenarioNames.ts", + "hash": "7752641890685283927" + }, + { + "file": "apps/perf-test-react-components/config/perf-test/scenarioRenderTypes.ts", + "hash": "4111949727319474190" + }, + { + "file": "apps/perf-test-react-components/config/pre-copy.json", + "hash": "5251859254196291210" + }, + { + "file": "apps/perf-test-react-components/index.html", + "hash": "2745716322290525623" + }, + { + "file": "apps/perf-test-react-components/just.config.ts", + "hash": "4618050165307861195" + }, + { + "file": "apps/perf-test-react-components/package.json", + "hash": "14351998842130606319", + "deps": [ + "@fluentui/scripts-perf-test-flamegrill", + "@fluentui/react-avatar", + "@fluentui/react-button", + "@fluentui/react-field", + "@fluentui/react-persona", + "@fluentui/react-provider", + "@fluentui/react-spinbutton", + "@fluentui/react-theme", + "npm:@griffel/core", + "npm:@microsoft/load-themed-styles", + "npm:react", + "npm:react-dom", + "npm:tslib", + "@fluentui/eslint-plugin", + "@fluentui/scripts-tasks", + "@fluentui/scripts-storybook" + ] + }, + { + "file": "apps/perf-test-react-components/project.json", + "hash": "897404076483519183" + }, + { + "file": "apps/perf-test-react-components/src/app.tsx", + "hash": "3188751655411573665" + }, + { + "file": "apps/perf-test-react-components/src/scenarios/Avatar.tsx", + "hash": "8157265688749489090" + }, + { + "file": "apps/perf-test-react-components/src/scenarios/Button.tsx", + "hash": "274370466704185279" + }, + { + "file": "apps/perf-test-react-components/src/scenarios/Field.tsx", + "hash": "3681451947007170553" + }, + { + "file": "apps/perf-test-react-components/src/scenarios/FluentProvider.tsx", + "hash": "769812070028657132" + }, + { + "file": "apps/perf-test-react-components/src/scenarios/FluentProviderWithTheme.tsx", + "hash": "2530515739000735637" + }, + { + "file": "apps/perf-test-react-components/src/scenarios/MakeStyles.tsx", + "hash": "7976650837438939483" + }, + { + "file": "apps/perf-test-react-components/src/scenarios/Persona.tsx", + "hash": "12680964084800898666" + }, + { + "file": "apps/perf-test-react-components/src/scenarios/SpinButton.tsx", + "hash": "13668415692180724398" + }, + { + "file": "apps/perf-test-react-components/tsconfig.json", + "hash": "8441577648341427081" + }, + { + "file": "apps/perf-test-react-components/webpack.config.js", + "hash": "6869860371066694099" + } + ], + "@fluentui/workspace-plugin": [ + { + "file": "tools/workspace-plugin/.eslintrc.json", + "hash": "15149754208101589499" + }, + { + "file": "tools/workspace-plugin/README.md", + "hash": "6672627314745788036" + }, + { + "file": "tools/workspace-plugin/STYLE-GUIDE.md", + "hash": "3643452117874720686" + }, + { + "file": "tools/workspace-plugin/generators.json", + "hash": "14874084490014433884" + }, + { + "file": "tools/workspace-plugin/jest.config.ts", + "hash": "15153650075111198033" + }, + { + "file": "tools/workspace-plugin/package.json", + "hash": "3887346704352140538" + }, + { + "file": "tools/workspace-plugin/project.json", + "hash": "15713253905208780959" + }, + { + "file": "tools/workspace-plugin/scripts/check-dep-graph.js", + "hash": "8914802890105624146" + }, + { + "file": "tools/workspace-plugin/src/generators/add-codeowners.spec.ts", + "hash": "12173538524254972528" + }, + { + "file": "tools/workspace-plugin/src/generators/add-codeowners.ts", + "hash": "17572063765493066791" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/README.md", + "hash": "9195191598039456271" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/files/cypress.config.ts__tmpl__", + "hash": "17230281421398791592" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/files/tsconfig.cy.json__tmpl__", + "hash": "583687292406309619" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/index.spec.ts", + "hash": "2318255691944314322" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/index.ts", + "hash": "8797936809098149602" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/lib/add-files.ts", + "hash": "2938181488416777877" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/lib/utils.spec.ts", + "hash": "11181311015782311627" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/lib/utils.ts", + "hash": "9065718880996606846" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/schema.json", + "hash": "17452041331960852312" + }, + { + "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/schema.ts", + "hash": "5622245695872283378" + }, + { + "file": "tools/workspace-plugin/src/generators/dependency-mismatch/README.md", + "hash": "7206131889877981370" + }, + { + "file": "tools/workspace-plugin/src/generators/dependency-mismatch/index.spec.ts", + "hash": "8624903429065322064" + }, + { + "file": "tools/workspace-plugin/src/generators/dependency-mismatch/index.ts", + "hash": "140651421153146290" + }, + { + "file": "tools/workspace-plugin/src/generators/dependency-mismatch/schema.json", + "hash": "865300350200578861" + }, + { + "file": "tools/workspace-plugin/src/generators/dependency-mismatch/schema.ts", + "hash": "16632993977426318585" + }, + { + "file": "tools/workspace-plugin/src/generators/epic-generator/README.md", + "hash": "16999690254569500391" + }, + { + "file": "tools/workspace-plugin/src/generators/epic-generator/index.spec.ts", + "hash": "10508293609049539359" + }, + { + "file": "tools/workspace-plugin/src/generators/epic-generator/index.ts", + "hash": "9154235588228773010" + }, + { + "file": "tools/workspace-plugin/src/generators/epic-generator/schema.json", + "hash": "7342797308065425147" + }, + { + "file": "tools/workspace-plugin/src/generators/epic-generator/schema.ts", + "hash": "14871870936190718481" + }, + { + "file": "tools/workspace-plugin/src/generators/generate-change-file.spec.ts", + "hash": "7911062531575789942" + }, + { + "file": "tools/workspace-plugin/src/generators/generate-change-files.ts", + "hash": "4364069018731787781" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/README.md", + "hash": "3654033943011462935" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/conformance-setup.ts__tmpl__", + "hash": "4945883377006641019" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/just-config.ts__tmpl__", + "hash": "10393370776333958822" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/old-jest-config.js__tmpl__", + "hash": "1536723015234762507" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/ts-ignore-story.ts__tmpl__", + "hash": "4346103498686954704" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__snapshots__/index.spec.ts.snap", + "hash": "10832486388624247092" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/files/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/files/just-config.ts__tmpl__", + "hash": "4613957333426947832" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/index.spec.ts", + "hash": "993719406763264172" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/index.ts", + "hash": "16807171603041999988" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/__fixtures__/utils-hello-substitute.ts__tmpl__", + "hash": "14220718920917696154" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/__fixtures__/utils-hello.ts__tmpl__", + "hash": "13350959345360961417" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/utils.spec.ts", + "hash": "5968007191018436234" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/utils.ts", + "hash": "8873963753325977415" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/schema.json", + "hash": "3534760653604611747" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/schema.ts", + "hash": "4895008639756688876" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/README.md", + "hash": "12450870298660097504" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/index.spec.ts", + "hash": "1801846956210178590" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/index.ts", + "hash": "13441194817743428609" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/schema.json", + "hash": "14796316966131261389" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/schema.ts", + "hash": "263215702101659815" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/README.md", + "hash": "8702247513273588859" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/index.spec.ts", + "hash": "6563393165061308225" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/index.ts", + "hash": "17397782312510274601" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/lib/utils.spec.ts", + "hash": "8222153512403384692" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/lib/utils.ts", + "hash": "549574462343596953" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/schema.json", + "hash": "18188452103508093176" + }, + { + "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/schema.ts", + "hash": "11890221334435483209" + }, + { + "file": "tools/workspace-plugin/src/generators/move-packages/README.md", + "hash": "15369626182250540239" + }, + { + "file": "tools/workspace-plugin/src/generators/move-packages/index.spec.ts", + "hash": "9963499119880645124" + }, + { + "file": "tools/workspace-plugin/src/generators/move-packages/index.ts", + "hash": "1840851322697263929" + }, + { + "file": "tools/workspace-plugin/src/generators/move-packages/schema.json", + "hash": "3008817952145443497" + }, + { + "file": "tools/workspace-plugin/src/generators/move-packages/schema.ts", + "hash": "17347108861724480960" + }, + { + "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/README.md", + "hash": "11889442463540326504" + }, + { + "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/index.spec.ts", + "hash": "2788168539185477742" + }, + { + "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/index.ts", + "hash": "2358735029119276862" + }, + { + "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/lib/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/schema.json", + "hash": "959331019707851958" + }, + { + "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/schema.ts", + "hash": "3746319603399027876" + }, + { + "file": "tools/workspace-plugin/src/generators/prepare-initial-release/README.md", + "hash": "18280291482919668423" + }, + { + "file": "tools/workspace-plugin/src/generators/prepare-initial-release/index.spec.ts", + "hash": "17951933054430477244" + }, + { + "file": "tools/workspace-plugin/src/generators/prepare-initial-release/index.ts", + "hash": "15073543577756916111" + }, + { + "file": "tools/workspace-plugin/src/generators/prepare-initial-release/lib/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "tools/workspace-plugin/src/generators/prepare-initial-release/schema.json", + "hash": "5882686008657364503" + }, + { + "file": "tools/workspace-plugin/src/generators/prepare-initial-release/schema.ts", + "hash": "16506159453550357987" + }, + { + "file": "tools/workspace-plugin/src/generators/print-stats.spec.ts", + "hash": "1280574985528973253" + }, + { + "file": "tools/workspace-plugin/src/generators/print-stats.ts", + "hash": "3989581104140317561" + }, + { + "file": "tools/workspace-plugin/src/generators/rc-caret/README.md", + "hash": "1174057707215016959" + }, + { + "file": "tools/workspace-plugin/src/generators/rc-caret/index.spec.ts", + "hash": "8046872970532016323" + }, + { + "file": "tools/workspace-plugin/src/generators/rc-caret/index.ts", + "hash": "12202838045906057022" + }, + { + "file": "tools/workspace-plugin/src/generators/rc-caret/schema.json", + "hash": "13430321724244114237" + }, + { + "file": "tools/workspace-plugin/src/generators/rc-caret/schema.ts", + "hash": "15545508060181886231" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/README.md", + "hash": "15509040416326092319" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.test.tsx__tmpl__", + "hash": "9776823715391656097" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.tsx__tmpl__", + "hash": "6395415828085913288" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.types.ts__tmpl__", + "hash": "17965595033275169239" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/component/index.ts__tmpl__", + "hash": "2919728859339381699" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/component/render__componentName__.tsx__tmpl__", + "hash": "12530167117660777622" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/component/use__componentName__.ts__tmpl__", + "hash": "5974329661946724656" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/component/use__componentName__Styles.styles.ts__tmpl__", + "hash": "1139185616779782212" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/story/__componentName__BestPractices.md__tmpl__", + "hash": "13132854725403121719" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/story/__componentName__Default.stories.tsx__tmpl__", + "hash": "3467293824812820226" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/story/__componentName__Description.md__tmpl__", + "hash": "3244421341483603138" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/files/story/index.stories.tsx__tmpl__", + "hash": "5655101799178136947" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/index.spec.ts", + "hash": "12818061419512492949" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/index.ts", + "hash": "10149141456045580625" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/lib/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/schema.json", + "hash": "3420955762081798541" + }, + { + "file": "tools/workspace-plugin/src/generators/react-component/schema.ts", + "hash": "3282902116051628156" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/README.md", + "hash": "114414758584016906" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/.babelrc.json__tmpl__", + "hash": "14815445141901096491" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/.eslintrc.json__tmpl__", + "hash": "11822209983446579696" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/.storybook/main.js__tmpl__", + "hash": "11617744840349284164" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/.storybook/preview.js__tmpl__", + "hash": "1791378012295456991" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/.storybook/tsconfig.json__tmpl__", + "hash": "14611368028782818158" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/.swcrc__tmpl__", + "hash": "16532409398616988134" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/LICENSE__tmpl__", + "hash": "13024596769977255008" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/README.md__tmpl__", + "hash": "13221908493670670010" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/config/api-extractor.json__tmpl__", + "hash": "124052868224837692" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/config/tests.js__tmpl__", + "hash": "16913843724990866890" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/docs/Spec.md__tmpl__", + "hash": "17802667132668971412" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/etc/__packageName__.api.md", + "hash": "3244421341483603138" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/jest.config.js__tmpl__", + "hash": "9239487721821393767" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/just.config.ts__tmpl__", + "hash": "4613957333426947832" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/package.json__tmpl__", + "hash": "14606909362012068991" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/src/index.ts__tmpl__", + "hash": "15555827964896839803" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/src/testing/isConformant.ts__tmpl__", + "hash": "7325949189279658038" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/stories/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/tsconfig.json__tmpl__", + "hash": "5237217701871136285" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/tsconfig.lib.json__tmpl__", + "hash": "1202804459946898179" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/files/tsconfig.spec.json__tmpl__", + "hash": "6114153871167405290" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/index.spec.ts", + "hash": "9062493083910514758" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/index.ts", + "hash": "13805441570442854906" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/lib/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/schema.json", + "hash": "7218774757126974420" + }, + { + "file": "tools/workspace-plugin/src/generators/react-library/schema.ts", + "hash": "14010440605010742358" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/README.md", + "hash": "7894436322904197761" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/__snapshots__/index.spec.ts.snap", + "hash": "18218013101938864112" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/__fileName__.stories.mdx__tmpl__", + "hash": "14323085748279977626" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/code-snippets/__fileName__.tsx__tmpl__", + "hash": "4194914096576941895" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/code-snippets/index.ts__tmpl__", + "hash": "2285662923644655059" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/index.spec.ts", + "hash": "1806201693205694550" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/index.ts", + "hash": "3887584550230851344" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/schema.json", + "hash": "763716532980099231" + }, + { + "file": "tools/workspace-plugin/src/generators/recipe-generator/schema.ts", + "hash": "5109310080379739482" + }, + { + "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/README.md", + "hash": "12453587723963083178" + }, + { + "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/index.spec.ts", + "hash": "7413380692194170252" + }, + { + "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/index.ts", + "hash": "10444091968450267048" + }, + { + "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/lib/utils.ts", + "hash": "624116704349760242" + }, + { + "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/schema.json", + "hash": "584102150782507131" + }, + { + "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/schema.ts", + "hash": "5764224920941233305" + }, + { + "file": "tools/workspace-plugin/src/generators/version-bump/README.md", + "hash": "7394436249831666532" + }, + { + "file": "tools/workspace-plugin/src/generators/version-bump/index.spec.ts", + "hash": "8713901855072782460" + }, + { + "file": "tools/workspace-plugin/src/generators/version-bump/index.ts", + "hash": "15492460185168430214" + }, + { + "file": "tools/workspace-plugin/src/generators/version-bump/schema.json", + "hash": "17458402893301617402" + }, + { + "file": "tools/workspace-plugin/src/generators/version-bump/schema.ts", + "hash": "13768604396498144359" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/files/README.md__tmpl__", + "hash": "18433070323338931926" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/files/index.spec.ts__tmpl__", + "hash": "8962363898122267371" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/files/index.ts__tmpl__", + "hash": "5747756663658172206" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/files/lib/utils.spec.ts__tmpl__", + "hash": "9830935905014520824" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/files/lib/utils.ts__tmpl__", + "hash": "4280877079534460457" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/files/schema.json__tmpl__", + "hash": "15111506626007889917" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/files/schema.ts__tmpl__", + "hash": "8608164264497028668" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/index.spec.ts", + "hash": "4325094757841254756" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/index.ts", + "hash": "5373845662918497412" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/schema.json", + "hash": "12664351878789124797" + }, + { + "file": "tools/workspace-plugin/src/generators/workspace-generator/schema.ts", + "hash": "8894746255615101147" + }, + { + "file": "tools/workspace-plugin/src/index.ts", + "hash": "15555827964896839803" + }, + { + "file": "tools/workspace-plugin/src/types.spec.ts", + "hash": "6230618375099818853" + }, + { + "file": "tools/workspace-plugin/src/types.ts", + "hash": "10718822113111555341" + }, + { + "file": "tools/workspace-plugin/src/utils-testing.ts", + "hash": "11083126349809196906" + }, + { + "file": "tools/workspace-plugin/src/utils.spec.ts", + "hash": "14536241497883098565" + }, + { + "file": "tools/workspace-plugin/src/utils.ts", + "hash": "10457732344948097597" + }, + { + "file": "tools/workspace-plugin/tsconfig.json", + "hash": "7642656943241257331" + }, + { + "file": "tools/workspace-plugin/tsconfig.lib.json", + "hash": "17512648156706774563" + }, + { + "file": "tools/workspace-plugin/tsconfig.spec.json", + "hash": "12478527556459153090" + } + ], + "@fluentui/react-search-preview": [ + { + "file": "packages/react-components/react-search-preview/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-search-preview/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-search-preview/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-search-preview/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-search-preview/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-search-preview/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-search-preview/CHANGELOG.json", + "hash": "4422059300176138933" + }, + { + "file": "packages/react-components/react-search-preview/CHANGELOG.md", + "hash": "4671157039965199214" + }, + { + "file": "packages/react-components/react-search-preview/LICENSE", + "hash": "10208143628444227491" + }, + { + "file": "packages/react-components/react-search-preview/README.md", + "hash": "15299480567783003405" + }, + { + "file": "packages/react-components/react-search-preview/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-search-preview/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-search-preview/docs/MIGRATION.md", + "hash": "2865705533281265171" + }, + { + "file": "packages/react-components/react-search-preview/docs/Spec.md", + "hash": "18435160378759031464" + }, + { + "file": "packages/react-components/react-search-preview/etc/react-search-preview.api.md", + "hash": "2996165423955728843" + }, + { + "file": "packages/react-components/react-search-preview/jest.config.js", + "hash": "2413236386355797934" + }, + { + "file": "packages/react-components/react-search-preview/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-search-preview/package.json", + "hash": "16063317431784896488", + "deps": [ + "npm:@fluentui/react-icons", + "@fluentui/react-input", + "@fluentui/react-jsx-runtime", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-search-preview/project.json", + "hash": "6245122481400325168" + }, + { + "file": "packages/react-components/react-search-preview/src/SearchBox.ts", + "hash": "15808954179607126400" + }, + { + "file": "packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.test.tsx", + "hash": "11990646386900636944" + }, + { + "file": "packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.tsx", + "hash": "2638780876376384531" + }, + { + "file": "packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.types.ts", + "hash": "10944253874763523961" + }, + { + "file": "packages/react-components/react-search-preview/src/components/SearchBox/__snapshots__/SearchBox.test.tsx.snap", + "hash": "6499561349979786200" + }, + { + "file": "packages/react-components/react-search-preview/src/components/SearchBox/index.ts", + "hash": "8943459759748143116" + }, + { + "file": "packages/react-components/react-search-preview/src/components/SearchBox/renderSearchBox.tsx", + "hash": "12848093918605820140" + }, + { + "file": "packages/react-components/react-search-preview/src/components/SearchBox/useSearchBox.tsx", + "hash": "1203285435378804120" + }, + { + "file": "packages/react-components/react-search-preview/src/components/SearchBox/useSearchBoxStyles.styles.ts", + "hash": "274536282407907923" + }, + { + "file": "packages/react-components/react-search-preview/src/index.ts", + "hash": "10703430971917101752" + }, + { + "file": "packages/react-components/react-search-preview/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxAppearance.stories.tsx", + "hash": "479309571099364156" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxBestPractices.md", + "hash": "18322882289744529866" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxContentBeforeAfter.stories.tsx", + "hash": "17369466639462581414" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxControlled.stories.tsx", + "hash": "17397495220176592807" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDefault.stories.tsx", + "hash": "3984914430258979310" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDescription.md", + "hash": "11379297500412622701" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDisabled.stories.tsx", + "hash": "5166324980640455577" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxPlaceholder.stories.tsx", + "hash": "8194263709905614805" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxSize.stories.tsx", + "hash": "4334577727586338959" + }, + { + "file": "packages/react-components/react-search-preview/stories/SearchBox/index.stories.tsx", + "hash": "14993770248065248151" + }, + { + "file": "packages/react-components/react-search-preview/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-search-preview/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-search-preview/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ], + "@fluentui/docs-components": [ + { + "file": "packages/fluentui/docs-components/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/docs-components/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/docs-components/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/docs-components/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/docs-components/package.json", + "hash": "12299398415052887154", + "deps": [ + "npm:@babel/runtime", + "npm:copy-to-clipboard", + "npm:lodash", + "npm:object.values", + "npm:prismjs", + "npm:prop-types", + "npm:react-ace", + "npm:react-codesandboxer", + "npm:react-element-to-jsx-string", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "npm:prettier", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/docs-components/project.json", + "hash": "13469323002647093120" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/CodeSandboxExporter.tsx", + "hash": "10775572371902899182" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/createPackageJson.ts", + "hash": "17834717065357338878" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/index.ts", + "hash": "729372128174666005" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/indexTemplates.ts", + "hash": "13123484621875068230" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/types.tsx", + "hash": "2963536210780409373" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSnippet/CodeSnippet.tsx", + "hash": "10184034503240704567" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSnippet/CodeSnippetLabel.tsx", + "hash": "4843091425161626165" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSnippet/formatCode.ts", + "hash": "13761802560233975725" + }, + { + "file": "packages/fluentui/docs-components/src/CodeSnippet/types.ts", + "hash": "9865053077409343897" + }, + { + "file": "packages/fluentui/docs-components/src/CopyToClipboard.tsx", + "hash": "3817005176756180732" + }, + { + "file": "packages/fluentui/docs-components/src/Editor/Editor.tsx", + "hash": "12794711676852103158" + }, + { + "file": "packages/fluentui/docs-components/src/index.ts", + "hash": "17334811117911265474" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/KnobContexts.ts", + "hash": "4842163521617597457" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/KnobInspector.tsx", + "hash": "18065313350188753080" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/KnobProvider.tsx", + "hash": "6785463407886649345" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/LogInspector.tsx", + "hash": "15951479911802652570" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/defaultComponents.tsx", + "hash": "17505366242981138566" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/types.ts", + "hash": "15943354925699053567" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/useBooleanKnob.ts", + "hash": "6698715814693094933" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/useKnob.ts", + "hash": "10559903722198811306" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/useKnobValues.ts", + "hash": "10362124241855310049" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/useLogKnob.ts", + "hash": "6515035524717563074" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/useNumberKnob.ts", + "hash": "14524322305704285530" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/useRangeKnob.ts", + "hash": "13035545945521563789" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/useSelectKnob.ts", + "hash": "14829194906409623521" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/useStringKnob.ts", + "hash": "8537090047394764283" + }, + { + "file": "packages/fluentui/docs-components/src/knobs/utils/parseRangeValue.ts", + "hash": "11201358452441745212" + }, + { + "file": "packages/fluentui/docs-components/src/renderElementToJSX.ts", + "hash": "11554022792520913001" + }, + { + "file": "packages/fluentui/docs-components/tsconfig.json", + "hash": "3177558348790025290" + } + ], + "@fluentui/react-northstar-fela-renderer": [ + { + "file": "packages/fluentui/react-northstar-fela-renderer/.eslintrc.json", + "hash": "5658833841867159098" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/.gulp.js", + "hash": "18274885140889321646" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/babel.config.js", + "hash": "3569817794842814983" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/gulpfile.ts", + "hash": "11161944235327936712" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/jest.config.js", + "hash": "5879943202201643412" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/package.json", + "hash": "18253410728196785871", + "deps": [ + "npm:@babel/runtime", + "@fluentui/react-northstar-styles-renderer", + "@fluentui/styles", + "npm:css-in-js-utils", + "npm:fela", + "npm:fela-dom", + "npm:fela-plugin-embedded", + "npm:fela-plugin-fallback-value", + "npm:fela-plugin-placeholder-prefixer", + "npm:fela-plugin-rtl", + "npm:fela-tools", + "npm:fela-utils", + "npm:inline-style-expand-shorthand", + "npm:lodash", + "npm:stylis", + "@fluentui/eslint-plugin", + "@fluentui/scripts-babel", + "@fluentui/scripts-gulp", + "@fluentui/scripts-jest", + "npm:lerna-alias", + "npm:react-fela", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/project.json", + "hash": "7529833180970546709" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/RendererProvider.tsx", + "hash": "15292973742708445201" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/createFelaRenderer.tsx", + "hash": "14134932690113469333" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/felaDisableAnimationsPlugin.ts", + "hash": "5106913408155805634" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/felaExpandCssShorthandsPlugin.ts", + "hash": "12364266764064975304" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/felaFocusVisibleEnhancer.ts", + "hash": "3489409456963574353" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/felaInvokeKeyframesPlugin.ts", + "hash": "13086869777306745688" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/felaPerformanceEnhancer.ts", + "hash": "8934157626271065107" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/felaSanitizeCssPlugin.ts", + "hash": "1128726876603739196" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/felaStylisEnhancer.ts", + "hash": "8281562568320323558" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/index.ts", + "hash": "3768293676213746420" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/src/types.ts", + "hash": "1872083320472232584" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/__snapshots__/felaFocusVisibleEnhancer-test.ts.snap", + "hash": "4974099359602810550" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/__snapshots__/felaRenderer-test.tsx.snap", + "hash": "457621670829538595" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/consoleUtil.ts", + "hash": "11997294564447184338" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/felaDisableAnimationsPlugin-test.ts", + "hash": "16412109138465579885" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/felaExpandCssShorthandsPlugin-test.ts", + "hash": "12816623850070173611" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/felaFocusVisibleEnhancer-test.ts", + "hash": "1019784981095022855" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/felaInvokeKeyframesPlugin-test.ts", + "hash": "6460114641417994686" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/felaRenderer-test.tsx", + "hash": "10647218092623789302" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/test/felaSanitizeCssPlugin-test.ts", + "hash": "6683618071771223667" + }, + { + "file": "packages/fluentui/react-northstar-fela-renderer/tsconfig.json", + "hash": "4544399996272942243" + } + ], + "@fluentui/react-slider": [ + { + "file": "packages/react-components/react-slider/.babelrc.json", + "hash": "18339585439895240691" + }, + { + "file": "packages/react-components/react-slider/.eslintrc.json", + "hash": "11822209983446579696" + }, + { + "file": "packages/react-components/react-slider/.storybook/main.js", + "hash": "11617744840349284164" + }, + { + "file": "packages/react-components/react-slider/.storybook/preview.js", + "hash": "1791378012295456991" + }, + { + "file": "packages/react-components/react-slider/.storybook/tsconfig.json", + "hash": "14611368028782818158" + }, + { + "file": "packages/react-components/react-slider/.swcrc", + "hash": "16532409398616988134" + }, + { + "file": "packages/react-components/react-slider/CHANGELOG.json", + "hash": "13041546859904341740" + }, + { + "file": "packages/react-components/react-slider/CHANGELOG.md", + "hash": "1836801970457878877" + }, + { + "file": "packages/react-components/react-slider/LICENSE", + "hash": "910721805169595338" + }, + { + "file": "packages/react-components/react-slider/README.md", + "hash": "6584753154889502669" + }, + { + "file": "packages/react-components/react-slider/bundle-size/Slider.fixture.js", + "hash": "4536442547704901623" + }, + { + "file": "packages/react-components/react-slider/config/api-extractor.json", + "hash": "124052868224837692" + }, + { + "file": "packages/react-components/react-slider/config/tests.js", + "hash": "16913843724990866890" + }, + { + "file": "packages/react-components/react-slider/docs/MIGRATION.md", + "hash": "447967121623278016" + }, + { + "file": "packages/react-components/react-slider/docs/Spec.md", + "hash": "9843651694675404780" + }, + { + "file": "packages/react-components/react-slider/etc/react-slider.api.md", + "hash": "14398793584258195333" + }, + { + "file": "packages/react-components/react-slider/jest.config.js", + "hash": "17269232337421067095" + }, + { + "file": "packages/react-components/react-slider/just.config.ts", + "hash": "4613957333426947832" + }, + { + "file": "packages/react-components/react-slider/package.json", + "hash": "2946398219333391235", + "deps": [ + "@fluentui/react-field", + "@fluentui/react-jsx-runtime", + "@fluentui/react-shared-contexts", + "@fluentui/react-tabster", + "@fluentui/react-theme", + "@fluentui/react-utilities", + "npm:@griffel/react", + "npm:@swc/helpers", + "@fluentui/eslint-plugin", + "@fluentui/react-conformance", + "@fluentui/react-conformance-griffel", + "@fluentui/react-label", + "@fluentui/scripts-api-extractor", + "@fluentui/scripts-tasks", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom" + ] + }, + { + "file": "packages/react-components/react-slider/project.json", + "hash": "15063960313449581197" + }, + { + "file": "packages/react-components/react-slider/src/Slider.ts", + "hash": "8062765663185726667" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/Slider.test.tsx", + "hash": "12394107146913416909" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/Slider.tsx", + "hash": "1124189894502122660" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/Slider.types.ts", + "hash": "13961785930442891420" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/__snapshots__/Slider.test.tsx.snap", + "hash": "16814355515039523231" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/index.ts", + "hash": "16057955284477178882" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/renderSlider.tsx", + "hash": "1322961609272530897" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/useSlider.ts", + "hash": "12810398614195122939" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/useSliderState.tsx", + "hash": "7902361668391337869" + }, + { + "file": "packages/react-components/react-slider/src/components/Slider/useSliderStyles.styles.ts", + "hash": "7767678614377780417" + }, + { + "file": "packages/react-components/react-slider/src/index.ts", + "hash": "310119894017311457" + }, + { + "file": "packages/react-components/react-slider/src/testing/isConformant.ts", + "hash": "7325949189279658038" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderBestPractices.md", + "hash": "6974346443867987720" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderControlled.stories.tsx", + "hash": "7808949571775154240" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderDefault.stories.tsx", + "hash": "14440247799581749403" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderDescription.md", + "hash": "11502253636498399750" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderDisabled.stories.tsx", + "hash": "7697954300354409130" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderMinMax.stories.tsx", + "hash": "6656091609376794109" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderSize.stories.tsx", + "hash": "1159612092057231215" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderStep.stories.tsx", + "hash": "10001321265726034349" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/SliderVertical.stories.tsx", + "hash": "15791609136650339470" + }, + { + "file": "packages/react-components/react-slider/stories/Slider/index.stories.tsx", + "hash": "7287745665975848010" + }, + { + "file": "packages/react-components/react-slider/tsconfig.json", + "hash": "4314087102028690976" + }, + { + "file": "packages/react-components/react-slider/tsconfig.lib.json", + "hash": "5990226506726238656" + }, + { + "file": "packages/react-components/react-slider/tsconfig.spec.json", + "hash": "6114153871167405290" + } + ] + }, + "nonProjectFiles": [ + { + "file": ".babelrc-v9.json", + "hash": "7905965482932382062" + }, + { + "file": ".codesandbox/ci.json", + "hash": "9481593649063718972" + }, + { + "file": ".devcontainer/Dockerfile", + "hash": "17327142691620653518" + }, + { + "file": ".devcontainer/README.md", + "hash": "4521415539773599441" + }, + { + "file": ".devcontainer/devcontainer.json", + "hash": "5973123915676221123" + }, + { + "file": ".devops/templates/build-test-lint.yml", + "hash": "7280139675363621480" + }, + { + "file": ".devops/templates/cleanup.yml", + "hash": "2039936807490399580" + }, + { + "file": ".devops/templates/deployE2E.yml", + "hash": "4893492225026371372" + }, + { + "file": ".devops/templates/runpublishvrscreenshot.yml", + "hash": "1681936798070381699" + }, + { + "file": ".devops/templates/tools.yml", + "hash": "12608121506497706219" + }, + { + "file": ".devops/templates/variables.yml", + "hash": "13928277843242783647" + }, + { + "file": ".eslintrc.json", + "hash": "14148355099032860737" + }, + { + "file": ".gitattributes", + "hash": "12042329996847921067" + }, + { + "file": ".githooks/pre-commit", + "hash": "15372794838457847250" + }, + { + "file": ".github/CODEOWNERS", + "hash": "1161609351041630454" + }, + { + "file": ".github/ISSUE_TEMPLATE/bug-report.yml", + "hash": "11361683927336766785" + }, + { + "file": ".github/ISSUE_TEMPLATE/config.yml", + "hash": "4643315755743288306" + }, + { + "file": ".github/ISSUE_TEMPLATE/convergence_epic.md", + "hash": "17729968231153666502" + }, + { + "file": ".github/ISSUE_TEMPLATE/feature-request.yml", + "hash": "607770980651725371" + }, + { + "file": ".github/ISSUE_TEMPLATE/project_pitch.md", + "hash": "5252265332503643828" + }, + { + "file": ".github/ISSUE_TEMPLATE.md", + "hash": "6954141393244600252" + }, + { + "file": ".github/MAINTAINERS", + "hash": "5419860629815045626" + }, + { + "file": ".github/PULL_REQUEST_TEMPLATE.md", + "hash": "6045798228976228614" + }, + { + "file": ".github/actions/build-to/action.yml", + "hash": "14285133294112344962" + }, + { + "file": ".github/dependabot.yml", + "hash": "15884745461080583356" + }, + { + "file": ".github/github-docs-readme.md", + "hash": "8005514880810995137" + }, + { + "file": ".github/labeler.yml", + "hash": "2070969622130391010" + }, + { + "file": ".github/policies/botRules.yml", + "hash": "7035269116937667729" + }, + { + "file": ".github/triage-bot.config.json", + "hash": "940308932877237483" + }, + { + "file": ".github/workflows/check-packages.yml", + "hash": "3946725582546576291" + }, + { + "file": ".github/workflows/create-milestone.yml", + "hash": "1142107779834971840" + }, + { + "file": ".github/workflows/docsite-publish-chromatic.yml", + "hash": "2029085810802667172" + }, + { + "file": ".github/workflows/docsite-publish-ghpages.yml", + "hash": "16657591679380716140" + }, + { + "file": ".github/workflows/issues.yml", + "hash": "10056000463541202635" + }, + { + "file": ".github/workflows/pr-housekeeping.yml", + "hash": "15884677227496934669" + }, + { + "file": ".gitignore", + "hash": "10160316119231233485" + }, + { + "file": ".gulp.js", + "hash": "12700903439952829776" + }, + { + "file": ".npmrc", + "hash": "9995408953225804381" + }, + { + "file": ".nx/cache/file-map.json", + "hash": "16152040667540282622" + }, + { + "file": ".nx/cache/lockfile.hash", + "hash": "6276763015230524403" + }, + { + "file": ".nx/cache/nx-console-project-graph/project-graph.html", + "hash": "17036869540637447991" + }, + { + "file": ".nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt", + "hash": "5667550289807473445" + }, + { + "file": ".nx/cache/nx-console-project-graph/static/environment.js", + "hash": "7695770233882250782" + }, + { + "file": ".nx/cache/nx-console-project-graph/static/favicon.ico", + "hash": "9303420814833116677" + }, + { + "file": ".nx/cache/nx-console-project-graph/static/main.js", + "hash": "13551439496520482047" + }, + { + "file": ".nx/cache/nx-console-project-graph/static/polyfills.js", + "hash": "5617236864114375205" + }, + { + "file": ".nx/cache/nx-console-project-graph/static/runtime.js", + "hash": "9652903316845995179" + }, + { + "file": ".nx/cache/nx-console-project-graph/static/styles.css", + "hash": "2125456314194136822" + }, + { + "file": ".nx/cache/nx-console-project-graph/static/styles.js", + "hash": "13596360365094399219" + }, + { + "file": ".nx/cache/parsed-lock-file.json", + "hash": "6620842950081707844" + }, + { + "file": ".nx/cache/project-graph.json", + "hash": "798941487848350239" + }, + { + "file": ".nxignore", + "hash": "2359357486224970322" + }, + { + "file": ".prettierignore", + "hash": "16201699265509648634" + }, + { + "file": ".storybook/docs-root.css", + "hash": "18140896469111569519" + }, + { + "file": ".storybook/main.js", + "hash": "3115464059479491036" + }, + { + "file": ".storybook/preview-head-template.html", + "hash": "13122806856189045108" + }, + { + "file": ".storybook/preview.js", + "hash": "14312390948559470416" + }, + { + "file": ".storybook/tsconfig.json", + "hash": "17192340408128753512" + }, + { + "file": ".vscode/extensions.json", + "hash": "14706459097279121095" + }, + { + "file": ".vscode/launch.json", + "hash": "4143130999656239096" + }, + { + "file": ".vscode/settings.json", + "hash": "13203567853116413869" + }, + { + "file": ".vscode/tasks.json", + "hash": "11908008023210469854" + }, + { + "file": ".yarn/releases/cli.js", + "hash": "14515420259799774309" + }, + { + "file": ".yarnrc", + "hash": "6307010616566134412" + }, + { + "file": "CredScanSuppressions.json", + "hash": "15059388161651697715" + }, + { + "file": "LICENSE", + "hash": "7511268154418943102" + }, + { + "file": "README.md", + "hash": "7179812941833086881" + }, + { + "file": "SECURITY.md", + "hash": "3882931430963615682" + }, + { + "file": "azure-pipelines-ci.yml", + "hash": "6224402156793661596" + }, + { + "file": "azure-pipelines-pr.yml", + "hash": "8026383614236103278" + }, + { + "file": "azure-pipelines.bundlesize.yml", + "hash": "5708116191540769216" + }, + { + "file": "azure-pipelines.hotfix.yml", + "hash": "5385912421261827857" + }, + { + "file": "azure-pipelines.perf-test.yml", + "hash": "9256413311808541814" + }, + { + "file": "azure-pipelines.release-fluentui.yml", + "hash": "15976427725870573768" + }, + { + "file": "azure-pipelines.release-vnext-nightly.yml", + "hash": "945921554062233524" + }, + { + "file": "azure-pipelines.release-vnext.yml", + "hash": "14310962057240244679" + }, + { + "file": "azure-pipelines.release.yml", + "hash": "1877987394882778699" + }, + { + "file": "azure-pipelines.vrt-baseline.yml", + "hash": "6516454854181943060" + }, + { + "file": "azure-pipelines.vrt-pr.yml", + "hash": "6068576614530189907" + }, + { + "file": "babel.config.js", + "hash": "17551453168216581109" + }, + { + "file": "beachball.config.js", + "hash": "7658404787142597526" + }, + { + "file": "dangerfile.js", + "hash": "8760594520496347313" + }, + { + "file": "download-vr-cli.yml", + "hash": "16411688154606977706" + }, + { + "file": "ghdocs/README.md", + "hash": "17847901488879781447" + }, + { + "file": "ghdocs/img/VS_rgb_Purple.png", + "hash": "7882144405776447821" + }, + { + "file": "ghdocs/img/outlook-350-150.png", + "hash": "8054339320490907721" + }, + { + "file": "ghdocs/img/yammer.png", + "hash": "920574969146625679" + }, + { + "file": "ghdocs/medias/fluentui-ep01-preview.gif", + "hash": "1425778248748549245" + }, + { + "file": "ghdocs/medias/fluentui-ep02-preview.gif", + "hash": "1138635008268217784" + }, + { + "file": "ghdocs/medias/fluentui-ep03-preview.gif", + "hash": "2891125804835572770" + }, + { + "file": "ghdocs/medias/fluentui-ep04-preview.gif", + "hash": "17175886782884823304" + }, + { + "file": "ghdocs/medias/fluentui-ep05-preview.gif", + "hash": "8765458178112812607" + }, + { + "file": "ghdocs/medias/fluentui-ep06-preview.gif", + "hash": "15652695696136650106" + }, + { + "file": "gulpfile.ts", + "hash": "18069122030238466590" + }, + { + "file": "jest.config.ts", + "hash": "4543644065667831836" + }, + { + "file": "jest.preset.js", + "hash": "260427474452110626" + }, + { + "file": "lage.config.js", + "hash": "10165545679513977602" + }, + { + "file": "lerna.json", + "hash": "2922370513548896703" + }, + { + "file": "lint-staged.config.js", + "hash": "5324425860998318908" + }, + { + "file": "migrations.json", + "hash": "5289524075609688994" + }, + { + "file": "monosize.config.mjs", + "hash": "11680266427320809134" + }, + { + "file": "nx.json", + "hash": "207140001113321695" + }, + { + "file": "package.json", + "hash": "1990045189251339219" + }, + { + "file": "packages/fluentui/.browserslistrc", + "hash": "4789118698836329409" + }, + { + "file": "prettier.config.js", + "hash": "15950369001408380461" + }, + { + "file": "rfcs/README.md", + "hash": "2930762473796767007" + }, + { + "file": "rfcs/TEMPLATE.md", + "hash": "1384441767402476034" + }, + { + "file": "rfcs/assets/high-contrast-theme-black.png", + "hash": "17464004597825580594" + }, + { + "file": "rfcs/assets/high-contrast-theme-current-colors.png", + "hash": "5979681815201755239" + }, + { + "file": "rfcs/assets/high-contrast-theme-custom.png", + "hash": "18388057482892624521" + }, + { + "file": "rfcs/assets/high-contrast-theme-white.png", + "hash": "11172661198168810175" + }, + { + "file": "rfcs/assets/theme-shape-perf-flamegrill.png", + "hash": "13568177746678555" + }, + { + "file": "rfcs/assets/theme-shape-perf-hash-variables.png", + "hash": "4520836790138501965" + }, + { + "file": "rfcs/assets/theme-shape-perf-inline-alias.png", + "hash": "17275510685877961718" + }, + { + "file": "rfcs/assets/theme-shape-perf-master.png", + "hash": "1862073694089130363" + }, + { + "file": "rfcs/assets/theme-shape-perf-no-colors.png", + "hash": "858825998535700566" + }, + { + "file": "rfcs/assets/theme-shape-perf-no-global.png", + "hash": "10530242406272650351" + }, + { + "file": "rfcs/convergence/apperance-migration.md", + "hash": "12687601674495330642" + }, + { + "file": "rfcs/convergence/changelog-guidelines.md", + "hash": "11745297570994629035" + }, + { + "file": "rfcs/convergence/make-styles-no-functions.md", + "hash": "7704723087865212412" + }, + { + "file": "rfcs/convergence/move-out-n-rename-makestyles.md", + "hash": "8048603425884213712" + }, + { + "file": "rfcs/convergence/unified-project-board-process.md", + "hash": "1712184121178645639" + }, + { + "file": "rfcs/future/async-import-hidden-components.md", + "hash": "7300175671726551775" + }, + { + "file": "rfcs/future/prevent-ci-trigger-on-doc-prs.md", + "hash": "961673962691263066" + }, + { + "file": "rfcs/react-components/accessibility/accessibility.md", + "hash": "13376613462572773224" + }, + { + "file": "rfcs/react-components/components/RangeSlider.md", + "hash": "6826031503120548612" + }, + { + "file": "rfcs/react-components/components/avatar-badge-shorthand.md", + "hash": "2990437645634232096" + }, + { + "file": "rfcs/react-components/components/moving-from-focus-zone-to-tabster.md", + "hash": "11953453880829422997" + }, + { + "file": "rfcs/react-components/components/portal-mount-node.md", + "hash": "7446150731214900355" + }, + { + "file": "rfcs/react-components/components/recipes.md", + "hash": "16422187350784100570" + }, + { + "file": "rfcs/react-components/components/tooltip-api-alignment.md", + "hash": "10657943500984611107" + }, + { + "file": "rfcs/react-components/convergence/as-prop.md", + "hash": "17693812557089406545" + }, + { + "file": "rfcs/react-components/convergence/assets/null_render_react_tree.png", + "hash": "11812209095190095221" + }, + { + "file": "rfcs/react-components/convergence/assets/teams_disable_animations.png", + "hash": "14495681657864293022" + }, + { + "file": "rfcs/react-components/convergence/authoring-stories.md", + "hash": "7841256937778661405" + }, + { + "file": "rfcs/react-components/convergence/component-transitions-on-mount-or-unmount.md", + "hash": "12157029700212416437" + }, + { + "file": "rfcs/react-components/convergence/context-values.md", + "hash": "266435899012533290" + }, + { + "file": "rfcs/react-components/convergence/converged-implementation-patterns.md", + "hash": "10852159751073913568" + }, + { + "file": "rfcs/react-components/convergence/custom-styling.md", + "hash": "4191877124315699856" + }, + { + "file": "rfcs/react-components/convergence/dependency-versions.md", + "hash": "18343021363978797878" + }, + { + "file": "rfcs/react-components/convergence/disabling-animations.md", + "hash": "5033661995375680812" + }, + { + "file": "rfcs/react-components/convergence/ending-ie11-support.md", + "hash": "15007007092194706288" + }, + { + "file": "rfcs/react-components/convergence/event-handlers-arguments.md", + "hash": "5313395991203680842" + }, + { + "file": "rfcs/react-components/convergence/event-handlers-event-type.md", + "hash": "14313526370745144737" + }, + { + "file": "rfcs/react-components/convergence/exposing-popper-options.md", + "hash": "8818355132693186159" + }, + { + "file": "rfcs/react-components/convergence/field-custom-components.md", + "hash": "17974113000634410561" + }, + { + "file": "rfcs/react-components/convergence/field-package-layout.md", + "hash": "17130046883313518795" + }, + { + "file": "rfcs/react-components/convergence/first-rule-of-aria.md", + "hash": "16023624275764943839" + }, + { + "file": "rfcs/react-components/convergence/fixed-versions-for-prerelease.md", + "hash": "2723189719660938225" + }, + { + "file": "rfcs/react-components/convergence/focus-and-iteration-towers-2.0.md", + "hash": "10091082234611151009" + }, + { + "file": "rfcs/react-components/convergence/global-contex-registration.md", + "hash": "3938569985413567727" + }, + { + "file": "rfcs/react-components/convergence/handling-keyboard-keys.md", + "hash": "12328615676945188271" + }, + { + "file": "rfcs/react-components/convergence/high-contrast-theme.md", + "hash": "17640526080899602986" + }, + { + "file": "rfcs/react-components/convergence/make-overrides.md", + "hash": "5003078372167962318" + }, + { + "file": "rfcs/react-components/convergence/native-element-props.md", + "hash": "6948149096259040196" + }, + { + "file": "rfcs/react-components/convergence/no-css-shorthands-in-make-styles.md", + "hash": "9304441322480003246" + }, + { + "file": "rfcs/react-components/convergence/popper-js.md", + "hash": "5608717882276841149" + }, + { + "file": "rfcs/react-components/convergence/portal-compat.md", + "hash": "17162644258978037813" + }, + { + "file": "rfcs/react-components/convergence/prop-string-union-naming.md", + "hash": "17098832747287060468" + }, + { + "file": "rfcs/react-components/convergence/provider-style-overrides.md", + "hash": "7792111247308957231" + }, + { + "file": "rfcs/react-components/convergence/remove-commons.md", + "hash": "3272822054502650455" + }, + { + "file": "rfcs/react-components/convergence/remove-null-render.md", + "hash": "6417385005757464246" + }, + { + "file": "rfcs/react-components/convergence/reusing-avatar-in-components.md", + "hash": "15159712521780519350" + }, + { + "file": "rfcs/react-components/convergence/root-as-slot.md", + "hash": "17070242032905897312" + }, + { + "file": "rfcs/react-components/convergence/simplify-prop-merging.md", + "hash": "13975994861395791771" + }, + { + "file": "rfcs/react-components/convergence/slot-children-render-function.md", + "hash": "1594767325772580806" + }, + { + "file": "rfcs/react-components/convergence/slot-null-rendering.md", + "hash": "15078902190290027323" + }, + { + "file": "rfcs/react-components/convergence/ssr-context.md", + "hash": "4782126351189686401" + }, + { + "file": "rfcs/react-components/convergence/static-classes-on-slots.md", + "hash": "14692855906555441537" + }, + { + "file": "rfcs/react-components/convergence/theme-css-variable-insertion.md", + "hash": "387196256676160570" + }, + { + "file": "rfcs/react-components/convergence/theme-shape.md", + "hash": "14138120148475296602" + }, + { + "file": "rfcs/react-components/convergence/theme-shared-colors.md", + "hash": "4302528734893384136" + }, + { + "file": "rfcs/react-components/convergence/theme-tokens.md", + "hash": "5029799780922422513" + }, + { + "file": "rfcs/react-components/convergence/triggers-and-multiple-layers-of-button-handling.md", + "hash": "5880844368602389725" + }, + { + "file": "rfcs/react-components/convergence/upgrade-code-location.md", + "hash": "4406922581587894229" + }, + { + "file": "rfcs/react-components/no-action-prop-value-standardization.md", + "hash": "2853543277788771652" + }, + { + "file": "rfcs/react-components/styles-handbook.md", + "hash": "15392511796595235691" + }, + { + "file": "rfcs/react-components/testing.md", + "hash": "16365746587397202707" + }, + { + "file": "rfcs/shared/build-system/01_convergence_devstack.md", + "hash": "13137961380111527643" + }, + { + "file": "rfcs/shared/build-system/02-solution-style-ts-configs.md", + "hash": "7981251743093545649" + }, + { + "file": "rfcs/shared/build-system/03-packaging-for-npm.md", + "hash": "18010850478053483945" + }, + { + "file": "rfcs/shared/build-system/04-build-shield.md", + "hash": "8811767918283099777" + }, + { + "file": "rfcs/shared/build-system/05-folder-organization.md", + "hash": "11683832903046004341" + }, + { + "file": "rfcs/shared/build-system/05.1-react-components-folder-organization.md", + "hash": "13641582590032409102" + }, + { + "file": "rfcs/shared/build-system/06-browser-support-for-v9.md", + "hash": "9944798343257113140" + }, + { + "file": "rfcs/shared/build-system/07-standard-package-structure-for-v9.md", + "hash": "1780224152909881903" + }, + { + "file": "rfcs/shared/build-system/dependency-management.md", + "hash": "13369986841663830341" + }, + { + "file": "rfcs/shared/build-system/package-public-api.md", + "hash": "4984506131411009219" + }, + { + "file": "rfcs/shared/build-system/ssr-testing.md", + "hash": "13509574307690936005" + }, + { + "file": "rfcs/shared/build-system/triage-automation.md", + "hash": "2158981332374276185" + }, + { + "file": "sizeauditor.json", + "hash": "9999761926179299136" + }, + { + "file": "specs/Breadcrumb.md", + "hash": "11990629491758879472" + }, + { + "file": "specs/Button.md", + "hash": "16677177413697426081" + }, + { + "file": "specs/Checkbox.md", + "hash": "17824592240063419989" + }, + { + "file": "specs/Datepicker.md", + "hash": "1691327942694298650" + }, + { + "file": "specs/Icon.md", + "hash": "9600270159300403408" + }, + { + "file": "specs/Link.md", + "hash": "3697027886104506043" + }, + { + "file": "specs/Pills.md", + "hash": "100824589832628381" + }, + { + "file": "specs/README.md", + "hash": "2718137234641338970" + }, + { + "file": "specs/Skeleton.md", + "hash": "6699886836797932000" + }, + { + "file": "specs/Slider.md", + "hash": "14468254488853141454" + }, + { + "file": "specs/Slots.md", + "hash": "5483069303131154770" + }, + { + "file": "specs/Text.md", + "hash": "9947533469432056165" + }, + { + "file": "specs/makeStyles-classname.png", + "hash": "15197546778416765326" + }, + { + "file": "specs/makeStyles-useCss.png", + "hash": "527576433760107387" + }, + { + "file": "specs/makeStyles.md", + "hash": "17377038766191881570" + }, + { + "file": "syncpack.config.js", + "hash": "14666047203875646910" + }, + { + "file": "tsconfig.base.all.json", + "hash": "2247407206438987653" + }, + { + "file": "tsconfig.base.json", + "hash": "6844115419860854246" + }, + { + "file": "tsconfig.base.v0.json", + "hash": "7727996468301056077" + }, + { + "file": "tsconfig.base.v8.json", + "hash": "4210120256683776273" + }, + { + "file": "tsconfig.json", + "hash": "13079536303676135130" + }, + { + "file": "yarn-ci.sh", + "hash": "10886087986281172566" + }, + { + "file": "yarn.lock", + "hash": "12920953339718312338" + } + ] + } +} diff --git a/.nx/cache/lockfile.hash b/.nx/cache/lockfile.hash new file mode 100644 index 0000000000000..999eb11f1b46d --- /dev/null +++ b/.nx/cache/lockfile.hash @@ -0,0 +1 @@ +9727845429273905709 \ No newline at end of file diff --git a/.nx/cache/nx-console-project-graph/project-graph.html b/.nx/cache/nx-console-project-graph/project-graph.html new file mode 100644 index 0000000000000..8a72a41df2557 --- /dev/null +++ b/.nx/cache/nx-console-project-graph/project-graph.html @@ -0,0 +1,35 @@ + + + + + Nx Workspace Project Graph + + + + + + + + + + + + +
+ + + + + + diff --git a/.nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt b/.nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt new file mode 100644 index 0000000000000..0eeb358ffa92b --- /dev/null +++ b/.nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt @@ -0,0 +1,665 @@ +@babel/runtime +MIT +MIT License + +Copyright (c) 2014-present Sebastian McKenzie and other contributors + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +@floating-ui/react +MIT +MIT License + +Copyright (c) 2021 Floating UI contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +@floating-ui/react-dom +MIT +MIT License + +Copyright (c) 2021 Floating UI contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +@headlessui/react +MIT + +@heroicons/react +MIT + +@nx/nx-source +MIT +(The MIT License) + +Copyright (c) 2017-2023 Narwhal Technologies Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +'Software'), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +@popperjs/core +MIT +The MIT License (MIT) + +Copyright (c) 2019 Federico Zivolo + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +@remix-run/router +MIT +MIT License + +Copyright (c) React Training LLC 2015-2019 +Copyright (c) Remix Software Inc. 2020-2021 +Copyright (c) Shopify Inc. 2022-2023 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +@xstate/immer +MIT +The MIT License (MIT) + +Copyright (c) 2015 David Khourshid + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + +@xstate/inspect +MIT + +@xstate/react +MIT +The MIT License (MIT) + +Copyright (c) 2015 David Khourshid + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + + +classnames +MIT +The MIT License (MIT) + +Copyright (c) 2018 Jed Watson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +core-js +MIT +Copyright (c) 2014-2022 Denis Pushkarev + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +cytoscape +MIT +Copyright (c) 2016-2022, The Cytoscape Consortium. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +cytoscape-dagre +MIT + + +Copyright (c) 2016-2018, 2020, The Cytoscape Consortium. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +cytoscape-popper +MIT + + +Copyright (c) 2018-2021, The Cytoscape Consortium. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the “Software”), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +dagre +MIT +Copyright (c) 2012-2014 Chris Pettitt + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +fast-safe-stringify +MIT +The MIT License (MIT) + +Copyright (c) 2016 David Mark Clements +Copyright (c) 2017 David Mark Clements & Matteo Collina +Copyright (c) 2018 David Mark Clements, Matteo Collina & Ruben Bridgewater + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +graphlib +MIT +Copyright (c) 2012-2014 Chris Pettitt + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +heap +MIT +The MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +immer +MIT +MIT License + +Copyright (c) 2017 Michel Weststrate + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +jsx-runtime +MIT + +lodash +MIT +Copyright OpenJS Foundation and other contributors + +Based on Underscore.js, copyright Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/lodash/lodash + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code displayed within the prose of the +documentation. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +Files located in the node_modules and vendor directories are externally +maintained libraries used by this software which have their own +licenses; we recommend you read them, as their terms may differ from the +terms above. + + +preact +MIT +The MIT License (MIT) + +Copyright (c) 2015-present Jason Miller + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +preact-compat +MIT + +preact-hooks +MIT + +react-router +MIT +MIT License + +Copyright (c) React Training LLC 2015-2019 +Copyright (c) Remix Software Inc. 2020-2021 +Copyright (c) Shopify Inc. 2022-2023 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +react-router-dom +MIT +MIT License + +Copyright (c) React Training LLC 2015-2019 +Copyright (c) Remix Software Inc. 2020-2021 +Copyright (c) Shopify Inc. 2022-2023 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +use-isomorphic-layout-effect +MIT +MIT License + +Copyright (c) Mateusz Burzyński + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +use-sync-external-store +MIT +MIT License + +Copyright (c) Facebook, Inc. and its affiliates. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +xstate +MIT +The MIT License (MIT) + +Copyright (c) 2015 David Khourshid + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.nx/cache/nx-console-project-graph/static/environment.js b/.nx/cache/nx-console-project-graph/static/environment.js new file mode 100644 index 0000000000000..1847ffa70c4d5 --- /dev/null +++ b/.nx/cache/nx-console-project-graph/static/environment.js @@ -0,0 +1,148884 @@ +window.exclude = []; +window.watch = false; +window.environment = 'release'; +window.localMode = 'build'; + +window.appConfig = { + showDebugger: false, + showExperimentalFeatures: false, + workspaces: [ + { + id: 'local', + label: 'local', + projectGraphUrl: 'project-graph.json', + taskGraphUrl: 'task-graph.json', + }, + ], + defaultWorkspaceId: 'local', +}; +window.projectGraphResponse = { + hash: '7bd42972ca8f4b838e58ae80e1060c9f32fb996f736980a1a7c9d22fb808b957', + projects: [ + { + name: '@fluentui/react-storybook-addon-export-to-sandbox', + type: 'lib', + data: { + root: 'packages/react-components/react-storybook-addon-export-to-sandbox', + sourceRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox/src', + name: '@fluentui/react-storybook-addon-export-to-sandbox', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/babel-preset-storybook-full-source', + type: 'lib', + data: { + root: 'packages/react-components/babel-preset-storybook-full-source', + sourceRoot: 'packages/react-components/babel-preset-storybook-full-source/src', + name: '@fluentui/babel-preset-storybook-full-source', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:node'], + }, + }, + { + name: '@fluentui/react-timepicker-compat-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-timepicker-compat-preview', + sourceRoot: 'packages/react-components/react-timepicker-compat-preview/src', + name: '@fluentui/react-timepicker-compat-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext', 'compat'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-teaching-popover-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-teaching-popover-preview', + sourceRoot: 'packages/react-components/react-teaching-popover-preview/src', + name: '@fluentui/react-teaching-popover-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/babel-preset-global-context', + type: 'lib', + data: { + root: 'packages/react-components/babel-preset-global-context', + sourceRoot: 'packages/react-components/babel-preset-global-context/src', + name: '@fluentui/babel-preset-global-context', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + pree2e: { executor: 'nx:run-script', options: { script: 'pree2e' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:node'], + }, + }, + { + name: '@fluentui/react-portal-compat-context', + type: 'lib', + data: { + root: 'packages/react-components/react-portal-compat-context', + sourceRoot: 'packages/react-components/react-portal-compat-context/src', + name: '@fluentui/react-portal-compat-context', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'ships-amd', 'platform:web'], + }, + }, + { + name: '@fluentui/react-swatch-picker-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-swatch-picker-preview', + sourceRoot: 'packages/react-components/react-swatch-picker-preview/src', + name: '@fluentui/react-swatch-picker-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-conformance-griffel', + type: 'lib', + data: { + root: 'packages/react-components/react-conformance-griffel', + sourceRoot: 'packages/react-components/react-conformance-griffel/src', + name: '@fluentui/react-conformance-griffel', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:node'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-northstar-emotion-renderer', + type: 'lib', + data: { + root: 'packages/fluentui/react-northstar-emotion-renderer', + sourceRoot: 'packages/fluentui/react-northstar-emotion-renderer', + name: '@fluentui/react-northstar-emotion-renderer', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-component-nesting-registry', + type: 'lib', + data: { + root: 'packages/fluentui/react-component-nesting-registry', + sourceRoot: 'packages/fluentui/react-component-nesting-registry', + name: '@fluentui/react-component-nesting-registry', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-colorpicker-compat', + type: 'lib', + data: { + root: 'packages/react-components/react-colorpicker-compat', + sourceRoot: 'packages/react-components/react-colorpicker-compat/src', + name: '@fluentui/react-colorpicker-compat', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-timepicker-compat', + type: 'lib', + data: { + root: 'packages/react-components/react-timepicker-compat', + sourceRoot: 'packages/react-components/react-timepicker-compat/src', + name: '@fluentui/react-timepicker-compat', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext', 'compat'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-northstar-styles-renderer', + type: 'lib', + data: { + root: 'packages/fluentui/react-northstar-styles-renderer', + sourceRoot: 'packages/fluentui/react-northstar-styles-renderer', + name: '@fluentui/react-northstar-styles-renderer', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-datepicker-compat', + type: 'lib', + data: { + root: 'packages/react-components/react-datepicker-compat', + sourceRoot: 'packages/react-components/react-datepicker-compat/src', + name: '@fluentui/react-datepicker-compat', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web', 'compat'], + }, + }, + { + name: '@fluentui/react-component-event-listener', + type: 'lib', + data: { + root: 'packages/fluentui/react-component-event-listener', + sourceRoot: 'packages/fluentui/react-component-event-listener', + name: '@fluentui/react-component-event-listener', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-context-selector', + type: 'lib', + data: { + root: 'packages/react-components/react-context-selector', + sourceRoot: 'packages/react-components/react-context-selector/src', + name: '@fluentui/react-context-selector', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-migration-v0-v9', + type: 'lib', + data: { + root: 'packages/react-components/react-migration-v0-v9', + sourceRoot: 'packages/react-components/react-migration-v0-v9/src', + name: '@fluentui/react-migration-v0-v9', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'react-northstar', 'platform:web'], + }, + }, + { + name: '@fluentui/react-migration-v8-v9', + type: 'lib', + data: { + root: 'packages/react-components/react-migration-v8-v9', + sourceRoot: 'packages/react-components/react-migration-v8-v9/src', + name: '@fluentui/react-migration-v8-v9', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'v8', 'platform:web'], + }, + }, + { + name: '@fluentui/react-storybook-addon', + type: 'lib', + data: { + root: 'packages/react-components/react-storybook-addon', + sourceRoot: 'packages/react-components/react-storybook-addon/src', + name: '@fluentui/react-storybook-addon', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-northstar-fela-renderer', + type: 'lib', + data: { + root: 'packages/fluentui/react-northstar-fela-renderer', + sourceRoot: 'packages/fluentui/react-northstar-fela-renderer', + name: '@fluentui/react-northstar-fela-renderer', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-motions-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-motions-preview', + sourceRoot: 'packages/react-components/react-motions-preview/src', + name: '@fluentui/react-motions-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-calendar-compat', + type: 'lib', + data: { + root: 'packages/react-components/react-calendar-compat', + sourceRoot: 'packages/react-components/react-calendar-compat/src', + name: '@fluentui/react-calendar-compat', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext', 'compat'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-shared-contexts', + type: 'lib', + data: { + root: 'packages/react-components/react-shared-contexts', + sourceRoot: 'packages/react-components/react-shared-contexts/src', + name: '@fluentui/react-shared-contexts', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-motion-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-motion-preview', + sourceRoot: 'packages/react-components/react-motion-preview/src', + name: '@fluentui/react-motion-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-rating-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-rating-preview', + sourceRoot: 'packages/react-components/react-rating-preview/src', + name: '@fluentui/react-rating-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-search-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-search-preview', + sourceRoot: 'packages/react-components/react-search-preview/src', + name: '@fluentui/react-search-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-portal-compat', + type: 'lib', + data: { + root: 'packages/react-components/react-portal-compat', + sourceRoot: 'packages/react-components/react-portal-compat/src', + name: '@fluentui/react-portal-compat', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'ships-amd', 'platform:web'], + }, + }, + { + name: '@fluentui/react-list-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-list-preview', + sourceRoot: 'packages/react-components/react-list-preview/src', + name: '@fluentui/react-list-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-northstar-prototypes', + type: 'lib', + data: { + root: 'packages/fluentui/react-northstar-prototypes', + sourceRoot: 'packages/fluentui/react-northstar-prototypes', + name: '@fluentui/react-northstar-prototypes', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-positioning', + type: 'lib', + data: { + root: 'packages/react-components/react-positioning', + sourceRoot: 'packages/react-components/react-positioning/src', + name: '@fluentui/react-positioning', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/priority-overflow', + type: 'lib', + data: { + root: 'packages/react-components/priority-overflow', + sourceRoot: 'packages/react-components/priority-overflow/src', + name: '@fluentui/priority-overflow', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-jsx-runtime', + type: 'lib', + data: { + root: 'packages/react-components/react-jsx-runtime', + sourceRoot: 'packages/react-components/react-jsx-runtime/src', + name: '@fluentui/react-jsx-runtime', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-nav-preview', + type: 'lib', + data: { + root: 'packages/react-components/react-nav-preview', + sourceRoot: 'packages/react-components/react-nav-preview/src', + name: '@fluentui/react-nav-preview', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-virtualizer', + type: 'lib', + data: { + root: 'packages/react-components/react-virtualizer', + sourceRoot: 'packages/react-components/react-virtualizer/src', + name: '@fluentui/react-virtualizer', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-message-bar', + type: 'lib', + data: { + root: 'packages/react-components/react-message-bar', + sourceRoot: 'packages/react-components/react-message-bar/src', + name: '@fluentui/react-message-bar', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-spinbutton', + type: 'lib', + data: { + root: 'packages/react-components/react-spinbutton', + sourceRoot: 'packages/react-components/react-spinbutton/src', + name: '@fluentui/react-spinbutton', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-breadcrumb', + type: 'lib', + data: { + root: 'packages/react-components/react-breadcrumb', + sourceRoot: 'packages/react-components/react-breadcrumb/src', + name: '@fluentui/react-breadcrumb', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-infobutton', + type: 'lib', + data: { + root: 'packages/react-components/react-infobutton', + sourceRoot: 'packages/react-components/react-infobutton/src', + name: '@fluentui/react-infobutton', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-components', + type: 'lib', + data: { + root: 'packages/react-components/react-components', + sourceRoot: 'packages/react-components/react-components/src', + name: '@fluentui/react-components', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'verify-packaging': { + executor: 'nx:run-script', + options: { script: 'verify-packaging' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-theme-sass', + type: 'lib', + data: { + root: 'packages/react-components/react-theme-sass', + sourceRoot: 'packages/react-components/react-theme-sass/src', + name: '@fluentui/react-theme-sass', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-utilities', + type: 'lib', + data: { + root: 'packages/react-components/react-utilities', + sourceRoot: 'packages/react-components/react-utilities/src', + name: '@fluentui/react-utilities', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-infolabel', + type: 'lib', + data: { + root: 'packages/react-components/react-infolabel', + sourceRoot: 'packages/react-components/react-infolabel/src', + name: '@fluentui/react-infolabel', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-accordion', + type: 'lib', + data: { + root: 'packages/react-components/react-accordion', + sourceRoot: 'packages/react-components/react-accordion/src', + name: '@fluentui/react-accordion', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-checkbox', + type: 'lib', + data: { + root: 'packages/react-components/react-checkbox', + sourceRoot: 'packages/react-components/react-checkbox/src', + name: '@fluentui/react-checkbox', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-provider', + type: 'lib', + data: { + root: 'packages/react-components/react-provider', + sourceRoot: 'packages/react-components/react-provider/src', + name: '@fluentui/react-provider', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/theme-designer', + type: 'lib', + data: { + root: 'packages/react-components/theme-designer', + sourceRoot: 'packages/react-components/theme-designer/src', + name: '@fluentui/theme-designer', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'build-storybook': { executor: 'nx:run-script', options: { script: 'build-storybook' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-combobox', + type: 'lib', + data: { + root: 'packages/react-components/react-combobox', + sourceRoot: 'packages/react-components/react-combobox/src', + name: '@fluentui/react-combobox', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/global-context', + type: 'lib', + data: { + root: 'packages/react-components/global-context', + sourceRoot: 'packages/react-components/global-context/src', + name: '@fluentui/global-context', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-progress', + type: 'lib', + data: { + root: 'packages/react-components/react-progress', + sourceRoot: 'packages/react-components/react-progress/src', + name: '@fluentui/react-progress', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-skeleton', + type: 'lib', + data: { + root: 'packages/react-components/react-skeleton', + sourceRoot: 'packages/react-components/react-skeleton/src', + name: '@fluentui/react-skeleton', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-overflow', + type: 'lib', + data: { + root: 'packages/react-components/react-overflow', + sourceRoot: 'packages/react-components/react-overflow/src', + name: '@fluentui/react-overflow', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-textarea', + type: 'lib', + data: { + root: 'packages/react-components/react-textarea', + sourceRoot: 'packages/react-components/react-textarea/src', + name: '@fluentui/react-textarea', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/keyboard-keys', + type: 'lib', + data: { + root: 'packages/react-components/keyboard-keys', + sourceRoot: 'packages/react-components/keyboard-keys/src', + name: '@fluentui/keyboard-keys', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-spinner', + type: 'lib', + data: { + root: 'packages/react-components/react-spinner', + sourceRoot: 'packages/react-components/react-spinner/src', + name: '@fluentui/react-spinner', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-persona', + type: 'lib', + data: { + root: 'packages/react-components/react-persona', + sourceRoot: 'packages/react-components/react-persona/src', + name: '@fluentui/react-persona', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-toolbar', + type: 'lib', + data: { + root: 'packages/react-components/react-toolbar', + sourceRoot: 'packages/react-components/react-toolbar/src', + name: '@fluentui/react-toolbar', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-divider', + type: 'lib', + data: { + root: 'packages/react-components/react-divider', + sourceRoot: 'packages/react-components/react-divider/src', + name: '@fluentui/react-divider', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-popover', + type: 'lib', + data: { + root: 'packages/react-components/react-popover', + sourceRoot: 'packages/react-components/react-popover/src', + name: '@fluentui/react-popover', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-tooltip', + type: 'lib', + data: { + root: 'packages/react-components/react-tooltip', + sourceRoot: 'packages/react-components/react-tooltip/src', + name: '@fluentui/react-tooltip', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-icons-northstar', + type: 'lib', + data: { + root: 'packages/fluentui/react-icons-northstar', + sourceRoot: 'packages/fluentui/react-icons-northstar', + name: '@fluentui/react-icons-northstar', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-tabster', + type: 'lib', + data: { + root: 'packages/react-components/react-tabster', + sourceRoot: 'packages/react-components/react-tabster/src', + name: '@fluentui/react-tabster', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-portal', + type: 'lib', + data: { + root: 'packages/react-components/react-portal', + sourceRoot: 'packages/react-components/react-portal/src', + name: '@fluentui/react-portal', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-drawer', + type: 'lib', + data: { + root: 'packages/react-components/react-drawer', + sourceRoot: 'packages/react-components/react-drawer/src', + name: '@fluentui/react-drawer', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-switch', + type: 'lib', + data: { + root: 'packages/react-components/react-switch', + sourceRoot: 'packages/react-components/react-switch/src', + name: '@fluentui/react-switch', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-avatar', + type: 'lib', + data: { + root: 'packages/react-components/react-avatar', + sourceRoot: 'packages/react-components/react-avatar/src', + name: '@fluentui/react-avatar', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-button', + type: 'lib', + data: { + root: 'packages/react-components/react-button', + sourceRoot: 'packages/react-components/react-button/src', + name: '@fluentui/react-button', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-dialog', + type: 'lib', + data: { + root: 'packages/react-components/react-dialog', + sourceRoot: 'packages/react-components/react-dialog/src', + name: '@fluentui/react-dialog', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-select', + type: 'lib', + data: { + root: 'packages/react-components/react-select', + sourceRoot: 'packages/react-components/react-select/src', + name: '@fluentui/react-select', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-slider', + type: 'lib', + data: { + root: 'packages/react-components/react-slider', + sourceRoot: 'packages/react-components/react-slider/src', + name: '@fluentui/react-slider', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/jest-serializer-merge-styles', + type: 'lib', + data: { + root: 'packages/jest-serializer-merge-styles', + sourceRoot: 'packages/jest-serializer-merge-styles/src', + name: '@fluentui/jest-serializer-merge-styles', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8', 'platform:node'], + }, + }, + { + name: '@fluentui/react-image', + type: 'lib', + data: { + root: 'packages/react-components/react-image', + sourceRoot: 'packages/react-components/react-image/src', + name: '@fluentui/react-image', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-input', + type: 'lib', + data: { + root: 'packages/react-components/react-input', + sourceRoot: 'packages/react-components/react-input/src', + name: '@fluentui/react-input', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-component-ref', + type: 'lib', + data: { + root: 'packages/fluentui/react-component-ref', + sourceRoot: 'packages/fluentui/react-component-ref', + name: '@fluentui/react-component-ref', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'build:info': { executor: 'nx:run-script', options: { script: 'build:info' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-table', + type: 'lib', + data: { + root: 'packages/react-components/react-table', + sourceRoot: 'packages/react-components/react-table/src', + name: '@fluentui/react-table', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-field', + type: 'lib', + data: { + root: 'packages/react-components/react-field', + sourceRoot: 'packages/react-components/react-field/src', + name: '@fluentui/react-field', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-radio', + type: 'lib', + data: { + root: 'packages/react-components/react-radio', + sourceRoot: 'packages/react-components/react-radio/src', + name: '@fluentui/react-radio', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-theme', + type: 'lib', + data: { + root: 'packages/react-components/react-theme', + sourceRoot: 'packages/react-components/react-theme/src', + name: '@fluentui/react-theme', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-label', + type: 'lib', + data: { + root: 'packages/react-components/react-label', + sourceRoot: 'packages/react-components/react-label/src', + name: '@fluentui/react-label', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-toast', + type: 'lib', + data: { + root: 'packages/react-components/react-toast', + sourceRoot: 'packages/react-components/react-toast/src', + name: '@fluentui/react-toast', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-badge', + type: 'lib', + data: { + root: 'packages/react-components/react-badge', + sourceRoot: 'packages/react-components/react-badge/src', + name: '@fluentui/react-badge', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/perf-test-northstar', + type: 'app', + data: { + root: 'packages/fluentui/perf-test-northstar', + sourceRoot: 'packages/fluentui/perf-test-northstar', + name: '@fluentui/perf-test-northstar', + projectType: 'application', + targets: { + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'perf:test': { executor: 'nx:run-script', options: { script: 'perf:test' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-alert', + type: 'lib', + data: { + root: 'packages/react-components/react-alert', + sourceRoot: 'packages/react-components/react-alert/src', + name: '@fluentui/react-alert', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-aria', + type: 'lib', + data: { + root: 'packages/react-components/react-aria', + sourceRoot: 'packages/react-components/react-aria/src', + name: '@fluentui/react-aria', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-tree', + type: 'lib', + data: { + root: 'packages/react-components/react-tree', + sourceRoot: 'packages/react-components/react-tree/src', + name: '@fluentui/react-tree', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:web', 'vNext'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-menu', + type: 'lib', + data: { + root: 'packages/react-components/react-menu', + sourceRoot: 'packages/react-components/react-menu/src', + name: '@fluentui/react-menu', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/ts-minbar-test-react-components', + type: 'app', + data: { + root: 'apps/ts-minbar-test-react-components', + sourceRoot: 'apps/ts-minbar-test-react-components', + name: '@fluentui/ts-minbar-test-react-components', + projectType: 'application', + targets: { + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/ability-attributes', + type: 'lib', + data: { + root: 'packages/fluentui/ability-attributes', + sourceRoot: 'packages/fluentui/ability-attributes', + name: '@fluentui/ability-attributes', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + schema: { executor: 'nx:run-script', options: { script: 'schema' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-tabs', + type: 'lib', + data: { + root: 'packages/react-components/react-tabs', + sourceRoot: 'packages/react-components/react-tabs/src', + name: '@fluentui/react-tabs', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-card', + type: 'lib', + data: { + root: 'packages/react-components/react-card', + sourceRoot: 'packages/react-components/react-card/src', + name: '@fluentui/react-card', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-link', + type: 'lib', + data: { + root: 'packages/react-components/react-link', + sourceRoot: 'packages/react-components/react-link/src', + name: '@fluentui/react-link', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-tags', + type: 'lib', + data: { + root: 'packages/react-components/react-tags', + sourceRoot: 'packages/react-components/react-tags/src', + name: '@fluentui/react-tags', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/react-text', + type: 'lib', + data: { + root: 'packages/react-components/react-text', + sourceRoot: 'packages/react-components/react-text/src', + name: '@fluentui/react-text', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'verify-packaging': { + executor: 'nx:run-script', + options: { script: 'verify-packaging' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + tags: ['vNext', 'platform:web'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-docsite-components', + type: 'lib', + data: { + root: 'packages/react-docsite-components', + sourceRoot: 'packages/react-docsite-components/src', + name: '@fluentui/react-docsite-components', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/react-icons-mdl2-branded', + type: 'lib', + data: { + root: 'packages/react-icons-mdl2-branded', + sourceRoot: 'packages/react-icons-mdl2-branded', + name: '@fluentui/react-icons-mdl2-branded', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/react-proptypes', + type: 'lib', + data: { + root: 'packages/fluentui/react-proptypes', + sourceRoot: 'packages/fluentui/react-proptypes', + name: '@fluentui/react-proptypes', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-telemetry', + type: 'lib', + data: { + root: 'packages/fluentui/react-telemetry', + sourceRoot: 'packages/fluentui/react-telemetry', + name: '@fluentui/react-telemetry', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/docs-components', + type: 'lib', + data: { + root: 'packages/fluentui/docs-components', + sourceRoot: 'packages/fluentui/docs-components', + name: '@fluentui/docs-components', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-northstar', + type: 'lib', + data: { + root: 'packages/fluentui/react-northstar', + sourceRoot: 'packages/fluentui/react-northstar', + name: '@fluentui/react-northstar', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'build:info': { executor: 'nx:run-script', options: { script: 'build:info' }, configurations: {} }, + 'bundle-size-auditor': { + executor: 'nx:run-script', + options: { script: 'bundle-size-auditor' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-bindings', + type: 'lib', + data: { + root: 'packages/fluentui/react-bindings', + sourceRoot: 'packages/fluentui/react-bindings', + name: '@fluentui/react-bindings', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'build:info': { executor: 'nx:run-script', options: { script: 'build:info' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/circulars-test', + type: 'app', + data: { + root: 'packages/fluentui/circulars-test', + sourceRoot: 'packages/fluentui/circulars-test', + name: '@fluentui/circulars-test', + projectType: 'application', + targets: { + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/local-sandbox', + type: 'app', + data: { + root: 'packages/fluentui/local-sandbox', + sourceRoot: 'packages/fluentui/local-sandbox', + name: '@fluentui/local-sandbox', + projectType: 'application', + targets: { + 'build:withdependencies': { + executor: 'nx:run-script', + options: { script: 'build:withdependencies' }, + configurations: {}, + }, + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'build:production': { + executor: 'nx:run-script', + options: { script: 'build:production' }, + configurations: {}, + }, + serve: { executor: 'nx:run-script', options: { script: 'serve' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/accessibility', + type: 'lib', + data: { + root: 'packages/fluentui/accessibility', + sourceRoot: 'packages/fluentui/accessibility', + name: '@fluentui/accessibility', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/projects-test', + type: 'app', + data: { + root: 'packages/fluentui/projects-test', + sourceRoot: 'packages/fluentui/projects-test', + name: '@fluentui/projects-test', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/perf-test-react-components', + type: 'app', + data: { + root: 'apps/perf-test-react-components', + sourceRoot: 'apps/perf-test-react-components', + name: '@fluentui/perf-test-react-components', + projectType: 'application', + targets: { + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'test:perf': { executor: 'nx:run-script', options: { script: 'test:perf' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/react-builder', + type: 'lib', + data: { + root: 'packages/fluentui/react-builder', + sourceRoot: 'packages/fluentui/react-builder', + name: '@fluentui/react-builder', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-window-provider', + type: 'lib', + data: { + root: 'packages/react-window-provider', + sourceRoot: 'packages/react-window-provider', + name: '@fluentui/react-window-provider', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/code-sandbox', + type: 'lib', + data: { + root: 'packages/fluentui/code-sandbox', + sourceRoot: 'packages/fluentui/code-sandbox', + name: '@fluentui/code-sandbox', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/react-file-type-icons', + type: 'lib', + data: { + root: 'packages/react-file-type-icons', + sourceRoot: 'packages/react-file-type-icons/src', + name: '@fluentui/react-file-type-icons', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/vr-tests-react-components', + type: 'app', + data: { + root: 'apps/vr-tests-react-components', + sourceRoot: 'apps/vr-tests-react-components', + name: '@fluentui/vr-tests-react-components', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'vr:build': { executor: 'nx:run-script', options: { script: 'vr:build' }, configurations: {} }, + 'vr:test': { executor: 'nx:run-script', options: { script: 'vr:test' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext'], + }, + }, + { + name: '@fluentui/public-docsite-resources', + type: 'app', + data: { + root: 'apps/public-docsite-resources', + sourceRoot: 'apps/public-docsite-resources', + name: '@fluentui/public-docsite-resources', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/public-docsite-setup', + type: 'lib', + data: { + root: 'packages/public-docsite-setup', + sourceRoot: 'packages/public-docsite-setup', + name: '@fluentui/public-docsite-setup', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/recipes-react-components', + type: 'app', + data: { + root: 'apps/recipes-react-components', + sourceRoot: 'apps/recipes-react-components/src', + name: '@fluentui/recipes-react-components', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext'], + }, + }, + { + name: '@fluentui/date-time-utilities', + type: 'lib', + data: { + root: 'packages/date-time-utilities', + sourceRoot: 'packages/date-time-utilities/src', + name: '@fluentui/date-time-utilities', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/react-icon-provider', + type: 'lib', + data: { + root: 'packages/react-icon-provider', + sourceRoot: 'packages/react-icon-provider', + name: '@fluentui/react-icon-provider', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/scripts-update-release-notes', + type: 'lib', + data: { + root: 'scripts/update-release-notes', + sourceRoot: 'scripts/update-release-notes', + name: '@fluentui/scripts-update-release-notes', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-monaco-editor', + type: 'lib', + data: { + root: 'packages/react-monaco-editor', + sourceRoot: 'packages/react-monaco-editor', + name: '@fluentui/react-monaco-editor', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/scripts-perf-test-flamegrill', + type: 'lib', + data: { + root: 'scripts/perf-test-flamegrill', + sourceRoot: 'scripts/perf-test-flamegrill/src', + name: '@fluentui/scripts-perf-test-flamegrill', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools', 'platform:any'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-bundle-size-auditor', + type: 'lib', + data: { + root: 'scripts/bundle-size-auditor', + sourceRoot: 'scripts/bundle-size-auditor/src', + name: '@fluentui/scripts-bundle-size-auditor', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/react-experiments', + type: 'lib', + data: { + root: 'packages/react-experiments', + sourceRoot: 'packages/react-experiments/src', + name: '@fluentui/react-experiments', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'start:legacy': { executor: 'nx:run-script', options: { script: 'start:legacy' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/react-conformance', + type: 'lib', + data: { + root: 'packages/react-conformance', + sourceRoot: 'packages/react-conformance/src', + name: '@fluentui/react-conformance', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:node'], + }, + }, + { + name: '@fluentui/foundation-legacy', + type: 'lib', + data: { + root: 'packages/foundation-legacy', + sourceRoot: 'packages/foundation-legacy/src', + name: '@fluentui/foundation-legacy', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/webpack-utilities', + type: 'lib', + data: { + root: 'packages/webpack-utilities', + sourceRoot: 'packages/webpack-utilities/src', + name: '@fluentui/webpack-utilities', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8', 'platform:node'], + }, + }, + { + name: '@fluentui/ts-minbar-test-react', + type: 'app', + data: { + root: 'apps/ts-minbar-test-react', + sourceRoot: 'apps/ts-minbar-test-react', + name: '@fluentui/ts-minbar-test-react', + projectType: 'application', + targets: { + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/scheme-utilities', + type: 'lib', + data: { + root: 'packages/scheme-utilities', + sourceRoot: 'packages/scheme-utilities/src', + name: '@fluentui/scheme-utilities', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/react-icons-mdl2', + type: 'lib', + data: { + root: 'packages/react-icons-mdl2', + sourceRoot: 'packages/react-icons-mdl2', + name: '@fluentui/react-icons-mdl2', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/style-utilities', + type: 'lib', + data: { + root: 'packages/style-utilities', + sourceRoot: 'packages/style-utilities/src', + name: '@fluentui/style-utilities', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/styles', + type: 'lib', + data: { + root: 'packages/fluentui/styles', + sourceRoot: 'packages/fluentui/styles', + name: '@fluentui/styles', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/react-date-time', + type: 'lib', + data: { + root: 'packages/react-date-time', + sourceRoot: 'packages/react-date-time/src', + name: '@fluentui/react-date-time', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/scripts-fluentui-publish', + type: 'lib', + data: { + root: 'scripts/fluentui-publish', + sourceRoot: 'scripts/fluentui-publish', + name: '@fluentui/scripts-fluentui-publish', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/digest', + type: 'lib', + data: { + root: 'packages/fluentui/digest', + sourceRoot: 'packages/fluentui/digest', + name: '@fluentui/digest', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/font-icons-mdl2', + type: 'lib', + data: { + root: 'packages/font-icons-mdl2', + sourceRoot: 'packages/font-icons-mdl2/src', + name: '@fluentui/font-icons-mdl2', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/scripts-package-manager', + type: 'lib', + data: { + root: 'scripts/package-manager', + sourceRoot: 'scripts/package-manager', + name: '@fluentui/scripts-package-manager', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/state', + type: 'lib', + data: { + root: 'packages/fluentui/state', + sourceRoot: 'packages/fluentui/state', + name: '@fluentui/state', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/web-components', + type: 'lib', + data: { + root: 'packages/web-components', + sourceRoot: 'packages/web-components', + name: '@fluentui/web-components', + projectType: 'library', + targets: { + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + doc: { executor: 'nx:run-script', options: { script: 'doc' }, configurations: {} }, + 'doc:ci': { executor: 'nx:run-script', options: { script: 'doc:ci' }, configurations: {} }, + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + dev: { executor: 'nx:run-script', options: { script: 'dev' }, configurations: {} }, + tdd: { executor: 'nx:run-script', options: { script: 'tdd' }, configurations: {} }, + prepare: { + dependsOn: ['^prepare'], + executor: 'nx:run-script', + options: { script: 'prepare' }, + configurations: {}, + }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'start-storybook': { executor: 'nx:run-script', options: { script: 'start-storybook' }, configurations: {} }, + 'build-storybook': { executor: 'nx:run-script', options: { script: 'build-storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'test-node': { executor: 'nx:run-script', options: { script: 'test-node' }, configurations: {} }, + 'test-node:verbose': { + executor: 'nx:run-script', + options: { script: 'test-node:verbose' }, + configurations: {}, + }, + 'test-chrome': { executor: 'nx:run-script', options: { script: 'test-chrome' }, configurations: {} }, + 'test-chrome:verbose': { + executor: 'nx:run-script', + options: { script: 'test-chrome:verbose' }, + configurations: {}, + }, + 'test-chrome:watch': { + executor: 'nx:run-script', + options: { script: 'test-chrome:watch' }, + configurations: {}, + }, + 'test-chrome:debugger': { + executor: 'nx:run-script', + options: { script: 'test-chrome:debugger' }, + configurations: {}, + }, + 'test-chrome:verbose:watch': { + executor: 'nx:run-script', + options: { script: 'test-chrome:verbose:watch' }, + configurations: {}, + }, + 'test-chrome:verbose:debugger': { + executor: 'nx:run-script', + options: { script: 'test-chrome:verbose:debugger' }, + configurations: {}, + }, + 'test-firefox': { executor: 'nx:run-script', options: { script: 'test-firefox' }, configurations: {} }, + 'test-firefox:verbose': { + executor: 'nx:run-script', + options: { script: 'test-firefox:verbose' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/react-charting', + type: 'lib', + data: { + root: 'packages/react-charting', + sourceRoot: 'packages/react-charting', + name: '@fluentui/react-charting', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + codepen: { executor: 'nx:run-script', options: { script: 'codepen' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'start:legacy': { executor: 'nx:run-script', options: { script: 'start:legacy' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/react-examples', + type: 'lib', + data: { + root: 'packages/react-examples', + sourceRoot: 'packages/react-examples/src', + name: '@fluentui/react-examples', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/test-utilities', + type: 'lib', + data: { + root: 'packages/test-utilities', + sourceRoot: 'packages/test-utilities/src', + name: '@fluentui/test-utilities', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8', 'platform:node'], + }, + }, + { + name: '@fluentui/react-18-tests-v9', + type: 'app', + data: { + root: 'apps/react-18-tests-v9', + sourceRoot: 'apps/react-18-tests-v9', + name: '@fluentui/react-18-tests-v9', + projectType: 'application', + targets: { + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/common-styles', + type: 'lib', + data: { + root: 'packages/common-styles', + sourceRoot: 'packages/common-styles', + name: '@fluentui/common-styles', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'update-sass-theme-files': { + executor: 'nx:run-script', + options: { script: 'update-sass-theme-files' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/perf', + type: 'app', + data: { + root: 'packages/fluentui/perf', + sourceRoot: 'packages/fluentui/perf', + name: '@fluentui/perf', + projectType: 'application', + targets: { + 'perf:test': { executor: 'nx:run-script', options: { script: 'perf:test' }, configurations: {} }, + 'perf:test:debug': { executor: 'nx:run-script', options: { script: 'perf:test:debug' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/public-docsite-v9', + type: 'app', + data: { + root: 'apps/public-docsite-v9', + sourceRoot: 'apps/public-docsite-v9', + name: '@fluentui/public-docsite-v9', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'build-storybook': { executor: 'nx:run-script', options: { script: 'build-storybook' }, configurations: {} }, + 'chromatic:branch': { + executor: 'nx:run-script', + options: { script: 'chromatic:branch' }, + configurations: {}, + }, + chromatic: { executor: 'nx:run-script', options: { script: 'chromatic' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + 'storybook:docs': { executor: 'nx:run-script', options: { script: 'storybook:docs' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['platform:web', 'vNext'], + }, + }, + { + name: '@fluentui/monaco-editor', + type: 'lib', + data: { + root: 'packages/monaco-editor', + sourceRoot: 'packages/monaco-editor', + name: '@fluentui/monaco-editor', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/fluent2-theme', + type: 'lib', + data: { + root: 'packages/fluent2-theme', + sourceRoot: 'packages/fluent2-theme/src', + name: '@fluentui/fluent2-theme', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/dom-utilities', + type: 'lib', + data: { + root: 'packages/dom-utilities', + sourceRoot: 'packages/dom-utilities', + name: '@fluentui/dom-utilities', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/docs', + type: 'app', + data: { + root: 'packages/fluentui/docs', + sourceRoot: 'packages/fluentui/docs', + name: '@fluentui/docs', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'prebuild:storybook': { + executor: 'nx:run-script', + options: { script: 'prebuild:storybook' }, + configurations: {}, + }, + 'build:storybook': { executor: 'nx:run-script', options: { script: 'build:storybook' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'start:profile': { executor: 'nx:run-script', options: { script: 'start:profile' }, configurations: {} }, + 'prestart:storybook': { + executor: 'nx:run-script', + options: { script: 'prestart:storybook' }, + configurations: {}, + }, + 'start:storybook': { executor: 'nx:run-script', options: { script: 'start:storybook' }, configurations: {} }, + 'vr:build': { executor: 'nx:run-script', options: { script: 'vr:build' }, configurations: {} }, + 'vr:test': { executor: 'nx:run-script', options: { script: 'vr:test' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/theme-samples', + type: 'lib', + data: { + root: 'packages/theme-samples', + sourceRoot: 'packages/theme-samples/src', + name: '@fluentui/theme-samples', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/react-18-tests-v8', + type: 'app', + data: { + root: 'apps/react-18-tests-v8', + sourceRoot: 'apps/react-18-tests-v8', + name: '@fluentui/react-18-tests-v8', + projectType: 'application', + targets: { + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/workspace-plugin', + type: 'lib', + data: { + root: 'tools/workspace-plugin', + sourceRoot: 'tools/workspace-plugin/src', + name: '@fluentui/workspace-plugin', + projectType: 'library', + targets: { + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: '@nx/jest:jest', + outputs: ['{workspaceRoot}/coverage/{projectRoot}'], + options: { jestConfig: 'tools/workspace-plugin/jest.config.ts', passWithNoTests: true }, + configurations: { ci: { ci: true, codeCoverage: true } }, + }, + 'type-check': { + executor: 'nx:run-commands', + options: { command: 'tsc -b tools/workspace-plugin/tsconfig.json' }, + configurations: {}, + }, + lint: { + executor: '@nx/linter:eslint', + outputs: ['{options.outputFile}'], + options: { + lintFilePatterns: [ + 'tools/workspace-plugin/**/*.ts', + 'tools/workspace-plugin/package.json', + 'tools/workspace-plugin/generators.json', + ], + }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: '@nx/js:tsc', + outputs: ['{options.outputPath}'], + options: { + outputPath: 'dist/tools/workspace-plugin', + main: 'tools/workspace-plugin/src/index.ts', + tsConfig: 'tools/workspace-plugin/tsconfig.lib.json', + assets: [ + { input: './tools/workspace-plugin/src', glob: '**/!(*.ts)', output: './src' }, + { input: './tools/workspace-plugin/src', glob: '**/*.d.ts', output: './src' }, + { input: './tools/workspace-plugin', glob: 'generators.json', output: '.' }, + { input: './tools/workspace-plugin', glob: 'executors.json', output: '.' }, + ], + updateBuildableProjectDepsInPackageJson: true, + }, + configurations: {}, + }, + 'lint-old': { + executor: 'nx:run-commands', + options: { command: 'eslint tools/workspace-plugin/**/*.ts' }, + configurations: {}, + }, + 'check-graph': { + executor: 'nx:run-commands', + options: { command: 'node ./tools/workspace-plugin/scripts/check-dep-graph.js' }, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['platform:node', 'tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/eslint-plugin', + type: 'lib', + data: { + root: 'packages/eslint-plugin', + sourceRoot: 'packages/eslint-plugin', + name: '@fluentui/eslint-plugin', + projectType: 'library', + targets: { + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/cra-template', + type: 'lib', + data: { + root: 'packages/cra-template', + sourceRoot: 'packages/cra-template/src', + name: '@fluentui/cra-template', + projectType: 'library', + targets: { + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/keyboard-key', + type: 'lib', + data: { + root: 'packages/keyboard-key', + sourceRoot: 'packages/keyboard-key', + name: '@fluentui/keyboard-key', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/azure-themes', + type: 'lib', + data: { + root: 'packages/azure-themes', + sourceRoot: 'packages/azure-themes/src', + name: '@fluentui/azure-themes', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/scripts-api-extractor', + type: 'lib', + data: { + root: 'scripts/api-extractor', + sourceRoot: 'scripts/api-extractor', + name: '@fluentui/scripts-api-extractor', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/e2e', + type: 'app', + data: { + root: 'packages/fluentui/e2e', + sourceRoot: 'packages/fluentui/e2e', + name: '@fluentui/e2e', + projectType: 'application', + targets: { + serve: { executor: 'nx:run-script', options: { script: 'serve' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['react-northstar'], + }, + }, + { + name: '@fluentui/merge-styles', + type: 'lib', + data: { + root: 'packages/merge-styles', + sourceRoot: 'packages/merge-styles/src', + name: '@fluentui/merge-styles', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/scripts-projects-test', + type: 'lib', + data: { + root: 'scripts/projects-test', + sourceRoot: 'scripts/projects-test/src', + name: '@fluentui/scripts-projects-test', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/example-data', + type: 'lib', + data: { + root: 'packages/example-data', + sourceRoot: 'packages/example-data/src', + name: '@fluentui/example-data', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/theming-designer', + type: 'app', + data: { + root: 'apps/theming-designer', + sourceRoot: 'apps/theming-designer', + name: '@fluentui/theming-designer', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/a11y-testing', + type: 'lib', + data: { + root: 'packages/a11y-testing', + sourceRoot: 'packages/a11y-testing', + name: '@fluentui/a11y-testing', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['platform:node'], + }, + }, + { + name: '@fluentui/set-version', + type: 'lib', + data: { + root: 'packages/set-version', + sourceRoot: 'packages/set-version/src', + name: '@fluentui/set-version', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/react-cards', + type: 'lib', + data: { + root: 'packages/react-cards', + sourceRoot: 'packages/react-cards', + name: '@fluentui/react-cards', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/react-hooks', + type: 'lib', + data: { + root: 'packages/react-hooks', + sourceRoot: 'packages/react-hooks/src', + name: '@fluentui/react-hooks', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/react-focus', + type: 'lib', + data: { + root: 'packages/react-focus', + sourceRoot: 'packages/react-focus/src', + name: '@fluentui/react-focus', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/pr-deploy-site', + type: 'app', + data: { + root: 'apps/pr-deploy-site', + sourceRoot: 'apps/pr-deploy-site', + name: '@fluentui/pr-deploy-site', + projectType: 'application', + targets: { + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'generate:site': { executor: 'nx:run-script', options: { script: 'generate:site' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/public-docsite', + type: 'app', + data: { + root: 'apps/public-docsite', + sourceRoot: 'apps/public-docsite', + name: '@fluentui/public-docsite', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/scripts-lint-staged', + type: 'lib', + data: { + root: 'scripts/lint-staged', + sourceRoot: 'scripts/lint-staged', + name: '@fluentui/scripts-lint-staged', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-generators', + type: 'lib', + data: { + root: 'scripts/generators', + sourceRoot: 'scripts/generators', + name: '@fluentui/scripts-generators', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-triage-bot', + type: 'lib', + data: { + root: 'scripts/triage-bot', + sourceRoot: 'scripts/triage-bot/src', + name: '@fluentui/scripts-triage-bot', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/utilities', + type: 'lib', + data: { + root: 'packages/utilities', + sourceRoot: 'packages/utilities/src', + name: '@fluentui/utilities', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'verify-packaging': { + executor: 'nx:run-script', + options: { script: 'verify-packaging' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/storybook', + type: 'lib', + data: { + root: 'packages/storybook', + sourceRoot: 'packages/storybook', + name: '@fluentui/storybook', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8', 'platform:web'], + }, + }, + { + name: '@fluentui/scripts-puppeteer', + type: 'lib', + data: { + root: 'scripts/puppeteer', + sourceRoot: 'scripts/puppeteer/src', + name: '@fluentui/scripts-puppeteer', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/codemods', + type: 'lib', + data: { + root: 'packages/codemods', + sourceRoot: 'packages/codemods/src', + name: '@fluentui/codemods', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8', 'platform:node'], + }, + }, + { + name: '@fluentui/scripts-beachball', + type: 'lib', + data: { + root: 'scripts/beachball', + sourceRoot: 'scripts/beachball', + name: '@fluentui/scripts-beachball', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/api-docs', + type: 'lib', + data: { + root: 'packages/api-docs', + sourceRoot: 'packages/api-docs/src', + name: '@fluentui/api-docs', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8', 'platform:node'], + }, + }, + { + name: '@fluentui/scripts-executors', + type: 'lib', + data: { + root: 'scripts/executors', + sourceRoot: 'scripts/executors', + name: '@fluentui/scripts-executors', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-storybook', + type: 'lib', + data: { + root: 'scripts/storybook', + sourceRoot: 'scripts/storybook/src', + name: '@fluentui/scripts-storybook', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/ssr-tests-v9', + type: 'app', + data: { + root: 'apps/ssr-tests-v9', + sourceRoot: 'apps/ssr-tests-v9/src', + name: '@fluentui/ssr-tests-v9', + projectType: 'application', + targets: { + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:node'], + }, + }, + { + name: '@fluentui/scripts-test-ssr', + type: 'lib', + data: { + root: 'scripts/test-ssr', + sourceRoot: 'scripts/test-ssr/src', + name: '@fluentui/scripts-test-ssr', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/stress-test', + type: 'app', + data: { + root: 'apps/stress-test', + sourceRoot: 'apps/stress-test', + name: '@fluentui/stress-test', + projectType: 'application', + targets: { + 'stress-test': { executor: 'nx:run-script', options: { script: 'stress-test' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/scripts-prettier', + type: 'lib', + data: { + root: 'scripts/prettier', + sourceRoot: 'scripts/prettier/src', + name: '@fluentui/scripts-prettier', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-monorepo', + type: 'lib', + data: { + root: 'scripts/monorepo', + sourceRoot: 'scripts/monorepo/src', + name: '@fluentui/scripts-monorepo', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-dangerjs', + type: 'lib', + data: { + root: 'scripts/dangerjs', + sourceRoot: 'scripts/dangerjs/src', + name: '@fluentui/scripts-dangerjs', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-webpack', + type: 'lib', + data: { + root: 'scripts/webpack', + sourceRoot: 'scripts/webpack/src', + name: '@fluentui/scripts-webpack', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-ts-node', + type: 'lib', + data: { + root: 'scripts/ts-node', + sourceRoot: 'scripts/ts-node', + name: '@fluentui/scripts-ts-node', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-cypress', + type: 'lib', + data: { + root: 'scripts/cypress', + sourceRoot: 'scripts/cypress/src', + name: '@fluentui/scripts-cypress', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/tokens', + type: 'lib', + data: { + root: 'packages/tokens', + sourceRoot: 'packages/tokens/src', + name: '@fluentui/tokens', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'token-pipeline': { executor: 'nx:run-script', options: { script: 'token-pipeline' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['vNext', 'platform:web'], + }, + }, + { + name: '@fluentui/perf-test', + type: 'app', + data: { + root: 'apps/perf-test', + sourceRoot: 'apps/perf-test', + name: '@fluentui/perf-test', + projectType: 'application', + targets: { + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'test:perf': { executor: 'nx:run-script', options: { script: 'test:perf' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/ssr-tests', + type: 'app', + data: { + root: 'apps/ssr-tests', + sourceRoot: 'apps/ssr-tests', + name: '@fluentui/ssr-tests', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/react', + type: 'lib', + data: { + root: 'packages/react', + sourceRoot: 'packages/react/src', + name: '@fluentui/react', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, + 'bundle-size-auditor': { + executor: 'nx:run-script', + options: { script: 'bundle-size-auditor' }, + configurations: {}, + }, + 'build-storybook': { executor: 'nx:run-script', options: { script: 'build-storybook' }, configurations: {} }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + codepen: { executor: 'nx:run-script', options: { script: 'codepen' }, configurations: {} }, + e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, + 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'start:legacy': { executor: 'nx:run-script', options: { script: 'start:legacy' }, configurations: {} }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + mf: { executor: 'nx:run-script', options: { script: 'mf' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: ['v8'], + }, + }, + { + name: '@fluentui/scripts-github', + type: 'lib', + data: { + root: 'scripts/github', + sourceRoot: 'scripts/github/src', + name: '@fluentui/scripts-github', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/theme', + type: 'lib', + data: { + root: 'packages/theme', + sourceRoot: 'packages/theme', + name: '@fluentui/theme', + projectType: 'library', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, + 'update-snapshots': { + executor: 'nx:run-script', + options: { script: 'update-snapshots' }, + configurations: {}, + }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/vr-tests', + type: 'app', + data: { + root: 'apps/vr-tests', + sourceRoot: 'apps/vr-tests', + name: '@fluentui/vr-tests', + projectType: 'application', + targets: { + build: { + dependsOn: ['^build'], + inputs: ['production', '^production'], + executor: 'nx:run-script', + options: { script: 'build' }, + configurations: {}, + }, + clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, + 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, + just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'vr:build': { executor: 'nx:run-script', options: { script: 'vr:build' }, configurations: {} }, + 'vr:test': { executor: 'nx:run-script', options: { script: 'vr:test' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + implicitDependencies: [], + tags: [], + }, + }, + { + name: '@fluentui/scripts-tasks', + type: 'lib', + data: { + root: 'scripts/tasks', + sourceRoot: 'scripts/tasks/src', + name: '@fluentui/scripts-tasks', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-utils', + type: 'lib', + data: { + root: 'scripts/utils', + sourceRoot: 'scripts/utils/src', + name: '@fluentui/scripts-utils', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-babel', + type: 'lib', + data: { + root: 'scripts/babel', + sourceRoot: 'scripts/babel', + name: '@fluentui/scripts-babel', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-gulp', + type: 'lib', + data: { + root: 'scripts/gulp', + sourceRoot: 'scripts/gulp/src', + name: '@fluentui/scripts-gulp', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/scripts-jest', + type: 'lib', + data: { + root: 'scripts/jest', + sourceRoot: 'scripts/jest/src', + name: '@fluentui/scripts-jest', + projectType: 'library', + targets: { + format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, + 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, + lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, + test: { + inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], + executor: 'nx:run-script', + options: { script: 'test' }, + configurations: {}, + }, + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../../node_modules/nx/schemas/project-schema.json', + tags: ['tools'], + implicitDependencies: [], + }, + }, + { + name: '@fluentui/typings', + type: 'lib', + data: { + root: 'typings', + sourceRoot: 'typings', + name: '@fluentui/typings', + projectType: 'library', + targets: { + 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, + 'nx-release-publish': { + dependsOn: ['^nx-release-publish'], + executor: '@nx/js:release-publish', + options: {}, + configurations: {}, + }, + }, + $schema: '../node_modules/nx/schemas/project-schema.json', + tags: ['platform:any'], + implicitDependencies: [], + }, + }, + ], + dependencies: { + '@fluentui/react-storybook-addon-export-to-sandbox': [ + { + source: '@fluentui/react-storybook-addon-export-to-sandbox', + target: '@fluentui/babel-preset-storybook-full-source', + type: 'static', + }, + { + source: '@fluentui/react-storybook-addon-export-to-sandbox', + target: '@fluentui/eslint-plugin', + type: 'static', + }, + { + source: '@fluentui/react-storybook-addon-export-to-sandbox', + target: '@fluentui/scripts-api-extractor', + type: 'static', + }, + { + source: '@fluentui/react-storybook-addon-export-to-sandbox', + target: '@fluentui/scripts-tasks', + type: 'static', + }, + ], + '@fluentui/babel-preset-storybook-full-source': [ + { source: '@fluentui/babel-preset-storybook-full-source', target: '@fluentui/eslint-plugin', type: 'static' }, + { + source: '@fluentui/babel-preset-storybook-full-source', + target: '@fluentui/scripts-api-extractor', + type: 'static', + }, + { source: '@fluentui/babel-preset-storybook-full-source', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-timepicker-compat-preview': [ + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-combobox', type: 'static' }, + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { + source: '@fluentui/react-timepicker-compat-preview', + target: '@fluentui/react-shared-contexts', + type: 'static', + }, + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-conformance', type: 'static' }, + { + source: '@fluentui/react-timepicker-compat-preview', + target: '@fluentui/react-conformance-griffel', + type: 'static', + }, + { + source: '@fluentui/react-timepicker-compat-preview', + target: '@fluentui/scripts-api-extractor', + type: 'static', + }, + { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-teaching-popover-preview': [ + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-popover', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-aria', type: 'static' }, + { + source: '@fluentui/react-teaching-popover-preview', + target: '@fluentui/react-context-selector', + type: 'static', + }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-conformance', type: 'static' }, + { + source: '@fluentui/react-teaching-popover-preview', + target: '@fluentui/react-conformance-griffel', + type: 'static', + }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/babel-preset-global-context': [ + { source: '@fluentui/babel-preset-global-context', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/babel-preset-global-context', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/babel-preset-global-context', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/babel-preset-global-context', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/babel-preset-global-context', target: '@fluentui/global-context', type: 'static' }, + ], + '@fluentui/react-portal-compat-context': [ + { source: '@fluentui/react-portal-compat-context', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-portal-compat-context', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-portal-compat-context', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-swatch-picker-preview': [ + { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/react-conformance', type: 'static' }, + { + source: '@fluentui/react-swatch-picker-preview', + target: '@fluentui/react-conformance-griffel', + type: 'static', + }, + { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-conformance-griffel': [ + { source: '@fluentui/react-conformance-griffel', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-conformance-griffel', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-conformance-griffel', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-conformance-griffel', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-northstar-emotion-renderer': [ + { + source: '@fluentui/react-northstar-emotion-renderer', + target: '@fluentui/react-northstar-styles-renderer', + type: 'static', + }, + { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/styles', type: 'static' }, + { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-component-nesting-registry': [ + { source: '@fluentui/react-component-nesting-registry', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-component-nesting-registry', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-component-nesting-registry', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-component-nesting-registry', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-colorpicker-compat': [ + { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-timepicker-compat': [ + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-combobox', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-timepicker-compat', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-northstar-styles-renderer': [ + { source: '@fluentui/react-northstar-styles-renderer', target: '@fluentui/styles', type: 'static' }, + { source: '@fluentui/react-northstar-styles-renderer', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-northstar-styles-renderer', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-northstar-styles-renderer', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/react-datepicker-compat': [ + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-calendar-compat', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-input', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-popover', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-positioning', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-datepicker-compat', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-component-event-listener': [ + { source: '@fluentui/react-component-event-listener', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-component-event-listener', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-component-event-listener', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-component-event-listener', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-context-selector': [ + { source: '@fluentui/react-context-selector', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-context-selector', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-context-selector', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-context-selector', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-migration-v0-v9': [ + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/scripts-storybook', type: 'static' }, + ], + '@fluentui/react-migration-v8-v9': [ + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/fluent2-theme', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-storybook-addon': [ + { source: '@fluentui/react-storybook-addon', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-storybook-addon', target: '@fluentui/react-provider', type: 'static' }, + { source: '@fluentui/react-storybook-addon', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-storybook-addon', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-storybook-addon', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-northstar-fela-renderer': [ + { + source: '@fluentui/react-northstar-fela-renderer', + target: '@fluentui/react-northstar-styles-renderer', + type: 'static', + }, + { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/styles', type: 'static' }, + { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-motions-preview': [ + { source: '@fluentui/react-motions-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-motions-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-motions-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-motions-preview', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-motions-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-motions-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-motions-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-calendar-compat': [ + { source: '@fluentui/react-calendar-compat', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-calendar-compat', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-shared-contexts': [ + { source: '@fluentui/react-shared-contexts', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-shared-contexts', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-shared-contexts', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-shared-contexts', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-motion-preview': [ + { source: '@fluentui/react-motion-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-motion-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-motion-preview', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-motion-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-motion-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-motion-preview', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-motion-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-motion-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-motion-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-rating-preview': [ + { source: '@fluentui/react-rating-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-rating-preview', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-rating-preview', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-rating-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-rating-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-rating-preview', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-rating-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-rating-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-rating-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-search-preview': [ + { source: '@fluentui/react-search-preview', target: '@fluentui/react-input', type: 'static' }, + { source: '@fluentui/react-search-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-search-preview', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-search-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-search-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-search-preview', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-search-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-search-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-search-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-portal-compat': [ + { source: '@fluentui/react-portal-compat', target: '@fluentui/react-portal-compat-context', type: 'static' }, + { source: '@fluentui/react-portal-compat', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-portal-compat', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-portal-compat', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/react-portal-compat', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-portal-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-portal-compat', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-portal-compat', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-list-preview': [ + { source: '@fluentui/react-list-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-list-preview', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-list-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-list-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-list-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-list-preview', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-list-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-list-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-list-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-northstar-prototypes': [ + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/accessibility', type: 'static' }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/code-sandbox', type: 'static' }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/docs-components', type: 'static' }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/react-bindings', type: 'static' }, + { + source: '@fluentui/react-northstar-prototypes', + target: '@fluentui/react-component-event-listener', + type: 'static', + }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/react-component-ref', type: 'static' }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/react-icons-northstar', type: 'static' }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/react-positioning': [ + { source: '@fluentui/react-positioning', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-positioning', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-positioning', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-positioning', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-positioning', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-positioning', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/priority-overflow': [ + { source: '@fluentui/priority-overflow', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/priority-overflow', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/priority-overflow', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-jsx-runtime': [ + { source: '@fluentui/react-jsx-runtime', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-jsx-runtime', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-jsx-runtime', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-jsx-runtime', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-jsx-runtime', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-jsx-runtime', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-nav-preview': [ + { source: '@fluentui/react-nav-preview', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-nav-preview', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-virtualizer': [ + { source: '@fluentui/react-virtualizer', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-virtualizer', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-virtualizer', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-virtualizer', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-virtualizer', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-virtualizer', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-virtualizer', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-virtualizer', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-message-bar': [ + { source: '@fluentui/react-message-bar', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-message-bar', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-spinbutton': [ + { source: '@fluentui/react-spinbutton', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-spinbutton', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-breadcrumb': [ + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-link', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-breadcrumb', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-infobutton': [ + { source: '@fluentui/react-infobutton', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/react-popover', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-infobutton', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-components': [ + { source: '@fluentui/react-components', target: '@fluentui/react-accordion', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-alert', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-avatar', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-badge', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-card', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-checkbox', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-combobox', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-dialog', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-divider', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-drawer', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-image', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-infobutton', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-infolabel', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-input', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-link', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-menu', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-overflow', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-persona', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-popover', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-positioning', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-progress', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-provider', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-radio', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-select', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-skeleton', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-slider', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-spinbutton', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-spinner', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-switch', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-table', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-tabs', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-tags', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-textarea', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-toast', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-toolbar', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-tooltip', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-text', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-virtualizer', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-tree', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-message-bar', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/react-breadcrumb', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-components', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-theme-sass': [ + { source: '@fluentui/react-theme-sass', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-theme-sass', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-theme-sass', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-theme-sass', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-utilities': [ + { source: '@fluentui/react-utilities', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-utilities', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-infolabel': [ + { source: '@fluentui/react-infolabel', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/react-popover', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-infolabel', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-accordion': [ + { source: '@fluentui/react-accordion', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-accordion', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-checkbox': [ + { source: '@fluentui/react-checkbox', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-checkbox', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-provider': [ + { source: '@fluentui/react-provider', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-provider', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/theme-designer': [ + { source: '@fluentui/theme-designer', target: '@fluentui/react-alert', type: 'static' }, + { source: '@fluentui/theme-designer', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/theme-designer', target: '@fluentui/react-context-selector', type: 'static' }, + { + source: '@fluentui/theme-designer', + target: '@fluentui/react-storybook-addon-export-to-sandbox', + type: 'static', + }, + { source: '@fluentui/theme-designer', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/theme-designer', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/theme-designer', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/theme-designer', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/theme-designer', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-combobox': [ + { source: '@fluentui/react-combobox', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-positioning', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-combobox', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/global-context': [ + { source: '@fluentui/global-context', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/global-context', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/global-context', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/global-context', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/global-context', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/global-context', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-progress': [ + { source: '@fluentui/react-progress', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-progress', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-skeleton': [ + { source: '@fluentui/react-skeleton', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-skeleton', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-overflow': [ + { source: '@fluentui/react-overflow', target: '@fluentui/priority-overflow', type: 'static' }, + { source: '@fluentui/react-overflow', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-overflow', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-overflow', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-overflow', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-overflow', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-overflow', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-overflow', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-textarea': [ + { source: '@fluentui/react-textarea', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-textarea', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/keyboard-keys': [ + { source: '@fluentui/keyboard-keys', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/keyboard-keys', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/keyboard-keys', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-spinner': [ + { source: '@fluentui/react-spinner', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-spinner', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-persona': [ + { source: '@fluentui/react-persona', target: '@fluentui/react-avatar', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/react-badge', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-persona', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-toolbar': [ + { source: '@fluentui/react-toolbar', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-divider', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-radio', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-toolbar', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-divider': [ + { source: '@fluentui/react-divider', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-divider', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-divider', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-divider', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-divider', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-divider', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-divider', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-divider', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-divider', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-popover': [ + { source: '@fluentui/react-popover', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-positioning', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-popover', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-tooltip': [ + { source: '@fluentui/react-tooltip', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-positioning', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-tooltip', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-icons-northstar': [ + { source: '@fluentui/react-icons-northstar', target: '@fluentui/accessibility', type: 'static' }, + { source: '@fluentui/react-icons-northstar', target: '@fluentui/react-bindings', type: 'static' }, + { source: '@fluentui/react-icons-northstar', target: '@fluentui/styles', type: 'static' }, + { source: '@fluentui/react-icons-northstar', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-icons-northstar', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-icons-northstar', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-icons-northstar', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-tabster': [ + { source: '@fluentui/react-tabster', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-tabster', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-tabster', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-tabster', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-tabster', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-tabster', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-tabster', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-portal': [ + { source: '@fluentui/react-portal', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-portal', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-portal', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-portal', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-portal', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-portal', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-portal', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-drawer': [ + { source: '@fluentui/react-drawer', target: '@fluentui/react-dialog', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/react-motion-preview', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-drawer', target: '@fluentui/scripts-cypress', type: 'static' }, + ], + '@fluentui/react-switch': [ + { source: '@fluentui/react-switch', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-switch', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-avatar': [ + { source: '@fluentui/react-avatar', target: '@fluentui/react-badge', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-popover', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-tooltip', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-avatar', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-button': [ + { source: '@fluentui/react-button', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/a11y-testing', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-button', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-dialog': [ + { source: '@fluentui/react-dialog', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-dialog', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-select': [ + { source: '@fluentui/react-select', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-select', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-slider': [ + { source: '@fluentui/react-slider', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-slider', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/jest-serializer-merge-styles': [ + { source: '@fluentui/jest-serializer-merge-styles', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/jest-serializer-merge-styles', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/jest-serializer-merge-styles', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/jest-serializer-merge-styles', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-image': [ + { source: '@fluentui/react-image', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-image', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-image', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-image', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-image', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-image', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-image', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-image', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-image', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-input': [ + { source: '@fluentui/react-input', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/react-text', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-input', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-component-ref': [ + { source: '@fluentui/react-component-ref', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-component-ref', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-component-ref', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-component-ref', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-table': [ + { source: '@fluentui/react-table', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-avatar', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-checkbox', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-radio', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-table', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-field': [ + { source: '@fluentui/react-field', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-field', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-radio': [ + { source: '@fluentui/react-radio', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-radio', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-theme': [ + { source: '@fluentui/react-theme', target: '@fluentui/tokens', type: 'static' }, + { source: '@fluentui/react-theme', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-theme', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-theme', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-label': [ + { source: '@fluentui/react-label', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-label', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-label', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-label', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-label', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-label', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-label', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-label', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-label', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-toast': [ + { source: '@fluentui/react-toast', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-toast', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-badge': [ + { source: '@fluentui/react-badge', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-badge', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-badge', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-badge', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-badge', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-badge', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-badge', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-badge', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-badge', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/perf-test-northstar': [ + { source: '@fluentui/perf-test-northstar', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/perf-test-northstar', target: '@fluentui/react-northstar-prototypes', type: 'static' }, + { source: '@fluentui/perf-test-northstar', target: '@fluentui/digest', type: 'static' }, + { source: '@fluentui/perf-test-northstar', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-alert': [ + { source: '@fluentui/react-alert', target: '@fluentui/react-avatar', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-alert', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-aria': [ + { source: '@fluentui/react-aria', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-aria', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-aria', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-aria', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-aria', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-aria', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-aria', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-tree': [ + { source: '@fluentui/react-tree', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-avatar', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-checkbox', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-radio', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-tree', target: '@fluentui/scripts-cypress', type: 'static' }, + ], + '@fluentui/react-menu': [ + { source: '@fluentui/react-menu', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-positioning', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-menu', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/ts-minbar-test-react-components': [ + { source: '@fluentui/ts-minbar-test-react-components', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/ts-minbar-test-react-components', target: '@fluentui/scripts-tasks', type: 'static' }, + { + source: '@fluentui/ts-minbar-test-react-components', + target: '@fluentui/scripts-projects-test', + type: 'static', + }, + ], + '@fluentui/ability-attributes': [ + { source: '@fluentui/ability-attributes', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/ability-attributes', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/react-tabs': [ + { source: '@fluentui/react-tabs', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-tabs', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-card': [ + { source: '@fluentui/react-card', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-card', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-link': [ + { source: '@fluentui/react-link', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/a11y-testing', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-link', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-tags': [ + { source: '@fluentui/react-tags', target: '@fluentui/keyboard-keys', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-aria', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-avatar', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-tabster', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-tags', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-text': [ + { source: '@fluentui/react-text', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/react-text', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/react-text', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/react-text', target: '@fluentui/react-jsx-runtime', type: 'static' }, + { source: '@fluentui/react-text', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-text', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-text', target: '@fluentui/react-conformance-griffel', type: 'static' }, + { source: '@fluentui/react-text', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-text', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-docsite-components': [ + { source: '@fluentui/react-docsite-components', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/theme', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/example-data', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/public-docsite-setup', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/react-hooks', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/react-monaco-editor', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/common-styles', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-docsite-components', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/react-icons-mdl2-branded': [ + { source: '@fluentui/react-icons-mdl2-branded', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-icons-mdl2-branded', target: '@fluentui/react-icons-mdl2', type: 'static' }, + { source: '@fluentui/react-icons-mdl2-branded', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-icons-mdl2-branded', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-proptypes': [ + { source: '@fluentui/react-proptypes', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-proptypes', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-proptypes', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-proptypes', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-telemetry': [ + { source: '@fluentui/react-telemetry', target: '@fluentui/react-bindings', type: 'static' }, + { source: '@fluentui/react-telemetry', target: '@fluentui/react-component-event-listener', type: 'static' }, + { source: '@fluentui/react-telemetry', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-telemetry', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-telemetry', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/docs-components': [ + { source: '@fluentui/docs-components', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/docs-components', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/docs-components', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/react-northstar': [ + { source: '@fluentui/react-northstar', target: '@fluentui/accessibility', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/dom-utilities', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-bindings', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-component-event-listener', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-component-nesting-registry', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-component-ref', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-icons-northstar', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-northstar-styles-renderer', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-portal-compat-context', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-proptypes', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/state', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/styles', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/a11y-testing', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-northstar', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-bindings': [ + { source: '@fluentui/react-bindings', target: '@fluentui/accessibility', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/dom-utilities', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/react-component-event-listener', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/react-component-ref', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/react-northstar-fela-renderer', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/react-northstar-styles-renderer', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/state', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/styles', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-bindings', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/circulars-test': [ + { source: '@fluentui/circulars-test', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/circulars-test', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/local-sandbox': [ + { source: '@fluentui/local-sandbox', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/local-sandbox', target: '@fluentui/scripts-babel', type: 'static' }, + ], + '@fluentui/accessibility': [ + { source: '@fluentui/accessibility', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/accessibility', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/accessibility', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/accessibility', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/projects-test': [ + { source: '@fluentui/projects-test', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/projects-test', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/projects-test', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/projects-test', target: '@fluentui/scripts-projects-test', type: 'static' }, + ], + '@fluentui/perf-test-react-components': [ + { + source: '@fluentui/perf-test-react-components', + target: '@fluentui/scripts-perf-test-flamegrill', + type: 'static', + }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-avatar', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-persona', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-provider', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-spinbutton', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/perf-test-react-components', target: '@fluentui/scripts-storybook', type: 'static' }, + ], + '@fluentui/react-builder': [ + { source: '@fluentui/react-builder', target: '@fluentui/accessibility', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/code-sandbox', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/docs-components', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/react-component-event-listener', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/react-component-ref', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/react-icons-northstar', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/react-builder', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-window-provider': [ + { source: '@fluentui/react-window-provider', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-window-provider', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-window-provider', target: '@fluentui/test-utilities', type: 'static' }, + { source: '@fluentui/react-window-provider', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-window-provider', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-window-provider', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/code-sandbox': [ + { source: '@fluentui/code-sandbox', target: '@fluentui/docs-components', type: 'static' }, + { source: '@fluentui/code-sandbox', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/code-sandbox', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/code-sandbox', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/code-sandbox', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/react-file-type-icons': [ + { source: '@fluentui/react-file-type-icons', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-file-type-icons', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/react-file-type-icons', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-file-type-icons', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-file-type-icons', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/vr-tests-react-components': [ + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-accordion', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-avatar', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-badge', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-button', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-calendar-compat', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-card', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-checkbox', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-combobox', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-context-selector', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-datepicker-compat', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-dialog', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-divider', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-drawer', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-field', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-image', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-infolabel', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-input', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-label', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-link', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-menu', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-message-bar', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-persona', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-popover', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-portal', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-positioning', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-progress', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-provider', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-radio', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-search-preview', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-select', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-shared-contexts', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-skeleton', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-slider', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-spinner', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-spinbutton', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-storybook-addon', type: 'static' }, + { + source: '@fluentui/vr-tests-react-components', + target: '@fluentui/react-storybook-addon-export-to-sandbox', + type: 'static', + }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-switch', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-table', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-tabs', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-tags', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-text', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-textarea', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-theme', type: 'static' }, + { + source: '@fluentui/vr-tests-react-components', + target: '@fluentui/react-timepicker-compat-preview', + type: 'static', + }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-toast', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-tooltip', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-toolbar', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-tree', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-breadcrumb', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/vr-tests-react-components', target: '@fluentui/scripts-storybook', type: 'static' }, + ], + '@fluentui/public-docsite-resources': [ + { source: '@fluentui/public-docsite-resources', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/react-charting', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/react-examples', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/azure-themes', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/react-docsite-components', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/font-icons-mdl2', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/theme-samples', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/react-monaco-editor', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/api-docs', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/public-docsite-resources', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/public-docsite-setup': [ + { source: '@fluentui/public-docsite-setup', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/public-docsite-setup', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/recipes-react-components': [ + { source: '@fluentui/recipes-react-components', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/recipes-react-components', target: '@fluentui/react-theme', type: 'static' }, + { source: '@fluentui/recipes-react-components', target: '@fluentui/react-provider', type: 'static' }, + { source: '@fluentui/recipes-react-components', target: '@fluentui/react-storybook-addon', type: 'static' }, + { + source: '@fluentui/recipes-react-components', + target: '@fluentui/react-storybook-addon-export-to-sandbox', + type: 'static', + }, + { source: '@fluentui/recipes-react-components', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/recipes-react-components', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/date-time-utilities': [ + { source: '@fluentui/date-time-utilities', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/date-time-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/date-time-utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/date-time-utilities', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/date-time-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-icon-provider': [ + { source: '@fluentui/react-icon-provider', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-icon-provider', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/react-icon-provider', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-icon-provider', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-icon-provider', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-icon-provider', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-icon-provider', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/scripts-update-release-notes': [ + { source: '@fluentui/scripts-update-release-notes', target: '@fluentui/scripts-github', type: 'static' }, + ], + '@fluentui/react-monaco-editor': [ + { source: '@fluentui/react-monaco-editor', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-monaco-editor', target: '@fluentui/example-data', type: 'static' }, + { source: '@fluentui/react-monaco-editor', target: '@fluentui/monaco-editor', type: 'static' }, + { source: '@fluentui/react-monaco-editor', target: '@fluentui/react-hooks', type: 'static' }, + { source: '@fluentui/react-monaco-editor', target: '@fluentui/react-charting', type: 'static' }, + { source: '@fluentui/react-monaco-editor', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-monaco-editor', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-monaco-editor', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-monaco-editor', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/scripts-perf-test-flamegrill': [], + '@fluentui/scripts-bundle-size-auditor': [], + '@fluentui/react-experiments': [ + { source: '@fluentui/react-experiments', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/theme', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/example-data', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/foundation-legacy', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/font-icons-mdl2', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/react-hooks', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/common-styles', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-experiments', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/react-conformance': [ + { source: '@fluentui/react-conformance', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-conformance', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-conformance', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/foundation-legacy': [ + { source: '@fluentui/foundation-legacy', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/foundation-legacy', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/webpack-utilities': [ + { source: '@fluentui/webpack-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/webpack-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/ts-minbar-test-react': [ + { source: '@fluentui/ts-minbar-test-react', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/ts-minbar-test-react', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/ts-minbar-test-react', target: '@fluentui/scripts-projects-test', type: 'static' }, + ], + '@fluentui/scheme-utilities': [ + { source: '@fluentui/scheme-utilities', target: '@fluentui/theme', type: 'static' }, + { source: '@fluentui/scheme-utilities', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/scheme-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/scheme-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/scheme-utilities', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/react-icons-mdl2': [ + { source: '@fluentui/react-icons-mdl2', target: '@fluentui/react-icon-provider', type: 'static' }, + { source: '@fluentui/react-icons-mdl2', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-icons-mdl2', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/react-icons-mdl2', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-icons-mdl2', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-icons-mdl2', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-icons-mdl2', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/style-utilities': [ + { source: '@fluentui/style-utilities', target: '@fluentui/theme', type: 'static' }, + { source: '@fluentui/style-utilities', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/style-utilities', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/style-utilities', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/style-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/style-utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/style-utilities', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/style-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/styles': [ + { source: '@fluentui/styles', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/styles', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/styles', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/styles', target: '@fluentui/scripts-jest', type: 'static' }, + ], + '@fluentui/react-date-time': [ + { source: '@fluentui/react-date-time', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-date-time', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-date-time', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-date-time', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-date-time', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-date-time', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/scripts-fluentui-publish': [ + { source: '@fluentui/scripts-fluentui-publish', target: '@fluentui/scripts-monorepo', type: 'static' }, + ], + '@fluentui/digest': [], + '@fluentui/font-icons-mdl2': [ + { source: '@fluentui/font-icons-mdl2', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/font-icons-mdl2', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/font-icons-mdl2', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/font-icons-mdl2', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/font-icons-mdl2', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/font-icons-mdl2', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/scripts-package-manager': [], + '@fluentui/state': [ + { source: '@fluentui/state', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/state', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/state', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/web-components': [], + '@fluentui/react-charting': [ + { source: '@fluentui/react-charting', target: '@fluentui/react-focus', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/theme-samples', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-charting', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/react-examples': [ + { source: '@fluentui/react-examples', target: '@fluentui/azure-themes', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/date-time-utilities', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/dom-utilities', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/example-data', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/font-icons-mdl2', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/foundation-legacy', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react-cards', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react-charting', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react-docsite-components', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react-experiments', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react-file-type-icons', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react-focus', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react-hooks', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/react-icons-mdl2', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/scheme-utilities', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/theme', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/theme-samples', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/storybook', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/scripts-webpack', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-examples', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/test-utilities': [ + { source: '@fluentui/test-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/test-utilities', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/test-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-18-tests-v9': [ + { source: '@fluentui/react-18-tests-v9', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/react-18-tests-v9', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-18-tests-v9', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-18-tests-v9', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/common-styles': [ + { source: '@fluentui/common-styles', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/common-styles', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/perf': [ + { source: '@fluentui/perf', target: '@fluentui/docs', type: 'static' }, + { source: '@fluentui/perf', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/perf', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/perf', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/perf', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/perf', target: '@fluentui/scripts-monorepo', type: 'static' }, + ], + '@fluentui/public-docsite-v9': [ + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-calendar-compat', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-datepicker-compat', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-migration-v8-v9', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-migration-v0-v9', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-icons-northstar', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-storybook-addon', type: 'static' }, + { + source: '@fluentui/public-docsite-v9', + target: '@fluentui/react-storybook-addon-export-to-sandbox', + type: 'static', + }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/theme-designer', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-rating-preview', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-search-preview', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-motion-preview', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-teaching-popover-preview', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-timepicker-compat-preview', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/scripts-storybook', type: 'static' }, + { source: '@fluentui/public-docsite-v9', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/monaco-editor': [ + { source: '@fluentui/monaco-editor', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/monaco-editor', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/fluent2-theme': [ + { source: '@fluentui/fluent2-theme', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/fluent2-theme', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/fluent2-theme', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/fluent2-theme', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/fluent2-theme', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/dom-utilities': [ + { source: '@fluentui/dom-utilities', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/dom-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/dom-utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/dom-utilities', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/dom-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/docs': [ + { source: '@fluentui/docs', target: '@fluentui/ability-attributes', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/accessibility', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/code-sandbox', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/docs-components', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-bindings', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-builder', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-component-event-listener', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-component-ref', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-icons-northstar', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-northstar-emotion-renderer', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-northstar-fela-renderer', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-northstar-prototypes', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-northstar-styles-renderer', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/react-telemetry', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/styles', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/scripts-gulp', type: 'static' }, + { source: '@fluentui/docs', target: '@fluentui/scripts-storybook', type: 'static' }, + ], + '@fluentui/theme-samples': [ + { source: '@fluentui/theme-samples', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/theme-samples', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/theme-samples', target: '@fluentui/scheme-utilities', type: 'static' }, + { source: '@fluentui/theme-samples', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/theme-samples', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/theme-samples', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/react-18-tests-v8': [ + { source: '@fluentui/react-18-tests-v8', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-18-tests-v8', target: '@fluentui/react-hooks', type: 'static' }, + { source: '@fluentui/react-18-tests-v8', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-18-tests-v8', target: '@fluentui/scripts-cypress', type: 'static' }, + { source: '@fluentui/react-18-tests-v8', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-18-tests-v8', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-18-tests-v8', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/workspace-plugin': [], + '@fluentui/eslint-plugin': [], + '@fluentui/cra-template': [ + { source: '@fluentui/cra-template', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/cra-template', target: '@fluentui/scripts-projects-test', type: 'static' }, + ], + '@fluentui/keyboard-key': [ + { source: '@fluentui/keyboard-key', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/keyboard-key', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/keyboard-key', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/keyboard-key', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/azure-themes': [ + { source: '@fluentui/azure-themes', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/azure-themes', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/azure-themes', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/azure-themes', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/azure-themes', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/scripts-api-extractor': [], + '@fluentui/e2e': [ + { source: '@fluentui/e2e', target: '@fluentui/accessibility', type: 'static' }, + { source: '@fluentui/e2e', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/e2e', target: '@fluentui/react-icons-northstar', type: 'static' }, + { source: '@fluentui/e2e', target: '@fluentui/react-northstar', type: 'static' }, + { source: '@fluentui/e2e', target: '@fluentui/react-northstar-prototypes', type: 'static' }, + { source: '@fluentui/e2e', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/e2e', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/e2e', target: '@fluentui/scripts-gulp', type: 'static' }, + ], + '@fluentui/merge-styles': [ + { source: '@fluentui/merge-styles', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/merge-styles', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/merge-styles', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/merge-styles', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/merge-styles', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/merge-styles', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/scripts-projects-test': [ + { source: '@fluentui/scripts-projects-test', target: '@fluentui/scripts-utils', type: 'static' }, + { source: '@fluentui/scripts-projects-test', target: '@fluentui/scripts-puppeteer', type: 'static' }, + { source: '@fluentui/scripts-projects-test', target: '@fluentui/scripts-monorepo', type: 'static' }, + ], + '@fluentui/example-data': [ + { source: '@fluentui/example-data', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/example-data', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/example-data', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/example-data', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/theming-designer': [ + { source: '@fluentui/theming-designer', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/react-docsite-components', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/foundation-legacy', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/scheme-utilities', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/font-icons-mdl2', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/theming-designer', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/a11y-testing': [ + { source: '@fluentui/a11y-testing', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/a11y-testing', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/set-version': [ + { source: '@fluentui/set-version', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/set-version', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/react-cards': [ + { source: '@fluentui/react-cards', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/react-cards', target: '@fluentui/foundation-legacy', type: 'static' }, + { source: '@fluentui/react-cards', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-cards', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-cards', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, + { source: '@fluentui/react-cards', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-cards', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-cards', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-cards', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/react-hooks': [ + { source: '@fluentui/react-hooks', target: '@fluentui/react-window-provider', type: 'static' }, + { source: '@fluentui/react-hooks', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-hooks', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/react-hooks', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-hooks', target: '@fluentui/test-utilities', type: 'static' }, + { source: '@fluentui/react-hooks', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-hooks', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-hooks', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-hooks', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/react-focus': [ + { source: '@fluentui/react-focus', target: '@fluentui/keyboard-key', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/test-utilities', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react-focus', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/pr-deploy-site': [ + { source: '@fluentui/pr-deploy-site', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/pr-deploy-site', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/pr-deploy-site', target: '@fluentui/scripts-monorepo', type: 'static' }, + ], + '@fluentui/public-docsite': [ + { source: '@fluentui/public-docsite', target: '@fluentui/font-icons-mdl2', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/public-docsite-resources', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/public-docsite-setup', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/react-docsite-components', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/react-examples', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/react-experiments', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/fluent2-theme', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/react-file-type-icons', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/react-icons-mdl2', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/react-icons-mdl2-branded', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/theme', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/theme-samples', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/common-styles', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/react-monaco-editor', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/public-docsite', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/scripts-lint-staged': [ + { source: '@fluentui/scripts-lint-staged', target: '@fluentui/scripts-monorepo', type: 'static' }, + ], + '@fluentui/scripts-generators': [ + { source: '@fluentui/scripts-generators', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/scripts-generators', target: '@fluentui/scripts-projects-test', type: 'static' }, + ], + '@fluentui/scripts-triage-bot': [], + '@fluentui/utilities': [ + { source: '@fluentui/utilities', target: '@fluentui/dom-utilities', type: 'static' }, + { source: '@fluentui/utilities', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/utilities', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/utilities', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/utilities', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, + { source: '@fluentui/utilities', target: '@fluentui/test-utilities', type: 'static' }, + { source: '@fluentui/utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/utilities', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/utilities', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/storybook': [ + { source: '@fluentui/storybook', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/storybook', target: '@fluentui/theme', type: 'static' }, + { source: '@fluentui/storybook', target: '@fluentui/azure-themes', type: 'static' }, + { source: '@fluentui/storybook', target: '@fluentui/theme-samples', type: 'static' }, + { source: '@fluentui/storybook', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/storybook', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/scripts-puppeteer': [], + '@fluentui/codemods': [ + { source: '@fluentui/codemods', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/codemods', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/codemods', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/scripts-beachball': [ + { source: '@fluentui/scripts-beachball', target: '@fluentui/scripts-github', type: 'static' }, + { source: '@fluentui/scripts-beachball', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/scripts-beachball', target: '@fluentui/scripts-ts-node', type: 'static' }, + ], + '@fluentui/api-docs': [ + { source: '@fluentui/api-docs', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/api-docs', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/scripts-executors': [ + { source: '@fluentui/scripts-executors', target: '@fluentui/scripts-utils', type: 'static' }, + { source: '@fluentui/scripts-executors', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/scripts-executors', target: '@fluentui/scripts-prettier', type: 'static' }, + ], + '@fluentui/scripts-storybook': [ + { source: '@fluentui/scripts-storybook', target: '@fluentui/scripts-monorepo', type: 'static' }, + ], + '@fluentui/ssr-tests-v9': [ + { source: '@fluentui/ssr-tests-v9', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/ssr-tests-v9', target: '@fluentui/react-utilities', type: 'static' }, + { source: '@fluentui/ssr-tests-v9', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/ssr-tests-v9', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/ssr-tests-v9', target: '@fluentui/scripts-storybook', type: 'static' }, + ], + '@fluentui/scripts-test-ssr': [ + { source: '@fluentui/scripts-test-ssr', target: '@fluentui/scripts-puppeteer', type: 'static' }, + { source: '@fluentui/scripts-test-ssr', target: '@fluentui/scripts-ts-node', type: 'static' }, + ], + '@fluentui/stress-test': [ + { source: '@fluentui/stress-test', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/stress-test', target: '@fluentui/react-components', type: 'static' }, + { source: '@fluentui/stress-test', target: '@fluentui/web-components', type: 'static' }, + { source: '@fluentui/stress-test', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/stress-test', target: '@fluentui/scripts-storybook', type: 'static' }, + ], + '@fluentui/scripts-prettier': [ + { source: '@fluentui/scripts-prettier', target: '@fluentui/scripts-monorepo', type: 'static' }, + ], + '@fluentui/scripts-monorepo': [ + { source: '@fluentui/scripts-monorepo', target: '@fluentui/scripts-utils', type: 'static' }, + ], + '@fluentui/scripts-dangerjs': [ + { source: '@fluentui/scripts-dangerjs', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/scripts-dangerjs', target: '@fluentui/scripts-utils', type: 'static' }, + ], + '@fluentui/scripts-webpack': [ + { source: '@fluentui/scripts-webpack', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/scripts-webpack', target: '@fluentui/scripts-utils', type: 'static' }, + ], + '@fluentui/scripts-ts-node': [], + '@fluentui/scripts-cypress': [], + '@fluentui/tokens': [ + { source: '@fluentui/tokens', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/tokens', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/tokens', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/perf-test': [ + { source: '@fluentui/perf-test', target: '@fluentui/scripts-perf-test-flamegrill', type: 'static' }, + { source: '@fluentui/perf-test', target: '@fluentui/example-data', type: 'static' }, + { source: '@fluentui/perf-test', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/perf-test', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/perf-test', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/perf-test', target: '@fluentui/scripts-storybook', type: 'static' }, + ], + '@fluentui/ssr-tests': [ + { source: '@fluentui/ssr-tests', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/ssr-tests', target: '@fluentui/public-docsite-resources', type: 'static' }, + { source: '@fluentui/ssr-tests', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/ssr-tests', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/react': [ + { source: '@fluentui/react', target: '@fluentui/date-time-utilities', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/foundation-legacy', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/font-icons-mdl2', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/react-focus', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/react-hooks', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/react-portal-compat-context', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/react-window-provider', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/style-utilities', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/theme', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/common-styles', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/example-data', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/react-conformance', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/test-utilities', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/webpack-utilities', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/scripts-tasks', type: 'static' }, + { source: '@fluentui/react', target: '@fluentui/scripts-webpack', type: 'static' }, + ], + '@fluentui/scripts-github': [], + '@fluentui/theme': [ + { source: '@fluentui/theme', target: '@fluentui/merge-styles', type: 'static' }, + { source: '@fluentui/theme', target: '@fluentui/utilities', type: 'static' }, + { source: '@fluentui/theme', target: '@fluentui/set-version', type: 'static' }, + { source: '@fluentui/theme', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/theme', target: '@fluentui/scripts-api-extractor', type: 'static' }, + { source: '@fluentui/theme', target: '@fluentui/scripts-jest', type: 'static' }, + { source: '@fluentui/theme', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/vr-tests': [ + { source: '@fluentui/vr-tests', target: '@fluentui/example-data', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/font-icons-mdl2', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/react', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/react-experiments', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/react-hooks', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/react-icons-mdl2', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/storybook', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/react-charting', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/eslint-plugin', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/scripts-storybook', type: 'static' }, + { source: '@fluentui/vr-tests', target: '@fluentui/scripts-tasks', type: 'static' }, + ], + '@fluentui/scripts-tasks': [ + { source: '@fluentui/scripts-tasks', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/scripts-tasks', target: '@fluentui/scripts-utils', type: 'static' }, + { source: '@fluentui/scripts-tasks', target: '@fluentui/scripts-prettier', type: 'static' }, + ], + '@fluentui/scripts-utils': [], + '@fluentui/scripts-babel': [], + '@fluentui/scripts-gulp': [ + { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-utils', type: 'static' }, + { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-prettier', type: 'static' }, + { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-puppeteer', type: 'static' }, + { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-babel', type: 'static' }, + { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-projects-test', type: 'static' }, + ], + '@fluentui/scripts-jest': [ + { source: '@fluentui/scripts-jest', target: '@fluentui/scripts-monorepo', type: 'static' }, + { source: '@fluentui/scripts-jest', target: '@fluentui/scripts-utils', type: 'static' }, + ], + '@fluentui/typings': [], + }, + fileMap: { + '@fluentui/react-nav-preview': [ + { file: 'packages/react-components/react-nav-preview/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-nav-preview/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-nav-preview/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-nav-preview/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-nav-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-nav-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-nav-preview/LICENSE', hash: '3088430307979696734' }, + { file: 'packages/react-components/react-nav-preview/README.md', hash: '6756387922919562077' }, + { file: 'packages/react-components/react-nav-preview/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-nav-preview/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-nav-preview/etc/react-nav-preview.api.md', hash: '9876017806119506379' }, + { file: 'packages/react-components/react-nav-preview/jest.config.js', hash: '15169909463829389022' }, + { file: 'packages/react-components/react-nav-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-nav-preview/package.json', + hash: '7915169346457060300', + deps: [ + '@fluentui/react-context-selector', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-jsx-runtime', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-nav-preview/project.json', hash: '7707482133573803757' }, + { file: 'packages/react-components/react-nav-preview/src/Nav.ts', hash: '15226117353876273492' }, + { file: 'packages/react-components/react-nav-preview/src/NavCategory.ts', hash: '5434715511121912691' }, + { file: 'packages/react-components/react-nav-preview/src/NavSubItem.ts', hash: '3915242774151390182' }, + { file: 'packages/react-components/react-nav-preview/src/NavSubItemGroup.ts', hash: '8938240070373757142' }, + { + file: 'packages/react-components/react-nav-preview/src/components/Nav/Nav.test.tsx', + hash: '158053486174122653', + }, + { file: 'packages/react-components/react-nav-preview/src/components/Nav/Nav.tsx', hash: '18218270146485422609' }, + { + file: 'packages/react-components/react-nav-preview/src/components/Nav/Nav.types.ts', + hash: '10929201366834975573', + }, + { file: 'packages/react-components/react-nav-preview/src/components/Nav/index.ts', hash: '4485693392122920731' }, + { + file: 'packages/react-components/react-nav-preview/src/components/Nav/renderNav.tsx', + hash: '7230375357800654130', + }, + { file: 'packages/react-components/react-nav-preview/src/components/Nav/useNav.ts', hash: '8897080659886028628' }, + { + file: 'packages/react-components/react-nav-preview/src/components/Nav/useNavStyles.styles.ts', + hash: '4834411169954684266', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.test.tsx', + hash: '16413704721569380745', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.tsx', + hash: '1720640811070915642', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.types.ts', + hash: '10098374413585683092', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategory/index.ts', + hash: '8839475292241642578', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategory/renderNavCategory.tsx', + hash: '16804799807584464526', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategory.ts', + hash: '6494678626284114753', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategoryStyles.styles.ts', + hash: '12633430787449097937', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.tsx', + hash: '5847751961393315587', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.types.ts', + hash: '7891776628441432322', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts', + hash: '15928452925752890833', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/renderNavCategoryItem.tsx', + hash: '15736603289382147000', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.styles.ts', + hash: '15146860763036639062', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.ts', + hash: '9680309884423010271', + }, + { file: 'packages/react-components/react-nav-preview/src/components/NavContext.ts', hash: '4576616369669494997' }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavContext.types.ts', + hash: '15231348000793781746', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.test.tsx', + hash: '14827165463744239965', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.tsx', + hash: '6052519162523369385', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.types.ts', + hash: '3032984695700474774', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/index.ts', + hash: '9427525485211945814', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/renderNavSubItem.tsx', + hash: '4410008557955283003', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItem.ts', + hash: '4983794637195202580', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItemStyles.styles.ts', + hash: '17902598759527383244', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.test.tsx', + hash: '17591529711307606773', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.tsx', + hash: '3095811377236672166', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.types.ts', + hash: '16579070003339013595', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts', + hash: '12507449088354686105', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/renderNavSubItemGroup.tsx', + hash: '9750078084299244923', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroup.ts', + hash: '17877101108238726429', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.ts', + hash: '17570522853172330214', + }, + { + file: 'packages/react-components/react-nav-preview/src/components/useNavContextValues.tsx', + hash: '11962765496813473933', + }, + { file: 'packages/react-components/react-nav-preview/src/index.ts', hash: '17244185278957544199' }, + { file: 'packages/react-components/react-nav-preview/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-nav-preview/stories/Nav/NavBestPractices.md', + hash: '13132854725403121719', + }, + { + file: 'packages/react-components/react-nav-preview/stories/Nav/NavDefault.stories.tsx', + hash: '10523927771920967635', + }, + { + file: 'packages/react-components/react-nav-preview/stories/Nav/NavDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-nav-preview/stories/Nav/NavWithDefaultSelection.stories.tsx', + hash: '15867010514756758396', + }, + { + file: 'packages/react-components/react-nav-preview/stories/Nav/index.stories.tsx', + hash: '15202140072825373679', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryBestPractices.md', + hash: '5558067163628176900', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDefault.stories.tsx', + hash: '7778044457764643490', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavCategory/index.stories.tsx', + hash: '9437617484325163212', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemBestPractices.md', + hash: '13132854725403121719', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemDefault.stories.tsx', + hash: '11220194927216964124', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavSubItem/index.stories.tsx', + hash: '7866030612555590358', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupBestPractices.md', + hash: '5558067163628176900', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDefault.stories.tsx', + hash: '984192011107987187', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-nav-preview/stories/NavSubItemGroup/index.stories.tsx', + hash: '17887561937213764921', + }, + { file: 'packages/react-components/react-nav-preview/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-nav-preview/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-nav-preview/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-charting': [ + { file: 'packages/react-charting/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/react-charting/.npmignore', hash: '10443000086742372933' }, + { file: 'packages/react-charting/CHANGELOG.json', hash: '10337539383484491208' }, + { file: 'packages/react-charting/CHANGELOG.md', hash: '2897961143973799288' }, + { file: 'packages/react-charting/LICENSE', hash: '5841135995716851283' }, + { file: 'packages/react-charting/README.md', hash: '9832175539157864072' }, + { file: 'packages/react-charting/UnitTests/AreaChartUT.test.tsx', hash: '3269270683542684159' }, + { file: 'packages/react-charting/UnitTests/GroupedVerticalBarChartUT.test.tsx', hash: '4207344687334815004' }, + { file: 'packages/react-charting/UnitTests/HorizontalBarChartUT.test.tsx', hash: '14364237786286584260' }, + { file: 'packages/react-charting/UnitTests/HorizontalBarChartWithAxisUT.test.tsx', hash: '396547921618780460' }, + { file: 'packages/react-charting/UnitTests/LineChartUT.test.tsx', hash: '12769882572288793601' }, + { file: 'packages/react-charting/UnitTests/MultiStackedBarChartUT.test.tsx', hash: '14188312585490958332' }, + { file: 'packages/react-charting/UnitTests/StackedBarChartUT.test.tsx', hash: '14028248580129783923' }, + { file: 'packages/react-charting/UnitTests/VerticalBarChartUT.test.tsx', hash: '13015857820296401822' }, + { file: 'packages/react-charting/UnitTests/VerticalStackedBarChartUT.test.tsx', hash: '12113770954987743955' }, + { + file: 'packages/react-charting/UnitTests/__snapshots__/VerticalBarChartUT.test.tsx.snap', + hash: '13857412498194334317', + }, + { file: 'packages/react-charting/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/react-charting/config/pre-copy.json', hash: '5645154898618432291' }, + { file: 'packages/react-charting/config/setup-env.js', hash: '13680425379733665451' }, + { file: 'packages/react-charting/config/tests.js', hash: '5180650933005958887' }, + { file: 'packages/react-charting/docs/TechnicalDetails.md', hash: '9068612762267236502' }, + { file: 'packages/react-charting/docs/TestPlans/AreaChart/ComponentTests.md', hash: '14808774995763296983' }, + { file: 'packages/react-charting/docs/TestPlans/BasicDonutChart.png', hash: '8407699490179041368' }, + { file: 'packages/react-charting/docs/TestPlans/DonutChart/ComponentTests.md', hash: '9978601866171924879' }, + { file: 'packages/react-charting/docs/TestPlans/GaugeChart/ComponentTests.md', hash: '310841682701784075' }, + { + file: 'packages/react-charting/docs/TestPlans/GroupedVerticalBarChart/ComponentTests.md', + hash: '12842079364814684', + }, + { + file: 'packages/react-charting/docs/TestPlans/HorizontalBarChart/ComponentTests.md', + hash: '11442832876400028967', + }, + { file: 'packages/react-charting/docs/TestPlans/HorizontalBarChart/UnitTests.md', hash: '10509359828932691467' }, + { + file: 'packages/react-charting/docs/TestPlans/HorizontalBarChartWithAxis/ComponentTests.md', + hash: '3270467057658799047', + }, + { + file: 'packages/react-charting/docs/TestPlans/HorizontalBarChartWithAxis/UnitTests.md', + hash: '8883796341179029573', + }, + { file: 'packages/react-charting/docs/TestPlans/LineChart/ComponentTests.md', hash: '7011218632953601663' }, + { + file: 'packages/react-charting/docs/TestPlans/MultiStackedBarChart/componentTests.md', + hash: '16030515404603127361', + }, + { file: 'packages/react-charting/docs/TestPlans/SankeyChart/ComponentTests.md', hash: '5523536025954683769' }, + { + file: 'packages/react-charting/docs/TestPlans/StackedBarChart/ComponentTests.md', + hash: '11182984734598181536', + }, + { file: 'packages/react-charting/docs/TestPlans/TestingGuide.md', hash: '16025073943200425017' }, + { file: 'packages/react-charting/docs/TestPlans/Utilities/UnitTests.md', hash: '3088628899195709632' }, + { + file: 'packages/react-charting/docs/TestPlans/VerticalBarChart/ComponentTests.md', + hash: '1432440988369222322', + }, + { + file: 'packages/react-charting/docs/TestPlans/VerticalStackedBarChart/ComponentTests.md', + hash: '8333002027037114092', + }, + { file: 'packages/react-charting/docs/TestingStrategy.md', hash: '8717563894637714579' }, + { file: 'packages/react-charting/docs/colors.md', hash: '7347026905651813323' }, + { file: 'packages/react-charting/docs/images/TestingStrategy/Coverage.png', hash: '8082557619038467829' }, + { file: 'packages/react-charting/docs/images/TestingStrategy/DonutCoverage.png', hash: '7002143582449968195' }, + { + file: 'packages/react-charting/docs/images/TestingStrategy/TestingStrategy1.png', + hash: '11991739759037126570', + }, + { + file: 'packages/react-charting/docs/images/TestingStrategy/TestingStrategy2.png', + hash: '11433090512127547288', + }, + { + file: 'packages/react-charting/docs/images/TestingStrategy/TestingStrategy3.png', + hash: '16609601640683868044', + }, + { file: 'packages/react-charting/docs/images/colors/1.png', hash: '201676099951062663' }, + { file: 'packages/react-charting/docs/images/colors/2.png', hash: '10654733953245985134' }, + { file: 'packages/react-charting/docs/images/colors/3.png', hash: '15688568969133689415' }, + { file: 'packages/react-charting/docs/images/colors/4.png', hash: '13996815610302054930' }, + { file: 'packages/react-charting/docs/images/colors/5.png', hash: '4015781559900671761' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/1.png', hash: '16183317420418679061' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/10.png', hash: '236882421274026225' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/11.png', hash: '2725308868258316006' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/2.png', hash: '7719706811747650766' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/3.png', hash: '14939467763985185821' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/4.png', hash: '129590479685383509' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/5.png', hash: '11049231658598955416' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/6.png', hash: '5338725798371591663' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/7.png', hash: '6382351246325415711' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/8.png', hash: '13344871051125951407' }, + { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/9.png', hash: '2749678903073188113' }, + { file: 'packages/react-charting/docs/implementing-2-to-1-spacing.md', hash: '7322196383453923002' }, + { file: 'packages/react-charting/etc/react-charting.api.md', hash: '882926847407876595' }, + { file: 'packages/react-charting/jest.config.js', hash: '3098401836869255977' }, + { file: 'packages/react-charting/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-charting/package.json', + hash: '4788671312083472529', + deps: [ + '@fluentui/react-focus', + '@fluentui/theme-samples', + 'npm:@microsoft/load-themed-styles', + 'npm:@types/d3-array', + 'npm:@types/d3-axis', + 'npm:@types/d3-format', + 'npm:@types/d3-hierarchy', + 'npm:@types/d3-sankey', + 'npm:@types/d3-scale', + 'npm:@types/d3-selection', + 'npm:@types/d3-shape', + 'npm:@types/d3-time-format', + 'npm:@types/d3-time', + '@fluentui/set-version', + 'npm:d3-array', + 'npm:d3-axis', + 'npm:d3-format', + 'npm:d3-hierarchy', + 'npm:d3-sankey', + 'npm:d3-scale', + 'npm:d3-selection', + 'npm:d3-shape', + 'npm:d3-time-format', + 'npm:d3-time', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/react', + 'npm:@types/react-addons-test-utils', + '@fluentui/jest-serializer-merge-styles', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:jest-canvas-mock', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-charting/project.json', hash: '8731393738633682151' }, + { file: 'packages/react-charting/src/AreaChart.ts', hash: '15073804980104349351' }, + { file: 'packages/react-charting/src/CartesianChart.ts', hash: '10891466127503117236' }, + { file: 'packages/react-charting/src/DonutChart.ts', hash: '7490426087311823403' }, + { file: 'packages/react-charting/src/GaugeChart.ts', hash: '4226033961047400976' }, + { file: 'packages/react-charting/src/GroupedVerticalBarChart.ts', hash: '15489797924433052709' }, + { file: 'packages/react-charting/src/HeatMapChart.ts', hash: '15435667564912730853' }, + { file: 'packages/react-charting/src/HorizontalBarChart.ts', hash: '10237813703175935798' }, + { file: 'packages/react-charting/src/HorizontalBarChartWithAxis.ts', hash: '12029490792828532534' }, + { file: 'packages/react-charting/src/Legends.ts', hash: '16460403896873996968' }, + { file: 'packages/react-charting/src/LineChart.ts', hash: '16659807295692186177' }, + { file: 'packages/react-charting/src/PieChart.ts', hash: '16778366934887091872' }, + { file: 'packages/react-charting/src/SankeyChart.ts', hash: '13055558930716559295' }, + { file: 'packages/react-charting/src/Sparkline.ts', hash: '5671805886276599207' }, + { file: 'packages/react-charting/src/StackedBarChart.ts', hash: '12980182364190103589' }, + { file: 'packages/react-charting/src/Styling.ts', hash: '8123475635573030392' }, + { file: 'packages/react-charting/src/TreeChart.ts', hash: '1109041212000572589' }, + { file: 'packages/react-charting/src/Utilities.ts', hash: '15929919672659535220' }, + { file: 'packages/react-charting/src/VerticalBarChart.ts', hash: '16278638938827171251' }, + { file: 'packages/react-charting/src/VerticalStackedBarChart.ts', hash: '9129833978468491495' }, + { file: 'packages/react-charting/src/components/AreaChart/AreaChart.base.tsx', hash: '4093034690624345489' }, + { file: 'packages/react-charting/src/components/AreaChart/AreaChart.styles.ts', hash: '12408836760076335613' }, + { file: 'packages/react-charting/src/components/AreaChart/AreaChart.test.tsx', hash: '8652410830145203690' }, + { file: 'packages/react-charting/src/components/AreaChart/AreaChart.tsx', hash: '6835702614777497887' }, + { file: 'packages/react-charting/src/components/AreaChart/AreaChart.types.ts', hash: '10272504202604440056' }, + { file: 'packages/react-charting/src/components/AreaChart/AreaChartRTL.test.tsx', hash: '4470895609937221769' }, + { + file: 'packages/react-charting/src/components/AreaChart/__snapshots__/AreaChart.test.tsx.snap', + hash: '4845588270529473456', + }, + { + file: 'packages/react-charting/src/components/AreaChart/__snapshots__/AreaChartRTL.test.tsx.snap', + hash: '2471985332886744964', + }, + { file: 'packages/react-charting/src/components/AreaChart/index.ts', hash: '5251573637088898864' }, + { + file: 'packages/react-charting/src/components/CommonComponents/CartesianChart.base.tsx', + hash: '16404912240725708681', + }, + { + file: 'packages/react-charting/src/components/CommonComponents/CartesianChart.styles.ts', + hash: '761592581144672563', + }, + { + file: 'packages/react-charting/src/components/CommonComponents/CartesianChart.tsx', + hash: '10250008309232000423', + }, + { + file: 'packages/react-charting/src/components/CommonComponents/CartesianChart.types.ts', + hash: '17814415498036662069', + }, + { file: 'packages/react-charting/src/components/CommonComponents/index.ts', hash: '18427500395577533163' }, + { file: 'packages/react-charting/src/components/DonutChart/Arc/Arc.styles.ts', hash: '7895309768491440724' }, + { file: 'packages/react-charting/src/components/DonutChart/Arc/Arc.tsx', hash: '2330806458474842227' }, + { file: 'packages/react-charting/src/components/DonutChart/Arc/Arc.types.ts', hash: '16065720622755568506' }, + { file: 'packages/react-charting/src/components/DonutChart/Arc/index.ts', hash: '1900034318969066403' }, + { file: 'packages/react-charting/src/components/DonutChart/DonutChart.base.tsx', hash: '10268361611138934570' }, + { file: 'packages/react-charting/src/components/DonutChart/DonutChart.styles.ts', hash: '11358002037113474527' }, + { file: 'packages/react-charting/src/components/DonutChart/DonutChart.test.tsx', hash: '5958743739940266923' }, + { file: 'packages/react-charting/src/components/DonutChart/DonutChart.tsx', hash: '7275902301021404929' }, + { file: 'packages/react-charting/src/components/DonutChart/DonutChart.types.ts', hash: '4516278623257219501' }, + { + file: 'packages/react-charting/src/components/DonutChart/DonutChartRTL.test.tsx', + hash: '14322898289149593579', + }, + { file: 'packages/react-charting/src/components/DonutChart/Pie/Pie.styles.ts', hash: '10152053319232122101' }, + { file: 'packages/react-charting/src/components/DonutChart/Pie/Pie.tsx', hash: '11614740086900193123' }, + { file: 'packages/react-charting/src/components/DonutChart/Pie/Pie.types.ts', hash: '11125249214832061206' }, + { file: 'packages/react-charting/src/components/DonutChart/Pie/index.ts', hash: '10239719749643656780' }, + { + file: 'packages/react-charting/src/components/DonutChart/__snapshots__/DonutChart.test.tsx.snap', + hash: '9016515451622476991', + }, + { + file: 'packages/react-charting/src/components/DonutChart/__snapshots__/DonutChartRTL.test.tsx.snap', + hash: '17036608489000678631', + }, + { file: 'packages/react-charting/src/components/DonutChart/index.ts', hash: '806476801011512331' }, + { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.base.tsx', hash: '16183101230137736688' }, + { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.styles.ts', hash: '12584121085851326284' }, + { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.test.tsx', hash: '10662024859942869001' }, + { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.tsx', hash: '865686789344357921' }, + { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.types.ts', hash: '4362068369519411803' }, + { + file: 'packages/react-charting/src/components/GaugeChart/__snapshots__/GaugeChart.test.tsx.snap', + hash: '11405406597359121046', + }, + { file: 'packages/react-charting/src/components/GaugeChart/index.ts', hash: '4092070756489945207' }, + { + file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.base.tsx', + hash: '14453233103862816273', + }, + { + file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.styles.ts', + hash: '12477643478465004864', + }, + { + file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.test.tsx', + hash: '9445138471362825733', + }, + { + file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.tsx', + hash: '547590682698808044', + }, + { + file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.types.tsx', + hash: '12889683239252933321', + }, + { + file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChartRTL.test.tsx', + hash: '10525872028168114118', + }, + { + file: 'packages/react-charting/src/components/GroupedVerticalBarChart/__snapshots__/GroupedVerticalBarChart.test.tsx.snap', + hash: '8040317183569723433', + }, + { + file: 'packages/react-charting/src/components/GroupedVerticalBarChart/__snapshots__/GroupedVerticalBarChartRTL.test.tsx.snap', + hash: '299674228253636226', + }, + { file: 'packages/react-charting/src/components/GroupedVerticalBarChart/index.ts', hash: '13964524092875310611' }, + { + file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.base.tsx', + hash: '14736055171474099514', + }, + { + file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.styles.ts', + hash: '3628619072673059761', + }, + { + file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.test.tsx', + hash: '13713221853867964395', + }, + { file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.ts', hash: '16716363014827473773' }, + { + file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.types.ts', + hash: '3674068218531855343', + }, + { + file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChartRTL.test.tsx', + hash: '17060242443347982036', + }, + { + file: 'packages/react-charting/src/components/HeatMapChart/__snapshots__/HeatMapChart.test.tsx.snap', + hash: '6387895552680780102', + }, + { + file: 'packages/react-charting/src/components/HeatMapChart/__snapshots__/HeatMapChartRTL.test.tsx.snap', + hash: '16624646934983480883', + }, + { file: 'packages/react-charting/src/components/HeatMapChart/index.ts', hash: '13482718997286729011' }, + { + file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.base.tsx', + hash: '13566135812259845013', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.styles.ts', + hash: '4803222885505764720', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.test.tsx', + hash: '174550185337193462', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.tsx', + hash: '167672050024112358', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.types.ts', + hash: '18260154883030747993', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChartRTL.test.tsx', + hash: '3109701644691445553', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChart/__snapshots__/HorizontalBarChart.test.tsx.snap', + hash: '14352873482900009557', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChart/__snapshots__/HorizontalBarChartRTL.test.tsx.snap', + hash: '6955011355447270715', + }, + { file: 'packages/react-charting/src/components/HorizontalBarChart/index.ts', hash: '9333962282124191662' }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.base.tsx', + hash: '1693916576160075498', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.styles.ts', + hash: '6304783213286072684', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.test.tsx', + hash: '4341461412662372767', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.tsx', + hash: '12967004230463593214', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.types.ts', + hash: '16087732441245592913', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxisRTL.test.tsx', + hash: '9255529074178961905', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/__snapshots__/HorizontalBarChartWithAxis.test.tsx.snap', + hash: '17394200814316753927', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/__snapshots__/HorizontalBarChartWithAxisRTL.test.tsx.snap', + hash: '8510830069076786321', + }, + { + file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/index.ts', + hash: '2159216284678808164', + }, + { file: 'packages/react-charting/src/components/Legends/Legends.base.tsx', hash: '8336604979277864868' }, + { file: 'packages/react-charting/src/components/Legends/Legends.styles.ts', hash: '4390445994177513641' }, + { file: 'packages/react-charting/src/components/Legends/Legends.test.tsx', hash: '12838721524269860' }, + { file: 'packages/react-charting/src/components/Legends/Legends.tsx', hash: '17763042590237256403' }, + { file: 'packages/react-charting/src/components/Legends/Legends.types.ts', hash: '10719772021828530616' }, + { + file: 'packages/react-charting/src/components/Legends/__snapshots__/Legends.test.tsx.snap', + hash: '7042275020175287303', + }, + { file: 'packages/react-charting/src/components/Legends/index.ts', hash: '11962396932209767202' }, + { file: 'packages/react-charting/src/components/Legends/shape.tsx', hash: '9410159346354247531' }, + { file: 'packages/react-charting/src/components/LineChart/LineChart.base.tsx', hash: '1743467768340726551' }, + { file: 'packages/react-charting/src/components/LineChart/LineChart.styles.ts', hash: '4772105040357989417' }, + { file: 'packages/react-charting/src/components/LineChart/LineChart.test.tsx', hash: '4473160801976779354' }, + { file: 'packages/react-charting/src/components/LineChart/LineChart.tsx', hash: '17773336946261757726' }, + { file: 'packages/react-charting/src/components/LineChart/LineChart.types.ts', hash: '10257967280247755900' }, + { file: 'packages/react-charting/src/components/LineChart/LineChartRTL.test.tsx', hash: '7383273194652858704' }, + { + file: 'packages/react-charting/src/components/LineChart/__snapshots__/LineChart.test.tsx.snap', + hash: '2565168848531218728', + }, + { + file: 'packages/react-charting/src/components/LineChart/__snapshots__/LineChartRTL.test.tsx.snap', + hash: '16961247164859363448', + }, + { + file: 'packages/react-charting/src/components/LineChart/eventAnnotation/EventAnnotation.tsx', + hash: '1448438468217299215', + }, + { + file: 'packages/react-charting/src/components/LineChart/eventAnnotation/LabelLink.tsx', + hash: '4839885737511228824', + }, + { + file: 'packages/react-charting/src/components/LineChart/eventAnnotation/Textbox.tsx', + hash: '5832348627714078393', + }, + { file: 'packages/react-charting/src/components/LineChart/index.ts', hash: '4650408877452069117' }, + { file: 'packages/react-charting/src/components/PieChart/Arc/Arc.styles.ts', hash: '13106112677766064183' }, + { file: 'packages/react-charting/src/components/PieChart/Arc/Arc.tsx', hash: '10390303130266047054' }, + { file: 'packages/react-charting/src/components/PieChart/Arc/Arc.types.ts', hash: '3997819974378711901' }, + { file: 'packages/react-charting/src/components/PieChart/Arc/index.ts', hash: '1900034318969066403' }, + { file: 'packages/react-charting/src/components/PieChart/Pie/Pie.styles.ts', hash: '11381302664912127439' }, + { file: 'packages/react-charting/src/components/PieChart/Pie/Pie.tsx', hash: '5623368322288978473' }, + { file: 'packages/react-charting/src/components/PieChart/Pie/Pie.types.ts', hash: '1875472874734088782' }, + { file: 'packages/react-charting/src/components/PieChart/Pie/index.ts', hash: '10239719749643656780' }, + { file: 'packages/react-charting/src/components/PieChart/PieChart.base.tsx', hash: '12921994545695521033' }, + { file: 'packages/react-charting/src/components/PieChart/PieChart.styles.ts', hash: '11321424857209075565' }, + { file: 'packages/react-charting/src/components/PieChart/PieChart.test.tsx', hash: '11677544683436052134' }, + { file: 'packages/react-charting/src/components/PieChart/PieChart.tsx', hash: '4527556264484607554' }, + { file: 'packages/react-charting/src/components/PieChart/PieChart.types.ts', hash: '15623409056434247426' }, + { file: 'packages/react-charting/src/components/PieChart/PieChartRTL.test.tsx', hash: '16233211447376373011' }, + { + file: 'packages/react-charting/src/components/PieChart/__snapshots__/PieChart.test.tsx.snap', + hash: '4016198114503601082', + }, + { + file: 'packages/react-charting/src/components/PieChart/__snapshots__/PieChartRTL.test.tsx.snap', + hash: '8413701594029012718', + }, + { file: 'packages/react-charting/src/components/PieChart/index.ts', hash: '5955166752264931769' }, + { file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.base.tsx', hash: '4238588452395692138' }, + { + file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.styles.ts', + hash: '11368532189204175738', + }, + { file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.test.tsx', hash: '16134333975133506558' }, + { file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.tsx', hash: '9289951482328354569' }, + { file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.types.ts', hash: '15014298009889412684' }, + { + file: 'packages/react-charting/src/components/SankeyChart/SankeyChartRTL.test.tsx', + hash: '868790866629945990', + }, + { + file: 'packages/react-charting/src/components/SankeyChart/__snapshots__/SankeyChart.test.tsx.snap', + hash: '4049212962907979931', + }, + { + file: 'packages/react-charting/src/components/SankeyChart/__snapshots__/SankeyChartRTL.test.tsx.snap', + hash: '5700523192183358557', + }, + { file: 'packages/react-charting/src/components/SankeyChart/index.ts', hash: '13870984042315143866' }, + { file: 'packages/react-charting/src/components/Sparkline/Sparkline.base.tsx', hash: '7967151691860791302' }, + { file: 'packages/react-charting/src/components/Sparkline/Sparkline.styles.ts', hash: '2202640113884915397' }, + { file: 'packages/react-charting/src/components/Sparkline/Sparkline.test.tsx', hash: '8468249823093830932' }, + { file: 'packages/react-charting/src/components/Sparkline/Sparkline.tsx', hash: '8843740910926078940' }, + { file: 'packages/react-charting/src/components/Sparkline/Sparkline.types.ts', hash: '8837031610239272804' }, + { file: 'packages/react-charting/src/components/Sparkline/SparklineRTL.test.tsx', hash: '17767147002141960667' }, + { + file: 'packages/react-charting/src/components/Sparkline/__snapshots__/Sparkline.test.tsx.snap', + hash: '18168444434486593058', + }, + { + file: 'packages/react-charting/src/components/Sparkline/__snapshots__/SparklineRTL.test.tsx.snap', + hash: '17716551567309776610', + }, + { file: 'packages/react-charting/src/components/Sparkline/index.ts', hash: '9268351487690962554' }, + { + file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.base.tsx', + hash: '16352182103019411834', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.styles.ts', + hash: '14038483678757699445', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.test.tsx', + hash: '5169005374924869809', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.tsx', + hash: '6725276213177702647', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.types.ts', + hash: '431656116944400988', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChartRTL.test.tsx', + hash: '14736367081219831047', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.base.tsx', + hash: '2927471067626698909', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.styles.ts', + hash: '11603146486475755241', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.test.tsx', + hash: '5336773472540129552', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.tsx', + hash: '4436183465389462436', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.types.ts', + hash: '10981829443029230848', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChartRTL.test.tsx', + hash: '3869922963895117385', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/__snapshots__/MultiStackedBarChart.test.tsx.snap', + hash: '8446879553536508446', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/__snapshots__/MultiStackedBarChartRTL.test.tsx.snap', + hash: '16448004251364457038', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/__snapshots__/StackedBarChart.test.tsx.snap', + hash: '7252639629933796491', + }, + { + file: 'packages/react-charting/src/components/StackedBarChart/__snapshots__/StackedBarChartRTL.test.tsx.snap', + hash: '9503984772139484704', + }, + { file: 'packages/react-charting/src/components/StackedBarChart/index.ts', hash: '15578486466730932711' }, + { file: 'packages/react-charting/src/components/TreeChart/TreeChart.base.tsx', hash: '10623309691759917195' }, + { file: 'packages/react-charting/src/components/TreeChart/TreeChart.md', hash: '5175369282106178614' }, + { file: 'packages/react-charting/src/components/TreeChart/TreeChart.styles.ts', hash: '17861002185407290370' }, + { file: 'packages/react-charting/src/components/TreeChart/TreeChart.test.tsx', hash: '8465420044933020987' }, + { file: 'packages/react-charting/src/components/TreeChart/TreeChart.tsx', hash: '13438935336731785436' }, + { file: 'packages/react-charting/src/components/TreeChart/TreeChart.types.ts', hash: '9815794191923244384' }, + { + file: 'packages/react-charting/src/components/TreeChart/__snapshots__/TreeChart.test.tsx.snap', + hash: '238652132373299106', + }, + { file: 'packages/react-charting/src/components/TreeChart/index.ts', hash: '2826009403154309363' }, + { + file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.base.tsx', + hash: '8336076320828394951', + }, + { + file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.styles.ts', + hash: '6267631615960523739', + }, + { + file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.test.tsx', + hash: '10655231889810527960', + }, + { + file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.tsx', + hash: '3592096069015647087', + }, + { + file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.types.ts', + hash: '1360416350825185069', + }, + { + file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChartRTL.test.tsx', + hash: '17820943011845170989', + }, + { + file: 'packages/react-charting/src/components/VerticalBarChart/__snapshots__/VerticalBarChart.test.tsx.snap', + hash: '13303928231674988916', + }, + { + file: 'packages/react-charting/src/components/VerticalBarChart/__snapshots__/VerticalBarChartRTL.test.tsx.snap', + hash: '8170413271310272463', + }, + { file: 'packages/react-charting/src/components/VerticalBarChart/index.ts', hash: '9875808817767585330' }, + { file: 'packages/react-charting/src/components/VerticalBarChart/react-dom.jsx', hash: '17581154772148716541' }, + { + file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.base.tsx', + hash: '12977454775737757480', + }, + { + file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.styles.ts', + hash: '14229107687470008229', + }, + { + file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.test.tsx', + hash: '4877115899948100379', + }, + { + file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.tsx', + hash: '11335430591061979311', + }, + { + file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.types.ts', + hash: '18235795669827468523', + }, + { + file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChartRTL.test.tsx', + hash: '8425206743206271978', + }, + { + file: 'packages/react-charting/src/components/VerticalStackedBarChart/__snapshots__/VerticalStackedBarChart.test.tsx.snap', + hash: '5222520582796619900', + }, + { + file: 'packages/react-charting/src/components/VerticalStackedBarChart/__snapshots__/VerticalStackedBarChartRTL.test.tsx.snap', + hash: '12764028698035015713', + }, + { file: 'packages/react-charting/src/components/VerticalStackedBarChart/index.ts', hash: '1771243465102915081' }, + { file: 'packages/react-charting/src/index.ts', hash: '16175531709538828878' }, + { file: 'packages/react-charting/src/types/IDataPoint.ts', hash: '12293155624419644902' }, + { file: 'packages/react-charting/src/types/IEventAnnotation.ts', hash: '9553620252041460313' }, + { file: 'packages/react-charting/src/types/ILegendDataItem.ts', hash: '453827769507159528' }, + { file: 'packages/react-charting/src/types/index.ts', hash: '17984122460489873361' }, + { + file: 'packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.base.tsx', + hash: '13613396689005880572', + }, + { + file: 'packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.styles.ts', + hash: '1188961640666456662', + }, + { file: 'packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.tsx', hash: '16352669973586416577' }, + { + file: 'packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.types.ts', + hash: '2731466171182375306', + }, + { file: 'packages/react-charting/src/utilities/ChartHoverCard/index.ts', hash: '18016841014173982452' }, + { file: 'packages/react-charting/src/utilities/FocusableTooltipText.tsx', hash: '8807412423501985193' }, + { file: 'packages/react-charting/src/utilities/SVGTooltipText.tsx', hash: '15758375221240808115' }, + { file: 'packages/react-charting/src/utilities/TestUtility.test.tsx', hash: '13941124207198777159' }, + { file: 'packages/react-charting/src/utilities/UtilityUnitTests.test.ts', hash: '12459529793627868533' }, + { + file: 'packages/react-charting/src/utilities/__snapshots__/UtilityUnitTests.test.ts.snap', + hash: '5180532810822606706', + }, + { file: 'packages/react-charting/src/utilities/colors.ts', hash: '18245164562320937467' }, + { file: 'packages/react-charting/src/utilities/index.ts', hash: '7657671373760345128' }, + { file: 'packages/react-charting/src/utilities/test-data.ts', hash: '5562381519452570272' }, + { file: 'packages/react-charting/src/utilities/utilities.ts', hash: '4711024040231083860' }, + { file: 'packages/react-charting/src/version.ts', hash: '15896380775009511348' }, + { file: 'packages/react-charting/tsconfig.json', hash: '7639079792952290029' }, + { file: 'packages/react-charting/webpack.codepen.config.js', hash: '10315398573475886442' }, + { file: 'packages/react-charting/webpack.config.js', hash: '399209706662205981' }, + { file: 'packages/react-charting/webpack.serve.config.js', hash: '7443825724669908634' }, + ], + '@fluentui/common-styles': [ + { file: 'packages/common-styles/.npmignore', hash: '327479296810377636' }, + { file: 'packages/common-styles/CHANGELOG.json', hash: '273257757340656739' }, + { file: 'packages/common-styles/CHANGELOG.md', hash: '3103668277148981926' }, + { file: 'packages/common-styles/LICENSE', hash: '4436358303113749104' }, + { file: 'packages/common-styles/README.md', hash: '4674155591335065321' }, + { file: 'packages/common-styles/config/pre-copy.json', hash: '13536315415449720583' }, + { file: 'packages/common-styles/just.config.ts', hash: '1976825945203391633' }, + { + file: 'packages/common-styles/package.json', + hash: '17165989050030419928', + deps: ['npm:office-ui-fabric-core', '@fluentui/style-utilities', '@fluentui/scripts-tasks'], + }, + { file: 'packages/common-styles/project.json', hash: '9937167994900158632' }, + { file: 'packages/common-styles/scripts/generateDefaultThemeSassFiles.js', hash: '4930205392535843957' }, + { file: 'packages/common-styles/src/ThemingSass.scss', hash: '6636654454988071435' }, + { file: 'packages/common-styles/src/_common.scss', hash: '6954687516387477622' }, + { file: 'packages/common-styles/src/_constants.scss', hash: '1069234499133074227' }, + { file: 'packages/common-styles/src/_effects.scss', hash: '8102725403571912427' }, + { file: 'packages/common-styles/src/_focusBorder.scss', hash: '10537019636132615427' }, + { file: 'packages/common-styles/src/_highContrast.scss', hash: '17939297006735694085' }, + { file: 'packages/common-styles/src/_i18n.scss', hash: '13301901823299427213' }, + { file: 'packages/common-styles/src/_legacyThemePalette.scss', hash: '6382729561059486833' }, + { file: 'packages/common-styles/src/_semanticSlots.scss', hash: '15520402900566886591' }, + { file: 'packages/common-styles/src/_themeCssVariables.scss', hash: '13486063986535911847' }, + { file: 'packages/common-styles/src/_themeOverrides.scss', hash: '6442887095598285123' }, + { file: 'packages/common-styles/src/_themeVariables.scss', hash: '8347442751634693629' }, + ], + '@fluentui/react-portal-compat': [ + { file: 'packages/react-components/react-portal-compat/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-portal-compat/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-portal-compat/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-portal-compat/CHANGELOG.json', hash: '6310547495553252113' }, + { file: 'packages/react-components/react-portal-compat/CHANGELOG.md', hash: '637890491534529925' }, + { file: 'packages/react-components/react-portal-compat/LICENSE', hash: '2734216586406312338' }, + { file: 'packages/react-components/react-portal-compat/README.md', hash: '13552660956899760048' }, + { + file: 'packages/react-components/react-portal-compat/bundle-size/PortalCompat.fixture.js', + hash: '8933784648953307496', + }, + { file: 'packages/react-components/react-portal-compat/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-portal-compat/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-portal-compat/cypress.config.ts', hash: '17230281421398791592' }, + { + file: 'packages/react-components/react-portal-compat/etc/react-portal-compat.api.md', + hash: '12672897639085221881', + }, + { file: 'packages/react-components/react-portal-compat/jest.config.js', hash: '7201973850221979533' }, + { file: 'packages/react-components/react-portal-compat/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-portal-compat/package.json', + hash: '2242680828023904012', + deps: [ + '@fluentui/react-portal-compat-context', + '@fluentui/react-tabster', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-components', + '@fluentui/react-shared-contexts', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-components/react-portal-compat/project.json', hash: '4163289893969820182' }, + { file: 'packages/react-components/react-portal-compat/src/PortalCompat.cy.tsx', hash: '7224010505980293781' }, + { + file: 'packages/react-components/react-portal-compat/src/PortalCompatProvider.test.tsx', + hash: '4950300713413640133', + }, + { + file: 'packages/react-components/react-portal-compat/src/PortalCompatProvider.tsx', + hash: '6743743402925755352', + }, + { file: 'packages/react-components/react-portal-compat/src/index.ts', hash: '11087139990223362374' }, + { file: 'packages/react-components/react-portal-compat/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-portal-compat/tsconfig.json', hash: '5596071008249197618' }, + { file: 'packages/react-components/react-portal-compat/tsconfig.lib.json', hash: '4109592473830538944' }, + { file: 'packages/react-components/react-portal-compat/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-timepicker-compat': [ + { file: 'packages/react-components/react-timepicker-compat/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-timepicker-compat/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-timepicker-compat/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-timepicker-compat/.storybook/preview.js', hash: '1791378012295456991' }, + { + file: 'packages/react-components/react-timepicker-compat/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-timepicker-compat/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-timepicker-compat/CHANGELOG.json', hash: '11191853975729478248' }, + { file: 'packages/react-components/react-timepicker-compat/CHANGELOG.md', hash: '16788805867679456860' }, + { file: 'packages/react-components/react-timepicker-compat/LICENSE', hash: '5894441072731856187' }, + { file: 'packages/react-components/react-timepicker-compat/README.md', hash: '3680685275246455558' }, + { + file: 'packages/react-components/react-timepicker-compat/bundle-size/TimePicker.fixture.js', + hash: '16899056741609557245', + }, + { + file: 'packages/react-components/react-timepicker-compat/config/api-extractor.json', + hash: '124052868224837692', + }, + { file: 'packages/react-components/react-timepicker-compat/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-timepicker-compat/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-timepicker-compat/docs/Migration.md', hash: '7575090176618687513' }, + { file: 'packages/react-components/react-timepicker-compat/docs/Spec.md', hash: '4434180370389108781' }, + { + file: 'packages/react-components/react-timepicker-compat/etc/react-timepicker-compat.api.md', + hash: '806412966990929511', + }, + { file: 'packages/react-components/react-timepicker-compat/jest.config.js', hash: '12661834635702904638' }, + { file: 'packages/react-components/react-timepicker-compat/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-timepicker-compat/package.json', + hash: '9651141473165413674', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-combobox', + '@fluentui/react-field', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-timepicker-compat/project.json', hash: '12017860013643936176' }, + { file: 'packages/react-components/react-timepicker-compat/src/TimePicker.ts', hash: '8919003633615161634' }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.cy.tsx', + hash: '577280389277013309', + }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.test.tsx', + hash: '4625180512860312676', + }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.tsx', + hash: '6856338812317042222', + }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.types.ts', + hash: '16705913128014134642', + }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/index.ts', + hash: '14317002683791819993', + }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/timeMath.test.ts', + hash: '9610495087449809696', + }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/timeMath.ts', + hash: '16427594297458443598', + }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/useTimePicker.tsx', + hash: '10101090423944398224', + }, + { + file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/useTimePickerStyles.styles.ts', + hash: '9323957650113310013', + }, + { file: 'packages/react-components/react-timepicker-compat/src/index.ts', hash: '15110596364222141948' }, + { + file: 'packages/react-components/react-timepicker-compat/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerBestPractices.md', + hash: '4715016281428560167', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerControlled.md', + hash: '4542577073511108011', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerControlled.stories.tsx', + hash: '12390911091164732918', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerDefault.stories.tsx', + hash: '8034977353354719858', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerDescription.md', + hash: '6543020975323479896', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformCustomParsing.md', + hash: '8328212493981358431', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformCustomParsing.stories.tsx', + hash: '10623384923512153992', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformWithErrorHandling.md', + hash: '9839268275704554451', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformWithErrorHandling.stories.tsx', + hash: '726484920919964579', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerWithDatePicker.stories.tsx', + hash: '16534919271336122442', + }, + { + file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/index.stories.tsx', + hash: '6042911818401085451', + }, + { file: 'packages/react-components/react-timepicker-compat/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-timepicker-compat/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-timepicker-compat/tsconfig.lib.json', hash: '8117551715541039118' }, + { file: 'packages/react-components/react-timepicker-compat/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/style-utilities': [ + { file: 'packages/style-utilities/.eslintrc.json', hash: '777445592424795063' }, + { file: 'packages/style-utilities/.npmignore', hash: '47056201363133096' }, + { file: 'packages/style-utilities/CHANGELOG.json', hash: '16559089319701978657' }, + { file: 'packages/style-utilities/CHANGELOG.md', hash: '11293021336094530000' }, + { file: 'packages/style-utilities/LICENSE', hash: '10631102846389405471' }, + { file: 'packages/style-utilities/README.md', hash: '8785584383498049932' }, + { file: 'packages/style-utilities/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/style-utilities/config/config.json', hash: '492575458105150550' }, + { file: 'packages/style-utilities/config/write-manifests.json', hash: '9493299321895719529' }, + { file: 'packages/style-utilities/etc/style-utilities.api.md', hash: '1346941679710414993' }, + { file: 'packages/style-utilities/jest.config.js', hash: '3240558433730290797' }, + { file: 'packages/style-utilities/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/style-utilities/package.json', + hash: '10054612952908139680', + deps: [ + 'npm:@microsoft/load-themed-styles', + '@fluentui/theme', + '@fluentui/merge-styles', + '@fluentui/set-version', + '@fluentui/utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/style-utilities/project.json', hash: '2354001145725204558' }, + { file: 'packages/style-utilities/src/MergeStyles.ts', hash: '12687567316096870855' }, + { file: 'packages/style-utilities/src/Utilities.ts', hash: '7452799764049456122' }, + { file: 'packages/style-utilities/src/cdn.ts', hash: '2068649209194047104' }, + { file: 'packages/style-utilities/src/classNames/AnimationClassNames.ts', hash: '10911362795623760003' }, + { file: 'packages/style-utilities/src/classNames/ColorClassNames.ts', hash: '15467006911252499549' }, + { file: 'packages/style-utilities/src/classNames/FontClassNames.ts', hash: '12726977663961178186' }, + { file: 'packages/style-utilities/src/classNames/index.ts', hash: '14430502139131911936' }, + { file: 'packages/style-utilities/src/index.ts', hash: '16923130164332550840' }, + { file: 'packages/style-utilities/src/interfaces/IAnimationStyles.ts', hash: '12986432637445274053' }, + { file: 'packages/style-utilities/src/interfaces/IGetFocusStyles.ts', hash: '6841339027325532436' }, + { file: 'packages/style-utilities/src/interfaces/index.ts', hash: '4233406151298891077' }, + { file: 'packages/style-utilities/src/styles/AnimationStyles.ts', hash: '13873762751663857941' }, + { file: 'packages/style-utilities/src/styles/CommonStyles.ts', hash: '17789799438239226639' }, + { file: 'packages/style-utilities/src/styles/DefaultEffects.ts', hash: '17737879615641440019' }, + { file: 'packages/style-utilities/src/styles/DefaultFontStyles.ts', hash: '16110133181151166893' }, + { file: 'packages/style-utilities/src/styles/DefaultPalette.ts', hash: '308226778033962556' }, + { file: 'packages/style-utilities/src/styles/DefaultSpacing.ts', hash: '9920566915208494979' }, + { file: 'packages/style-utilities/src/styles/GeneralStyles.ts', hash: '351343555411730221' }, + { file: 'packages/style-utilities/src/styles/PulsingBeaconAnimationStyles.ts', hash: '1690259696892853135' }, + { file: 'packages/style-utilities/src/styles/fonts.ts', hash: '8465894030987436105' }, + { file: 'packages/style-utilities/src/styles/getFadedOverflowStyle.ts', hash: '2192178636602906456' }, + { file: 'packages/style-utilities/src/styles/getFocusStyle.ts', hash: '14892328874399091488' }, + { file: 'packages/style-utilities/src/styles/getGlobalClassNames.test.ts', hash: '15322990379229959297' }, + { file: 'packages/style-utilities/src/styles/getGlobalClassNames.ts', hash: '11769296658838531911' }, + { file: 'packages/style-utilities/src/styles/getPlaceholderStyles.ts', hash: '1528620556961214673' }, + { file: 'packages/style-utilities/src/styles/hiddenContentStyle.ts', hash: '15085522144708332270' }, + { file: 'packages/style-utilities/src/styles/index.ts', hash: '13699769295309937200' }, + { file: 'packages/style-utilities/src/styles/scheme.test.ts', hash: '14291007267009640848' }, + { file: 'packages/style-utilities/src/styles/scheme.ts', hash: '7384403392194222555' }, + { file: 'packages/style-utilities/src/styles/theme.test.ts', hash: '17085591667890151459' }, + { file: 'packages/style-utilities/src/styles/theme.ts', hash: '6368189951590670151' }, + { file: 'packages/style-utilities/src/styles/zIndexes.ts', hash: '5466025012238433759' }, + { file: 'packages/style-utilities/src/utilities/buildClassMap.ts', hash: '8219739827132639559' }, + { file: 'packages/style-utilities/src/utilities/getIconClassName.ts', hash: '7401286075380243893' }, + { file: 'packages/style-utilities/src/utilities/icons.test.ts', hash: '13392146120626313866' }, + { file: 'packages/style-utilities/src/utilities/icons.ts', hash: '11770390318349620343' }, + { file: 'packages/style-utilities/src/utilities/index.ts', hash: '14587868060223513086' }, + { file: 'packages/style-utilities/src/version.ts', hash: '571632617522871792' }, + { file: 'packages/style-utilities/tsconfig.json', hash: '1525836875762683581' }, + ], + '@fluentui/react-combobox': [ + { file: 'packages/react-components/react-combobox/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-combobox/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-combobox/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-combobox/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-combobox/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-combobox/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-combobox/CHANGELOG.json', hash: '3985528873419017670' }, + { file: 'packages/react-components/react-combobox/CHANGELOG.md', hash: '9154813673257028545' }, + { file: 'packages/react-components/react-combobox/LICENSE', hash: '9860549950015593842' }, + { file: 'packages/react-components/react-combobox/README.md', hash: '9155355691234160061' }, + { file: 'packages/react-components/react-combobox/bundle-size/Combobox.fixture.js', hash: '9982117868040139071' }, + { file: 'packages/react-components/react-combobox/bundle-size/Dropdown.fixture.js', hash: '8112300604899923822' }, + { file: 'packages/react-components/react-combobox/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-combobox/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-combobox/docs/Migration.md', hash: '15736839676233684150' }, + { file: 'packages/react-components/react-combobox/docs/Spec.md', hash: '13792868429925902060' }, + { file: 'packages/react-components/react-combobox/etc/react-combobox.api.md', hash: '12110621555092127445' }, + { file: 'packages/react-components/react-combobox/jest.config.js', hash: '14434437269927222502' }, + { file: 'packages/react-components/react-combobox/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-combobox/package.json', + hash: '8415023961919121570', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-context-selector', + '@fluentui/react-field', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-portal', + '@fluentui/react-positioning', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-combobox/project.json', hash: '17856213337526301744' }, + { file: 'packages/react-components/react-combobox/src/Combobox.ts', hash: '13212991580912314567' }, + { file: 'packages/react-components/react-combobox/src/Dropdown.ts', hash: '18194367805350925119' }, + { file: 'packages/react-components/react-combobox/src/Listbox.ts', hash: '2994750780024488790' }, + { file: 'packages/react-components/react-combobox/src/Option.ts', hash: '8134140143396359331' }, + { file: 'packages/react-components/react-combobox/src/OptionGroup.ts', hash: '3135556529192386201' }, + { file: 'packages/react-components/react-combobox/src/Selection.ts', hash: '9515203752361595812' }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/Combobox.test.tsx', + hash: '11060583859767248781', + }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/Combobox.tsx', + hash: '10311117368400437139', + }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/Combobox.types.ts', + hash: '6722880387444505841', + }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/__snapshots__/Combobox.test.tsx.snap', + hash: '84774976154997620', + }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/index.ts', + hash: '6601828869047344697', + }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/renderCombobox.tsx', + hash: '6280296408622563178', + }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/useCombobox.tsx', + hash: '520267582978251132', + }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/useComboboxStyles.styles.ts', + hash: '15274002347501714576', + }, + { + file: 'packages/react-components/react-combobox/src/components/Combobox/useInputTriggerSlot.ts', + hash: '9223211072539326676', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/Dropdown.test.tsx', + hash: '627380512353886242', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/Dropdown.tsx', + hash: '5534345575162447099', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/Dropdown.types.ts', + hash: '14900938450773068428', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/__snapshots__/Dropdown.test.tsx.snap', + hash: '14529732928227940878', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/index.ts', + hash: '2679793517316704607', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/renderDropdown.tsx', + hash: '2334816031473000713', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/useButtonTriggerSlot.ts', + hash: '17670001280220951598', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/useDropdown.tsx', + hash: '7158597820481445308', + }, + { + file: 'packages/react-components/react-combobox/src/components/Dropdown/useDropdownStyles.styles.ts', + hash: '8988619665109997777', + }, + { + file: 'packages/react-components/react-combobox/src/components/Listbox/Listbox.test.tsx', + hash: '5240177981222686361', + }, + { + file: 'packages/react-components/react-combobox/src/components/Listbox/Listbox.tsx', + hash: '11961102491274010486', + }, + { + file: 'packages/react-components/react-combobox/src/components/Listbox/Listbox.types.ts', + hash: '2057681249960441904', + }, + { + file: 'packages/react-components/react-combobox/src/components/Listbox/__snapshots__/Listbox.test.tsx.snap', + hash: '16313140357488500172', + }, + { + file: 'packages/react-components/react-combobox/src/components/Listbox/index.ts', + hash: '10149829330954397429', + }, + { + file: 'packages/react-components/react-combobox/src/components/Listbox/renderListbox.tsx', + hash: '9529356921915895894', + }, + { + file: 'packages/react-components/react-combobox/src/components/Listbox/useListbox.ts', + hash: '9517705189017094768', + }, + { + file: 'packages/react-components/react-combobox/src/components/Listbox/useListboxStyles.styles.ts', + hash: '10512360566143520474', + }, + { + file: 'packages/react-components/react-combobox/src/components/Option/Option.test.tsx', + hash: '5177864859865280746', + }, + { + file: 'packages/react-components/react-combobox/src/components/Option/Option.tsx', + hash: '12671939144116063908', + }, + { + file: 'packages/react-components/react-combobox/src/components/Option/Option.types.ts', + hash: '3862608407678106174', + }, + { + file: 'packages/react-components/react-combobox/src/components/Option/__snapshots__/Option.test.tsx.snap', + hash: '12111334467294524539', + }, + { file: 'packages/react-components/react-combobox/src/components/Option/index.ts', hash: '3914311942511823178' }, + { + file: 'packages/react-components/react-combobox/src/components/Option/renderOption.tsx', + hash: '16662341201277600348', + }, + { + file: 'packages/react-components/react-combobox/src/components/Option/useOption.tsx', + hash: '2142576164571353029', + }, + { + file: 'packages/react-components/react-combobox/src/components/Option/useOptionStyles.styles.ts', + hash: '5670469110030125289', + }, + { + file: 'packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.test.tsx', + hash: '4384866626424502977', + }, + { + file: 'packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.tsx', + hash: '3182087730059989119', + }, + { + file: 'packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.types.ts', + hash: '8445554751423183315', + }, + { + file: 'packages/react-components/react-combobox/src/components/OptionGroup/__snapshots__/OptionGroup.test.tsx.snap', + hash: '163861498277196073', + }, + { + file: 'packages/react-components/react-combobox/src/components/OptionGroup/index.ts', + hash: '16578744468575825163', + }, + { + file: 'packages/react-components/react-combobox/src/components/OptionGroup/renderOptionGroup.tsx', + hash: '3110647036943882995', + }, + { + file: 'packages/react-components/react-combobox/src/components/OptionGroup/useOptionGroup.ts', + hash: '11097943236829005456', + }, + { + file: 'packages/react-components/react-combobox/src/components/OptionGroup/useOptionGroupStyles.styles.ts', + hash: '17434221321981968949', + }, + { file: 'packages/react-components/react-combobox/src/contexts/ComboboxContext.ts', hash: '929963705666598824' }, + { file: 'packages/react-components/react-combobox/src/contexts/ListboxContext.ts', hash: '3439369373193236577' }, + { + file: 'packages/react-components/react-combobox/src/contexts/useComboboxContextValues.ts', + hash: '13340091498314471026', + }, + { + file: 'packages/react-components/react-combobox/src/contexts/useListboxContextValues.ts', + hash: '13800266999970494762', + }, + { file: 'packages/react-components/react-combobox/src/index.ts', hash: '9936586546212580500' }, + { file: 'packages/react-components/react-combobox/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-combobox/src/utils/ComboboxBase.types.ts', + hash: '16300109512749709073', + }, + { + file: 'packages/react-components/react-combobox/src/utils/OptionCollection.types.ts', + hash: '6054787405511182417', + }, + { file: 'packages/react-components/react-combobox/src/utils/Selection.types.ts', hash: '11972870952754376840' }, + { file: 'packages/react-components/react-combobox/src/utils/dropdownKeyActions.ts', hash: '1316510657660803656' }, + { file: 'packages/react-components/react-combobox/src/utils/internalTokens.ts', hash: '14963293680083608660' }, + { + file: 'packages/react-components/react-combobox/src/utils/useComboboxBaseState.ts', + hash: '8250739279614188233', + }, + { + file: 'packages/react-components/react-combobox/src/utils/useComboboxPositioning.ts', + hash: '2550337742911701970', + }, + { file: 'packages/react-components/react-combobox/src/utils/useListboxSlot.ts', hash: '13952757643081324859' }, + { + file: 'packages/react-components/react-combobox/src/utils/useOptionCollection.ts', + hash: '7314571815979167399', + }, + { + file: 'packages/react-components/react-combobox/src/utils/useScrollOptionsIntoView.ts', + hash: '4142049665632735367', + }, + { file: 'packages/react-components/react-combobox/src/utils/useSelection.ts', hash: '14996013758550257473' }, + { file: 'packages/react-components/react-combobox/src/utils/useTriggerSlot.ts', hash: '9101709088659355024' }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxAppearance.stories.tsx', + hash: '8548703503941685749', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxBestPractices.md', + hash: '744684511504791082', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxComplexOptions.stories.tsx', + hash: '297723454355376697', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxControlled.stories.tsx', + hash: '3456633706628545626', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxCustomOptions.stories.tsx', + hash: '12685238925861146979', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxDefault.stories.tsx', + hash: '18266674055953269566', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxDescription.md', + hash: '17843666779395466277', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxDisabled.stories.tsx', + hash: '3128410187237974780', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxFiltering.stories.tsx', + hash: '17936456203850376223', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxFreeform.stories.tsx', + hash: '18323167836197074615', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxGrouped.stories.tsx', + hash: '13215087173770388938', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselect.stories.tsx', + hash: '10893488920315906460', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselectWithTags.stories.tsx', + hash: '15979300667814621916', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselectWithValueString.stories.tsx', + hash: '12249468363876146555', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxSize.stories.tsx', + hash: '5130255855723498846', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxVirtualizer.stories.tsx', + hash: '12188006947587273256', + }, + { + file: 'packages/react-components/react-combobox/stories/Combobox/index.stories.tsx', + hash: '2631140498889026435', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownAccessibility.md', + hash: '4273687250426205790', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownAccessibility.stories.mdx', + hash: '9909411046506801934', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownAppearance.stories.tsx', + hash: '4084551238588706930', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownBestPractices.md', + hash: '10254108218710739116', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownComplexOptions.stories.tsx', + hash: '3922375352896055609', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownControlled.stories.tsx', + hash: '9427431566998959031', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownCustomOptions.stories.tsx', + hash: '15198432756208424589', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownDefault.stories.tsx', + hash: '13981062825270634122', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownDescription.md', + hash: '11457027239647719668', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownDisabled.stories.tsx', + hash: '11574745316902443091', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownGrouped.stories.tsx', + hash: '14312832856975740807', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownMultiselect.stories.tsx', + hash: '11055633430384623307', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownSize.stories.tsx', + hash: '11497543963552536578', + }, + { + file: 'packages/react-components/react-combobox/stories/Dropdown/index.stories.tsx', + hash: '210961802901619491', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-click.png', + hash: '12453121186810189264', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-collapsed.png', + hash: '10962727780164198655', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-hover.png', + hash: '10323365367312532038', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-key-select.png', + hash: '1567787049728258184', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-multiselection1.png', + hash: '6198988657172575792', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-multiselection2.png', + hash: '7045883760343802146', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-nav.png', + hash: '16470357799642190126', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-open.png', + hash: '17524257435370515355', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-option-hover.png', + hash: '5908223504128174873', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-selected-open.png', + hash: '6726587615125601571', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-semantics.png', + hash: '14939116960473785956', + }, + { + file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-tabbing.png', + hash: '10541967115071968036', + }, + { file: 'packages/react-components/react-combobox/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-combobox/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-combobox/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-skeleton': [ + { file: 'packages/react-components/react-skeleton/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-skeleton/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-skeleton/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-skeleton/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-skeleton/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-skeleton/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-skeleton/CHANGELOG.json', hash: '679359539185323451' }, + { file: 'packages/react-components/react-skeleton/CHANGELOG.md', hash: '6334137216127598218' }, + { file: 'packages/react-components/react-skeleton/LICENSE', hash: '6250075351376405297' }, + { file: 'packages/react-components/react-skeleton/README.md', hash: '9945271824711735043' }, + { file: 'packages/react-components/react-skeleton/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-skeleton/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-skeleton/docs/Spec.md', hash: '13897816479466826881' }, + { file: 'packages/react-components/react-skeleton/etc/react-skeleton.api.md', hash: '12992069425819779816' }, + { file: 'packages/react-components/react-skeleton/jest.config.js', hash: '16818982385918863004' }, + { file: 'packages/react-components/react-skeleton/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-skeleton/package.json', + hash: '9881502438741616805', + deps: [ + '@fluentui/react-field', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-skeleton/project.json', hash: '6832058475924967679' }, + { file: 'packages/react-components/react-skeleton/src/Skeleton.ts', hash: '9461944777064965632' }, + { file: 'packages/react-components/react-skeleton/src/SkeletonItem.ts', hash: '665334022754508154' }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.test.tsx', + hash: '13394572200286725794', + }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.tsx', + hash: '18086715874337061343', + }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.types.ts', + hash: '13299571602345388126', + }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/__snapshots__/Skeleton.test.tsx.snap', + hash: '3334217445587362770', + }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/index.ts', + hash: '13841092410544054723', + }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/renderSkeleton.tsx', + hash: '7305045366474573892', + }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/useSkeleton.ts', + hash: '2740017611819742026', + }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/useSkeletonContextValues.ts', + hash: '11854161295718927797', + }, + { + file: 'packages/react-components/react-skeleton/src/components/Skeleton/useSkeletonStyles.ts', + hash: '6689079878448742591', + }, + { + file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.test.tsx', + hash: '4791116720155630220', + }, + { + file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.tsx', + hash: '13870262086932997147', + }, + { + file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.types.ts', + hash: '8046039834720139265', + }, + { + file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/__snapshots__/SkeletonItem.test.tsx.snap', + hash: '6578516573999757376', + }, + { + file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/index.ts', + hash: '6483213234680238457', + }, + { + file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/renderSkeletonItem.tsx', + hash: '770450448065870423', + }, + { + file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/useSkeletonItem.tsx', + hash: '7107674077111646501', + }, + { + file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/useSkeletonItemStyles.styles.ts', + hash: '13609891270571949523', + }, + { file: 'packages/react-components/react-skeleton/src/contexts/SkeletonContext.ts', hash: '2682913424966864288' }, + { file: 'packages/react-components/react-skeleton/src/contexts/index.ts', hash: '1181885011368758139' }, + { file: 'packages/react-components/react-skeleton/src/index.ts', hash: '12430779751846790640' }, + { file: 'packages/react-components/react-skeleton/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonAnimation.stories.tsx', + hash: '1551141379498317756', + }, + { + file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonAppearance.stories.tsx', + hash: '3606600594729972921', + }, + { + file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonBestPractices.md', + hash: '647232277873355848', + }, + { + file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonDefault.stories.tsx', + hash: '4735990163474792631', + }, + { + file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonDescription.md', + hash: '4308074357904685784', + }, + { + file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonRow.stories.tsx', + hash: '1889883679642715937', + }, + { + file: 'packages/react-components/react-skeleton/stories/Skeleton/index.stories.tsx', + hash: '3159015755476887438', + }, + { file: 'packages/react-components/react-skeleton/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-skeleton/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-skeleton/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-shared-contexts': [ + { file: 'packages/react-components/react-shared-contexts/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-shared-contexts/.eslintrc.json', hash: '2655957677577488347' }, + { file: 'packages/react-components/react-shared-contexts/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-shared-contexts/CHANGELOG.json', hash: '11450723176664332258' }, + { file: 'packages/react-components/react-shared-contexts/CHANGELOG.md', hash: '8041467250161143580' }, + { file: 'packages/react-components/react-shared-contexts/LICENSE', hash: '13088925295509647167' }, + { file: 'packages/react-components/react-shared-contexts/README.md', hash: '4751810605471065515' }, + { file: 'packages/react-components/react-shared-contexts/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-shared-contexts/config/tests.js', hash: '16913843724990866890' }, + { + file: 'packages/react-components/react-shared-contexts/etc/react-shared-contexts.api.md', + hash: '11556634729467213907', + }, + { file: 'packages/react-components/react-shared-contexts/jest.config.js', hash: '538613335903488751' }, + { file: 'packages/react-components/react-shared-contexts/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-shared-contexts/package.json', + hash: '13537722509734511610', + deps: [ + '@fluentui/react-theme', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-components/react-shared-contexts/project.json', hash: '5371634384165049691' }, + { + file: 'packages/react-components/react-shared-contexts/src/AnnounceContext/AnnounceContext.ts', + hash: '2101100231139745435', + }, + { + file: 'packages/react-components/react-shared-contexts/src/AnnounceContext/index.ts', + hash: '11793601976036868298', + }, + { + file: 'packages/react-components/react-shared-contexts/src/BackgroundAppearanceContext/BackgroundAppearanceContext.ts', + hash: '11073209310416173040', + }, + { + file: 'packages/react-components/react-shared-contexts/src/BackgroundAppearanceContext/index.ts', + hash: '4791795188203536339', + }, + { + file: 'packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/CustomStyleHooksContext.ts', + hash: '8144953372014138588', + }, + { + file: 'packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/index.ts', + hash: '9912580371128432978', + }, + { + file: 'packages/react-components/react-shared-contexts/src/CustomStyleHooksContext.ts', + hash: '8242274099778806427', + }, + { + file: 'packages/react-components/react-shared-contexts/src/OverridesContext/OverridesContext.ts', + hash: '11500774440824693477', + }, + { + file: 'packages/react-components/react-shared-contexts/src/OverridesContext/index.ts', + hash: '11711806393149686484', + }, + { + file: 'packages/react-components/react-shared-contexts/src/PortalMountNodeContext.ts', + hash: '11399465082133766208', + }, + { + file: 'packages/react-components/react-shared-contexts/src/ProviderContext/ProviderContext.ts', + hash: '9227668728843902181', + }, + { + file: 'packages/react-components/react-shared-contexts/src/ProviderContext/index.ts', + hash: '7579138418481595432', + }, + { file: 'packages/react-components/react-shared-contexts/src/ProviderContext.ts', hash: '7037424765520462353' }, + { + file: 'packages/react-components/react-shared-contexts/src/ThemeClassNameContext/ThemeClassNameContext.ts', + hash: '3418753637748263121', + }, + { + file: 'packages/react-components/react-shared-contexts/src/ThemeClassNameContext/index.ts', + hash: '17327136154859927590', + }, + { + file: 'packages/react-components/react-shared-contexts/src/ThemeClassNameContext.ts', + hash: '16685286281086879188', + }, + { + file: 'packages/react-components/react-shared-contexts/src/ThemeContext/ThemeContext.ts', + hash: '17138251330974077870', + }, + { + file: 'packages/react-components/react-shared-contexts/src/ThemeContext/index.ts', + hash: '8055522461387744849', + }, + { file: 'packages/react-components/react-shared-contexts/src/ThemeContext.ts', hash: '5803292591144406153' }, + { + file: 'packages/react-components/react-shared-contexts/src/TooltipVisibilityContext/TooltipContext.ts', + hash: '6624600191869567184', + }, + { + file: 'packages/react-components/react-shared-contexts/src/TooltipVisibilityContext/index.ts', + hash: '17125185529833455986', + }, + { + file: 'packages/react-components/react-shared-contexts/src/TooltipVisibilityContext.ts', + hash: '6523660209536733373', + }, + { file: 'packages/react-components/react-shared-contexts/src/index.ts', hash: '9275468125053272462' }, + { file: 'packages/react-components/react-shared-contexts/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/react-shared-contexts/tsconfig.lib.json', hash: '14975475306433073951' }, + { file: 'packages/react-components/react-shared-contexts/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-storybook-addon': [ + { file: 'packages/react-components/react-storybook-addon/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-storybook-addon/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-storybook-addon/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-storybook-addon/.storybook/preview.js', hash: '1791378012295456991' }, + { + file: 'packages/react-components/react-storybook-addon/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-storybook-addon/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-storybook-addon/CHANGELOG.json', hash: '3474712915487995213' }, + { file: 'packages/react-components/react-storybook-addon/CHANGELOG.md', hash: '8184359278978525016' }, + { file: 'packages/react-components/react-storybook-addon/LICENSE', hash: '6669073305911860467' }, + { file: 'packages/react-components/react-storybook-addon/README.md', hash: '8064450981890936119' }, + { file: 'packages/react-components/react-storybook-addon/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-storybook-addon/config/tests.js', hash: '16913843724990866890' }, + { + file: 'packages/react-components/react-storybook-addon/etc/react-storybook-addon.api.md', + hash: '11258033129711696263', + }, + { file: 'packages/react-components/react-storybook-addon/jest.config.js', hash: '7521503279647251132' }, + { file: 'packages/react-components/react-storybook-addon/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-storybook-addon/package.json', + hash: '8384255895641764171', + deps: [ + '@fluentui/react-theme', + '@fluentui/react-provider', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:@storybook/addons', + 'npm:@storybook/api', + 'npm:@storybook/components', + 'npm:@storybook/core-events', + 'npm:@storybook/theming', + ], + }, + { file: 'packages/react-components/react-storybook-addon/preset.js', hash: '2087058436361447367' }, + { file: 'packages/react-components/react-storybook-addon/project.json', hash: '1682233284854212766' }, + { + file: 'packages/react-components/react-storybook-addon/src/components/ReactStrictMode.tsx', + hash: '1709717175354952452', + }, + { + file: 'packages/react-components/react-storybook-addon/src/components/ThemePicker.tsx', + hash: '3302378609426153071', + }, + { file: 'packages/react-components/react-storybook-addon/src/constants.ts', hash: '6964172751209884361' }, + { + file: 'packages/react-components/react-storybook-addon/src/decorators/withFluentProvider.tsx', + hash: '4816286417694522871', + }, + { + file: 'packages/react-components/react-storybook-addon/src/decorators/withReactStrictMode.tsx', + hash: '16425806883864595845', + }, + { file: 'packages/react-components/react-storybook-addon/src/hooks.ts', hash: '586825407018303425' }, + { file: 'packages/react-components/react-storybook-addon/src/index.ts', hash: '18114374399441569147' }, + { file: 'packages/react-components/react-storybook-addon/src/preset/manager.ts', hash: '13384330975042902281' }, + { file: 'packages/react-components/react-storybook-addon/src/preset/preview.ts', hash: '14589431869663794454' }, + { file: 'packages/react-components/react-storybook-addon/src/theme.ts', hash: '11652898211575247400' }, + { + file: 'packages/react-components/react-storybook-addon/stories/index.stories.tsx', + hash: '8107404018508303844', + }, + { file: 'packages/react-components/react-storybook-addon/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-storybook-addon/tsconfig.lib.json', hash: '2330431448937249608' }, + { file: 'packages/react-components/react-storybook-addon/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/cra-template': [ + { file: 'packages/cra-template/.eslintrc.json', hash: '13251576554014608349' }, + { file: 'packages/cra-template/CHANGELOG.json', hash: '1129702337645733471' }, + { file: 'packages/cra-template/CHANGELOG.md', hash: '5106358608425566554' }, + { file: 'packages/cra-template/LICENSE', hash: '1636749174329294352' }, + { file: 'packages/cra-template/README.md', hash: '6730490654183036004' }, + { + file: 'packages/cra-template/package.json', + hash: '3922138108394395761', + deps: ['@fluentui/react', '@fluentui/scripts-projects-test'], + }, + { file: 'packages/cra-template/project.json', hash: '17234406872818167309' }, + { file: 'packages/cra-template/scripts/test.ts', hash: '290681558778133128' }, + { file: 'packages/cra-template/template/LICENSE', hash: '8375661779484895636' }, + { file: 'packages/cra-template/template/README.md', hash: '6288567372830560670' }, + { file: 'packages/cra-template/template/gitignore', hash: '1381922197083867790' }, + { file: 'packages/cra-template/template/public/favicon.ico', hash: '2949791817221603359' }, + { file: 'packages/cra-template/template/public/index.html', hash: '6909331186721011181' }, + { file: 'packages/cra-template/template/public/manifest.json', hash: '14151889650470291185' }, + { file: 'packages/cra-template/template/src/App.css', hash: '16457583553712152214' }, + { file: 'packages/cra-template/template/src/App.test.tsx', hash: '1523758530738999894' }, + { file: 'packages/cra-template/template/src/App.tsx', hash: '17897325894100752891' }, + { file: 'packages/cra-template/template/src/index.css', hash: '11080820211780778568' }, + { file: 'packages/cra-template/template/src/index.tsx', hash: '272227226428571209' }, + { file: 'packages/cra-template/template/src/logo.svg', hash: '6417502148039611605' }, + { file: 'packages/cra-template/template/src/react-app-env.d.ts', hash: '4668673524524593686' }, + { file: 'packages/cra-template/template/src/reportWebVitals.ts', hash: '10503513403266688488' }, + { file: 'packages/cra-template/template/src/setupTests.ts', hash: '56515321623462775' }, + { file: 'packages/cra-template/template.json', hash: '860757225757618039' }, + { file: 'packages/cra-template/tsconfig.json', hash: '4217186867484741619' }, + ], + '@fluentui/react-image': [ + { file: 'packages/react-components/react-image/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-image/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-image/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-image/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-image/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-image/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-image/CHANGELOG.json', hash: '12972083916301177064' }, + { file: 'packages/react-components/react-image/CHANGELOG.md', hash: '3050448768160993159' }, + { file: 'packages/react-components/react-image/LICENSE', hash: '6217079007318333882' }, + { file: 'packages/react-components/react-image/README.md', hash: '1363519546262385559' }, + { file: 'packages/react-components/react-image/bundle-size/Image.fixture.js', hash: '16899974605924331648' }, + { file: 'packages/react-components/react-image/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-image/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-image/docs/MIGRATION.md', hash: '11324318193252804635' }, + { file: 'packages/react-components/react-image/docs/Spec.md', hash: '3759599989017744849' }, + { file: 'packages/react-components/react-image/etc/react-image.api.md', hash: '16047758325502523106' }, + { file: 'packages/react-components/react-image/jest.config.js', hash: '17059578713221881884' }, + { file: 'packages/react-components/react-image/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-image/package.json', + hash: '13785354620659825348', + deps: [ + '@fluentui/react-shared-contexts', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + '@fluentui/react-theme', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-image/project.json', hash: '14014664761946749721' }, + { file: 'packages/react-components/react-image/src/Image.ts', hash: '16464656776672641880' }, + { + file: 'packages/react-components/react-image/src/components/Image/Image.test.tsx', + hash: '12718530982841221568', + }, + { file: 'packages/react-components/react-image/src/components/Image/Image.tsx', hash: '5286392891935920670' }, + { file: 'packages/react-components/react-image/src/components/Image/Image.types.ts', hash: '109715587094993652' }, + { + file: 'packages/react-components/react-image/src/components/Image/__snapshots__/Image.test.tsx.snap', + hash: '16033528447138702018', + }, + { file: 'packages/react-components/react-image/src/components/Image/index.ts', hash: '3654391162566112964' }, + { + file: 'packages/react-components/react-image/src/components/Image/renderImage.tsx', + hash: '8704104212170780282', + }, + { file: 'packages/react-components/react-image/src/components/Image/useImage.ts', hash: '7614888159156795171' }, + { + file: 'packages/react-components/react-image/src/components/Image/useImageStyles.styles.ts', + hash: '5034345938613758190', + }, + { file: 'packages/react-components/react-image/src/index.ts', hash: '9024266930531352710' }, + { file: 'packages/react-components/react-image/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-image/stories/Image/ImageBestPractices.md', + hash: '12632277717522951694', + }, + { + file: 'packages/react-components/react-image/stories/Image/ImageBlock.stories.tsx', + hash: '11733438778682927144', + }, + { + file: 'packages/react-components/react-image/stories/Image/ImageBordered.stories.tsx', + hash: '18093213642290742067', + }, + { + file: 'packages/react-components/react-image/stories/Image/ImageDefault.stories.tsx', + hash: '15360143901742590023', + }, + { file: 'packages/react-components/react-image/stories/Image/ImageDescription.md', hash: '1568935439820178083' }, + { + file: 'packages/react-components/react-image/stories/Image/ImageFallback.stories.tsx', + hash: '5767623493687585505', + }, + { file: 'packages/react-components/react-image/stories/Image/ImageFit.stories.tsx', hash: '1094106785743098401' }, + { + file: 'packages/react-components/react-image/stories/Image/ImageShadow.stories.tsx', + hash: '11132081493084711018', + }, + { + file: 'packages/react-components/react-image/stories/Image/ImageShape.stories.tsx', + hash: '15738169211055779651', + }, + { file: 'packages/react-components/react-image/stories/Image/index.stories.tsx', hash: '809696348755387075' }, + { file: 'packages/react-components/react-image/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-image/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-image/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/babel-preset-global-context': [ + { file: 'packages/react-components/babel-preset-global-context/.babelrc.json', hash: '8174012058119950495' }, + { file: 'packages/react-components/babel-preset-global-context/.eslintrc.json', hash: '11018738359270224912' }, + { file: 'packages/react-components/babel-preset-global-context/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/babel-preset-global-context/CHANGELOG.json', hash: '5417064940796633011' }, + { file: 'packages/react-components/babel-preset-global-context/CHANGELOG.md', hash: '1179969149095187494' }, + { file: 'packages/react-components/babel-preset-global-context/LICENSE', hash: '14190649456716274433' }, + { file: 'packages/react-components/babel-preset-global-context/README.md', hash: '2765826339745082237' }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import/code.ts', + hash: '540836392442536101', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import/output.ts', + hash: '8855713537863264717', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import/package.json', + hash: '5845952152817567832', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/code.ts', + hash: '5755535872738424522', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/output.ts', + hash: '16344199303412147364', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/package.json', + hash: '5845952152817567832', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/call-expression/code.ts', + hash: '6457279347199086388', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/call-expression/output.ts', + hash: '18170017368785370515', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/call-expression/package.json', + hash: '5845952152817567832', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/context-selector/code.ts', + hash: '4212325560787905314', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/context-selector/output.ts', + hash: '13486019690859880148', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/context-selector/package.json', + hash: '5845952152817567832', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/member-expression/code.ts', + hash: '4301657457449045903', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/member-expression/output.ts', + hash: '2550115010040710680', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/member-expression/package.json', + hash: '2153100761834963628', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/code.ts', + hash: '11786811587042864195', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/output.ts', + hash: '17579592712235480589', + }, + { + file: 'packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/package.json', + hash: '5845952152817567832', + }, + { + file: 'packages/react-components/babel-preset-global-context/config/api-extractor.json', + hash: '124052868224837692', + }, + { file: 'packages/react-components/babel-preset-global-context/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/babel-preset-global-context/cypress.config.ts', hash: '13649228528803766538' }, + { + file: 'packages/react-components/babel-preset-global-context/etc/babel-preset-global-context.api.md', + hash: '12834843629459989830', + }, + { file: 'packages/react-components/babel-preset-global-context/jest.config.js', hash: '6273091954231700587' }, + { file: 'packages/react-components/babel-preset-global-context/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/babel-preset-global-context/package.json', + hash: '16706351104698363424', + deps: [ + 'npm:@babel/core', + 'npm:@babel/generator', + 'npm:@babel/helper-plugin-utils', + 'npm:@babel/template', + 'npm:@babel/traverse', + 'npm:@emotion/hash', + 'npm:@swc/helpers', + 'npm:find-up', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + '@fluentui/global-context', + ], + }, + { file: 'packages/react-components/babel-preset-global-context/project.json', hash: '3325210329699772171' }, + { file: 'packages/react-components/babel-preset-global-context/src/Test.cy.tsx', hash: '1050395668237072729' }, + { file: 'packages/react-components/babel-preset-global-context/src/constants.ts', hash: '1647429312599845483' }, + { file: 'packages/react-components/babel-preset-global-context/src/index.ts', hash: '11265352065572634989' }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.0.0/index.ts', + hash: '6805989268245995993', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.0.0/package.json', + hash: '7963718438922702732', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.1.0/index.ts', + hash: '8948839052546966835', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.1.0/package.json', + hash: '10943502151074734339', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v2.0.0/index.ts', + hash: '7358917093904128037', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v2.0.0/package.json', + hash: '16359445692526088068', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.0.0/index.ts', + hash: '6303143986350152029', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.0.0/package.json', + hash: '17824096733509037060', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.1.0/index.ts', + hash: '5082100761918055252', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.1.0/package.json', + hash: '11003212486459360733', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/transformPlugin.test.ts', + hash: '13741100513004991440', + }, + { + file: 'packages/react-components/babel-preset-global-context/src/transformPlugin.ts', + hash: '15750846611983059767', + }, + { file: 'packages/react-components/babel-preset-global-context/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/babel-preset-global-context/tsconfig.json', hash: '5596071008249197618' }, + { file: 'packages/react-components/babel-preset-global-context/tsconfig.lib.json', hash: '3693653838336081970' }, + { file: 'packages/react-components/babel-preset-global-context/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/public-docsite': [ + { file: 'apps/public-docsite/.eslintrc.json', hash: '337673835369909864' }, + { file: 'apps/public-docsite/.markdownlint.json', hash: '3193456444247028636' }, + { file: 'apps/public-docsite/.npmignore', hash: '2926714820578262549' }, + { file: 'apps/public-docsite/.vscode/settings.json', hash: '18069303981834661546' }, + { file: 'apps/public-docsite/CHANGELOG.json', hash: '5555074616181483386' }, + { file: 'apps/public-docsite/CHANGELOG.md', hash: '14192424771490611728' }, + { file: 'apps/public-docsite/LICENSE', hash: '16915259497383323988' }, + { file: 'apps/public-docsite/README.md', hash: '3559688253950229776' }, + { file: 'apps/public-docsite/Third Party Notices.txt', hash: '14646301618710015874' }, + { file: 'apps/public-docsite/config/pre-copy.json', hash: '7054591292658078092' }, + { file: 'apps/public-docsite/just.config.ts', hash: '10393370776333958822' }, + { + file: 'apps/public-docsite/package.json', + hash: '9136041470273463055', + deps: [ + '@fluentui/font-icons-mdl2', + '@fluentui/public-docsite-resources', + '@fluentui/public-docsite-setup', + '@fluentui/react', + '@fluentui/react-docsite-components', + '@fluentui/react-examples', + '@fluentui/react-experiments', + '@fluentui/fluent2-theme', + '@fluentui/react-file-type-icons', + '@fluentui/react-icons-mdl2', + '@fluentui/react-icons-mdl2-branded', + '@fluentui/set-version', + '@fluentui/theme', + '@fluentui/theme-samples', + '@fluentui/utilities', + 'npm:@microsoft/load-themed-styles', + 'npm:office-ui-fabric-core', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + 'npm:whatwg-fetch', + '@fluentui/common-styles', + '@fluentui/eslint-plugin', + '@fluentui/react-monaco-editor', + 'npm:write-file-webpack-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'apps/public-docsite/project.json', hash: '7196581607791710012' }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/Controls.pages.tsx', + hash: '10145604053049751028', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/android.tsx', + hash: '17738143955260006201', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/cross.tsx', + hash: '1058502723279157309', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/index.ts', + hash: '6413192895410987168', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/ios.tsx', + hash: '7399549156069476958', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/mac.tsx', + hash: '16436402022180708284', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/web.tsx', + hash: '408483203285204310', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/webcomponents.tsx', + hash: '6792765439676230780', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/windows.tsx', + hash: '12124107861870090256', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/GetStarted/GetStarted.pages.tsx', + hash: '13847506009956934136', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/GetStarted/index.ts', + hash: '7608958459492300262', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Resources/Resources.pages.tsx', + hash: '7467311968307614147', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Resources/index.ts', + hash: '11141788384203020155', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/Styles.pages.tsx', + hash: '3354179824228056507', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/index.ts', + hash: '9885949247618547411', + }, + { + file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/web.tsx', + hash: '13036525375730422403', + }, + { file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/index.ts', hash: '15668129546048702595' }, + { file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.platforms.ts', hash: '4374814516883291103' }, + { file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.tsx', hash: '7416597600515030422' }, + { file: 'apps/public-docsite/src/SiteDefinition/index.ts', hash: '16170069659361476539' }, + { file: 'apps/public-docsite/src/components/IconGrid/IconGrid.module.scss', hash: '10088935074752784208' }, + { file: 'apps/public-docsite/src/components/IconGrid/IconGrid.tsx', hash: '3126832381939275604' }, + { file: 'apps/public-docsite/src/components/Nav/Nav.module.scss', hash: '17010202827328751810' }, + { file: 'apps/public-docsite/src/components/Nav/Nav.tsx', hash: '5895207924940259300' }, + { file: 'apps/public-docsite/src/components/Nav/index.ts', hash: '8845112648504599256' }, + { file: 'apps/public-docsite/src/components/PageHeader/PageHeader.ts', hash: '2023580731281621870' }, + { file: 'apps/public-docsite/src/components/Site/AppThemes.ts', hash: '8449132186114492836' }, + { file: 'apps/public-docsite/src/components/Site/Site.module.scss', hash: '1167611558215402625' }, + { file: 'apps/public-docsite/src/components/Site/Site.tsx', hash: '11712024304722443777' }, + { file: 'apps/public-docsite/src/components/Site/index.ts', hash: '4416097142125773802' }, + { file: 'apps/public-docsite/src/components/Table/Table.module.scss', hash: '2351390884860253930' }, + { file: 'apps/public-docsite/src/components/Table/Table.tsx', hash: '10981690018718548291' }, + { file: 'apps/public-docsite/src/data/colors-neutral.json', hash: '16653124453141777542' }, + { file: 'apps/public-docsite/src/data/colors-persona-groups.json', hash: '3616184185780250103' }, + { file: 'apps/public-docsite/src/data/colors-personas.json', hash: '2075722162646162911' }, + { file: 'apps/public-docsite/src/data/colors-shared.json', hash: '5294560336154413274' }, + { file: 'apps/public-docsite/src/data/colors-theme-accents.json', hash: '13906940430607557455' }, + { file: 'apps/public-docsite/src/data/colors-theme-neutrals.json', hash: '181167838507207900' }, + { file: 'apps/public-docsite/src/data/colors-theme-slots.json', hash: '17490638679045466346' }, + { file: 'apps/public-docsite/src/data/directional-icons.json', hash: '14304305003999879088' }, + { file: 'apps/public-docsite/src/data/layout-visibility.json', hash: '8022012966563745167' }, + { file: 'apps/public-docsite/src/data/localized-fonts.json', hash: '4593860147000401033' }, + { file: 'apps/public-docsite/src/data/product-icons-documents.json', hash: '17196664511062641524' }, + { file: 'apps/public-docsite/src/data/product-icons.json', hash: '14205424375330295192' }, + { file: 'apps/public-docsite/src/data/responsive-breakpoints.json', hash: '12157493310076411491' }, + { file: 'apps/public-docsite/src/interfaces/Platforms.ts', hash: '7456260135347758029' }, + { + file: 'apps/public-docsite/src/pages/Controls/ActivityItemPage/ActivityItemPage.doc.ts', + hash: '12084996801726727128', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ActivityItemPage/ActivityItemPage.tsx', + hash: '10525847806067360709', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedBulkOperationsPage.doc.ts', + hash: '765722563957421787', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedBulkOperationsPage.tsx', + hash: '193322179625131144', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedLazyLoadingPage.doc.ts', + hash: '15566486176498941210', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedLazyLoadingPage.tsx', + hash: '17777911651455362870', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedPage.doc.ts', + hash: '15674441994070588327', + }, + { file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedPage.tsx', hash: '8232552932583924532' }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedQuickActionsPage.doc.ts', + hash: '15362780660373157918', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedQuickActionsPage.tsx', + hash: '12352004516650637228', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedSearchResultsPage.doc.ts', + hash: '16198598794387830431', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedSearchResultsPage.tsx', + hash: '5328511635142039063', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AreaChartPage/AreaChartPage.doc.ts', + hash: '6722728441282287493', + }, + { file: 'apps/public-docsite/src/pages/Controls/AreaChartPage/AreaChartPage.tsx', hash: '8859288386603113959' }, + { file: 'apps/public-docsite/src/pages/Controls/AvatarPage/AvatarPage.doc.ts', hash: '12515277458764441324' }, + { file: 'apps/public-docsite/src/pages/Controls/AvatarPage/AvatarPage.tsx', hash: '9083556730732774728' }, + { + file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/android/AvatarImplementation.md', + hash: '16726958883259254492', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/android/AvatarOverview.md', + hash: '2647093289656117320', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/ios/AvatarImplementation.md', + hash: '17606495654142164819', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/ios/AvatarOverview.md', + hash: '18186034623443237973', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarImplementation.md', + hash: '5199120976977691610', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarOverview.md', + hash: '6959005975866544522', + }, + { + file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarUsage.md', + hash: '11821820304812674613', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/BottomNavigationPage.doc.ts', + hash: '15569579807820313583', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/BottomNavigationPage.tsx', + hash: '8488861682256094075', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/android/BottomNavigationImplementation.md', + hash: '1435366324864337035', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/android/BottomNavigationOverview.md', + hash: '10514823264895514315', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/ios/BottomNavigationImplementation.md', + hash: '18025927293153857052', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/ios/BottomNavigationOverview.md', + hash: '2617859208595378528', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomSheetPage/BottomSheetPage.doc.ts', + hash: '9673062355771995912', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomSheetPage/BottomSheetPage.tsx', + hash: '2031437537765094207', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomSheetPage/docs/android/BottomSheetImplementation.md', + hash: '1327623026650085087', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BottomSheetPage/docs/android/BottomSheetOverview.md', + hash: '13377435451580553570', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BreadcrumbPage/BreadcrumbPage.doc.ts', + hash: '1160032916934762643', + }, + { + file: 'apps/public-docsite/src/pages/Controls/BreadcrumbPage/BreadcrumbPage.tsx', + hash: '12715444766885574444', + }, + { file: 'apps/public-docsite/src/pages/Controls/ButtonPage/ButtonPage.doc.ts', hash: '5592476238467391864' }, + { file: 'apps/public-docsite/src/pages/Controls/ButtonPage/ButtonPage.tsx', hash: '11913245284362943875' }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/android/ButtonImplementation.md', + hash: '1658627094040539265', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/android/ButtonOverview.md', + hash: '4417937612509791357', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonImplementation.md', + hash: '14266053475926286467', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonOverview.md', + hash: '6639038237332629321', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonUsage.md', + hash: '8882723746766233591', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/ios/ButtonImplementation.md', + hash: '9913277924895889569', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/ios/ButtonOverview.md', + hash: '14531658870536079463', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonImplementation.md', + hash: '17284353348286665677', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonOverview.md', + hash: '13523925454607623553', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonUsage.md', + hash: '13729646828336872891', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonImplementation.md', + hash: '10916114615457699893', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonOverview.md', + hash: '6639038237332629321', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonUsage.md', + hash: '1439538779926957798', + }, + { file: 'apps/public-docsite/src/pages/Controls/CalendarPage/CalendarPage.doc.ts', hash: '15404698135211720064' }, + { file: 'apps/public-docsite/src/pages/Controls/CalendarPage/CalendarPage.tsx', hash: '733924089141682023' }, + { + file: 'apps/public-docsite/src/pages/Controls/CalendarPage/docs/android/CalendarImplementation.md', + hash: '4860285518777187466', + }, + { + file: 'apps/public-docsite/src/pages/Controls/CalendarPage/docs/android/CalendarOverview.md', + hash: '5705143573515914746', + }, + { file: 'apps/public-docsite/src/pages/Controls/CalloutPage/CalloutPage.doc.ts', hash: '17209687824658981404' }, + { file: 'apps/public-docsite/src/pages/Controls/CalloutPage/CalloutPage.tsx', hash: '4954896427572159163' }, + { file: 'apps/public-docsite/src/pages/Controls/CheckboxPage/CheckboxPage.doc.ts', hash: '17682692614187019453' }, + { file: 'apps/public-docsite/src/pages/Controls/CheckboxPage/CheckboxPage.tsx', hash: '15199835598879362142' }, + { file: 'apps/public-docsite/src/pages/Controls/ChipPage/ChipPage.doc.ts', hash: '9154869513355420399' }, + { file: 'apps/public-docsite/src/pages/Controls/ChipPage/ChipPage.tsx', hash: '981184700842655718' }, + { + file: 'apps/public-docsite/src/pages/Controls/ChipPage/docs/android/ChipImplementation.md', + hash: '14417461789034157394', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ChipPage/docs/android/ChipOverview.md', + hash: '1523854707197205553', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ChipPage/docs/ios/ChipImplementation.md', + hash: '11470797543630326488', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ChipPage/docs/ios/ChipOverview.md', + hash: '11319279887742645925', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ChoiceGroupPage/ChoiceGroupPage.doc.ts', + hash: '7647967381634329619', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ChoiceGroupPage/ChoiceGroupPage.tsx', + hash: '16877181384541805954', + }, + { + file: 'apps/public-docsite/src/pages/Controls/CoachmarkPage/CoachmarkPage.doc.ts', + hash: '14163935830576365816', + }, + { file: 'apps/public-docsite/src/pages/Controls/CoachmarkPage/CoachmarkPage.tsx', hash: '8670254362732558332' }, + { + file: 'apps/public-docsite/src/pages/Controls/ColorPickerPage/ColorPickerPage.doc.ts', + hash: '9648425641137727669', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ColorPickerPage/ColorPickerPage.tsx', + hash: '1953534517712852428', + }, + { file: 'apps/public-docsite/src/pages/Controls/ComboBoxPage/ComboBoxPage.doc.ts', hash: '17894563094905674110' }, + { file: 'apps/public-docsite/src/pages/Controls/ComboBoxPage/ComboBoxPage.tsx', hash: '15755905243024863031' }, + { + file: 'apps/public-docsite/src/pages/Controls/CommandBarPage/CommandBarPage.doc.ts', + hash: '10705841520651205980', + }, + { + file: 'apps/public-docsite/src/pages/Controls/CommandBarPage/CommandBarPage.tsx', + hash: '16602894129752653191', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ContextualMenuPage/ContextualMenuPage.doc.ts', + hash: '17593522149548888502', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ContextualMenuPage/ContextualMenuPage.tsx', + hash: '13424275747858799542', + }, + { file: 'apps/public-docsite/src/pages/Controls/ControlsAreaPage.tsx', hash: '9958449542131719090' }, + { + file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/DatePickerPage.doc.ts', + hash: '3993601356330496007', + }, + { file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/DatePickerPage.tsx', hash: '1723921104985000544' }, + { + file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/android/DateTimePickerImplementation.md', + hash: '4345043770986870496', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/android/DateTimePickerOverview.md', + hash: '11120022423482682019', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/ios/DateTimePickerImplementation.md', + hash: '14053008236220258161', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/ios/DateTimePickerOverview.md', + hash: '4486063773040028910', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerImplementation.md', + hash: '4082356119249858996', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerOverview.md', + hash: '15042893916627662031', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerUsage.md', + hash: '17536202668797782112', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAdvancedPage.doc.ts', + hash: '13724797365802926226', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAdvancedPage.tsx', + hash: '8378129203862067121', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAnimationPage.doc.ts', + hash: '273818136230702976', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAnimationPage.tsx', + hash: '6670837662453517114', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListBasicPage.doc.ts', + hash: '1442216069029798172', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListBasicPage.tsx', + hash: '4221366272271259902', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCompactPage.doc.ts', + hash: '6232054459873438925', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCompactPage.tsx', + hash: '18182423396708136557', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomColumnsPage.doc.ts', + hash: '15223218059571854467', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomColumnsPage.tsx', + hash: '12996021462166043167', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomFooterPage.doc.ts', + hash: '10919167593613811146', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomFooterPage.tsx', + hash: '7518356388618202761', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomGroupHeadersPage.doc.ts', + hash: '17610097000352036009', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomGroupHeadersPage.tsx', + hash: '15389447506854098798', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomRowsPage.doc.ts', + hash: '11557821808808553995', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomRowsPage.tsx', + hash: '17778521908305216176', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListDragDropPage.doc.ts', + hash: '15376862959987969006', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListDragDropPage.tsx', + hash: '13925969251211828899', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedPage.doc.ts', + hash: '5039276744638943818', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedPage.tsx', + hash: '13234611186431244970', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedV2Page.doc.ts', + hash: '14584174087660249527', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedV2Page.tsx', + hash: '7869708837554642335', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardDragDropPage.doc.ts', + hash: '10248465266551079389', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardDragDropPage.tsx', + hash: '7771372193160661271', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardOverrides.doc.ts', + hash: '13903439600356956947', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardOverridesPage.tsx', + hash: '13769261388459893054', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedPage.doc.ts', + hash: '7589110390501473746', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedPage.tsx', + hash: '16649160011157063345', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedV2Page.doc.ts', + hash: '15039681966980186456', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedV2Page.tsx', + hash: '5613915619387420589', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListNavigatingFocusPage.doc.ts', + hash: '10978504225563324314', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListNavigatingFocusPage.tsx', + hash: '18444419229465588680', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListPage.doc.ts', + hash: '13633038424697591891', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListPage.tsx', + hash: '5795984366319231084', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListProportionalColumnsPage.doc.ts', + hash: '13880518862320453327', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListProportionalColumnsPage.tsx', + hash: '5728239731010542367', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListScrollToIndexGroupedV2Page.doc.ts', + hash: '13772461902671039983', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListScrollToIndexGroupedV2Page.tsx', + hash: '751985772745896294', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListShimmerPage.doc.ts', + hash: '16886325733296036163', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListShimmerPage.tsx', + hash: '17986580787370038200', + }, + { file: 'apps/public-docsite/src/pages/Controls/DialogPage/DialogPage.doc.ts', hash: '8114424727878114054' }, + { file: 'apps/public-docsite/src/pages/Controls/DialogPage/DialogPage.tsx', hash: '16571889001557518810' }, + { + file: 'apps/public-docsite/src/pages/Controls/DocumentCardPage/DocumentCardPage.doc.ts', + hash: '5798884632274572457', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DocumentCardPage/DocumentCardPage.tsx', + hash: '14114745195456671394', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DonutChartPage/DonutChartPage.doc.ts', + hash: '9925495805804097607', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DonutChartPage/DonutChartPage.tsx', + hash: '13140207290823243844', + }, + { file: 'apps/public-docsite/src/pages/Controls/DrawerPage/DrawerPage.doc.ts', hash: '8809379390024773173' }, + { file: 'apps/public-docsite/src/pages/Controls/DrawerPage/DrawerPage.tsx', hash: '7007852614279864723' }, + { + file: 'apps/public-docsite/src/pages/Controls/DrawerPage/docs/android/DrawerImplementation.md', + hash: '17858680396931236249', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DrawerPage/docs/android/DrawerOverview.md', + hash: '11716337942532244924', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DrawerPage/docs/ios/DrawerImplementation.md', + hash: '11983059621422817768', + }, + { + file: 'apps/public-docsite/src/pages/Controls/DrawerPage/docs/ios/DrawerOverview.md', + hash: '5111313044522355867', + }, + { file: 'apps/public-docsite/src/pages/Controls/DropdownPage/DropdownPage.doc.ts', hash: '9046898387726582968' }, + { file: 'apps/public-docsite/src/pages/Controls/DropdownPage/DropdownPage.tsx', hash: '4993205477226125515' }, + { file: 'apps/public-docsite/src/pages/Controls/FacepilePage/FacepilePage.doc.ts', hash: '11140776998441194718' }, + { file: 'apps/public-docsite/src/pages/Controls/FacepilePage/FacepilePage.tsx', hash: '14403058980587352582' }, + { + file: 'apps/public-docsite/src/pages/Controls/FocusTrapZonePage/FocusTrapZonePage.doc.ts', + hash: '17285560986103134198', + }, + { + file: 'apps/public-docsite/src/pages/Controls/FocusTrapZonePage/FocusTrapZonePage.tsx', + hash: '8686318644067342747', + }, + { + file: 'apps/public-docsite/src/pages/Controls/FocusZonePage/FocusZonePage.doc.ts', + hash: '11651121915621513982', + }, + { file: 'apps/public-docsite/src/pages/Controls/FocusZonePage/FocusZonePage.tsx', hash: '5773578364287739971' }, + { + file: 'apps/public-docsite/src/pages/Controls/GaugeChartPage/GaugeChartPage.doc.ts', + hash: '6968035975342074349', + }, + { + file: 'apps/public-docsite/src/pages/Controls/GaugeChartPage/GaugeChartPage.tsx', + hash: '15615937935738864018', + }, + { + file: 'apps/public-docsite/src/pages/Controls/GroupedListPage/GroupedListPage.doc.ts', + hash: '7967128270511032399', + }, + { + file: 'apps/public-docsite/src/pages/Controls/GroupedListPage/GroupedListPage.tsx', + hash: '703544659258297209', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HeatMapChartPage/HeatMapChartPage.doc.ts', + hash: '18432271012134230268', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HeatMapChartPage/HeatMapChartPage.tsx', + hash: '1325089474077311913', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartPage.doc.ts', + hash: '12161394458131890595', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartPage.tsx', + hash: '12506076174393262754', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartWithAxisPage.doc.ts', + hash: '10690241468891464352', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartWithAxisPage.tsx', + hash: '2086325801396426601', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/MultiStackedBarChartPage.doc.ts', + hash: '18349688674284806158', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/MultiStackedBarChartPage.tsx', + hash: '4440166238265478633', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/StackedBarChartPage.doc.ts', + hash: '2223329163564677843', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/StackedBarChartPage.tsx', + hash: '14809007092545647863', + }, + { + file: 'apps/public-docsite/src/pages/Controls/HoverCardPage/HoverCardPage.doc.ts', + hash: '2636562850252085917', + }, + { file: 'apps/public-docsite/src/pages/Controls/HoverCardPage/HoverCardPage.tsx', hash: '13868840759782232781' }, + { file: 'apps/public-docsite/src/pages/Controls/IconPage/IconPage.doc.ts', hash: '14320589840826195768' }, + { file: 'apps/public-docsite/src/pages/Controls/IconPage/IconPage.tsx', hash: '64311493418413559' }, + { file: 'apps/public-docsite/src/pages/Controls/ImagePage/ImagePage.doc.ts', hash: '7988651808500005441' }, + { file: 'apps/public-docsite/src/pages/Controls/ImagePage/ImagePage.tsx', hash: '11931915285603305728' }, + { file: 'apps/public-docsite/src/pages/Controls/KeytipsPage/KeytipsPage.doc.ts', hash: '18207607363175849480' }, + { file: 'apps/public-docsite/src/pages/Controls/KeytipsPage/KeytipsPage.tsx', hash: '6670239696591483784' }, + { file: 'apps/public-docsite/src/pages/Controls/LabelPage/LabelPage.doc.ts', hash: '12862325935849575873' }, + { file: 'apps/public-docsite/src/pages/Controls/LabelPage/LabelPage.tsx', hash: '1362646498263943376' }, + { file: 'apps/public-docsite/src/pages/Controls/LayerPage/LayerPage.doc.ts', hash: '13150585050034998454' }, + { file: 'apps/public-docsite/src/pages/Controls/LayerPage/LayerPage.tsx', hash: '15712879744679708674' }, + { file: 'apps/public-docsite/src/pages/Controls/LegendsPage/LegendsPage.doc.ts', hash: '13025909135398732412' }, + { file: 'apps/public-docsite/src/pages/Controls/LegendsPage/LegendsPage.tsx', hash: '3594589130378637610' }, + { + file: 'apps/public-docsite/src/pages/Controls/LineChartPage/LineChartPage.doc.ts', + hash: '8123770768122993985', + }, + { file: 'apps/public-docsite/src/pages/Controls/LineChartPage/LineChartPage.tsx', hash: '9907654634238606126' }, + { file: 'apps/public-docsite/src/pages/Controls/LinkPage/LinkPage.doc.ts', hash: '13092967827659090455' }, + { file: 'apps/public-docsite/src/pages/Controls/LinkPage/LinkPage.tsx', hash: '17634813694797845520' }, + { + file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkImplementation.md', + hash: '17106399576572784288', + }, + { + file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkOverview.md', + hash: '14935792960205653974', + }, + { file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkUsage.md', hash: '574308995351374939' }, + { + file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkImplementation.md', + hash: '9700325112175340981', + }, + { + file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkOverview.md', + hash: '14051902312080603746', + }, + { file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkUsage.md', hash: '2205135936392778140' }, + { + file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkImplementation.md', + hash: '11016907395505236155', + }, + { + file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkOverview.md', + hash: '14935792960205653974', + }, + { + file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkUsage.md', + hash: '12676870463584061993', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/ListCellsPage.doc.ts', + hash: '11180251346063450202', + }, + { file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/ListCellsPage.tsx', hash: '2988382794666245470' }, + { + file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/docs/android/ListCellsImplementation.md', + hash: '17993162330760725826', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/docs/android/ListCellsOverview.md', + hash: '179484507631924202', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/docs/ios/ListCellsImplementation.md', + hash: '17351970042206748282', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/docs/ios/ListCellsOverview.md', + hash: '3442453361108839689', + }, + { file: 'apps/public-docsite/src/pages/Controls/ListPage/ListPage.doc.ts', hash: '2301015653585082199' }, + { file: 'apps/public-docsite/src/pages/Controls/ListPage/ListPage.tsx', hash: '5736725840541138556' }, + { + file: 'apps/public-docsite/src/pages/Controls/MarqueeSelectionPage/MarqueeSelectionPage.doc.ts', + hash: '16568125096922152773', + }, + { + file: 'apps/public-docsite/src/pages/Controls/MarqueeSelectionPage/MarqueeSelectionPage.tsx', + hash: '9351457843573166754', + }, + { + file: 'apps/public-docsite/src/pages/Controls/MessageBarPage/MessageBarPage.doc.ts', + hash: '10642099967354842490', + }, + { file: 'apps/public-docsite/src/pages/Controls/MessageBarPage/MessageBarPage.tsx', hash: '7371696166946877741' }, + { + file: 'apps/public-docsite/src/pages/Controls/MessageBarPage/docs/ios/MessageBarImplementation.md', + hash: '9135534442852614741', + }, + { + file: 'apps/public-docsite/src/pages/Controls/MessageBarPage/docs/ios/MessageBarOverview.md', + hash: '16816993281554800685', + }, + { file: 'apps/public-docsite/src/pages/Controls/ModalPage/ModalPage.doc.ts', hash: '14953419698933388913' }, + { file: 'apps/public-docsite/src/pages/Controls/ModalPage/ModalPage.tsx', hash: '9565379238246035586' }, + { file: 'apps/public-docsite/src/pages/Controls/NavBarPage/NavBarPage.doc.ts', hash: '10719528931963184631' }, + { file: 'apps/public-docsite/src/pages/Controls/NavBarPage/NavBarPage.tsx', hash: '10936268848263953483' }, + { + file: 'apps/public-docsite/src/pages/Controls/NavBarPage/docs/android/NavBarImplementation.md', + hash: '1783050725314136794', + }, + { + file: 'apps/public-docsite/src/pages/Controls/NavBarPage/docs/android/NavBarOverview.md', + hash: '7625782876387635132', + }, + { + file: 'apps/public-docsite/src/pages/Controls/NavBarPage/docs/ios/NavBarImplementation.md', + hash: '982664057702071391', + }, + { + file: 'apps/public-docsite/src/pages/Controls/NavBarPage/docs/ios/NavBarOverview.md', + hash: '4333661315575739487', + }, + { file: 'apps/public-docsite/src/pages/Controls/NavPage/NavPage.doc.ts', hash: '16485914742907636236' }, + { file: 'apps/public-docsite/src/pages/Controls/NavPage/NavPage.tsx', hash: '10147833889521608864' }, + { + file: 'apps/public-docsite/src/pages/Controls/OverflowSetPage/OverflowSetPage.doc.ts', + hash: '430419847824661530', + }, + { + file: 'apps/public-docsite/src/pages/Controls/OverflowSetPage/OverflowSetPage.tsx', + hash: '8723062280124814020', + }, + { file: 'apps/public-docsite/src/pages/Controls/OverlayPage/OverlayPage.doc.ts', hash: '7152352627564917321' }, + { file: 'apps/public-docsite/src/pages/Controls/OverlayPage/OverlayPage.tsx', hash: '8099233458936522353' }, + { file: 'apps/public-docsite/src/pages/Controls/PanelPage/PanelPage.doc.ts', hash: '12944203394740296953' }, + { file: 'apps/public-docsite/src/pages/Controls/PanelPage/PanelPage.tsx', hash: '15825828482154862989' }, + { + file: 'apps/public-docsite/src/pages/Controls/PeoplePickerPage/PeoplePickerPage.doc.ts', + hash: '2300266927767413033', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PeoplePickerPage/PeoplePickerPage.tsx', + hash: '16377269163422996503', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PeoplePickerPage/docs/android/PeoplePickerImplementation.md', + hash: '17195704506742427669', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PeoplePickerPage/docs/android/PeoplePickerOverview.md', + hash: '11396020997468636727', + }, + { file: 'apps/public-docsite/src/pages/Controls/PersonaPage/PersonaPage.doc.ts', hash: '16810002338180568264' }, + { file: 'apps/public-docsite/src/pages/Controls/PersonaPage/PersonaPage.tsx', hash: '3845501556021269696' }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/android/PersonaImplementation.md', + hash: '9137167883852598922', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/android/PersonaOverview.md', + hash: '9940780276971069007', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaImplementation.md', + hash: '4174781638758350021', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaOverview.md', + hash: '13949429323385095957', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaUsage.md', + hash: '11952547679957023592', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaDonts.md', + hash: '13591587715632279480', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaDos.md', + hash: '7471256642317270680', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaImplementation.md', + hash: '7814508756737995088', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaOverview.md', + hash: '17809409197730676625', + }, + { file: 'apps/public-docsite/src/pages/Controls/PickersPage/PickersPage.doc.ts', hash: '3574709739493425796' }, + { file: 'apps/public-docsite/src/pages/Controls/PickersPage/PickersPage.tsx', hash: '1072062355713612559' }, + { file: 'apps/public-docsite/src/pages/Controls/PieChartPage/PieChartPage.doc.ts', hash: '8610861634097736947' }, + { file: 'apps/public-docsite/src/pages/Controls/PieChartPage/PieChartPage.tsx', hash: '17628955712828535439' }, + { + file: 'apps/public-docsite/src/pages/Controls/PillButtonBarPage/PillButtonBarPage.doc.ts', + hash: '9959120100527712235', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PillButtonBarPage/PillButtonBarPage.tsx', + hash: '3511437485944024034', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PillButtonBarPage/docs/ios/PillButtonBarImplementation.md', + hash: '8164387113171008361', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PillButtonBarPage/docs/ios/PillButtonBarOverview.md', + hash: '1311771358032116984', + }, + { file: 'apps/public-docsite/src/pages/Controls/PivotPage/PivotPage.doc.ts', hash: '12797279737032918886' }, + { file: 'apps/public-docsite/src/pages/Controls/PivotPage/PivotPage.tsx', hash: '15299694073578426860' }, + { + file: 'apps/public-docsite/src/pages/Controls/PivotPage/docs/ios/PivotImplementation.md', + hash: '4427576342081942127', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PivotPage/docs/ios/PivotOverview.md', + hash: '11302721871784110641', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/PopupMenuPage.doc.ts', + hash: '5617733850255104610', + }, + { file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/PopupMenuPage.tsx', hash: '9794250830285127360' }, + { + file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/android/PopupMenuImplementation.md', + hash: '5020177404051028794', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/android/PopupMenuOverview.md', + hash: '7290210998594527902', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/ios/PopupMenuImplementation.md', + hash: '2743838143178393759', + }, + { + file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/ios/PopupMenuOverview.md', + hash: '2323001488577540827', + }, + { file: 'apps/public-docsite/src/pages/Controls/PopupPage/PopupPage.doc.ts', hash: '17816142309948511850' }, + { file: 'apps/public-docsite/src/pages/Controls/PopupPage/PopupPage.tsx', hash: '14142913708830808491' }, + { + file: 'apps/public-docsite/src/pages/Controls/ProgressIndicatorPage/ProgressIndicatorPage.doc.ts', + hash: '15168136959043150323', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ProgressIndicatorPage/ProgressIndicatorPage.tsx', + hash: '16828944186777538232', + }, + { file: 'apps/public-docsite/src/pages/Controls/RatingPage/RatingPage.doc.ts', hash: '15930522879045080288' }, + { file: 'apps/public-docsite/src/pages/Controls/RatingPage/RatingPage.tsx', hash: '17430307553838477372' }, + { + file: 'apps/public-docsite/src/pages/Controls/ResizeGroupPage/ResizeGroupPage.doc.ts', + hash: '12453097290421274476', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ResizeGroupPage/ResizeGroupPage.tsx', + hash: '12724627887686361752', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SankeyChartPage/SankeyChartPage.doc.ts', + hash: '4714530689649545039', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SankeyChartPage/SankeyChartPage.tsx', + hash: '7367984007280521841', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ScrollablePanePage/ScrollablePanePage.doc.ts', + hash: '10517815238812573514', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ScrollablePanePage/ScrollablePanePage.tsx', + hash: '3794982073534288445', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SearchBoxPage/SearchBoxPage.doc.ts', + hash: '3109877617295800527', + }, + { file: 'apps/public-docsite/src/pages/Controls/SearchBoxPage/SearchBoxPage.tsx', hash: '12119673235668910121' }, + { + file: 'apps/public-docsite/src/pages/Controls/SelectionPage/SelectionPage.doc.ts', + hash: '4064413911248877629', + }, + { file: 'apps/public-docsite/src/pages/Controls/SelectionPage/SelectionPage.tsx', hash: '16645407528859551007' }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/SeparatorPage.doc.ts', + hash: '1869624805197331867', + }, + { file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/SeparatorPage.tsx', hash: '16530346594627497113' }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/android/SeparatorImplementation.md', + hash: '12050467316544862538', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/android/SeparatorOverview.md', + hash: '3262490832239817243', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorImplementation.md', + hash: '12735278674009299795', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorOverview.md', + hash: '1638982018715209032', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorUsage.md', + hash: '6447265103101755700', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/ios/SeparatorImplementation.md', + hash: '385144131002868470', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/ios/SeparatorOverview.md', + hash: '6917827556785225902', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorImplementation.md', + hash: '11121036677182941869', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorOverview.md', + hash: '14689844598752795287', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorUsage.md', + hash: '3022219560847233209', + }, + { file: 'apps/public-docsite/src/pages/Controls/ShimmerPage/ShimmerPage.doc.ts', hash: '4599512040229497021' }, + { file: 'apps/public-docsite/src/pages/Controls/ShimmerPage/ShimmerPage.tsx', hash: '878300177551071679' }, + { + file: 'apps/public-docsite/src/pages/Controls/ShimmerPage/docs/ios/ShimmerImplementation.md', + hash: '15492298048019929155', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ShimmerPage/docs/ios/ShimmerOverview.md', + hash: '8414580170604108926', + }, + { file: 'apps/public-docsite/src/pages/Controls/SliderPage/SliderPage.doc.ts', hash: '8834532409719588553' }, + { file: 'apps/public-docsite/src/pages/Controls/SliderPage/SliderPage.tsx', hash: '14698906948989490334' }, + { file: 'apps/public-docsite/src/pages/Controls/SnackbarPage/SnackbarPage.doc.ts', hash: '15438585596944920328' }, + { file: 'apps/public-docsite/src/pages/Controls/SnackbarPage/SnackbarPage.tsx', hash: '1654437770309584305' }, + { + file: 'apps/public-docsite/src/pages/Controls/SnackbarPage/docs/android/SnackbarImplementation.md', + hash: '17388804743906070461', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SnackbarPage/docs/android/SnackbarOverview.md', + hash: '11312290812971405184', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SparklineChartPage/SparklineChartPage.doc.ts', + hash: '7943019505043975866', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SparklineChartPage/SparklineChartPage.tsx', + hash: '4869292233657636749', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SpinButtonPage/SpinButtonPage.doc.ts', + hash: '1286261109085750776', + }, + { file: 'apps/public-docsite/src/pages/Controls/SpinButtonPage/SpinButtonPage.tsx', hash: '9268993758022694057' }, + { file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/SpinnerPage.doc.ts', hash: '1896652091488762683' }, + { file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/SpinnerPage.tsx', hash: '9394631982953595234' }, + { + file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/docs/android/SpinnerImplementation.md', + hash: '10118420338312992410', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/docs/android/SpinnerOverview.md', + hash: '18348680623727412435', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/docs/ios/SpinnerImplementation.md', + hash: '13216727849992575340', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/docs/ios/SpinnerOverview.md', + hash: '529524600353268627', + }, + { file: 'apps/public-docsite/src/pages/Controls/StackPage/StackPage.doc.ts', hash: '4896656422620049208' }, + { file: 'apps/public-docsite/src/pages/Controls/StackPage/StackPage.tsx', hash: '1396217349101542509' }, + { + file: 'apps/public-docsite/src/pages/Controls/SwatchColorPickerPage/SwatchColorPickerPage.doc.ts', + hash: '8742501851320362146', + }, + { + file: 'apps/public-docsite/src/pages/Controls/SwatchColorPickerPage/SwatchColorPickerPage.tsx', + hash: '4210928475728699833', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TeachingBubblePage/TeachingBubblePage.doc.ts', + hash: '11210860060788798223', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TeachingBubblePage/TeachingBubblePage.tsx', + hash: '13265818964473803315', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TextFieldPage/TextFieldPage.doc.ts', + hash: '16844169516739817994', + }, + { file: 'apps/public-docsite/src/pages/Controls/TextFieldPage/TextFieldPage.tsx', hash: '1449781130504185070' }, + { file: 'apps/public-docsite/src/pages/Controls/TextPage/TextPage.doc.ts', hash: '14795579619725173204' }, + { file: 'apps/public-docsite/src/pages/Controls/TextPage/TextPage.tsx', hash: '6444362485742213388' }, + { + file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/android/TextImplementation.md', + hash: '6925117502959094792', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/android/TextOverview.md', + hash: '9300573456933043605', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextImplementation.md', + hash: '14482685637634165402', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextOverview.md', + hash: '9847077317112859434', + }, + { file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextUsage.md', hash: '10221235043224874219' }, + { + file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/ios/TextImplementation.md', + hash: '4487517554098015359', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/ios/TextOverview.md', + hash: '17732920760835217296', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ThemeProviderPage/ThemeProviderPage.doc.ts', + hash: '10132739553311476432', + }, + { + file: 'apps/public-docsite/src/pages/Controls/ThemeProviderPage/ThemeProviderPage.tsx', + hash: '9993449517972929988', + }, + { file: 'apps/public-docsite/src/pages/Controls/ThemesPage/ThemesPage.doc.ts', hash: '16869713101131606107' }, + { file: 'apps/public-docsite/src/pages/Controls/ThemesPage/ThemesPage.tsx', hash: '18264313343382082196' }, + { + file: 'apps/public-docsite/src/pages/Controls/TimePickerPage/TimePickerPage.doc.ts', + hash: '15443779538362138546', + }, + { file: 'apps/public-docsite/src/pages/Controls/TimePickerPage/TimePickerPage.tsx', hash: '1756852736786007892' }, + { file: 'apps/public-docsite/src/pages/Controls/TogglePage/TogglePage.doc.ts', hash: '1437864563683354605' }, + { file: 'apps/public-docsite/src/pages/Controls/TogglePage/TogglePage.tsx', hash: '16970515178361027990' }, + { file: 'apps/public-docsite/src/pages/Controls/TooltipPage/TooltipPage.doc.ts', hash: '13004555359529279060' }, + { file: 'apps/public-docsite/src/pages/Controls/TooltipPage/TooltipPage.tsx', hash: '14058489552994957425' }, + { + file: 'apps/public-docsite/src/pages/Controls/TooltipPage/docs/android/TooltipImplementation.md', + hash: '3456588364072825371', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TooltipPage/docs/android/TooltipOverview.md', + hash: '13455839940298411742', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TooltipPage/docs/ios/TooltipImplementation.md', + hash: '16965261284922775306', + }, + { + file: 'apps/public-docsite/src/pages/Controls/TooltipPage/docs/ios/TooltipOverview.md', + hash: '1046254076984026596', + }, + { file: 'apps/public-docsite/src/pages/Controls/TreeChartPage/TreeChartPage.doc.ts', hash: '363208411377797558' }, + { file: 'apps/public-docsite/src/pages/Controls/TreeChartPage/TreeChartPage.tsx', hash: '7076431616057000589' }, + { + file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/GroupedVerticalBarChartPage.doc.ts', + hash: '15633758479616455994', + }, + { + file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/GroupedVerticalBarChartPage.tsx', + hash: '16990192553217188860', + }, + { + file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartPage.doc.ts', + hash: '2049947327391988989', + }, + { + file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartPage.tsx', + hash: '4883971900739832624', + }, + { + file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartStandardPage.doc.ts', + hash: '620999018417199421', + }, + { + file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartStandardPage.tsx', + hash: '6590169349353606228', + }, + { + file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalStackedBarChartPage.doc.ts', + hash: '8155972576439835208', + }, + { + file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalStackedBarChartPage.tsx', + hash: '9550842220108020399', + }, + { file: 'apps/public-docsite/src/pages/HomePage/HomePage.base.tsx', hash: '465866457058775620' }, + { file: 'apps/public-docsite/src/pages/HomePage/HomePage.styles.ts', hash: '10861640978446414062' }, + { file: 'apps/public-docsite/src/pages/HomePage/HomePage.tsx', hash: '18276424432609590467' }, + { file: 'apps/public-docsite/src/pages/HomePage/HomePage.types.ts', hash: '13340032817135044576' }, + { file: 'apps/public-docsite/src/pages/NotFoundPage/NotFoundPage.tsx', hash: '16207216040893461209' }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/ControlsPage.doc.ts', + hash: '18380040089134554336', + }, + { file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/ControlsPage.tsx', hash: '16414020117622852720' }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/android/ControlsOverview.md', + hash: '3916707571718470487', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/android/ControlsRequest.md', + hash: '15489980504060478950', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/cross/ControlsOverview.md', + hash: '6622634875300562460', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/cross/ControlsRequest.md', + hash: '14193834682038686587', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/ios/ControlsOverview.md', + hash: '1695529372061376072', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/ios/ControlsRequest.md', + hash: '12954123961090236040', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/mac/ControlsOverview.md', + hash: '7424290293222382000', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/mac/ControlsRequest.md', + hash: '12954123961090236040', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/web/ControlsOverview.md', + hash: '5663961913773712180', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/web/ControlsRequest.md', + hash: '15105504059791492762', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/webcomponents/ControlsOverview.md', + hash: '2414983111943358773', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/windows/ControlsOverview.md', + hash: '9037427483021073364', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/GetStartedPage.doc.ts', + hash: '11826556445642419724', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/GetStartedPage.tsx', + hash: '7268018460850661290', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/android/GetStartedOverview.md', + hash: '12060562653436793345', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/cross/GetStartedOverview.md', + hash: '16091509152687312443', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/ios/GetStartedOverview.md', + hash: '9274172313490666165', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/mac/GetStartedOverview.md', + hash: '164867267244845671', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDesign.md', + hash: '8569760566844298580', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopCore.md', + hash: '10927339412684879146', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopExisting.md', + hash: '14091981290948965896', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopSimple.md', + hash: '460857128821419712', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedNextSteps.md', + hash: '2931506436585850526', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedOverview.md', + hash: '3274675777583234778', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/webcomponents/GetStartedOverview.md', + hash: '2414983111943358773', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/windows/GetStartedOverview.md', + hash: '629152349317496328', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/ResourcesPage.doc.ts', + hash: '17499625808237404491', + }, + { file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/ResourcesPage.tsx', hash: '13149788078858940663' }, + { + file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/MicrosoftEmployees.md', + hash: '6370171942935038278', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesContributionProcess.md', + hash: '1080822247761201590', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesDesignResources.md', + hash: '7106528753518723741', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesDeveloperResources.md', + hash: '5756619609720157923', + }, + { + file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesOverview.md', + hash: '8996628649432074956', + }, + { file: 'apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.doc.ts', hash: '15501069257697476063' }, + { + file: 'apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.module.scss', + hash: '12219944696373065363', + }, + { file: 'apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.tsx', hash: '15067860422087630323' }, + { + file: 'apps/public-docsite/src/pages/Overviews/StylesPage/docs/web/StylesOverview.md', + hash: '3244421341483603138', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.doc.ts', + hash: '7583962091710138917', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.module.scss', + hash: '4445718406155664912', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.tsx', + hash: '7799339281702303232', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateBestPractices.md', + hash: '6424746113342347311', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateContact.md', + hash: '2267529183204956536', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateCustom.md', + hash: '3501294107890524915', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDesign.md', + hash: '8252275691557389867', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDonts.md', + hash: '16777043376435169207', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDos.md', + hash: '17181944727235091082', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateMarkdown.md', + hash: '1824316788706149358', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateOverview.md', + hash: '2353018080647090922', + }, + { + file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateUsage.md', + hash: '17999602798252555441', + }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/MessagingPage.doc.ts', hash: '4029206581609651525' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/MessagingPage.tsx', hash: '8517833539006814777' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/NeutralsPage.doc.ts', hash: '8557524095289881833' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/NeutralsPage.tsx', hash: '3881861710033677192' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/PersonasPage.doc.ts', hash: '6969256656078507324' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/PersonasPage.tsx', hash: '4181755802529383445' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/PresencePage.doc.ts', hash: '7698330973277559727' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/PresencePage.tsx', hash: '10452373578783830576' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/ProductsPage.doc.ts', hash: '12064673447368071473' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/ProductsPage.tsx', hash: '8166681864376445004' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/SharedPage.doc.ts', hash: '8709294250181685180' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/SharedPage.tsx', hash: '16477473000087952085' }, + { + file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsImplementation.md', + hash: '9662445079717403281', + }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsMessaging.md', hash: '12057596805615388585' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsNeutrals.md', hash: '8166035078035367122' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPersonas.md', hash: '766096296213343466' }, + { + file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPersonasGroups.md', + hash: '3244421341483603138', + }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPresence.md', hash: '12188095201817930748' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsProducts.md', hash: '17564225775262966216' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsShared.md', hash: '5320481516820254115' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/getColorsImplementation.tsx', hash: '9396878996590273337' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Excel.tsx', hash: '6668403593313565275' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Exchange.tsx', hash: '5874575945733322646' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/OneDrive.tsx', hash: '4908314519718315370' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/OneNote.tsx', hash: '1931898637381696069' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/PowerPoint.tsx', hash: '7528087448102567999' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/SharePoint.tsx', hash: '11970481403739113120' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Skype.tsx', hash: '18324379671806732775' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Teams.tsx', hash: '6050608167770584322' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/WXPNeutrals.tsx', hash: '8359383161438920081' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Word.tsx', hash: '249723548676881716' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/index.ts', hash: '2054469954853867485' }, + { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/palettes.tsx', hash: '9146560715594749357' }, + { + file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/sharePointThemes.ts', + hash: '17648378765769579029', + }, + { file: 'apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.doc.ts', hash: '15552069943951308130' }, + { + file: 'apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.module.scss', + hash: '7345581142680317731', + }, + { file: 'apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.tsx', hash: '6842210506591976353' }, + { + file: 'apps/public-docsite/src/pages/Styles/ElevationPage/docs/web/ElevationDepth.md', + hash: '10648356807866455467', + }, + { + file: 'apps/public-docsite/src/pages/Styles/ElevationPage/docs/web/ElevationImplementation.md', + hash: '6698065193994919867', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.doc.ts', + hash: '13287110333933946288', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.module.scss', + hash: '16603198109401679117', + }, + { file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.tsx', hash: '3215356932259775497' }, + { + file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsOverview.md', + hash: '14584716617056468743', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsSvgUsage.md', + hash: '4660598507310955359', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsUsage.md', + hash: '2763351544178437746', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.doc.ts', + hash: '13738324400228116747', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.module.scss', + hash: '5442444884118063709', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.tsx', + hash: '9814549566499373451', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsFormat.md', + hash: '13099450167737000846', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsImplementation.md', + hash: '17767304393597237392', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsOverview.md', + hash: '2860311402143920947', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsResolutions.md', + hash: '3244421341483603138', + }, + { + file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsSingleColor.md', + hash: '8025714887263263869', + }, + { file: 'apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.doc.ts', hash: '6624340925972145937' }, + { file: 'apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.module.scss', hash: '3083280209208898114' }, + { file: 'apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.tsx', hash: '689216079218174724' }, + { + file: 'apps/public-docsite/src/pages/Styles/LayoutPage/docs/web/LayoutGridImplementation.md', + hash: '3762983355142824943', + }, + { + file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.doc.ts', + hash: '13592687785339047277', + }, + { + file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.module.scss', + hash: '3580745211607670472', + }, + { + file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.tsx', + hash: '9117877808176694225', + }, + { + file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/docs/web/LocalizationFonts.md', + hash: '13947455427954126849', + }, + { + file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/docs/web/LocalizationRTL.md', + hash: '12243536948304525425', + }, + { + file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.doc.ts', + hash: '14850740324986435630', + }, + { + file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.module.scss', + hash: '1501359429485906614', + }, + { + file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.tsx', + hash: '8637326613161354274', + }, + { + file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsFormat.md', + hash: '14137903468084545672', + }, + { + file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsImplementation.md', + hash: '7064531828854196736', + }, + { + file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsOverview.md', + hash: '4644609833618920221', + }, + { + file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsResolutions.md', + hash: '9882773965947757517', + }, + { + file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsSingleColor.md', + hash: '6428363293740106994', + }, + { file: 'apps/public-docsite/src/pages/Styles/MotionPage/MotionPage.doc.ts', hash: '7551229294685878607' }, + { file: 'apps/public-docsite/src/pages/Styles/MotionPage/MotionPage.tsx', hash: '4255866037727374519' }, + { + file: 'apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionAnimationPatterns.md', + hash: '2424745151389010475', + }, + { + file: 'apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionBasicAnimations.md', + hash: '11591939522054441904', + }, + { + file: 'apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionOverview.md', + hash: '17619066456585865023', + }, + { file: 'apps/public-docsite/src/pages/Styles/StylesAreaPage.tsx', hash: '2330551012169262981' }, + { + file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.base.tsx', + hash: '13978554545030628372', + }, + { + file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.doc.ts', + hash: '8797032471318912664', + }, + { + file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.styles.ts', + hash: '670745936737153511', + }, + { file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.ts', hash: '17448422164112446045' }, + { + file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.types.ts', + hash: '17598414037388291257', + }, + { + file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/docs/web/ThemeSlotsImplementation.md', + hash: '10651296754730631708', + }, + { + file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/docs/web/ThemeSlotsOverview.md', + hash: '2166965680185322299', + }, + { + file: 'apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.doc.ts', + hash: '9165765088336036121', + }, + { + file: 'apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.module.scss', + hash: '16018951629111799776', + }, + { file: 'apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.tsx', hash: '10818548696224375374' }, + { + file: 'apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyCustomization.md', + hash: '13014783898773428593', + }, + { + file: 'apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyImplementation.md', + hash: '238697434924652490', + }, + { + file: 'apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographySizes.md', + hash: '15059354838444238039', + }, + { + file: 'apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyWeights.md', + hash: '7954208076253865127', + }, + { file: 'apps/public-docsite/src/root.tsx', hash: '2758584264461977324' }, + { file: 'apps/public-docsite/src/styles/_base.scss', hash: '1849673723161206113' }, + { file: 'apps/public-docsite/src/styles/_common.scss', hash: '9046917025896875813' }, + { file: 'apps/public-docsite/src/styles/_overrides.scss', hash: '4420994798235433884' }, + { file: 'apps/public-docsite/src/styles/_reset.scss', hash: '17974127147527998359' }, + { file: 'apps/public-docsite/src/styles/_semanticSlots.scss', hash: '15520402900566886591' }, + { file: 'apps/public-docsite/src/styles/_typography.scss', hash: '2598463171315010195' }, + { file: 'apps/public-docsite/src/styles/constants.ts', hash: '15680145100038897039' }, + { file: 'apps/public-docsite/src/styles/styles.scss', hash: '2768824223736871501' }, + { file: 'apps/public-docsite/src/utilities/cdn.ts', hash: '2720323465115190399' }, + { file: 'apps/public-docsite/src/utilities/createSite.tsx', hash: '13422298383237972784' }, + { file: 'apps/public-docsite/src/utilities/getSubTitle.ts', hash: '1812390680457891556' }, + { file: 'apps/public-docsite/src/utilities/index.ts', hash: '15090850838105549481' }, + { file: 'apps/public-docsite/src/utilities/location.ts', hash: '2937621053370628509' }, + { file: 'apps/public-docsite/src/utilities/svgIcons.module.scss', hash: '3242932209884530734' }, + { file: 'apps/public-docsite/src/utilities/svgIcons.tsx', hash: '5235987200223732108' }, + { file: 'apps/public-docsite/src/utilities/svgIconsColor.tsx', hash: '4853467040983417652' }, + { file: 'apps/public-docsite/src/version.ts', hash: '9775686497058364768' }, + { file: 'apps/public-docsite/tsconfig.json', hash: '12512132474600727181' }, + { file: 'apps/public-docsite/webpack.config.js', hash: '2835503529795351612' }, + { file: 'apps/public-docsite/webpack.serve.config.js', hash: '13648462903372555254' }, + ], + '@fluentui/react-slider': [ + { file: 'packages/react-components/react-slider/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-slider/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-slider/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-slider/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-slider/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-slider/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-slider/CHANGELOG.json', hash: '13041546859904341740' }, + { file: 'packages/react-components/react-slider/CHANGELOG.md', hash: '1836801970457878877' }, + { file: 'packages/react-components/react-slider/LICENSE', hash: '910721805169595338' }, + { file: 'packages/react-components/react-slider/README.md', hash: '6584753154889502669' }, + { file: 'packages/react-components/react-slider/bundle-size/Slider.fixture.js', hash: '4536442547704901623' }, + { file: 'packages/react-components/react-slider/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-slider/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-slider/docs/MIGRATION.md', hash: '447967121623278016' }, + { file: 'packages/react-components/react-slider/docs/Spec.md', hash: '9843651694675404780' }, + { file: 'packages/react-components/react-slider/etc/react-slider.api.md', hash: '14398793584258195333' }, + { file: 'packages/react-components/react-slider/jest.config.js', hash: '17269232337421067095' }, + { file: 'packages/react-components/react-slider/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-slider/package.json', + hash: '2946398219333391235', + deps: [ + '@fluentui/react-field', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/react-label', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-slider/project.json', hash: '15063960313449581197' }, + { file: 'packages/react-components/react-slider/src/Slider.ts', hash: '8062765663185726667' }, + { + file: 'packages/react-components/react-slider/src/components/Slider/Slider.test.tsx', + hash: '12394107146913416909', + }, + { file: 'packages/react-components/react-slider/src/components/Slider/Slider.tsx', hash: '1124189894502122660' }, + { + file: 'packages/react-components/react-slider/src/components/Slider/Slider.types.ts', + hash: '13961785930442891420', + }, + { + file: 'packages/react-components/react-slider/src/components/Slider/__snapshots__/Slider.test.tsx.snap', + hash: '16814355515039523231', + }, + { file: 'packages/react-components/react-slider/src/components/Slider/index.ts', hash: '16057955284477178882' }, + { + file: 'packages/react-components/react-slider/src/components/Slider/renderSlider.tsx', + hash: '1322961609272530897', + }, + { + file: 'packages/react-components/react-slider/src/components/Slider/useSlider.ts', + hash: '12810398614195122939', + }, + { + file: 'packages/react-components/react-slider/src/components/Slider/useSliderState.tsx', + hash: '7902361668391337869', + }, + { + file: 'packages/react-components/react-slider/src/components/Slider/useSliderStyles.styles.ts', + hash: '7767678614377780417', + }, + { file: 'packages/react-components/react-slider/src/index.ts', hash: '310119894017311457' }, + { file: 'packages/react-components/react-slider/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderBestPractices.md', + hash: '6974346443867987720', + }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderControlled.stories.tsx', + hash: '7808949571775154240', + }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderDefault.stories.tsx', + hash: '14440247799581749403', + }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderDescription.md', + hash: '11502253636498399750', + }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderDisabled.stories.tsx', + hash: '7697954300354409130', + }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderMinMax.stories.tsx', + hash: '6656091609376794109', + }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderSize.stories.tsx', + hash: '1159612092057231215', + }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderStep.stories.tsx', + hash: '10001321265726034349', + }, + { + file: 'packages/react-components/react-slider/stories/Slider/SliderVertical.stories.tsx', + hash: '15791609136650339470', + }, + { file: 'packages/react-components/react-slider/stories/Slider/index.stories.tsx', hash: '7287745665975848010' }, + { file: 'packages/react-components/react-slider/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-slider/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-slider/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/public-docsite-setup': [ + { file: 'packages/public-docsite-setup/.eslintrc.json', hash: '11992839191132505596' }, + { file: 'packages/public-docsite-setup/.npmignore', hash: '3740656116866054585' }, + { file: 'packages/public-docsite-setup/CHANGELOG.json', hash: '8618547025339672593' }, + { file: 'packages/public-docsite-setup/CHANGELOG.md', hash: '16215403087015415764' }, + { file: 'packages/public-docsite-setup/LICENSE', hash: '16265811467916620523' }, + { file: 'packages/public-docsite-setup/README.md', hash: '18053332391643812672' }, + { file: 'packages/public-docsite-setup/bin/create-site-manifests.js', hash: '2399047235238828921' }, + { file: 'packages/public-docsite-setup/homepage.htm', hash: '981869816544868480' }, + { file: 'packages/public-docsite-setup/index.html', hash: '12007521206803077125' }, + { file: 'packages/public-docsite-setup/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/public-docsite-setup/package.json', + hash: '16349764460524795731', + deps: ['@fluentui/eslint-plugin', '@fluentui/scripts-tasks'], + }, + { file: 'packages/public-docsite-setup/project.json', hash: '3891386790338302307' }, + { file: 'packages/public-docsite-setup/scripts/generateHomepage.js', hash: '14016511638093064764' }, + { file: 'packages/public-docsite-setup/scripts/getLoadSiteConfig.js', hash: '8884841564332900835' }, + { file: 'packages/public-docsite-setup/src/constants.ts', hash: '16801533152691260155' }, + { file: 'packages/public-docsite-setup/src/index.ts', hash: '10886664963278811071' }, + { file: 'packages/public-docsite-setup/src/loadSite.ts', hash: '12087338822941859946' }, + { file: 'packages/public-docsite-setup/src/types.ts', hash: '17941423265517989148' }, + { file: 'packages/public-docsite-setup/tsconfig.json', hash: '5177948260028589190' }, + ], + '@fluentui/react-button': [ + { file: 'packages/react-components/react-button/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-button/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-button/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-button/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-button/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-button/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-button/CHANGELOG.json', hash: '17401411806497239454' }, + { file: 'packages/react-components/react-button/CHANGELOG.md', hash: '3853339592724016178' }, + { file: 'packages/react-components/react-button/LICENSE', hash: '15868623612285827359' }, + { file: 'packages/react-components/react-button/README.md', hash: '5927466127429275027' }, + { file: 'packages/react-components/react-button/bundle-size/Button.fixture.js', hash: '11196911714669572347' }, + { + file: 'packages/react-components/react-button/bundle-size/CompoundButton.fixture.js', + hash: '15437191715127790243', + }, + { + file: 'packages/react-components/react-button/bundle-size/MenuButton.fixture.js', + hash: '16399742671333906926', + }, + { file: 'packages/react-components/react-button/bundle-size/SplitButton.fixture.js', hash: '846732347456677371' }, + { + file: 'packages/react-components/react-button/bundle-size/ToggleButton.fixture.js', + hash: '17911106882285084354', + }, + { file: 'packages/react-components/react-button/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-button/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-button/docs/MIGRATION.md', hash: '10748989622082685018' }, + { file: 'packages/react-components/react-button/docs/SPEC.md', hash: '12520006170877160397' }, + { file: 'packages/react-components/react-button/etc/react-button.api.md', hash: '11861696843617479842' }, + { file: 'packages/react-components/react-button/jest.config.js', hash: '18021156044048013372' }, + { file: 'packages/react-components/react-button/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-button/package.json', + hash: '10168246310506993332', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-aria', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/a11y-testing', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-button/project.json', hash: '16431721494337088002' }, + { file: 'packages/react-components/react-button/src/Button.tsx', hash: '8626324674700708044' }, + { file: 'packages/react-components/react-button/src/CompoundButton.ts', hash: '153412803858965389' }, + { file: 'packages/react-components/react-button/src/MenuButton.ts', hash: '6393132779025454217' }, + { file: 'packages/react-components/react-button/src/SplitButton.ts', hash: '7296004887201615859' }, + { file: 'packages/react-components/react-button/src/ToggleButton.ts', hash: '9087773820539969166' }, + { + file: 'packages/react-components/react-button/src/components/Button/Button.test.tsx', + hash: '13234018766360395070', + }, + { file: 'packages/react-components/react-button/src/components/Button/Button.tsx', hash: '7131784988858573117' }, + { + file: 'packages/react-components/react-button/src/components/Button/Button.types.ts', + hash: '18132117076552392300', + }, + { file: 'packages/react-components/react-button/src/components/Button/index.ts', hash: '14415446849596795722' }, + { + file: 'packages/react-components/react-button/src/components/Button/renderButton.tsx', + hash: '3788273996539907589', + }, + { + file: 'packages/react-components/react-button/src/components/Button/useButton.ts', + hash: '18239797257817765877', + }, + { + file: 'packages/react-components/react-button/src/components/Button/useButtonStyles.styles.ts', + hash: '16766982605993587713', + }, + { + file: 'packages/react-components/react-button/src/components/CompoundButton/CompoundButton.test.tsx', + hash: '17699079322699347030', + }, + { + file: 'packages/react-components/react-button/src/components/CompoundButton/CompoundButton.tsx', + hash: '12527753452428197456', + }, + { + file: 'packages/react-components/react-button/src/components/CompoundButton/CompoundButton.types.ts', + hash: '10403113155713189779', + }, + { + file: 'packages/react-components/react-button/src/components/CompoundButton/index.ts', + hash: '17693470936175651660', + }, + { + file: 'packages/react-components/react-button/src/components/CompoundButton/renderCompoundButton.tsx', + hash: '9392084413752564294', + }, + { + file: 'packages/react-components/react-button/src/components/CompoundButton/useCompoundButton.ts', + hash: '11789753697687684577', + }, + { + file: 'packages/react-components/react-button/src/components/CompoundButton/useCompoundButtonStyles.styles.ts', + hash: '4022940355968932853', + }, + { + file: 'packages/react-components/react-button/src/components/MenuButton/MenuButton.test.tsx', + hash: '5565395958656768489', + }, + { + file: 'packages/react-components/react-button/src/components/MenuButton/MenuButton.tsx', + hash: '5952211904245417062', + }, + { + file: 'packages/react-components/react-button/src/components/MenuButton/MenuButton.types.ts', + hash: '12380706571984102748', + }, + { + file: 'packages/react-components/react-button/src/components/MenuButton/index.ts', + hash: '11687749806294814925', + }, + { + file: 'packages/react-components/react-button/src/components/MenuButton/renderMenuButton.tsx', + hash: '2242695625944355651', + }, + { + file: 'packages/react-components/react-button/src/components/MenuButton/useMenuButton.tsx', + hash: '4984356046412164557', + }, + { + file: 'packages/react-components/react-button/src/components/MenuButton/useMenuButtonStyles.styles.ts', + hash: '1835897370503685351', + }, + { + file: 'packages/react-components/react-button/src/components/SplitButton/SplitButton.test.tsx', + hash: '2434348402973527636', + }, + { + file: 'packages/react-components/react-button/src/components/SplitButton/SplitButton.tsx', + hash: '1351240890806868292', + }, + { + file: 'packages/react-components/react-button/src/components/SplitButton/SplitButton.types.ts', + hash: '16806214858697550880', + }, + { + file: 'packages/react-components/react-button/src/components/SplitButton/index.ts', + hash: '9834531422308196215', + }, + { + file: 'packages/react-components/react-button/src/components/SplitButton/renderSplitButton.tsx', + hash: '14418301058346299709', + }, + { + file: 'packages/react-components/react-button/src/components/SplitButton/useSplitButton.ts', + hash: '563564198843507208', + }, + { + file: 'packages/react-components/react-button/src/components/SplitButton/useSplitButtonStyles.styles.ts', + hash: '4700348312000575170', + }, + { + file: 'packages/react-components/react-button/src/components/ToggleButton/ToggleButton.test.tsx', + hash: '13746632596170630901', + }, + { + file: 'packages/react-components/react-button/src/components/ToggleButton/ToggleButton.tsx', + hash: '8650462963352411057', + }, + { + file: 'packages/react-components/react-button/src/components/ToggleButton/ToggleButton.types.ts', + hash: '3341137315114432486', + }, + { + file: 'packages/react-components/react-button/src/components/ToggleButton/index.ts', + hash: '510559736809727155', + }, + { + file: 'packages/react-components/react-button/src/components/ToggleButton/renderToggleButton.tsx', + hash: '10961580694544111609', + }, + { + file: 'packages/react-components/react-button/src/components/ToggleButton/useToggleButton.ts', + hash: '7201515539310652846', + }, + { + file: 'packages/react-components/react-button/src/components/ToggleButton/useToggleButtonStyles.styles.ts', + hash: '16388660867399193722', + }, + { file: 'packages/react-components/react-button/src/contexts/ButtonContext.ts', hash: '16773333999453776678' }, + { file: 'packages/react-components/react-button/src/contexts/index.ts', hash: '13132760355664250784' }, + { file: 'packages/react-components/react-button/src/index.ts', hash: '13339233335156002081' }, + { file: 'packages/react-components/react-button/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { file: 'packages/react-components/react-button/src/utils/index.ts', hash: '250554734181228029' }, + { file: 'packages/react-components/react-button/src/utils/useToggleState.test.ts', hash: '16429899316216024046' }, + { file: 'packages/react-components/react-button/src/utils/useToggleState.ts', hash: '18013134462047555620' }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonAppearance.stories.tsx', + hash: '18327432462363093567', + }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonBestPractices.md', + hash: '15966904879684831389', + }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonDefault.stories.tsx', + hash: '16309520140968874517', + }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonDescription.md', + hash: '16532145145344636837', + }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonDisabled.stories.tsx', + hash: '14560255335512811980', + }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonIcon.stories.tsx', + hash: '18026469457173329885', + }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonShape.stories.tsx', + hash: '10293515556003357551', + }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonSize.stories.tsx', + hash: '10198198054469729891', + }, + { + file: 'packages/react-components/react-button/stories/Button/ButtonWithLongText.stories.tsx', + hash: '5582045194995381624', + }, + { file: 'packages/react-components/react-button/stories/Button/index.stories.tsx', hash: '10629806941826268136' }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonAppearance.stories.tsx', + hash: '11751323304847853244', + }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonDefault.stories.tsx', + hash: '6554013591312608741', + }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonDescription.md', + hash: '11239283790606707108', + }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonDisabled.stories.tsx', + hash: '14823921486630978871', + }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonIcon.stories.tsx', + hash: '8025939386619198410', + }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonShape.stories.tsx', + hash: '12767597618316035307', + }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonSize.stories.tsx', + hash: '11351827693353756555', + }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonWithLongText.stories.tsx', + hash: '10636944211269219355', + }, + { + file: 'packages/react-components/react-button/stories/CompoundButton/index.stories.tsx', + hash: '18420395090802840095', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonAppearance.stories.tsx', + hash: '11772149593198224779', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonDefault.stories.tsx', + hash: '14407394285640449777', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonDescription.md', + hash: '7709633773581627486', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonDisabled.stories.tsx', + hash: '172889004189161693', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonIcon.stories.tsx', + hash: '12403472180433417597', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonShape.stories.tsx', + hash: '1625891071317679416', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonSize.stories.tsx', + hash: '15865604958975837898', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonSizeLarge.stories.tsx', + hash: '15800808442274998205', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonSizeMedium.stories.tsx', + hash: '14883010632519272607', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonSizeSmall.stories.tsx', + hash: '9004306881864596423', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonWithLongText.stories.tsx', + hash: '1089695309675211024', + }, + { + file: 'packages/react-components/react-button/stories/MenuButton/index.stories.tsx', + hash: '12902323920864641887', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonAppearance.stories.tsx', + hash: '16001178453275385358', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonDefault.stories.tsx', + hash: '16390183972199802935', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonDescription.md', + hash: '1218508324013847579', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonDisabled.stories.tsx', + hash: '6999498071146279140', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonIcon.stories.tsx', + hash: '3096822792677050391', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonShape.stories.tsx', + hash: '17602511593093438153', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonSize.stories.tsx', + hash: '6396106470924168525', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonSizeLarge.stories.tsx', + hash: '7470419675292342106', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonSizeMedium.stories.tsx', + hash: '16591027078031376997', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonSizeSmall.stories.tsx', + hash: '18281348385773762433', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonWithLongText.stories.tsx', + hash: '16343968451839078562', + }, + { + file: 'packages/react-components/react-button/stories/SplitButton/index.stories.tsx', + hash: '12187964862290984524', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonAppearance.stories.tsx', + hash: '17780270857595078579', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonChecked.stories.tsx', + hash: '14152692013864493219', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonDefault.stories.tsx', + hash: '1097715229128497190', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonDescription.md', + hash: '12813726539373137853', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonDisabled.stories.tsx', + hash: '18227486994944172131', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonIcon.stories.tsx', + hash: '18321466124278295375', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonShape.stories.tsx', + hash: '14209255492890451017', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonSize.stories.tsx', + hash: '4734052364110908515', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonWithLongText.stories.tsx', + hash: '16462181566839467831', + }, + { + file: 'packages/react-components/react-button/stories/ToggleButton/index.stories.tsx', + hash: '377636607901370479', + }, + { file: 'packages/react-components/react-button/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-button/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-button/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-field': [ + { file: 'packages/react-components/react-field/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-field/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-field/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-field/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-field/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-field/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-field/CHANGELOG.json', hash: '8039457963269041194' }, + { file: 'packages/react-components/react-field/CHANGELOG.md', hash: '1060451877954283372' }, + { file: 'packages/react-components/react-field/LICENSE', hash: '554933104331199409' }, + { file: 'packages/react-components/react-field/README.md', hash: '893706678477031575' }, + { file: 'packages/react-components/react-field/bundle-size/Field.fixture.js', hash: '4838490527905075486' }, + { file: 'packages/react-components/react-field/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-field/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-field/docs/Migration.md', hash: '10612980883908926799' }, + { file: 'packages/react-components/react-field/docs/Spec.md', hash: '3881094108645122580' }, + { file: 'packages/react-components/react-field/etc/react-field.api.md', hash: '12427575368903476413' }, + { file: 'packages/react-components/react-field/jest.config.js', hash: '16251327533616583441' }, + { file: 'packages/react-components/react-field/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-field/package.json', + hash: '17322716232717629014', + deps: [ + '@fluentui/react-context-selector', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-label', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-field/project.json', hash: '10933597292463507432' }, + { file: 'packages/react-components/react-field/src/Field.ts', hash: '9870089672195185903' }, + { + file: 'packages/react-components/react-field/src/components/Field/Field.test.tsx', + hash: '8461276573503618894', + }, + { file: 'packages/react-components/react-field/src/components/Field/Field.tsx', hash: '12598293249723199107' }, + { + file: 'packages/react-components/react-field/src/components/Field/Field.types.ts', + hash: '5054979877071605023', + }, + { file: 'packages/react-components/react-field/src/components/Field/index.ts', hash: '5707729203640261208' }, + { + file: 'packages/react-components/react-field/src/components/Field/renderField.tsx', + hash: '14499036947624830423', + }, + { file: 'packages/react-components/react-field/src/components/Field/useField.tsx', hash: '5536967628399082504' }, + { + file: 'packages/react-components/react-field/src/components/Field/useFieldStyles.styles.ts', + hash: '14064633758097641501', + }, + { file: 'packages/react-components/react-field/src/contexts/FieldContext.ts', hash: '14919646964922443401' }, + { file: 'packages/react-components/react-field/src/contexts/index.ts', hash: '4751556762048871598' }, + { + file: 'packages/react-components/react-field/src/contexts/useFieldContextValues.ts', + hash: '17279845786865652248', + }, + { + file: 'packages/react-components/react-field/src/contexts/useFieldControlProps.ts', + hash: '6840257994312578601', + }, + { file: 'packages/react-components/react-field/src/index.ts', hash: '16864027966588469169' }, + { file: 'packages/react-components/react-field/src/testing/isConformant.ts', hash: '17159661999478583888' }, + { + file: 'packages/react-components/react-field/stories/Field/FieldBestPractices.md', + hash: '15241567885935055286', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldComponentExamples.stories.tsx', + hash: '7102357499471409146', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldDefault.stories.tsx', + hash: '2389481372061903880', + }, + { file: 'packages/react-components/react-field/stories/Field/FieldDescription.md', hash: '8562502418038242748' }, + { + file: 'packages/react-components/react-field/stories/Field/FieldDisabled.stories.tsx', + hash: '8279245328832126716', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldHint.stories.tsx', + hash: '4859776890358075498', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldHorizontal.stories.tsx', + hash: '17955668180315832249', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldInfo.stories.tsx', + hash: '13887433711882633123', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldRenderFunction.stories.tsx', + hash: '11505527767084781239', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldRequired.stories.tsx', + hash: '9204847011564345692', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldSize.stories.tsx', + hash: '4363541870704469900', + }, + { + file: 'packages/react-components/react-field/stories/Field/FieldValidationMessage.stories.tsx', + hash: '3714923557314846878', + }, + { file: 'packages/react-components/react-field/stories/Field/index.stories.tsx', hash: '11784715857108891473' }, + { file: 'packages/react-components/react-field/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-field/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-field/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/tokens': [ + { file: 'packages/tokens/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/tokens/.eslintrc.json', hash: '7826845955212215663' }, + { file: 'packages/tokens/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/tokens/CHANGELOG.json', hash: '14841026886481865649' }, + { file: 'packages/tokens/CHANGELOG.md', hash: '3366136784723633930' }, + { file: 'packages/tokens/LICENSE', hash: '2957492313707768209' }, + { file: 'packages/tokens/README.md', hash: '1744177084782103850' }, + { file: 'packages/tokens/config/api-extractor.json', hash: '10178698400109090564' }, + { file: 'packages/tokens/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/tokens/etc/tokens.api.md', hash: '9001732672187428224' }, + { file: 'packages/tokens/jest.config.js', hash: '15807496765609650508' }, + { file: 'packages/tokens/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/tokens/package.json', + hash: '2400468319047909006', + deps: [ + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/tokens/project.json', hash: '207057935229196254' }, + { file: 'packages/tokens/src/alias/darkColor.ts', hash: '6524628836699045198' }, + { file: 'packages/tokens/src/alias/darkColorPalette.ts', hash: '18318455665690501717' }, + { file: 'packages/tokens/src/alias/highContrastColor.ts', hash: '17333459973956732870' }, + { file: 'packages/tokens/src/alias/highContrastColorPalette.ts', hash: '7598837583164836057' }, + { file: 'packages/tokens/src/alias/lightColor.ts', hash: '699927236436408252' }, + { file: 'packages/tokens/src/alias/lightColorPalette.ts', hash: '15665362712347405664' }, + { file: 'packages/tokens/src/alias/teamsDarkColor.ts', hash: '495554757685176995' }, + { file: 'packages/tokens/src/global/borderRadius.ts', hash: '10922533387751712670' }, + { file: 'packages/tokens/src/global/brandColors.ts', hash: '13470927145154942037' }, + { file: 'packages/tokens/src/global/colorPalette.ts', hash: '14811325803284691358' }, + { file: 'packages/tokens/src/global/colors.ts', hash: '7382183712404700876' }, + { file: 'packages/tokens/src/global/curves.ts', hash: '15506710049223549044' }, + { file: 'packages/tokens/src/global/durations.ts', hash: '11571525354434980387' }, + { file: 'packages/tokens/src/global/fonts.ts', hash: '16300469290703263152' }, + { file: 'packages/tokens/src/global/index.ts', hash: '2397229802645905796' }, + { file: 'packages/tokens/src/global/spacings.ts', hash: '6252071470469473214' }, + { file: 'packages/tokens/src/global/strokeWidths.ts', hash: '1605802753556060163' }, + { file: 'packages/tokens/src/global/typographyStyles.ts', hash: '18192818131277542845' }, + { file: 'packages/tokens/src/index.ts', hash: '10799930784753146153' }, + { file: 'packages/tokens/src/sharedColorNames.ts', hash: '17837956492232571546' }, + { file: 'packages/tokens/src/statusColorMapping.ts', hash: '3958570264250862025' }, + { file: 'packages/tokens/src/themeToTokensObject.test.ts', hash: '15766396418114753078' }, + { file: 'packages/tokens/src/themeToTokensObject.ts', hash: '8566019407815526884' }, + { file: 'packages/tokens/src/themes/index.ts', hash: '16328840743172684649' }, + { file: 'packages/tokens/src/themes/teams/darkTheme.ts', hash: '10162129513779528421' }, + { file: 'packages/tokens/src/themes/teams/highContrastTheme.ts', hash: '8737380161356881067' }, + { file: 'packages/tokens/src/themes/teams/index.ts', hash: '17608448649042645716' }, + { file: 'packages/tokens/src/themes/teams/lightTheme.ts', hash: '15856732036176289418' }, + { file: 'packages/tokens/src/themes/web/darkTheme.ts', hash: '12650699875162499107' }, + { file: 'packages/tokens/src/themes/web/index.ts', hash: '13361016594897630736' }, + { file: 'packages/tokens/src/themes/web/lightTheme.ts', hash: '13431256856349139698' }, + { file: 'packages/tokens/src/tokens.test.ts', hash: '3282789169986695786' }, + { file: 'packages/tokens/src/tokens.ts', hash: '2285311445095864008' }, + { file: 'packages/tokens/src/types.ts', hash: '528143425245606708' }, + { file: 'packages/tokens/src/utils/createDarkTheme.ts', hash: '7754017445960908345' }, + { file: 'packages/tokens/src/utils/createHighContrastTheme.ts', hash: '5919985595387454286' }, + { file: 'packages/tokens/src/utils/createLightTheme.ts', hash: '13838707512292291141' }, + { file: 'packages/tokens/src/utils/createTeamsDarkTheme.ts', hash: '313717060099057838' }, + { file: 'packages/tokens/src/utils/index.ts', hash: '15545758859304259047' }, + { file: 'packages/tokens/src/utils/shadows.ts', hash: '2299298543354272552' }, + { file: 'packages/tokens/tsconfig.json', hash: '3768914200062126724' }, + { file: 'packages/tokens/tsconfig.lib.json', hash: '13671966270683185407' }, + { file: 'packages/tokens/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/ts-minbar-test-react-components': [ + { file: 'apps/ts-minbar-test-react-components/CHANGELOG.json', hash: '656745615605467027' }, + { file: 'apps/ts-minbar-test-react-components/CHANGELOG.md', hash: '7646044303546398326' }, + { file: 'apps/ts-minbar-test-react-components/README.md', hash: '16461979801860699917' }, + { file: 'apps/ts-minbar-test-react-components/files/src/index.tsx', hash: '18098612965669564749' }, + { file: 'apps/ts-minbar-test-react-components/files/tsconfig.json', hash: '11617511591496749178' }, + { file: 'apps/ts-minbar-test-react-components/just.config.ts', hash: '7156839958691239049' }, + { + file: 'apps/ts-minbar-test-react-components/package.json', + hash: '13593808421142598329', + deps: ['@fluentui/react-components', '@fluentui/scripts-tasks', '@fluentui/scripts-projects-test'], + }, + { file: 'apps/ts-minbar-test-react-components/project.json', hash: '1464494342633365324' }, + { file: 'apps/ts-minbar-test-react-components/src/index.ts', hash: '13329464376822014146' }, + { file: 'apps/ts-minbar-test-react-components/tsconfig.json', hash: '10809149894665832803' }, + ], + '@fluentui/react-virtualizer': [ + { file: 'packages/react-components/react-virtualizer/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-virtualizer/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-virtualizer/.storybook/main.js', hash: '11617744840349284164' }, + { + file: 'packages/react-components/react-virtualizer/.storybook/preview-body.html', + hash: '16210685040217365676', + }, + { file: 'packages/react-components/react-virtualizer/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-virtualizer/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-virtualizer/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-virtualizer/CHANGELOG.json', hash: '2673709193866183261' }, + { file: 'packages/react-components/react-virtualizer/CHANGELOG.md', hash: '1256483738986476246' }, + { file: 'packages/react-components/react-virtualizer/LICENSE', hash: '3825891881571607092' }, + { file: 'packages/react-components/react-virtualizer/README.md', hash: '3856986220850823081' }, + { file: 'packages/react-components/react-virtualizer/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-virtualizer/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-virtualizer/etc/react-virtualizer.api.md', hash: '5965603531558644273' }, + { file: 'packages/react-components/react-virtualizer/jest.config.js', hash: '13492638879859403130' }, + { file: 'packages/react-components/react-virtualizer/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-virtualizer/package.json', + hash: '2669636919577574734', + deps: [ + '@fluentui/react-jsx-runtime', + '@fluentui/react-utilities', + '@fluentui/react-shared-contexts', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-virtualizer/project.json', hash: '5902224839509606522' }, + { file: 'packages/react-components/react-virtualizer/src/Hooks.ts', hash: '13096719515407822478' }, + { file: 'packages/react-components/react-virtualizer/src/Utilities.ts', hash: '7452799764049456122' }, + { file: 'packages/react-components/react-virtualizer/src/Virtualizer.ts', hash: '7518409004355669143' }, + { + file: 'packages/react-components/react-virtualizer/src/VirtualizerScrollView.ts', + hash: '11480930697508633208', + }, + { + file: 'packages/react-components/react-virtualizer/src/VirtualizerScrollViewDynamic.ts', + hash: '4620222288124351857', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/Virtualizer.ts', + hash: '7927844774255893543', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/Virtualizer.types.ts', + hash: '14998671851453166952', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/index.ts', + hash: '223893684398285344', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/renderVirtualizer.tsx', + hash: '5049901196873287610', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizer.ts', + hash: '11296231769951241238', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizerStyles.styles.ts', + hash: '16200927493257981129', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/VirtualizerScrollView.ts', + hash: '14670667260237630417', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/VirtualizerScrollView.types.ts', + hash: '12726462037379246806', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/index.ts', + hash: '5341561606535506170', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/renderVirtualizerScrollView.tsx', + hash: '9987866317880670081', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/useVirtualizerScrollView.ts', + hash: '6242430380123640601', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/useVirtualizerScrollViewStyles.styles.ts', + hash: '14637414451604734747', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.ts', + hash: '3091671186485391286', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.types.ts', + hash: '1268211048994777683', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/index.ts', + hash: '4575113466604915676', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/renderVirtualizerScrollViewDynamic.tsx', + hash: '517632922593748593', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamic.tsx', + hash: '11382510692058695315', + }, + { + file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamicStyles.styles.ts', + hash: '15915807425457867423', + }, + { file: 'packages/react-components/react-virtualizer/src/hooks/hooks.types.ts', hash: '11437064553272591592' }, + { file: 'packages/react-components/react-virtualizer/src/hooks/index.ts', hash: '11212568211093860115' }, + { + file: 'packages/react-components/react-virtualizer/src/hooks/useDynamicVirtualizerMeasure.ts', + hash: '1401715616925791324', + }, + { + file: 'packages/react-components/react-virtualizer/src/hooks/useIntersectionObserver.ts', + hash: '9327842803804721', + }, + { file: 'packages/react-components/react-virtualizer/src/hooks/useMeasureList.ts', hash: '7611797157667966265' }, + { + file: 'packages/react-components/react-virtualizer/src/hooks/useMutationObserver.ts', + hash: '890252352384347130', + }, + { + file: 'packages/react-components/react-virtualizer/src/hooks/useResizeObserverRef.ts', + hash: '1724813061379453082', + }, + { + file: 'packages/react-components/react-virtualizer/src/hooks/useVirtualizerMeasure.ts', + hash: '17204283105924926987', + }, + { file: 'packages/react-components/react-virtualizer/src/index.ts', hash: '12055461814549449062' }, + { + file: 'packages/react-components/react-virtualizer/src/testing/useVirtualizer.test.ts', + hash: '17923925798907638535', + }, + { + file: 'packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrolling.ts', + hash: '10130952681932487924', + }, + { + file: 'packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrolling.types.ts', + hash: '15254358818932563361', + }, + { + file: 'packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrollingDynamic.ts', + hash: '12482063325179436183', + }, + { + file: 'packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/index.ts', + hash: '11870388641348364336', + }, + { + file: 'packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/VirtualizerContext.ts', + hash: '15927935393898582112', + }, + { + file: 'packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/index.ts', + hash: '7211653521627416542', + }, + { + file: 'packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/types.ts', + hash: '14680922875446214691', + }, + { + file: 'packages/react-components/react-virtualizer/src/utilities/createResizeObserverFromDocument.ts', + hash: '15813223612896660990', + }, + { file: 'packages/react-components/react-virtualizer/src/utilities/debounce.ts', hash: '16454772419717378051' }, + { file: 'packages/react-components/react-virtualizer/src/utilities/index.ts', hash: '5587345159392749401' }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/Default.stories.tsx', + hash: '136999915172207859', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/DefaultUnbounded.stories.tsx', + hash: '13655720455891631220', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/Dynamic.stories.tsx', + hash: '4055773401446967685', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/Horizontal.stories.tsx', + hash: '3108876537717609011', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/MultiUnbounded.stories.tsx', + hash: '8935973420982175120', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/RTL.stories.tsx', + hash: '8439153336966493360', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/Reversed.stories.tsx', + hash: '15184551952582601701', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/ReversedHorizontal.stories.tsx', + hash: '17483635137462024459', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/VirtualizerDescription.md', + hash: '14678160273834792229', + }, + { + file: 'packages/react-components/react-virtualizer/stories/Virtualizer/index.stories.ts', + hash: '7671933387398296295', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/Default.stories.tsx', + hash: '11832986632353617854', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/ScrollTo.stories.tsx', + hash: '7929370554351259593', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/SnapToAlignment.stories.tsx', + hash: '8680098754472857303', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/VirtualizerScrollViewDescription.md', + hash: '2316021851908929761', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/index.stories.ts', + hash: '8372571143132881416', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/AutoMeasure.stories.tsx', + hash: '5028243045914419788', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/Default.stories.tsx', + hash: '11215602148714725309', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/ScrollLoading.stories.tsx', + hash: '1876399932572606927', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/ScrollTo.stories.tsx', + hash: '10867398943529884768', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamicDescription.md', + hash: '11114530826542561672', + }, + { + file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/index.stories.ts', + hash: '17243437446105887357', + }, + { file: 'packages/react-components/react-virtualizer/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-virtualizer/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-virtualizer/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/scripts-github': [ + { file: 'scripts/github/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/github/jest.config.js', hash: '8128260008604718717' }, + { file: 'scripts/github/package.json', hash: '5070381828275052321' }, + { file: 'scripts/github/project.json', hash: '6576404163705013612' }, + { file: 'scripts/github/src/constants.ts', hash: '10180569673778437792' }, + { file: 'scripts/github/src/index.ts', hash: '17300117057778175664' }, + { file: 'scripts/github/src/pullRequests.ts', hash: '4776695204948789570' }, + { file: 'scripts/github/src/types.ts', hash: '10055482745627176296' }, + { file: 'scripts/github/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/github/tsconfig.lib.json', hash: '15222053984038389170' }, + { file: 'scripts/github/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-focus': [ + { file: 'packages/react-focus/.eslintrc.js', hash: '11599896202272347932' }, + { file: 'packages/react-focus/.npmignore', hash: '47056201363133096' }, + { file: 'packages/react-focus/CHANGELOG.json', hash: '11397692279063814692' }, + { file: 'packages/react-focus/CHANGELOG.md', hash: '9242204259519410788' }, + { file: 'packages/react-focus/LICENSE', hash: '7265601084779359537' }, + { file: 'packages/react-focus/README.md', hash: '18222287515603784300' }, + { file: 'packages/react-focus/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/react-focus/config/tests.js', hash: '2484785926023527183' }, + { file: 'packages/react-focus/etc/react-focus.api.md', hash: '8432716012628281751' }, + { file: 'packages/react-focus/jest.config.js', hash: '8193037916930093299' }, + { file: 'packages/react-focus/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-focus/package.json', + hash: '1454256065022966065', + deps: [ + '@fluentui/keyboard-key', + '@fluentui/merge-styles', + '@fluentui/set-version', + '@fluentui/style-utilities', + '@fluentui/utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/test-utilities', + '@fluentui/jest-serializer-merge-styles', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-focus/project.json', hash: '12135015730228535780' }, + { file: 'packages/react-focus/src/common/isConformant.ts', hash: '17939211175933685277' }, + { + file: 'packages/react-focus/src/components/FocusZone/FocusZone.EventHandler.test.tsx', + hash: '16947583524623201794', + }, + { + file: 'packages/react-focus/src/components/FocusZone/FocusZone.deprecated.test.tsx', + hash: '16034862313093379614', + }, + { file: 'packages/react-focus/src/components/FocusZone/FocusZone.test.tsx', hash: '11650445686348954059' }, + { file: 'packages/react-focus/src/components/FocusZone/FocusZone.tsx', hash: '828175718691919235' }, + { file: 'packages/react-focus/src/components/FocusZone/FocusZone.types.ts', hash: '3786532300293271588' }, + { + file: 'packages/react-focus/src/components/FocusZone/__snapshots__/FocusZone.deprecated.test.tsx.snap', + hash: '4503134291514100538', + }, + { + file: 'packages/react-focus/src/components/FocusZone/__snapshots__/FocusZone.test.tsx.snap', + hash: '1103751063082866005', + }, + { file: 'packages/react-focus/src/components/FocusZone/index.ts', hash: '4235833670383521310' }, + { file: 'packages/react-focus/src/index.ts', hash: '9196176394022516894' }, + { file: 'packages/react-focus/src/version.ts', hash: '1527424341116993644' }, + { file: 'packages/react-focus/tsconfig.json', hash: '9970069326013741624' }, + { file: 'packages/react-focus/webpack.config.js', hash: '16051215899742671889' }, + ], + '@fluentui/test-utilities': [ + { file: 'packages/test-utilities/.eslintrc.json', hash: '9627670268003919245' }, + { file: 'packages/test-utilities/.npmignore', hash: '47056201363133096' }, + { file: 'packages/test-utilities/CHANGELOG.json', hash: '6925444267223690531' }, + { file: 'packages/test-utilities/CHANGELOG.md', hash: '245017999491184014' }, + { file: 'packages/test-utilities/LICENSE', hash: '17713567152459448383' }, + { file: 'packages/test-utilities/README.md', hash: '11222179757855280088' }, + { file: 'packages/test-utilities/jest.config.js', hash: '8457350006614220129' }, + { file: 'packages/test-utilities/just.config.ts', hash: '2411455081002746933' }, + { + file: 'packages/test-utilities/package.json', + hash: '15251649362734981725', + deps: [ + '@fluentui/eslint-plugin', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:enzyme', + 'npm:react', + 'npm:react-test-renderer', + ], + }, + { file: 'packages/test-utilities/project.json', hash: '6621699011379255295' }, + { file: 'packages/test-utilities/src/createTestContainer.ts', hash: '11747895423438256529' }, + { file: 'packages/test-utilities/src/getCSSRules.test.ts', hash: '11036085907418427536' }, + { file: 'packages/test-utilities/src/getCSSRules.ts', hash: '2768262409733817568' }, + { file: 'packages/test-utilities/src/index.ts', hash: '6090673740632506280' }, + { file: 'packages/test-utilities/src/reactTestRenderer.ts', hash: '7045247159912462473' }, + { file: 'packages/test-utilities/src/safeCreate.ts', hash: '9642739023254695591' }, + { file: 'packages/test-utilities/src/safeMount.ts', hash: '6689811110183811221' }, + { file: 'packages/test-utilities/tsconfig.json', hash: '13522081573676588409' }, + ], + '@fluentui/web-components': [ + { file: 'packages/web-components/.eslintignore', hash: '5775863605913830991' }, + { file: 'packages/web-components/.eslintrc.js', hash: '14755478749016622181' }, + { file: 'packages/web-components/.mocharc.json', hash: '15702441908913539244' }, + { file: 'packages/web-components/.npmignore', hash: '4758005407379917060' }, + { file: 'packages/web-components/.storybook/main.js', hash: '6854078585881544184' }, + { file: 'packages/web-components/.storybook/manager-head.html', hash: '1303988664724770496' }, + { file: 'packages/web-components/.storybook/manager.js', hash: '9922702844286404452' }, + { file: 'packages/web-components/.storybook/preview-body.html', hash: '8850778173875476467' }, + { file: 'packages/web-components/.storybook/preview-head.html', hash: '13062935119136599012' }, + { file: 'packages/web-components/.storybook/preview.js', hash: '12365267785927470531' }, + { file: 'packages/web-components/.storybook/theme.js', hash: '18352466443106182508' }, + { file: 'packages/web-components/CHANGELOG.json', hash: '8058481764020614289' }, + { file: 'packages/web-components/CHANGELOG.md', hash: '6384940985575291649' }, + { file: 'packages/web-components/README.md', hash: '4957194106169855827' }, + { file: 'packages/web-components/api-extractor.json', hash: '9874037910410511459' }, + { file: 'packages/web-components/build/clean.js', hash: '11994715428858511375' }, + { file: 'packages/web-components/build/transform-fragments.js', hash: '1955758831314508427' }, + { file: 'packages/web-components/docs/api-report.md', hash: '844890942029344443' }, + { file: 'packages/web-components/karma.conf.js', hash: '14430480556588129331' }, + { + file: 'packages/web-components/package.json', + hash: '15722874774916562492', + deps: [ + 'npm:@microsoft/fast-colors', + 'npm:@microsoft/fast-element', + 'npm:@microsoft/fast-foundation', + 'npm:@microsoft/fast-web-utilities', + 'npm:tslib', + 'npm:@types/chai', + 'npm:@types/chai-spies', + 'npm:@types/karma', + 'npm:@types/mocha', + 'npm:chai', + 'npm:chai-spies', + 'npm:esm', + 'npm:ignore-loader', + 'npm:istanbul', + 'npm:istanbul-instrumenter-loader', + 'npm:jsdom-global', + 'npm:karma', + 'npm:karma-chrome-launcher', + 'npm:karma-coverage', + 'npm:karma-coverage-istanbul-reporter', + 'npm:karma-firefox-launcher', + 'npm:karma-mocha', + 'npm:karma-mocha-reporter', + 'npm:karma-source-map-support', + 'npm:karma-sourcemap-loader', + 'npm:karma-webpack', + 'npm:mocha', + ], + }, + { file: 'packages/web-components/project.json', hash: '7492841716046999594' }, + { file: 'packages/web-components/public/SegoeUI-VF.ttf', hash: '159686266127969426' }, + { file: 'packages/web-components/public/favicon.ico', hash: '16917280242094002623' }, + { file: 'packages/web-components/public/favicon.png', hash: '16917280242094002623' }, + { file: 'packages/web-components/public/switches.ts', hash: '14622635503477959780' }, + { file: 'packages/web-components/rollup.config.js', hash: '7231520777044994700' }, + { file: 'packages/web-components/src/__test__/setup-browser.ts', hash: '6393925655190445281' }, + { file: 'packages/web-components/src/__test__/setup-node.ts', hash: '10490210284254745630' }, + { file: 'packages/web-components/src/_docs/design-system/color-explorer/app.ts', hash: '16525852101308145550' }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/colors.ts', + hash: '11069410898767285125', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/component-types.ts', + hash: '2864670655219117529', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-block.ts', + hash: '1726259444168974953', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/README.md', + hash: '573207147273672762', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.form-associated.ts', + hash: '4081018318203536876', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.styles.ts', + hash: '14217737468289347354', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.template.ts', + hash: '6460489283275707263', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.ts', + hash: '1188287099420052879', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/index.ts', + hash: '4796903837287128591', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.styles.ts', + hash: '13389882208060587252', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.template.ts', + hash: '7850318752774051418', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.ts', + hash: '752439651934052007', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/index.ts', + hash: '11120522045483047713', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.styles.ts', + hash: '3501318262647633045', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.template.ts', + hash: '6158298528985374425', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.ts', + hash: '7588390216618702944', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/gradient/index.ts', + hash: '2196251964914651675', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/layer-background/index.ts', + hash: '18236296328006163975', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/index.ts', + hash: '16377584099774881830', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.styles.ts', + hash: '12061728961981948522', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.template.ts', + hash: '4788615482582359415', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.ts', + hash: '16153773168746232984', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/index.ts', + hash: '6340537480537054989', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.styles.ts', + hash: '9130564643805750499', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.template.ts', + hash: '12771066886177107872', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.ts', + hash: '9635151930465854500', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/components/swatch.ts', + hash: '2374441040995379727', + }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer/custom-elements.ts', + hash: '16005845429757574099', + }, + { file: 'packages/web-components/src/_docs/design-system/color-explorer/index.ts', hash: '4139861018587252333' }, + { + file: 'packages/web-components/src/_docs/design-system/color-explorer.stories.mdx', + hash: '6027445366609787259', + }, + { + file: 'packages/web-components/src/_docs/design-system/design-tokens.stories.mdx', + hash: '4311551588301406129', + }, + { + file: 'packages/web-components/src/_docs/design-system/high-contrast.stories.mdx', + hash: '1191903792423292585', + }, + { + file: 'packages/web-components/src/_docs/getting-started/customization.stories.mdx', + hash: '6142489713038292709', + }, + { + file: 'packages/web-components/src/_docs/getting-started/installation.stories.mdx', + hash: '11992526890383732411', + }, + { file: 'packages/web-components/src/_docs/getting-started/overview.stories.mdx', hash: '15478620496390793328' }, + { file: 'packages/web-components/src/_docs/integrations/angular.stories.mdx', hash: '6548470739007879103' }, + { file: 'packages/web-components/src/_docs/integrations/asp-net.stories.mdx', hash: '1204259937998840622' }, + { file: 'packages/web-components/src/_docs/integrations/aurelia.stories.mdx', hash: '16909805295122252141' }, + { file: 'packages/web-components/src/_docs/integrations/blazor.stories.mdx', hash: '3869770627389256989' }, + { file: 'packages/web-components/src/_docs/integrations/ember.stories.mdx', hash: '4203072166496955732' }, + { file: 'packages/web-components/src/_docs/integrations/introduction.stories.mdx', hash: '12602937042859133081' }, + { file: 'packages/web-components/src/_docs/integrations/react.stories.mdx', hash: '13708967245288712513' }, + { file: 'packages/web-components/src/_docs/integrations/vue.stories.mdx', hash: '6426963800392484861' }, + { file: 'packages/web-components/src/_docs/integrations/webpack.stories.mdx', hash: '13317554170485302751' }, + { file: 'packages/web-components/src/_docs/resources/browsersupport.stories.mdx', hash: '6524546059336092673' }, + { file: 'packages/web-components/src/_docs/resources/faq.stories.mdx', hash: '1456453727682391063' }, + { file: 'packages/web-components/src/_docs/resources/license.stories.mdx', hash: '17683392767993753638' }, + { file: 'packages/web-components/src/_docs/resources/security.stories.mdx', hash: '3322758800487682588' }, + { + file: 'packages/web-components/src/accordion/accordion-item/accordion-item.styles.ts', + hash: '14627617678842515919', + }, + { + file: 'packages/web-components/src/accordion/accordion-item/accordion-item.vscode.definition.json', + hash: '10920057210901896913', + }, + { file: 'packages/web-components/src/accordion/accordion-item/index.ts', hash: '4286703823452132924' }, + { file: 'packages/web-components/src/accordion/accordion.stories.ts', hash: '2382937437500019241' }, + { file: 'packages/web-components/src/accordion/accordion.styles.ts', hash: '2616249570117394811' }, + { file: 'packages/web-components/src/accordion/accordion.vscode.definition.json', hash: '3672417981681016275' }, + { file: 'packages/web-components/src/accordion/fixtures/base.html', hash: '3024182331118481628' }, + { file: 'packages/web-components/src/accordion/index.ts', hash: '15914740497616545827' }, + { file: 'packages/web-components/src/anchor/anchor.stories.ts', hash: '9035706192012038979' }, + { file: 'packages/web-components/src/anchor/anchor.styles.ts', hash: '15465582227507334647' }, + { file: 'packages/web-components/src/anchor/anchor.vscode.definition.json', hash: '8651034818913508540' }, + { file: 'packages/web-components/src/anchor/fixtures/anchor.html', hash: '1883443565225204972' }, + { file: 'packages/web-components/src/anchor/index.ts', hash: '9458058924011538243' }, + { file: 'packages/web-components/src/anchored-region/anchored-region.stories.ts', hash: '6610076333735702586' }, + { file: 'packages/web-components/src/anchored-region/anchored-region.styles.ts', hash: '2080261711970935100' }, + { + file: 'packages/web-components/src/anchored-region/anchored-region.vscode.definition.json', + hash: '7027541124759585311', + }, + { + file: 'packages/web-components/src/anchored-region/fixtures/anchored-region.html', + hash: '13833082773725244734', + }, + { file: 'packages/web-components/src/anchored-region/fixtures/base.html', hash: '10206902182629300261' }, + { file: 'packages/web-components/src/anchored-region/index.ts', hash: '14805381512806178877' }, + { file: 'packages/web-components/src/badge/badge.stories.ts', hash: '7829870913424487971' }, + { file: 'packages/web-components/src/badge/badge.styles.ts', hash: '12835744543244711667' }, + { file: 'packages/web-components/src/badge/badge.vscode.definition.json', hash: '9410590778436486830' }, + { file: 'packages/web-components/src/badge/fixtures/badge.html', hash: '16582051032870590828' }, + { file: 'packages/web-components/src/badge/index.ts', hash: '6337176198244249127' }, + { file: 'packages/web-components/src/breadcrumb/breadcrumb.stories.ts', hash: '5576414352984007107' }, + { file: 'packages/web-components/src/breadcrumb/breadcrumb.styles.ts', hash: '9025531678944737635' }, + { + file: 'packages/web-components/src/breadcrumb/breadcrumb.vscode.definition.json', + hash: '15362924125727856865', + }, + { file: 'packages/web-components/src/breadcrumb/fixtures/breadcrumb.html', hash: '17580794197360813354' }, + { file: 'packages/web-components/src/breadcrumb/index.ts', hash: '12107279212669363072' }, + { file: 'packages/web-components/src/breadcrumb-item/breadcrumb-item.stories.ts', hash: '13923942058307616526' }, + { file: 'packages/web-components/src/breadcrumb-item/breadcrumb-item.styles.ts', hash: '5697066427813550138' }, + { + file: 'packages/web-components/src/breadcrumb-item/breadcrumb-item.vscode.definition.json', + hash: '14973238164249621524', + }, + { + file: 'packages/web-components/src/breadcrumb-item/fixtures/breadcrumb-item.html', + hash: '2256941841461897698', + }, + { file: 'packages/web-components/src/breadcrumb-item/index.ts', hash: '10170598475715757416' }, + { file: 'packages/web-components/src/button/button.stories.ts', hash: '15149950852222389704' }, + { file: 'packages/web-components/src/button/button.styles.ts', hash: '5581033725893685730' }, + { file: 'packages/web-components/src/button/button.vscode.definition.json', hash: '10606722258837298009' }, + { file: 'packages/web-components/src/button/fixtures/button.html', hash: '16048526820639725636' }, + { file: 'packages/web-components/src/button/index.ts', hash: '10025134503936741972' }, + { file: 'packages/web-components/src/calendar/calendar.stories.ts', hash: '5415731527118018368' }, + { file: 'packages/web-components/src/calendar/calendar.styles.ts', hash: '16178939379219751620' }, + { file: 'packages/web-components/src/calendar/calendar.vscode.definition.json', hash: '16600596959429761196' }, + { file: 'packages/web-components/src/calendar/index.ts', hash: '15025313120163570844' }, + { file: 'packages/web-components/src/card/README.md', hash: '11211708820769945594' }, + { file: 'packages/web-components/src/card/card.stories.ts', hash: '12665353260196568301' }, + { file: 'packages/web-components/src/card/card.styles.ts', hash: '6642788192196104020' }, + { file: 'packages/web-components/src/card/card.vscode.definition.json', hash: '17543345289019782769' }, + { file: 'packages/web-components/src/card/fixtures/card.html', hash: '6380789712877866529' }, + { file: 'packages/web-components/src/card/index.ts', hash: '5042732203638931431' }, + { file: 'packages/web-components/src/checkbox/checkbox.stories.ts', hash: '13426973479653470345' }, + { file: 'packages/web-components/src/checkbox/checkbox.styles.ts', hash: '17928013517930224953' }, + { file: 'packages/web-components/src/checkbox/checkbox.vscode.definition.json', hash: '16978196820818757251' }, + { file: 'packages/web-components/src/checkbox/fixtures/checkbox.html', hash: '6155825574223549734' }, + { file: 'packages/web-components/src/checkbox/index.ts', hash: '17137250591561709651' }, + { file: 'packages/web-components/src/color/README.md', hash: '4936538017083268507' }, + { file: 'packages/web-components/src/color/palette.ts', hash: '6346372797428139526' }, + { file: 'packages/web-components/src/color/recipe.ts', hash: '17848275818537597627' }, + { + file: 'packages/web-components/src/color/recipes/contrast-and-delta-swatch-set.ts', + hash: '8821478327577403201', + }, + { file: 'packages/web-components/src/color/recipes/contrast-swatch.spec.ts', hash: '6763034643025562411' }, + { file: 'packages/web-components/src/color/recipes/contrast-swatch.ts', hash: '7186179222835665608' }, + { file: 'packages/web-components/src/color/recipes/delta-swatch-set.ts', hash: '7250566564026757202' }, + { file: 'packages/web-components/src/color/recipes/delta-swatch.ts', hash: '5230101181632974034' }, + { file: 'packages/web-components/src/color/recipes/focus-stroke.ts', hash: '11313432750226566291' }, + { file: 'packages/web-components/src/color/recipes/foreground-on-accent.spec.ts', hash: '8984772606233286102' }, + { file: 'packages/web-components/src/color/recipes/foreground-on-accent.ts', hash: '7868139582681267883' }, + { file: 'packages/web-components/src/color/recipes/gradient-shadow-stroke.ts', hash: '1080599906647216754' }, + { file: 'packages/web-components/src/color/recipes/gradient-swatch.ts', hash: '16930925285077040022' }, + { file: 'packages/web-components/src/color/recipes/neutral-layer-1.ts', hash: '16539227990178814071' }, + { file: 'packages/web-components/src/color/recipes/neutral-layer-2.ts', hash: '2950854254364558014' }, + { file: 'packages/web-components/src/color/recipes/neutral-layer-3.ts', hash: '1932920790538911795' }, + { file: 'packages/web-components/src/color/recipes/neutral-layer-4.ts', hash: '13763578604655049880' }, + { file: 'packages/web-components/src/color/recipes/neutral-layer-floating.ts', hash: '10634764317331887319' }, + { file: 'packages/web-components/src/color/recipes/neutral-layer.spec.ts', hash: '17728122078622142462' }, + { file: 'packages/web-components/src/color/recipes/underline-stroke.ts', hash: '2940626098590149659' }, + { file: 'packages/web-components/src/color/swatch.ts', hash: '1182115399952126154' }, + { file: 'packages/web-components/src/color/utilities/base-layer-luminance.ts', hash: '908846549069598899' }, + { file: 'packages/web-components/src/color/utilities/binary-search.ts', hash: '15965810484399746558' }, + { file: 'packages/web-components/src/color/utilities/color-constants.ts', hash: '911283116326368460' }, + { file: 'packages/web-components/src/color/utilities/direction-by-is-dark.ts', hash: '18271209538472530614' }, + { file: 'packages/web-components/src/color/utilities/is-dark.ts', hash: '6499864583431099903' }, + { file: 'packages/web-components/src/color/utilities/relative-luminance.ts', hash: '14920099726333320744' }, + { file: 'packages/web-components/src/combobox/combobox.stories.ts', hash: '17737189549554104347' }, + { file: 'packages/web-components/src/combobox/combobox.styles.ts', hash: '3612590046027629706' }, + { file: 'packages/web-components/src/combobox/combobox.vscode.definition.json', hash: '9215948502134970537' }, + { file: 'packages/web-components/src/combobox/fixtures/base.html', hash: '6377341256028355854' }, + { file: 'packages/web-components/src/combobox/index.ts', hash: '3868760329188361549' }, + { file: 'packages/web-components/src/component-definitions.js', hash: '11596938288017647617' }, + { file: 'packages/web-components/src/custom-elements.ts', hash: '6853381506349662742' }, + { file: 'packages/web-components/src/data-grid/data-grid-cell.styles.ts', hash: '6470686871497764974' }, + { + file: 'packages/web-components/src/data-grid/data-grid-cell.vscode.definition.json', + hash: '9813169389670938623', + }, + { file: 'packages/web-components/src/data-grid/data-grid-row.styles.ts', hash: '11995342787697800927' }, + { + file: 'packages/web-components/src/data-grid/data-grid-row.vscode.definition.json', + hash: '11698027083491170633', + }, + { file: 'packages/web-components/src/data-grid/data-grid.stories.ts', hash: '195082341198715577' }, + { file: 'packages/web-components/src/data-grid/data-grid.styles.ts', hash: '13015545836734548464' }, + { file: 'packages/web-components/src/data-grid/data-grid.vscode.definition.json', hash: '306394395578200698' }, + { file: 'packages/web-components/src/data-grid/fixtures/base.html', hash: '2029975176933840135' }, + { file: 'packages/web-components/src/data-grid/index.ts', hash: '4479416102272360583' }, + { + file: 'packages/web-components/src/design-system-provider/design-system-provider.vscode.definition.json', + hash: '6893455381211055281', + }, + { file: 'packages/web-components/src/design-system-provider/index.ts', hash: '3408274569365595348' }, + { file: 'packages/web-components/src/design-tokens.ts', hash: '1346759514197492713' }, + { file: 'packages/web-components/src/dialog/dialog.stories.ts', hash: '2154549264856264739' }, + { file: 'packages/web-components/src/dialog/dialog.styles.ts', hash: '5515912159065122827' }, + { file: 'packages/web-components/src/dialog/dialog.vscode.definition.json', hash: '16390661561666024442' }, + { file: 'packages/web-components/src/dialog/fixtures/dialog-button-test.html', hash: '11659848668155489028' }, + { file: 'packages/web-components/src/dialog/fixtures/dialog.html', hash: '9387354624656226834' }, + { file: 'packages/web-components/src/dialog/index.ts', hash: '13366407519684789611' }, + { file: 'packages/web-components/src/divider/divider.stories.ts', hash: '17515431205036180141' }, + { file: 'packages/web-components/src/divider/divider.styles.ts', hash: '6522522780375068846' }, + { file: 'packages/web-components/src/divider/divider.vscode.definition.json', hash: '6566644835494387709' }, + { file: 'packages/web-components/src/divider/fixtures/divider.html', hash: '16919230271383725260' }, + { file: 'packages/web-components/src/divider/index.ts', hash: '8744051297202798600' }, + { file: 'packages/web-components/src/flipper/fixtures/flipper.html', hash: '18037503031749648176' }, + { file: 'packages/web-components/src/flipper/flipper.stories.ts', hash: '2029950660051487243' }, + { file: 'packages/web-components/src/flipper/flipper.styles.ts', hash: '4668183589375500408' }, + { file: 'packages/web-components/src/flipper/flipper.vscode.definition.json', hash: '12395863857403691147' }, + { file: 'packages/web-components/src/flipper/index.ts', hash: '6961115814822049464' }, + { file: 'packages/web-components/src/fluent-design-system.ts', hash: '5328357756403196513' }, + { + file: 'packages/web-components/src/horizontal-scroll/fixtures/horizontal-scroll.html', + hash: '7407142165672045966', + }, + { + file: 'packages/web-components/src/horizontal-scroll/horizontal-scroll.stories.ts', + hash: '4659753969493120079', + }, + { + file: 'packages/web-components/src/horizontal-scroll/horizontal-scroll.styles.ts', + hash: '17117201230261875828', + }, + { + file: 'packages/web-components/src/horizontal-scroll/horizontal-scroll.vscode.definition.json', + hash: '15741080570528073250', + }, + { file: 'packages/web-components/src/horizontal-scroll/index.ts', hash: '3921419103069630757' }, + { file: 'packages/web-components/src/index-rollup.ts', hash: '12034689146002278856' }, + { file: 'packages/web-components/src/index.ts', hash: '11220157624258882526' }, + { file: 'packages/web-components/src/listbox/fixtures/base.html', hash: '17450593149878454417' }, + { file: 'packages/web-components/src/listbox/index.ts', hash: '16849842894902376949' }, + { file: 'packages/web-components/src/listbox/listbox.stories.ts', hash: '13218899992076915796' }, + { file: 'packages/web-components/src/listbox/listbox.styles.ts', hash: '13134007790432984126' }, + { file: 'packages/web-components/src/listbox/listbox.vscode.definition.json', hash: '2285504249297576385' }, + { file: 'packages/web-components/src/listbox-option/fixtures/base.html', hash: '3298043976123174324' }, + { file: 'packages/web-components/src/listbox-option/index.ts', hash: '16884845165196211430' }, + { file: 'packages/web-components/src/listbox-option/listbox-option.stories.ts', hash: '3911485353912942204' }, + { file: 'packages/web-components/src/listbox-option/listbox-option.styles.ts', hash: '5472503796825828800' }, + { + file: 'packages/web-components/src/listbox-option/listbox-option.vscode.definition.json', + hash: '12169738874365537443', + }, + { file: 'packages/web-components/src/menu/README.md', hash: '4690086985797850547' }, + { file: 'packages/web-components/src/menu/fixtures/menu.html', hash: '5223795368357672574' }, + { file: 'packages/web-components/src/menu/index.ts', hash: '12984518409457391743' }, + { file: 'packages/web-components/src/menu/menu.stories.ts', hash: '1915731898569110702' }, + { file: 'packages/web-components/src/menu/menu.styles.ts', hash: '18032407382470608123' }, + { file: 'packages/web-components/src/menu/menu.vscode.definition.json', hash: '18361015692746540616' }, + { file: 'packages/web-components/src/menu-item/README.md', hash: '2471380614271240054' }, + { file: 'packages/web-components/src/menu-item/fixtures/menu-item.html', hash: '5477478551196226019' }, + { file: 'packages/web-components/src/menu-item/index.ts', hash: '13279240957752518825' }, + { file: 'packages/web-components/src/menu-item/menu-item.stories.ts', hash: '15838076638865005660' }, + { file: 'packages/web-components/src/menu-item/menu-item.styles.ts', hash: '2974801370502077276' }, + { file: 'packages/web-components/src/menu-item/menu-item.vscode.definition.json', hash: '4234336076730373087' }, + { file: 'packages/web-components/src/number-field/fixtures/number-field.html', hash: '12708685999913269967' }, + { file: 'packages/web-components/src/number-field/index.ts', hash: '17115789385951625638' }, + { file: 'packages/web-components/src/number-field/number-field.stories.ts', hash: '10394814183714311962' }, + { file: 'packages/web-components/src/number-field/number-field.styles.ts', hash: '14623549441627572541' }, + { + file: 'packages/web-components/src/number-field/number-field.vscode.definition.json', + hash: '17028415243423832455', + }, + { file: 'packages/web-components/src/progress/index.ts', hash: '9496752774618153345' }, + { file: 'packages/web-components/src/progress/progress/fixtures/linear.html', hash: '14829341784378032052' }, + { file: 'packages/web-components/src/progress/progress/index.ts', hash: '8564604076877239707' }, + { file: 'packages/web-components/src/progress/progress/progress.stories.ts', hash: '10058603555464601723' }, + { file: 'packages/web-components/src/progress/progress/progress.styles.ts', hash: '7330116120779358919' }, + { + file: 'packages/web-components/src/progress/progress/progress.vscode.definition.json', + hash: '643769287652126004', + }, + { file: 'packages/web-components/src/progress/progress-ring/fixtures/circular.html', hash: '996605311265918770' }, + { file: 'packages/web-components/src/progress/progress-ring/index.ts', hash: '3669697685676353985' }, + { + file: 'packages/web-components/src/progress/progress-ring/progress-ring.stories.ts', + hash: '5925755196880654290', + }, + { + file: 'packages/web-components/src/progress/progress-ring/progress-ring.styles.ts', + hash: '13716354703004415471', + }, + { + file: 'packages/web-components/src/progress/progress-ring/progress-ring.vscode.definition.json', + hash: '1596825291672570393', + }, + { file: 'packages/web-components/src/radio/fixtures/radio.html', hash: '3697080352666891110' }, + { file: 'packages/web-components/src/radio/index.ts', hash: '9493466062086373076' }, + { file: 'packages/web-components/src/radio/radio.stories.ts', hash: '16960884279123718841' }, + { file: 'packages/web-components/src/radio/radio.styles.ts', hash: '15891108481971467349' }, + { file: 'packages/web-components/src/radio/radio.vscode.definition.json', hash: '15322865574627303302' }, + { file: 'packages/web-components/src/radio-group/fixtures/radio-group.html', hash: '3544612516605771549' }, + { file: 'packages/web-components/src/radio-group/index.ts', hash: '10678490228381938292' }, + { file: 'packages/web-components/src/radio-group/radio-group.stories.ts', hash: '13806414560882825653' }, + { file: 'packages/web-components/src/radio-group/radio-group.styles.ts', hash: '8385177110378110077' }, + { + file: 'packages/web-components/src/radio-group/radio-group.vscode.definition.json', + hash: '9271414887629310175', + }, + { file: 'packages/web-components/src/search/fixtures/search.html', hash: '6265150396064403674' }, + { file: 'packages/web-components/src/search/index.ts', hash: '8294135650557793902' }, + { file: 'packages/web-components/src/search/search.stories.ts', hash: '216592019599942783' }, + { file: 'packages/web-components/src/search/search.styles.ts', hash: '13868212863949268972' }, + { file: 'packages/web-components/src/search/search.template.ts', hash: '4266947506982034813' }, + { file: 'packages/web-components/src/search/search.vscode.definition.json', hash: '3563472923699786280' }, + { file: 'packages/web-components/src/select/fixtures/base.html', hash: '11891972925697834096' }, + { file: 'packages/web-components/src/select/index.ts', hash: '15687565201409112674' }, + { file: 'packages/web-components/src/select/select.stories.ts', hash: '5863175660897259663' }, + { file: 'packages/web-components/src/select/select.styles.ts', hash: '3712406194482296781' }, + { file: 'packages/web-components/src/select/select.vscode.definition.json', hash: '1271918521554254770' }, + { file: 'packages/web-components/src/skeleton/fixtures/base.html', hash: '3861851238801918486' }, + { file: 'packages/web-components/src/skeleton/index.ts', hash: '14218825009776077853' }, + { file: 'packages/web-components/src/skeleton/skeleton.stories.ts', hash: '16344059134848271871' }, + { file: 'packages/web-components/src/skeleton/skeleton.styles.ts', hash: '11569102660410314421' }, + { file: 'packages/web-components/src/skeleton/skeleton.vscode.definition.json', hash: '13776399384905340449' }, + { file: 'packages/web-components/src/slider/fixtures/slider.html', hash: '3716629413656055620' }, + { file: 'packages/web-components/src/slider/index.ts', hash: '5357812953333546672' }, + { file: 'packages/web-components/src/slider/slider.stories.ts', hash: '13123047633146822298' }, + { file: 'packages/web-components/src/slider/slider.styles.ts', hash: '1892611936955814405' }, + { file: 'packages/web-components/src/slider/slider.vscode.definition.json', hash: '483900830475074249' }, + { file: 'packages/web-components/src/slider-label/fixtures/slider-label.html', hash: '5161368272209451404' }, + { file: 'packages/web-components/src/slider-label/index.ts', hash: '4092561486820287710' }, + { file: 'packages/web-components/src/slider-label/slider-label.stories.ts', hash: '7954258599589121077' }, + { file: 'packages/web-components/src/slider-label/slider-label.styles.ts', hash: '15491455773337860108' }, + { + file: 'packages/web-components/src/slider-label/slider-label.vscode.definition.json', + hash: '12483410102321937264', + }, + { file: 'packages/web-components/src/storybook-typings.d.ts', hash: '3211079156530734795' }, + { file: 'packages/web-components/src/styles/direction.ts', hash: '12153415263316843969' }, + { file: 'packages/web-components/src/styles/elevation.ts', hash: '18412120983521623359' }, + { file: 'packages/web-components/src/styles/focus.ts', hash: '17539677533372493279' }, + { file: 'packages/web-components/src/styles/index.ts', hash: '6230421608586153211' }, + { file: 'packages/web-components/src/styles/patterns/button.styles.ts', hash: '5706917304841520211' }, + { file: 'packages/web-components/src/styles/patterns/index.ts', hash: '4458343837008236369' }, + { file: 'packages/web-components/src/styles/patterns/input.styles.ts', hash: '181101141302214379' }, + { file: 'packages/web-components/src/styles/patterns/type-ramp.ts', hash: '17065074643329213778' }, + { file: 'packages/web-components/src/styles/size.ts', hash: '15940819158744117174' }, + { file: 'packages/web-components/src/switch/fixtures/switch.html', hash: '10602632632551276568' }, + { file: 'packages/web-components/src/switch/index.ts', hash: '5179464485079991269' }, + { file: 'packages/web-components/src/switch/switch.stories.ts', hash: '3466964228880452094' }, + { file: 'packages/web-components/src/switch/switch.styles.ts', hash: '5702651356821793779' }, + { file: 'packages/web-components/src/switch/switch.vscode.definition.json', hash: '5174398227224275632' }, + { file: 'packages/web-components/src/tabs/fixtures/tabs.html', hash: '10764808029296259753' }, + { file: 'packages/web-components/src/tabs/index.ts', hash: '6864070573253276769' }, + { file: 'packages/web-components/src/tabs/tab/index.ts', hash: '7968168443944979516' }, + { file: 'packages/web-components/src/tabs/tab/tab.styles.ts', hash: '10696814832104289036' }, + { file: 'packages/web-components/src/tabs/tab/tab.vscode.definition.json', hash: '7548102164156459410' }, + { file: 'packages/web-components/src/tabs/tab-panel/index.ts', hash: '4232187005100764135' }, + { file: 'packages/web-components/src/tabs/tab-panel/tab-panel.styles.ts', hash: '15248109099456817024' }, + { + file: 'packages/web-components/src/tabs/tab-panel/tab-panel.vscode.definition.json', + hash: '5488351415097828677', + }, + { file: 'packages/web-components/src/tabs/tabs.stories.ts', hash: '2082227165927264768' }, + { file: 'packages/web-components/src/tabs/tabs.styles.ts', hash: '600355650265281296' }, + { file: 'packages/web-components/src/tabs/tabs.vscode.definition.json', hash: '9227590925350873549' }, + { file: 'packages/web-components/src/text-area/fixtures/text-area.html', hash: '17685073421574527347' }, + { file: 'packages/web-components/src/text-area/index.ts', hash: '12878684250332954269' }, + { file: 'packages/web-components/src/text-area/text-area.stories.ts', hash: '11877407321391546524' }, + { file: 'packages/web-components/src/text-area/text-area.styles.ts', hash: '15065223636243919006' }, + { file: 'packages/web-components/src/text-area/text-area.vscode.definition.json', hash: '7076320621770108386' }, + { file: 'packages/web-components/src/text-field/fixtures/text-field.html', hash: '15248188101787500482' }, + { file: 'packages/web-components/src/text-field/index.ts', hash: '1431468122200118439' }, + { file: 'packages/web-components/src/text-field/text-field.stories.ts', hash: '7013818112713918649' }, + { file: 'packages/web-components/src/text-field/text-field.styles.ts', hash: '12256332793993937125' }, + { + file: 'packages/web-components/src/text-field/text-field.vscode.definition.json', + hash: '15993315262587875629', + }, + { file: 'packages/web-components/src/toolbar/fixtures/toolbar.html', hash: '17064050504128491248' }, + { file: 'packages/web-components/src/toolbar/index.ts', hash: '12453222644810232136' }, + { file: 'packages/web-components/src/toolbar/toolbar.stories.ts', hash: '1697799914310593179' }, + { file: 'packages/web-components/src/toolbar/toolbar.styles.ts', hash: '4289308017211955597' }, + { file: 'packages/web-components/src/toolbar/toolbar.vscode.definition.json', hash: '16347874792378119250' }, + { file: 'packages/web-components/src/tooltip/fixtures/tooltip.html', hash: '12389500920015921635' }, + { file: 'packages/web-components/src/tooltip/index.ts', hash: '743200588034782954' }, + { file: 'packages/web-components/src/tooltip/tooltip.stories.ts', hash: '10665079383825093491' }, + { file: 'packages/web-components/src/tooltip/tooltip.styles.ts', hash: '11453551560318568053' }, + { file: 'packages/web-components/src/tooltip/tooltip.vscode.definition.json', hash: '255164464472711194' }, + { file: 'packages/web-components/src/tree-item/fixtures/tree-item.html', hash: '6727518786838440297' }, + { file: 'packages/web-components/src/tree-item/index.ts', hash: '16017492355039150238' }, + { file: 'packages/web-components/src/tree-item/tree-item.stories.ts', hash: '9783937195087600816' }, + { file: 'packages/web-components/src/tree-item/tree-item.styles.ts', hash: '2044030214397984029' }, + { file: 'packages/web-components/src/tree-item/tree-item.vscode.definition.json', hash: '16684450343776413349' }, + { file: 'packages/web-components/src/tree-view/fixtures/tree-view.html', hash: '3740603599119795018' }, + { file: 'packages/web-components/src/tree-view/index.ts', hash: '8827730462378185588' }, + { file: 'packages/web-components/src/tree-view/tree-view.stories.ts', hash: '7887196535139156937' }, + { file: 'packages/web-components/src/tree-view/tree-view.styles.ts', hash: '462034363628475408' }, + { file: 'packages/web-components/src/tree-view/tree-view.vscode.definition.json', hash: '10110096905446449680' }, + { file: 'packages/web-components/src/utilities/behaviors.ts', hash: '16191844928733345933' }, + { file: 'packages/web-components/src/utilities/type-ramp.ts', hash: '4704993640298765791' }, + { file: 'packages/web-components/storybook-typings.d.ts', hash: '3211079156530734795' }, + { file: 'packages/web-components/tsconfig.json', hash: '6412759596685248991' }, + ], + '@fluentui/typings': [ + { file: 'typings/README.md', hash: '10583482367772263258' }, + { file: 'typings/custom-global/README.md', hash: '5649541318408753542' }, + { file: 'typings/custom-global/index.d.ts', hash: '7011206993849892993' }, + { file: 'typings/custom-global/tsconfig.json', hash: '18038664144425018676' }, + { file: 'typings/environment/README.md', hash: '10578036741537756312' }, + { file: 'typings/environment/index.d.ts', hash: '12285001276050637139' }, + { file: 'typings/environment/tsconfig.json', hash: '18038664144425018676' }, + { file: 'typings/find-free-port/index.d.ts', hash: '2397853445417492311' }, + { file: 'typings/find-free-port/tsconfig.json', hash: '18038664144425018676' }, + { file: 'typings/ignore-not-found-export-webpack-plugin/index.d.ts', hash: '1725452347235429415' }, + { file: 'typings/ignore-not-found-export-webpack-plugin/tsconfig.json', hash: '4750736256261933835' }, + { file: 'typings/json-stable-stringify-without-jsonify/index.d.ts', hash: '18439733450073198259' }, + { file: 'typings/json-stable-stringify-without-jsonify/tsconfig.json', hash: '18038664144425018676' }, + { file: 'typings/lerna/index.d.ts', hash: '9898149106273015856' }, + { file: 'typings/lerna/tsconfig.json', hash: '18038664144425018676' }, + { file: 'typings/package.json', hash: '12934772172736494740' }, + { file: 'typings/project.json', hash: '12537270325437916372' }, + { file: 'typings/static-assets/README.md', hash: '17775554958060567487' }, + { file: 'typings/static-assets/index.d.ts', hash: '10117523410007827376' }, + { file: 'typings/static-assets/tsconfig.json', hash: '18038664144425018676' }, + { file: 'typings/storybook__addons/index.d.ts', hash: '13039226549181277056' }, + { file: 'typings/storybook__addons/tsconfig.json', hash: '18038664144425018676' }, + { file: 'typings/tsconfig.json', hash: '15097887487356030189' }, + ], + '@fluentui/react-icons-mdl2': [ + { file: 'packages/react-icons-mdl2/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/react-icons-mdl2/.npmignore', hash: '7699079327417375383' }, + { file: 'packages/react-icons-mdl2/CHANGELOG.json', hash: '1430423070199017856' }, + { file: 'packages/react-icons-mdl2/CHANGELOG.md', hash: '1264357153435679050' }, + { file: 'packages/react-icons-mdl2/LICENSE', hash: '9395811624481750314' }, + { file: 'packages/react-icons-mdl2/README.md', hash: '12012648870062646297' }, + { file: 'packages/react-icons-mdl2/config/tests.js', hash: '2484785926023527183' }, + { file: 'packages/react-icons-mdl2/jest.config.js', hash: '8193037916930093299' }, + { file: 'packages/react-icons-mdl2/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-icons-mdl2/package.json', + hash: '12554934536586602710', + deps: [ + 'npm:@microsoft/load-themed-styles', + '@fluentui/react-icon-provider', + '@fluentui/set-version', + '@fluentui/utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:react', + ], + }, + { file: 'packages/react-icons-mdl2/project.json', hash: '9405952407540858057' }, + { file: 'packages/react-icons-mdl2/src/components/AcceptIcon.tsx', hash: '13272820529719697754' }, + { file: 'packages/react-icons-mdl2/src/components/AcceptMediumIcon.tsx', hash: '233759165174457955' }, + { file: 'packages/react-icons-mdl2/src/components/AccessLogoIcon.tsx', hash: '10076820615385413143' }, + { file: 'packages/react-icons-mdl2/src/components/AccessibiltyCheckerIcon.tsx', hash: '17163154328238480502' }, + { file: 'packages/react-icons-mdl2/src/components/AccountActivityIcon.tsx', hash: '10083780395725044448' }, + { file: 'packages/react-icons-mdl2/src/components/AccountBrowserIcon.tsx', hash: '4886838405698581415' }, + { file: 'packages/react-icons-mdl2/src/components/AccountManagementIcon.tsx', hash: '14240924682416561361' }, + { file: 'packages/react-icons-mdl2/src/components/AccountsIcon.tsx', hash: '5091094539386694432' }, + { file: 'packages/react-icons-mdl2/src/components/ActionCenterIcon.tsx', hash: '7299586471180464700' }, + { file: 'packages/react-icons-mdl2/src/components/ActivateOrdersIcon.tsx', hash: '4724335180979374061' }, + { file: 'packages/react-icons-mdl2/src/components/ActivityFeedIcon.tsx', hash: '9930772763792149030' }, + { file: 'packages/react-icons-mdl2/src/components/AddBookmarkIcon.tsx', hash: '9685299498471779185' }, + { file: 'packages/react-icons-mdl2/src/components/AddEventIcon.tsx', hash: '9223382545511878618' }, + { file: 'packages/react-icons-mdl2/src/components/AddFavoriteFillIcon.tsx', hash: '13153789552411326133' }, + { file: 'packages/react-icons-mdl2/src/components/AddFavoriteIcon.tsx', hash: '16108295555277104516' }, + { file: 'packages/react-icons-mdl2/src/components/AddFriendIcon.tsx', hash: '11602302526096078759' }, + { file: 'packages/react-icons-mdl2/src/components/AddGroupIcon.tsx', hash: '8297395296545127141' }, + { file: 'packages/react-icons-mdl2/src/components/AddHomeIcon.tsx', hash: '11775157314316771124' }, + { file: 'packages/react-icons-mdl2/src/components/AddIcon.tsx', hash: '649995549095629328' }, + { file: 'packages/react-icons-mdl2/src/components/AddInIcon.tsx', hash: '5951209157788023487' }, + { file: 'packages/react-icons-mdl2/src/components/AddLinkIcon.tsx', hash: '7371973306206784109' }, + { file: 'packages/react-icons-mdl2/src/components/AddNotesIcon.tsx', hash: '4656052725575234588' }, + { file: 'packages/react-icons-mdl2/src/components/AddOnlineMeetingIcon.tsx', hash: '14406263341432389439' }, + { file: 'packages/react-icons-mdl2/src/components/AddPhoneIcon.tsx', hash: '3625529200821399716' }, + { file: 'packages/react-icons-mdl2/src/components/AddReactionIcon.tsx', hash: '13460751958280979491' }, + { file: 'packages/react-icons-mdl2/src/components/AddSpaceAfterIcon.tsx', hash: '15074348565770991976' }, + { file: 'packages/react-icons-mdl2/src/components/AddSpaceBeforeIcon.tsx', hash: '3142131346206110407' }, + { file: 'packages/react-icons-mdl2/src/components/AddToIcon.tsx', hash: '538841695346118641' }, + { file: 'packages/react-icons-mdl2/src/components/AddToShoppingListIcon.tsx', hash: '8565378581856667931' }, + { file: 'packages/react-icons-mdl2/src/components/AddWorkIcon.tsx', hash: '7602013393075909897' }, + { file: 'packages/react-icons-mdl2/src/components/AirTicketsIcon.tsx', hash: '17373350328176895637' }, + { file: 'packages/react-icons-mdl2/src/components/AirplaneIcon.tsx', hash: '5054051762224313358' }, + { file: 'packages/react-icons-mdl2/src/components/AirplaneSolidIcon.tsx', hash: '3959451231147223815' }, + { file: 'packages/react-icons-mdl2/src/components/AlarmClockIcon.tsx', hash: '4729092436626120955' }, + { file: 'packages/react-icons-mdl2/src/components/AlbumIcon.tsx', hash: '3945464638930199870' }, + { file: 'packages/react-icons-mdl2/src/components/AlbumRemoveIcon.tsx', hash: '11070708387356752287' }, + { file: 'packages/react-icons-mdl2/src/components/AlertSettingsIcon.tsx', hash: '16533100387166307350' }, + { file: 'packages/react-icons-mdl2/src/components/AlertSolidIcon.tsx', hash: '13010023221781344193' }, + { file: 'packages/react-icons-mdl2/src/components/AlignCenterIcon.tsx', hash: '17076325177021464640' }, + { file: 'packages/react-icons-mdl2/src/components/AlignHorizontalCenterIcon.tsx', hash: '14349572761959928148' }, + { file: 'packages/react-icons-mdl2/src/components/AlignHorizontalLeftIcon.tsx', hash: '9773512587719486081' }, + { file: 'packages/react-icons-mdl2/src/components/AlignHorizontalRightIcon.tsx', hash: '16947375829587998009' }, + { file: 'packages/react-icons-mdl2/src/components/AlignJustifyIcon.tsx', hash: '4802981133282120135' }, + { file: 'packages/react-icons-mdl2/src/components/AlignLeftIcon.tsx', hash: '17564125727224245385' }, + { file: 'packages/react-icons-mdl2/src/components/AlignRightIcon.tsx', hash: '5970481821484554499' }, + { file: 'packages/react-icons-mdl2/src/components/AlignVerticalBottomIcon.tsx', hash: '9971142954072746645' }, + { file: 'packages/react-icons-mdl2/src/components/AlignVerticalCenterIcon.tsx', hash: '351673482399466793' }, + { file: 'packages/react-icons-mdl2/src/components/AlignVerticalTopIcon.tsx', hash: '8851249200156919191' }, + { file: 'packages/react-icons-mdl2/src/components/AllAppsIcon.tsx', hash: '16292576204589409158' }, + { file: 'packages/react-icons-mdl2/src/components/AllAppsMirroredIcon.tsx', hash: '4672918375225717266' }, + { file: 'packages/react-icons-mdl2/src/components/AllCurrencyIcon.tsx', hash: '4596000769812652830' }, + { file: 'packages/react-icons-mdl2/src/components/AltTextIcon.tsx', hash: '17657616199898733800' }, + { file: 'packages/react-icons-mdl2/src/components/AmazonWebServicesLogoIcon.tsx', hash: '11765565114057427639' }, + { file: 'packages/react-icons-mdl2/src/components/AnalyticsQueryIcon.tsx', hash: '11433855487017698147' }, + { file: 'packages/react-icons-mdl2/src/components/AnalyticsReportIcon.tsx', hash: '18354054869655929023' }, + { file: 'packages/react-icons-mdl2/src/components/AnalyticsViewIcon.tsx', hash: '10418305492179508701' }, + { file: 'packages/react-icons-mdl2/src/components/AnchorLockIcon.tsx', hash: '3423082534614830402' }, + { file: 'packages/react-icons-mdl2/src/components/AndroidLogoIcon.tsx', hash: '14686412471023102815' }, + { file: 'packages/react-icons-mdl2/src/components/AnnotationIcon.tsx', hash: '11342377332737430043' }, + { file: 'packages/react-icons-mdl2/src/components/ApacheIvyLogo32Icon.tsx', hash: '2918134896312448658' }, + { file: 'packages/react-icons-mdl2/src/components/ApacheMavenLogoIcon.tsx', hash: '16399596079327715994' }, + { file: 'packages/react-icons-mdl2/src/components/ArchiveIcon.tsx', hash: '12280332357717161867' }, + { file: 'packages/react-icons-mdl2/src/components/ArchiveUndoIcon.tsx', hash: '10856545521803800470' }, + { file: 'packages/react-icons-mdl2/src/components/AreaChartIcon.tsx', hash: '5179382537274327584' }, + { file: 'packages/react-icons-mdl2/src/components/ArrangeBringForwardIcon.tsx', hash: '5433898051558651326' }, + { file: 'packages/react-icons-mdl2/src/components/ArrangeBringToFrontIcon.tsx', hash: '1505051143939122001' }, + { file: 'packages/react-icons-mdl2/src/components/ArrangeByFromIcon.tsx', hash: '11165324307950102881' }, + { file: 'packages/react-icons-mdl2/src/components/ArrangeSendBackwardIcon.tsx', hash: '3571562683944194254' }, + { file: 'packages/react-icons-mdl2/src/components/ArrangeSendToBackIcon.tsx', hash: '17278998742575976905' }, + { file: 'packages/react-icons-mdl2/src/components/ArrivalsIcon.tsx', hash: '18235477685319469615' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowDownRight8Icon.tsx', hash: '12907225691599052628' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowDownRightMirrored8Icon.tsx', hash: '4497171579545271048' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowTallDownLeftIcon.tsx', hash: '17174274091977555889' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowTallDownRightIcon.tsx', hash: '12343213447484503186' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowTallUpLeftIcon.tsx', hash: '5438583383881980943' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowTallUpRightIcon.tsx', hash: '5856822185825999666' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowUpRight8Icon.tsx', hash: '15423363474761989994' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowUpRightIcon.tsx', hash: '5633293037068413854' }, + { file: 'packages/react-icons-mdl2/src/components/ArrowUpRightMirrored8Icon.tsx', hash: '16226342630129853713' }, + { file: 'packages/react-icons-mdl2/src/components/ArticlesIcon.tsx', hash: '4505935511685500431' }, + { file: 'packages/react-icons-mdl2/src/components/AscendingIcon.tsx', hash: '17273836348684464916' }, + { file: 'packages/react-icons-mdl2/src/components/AspectRatioIcon.tsx', hash: '9472692140636682439' }, + { file: 'packages/react-icons-mdl2/src/components/AssessmentGroupIcon.tsx', hash: '9990042987655129422' }, + { file: 'packages/react-icons-mdl2/src/components/AssessmentGroupTemplateIcon.tsx', hash: '2062691050575372150' }, + { file: 'packages/react-icons-mdl2/src/components/AssetLibraryIcon.tsx', hash: '7791059590913763172' }, + { file: 'packages/react-icons-mdl2/src/components/AssignIcon.tsx', hash: '14743301672967242916' }, + { file: 'packages/react-icons-mdl2/src/components/AssignPolicyIcon.tsx', hash: '1142747429676413857' }, + { file: 'packages/react-icons-mdl2/src/components/AsteriskIcon.tsx', hash: '14432692334937635758' }, + { file: 'packages/react-icons-mdl2/src/components/AsteriskSolidIcon.tsx', hash: '10298288423353384806' }, + { file: 'packages/react-icons-mdl2/src/components/AttachIcon.tsx', hash: '11845773719191763640' }, + { file: 'packages/react-icons-mdl2/src/components/AustralianRulesIcon.tsx', hash: '4152554014500550815' }, + { file: 'packages/react-icons-mdl2/src/components/AutoDeploySettingsIcon.tsx', hash: '5682077687972027110' }, + { file: 'packages/react-icons-mdl2/src/components/AutoEnhanceOffIcon.tsx', hash: '3171393689469182643' }, + { file: 'packages/react-icons-mdl2/src/components/AutoEnhanceOnIcon.tsx', hash: '698710895866528245' }, + { file: 'packages/react-icons-mdl2/src/components/AutoFillTemplateIcon.tsx', hash: '13695873113605750361' }, + { file: 'packages/react-icons-mdl2/src/components/AutoFitContentsIcon.tsx', hash: '2501936783055150056' }, + { file: 'packages/react-icons-mdl2/src/components/AutoFitWindowIcon.tsx', hash: '13452477990359238332' }, + { file: 'packages/react-icons-mdl2/src/components/AutoHeightIcon.tsx', hash: '2752523469179302565' }, + { file: 'packages/react-icons-mdl2/src/components/AutoRacingIcon.tsx', hash: '3132079180733486488' }, + { file: 'packages/react-icons-mdl2/src/components/AutomateFlowIcon.tsx', hash: '16831072257370889941' }, + { file: 'packages/react-icons-mdl2/src/components/AwayStatusIcon.tsx', hash: '16196688126001285506' }, + { file: 'packages/react-icons-mdl2/src/components/BIDashboardIcon.tsx', hash: '18233375696995378311' }, + { file: 'packages/react-icons-mdl2/src/components/BackIcon.tsx', hash: '9049703118809299925' }, + { file: 'packages/react-icons-mdl2/src/components/BackToWindowIcon.tsx', hash: '11285424535009773565' }, + { file: 'packages/react-icons-mdl2/src/components/BackgroundColorIcon.tsx', hash: '13239767601679223355' }, + { file: 'packages/react-icons-mdl2/src/components/BacklogBoardIcon.tsx', hash: '15475298857584077772' }, + { file: 'packages/react-icons-mdl2/src/components/BacklogIcon.tsx', hash: '8025374010749681963' }, + { file: 'packages/react-icons-mdl2/src/components/BacklogListIcon.tsx', hash: '12282522729595068441' }, + { file: 'packages/react-icons-mdl2/src/components/BadgeIcon.tsx', hash: '18225924514525553158' }, + { file: 'packages/react-icons-mdl2/src/components/BalloonsIcon.tsx', hash: '13689663511218690347' }, + { file: 'packages/react-icons-mdl2/src/components/BankIcon.tsx', hash: '1418173345319401536' }, + { file: 'packages/react-icons-mdl2/src/components/BankSolidIcon.tsx', hash: '15889746559469221934' }, + { file: 'packages/react-icons-mdl2/src/components/BarChart4Icon.tsx', hash: '14519428920477073539' }, + { file: 'packages/react-icons-mdl2/src/components/BarChartHorizontalIcon.tsx', hash: '15035881198223458022' }, + { file: 'packages/react-icons-mdl2/src/components/BarChartVerticalEditIcon.tsx', hash: '10723949843818994593' }, + { file: 'packages/react-icons-mdl2/src/components/BarChartVerticalFillIcon.tsx', hash: '3129620341778946443' }, + { file: 'packages/react-icons-mdl2/src/components/BarChartVerticalFilterIcon.tsx', hash: '18371318246119377910' }, + { + file: 'packages/react-icons-mdl2/src/components/BarChartVerticalFilterSolidIcon.tsx', + hash: '14678037970012215655', + }, + { file: 'packages/react-icons-mdl2/src/components/BarChartVerticalIcon.tsx', hash: '12226677053677932853' }, + { file: 'packages/react-icons-mdl2/src/components/BaseballIcon.tsx', hash: '12818296635193741142' }, + { file: 'packages/react-icons-mdl2/src/components/BeerMugIcon.tsx', hash: '12665371620776874704' }, + { file: 'packages/react-icons-mdl2/src/components/BidiLtrIcon.tsx', hash: '10928894856767197769' }, + { file: 'packages/react-icons-mdl2/src/components/BidiRtlIcon.tsx', hash: '3395616160090573366' }, + { file: 'packages/react-icons-mdl2/src/components/BirthdayCakeIcon.tsx', hash: '576834721585654637' }, + { file: 'packages/react-icons-mdl2/src/components/BitbucketLogo32Icon.tsx', hash: '6575071044668833382' }, + { file: 'packages/react-icons-mdl2/src/components/BlobStorageIcon.tsx', hash: '13514398799207035118' }, + { file: 'packages/react-icons-mdl2/src/components/BlockContactIcon.tsx', hash: '11565246906910685738' }, + { file: 'packages/react-icons-mdl2/src/components/Blocked12Icon.tsx', hash: '13462460695764374955' }, + { file: 'packages/react-icons-mdl2/src/components/Blocked2Icon.tsx', hash: '2520160366904418187' }, + { file: 'packages/react-icons-mdl2/src/components/Blocked2SolidIcon.tsx', hash: '8458365681183234441' }, + { file: 'packages/react-icons-mdl2/src/components/BlockedIcon.tsx', hash: '3749446691227940562' }, + { file: 'packages/react-icons-mdl2/src/components/BlockedSiteIcon.tsx', hash: '12610611766096702608' }, + { file: 'packages/react-icons-mdl2/src/components/BlockedSiteSolid12Icon.tsx', hash: '13735398763025222883' }, + { file: 'packages/react-icons-mdl2/src/components/BlockedSolidIcon.tsx', hash: '11543517390104023728' }, + { file: 'packages/react-icons-mdl2/src/components/BlogIcon.tsx', hash: '15238138213428866603' }, + { file: 'packages/react-icons-mdl2/src/components/BlowingSnowIcon.tsx', hash: '15016544739088464871' }, + { file: 'packages/react-icons-mdl2/src/components/BlurIcon.tsx', hash: '15939225359960098363' }, + { file: 'packages/react-icons-mdl2/src/components/BoardsIcon.tsx', hash: '10829570643337490973' }, + { file: 'packages/react-icons-mdl2/src/components/BoldIcon.tsx', hash: '10380225123111595334' }, + { file: 'packages/react-icons-mdl2/src/components/BookAnswersIcon.tsx', hash: '14791394905429321702' }, + { file: 'packages/react-icons-mdl2/src/components/BookmarkReportIcon.tsx', hash: '4210713580408367132' }, + { file: 'packages/react-icons-mdl2/src/components/BookmarksIcon.tsx', hash: '15356635029801629161' }, + { file: 'packages/react-icons-mdl2/src/components/BookmarksMirroredIcon.tsx', hash: '875828057988760076' }, + { file: 'packages/react-icons-mdl2/src/components/BorderDashIcon.tsx', hash: '8829457069107821324' }, + { file: 'packages/react-icons-mdl2/src/components/BorderDotIcon.tsx', hash: '9240317214925189417' }, + { file: 'packages/react-icons-mdl2/src/components/BoxAdditionSolidIcon.tsx', hash: '11350503466850356760' }, + { file: 'packages/react-icons-mdl2/src/components/BoxCheckmarkSolidIcon.tsx', hash: '3993984423108653768' }, + { file: 'packages/react-icons-mdl2/src/components/BoxLogoIcon.tsx', hash: '3477822992375579248' }, + { file: 'packages/react-icons-mdl2/src/components/BoxMultiplySolidIcon.tsx', hash: '3025940095014892577' }, + { file: 'packages/react-icons-mdl2/src/components/BoxPlaySolidIcon.tsx', hash: '651778939019116633' }, + { file: 'packages/react-icons-mdl2/src/components/BoxSubtractSolidIcon.tsx', hash: '15828442106320112550' }, + { file: 'packages/react-icons-mdl2/src/components/BranchCommitIcon.tsx', hash: '1701598958667655873' }, + { file: 'packages/react-icons-mdl2/src/components/BranchCompareIcon.tsx', hash: '7455107304051907662' }, + { file: 'packages/react-icons-mdl2/src/components/BranchFork2Icon.tsx', hash: '16019747120871666258' }, + { file: 'packages/react-icons-mdl2/src/components/BranchForkIcon.tsx', hash: '11917755225984172871' }, + { file: 'packages/react-icons-mdl2/src/components/BranchLockedIcon.tsx', hash: '11676671461632403921' }, + { file: 'packages/react-icons-mdl2/src/components/BranchMergeIcon.tsx', hash: '11636727331798320000' }, + { file: 'packages/react-icons-mdl2/src/components/BranchPullRequestIcon.tsx', hash: '18185688154471541900' }, + { file: 'packages/react-icons-mdl2/src/components/BranchSearchIcon.tsx', hash: '15942190495184577267' }, + { file: 'packages/react-icons-mdl2/src/components/BranchShelvesetIcon.tsx', hash: '9506880191029106661' }, + { file: 'packages/react-icons-mdl2/src/components/BreadcrumbIcon.tsx', hash: '16302978875050387015' }, + { file: 'packages/react-icons-mdl2/src/components/BreakfastIcon.tsx', hash: '4434316272013442903' }, + { file: 'packages/react-icons-mdl2/src/components/BrightnessIcon.tsx', hash: '4502688003795424689' }, + { file: 'packages/react-icons-mdl2/src/components/BroomIcon.tsx', hash: '15601692763557396697' }, + { file: 'packages/react-icons-mdl2/src/components/BrowserScreenShotIcon.tsx', hash: '387157802078007804' }, + { file: 'packages/react-icons-mdl2/src/components/BrowserTabIcon.tsx', hash: '16720728111746037477' }, + { file: 'packages/react-icons-mdl2/src/components/BrowserTabScreenshotIcon.tsx', hash: '9486182720700898248' }, + { file: 'packages/react-icons-mdl2/src/components/BrunchIcon.tsx', hash: '9304993816741728195' }, + { file: 'packages/react-icons-mdl2/src/components/BrushIcon.tsx', hash: '2083197491638533728' }, + { file: 'packages/react-icons-mdl2/src/components/BucketColorFillIcon.tsx', hash: '9533337610559240832' }, + { file: 'packages/react-icons-mdl2/src/components/BucketColorIcon.tsx', hash: '7483666238641885831' }, + { file: 'packages/react-icons-mdl2/src/components/BufferTimeAfterIcon.tsx', hash: '7575934789210637908' }, + { file: 'packages/react-icons-mdl2/src/components/BufferTimeBeforeIcon.tsx', hash: '10657985189959504185' }, + { file: 'packages/react-icons-mdl2/src/components/BufferTimeBothIcon.tsx', hash: '15953428896414748271' }, + { file: 'packages/react-icons-mdl2/src/components/BugBlockIcon.tsx', hash: '14977946201663289590' }, + { file: 'packages/react-icons-mdl2/src/components/BugIcon.tsx', hash: '7308488488840840943' }, + { file: 'packages/react-icons-mdl2/src/components/BugSolidIcon.tsx', hash: '13965227196570703817' }, + { file: 'packages/react-icons-mdl2/src/components/BugSyncIcon.tsx', hash: '11993139694121706389' }, + { file: 'packages/react-icons-mdl2/src/components/BuildDefinitionIcon.tsx', hash: '7405946235420127193' }, + { file: 'packages/react-icons-mdl2/src/components/BuildIcon.tsx', hash: '5745313003747949584' }, + { file: 'packages/react-icons-mdl2/src/components/BuildIssueIcon.tsx', hash: '15729409904590152849' }, + { file: 'packages/react-icons-mdl2/src/components/BuildQueueIcon.tsx', hash: '1045754058954301815' }, + { file: 'packages/react-icons-mdl2/src/components/BuildQueueNewIcon.tsx', hash: '16937549947035433544' }, + { file: 'packages/react-icons-mdl2/src/components/BulkUploadIcon.tsx', hash: '13960447598965911434' }, + { file: 'packages/react-icons-mdl2/src/components/BulletedList2Icon.tsx', hash: '10178406528500791691' }, + { file: 'packages/react-icons-mdl2/src/components/BulletedList2MirroredIcon.tsx', hash: '2258742585605214586' }, + { file: 'packages/react-icons-mdl2/src/components/BulletedListBulletIcon.tsx', hash: '1388559911534605379' }, + { + file: 'packages/react-icons-mdl2/src/components/BulletedListBulletMirroredIcon.tsx', + hash: '13952921300372285478', + }, + { file: 'packages/react-icons-mdl2/src/components/BulletedListIcon.tsx', hash: '7216178630996754817' }, + { file: 'packages/react-icons-mdl2/src/components/BulletedListMirroredIcon.tsx', hash: '6002486582315584292' }, + { file: 'packages/react-icons-mdl2/src/components/BulletedListTextIcon.tsx', hash: '6332928603076498646' }, + { + file: 'packages/react-icons-mdl2/src/components/BulletedListTextMirroredIcon.tsx', + hash: '13827292519455109191', + }, + { file: 'packages/react-icons-mdl2/src/components/BulletedTreeListIcon.tsx', hash: '17841013603095641202' }, + { file: 'packages/react-icons-mdl2/src/components/BullseyeIcon.tsx', hash: '16080619879843331969' }, + { file: 'packages/react-icons-mdl2/src/components/BullseyeTargetEditIcon.tsx', hash: '6635034443595197483' }, + { file: 'packages/react-icons-mdl2/src/components/BullseyeTargetIcon.tsx', hash: '985692057574074255' }, + { file: 'packages/react-icons-mdl2/src/components/BusIcon.tsx', hash: '12406265701944432854' }, + { file: 'packages/react-icons-mdl2/src/components/BusSolidIcon.tsx', hash: '3315766964639000487' }, + { file: 'packages/react-icons-mdl2/src/components/BusinessHoursSignIcon.tsx', hash: '10489361169986732175' }, + { file: 'packages/react-icons-mdl2/src/components/ButtonControlIcon.tsx', hash: '6206420526372154740' }, + { file: 'packages/react-icons-mdl2/src/components/CPlusPlusIcon.tsx', hash: '8979710346279727933' }, + { file: 'packages/react-icons-mdl2/src/components/CPlusPlusLanguageIcon.tsx', hash: '4941896980217157487' }, + { file: 'packages/react-icons-mdl2/src/components/CRMProcessesIcon.tsx', hash: '2938521056354911192' }, + { file: 'packages/react-icons-mdl2/src/components/CRMReportIcon.tsx', hash: '9112533953352470445' }, + { file: 'packages/react-icons-mdl2/src/components/CRMServicesIcon.tsx', hash: '12711185398904941315' }, + { file: 'packages/react-icons-mdl2/src/components/CSSIcon.tsx', hash: '3945126511682309994' }, + { file: 'packages/react-icons-mdl2/src/components/CafeIcon.tsx', hash: '7242226240974353393' }, + { file: 'packages/react-icons-mdl2/src/components/CakeIcon.tsx', hash: '4772879894474086202' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorAdditionIcon.tsx', hash: '10209418255044745710' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorDeltaIcon.tsx', hash: '7288234815715793986' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorEqualToIcon.tsx', hash: '17995372526080182029' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorGroupIcon.tsx', hash: '7666201474766909219' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorIcon.tsx', hash: '10526111833223188068' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorMultiplyIcon.tsx', hash: '7337527738134685536' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorNotEqualToIcon.tsx', hash: '14515316967948697658' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorPercentageIcon.tsx', hash: '12714490605531493306' }, + { file: 'packages/react-icons-mdl2/src/components/CalculatorSubtractIcon.tsx', hash: '7830007881922087373' }, + { file: 'packages/react-icons-mdl2/src/components/CalendarAgendaIcon.tsx', hash: '9891795127440824099' }, + { file: 'packages/react-icons-mdl2/src/components/CalendarDayIcon.tsx', hash: '11055456678255689564' }, + { file: 'packages/react-icons-mdl2/src/components/CalendarIcon.tsx', hash: '9228334659105536946' }, + { file: 'packages/react-icons-mdl2/src/components/CalendarMirroredIcon.tsx', hash: '16974288181652211965' }, + { file: 'packages/react-icons-mdl2/src/components/CalendarReplyIcon.tsx', hash: '13500005999876734340' }, + { file: 'packages/react-icons-mdl2/src/components/CalendarSettingsIcon.tsx', hash: '17100028494597246284' }, + { + file: 'packages/react-icons-mdl2/src/components/CalendarSettingsMirroredIcon.tsx', + hash: '7879742555155452791', + }, + { file: 'packages/react-icons-mdl2/src/components/CalendarWeekIcon.tsx', hash: '10398595753853743173' }, + { file: 'packages/react-icons-mdl2/src/components/CalendarWorkWeekIcon.tsx', hash: '11045818085162155973' }, + { file: 'packages/react-icons-mdl2/src/components/CalendarYearIcon.tsx', hash: '16838791748025679221' }, + { file: 'packages/react-icons-mdl2/src/components/CaloriesAddIcon.tsx', hash: '4303229413379001786' }, + { file: 'packages/react-icons-mdl2/src/components/CaloriesIcon.tsx', hash: '5463516468239336469' }, + { file: 'packages/react-icons-mdl2/src/components/CameraIcon.tsx', hash: '4195313564462257519' }, + { file: 'packages/react-icons-mdl2/src/components/CampaignTemplateIcon.tsx', hash: '3719909990425432023' }, + { file: 'packages/react-icons-mdl2/src/components/CancelIcon.tsx', hash: '10317700657146339525' }, + { file: 'packages/react-icons-mdl2/src/components/CannedChatIcon.tsx', hash: '15835322069038419693' }, + { file: 'packages/react-icons-mdl2/src/components/CarIcon.tsx', hash: '16485912454163323039' }, + { file: 'packages/react-icons-mdl2/src/components/CaretBottomLeftCenter8Icon.tsx', hash: '4973559050578265754' }, + { file: 'packages/react-icons-mdl2/src/components/CaretBottomLeftSolid8Icon.tsx', hash: '3785565672890408237' }, + { file: 'packages/react-icons-mdl2/src/components/CaretBottomRightCenter8Icon.tsx', hash: '5405021413196033014' }, + { file: 'packages/react-icons-mdl2/src/components/CaretBottomRightSolid8Icon.tsx', hash: '10231170155544951846' }, + { file: 'packages/react-icons-mdl2/src/components/CaretDown8Icon.tsx', hash: '12671861183780382583' }, + { file: 'packages/react-icons-mdl2/src/components/CaretDownSolid8Icon.tsx', hash: '3509733715106366075' }, + { file: 'packages/react-icons-mdl2/src/components/CaretHollowIcon.tsx', hash: '17702062177780790927' }, + { file: 'packages/react-icons-mdl2/src/components/CaretHollowMirroredIcon.tsx', hash: '16063090921609294476' }, + { file: 'packages/react-icons-mdl2/src/components/CaretLeft8Icon.tsx', hash: '1327169153711640634' }, + { file: 'packages/react-icons-mdl2/src/components/CaretLeftSolid8Icon.tsx', hash: '11402471956695437421' }, + { file: 'packages/react-icons-mdl2/src/components/CaretRight8Icon.tsx', hash: '2201211074827386143' }, + { file: 'packages/react-icons-mdl2/src/components/CaretRightIcon.tsx', hash: '11036717627633799736' }, + { file: 'packages/react-icons-mdl2/src/components/CaretRightSolid8Icon.tsx', hash: '18306534689265925179' }, + { file: 'packages/react-icons-mdl2/src/components/CaretSolid16Icon.tsx', hash: '14410687348052949902' }, + { file: 'packages/react-icons-mdl2/src/components/CaretSolidDownIcon.tsx', hash: '16375333673336697431' }, + { file: 'packages/react-icons-mdl2/src/components/CaretSolidIcon.tsx', hash: '17873238766448089274' }, + { file: 'packages/react-icons-mdl2/src/components/CaretSolidLeftIcon.tsx', hash: '17428990906911923042' }, + { file: 'packages/react-icons-mdl2/src/components/CaretSolidMirroredIcon.tsx', hash: '1243666110724694783' }, + { file: 'packages/react-icons-mdl2/src/components/CaretSolidRightIcon.tsx', hash: '7084165137666742875' }, + { file: 'packages/react-icons-mdl2/src/components/CaretSolidUpIcon.tsx', hash: '15884194277471378635' }, + { file: 'packages/react-icons-mdl2/src/components/CaretTopLeftCenter8Icon.tsx', hash: '11022898863557850878' }, + { file: 'packages/react-icons-mdl2/src/components/CaretTopLeftSolid8Icon.tsx', hash: '5263494152959946163' }, + { file: 'packages/react-icons-mdl2/src/components/CaretTopRightCenter8Icon.tsx', hash: '2686558306914655194' }, + { file: 'packages/react-icons-mdl2/src/components/CaretTopRightSolid8Icon.tsx', hash: '6964924610046017557' }, + { file: 'packages/react-icons-mdl2/src/components/CaretUp8Icon.tsx', hash: '1258617837263280580' }, + { file: 'packages/react-icons-mdl2/src/components/CaretUpSolid8Icon.tsx', hash: '9775824517440082506' }, + { file: 'packages/react-icons-mdl2/src/components/CatIcon.tsx', hash: '1307423506134103033' }, + { file: 'packages/react-icons-mdl2/src/components/CellPhoneIcon.tsx', hash: '11744883050395067387' }, + { file: 'packages/react-icons-mdl2/src/components/CertificateIcon.tsx', hash: '11098577087768643512' }, + { file: 'packages/react-icons-mdl2/src/components/CertifiedDatabaseIcon.tsx', hash: '3268197506929327507' }, + { file: 'packages/react-icons-mdl2/src/components/ChangeEntitlementsIcon.tsx', hash: '15952062856069144014' }, + { file: 'packages/react-icons-mdl2/src/components/ChartIcon.tsx', hash: '18370750908098125836' }, + { file: 'packages/react-icons-mdl2/src/components/ChartSeriesIcon.tsx', hash: '13748079417130253292' }, + { file: 'packages/react-icons-mdl2/src/components/ChartTemplateIcon.tsx', hash: '5187461118188430376' }, + { file: 'packages/react-icons-mdl2/src/components/ChartXAngleIcon.tsx', hash: '702266279550083036' }, + { file: 'packages/react-icons-mdl2/src/components/ChartYAngleIcon.tsx', hash: '3018945442186707874' }, + { file: 'packages/react-icons-mdl2/src/components/ChatBotIcon.tsx', hash: '18082123027226981785' }, + { file: 'packages/react-icons-mdl2/src/components/ChatIcon.tsx', hash: '6946313934754875430' }, + { file: 'packages/react-icons-mdl2/src/components/ChatInviteFriendIcon.tsx', hash: '1143757992597114980' }, + { file: 'packages/react-icons-mdl2/src/components/ChatSolidIcon.tsx', hash: '17207532252608704526' }, + { file: 'packages/react-icons-mdl2/src/components/CheckListCheckIcon.tsx', hash: '13976979216990533746' }, + { file: 'packages/react-icons-mdl2/src/components/CheckListCheckMirroredIcon.tsx', hash: '2823743636131034514' }, + { file: 'packages/react-icons-mdl2/src/components/CheckListIcon.tsx', hash: '11788721469608473297' }, + { file: 'packages/react-icons-mdl2/src/components/CheckListTextIcon.tsx', hash: '14074386913156541324' }, + { file: 'packages/react-icons-mdl2/src/components/CheckListTextMirroredIcon.tsx', hash: '15363031630517891306' }, + { file: 'packages/react-icons-mdl2/src/components/CheckMarkIcon.tsx', hash: '17574435840898453412' }, + { file: 'packages/react-icons-mdl2/src/components/CheckboxCompositeIcon.tsx', hash: '3700817757984051146' }, + { + file: 'packages/react-icons-mdl2/src/components/CheckboxCompositeReversedIcon.tsx', + hash: '2417548281134889934', + }, + { file: 'packages/react-icons-mdl2/src/components/CheckboxFillIcon.tsx', hash: '5705636971628196823' }, + { file: 'packages/react-icons-mdl2/src/components/CheckboxIcon.tsx', hash: '13025963719826327705' }, + { file: 'packages/react-icons-mdl2/src/components/CheckboxIndeterminateIcon.tsx', hash: '9025144963287070040' }, + { file: 'packages/react-icons-mdl2/src/components/CheckedOutByOther12Icon.tsx', hash: '7597136235526734925' }, + { file: 'packages/react-icons-mdl2/src/components/CheckedOutByYou12Icon.tsx', hash: '9202668097808352856' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronDownEnd6Icon.tsx', hash: '1506321891243306814' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronDownIcon.tsx', hash: '11856688968333907060' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronDownMedIcon.tsx', hash: '3739656185100519795' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronDownSmallIcon.tsx', hash: '3912213855241788999' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronFold10Icon.tsx', hash: '7741275830037417768' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronLeftEnd6Icon.tsx', hash: '10190919535291550235' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronLeftIcon.tsx', hash: '8188154068860645136' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronLeftMedIcon.tsx', hash: '12287503609853250159' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronLeftSmallIcon.tsx', hash: '4861024202375522754' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronRightEnd6Icon.tsx', hash: '1000325959569808691' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronRightIcon.tsx', hash: '7320161935500998060' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronRightMedIcon.tsx', hash: '15746619642856054936' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronRightSmallIcon.tsx', hash: '17577741214588845828' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronUnfold10Icon.tsx', hash: '5432534879181972370' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronUpEnd6Icon.tsx', hash: '17078105125300754063' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronUpIcon.tsx', hash: '17634438659387761604' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronUpMedIcon.tsx', hash: '4243233577030550262' }, + { file: 'packages/react-icons-mdl2/src/components/ChevronUpSmallIcon.tsx', hash: '11900635987956573641' }, + { file: 'packages/react-icons-mdl2/src/components/ChildofIcon.tsx', hash: '3083904410355819819' }, + { file: 'packages/react-icons-mdl2/src/components/ChopsticksIcon.tsx', hash: '12625847592625114711' }, + { file: 'packages/react-icons-mdl2/src/components/ChromeBackIcon.tsx', hash: '6919618187088778088' }, + { file: 'packages/react-icons-mdl2/src/components/ChromeBackMirroredIcon.tsx', hash: '10591631473798040220' }, + { file: 'packages/react-icons-mdl2/src/components/ChromeCloseIcon.tsx', hash: '16206970251003091389' }, + { file: 'packages/react-icons-mdl2/src/components/ChromeFullScreenIcon.tsx', hash: '2062494960606940699' }, + { file: 'packages/react-icons-mdl2/src/components/ChromeMinimizeIcon.tsx', hash: '17056646203191558710' }, + { file: 'packages/react-icons-mdl2/src/components/ChromeRestoreIcon.tsx', hash: '225347269264565974' }, + { file: 'packages/react-icons-mdl2/src/components/ChronosLogoIcon.tsx', hash: '3449218141873443765' }, + { file: 'packages/react-icons-mdl2/src/components/CircleAdditionIcon.tsx', hash: '15650364575169129058' }, + { file: 'packages/react-icons-mdl2/src/components/CircleAdditionSolidIcon.tsx', hash: '17176571996376701633' }, + { file: 'packages/react-icons-mdl2/src/components/CircleFillIcon.tsx', hash: '635408020464104748' }, + { file: 'packages/react-icons-mdl2/src/components/CircleHalfFullIcon.tsx', hash: '13078515937468162613' }, + { file: 'packages/react-icons-mdl2/src/components/CirclePauseIcon.tsx', hash: '10423095171760345779' }, + { file: 'packages/react-icons-mdl2/src/components/CirclePauseSolidIcon.tsx', hash: '201342975848082306' }, + { file: 'packages/react-icons-mdl2/src/components/CirclePlusIcon.tsx', hash: '16048474883211561128' }, + { file: 'packages/react-icons-mdl2/src/components/CircleRingIcon.tsx', hash: '13932617260710316939' }, + { file: 'packages/react-icons-mdl2/src/components/CircleShapeIcon.tsx', hash: '10337641278022257801' }, + { file: 'packages/react-icons-mdl2/src/components/CircleShapeSolidIcon.tsx', hash: '5947548758375999968' }, + { file: 'packages/react-icons-mdl2/src/components/CircleStopIcon.tsx', hash: '1746423648542538736' }, + { file: 'packages/react-icons-mdl2/src/components/CircleStopSolidIcon.tsx', hash: '17837113459357032578' }, + { file: 'packages/react-icons-mdl2/src/components/CityNext2Icon.tsx', hash: '1763087302644378770' }, + { file: 'packages/react-icons-mdl2/src/components/CityNextIcon.tsx', hash: '5006818496716556497' }, + { file: 'packages/react-icons-mdl2/src/components/ClearFilterIcon.tsx', hash: '18094972209246152564' }, + { file: 'packages/react-icons-mdl2/src/components/ClearFormattingAIcon.tsx', hash: '7989722697092274864' }, + { file: 'packages/react-icons-mdl2/src/components/ClearFormattingEraserIcon.tsx', hash: '12773764554699946939' }, + { file: 'packages/react-icons-mdl2/src/components/ClearFormattingIcon.tsx', hash: '1502190740290008586' }, + { file: 'packages/react-icons-mdl2/src/components/ClearIcon.tsx', hash: '17999460206231765560' }, + { file: 'packages/react-icons-mdl2/src/components/ClearNightIcon.tsx', hash: '8981354330252798935' }, + { file: 'packages/react-icons-mdl2/src/components/ClearSelectionIcon.tsx', hash: '8882426128133630838' }, + { file: 'packages/react-icons-mdl2/src/components/ClearSelectionMirroredIcon.tsx', hash: '3689265543794296852' }, + { file: 'packages/react-icons-mdl2/src/components/ClipboardListIcon.tsx', hash: '9949364234238621675' }, + { file: 'packages/react-icons-mdl2/src/components/ClipboardListMirroredIcon.tsx', hash: '7507542986998954617' }, + { file: 'packages/react-icons-mdl2/src/components/ClipboardSolidIcon.tsx', hash: '4016618141286983825' }, + { file: 'packages/react-icons-mdl2/src/components/ClockIcon.tsx', hash: '7108679265632247294' }, + { file: 'packages/react-icons-mdl2/src/components/CloneToDesktopIcon.tsx', hash: '16300739152915666307' }, + { file: 'packages/react-icons-mdl2/src/components/ClosePaneIcon.tsx', hash: '737646660074456284' }, + { file: 'packages/react-icons-mdl2/src/components/ClosePaneMirroredIcon.tsx', hash: '12926614467006734660' }, + { file: 'packages/react-icons-mdl2/src/components/ClosedCaptionIcon.tsx', hash: '3551295924436979273' }, + { file: 'packages/react-icons-mdl2/src/components/CloudWeatherIcon.tsx', hash: '11576958249735124404' }, + { file: 'packages/react-icons-mdl2/src/components/CloudyIcon.tsx', hash: '17413852503268998504' }, + { file: 'packages/react-icons-mdl2/src/components/CocktailsIcon.tsx', hash: '18417245516501428895' }, + { file: 'packages/react-icons-mdl2/src/components/CodeEditIcon.tsx', hash: '17489331345713312538' }, + { file: 'packages/react-icons-mdl2/src/components/CodeIcon.tsx', hash: '14096608821262520464' }, + { file: 'packages/react-icons-mdl2/src/components/CoffeeIcon.tsx', hash: '8186344784075218361' }, + { file: 'packages/react-icons-mdl2/src/components/CoffeeScriptIcon.tsx', hash: '4585287023832242224' }, + { file: 'packages/react-icons-mdl2/src/components/CollapseContentIcon.tsx', hash: '2764738467455020992' }, + { file: 'packages/react-icons-mdl2/src/components/CollapseContentSingleIcon.tsx', hash: '7832927660457611682' }, + { file: 'packages/react-icons-mdl2/src/components/CollapseMenuIcon.tsx', hash: '15690932050925209701' }, + { file: 'packages/react-icons-mdl2/src/components/CollegeFootballIcon.tsx', hash: '2165529139282588287' }, + { file: 'packages/react-icons-mdl2/src/components/CollegeHoopsIcon.tsx', hash: '5971236503493505870' }, + { file: 'packages/react-icons-mdl2/src/components/ColorIcon.tsx', hash: '12876084734020488421' }, + { file: 'packages/react-icons-mdl2/src/components/ColorSolidIcon.tsx', hash: '8778203053351823905' }, + { file: 'packages/react-icons-mdl2/src/components/ColumnIcon.tsx', hash: '14550024425629291177' }, + { file: 'packages/react-icons-mdl2/src/components/ColumnLeftTwoThirdsEditIcon.tsx', hash: '4510690927811420875' }, + { file: 'packages/react-icons-mdl2/src/components/ColumnLeftTwoThirdsIcon.tsx', hash: '10422959551643051765' }, + { file: 'packages/react-icons-mdl2/src/components/ColumnOptionsIcon.tsx', hash: '11806481398288836965' }, + { + file: 'packages/react-icons-mdl2/src/components/ColumnRightTwoThirdsEditIcon.tsx', + hash: '12696569162881326759', + }, + { file: 'packages/react-icons-mdl2/src/components/ColumnRightTwoThirdsIcon.tsx', hash: '7766809221375275712' }, + { + file: 'packages/react-icons-mdl2/src/components/ColumnVerticalSectionEditIcon.tsx', + hash: '5193286935066942189', + }, + { file: 'packages/react-icons-mdl2/src/components/ColumnVerticalSectionIcon.tsx', hash: '16260772812663125171' }, + { file: 'packages/react-icons-mdl2/src/components/CombineIcon.tsx', hash: '2646162695904339986' }, + { file: 'packages/react-icons-mdl2/src/components/ComboboxIcon.tsx', hash: '16457432093153970010' }, + { file: 'packages/react-icons-mdl2/src/components/CommandPromptIcon.tsx', hash: '15673370497459872355' }, + { file: 'packages/react-icons-mdl2/src/components/CommentActiveIcon.tsx', hash: '14547628466497745489' }, + { file: 'packages/react-icons-mdl2/src/components/CommentAddIcon.tsx', hash: '7354878907854091305' }, + { file: 'packages/react-icons-mdl2/src/components/CommentIcon.tsx', hash: '84187469314459891' }, + { file: 'packages/react-icons-mdl2/src/components/CommentNextIcon.tsx', hash: '14934145650932481133' }, + { file: 'packages/react-icons-mdl2/src/components/CommentPreviousIcon.tsx', hash: '11977205977425684281' }, + { file: 'packages/react-icons-mdl2/src/components/CommentSolidIcon.tsx', hash: '8048573688429425426' }, + { file: 'packages/react-icons-mdl2/src/components/CommentUrgentIcon.tsx', hash: '12154048446593945708' }, + { file: 'packages/react-icons-mdl2/src/components/CommitmentsIcon.tsx', hash: '12777910001507088329' }, + { file: 'packages/react-icons-mdl2/src/components/CommonDataServiceCDSIcon.tsx', hash: '10573383667002356640' }, + { file: 'packages/react-icons-mdl2/src/components/CommunicationsIcon.tsx', hash: '2616929262148546398' }, + { file: 'packages/react-icons-mdl2/src/components/CompanyDirectoryIcon.tsx', hash: '13229678923851993044' }, + { + file: 'packages/react-icons-mdl2/src/components/CompanyDirectoryMirroredIcon.tsx', + hash: '17662995171579934161', + }, + { file: 'packages/react-icons-mdl2/src/components/CompareIcon.tsx', hash: '8908469758530488215' }, + { file: 'packages/react-icons-mdl2/src/components/CompareUnevenIcon.tsx', hash: '1166031646701734056' }, + { file: 'packages/react-icons-mdl2/src/components/CompassNWIcon.tsx', hash: '15545334371181703758' }, + { file: 'packages/react-icons-mdl2/src/components/CompletedIcon.tsx', hash: '13803484294149978788' }, + { file: 'packages/react-icons-mdl2/src/components/CompletedSolidIcon.tsx', hash: '13245474842797249698' }, + { file: 'packages/react-icons-mdl2/src/components/ComplianceAuditIcon.tsx', hash: '16180906599517909755' }, + { file: 'packages/react-icons-mdl2/src/components/ConfigurationSolidIcon.tsx', hash: '18029601955623297912' }, + { file: 'packages/react-icons-mdl2/src/components/ConnectContactsIcon.tsx', hash: '12318593344407479499' }, + { file: 'packages/react-icons-mdl2/src/components/ConnectVirtualMachineIcon.tsx', hash: '15465924176916549286' }, + { file: 'packages/react-icons-mdl2/src/components/ConstructionConeIcon.tsx', hash: '3273716421616658463' }, + { file: 'packages/react-icons-mdl2/src/components/ConstructionConeSolidIcon.tsx', hash: '586555395824016181' }, + { file: 'packages/react-icons-mdl2/src/components/ContactCardIcon.tsx', hash: '15211984991523126093' }, + { file: 'packages/react-icons-mdl2/src/components/ContactCardSettingsIcon.tsx', hash: '16272932285940802787' }, + { + file: 'packages/react-icons-mdl2/src/components/ContactCardSettingsMirroredIcon.tsx', + hash: '6977373102157537623', + }, + { file: 'packages/react-icons-mdl2/src/components/ContactHeartIcon.tsx', hash: '7536220108992365098' }, + { file: 'packages/react-icons-mdl2/src/components/ContactIcon.tsx', hash: '18132497067285314627' }, + { file: 'packages/react-icons-mdl2/src/components/ContactInfoIcon.tsx', hash: '15701291551790808988' }, + { file: 'packages/react-icons-mdl2/src/components/ContactLinkIcon.tsx', hash: '7472781293705724966' }, + { file: 'packages/react-icons-mdl2/src/components/ContactListIcon.tsx', hash: '10816086027455427927' }, + { file: 'packages/react-icons-mdl2/src/components/ContactLockIcon.tsx', hash: '2009772246809814970' }, + { file: 'packages/react-icons-mdl2/src/components/ContentFeedIcon.tsx', hash: '17789668203001170336' }, + { file: 'packages/react-icons-mdl2/src/components/ContentSettingsIcon.tsx', hash: '4091778186971523972' }, + { file: 'packages/react-icons-mdl2/src/components/ContextMenuIcon.tsx', hash: '4889107644686224881' }, + { file: 'packages/react-icons-mdl2/src/components/ContrastIcon.tsx', hash: '7174159877536029563' }, + { file: 'packages/react-icons-mdl2/src/components/CopyEditIcon.tsx', hash: '15774444388513629603' }, + { file: 'packages/react-icons-mdl2/src/components/CopyIcon.tsx', hash: '10619559648487427597' }, + { file: 'packages/react-icons-mdl2/src/components/CottonIcon.tsx', hash: '18209531163290041460' }, + { file: 'packages/react-icons-mdl2/src/components/CouponIcon.tsx', hash: '3611873400401667095' }, + { file: 'packages/react-icons-mdl2/src/components/CreateMailRuleIcon.tsx', hash: '6571912614160142078' }, + { file: 'packages/react-icons-mdl2/src/components/CricketIcon.tsx', hash: '532957463090142947' }, + { file: 'packages/react-icons-mdl2/src/components/CropIcon.tsx', hash: '3165893832516880279' }, + { file: 'packages/react-icons-mdl2/src/components/CrownIcon.tsx', hash: '2168070742611806496' }, + { file: 'packages/react-icons-mdl2/src/components/CrownSolidIcon.tsx', hash: '1596557615099764967' }, + { file: 'packages/react-icons-mdl2/src/components/CubeShapeIcon.tsx', hash: '4069367604900402339' }, + { file: 'packages/react-icons-mdl2/src/components/CubeShapeSolidIcon.tsx', hash: '6848415574728862623' }, + { file: 'packages/react-icons-mdl2/src/components/CurrencyIcon.tsx', hash: '198131067017148195' }, + { file: 'packages/react-icons-mdl2/src/components/CustomListIcon.tsx', hash: '5133831396031101349' }, + { file: 'packages/react-icons-mdl2/src/components/CustomListMirroredIcon.tsx', hash: '7095106435472983257' }, + { file: 'packages/react-icons-mdl2/src/components/CustomizeToolbarIcon.tsx', hash: '6290254269650954141' }, + { file: 'packages/react-icons-mdl2/src/components/CutIcon.tsx', hash: '14916081014776173377' }, + { file: 'packages/react-icons-mdl2/src/components/CyclingIcon.tsx', hash: '13683378182102682960' }, + { file: 'packages/react-icons-mdl2/src/components/DOMIcon.tsx', hash: '12906128418122963318' }, + { file: 'packages/react-icons-mdl2/src/components/DRMIcon.tsx', hash: '4407261542633884651' }, + { file: 'packages/react-icons-mdl2/src/components/DashboardAddIcon.tsx', hash: '1539717290960865228' }, + { file: 'packages/react-icons-mdl2/src/components/DataConnectionLibraryIcon.tsx', hash: '14933785751434321440' }, + { file: 'packages/react-icons-mdl2/src/components/DataManagementSettingsIcon.tsx', hash: '6818008293843099093' }, + { file: 'packages/react-icons-mdl2/src/components/DatabaseIcon.tsx', hash: '11588229290270208748' }, + { file: 'packages/react-icons-mdl2/src/components/DatabaseSyncIcon.tsx', hash: '15094968328211527615' }, + { file: 'packages/react-icons-mdl2/src/components/DatabaseViewIcon.tsx', hash: '843483723858348348' }, + { file: 'packages/react-icons-mdl2/src/components/DataflowsIcon.tsx', hash: '8136763344477157282' }, + { file: 'packages/react-icons-mdl2/src/components/DataflowsLinkIcon.tsx', hash: '15298746876672502190' }, + { file: 'packages/react-icons-mdl2/src/components/DateTime12Icon.tsx', hash: '6627149704556179487' }, + { file: 'packages/react-icons-mdl2/src/components/DateTime2Icon.tsx', hash: '17375769868341167560' }, + { file: 'packages/react-icons-mdl2/src/components/DateTimeIcon.tsx', hash: '10442348742589426501' }, + { file: 'packages/react-icons-mdl2/src/components/DateTimeMirroredIcon.tsx', hash: '18073453778555505627' }, + { file: 'packages/react-icons-mdl2/src/components/DeactivateOrdersIcon.tsx', hash: '6649839772695767699' }, + { file: 'packages/react-icons-mdl2/src/components/DecimalsIcon.tsx', hash: '17081099173842890308' }, + { file: 'packages/react-icons-mdl2/src/components/DecisionSolidIcon.tsx', hash: '17081738077200227352' }, + { file: 'packages/react-icons-mdl2/src/components/DeclineCallIcon.tsx', hash: '452032942065278201' }, + { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentArrowIcon.tsx', hash: '13870574334268841884' }, + { + file: 'packages/react-icons-mdl2/src/components/DecreaseIndentArrowMirroredIcon.tsx', + hash: '15011548357798424123', + }, + { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentIcon.tsx', hash: '13065577369695178636' }, + { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentLegacyIcon.tsx', hash: '9104839253663370211' }, + { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentMirroredIcon.tsx', hash: '13014325612888836477' }, + { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentTextIcon.tsx', hash: '18373508170355261206' }, + { + file: 'packages/react-icons-mdl2/src/components/DecreaseIndentTextMirroredIcon.tsx', + hash: '2564754211783847726', + }, + { file: 'packages/react-icons-mdl2/src/components/DefaultRatioIcon.tsx', hash: '738622148229922878' }, + { file: 'packages/react-icons-mdl2/src/components/DefectSolidIcon.tsx', hash: '16558742789062669957' }, + { file: 'packages/react-icons-mdl2/src/components/DeleteColumnsIcon.tsx', hash: '6313488992643060020' }, + { file: 'packages/react-icons-mdl2/src/components/DeleteIcon.tsx', hash: '10792912710594963359' }, + { file: 'packages/react-icons-mdl2/src/components/DeleteRowsIcon.tsx', hash: '587318337482175522' }, + { file: 'packages/react-icons-mdl2/src/components/DeleteRowsMirroredIcon.tsx', hash: '643304616330280781' }, + { file: 'packages/react-icons-mdl2/src/components/DeleteTableIcon.tsx', hash: '12778033820978051742' }, + { file: 'packages/react-icons-mdl2/src/components/DeliveryTruckIcon.tsx', hash: '7364374569024104758' }, + { file: 'packages/react-icons-mdl2/src/components/DependencyAddIcon.tsx', hash: '8354637014378472414' }, + { file: 'packages/react-icons-mdl2/src/components/DependencyRemoveIcon.tsx', hash: '1599367741390634032' }, + { file: 'packages/react-icons-mdl2/src/components/DeployIcon.tsx', hash: '12556496360695971026' }, + { file: 'packages/react-icons-mdl2/src/components/DescendingIcon.tsx', hash: '8325601826213020045' }, + { file: 'packages/react-icons-mdl2/src/components/DesignIcon.tsx', hash: '1235725354522916293' }, + { file: 'packages/react-icons-mdl2/src/components/DesktopScreenshotIcon.tsx', hash: '16279311035412850738' }, + { file: 'packages/react-icons-mdl2/src/components/DeveloperToolsIcon.tsx', hash: '5233866801892475567' }, + { file: 'packages/react-icons-mdl2/src/components/DeviceBugIcon.tsx', hash: '4458294965863833774' }, + { file: 'packages/react-icons-mdl2/src/components/DeviceOffIcon.tsx', hash: '2548122455670673767' }, + { file: 'packages/react-icons-mdl2/src/components/DeviceRunIcon.tsx', hash: '6663728061603578123' }, + { file: 'packages/react-icons-mdl2/src/components/Devices2Icon.tsx', hash: '13195787250915366201' }, + { file: 'packages/react-icons-mdl2/src/components/Devices3Icon.tsx', hash: '2195077419375007119' }, + { file: 'packages/react-icons-mdl2/src/components/Devices4Icon.tsx', hash: '9032833672927497181' }, + { + file: 'packages/react-icons-mdl2/src/components/DiagnosticDataBarTooltipIcon.tsx', + hash: '7308105095845127562', + }, + { file: 'packages/react-icons-mdl2/src/components/DiagnosticIcon.tsx', hash: '3943560896905082647' }, + { file: 'packages/react-icons-mdl2/src/components/DialpadIcon.tsx', hash: '1595420172598995832' }, + { file: 'packages/react-icons-mdl2/src/components/DiamondIcon.tsx', hash: '15385166146377920364' }, + { file: 'packages/react-icons-mdl2/src/components/DiamondSolidIcon.tsx', hash: '13946867766219515064' }, + { file: 'packages/react-icons-mdl2/src/components/DictionaryIcon.tsx', hash: '12118255852228972890' }, + { file: 'packages/react-icons-mdl2/src/components/DictionaryRemoveIcon.tsx', hash: '13370862255201060675' }, + { file: 'packages/react-icons-mdl2/src/components/DietPlanNotebookIcon.tsx', hash: '3826030876867074456' }, + { file: 'packages/react-icons-mdl2/src/components/DiffInlineIcon.tsx', hash: '15011859094277716599' }, + { file: 'packages/react-icons-mdl2/src/components/DiffSideBySideIcon.tsx', hash: '178459671925869865' }, + { file: 'packages/react-icons-mdl2/src/components/DisableUpdatesIcon.tsx', hash: '16137860201828138151' }, + { + file: 'packages/react-icons-mdl2/src/components/DisconnectVirtualMachineIcon.tsx', + hash: '2930597107750432543', + }, + { file: 'packages/react-icons-mdl2/src/components/DislikeIcon.tsx', hash: '18225817531545216062' }, + { file: 'packages/react-icons-mdl2/src/components/DislikeSolidIcon.tsx', hash: '14087480645264709742' }, + { file: 'packages/react-icons-mdl2/src/components/DistributeDownIcon.tsx', hash: '1548125120911779786' }, + { file: 'packages/react-icons-mdl2/src/components/DocLibraryIcon.tsx', hash: '11591439189986323684' }, + { file: 'packages/react-icons-mdl2/src/components/DockLeftIcon.tsx', hash: '16847431728497961728' }, + { file: 'packages/react-icons-mdl2/src/components/DockLeftMirroredIcon.tsx', hash: '15710463884680529297' }, + { file: 'packages/react-icons-mdl2/src/components/DockRightIcon.tsx', hash: '6658426372807392828' }, + { file: 'packages/react-icons-mdl2/src/components/DockerLogoIcon.tsx', hash: '356095859023745588' }, + { file: 'packages/react-icons-mdl2/src/components/DocumentApprovalIcon.tsx', hash: '1072757051443608965' }, + { file: 'packages/react-icons-mdl2/src/components/DocumentIcon.tsx', hash: '7350668992681437371' }, + { file: 'packages/react-icons-mdl2/src/components/DocumentManagementIcon.tsx', hash: '12832475181564272735' }, + { file: 'packages/react-icons-mdl2/src/components/DocumentReplyIcon.tsx', hash: '5580080027402339929' }, + { file: 'packages/react-icons-mdl2/src/components/DocumentSearchIcon.tsx', hash: '18194129163128018046' }, + { file: 'packages/react-icons-mdl2/src/components/DocumentSetIcon.tsx', hash: '13231352338473935499' }, + { file: 'packages/react-icons-mdl2/src/components/DocumentationIcon.tsx', hash: '1944399801209430445' }, + { file: 'packages/react-icons-mdl2/src/components/DonutChartIcon.tsx', hash: '6013093794290304399' }, + { file: 'packages/react-icons-mdl2/src/components/DoorIcon.tsx', hash: '5093568903579292976' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleBookmarkIcon.tsx', hash: '580642304868621494' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronDown12Icon.tsx', hash: '17862630360870678403' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronDown8Icon.tsx', hash: '3718988317405081816' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronDownIcon.tsx', hash: '4060633296743134167' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeft12Icon.tsx', hash: '12129472693083176351' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeft8Icon.tsx', hash: '3479157522484228650' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeftIcon.tsx', hash: '5239193503131271211' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeftMedIcon.tsx', hash: '18421213284534102233' }, + { + file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeftMedMirroredIcon.tsx', + hash: '14826784435274098125', + }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronRight12Icon.tsx', hash: '8787847077895803394' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronRight8Icon.tsx', hash: '5185405441418862327' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronRightIcon.tsx', hash: '4370086810030902255' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronUp12Icon.tsx', hash: '4319255572784241793' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronUp8Icon.tsx', hash: '3769547499968682415' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleChevronUpIcon.tsx', hash: '6295237240279208030' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleColumnEditIcon.tsx', hash: '338044593060043662' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleColumnIcon.tsx', hash: '4963904430013447512' }, + { file: 'packages/react-icons-mdl2/src/components/DoubleDownArrowIcon.tsx', hash: '12947437490613649800' }, + { file: 'packages/react-icons-mdl2/src/components/DownIcon.tsx', hash: '1830363173706684750' }, + { file: 'packages/react-icons-mdl2/src/components/DownloadDocumentIcon.tsx', hash: '1550953316812736269' }, + { file: 'packages/react-icons-mdl2/src/components/DownloadIcon.tsx', hash: '11905139494507468856' }, + { file: 'packages/react-icons-mdl2/src/components/DragObjectIcon.tsx', hash: '16313792608666370824' }, + { file: 'packages/react-icons-mdl2/src/components/DrillDownIcon.tsx', hash: '3192472893310371370' }, + { file: 'packages/react-icons-mdl2/src/components/DrillDownSolidIcon.tsx', hash: '17814311297808427278' }, + { file: 'packages/react-icons-mdl2/src/components/DrillExpandIcon.tsx', hash: '12023259070909879851' }, + { file: 'packages/react-icons-mdl2/src/components/DrillShowIcon.tsx', hash: '907855544090803318' }, + { file: 'packages/react-icons-mdl2/src/components/DrillThroughIcon.tsx', hash: '270564848319592953' }, + { file: 'packages/react-icons-mdl2/src/components/DriverOffIcon.tsx', hash: '2646796161699213401' }, + { file: 'packages/react-icons-mdl2/src/components/DropIcon.tsx', hash: '2500983101290595010' }, + { file: 'packages/react-icons-mdl2/src/components/DropShapeIcon.tsx', hash: '4656051841581653680' }, + { file: 'packages/react-icons-mdl2/src/components/DropShapeSolidIcon.tsx', hash: '3848711829998676861' }, + { file: 'packages/react-icons-mdl2/src/components/DropboxLogoIcon.tsx', hash: '9875714476061571' }, + { file: 'packages/react-icons-mdl2/src/components/DropdownIcon.tsx', hash: '3555689926512850428' }, + { file: 'packages/react-icons-mdl2/src/components/DuplicateRowIcon.tsx', hash: '13697707925593633752' }, + { file: 'packages/react-icons-mdl2/src/components/DuststormIcon.tsx', hash: '292901588076733830' }, + { file: 'packages/react-icons-mdl2/src/components/EMIIcon.tsx', hash: '7026920700117073739' }, + { file: 'packages/react-icons-mdl2/src/components/EatDrinkIcon.tsx', hash: '405852760394722860' }, + { file: 'packages/react-icons-mdl2/src/components/EditContactIcon.tsx', hash: '1150372315902143826' }, + { file: 'packages/react-icons-mdl2/src/components/EditCreateIcon.tsx', hash: '13907203705880503221' }, + { file: 'packages/react-icons-mdl2/src/components/EditIcon.tsx', hash: '17431200438072034596' }, + { file: 'packages/react-icons-mdl2/src/components/EditMailIcon.tsx', hash: '15970390906079408472' }, + { file: 'packages/react-icons-mdl2/src/components/EditMirroredIcon.tsx', hash: '6262748336865108686' }, + { file: 'packages/react-icons-mdl2/src/components/EditNoteIcon.tsx', hash: '1286799354555306996' }, + { file: 'packages/react-icons-mdl2/src/components/EditPhotoIcon.tsx', hash: '661536436530324462' }, + { file: 'packages/react-icons-mdl2/src/components/EditSolid12Icon.tsx', hash: '10589666406189014261' }, + { file: 'packages/react-icons-mdl2/src/components/EditSolidMirrored12Icon.tsx', hash: '10665478881594893882' }, + { file: 'packages/react-icons-mdl2/src/components/EditStyleIcon.tsx', hash: '2678806848845973724' }, + { file: 'packages/react-icons-mdl2/src/components/EducationIcon.tsx', hash: '498702559917801758' }, + { file: 'packages/react-icons-mdl2/src/components/EgnyteLogoIcon.tsx', hash: '11787586365363039828' }, + { file: 'packages/react-icons-mdl2/src/components/EllipseIcon.tsx', hash: '7563388097856529345' }, + { file: 'packages/react-icons-mdl2/src/components/EmbedIcon.tsx', hash: '12421049566526858297' }, + { file: 'packages/react-icons-mdl2/src/components/Emoji2Icon.tsx', hash: '9632797341218035400' }, + { file: 'packages/react-icons-mdl2/src/components/EmojiDisappointedIcon.tsx', hash: '11292699018502769948' }, + { file: 'packages/react-icons-mdl2/src/components/EmojiIcon.tsx', hash: '3527785752414452552' }, + { file: 'packages/react-icons-mdl2/src/components/EmojiNeutralIcon.tsx', hash: '4832038927171425591' }, + { file: 'packages/react-icons-mdl2/src/components/EmojiTabSymbolsIcon.tsx', hash: '14052316026912103488' }, + { file: 'packages/react-icons-mdl2/src/components/EmptyRecycleBinIcon.tsx', hash: '14995044938165035199' }, + { file: 'packages/react-icons-mdl2/src/components/EncryptionIcon.tsx', hash: '15075199846642749840' }, + { file: 'packages/react-icons-mdl2/src/components/EndPointSolidIcon.tsx', hash: '3167677454794359558' }, + { file: 'packages/react-icons-mdl2/src/components/EngineeringGroupIcon.tsx', hash: '998933366201572470' }, + { file: 'packages/react-icons-mdl2/src/components/EntitlementPolicyIcon.tsx', hash: '1793133232166007266' }, + { file: 'packages/react-icons-mdl2/src/components/EntitlementRedemptionIcon.tsx', hash: '16842033997814526566' }, + { file: 'packages/react-icons-mdl2/src/components/EntryDeclineIcon.tsx', hash: '6195158794810210978' }, + { file: 'packages/react-icons-mdl2/src/components/EntryViewIcon.tsx', hash: '6340409500225097365' }, + { file: 'packages/react-icons-mdl2/src/components/EqualizerIcon.tsx', hash: '5020681445912180101' }, + { file: 'packages/react-icons-mdl2/src/components/EraseToolIcon.tsx', hash: '1207971189339545279' }, + { file: 'packages/react-icons-mdl2/src/components/ErrorBadgeIcon.tsx', hash: '8777689618958285548' }, + { file: 'packages/react-icons-mdl2/src/components/ErrorIcon.tsx', hash: '12165290586267258948' }, + { file: 'packages/react-icons-mdl2/src/components/Event12Icon.tsx', hash: '2431490381627945469' }, + { file: 'packages/react-icons-mdl2/src/components/EventAcceptedIcon.tsx', hash: '5320856392963509965' }, + { file: 'packages/react-icons-mdl2/src/components/EventDateIcon.tsx', hash: '13151646515665406908' }, + { file: 'packages/react-icons-mdl2/src/components/EventDateMissed12Icon.tsx', hash: '6189471729333629318' }, + { file: 'packages/react-icons-mdl2/src/components/EventDeclinedIcon.tsx', hash: '14114511301469755687' }, + { file: 'packages/react-icons-mdl2/src/components/EventIcon.tsx', hash: '13625411325414082247' }, + { file: 'packages/react-icons-mdl2/src/components/EventInfoIcon.tsx', hash: '1391354774988071725' }, + { file: 'packages/react-icons-mdl2/src/components/EventTentativeIcon.tsx', hash: '11989511012280391708' }, + { file: 'packages/react-icons-mdl2/src/components/EventTentativeMirroredIcon.tsx', hash: '1553750628165621737' }, + { file: 'packages/react-icons-mdl2/src/components/EventToDoLogoIcon.tsx', hash: '1732699839277899742' }, + { file: 'packages/react-icons-mdl2/src/components/ExerciseTrackerIcon.tsx', hash: '11619246031913373899' }, + { file: 'packages/react-icons-mdl2/src/components/ExpandMenuIcon.tsx', hash: '2883637658086310412' }, + { file: 'packages/react-icons-mdl2/src/components/ExploreContentIcon.tsx', hash: '15939418160088449230' }, + { file: 'packages/react-icons-mdl2/src/components/ExploreContentSingleIcon.tsx', hash: '1357890855973722731' }, + { file: 'packages/react-icons-mdl2/src/components/ExploreDataIcon.tsx', hash: '13240326137614761264' }, + { file: 'packages/react-icons-mdl2/src/components/ExportIcon.tsx', hash: '6176838404383274226' }, + { file: 'packages/react-icons-mdl2/src/components/ExportMirroredIcon.tsx', hash: '17058149608204609598' }, + { file: 'packages/react-icons-mdl2/src/components/ExternalBuildIcon.tsx', hash: '7805834724391293006' }, + { file: 'packages/react-icons-mdl2/src/components/ExternalGitIcon.tsx', hash: '2979922376124883597' }, + { file: 'packages/react-icons-mdl2/src/components/ExternalTFVCIcon.tsx', hash: '8770119390497201960' }, + { file: 'packages/react-icons-mdl2/src/components/ExternalXAMLIcon.tsx', hash: '14897169727878082254' }, + { file: 'packages/react-icons-mdl2/src/components/EyeShadowIcon.tsx', hash: '11547250779044996711' }, + { file: 'packages/react-icons-mdl2/src/components/EyedropperIcon.tsx', hash: '17489759088299487201' }, + { file: 'packages/react-icons-mdl2/src/components/F12DevToolsIcon.tsx', hash: '15795590193304864300' }, + { file: 'packages/react-icons-mdl2/src/components/FacebookLogoIcon.tsx', hash: '3945007834451489679' }, + { file: 'packages/react-icons-mdl2/src/components/FamilyIcon.tsx', hash: '1944465575896356847' }, + { file: 'packages/react-icons-mdl2/src/components/FangBodyIcon.tsx', hash: '17642602016488988479' }, + { file: 'packages/react-icons-mdl2/src/components/FastForwardEightXIcon.tsx', hash: '18178309367561894583' }, + { file: 'packages/react-icons-mdl2/src/components/FastForwardFourXIcon.tsx', hash: '6705881211608202785' }, + { file: 'packages/react-icons-mdl2/src/components/FastForwardIcon.tsx', hash: '16351946631805874388' }, + { file: 'packages/react-icons-mdl2/src/components/FastForwardOneFiveXIcon.tsx', hash: '9945217581225705551' }, + { file: 'packages/react-icons-mdl2/src/components/FastForwardOneXIcon.tsx', hash: '1275773114276841049' }, + { file: 'packages/react-icons-mdl2/src/components/FastForwardPointFiveXIcon.tsx', hash: '17652874859284714523' }, + { file: 'packages/react-icons-mdl2/src/components/FastForwardTwoXIcon.tsx', hash: '6288769981516574323' }, + { file: 'packages/react-icons-mdl2/src/components/FastModeIcon.tsx', hash: '8565396335278143488' }, + { file: 'packages/react-icons-mdl2/src/components/FaviconIcon.tsx', hash: '12942536079808820041' }, + { file: 'packages/react-icons-mdl2/src/components/FavoriteListIcon.tsx', hash: '12205614405595495904' }, + { file: 'packages/react-icons-mdl2/src/components/FavoriteStarFillIcon.tsx', hash: '11957377664756637903' }, + { file: 'packages/react-icons-mdl2/src/components/FavoriteStarIcon.tsx', hash: '276723320467206854' }, + { file: 'packages/react-icons-mdl2/src/components/FaxIcon.tsx', hash: '15174575052554189774' }, + { file: 'packages/react-icons-mdl2/src/components/FeedbackIcon.tsx', hash: '14179107003696613703' }, + { + file: 'packages/react-icons-mdl2/src/components/FeedbackRequestMirroredSolidIcon.tsx', + hash: '6167066386013211705', + }, + { file: 'packages/react-icons-mdl2/src/components/FeedbackRequestSolidIcon.tsx', hash: '11345199070943455551' }, + { file: 'packages/react-icons-mdl2/src/components/FeedbackResponseSolidIcon.tsx', hash: '844989139249440000' }, + { file: 'packages/react-icons-mdl2/src/components/FerryIcon.tsx', hash: '3927782908157924236' }, + { file: 'packages/react-icons-mdl2/src/components/FerrySolidIcon.tsx', hash: '16922795746977067197' }, + { file: 'packages/react-icons-mdl2/src/components/FieldChangedIcon.tsx', hash: '6362867984287681842' }, + { file: 'packages/react-icons-mdl2/src/components/FieldEmptyIcon.tsx', hash: '12951541487822180241' }, + { file: 'packages/react-icons-mdl2/src/components/FieldFilledIcon.tsx', hash: '2829813208719522960' }, + { file: 'packages/react-icons-mdl2/src/components/FieldNotChangedIcon.tsx', hash: '9143517295368689068' }, + { file: 'packages/react-icons-mdl2/src/components/FieldReadOnlyIcon.tsx', hash: '1383806378416658822' }, + { file: 'packages/react-icons-mdl2/src/components/FieldRequiredIcon.tsx', hash: '9874506948980735455' }, + { file: 'packages/react-icons-mdl2/src/components/FileASPXIcon.tsx', hash: '6895839686502133855' }, + { file: 'packages/react-icons-mdl2/src/components/FileBugIcon.tsx', hash: '7640769980279416101' }, + { file: 'packages/react-icons-mdl2/src/components/FileCSSIcon.tsx', hash: '1050684036460858812' }, + { file: 'packages/react-icons-mdl2/src/components/FileCodeIcon.tsx', hash: '16719505228843895462' }, + { file: 'packages/react-icons-mdl2/src/components/FileCommentIcon.tsx', hash: '606968050369362343' }, + { file: 'packages/react-icons-mdl2/src/components/FileHTMLIcon.tsx', hash: '765214480847777695' }, + { file: 'packages/react-icons-mdl2/src/components/FileImageIcon.tsx', hash: '4844641701165238743' }, + { file: 'packages/react-icons-mdl2/src/components/FileJAVAIcon.tsx', hash: '4450722937973378228' }, + { file: 'packages/react-icons-mdl2/src/components/FileLessIcon.tsx', hash: '8881253924066945591' }, + { file: 'packages/react-icons-mdl2/src/components/FileOffIcon.tsx', hash: '9345742102333117451' }, + { file: 'packages/react-icons-mdl2/src/components/FilePDBIcon.tsx', hash: '5282290141971118284' }, + { file: 'packages/react-icons-mdl2/src/components/FileRequestIcon.tsx', hash: '7269778805807155600' }, + { file: 'packages/react-icons-mdl2/src/components/FileSQLIcon.tsx', hash: '4971825357918078797' }, + { file: 'packages/react-icons-mdl2/src/components/FileSassIcon.tsx', hash: '6262095417547644767' }, + { file: 'packages/react-icons-mdl2/src/components/FileSymlinkIcon.tsx', hash: '6888643214960891177' }, + { file: 'packages/react-icons-mdl2/src/components/FileSystemIcon.tsx', hash: '4586503443833768744' }, + { file: 'packages/react-icons-mdl2/src/components/FileTemplateIcon.tsx', hash: '102524233678650' }, + { file: 'packages/react-icons-mdl2/src/components/FileYMLIcon.tsx', hash: '7373943771233632903' }, + { file: 'packages/react-icons-mdl2/src/components/FilterAscendingIcon.tsx', hash: '7986231996921620159' }, + { file: 'packages/react-icons-mdl2/src/components/FilterDescendingIcon.tsx', hash: '9036833625296158708' }, + { file: 'packages/react-icons-mdl2/src/components/FilterIcon.tsx', hash: '15632557997728755643' }, + { file: 'packages/react-icons-mdl2/src/components/FilterSettingsIcon.tsx', hash: '18384344814770433702' }, + { file: 'packages/react-icons-mdl2/src/components/FilterSolidIcon.tsx', hash: '16527487026441098924' }, + { file: 'packages/react-icons-mdl2/src/components/FiltersIcon.tsx', hash: '17788291567474260736' }, + { file: 'packages/react-icons-mdl2/src/components/FiltersSolidIcon.tsx', hash: '2955836481941787615' }, + { file: 'packages/react-icons-mdl2/src/components/FinancialIcon.tsx', hash: '6417373302479088294' }, + { file: 'packages/react-icons-mdl2/src/components/FinancialMirroredSolidIcon.tsx', hash: '12472787632715591727' }, + { file: 'packages/react-icons-mdl2/src/components/FinancialSolidIcon.tsx', hash: '16759164632230079118' }, + { file: 'packages/react-icons-mdl2/src/components/FingerprintIcon.tsx', hash: '1814464459187160317' }, + { file: 'packages/react-icons-mdl2/src/components/FitPageIcon.tsx', hash: '18087310676152160539' }, + { file: 'packages/react-icons-mdl2/src/components/FitWidthIcon.tsx', hash: '3330934962504444846' }, + { file: 'packages/react-icons-mdl2/src/components/FiveTileGridIcon.tsx', hash: '4303387150744159805' }, + { file: 'packages/react-icons-mdl2/src/components/FixedAssetManagementIcon.tsx', hash: '4450397116994178154' }, + { file: 'packages/react-icons-mdl2/src/components/FixedColumnWidthIcon.tsx', hash: '1282486324231742294' }, + { file: 'packages/react-icons-mdl2/src/components/FlagIcon.tsx', hash: '1404061495096326413' }, + { file: 'packages/react-icons-mdl2/src/components/FlameSolidIcon.tsx', hash: '1580665274438723795' }, + { file: 'packages/react-icons-mdl2/src/components/FlashAutoIcon.tsx', hash: '6815009142415122429' }, + { file: 'packages/react-icons-mdl2/src/components/FlashOffIcon.tsx', hash: '6505550303339807125' }, + { file: 'packages/react-icons-mdl2/src/components/FlashlightIcon.tsx', hash: '3477643417563353345' }, + { file: 'packages/react-icons-mdl2/src/components/FlickDownIcon.tsx', hash: '3353038571830785712' }, + { file: 'packages/react-icons-mdl2/src/components/FlickLeftIcon.tsx', hash: '15950772530127709782' }, + { file: 'packages/react-icons-mdl2/src/components/FlickRightIcon.tsx', hash: '10771208732872140808' }, + { file: 'packages/react-icons-mdl2/src/components/FlickUpIcon.tsx', hash: '8892451043636875937' }, + { file: 'packages/react-icons-mdl2/src/components/FlowChartIcon.tsx', hash: '226511449971238124' }, + { file: 'packages/react-icons-mdl2/src/components/FlowIcon.tsx', hash: '1235278112582679794' }, + { file: 'packages/react-icons-mdl2/src/components/FlowerIcon.tsx', hash: '4427719849604199650' }, + { file: 'packages/react-icons-mdl2/src/components/FocalPointIcon.tsx', hash: '15911317157455942097' }, + { file: 'packages/react-icons-mdl2/src/components/FocusIcon.tsx', hash: '5539639720883062777' }, + { file: 'packages/react-icons-mdl2/src/components/FocusViewIcon.tsx', hash: '3939117956871096782' }, + { file: 'packages/react-icons-mdl2/src/components/FogIcon.tsx', hash: '1980192386355863521' }, + { file: 'packages/react-icons-mdl2/src/components/FolderFillIcon.tsx', hash: '9389817415866479663' }, + { file: 'packages/react-icons-mdl2/src/components/FolderHorizontalIcon.tsx', hash: '6956772245809174415' }, + { file: 'packages/react-icons-mdl2/src/components/FolderIcon.tsx', hash: '1712208359337412229' }, + { file: 'packages/react-icons-mdl2/src/components/FolderListIcon.tsx', hash: '9551306821671813083' }, + { file: 'packages/react-icons-mdl2/src/components/FolderListMirroredIcon.tsx', hash: '9938125311101616247' }, + { file: 'packages/react-icons-mdl2/src/components/FolderOpenIcon.tsx', hash: '16236857408621192617' }, + { file: 'packages/react-icons-mdl2/src/components/FolderQueryIcon.tsx', hash: '757534951338790000' }, + { file: 'packages/react-icons-mdl2/src/components/FolderSearchIcon.tsx', hash: '15912130893073646850' }, + { file: 'packages/react-icons-mdl2/src/components/FollowUserIcon.tsx', hash: '6727622312615324985' }, + { file: 'packages/react-icons-mdl2/src/components/FontColorAIcon.tsx', hash: '11470237927172903368' }, + { file: 'packages/react-icons-mdl2/src/components/FontColorIcon.tsx', hash: '15275041937967336194' }, + { file: 'packages/react-icons-mdl2/src/components/FontColorSwatchIcon.tsx', hash: '12200134352683161273' }, + { file: 'packages/react-icons-mdl2/src/components/FontDecreaseIcon.tsx', hash: '13742892961586592786' }, + { file: 'packages/react-icons-mdl2/src/components/FontIcon.tsx', hash: '13724598167896502006' }, + { file: 'packages/react-icons-mdl2/src/components/FontIncreaseIcon.tsx', hash: '11026524880036930460' }, + { file: 'packages/react-icons-mdl2/src/components/FontSize2Icon.tsx', hash: '17809756178006834445' }, + { file: 'packages/react-icons-mdl2/src/components/FontSizeIcon.tsx', hash: '5696547717711169794' }, + { file: 'packages/react-icons-mdl2/src/components/FooterIcon.tsx', hash: '2763034011155046097' }, + { file: 'packages/react-icons-mdl2/src/components/FormLibraryIcon.tsx', hash: '16894238111626919263' }, + { file: 'packages/react-icons-mdl2/src/components/FormLibraryMirroredIcon.tsx', hash: '1164345260899139517' }, + { file: 'packages/react-icons-mdl2/src/components/FormatPainterIcon.tsx', hash: '15912854457010730699' }, + { file: 'packages/react-icons-mdl2/src/components/ForumIcon.tsx', hash: '14594499032992496602' }, + { file: 'packages/react-icons-mdl2/src/components/ForwardEventIcon.tsx', hash: '12838663604244959435' }, + { file: 'packages/react-icons-mdl2/src/components/ForwardIcon.tsx', hash: '8618057237755943493' }, + { file: 'packages/react-icons-mdl2/src/components/FreezingIcon.tsx', hash: '7147821662650477276' }, + { file: 'packages/react-icons-mdl2/src/components/FrigidIcon.tsx', hash: '9172736073466509726' }, + { file: 'packages/react-icons-mdl2/src/components/FrontCameraIcon.tsx', hash: '7890552227182908605' }, + { file: 'packages/react-icons-mdl2/src/components/FullCircleMaskIcon.tsx', hash: '4033135983242084915' }, + { file: 'packages/react-icons-mdl2/src/components/FullHistoryIcon.tsx', hash: '12488798171462511493' }, + { file: 'packages/react-icons-mdl2/src/components/FullScreenIcon.tsx', hash: '12958098732161905706' }, + { file: 'packages/react-icons-mdl2/src/components/FullViewIcon.tsx', hash: '5235475494113882152' }, + { file: 'packages/react-icons-mdl2/src/components/FullWidthEditIcon.tsx', hash: '5465637594615076102' }, + { file: 'packages/react-icons-mdl2/src/components/FullWidthIcon.tsx', hash: '15366904044629970765' }, + { + file: 'packages/react-icons-mdl2/src/components/FunctionalManagerDashboardIcon.tsx', + hash: '12203260525418953853', + }, + { file: 'packages/react-icons-mdl2/src/components/FunnelChartIcon.tsx', hash: '10790643609584269218' }, + { file: 'packages/react-icons-mdl2/src/components/GIFIcon.tsx', hash: '9632731809471011174' }, + { file: 'packages/react-icons-mdl2/src/components/GUIDIcon.tsx', hash: '15534661867014684872' }, + { file: 'packages/react-icons-mdl2/src/components/GameIcon.tsx', hash: '15746196390646228787' }, + { file: 'packages/react-icons-mdl2/src/components/GatherIcon.tsx', hash: '15848159200387148602' }, + { file: 'packages/react-icons-mdl2/src/components/GenerateIcon.tsx', hash: '8156502823136479518' }, + { file: 'packages/react-icons-mdl2/src/components/GenericScanFilledIcon.tsx', hash: '11097470524340453746' }, + { file: 'packages/react-icons-mdl2/src/components/GenericScanIcon.tsx', hash: '5566996355092293666' }, + { file: 'packages/react-icons-mdl2/src/components/GiftBoxSolidIcon.tsx', hash: '7571481021195839227' }, + { file: 'packages/react-icons-mdl2/src/components/GiftCardIcon.tsx', hash: '2807842151596238352' }, + { file: 'packages/react-icons-mdl2/src/components/GiftboxIcon.tsx', hash: '17845510496809357564' }, + { file: 'packages/react-icons-mdl2/src/components/GiftboxOpenIcon.tsx', hash: '14201350368078001710' }, + { file: 'packages/react-icons-mdl2/src/components/GitForkIcon.tsx', hash: '16940210332522310039' }, + { file: 'packages/react-icons-mdl2/src/components/GitGraphIcon.tsx', hash: '16374940073848176332' }, + { file: 'packages/react-icons-mdl2/src/components/GitHubLogoIcon.tsx', hash: '11928675214469758864' }, + { file: 'packages/react-icons-mdl2/src/components/GitLogoIcon.tsx', hash: '11522156507346313112' }, + { file: 'packages/react-icons-mdl2/src/components/GlassesIcon.tsx', hash: '8565278624735671618' }, + { file: 'packages/react-icons-mdl2/src/components/GlimmerIcon.tsx', hash: '10243000354255117688' }, + { file: 'packages/react-icons-mdl2/src/components/GlobalNavButtonActiveIcon.tsx', hash: '565660960618390405' }, + { file: 'packages/react-icons-mdl2/src/components/GlobalNavButtonIcon.tsx', hash: '9326193492154063760' }, + { file: 'packages/react-icons-mdl2/src/components/Globe2Icon.tsx', hash: '14479270011036253116' }, + { file: 'packages/react-icons-mdl2/src/components/GlobeFavoriteIcon.tsx', hash: '6439401632011068110' }, + { file: 'packages/react-icons-mdl2/src/components/GlobeIcon.tsx', hash: '13412169222349203733' }, + { file: 'packages/react-icons-mdl2/src/components/GoIcon.tsx', hash: '3851795450163977084' }, + { file: 'packages/react-icons-mdl2/src/components/GoMirroredIcon.tsx', hash: '10247853145577366265' }, + { file: 'packages/react-icons-mdl2/src/components/GoToDashboardIcon.tsx', hash: '15740169657036959208' }, + { file: 'packages/react-icons-mdl2/src/components/GolfIcon.tsx', hash: '10545511422697821400' }, + { + file: 'packages/react-icons-mdl2/src/components/GoogleDriveLogoBottomBlueIcon.tsx', + hash: '3001119224492718906', + }, + { file: 'packages/react-icons-mdl2/src/components/GoogleDriveLogoIcon.tsx', hash: '18004521176360559242' }, + { + file: 'packages/react-icons-mdl2/src/components/GoogleDriveLogoLeftGreenIcon.tsx', + hash: '14815230303350470687', + }, + { + file: 'packages/react-icons-mdl2/src/components/GoogleDriveLogoRightYellowIcon.tsx', + hash: '17655187547932670362', + }, + { file: 'packages/react-icons-mdl2/src/components/GotoTodayIcon.tsx', hash: '11786306560619474198' }, + { file: 'packages/react-icons-mdl2/src/components/GradleLogo32Icon.tsx', hash: '5235762091848188661' }, + { file: 'packages/react-icons-mdl2/src/components/GreetingCardIcon.tsx', hash: '2652324495810548652' }, + { file: 'packages/react-icons-mdl2/src/components/GridViewLargeIcon.tsx', hash: '7773270874283410534' }, + { file: 'packages/react-icons-mdl2/src/components/GridViewMediumIcon.tsx', hash: '11534935878292624677' }, + { file: 'packages/react-icons-mdl2/src/components/GridViewSmallIcon.tsx', hash: '12237242453908160281' }, + { file: 'packages/react-icons-mdl2/src/components/GripperBarHorizontalIcon.tsx', hash: '6308142595012791984' }, + { file: 'packages/react-icons-mdl2/src/components/GripperBarVerticalIcon.tsx', hash: '7470598359065919341' }, + { file: 'packages/react-icons-mdl2/src/components/GripperDotsVerticalIcon.tsx', hash: '15307366740827741066' }, + { file: 'packages/react-icons-mdl2/src/components/GripperToolIcon.tsx', hash: '716840007844796444' }, + { file: 'packages/react-icons-mdl2/src/components/GroupIcon.tsx', hash: '13608367865003462107' }, + { file: 'packages/react-icons-mdl2/src/components/GroupListIcon.tsx', hash: '6518290500881406538' }, + { file: 'packages/react-icons-mdl2/src/components/GroupObjectIcon.tsx', hash: '1586879418830404806' }, + { file: 'packages/react-icons-mdl2/src/components/GroupedAscendingIcon.tsx', hash: '6856150591813394404' }, + { file: 'packages/react-icons-mdl2/src/components/GroupedDescendingIcon.tsx', hash: '13375481586542023244' }, + { file: 'packages/react-icons-mdl2/src/components/GroupedListIcon.tsx', hash: '7376169769524108343' }, + { file: 'packages/react-icons-mdl2/src/components/GuitarIcon.tsx', hash: '17314515334492037841' }, + { file: 'packages/react-icons-mdl2/src/components/HailDayIcon.tsx', hash: '12947649342042611772' }, + { file: 'packages/react-icons-mdl2/src/components/HailNightIcon.tsx', hash: '18391447311035016800' }, + { file: 'packages/react-icons-mdl2/src/components/HalfAlphaIcon.tsx', hash: '6922565485971119060' }, + { file: 'packages/react-icons-mdl2/src/components/HalfCircleIcon.tsx', hash: '2897520889126335567' }, + { file: 'packages/react-icons-mdl2/src/components/HandsFreeIcon.tsx', hash: '11239064513804798904' }, + { file: 'packages/react-icons-mdl2/src/components/HandwritingIcon.tsx', hash: '15421536123762955104' }, + { file: 'packages/react-icons-mdl2/src/components/HardDriveGroupIcon.tsx', hash: '7633148961616627245' }, + { file: 'packages/react-icons-mdl2/src/components/HardDriveIcon.tsx', hash: '5939750842377694100' }, + { file: 'packages/react-icons-mdl2/src/components/HardDriveLockIcon.tsx', hash: '17656948361291404624' }, + { file: 'packages/react-icons-mdl2/src/components/HardDriveUnlockIcon.tsx', hash: '8004000311676833368' }, + { file: 'packages/react-icons-mdl2/src/components/Header1Icon.tsx', hash: '8351749191063511306' }, + { file: 'packages/react-icons-mdl2/src/components/Header2Icon.tsx', hash: '5390568727727418817' }, + { file: 'packages/react-icons-mdl2/src/components/Header3Icon.tsx', hash: '840488768817872929' }, + { file: 'packages/react-icons-mdl2/src/components/Header4Icon.tsx', hash: '14967090543487683017' }, + { file: 'packages/react-icons-mdl2/src/components/HeaderIcon.tsx', hash: '2899809964069853826' }, + { file: 'packages/react-icons-mdl2/src/components/HeadsetIcon.tsx', hash: '1913138919122316805' }, + { file: 'packages/react-icons-mdl2/src/components/HeadsetSolidIcon.tsx', hash: '1680033626700166228' }, + { file: 'packages/react-icons-mdl2/src/components/HealthIcon.tsx', hash: '14799223708863617884' }, + { file: 'packages/react-icons-mdl2/src/components/HealthRefreshIcon.tsx', hash: '14799706733515662794' }, + { file: 'packages/react-icons-mdl2/src/components/HealthSolidIcon.tsx', hash: '15046539076256353862' }, + { file: 'packages/react-icons-mdl2/src/components/HeartBrokenIcon.tsx', hash: '1070767128146372350' }, + { file: 'packages/react-icons-mdl2/src/components/HeartFillIcon.tsx', hash: '2370001366264079587' }, + { file: 'packages/react-icons-mdl2/src/components/HeartIcon.tsx', hash: '14890364970617740611' }, + { file: 'packages/react-icons-mdl2/src/components/HelpIcon.tsx', hash: '17388551513070667300' }, + { file: 'packages/react-icons-mdl2/src/components/HelpMirroredIcon.tsx', hash: '8186137454020037762' }, + { + file: 'packages/react-icons-mdl2/src/components/HexaditeInvestigationCancelIcon.tsx', + hash: '8670293296701721833', + }, + { file: 'packages/react-icons-mdl2/src/components/HexaditeInvestigationIcon.tsx', hash: '14080127459799947212' }, + { + file: 'packages/react-icons-mdl2/src/components/HexaditeInvestigationSemiAutoIcon.tsx', + hash: '10609077070546900329', + }, + { file: 'packages/react-icons-mdl2/src/components/HexagonIcon.tsx', hash: '3897459486326302618' }, + { file: 'packages/react-icons-mdl2/src/components/Hide2Icon.tsx', hash: '5182329091472537173' }, + { file: 'packages/react-icons-mdl2/src/components/Hide3Icon.tsx', hash: '2906922485346461460' }, + { file: 'packages/react-icons-mdl2/src/components/HideIcon.tsx', hash: '12862215902863030841' }, + { file: 'packages/react-icons-mdl2/src/components/HighlightIcon.tsx', hash: '15762583331867575297' }, + { file: 'packages/react-icons-mdl2/src/components/HighlightMappedShapesIcon.tsx', hash: '16132141732380379547' }, + { file: 'packages/react-icons-mdl2/src/components/HintTextIcon.tsx', hash: '4279486080758729787' }, + { file: 'packages/react-icons-mdl2/src/components/HistoricalWeatherIcon.tsx', hash: '13818466974725287815' }, + { file: 'packages/react-icons-mdl2/src/components/HistoryIcon.tsx', hash: '16030330658754714190' }, + { file: 'packages/react-icons-mdl2/src/components/HomeDropdownIcon.tsx', hash: '2488444561259964042' }, + { file: 'packages/react-icons-mdl2/src/components/HomeGroupIcon.tsx', hash: '14908559223308932072' }, + { file: 'packages/react-icons-mdl2/src/components/HomeIcon.tsx', hash: '12724622983047291653' }, + { file: 'packages/react-icons-mdl2/src/components/HomeSolidIcon.tsx', hash: '11148478484135002227' }, + { file: 'packages/react-icons-mdl2/src/components/HomeVerifyIcon.tsx', hash: '15066446849328693732' }, + { + file: 'packages/react-icons-mdl2/src/components/HorizontalDistributeCenterIcon.tsx', + hash: '13579758295283409353', + }, + { file: 'packages/react-icons-mdl2/src/components/HorizontalTabKeyIcon.tsx', hash: '2735500143879888466' }, + { file: 'packages/react-icons-mdl2/src/components/HospitalIcon.tsx', hash: '16954429495584924657' }, + { file: 'packages/react-icons-mdl2/src/components/HotelIcon.tsx', hash: '1602330941386012729' }, + { file: 'packages/react-icons-mdl2/src/components/HourGlassIcon.tsx', hash: '3191346496426536019' }, + { file: 'packages/react-icons-mdl2/src/components/IDBadgeIcon.tsx', hash: '897528330211741886' }, + { file: 'packages/react-icons-mdl2/src/components/IOTIcon.tsx', hash: '5285884083806935808' }, + { file: 'packages/react-icons-mdl2/src/components/IRMForwardIcon.tsx', hash: '362575832829977312' }, + { file: 'packages/react-icons-mdl2/src/components/IRMForwardMirroredIcon.tsx', hash: '13155918519999883784' }, + { file: 'packages/react-icons-mdl2/src/components/IRMReplyIcon.tsx', hash: '13947164312188832822' }, + { file: 'packages/react-icons-mdl2/src/components/IRMReplyMirroredIcon.tsx', hash: '1145353507746735981' }, + { file: 'packages/react-icons-mdl2/src/components/IconSetsFlagIcon.tsx', hash: '15214257063406701202' }, + { file: 'packages/react-icons-mdl2/src/components/IgnoreConversationIcon.tsx', hash: '9335776128620278432' }, + { file: 'packages/react-icons-mdl2/src/components/ImageCrosshairIcon.tsx', hash: '5138187599671604052' }, + { file: 'packages/react-icons-mdl2/src/components/ImageDiffIcon.tsx', hash: '13599864074318182656' }, + { file: 'packages/react-icons-mdl2/src/components/ImageInARIcon.tsx', hash: '13855592006667470306' }, + { file: 'packages/react-icons-mdl2/src/components/ImagePixelIcon.tsx', hash: '9154411159137130252' }, + { file: 'packages/react-icons-mdl2/src/components/ImageSearchIcon.tsx', hash: '9041697212803531685' }, + { file: 'packages/react-icons-mdl2/src/components/ImportAllMirroredIcon.tsx', hash: '3025801446152077118' }, + { file: 'packages/react-icons-mdl2/src/components/ImportIcon.tsx', hash: '13040661219662628437' }, + { file: 'packages/react-icons-mdl2/src/components/ImportMirroredIcon.tsx', hash: '12908089643626136740' }, + { file: 'packages/react-icons-mdl2/src/components/ImportantIcon.tsx', hash: '7826677808925451366' }, + { file: 'packages/react-icons-mdl2/src/components/InboxCheckIcon.tsx', hash: '13209492309610537868' }, + { file: 'packages/react-icons-mdl2/src/components/InboxIcon.tsx', hash: '16589216967091416154' }, + { file: 'packages/react-icons-mdl2/src/components/IncidentTriangleIcon.tsx', hash: '9235238053814830523' }, + { file: 'packages/react-icons-mdl2/src/components/IncomingCallIcon.tsx', hash: '4007250706804841898' }, + { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentArrowIcon.tsx', hash: '5427824453044875567' }, + { + file: 'packages/react-icons-mdl2/src/components/IncreaseIndentArrowMirroredIcon.tsx', + hash: '16626271714978007440', + }, + { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentHangingIcon.tsx', hash: '3186950272609104279' }, + { + file: 'packages/react-icons-mdl2/src/components/IncreaseIndentHangingMirroredIcon.tsx', + hash: '9996178347351637205', + }, + { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentIcon.tsx', hash: '9678011342676446086' }, + { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentLegacyIcon.tsx', hash: '13386453491918711782' }, + { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentMirroredIcon.tsx', hash: '1303278817606075548' }, + { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentTextIcon.tsx', hash: '9430603589597575034' }, + { + file: 'packages/react-icons-mdl2/src/components/IncreaseIndentTextMirroredIcon.tsx', + hash: '6756712163376617801', + }, + { file: 'packages/react-icons-mdl2/src/components/IndentFirstLineIcon.tsx', hash: '370488840276189328' }, + { file: 'packages/react-icons-mdl2/src/components/Info2Icon.tsx', hash: '14020597724569194775' }, + { file: 'packages/react-icons-mdl2/src/components/InfoIcon.tsx', hash: '3721390302452091834' }, + { file: 'packages/react-icons-mdl2/src/components/InfoSolidIcon.tsx', hash: '2432153378739515036' }, + { file: 'packages/react-icons-mdl2/src/components/InformationBarriersIcon.tsx', hash: '8696582436277744629' }, + { file: 'packages/react-icons-mdl2/src/components/InkingToolIcon.tsx', hash: '11459756636301925682' }, + { file: 'packages/react-icons-mdl2/src/components/InputAddressIcon.tsx', hash: '13812358188248488657' }, + { file: 'packages/react-icons-mdl2/src/components/InsertColumnsLeftIcon.tsx', hash: '13708775557086203284' }, + { file: 'packages/react-icons-mdl2/src/components/InsertColumnsRightIcon.tsx', hash: '11557471302491603282' }, + { file: 'packages/react-icons-mdl2/src/components/InsertIcon.tsx', hash: '12107165173487530471' }, + { file: 'packages/react-icons-mdl2/src/components/InsertRowsAboveIcon.tsx', hash: '13485979422068241069' }, + { file: 'packages/react-icons-mdl2/src/components/InsertRowsBelowIcon.tsx', hash: '5877492448004420133' }, + { file: 'packages/react-icons-mdl2/src/components/InsertSignatureLineIcon.tsx', hash: '12840188565611841260' }, + { file: 'packages/react-icons-mdl2/src/components/InsertTextBoxIcon.tsx', hash: '879948278558379041' }, + { file: 'packages/react-icons-mdl2/src/components/InsightsIcon.tsx', hash: '15701471209360575195' }, + { file: 'packages/react-icons-mdl2/src/components/InstallToDriveIcon.tsx', hash: '1266954311457013518' }, + { file: 'packages/react-icons-mdl2/src/components/InstallationIcon.tsx', hash: '168933430430857110' }, + { file: 'packages/react-icons-mdl2/src/components/InternalInvestigationIcon.tsx', hash: '14733996250043645076' }, + { file: 'packages/react-icons-mdl2/src/components/InternetSharingIcon.tsx', hash: '231211082630324067' }, + { file: 'packages/react-icons-mdl2/src/components/IssueSolidIcon.tsx', hash: '10205135659021210842' }, + { file: 'packages/react-icons-mdl2/src/components/IssueTrackingIcon.tsx', hash: '13078163167098961521' }, + { file: 'packages/react-icons-mdl2/src/components/IssueTrackingMirroredIcon.tsx', hash: '6853285071464396522' }, + { file: 'packages/react-icons-mdl2/src/components/ItalicIcon.tsx', hash: '10688617757439753808' }, + { file: 'packages/react-icons-mdl2/src/components/JSIcon.tsx', hash: '7001057569749280823' }, + { file: 'packages/react-icons-mdl2/src/components/JavaLogoIcon.tsx', hash: '12341234154489462799' }, + { file: 'packages/react-icons-mdl2/src/components/JavaScriptLanguageIcon.tsx', hash: '2734361147194257907' }, + { file: 'packages/react-icons-mdl2/src/components/JenkinsLogoIcon.tsx', hash: '2671724868545436197' }, + { file: 'packages/react-icons-mdl2/src/components/JoinOnlineMeetingIcon.tsx', hash: '11532035316407786879' }, + { file: 'packages/react-icons-mdl2/src/components/KeubernetesLogoIcon.tsx', hash: '2977458046132010956' }, + { file: 'packages/react-icons-mdl2/src/components/KeyPhraseExtractionIcon.tsx', hash: '17790650281198840541' }, + { file: 'packages/react-icons-mdl2/src/components/KeyboardClassicIcon.tsx', hash: '411576966672510523' }, + { file: 'packages/react-icons-mdl2/src/components/KnowledgeArticleIcon.tsx', hash: '12469477897422924243' }, + { file: 'packages/react-icons-mdl2/src/components/LabelIcon.tsx', hash: '3378231475701239352' }, + { file: 'packages/react-icons-mdl2/src/components/LadybugSolidIcon.tsx', hash: '2255768388802589476' }, + { file: 'packages/react-icons-mdl2/src/components/LampIcon.tsx', hash: '2980312443538296758' }, + { file: 'packages/react-icons-mdl2/src/components/LandscapeOrientationIcon.tsx', hash: '4067546757606619660' }, + { file: 'packages/react-icons-mdl2/src/components/LaptopSecureIcon.tsx', hash: '6296328661135281654' }, + { file: 'packages/react-icons-mdl2/src/components/LaptopSelectedIcon.tsx', hash: '16074226251523455567' }, + { file: 'packages/react-icons-mdl2/src/components/LargeGridIcon.tsx', hash: '5229171462323349257' }, + { file: 'packages/react-icons-mdl2/src/components/LearningToolsIcon.tsx', hash: '1478670133257245649' }, + { file: 'packages/react-icons-mdl2/src/components/LeaveIcon.tsx', hash: '3413862808121824360' }, + { file: 'packages/react-icons-mdl2/src/components/LeaveUserIcon.tsx', hash: '12989890662915153188' }, + { file: 'packages/react-icons-mdl2/src/components/LibraryIcon.tsx', hash: '1291483442627924261' }, + { file: 'packages/react-icons-mdl2/src/components/LifesaverIcon.tsx', hash: '15719069419304250576' }, + { file: 'packages/react-icons-mdl2/src/components/LifesaverLockIcon.tsx', hash: '8818896047143933430' }, + { file: 'packages/react-icons-mdl2/src/components/LightIcon.tsx', hash: '5156483312012830102' }, + { file: 'packages/react-icons-mdl2/src/components/LightWeightIcon.tsx', hash: '3865104666332960985' }, + { file: 'packages/react-icons-mdl2/src/components/LightbulbIcon.tsx', hash: '2436163697764661261' }, + { file: 'packages/react-icons-mdl2/src/components/LightningBoltIcon.tsx', hash: '13485616252088130492' }, + { file: 'packages/react-icons-mdl2/src/components/LightningBoltSolidIcon.tsx', hash: '15054961729375683944' }, + { file: 'packages/react-icons-mdl2/src/components/LikeIcon.tsx', hash: '9032546788293939018' }, + { file: 'packages/react-icons-mdl2/src/components/LikeSolidIcon.tsx', hash: '18382395873982313140' }, + { file: 'packages/react-icons-mdl2/src/components/LineChartIcon.tsx', hash: '794669679327992310' }, + { file: 'packages/react-icons-mdl2/src/components/LineIcon.tsx', hash: '9556042467546249456' }, + { file: 'packages/react-icons-mdl2/src/components/LineSpacingIcon.tsx', hash: '15896967001335665868' }, + { file: 'packages/react-icons-mdl2/src/components/LineStyleIcon.tsx', hash: '18211431930869399084' }, + { file: 'packages/react-icons-mdl2/src/components/LineThicknessIcon.tsx', hash: '14859153643587611765' }, + { file: 'packages/react-icons-mdl2/src/components/Link12Icon.tsx', hash: '16081584489473752658' }, + { file: 'packages/react-icons-mdl2/src/components/LinkIcon.tsx', hash: '1908750425081902690' }, + { file: 'packages/react-icons-mdl2/src/components/LinkedDatabaseIcon.tsx', hash: '4325267157746077126' }, + { file: 'packages/react-icons-mdl2/src/components/LinuxLogo32Icon.tsx', hash: '12568846083970101391' }, + { file: 'packages/react-icons-mdl2/src/components/ListIcon.tsx', hash: '16023719582074195209' }, + { file: 'packages/react-icons-mdl2/src/components/ListMirroredIcon.tsx', hash: '5098251431463116358' }, + { file: 'packages/react-icons-mdl2/src/components/LiveSiteIcon.tsx', hash: '14048768654735729185' }, + { file: 'packages/react-icons-mdl2/src/components/LocaleLanguageIcon.tsx', hash: '12337575125571454357' }, + { file: 'packages/react-icons-mdl2/src/components/LocationCircleIcon.tsx', hash: '9758846971576171370' }, + { file: 'packages/react-icons-mdl2/src/components/LocationDotIcon.tsx', hash: '3278405111715028294' }, + { file: 'packages/react-icons-mdl2/src/components/LocationFillIcon.tsx', hash: '2138561064316564498' }, + { file: 'packages/react-icons-mdl2/src/components/LocationIcon.tsx', hash: '5208443676669918505' }, + { file: 'packages/react-icons-mdl2/src/components/LocationOutlineIcon.tsx', hash: '13218853813874807588' }, + { file: 'packages/react-icons-mdl2/src/components/Lock12Icon.tsx', hash: '16013286017315295053' }, + { file: 'packages/react-icons-mdl2/src/components/LockIcon.tsx', hash: '4801981410903331805' }, + { file: 'packages/react-icons-mdl2/src/components/LockShareIcon.tsx', hash: '10342601556498003565' }, + { file: 'packages/react-icons-mdl2/src/components/LockSolidIcon.tsx', hash: '9752255275577661679' }, + { file: 'packages/react-icons-mdl2/src/components/LogRemoveIcon.tsx', hash: '18249700207254304282' }, + { file: 'packages/react-icons-mdl2/src/components/LookupEntitiesIcon.tsx', hash: '14469241137300715864' }, + { file: 'packages/react-icons-mdl2/src/components/LowerBrightnessIcon.tsx', hash: '13419595406937683625' }, + { file: 'packages/react-icons-mdl2/src/components/MachineLearningIcon.tsx', hash: '760629027388695268' }, + { file: 'packages/react-icons-mdl2/src/components/MailAlertIcon.tsx', hash: '15677037478095270277' }, + { file: 'packages/react-icons-mdl2/src/components/MailAttachedIcon.tsx', hash: '4025552307791860117' }, + { file: 'packages/react-icons-mdl2/src/components/MailCheckIcon.tsx', hash: '15178557980211822363' }, + { file: 'packages/react-icons-mdl2/src/components/MailFillIcon.tsx', hash: '11483268666054294702' }, + { file: 'packages/react-icons-mdl2/src/components/MailForwardIcon.tsx', hash: '3527035253875913326' }, + { file: 'packages/react-icons-mdl2/src/components/MailForwardMirroredIcon.tsx', hash: '2291238011890235092' }, + { file: 'packages/react-icons-mdl2/src/components/MailIcon.tsx', hash: '17100991757315805198' }, + { file: 'packages/react-icons-mdl2/src/components/MailLowImportanceIcon.tsx', hash: '567478396963195491' }, + { file: 'packages/react-icons-mdl2/src/components/MailOptionsIcon.tsx', hash: '200921925700068875' }, + { file: 'packages/react-icons-mdl2/src/components/MailPauseIcon.tsx', hash: '5629390760476035405' }, + { file: 'packages/react-icons-mdl2/src/components/MailReminderIcon.tsx', hash: '10098715243774779943' }, + { file: 'packages/react-icons-mdl2/src/components/MailRepeatIcon.tsx', hash: '17862325693321671302' }, + { file: 'packages/react-icons-mdl2/src/components/MailReplyAllIcon.tsx', hash: '7702777610664294929' }, + { file: 'packages/react-icons-mdl2/src/components/MailReplyAllMirroredIcon.tsx', hash: '11280323338549747454' }, + { file: 'packages/react-icons-mdl2/src/components/MailReplyIcon.tsx', hash: '6802930256440607638' }, + { file: 'packages/react-icons-mdl2/src/components/MailReplyMirroredIcon.tsx', hash: '2233973513224742586' }, + { file: 'packages/react-icons-mdl2/src/components/MailScheduleIcon.tsx', hash: '757776144436321925' }, + { file: 'packages/react-icons-mdl2/src/components/MailSolidIcon.tsx', hash: '4634490987071651103' }, + { file: 'packages/react-icons-mdl2/src/components/MailTentativeIcon.tsx', hash: '5135978347665218306' }, + { file: 'packages/react-icons-mdl2/src/components/MailTentativeMirroredIcon.tsx', hash: '4300182470474070687' }, + { file: 'packages/react-icons-mdl2/src/components/MailUndeliveredIcon.tsx', hash: '14903593936856019428' }, + { file: 'packages/react-icons-mdl2/src/components/ManagerSelfServiceIcon.tsx', hash: '1848510673883736166' }, + { file: 'packages/react-icons-mdl2/src/components/ManufacturingIcon.tsx', hash: '18047977118807371741' }, + { file: 'packages/react-icons-mdl2/src/components/MapDirectionsIcon.tsx', hash: '4747623359582002035' }, + { file: 'packages/react-icons-mdl2/src/components/MapLayersIcon.tsx', hash: '8481507691523574033' }, + { file: 'packages/react-icons-mdl2/src/components/MapPin12Icon.tsx', hash: '211162128284100738' }, + { file: 'packages/react-icons-mdl2/src/components/MapPinIcon.tsx', hash: '17733996541851463646' }, + { file: 'packages/react-icons-mdl2/src/components/MapPinSolidIcon.tsx', hash: '10658541521136810339' }, + { file: 'packages/react-icons-mdl2/src/components/MarkAsProtectedIcon.tsx', hash: '3760294448808538624' }, + { file: 'packages/react-icons-mdl2/src/components/MarkDownLanguageIcon.tsx', hash: '10998137402310667703' }, + { file: 'packages/react-icons-mdl2/src/components/MarketDownIcon.tsx', hash: '1927915898613886495' }, + { file: 'packages/react-icons-mdl2/src/components/MarketIcon.tsx', hash: '9428958624159950454' }, + { file: 'packages/react-icons-mdl2/src/components/MasterDatabaseIcon.tsx', hash: '12765781549694057240' }, + { file: 'packages/react-icons-mdl2/src/components/MaximumValueIcon.tsx', hash: '9548851655060404668' }, + { file: 'packages/react-icons-mdl2/src/components/MedalIcon.tsx', hash: '9016574582699757751' }, + { file: 'packages/react-icons-mdl2/src/components/MedalSolidIcon.tsx', hash: '9775549943191019333' }, + { file: 'packages/react-icons-mdl2/src/components/MediaAddIcon.tsx', hash: '1530213724134119045' }, + { file: 'packages/react-icons-mdl2/src/components/MediaIcon.tsx', hash: '13693312563984438343' }, + { file: 'packages/react-icons-mdl2/src/components/MedicalIcon.tsx', hash: '17678556182467551513' }, + { file: 'packages/react-icons-mdl2/src/components/MegaphoneIcon.tsx', hash: '16847710342780168526' }, + { file: 'packages/react-icons-mdl2/src/components/MegaphoneSolidIcon.tsx', hash: '9812427839658596847' }, + { file: 'packages/react-icons-mdl2/src/components/MemoIcon.tsx', hash: '2637519265040979218' }, + { file: 'packages/react-icons-mdl2/src/components/MergeDuplicateIcon.tsx', hash: '14987944302662535701' }, + { file: 'packages/react-icons-mdl2/src/components/MergeIcon.tsx', hash: '16459949698224202006' }, + { file: 'packages/react-icons-mdl2/src/components/MessageFillIcon.tsx', hash: '7028167948487732677' }, + { file: 'packages/react-icons-mdl2/src/components/MessageFriendRequestIcon.tsx', hash: '10447816732492443022' }, + { file: 'packages/react-icons-mdl2/src/components/MessageIcon.tsx', hash: '9016057551501316676' }, + { file: 'packages/react-icons-mdl2/src/components/MicOff2Icon.tsx', hash: '831218772748006399' }, + { file: 'packages/react-icons-mdl2/src/components/MicOffIcon.tsx', hash: '10987570889496568468' }, + { file: 'packages/react-icons-mdl2/src/components/MicrophoneIcon.tsx', hash: '14513278060535966782' }, + { file: 'packages/react-icons-mdl2/src/components/MiniContractIcon.tsx', hash: '16511800240076613720' }, + { file: 'packages/react-icons-mdl2/src/components/MiniContractMirroredIcon.tsx', hash: '10630210747251287634' }, + { file: 'packages/react-icons-mdl2/src/components/MiniExpandIcon.tsx', hash: '13680889919501484112' }, + { file: 'packages/react-icons-mdl2/src/components/MiniExpandMirroredIcon.tsx', hash: '2291813261765776362' }, + { file: 'packages/react-icons-mdl2/src/components/MiniLinkIcon.tsx', hash: '248848982504484274' }, + { file: 'packages/react-icons-mdl2/src/components/MinimumValueIcon.tsx', hash: '13613713551566134421' }, + { file: 'packages/react-icons-mdl2/src/components/MiracastLogoLargeIcon.tsx', hash: '13842928032969802526' }, + { file: 'packages/react-icons-mdl2/src/components/MobileAngledIcon.tsx', hash: '2757052120309127402' }, + { file: 'packages/react-icons-mdl2/src/components/MobileReportIcon.tsx', hash: '9428374822461622031' }, + { file: 'packages/react-icons-mdl2/src/components/MobileSelectedIcon.tsx', hash: '16784153577217981592' }, + { file: 'packages/react-icons-mdl2/src/components/ModelingViewIcon.tsx', hash: '11311555510747362676' }, + { file: 'packages/react-icons-mdl2/src/components/MoneyIcon.tsx', hash: '1393140136935152030' }, + { file: 'packages/react-icons-mdl2/src/components/MoreIcon.tsx', hash: '4658167228466283777' }, + { file: 'packages/react-icons-mdl2/src/components/MoreSportsIcon.tsx', hash: '9221304452546249716' }, + { file: 'packages/react-icons-mdl2/src/components/MoreVerticalIcon.tsx', hash: '6230043297841631422' }, + { file: 'packages/react-icons-mdl2/src/components/MountainClimbingIcon.tsx', hash: '621750915275139874' }, + { file: 'packages/react-icons-mdl2/src/components/MoveIcon.tsx', hash: '2987620761554093824' }, + { file: 'packages/react-icons-mdl2/src/components/MoveToFolderIcon.tsx', hash: '12206384036935632470' }, + { file: 'packages/react-icons-mdl2/src/components/MoversIcon.tsx', hash: '17572755030686178354' }, + { file: 'packages/react-icons-mdl2/src/components/MultiSelectIcon.tsx', hash: '16169117549836272193' }, + { file: 'packages/react-icons-mdl2/src/components/MultiSelectMirroredIcon.tsx', hash: '10970075712547181569' }, + { file: 'packages/react-icons-mdl2/src/components/MusicInCollectionFillIcon.tsx', hash: '11485106460390186839' }, + { file: 'packages/react-icons-mdl2/src/components/MusicInCollectionIcon.tsx', hash: '16669926402142356515' }, + { file: 'packages/react-icons-mdl2/src/components/MusicNoteIcon.tsx', hash: '7789904933433989372' }, + { file: 'packages/react-icons-mdl2/src/components/MuteChatIcon.tsx', hash: '3631919255804943778' }, + { file: 'packages/react-icons-mdl2/src/components/MyMoviesTVIcon.tsx', hash: '6406183886708476503' }, + { file: 'packages/react-icons-mdl2/src/components/MyNetworkIcon.tsx', hash: '15556630167642081635' }, + { file: 'packages/react-icons-mdl2/src/components/NPMLogoIcon.tsx', hash: '15938419132213830913' }, + { file: 'packages/react-icons-mdl2/src/components/Nav2DMapViewIcon.tsx', hash: '1861942974503405839' }, + { file: 'packages/react-icons-mdl2/src/components/NavigateBackIcon.tsx', hash: '15249469567878012490' }, + { file: 'packages/react-icons-mdl2/src/components/NavigateBackMirroredIcon.tsx', hash: '1817649965554632624' }, + { file: 'packages/react-icons-mdl2/src/components/NavigateExternalInlineIcon.tsx', hash: '6636555198967266856' }, + { file: 'packages/react-icons-mdl2/src/components/NavigateForwardIcon.tsx', hash: '14548222247030754116' }, + { file: 'packages/react-icons-mdl2/src/components/NavigateForwardMirroredIcon.tsx', hash: '9630908319510065411' }, + { file: 'packages/react-icons-mdl2/src/components/NavigationFlipperIcon.tsx', hash: '16780771950942383103' }, + { file: 'packages/react-icons-mdl2/src/components/NetworkTowerIcon.tsx', hash: '8956230440629168518' }, + { file: 'packages/react-icons-mdl2/src/components/NewAnalyticsQueryIcon.tsx', hash: '5795625520702608746' }, + { file: 'packages/react-icons-mdl2/src/components/NewFolderIcon.tsx', hash: '638387074709881957' }, + { file: 'packages/react-icons-mdl2/src/components/NewMailIcon.tsx', hash: '10242820263861230200' }, + { file: 'packages/react-icons-mdl2/src/components/NewTeamProjectIcon.tsx', hash: '2354857052378159660' }, + { file: 'packages/react-icons-mdl2/src/components/NewsIcon.tsx', hash: '9041237247619422980' }, + { file: 'packages/react-icons-mdl2/src/components/NewsSearchIcon.tsx', hash: '6774536564163043043' }, + { file: 'packages/react-icons-mdl2/src/components/NextIcon.tsx', hash: '1434721563549479484' }, + { file: 'packages/react-icons-mdl2/src/components/NonprofitLogo32Icon.tsx', hash: '17298146378948801665' }, + { file: 'packages/react-icons-mdl2/src/components/NormalWeightIcon.tsx', hash: '15211035032334837971' }, + { file: 'packages/react-icons-mdl2/src/components/NotExecutedIcon.tsx', hash: '6112908944121663220' }, + { file: 'packages/react-icons-mdl2/src/components/NotImpactedSolidIcon.tsx', hash: '9668204014136724574' }, + { file: 'packages/react-icons-mdl2/src/components/NoteForwardIcon.tsx', hash: '2033093137143398401' }, + { file: 'packages/react-icons-mdl2/src/components/NotePinnedIcon.tsx', hash: '15308229896399402511' }, + { file: 'packages/react-icons-mdl2/src/components/NoteReplyIcon.tsx', hash: '5397651241606373899' }, + { file: 'packages/react-icons-mdl2/src/components/NumberFieldIcon.tsx', hash: '1073357588587963185' }, + { file: 'packages/react-icons-mdl2/src/components/NumberIcon.tsx', hash: '17254717544082558121' }, + { file: 'packages/react-icons-mdl2/src/components/NumberSequenceIcon.tsx', hash: '2062763852355939642' }, + { file: 'packages/react-icons-mdl2/src/components/NumberSymbolIcon.tsx', hash: '600780750503080926' }, + { file: 'packages/react-icons-mdl2/src/components/NumberedListIcon.tsx', hash: '13513586621250451638' }, + { file: 'packages/react-icons-mdl2/src/components/NumberedListMirroredIcon.tsx', hash: '10445687537115426123' }, + { file: 'packages/react-icons-mdl2/src/components/NumberedListNumberIcon.tsx', hash: '15541807436844196483' }, + { + file: 'packages/react-icons-mdl2/src/components/NumberedListNumberMirroredIcon.tsx', + hash: '7523321592675558698', + }, + { file: 'packages/react-icons-mdl2/src/components/NumberedListTextIcon.tsx', hash: '17348478231420593090' }, + { + file: 'packages/react-icons-mdl2/src/components/NumberedListTextMirroredIcon.tsx', + hash: '9358275100316027589', + }, + { file: 'packages/react-icons-mdl2/src/components/OEMIcon.tsx', hash: '16884975489193646219' }, + { file: 'packages/react-icons-mdl2/src/components/OctagonIcon.tsx', hash: '7051997867406169889' }, + { file: 'packages/react-icons-mdl2/src/components/OfficeChatIcon.tsx', hash: '3135032991082863206' }, + { file: 'packages/react-icons-mdl2/src/components/OfficeChatSolidIcon.tsx', hash: '7579003419417093508' }, + { file: 'packages/react-icons-mdl2/src/components/OfflineStorageIcon.tsx', hash: '351924355410058825' }, + { file: 'packages/react-icons-mdl2/src/components/OfflineStorageSolidIcon.tsx', hash: '2163296287816341950' }, + { file: 'packages/react-icons-mdl2/src/components/OnboardingIcon.tsx', hash: '17978163123947726803' }, + { file: 'packages/react-icons-mdl2/src/components/OpenEnrollmentIcon.tsx', hash: '9409831895624258892' }, + { file: 'packages/react-icons-mdl2/src/components/OpenFileIcon.tsx', hash: '13716013895282716360' }, + { file: 'packages/react-icons-mdl2/src/components/OpenFolderHorizontalIcon.tsx', hash: '4720433802176078702' }, + { file: 'packages/react-icons-mdl2/src/components/OpenInNewTabIcon.tsx', hash: '12616026608623184577' }, + { file: 'packages/react-icons-mdl2/src/components/OpenInNewWindowIcon.tsx', hash: '16709764145623596082' }, + { file: 'packages/react-icons-mdl2/src/components/OpenPaneIcon.tsx', hash: '14167942678189328958' }, + { file: 'packages/react-icons-mdl2/src/components/OpenPaneMirroredIcon.tsx', hash: '17902852270134103661' }, + { file: 'packages/react-icons-mdl2/src/components/OpenSourceIcon.tsx', hash: '6022581724396109402' }, + { file: 'packages/react-icons-mdl2/src/components/OpenWithIcon.tsx', hash: '16757941053329032655' }, + { file: 'packages/react-icons-mdl2/src/components/OpenWithMirroredIcon.tsx', hash: '1238747352425009933' }, + { file: 'packages/react-icons-mdl2/src/components/OrgIcon.tsx', hash: '17958497940558097203' }, + { file: 'packages/react-icons-mdl2/src/components/Orientation2Icon.tsx', hash: '9165835761068707409' }, + { file: 'packages/react-icons-mdl2/src/components/OrientationIcon.tsx', hash: '2261330004914625799' }, + { file: 'packages/react-icons-mdl2/src/components/OutOfOfficeIcon.tsx', hash: '9033234528837519595' }, + { file: 'packages/react-icons-mdl2/src/components/PC1Icon.tsx', hash: '17118061778132244317' }, + { file: 'packages/react-icons-mdl2/src/components/PDFIcon.tsx', hash: '16953159234422781856' }, + { file: 'packages/react-icons-mdl2/src/components/POIIcon.tsx', hash: '17081025063363847104' }, + { file: 'packages/react-icons-mdl2/src/components/POISolidIcon.tsx', hash: '17987066840688022197' }, + { file: 'packages/react-icons-mdl2/src/components/PYIcon.tsx', hash: '15062122769409242350' }, + { file: 'packages/react-icons-mdl2/src/components/PackageIcon.tsx', hash: '8188806034944821664' }, + { file: 'packages/react-icons-mdl2/src/components/PackagesIcon.tsx', hash: '7530672802951546585' }, + { file: 'packages/react-icons-mdl2/src/components/PaddingBottomIcon.tsx', hash: '16329407378974243459' }, + { file: 'packages/react-icons-mdl2/src/components/PaddingIcon.tsx', hash: '3693454047174570108' }, + { file: 'packages/react-icons-mdl2/src/components/PaddingLeftIcon.tsx', hash: '1940723243895739869' }, + { file: 'packages/react-icons-mdl2/src/components/PaddingRightIcon.tsx', hash: '15575572852872359348' }, + { file: 'packages/react-icons-mdl2/src/components/PaddingTopIcon.tsx', hash: '3059126148886145452' }, + { file: 'packages/react-icons-mdl2/src/components/PageAddIcon.tsx', hash: '1028128955597352055' }, + { file: 'packages/react-icons-mdl2/src/components/PageArrowRightIcon.tsx', hash: '10299368263307558240' }, + { file: 'packages/react-icons-mdl2/src/components/PageCheckedOutIcon.tsx', hash: '5540250238565489701' }, + { file: 'packages/react-icons-mdl2/src/components/PageCheckedinIcon.tsx', hash: '8733252113380883530' }, + { file: 'packages/react-icons-mdl2/src/components/PageDataIcon.tsx', hash: '5429006082615274734' }, + { file: 'packages/react-icons-mdl2/src/components/PageEditIcon.tsx', hash: '1302190554096056533' }, + { file: 'packages/react-icons-mdl2/src/components/PageHeaderEditIcon.tsx', hash: '2745440594367033058' }, + { file: 'packages/react-icons-mdl2/src/components/PageHeaderIcon.tsx', hash: '484643801273417624' }, + { file: 'packages/react-icons-mdl2/src/components/PageIcon.tsx', hash: '13143986509256477909' }, + { file: 'packages/react-icons-mdl2/src/components/PageLeftIcon.tsx', hash: '5225179526940112834' }, + { file: 'packages/react-icons-mdl2/src/components/PageLinkIcon.tsx', hash: '2235935547175998368' }, + { file: 'packages/react-icons-mdl2/src/components/PageListFilterIcon.tsx', hash: '4958536397877730157' }, + { file: 'packages/react-icons-mdl2/src/components/PageListIcon.tsx', hash: '15592393887722894984' }, + { file: 'packages/react-icons-mdl2/src/components/PageListMirroredSolidIcon.tsx', hash: '7072452421696131187' }, + { file: 'packages/react-icons-mdl2/src/components/PageListSolidIcon.tsx', hash: '3011846427870316812' }, + { file: 'packages/react-icons-mdl2/src/components/PageLockIcon.tsx', hash: '8328618170239710913' }, + { file: 'packages/react-icons-mdl2/src/components/PageRemoveIcon.tsx', hash: '15226280653443240296' }, + { file: 'packages/react-icons-mdl2/src/components/PageRightIcon.tsx', hash: '3409547421310272122' }, + { file: 'packages/react-icons-mdl2/src/components/PageSharedIcon.tsx', hash: '18303121269314325046' }, + { file: 'packages/react-icons-mdl2/src/components/PageSolidIcon.tsx', hash: '11681020525884514699' }, + { file: 'packages/react-icons-mdl2/src/components/PanoIndicatorIcon.tsx', hash: '2581465768954382431' }, + { file: 'packages/react-icons-mdl2/src/components/ParachuteIcon.tsx', hash: '12501200481557600275' }, + { file: 'packages/react-icons-mdl2/src/components/ParachuteSolidIcon.tsx', hash: '1192630446492557179' }, + { file: 'packages/react-icons-mdl2/src/components/ParameterIcon.tsx', hash: '4042220669581533546' }, + { file: 'packages/react-icons-mdl2/src/components/ParatureLogoIcon.tsx', hash: '11611626752464336572' }, + { file: 'packages/react-icons-mdl2/src/components/ParkingLocationIcon.tsx', hash: '8568967650502471935' }, + { + file: 'packages/react-icons-mdl2/src/components/ParkingLocationMirroredIcon.tsx', + hash: '17018586187571511755', + }, + { file: 'packages/react-icons-mdl2/src/components/ParkingMirroredSolidIcon.tsx', hash: '8427913959764438159' }, + { file: 'packages/react-icons-mdl2/src/components/ParkingSolidIcon.tsx', hash: '1262591929795560141' }, + { file: 'packages/react-icons-mdl2/src/components/PartlyCloudyDayIcon.tsx', hash: '8716126962689890947' }, + { file: 'packages/react-icons-mdl2/src/components/PartlyCloudyNightIcon.tsx', hash: '16235715570424586919' }, + { file: 'packages/react-icons-mdl2/src/components/PartyLeaderIcon.tsx', hash: '12711893955536705188' }, + { file: 'packages/react-icons-mdl2/src/components/PassiveAuthenticationIcon.tsx', hash: '14002588332142220944' }, + { file: 'packages/react-icons-mdl2/src/components/PasswordFieldIcon.tsx', hash: '3131426377826399559' }, + { file: 'packages/react-icons-mdl2/src/components/PasteAsCodeIcon.tsx', hash: '4805260552399940501' }, + { file: 'packages/react-icons-mdl2/src/components/PasteAsTextIcon.tsx', hash: '12623295337668507458' }, + { file: 'packages/react-icons-mdl2/src/components/PasteIcon.tsx', hash: '5004523753740808524' }, + { file: 'packages/react-icons-mdl2/src/components/PauseIcon.tsx', hash: '9059877663732204795' }, + { file: 'packages/react-icons-mdl2/src/components/PaymentCardIcon.tsx', hash: '8072989350727579864' }, + { file: 'packages/react-icons-mdl2/src/components/PenWorkspaceIcon.tsx', hash: '16399862149305076952' }, + { file: 'packages/react-icons-mdl2/src/components/PencilReplyIcon.tsx', hash: '7964544734391619918' }, + { file: 'packages/react-icons-mdl2/src/components/PentagonIcon.tsx', hash: '12576470515379649977' }, + { file: 'packages/react-icons-mdl2/src/components/PeopleAddIcon.tsx', hash: '740077196701986885' }, + { file: 'packages/react-icons-mdl2/src/components/PeopleAlertIcon.tsx', hash: '1200751904829860538' }, + { file: 'packages/react-icons-mdl2/src/components/PeopleBlockIcon.tsx', hash: '11520566292680214548' }, + { file: 'packages/react-icons-mdl2/src/components/PeopleIcon.tsx', hash: '5546815075608181083' }, + { file: 'packages/react-icons-mdl2/src/components/PeoplePauseIcon.tsx', hash: '2384543899794990203' }, + { file: 'packages/react-icons-mdl2/src/components/PeopleRepeatIcon.tsx', hash: '14144925183828792268' }, + { file: 'packages/react-icons-mdl2/src/components/PermissionsIcon.tsx', hash: '8360012995862892653' }, + { file: 'packages/react-icons-mdl2/src/components/PermissionsSolidIcon.tsx', hash: '2616240249421986755' }, + { file: 'packages/react-icons-mdl2/src/components/PersonalizeIcon.tsx', hash: '14943945156655188411' }, + { file: 'packages/react-icons-mdl2/src/components/PhishingIcon.tsx', hash: '9518959580653265457' }, + { file: 'packages/react-icons-mdl2/src/components/PhoneIcon.tsx', hash: '10123189969608843806' }, + { file: 'packages/react-icons-mdl2/src/components/Photo2AddIcon.tsx', hash: '12890535897327362569' }, + { file: 'packages/react-icons-mdl2/src/components/Photo2FillIcon.tsx', hash: '11916973734202296104' }, + { file: 'packages/react-icons-mdl2/src/components/Photo2Icon.tsx', hash: '6217669434528424813' }, + { file: 'packages/react-icons-mdl2/src/components/Photo2RemoveIcon.tsx', hash: '11045243933391741734' }, + { file: 'packages/react-icons-mdl2/src/components/PhotoCollectionIcon.tsx', hash: '14853854378220941481' }, + { file: 'packages/react-icons-mdl2/src/components/PhotoErrorIcon.tsx', hash: '15843725646187763745' }, + { file: 'packages/react-icons-mdl2/src/components/PhotoIcon.tsx', hash: '2410398483773033272' }, + { file: 'packages/react-icons-mdl2/src/components/PhotoVideoMediaIcon.tsx', hash: '11327066028793385582' }, + { file: 'packages/react-icons-mdl2/src/components/PictureCenterIcon.tsx', hash: '84076699459718279' }, + { file: 'packages/react-icons-mdl2/src/components/PictureFillIcon.tsx', hash: '14181410728380315086' }, + { file: 'packages/react-icons-mdl2/src/components/PictureIcon.tsx', hash: '15806894766658361974' }, + { file: 'packages/react-icons-mdl2/src/components/PictureLibraryIcon.tsx', hash: '5311483414434365136' }, + { file: 'packages/react-icons-mdl2/src/components/PicturePositionIcon.tsx', hash: '17409430305773109518' }, + { file: 'packages/react-icons-mdl2/src/components/PictureStretchIcon.tsx', hash: '9909515815194791190' }, + { file: 'packages/react-icons-mdl2/src/components/PictureTileIcon.tsx', hash: '5991148569776167026' }, + { file: 'packages/react-icons-mdl2/src/components/PieDoubleIcon.tsx', hash: '16668444301135366429' }, + { file: 'packages/react-icons-mdl2/src/components/PieSingleIcon.tsx', hash: '11084927429971105756' }, + { file: 'packages/react-icons-mdl2/src/components/PieSingleSolidIcon.tsx', hash: '14776155998409612678' }, + { file: 'packages/react-icons-mdl2/src/components/PillIcon.tsx', hash: '6256599255750287452' }, + { file: 'packages/react-icons-mdl2/src/components/PinIcon.tsx', hash: '1983240911784268789' }, + { file: 'packages/react-icons-mdl2/src/components/PinSolid12Icon.tsx', hash: '15020687617927332339' }, + { file: 'packages/react-icons-mdl2/src/components/PinSolidOff12Icon.tsx', hash: '3499118347569957809' }, + { file: 'packages/react-icons-mdl2/src/components/PinnedFillIcon.tsx', hash: '10585700449523261373' }, + { file: 'packages/react-icons-mdl2/src/components/PinnedIcon.tsx', hash: '9070205068592037520' }, + { file: 'packages/react-icons-mdl2/src/components/PinnedSolidIcon.tsx', hash: '5936043922736609729' }, + { file: 'packages/react-icons-mdl2/src/components/PivotChartIcon.tsx', hash: '4259767106459863102' }, + { file: 'packages/react-icons-mdl2/src/components/PlainTextIcon.tsx', hash: '7745879903020174346' }, + { file: 'packages/react-icons-mdl2/src/components/PlanViewIcon.tsx', hash: '15229642606192990519' }, + { file: 'packages/react-icons-mdl2/src/components/PlayIcon.tsx', hash: '13347942971552831209' }, + { file: 'packages/react-icons-mdl2/src/components/PlayResumeIcon.tsx', hash: '6978019009270265637' }, + { file: 'packages/react-icons-mdl2/src/components/PlayReverseIcon.tsx', hash: '886294037536270616' }, + { file: 'packages/react-icons-mdl2/src/components/PlayReverseResumeIcon.tsx', hash: '11828144696321574113' }, + { file: 'packages/react-icons-mdl2/src/components/PlaySolidIcon.tsx', hash: '16883681959444751019' }, + { file: 'packages/react-icons-mdl2/src/components/PlaybackRate1xIcon.tsx', hash: '11422776004876274435' }, + { file: 'packages/react-icons-mdl2/src/components/PlayerSettingsIcon.tsx', hash: '2891640004616963952' }, + { file: 'packages/react-icons-mdl2/src/components/PlugConnectedIcon.tsx', hash: '15231900144038686883' }, + { file: 'packages/react-icons-mdl2/src/components/PlugDisconnectedIcon.tsx', hash: '9482677610736263718' }, + { file: 'packages/react-icons-mdl2/src/components/PlugIcon.tsx', hash: '14457238032728110736' }, + { file: 'packages/react-icons-mdl2/src/components/PlugSolidIcon.tsx', hash: '14985347379238626930' }, + { file: 'packages/react-icons-mdl2/src/components/PollResultsIcon.tsx', hash: '4372641809118635212' }, + { file: 'packages/react-icons-mdl2/src/components/PostUpdateIcon.tsx', hash: '13690140920683735685' }, + { file: 'packages/react-icons-mdl2/src/components/PowerButtonIcon.tsx', hash: '13473089005670940816' }, + { file: 'packages/react-icons-mdl2/src/components/PrecipitationIcon.tsx', hash: '8700523600035334889' }, + { file: 'packages/react-icons-mdl2/src/components/PresenceChickletVideoIcon.tsx', hash: '6520898751220495588' }, + { file: 'packages/react-icons-mdl2/src/components/Presentation12Icon.tsx', hash: '12739060340199533788' }, + { file: 'packages/react-icons-mdl2/src/components/PresentationIcon.tsx', hash: '5580057635504441568' }, + { file: 'packages/react-icons-mdl2/src/components/PreviewIcon.tsx', hash: '15795109478497264543' }, + { file: 'packages/react-icons-mdl2/src/components/PreviewLinkIcon.tsx', hash: '10029955962533993761' }, + { file: 'packages/react-icons-mdl2/src/components/PreviousIcon.tsx', hash: '6343179605604117917' }, + { file: 'packages/react-icons-mdl2/src/components/PrimaryCalendarIcon.tsx', hash: '4012658748296620011' }, + { file: 'packages/react-icons-mdl2/src/components/PrintIcon.tsx', hash: '6855816325772339277' }, + { file: 'packages/react-icons-mdl2/src/components/PrintfaxPrinterFileIcon.tsx', hash: '2412318128665022986' }, + { file: 'packages/react-icons-mdl2/src/components/ProFootballIcon.tsx', hash: '7394168027841297393' }, + { file: 'packages/react-icons-mdl2/src/components/ProHockeyIcon.tsx', hash: '8132842062475414845' }, + { file: 'packages/react-icons-mdl2/src/components/ProcessMetaTaskIcon.tsx', hash: '1761377875794956459' }, + { file: 'packages/react-icons-mdl2/src/components/ProcessingCancelIcon.tsx', hash: '9583304782707343752' }, + { file: 'packages/react-icons-mdl2/src/components/ProcessingIcon.tsx', hash: '12905437028183494715' }, + { file: 'packages/react-icons-mdl2/src/components/ProcessingPauseIcon.tsx', hash: '10446149742784483989' }, + { file: 'packages/react-icons-mdl2/src/components/ProcessingRunIcon.tsx', hash: '5844569557443581261' }, + { file: 'packages/react-icons-mdl2/src/components/ProductCatalogIcon.tsx', hash: '3464921564878584487' }, + { file: 'packages/react-icons-mdl2/src/components/ProductIcon.tsx', hash: '6348565145369557334' }, + { file: 'packages/react-icons-mdl2/src/components/ProductListIcon.tsx', hash: '3024724900075315777' }, + { file: 'packages/react-icons-mdl2/src/components/ProductReleaseIcon.tsx', hash: '7348620547503983607' }, + { file: 'packages/react-icons-mdl2/src/components/ProductVariantIcon.tsx', hash: '14137645095470379174' }, + { + file: 'packages/react-icons-mdl2/src/components/ProductionFloorManagementIcon.tsx', + hash: '8211043819524321465', + }, + { file: 'packages/react-icons-mdl2/src/components/ProfileSearchIcon.tsx', hash: '5360651681193046320' }, + { file: 'packages/react-icons-mdl2/src/components/ProgressLoopInnerIcon.tsx', hash: '7344307724570892451' }, + { file: 'packages/react-icons-mdl2/src/components/ProgressLoopOuterIcon.tsx', hash: '14115966853268295239' }, + { file: 'packages/react-icons-mdl2/src/components/ProgressRingDotsIcon.tsx', hash: '8827595993003570158' }, + { file: 'packages/react-icons-mdl2/src/components/PromotedDatabaseIcon.tsx', hash: '13494185727052834572' }, + { file: 'packages/react-icons-mdl2/src/components/ProtectRestrictIcon.tsx', hash: '12593153285092641043' }, + { file: 'packages/react-icons-mdl2/src/components/ProtectedDocumentIcon.tsx', hash: '17116528624998015036' }, + { file: 'packages/react-icons-mdl2/src/components/ProvisioningPackageIcon.tsx', hash: '10104819019290694702' }, + { file: 'packages/react-icons-mdl2/src/components/PublicCalendarIcon.tsx', hash: '7928576299592465227' }, + { file: 'packages/react-icons-mdl2/src/components/PublicContactCardIcon.tsx', hash: '17137969832944727124' }, + { + file: 'packages/react-icons-mdl2/src/components/PublicContactCardMirroredIcon.tsx', + hash: '10653560057174265194', + }, + { file: 'packages/react-icons-mdl2/src/components/PublicEmailIcon.tsx', hash: '16125961118093947862' }, + { file: 'packages/react-icons-mdl2/src/components/PublicFolderIcon.tsx', hash: '10615570374849555494' }, + { file: 'packages/react-icons-mdl2/src/components/PublishContentIcon.tsx', hash: '7418653213081864290' }, + { file: 'packages/react-icons-mdl2/src/components/PublishCourseIcon.tsx', hash: '7778181979101581966' }, + { file: 'packages/react-icons-mdl2/src/components/PuzzleIcon.tsx', hash: '16331125217924665582' }, + { file: 'packages/react-icons-mdl2/src/components/PythonLanguageIcon.tsx', hash: '12740295932941603018' }, + { file: 'packages/react-icons-mdl2/src/components/PythonLogoBlueIcon.tsx', hash: '10897963344070205190' }, + { file: 'packages/react-icons-mdl2/src/components/PythonLogoYellowIcon.tsx', hash: '10740076806574036198' }, + { file: 'packages/react-icons-mdl2/src/components/QRCodeIcon.tsx', hash: '4193817246005580075' }, + { file: 'packages/react-icons-mdl2/src/components/QandAIcon.tsx', hash: '7090567364829688083' }, + { file: 'packages/react-icons-mdl2/src/components/QandAMirrorIcon.tsx', hash: '14649054812286063495' }, + { file: 'packages/react-icons-mdl2/src/components/QuadColumnIcon.tsx', hash: '7779026997445231794' }, + { file: 'packages/react-icons-mdl2/src/components/QuantityIcon.tsx', hash: '13475748671267665668' }, + { file: 'packages/react-icons-mdl2/src/components/QuarterCircleIcon.tsx', hash: '301889233684729556' }, + { file: 'packages/react-icons-mdl2/src/components/QueryListIcon.tsx', hash: '17188232317815383853' }, + { file: 'packages/react-icons-mdl2/src/components/QuestionnaireIcon.tsx', hash: '8292236868458306187' }, + { file: 'packages/react-icons-mdl2/src/components/QuestionnaireMirroredIcon.tsx', hash: '16353546243071202079' }, + { file: 'packages/react-icons-mdl2/src/components/QuickNoteIcon.tsx', hash: '14698033081490920685' }, + { file: 'packages/react-icons-mdl2/src/components/QuickNoteSolidIcon.tsx', hash: '3853804771265454467' }, + { file: 'packages/react-icons-mdl2/src/components/RIcon.tsx', hash: '3642147187287238543' }, + { file: 'packages/react-icons-mdl2/src/components/RadioBtnOffIcon.tsx', hash: '15968365517372088454' }, + { file: 'packages/react-icons-mdl2/src/components/RadioBtnOnIcon.tsx', hash: '10401097749420578475' }, + { file: 'packages/react-icons-mdl2/src/components/RadioBulletIcon.tsx', hash: '1948109167659139504' }, + { file: 'packages/react-icons-mdl2/src/components/RainIcon.tsx', hash: '1224377299511878005' }, + { file: 'packages/react-icons-mdl2/src/components/RainShowersDayIcon.tsx', hash: '18140602978554118692' }, + { file: 'packages/react-icons-mdl2/src/components/RainShowersNightIcon.tsx', hash: '772223889186546672' }, + { file: 'packages/react-icons-mdl2/src/components/RainSnowIcon.tsx', hash: '18316749923815146432' }, + { file: 'packages/react-icons-mdl2/src/components/RawSourceIcon.tsx', hash: '2346521877928885898' }, + { file: 'packages/react-icons-mdl2/src/components/ReactLogoIcon.tsx', hash: '11478464493583554511' }, + { file: 'packages/react-icons-mdl2/src/components/ReadIcon.tsx', hash: '16339774116571551264' }, + { file: 'packages/react-icons-mdl2/src/components/ReadOutLoudIcon.tsx', hash: '15512938224017499748' }, + { file: 'packages/react-icons-mdl2/src/components/ReadingModeIcon.tsx', hash: '11225680917459055690' }, + { file: 'packages/react-icons-mdl2/src/components/ReadingModeSolidIcon.tsx', hash: '13630184717491842494' }, + { file: 'packages/react-icons-mdl2/src/components/RealEstateIcon.tsx', hash: '12132961416106915656' }, + { file: 'packages/react-icons-mdl2/src/components/ReceiptCheckIcon.tsx', hash: '14861339649639821612' }, + { file: 'packages/react-icons-mdl2/src/components/ReceiptForwardIcon.tsx', hash: '16249487772177911246' }, + { file: 'packages/react-icons-mdl2/src/components/ReceiptReplyIcon.tsx', hash: '6675712624277309058' }, + { file: 'packages/react-icons-mdl2/src/components/ReceiptTentativeIcon.tsx', hash: '1827539807926652219' }, + { + file: 'packages/react-icons-mdl2/src/components/ReceiptTentativeMirroredIcon.tsx', + hash: '10058669923175591734', + }, + { file: 'packages/react-icons-mdl2/src/components/ReceiptUndeliveredIcon.tsx', hash: '7138586237687849925' }, + { file: 'packages/react-icons-mdl2/src/components/RecentIcon.tsx', hash: '4974316867987717424' }, + { file: 'packages/react-icons-mdl2/src/components/Record2Icon.tsx', hash: '6887536974244129139' }, + { file: 'packages/react-icons-mdl2/src/components/RecruitmentManagementIcon.tsx', hash: '8365263359070724006' }, + { file: 'packages/react-icons-mdl2/src/components/RectangleShapeIcon.tsx', hash: '4970472544847083318' }, + { file: 'packages/react-icons-mdl2/src/components/RectangleShapeSolidIcon.tsx', hash: '16095443467310730950' }, + { file: 'packages/react-icons-mdl2/src/components/RectangularClippingIcon.tsx', hash: '1887047080859169150' }, + { file: 'packages/react-icons-mdl2/src/components/RecurringEventIcon.tsx', hash: '10689152471386577241' }, + { file: 'packages/react-icons-mdl2/src/components/RecurringTaskIcon.tsx', hash: '17696826538813074695' }, + { file: 'packages/react-icons-mdl2/src/components/RedEye12Icon.tsx', hash: '9382944788646394558' }, + { file: 'packages/react-icons-mdl2/src/components/RedEyeIcon.tsx', hash: '10003350948056097541' }, + { file: 'packages/react-icons-mdl2/src/components/RedeployIcon.tsx', hash: '3176549235353100481' }, + { file: 'packages/react-icons-mdl2/src/components/RedoIcon.tsx', hash: '17889709285162817999' }, + { file: 'packages/react-icons-mdl2/src/components/RefreshIcon.tsx', hash: '1584001357827257939' }, + { file: 'packages/react-icons-mdl2/src/components/RegistryEditorIcon.tsx', hash: '9576647226559022693' }, + { file: 'packages/react-icons-mdl2/src/components/RelationshipIcon.tsx', hash: '6771934588418170257' }, + { file: 'packages/react-icons-mdl2/src/components/ReleaseDefinitionIcon.tsx', hash: '4343117846936556152' }, + { file: 'packages/react-icons-mdl2/src/components/ReleaseGateCheckIcon.tsx', hash: '9227000183618148389' }, + { file: 'packages/react-icons-mdl2/src/components/ReleaseGateErrorIcon.tsx', hash: '4769541476719542996' }, + { file: 'packages/react-icons-mdl2/src/components/ReleaseGateIcon.tsx', hash: '1338124056235790076' }, + { file: 'packages/react-icons-mdl2/src/components/ReminderGroupIcon.tsx', hash: '15062653789748442733' }, + { file: 'packages/react-icons-mdl2/src/components/ReminderPersonIcon.tsx', hash: '14076556494330434589' }, + { file: 'packages/react-icons-mdl2/src/components/ReminderTimeIcon.tsx', hash: '14963898626635056410' }, + { file: 'packages/react-icons-mdl2/src/components/RemoteIcon.tsx', hash: '1119526599082208697' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveContentIcon.tsx', hash: '10095104375646589464' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveEventIcon.tsx', hash: '1770474505220109854' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveFilterIcon.tsx', hash: '14826721607759685205' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveFromShoppingListIcon.tsx', hash: '5120763859319093342' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveFromTrashIcon.tsx', hash: '16437043087880572921' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveIcon.tsx', hash: '3340436694186455162' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveLinkChainIcon.tsx', hash: '5246466319381276908' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveLinkIcon.tsx', hash: '4934873079743891604' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveLinkXIcon.tsx', hash: '13933265474745522070' }, + { file: 'packages/react-icons-mdl2/src/components/RemoveOccurrenceIcon.tsx', hash: '17596365826540530619' }, + { file: 'packages/react-icons-mdl2/src/components/RenameIcon.tsx', hash: '8779737737100377722' }, + { file: 'packages/react-icons-mdl2/src/components/RenewalCurrentIcon.tsx', hash: '17155907495199144621' }, + { file: 'packages/react-icons-mdl2/src/components/RenewalFutureIcon.tsx', hash: '18040312749706135716' }, + { file: 'packages/react-icons-mdl2/src/components/ReopenPagesIcon.tsx', hash: '4527483304029555468' }, + { file: 'packages/react-icons-mdl2/src/components/RepairIcon.tsx', hash: '6712323806304165735' }, + { file: 'packages/react-icons-mdl2/src/components/RepeatAllIcon.tsx', hash: '4738265788125894750' }, + { file: 'packages/react-icons-mdl2/src/components/RepeatHeaderRowsIcon.tsx', hash: '281035913588419001' }, + { file: 'packages/react-icons-mdl2/src/components/RepeatOneIcon.tsx', hash: '10153655218457688238' }, + { file: 'packages/react-icons-mdl2/src/components/ReplyAllAltIcon.tsx', hash: '15130769254717827934' }, + { file: 'packages/react-icons-mdl2/src/components/ReplyAllIcon.tsx', hash: '3511993612472050835' }, + { file: 'packages/react-icons-mdl2/src/components/ReplyAllMirroredIcon.tsx', hash: '14234054208958806201' }, + { file: 'packages/react-icons-mdl2/src/components/ReplyAltIcon.tsx', hash: '933229403573599355' }, + { file: 'packages/react-icons-mdl2/src/components/ReplyIcon.tsx', hash: '18009439126632338426' }, + { file: 'packages/react-icons-mdl2/src/components/ReplyMirroredIcon.tsx', hash: '4500588386003863876' }, + { file: 'packages/react-icons-mdl2/src/components/RepoIcon.tsx', hash: '7678565709884576038' }, + { file: 'packages/react-icons-mdl2/src/components/RepoSolidIcon.tsx', hash: '1226700904681954769' }, + { file: 'packages/react-icons-mdl2/src/components/ReportAddIcon.tsx', hash: '9850194945981834406' }, + { file: 'packages/react-icons-mdl2/src/components/ReportDocumentIcon.tsx', hash: '8565569295537691921' }, + { file: 'packages/react-icons-mdl2/src/components/ReportHackedIcon.tsx', hash: '1554548226913281174' }, + { file: 'packages/react-icons-mdl2/src/components/ReportLibraryIcon.tsx', hash: '7939213985314856280' }, + { file: 'packages/react-icons-mdl2/src/components/ReportLibraryMirroredIcon.tsx', hash: '15909586393315648358' }, + { file: 'packages/react-icons-mdl2/src/components/ReportLockIcon.tsx', hash: '6301977591104010011' }, + { file: 'packages/react-icons-mdl2/src/components/ReportWarningIcon.tsx', hash: '85910912891216710' }, + { file: 'packages/react-icons-mdl2/src/components/RerunIcon.tsx', hash: '15819459681624916149' }, + { file: 'packages/react-icons-mdl2/src/components/ReservationOrdersIcon.tsx', hash: '5956032173693218776' }, + { file: 'packages/react-icons-mdl2/src/components/ResetDeviceIcon.tsx', hash: '18311413279124365488' }, + { file: 'packages/react-icons-mdl2/src/components/ResetIcon.tsx', hash: '11078483500098772524' }, + { file: 'packages/react-icons-mdl2/src/components/ResponsesMenuIcon.tsx', hash: '12905327334886469706' }, + { file: 'packages/react-icons-mdl2/src/components/ReturnKeyIcon.tsx', hash: '778062027127388163' }, + { file: 'packages/react-icons-mdl2/src/components/ReturnToSessionIcon.tsx', hash: '13767458985926589178' }, + { file: 'packages/react-icons-mdl2/src/components/RevToggleKeyIcon.tsx', hash: '17268417034066985821' }, + { + file: 'packages/react-icons-mdl2/src/components/ReviewRequestMirroredSolidIcon.tsx', + hash: '4198469853792849307', + }, + { file: 'packages/react-icons-mdl2/src/components/ReviewRequestSolidIcon.tsx', hash: '6789506402724558845' }, + { file: 'packages/react-icons-mdl2/src/components/ReviewResponseSolidIcon.tsx', hash: '13746903940658559773' }, + { file: 'packages/react-icons-mdl2/src/components/ReviewSolidIcon.tsx', hash: '10405471729572573818' }, + { file: 'packages/react-icons-mdl2/src/components/RewindEightXIcon.tsx', hash: '5440996717647720617' }, + { file: 'packages/react-icons-mdl2/src/components/RewindFourXIcon.tsx', hash: '5950063720265872760' }, + { file: 'packages/react-icons-mdl2/src/components/RewindIcon.tsx', hash: '2976542701811024713' }, + { file: 'packages/react-icons-mdl2/src/components/RewindOneFiveXIcon.tsx', hash: '14597450931488491666' }, + { file: 'packages/react-icons-mdl2/src/components/RewindOneXIcon.tsx', hash: '96598580019507794' }, + { file: 'packages/react-icons-mdl2/src/components/RewindPointFiveXIcon.tsx', hash: '6816021643797619988' }, + { file: 'packages/react-icons-mdl2/src/components/RewindTwoXIcon.tsx', hash: '2597622895947953652' }, + { file: 'packages/react-icons-mdl2/src/components/RibbonIcon.tsx', hash: '12505056453875423322' }, + { file: 'packages/react-icons-mdl2/src/components/RibbonSolidIcon.tsx', hash: '4925073625398304103' }, + { file: 'packages/react-icons-mdl2/src/components/RightDoubleQuoteIcon.tsx', hash: '13228962573922254349' }, + { file: 'packages/react-icons-mdl2/src/components/RightTriangleIcon.tsx', hash: '8631049789896987274' }, + { file: 'packages/react-icons-mdl2/src/components/RingerIcon.tsx', hash: '10812818586902825629' }, + { file: 'packages/react-icons-mdl2/src/components/RingerOffIcon.tsx', hash: '15465109539414954011' }, + { file: 'packages/react-icons-mdl2/src/components/RingerRemoveIcon.tsx', hash: '12710104732587573905' }, + { file: 'packages/react-icons-mdl2/src/components/RingerSolidIcon.tsx', hash: '3455581175423440233' }, + { file: 'packages/react-icons-mdl2/src/components/RobotIcon.tsx', hash: '10547657026122777550' }, + { file: 'packages/react-icons-mdl2/src/components/RocketIcon.tsx', hash: '6980348616626812903' }, + { file: 'packages/react-icons-mdl2/src/components/RoomIcon.tsx', hash: '981533212673309040' }, + { file: 'packages/react-icons-mdl2/src/components/Rotate90ClockwiseIcon.tsx', hash: '1915276215806620306' }, + { + file: 'packages/react-icons-mdl2/src/components/Rotate90CounterClockwiseIcon.tsx', + hash: '3094633106778963512', + }, + { file: 'packages/react-icons-mdl2/src/components/RotateIcon.tsx', hash: '3085258773834909203' }, + { file: 'packages/react-icons-mdl2/src/components/RowsChildIcon.tsx', hash: '4916625815271698479' }, + { file: 'packages/react-icons-mdl2/src/components/RowsGroupIcon.tsx', hash: '38971737369893317' }, + { file: 'packages/react-icons-mdl2/src/components/RubyGemsLogoIcon.tsx', hash: '1188502604572156228' }, + { file: 'packages/react-icons-mdl2/src/components/RugbyIcon.tsx', hash: '4096135401668474396' }, + { file: 'packages/react-icons-mdl2/src/components/RunningIcon.tsx', hash: '2732066696930349364' }, + { file: 'packages/react-icons-mdl2/src/components/RustLanguageLogoIcon.tsx', hash: '16245091142252201879' }, + { file: 'packages/react-icons-mdl2/src/components/SDCardIcon.tsx', hash: '16779381262121573745' }, + { file: 'packages/react-icons-mdl2/src/components/SIPMoveIcon.tsx', hash: '1292993801675064692' }, + { file: 'packages/react-icons-mdl2/src/components/SQLAnalyticsPoolIcon.tsx', hash: '16632034557361220597' }, + { file: 'packages/react-icons-mdl2/src/components/SVNLogoIcon.tsx', hash: '14471498460908665124' }, + { file: 'packages/react-icons-mdl2/src/components/SadIcon.tsx', hash: '10257664822202938065' }, + { file: 'packages/react-icons-mdl2/src/components/SadSolidIcon.tsx', hash: '2704558455731967475' }, + { file: 'packages/react-icons-mdl2/src/components/SaveAllIcon.tsx', hash: '13407768255962734586' }, + { file: 'packages/react-icons-mdl2/src/components/SaveAndCloseIcon.tsx', hash: '8461015559875601893' }, + { file: 'packages/react-icons-mdl2/src/components/SaveAsIcon.tsx', hash: '14980452498052129489' }, + { file: 'packages/react-icons-mdl2/src/components/SaveIcon.tsx', hash: '18446627481487444184' }, + { file: 'packages/react-icons-mdl2/src/components/SaveTemplateIcon.tsx', hash: '3826771779893005564' }, + { file: 'packages/react-icons-mdl2/src/components/SaveToMobileIcon.tsx', hash: '15319590927912761851' }, + { file: 'packages/react-icons-mdl2/src/components/SavingsIcon.tsx', hash: '8290884341068876497' }, + { file: 'packages/react-icons-mdl2/src/components/ScaleUpIcon.tsx', hash: '4668475401339689006' }, + { file: 'packages/react-icons-mdl2/src/components/ScaleVolumeIcon.tsx', hash: '7057780815839547310' }, + { file: 'packages/react-icons-mdl2/src/components/ScatterChartIcon.tsx', hash: '11542201772664481956' }, + { file: 'packages/react-icons-mdl2/src/components/ScheduleEventActionIcon.tsx', hash: '1143339648876710002' }, + { file: 'packages/react-icons-mdl2/src/components/ScopeTemplateIcon.tsx', hash: '13578920299653898424' }, + { file: 'packages/react-icons-mdl2/src/components/ScreenCastIcon.tsx', hash: '13459668514947933080' }, + { file: 'packages/react-icons-mdl2/src/components/ScreenTimeIcon.tsx', hash: '10830108454758817807' }, + { file: 'packages/react-icons-mdl2/src/components/ScriptIcon.tsx', hash: '14893943413659353151' }, + { file: 'packages/react-icons-mdl2/src/components/ScrollUpDownIcon.tsx', hash: '14808730472109868911' }, + { file: 'packages/react-icons-mdl2/src/components/SearchAndAppsIcon.tsx', hash: '12029624657504546412' }, + { file: 'packages/react-icons-mdl2/src/components/SearchBookmarkIcon.tsx', hash: '4453953204921014339' }, + { file: 'packages/react-icons-mdl2/src/components/SearchCalendarIcon.tsx', hash: '14309122506085434499' }, + { file: 'packages/react-icons-mdl2/src/components/SearchDataIcon.tsx', hash: '7405319181413241696' }, + { file: 'packages/react-icons-mdl2/src/components/SearchIcon.tsx', hash: '4737552673585211755' }, + { file: 'packages/react-icons-mdl2/src/components/SearchIssueIcon.tsx', hash: '12314263131119293997' }, + { file: 'packages/react-icons-mdl2/src/components/SearchIssueMirroredIcon.tsx', hash: '3761166264222642810' }, + { file: 'packages/react-icons-mdl2/src/components/SearchNearbyIcon.tsx', hash: '1744408291289346365' }, + { file: 'packages/react-icons-mdl2/src/components/SecondaryNavIcon.tsx', hash: '15282810402009236543' }, + { file: 'packages/react-icons-mdl2/src/components/SectionIcon.tsx', hash: '14395512304549333743' }, + { file: 'packages/react-icons-mdl2/src/components/SectionsIcon.tsx', hash: '9340033941601416787' }, + { file: 'packages/react-icons-mdl2/src/components/SecurityGroupIcon.tsx', hash: '8368168062014436270' }, + { file: 'packages/react-icons-mdl2/src/components/SeeDoIcon.tsx', hash: '864327855801395180' }, + { file: 'packages/react-icons-mdl2/src/components/SelectAllIcon.tsx', hash: '2167693616497991928' }, + { file: 'packages/react-icons-mdl2/src/components/SellIcon.tsx', hash: '6706494628509969641' }, + { file: 'packages/react-icons-mdl2/src/components/SemiboldWeightIcon.tsx', hash: '12437959718188817198' }, + { file: 'packages/react-icons-mdl2/src/components/SendIcon.tsx', hash: '163473083102885524' }, + { file: 'packages/react-icons-mdl2/src/components/SendMirroredIcon.tsx', hash: '8070310300829844729' }, + { file: 'packages/react-icons-mdl2/src/components/SentimentAnalysisIcon.tsx', hash: '17008129519430365444' }, + { file: 'packages/react-icons-mdl2/src/components/SeparatorIcon.tsx', hash: '14584941974872368354' }, + { file: 'packages/react-icons-mdl2/src/components/ServerEnviromentIcon.tsx', hash: '1750681348992383196' }, + { file: 'packages/react-icons-mdl2/src/components/ServerIcon.tsx', hash: '18418596094918028176' }, + { file: 'packages/react-icons-mdl2/src/components/ServerProcessesIcon.tsx', hash: '2626435703916635677' }, + { file: 'packages/react-icons-mdl2/src/components/ServiceOffIcon.tsx', hash: '7398322484195335319' }, + { file: 'packages/react-icons-mdl2/src/components/SetActionIcon.tsx', hash: '10759412809435968518' }, + { file: 'packages/react-icons-mdl2/src/components/SettingsIcon.tsx', hash: '5137684744719239592' }, + { file: 'packages/react-icons-mdl2/src/components/ShakeDeviceIcon.tsx', hash: '1835023828739771936' }, + { file: 'packages/react-icons-mdl2/src/components/ShapeSolidIcon.tsx', hash: '17617902965165026156' }, + { file: 'packages/react-icons-mdl2/src/components/ShapesIcon.tsx', hash: '6072476137017589863' }, + { file: 'packages/react-icons-mdl2/src/components/ShareIcon.tsx', hash: '14422464686258237836' }, + { file: 'packages/react-icons-mdl2/src/components/SharedDatabaseIcon.tsx', hash: '14493329677068654487' }, + { file: 'packages/react-icons-mdl2/src/components/ShareiOSIcon.tsx', hash: '10752875289514497033' }, + { file: 'packages/react-icons-mdl2/src/components/ShirtIcon.tsx', hash: '7533321663603564465' }, + { file: 'packages/react-icons-mdl2/src/components/ShopIcon.tsx', hash: '1486282593886927215' }, + { file: 'packages/react-icons-mdl2/src/components/ShopServerIcon.tsx', hash: '13775298968890066560' }, + { file: 'packages/react-icons-mdl2/src/components/ShoppingCartIcon.tsx', hash: '6101534900506134985' }, + { file: 'packages/react-icons-mdl2/src/components/ShoppingCartSolidIcon.tsx', hash: '15153900375002037428' }, + { file: 'packages/react-icons-mdl2/src/components/ShowGridIcon.tsx', hash: '16948102533089602630' }, + { file: 'packages/react-icons-mdl2/src/components/ShowResultsIcon.tsx', hash: '4042039513768687844' }, + { file: 'packages/react-icons-mdl2/src/components/ShowResultsMirroredIcon.tsx', hash: '4971854075298613045' }, + { file: 'packages/react-icons-mdl2/src/components/ShowTimeAsIcon.tsx', hash: '10802116526854333441' }, + { file: 'packages/react-icons-mdl2/src/components/SidePanelIcon.tsx', hash: '5230482954554972066' }, + { file: 'packages/react-icons-mdl2/src/components/SidePanelMirroredIcon.tsx', hash: '13194465453275835615' }, + { file: 'packages/react-icons-mdl2/src/components/SignOutIcon.tsx', hash: '5833233050480284596' }, + { file: 'packages/react-icons-mdl2/src/components/SigninIcon.tsx', hash: '16397904076306255883' }, + { file: 'packages/react-icons-mdl2/src/components/SingleBookmarkIcon.tsx', hash: '13733961213117870249' }, + { file: 'packages/react-icons-mdl2/src/components/SingleBookmarkSolidIcon.tsx', hash: '13761241669223380881' }, + { file: 'packages/react-icons-mdl2/src/components/SingleColumnEditIcon.tsx', hash: '11657131149938670241' }, + { file: 'packages/react-icons-mdl2/src/components/SingleColumnIcon.tsx', hash: '10036499463712198961' }, + { file: 'packages/react-icons-mdl2/src/components/SiteScanIcon.tsx', hash: '15691472348770795130' }, + { file: 'packages/react-icons-mdl2/src/components/SixPointStarIcon.tsx', hash: '640268993964068647' }, + { file: 'packages/react-icons-mdl2/src/components/SizeLegacyIcon.tsx', hash: '3291225599099704555' }, + { file: 'packages/react-icons-mdl2/src/components/SkiResortsIcon.tsx', hash: '6555314944313474416' }, + { file: 'packages/react-icons-mdl2/src/components/SkipBack10Icon.tsx', hash: '17395500014457854958' }, + { file: 'packages/react-icons-mdl2/src/components/SkipForward30Icon.tsx', hash: '12807473448559234229' }, + { file: 'packages/react-icons-mdl2/src/components/SkypeArrowIcon.tsx', hash: '651592052032054337' }, + { file: 'packages/react-icons-mdl2/src/components/SkypeCheckIcon.tsx', hash: '12254126427628535507' }, + { file: 'packages/react-icons-mdl2/src/components/SkypeClockIcon.tsx', hash: '8988849702104238369' }, + { file: 'packages/react-icons-mdl2/src/components/SkypeMinusIcon.tsx', hash: '1855910970699005054' }, + { file: 'packages/react-icons-mdl2/src/components/SliderHandleSizeIcon.tsx', hash: '15024772977431511613' }, + { file: 'packages/react-icons-mdl2/src/components/SliderIcon.tsx', hash: '15128534207791862157' }, + { file: 'packages/react-icons-mdl2/src/components/SliderThumbIcon.tsx', hash: '513949632778702932' }, + { file: 'packages/react-icons-mdl2/src/components/SlideshowIcon.tsx', hash: '5071345657789319507' }, + { file: 'packages/react-icons-mdl2/src/components/SmartGlassRemoteIcon.tsx', hash: '10303634573842614020' }, + { file: 'packages/react-icons-mdl2/src/components/SnapToGridIcon.tsx', hash: '15414810379784499860' }, + { file: 'packages/react-icons-mdl2/src/components/SnoozeIcon.tsx', hash: '4519353568915020605' }, + { file: 'packages/react-icons-mdl2/src/components/SnowIcon.tsx', hash: '7951985243083773438' }, + { file: 'packages/react-icons-mdl2/src/components/SnowShowerDayIcon.tsx', hash: '9897566426056788277' }, + { file: 'packages/react-icons-mdl2/src/components/SnowShowerNightIcon.tsx', hash: '9605588432192508244' }, + { file: 'packages/react-icons-mdl2/src/components/SnowflakeIcon.tsx', hash: '11706543066981683239' }, + { file: 'packages/react-icons-mdl2/src/components/SoccerIcon.tsx', hash: '17852056075053764593' }, + { file: 'packages/react-icons-mdl2/src/components/SortDownIcon.tsx', hash: '3485561566724709043' }, + { file: 'packages/react-icons-mdl2/src/components/SortIcon.tsx', hash: '7609051582730240082' }, + { file: 'packages/react-icons-mdl2/src/components/SortLinesAscendingIcon.tsx', hash: '14233191291534846813' }, + { file: 'packages/react-icons-mdl2/src/components/SortLinesIcon.tsx', hash: '11891192657420845013' }, + { file: 'packages/react-icons-mdl2/src/components/SortUpIcon.tsx', hash: '10961926071507470926' }, + { file: 'packages/react-icons-mdl2/src/components/SourceIcon.tsx', hash: '2728937754359467002' }, + { file: 'packages/react-icons-mdl2/src/components/SpacerIcon.tsx', hash: '7050828993623671572' }, + { file: 'packages/react-icons-mdl2/src/components/SpeakersIcon.tsx', hash: '2440059018986861119' }, + { file: 'packages/react-icons-mdl2/src/components/SpecialEventIcon.tsx', hash: '16554944522040486282' }, + { file: 'packages/react-icons-mdl2/src/components/SpeedHighIcon.tsx', hash: '1870364148806547670' }, + { file: 'packages/react-icons-mdl2/src/components/SpellingIcon.tsx', hash: '5150751164294727237' }, + { file: 'packages/react-icons-mdl2/src/components/SplitIcon.tsx', hash: '5645423701987504952' }, + { file: 'packages/react-icons-mdl2/src/components/SplitObjectIcon.tsx', hash: '7696917508827033867' }, + { file: 'packages/react-icons-mdl2/src/components/SprintIcon.tsx', hash: '14509685609150224857' }, + { file: 'packages/react-icons-mdl2/src/components/SquallsIcon.tsx', hash: '13790844818296483669' }, + { file: 'packages/react-icons-mdl2/src/components/SquareShapeIcon.tsx', hash: '14194069350332456557' }, + { file: 'packages/react-icons-mdl2/src/components/SquareShapeSolidIcon.tsx', hash: '6091668410091044064' }, + { file: 'packages/react-icons-mdl2/src/components/StackColumnChartIcon.tsx', hash: '5750033709428168935' }, + { file: 'packages/react-icons-mdl2/src/components/StackIcon.tsx', hash: '2508613136410619416' }, + { file: 'packages/react-icons-mdl2/src/components/StackIndicatorIcon.tsx', hash: '17350034510560911365' }, + { file: 'packages/react-icons-mdl2/src/components/StackedBarChartIcon.tsx', hash: '2818483888288699403' }, + { file: 'packages/react-icons-mdl2/src/components/StackedColumnChart2FillIcon.tsx', hash: '6161322009720672112' }, + { file: 'packages/react-icons-mdl2/src/components/StackedColumnChart2Icon.tsx', hash: '3000388554856050094' }, + { file: 'packages/react-icons-mdl2/src/components/StackedLineChartIcon.tsx', hash: '1107216935189249093' }, + { file: 'packages/react-icons-mdl2/src/components/StarburstIcon.tsx', hash: '10780411602915789659' }, + { file: 'packages/react-icons-mdl2/src/components/StarburstSolidIcon.tsx', hash: '12448992283496117374' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleBlock2Icon.tsx', hash: '17684175596652858312' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleBlockIcon.tsx', hash: '16024578287257359985' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleCheckmarkIcon.tsx', hash: '13588980792697650161' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleErrorXIcon.tsx', hash: '8297623033959191316' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleExclamationIcon.tsx', hash: '1627855386051443053' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleInfoIcon.tsx', hash: '8350899233453241488' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleInnerIcon.tsx', hash: '12712482180441686353' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleOuterIcon.tsx', hash: '11708521576305204729' }, + { + file: 'packages/react-icons-mdl2/src/components/StatusCircleQuestionMarkIcon.tsx', + hash: '13112912123387201026', + }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleRingIcon.tsx', hash: '5409734124201155449' }, + { file: 'packages/react-icons-mdl2/src/components/StatusCircleSyncIcon.tsx', hash: '7621020559065265920' }, + { file: 'packages/react-icons-mdl2/src/components/StatusErrorFullIcon.tsx', hash: '5355917476705477943' }, + { + file: 'packages/react-icons-mdl2/src/components/StatusTriangleExclamationIcon.tsx', + hash: '4611265576263259478', + }, + { file: 'packages/react-icons-mdl2/src/components/StatusTriangleIcon.tsx', hash: '12461641900645362306' }, + { file: 'packages/react-icons-mdl2/src/components/StatusTriangleInnerIcon.tsx', hash: '15395814127262114514' }, + { file: 'packages/react-icons-mdl2/src/components/StatusTriangleOuterIcon.tsx', hash: '16298246760123913593' }, + { file: 'packages/react-icons-mdl2/src/components/StepIcon.tsx', hash: '215624494747363591' }, + { file: 'packages/react-icons-mdl2/src/components/StepInsertIcon.tsx', hash: '10138403059801626484' }, + { file: 'packages/react-icons-mdl2/src/components/StepSharedAddIcon.tsx', hash: '16344984184801001506' }, + { file: 'packages/react-icons-mdl2/src/components/StepSharedIcon.tsx', hash: '11206024398945775038' }, + { file: 'packages/react-icons-mdl2/src/components/StepSharedInsertIcon.tsx', hash: '1106979598169663081' }, + { file: 'packages/react-icons-mdl2/src/components/StockDownIcon.tsx', hash: '11921382229344091863' }, + { file: 'packages/react-icons-mdl2/src/components/StockUpIcon.tsx', hash: '1919785388202511728' }, + { file: 'packages/react-icons-mdl2/src/components/StopIcon.tsx', hash: '11185447640838295692' }, + { file: 'packages/react-icons-mdl2/src/components/StopSolidIcon.tsx', hash: '5531259320411293803' }, + { file: 'packages/react-icons-mdl2/src/components/StopwatchIcon.tsx', hash: '10549353697781477510' }, + { file: 'packages/react-icons-mdl2/src/components/StorageAcountIcon.tsx', hash: '15183665518429330152' }, + { file: 'packages/react-icons-mdl2/src/components/StorageOpticalIcon.tsx', hash: '16875020361414625799' }, + { file: 'packages/react-icons-mdl2/src/components/StoryboardIcon.tsx', hash: '10240115390494074559' }, + { file: 'packages/react-icons-mdl2/src/components/StreamingIcon.tsx', hash: '14590603862509932730' }, + { file: 'packages/react-icons-mdl2/src/components/StreamingOffIcon.tsx', hash: '18153643219661865252' }, + { file: 'packages/react-icons-mdl2/src/components/StreetIcon.tsx', hash: '15770083353298191910' }, + { + file: 'packages/react-icons-mdl2/src/components/StreetsideSplitMinimizeIcon.tsx', + hash: '16797873411790734665', + }, + { file: 'packages/react-icons-mdl2/src/components/StrikethroughIcon.tsx', hash: '17843657592475299928' }, + { file: 'packages/react-icons-mdl2/src/components/SubscribeIcon.tsx', hash: '15333737165870772998' }, + { file: 'packages/react-icons-mdl2/src/components/SubscriptIcon.tsx', hash: '4287449504425088846' }, + { file: 'packages/react-icons-mdl2/src/components/SubstitutionsInIcon.tsx', hash: '15877960703464877683' }, + { file: 'packages/react-icons-mdl2/src/components/SuitcaseIcon.tsx', hash: '8990696133843045428' }, + { file: 'packages/react-icons-mdl2/src/components/SunAddIcon.tsx', hash: '12992348011854256285' }, + { file: 'packages/react-icons-mdl2/src/components/SunQuestionMarkIcon.tsx', hash: '11469911801746140277' }, + { file: 'packages/react-icons-mdl2/src/components/SunnyIcon.tsx', hash: '15889047483369918896' }, + { file: 'packages/react-icons-mdl2/src/components/SuperscriptIcon.tsx', hash: '16578034173194686970' }, + { file: 'packages/react-icons-mdl2/src/components/SurveyQuestionsIcon.tsx', hash: '4132590427036402223' }, + { file: 'packages/react-icons-mdl2/src/components/SwiftLogoIcon.tsx', hash: '1081384326788574017' }, + { file: 'packages/react-icons-mdl2/src/components/SwitchIcon.tsx', hash: '8855533022142411121' }, + { file: 'packages/react-icons-mdl2/src/components/SwitchUserIcon.tsx', hash: '122057253456993291' }, + { file: 'packages/react-icons-mdl2/src/components/SwitcherStartEndIcon.tsx', hash: '2850956600846505452' }, + { file: 'packages/react-icons-mdl2/src/components/SyncFolderIcon.tsx', hash: '485126926028164730' }, + { file: 'packages/react-icons-mdl2/src/components/SyncIcon.tsx', hash: '16599196910082932774' }, + { file: 'packages/react-icons-mdl2/src/components/SyncOccurenceIcon.tsx', hash: '17681248839885934426' }, + { file: 'packages/react-icons-mdl2/src/components/SyncStatusIcon.tsx', hash: '8831246306662635170' }, + { file: 'packages/react-icons-mdl2/src/components/SyncStatusSolidIcon.tsx', hash: '8739424996180616133' }, + { file: 'packages/react-icons-mdl2/src/components/SyncToPCIcon.tsx', hash: '15438372302526567778' }, + { file: 'packages/react-icons-mdl2/src/components/SystemIcon.tsx', hash: '2334158159692651821' }, + { file: 'packages/react-icons-mdl2/src/components/TVMonitorIcon.tsx', hash: '7695717662123278557' }, + { file: 'packages/react-icons-mdl2/src/components/TVMonitorSelectedIcon.tsx', hash: '18154342861238382312' }, + { file: 'packages/react-icons-mdl2/src/components/TabCenterIcon.tsx', hash: '16365803943440280956' }, + { file: 'packages/react-icons-mdl2/src/components/TabIcon.tsx', hash: '11709620884374064982' }, + { file: 'packages/react-icons-mdl2/src/components/TabOneColumnIcon.tsx', hash: '662354409894200120' }, + { file: 'packages/react-icons-mdl2/src/components/TabThreeColumnIcon.tsx', hash: '4409269179587711443' }, + { file: 'packages/react-icons-mdl2/src/components/TabTwoColumnIcon.tsx', hash: '12412377849340051037' }, + { file: 'packages/react-icons-mdl2/src/components/TableBrandedColumnIcon.tsx', hash: '16290784899039879524' }, + { file: 'packages/react-icons-mdl2/src/components/TableBrandedRowIcon.tsx', hash: '13986843412325957834' }, + { file: 'packages/react-icons-mdl2/src/components/TableComputedIcon.tsx', hash: '3949507090249516656' }, + { file: 'packages/react-icons-mdl2/src/components/TableFirstColumnIcon.tsx', hash: '1884071651585108751' }, + { file: 'packages/react-icons-mdl2/src/components/TableGroupIcon.tsx', hash: '21416960461031223' }, + { file: 'packages/react-icons-mdl2/src/components/TableHeaderRowIcon.tsx', hash: '10415755673543766256' }, + { file: 'packages/react-icons-mdl2/src/components/TableIcon.tsx', hash: '7979377382125911255' }, + { file: 'packages/react-icons-mdl2/src/components/TableLastColumnIcon.tsx', hash: '10783688531401041457' }, + { file: 'packages/react-icons-mdl2/src/components/TableLinkIcon.tsx', hash: '5973576160447014475' }, + { file: 'packages/react-icons-mdl2/src/components/TableTotalRowIcon.tsx', hash: '4092767187779916452' }, + { file: 'packages/react-icons-mdl2/src/components/TabletIcon.tsx', hash: '9899473991876600081' }, + { file: 'packages/react-icons-mdl2/src/components/TabletModeIcon.tsx', hash: '13921024654679220987' }, + { file: 'packages/react-icons-mdl2/src/components/TabletSelectedIcon.tsx', hash: '6712523699481882152' }, + { file: 'packages/react-icons-mdl2/src/components/TagGroupIcon.tsx', hash: '17594586503679999232' }, + { file: 'packages/react-icons-mdl2/src/components/TagIcon.tsx', hash: '13685325487298013991' }, + { file: 'packages/react-icons-mdl2/src/components/TagSolidIcon.tsx', hash: '2495836356536292545' }, + { file: 'packages/react-icons-mdl2/src/components/TagUnknown12Icon.tsx', hash: '2598473569960929343' }, + { file: 'packages/react-icons-mdl2/src/components/TagUnknown12MirrorIcon.tsx', hash: '5777145997851759824' }, + { file: 'packages/react-icons-mdl2/src/components/TagUnknownIcon.tsx', hash: '14497305695419693170' }, + { file: 'packages/react-icons-mdl2/src/components/TagUnknownMirrorIcon.tsx', hash: '17711266976664051055' }, + { file: 'packages/react-icons-mdl2/src/components/TaskGroupIcon.tsx', hash: '11785630834522752706' }, + { file: 'packages/react-icons-mdl2/src/components/TaskGroupMirroredIcon.tsx', hash: '4676750509033243593' }, + { file: 'packages/react-icons-mdl2/src/components/TaskListIcon.tsx', hash: '5954157389475038868' }, + { file: 'packages/react-icons-mdl2/src/components/TaskManagerIcon.tsx', hash: '18017696453288394664' }, + { file: 'packages/react-icons-mdl2/src/components/TaskManagerMirroredIcon.tsx', hash: '17364828386753924183' }, + { file: 'packages/react-icons-mdl2/src/components/TaskSolidIcon.tsx', hash: '16676768704629323954' }, + { file: 'packages/react-icons-mdl2/src/components/TaskboardIcon.tsx', hash: '1465072882454830290' }, + { file: 'packages/react-icons-mdl2/src/components/TaxiIcon.tsx', hash: '9939668690623139701' }, + { file: 'packages/react-icons-mdl2/src/components/TeamFavoriteIcon.tsx', hash: '8834906264133174991' }, + { file: 'packages/react-icons-mdl2/src/components/TeamworkIcon.tsx', hash: '1385894294154520673' }, + { file: 'packages/react-icons-mdl2/src/components/TeethIcon.tsx', hash: '1039096284028888661' }, + { file: 'packages/react-icons-mdl2/src/components/TelemarketerIcon.tsx', hash: '6202991518436709224' }, + { file: 'packages/react-icons-mdl2/src/components/TemporaryUserIcon.tsx', hash: '2390283079187540413' }, + { file: 'packages/react-icons-mdl2/src/components/TennisIcon.tsx', hash: '9939280365510716542' }, + { file: 'packages/react-icons-mdl2/src/components/TestAutoSolidIcon.tsx', hash: '17552513329626189757' }, + { file: 'packages/react-icons-mdl2/src/components/TestBeakerIcon.tsx', hash: '5724817032542410021' }, + { file: 'packages/react-icons-mdl2/src/components/TestBeakerSolidIcon.tsx', hash: '16039530830701812924' }, + { file: 'packages/react-icons-mdl2/src/components/TestCaseIcon.tsx', hash: '3361764228168393807' }, + { file: 'packages/react-icons-mdl2/src/components/TestExploreSolidIcon.tsx', hash: '15688596397733369335' }, + { file: 'packages/react-icons-mdl2/src/components/TestImpactSolidIcon.tsx', hash: '4838804235311193529' }, + { file: 'packages/react-icons-mdl2/src/components/TestParameterIcon.tsx', hash: '13233135773568991009' }, + { file: 'packages/react-icons-mdl2/src/components/TestPlanIcon.tsx', hash: '5840777192923539247' }, + { file: 'packages/react-icons-mdl2/src/components/TestStepIcon.tsx', hash: '2539868854009493894' }, + { file: 'packages/react-icons-mdl2/src/components/TestSuiteIcon.tsx', hash: '11612852314150027326' }, + { file: 'packages/react-icons-mdl2/src/components/TestUserSolidIcon.tsx', hash: '17021241125114305919' }, + { file: 'packages/react-icons-mdl2/src/components/TextAlignBottomIcon.tsx', hash: '15595304680101858004' }, + { file: 'packages/react-icons-mdl2/src/components/TextAlignMiddleIcon.tsx', hash: '13088597654272774899' }, + { file: 'packages/react-icons-mdl2/src/components/TextAlignTopIcon.tsx', hash: '12409789330926784540' }, + { file: 'packages/react-icons-mdl2/src/components/TextBoxIcon.tsx', hash: '12640038380248915976' }, + { file: 'packages/react-icons-mdl2/src/components/TextCalloutIcon.tsx', hash: '8768374329086488041' }, + { file: 'packages/react-icons-mdl2/src/components/TextDocumentEditIcon.tsx', hash: '14033498016627891288' }, + { file: 'packages/react-icons-mdl2/src/components/TextDocumentIcon.tsx', hash: '15681509163935654252' }, + { file: 'packages/react-icons-mdl2/src/components/TextDocumentSettingsIcon.tsx', hash: '243054128054786567' }, + { file: 'packages/react-icons-mdl2/src/components/TextDocumentSharedIcon.tsx', hash: '10056072914160791288' }, + { file: 'packages/react-icons-mdl2/src/components/TextFieldIcon.tsx', hash: '16554991455092500846' }, + { file: 'packages/react-icons-mdl2/src/components/TextOverflowIcon.tsx', hash: '14266834217281845925' }, + { file: 'packages/react-icons-mdl2/src/components/TextParagraphOptionIcon.tsx', hash: '10524706672158436483' }, + { file: 'packages/react-icons-mdl2/src/components/TextRecognitionIcon.tsx', hash: '5475597562621601112' }, + { file: 'packages/react-icons-mdl2/src/components/TextRotate270DegreesIcon.tsx', hash: '3868367543183284951' }, + { file: 'packages/react-icons-mdl2/src/components/TextRotate90DegreesIcon.tsx', hash: '7709931387604465793' }, + { file: 'packages/react-icons-mdl2/src/components/TextRotateHorizontalIcon.tsx', hash: '9332426960722168438' }, + { file: 'packages/react-icons-mdl2/src/components/TextRotationIcon.tsx', hash: '5024976556154126592' }, + { file: 'packages/react-icons-mdl2/src/components/ThisPCIcon.tsx', hash: '4762656769096430490' }, + { file: 'packages/react-icons-mdl2/src/components/ThreeQuarterCircleIcon.tsx', hash: '14952954392359190791' }, + { file: 'packages/react-icons-mdl2/src/components/ThumbnailViewIcon.tsx', hash: '360297995023738561' }, + { file: 'packages/react-icons-mdl2/src/components/ThumbnailViewMirroredIcon.tsx', hash: '17846539039875697634' }, + { file: 'packages/react-icons-mdl2/src/components/ThunderstormsIcon.tsx', hash: '9106945935558199340' }, + { file: 'packages/react-icons-mdl2/src/components/TicketIcon.tsx', hash: '13190640847014651075' }, + { file: 'packages/react-icons-mdl2/src/components/Tiles2Icon.tsx', hash: '17203248268860884999' }, + { file: 'packages/react-icons-mdl2/src/components/TilesIcon.tsx', hash: '2672010188457684975' }, + { file: 'packages/react-icons-mdl2/src/components/TimeEntryIcon.tsx', hash: '12031904183135700464' }, + { file: 'packages/react-icons-mdl2/src/components/TimePickerIcon.tsx', hash: '8958829646877776263' }, + { file: 'packages/react-icons-mdl2/src/components/TimeSheetIcon.tsx', hash: '15539474987423139369' }, + { file: 'packages/react-icons-mdl2/src/components/TimelineDeliveryIcon.tsx', hash: '514264487208080729' }, + { file: 'packages/react-icons-mdl2/src/components/TimelineIcon.tsx', hash: '2940680805171877867' }, + { file: 'packages/react-icons-mdl2/src/components/TimelineMatrixViewIcon.tsx', hash: '5163027931014784165' }, + { file: 'packages/react-icons-mdl2/src/components/TimelineProgressIcon.tsx', hash: '12837504728733867949' }, + { file: 'packages/react-icons-mdl2/src/components/TimerIcon.tsx', hash: '10813898219243920306' }, + { file: 'packages/react-icons-mdl2/src/components/ToggleBorderIcon.tsx', hash: '14032634263947972089' }, + { file: 'packages/react-icons-mdl2/src/components/ToggleFilledIcon.tsx', hash: '15135642495766784714' }, + { file: 'packages/react-icons-mdl2/src/components/ToggleLeftIcon.tsx', hash: '2486283043481064334' }, + { file: 'packages/react-icons-mdl2/src/components/ToggleRightIcon.tsx', hash: '10855279613245750547' }, + { file: 'packages/react-icons-mdl2/src/components/ToggleThumbIcon.tsx', hash: '2749474144310917420' }, + { file: 'packages/react-icons-mdl2/src/components/TollIcon.tsx', hash: '3314679699864345856' }, + { file: 'packages/react-icons-mdl2/src/components/ToolboxIcon.tsx', hash: '4839246670380035611' }, + { file: 'packages/react-icons-mdl2/src/components/TotalIcon.tsx', hash: '4185728115118303116' }, + { file: 'packages/react-icons-mdl2/src/components/TouchIcon.tsx', hash: '10861349985175317319' }, + { file: 'packages/react-icons-mdl2/src/components/TouchPointerIcon.tsx', hash: '9852648877114095369' }, + { file: 'packages/react-icons-mdl2/src/components/TrackersIcon.tsx', hash: '13770614269976701744' }, + { file: 'packages/react-icons-mdl2/src/components/TrackersMirroredIcon.tsx', hash: '1805565580387664998' }, + { file: 'packages/react-icons-mdl2/src/components/TrainIcon.tsx', hash: '15721639617417914895' }, + { file: 'packages/react-icons-mdl2/src/components/TrainSolidIcon.tsx', hash: '976821243448214259' }, + { file: 'packages/react-icons-mdl2/src/components/TransferCallIcon.tsx', hash: '16048110274897933973' }, + { file: 'packages/react-icons-mdl2/src/components/TransitionEffectIcon.tsx', hash: '16289364194199249024' }, + { file: 'packages/react-icons-mdl2/src/components/TransitionIcon.tsx', hash: '2619796789854161438' }, + { file: 'packages/react-icons-mdl2/src/components/TransitionPopIcon.tsx', hash: '10155185082051010804' }, + { file: 'packages/react-icons-mdl2/src/components/TransitionPushIcon.tsx', hash: '16646538414614373831' }, + { file: 'packages/react-icons-mdl2/src/components/TranslateIcon.tsx', hash: '10526960969593700992' }, + { file: 'packages/react-icons-mdl2/src/components/Trending12Icon.tsx', hash: '2106873409364248506' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleDown12Icon.tsx', hash: '171981401139167507' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleLeft12Icon.tsx', hash: '16648485182410559664' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleRight12Icon.tsx', hash: '5798641180598467117' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleShapeIcon.tsx', hash: '17092372385959061650' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleShapeSolidIcon.tsx', hash: '688773254519750686' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleSolidDown12Icon.tsx', hash: '12573133610066222696' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleSolidIcon.tsx', hash: '6797382738731967916' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleSolidLeft12Icon.tsx', hash: '10900009224046619716' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleSolidRight12Icon.tsx', hash: '6567523118415963780' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleSolidUp12Icon.tsx', hash: '5329892573400991169' }, + { file: 'packages/react-icons-mdl2/src/components/TriangleUp12Icon.tsx', hash: '5945898828306457746' }, + { file: 'packages/react-icons-mdl2/src/components/TriggerApprovalIcon.tsx', hash: '10529063875031607672' }, + { file: 'packages/react-icons-mdl2/src/components/TriggerAutoIcon.tsx', hash: '11476050854862480564' }, + { file: 'packages/react-icons-mdl2/src/components/TriggerUserIcon.tsx', hash: '4184658008236004234' }, + { file: 'packages/react-icons-mdl2/src/components/TrimEndIcon.tsx', hash: '4965514454211828622' }, + { file: 'packages/react-icons-mdl2/src/components/TrimIcon.tsx', hash: '4807443960521026868' }, + { file: 'packages/react-icons-mdl2/src/components/TrimStartIcon.tsx', hash: '17844194230036320959' }, + { file: 'packages/react-icons-mdl2/src/components/TripleColumnEditIcon.tsx', hash: '12058208683152277294' }, + { file: 'packages/react-icons-mdl2/src/components/TripleColumnIcon.tsx', hash: '13361733788665401723' }, + { file: 'packages/react-icons-mdl2/src/components/TripleColumnWideIcon.tsx', hash: '15774745564128248294' }, + { file: 'packages/react-icons-mdl2/src/components/Trophy2Icon.tsx', hash: '3673672684917614623' }, + { file: 'packages/react-icons-mdl2/src/components/Trophy2SolidIcon.tsx', hash: '12793846497707369710' }, + { file: 'packages/react-icons-mdl2/src/components/TrophyIcon.tsx', hash: '6385230499807289860' }, + { file: 'packages/react-icons-mdl2/src/components/TurnRightIcon.tsx', hash: '15099009340328704249' }, + { file: 'packages/react-icons-mdl2/src/components/TwelvePointStarIcon.tsx', hash: '2615911893080009096' }, + { file: 'packages/react-icons-mdl2/src/components/TwitterLogoIcon.tsx', hash: '14191461990643700502' }, + { file: 'packages/react-icons-mdl2/src/components/URLBlockIcon.tsx', hash: '1925379512545042518' }, + { file: 'packages/react-icons-mdl2/src/components/USBIcon.tsx', hash: '15098287371858184580' }, + { file: 'packages/react-icons-mdl2/src/components/UmbrellaIcon.tsx', hash: '9137237141480703628' }, + { file: 'packages/react-icons-mdl2/src/components/UnSetColorIcon.tsx', hash: '4950692113525656602' }, + { file: 'packages/react-icons-mdl2/src/components/UnderlineIcon.tsx', hash: '14365306570852551521' }, + { file: 'packages/react-icons-mdl2/src/components/UndoIcon.tsx', hash: '5047100941423645842' }, + { file: 'packages/react-icons-mdl2/src/components/Uneditable2Icon.tsx', hash: '9311493851993525006' }, + { file: 'packages/react-icons-mdl2/src/components/Uneditable2MirroredIcon.tsx', hash: '3871595863416323192' }, + { file: 'packages/react-icons-mdl2/src/components/UneditableIcon.tsx', hash: '6404617348036391786' }, + { file: 'packages/react-icons-mdl2/src/components/UneditableMirroredIcon.tsx', hash: '8726101644786177988' }, + { file: 'packages/react-icons-mdl2/src/components/UneditableSolid12Icon.tsx', hash: '7635003590489640246' }, + { + file: 'packages/react-icons-mdl2/src/components/UneditableSolidMirrored12Icon.tsx', + hash: '9921092478533934651', + }, + { file: 'packages/react-icons-mdl2/src/components/UnfavoriteIcon.tsx', hash: '17681077919815737489' }, + { file: 'packages/react-icons-mdl2/src/components/UngroupObjectIcon.tsx', hash: '14882233682302492470' }, + { file: 'packages/react-icons-mdl2/src/components/UnknownCallIcon.tsx', hash: '5029389003388271009' }, + { file: 'packages/react-icons-mdl2/src/components/UnknownIcon.tsx', hash: '1735921039361749128' }, + { file: 'packages/react-icons-mdl2/src/components/UnknownMirroredIcon.tsx', hash: '9296861312750383545' }, + { file: 'packages/react-icons-mdl2/src/components/UnknownMirroredSolidIcon.tsx', hash: '2077397235634052500' }, + { file: 'packages/react-icons-mdl2/src/components/UnknownSolidIcon.tsx', hash: '12375948387710609319' }, + { file: 'packages/react-icons-mdl2/src/components/UnlockIcon.tsx', hash: '3440807599248599373' }, + { file: 'packages/react-icons-mdl2/src/components/UnlockSolidIcon.tsx', hash: '6894086335639184342' }, + { file: 'packages/react-icons-mdl2/src/components/UnpinIcon.tsx', hash: '7061079865495252339' }, + { file: 'packages/react-icons-mdl2/src/components/UnpublishContentIcon.tsx', hash: '8092480453385525234' }, + { file: 'packages/react-icons-mdl2/src/components/UnstackSelectedIcon.tsx', hash: '12346661599890970553' }, + { file: 'packages/react-icons-mdl2/src/components/UnsubscribeIcon.tsx', hash: '3774803546099902552' }, + { file: 'packages/react-icons-mdl2/src/components/UnsyncFolderIcon.tsx', hash: '15440579740730076712' }, + { file: 'packages/react-icons-mdl2/src/components/UnsyncOccurenceIcon.tsx', hash: '1425590890607565353' }, + { file: 'packages/react-icons-mdl2/src/components/UntagIcon.tsx', hash: '8416428745272919438' }, + { file: 'packages/react-icons-mdl2/src/components/UpIcon.tsx', hash: '1277400271266174921' }, + { file: 'packages/react-icons-mdl2/src/components/UpdateRestoreIcon.tsx', hash: '549519074071086844' }, + { file: 'packages/react-icons-mdl2/src/components/UpgradeAnalysisIcon.tsx', hash: '16560770761218336942' }, + { file: 'packages/react-icons-mdl2/src/components/UploadIcon.tsx', hash: '11995652079479661348' }, + { file: 'packages/react-icons-mdl2/src/components/UserEventIcon.tsx', hash: '3769311157832514887' }, + { file: 'packages/react-icons-mdl2/src/components/UserFollowedIcon.tsx', hash: '5966706362599236619' }, + { file: 'packages/react-icons-mdl2/src/components/UserGaugeIcon.tsx', hash: '18432081529086621043' }, + { file: 'packages/react-icons-mdl2/src/components/UserOptionalIcon.tsx', hash: '5662138790735657746' }, + { file: 'packages/react-icons-mdl2/src/components/UserPauseIcon.tsx', hash: '6151704219333905884' }, + { file: 'packages/react-icons-mdl2/src/components/UserRemoveIcon.tsx', hash: '11588591275980118322' }, + { file: 'packages/react-icons-mdl2/src/components/UserSyncIcon.tsx', hash: '17310207728181411047' }, + { file: 'packages/react-icons-mdl2/src/components/UserWarningIcon.tsx', hash: '14669492216490763227' }, + { file: 'packages/react-icons-mdl2/src/components/VBIcon.tsx', hash: '9829828778039629487' }, + { file: 'packages/react-icons-mdl2/src/components/VacationIcon.tsx', hash: '8022110324115674063' }, + { file: 'packages/react-icons-mdl2/src/components/VaccinationIcon.tsx', hash: '1178726231502318145' }, + { file: 'packages/react-icons-mdl2/src/components/Variable2Icon.tsx', hash: '755960883817735294' }, + { file: 'packages/react-icons-mdl2/src/components/VariableGroupIcon.tsx', hash: '8436465373430061460' }, + { file: 'packages/react-icons-mdl2/src/components/VariableIcon.tsx', hash: '2609031573367013787' }, + { file: 'packages/react-icons-mdl2/src/components/VennDiagramIcon.tsx', hash: '6647072432606819893' }, + { file: 'packages/react-icons-mdl2/src/components/VerifiedBrandIcon.tsx', hash: '505586560668839378' }, + { file: 'packages/react-icons-mdl2/src/components/VerifiedBrandSolidIcon.tsx', hash: '8937652609160012839' }, + { file: 'packages/react-icons-mdl2/src/components/VersionControlPushIcon.tsx', hash: '1300042390675965738' }, + { + file: 'packages/react-icons-mdl2/src/components/VerticalDistributeCenterIcon.tsx', + hash: '13794147682172231350', + }, + { file: 'packages/react-icons-mdl2/src/components/Video360GenericIcon.tsx', hash: '17226930219280265807' }, + { file: 'packages/react-icons-mdl2/src/components/VideoIcon.tsx', hash: '12278496161795627048' }, + { file: 'packages/react-icons-mdl2/src/components/VideoLightOffIcon.tsx', hash: '8856116492274615799' }, + { file: 'packages/react-icons-mdl2/src/components/VideoOff2Icon.tsx', hash: '6271894715959040359' }, + { file: 'packages/react-icons-mdl2/src/components/VideoOffIcon.tsx', hash: '10226797869303350920' }, + { file: 'packages/react-icons-mdl2/src/components/VideoSearchIcon.tsx', hash: '7205577982062949833' }, + { file: 'packages/react-icons-mdl2/src/components/VideoSolidIcon.tsx', hash: '8537354773411979077' }, + { file: 'packages/react-icons-mdl2/src/components/ViewAll2Icon.tsx', hash: '11868068469109024683' }, + { file: 'packages/react-icons-mdl2/src/components/ViewAllIcon.tsx', hash: '16818098509911006179' }, + { file: 'packages/react-icons-mdl2/src/components/ViewDashboardIcon.tsx', hash: '17093070343339581297' }, + { file: 'packages/react-icons-mdl2/src/components/ViewIcon.tsx', hash: '3174608005014370504' }, + { file: 'packages/react-icons-mdl2/src/components/ViewInARIcon.tsx', hash: '2288265271718830259' }, + { file: 'packages/react-icons-mdl2/src/components/ViewListGroupIcon.tsx', hash: '16872704757062896557' }, + { file: 'packages/react-icons-mdl2/src/components/ViewListIcon.tsx', hash: '13188750737974225743' }, + { file: 'packages/react-icons-mdl2/src/components/ViewListTreeIcon.tsx', hash: '18233067532528468437' }, + { file: 'packages/react-icons-mdl2/src/components/ViewOriginalIcon.tsx', hash: '3170951622338842638' }, + { file: 'packages/react-icons-mdl2/src/components/VisuallyImpairedIcon.tsx', hash: '4029080719537829282' }, + { file: 'packages/react-icons-mdl2/src/components/VisualsFolderIcon.tsx', hash: '15342863668915656662' }, + { file: 'packages/react-icons-mdl2/src/components/VisualsStoreIcon.tsx', hash: '3301177936267219314' }, + { file: 'packages/react-icons-mdl2/src/components/VivaEngageIcon.tsx', hash: '342057237145551020' }, + { file: 'packages/react-icons-mdl2/src/components/VoicemailForwardIcon.tsx', hash: '11252099681565531834' }, + { file: 'packages/react-icons-mdl2/src/components/VoicemailIRMIcon.tsx', hash: '5784027932985602268' }, + { file: 'packages/react-icons-mdl2/src/components/VoicemailReplyIcon.tsx', hash: '2670152969925082360' }, + { file: 'packages/react-icons-mdl2/src/components/Volume0Icon.tsx', hash: '14711966802494310008' }, + { file: 'packages/react-icons-mdl2/src/components/Volume1Icon.tsx', hash: '8628403532537549482' }, + { file: 'packages/react-icons-mdl2/src/components/Volume2Icon.tsx', hash: '10947955841676995522' }, + { file: 'packages/react-icons-mdl2/src/components/Volume3Icon.tsx', hash: '6255732894877839840' }, + { file: 'packages/react-icons-mdl2/src/components/VolumeDisabledIcon.tsx', hash: '15274266247179145671' }, + { file: 'packages/react-icons-mdl2/src/components/WaffleIcon.tsx', hash: '2950068325310779157' }, + { file: 'packages/react-icons-mdl2/src/components/WaitlistConfirmIcon.tsx', hash: '16350565265423816673' }, + { file: 'packages/react-icons-mdl2/src/components/WaitlistConfirmMirroredIcon.tsx', hash: '3192900391078337040' }, + { file: 'packages/react-icons-mdl2/src/components/Warning12Icon.tsx', hash: '10414927247423762544' }, + { file: 'packages/react-icons-mdl2/src/components/WarningIcon.tsx', hash: '11558870242564616294' }, + { file: 'packages/react-icons-mdl2/src/components/WarningSolidIcon.tsx', hash: '4806809002654438437' }, + { file: 'packages/react-icons-mdl2/src/components/WavingHandIcon.tsx', hash: '5328126403369927808' }, + { file: 'packages/react-icons-mdl2/src/components/WebComponentsIcon.tsx', hash: '6368115053369553368' }, + { file: 'packages/react-icons-mdl2/src/components/WebEnvironmentIcon.tsx', hash: '381704530527454706' }, + { file: 'packages/react-icons-mdl2/src/components/WebPublishIcon.tsx', hash: '14472183168093975238' }, + { file: 'packages/react-icons-mdl2/src/components/WebTemplateIcon.tsx', hash: '7673288651544450874' }, + { file: 'packages/react-icons-mdl2/src/components/Webcam2Icon.tsx', hash: '11408324897112205977' }, + { file: 'packages/react-icons-mdl2/src/components/Webcam2OffIcon.tsx', hash: '11112019980159583410' }, + { file: 'packages/react-icons-mdl2/src/components/WebsiteIcon.tsx', hash: '109363059098112457' }, + { file: 'packages/react-icons-mdl2/src/components/WeightsIcon.tsx', hash: '9131258169715892532' }, + { file: 'packages/react-icons-mdl2/src/components/WheelchairIcon.tsx', hash: '16945724465006768625' }, + { file: 'packages/react-icons-mdl2/src/components/WifiEthernetIcon.tsx', hash: '5960548132930795026' }, + { file: 'packages/react-icons-mdl2/src/components/WifiWarning4Icon.tsx', hash: '7927677858534751771' }, + { file: 'packages/react-icons-mdl2/src/components/WindDirectionIcon.tsx', hash: '9221883227530736535' }, + { file: 'packages/react-icons-mdl2/src/components/WindowEditIcon.tsx', hash: '4076965312930675053' }, + { file: 'packages/react-icons-mdl2/src/components/WinesIcon.tsx', hash: '1465806768413311133' }, + { file: 'packages/react-icons-mdl2/src/components/WipePhoneIcon.tsx', hash: '12670699704701586796' }, + { file: 'packages/react-icons-mdl2/src/components/WorkFlowIcon.tsx', hash: '4175996887759720125' }, + { file: 'packages/react-icons-mdl2/src/components/WorkIcon.tsx', hash: '7487163304911749789' }, + { file: 'packages/react-icons-mdl2/src/components/WorkItemAlertIcon.tsx', hash: '18002172167790808215' }, + { file: 'packages/react-icons-mdl2/src/components/WorkItemBarIcon.tsx', hash: '10251941423352191173' }, + { file: 'packages/react-icons-mdl2/src/components/WorkItemBarSolidIcon.tsx', hash: '8361787609476204851' }, + { file: 'packages/react-icons-mdl2/src/components/WorkItemBugIcon.tsx', hash: '16243598830165268723' }, + { file: 'packages/react-icons-mdl2/src/components/WorkItemIcon.tsx', hash: '7038981634753058738' }, + { file: 'packages/react-icons-mdl2/src/components/WorkforceManagementIcon.tsx', hash: '358477104320586984' }, + { file: 'packages/react-icons-mdl2/src/components/WorldClockIcon.tsx', hash: '3089081544197638278' }, + { file: 'packages/react-icons-mdl2/src/components/WorldIcon.tsx', hash: '649726162345103873' }, + { file: 'packages/react-icons-mdl2/src/components/XamarinLogoIcon.tsx', hash: '14047036378370404231' }, + { file: 'packages/react-icons-mdl2/src/components/XboxControllerIcon.tsx', hash: '9369385320898542725' }, + { file: 'packages/react-icons-mdl2/src/components/ZipFolderIcon.tsx', hash: '9100929772659195530' }, + { file: 'packages/react-icons-mdl2/src/components/ZoomIcon.tsx', hash: '5661510962276466081' }, + { file: 'packages/react-icons-mdl2/src/components/ZoomInIcon.tsx', hash: '6270376369614251228' }, + { file: 'packages/react-icons-mdl2/src/components/ZoomOutIcon.tsx', hash: '3454829544366928700' }, + { file: 'packages/react-icons-mdl2/src/components/ZoomToFitIcon.tsx', hash: '3268567365489041315' }, + { file: 'packages/react-icons-mdl2/src/components/eDiscoveryIcon.tsx', hash: '7159112877709818566' }, + { file: 'packages/react-icons-mdl2/src/components/iOSAppStoreLogoIcon.tsx', hash: '7627089926395288748' }, + { file: 'packages/react-icons-mdl2/src/components.test.tsx', hash: '6663979517663972277' }, + { file: 'packages/react-icons-mdl2/src/index.ts', hash: '10045948948610575782' }, + { file: 'packages/react-icons-mdl2/src/utils/SvgIcon.scss', hash: '17239050675246297646' }, + { file: 'packages/react-icons-mdl2/src/utils/SvgIcon.types.ts', hash: '6367189759970436552' }, + { file: 'packages/react-icons-mdl2/src/utils/createSvgIcon.test.tsx', hash: '2001542643760954125' }, + { file: 'packages/react-icons-mdl2/src/utils/createSvgIcon.ts', hash: '11651772376542528354' }, + { file: 'packages/react-icons-mdl2/src/utils/types.ts', hash: '14103007282502894067' }, + { file: 'packages/react-icons-mdl2/src/version.ts', hash: '1883088086173265942' }, + { file: 'packages/react-icons-mdl2/tsconfig.json', hash: '10956001999050876945' }, + { file: 'packages/react-icons-mdl2/webpack.config.js', hash: '3997384588979449621' }, + ], + '@fluentui/react-search-preview': [ + { file: 'packages/react-components/react-search-preview/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-search-preview/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-search-preview/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-search-preview/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-search-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-search-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-search-preview/CHANGELOG.json', hash: '4422059300176138933' }, + { file: 'packages/react-components/react-search-preview/CHANGELOG.md', hash: '4671157039965199214' }, + { file: 'packages/react-components/react-search-preview/LICENSE', hash: '10208143628444227491' }, + { file: 'packages/react-components/react-search-preview/README.md', hash: '15299480567783003405' }, + { file: 'packages/react-components/react-search-preview/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-search-preview/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-search-preview/docs/MIGRATION.md', hash: '2865705533281265171' }, + { file: 'packages/react-components/react-search-preview/docs/Spec.md', hash: '18435160378759031464' }, + { + file: 'packages/react-components/react-search-preview/etc/react-search-preview.api.md', + hash: '2996165423955728843', + }, + { file: 'packages/react-components/react-search-preview/jest.config.js', hash: '2413236386355797934' }, + { file: 'packages/react-components/react-search-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-search-preview/package.json', + hash: '16063317431784896488', + deps: [ + 'npm:@fluentui/react-icons', + '@fluentui/react-input', + '@fluentui/react-jsx-runtime', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-search-preview/project.json', hash: '6245122481400325168' }, + { file: 'packages/react-components/react-search-preview/src/SearchBox.ts', hash: '15808954179607126400' }, + { + file: 'packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.test.tsx', + hash: '11990646386900636944', + }, + { + file: 'packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.tsx', + hash: '2638780876376384531', + }, + { + file: 'packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.types.ts', + hash: '10944253874763523961', + }, + { + file: 'packages/react-components/react-search-preview/src/components/SearchBox/__snapshots__/SearchBox.test.tsx.snap', + hash: '6499561349979786200', + }, + { + file: 'packages/react-components/react-search-preview/src/components/SearchBox/index.ts', + hash: '8943459759748143116', + }, + { + file: 'packages/react-components/react-search-preview/src/components/SearchBox/renderSearchBox.tsx', + hash: '12848093918605820140', + }, + { + file: 'packages/react-components/react-search-preview/src/components/SearchBox/useSearchBox.tsx', + hash: '1203285435378804120', + }, + { + file: 'packages/react-components/react-search-preview/src/components/SearchBox/useSearchBoxStyles.styles.ts', + hash: '274536282407907923', + }, + { file: 'packages/react-components/react-search-preview/src/index.ts', hash: '10703430971917101752' }, + { + file: 'packages/react-components/react-search-preview/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxAppearance.stories.tsx', + hash: '479309571099364156', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxBestPractices.md', + hash: '18322882289744529866', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxContentBeforeAfter.stories.tsx', + hash: '17369466639462581414', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxControlled.stories.tsx', + hash: '17397495220176592807', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDefault.stories.tsx', + hash: '3984914430258979310', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDescription.md', + hash: '11379297500412622701', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDisabled.stories.tsx', + hash: '5166324980640455577', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxPlaceholder.stories.tsx', + hash: '8194263709905614805', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxSize.stories.tsx', + hash: '4334577727586338959', + }, + { + file: 'packages/react-components/react-search-preview/stories/SearchBox/index.stories.tsx', + hash: '14993770248065248151', + }, + { file: 'packages/react-components/react-search-preview/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-search-preview/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-search-preview/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-label': [ + { file: 'packages/react-components/react-label/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-label/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-label/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-label/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-label/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-label/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-label/CHANGELOG.json', hash: '15967607658001790716' }, + { file: 'packages/react-components/react-label/CHANGELOG.md', hash: '2679890539344327293' }, + { file: 'packages/react-components/react-label/LICENSE', hash: '12737615233351762377' }, + { file: 'packages/react-components/react-label/README.md', hash: '16581094109821911033' }, + { file: 'packages/react-components/react-label/bundle-size/Label.fixture.js', hash: '12714736312436909972' }, + { file: 'packages/react-components/react-label/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-label/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-label/docs/MIGRATION.md', hash: '8973789574999379237' }, + { file: 'packages/react-components/react-label/docs/Spec.md', hash: '9483683590469917676' }, + { file: 'packages/react-components/react-label/etc/react-label.api.md', hash: '9487234802999168387' }, + { file: 'packages/react-components/react-label/jest.config.js', hash: '15752885123418439598' }, + { file: 'packages/react-components/react-label/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-label/package.json', + hash: '14662469562447826963', + deps: [ + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-label/project.json', hash: '12851828682182600309' }, + { file: 'packages/react-components/react-label/src/Label.ts', hash: '4712475947755339018' }, + { file: 'packages/react-components/react-label/src/components/Label/Label.test.tsx', hash: '753838017696023469' }, + { file: 'packages/react-components/react-label/src/components/Label/Label.tsx', hash: '18398721846668611007' }, + { + file: 'packages/react-components/react-label/src/components/Label/Label.types.ts', + hash: '15292574198375936571', + }, + { + file: 'packages/react-components/react-label/src/components/Label/__snapshots__/Label.test.tsx.snap', + hash: '16100124649470847201', + }, + { file: 'packages/react-components/react-label/src/components/Label/index.ts', hash: '5020371410472237279' }, + { + file: 'packages/react-components/react-label/src/components/Label/renderLabel.tsx', + hash: '16436124598547877124', + }, + { file: 'packages/react-components/react-label/src/components/Label/useLabel.tsx', hash: '7056413739845035308' }, + { + file: 'packages/react-components/react-label/src/components/Label/useLabelStyles.styles.ts', + hash: '9164626135008328986', + }, + { file: 'packages/react-components/react-label/src/index.ts', hash: '5978491449724056660' }, + { file: 'packages/react-components/react-label/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-label/stories/Label/LabelDefault.stories.tsx', + hash: '14841468930192781303', + }, + { file: 'packages/react-components/react-label/stories/Label/LabelDescription.md', hash: '7798368864438073846' }, + { + file: 'packages/react-components/react-label/stories/Label/LabelDisabled.stories.tsx', + hash: '1464439726235154207', + }, + { + file: 'packages/react-components/react-label/stories/Label/LabelRequired.stories.tsx', + hash: '10394030120071368744', + }, + { file: 'packages/react-components/react-label/stories/Label/LabelSize.stories.tsx', hash: '420198798163138293' }, + { + file: 'packages/react-components/react-label/stories/Label/LabelWeight.stories.tsx', + hash: '1458579849047401397', + }, + { file: 'packages/react-components/react-label/stories/Label/index.stories.tsx', hash: '3602262048666383799' }, + { file: 'packages/react-components/react-label/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-label/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-label/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-portal-compat-context': [ + { file: 'packages/react-components/react-portal-compat-context/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-portal-compat-context/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-portal-compat-context/.swcrc', hash: '246811047642206189' }, + { file: 'packages/react-components/react-portal-compat-context/CHANGELOG.json', hash: '3286043060232160725' }, + { file: 'packages/react-components/react-portal-compat-context/CHANGELOG.md', hash: '16083951032521964094' }, + { file: 'packages/react-components/react-portal-compat-context/LICENSE', hash: '15132429679533339073' }, + { file: 'packages/react-components/react-portal-compat-context/README.md', hash: '12732380853969159320' }, + { + file: 'packages/react-components/react-portal-compat-context/config/api-extractor.json', + hash: '124052868224837692', + }, + { file: 'packages/react-components/react-portal-compat-context/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-portal-compat-context/docs/Spec.md', hash: '12839968031342266899' }, + { + file: 'packages/react-components/react-portal-compat-context/etc/react-portal-compat-context.api.md', + hash: '11239910211046275802', + }, + { file: 'packages/react-components/react-portal-compat-context/jest.config.js', hash: '8444108561492533698' }, + { file: 'packages/react-components/react-portal-compat-context/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-portal-compat-context/package.json', + hash: '11825902232626046996', + deps: [ + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-components/react-portal-compat-context/project.json', hash: '16365174501960435076' }, + { + file: 'packages/react-components/react-portal-compat-context/src/PortalCompatContext.ts', + hash: '2242893524372144892', + }, + { file: 'packages/react-components/react-portal-compat-context/src/index.ts', hash: '16361580812256184490' }, + { file: 'packages/react-components/react-portal-compat-context/src/types.ts', hash: '15037039190645892516' }, + { file: 'packages/react-components/react-portal-compat-context/tsconfig.json', hash: '1281030173985602576' }, + { file: 'packages/react-components/react-portal-compat-context/tsconfig.lib.json', hash: '7009046833260972717' }, + { + file: 'packages/react-components/react-portal-compat-context/tsconfig.spec.json', + hash: '13916911291935990408', + }, + ], + '@fluentui/recipes-react-components': [ + { file: 'apps/recipes-react-components/.eslintrc.json', hash: '6745579680639719580' }, + { file: 'apps/recipes-react-components/.storybook/main.js', hash: '3573351146020217563' }, + { file: 'apps/recipes-react-components/.storybook/preview.js', hash: '13060507936672259436' }, + { file: 'apps/recipes-react-components/just.config.ts', hash: '10393370776333958822' }, + { + file: 'apps/recipes-react-components/package.json', + hash: '10025438426730395084', + deps: [ + '@fluentui/react-components', + 'npm:@fluentui/react-icons', + '@fluentui/react-theme', + '@fluentui/react-provider', + '@fluentui/react-storybook-addon', + '@fluentui/react-storybook-addon-export-to-sandbox', + 'npm:@griffel/react', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + ], + }, + { file: 'apps/recipes-react-components/project.json', hash: '16331129437784993323' }, + { + file: 'apps/recipes-react-components/src/DocComponents/FluentDocsContainer.stories.tsx', + hash: '2324064054925248616', + }, + { file: 'apps/recipes-react-components/src/index.ts', hash: '15555827964896839803' }, + { + file: 'apps/recipes-react-components/src/recipes/media-object/MediaObject.stories.mdx', + hash: '2100852699300778383', + }, + { + file: 'apps/recipes-react-components/src/recipes/media-object/code-snippets/MediaObject.tsx', + hash: '15951393116113450384', + }, + { + file: 'apps/recipes-react-components/src/recipes/media-object/code-snippets/index.ts', + hash: '9585924820972516427', + }, + { file: 'apps/recipes-react-components/src/templates/Example.tsx', hash: '270058714944668880' }, + { file: 'apps/recipes-react-components/src/templates/index.ts', hash: '6433543791903200750' }, + { file: 'apps/recipes-react-components/tsconfig.app.json', hash: '7286160734465805905' }, + { file: 'apps/recipes-react-components/tsconfig.json', hash: '820111550898000748' }, + ], + '@fluentui/ts-minbar-test-react': [ + { file: 'apps/ts-minbar-test-react/CHANGELOG.json', hash: '17761077664360148852' }, + { file: 'apps/ts-minbar-test-react/CHANGELOG.md', hash: '14470523675549078295' }, + { file: 'apps/ts-minbar-test-react/README.md', hash: '4419651569658703681' }, + { file: 'apps/ts-minbar-test-react/files/src/index.tsx', hash: '18103345228235893227' }, + { file: 'apps/ts-minbar-test-react/files/tsconfig.json', hash: '5092064063558585511' }, + { file: 'apps/ts-minbar-test-react/just.config.ts', hash: '7156839958691239049' }, + { + file: 'apps/ts-minbar-test-react/package.json', + hash: '17975545398563137137', + deps: ['@fluentui/react', '@fluentui/scripts-tasks', '@fluentui/scripts-projects-test'], + }, + { file: 'apps/ts-minbar-test-react/project.json', hash: '1282750908468855311' }, + { file: 'apps/ts-minbar-test-react/src/index.ts', hash: '6919848813558476158' }, + { file: 'apps/ts-minbar-test-react/tsconfig.json', hash: '10809149894665832803' }, + ], + '@fluentui/perf-test-northstar': [ + { file: 'packages/fluentui/perf-test-northstar/.digest/config.tsx', hash: '4770113341000384297' }, + { file: 'packages/fluentui/perf-test-northstar/just.config.ts', hash: '13576606665214849514' }, + { + file: 'packages/fluentui/perf-test-northstar/package.json', + hash: '8642285019896310713', + deps: [ + '@fluentui/react-northstar', + '@fluentui/react-northstar-prototypes', + '@fluentui/digest', + 'npm:flamegrill', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/fluentui/perf-test-northstar/project.json', hash: '16333162126337688832' }, + { file: 'packages/fluentui/perf-test-northstar/tasks/fluentPerfRegressions.ts', hash: '10043449040042657596' }, + { file: 'packages/fluentui/perf-test-northstar/tasks/perf-test.config.ts', hash: '6425901650244247513' }, + { file: 'packages/fluentui/perf-test-northstar/tasks/perf-test.ts', hash: '6993888231747376071' }, + { file: 'packages/fluentui/perf-test-northstar/tsconfig.json', hash: '14973691866308938473' }, + ], + '@fluentui/react-context-selector': [ + { file: 'packages/react-components/react-context-selector/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-context-selector/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-context-selector/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-context-selector/CHANGELOG.json', hash: '12357456438201883679' }, + { file: 'packages/react-components/react-context-selector/CHANGELOG.md', hash: '1688705207205191806' }, + { file: 'packages/react-components/react-context-selector/LICENSE', hash: '14418648610861842636' }, + { file: 'packages/react-components/react-context-selector/README.md', hash: '4793703731858594212' }, + { + file: 'packages/react-components/react-context-selector/config/api-extractor.json', + hash: '124052868224837692', + }, + { file: 'packages/react-components/react-context-selector/config/tests.js', hash: '9971916367882244724' }, + { + file: 'packages/react-components/react-context-selector/etc/react-context-selector.api.md', + hash: '817145045488550826', + }, + { file: 'packages/react-components/react-context-selector/jest.config.js', hash: '396823205152653422' }, + { file: 'packages/react-components/react-context-selector/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-context-selector/package.json', + hash: '14209163811172208834', + deps: [ + '@fluentui/react-utilities', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-context-selector/project.json', hash: '10672805380923032364' }, + { + file: 'packages/react-components/react-context-selector/src/createContext.test.tsx', + hash: '4604017868584066298', + }, + { file: 'packages/react-components/react-context-selector/src/createContext.ts', hash: '1937703165389642557' }, + { file: 'packages/react-components/react-context-selector/src/index.ts', hash: '15808868075184724918' }, + { file: 'packages/react-components/react-context-selector/src/types.ts', hash: '3342966834093442693' }, + { + file: 'packages/react-components/react-context-selector/src/useContextSelector.test.tsx', + hash: '2957338539505755381', + }, + { + file: 'packages/react-components/react-context-selector/src/useContextSelector.ts', + hash: '5840336099139347811', + }, + { + file: 'packages/react-components/react-context-selector/src/useHasParentContext.test.tsx', + hash: '1290164710762769818', + }, + { + file: 'packages/react-components/react-context-selector/src/useHasParentContext.ts', + hash: '6039941632328716696', + }, + { file: 'packages/react-components/react-context-selector/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/react-context-selector/tsconfig.lib.json', hash: '14975475306433073951' }, + { file: 'packages/react-components/react-context-selector/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/perf-test': [ + { file: 'apps/perf-test/.eslintrc.json', hash: '10547952771306076160' }, + { file: 'apps/perf-test/CHANGELOG.json', hash: '3690860680265631274' }, + { file: 'apps/perf-test/CHANGELOG.md', hash: '9969572947780794950' }, + { file: 'apps/perf-test/README.md', hash: '12764928321652014507' }, + { file: 'apps/perf-test/config/perf-test/index.ts', hash: '15575701111399511894' }, + { file: 'apps/perf-test/config/perf-test/scenarioIterations.ts', hash: '1467367775531702909' }, + { file: 'apps/perf-test/config/perf-test/scenarioNames.ts', hash: '10066279640267329814' }, + { file: 'apps/perf-test/config/perf-test/scenarioRenderTypes.ts', hash: '14788378254920081233' }, + { file: 'apps/perf-test/config/pre-copy.json', hash: '5251859254196291210' }, + { file: 'apps/perf-test/index.html', hash: '2745716322290525623' }, + { file: 'apps/perf-test/just.config.ts', hash: '4618050165307861195' }, + { + file: 'apps/perf-test/package.json', + hash: '4151768643695656396', + deps: [ + '@fluentui/scripts-perf-test-flamegrill', + '@fluentui/example-data', + '@fluentui/react', + 'npm:@microsoft/load-themed-styles', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-storybook', + ], + }, + { file: 'apps/perf-test/project.json', hash: '5899890915664975397' }, + { file: 'apps/perf-test/src/app.tsx', hash: '12332207993597947267' }, + { file: 'apps/perf-test/src/scenarios/BaseButton.tsx', hash: '7039729498171122609' }, + { file: 'apps/perf-test/src/scenarios/Breadcrumb.tsx', hash: '16313024224495253730' }, + { file: 'apps/perf-test/src/scenarios/Checkbox.tsx', hash: '17155260053343035107' }, + { file: 'apps/perf-test/src/scenarios/CheckboxBase.tsx', hash: '10358952204764439200' }, + { file: 'apps/perf-test/src/scenarios/ChoiceGroup.tsx', hash: '15318243762546027140' }, + { file: 'apps/perf-test/src/scenarios/ComboBox.tsx', hash: '18118694370519216172' }, + { file: 'apps/perf-test/src/scenarios/CommandBar.tsx', hash: '6091443890586328828' }, + { file: 'apps/perf-test/src/scenarios/ContextualMenu.tsx', hash: '14094654232604367120' }, + { file: 'apps/perf-test/src/scenarios/DefaultButton.tsx', hash: '13562761979210098938' }, + { file: 'apps/perf-test/src/scenarios/DetailsRow.tsx', hash: '10889146823819281010' }, + { file: 'apps/perf-test/src/scenarios/DetailsRowFast.tsx', hash: '9350356486541871260' }, + { file: 'apps/perf-test/src/scenarios/DetailsRowNoStyles.tsx', hash: '3324923498330798880' }, + { file: 'apps/perf-test/src/scenarios/Dialog.tsx', hash: '1622520893332066150' }, + { file: 'apps/perf-test/src/scenarios/DocumentCardTitle.tsx', hash: '4017785122739704762' }, + { file: 'apps/perf-test/src/scenarios/Dropdown.tsx', hash: '9674266945938654081' }, + { file: 'apps/perf-test/src/scenarios/FocusTrapZone.tsx', hash: '12804820792601734124' }, + { file: 'apps/perf-test/src/scenarios/FocusZone.tsx', hash: '1772332301941374739' }, + { file: 'apps/perf-test/src/scenarios/GroupedList.tsx', hash: '2729166176625295421' }, + { file: 'apps/perf-test/src/scenarios/GroupedListV2.tsx', hash: '6083440523386377794' }, + { file: 'apps/perf-test/src/scenarios/IconButton.tsx', hash: '9783541165587624706' }, + { file: 'apps/perf-test/src/scenarios/Label.tsx', hash: '10333297231209743060' }, + { file: 'apps/perf-test/src/scenarios/Layer.tsx', hash: '7525187532864277839' }, + { file: 'apps/perf-test/src/scenarios/Link.tsx', hash: '17134170605875713013' }, + { file: 'apps/perf-test/src/scenarios/MenuButton.tsx', hash: '12482470571362753709' }, + { file: 'apps/perf-test/src/scenarios/MessageBar.tsx', hash: '6613648289670595058' }, + { file: 'apps/perf-test/src/scenarios/Nav.tsx', hash: '5798771953346508490' }, + { file: 'apps/perf-test/src/scenarios/OverflowSet.tsx', hash: '9513079940270145993' }, + { file: 'apps/perf-test/src/scenarios/Panel.tsx', hash: '1158665086373748648' }, + { file: 'apps/perf-test/src/scenarios/Persona.tsx', hash: '18289029128740009386' }, + { file: 'apps/perf-test/src/scenarios/Pivot.tsx', hash: '10244319942289181285' }, + { file: 'apps/perf-test/src/scenarios/PrimaryButton.tsx', hash: '12459806105681511644' }, + { file: 'apps/perf-test/src/scenarios/Rating.tsx', hash: '14731327159912128514' }, + { file: 'apps/perf-test/src/scenarios/SearchBox.tsx', hash: '5237818112665442932' }, + { file: 'apps/perf-test/src/scenarios/Shimmer.tsx', hash: '11956647389275749102' }, + { file: 'apps/perf-test/src/scenarios/Slider.tsx', hash: '11778722341113439217' }, + { file: 'apps/perf-test/src/scenarios/SpinButton.tsx', hash: '9965853523492667198' }, + { file: 'apps/perf-test/src/scenarios/Spinner.tsx', hash: '2726138929103130728' }, + { file: 'apps/perf-test/src/scenarios/SplitButton.tsx', hash: '477263295800307708' }, + { file: 'apps/perf-test/src/scenarios/Stack.tsx', hash: '1140119322094176286' }, + { file: 'apps/perf-test/src/scenarios/StackWithIntrinsicChildren.tsx', hash: '1362817365828357956' }, + { file: 'apps/perf-test/src/scenarios/StackWithTextChildren.tsx', hash: '11161962004038112758' }, + { file: 'apps/perf-test/src/scenarios/SwatchColorPicker.tsx', hash: '13643965778697826890' }, + { file: 'apps/perf-test/src/scenarios/TagPicker.tsx', hash: '4504938228669326581' }, + { file: 'apps/perf-test/src/scenarios/TeachingBubble.tsx', hash: '2658825098623550378' }, + { file: 'apps/perf-test/src/scenarios/Text.tsx', hash: '11640958193635725056' }, + { file: 'apps/perf-test/src/scenarios/TextField.tsx', hash: '17031475880417719245' }, + { file: 'apps/perf-test/src/scenarios/ThemeProvider.tsx', hash: '11898213004948485176' }, + { file: 'apps/perf-test/src/scenarios/Toggle.tsx', hash: '4108297911933308158' }, + { file: 'apps/perf-test/src/scenarios/buttonNative.tsx', hash: '15107688448206415163' }, + { file: 'apps/perf-test/tsconfig.json', hash: '14794982171392571729' }, + { file: 'apps/perf-test/webpack.config.js', hash: '14057463434392795636' }, + ], + '@fluentui/react-tabs': [ + { file: 'packages/react-components/react-tabs/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-tabs/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-tabs/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-tabs/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-tabs/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-tabs/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-tabs/CHANGELOG.json', hash: '16653990280561800435' }, + { file: 'packages/react-components/react-tabs/CHANGELOG.md', hash: '5147253273970416832' }, + { file: 'packages/react-components/react-tabs/LICENSE', hash: '4740908718758378364' }, + { file: 'packages/react-components/react-tabs/README.md', hash: '18127596344126903308' }, + { file: 'packages/react-components/react-tabs/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-tabs/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-tabs/docs/MIGRATION.md', hash: '15527478377883104682' }, + { file: 'packages/react-components/react-tabs/docs/Spec.md', hash: '5069091585937724395' }, + { file: 'packages/react-components/react-tabs/etc/react-tabs.api.md', hash: '7006711000172869136' }, + { file: 'packages/react-components/react-tabs/jest.config.js', hash: '14708845933115558170' }, + { file: 'packages/react-components/react-tabs/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-tabs/package.json', + hash: '2435507149752619818', + deps: [ + '@fluentui/react-context-selector', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-tabs/project.json', hash: '2488794906819146532' }, + { file: 'packages/react-components/react-tabs/src/Tab.ts', hash: '18052715041612667837' }, + { file: 'packages/react-components/react-tabs/src/TabList.ts', hash: '14259566883412751833' }, + { file: 'packages/react-components/react-tabs/src/components/Tab/Tab.test.tsx', hash: '5284346870856331647' }, + { file: 'packages/react-components/react-tabs/src/components/Tab/Tab.tsx', hash: '14262278411334138962' }, + { file: 'packages/react-components/react-tabs/src/components/Tab/Tab.types.ts', hash: '13892973305630266674' }, + { + file: 'packages/react-components/react-tabs/src/components/Tab/__snapshots__/Tab.test.tsx.snap', + hash: '16130306086249008716', + }, + { file: 'packages/react-components/react-tabs/src/components/Tab/index.ts', hash: '571853373705559422' }, + { file: 'packages/react-components/react-tabs/src/components/Tab/renderTab.tsx', hash: '438513960010848710' }, + { file: 'packages/react-components/react-tabs/src/components/Tab/useTab.ts', hash: '17930474082868536927' }, + { + file: 'packages/react-components/react-tabs/src/components/Tab/useTabAnimatedIndicator.styles.ts', + hash: '17878737750085263788', + }, + { + file: 'packages/react-components/react-tabs/src/components/Tab/useTabStyles.styles.ts', + hash: '3339130946495387865', + }, + { + file: 'packages/react-components/react-tabs/src/components/TabList/TabList.test.tsx', + hash: '248552595994159964', + }, + { file: 'packages/react-components/react-tabs/src/components/TabList/TabList.tsx', hash: '16824515058622491938' }, + { + file: 'packages/react-components/react-tabs/src/components/TabList/TabList.types.ts', + hash: '15050565246393575960', + }, + { + file: 'packages/react-components/react-tabs/src/components/TabList/TabListContext.ts', + hash: '3869552624891089499', + }, + { + file: 'packages/react-components/react-tabs/src/components/TabList/__snapshots__/TabList.test.tsx.snap', + hash: '17408894838225022682', + }, + { file: 'packages/react-components/react-tabs/src/components/TabList/index.ts', hash: '14418839090107905003' }, + { + file: 'packages/react-components/react-tabs/src/components/TabList/renderTabList.tsx', + hash: '13702244115276528829', + }, + { + file: 'packages/react-components/react-tabs/src/components/TabList/useTabList.ts', + hash: '11356167478206479845', + }, + { + file: 'packages/react-components/react-tabs/src/components/TabList/useTabListContextValues.tsx', + hash: '5865239856627346423', + }, + { + file: 'packages/react-components/react-tabs/src/components/TabList/useTabListStyles.styles.ts', + hash: '12502061653707237914', + }, + { file: 'packages/react-components/react-tabs/src/index.ts', hash: '4303965408378135432' }, + { file: 'packages/react-components/react-tabs/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListAppearance.stories.tsx', + hash: '1756544703328115970', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListBestPractices.md', + hash: '9690510840193383523', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListDefault.stories.tsx', + hash: '6373688234211709605', + }, + { file: 'packages/react-components/react-tabs/stories/Tabs/TabListDescription.md', hash: '9843865439273724282' }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListDisabled.stories.tsx', + hash: '1181981537502838116', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListHorizontal.stories.tsx', + hash: '1364604632286623277', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListIconOnly.stories.tsx', + hash: '13443109350217072013', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListSelectTabOnFocus.stories.tsx', + hash: '10089458872641528139', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListSizeLarge.stories.tsx', + hash: '9903831177196541741', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListSizeMedium.stories.tsx', + hash: '12348057756948710175', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListSizeSmall.stories.tsx', + hash: '130845448440742280', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListVertical.stories.tsx', + hash: '9914209083956496614', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListWithIcon.stories.tsx', + hash: '9957205148378025404', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListWithOverflow.stories.tsx', + hash: '17612162312056098804', + }, + { + file: 'packages/react-components/react-tabs/stories/Tabs/TabListWithPanels.stories.tsx', + hash: '4021389843633563591', + }, + { file: 'packages/react-components/react-tabs/stories/Tabs/index.stories.tsx', hash: '1465033720456171245' }, + { file: 'packages/react-components/react-tabs/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-tabs/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-tabs/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/scripts-cypress': [ + { file: 'scripts/cypress/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/cypress/jest.config.js', hash: '518561776419926196' }, + { file: 'scripts/cypress/package.json', hash: '17552627759162863426' }, + { file: 'scripts/cypress/project.json', hash: '3565894995875395203' }, + { file: 'scripts/cypress/src/base.config.ts', hash: '15157171578083653468' }, + { file: 'scripts/cypress/src/fixtures/example.json', hash: '13882982864087580737' }, + { file: 'scripts/cypress/src/index.ts', hash: '16896299082554130027' }, + { file: 'scripts/cypress/src/support/commands.js', hash: '11219619752715906948' }, + { file: 'scripts/cypress/src/support/component-index.html', hash: '1832624220235093789' }, + { file: 'scripts/cypress/src/support/component.js', hash: '7239146018917213442' }, + { file: 'scripts/cypress/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/cypress/tsconfig.lib.json', hash: '7437868646531824504' }, + { file: 'scripts/cypress/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-dialog': [ + { file: 'packages/react-components/react-dialog/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-dialog/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-dialog/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-dialog/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-dialog/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-dialog/.swcrc', hash: '471348148265161299' }, + { file: 'packages/react-components/react-dialog/CHANGELOG.json', hash: '6085765037859185787' }, + { file: 'packages/react-components/react-dialog/CHANGELOG.md', hash: '2434122158939463922' }, + { file: 'packages/react-components/react-dialog/LICENSE', hash: '4256434193176290151' }, + { file: 'packages/react-components/react-dialog/README.md', hash: '1497980874896642378' }, + { file: 'packages/react-components/react-dialog/bundle-size/Dialog.fixture.js', hash: '5764444469502119445' }, + { file: 'packages/react-components/react-dialog/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-dialog/config/tests.js', hash: '14010006175392234982' }, + { file: 'packages/react-components/react-dialog/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-dialog/docs/Spec.md', hash: '18129707136231408032' }, + { + file: 'packages/react-components/react-dialog/docs/assets/AlertDialogKeyboardInteraction.png', + hash: '13183178900446740370', + }, + { + file: 'packages/react-components/react-dialog/docs/assets/AlertDialogMouseInteraction.png', + hash: '14303341550723004589', + }, + { + file: 'packages/react-components/react-dialog/docs/assets/ModalDialogKeyboardInteraction.png', + hash: '11090212249781690940', + }, + { + file: 'packages/react-components/react-dialog/docs/assets/ModalDialogMouseInteraction.png', + hash: '5309545076786861609', + }, + { + file: 'packages/react-components/react-dialog/docs/assets/NonModalDialogKeyboardInteraction.png', + hash: '11487147899341732505', + }, + { + file: 'packages/react-components/react-dialog/docs/assets/NonModalDialogMouseInteraction.png', + hash: '7627930701325333139', + }, + { file: 'packages/react-components/react-dialog/etc/react-dialog.api.md', hash: '13186150910557458242' }, + { file: 'packages/react-components/react-dialog/jest.config.js', hash: '2212714289394290007' }, + { file: 'packages/react-components/react-dialog/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-dialog/package.json', + hash: '1137127162811369009', + deps: [ + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:react-transition-group', + '@fluentui/keyboard-keys', + '@fluentui/react-context-selector', + '@fluentui/react-shared-contexts', + '@fluentui/react-aria', + 'npm:@fluentui/react-icons', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-portal', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-dialog/project.json', hash: '1593776171207895375' }, + { file: 'packages/react-components/react-dialog/src/Dialog.ts', hash: '7614391750837937500' }, + { file: 'packages/react-components/react-dialog/src/DialogActions.ts', hash: '6501368177261565003' }, + { file: 'packages/react-components/react-dialog/src/DialogBody.ts', hash: '1679083201725254068' }, + { file: 'packages/react-components/react-dialog/src/DialogContent.ts', hash: '6834626365839640188' }, + { file: 'packages/react-components/react-dialog/src/DialogSurface.ts', hash: '2183784150146559110' }, + { file: 'packages/react-components/react-dialog/src/DialogTitle.ts', hash: '3159547512722278904' }, + { file: 'packages/react-components/react-dialog/src/DialogTrigger.ts', hash: '14937508139502512966' }, + { + file: 'packages/react-components/react-dialog/src/components/Dialog/Dialog.cy.tsx', + hash: '2739398937444627575', + }, + { + file: 'packages/react-components/react-dialog/src/components/Dialog/Dialog.test.tsx', + hash: '3844477481217755323', + }, + { file: 'packages/react-components/react-dialog/src/components/Dialog/Dialog.tsx', hash: '17117780814439457607' }, + { + file: 'packages/react-components/react-dialog/src/components/Dialog/Dialog.types.ts', + hash: '3167557189119634950', + }, + { + file: 'packages/react-components/react-dialog/src/components/Dialog/__snapshots__/Dialog.test.tsx.snap', + hash: '6387916450749041874', + }, + { file: 'packages/react-components/react-dialog/src/components/Dialog/index.ts', hash: '9063948780008868764' }, + { + file: 'packages/react-components/react-dialog/src/components/Dialog/renderDialog.tsx', + hash: '15434040824683363960', + }, + { + file: 'packages/react-components/react-dialog/src/components/Dialog/useDialog.test.ts', + hash: '13640949584726189974', + }, + { + file: 'packages/react-components/react-dialog/src/components/Dialog/useDialog.ts', + hash: '9234251070886907331', + }, + { + file: 'packages/react-components/react-dialog/src/components/Dialog/useDialogContextValues.ts', + hash: '14604638666966312339', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogActions/DialogActions.test.tsx', + hash: '3862407181068648115', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogActions/DialogActions.tsx', + hash: '2665085773669039653', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogActions/DialogActions.types.ts', + hash: '13952106127501133459', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogActions/__snapshots__/DialogActions.test.tsx.snap', + hash: '9879192408649306339', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogActions/index.ts', + hash: '10997266245526734202', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogActions/renderDialogActions.tsx', + hash: '12604892974082609712', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogActions/useDialogActions.ts', + hash: '11701599453758756444', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogActions/useDialogActionsStyles.styles.ts', + hash: '10819211647069438860', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogBody/DialogBody.test.tsx', + hash: '14475823408062819496', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogBody/DialogBody.tsx', + hash: '14017098954018666482', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogBody/DialogBody.types.ts', + hash: '9658295494660160346', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogBody/__snapshots__/DialogBody.test.tsx.snap', + hash: '11651296553611813582', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogBody/index.ts', + hash: '14036818210030993605', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogBody/renderDialogBody.tsx', + hash: '4670394357462636632', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogBody/useDialogBody.ts', + hash: '10540755511073542654', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogBody/useDialogBodyStyles.styles.ts', + hash: '5142001486085645225', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogContent/DialogContent.test.tsx', + hash: '7579162779048284428', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogContent/DialogContent.tsx', + hash: '6285589207963179145', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogContent/DialogContent.types.ts', + hash: '5680115798417242790', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogContent/__snapshots__/DialogContent.test.tsx.snap', + hash: '4103540723511950746', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogContent/index.ts', + hash: '14518234974361262884', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogContent/renderDialogContent.tsx', + hash: '8525939742007444644', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogContent/useDialogContent.ts', + hash: '9956821653223924569', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogContent/useDialogContentStyles.styles.ts', + hash: '2680471230329021351', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.test.tsx', + hash: '8550862405162377121', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.tsx', + hash: '10302476452612932521', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.types.ts', + hash: '15073482470524864646', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/__snapshots__/DialogSurface.test.tsx.snap', + hash: '5754145182784132163', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/index.ts', + hash: '4045975660109409458', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/renderDialogSurface.tsx', + hash: '12541449551639055808', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurface.ts', + hash: '9107214140896834439', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurfaceContextValues.ts', + hash: '2363445813728113956', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurfaceStyles.styles.ts', + hash: '13214703133443642860', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.cy.tsx', + hash: '8039933273383891584', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.test.tsx', + hash: '1613995791781650658', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.tsx', + hash: '13145752080337682920', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.types.ts', + hash: '1996415862795187750', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/__snapshots__/DialogTitle.test.tsx.snap', + hash: '4812873543797308805', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/index.ts', + hash: '2680563011959958634', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/renderDialogTitle.tsx', + hash: '292258614427830609', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/useDialogTitle.tsx', + hash: '15310505910673020995', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTitle/useDialogTitleStyles.styles.ts', + hash: '7636358250199335822', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.test.tsx', + hash: '1402232731592992356', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.tsx', + hash: '16111386851757642694', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.types.ts', + hash: '15754792245182397714', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTrigger/__snapshots__/DialogTrigger.test.tsx.snap', + hash: '15349658709586452249', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTrigger/index.ts', + hash: '5301397907530381498', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTrigger/renderDialogTrigger.tsx', + hash: '5459199244809190499', + }, + { + file: 'packages/react-components/react-dialog/src/components/DialogTrigger/useDialogTrigger.ts', + hash: '12286782142162182081', + }, + { file: 'packages/react-components/react-dialog/src/contexts/constants.ts', hash: '6190891133932018158' }, + { file: 'packages/react-components/react-dialog/src/contexts/dialogContext.ts', hash: '4234838693206379174' }, + { + file: 'packages/react-components/react-dialog/src/contexts/dialogSurfaceContext.ts', + hash: '16279975393744354586', + }, + { + file: 'packages/react-components/react-dialog/src/contexts/dialogTransitionContext.ts', + hash: '8520465009143452270', + }, + { file: 'packages/react-components/react-dialog/src/contexts/index.ts', hash: '14786615568304329742' }, + { file: 'packages/react-components/react-dialog/src/index.ts', hash: '11179932823285468334' }, + { file: 'packages/react-components/react-dialog/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-dialog/src/testing/mockUseDialogContext.ts', + hash: '15081100806553676964', + }, + { file: 'packages/react-components/react-dialog/src/testing/selectors.ts', hash: '14197921886153798563' }, + { file: 'packages/react-components/react-dialog/src/utils/index.ts', hash: '9921567441268489854' }, + { + file: 'packages/react-components/react-dialog/src/utils/useDisableBodyScroll.ts', + hash: '10847958514196072311', + }, + { + file: 'packages/react-components/react-dialog/src/utils/useFocusFirstElement.ts', + hash: '10941774999208531161', + }, + { file: 'packages/react-components/react-dialog/stories/Dialog/DialogA11y.md', hash: '679082905829069796' }, + { file: 'packages/react-components/react-dialog/stories/Dialog/DialogAlert.md', hash: '2672952536005254418' }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogAlert.stories.tsx', + hash: '12397098830725963885', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogBestPractices.md', + hash: '5032283973958903493', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogChangeFocus.stories.tsx', + hash: '676013714115936995', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogControllingOpenAndClose.md', + hash: '14656403629598821845', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogControllingOpenAndClose.stories.tsx', + hash: '3641672445058163436', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogCustomTrigger.md', + hash: '16816646341237511822', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogCustomTrigger.stories.tsx', + hash: '1374547463519489314', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogDefault.stories.tsx', + hash: '854035252666479494', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogDescription.md', + hash: '11000425708368126382', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogFluidDialogActions.md', + hash: '12247949510009193278', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogFluidDialogActions.stories.tsx', + hash: '5383668325653872167', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogNoFocusableElement.md', + hash: '6143738976469988971', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogNoFocusableElement.stories.tsx', + hash: '17216947668804365391', + }, + { file: 'packages/react-components/react-dialog/stories/Dialog/DialogNonModal.md', hash: '5441682859607869665' }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogNonModal.stories.tsx', + hash: '17621734798983363303', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogScrollingLongContent.stories.tsx', + hash: '14247822807945780299', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogTitleCustomAction.md', + hash: '650878191513690735', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogTitleCustomAction.stories.tsx', + hash: '4100443228224733194', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogTitleNoAction.md', + hash: '8381986865674275003', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogTitleNoAction.stories.tsx', + hash: '17768139917992326981', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogTriggerOutsideDialog.md', + hash: '555082381172387824', + }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogTriggerOutsideDialog.stories.tsx', + hash: '13910480372673957340', + }, + { file: 'packages/react-components/react-dialog/stories/Dialog/DialogWithForm.md', hash: '17307812149546381291' }, + { + file: 'packages/react-components/react-dialog/stories/Dialog/DialogWithForm.stories.tsx', + hash: '13325038626143987414', + }, + { file: 'packages/react-components/react-dialog/stories/Dialog/index.stories.tsx', hash: '15727902005989339948' }, + { file: 'packages/react-components/react-dialog/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-dialog/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-dialog/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-dialog/tsconfig.spec.json', hash: '6578707152334499940' }, + ], + '@fluentui/react-message-bar': [ + { file: 'packages/react-components/react-message-bar/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-message-bar/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-message-bar/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-message-bar/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-message-bar/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-message-bar/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-message-bar/CHANGELOG.json', hash: '12868552992585073378' }, + { file: 'packages/react-components/react-message-bar/CHANGELOG.md', hash: '3351778526796692282' }, + { file: 'packages/react-components/react-message-bar/LICENSE', hash: '16327043439041055681' }, + { file: 'packages/react-components/react-message-bar/README.md', hash: '15953389640457019950' }, + { + file: 'packages/react-components/react-message-bar/bundle-size/Default.fixture.js', + hash: '13627711057272473768', + }, + { file: 'packages/react-components/react-message-bar/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-message-bar/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-message-bar/docs/Spec.md', hash: '13237932483207544458' }, + { file: 'packages/react-components/react-message-bar/etc/react-message-bar.api.md', hash: '2630926883949754792' }, + { file: 'packages/react-components/react-message-bar/jest.config.js', hash: '16413207529227807353' }, + { file: 'packages/react-components/react-message-bar/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-message-bar/package.json', + hash: '124120508206091990', + deps: [ + '@fluentui/react-button', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + 'npm:react-transition-group', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-message-bar/project.json', hash: '7248934092611567757' }, + { file: 'packages/react-components/react-message-bar/src/MessageBar.ts', hash: '11069752646730668502' }, + { file: 'packages/react-components/react-message-bar/src/MessageBarActions.ts', hash: '6350244474931654916' }, + { file: 'packages/react-components/react-message-bar/src/MessageBarBody.ts', hash: '15258723960017893150' }, + { file: 'packages/react-components/react-message-bar/src/MessageBarGroup.ts', hash: '13446753258376394884' }, + { file: 'packages/react-components/react-message-bar/src/MessageBarTitle.ts', hash: '12103042897925369057' }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.test.tsx', + hash: '9506020889676043856', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.tsx', + hash: '11248815863695310059', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.types.ts', + hash: '10265815128886080638', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/__snapshots__/MessageBar.test.tsx.snap', + hash: '7502280520215239903', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/getIntentIcon.tsx', + hash: '4277324912438122135', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/index.ts', + hash: '9803266154576642022', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/renderMessageBar.tsx', + hash: '7217534775651955585', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/useMessageBar.ts', + hash: '3795650310140008286', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarContextValues.ts', + hash: '6205540263050481251', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarReflow.ts', + hash: '3614108844810135926', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarStyles.styles.ts', + hash: '10150166265258600139', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.test.tsx', + hash: '6343373343822998356', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.tsx', + hash: '2692361793179622035', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.types.ts', + hash: '5031837590524241274', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/__snapshots__/MessageBarActions.test.tsx.snap', + hash: '5374791425502198609', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/index.ts', + hash: '6652705818627569799', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/renderMessageBarActions.tsx', + hash: '17591955117442494635', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActions.ts', + hash: '811010621446034593', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActionsContextValues.ts', + hash: '5538020371246007312', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActionsStyles.styles.ts', + hash: '5228797381152039444', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.test.tsx', + hash: '4203182302311597189', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.tsx', + hash: '10959738536866784870', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.types.ts', + hash: '13189627554707243979', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/__snapshots__/MessageBarBody.test.tsx.snap', + hash: '3169659039358924689', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/index.ts', + hash: '6409436879092391979', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/renderMessageBarBody.tsx', + hash: '7153916570245760883', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/useMessageBarBody.ts', + hash: '16009894493284767820', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/useMessageBarBodyStyles.styles.ts', + hash: '786785408048331858', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.test.tsx', + hash: '10746505726784798319', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.tsx', + hash: '11942212723426358383', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.types.ts', + hash: '17580485053530706223', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarTransition.tsx', + hash: '1897606092423574196', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/__snapshots__/MessageBarGroup.test.tsx.snap', + hash: '11797626360229827566', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/index.ts', + hash: '141029932104411197', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/renderMessageBarGroup.tsx', + hash: '9292110846219555557', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/useMessageBarGroup.ts', + hash: '13080914534948221759', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/useMessageBarGroupStyles.styles.ts', + hash: '4114910048574266033', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.test.tsx', + hash: '13107564461531935709', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.tsx', + hash: '15080023250269401769', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.types.ts', + hash: '16764194630667813256', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/__snapshots__/MessageBarTitle.test.tsx.snap', + hash: '17734021380652132090', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/index.ts', + hash: '15767480419136494943', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/renderMessageBarTitle.tsx', + hash: '17586122560297000640', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/useMessageBarTitle.ts', + hash: '13066611263584781770', + }, + { + file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/useMessageBarTitleStyles.styles.ts', + hash: '13091896643774309043', + }, + { + file: 'packages/react-components/react-message-bar/src/contexts/messageBarContext.ts', + hash: '435413260933637702', + }, + { + file: 'packages/react-components/react-message-bar/src/contexts/messageBarTransitionContext.ts', + hash: '6522240939806347526', + }, + { file: 'packages/react-components/react-message-bar/src/index.ts', hash: '8389702385165675435' }, + { file: 'packages/react-components/react-message-bar/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/Actions.stories.tsx', + hash: '2287271431760496557', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/Animation.stories.tsx', + hash: '881524708691207187', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/Default.stories.tsx', + hash: '4575863936191746397', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/Dismiss.stories.tsx', + hash: '16912282858601457050', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/Intent.stories.tsx', + hash: '14771748215068096830', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/ManualLayout.stories.tsx', + hash: '17909419254727221572', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/MessageBarBestPractices.md', + hash: '689727808186723124', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/MessageBarDescription.md', + hash: '2054562495258492479', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/Reflow.stories.tsx', + hash: '2381235900578476619', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/Shape.stories.tsx', + hash: '11863170233070670412', + }, + { + file: 'packages/react-components/react-message-bar/stories/MessageBar/index.stories.tsx', + hash: '7570405686550661948', + }, + { file: 'packages/react-components/react-message-bar/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-message-bar/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-message-bar/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-storybook-addon-export-to-sandbox': [ + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/.babelrc.json', + hash: '496283691468190474', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/.eslintrc.json', + hash: '11018738359270224912', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/.swcrc', + hash: '16532409398616988134', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/LICENSE', + hash: '5967641454269899786', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/README.md', + hash: '2499909989248215183', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/config/api-extractor.json', + hash: '124052868224837692', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/config/tests.js', + hash: '16913843724990866890', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/etc/react-storybook-addon-export-to-sandbox.api.md', + hash: '5494337558277006328', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/jest.config.js', + hash: '9919031605228870875', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/just.config.ts', + hash: '4613957333426947832', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/package.json', + hash: '5155999668375146046', + deps: [ + 'npm:@swc/helpers', + 'npm:@types/dedent', + 'npm:codesandbox-import-utils', + '@fluentui/babel-preset-storybook-full-source', + 'npm:dedent', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@storybook/addons', + ], + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/preset.js', + hash: '6822632498536641539', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/project.json', + hash: '6370982920554095857', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/decorators/with-export-to-sandbox-button.ts', + hash: '466454051426915967', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/getDependencies.test.ts', + hash: '17898521010029603023', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/getDependencies.ts', + hash: '15483781329479952564', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/index.ts', + hash: '15555827964896839803', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preset.ts', + hash: '17366032390171216343', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preview.ts', + hash: '6360847473423006182', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/public-types.ts', + hash: '12101660067213946265', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-factory.spec.ts', + hash: '14851454481375425606', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-factory.ts', + hash: '3768624125514363470', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-scaffold.spec.ts', + hash: '904384803371274770', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-scaffold.ts', + hash: '8649250263437017824', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-utils.spec.ts', + hash: '5331689109961892313', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-utils.ts', + hash: '16034308923572524868', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/styles.css', + hash: '18413253947347252396', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/types.ts', + hash: '15294403858832099609', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/utils.ts', + hash: '1265135705758458783', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/webpack.spec.ts', + hash: '11999431958700731244', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/webpack.ts', + hash: '14753243909660912317', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.json', + hash: '11066276364833551840', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.lib.json', + hash: '12699777983452779566', + }, + { + file: 'packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.spec.json', + hash: '13916911291935990408', + }, + ], + '@fluentui/react-provider': [ + { file: 'packages/react-components/react-provider/.babelrc.json', hash: '2096462375136904521' }, + { file: 'packages/react-components/react-provider/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-provider/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-provider/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-provider/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-provider/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-provider/CHANGELOG.json', hash: '108417590726351912' }, + { file: 'packages/react-components/react-provider/CHANGELOG.md', hash: '1116526773130530825' }, + { file: 'packages/react-components/react-provider/LICENSE', hash: '13549150797464198841' }, + { file: 'packages/react-components/react-provider/README.md', hash: '3720615893207556971' }, + { + file: 'packages/react-components/react-provider/bundle-size/FluentProvider.fixture.js', + hash: '12527860066414405224', + }, + { file: 'packages/react-components/react-provider/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-provider/config/tests.js', hash: '14010006175392234982' }, + { file: 'packages/react-components/react-provider/etc/react-provider.api.md', hash: '5506599900252811007' }, + { file: 'packages/react-components/react-provider/jest.config.js', hash: '5036142973094437254' }, + { file: 'packages/react-components/react-provider/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-provider/package.json', + hash: '1619886676318507914', + deps: [ + 'npm:@fluentui/react-icons', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/core', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-provider/project.json', hash: '9180676873197508756' }, + { file: 'packages/react-components/react-provider/src/FluentProvider.ts', hash: '3850447221714993967' }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider-hydrate.test.tsx', + hash: '13880435843164414546', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider-node.test.tsx', + hash: '7793367056400359495', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.test.tsx', + hash: '3377541994227020635', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.tsx', + hash: '2751246076442384735', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.types.ts', + hash: '6772065816773142755', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/__snapshots__/FluentProvider.test.tsx.snap', + hash: '10433890136069603039', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/createCSSRuleFromTheme.test.ts', + hash: '2527967971133399553', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/createCSSRuleFromTheme.ts', + hash: '13841534288587055296', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/index.ts', + hash: '6883603651365901962', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/renderFluentProvider.tsx', + hash: '16727318347714133982', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProvider.test.tsx', + hash: '15464636707560200947', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProvider.ts', + hash: '11108514811781860865', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderContextValues.test.ts', + hash: '4277988110613911860', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderContextValues.ts', + hash: '16628905926299651978', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderStyles.styles.ts', + hash: '4840669889939752003', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderThemeStyleTag.test.tsx', + hash: '8101357930343770428', + }, + { + file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderThemeStyleTag.ts', + hash: '10077234436893861533', + }, + { file: 'packages/react-components/react-provider/src/index.ts', hash: '17864331557252480625' }, + { file: 'packages/react-components/react-provider/src/testing/isConformant.ts', hash: '3528474470343364133' }, + { + file: 'packages/react-components/react-provider/stories/Provider/FluentProviderApplyStylesToPortals.stories.tsx', + hash: '15066956984639683240', + }, + { + file: 'packages/react-components/react-provider/stories/Provider/FluentProviderBestPractices.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-provider/stories/Provider/FluentProviderDefault.stories.tsx', + hash: '1104809821168894069', + }, + { + file: 'packages/react-components/react-provider/stories/Provider/FluentProviderDescription.md', + hash: '10297569764496749529', + }, + { + file: 'packages/react-components/react-provider/stories/Provider/FluentProviderDir.stories.tsx', + hash: '5915476121845915577', + }, + { + file: 'packages/react-components/react-provider/stories/Provider/FluentProviderFrame.stories.tsx', + hash: '17764123855331912505', + }, + { + file: 'packages/react-components/react-provider/stories/Provider/FluentProviderNested.stories.tsx', + hash: '18297391744563059933', + }, + { + file: 'packages/react-components/react-provider/stories/Provider/index.stories.tsx', + hash: '3190944166615926852', + }, + { file: 'packages/react-components/react-provider/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-provider/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-provider/tsconfig.spec.json', hash: '6578707152334499940' }, + ], + '@fluentui/workspace-plugin': [ + { file: 'tools/workspace-plugin/.eslintrc.json', hash: '15149754208101589499' }, + { file: 'tools/workspace-plugin/README.md', hash: '6672627314745788036' }, + { file: 'tools/workspace-plugin/STYLE-GUIDE.md', hash: '3643452117874720686' }, + { file: 'tools/workspace-plugin/generators.json', hash: '14874084490014433884' }, + { file: 'tools/workspace-plugin/jest.config.ts', hash: '15153650075111198033' }, + { file: 'tools/workspace-plugin/package.json', hash: '3887346704352140538' }, + { file: 'tools/workspace-plugin/project.json', hash: '15713253905208780959' }, + { file: 'tools/workspace-plugin/scripts/check-dep-graph.js', hash: '8914802890105624146' }, + { file: 'tools/workspace-plugin/src/generators/add-codeowners.spec.ts', hash: '12173538524254972528' }, + { file: 'tools/workspace-plugin/src/generators/add-codeowners.ts', hash: '17572063765493066791' }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/README.md', + hash: '9195191598039456271', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/files/cypress.config.ts__tmpl__', + hash: '17230281421398791592', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/files/tsconfig.cy.json__tmpl__', + hash: '583687292406309619', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/index.spec.ts', + hash: '2318255691944314322', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/index.ts', + hash: '8797936809098149602', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/lib/add-files.ts', + hash: '2938181488416777877', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/lib/utils.spec.ts', + hash: '11181311015782311627', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/lib/utils.ts', + hash: '9065718880996606846', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/schema.json', + hash: '17452041331960852312', + }, + { + file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/schema.ts', + hash: '5622245695872283378', + }, + { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/README.md', hash: '7206131889877981370' }, + { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/index.spec.ts', hash: '8624903429065322064' }, + { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/index.ts', hash: '140651421153146290' }, + { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/schema.json', hash: '865300350200578861' }, + { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/schema.ts', hash: '16632993977426318585' }, + { file: 'tools/workspace-plugin/src/generators/epic-generator/README.md', hash: '16999690254569500391' }, + { file: 'tools/workspace-plugin/src/generators/epic-generator/index.spec.ts', hash: '10508293609049539359' }, + { file: 'tools/workspace-plugin/src/generators/epic-generator/index.ts', hash: '9154235588228773010' }, + { file: 'tools/workspace-plugin/src/generators/epic-generator/schema.json', hash: '7342797308065425147' }, + { file: 'tools/workspace-plugin/src/generators/epic-generator/schema.ts', hash: '14871870936190718481' }, + { file: 'tools/workspace-plugin/src/generators/generate-change-file.spec.ts', hash: '7911062531575789942' }, + { file: 'tools/workspace-plugin/src/generators/generate-change-files.ts', hash: '4364069018731787781' }, + { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/README.md', hash: '3654033943011462935' }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/conformance-setup.ts__tmpl__', + hash: '4945883377006641019', + }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/just-config.ts__tmpl__', + hash: '10393370776333958822', + }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/old-jest-config.js__tmpl__', + hash: '1536723015234762507', + }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/ts-ignore-story.ts__tmpl__', + hash: '4346103498686954704', + }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__snapshots__/index.spec.ts.snap', + hash: '10832486388624247092', + }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/files/.gitkeep', + hash: '3244421341483603138', + }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/files/just-config.ts__tmpl__', + hash: '4613957333426947832', + }, + { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/index.spec.ts', hash: '993719406763264172' }, + { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/index.ts', hash: '16807171603041999988' }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/__fixtures__/utils-hello-substitute.ts__tmpl__', + hash: '14220718920917696154', + }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/__fixtures__/utils-hello.ts__tmpl__', + hash: '13350959345360961417', + }, + { + file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/utils.spec.ts', + hash: '5968007191018436234', + }, + { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/utils.ts', hash: '8873963753325977415' }, + { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/schema.json', hash: '3534760653604611747' }, + { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/schema.ts', hash: '4895008639756688876' }, + { file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/README.md', hash: '12450870298660097504' }, + { + file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/index.spec.ts', + hash: '1801846956210178590', + }, + { file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/index.ts', hash: '13441194817743428609' }, + { + file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/schema.json', + hash: '14796316966131261389', + }, + { file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/schema.ts', hash: '263215702101659815' }, + { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/README.md', hash: '8702247513273588859' }, + { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/index.spec.ts', hash: '6563393165061308225' }, + { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/index.ts', hash: '17397782312510274601' }, + { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/lib/utils.spec.ts', hash: '8222153512403384692' }, + { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/lib/utils.ts', hash: '549574462343596953' }, + { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/schema.json', hash: '18188452103508093176' }, + { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/schema.ts', hash: '11890221334435483209' }, + { file: 'tools/workspace-plugin/src/generators/move-packages/README.md', hash: '15369626182250540239' }, + { file: 'tools/workspace-plugin/src/generators/move-packages/index.spec.ts', hash: '9963499119880645124' }, + { file: 'tools/workspace-plugin/src/generators/move-packages/index.ts', hash: '1840851322697263929' }, + { file: 'tools/workspace-plugin/src/generators/move-packages/schema.json', hash: '3008817952145443497' }, + { file: 'tools/workspace-plugin/src/generators/move-packages/schema.ts', hash: '17347108861724480960' }, + { + file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/README.md', + hash: '11889442463540326504', + }, + { + file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/index.spec.ts', + hash: '2788168539185477742', + }, + { + file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/index.ts', + hash: '2358735029119276862', + }, + { + file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/lib/.gitkeep', + hash: '3244421341483603138', + }, + { + file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/schema.json', + hash: '959331019707851958', + }, + { + file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/schema.ts', + hash: '3746319603399027876', + }, + { file: 'tools/workspace-plugin/src/generators/prepare-initial-release/README.md', hash: '18280291482919668423' }, + { + file: 'tools/workspace-plugin/src/generators/prepare-initial-release/index.spec.ts', + hash: '17951933054430477244', + }, + { file: 'tools/workspace-plugin/src/generators/prepare-initial-release/index.ts', hash: '15073543577756916111' }, + { + file: 'tools/workspace-plugin/src/generators/prepare-initial-release/lib/.gitkeep', + hash: '3244421341483603138', + }, + { + file: 'tools/workspace-plugin/src/generators/prepare-initial-release/schema.json', + hash: '5882686008657364503', + }, + { file: 'tools/workspace-plugin/src/generators/prepare-initial-release/schema.ts', hash: '16506159453550357987' }, + { file: 'tools/workspace-plugin/src/generators/print-stats.spec.ts', hash: '1280574985528973253' }, + { file: 'tools/workspace-plugin/src/generators/print-stats.ts', hash: '3989581104140317561' }, + { file: 'tools/workspace-plugin/src/generators/rc-caret/README.md', hash: '1174057707215016959' }, + { file: 'tools/workspace-plugin/src/generators/rc-caret/index.spec.ts', hash: '8046872970532016323' }, + { file: 'tools/workspace-plugin/src/generators/rc-caret/index.ts', hash: '12202838045906057022' }, + { file: 'tools/workspace-plugin/src/generators/rc-caret/schema.json', hash: '13430321724244114237' }, + { file: 'tools/workspace-plugin/src/generators/rc-caret/schema.ts', hash: '15545508060181886231' }, + { file: 'tools/workspace-plugin/src/generators/react-component/README.md', hash: '15509040416326092319' }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.test.tsx__tmpl__', + hash: '9776823715391656097', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.tsx__tmpl__', + hash: '6395415828085913288', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.types.ts__tmpl__', + hash: '17965595033275169239', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/component/index.ts__tmpl__', + hash: '2919728859339381699', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/component/render__componentName__.tsx__tmpl__', + hash: '12530167117660777622', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/component/use__componentName__.ts__tmpl__', + hash: '5974329661946724656', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/component/use__componentName__Styles.styles.ts__tmpl__', + hash: '1139185616779782212', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/story/__componentName__BestPractices.md__tmpl__', + hash: '13132854725403121719', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/story/__componentName__Default.stories.tsx__tmpl__', + hash: '3467293824812820226', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/story/__componentName__Description.md__tmpl__', + hash: '3244421341483603138', + }, + { + file: 'tools/workspace-plugin/src/generators/react-component/files/story/index.stories.tsx__tmpl__', + hash: '5655101799178136947', + }, + { file: 'tools/workspace-plugin/src/generators/react-component/index.spec.ts', hash: '12818061419512492949' }, + { file: 'tools/workspace-plugin/src/generators/react-component/index.ts', hash: '10149141456045580625' }, + { file: 'tools/workspace-plugin/src/generators/react-component/lib/.gitkeep', hash: '3244421341483603138' }, + { file: 'tools/workspace-plugin/src/generators/react-component/schema.json', hash: '3420955762081798541' }, + { file: 'tools/workspace-plugin/src/generators/react-component/schema.ts', hash: '3282902116051628156' }, + { file: 'tools/workspace-plugin/src/generators/react-library/README.md', hash: '114414758584016906' }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/.babelrc.json__tmpl__', + hash: '14815445141901096491', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/.eslintrc.json__tmpl__', + hash: '11822209983446579696', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/.storybook/main.js__tmpl__', + hash: '11617744840349284164', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/.storybook/preview.js__tmpl__', + hash: '1791378012295456991', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/.storybook/tsconfig.json__tmpl__', + hash: '14611368028782818158', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/.swcrc__tmpl__', + hash: '16532409398616988134', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/LICENSE__tmpl__', + hash: '13024596769977255008', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/README.md__tmpl__', + hash: '13221908493670670010', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/config/api-extractor.json__tmpl__', + hash: '124052868224837692', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/config/tests.js__tmpl__', + hash: '16913843724990866890', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/docs/Spec.md__tmpl__', + hash: '17802667132668971412', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/etc/__packageName__.api.md', + hash: '3244421341483603138', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/jest.config.js__tmpl__', + hash: '9239487721821393767', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/just.config.ts__tmpl__', + hash: '4613957333426947832', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/package.json__tmpl__', + hash: '14606909362012068991', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/src/index.ts__tmpl__', + hash: '15555827964896839803', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/src/testing/isConformant.ts__tmpl__', + hash: '7325949189279658038', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/stories/.gitkeep', + hash: '3244421341483603138', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/tsconfig.json__tmpl__', + hash: '5237217701871136285', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/tsconfig.lib.json__tmpl__', + hash: '1202804459946898179', + }, + { + file: 'tools/workspace-plugin/src/generators/react-library/files/tsconfig.spec.json__tmpl__', + hash: '6114153871167405290', + }, + { file: 'tools/workspace-plugin/src/generators/react-library/index.spec.ts', hash: '9062493083910514758' }, + { file: 'tools/workspace-plugin/src/generators/react-library/index.ts', hash: '13805441570442854906' }, + { file: 'tools/workspace-plugin/src/generators/react-library/lib/.gitkeep', hash: '3244421341483603138' }, + { file: 'tools/workspace-plugin/src/generators/react-library/schema.json', hash: '7218774757126974420' }, + { file: 'tools/workspace-plugin/src/generators/react-library/schema.ts', hash: '14010440605010742358' }, + { file: 'tools/workspace-plugin/src/generators/recipe-generator/README.md', hash: '7894436322904197761' }, + { + file: 'tools/workspace-plugin/src/generators/recipe-generator/__snapshots__/index.spec.ts.snap', + hash: '18218013101938864112', + }, + { + file: 'tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/__fileName__.stories.mdx__tmpl__', + hash: '14323085748279977626', + }, + { + file: 'tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/code-snippets/__fileName__.tsx__tmpl__', + hash: '4194914096576941895', + }, + { + file: 'tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/code-snippets/index.ts__tmpl__', + hash: '2285662923644655059', + }, + { file: 'tools/workspace-plugin/src/generators/recipe-generator/index.spec.ts', hash: '1806201693205694550' }, + { file: 'tools/workspace-plugin/src/generators/recipe-generator/index.ts', hash: '3887584550230851344' }, + { file: 'tools/workspace-plugin/src/generators/recipe-generator/schema.json', hash: '763716532980099231' }, + { file: 'tools/workspace-plugin/src/generators/recipe-generator/schema.ts', hash: '5109310080379739482' }, + { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/README.md', hash: '12453587723963083178' }, + { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/index.spec.ts', hash: '7413380692194170252' }, + { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/index.ts', hash: '10444091968450267048' }, + { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/lib/utils.ts', hash: '624116704349760242' }, + { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/schema.json', hash: '584102150782507131' }, + { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/schema.ts', hash: '5764224920941233305' }, + { file: 'tools/workspace-plugin/src/generators/version-bump/README.md', hash: '7394436249831666532' }, + { file: 'tools/workspace-plugin/src/generators/version-bump/index.spec.ts', hash: '8713901855072782460' }, + { file: 'tools/workspace-plugin/src/generators/version-bump/index.ts', hash: '15492460185168430214' }, + { file: 'tools/workspace-plugin/src/generators/version-bump/schema.json', hash: '17458402893301617402' }, + { file: 'tools/workspace-plugin/src/generators/version-bump/schema.ts', hash: '13768604396498144359' }, + { + file: 'tools/workspace-plugin/src/generators/workspace-generator/files/README.md__tmpl__', + hash: '18433070323338931926', + }, + { + file: 'tools/workspace-plugin/src/generators/workspace-generator/files/index.spec.ts__tmpl__', + hash: '8962363898122267371', + }, + { + file: 'tools/workspace-plugin/src/generators/workspace-generator/files/index.ts__tmpl__', + hash: '5747756663658172206', + }, + { + file: 'tools/workspace-plugin/src/generators/workspace-generator/files/lib/utils.spec.ts__tmpl__', + hash: '9830935905014520824', + }, + { + file: 'tools/workspace-plugin/src/generators/workspace-generator/files/lib/utils.ts__tmpl__', + hash: '4280877079534460457', + }, + { + file: 'tools/workspace-plugin/src/generators/workspace-generator/files/schema.json__tmpl__', + hash: '15111506626007889917', + }, + { + file: 'tools/workspace-plugin/src/generators/workspace-generator/files/schema.ts__tmpl__', + hash: '8608164264497028668', + }, + { file: 'tools/workspace-plugin/src/generators/workspace-generator/index.spec.ts', hash: '4325094757841254756' }, + { file: 'tools/workspace-plugin/src/generators/workspace-generator/index.ts', hash: '5373845662918497412' }, + { file: 'tools/workspace-plugin/src/generators/workspace-generator/schema.json', hash: '12664351878789124797' }, + { file: 'tools/workspace-plugin/src/generators/workspace-generator/schema.ts', hash: '8894746255615101147' }, + { file: 'tools/workspace-plugin/src/index.ts', hash: '15555827964896839803' }, + { file: 'tools/workspace-plugin/src/types.spec.ts', hash: '6230618375099818853' }, + { file: 'tools/workspace-plugin/src/types.ts', hash: '10718822113111555341' }, + { file: 'tools/workspace-plugin/src/utils-testing.ts', hash: '11083126349809196906' }, + { file: 'tools/workspace-plugin/src/utils.spec.ts', hash: '14536241497883098565' }, + { file: 'tools/workspace-plugin/src/utils.ts', hash: '10457732344948097597' }, + { file: 'tools/workspace-plugin/tsconfig.json', hash: '7642656943241257331' }, + { file: 'tools/workspace-plugin/tsconfig.lib.json', hash: '17512648156706774563' }, + { file: 'tools/workspace-plugin/tsconfig.spec.json', hash: '12478527556459153090' }, + ], + '@fluentui/scripts-utils': [ + { file: 'scripts/utils/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/utils/jest.config.js', hash: '17478340034450362864' }, + { file: 'scripts/utils/package.json', hash: '542681258199471675' }, + { file: 'scripts/utils/project.json', hash: '10329661453886386946' }, + { file: 'scripts/utils/src/find-config.js', hash: '7121643082165988615' }, + { file: 'scripts/utils/src/index.d.ts', hash: '8147967967359353990' }, + { file: 'scripts/utils/src/index.js', hash: '16511538452090280361' }, + { file: 'scripts/utils/src/logging.js', hash: '16191873597712382186' }, + { file: 'scripts/utils/src/merge.js', hash: '7681850102607767771' }, + { file: 'scripts/utils/src/read-config.js', hash: '16708908046750970227' }, + { file: 'scripts/utils/src/sh.js', hash: '13078038786871011385' }, + { file: 'scripts/utils/src/write-config.js', hash: '14568723559054940193' }, + { file: 'scripts/utils/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/utils/tsconfig.lib.json', hash: '15222053984038389170' }, + { file: 'scripts/utils/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/webpack-utilities': [ + { file: 'packages/webpack-utilities/.eslintrc.json', hash: '3822933907657161418' }, + { file: 'packages/webpack-utilities/.npmignore', hash: '47056201363133096' }, + { file: 'packages/webpack-utilities/CHANGELOG.json', hash: '3147647764206316685' }, + { file: 'packages/webpack-utilities/CHANGELOG.md', hash: '9984789422986868432' }, + { file: 'packages/webpack-utilities/LICENSE', hash: '2164827662511184675' }, + { file: 'packages/webpack-utilities/README.md', hash: '6604358329591510428' }, + { file: 'packages/webpack-utilities/just.config.ts', hash: '7929889154186778640' }, + { + file: 'packages/webpack-utilities/package.json', + hash: '4032820640168261114', + deps: ['npm:loader-utils', 'npm:tslib', '@fluentui/eslint-plugin', '@fluentui/scripts-tasks', 'npm:webpack'], + }, + { file: 'packages/webpack-utilities/project.json', hash: '12787831108535473542' }, + { file: 'packages/webpack-utilities/src/fabricAsyncLoader.ts', hash: '9895115907536178426' }, + { file: 'packages/webpack-utilities/src/fabricAsyncLoaderInclude.ts', hash: '11145807179976432354' }, + { file: 'packages/webpack-utilities/src/index.ts', hash: '9127318911146067856' }, + { file: 'packages/webpack-utilities/tsconfig.json', hash: '13744738655515373811' }, + ], + '@fluentui/api-docs': [ + { file: 'packages/api-docs/.eslintrc.json', hash: '9627670268003919245' }, + { file: 'packages/api-docs/.npmignore', hash: '47056201363133096' }, + { file: 'packages/api-docs/CHANGELOG.json', hash: '12711583694195328654' }, + { file: 'packages/api-docs/CHANGELOG.md', hash: '2344515844001916141' }, + { file: 'packages/api-docs/LICENSE', hash: '7466169225848381887' }, + { file: 'packages/api-docs/README.md', hash: '4151301246977188865' }, + { file: 'packages/api-docs/just.config.ts', hash: '2411455081002746933' }, + { + file: 'packages/api-docs/package.json', + hash: '8623523342725706688', + deps: [ + 'npm:@microsoft/api-extractor-model', + 'npm:@microsoft/tsdoc', + 'npm:fs-extra', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/api-docs/project.json', hash: '9716814402591382366' }, + { file: 'packages/api-docs/src/generatePageJsonFiles.ts', hash: '12223137603416192167' }, + { file: 'packages/api-docs/src/index.ts', hash: '15889215557140595103' }, + { file: 'packages/api-docs/src/pageJson.ts', hash: '5578611035939541223' }, + { file: 'packages/api-docs/src/rendering.ts', hash: '7915129139089798906' }, + { file: 'packages/api-docs/src/tableJson.ts', hash: '18347889133488948496' }, + { file: 'packages/api-docs/src/tableRowJson.ts', hash: '12702627324845232143' }, + { file: 'packages/api-docs/src/types-private.ts', hash: '5292858344273348012' }, + { file: 'packages/api-docs/src/types.ts', hash: '9057104128889182660' }, + { file: 'packages/api-docs/tsconfig.json', hash: '7070703656195421188' }, + ], + '@fluentui/react-menu': [ + { file: 'packages/react-components/react-menu/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-menu/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-menu/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-menu/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-menu/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-menu/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-menu/CHANGELOG.json', hash: '13476910229160629174' }, + { file: 'packages/react-components/react-menu/CHANGELOG.md', hash: '14554664184101537573' }, + { file: 'packages/react-components/react-menu/LICENSE', hash: '15736152015969238586' }, + { file: 'packages/react-components/react-menu/README.md', hash: '9974219480792599156' }, + { + file: 'packages/react-components/react-menu/bundle-size/Menu.Selectable.fixture.js', + hash: '10055718406591672962', + }, + { file: 'packages/react-components/react-menu/bundle-size/Menu.fixture.js', hash: '7380423072833944343' }, + { file: 'packages/react-components/react-menu/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-menu/config/tests.js', hash: '14010006175392234982' }, + { file: 'packages/react-components/react-menu/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-menu/docs/Spec.md', hash: '3976522757863907944' }, + { + file: 'packages/react-components/react-menu/etc/images/linked-keyboard-mouse-navigation.gif', + hash: '9534445546290517565', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide1.PNG', + hash: '10996843919047425143', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide10.PNG', + hash: '7762249894771317134', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide11.PNG', + hash: '13152679522862275183', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide12.PNG', + hash: '8847288720715588337', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide13.PNG', + hash: '9104014278253187127', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide14.PNG', + hash: '7315926729919914999', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide15.PNG', + hash: '8236518680473418181', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide16.PNG', + hash: '9980447627512903644', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide17.PNG', + hash: '17422977984885863150', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide18.PNG', + hash: '14759594747101336129', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide19.PNG', + hash: '17650756235105260437', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide2.PNG', + hash: '30424365879784040', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide20.PNG', + hash: '1612062547793799900', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide21.PNG', + hash: '11124503703698606421', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide22.PNG', + hash: '811262722789076426', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide3.PNG', + hash: '10845368115041205445', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide4.PNG', + hash: '8986088429055328339', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide5.PNG', + hash: '10871140165914991445', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide6.PNG', + hash: '13977431754554812773', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide7.PNG', + hash: '499398108476843717', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide8.PNG', + hash: '3744764180890858266', + }, + { + file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide9.PNG', + hash: '892375687068162726', + }, + { + file: 'packages/react-components/react-menu/etc/images/splitbutton-left-right.jpg', + hash: '11974008894047502409', + }, + { file: 'packages/react-components/react-menu/etc/images/splitbutton-up-down.jpg', hash: '3421245233520048777' }, + { file: 'packages/react-components/react-menu/etc/react-menu.api.md', hash: '2625235660532732525' }, + { file: 'packages/react-components/react-menu/jest.config.js', hash: '1745463398219509870' }, + { file: 'packages/react-components/react-menu/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-menu/package.json', + hash: '16266155024367291616', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-aria', + '@fluentui/react-context-selector', + 'npm:@fluentui/react-icons', + '@fluentui/react-portal', + '@fluentui/react-positioning', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-menu/project.json', hash: '9575547020162500401' }, + { file: 'packages/react-components/react-menu/src/Menu.ts', hash: '8756792321904454806' }, + { file: 'packages/react-components/react-menu/src/MenuDivider.ts', hash: '9623716229305140831' }, + { file: 'packages/react-components/react-menu/src/MenuGroup.ts', hash: '12488100988105222327' }, + { file: 'packages/react-components/react-menu/src/MenuGroupHeader.ts', hash: '14350848624142614817' }, + { file: 'packages/react-components/react-menu/src/MenuItem.ts', hash: '3661288238805445610' }, + { file: 'packages/react-components/react-menu/src/MenuItemCheckbox.ts', hash: '17719054125879305473' }, + { file: 'packages/react-components/react-menu/src/MenuItemLink.ts', hash: '558019554312927506' }, + { file: 'packages/react-components/react-menu/src/MenuItemRadio.ts', hash: '12593718358566802102' }, + { file: 'packages/react-components/react-menu/src/MenuList.ts', hash: '8846519038441631805' }, + { file: 'packages/react-components/react-menu/src/MenuPopover.ts', hash: '2983509257027835571' }, + { file: 'packages/react-components/react-menu/src/MenuSplitGroup.ts', hash: '15513016859210475093' }, + { file: 'packages/react-components/react-menu/src/MenuTrigger.ts', hash: '11698345674200359338' }, + { file: 'packages/react-components/react-menu/src/components/Menu/Menu.cy.tsx', hash: '6444122186839663883' }, + { file: 'packages/react-components/react-menu/src/components/Menu/Menu.test.tsx', hash: '17729822688881618421' }, + { file: 'packages/react-components/react-menu/src/components/Menu/Menu.tsx', hash: '5848268992573469282' }, + { file: 'packages/react-components/react-menu/src/components/Menu/Menu.types.ts', hash: '9651040264007662262' }, + { + file: 'packages/react-components/react-menu/src/components/Menu/__snapshots__/Menu.test.tsx.snap', + hash: '3975719831104486533', + }, + { file: 'packages/react-components/react-menu/src/components/Menu/index.ts', hash: '1304198499668176681' }, + { file: 'packages/react-components/react-menu/src/components/Menu/renderMenu.tsx', hash: '9385651029638656923' }, + { file: 'packages/react-components/react-menu/src/components/Menu/useMenu.tsx', hash: '14860197231320244296' }, + { + file: 'packages/react-components/react-menu/src/components/Menu/useMenuContextValues.test.tsx', + hash: '5547672389280910376', + }, + { + file: 'packages/react-components/react-menu/src/components/Menu/useMenuContextValues.ts', + hash: '12642077360124745015', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.test.tsx', + hash: '11549581151984489972', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.tsx', + hash: '16805562512970289459', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.types.ts', + hash: '15007456810137280687', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuDivider/__snapshots__/MenuDivider.test.tsx.snap', + hash: '14233671526668994289', + }, + { file: 'packages/react-components/react-menu/src/components/MenuDivider/index.ts', hash: '2565091352590454773' }, + { + file: 'packages/react-components/react-menu/src/components/MenuDivider/renderMenuDivider.tsx', + hash: '11018995948109107341', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuDivider/useMenuDivider.ts', + hash: '5780887031541246803', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuDivider/useMenuDividerStyles.styles.ts', + hash: '10077324190440540609', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.test.tsx', + hash: '1204087493474192749', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.tsx', + hash: '4498560461645350515', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.types.ts', + hash: '15219881719761407189', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/__snapshots__/MenuGroup.test.tsx.snap', + hash: '16965914614106720477', + }, + { file: 'packages/react-components/react-menu/src/components/MenuGroup/index.ts', hash: '9209511433755125706' }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/renderMenuGroup.tsx', + hash: '8181753885401947257', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/useMenuGroup.ts', + hash: '3910564680106426846', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupContextValues.test.ts', + hash: '18001211045297471397', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupContextValues.ts', + hash: '9216932486656446401', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupStyles.styles.ts', + hash: '8932499573143732756', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.test.tsx', + hash: '6988462447077728607', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.tsx', + hash: '1503771799834923441', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.types.ts', + hash: '17330269037191754353', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/__snapshots__/MenuGroupHeader.test.tsx.snap', + hash: '7337392803220596786', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/index.ts', + hash: '6033635462197304978', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/renderMenuGroupHeader.tsx', + hash: '3324830091053494995', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/useMenuGroupHeader.ts', + hash: '15653895465410418163', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/useMenuGroupHeaderStyles.styles.ts', + hash: '14997030694868856005', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItem/MenuItem.test.tsx', + hash: '2873679684291235423', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItem/MenuItem.tsx', + hash: '12024201470866756651', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItem/MenuItem.types.ts', + hash: '10707482172801795547', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItem/__snapshots__/MenuItem.test.tsx.snap', + hash: '5385709528323368001', + }, + { file: 'packages/react-components/react-menu/src/components/MenuItem/index.ts', hash: '9541045283331288441' }, + { + file: 'packages/react-components/react-menu/src/components/MenuItem/renderMenuItem.tsx', + hash: '14942392158866532539', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItem/useCharacterSearch.ts', + hash: '6267469289989024961', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItem/useMenuItem.tsx', + hash: '1396724368639234346', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItem/useMenuItemStyles.styles.ts', + hash: '6460526830763324982', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.test.tsx', + hash: '14984384382944601371', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.tsx', + hash: '787477252537168940', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.types.ts', + hash: '5905203447588022674', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/__snapshots__/MenuItemCheckbox.test.tsx.snap', + hash: '7828754620629991266', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/index.ts', + hash: '3588188147991430141', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/renderMenuItemCheckbox.tsx', + hash: '258385211829308265', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/useMenuItemCheckbox.tsx', + hash: '5944646457710051085', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/useMenuItemCheckboxStyles.styles.ts', + hash: '7462323984399882305', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.test.tsx', + hash: '17595296506760269868', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.tsx', + hash: '17248523960727803144', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.types.ts', + hash: '2020161238381044485', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemLink/__snapshots__/MenuItemLink.test.tsx.snap', + hash: '15703671203227564493', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemLink/index.ts', + hash: '13697213369728295884', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemLink/renderMenuItemLink.tsx', + hash: '1571195633627266707', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemLink/useMenuItemLink.ts', + hash: '15485512175090047445', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemLink/useMenuItemLinkStyles.styles.ts', + hash: '10673459437642068479', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.test.tsx', + hash: '17830365470523402000', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.tsx', + hash: '15806557780886661014', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.types.ts', + hash: '5784410031569147629', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemRadio/__snapshots__/MenuItemRadio.test.tsx.snap', + hash: '7601418981291270276', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemRadio/index.ts', + hash: '16477535113948742245', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemRadio/renderMenuItemRadio.tsx', + hash: '6094725217997746798', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemRadio/useMenuItemRadio.tsx', + hash: '18361762024477785461', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuItemRadio/useMenuItemRadioStyles.styles.ts', + hash: '7787085258183418184', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/MenuList.cy.tsx', + hash: '10558493214717613555', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/MenuList.test.tsx', + hash: '7501375996347123259', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/MenuList.tsx', + hash: '17587090556546066160', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/MenuList.types.ts', + hash: '13914750447147370364', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/__snapshots__/MenuList.test.tsx.snap', + hash: '2592775585730575933', + }, + { file: 'packages/react-components/react-menu/src/components/MenuList/index.ts', hash: '15342917811343006430' }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/renderMenuList.tsx', + hash: '5602566865692845045', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/useMenuList.test.ts', + hash: '12471856953641215156', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/useMenuList.ts', + hash: '9802933237562563138', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/useMenuListContextValues.test.ts', + hash: '17123086118342755317', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/useMenuListContextValues.ts', + hash: '13896741539445495081', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuList/useMenuListStyles.styles.ts', + hash: '4780194249150348842', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.test.tsx', + hash: '6189729203934803945', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.tsx', + hash: '12082762929186071460', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.types.ts', + hash: '8455769478368286917', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuPopover/__snapshots__/MenuPopover.test.tsx.snap', + hash: '2150294699172352256', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuPopover/index.ts', + hash: '14317626586151272452', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuPopover/renderMenuPopover.tsx', + hash: '8869926913492328294', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuPopover/useMenuPopover.ts', + hash: '13420499812023202946', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuPopover/useMenuPopoverStyles.styles.ts', + hash: '1253775784838469533', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.test.tsx', + hash: '1840138852833662611', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.tsx', + hash: '16572984695100801171', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.types.ts', + hash: '13031355897166894941', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/__snapshots__/MenuSplitGroup.test.tsx.snap', + hash: '17458023320221705773', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/index.ts', + hash: '318475417289781564', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/renderMenuSplitGroup.tsx', + hash: '5901409832995632926', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/useMenuSplitGroup.ts', + hash: '17746241506547851787', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/useMenuSplitGroupStyles.styles.ts', + hash: '12933949261295792806', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.test.tsx', + hash: '11060889766755576204', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.tsx', + hash: '1394653538801574152', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.types.ts', + hash: '946719309818581252', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuTrigger/__snapshots__/MenuTrigger.test.tsx.snap', + hash: '11843977669537975918', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuTrigger/index.ts', + hash: '10359213883192490894', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuTrigger/renderMenuTrigger.tsx', + hash: '486853907445320152', + }, + { + file: 'packages/react-components/react-menu/src/components/MenuTrigger/useMenuTrigger.ts', + hash: '9150439686645890667', + }, + { file: 'packages/react-components/react-menu/src/components/index.ts', hash: '15281374471627944273' }, + { file: 'packages/react-components/react-menu/src/contexts/menuContext.ts', hash: '6239917358806324505' }, + { file: 'packages/react-components/react-menu/src/contexts/menuGroupContext.ts', hash: '6370087999253214975' }, + { file: 'packages/react-components/react-menu/src/contexts/menuListContext.tsx', hash: '6819638168391932370' }, + { file: 'packages/react-components/react-menu/src/contexts/menuTriggerContext.ts', hash: '6036099642596285418' }, + { file: 'packages/react-components/react-menu/src/index.ts', hash: '10360275651669209236' }, + { file: 'packages/react-components/react-menu/src/selectable/index.ts', hash: '4319182688114126685' }, + { file: 'packages/react-components/react-menu/src/selectable/types.ts', hash: '16485900127811599667' }, + { + file: 'packages/react-components/react-menu/src/selectable/useCheckmarkStyles.styles.ts', + hash: '3906585967852877939', + }, + { file: 'packages/react-components/react-menu/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { file: 'packages/react-components/react-menu/src/testing/mockUseMenuContext.ts', hash: '6314525062221789050' }, + { file: 'packages/react-components/react-menu/src/testing/selectors.ts', hash: '8209790805045598641' }, + { file: 'packages/react-components/react-menu/src/utils/index.ts', hash: '4078004951295563239' }, + { file: 'packages/react-components/react-menu/src/utils/useIsSubmenu.ts', hash: '11033603198558854107' }, + { file: 'packages/react-components/react-menu/src/utils/useOnMenuEnter.ts', hash: '6826503496950204850' }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuAligningWithIcons.stories.tsx', + hash: '16433524456963419092', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuAligningWithSelectableItems.stories.tsx', + hash: '14474345408241564020', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuAnchorToTarget.stories.tsx', + hash: '9486718017680407788', + }, + { file: 'packages/react-components/react-menu/stories/Menu/MenuBestPractices.md', hash: '5249056618079920833' }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuCheckboxItems.stories.tsx', + hash: '8841710572274735202', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuControlledCheckboxItems.stories.tsx', + hash: '16683035339345466174', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuControlledRadioItems.stories.tsx', + hash: '1922948447837293872', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuControllingOpenAndClose.stories.tsx', + hash: '987124754558044067', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuCustomTrigger.stories.tsx', + hash: '18094199124507674772', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuDefault.stories.tsx', + hash: '16799265814272918058', + }, + { file: 'packages/react-components/react-menu/stories/Menu/MenuDescription.md', hash: '9350708939226578245' }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuGroupingItems.stories.tsx', + hash: '6589559459586809781', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuInteraction.stories.tsx', + hash: '5236924903760670398', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuItemLinkNavigation.stories.tsx', + hash: '10427912434970875220', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuMemoizedMenuItems.stories.tsx', + hash: '18299823585577487381', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuMenuItemsWithIcons.stories.tsx', + hash: '17400593762694855498', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuNestedSubmenus.stories.tsx', + hash: '16674356508768541596', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuNestedSubmenusControlled.stories.tsx', + hash: '3051040041580907048', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuRadioItems.stories.tsx', + hash: '15098987322999033693', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuRenderFunctionTrigger.stories.tsx', + hash: '15200765170839343603', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuSecondaryContentForMenuItems.stories.tsx', + hash: '10654468810932398313', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuSelectionGroup.stories.tsx', + hash: '306600798412747459', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuSplitMenuItem.stories.tsx', + hash: '797134403737860059', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuTriggerWithTooltip.stories.tsx', + hash: '13215432807511638517', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/MenuVisualDividerOnly.stories.tsx', + hash: '4883926450294571262', + }, + { + file: 'packages/react-components/react-menu/stories/Menu/NestedSubmenusResponsiveness.stories.tsx', + hash: '14146194086814006414', + }, + { file: 'packages/react-components/react-menu/stories/Menu/index.stories.tsx', hash: '3296822820272671917' }, + { + file: 'packages/react-components/react-menu/stories/MenuList/MenuListCheckboxItems.stories.tsx', + hash: '3251768030696211806', + }, + { + file: 'packages/react-components/react-menu/stories/MenuList/MenuListControlledCheckboxItems.stories.tsx', + hash: '16990448086722515461', + }, + { + file: 'packages/react-components/react-menu/stories/MenuList/MenuListControlledRadioItems.stories.tsx', + hash: '7291360822499525379', + }, + { + file: 'packages/react-components/react-menu/stories/MenuList/MenuListDefault.stories.tsx', + hash: '10353579900915928948', + }, + { + file: 'packages/react-components/react-menu/stories/MenuList/MenuListDescription.md', + hash: '4214626428591226389', + }, + { + file: 'packages/react-components/react-menu/stories/MenuList/MenuListNestedSubmenus.stories.tsx', + hash: '12052013926643032775', + }, + { + file: 'packages/react-components/react-menu/stories/MenuList/MenuListRadioItems.stories.tsx', + hash: '3448944709947031326', + }, + { file: 'packages/react-components/react-menu/stories/MenuList/index.stories.tsx', hash: '17161123005114922980' }, + { file: 'packages/react-components/react-menu/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-menu/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-menu/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-menu/tsconfig.spec.json', hash: '6578707152334499940' }, + ], + '@fluentui/ability-attributes': [ + { file: 'packages/fluentui/ability-attributes/.gitignore', hash: '11739575227553609806' }, + { file: 'packages/fluentui/ability-attributes/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/ability-attributes/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/ability-attributes/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/ability-attributes/package.json', + hash: '15170941952482138179', + deps: [ + 'npm:ability-attributes', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + 'npm:ability-attributes-generator', + ], + }, + { file: 'packages/fluentui/ability-attributes/project.json', hash: '1227490013893515185' }, + { file: 'packages/fluentui/ability-attributes/schema.json', hash: '10503311233137281773' }, + { file: 'packages/fluentui/ability-attributes/src/index.ts', hash: '2999499642231436910' }, + { file: 'packages/fluentui/ability-attributes/tsconfig.json', hash: '9156245422548100079' }, + ], + '@fluentui/date-time-utilities': [ + { file: 'packages/date-time-utilities/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/date-time-utilities/.npmignore', hash: '47056201363133096' }, + { file: 'packages/date-time-utilities/CHANGELOG.json', hash: '2164381804076873918' }, + { file: 'packages/date-time-utilities/CHANGELOG.md', hash: '3188049663660729300' }, + { file: 'packages/date-time-utilities/LICENSE', hash: '1406600530965153382' }, + { file: 'packages/date-time-utilities/README.md', hash: '15663058025015777167' }, + { file: 'packages/date-time-utilities/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/date-time-utilities/etc/date-time-utilities.api.md', hash: '4147546351800268056' }, + { file: 'packages/date-time-utilities/jest.config.js', hash: '14422260967582952706' }, + { file: 'packages/date-time-utilities/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/date-time-utilities/package.json', + hash: '11495122545919054215', + deps: [ + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/date-time-utilities/project.json', hash: '14457318988314402231' }, + { + file: 'packages/date-time-utilities/src/dateFormatting/dateFormatting.defaults.ts', + hash: '3121003231405885904', + }, + { file: 'packages/date-time-utilities/src/dateFormatting/dateFormatting.test.ts', hash: '10780573025705000265' }, + { file: 'packages/date-time-utilities/src/dateFormatting/dateFormatting.types.ts', hash: '17447457680448716723' }, + { file: 'packages/date-time-utilities/src/dateFormatting/index.ts', hash: '10491802775163290807' }, + { + file: 'packages/date-time-utilities/src/dateGrid/__snapshots__/getDayGrid.test.ts.snap', + hash: '2311635867604483689', + }, + { file: 'packages/date-time-utilities/src/dateGrid/dateGrid.types.ts', hash: '10377546010866108302' }, + { file: 'packages/date-time-utilities/src/dateGrid/findAvailableDate.test.ts', hash: '16014593248943699532' }, + { file: 'packages/date-time-utilities/src/dateGrid/findAvailableDate.ts', hash: '17812579345659974705' }, + { file: 'packages/date-time-utilities/src/dateGrid/getBoundedDateRange.test.ts', hash: '16271701688173551694' }, + { file: 'packages/date-time-utilities/src/dateGrid/getBoundedDateRange.ts', hash: '5151142947748778290' }, + { file: 'packages/date-time-utilities/src/dateGrid/getDateRangeTypeToUse.test.ts', hash: '13578684931193299139' }, + { file: 'packages/date-time-utilities/src/dateGrid/getDateRangeTypeToUse.ts', hash: '16696959932960635992' }, + { file: 'packages/date-time-utilities/src/dateGrid/getDayGrid.test.ts', hash: '15740649517213788929' }, + { file: 'packages/date-time-utilities/src/dateGrid/getDayGrid.ts', hash: '9476685343421711322' }, + { file: 'packages/date-time-utilities/src/dateGrid/index.ts', hash: '12957004530838335926' }, + { file: 'packages/date-time-utilities/src/dateGrid/isAfterMaxDate.test.ts', hash: '10840956339319765451' }, + { file: 'packages/date-time-utilities/src/dateGrid/isAfterMaxDate.ts', hash: '4879284728703250347' }, + { file: 'packages/date-time-utilities/src/dateGrid/isBeforeMinDate.test.ts', hash: '13690478736915468966' }, + { file: 'packages/date-time-utilities/src/dateGrid/isBeforeMinDate.ts', hash: '9762482266014451107' }, + { file: 'packages/date-time-utilities/src/dateGrid/isContiguous.test.ts', hash: '2343134183304754683' }, + { file: 'packages/date-time-utilities/src/dateGrid/isContiguous.ts', hash: '9358593535087643745' }, + { file: 'packages/date-time-utilities/src/dateGrid/isRestrictedDate.test.ts', hash: '609331876505347603' }, + { file: 'packages/date-time-utilities/src/dateGrid/isRestrictedDate.ts', hash: '8608321153134897550' }, + { file: 'packages/date-time-utilities/src/dateMath/dateMath.test.ts', hash: '6289703901015116667' }, + { file: 'packages/date-time-utilities/src/dateMath/dateMath.ts', hash: '5518748274490320630' }, + { file: 'packages/date-time-utilities/src/dateValues/dateValues.ts', hash: '18269157894089480859' }, + { file: 'packages/date-time-utilities/src/dateValues/timeConstants.ts', hash: '13010220875930774354' }, + { file: 'packages/date-time-utilities/src/index.ts', hash: '5651837990155102462' }, + { file: 'packages/date-time-utilities/src/timeFormatting/index.ts', hash: '881792922337031636' }, + { file: 'packages/date-time-utilities/src/timeFormatting/timeFormatting.test.ts', hash: '2360306042898603230' }, + { file: 'packages/date-time-utilities/src/timeMath/timeMath.test.ts', hash: '491224792424595929' }, + { file: 'packages/date-time-utilities/src/timeMath/timeMath.ts', hash: '16292546276501068965' }, + { file: 'packages/date-time-utilities/src/version.ts', hash: '8665770230245968868' }, + { file: 'packages/date-time-utilities/tsconfig.json', hash: '1822303577405251995' }, + ], + '@fluentui/react-breadcrumb': [ + { file: 'packages/react-components/react-breadcrumb/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-breadcrumb/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-breadcrumb/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-breadcrumb/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-breadcrumb/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-breadcrumb/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-breadcrumb/CHANGELOG.json', hash: '2570283488899410161' }, + { file: 'packages/react-components/react-breadcrumb/CHANGELOG.md', hash: '1735034764987370929' }, + { file: 'packages/react-components/react-breadcrumb/LICENSE', hash: '16481799524039364263' }, + { file: 'packages/react-components/react-breadcrumb/README.md', hash: '16815256696382455714' }, + { file: 'packages/react-components/react-breadcrumb/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-breadcrumb/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-breadcrumb/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-breadcrumb/docs/MIGRATION.md', hash: '17124393446517252405' }, + { file: 'packages/react-components/react-breadcrumb/docs/Spec.md', hash: '16525832846360908320' }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb-overflow.png', + hash: '2473429825315886427', + }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb-truncated-text.png', + hash: '16585691422223282118', + }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb.png', + hash: '11475088599067018810', + }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/beadcrumb-states.png', + hash: '1882688032436144693', + }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/breadcrumb-anatomy.png', + hash: '4894770811587900772', + }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/breadcrumb-collapsed-items.png', + hash: '4795354596016889485', + }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/breadcrumb-keyboard-interaction.png', + hash: '9771384705522163308', + }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/breadcrumb-tooltip.png', + hash: '9656854138789449118', + }, + { + file: 'packages/react-components/react-breadcrumb/docs/assets/button-beadcrumb.png', + hash: '2606983199978138996', + }, + { file: 'packages/react-components/react-breadcrumb/etc/react-breadcrumb.api.md', hash: '5866624564911992559' }, + { file: 'packages/react-components/react-breadcrumb/jest.config.js', hash: '15096978446821584885' }, + { file: 'packages/react-components/react-breadcrumb/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-breadcrumb/package.json', + hash: '8595538614651167172', + deps: [ + '@fluentui/react-aria', + '@fluentui/react-button', + 'npm:@fluentui/react-icons', + '@fluentui/react-link', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-breadcrumb/project.json', hash: '16891773604498379506' }, + { file: 'packages/react-components/react-breadcrumb/src/Breadcrumb.ts', hash: '4692325558598841885' }, + { file: 'packages/react-components/react-breadcrumb/src/BreadcrumbButton.ts', hash: '13142461312489699262' }, + { file: 'packages/react-components/react-breadcrumb/src/BreadcrumbDivider.ts', hash: '17595441548180529431' }, + { file: 'packages/react-components/react-breadcrumb/src/BreadcrumbItem.ts', hash: '1650401439078923478' }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.cy.tsx', + hash: '5131453721576360491', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.test.tsx', + hash: '1478477349638612290', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.tsx', + hash: '17948809077375736751', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.types.ts', + hash: '8628138238589389834', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/BreadcrumbContext.ts', + hash: '16805312103383567144', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/BreadcrumbWithMenu.cy.tsx', + hash: '7203087750206932430', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/index.ts', + hash: '9032724877765988093', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/renderBreadcrumb.tsx', + hash: '5792393368173279133', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumb.ts', + hash: '6340783675223266602', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbContextValue.ts', + hash: '17467019924492118170', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbStyles.styles.ts', + hash: '7820283913277421146', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.test.tsx', + hash: '2653884237723303862', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.tsx', + hash: '16222238748512939394', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.types.ts', + hash: '7142817545924236721', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/index.ts', + hash: '10954122702786375744', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/renderBreadcrumbButton.tsx', + hash: '10083161542978976558', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/useBreadcrumbButton.ts', + hash: '10220476350761926617', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.ts', + hash: '13929106455172225784', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.test.tsx', + hash: '2740829010159730811', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.tsx', + hash: '6530941049629619903', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.types.ts', + hash: '9811041371185527372', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/index.ts', + hash: '2366895614594973706', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/renderBreadcrumbDivider.tsx', + hash: '9225555914960429542', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/useBreadcrumbDivider.tsx', + hash: '1405733621306022692', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.ts', + hash: '9947518297677346549', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.test.tsx', + hash: '3021827718308952245', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.tsx', + hash: '5649139577683726299', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.types.ts', + hash: '6057980798464983090', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/index.ts', + hash: '14997305546070859164', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/renderBreadcrumbItem.tsx', + hash: '16948262709942899186', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/useBreadcrumbItem.ts', + hash: '8502803056347678860', + }, + { + file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.ts', + hash: '7253756977649122971', + }, + { file: 'packages/react-components/react-breadcrumb/src/index.ts', hash: '403224537735235068' }, + { file: 'packages/react-components/react-breadcrumb/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { file: 'packages/react-components/react-breadcrumb/src/utils/index.ts', hash: '6102866357142899175' }, + { + file: 'packages/react-components/react-breadcrumb/src/utils/partitionBreadcrumbItems.test.ts', + hash: '10295724281836694216', + }, + { + file: 'packages/react-components/react-breadcrumb/src/utils/partitionBreadcrumbItems.ts', + hash: '10722155471173273905', + }, + { + file: 'packages/react-components/react-breadcrumb/src/utils/truncateBreadcrumb.test.ts', + hash: '2965978281950772724', + }, + { + file: 'packages/react-components/react-breadcrumb/src/utils/truncateBreadcrumb.ts', + hash: '10752014325791471505', + }, + { + file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbDefault.stories.tsx', + hash: '8869935600499207876', + }, + { + file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbDescription.md', + hash: '17689646751484476668', + }, + { + file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbSize.stories.tsx', + hash: '13976348487297585255', + }, + { + file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbWithOverflow.stories.tsx', + hash: '2989295134577667826', + }, + { + file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbWithTooltip.stories.tsx', + hash: '12929963736895107743', + }, + { + file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/index.stories.tsx', + hash: '6924523627962872578', + }, + { file: 'packages/react-components/react-breadcrumb/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-breadcrumb/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-breadcrumb/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-breadcrumb/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/global-context': [ + { file: 'packages/react-components/global-context/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/global-context/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/global-context/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/global-context/CHANGELOG.json', hash: '3559008600431803229' }, + { file: 'packages/react-components/global-context/CHANGELOG.md', hash: '3002425371666790025' }, + { file: 'packages/react-components/global-context/LICENSE', hash: '16085635044836667477' }, + { file: 'packages/react-components/global-context/README.md', hash: '11497599280276646781' }, + { + file: 'packages/react-components/global-context/bundle-size/createContext.fixture.js', + hash: '18051433675935440280', + }, + { + file: 'packages/react-components/global-context/bundle-size/createContextSelector.fixture.js', + hash: '6607661730451392027', + }, + { file: 'packages/react-components/global-context/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/global-context/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/global-context/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/global-context/etc/global-context.api.md', hash: '16388687583245900658' }, + { file: 'packages/react-components/global-context/jest.config.js', hash: '11996786684390609645' }, + { file: 'packages/react-components/global-context/just.config.ts', hash: '4613957333426947832' }, + { file: 'packages/react-components/global-context/monosize.config.mjs', hash: '5627908047013620305' }, + { + file: 'packages/react-components/global-context/package.json', + hash: '779619587821778079', + deps: [ + '@fluentui/react-context-selector', + '@fluentui/react-utilities', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/global-context/project.json', hash: '16893704753425154668' }, + { + file: 'packages/react-components/global-context/src/global-context-selector.test.ts', + hash: '6487703100303991950', + }, + { file: 'packages/react-components/global-context/src/global-context-selector.ts', hash: '1078475965261159391' }, + { file: 'packages/react-components/global-context/src/global-context.cy.tsx', hash: '14149888652164360210' }, + { file: 'packages/react-components/global-context/src/global-context.test.ts', hash: '8559469442155352347' }, + { file: 'packages/react-components/global-context/src/global-context.ts', hash: '5788531003606375031' }, + { file: 'packages/react-components/global-context/src/index.ts', hash: '6688086211177314226' }, + { file: 'packages/react-components/global-context/src/types.ts', hash: '1907364711162234682' }, + { file: 'packages/react-components/global-context/src/utils.test.ts', hash: '195903445294291101' }, + { file: 'packages/react-components/global-context/src/utils.ts', hash: '6047271728724939229' }, + { file: 'packages/react-components/global-context/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/global-context/tsconfig.json', hash: '5596071008249197618' }, + { file: 'packages/react-components/global-context/tsconfig.lib.json', hash: '6390891856014566094' }, + { file: 'packages/react-components/global-context/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/scripts-webpack': [ + { file: 'scripts/webpack/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/webpack/README.md', hash: '4067032978229351632' }, + { file: 'scripts/webpack/jest.config.js', hash: '14139019284460164056' }, + { + file: 'scripts/webpack/package.json', + hash: '9113209827864624699', + deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-utils'], + }, + { file: 'scripts/webpack/project.json', hash: '8527254449760351839' }, + { file: 'scripts/webpack/src/getResolveAlias.js', hash: '15182557477202690456' }, + { file: 'scripts/webpack/src/index.d.ts', hash: '10952550470895145852' }, + { file: 'scripts/webpack/src/index.js', hash: '10843399883229391707' }, + { file: 'scripts/webpack/src/storybook-webpack.config.js', hash: '17136657291484397150' }, + { file: 'scripts/webpack/src/webpack-resources.js', hash: '10289861416065351518' }, + { file: 'scripts/webpack/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/webpack/tsconfig.lib.json', hash: '7589346801816210336' }, + { file: 'scripts/webpack/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-aria': [ + { file: 'packages/react-components/react-aria/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-aria/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-aria/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-aria/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-aria/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-aria/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-aria/CHANGELOG.json', hash: '5002040490185146431' }, + { file: 'packages/react-components/react-aria/CHANGELOG.md', hash: '9845108113925652540' }, + { file: 'packages/react-components/react-aria/LICENSE', hash: '7531954833459612349' }, + { file: 'packages/react-components/react-aria/README.md', hash: '14375212147544522453' }, + { file: 'packages/react-components/react-aria/bundle-size/Default.fixture.js', hash: '11831374877528803617' }, + { file: 'packages/react-components/react-aria/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-aria/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-aria/docs/Spec.md', hash: '14175263881684879744' }, + { file: 'packages/react-components/react-aria/etc/react-aria.api.md', hash: '17480600883303618628' }, + { file: 'packages/react-components/react-aria/jest.config.js', hash: '5668187947540498334' }, + { file: 'packages/react-components/react-aria/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-aria/package.json', + hash: '11413694720494713369', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-shared-contexts', + '@fluentui/react-utilities', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-aria/project.json', hash: '6597091360640365171' }, + { file: 'packages/react-components/react-aria/src/activedescendant/constants.ts', hash: '2666008086063449551' }, + { file: 'packages/react-components/react-aria/src/activedescendant/index.ts', hash: '9186068050361306869' }, + { file: 'packages/react-components/react-aria/src/activedescendant/types.ts', hash: '17616275751509811525' }, + { + file: 'packages/react-components/react-aria/src/activedescendant/useActiveDescendant.ts', + hash: '5696088335642593312', + }, + { + file: 'packages/react-components/react-aria/src/activedescendant/useActivedescendant.test.tsx', + hash: '10147830263085325805', + }, + { + file: 'packages/react-components/react-aria/src/activedescendant/useOptionWalker.ts', + hash: '17164705128178287278', + }, + { file: 'packages/react-components/react-aria/src/button/index.ts', hash: '10853837358746446063' }, + { file: 'packages/react-components/react-aria/src/button/types.ts', hash: '3047686119329172592' }, + { + file: 'packages/react-components/react-aria/src/button/useARIAButtonProps.test.tsx', + hash: '10819497450726165514', + }, + { file: 'packages/react-components/react-aria/src/button/useARIAButtonProps.ts', hash: '724969559128884261' }, + { + file: 'packages/react-components/react-aria/src/button/useARIAButtonShorthand.test.tsx', + hash: '12952904029879209806', + }, + { + file: 'packages/react-components/react-aria/src/button/useARIAButtonShorthand.ts', + hash: '14643602163518543160', + }, + { file: 'packages/react-components/react-aria/src/index.ts', hash: '1321370508676472973' }, + { file: 'packages/react-components/react-aria/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-aria/tsconfig.lib.json', hash: '2330431448937249608' }, + { file: 'packages/react-components/react-aria/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-drawer': [ + { file: 'packages/react-components/react-drawer/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-drawer/.eslintrc.json', hash: '2955813886510177408' }, + { file: 'packages/react-components/react-drawer/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-drawer/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-drawer/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-drawer/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-drawer/CHANGELOG.json', hash: '3334772755866320042' }, + { file: 'packages/react-components/react-drawer/CHANGELOG.md', hash: '13301267702379936773' }, + { file: 'packages/react-components/react-drawer/LICENSE', hash: '740118108425064671' }, + { file: 'packages/react-components/react-drawer/README.md', hash: '11963902967276611543' }, + { file: 'packages/react-components/react-drawer/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-drawer/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-drawer/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-drawer/docs/Spec.md', hash: '2197025006070261905' }, + { file: 'packages/react-components/react-drawer/docs/assets/drawer-anatomy.png', hash: '1500223499677642584' }, + { + file: 'packages/react-components/react-drawer/docs/assets/drawer-content-anatomy.png', + hash: '7337310129908385365', + }, + { + file: 'packages/react-components/react-drawer/docs/assets/drawer-footer-anatomy.png', + hash: '15968075167955159306', + }, + { + file: 'packages/react-components/react-drawer/docs/assets/drawer-header-anatomy-2.png', + hash: '15111955334914916166', + }, + { + file: 'packages/react-components/react-drawer/docs/assets/drawer-header-anatomy.png', + hash: '3803359533875519043', + }, + { file: 'packages/react-components/react-drawer/docs/assets/inline.png', hash: '5978580365629415041' }, + { + file: 'packages/react-components/react-drawer/docs/assets/left-drawer-entering.png', + hash: '13990966208435724679', + }, + { + file: 'packages/react-components/react-drawer/docs/assets/left-drawer-exiting.png', + hash: '10933889414890912981', + }, + { file: 'packages/react-components/react-drawer/docs/assets/overlay.png', hash: '10025973739764391600' }, + { + file: 'packages/react-components/react-drawer/docs/assets/right-drawer-entering.png', + hash: '11906352803476453494', + }, + { + file: 'packages/react-components/react-drawer/docs/assets/right-drawer-exiting.png', + hash: '6335665869796474774', + }, + { file: 'packages/react-components/react-drawer/etc/react-drawer.api.md', hash: '13302017186739810777' }, + { file: 'packages/react-components/react-drawer/jest.config.js', hash: '4250780866251609094' }, + { file: 'packages/react-components/react-drawer/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-drawer/package.json', + hash: '12517140293057050843', + deps: [ + '@fluentui/react-dialog', + '@fluentui/react-jsx-runtime', + '@fluentui/react-motion-preview', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + '@fluentui/scripts-cypress', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-drawer/project.json', hash: '9919233202400054757' }, + { file: 'packages/react-components/react-drawer/src/Drawer.ts', hash: '11221601650910664334' }, + { file: 'packages/react-components/react-drawer/src/DrawerBody.ts', hash: '7338982733713392097' }, + { file: 'packages/react-components/react-drawer/src/DrawerFooter.ts', hash: '5695661765252072865' }, + { file: 'packages/react-components/react-drawer/src/DrawerHeader.ts', hash: '13535607987439298798' }, + { file: 'packages/react-components/react-drawer/src/DrawerHeaderNavigation.ts', hash: '6953221975415457948' }, + { file: 'packages/react-components/react-drawer/src/DrawerHeaderTitle.ts', hash: '16108223116441377991' }, + { file: 'packages/react-components/react-drawer/src/InlineDrawer.ts', hash: '3467980062468343437' }, + { file: 'packages/react-components/react-drawer/src/OverlayDrawer.ts', hash: '6005987632714369128' }, + { + file: 'packages/react-components/react-drawer/src/components/Drawer/Drawer.cy.tsx', + hash: '9976548186562610025', + }, + { + file: 'packages/react-components/react-drawer/src/components/Drawer/Drawer.test.tsx', + hash: '3258138558465537535', + }, + { file: 'packages/react-components/react-drawer/src/components/Drawer/Drawer.tsx', hash: '14189538430868974037' }, + { + file: 'packages/react-components/react-drawer/src/components/Drawer/Drawer.types.ts', + hash: '7596568606038435688', + }, + { file: 'packages/react-components/react-drawer/src/components/Drawer/index.ts', hash: '8903003969802349622' }, + { + file: 'packages/react-components/react-drawer/src/components/Drawer/renderDrawer.tsx', + hash: '1962203168411743376', + }, + { + file: 'packages/react-components/react-drawer/src/components/Drawer/useDrawer.ts', + hash: '16023591426944063555', + }, + { + file: 'packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.styles.ts', + hash: '3440636274415578957', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.cy.tsx', + hash: '14312254338312974357', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.test.tsx', + hash: '11124466918374216574', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.tsx', + hash: '9899299681699977181', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.types.ts', + hash: '5970414215130956080', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerBody/index.ts', + hash: '2213989776887775833', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerBody/renderDrawerBody.tsx', + hash: '12051762259788356439', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerBody/useDrawerBody.ts', + hash: '5951737292486433185', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerBody/useDrawerBodyStyles.styles.ts', + hash: '14117735045889604548', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.cy.tsx', + hash: '4176957745829325863', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.test.tsx', + hash: '6315412814367390570', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.tsx', + hash: '10474972272773722473', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.types.ts', + hash: '1254037035957768607', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerFooter/index.ts', + hash: '2668743984619182660', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerFooter/renderDrawerFooter.tsx', + hash: '2364940287036197384', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerFooter/useDrawerFooter.ts', + hash: '2629575781960125765', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerFooter/useDrawerFooterStyles.styles.ts', + hash: '14195586442062588538', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.cy.tsx', + hash: '2720505955624318008', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.test.tsx', + hash: '13287733185764092304', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.tsx', + hash: '15198858964118093034', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.types.ts', + hash: '1981631250559778022', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeader/index.ts', + hash: '14935830325701069661', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeader/renderDrawerHeader.tsx', + hash: '8637027449203313542', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeader/useDrawerHeader.ts', + hash: '5439588260000478116', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeader/useDrawerHeaderStyles.styles.ts', + hash: '3600667656694694657', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.cy.tsx', + hash: '6842686981357806109', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.test.tsx', + hash: '286593939728550244', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.tsx', + hash: '13907663498001911842', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.types.ts', + hash: '15748492738947212670', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/index.ts', + hash: '16525415580323529597', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/renderDrawerHeaderNavigation.tsx', + hash: '2030483516903315656', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/useDrawerHeaderNavigation.ts', + hash: '3714757292895032918', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/useDrawerHeaderNavigationStyles.styles.ts', + hash: '14688416647222067346', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.cy.tsx', + hash: '4874390888203798273', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.test.tsx', + hash: '4659425440310179178', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.tsx', + hash: '9759918053055998438', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.types.ts', + hash: '6708213319646751915', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/index.ts', + hash: '553152765299639280', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/renderDrawerHeaderTitle.tsx', + hash: '2880605945908819152', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/useDrawerHeaderTitle.ts', + hash: '16962668464797352460', + }, + { + file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/useDrawerHeaderTitleStyles.styles.ts', + hash: '4462460874600345803', + }, + { + file: 'packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.cy.tsx', + hash: '10935299378541551079', + }, + { + file: 'packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.test.tsx', + hash: '5459550878774982041', + }, + { + file: 'packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.tsx', + hash: '2316461845720527923', + }, + { + file: 'packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.types.ts', + hash: '12211214710166012354', + }, + { + file: 'packages/react-components/react-drawer/src/components/InlineDrawer/index.ts', + hash: '12743325615369778070', + }, + { + file: 'packages/react-components/react-drawer/src/components/InlineDrawer/renderInlineDrawer.tsx', + hash: '12410200335359328618', + }, + { + file: 'packages/react-components/react-drawer/src/components/InlineDrawer/useInlineDrawer.ts', + hash: '7131000520997258422', + }, + { + file: 'packages/react-components/react-drawer/src/components/InlineDrawer/useInlineDrawerStyles.styles.ts', + hash: '3573487867951650531', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.cy.tsx', + hash: '8908117202890831376', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.test.tsx', + hash: '4147783508785600839', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.tsx', + hash: '15373047995135411071', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.types.ts', + hash: '193052991178562131', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.tsx', + hash: '5497055863831459516', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.types.ts', + hash: '14701729419117754100', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/index.ts', + hash: '9425620489322803056', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/useOverlayDrawerSurfaceStyles.styles.ts', + hash: '4555814239666234639', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/index.ts', + hash: '17879692229770633251', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/renderOverlayDrawer.tsx', + hash: '2556628436156881064', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/useOverlayDrawer.ts', + hash: '7605551203464800685', + }, + { + file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/useOverlayDrawerStyles.styles.ts', + hash: '10580201821703971096', + }, + { file: 'packages/react-components/react-drawer/src/e2e/DrawerShared.tsx', hash: '936115772091026838' }, + { file: 'packages/react-components/react-drawer/src/index.ts', hash: '775526746411328515' }, + { file: 'packages/react-components/react-drawer/src/shared/DrawerBase.types.ts', hash: '11496680792337184124' }, + { + file: 'packages/react-components/react-drawer/src/shared/useDrawerBaseStyles.styles.ts', + hash: '16702909432180860514', + }, + { + file: 'packages/react-components/react-drawer/src/shared/useDrawerDefaultProps.ts', + hash: '12462017753033126715', + }, + { file: 'packages/react-components/react-drawer/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerAlwaysOpen.stories.tsx', + hash: '17441129776678279830', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerBestPractices.md', + hash: '8576535028433213605', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerCustomSize.stories.tsx', + hash: '12659231673979654430', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerDefault.stories.tsx', + hash: '6085860333003416708', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerDescription.md', + hash: '9808324706794076649', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerMotionCustom.stories.tsx', + hash: '9523834993317055105', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerMotionDisabled.stories.tsx', + hash: '13839616447163935751', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerMultipleLevels.stories.tsx', + hash: '9540883675482678570', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerPosition.stories.tsx', + hash: '2394237202950561636', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerPreventClose.stories.tsx', + hash: '11771866130608760234', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerResizable.stories.tsx', + hash: '3845362180623033104', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerResponsive.stories.tsx', + hash: '3565589653073552824', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerSeparator.stories.tsx', + hash: '12197121116589288703', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerSize.stories.tsx', + hash: '6072210477412842010', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerWithNavigation.stories.tsx', + hash: '17182879587578834946', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerWithScroll.stories.tsx', + hash: '17078029246368551938', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/DrawerWithTitle.stories.tsx', + hash: '10695556627122993750', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/InlineDrawer.stories.tsx', + hash: '7668429865114850623', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/OverlayDrawer.stories.tsx', + hash: '5354320336788476906', + }, + { + file: 'packages/react-components/react-drawer/stories/Drawer/OverlayDrawerNoModal.stories.tsx', + hash: '10703118439062497997', + }, + { file: 'packages/react-components/react-drawer/stories/Drawer/index.stories.tsx', hash: '13012963814919023462' }, + { file: 'packages/react-components/react-drawer/tsconfig.cy.json', hash: '18261064269935263965' }, + { file: 'packages/react-components/react-drawer/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-drawer/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-drawer/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/monaco-editor': [ + { file: 'packages/monaco-editor/.eslintrc.json', hash: '16401897427305223968' }, + { file: 'packages/monaco-editor/.npmignore', hash: '1899321021843931458' }, + { file: 'packages/monaco-editor/CHANGELOG.json', hash: '15516623440398366724' }, + { file: 'packages/monaco-editor/CHANGELOG.md', hash: '5240386572839593668' }, + { file: 'packages/monaco-editor/LICENSE', hash: '15366233199009037529' }, + { file: 'packages/monaco-editor/README.md', hash: '5047488952633449612' }, + { file: 'packages/monaco-editor/config/pre-copy.json', hash: '2815249492915298685' }, + { file: 'packages/monaco-editor/just.config.ts', hash: '2285251981020918959' }, + { + file: 'packages/monaco-editor/package.json', + hash: '11766581813993022377', + deps: [ + 'npm:@microsoft/load-themed-styles', + 'npm:tslib', + '@fluentui/eslint-plugin', + 'npm:monaco-editor', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/monaco-editor/project.json', hash: '12676125939877011820' }, + { file: 'packages/monaco-editor/scripts/addMonacoWebpackConfig.js', hash: '568918676415136703' }, + { file: 'packages/monaco-editor/src/configureEnvironment.ts', hash: '10685711845254021009' }, + { file: 'packages/monaco-editor/src/monacoBundle.ts', hash: '14849047751141537856' }, + { file: 'packages/monaco-editor/src/monacoCoreBundle.ts', hash: '10703107346378158529' }, + { file: 'packages/monaco-editor/tasks/transformCssTask.ts', hash: '15488444608261061401' }, + { file: 'packages/monaco-editor/tsconfig.json', hash: '14351017736851024254' }, + ], + '@fluentui/react-cards': [ + { file: 'packages/react-cards/.eslintrc.json', hash: '16931605920801268830' }, + { file: 'packages/react-cards/.npmignore', hash: '17767374615507000718' }, + { file: 'packages/react-cards/.npmrc', hash: '12117094813882964499' }, + { file: 'packages/react-cards/CHANGELOG.json', hash: '3202147163405935073' }, + { file: 'packages/react-cards/CHANGELOG.md', hash: '8747396549153497235' }, + { file: 'packages/react-cards/LICENSE', hash: '6253960424893387650' }, + { file: 'packages/react-cards/README.md', hash: '3477479143146211668' }, + { file: 'packages/react-cards/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/react-cards/config/tests.js', hash: '13209895427940926327' }, + { file: 'packages/react-cards/etc/react-cards.api.md', hash: '16727656835047585474' }, + { file: 'packages/react-cards/jest.config.js', hash: '8193037916930093299' }, + { file: 'packages/react-cards/just.config.ts', hash: '1545929909583215690' }, + { + file: 'packages/react-cards/package.json', + hash: '16789738612353226731', + deps: [ + '@fluentui/react', + '@fluentui/foundation-legacy', + '@fluentui/set-version', + 'npm:@microsoft/load-themed-styles', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/jest-serializer-merge-styles', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-cards/project.json', hash: '16529944636819246352' }, + { file: 'packages/react-cards/src/Card.ts', hash: '18296053792853651864' }, + { file: 'packages/react-cards/src/components/Card/Card.styles.ts', hash: '4685103703702010267' }, + { file: 'packages/react-cards/src/components/Card/Card.ts', hash: '1929423536789811973' }, + { file: 'packages/react-cards/src/components/Card/Card.types.ts', hash: '10662042676040928081' }, + { file: 'packages/react-cards/src/components/Card/Card.view.test.tsx', hash: '2651085214474441422' }, + { file: 'packages/react-cards/src/components/Card/Card.view.tsx', hash: '9706861711378212277' }, + { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.styles.ts', hash: '11849349042222325569' }, + { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.test.tsx', hash: '5993415043714882287' }, + { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.ts', hash: '13327635575716341322' }, + { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.types.ts', hash: '7220844002946880497' }, + { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.view.tsx', hash: '11750096245423007155' }, + { + file: 'packages/react-cards/src/components/Card/CardItem/__snapshots__/CardItem.test.tsx.snap', + hash: '14582495706397215933', + }, + { + file: 'packages/react-cards/src/components/Card/CardSection/CardSection.styles.ts', + hash: '9502018824459970625', + }, + { + file: 'packages/react-cards/src/components/Card/CardSection/CardSection.test.tsx', + hash: '8362349948071743185', + }, + { file: 'packages/react-cards/src/components/Card/CardSection/CardSection.ts', hash: '14518757228773854290' }, + { + file: 'packages/react-cards/src/components/Card/CardSection/CardSection.types.ts', + hash: '6877821299742157632', + }, + { + file: 'packages/react-cards/src/components/Card/CardSection/CardSection.view.tsx', + hash: '10937983149567166874', + }, + { + file: 'packages/react-cards/src/components/Card/CardSection/__snapshots__/CardSection.test.tsx.snap', + hash: '9695464788230094255', + }, + { + file: 'packages/react-cards/src/components/Card/__snapshots__/Card.view.test.tsx.snap', + hash: '12038355267061100924', + }, + { file: 'packages/react-cards/src/components/Card/index.ts', hash: '14729802027828598904' }, + { file: 'packages/react-cards/src/index.ts', hash: '8179513586981371037' }, + { file: 'packages/react-cards/src/version.ts', hash: '389976962689502133' }, + { file: 'packages/react-cards/tsconfig.json', hash: '15516134720009168635' }, + { file: 'packages/react-cards/webpack.config.js', hash: '17634613195548132917' }, + ], + '@fluentui/styles': [ + { file: 'packages/fluentui/styles/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/styles/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/styles/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/styles/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/styles/jest.config.js', hash: '15647476349875375422' }, + { + file: 'packages/fluentui/styles/package.json', + hash: '11071553275048489771', + deps: [ + 'npm:@babel/runtime', + 'npm:csstype', + 'npm:lodash', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:lerna-alias', + ], + }, + { file: 'packages/fluentui/styles/project.json', hash: '17384367070850273645' }, + { file: 'packages/fluentui/styles/src/callable.ts', hash: '14898759116337720669' }, + { file: 'packages/fluentui/styles/src/createTheme.ts', hash: '12329304854575333027' }, + { file: 'packages/fluentui/styles/src/debugEnabled.ts', hash: '260520645944752742' }, + { file: 'packages/fluentui/styles/src/deepmerge.ts', hash: '2446057837788726932' }, + { file: 'packages/fluentui/styles/src/index.ts', hash: '13730197638323966220' }, + { file: 'packages/fluentui/styles/src/mergeThemes.ts', hash: '16347750142281054157' }, + { file: 'packages/fluentui/styles/src/objectKeysToValues.ts', hash: '7930115653642188401' }, + { file: 'packages/fluentui/styles/src/types.ts', hash: '3955806072566441450' }, + { file: 'packages/fluentui/styles/src/withDebugId.ts', hash: '6145826506046863525' }, + { file: 'packages/fluentui/styles/test/deepmerge-test.ts', hash: '16642574076278537669' }, + { file: 'packages/fluentui/styles/test/mergeThemes/mergeComponentStyles-test.ts', hash: '98280428890954350' }, + { + file: 'packages/fluentui/styles/test/mergeThemes/mergeComponentVariables-test.ts', + hash: '13200727275279230669', + }, + { file: 'packages/fluentui/styles/test/mergeThemes/mergeFontFaces-test.ts', hash: '16551537175877227090' }, + { file: 'packages/fluentui/styles/test/mergeThemes/mergeSiteVariables-test.ts', hash: '10628393023615026415' }, + { file: 'packages/fluentui/styles/test/mergeThemes/mergeStaticStyles-test.ts', hash: '6893282198271389648' }, + { file: 'packages/fluentui/styles/test/mergeThemes/mergeThemeVariables-test.ts', hash: '10108992874118614309' }, + { file: 'packages/fluentui/styles/test/mergeThemes/mergeThemes-test.ts', hash: '2201778227520253577' }, + { file: 'packages/fluentui/styles/test/objectKeysToValues-test.ts', hash: '13631092081735629577' }, + { file: 'packages/fluentui/styles/tsconfig.json', hash: '6941511733406172219' }, + ], + '@fluentui/react-northstar-fela-renderer': [ + { file: 'packages/fluentui/react-northstar-fela-renderer/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-northstar-fela-renderer/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-northstar-fela-renderer/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-northstar-fela-renderer/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-northstar-fela-renderer/jest.config.js', hash: '5879943202201643412' }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/package.json', + hash: '18253410728196785871', + deps: [ + 'npm:@babel/runtime', + '@fluentui/react-northstar-styles-renderer', + '@fluentui/styles', + 'npm:css-in-js-utils', + 'npm:fela', + 'npm:fela-dom', + 'npm:fela-plugin-embedded', + 'npm:fela-plugin-fallback-value', + 'npm:fela-plugin-placeholder-prefixer', + 'npm:fela-plugin-rtl', + 'npm:fela-tools', + 'npm:fela-utils', + 'npm:inline-style-expand-shorthand', + 'npm:lodash', + 'npm:stylis', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:lerna-alias', + 'npm:react-fela', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-northstar-fela-renderer/project.json', hash: '7529833180970546709' }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/RendererProvider.tsx', + hash: '15292973742708445201', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/createFelaRenderer.tsx', + hash: '14134932690113469333', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/felaDisableAnimationsPlugin.ts', + hash: '5106913408155805634', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/felaExpandCssShorthandsPlugin.ts', + hash: '12364266764064975304', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/felaFocusVisibleEnhancer.ts', + hash: '3489409456963574353', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/felaInvokeKeyframesPlugin.ts', + hash: '13086869777306745688', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/felaPerformanceEnhancer.ts', + hash: '8934157626271065107', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/felaSanitizeCssPlugin.ts', + hash: '1128726876603739196', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/src/felaStylisEnhancer.ts', + hash: '8281562568320323558', + }, + { file: 'packages/fluentui/react-northstar-fela-renderer/src/index.ts', hash: '3768293676213746420' }, + { file: 'packages/fluentui/react-northstar-fela-renderer/src/types.ts', hash: '1872083320472232584' }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/test/__snapshots__/felaFocusVisibleEnhancer-test.ts.snap', + hash: '4974099359602810550', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/test/__snapshots__/felaRenderer-test.tsx.snap', + hash: '457621670829538595', + }, + { file: 'packages/fluentui/react-northstar-fela-renderer/test/consoleUtil.ts', hash: '11997294564447184338' }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/test/felaDisableAnimationsPlugin-test.ts', + hash: '16412109138465579885', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/test/felaExpandCssShorthandsPlugin-test.ts', + hash: '12816623850070173611', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/test/felaFocusVisibleEnhancer-test.ts', + hash: '1019784981095022855', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/test/felaInvokeKeyframesPlugin-test.ts', + hash: '6460114641417994686', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/test/felaRenderer-test.tsx', + hash: '10647218092623789302', + }, + { + file: 'packages/fluentui/react-northstar-fela-renderer/test/felaSanitizeCssPlugin-test.ts', + hash: '6683618071771223667', + }, + { file: 'packages/fluentui/react-northstar-fela-renderer/tsconfig.json', hash: '4544399996272942243' }, + ], + '@fluentui/react-northstar-prototypes': [ + { file: 'packages/fluentui/react-northstar-prototypes/.eslintrc.json', hash: '3016770829865385537' }, + { file: 'packages/fluentui/react-northstar-prototypes/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-northstar-prototypes/README.md', hash: '9816779029527592217' }, + { file: 'packages/fluentui/react-northstar-prototypes/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-northstar-prototypes/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/react-northstar-prototypes/package.json', + hash: '16036884325989784037', + deps: [ + 'npm:@babel/runtime', + '@fluentui/accessibility', + '@fluentui/code-sandbox', + '@fluentui/docs-components', + '@fluentui/react-bindings', + '@fluentui/react-component-event-listener', + '@fluentui/react-component-ref', + '@fluentui/react-icons-northstar', + '@fluentui/react-northstar', + 'npm:classnames', + 'npm:copy-to-clipboard', + 'npm:csstype', + 'npm:faker', + 'npm:formik', + 'npm:lodash', + 'npm:moment', + 'npm:react-custom-scrollbars', + 'npm:react-document-title', + 'npm:react-dom', + 'npm:react-hook-form', + 'npm:react-textarea-autosize', + 'npm:react-virtualized', + 'npm:react-window', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + 'npm:@types/classnames', + 'npm:@types/faker', + 'npm:@types/react-custom-scrollbars', + 'npm:@types/react-virtualized', + 'npm:@types/react-window', + 'npm:react', + ], + }, + { file: 'packages/fluentui/react-northstar-prototypes/project.json', hash: '6886430218315295405' }, + { file: 'packages/fluentui/react-northstar-prototypes/src/index.ts', hash: '15523276757469001647' }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/AsyncShorthand/AsyncShorthand.tsx', + hash: '4666694168826124059', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/AsyncShorthand/index.ts', + hash: '16572492250719503250', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/CopyToClipboard.tsx', + hash: '16139491727209802991', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/NotificationProvider.tsx', + hash: '2013404344230368604', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/index.tsx', + hash: '8498148850336520649', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/themeOverrides.ts', + hash: '12351912667975777465', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/EditorToolbar.tsx', + hash: '5151494454522358996', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/EditorToolbarTable.tsx', + hash: '3640519683252577060', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/PortalWindow.tsx', + hash: '5792280337595091743', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/editorToolbarReducer.ts', + hash: '9583114788120990687', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/index.tsx', + hash: '7397171196134146399', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/FormHooks.tsx', + hash: '2494698095444226618', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/Formik.tsx', + hash: '9102962171879800100', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/index.tsx', + hash: '7274259884984694722', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/Menu.tsx', + hash: '8629232587523790782', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuButton.tsx', + hash: '9006084202427548109', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuItem.tsx', + hash: '13103428700998832060', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuList.tsx', + hash: '2487141510217772541', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuTrigger.tsx', + hash: '10976183634001532481', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/index.tsx', + hash: '18332154448991086610', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/menuContext.ts', + hash: '17782320631648149413', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/menuListContext.tsx', + hash: '14993198406917925287', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/NestedPopupsAndDialogs/index.tsx', + hash: '1786212070449744493', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/ParticipantsList/index.tsx', + hash: '11122842396313230268', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Prototypes.tsx', + hash: '11002418107785047261', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/animations.tsx', + hash: '8011321726213482462', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/index.tsx', + hash: '9750242519854799147', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/participant.tsx', + hash: '1908497880154833078', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/participantData.tsx', + hash: '16995079246413273861', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/presentersData.tsx', + hash: '11413443463145832458', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/styles.tsx', + hash: '8681317249512926709', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/SearchPage/SearchPage.tsx', + hash: '10043146942965451830', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/SearchPage/index.ts', + hash: '5111008576834445045', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/TextAreaAutoSize/TextAreaAutoResize.tsx', + hash: '5899564604445925894', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/TextAreaAutoSize/index.tsx', + hash: '12960044669039013142', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/VirtualStickyTree.tsx', + hash: '18312785735105369972', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/VirtualStickyTreePrototype.tsx', + hash: '15487238422160188716', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/index.tsx', + hash: '9119716162571119978', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/itemsGenerator.ts', + hash: '13610599499519671039', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/VirtualizedTable.tsx', + hash: '15908692109639964535', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/VirtualizedTables.tsx', + hash: '5363058945850172332', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/index.tsx', + hash: '1129921799744469312', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/itemsGenerator.ts', + hash: '7508346131761412752', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/VirtualTree.tsx', + hash: '3954137309594916393', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/VirtualTreePrototype.tsx', + hash: '7421258757962426229', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/index.tsx', + hash: '2218309949858402834', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/itemsGenerator.ts', + hash: '15771527193717335030', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/AnimatedBannerAlert.tsx', + hash: '17051906888739797582', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/BannerAlerts.tsx', + hash: '164096548589224380', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/index.tsx', + hash: '542944501762417749', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/ChatWithPopover.tsx', + hash: '7719768216659998424', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/Popover.tsx', + hash: '7110368926253847972', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/ReactionPopup.tsx', + hash: '1809282408748721844', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/index.tsx', + hash: '2363228290761620536', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/ControlMessage.tsx', + hash: '9083963234031169891', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/GroupControlMessages.tsx', + hash: '15712001723372243367', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/controlMessagesGroupBehavior.ts', + hash: '363546636055422204', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/index.tsx', + hash: '8124578659080196615', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/mockData.tsx', + hash: '13929098419252934815', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ImportantAndMentionMessages/index.tsx', + hash: '7229266695634489078', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ScreenReaderHeaderText.tsx', + hash: '10353957772979700593', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadReplies.tsx', + hash: '1942287349317638581', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadReplyEditor.tsx', + hash: '9957383241598274658', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadedMessage.tsx', + hash: '7837775770648961687', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/classNames.ts', + hash: '3650699319544402311', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/index.tsx', + hash: '7871235040883754343', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/mockData.tsx', + hash: '14452775535735897762', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/repliesButtonBehavior.ts', + hash: '12128219743725138914', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/theme.tsx', + hash: '11066989221639267136', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/threadChatBehavior.ts', + hash: '1441781496556702753', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/threadedMessageBehavior.ts', + hash: '3858861000785802665', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/index.tsx', + hash: '9449896320086879311', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneContent.tsx', + hash: '6658772003455648363', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneHeader.tsx', + hash: '643323282552019782', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneLayout.tsx', + hash: '14116176100758089028', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatProtoStyle.ts', + hash: '475572491409726938', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/composeMessage.tsx', + hash: '12541651470084120461', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/index.tsx', + hash: '163284684608788454', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/dataMock.ts', + hash: '11566122887388108984', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/dateUtils.ts', + hash: '9986525303334363468', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/index.ts', + hash: '9049264600443968590', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/messageFactoryMock.tsx', + hash: '14942065203643453962', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/types.ts', + hash: '14861415723836622381', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshSimple.tsx', + hash: '13663591883845115261', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshStressTest.tsx', + hash: '15770991472046356681', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshTimestampTooltip.tsx', + hash: '17200046557466620008', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/index.tsx', + hash: '6314076623887472756', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatErrorState.tsx', + hash: '8306663112845027098', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatSlots.tsx', + hash: '15622079419906473134', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithAuthor.tsx', + hash: '10933173294027489801', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithBadges.tsx', + hash: '10067159577153996227', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithDetails.tsx', + hash: '12176481734681230005', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithReactions.tsx', + hash: '12675957219152936570', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithReadReceipts.tsx', + hash: '8201566125102339683', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/compactAvatars.ts', + hash: '11621426604052727034', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/index.tsx', + hash: '4222694708370470229', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customScrollbar/index.tsx', + hash: '16423493249816236908', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/CustomToolbar.tsx', + hash: '14798705590211106914', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/darkThemeOverrides.ts', + hash: '1765730341598063989', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/highContrastThemeOverrides.ts', + hash: '7341831179174477997', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/index.tsx', + hash: '3818480630864383081', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/dropdowns/AsyncDropdownSearch.tsx', + hash: '4245437456080655048', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/dropdowns/index.tsx', + hash: '10504698972700931271', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/AvatarEmployeeCard.tsx', + hash: '18080501605845941120', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/CustomText.tsx', + hash: '15147690821457289889', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/EmployeeCard.tsx', + hash: '17647767873511892219', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/index.tsx', + hash: '12239498765757344987', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/hexagonalAvatar/CustomAvatar.tsx', + hash: '5584088432540470900', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/hexagonalAvatar/index.tsx', + hash: '8379883381403321309', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsFooter.tsx', + hash: '4813121796634612750', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsHeader.tsx', + hash: '7945036494904555092', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsLink.tsx', + hash: '15822692067236061508', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsLogo.tsx', + hash: '15193117497529466118', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsMeetingOptions.tsx', + hash: '5195077200654195155', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/TransparentDivider.tsx', + hash: '11355458298767631749', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/index.tsx', + hash: '8044441448311472388', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/styles.ts', + hash: '6968770458826471464', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/MentionsDropdown.tsx', + hash: '8803027406609593843', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/MentionsEditor.tsx', + hash: '10665932680699585384', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/PortalAtCursorPosition.ts', + hash: '15136805012626452053', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/dataMocks.ts', + hash: '3503103682131204402', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/index.tsx', + hash: '33233848936932089', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/utils.ts', + hash: '11455328573947869477', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/GridImagePicker/GridImagePicker.tsx', + hash: '5931266799517865445', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/GridImagePicker/GridImagePickerItem.tsx', + hash: '2326425296192747302', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/dataMocks.ts', + hash: '16378935872851174954', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/emojiPicker.tsx', + hash: '17257330712623278054', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/index.tsx', + hash: '3156365344886310754', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/stickerPicker.tsx', + hash: '16248346637506964495', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/AdvancedTable.tsx', + hash: '13074602433465138810', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/InteractiveTable.tsx', + hash: '17153306276689477036', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/ResponsiveTableContainer.tsx', + hash: '4594526012647494857', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/SelectableTable.tsx', + hash: '2077966948058956818', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/calculateBreakpoints.ts', + hash: '17045471959855509527', + }, + { + file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/index.tsx', + hash: '13735701997417262705', + }, + { file: 'packages/fluentui/react-northstar-prototypes/tsconfig.json', hash: '253585536554020032' }, + ], + '@fluentui/react-timepicker-compat-preview': [ + { file: 'packages/react-components/react-timepicker-compat-preview/.babelrc.json', hash: '18339585439895240691' }, + { + file: 'packages/react-components/react-timepicker-compat-preview/.eslintrc.json', + hash: '11822209983446579696', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/.storybook/main.js', + hash: '11617744840349284164', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/.storybook/preview.js', + hash: '1791378012295456991', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-timepicker-compat-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-timepicker-compat-preview/CHANGELOG.json', hash: '7443897928512652454' }, + { file: 'packages/react-components/react-timepicker-compat-preview/CHANGELOG.md', hash: '10288519529322773910' }, + { file: 'packages/react-components/react-timepicker-compat-preview/LICENSE', hash: '16008528871596961028' }, + { file: 'packages/react-components/react-timepicker-compat-preview/README.md', hash: '1809579314509941543' }, + { + file: 'packages/react-components/react-timepicker-compat-preview/bundle-size/TimePicker.fixture.js', + hash: '14241624297653717010', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/config/api-extractor.json', + hash: '124052868224837692', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/config/tests.js', + hash: '16913843724990866890', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/cypress.config.ts', + hash: '17230281421398791592', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/docs/Migration.md', + hash: '4021833649227823482', + }, + { file: 'packages/react-components/react-timepicker-compat-preview/docs/Spec.md', hash: '8635174822444888522' }, + { + file: 'packages/react-components/react-timepicker-compat-preview/etc/react-timepicker-compat-preview.api.md', + hash: '10410088753599407092', + }, + { file: 'packages/react-components/react-timepicker-compat-preview/jest.config.js', hash: '9766146148654026096' }, + { file: 'packages/react-components/react-timepicker-compat-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-timepicker-compat-preview/package.json', + hash: '18075287189948415372', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-combobox', + '@fluentui/react-field', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-timepicker-compat-preview/project.json', hash: '11623526912155252897' }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/TimePicker.ts', + hash: '8919003633615161634', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.cy.tsx', + hash: '2268766357020981108', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.test.tsx', + hash: '4625180512860312676', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.tsx', + hash: '6856338812317042222', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.types.ts', + hash: '16705913128014134642', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/index.ts', + hash: '14317002683791819993', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/timeMath.test.ts', + hash: '9610495087449809696', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/timeMath.ts', + hash: '16427594297458443598', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/useTimePicker.tsx', + hash: '10101090423944398224', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/useTimePickerStyles.styles.ts', + hash: '9323957650113310013', + }, + { file: 'packages/react-components/react-timepicker-compat-preview/src/index.ts', hash: '15110596364222141948' }, + { + file: 'packages/react-components/react-timepicker-compat-preview/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerBestPractices.md', + hash: '4715016281428560167', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerControlled.md', + hash: '4542577073511108011', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerControlled.stories.tsx', + hash: '14159446324711651597', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerDefault.stories.tsx', + hash: '3866129310777451618', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerDescription.md', + hash: '6543020975323479896', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformCustomParsing.md', + hash: '8328212493981358431', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformCustomParsing.stories.tsx', + hash: '13973002934670696970', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformWithErrorHandling.md', + hash: '9839268275704554451', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformWithErrorHandling.stories.tsx', + hash: '4213027057161624603', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerWithDatePicker.stories.tsx', + hash: '11484153653506326666', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/index.stories.tsx', + hash: '2147694366172160105', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/tsconfig.cy.json', + hash: '7215147373970103512', + }, + { file: 'packages/react-components/react-timepicker-compat-preview/tsconfig.json', hash: '5326137440511234645' }, + { + file: 'packages/react-components/react-timepicker-compat-preview/tsconfig.lib.json', + hash: '8117551715541039118', + }, + { + file: 'packages/react-components/react-timepicker-compat-preview/tsconfig.spec.json', + hash: '6114153871167405290', + }, + ], + '@fluentui/react-conformance-griffel': [ + { file: 'packages/react-components/react-conformance-griffel/.babelrc.json', hash: '8174012058119950495' }, + { file: 'packages/react-components/react-conformance-griffel/.eslintrc.json', hash: '11018738359270224912' }, + { file: 'packages/react-components/react-conformance-griffel/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-conformance-griffel/CHANGELOG.json', hash: '1599448451519957366' }, + { file: 'packages/react-components/react-conformance-griffel/CHANGELOG.md', hash: '15963932008129979815' }, + { file: 'packages/react-components/react-conformance-griffel/LICENSE', hash: '9276497511127924988' }, + { file: 'packages/react-components/react-conformance-griffel/README.md', hash: '17310260780896769631' }, + { + file: 'packages/react-components/react-conformance-griffel/config/api-extractor.json', + hash: '124052868224837692', + }, + { file: 'packages/react-components/react-conformance-griffel/config/tests.js', hash: '16913843724990866890' }, + { + file: 'packages/react-components/react-conformance-griffel/etc/react-conformance-griffel.api.md', + hash: '17760332850409220085', + }, + { file: 'packages/react-components/react-conformance-griffel/jest.config.js', hash: '15227294323143014741' }, + { file: 'packages/react-components/react-conformance-griffel/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-conformance-griffel/package.json', + hash: '13528663482705912139', + deps: [ + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:typescript', + ], + }, + { file: 'packages/react-components/react-conformance-griffel/project.json', hash: '13900267515539558779' }, + { file: 'packages/react-components/react-conformance-griffel/src/index.ts', hash: '7791951983184089960' }, + { + file: 'packages/react-components/react-conformance-griffel/src/matchers/index.ts', + hash: '12326396871232725303', + }, + { + file: 'packages/react-components/react-conformance-griffel/src/matchers/toContainClassNameLastInCalls.test.ts', + hash: '8633457890093301366', + }, + { + file: 'packages/react-components/react-conformance-griffel/src/matchers/toContainClassNameLastInCalls.ts', + hash: '419654042826238667', + }, + { + file: 'packages/react-components/react-conformance-griffel/src/matchers/toHaveMergeClassesCalledTimesWithClassName.test.ts', + hash: '17095451530468328915', + }, + { + file: 'packages/react-components/react-conformance-griffel/src/matchers/toHaveMergeClassesCalledTimesWithClassName.ts', + hash: '10742531573460176078', + }, + { file: 'packages/react-components/react-conformance-griffel/src/overridesWin.ts', hash: '5177685846648410797' }, + { file: 'packages/react-components/react-conformance-griffel/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/react-conformance-griffel/tsconfig.lib.json', hash: '13650566283900444399' }, + { file: 'packages/react-components/react-conformance-griffel/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-progress': [ + { file: 'packages/react-components/react-progress/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-progress/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-progress/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-progress/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-progress/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-progress/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-progress/CHANGELOG.json', hash: '9943518116241887368' }, + { file: 'packages/react-components/react-progress/CHANGELOG.md', hash: '2919392667075419280' }, + { file: 'packages/react-components/react-progress/LICENSE', hash: '14720059712718439480' }, + { file: 'packages/react-components/react-progress/README.md', hash: '13443295487418840260' }, + { + file: 'packages/react-components/react-progress/bundle-size/ProgressBar.fixture.js', + hash: '15597136298352513674', + }, + { file: 'packages/react-components/react-progress/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-progress/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-progress/docs/MIGRATION.md', hash: '17724398627946676243' }, + { file: 'packages/react-components/react-progress/docs/Spec.md', hash: '438580243654009753' }, + { file: 'packages/react-components/react-progress/etc/react-progress.api.md', hash: '2044101360763309253' }, + { file: 'packages/react-components/react-progress/jest.config.js', hash: '15037937544956502248' }, + { file: 'packages/react-components/react-progress/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-progress/package.json', + hash: '11790477356992419563', + deps: [ + '@fluentui/react-field', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-progress/project.json', hash: '5040085670575357633' }, + { file: 'packages/react-components/react-progress/src/ProgressBar.ts', hash: '364130850726833580' }, + { + file: 'packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.test.tsx', + hash: '14575183606779621510', + }, + { + file: 'packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.tsx', + hash: '4512060500927164739', + }, + { + file: 'packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.types.ts', + hash: '9316131922315655010', + }, + { + file: 'packages/react-components/react-progress/src/components/ProgressBar/index.ts', + hash: '4919717671078177086', + }, + { + file: 'packages/react-components/react-progress/src/components/ProgressBar/renderProgressBar.tsx', + hash: '11139269590983552304', + }, + { + file: 'packages/react-components/react-progress/src/components/ProgressBar/useProgressBar.tsx', + hash: '17486562887893116895', + }, + { + file: 'packages/react-components/react-progress/src/components/ProgressBar/useProgressBarStyles.styles.ts', + hash: '2415416680026256368', + }, + { file: 'packages/react-components/react-progress/src/index.ts', hash: '1052162520942589490' }, + { file: 'packages/react-components/react-progress/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { file: 'packages/react-components/react-progress/src/utils/clampMax.test.ts', hash: '695087334567732346' }, + { file: 'packages/react-components/react-progress/src/utils/clampMax.ts', hash: '12888234946148193959' }, + { file: 'packages/react-components/react-progress/src/utils/clampValue.test.ts', hash: '5779163804989289991' }, + { file: 'packages/react-components/react-progress/src/utils/clampValue.ts', hash: '16938278361569231669' }, + { file: 'packages/react-components/react-progress/src/utils/index.ts', hash: '3102189156362851491' }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarBestPractices.md', + hash: '1479531832796336749', + }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarColor.stories.tsx', + hash: '13098706062395114051', + }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarDefault.stories.tsx', + hash: '3754883609787042687', + }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarDescription.md', + hash: '9681824475682879438', + }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarIndeterminate.stories.tsx', + hash: '1451847449685400166', + }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarMax.stories.tsx', + hash: '56730184557657606', + }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarShape.stories.tsx', + hash: '4732385307276466804', + }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarThickness.stories.tsx', + hash: '7152955996834570477', + }, + { + file: 'packages/react-components/react-progress/stories/ProgressBar/index.stories.tsx', + hash: '11861079216936079150', + }, + { file: 'packages/react-components/react-progress/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-progress/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-progress/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/docs': [ + { file: 'packages/fluentui/docs/.eslintrc.json', hash: '1170321389672620885' }, + { file: 'packages/fluentui/docs/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/docs/.storybook/main.js', hash: '12358817451942068777' }, + { file: 'packages/fluentui/docs/.storybook/preview.js', hash: '3982093891370695252' }, + { file: 'packages/fluentui/docs/README.md', hash: '12267980008240015629' }, + { file: 'packages/fluentui/docs/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/docs/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/docs/package.json', + hash: '8290575613183760036', + deps: [ + 'npm:@charlietango/use-script', + '@fluentui/ability-attributes', + '@fluentui/accessibility', + '@fluentui/code-sandbox', + '@fluentui/docs-components', + '@fluentui/react-bindings', + '@fluentui/react-builder', + '@fluentui/react-component-event-listener', + '@fluentui/react-component-ref', + '@fluentui/react-icons-northstar', + '@fluentui/react-northstar', + '@fluentui/react-northstar-emotion-renderer', + '@fluentui/react-northstar-fela-renderer', + '@fluentui/react-northstar-prototypes', + '@fluentui/react-northstar-styles-renderer', + '@fluentui/react-telemetry', + '@fluentui/styles', + 'npm:@mdx-js/react', + 'npm:classnames', + 'npm:color', + 'npm:copy-to-clipboard', + 'npm:csstype', + 'npm:faker', + 'npm:formik', + 'npm:lodash', + 'npm:moment', + 'npm:prop-types', + 'npm:qs', + 'npm:react', + 'npm:react-codesandboxer', + 'npm:react-custom-scrollbars', + 'npm:react-document-title', + 'npm:react-dom', + 'npm:react-hook-form', + 'npm:react-hot-loader', + 'npm:react-markdown', + 'npm:react-router-dom', + 'npm:react-source-render', + 'npm:react-textarea-autosize', + 'npm:react-virtualized', + 'npm:react-vis', + 'npm:react-window', + 'npm:semver', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-storybook', + 'npm:@types/classnames', + 'npm:@types/color', + 'npm:@types/faker', + 'npm:@types/react-custom-scrollbars', + 'npm:@types/react-router-dom', + 'npm:@types/react-virtualized', + 'npm:@types/react-window', + ], + }, + { file: 'packages/fluentui/docs/project.json', hash: '4100322648323751291' }, + { file: 'packages/fluentui/docs/src/404.html', hash: '16925733810327691789' }, + { file: 'packages/fluentui/docs/src/app.tsx', hash: '18133583866406948391' }, + { file: 'packages/fluentui/docs/src/components/CategoryColorSchemes.tsx', hash: '15471500166894313476' }, + { file: 'packages/fluentui/docs/src/components/ColorBox.tsx', hash: '14313769847234351375' }, + { file: 'packages/fluentui/docs/src/components/ColorSchemes.tsx', hash: '3520451365588087548' }, + { file: 'packages/fluentui/docs/src/components/ColorVariants.tsx', hash: '842961233657171499' }, + { file: 'packages/fluentui/docs/src/components/ComponentBestPractices.tsx', hash: '13258213592237770558' }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/BehaviorCard.tsx', hash: '13248919281639354955' }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/BehaviorDescription.tsx', + hash: '11611880834697824134', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentBestPractices.tsx', + hash: '12268344819894559200', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/ComponentBundleSizeChart.tsx', + hash: '5854648503741754888', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/ComponentBundleSizeExample.tsx', + hash: '15384963319034106554', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/index.ts', + hash: '14862062994631854818', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/CodeSnippetIcon.tsx', + hash: '14251722938533789516', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/ComponentControls.tsx', + hash: '9947607547435043640', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/ComponentControlsCopyLink.tsx', + hash: '7333719996921105622', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/index.tsx', + hash: '13908880925817708925', + }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentDoc.tsx', hash: '5520896650160253888' }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentDocAccessibility.tsx', + hash: '14757167341788460626', + }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentDocLinks.tsx', hash: '839836439025932509' }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentDocSee.tsx', hash: '12461586076268291141' }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExample.tsx', + hash: '5514555960395912952', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleColorPicker.tsx', + hash: '7037081424336012966', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleTitle.tsx', + hash: '2105810739355291829', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleVariable.tsx', + hash: '7458209552924434794', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleVariables.tsx', + hash: '8891305186508476923', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/index.tsx', + hash: '2296233322321885223', + }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExamples.tsx', hash: '4233547624388976179' }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentPerfChart.tsx', + hash: '14815322288871573142', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentPerfExample.tsx', + hash: '15847736411030574387', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentResourcesChart.tsx', + hash: '2363646192975627812', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/index.ts', + hash: '1676134879561531313', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropExtra.tsx', + hash: '6838830300296755682', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropFunctionSignature.tsx', + hash: '10792148067626293752', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropName.tsx', + hash: '14551087482273992161', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentPropCard.tsx', + hash: '17734443721751745496', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentProps.tsx', + hash: '8021120662876666781', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentPropsOutline.tsx', + hash: '1812145246479991942', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/index.tsx', + hash: '14760205468189979139', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/ComponentPropsRow.tsx', + hash: '8804751983735030185', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/ComponentPropsTable.tsx', + hash: '3033990319844379436', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/index.tsx', + hash: '15915107543961869783', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/ComponentSourceManager.ts', + hash: '12290598306417344934', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/componentAPIs.ts', + hash: '17725740098421921107', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/getExampleModule.ts', + hash: '1528303749855518129', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/index.ts', + hash: '14841104208504728645', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/ContributionPrompt.tsx', + hash: '3821542561099762451', + }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/ExampleSection.tsx', hash: '9424508500379564987' }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/InlineMarkdown.tsx', hash: '7764978463030319620' }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/LazyWithBabel.tsx', hash: '7266537121864960789' }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/MegaphoneIcon.tsx', hash: '1353394853001713106' }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/NonPublicSection.tsx', hash: '5071796385606465642' }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/BundleSizeChart.tsx', + hash: '1230066324202601264', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/BundleSizeChartTooltip.tsx', + hash: '9294095566216501043', + }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/Chart.tsx', hash: '15073388818411239276' }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ComponentChart.tsx', + hash: '2349492653467491734', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfChart.tsx', + hash: '10722755004997547482', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfChartTooltip.tsx', + hash: '16354879607043443697', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfDataContext.ts', + hash: '17768741877392199555', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfDataProvider.tsx', + hash: '13018281500416904568', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChart.tsx', + hash: '15920626007856751052', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChartTooltip.tsx', + hash: '6613165649107428623', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChartValues.ts', + hash: '7226839342472307850', + }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/index.ts', hash: '2832162539747081776' }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/useBundleSizeData.ts', + hash: '5349831237877493080', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/usePerfData.ts', + hash: '5249215270999363975', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/PrototypePerfControls.tsx', + hash: '9976991334716769425', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/PrototypePerfExample.tsx', + hash: '852200345847239746', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/index.ts', + hash: '4729113650901068359', + }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/SourceRender.tsx', hash: '10553593762698452511' }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/Suggestions.tsx', hash: '18179397695680456104' }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/index.tsx', hash: '7960769531776792410' }, + { + file: 'packages/fluentui/docs/src/components/ComponentDoc/useAccessibilityKnob.ts', + hash: '1885682283062558721', + }, + { file: 'packages/fluentui/docs/src/components/ComponentDoc/useComponentProps.ts', hash: '14616206315160726672' }, + { + file: 'packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlayground.tsx', + hash: '16798864798174922360', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlaygroundSnippet.tsx', + hash: '12726973953832627498', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlaygroundTemplate.tsx', + hash: '12391832860362490896', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentPlayground/componentGenerators.tsx', + hash: '4442013590407697715', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentPlayground/createHookGenerator.ts', + hash: '3350539221678551323', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentPlayground/propGenerators.tsx', + hash: '14831694351072993146', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentPlayground/typeGenerators.ts', + hash: '6837634186526809821', + }, + { + file: 'packages/fluentui/docs/src/components/ComponentPlayground/usePlaygroundComponent.tsx', + hash: '14080850754774097617', + }, + { file: 'packages/fluentui/docs/src/components/DocPage/DocPage.tsx', hash: '2808652576979717110' }, + { file: 'packages/fluentui/docs/src/components/DocPage/index.tsx', hash: '3554578022119957414' }, + { file: 'packages/fluentui/docs/src/components/DocsBehaviorRoot.tsx', hash: '3267577223041500795' }, + { file: 'packages/fluentui/docs/src/components/DocsLayout.tsx', hash: '10910177656516070161' }, + { file: 'packages/fluentui/docs/src/components/DocsRoot.tsx', hash: '15835475100706638555' }, + { file: 'packages/fluentui/docs/src/components/ExampleSnippet/ExampleSnippet.tsx', hash: '7883815714929857953' }, + { file: 'packages/fluentui/docs/src/components/ExampleSnippet/index.ts', hash: '17429250596636602902' }, + { file: 'packages/fluentui/docs/src/components/ExternalExampleLayout.tsx', hash: '1824287292430373603' }, + { file: 'packages/fluentui/docs/src/components/Fader.tsx', hash: '12119643171890670621' }, + { file: 'packages/fluentui/docs/src/components/GuidesNavigationFooter.tsx', hash: '17244329877842186098' }, + { file: 'packages/fluentui/docs/src/components/Icons/CodeSandboxIcon.tsx', hash: '12825871339196808359' }, + { file: 'packages/fluentui/docs/src/components/Icons/GitHubIcon.tsx', hash: '13546583538224460080' }, + { file: 'packages/fluentui/docs/src/components/Logo/Logo.tsx', hash: '13542005493777121336' }, + { file: 'packages/fluentui/docs/src/components/MarkdownPage.tsx', hash: '4953894111157650411' }, + { file: 'packages/fluentui/docs/src/components/Playground/renderConfig.ts', hash: '10431467891315399907' }, + { file: 'packages/fluentui/docs/src/components/Sidebar/Sidebar.tsx', hash: '8581565888016772807' }, + { file: 'packages/fluentui/docs/src/components/Sidebar/SidebarTitle.tsx', hash: '16945465435959960216' }, + { file: 'packages/fluentui/docs/src/components/Sidebar/VersionDropdown.tsx', hash: '12481878360155018358' }, + { file: 'packages/fluentui/docs/src/components/SystemColors.tsx', hash: '12396673138560940111' }, + { file: 'packages/fluentui/docs/src/components/ThemeDropdown.tsx', hash: '14901215571694103867' }, + { + file: 'packages/fluentui/docs/src/components/VariableResolver/VariableResolver.tsx', + hash: '16680318961348211176', + }, + { + file: 'packages/fluentui/docs/src/components/VariableResolver/useClassNamesListener.ts', + hash: '11649694264640734161', + }, + { + file: 'packages/fluentui/docs/src/components/VariableResolver/useEnhancedRenderer.ts', + hash: '15034481148342293240', + }, + { file: 'packages/fluentui/docs/src/config.ts', hash: '6996878476232482390' }, + { file: 'packages/fluentui/docs/src/context/ExampleContext.ts', hash: '10330266777140873919' }, + { file: 'packages/fluentui/docs/src/context/ThemeContext.tsx', hash: '16056950884178562898' }, + { file: 'packages/fluentui/docs/src/contexts/exampleBestPracticesContext.ts', hash: '12541982430198054583' }, + { file: 'packages/fluentui/docs/src/contexts/exampleIndexContext.ts', hash: '3797907133032756872' }, + { file: 'packages/fluentui/docs/src/contexts/examplePlaygroundContext.ts', hash: '17947392003372189775' }, + { file: 'packages/fluentui/docs/src/contexts/exampleSourcesContext.ts', hash: '8034222086074861764' }, + { file: 'packages/fluentui/docs/src/contexts/examplesContext.ts', hash: '12651984967732339594' }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/BestPractices/AccordionBestPractices.tsx', + hash: '14940093359008461823', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Performance/AccordionDefault.bsize.tsx', + hash: '5038944270254129774', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Performance/AccordionMinimal.perf.tsx', + hash: '4523842466251260104', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Performance/index.tsx', + hash: '8866257628355307503', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Rtl/AccordionExample.rtl.tsx', + hash: '1340717939325240012', + }, + { file: 'packages/fluentui/docs/src/examples/components/Accordion/Rtl/index.tsx', hash: '5552494584834402354' }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExample.shorthand.tsx', + hash: '3147689295083767338', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExclusiveExample.shorthand.tsx', + hash: '15034575430186873739', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExclusiveExpandedExample.shorthand.tsx', + hash: '15676788536874893013', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Types/index.tsx', + hash: '14312132533086915079', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Usage/AccordionPanelCustomContentExample.shorthand.tsx', + hash: '7961165322085785908', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Usage/AccordionPanelCustomTitleExample.shorthand.tsx', + hash: '8110444025715338724', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Usage/index.tsx', + hash: '17414639719818391537', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Visual/AccordionExampleCustomTitle.shorthand.tsx', + hash: '18093647188251049061', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Visual/AccordionExampleDefault.shorthand.tsx', + hash: '2490953812708114604', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Accordion/Visual/index.tsx', + hash: '10396872897756178975', + }, + { file: 'packages/fluentui/docs/src/examples/components/Accordion/index.tsx', hash: '11939699836458558174' }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/BestPractices/AlertBestPractices.tsx', + hash: '7390556831277044686', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Performance/AlertDefault.bsize.tsx', + hash: '7400263696216573396', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Performance/AlertMinimal.perf.tsx', + hash: '7491789731685439785', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Performance/index.tsx', + hash: '3486656088797749483', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExample.rtl.tsx', + hash: '5833501351144547293', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExampleChildren.rtl.tsx', + hash: '12215913207571214134', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExampleDismissAction.rtl.tsx', + hash: '4960020110180002666', + }, + { file: 'packages/fluentui/docs/src/examples/components/Alert/Rtl/index.tsx', hash: '18392778337533776532' }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleActions.shorthand.tsx', + hash: '7214084965447715805', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleDismissAction.shorthand.tsx', + hash: '14975932104835320922', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleHeader.shorthand.tsx', + hash: '15241039013902720472', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleHeader.tsx', + hash: '15241039013902720472', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleIcon.shorthand.tsx', + hash: '11946303643665979959', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleIcon.tsx', + hash: '11946303643665979959', + }, + { file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/index.tsx', hash: '9417792554044457971' }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/State/AlertExampleVisible.shorthand.tsx', + hash: '4314747878253818932', + }, + { file: 'packages/fluentui/docs/src/examples/components/Alert/State/index.tsx', hash: '427501161644241166' }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Types/AlertExample.shorthand.tsx', + hash: '6679581942737953936', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Types/AlertExample.tsx', + hash: '14282449354851154943', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Types/AlertExampleDismissible.shorthand.tsx', + hash: '4521264338600019335', + }, + { file: 'packages/fluentui/docs/src/examples/components/Alert/Types/index.tsx', hash: '1993823099664567117' }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleDismissActions.shorthand.tsx', + hash: '12664361614821025048', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleImportantMessage.shorthand.tsx', + hash: '8126990145533658212', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleImportantMessage.tsx', + hash: '16239592046038933070', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleWidth.shorthand.tsx', + hash: '16822018458802875153', + }, + { file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/index.tsx', hash: '4901587673450050108' }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleAttached.shorthand.tsx', + hash: '3025165918987383951', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleAttached.tsx', + hash: '5383005919345233169', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleDanger.shorthand.tsx', + hash: '13738658100729092838', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleDanger.tsx', + hash: '8624847794273310051', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleFitted.shorthand.tsx', + hash: '10384659722601669421', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleInfo.shorthand.tsx', + hash: '12429957374972912633', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleInfo.tsx', + hash: '6158313321973269291', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleOofs.shorthand.tsx', + hash: '14878611782723821420', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleOofs.tsx', + hash: '8687939285475336161', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleSuccess.shorthand.tsx', + hash: '12170565269305523670', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleSuccess.tsx', + hash: '8327763406932136591', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleUrgent.shorthand.tsx', + hash: '2288896043914439472', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleUrgent.tsx', + hash: '11981014665208428662', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleWarning.shorthand.tsx', + hash: '6109440345280173133', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleWarning.tsx', + hash: '11344022326745153812', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/index.tsx', + hash: '3522446524631300400', + }, + { file: 'packages/fluentui/docs/src/examples/components/Alert/index.tsx', hash: '6156151819414933177' }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Performance/AnimationMinimal.perf.tsx', + hash: '2381218558170861435', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExample.shorthand.tsx', + hash: '3918693122533672885', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDelay.shorthand.tsx', + hash: '2091576222896710552', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDirection.shorthand.tsx', + hash: '4658602649524581668', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDuration.shorthand.tsx', + hash: '6551064054536947130', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleFillMode.shorthand.tsx', + hash: '11254807112587801880', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleIterationCount.shorthand.tsx', + hash: '11637399197514567584', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleKeyframeParams.shorthand.tsx', + hash: '13004954253678987714', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExamplePlayState.shorthand.tsx', + hash: '6519757348253113407', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleTimingFunction.shorthand.tsx', + hash: '15834656771211499058', + }, + { file: 'packages/fluentui/docs/src/examples/components/Animation/Types/index.tsx', hash: '1892899388103006614' }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Usage/AnimationExampleVisible.shorthand.tsx', + hash: '2585833965021996678', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Animation/Usage/index.tsx', + hash: '15802851789513126937', + }, + { file: 'packages/fluentui/docs/src/examples/components/Animation/index.tsx', hash: '9269300506542533759' }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentDefault.bsize.tsx', + hash: '6702521006817921355', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentMinimal.perf.tsx', + hash: '17668472981551080779', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentSlots.perf.tsx', + hash: '13203505537913137537', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Performance/index.tsx', + hash: '10043924621416924896', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Rtl/AttachmentExample.rtl.tsx', + hash: '3773914650402755856', + }, + { file: 'packages/fluentui/docs/src/examples/components/Attachment/Rtl/index.tsx', hash: '7918308442798410107' }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentActionExample.shorthand.tsx', + hash: '14423791370968139949', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentDescriptionExample.shorthand.tsx', + hash: '18212994103096220748', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentHeaderExample.shorthand.tsx', + hash: '11467050344618666719', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentIconExample.shorthand.tsx', + hash: '529101159307576502', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/index.tsx', + hash: '13875462072877340926', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Types/AttachmentExample.shorthand.tsx', + hash: '11475662725209531559', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Types/AttachmentProgressExample.shorthand.tsx', + hash: '4267523487196377390', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Types/index.tsx', + hash: '16150497455545793404', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Variations/AttachmentActionableExample.shorthand.tsx', + hash: '16317017442072917555', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Attachment/Variations/index.tsx', + hash: '14864620316228068394', + }, + { file: 'packages/fluentui/docs/src/examples/components/Attachment/index.tsx', hash: '15967332739376281903' }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Performance/AvatarDefault.bsize.tsx', + hash: '1993116627814229169', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Performance/AvatarMinimal.perf.tsx', + hash: '9403745575313193219', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Performance/index.tsx', + hash: '6542918934081901377', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Rtl/AvatarExample.rtl.tsx', + hash: '3766421030295524250', + }, + { file: 'packages/fluentui/docs/src/examples/components/Avatar/Rtl/index.tsx', hash: '704258527059101064' }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Types/AvatarExample.shorthand.tsx', + hash: '1777762071026836373', + }, + { file: 'packages/fluentui/docs/src/examples/components/Avatar/Types/index.tsx', hash: '16081847642128254144' }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Usage/AvatarUsageExample.shorthand.tsx', + hash: '6133089331845764022', + }, + { file: 'packages/fluentui/docs/src/examples/components/Avatar/Usage/index.tsx', hash: '4919268998864960207' }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleExcludedInitials.shorthand.tsx', + hash: '9691484376749818242', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleGetInitials.shorthand.tsx', + hash: '11980464763288742306', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleIcon.shorthand.tsx', + hash: '9292214088414339760', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleImage.shorthand.tsx', + hash: '6931871230275748642', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleLabel.shorthand.tsx', + hash: '13239318061369965763', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleName.shorthand.tsx', + hash: '3765438618458682092', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleSize.shorthand.tsx', + hash: '995651699228554888', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleSquare.shorthand.tsx', + hash: '7535329349351590670', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatus.shorthand.tsx', + hash: '12764376649431176331', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatusCustomization.shorthand.tsx', + hash: '5665191359621923461', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatusImage.shorthand.tsx', + hash: '13641513045200282607', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/index.tsx', + hash: '9169180906304167841', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Avatar/Visual/AvatarStatusOverrideExample.shorthand.tsx', + hash: '10472091611668977334', + }, + { file: 'packages/fluentui/docs/src/examples/components/Avatar/Visual/index.tsx', hash: '13634418070411306125' }, + { file: 'packages/fluentui/docs/src/examples/components/Avatar/index.tsx', hash: '17452750855947681835' }, + { + file: 'packages/fluentui/docs/src/examples/components/Box/Performance/BoxDefault.bsize.tsx', + hash: '5878861180993128281', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Box/Performance/BoxMinimal.perf.tsx', + hash: '11528177275513521419', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Box/Performance/index.tsx', + hash: '12468667700184196719', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Box/Types/BoxExample.shorthand.tsx', + hash: '2621463162801806623', + }, + { file: 'packages/fluentui/docs/src/examples/components/Box/Types/BoxExample.tsx', hash: '11822710890006965982' }, + { file: 'packages/fluentui/docs/src/examples/components/Box/Types/index.tsx', hash: '16292168244991601444' }, + { file: 'packages/fluentui/docs/src/examples/components/Box/index.tsx', hash: '8445463683172518341' }, + { + file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/BestPractices/BreadcrumbBestPractices.tsx', + hash: '12037027317396022887', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Content/BreadcrumbExampleIconDivider.tsx', + hash: '13040774096198084811', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Content/index.tsx', + hash: '5737535689842502282', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Types/BreadcrumbExampleBasic.tsx', + hash: '10867835066367364838', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Types/index.tsx', + hash: '6251320465555826583', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Variations/BreadcrumbExampleSizes.tsx', + hash: '3756439437541515697', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Variations/index.tsx', + hash: '17864851291665966953', + }, + { file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/index.tsx', hash: '11963669822888507151' }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/BestPractices/ButtonBestPractices.tsx', + hash: '875405029256638882', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Groups/ButtonGroupCircularExample.shorthand.tsx', + hash: '10014541288147975902', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Groups/ButtonGroupExample.shorthand.tsx', + hash: '12616941824892942654', + }, + { file: 'packages/fluentui/docs/src/examples/components/Button/Groups/index.tsx', hash: '14608855000457409706' }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Performance/ButtonDefault.bsize.tsx', + hash: '14013260610212467529', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Performance/ButtonMinimal.perf.tsx', + hash: '17702693323586748847', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Performance/ButtonOverridesMiss.perf.tsx', + hash: '246033419451815290', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Performance/ButtonSlots.perf.tsx', + hash: '1232086238686224207', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Performance/index.tsx', + hash: '5684247435424607199', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Rtl/ButtonExample.rtl.tsx', + hash: '10401747556514954499', + }, + { file: 'packages/fluentui/docs/src/examples/components/Button/Rtl/index.tsx', hash: '13167615523401755239' }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabled.shorthand.tsx', + hash: '7501376052839836585', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabled.tsx', + hash: '12680506556909276531', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabledFocusable.shorthand.tsx', + hash: '11418740839881366692', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabledFocusable.tsx', + hash: '8223189472340503350', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleLoading.shorthand.tsx', + hash: '7387668981444340419', + }, + { file: 'packages/fluentui/docs/src/examples/components/Button/States/index.tsx', hash: '8104062184649371336' }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExample.shorthand.tsx', + hash: '13949356969555112957', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExample.tsx', + hash: '1770835918201234538', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleEmphasis.shorthand.tsx', + hash: '9141195104899468218', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleEmphasis.tsx', + hash: '4417989313376075228', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleIconOnly.shorthand.tsx', + hash: '3634071676473637322', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleIconOnly.tsx', + hash: '8460167654876772802', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleInverted.tsx', + hash: '17687677670120489335', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleText.shorthand.tsx', + hash: '4888038742337651213', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleText.tsx', + hash: '3859583648668982831', + }, + { file: 'packages/fluentui/docs/src/examples/components/Button/Types/index.tsx', hash: '14640357627717561574' }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleContentAndIcon.shorthand.tsx', + hash: '5196548647582650534', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleContentAndIcon.tsx', + hash: '5592983281587280992', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleOverflow.shorthand.tsx', + hash: '15179431573106673255', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleOverflow.tsx', + hash: '2042263174918498793', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleWithTooltip.shorthand.tsx', + hash: '13714099140756432098', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonUsageExample.shorthand.tsx', + hash: '1604253431835541038', + }, + { file: 'packages/fluentui/docs/src/examples/components/Button/Usage/index.tsx', hash: '17896536485132705289' }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleCircular.shorthand.tsx', + hash: '12465483641909329594', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleCircular.tsx', + hash: '16231051050308741969', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFlat.shorthand.tsx', + hash: '5922720345605217261', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFluid.shorthand.tsx', + hash: '8376453203529581016', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFluid.tsx', + hash: '3869666308436030997', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleSize.shorthand.tsx', + hash: '14569123258309762053', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Variations/index.tsx', + hash: '17927782900865629373', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Button/Visual/ButtonExampleCompose.shorthand.tsx', + hash: '3313797131089084689', + }, + { file: 'packages/fluentui/docs/src/examples/components/Button/Visual/index.tsx', hash: '18308318623693669223' }, + { file: 'packages/fluentui/docs/src/examples/components/Button/index.tsx', hash: '8430030252345530972' }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/BestPractices/CardBestPractices.tsx', + hash: '6175072564179136722', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Performance/CardMinimal.perf.tsx', + hash: '7683423593541735565', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleBody.tsx', + hash: '3670140939178073629', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleFooter.tsx', + hash: '13947850720017990863', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleHeader.tsx', + hash: '3871336181361575552', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Slots/CardExamplePreview.tsx', + hash: '1607326112717492472', + }, + { file: 'packages/fluentui/docs/src/examples/components/Card/Slots/index.tsx', hash: '276288527915583652' }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/States/CardExampleDisabled.tsx', + hash: '12903340330589409049', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/States/CardExampleSelected.tsx', + hash: '4743335789023795653', + }, + { file: 'packages/fluentui/docs/src/examples/components/Card/States/index.tsx', hash: '4326877489289388573' }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleContextMenu.tsx', + hash: '16278614755070598860', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleExpandable.tsx', + hash: '8649390718286655876', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusable.tsx', + hash: '6380226764451546460', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusableChildrenGrid.tsx', + hash: '6133487715791923353', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusableGrid.tsx', + hash: '14970933824604047026', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleSelectableGrid.tsx', + hash: '7940517742425222555', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleSimple.tsx', + hash: '14390955054934178808', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleWithPreview.tsx', + hash: '6755223202306762576', + }, + { file: 'packages/fluentui/docs/src/examples/components/Card/Usage/index.tsx', hash: '14661769582418275555' }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleCentered.tsx', + hash: '16162090632028658213', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleElevated.tsx', + hash: '4937534743147512554', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleFluid.tsx', + hash: '3882323249492889843', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleHorizontal.tsx', + hash: '7447178276334602059', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleInverted.tsx', + hash: '11869197865997729597', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleQuiet.tsx', + hash: '10258900114037369883', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleSize.tsx', + hash: '15604663897001783874', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Card/Variations/index.tsx', + hash: '14404897511921736607', + }, + { file: 'packages/fluentui/docs/src/examples/components/Card/index.tsx', hash: '12440696140065370056' }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/BestPractices/CarouselBestPractices.tsx', + hash: '5104464237642387440', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/Performance/CarouselMinimal.perf.tsx', + hash: '17230944198296978089', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/Types/CarouselExample.shorthand.tsx', + hash: '3019474799700121608', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/Types/CarouselPaginationExample.shorthand.tsx', + hash: '10219382050743159723', + }, + { file: 'packages/fluentui/docs/src/examples/components/Carousel/Types/index.tsx', hash: '16549052418389007332' }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselCircularExample.shorthand.tsx', + hash: '726029106221673650', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselExampleWithFocusableElements.tsx', + hash: '10412458986088851923', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselSlideAnimationExample.shorthand.tsx', + hash: '11437707182698079093', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselThumbnailsExample.shorthand.tsx', + hash: '3376835901612583306', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/index.tsx', + hash: '2236036551358009719', + }, + { file: 'packages/fluentui/docs/src/examples/components/Carousel/index.tsx', hash: '8852005626228076387' }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleActions.shorthand.tsx', + hash: '11499081318773462966', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleHeader.shorthand.tsx', + hash: '17627840143032452273', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleHeaderOverride.shorthand.tsx', + hash: '10286084095369574056', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReactionGroup.shorthand.tsx', + hash: '8638907150003707098', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReactionGroupMeReacting.shorthand.tsx', + hash: '5402390244908178596', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReadStatus.shorthand.tsx', + hash: '17553154374675903213', + }, + { file: 'packages/fluentui/docs/src/examples/components/Chat/Content/index.tsx', hash: '14432992613578840826' }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Performance/ChatDuplicateMessages.perf.tsx', + hash: '5328917073152073046', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Performance/ChatMinimal.perf.tsx', + hash: '17663247331696372307', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Performance/ChatWithPopover.perf.tsx', + hash: '929883892646559438', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Performance/index.tsx', + hash: '8533950221499546871', + }, + { file: 'packages/fluentui/docs/src/examples/components/Chat/Playground.tsx', hash: '482100186069058437' }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Rtl/ChatExample.rtl.tsx', + hash: '12890530333579628741', + }, + { file: 'packages/fluentui/docs/src/examples/components/Chat/Rtl/index.tsx', hash: '7651977407876655266' }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExample.shorthand.tsx', + hash: '6447802063656597961', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleComfyRefresh.tsx', + hash: '9349394183632742337', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleCompact.shorthand.tsx', + hash: '13715037756615115885', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleCompact.tsx', + hash: '6775219425799289574', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleContentPosition.shorthand.tsx', + hash: '15861811597540900890', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleDetails.shorthand.tsx', + hash: '8029995682815196086', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatMessageExampleBadge.shorthand.tsx', + hash: '17776264375069324126', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatMessageExampleStyled.shorthand.tsx', + hash: '5027022958570589282', + }, + { file: 'packages/fluentui/docs/src/examples/components/Chat/Types/index.tsx', hash: '10701634754456562503' }, + { + file: 'packages/fluentui/docs/src/examples/components/Chat/Usage/ChatExampleInScrollable.shorthand.tsx', + hash: '8374238996916588629', + }, + { file: 'packages/fluentui/docs/src/examples/components/Chat/Usage/index.tsx', hash: '9980155400741893378' }, + { file: 'packages/fluentui/docs/src/examples/components/Chat/index.tsx', hash: '8493367295079208248' }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/BestPractices/CheckboxBestPractices.tsx', + hash: '18223611762110439939', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/Performance/CheckboxMinimal.perf.tsx', + hash: '548755024468105758', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/Rtl/CheckboxExample.rtl.tsx', + hash: '1128826523532930705', + }, + { file: 'packages/fluentui/docs/src/examples/components/Checkbox/Rtl/index.tsx', hash: '1395384208118196672' }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/Slots/CheckboxExampleLabel.shorthand.tsx', + hash: '13064520088118359332', + }, + { file: 'packages/fluentui/docs/src/examples/components/Checkbox/Slots/index.tsx', hash: '9385043156927810366' }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleChecked.shorthand.tsx', + hash: '1021615820140575379', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleCheckedMixed.tsx', + hash: '2279404225432948332', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleDisabled.shorthand.tsx', + hash: '5799044504758222972', + }, + { file: 'packages/fluentui/docs/src/examples/components/Checkbox/States/index.tsx', hash: '1443320154760987498' }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/Types/CheckboxExample.shorthand.tsx', + hash: '2803361228273614712', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/Types/CheckboxExampleToggle.shorthand.tsx', + hash: '6490823576580920212', + }, + { file: 'packages/fluentui/docs/src/examples/components/Checkbox/Types/index.tsx', hash: '6143827655904626084' }, + { + file: 'packages/fluentui/docs/src/examples/components/Checkbox/Visual/CheckboxExampleLabelFlexColumn.shorthand.tsx', + hash: '1248585251262906403', + }, + { file: 'packages/fluentui/docs/src/examples/components/Checkbox/Visual/index.tsx', hash: '4703329705091263656' }, + { file: 'packages/fluentui/docs/src/examples/components/Checkbox/index.tsx', hash: '7699016520185168354' }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/BestPractices/DatepickerBestPractices.tsx', + hash: '14658038377629620116', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Performance/DatepickerMinimal.perf.tsx', + hash: '11883786566201308365', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Performance/index.tsx', + hash: '10285630222835501286', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerCellExample.shorthand.tsx', + hash: '2216960557906603023', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerExampleClearable.shorthand.tsx', + hash: '691503666246176747', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerHeaderCellExample.shorthand.tsx', + hash: '2954066980042365464', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerHeaderExample.shorthand.tsx', + hash: '4738431955016572938', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/index.tsx', + hash: '18386959363850184352', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleDisabled.shorthand.tsx', + hash: '12255600267163387649', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleRequired.shorthand.tsx', + hash: '17702199861644173417', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleSelectedDate.shorthand.tsx', + hash: '8532825318168330503', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleToday.shorthand.tsx', + hash: '8713734961732335095', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/index.tsx', + hash: '11296468703106288343', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExample.shorthand.tsx', + hash: '6846107523874285218', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleLocalizationStrings.shorthand.tsx', + hash: '17524216608660332950', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleMinMaxDate.shorthand.tsx', + hash: '7777605866903021481', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleNoInput.shorthand.tsx', + hash: '16605143463380033608', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleOpen.shorthand.tsx', + hash: '4543526859621525767', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleRestrictedDates.shorthand.tsx', + hash: '11273520771450330651', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleWeek.shorthand.tsx', + hash: '17700066685642168358', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/index.tsx', + hash: '5123663188391578147', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerFirstWeekDayExample.shorthand.tsx', + hash: '6801357975378394323', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerFormatExample.shorthand.tsx', + hash: '6926030396132538520', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerNoInputPlaceholderExample.shorthand.tsx', + hash: '11592675238822744600', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerParseExample.shorthand.tsx', + hash: '11358215010058344895', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/index.tsx', + hash: '12813493520771041761', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Variations/DatepickerExampleStandaloneCalendarButton.shorthand.tsx', + hash: '14190744365069654201', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Variations/DatepickerExampleStandaloneCalendarInput.shorthand.tsx', + hash: '3280141344322348081', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/Variations/index.tsx', + hash: '14877018099015199576', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Datepicker/datepickerCalendarCellSelector.ts', + hash: '4512443095283466106', + }, + { file: 'packages/fluentui/docs/src/examples/components/Datepicker/index.tsx', hash: '2577934043163934210' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/BestPractices/DialogBestPractices.tsx', + hash: '14260830851629896857', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleContent.shorthand.tsx', + hash: '12377463484984823727', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleFooter.shorthand.tsx', + hash: '17988792199130038865', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleFullWidth.shorthand.tsx', + hash: '16078279811160423478', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleHeaderAction.shorthand.tsx', + hash: '12456284637876482599', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleZoomContent.shorthand.tsx', + hash: '7395294606546393853', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleZoomCustomFooter.shorthand.tsx', + hash: '12988031539830275311', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/index.tsx', hash: '7519254899298717488' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Performance/DialogMinimal.perf.tsx', + hash: '12277136355006118770', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Rtl/DialogExample.rtl.tsx', + hash: '12130562440285824815', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dialog/Rtl/index.tsx', hash: '6285202181558572658' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Types/DialogExample.shorthand.tsx', + hash: '13993226013804074696', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dialog/Types/index.tsx', hash: '18282978571056602747' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Usage/DialogExampleCallbacks.shorthand.tsx', + hash: '2381692102417755746', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dialog/Usage/index.tsx', hash: '7882165995889355660' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Variations/DialogExampleBackdrop.shorthand.tsx', + hash: '4307433218568996125', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Variations/DialogExampleScroll.shorthand.tsx', + hash: '9671806836586772310', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dialog/Variations/index.tsx', + hash: '16158666808898205471', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dialog/index.tsx', hash: '4142905135655717486' }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Performance/DividerMinimal.perf.tsx', + hash: '1618744828317117143', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Performance/index.tsx', + hash: '2284629446526020790', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Rtl/DividerExample.rtl.tsx', + hash: '12247005208114230384', + }, + { file: 'packages/fluentui/docs/src/examples/components/Divider/Rtl/index.tsx', hash: '7078633835680831899' }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Types/DividerExample.shorthand.tsx', + hash: '5746094543465502941', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Types/DividerExampleContent.shorthand.tsx', + hash: '1611823870656417247', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Types/DividerExampleContent.tsx', + hash: '4194350913838679961', + }, + { file: 'packages/fluentui/docs/src/examples/components/Divider/Types/index.tsx', hash: '11368777759905312335' }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleColor.shorthand.tsx', + hash: '2681676744265735788', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleFitted.shorthand.tsx', + hash: '13684475891877616638', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleImportant.shorthand.tsx', + hash: '437776456355447840', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleImportant.tsx', + hash: '6386113623863546527', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleSize.shorthand.tsx', + hash: '12928272173652669541', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleSize.tsx', + hash: '10864025889517401905', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleVertical.shorthand.tsx', + hash: '14552765098852998269', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/index.tsx', + hash: '1785542878842749187', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Divider/Visuals/DividerExampleRtlAndLtr.tsx', + hash: '9798021593130619224', + }, + { file: 'packages/fluentui/docs/src/examples/components/Divider/Visuals/index.tsx', hash: '9222615053153918782' }, + { file: 'packages/fluentui/docs/src/examples/components/Divider/index.tsx', hash: '14235140459762121043' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/BestPractices/DropdownBestPractices.tsx', + hash: '16726827083630930640', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Performance/DropdownManyItems.perf.tsx', + hash: '8315175362323959522', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Performance/DropdownMinimal.perf.tsx', + hash: '12532562062498627334', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Performance/index.tsx', + hash: '5374991165033626972', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Rtl/DropdownExample.rtl.tsx', + hash: '13183277357458072753', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Rtl/index.tsx', hash: '2820325268687576580' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Slots/DropdownExampleHeaderMessage.shorthand.tsx', + hash: '12627865128962361689', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Slots/index.tsx', hash: '3945549868267392271' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/State/DropdownExampleDisabled.shorthand.tsx', + hash: '6213534420806785166', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/State/DropdownExampleLoading.shorthand.tsx', + hash: '14531425989713052820', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dropdown/State/index.tsx', hash: '17101438230209286123' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExample.shorthand.tsx', + hash: '17080911572702169315', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleClearable.shorthand.tsx', + hash: '14649463536937589220', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleFreeform.shorthand.tsx', + hash: '36631747644339491', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleInline.shorthand.tsx', + hash: '2368225702870682798', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleInverted.shorthand.tsx', + hash: '1256304487568835216', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleMultiple.shorthand.tsx', + hash: '14453131596234298619', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleSearch.shorthand.tsx', + hash: '11345981179193784990', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleSearchMultiple.shorthand.tsx', + hash: '16912889630350609564', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/index.tsx', hash: '11249932439843066393' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleControlled.shorthand.tsx', + hash: '10914293369711090357', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleHeaderMessage.shorthand.tsx', + hash: '7484846361714883755', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleRender.shorthand.tsx', + hash: '12735533195513404349', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Usage/index.tsx', hash: '10372174955857748557' }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleOffset.shorthand.tsx', + hash: '8878106917840913450', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExamplePosition.shorthand.tsx', + hash: '15030695889532996878', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleFluid.shorthand.tsx', + hash: '2823634216814611259', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleFrenchLanguage.shorthand.tsx', + hash: '11500036917111802737', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleImageAndContent.shorthand.tsx', + hash: '899871089361290733', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/index.tsx', + hash: '10984380790981850041', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Dropdown/Visual/DropdownExampleCustomClearable.shorthand.tsx', + hash: '9297663856524401359', + }, + { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Visual/index.tsx', hash: '9129097450560402411' }, + { file: 'packages/fluentui/docs/src/examples/components/Dropdown/index.tsx', hash: '10937488397683749460' }, + { + file: 'packages/fluentui/docs/src/examples/components/Embed/Performance/EmbedMinimal.perf.tsx', + hash: '13349535745803780087', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Embed/Slots/EmbedExampleVideo.shorthand.tsx', + hash: '5521089746614766109', + }, + { file: 'packages/fluentui/docs/src/examples/components/Embed/Slots/index.tsx', hash: '4311408216226913591' }, + { + file: 'packages/fluentui/docs/src/examples/components/Embed/Usage/EmbedExampleYouTube.shorthand.tsx', + hash: '15513298030058753217', + }, + { file: 'packages/fluentui/docs/src/examples/components/Embed/Usage/index.tsx', hash: '7470763844759721977' }, + { file: 'packages/fluentui/docs/src/examples/components/Embed/index.tsx', hash: '10144010630743895149' }, + { + file: 'packages/fluentui/docs/src/examples/components/Flex/Performance/FlexMinimal.perf.tsx', + hash: '12501107038452642246', + }, + { file: 'packages/fluentui/docs/src/examples/components/Flex/Recipes.mdx', hash: '17295467775326810200' }, + { + file: 'packages/fluentui/docs/src/examples/components/Flex/Rtl/FlexExample.rtl.tsx', + hash: '8048699383448891868', + }, + { file: 'packages/fluentui/docs/src/examples/components/Flex/Rtl/index.tsx', hash: '12333133982344563985' }, + { + file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleColumns.shorthand.tsx', + hash: '9494669297093995444', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleInput.shorthand.tsx', + hash: '6151230046666799951', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleItemsAlignment.shorthand.tsx', + hash: '17665003590332687702', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleMediaCard.shorthand.tsx', + hash: '5255190600379815597', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleMixedAlignment.shorthand.tsx', + hash: '14670896287883140894', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleNavMenu.shorthand.tsx', + hash: '42145263656539355', + }, + { file: 'packages/fluentui/docs/src/examples/components/Flex/Types/index.tsx', hash: '2783746349735568035' }, + { file: 'packages/fluentui/docs/src/examples/components/Flex/index.tsx', hash: '9529941190943702247' }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/BestPractices/FormBestPractices.tsx', + hash: '4136184157997267686', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Performance/FormMinimal.perf.tsx', + hash: '2571551938411128386', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Rtl/FormExample.rtl.tsx', + hash: '10506727184234633255', + }, + { file: 'packages/fluentui/docs/src/examples/components/Form/Rtl/index.tsx', hash: '4614138208583971475' }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Types/FormExampleBase.tsx', + hash: '10121099561877496153', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Types/FormExampleInline.tsx', + hash: '2538286387249164206', + }, + { file: 'packages/fluentui/docs/src/examples/components/Form/Types/index.tsx', hash: '16126961388117750847' }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleCheckbox.tsx', + hash: '4046681236153968736', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleDatepicker.tsx', + hash: '11361687445062035356', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleDropdown.tsx', + hash: '16899693285659366324', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleErrorAndSuccessful.tsx', + hash: '13266856889811549954', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleSlider.tsx', + hash: '10198029342425902438', + }, + { file: 'packages/fluentui/docs/src/examples/components/Form/Usage/index.tsx', hash: '15086437689148636434' }, + { + file: 'packages/fluentui/docs/src/examples/components/Form/Variants/FormExampleComponents.tsx', + hash: '2573371969871522344', + }, + { file: 'packages/fluentui/docs/src/examples/components/Form/Variants/index.tsx', hash: '9823028957988922526' }, + { file: 'packages/fluentui/docs/src/examples/components/Form/index.tsx', hash: '11972671644921053635' }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/BestPractices/GridBestPractices.tsx', + hash: '1193691283068665299', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Performance/GridMinimal.perf.tsx', + hash: '4079832271606619442', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Rtl/GridExample.rtl.tsx', + hash: '12468929948335278655', + }, + { file: 'packages/fluentui/docs/src/examples/components/Grid/Rtl/index.tsx', hash: '7983227345755296662' }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Types/GridExample.shorthand.tsx', + hash: '11467276478685629311', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Types/GridExample.tsx', + hash: '8643475293237398036', + }, + { file: 'packages/fluentui/docs/src/examples/components/Grid/Types/index.tsx', hash: '13229359958304259286' }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumns.shorthand.tsx', + hash: '6425137964439956574', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumns.tsx', + hash: '7420224291209639457', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumnsAndRows.shorthand.tsx', + hash: '3567925282059655667', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumnsAndRows.tsx', + hash: '4824891686913113193', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleKeyboardNavigable.shorthand.tsx', + hash: '9131649190027849541', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleKeyboardNavigable.tsx', + hash: '4293702764822798471', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleRows.shorthand.tsx', + hash: '15962531291130856093', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleRows.tsx', + hash: '8543754780402711167', + }, + { file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/index.tsx', hash: '9972281313863506308' }, + { file: 'packages/fluentui/docs/src/examples/components/Grid/index.tsx', hash: '10416747021370596299' }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Performance/HeaderMinimal.perf.tsx', + hash: '5323374520410167057', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Performance/HeaderSlots.perf.tsx', + hash: '8830529866730138179', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Performance/index.tsx', + hash: '5795973500029634072', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Rtl/HeaderExample.rtl.tsx', + hash: '8397027536443740326', + }, + { file: 'packages/fluentui/docs/src/examples/components/Header/Rtl/index.tsx', hash: '14621479683050448407' }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Types/HeaderExample.shorthand.tsx', + hash: '15385530257979275701', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Types/HeaderExample.tsx', + hash: '7968422868759978259', + }, + { file: 'packages/fluentui/docs/src/examples/components/Header/Types/index.tsx', hash: '15468349939030115969' }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExample.shorthand.tsx', + hash: '11022697380901723002', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleAlign.tsx', + hash: '8225784069630751692', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleColor.shorthand.tsx', + hash: '17405830202188634827', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleColor.tsx', + hash: '16859685718898289475', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescription.shorthand.tsx', + hash: '15241634986814391461', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescription.tsx', + hash: '14029563099860337841', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescriptionCustomization.shorthand.tsx', + hash: '1620088646142946953', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescriptionCustomization.tsx', + hash: '6282939784028655517', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Header/Variations/index.tsx', + hash: '16357029446829677127', + }, + { file: 'packages/fluentui/docs/src/examples/components/Header/index.tsx', hash: '15138625360246765758' }, + { + file: 'packages/fluentui/docs/src/examples/components/Image/Performance/ImageMinimal.perf.tsx', + hash: '4482660474477179886', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Image/Rtl/ImageExample.rtl.tsx', + hash: '568591531191807451', + }, + { file: 'packages/fluentui/docs/src/examples/components/Image/Rtl/index.tsx', hash: '16250337141935650130' }, + { + file: 'packages/fluentui/docs/src/examples/components/Image/Types/ImageExample.shorthand.tsx', + hash: '7033086185340563868', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Image/Types/ImageExampleAvatar.shorthand.tsx', + hash: '16106436339944453184', + }, + { file: 'packages/fluentui/docs/src/examples/components/Image/Types/index.tsx', hash: '8871094264144824226' }, + { + file: 'packages/fluentui/docs/src/examples/components/Image/Variations/ImageExampleCircular.tsx', + hash: '16218168966715421410', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Image/Variations/ImageExampleFluid.tsx', + hash: '3771396024984176184', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Image/Variations/index.tsx', + hash: '12718161915963599283', + }, + { file: 'packages/fluentui/docs/src/examples/components/Image/index.tsx', hash: '14778751457497188202' }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/BestPractices/InputBestPractices.tsx', + hash: '4536840931722831119', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Performance/InputMinimal.perf.tsx', + hash: '1742422238398296030', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Rtl/InputExample.rtl.tsx', + hash: '5453138406020243009', + }, + { file: 'packages/fluentui/docs/src/examples/components/Input/Rtl/index.tsx', hash: '5209340204092211504' }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Slots/InputExampleLabel.shorthand.tsx', + hash: '3651591885077867826', + }, + { file: 'packages/fluentui/docs/src/examples/components/Input/Slots/index.tsx', hash: '13661927172029543202' }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/State/InputExampleDisabled.shorthand.tsx', + hash: '14365373317059379602', + }, + { file: 'packages/fluentui/docs/src/examples/components/Input/State/index.tsx', hash: '12831465518877123178' }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Types/InputExample.shorthand.tsx', + hash: '6755849521905541062', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Types/InputInvertedExample.shorthand.tsx', + hash: '4117066794446027951', + }, + { file: 'packages/fluentui/docs/src/examples/components/Input/Types/index.tsx', hash: '7632673967977727996' }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleClearable.shorthand.tsx', + hash: '9404606633555359873', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleFluid.shorthand.tsx', + hash: '15266243787978450262', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIcon.shorthand.tsx', + hash: '15895186166085714878', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIconClearable.shorthand.tsx', + hash: '7104733062363489717', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIconPosition.shorthand.tsx', + hash: '9935358360489714868', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInline.shorthand.tsx', + hash: '5468257279265642045', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInlineIconClearable.shorthand.tsx', + hash: '10478121607870935520', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInputSlot.shorthand.tsx', + hash: '2201703452647000286', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleTargeting.shorthand.tsx', + hash: '4209791436950689520', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleWrapperSlot.shorthand.tsx', + hash: '7800523774844648983', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Input/Variations/index.tsx', + hash: '13104632528145391550', + }, + { file: 'packages/fluentui/docs/src/examples/components/Input/index.tsx', hash: '1509719792316300905' }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleContent.shorthand.tsx', + hash: '14894828782699454086', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleContentMedia.shorthand.tsx', + hash: '7573352761909351504', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleEndMedia.shorthand.tsx', + hash: '15740083457201401325', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeader.shorthand.tsx', + hash: '8410753305863486273', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeaderContent.shorthand.tsx', + hash: '16895479213370900048', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeaderMedia.shorthand.tsx', + hash: '11253012967216694098', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleMedia.shorthand.tsx', + hash: '17926492654675453519', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/index.tsx', + hash: '13030288130334378633', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Performance/ItemLayoutMinimal.perf.tsx', + hash: '6631643315923856192', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Rtl/ItemLayoutExample.rtl.tsx', + hash: '2444060836574253170', + }, + { file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Rtl/index.tsx', hash: '2780506083804436194' }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Types/ItemLayoutExample.shorthand.tsx', + hash: '10247570755509089808', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Types/ItemLayoutExampleSelection.shorthand.tsx', + hash: '4981524316985719543', + }, + { + file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Types/index.tsx', + hash: '18017725912507536879', + }, + { file: 'packages/fluentui/docs/src/examples/components/ItemLayout/index.tsx', hash: '10709585972443187997' }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExample.shorthand.tsx', + hash: '2696046522043543355', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExample.tsx', + hash: '10559071231023839069', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleContentCustomization.shorthand.tsx', + hash: '9851366695884214163', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleIcon.shorthand.tsx', + hash: '8646930987303616079', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleIconPosition.shorthand.tsx', + hash: '1622761577410217418', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleImage.shorthand.tsx', + hash: '1926729956091713246', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleImagePosition.shorthand.tsx', + hash: '18244060208028061242', + }, + { file: 'packages/fluentui/docs/src/examples/components/Label/Content/index.tsx', hash: '14951390822192745489' }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Performance/LabelMinimal.perf.tsx', + hash: '5844538879014925645', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Rtl/LabelExample.rtl.tsx', + hash: '12525130322147919346', + }, + { file: 'packages/fluentui/docs/src/examples/components/Label/Rtl/index.tsx', hash: '6166665281101154932' }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Variations/LabelExampleCircular.shorthand.tsx', + hash: '5966462711603098031', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Variations/LabelExampleColor.shorthand.tsx', + hash: '16476847855911341045', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Label/Variations/index.tsx', + hash: '9682314536491900536', + }, + { file: 'packages/fluentui/docs/src/examples/components/Label/index.tsx', hash: '15608403142644399383' }, + { + file: 'packages/fluentui/docs/src/examples/components/Layout/Performance/LayoutMinimal.perf.tsx', + hash: '10124786163741257471', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Layout/Types/LayoutExample.shorthand.tsx', + hash: '10004038094153834525', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Layout/Types/LayoutExampleVertical.shorthand.tsx', + hash: '13323460735978321752', + }, + { file: 'packages/fluentui/docs/src/examples/components/Layout/Types/index.tsx', hash: '3361086206811625978' }, + { + file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExample.shorthand.tsx', + hash: '10004038094153834525', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleDisappearing.shorthand.tsx', + hash: '4691140278882749774', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleGap.shorthand.tsx', + hash: '7999888195762166326', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleReducing.shorthand.tsx', + hash: '634677705856392968', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/index.tsx', + hash: '763791615822724394', + }, + { file: 'packages/fluentui/docs/src/examples/components/Layout/index.tsx', hash: '9774975278713176393' }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleContent.shorthand.tsx', + hash: '9231151213039467861', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleContent.tsx', + hash: '10885188019894963771', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleContentMedia.shorthand.tsx', + hash: '4325683898037784798', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleContentMedia.tsx', + hash: '6363831081270265783', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleEndMedia.shorthand.tsx', + hash: '17569021195811716801', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleEndMedia.tsx', + hash: '14049157749409821911', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeader.shorthand.tsx', + hash: '12422873342579196668', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeader.tsx', + hash: '1361664582927291347', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderContent.shorthand.tsx', + hash: '15027504677421412306', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderContent.tsx', + hash: '68215173808336733', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderMedia.shorthand.tsx', + hash: '4824113237188296040', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderMedia.tsx', + hash: '8487392130030578913', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleMedia.shorthand.tsx', + hash: '18000108466405842359', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleMedia.tsx', + hash: '9930526857857226875', + }, + { file: 'packages/fluentui/docs/src/examples/components/List/Content/index.tsx', hash: '1748480120885819339' }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Performance/ListCommon.perf.tsx', + hash: '6561515821134606538', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Performance/ListMinimal.perf.tsx', + hash: '9571773797160334331', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Performance/ListNested.perf.tsx', + hash: '3216303131903272594', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Performance/ListWith60ListItems.perf.tsx', + hash: '3855415483199286809', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Performance/index.tsx', + hash: '14285660182588942022', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Rtl/ListExample.rtl.tsx', + hash: '13442933759393369223', + }, + { file: 'packages/fluentui/docs/src/examples/components/List/Rtl/index.tsx', hash: '11819586909959517693' }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExample.shorthand.tsx', + hash: '15333657866263057316', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExample.tsx', + hash: '16258065849372258640', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleNavigable.shorthand.tsx', + hash: '6407980487296804294', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleNavigable.tsx', + hash: '7635503171903939112', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectable.shorthand.tsx', + hash: '1873769023807454836', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectable.tsx', + hash: '1698957149768324171', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectableControlled.shorthand.tsx', + hash: '12782378747286920342', + }, + { file: 'packages/fluentui/docs/src/examples/components/List/Types/index.tsx', hash: '5415106785487907370' }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Usage/ListExampleMemo.tsx', + hash: '8917577665825762351', + }, + { file: 'packages/fluentui/docs/src/examples/components/List/Usage/index.tsx', hash: '15349833127032366157' }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Variations/ListExampleFixedTruncate.shorthand.tsx', + hash: '2730379426120339855', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Variations/ListExampleHorizontal.shorthand.tsx', + hash: '16997648851325108063', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Variations/ListExampleTruncate.shorthand.tsx', + hash: '16550693054611575574', + }, + { + file: 'packages/fluentui/docs/src/examples/components/List/Variations/ListExampleTruncate.tsx', + hash: '13452277803109662735', + }, + { file: 'packages/fluentui/docs/src/examples/components/List/Variations/index.tsx', hash: '5881166162270636169' }, + { file: 'packages/fluentui/docs/src/examples/components/List/index.tsx', hash: '6856587354159162620' }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/BestPractices/LoaderBestPractices.tsx', + hash: '17076787117927919687', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Performance/LoaderMinimal.perf.tsx', + hash: '10825944497092424482', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Performance/index.tsx', + hash: '2672455834481754469', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Rtl/LoaderExample.rtl.tsx', + hash: '6894689127573694081', + }, + { file: 'packages/fluentui/docs/src/examples/components/Loader/Rtl/index.tsx', hash: '11467653178340820209' }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Types/LoaderExample.shorthand.tsx', + hash: '17386374381567659804', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Types/LoaderExampleLabel.shorthand.tsx', + hash: '536227871747389527', + }, + { file: 'packages/fluentui/docs/src/examples/components/Loader/Types/index.tsx', hash: '1853722176510785772' }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Usage/LoaderExampleDelay.tsx', + hash: '3124554476920325960', + }, + { file: 'packages/fluentui/docs/src/examples/components/Loader/Usage/index.tsx', hash: '12904058592937147794' }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleInline.tsx', + hash: '1865826805469384195', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleLabelPosition.shorthand.tsx', + hash: '14823352032932489651', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleSecondary.tsx', + hash: '6805369726553471930', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleSize.tsx', + hash: '928971371710753426', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/index.tsx', + hash: '7707531497740640339', + }, + { file: 'packages/fluentui/docs/src/examples/components/Loader/index.tsx', hash: '15491664950196071284' }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/BestPractices/MenuBestPractices.tsx', + hash: '1148764178301497175', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Performance/MenuMinimal.perf.tsx', + hash: '2401373787281935539', + }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/Playground.tsx', hash: '1091516363403052049' }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Rtl/MenuExample.rtl.tsx', + hash: '11856368448634044769', + }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/Rtl/index.tsx', hash: '11822002180748385531' }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDivider.shorthand.tsx', + hash: '15129455285604720244', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDivider.tsx', + hash: '11841541853492995378', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDividerHorizontal.shorthand.tsx', + hash: '13359961286051787592', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDividerHorizontal.tsx', + hash: '5143724620376855284', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleIconOnly.shorthand.tsx', + hash: '11000640034821314031', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleIconOnly.tsx', + hash: '2306115093079629299', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleSlot.shorthand.tsx', + hash: '9656116265171394237', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleSlot.tsx', + hash: '945046029822481092', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleWithIcons.shorthand.tsx', + hash: '4785937693664823680', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleWithIcons.tsx', + hash: '2971564546782610091', + }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/index.tsx', hash: '6283686420977361754' }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/States/MenuControlledExample.shorthand.tsx', + hash: '10194642940947694217', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/States/MenuItemExampleDisabled.shorthand.tsx', + hash: '235258550393281513', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/States/MenuItemExampleDisabled.tsx', + hash: '4812993067582864952', + }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/States/index.tsx', hash: '17402268562551851474' }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExample.shorthand.tsx', + hash: '18127778721870174508', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExample.tsx', + hash: '4746656654908753746', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExamplePointing.shorthand.tsx', + hash: '3306766872106443980', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExamplePointing.tsx', + hash: '9515561015913587630', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.shorthand.tsx', + hash: '8847444862932826819', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.tsx', + hash: '3492819735314541593', + }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/Types/index.tsx', hash: '16878301856711676587' }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleTabList.shorthand.tsx', + hash: '7610120576477353894', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleTabList.tsx', + hash: '2011627756318785489', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleToolbar.shorthand.tsx', + hash: '17064202586037134935', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenu.shorthand.tsx', + hash: '5596368956995949414', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenuControlled.shorthand.tsx', + hash: '220813465245031774', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenuHover.shorthand.tsx', + hash: '17161303855803153450', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithTooltip.shorthand.tsx', + hash: '6243550488720737656', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithTooltip.tsx', + hash: '12000097960576681213', + }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/index.tsx', hash: '12302412292361952698' }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleFluid.shorthand.tsx', + hash: '13064471807127524035', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleFluid.tsx', + hash: '13692909798327607747', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVertical.shorthand.tsx', + hash: '13733685118568006661', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPointing.shorthand.tsx', + hash: '8068757237899528017', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPointing.tsx', + hash: '13474885059913991450', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPrimary.shorthand.tsx', + hash: '9419549282178692813', + }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/index.tsx', hash: '9812201022681861443' }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExamplePositioning.shorthand.tsx', + hash: '7352296603393000933', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExamplePositioningUpdate.shorthand.tsx', + hash: '16893348791643087442', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExampleVertical.tsx', + hash: '1918671705400028108', + }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/Visual/index.tsx', hash: '14921709986822918982' }, + { file: 'packages/fluentui/docs/src/examples/components/Menu/index.tsx', hash: '7093431700049905369' }, + { + file: 'packages/fluentui/docs/src/examples/components/MenuButton/Performance/MenuButtonMinimal.perf.tsx', + hash: '8542732171269113775', + }, + { + file: 'packages/fluentui/docs/src/examples/components/MenuButton/Rtl/MenuButtonExample.rtl.tsx', + hash: '6337724502663305552', + }, + { file: 'packages/fluentui/docs/src/examples/components/MenuButton/Rtl/index.tsx', hash: '6638186061182872564' }, + { + file: 'packages/fluentui/docs/src/examples/components/MenuButton/State/MenuButtonExampleOpen.shorthand.tsx', + hash: '2608597770808588352', + }, + { + file: 'packages/fluentui/docs/src/examples/components/MenuButton/State/index.tsx', + hash: '14634225165658357467', + }, + { + file: 'packages/fluentui/docs/src/examples/components/MenuButton/Usage/MenuButtonExampleContextMenu.shorthand.tsx', + hash: '1026610848202498026', + }, + { + file: 'packages/fluentui/docs/src/examples/components/MenuButton/Usage/MenuButtonExampleOn.shorthand.tsx', + hash: '3135948295889322686', + }, + { + file: 'packages/fluentui/docs/src/examples/components/MenuButton/Usage/index.tsx', + hash: '10027429472797848590', + }, + { file: 'packages/fluentui/docs/src/examples/components/MenuButton/index.tsx', hash: '16849312605865228993' }, + { + file: 'packages/fluentui/docs/src/examples/components/PerformanceTests/Performance/Roster.perf.tsx', + hash: '1671137001377166992', + }, + { + file: 'packages/fluentui/docs/src/examples/components/PerformanceTests/index.tsx', + hash: '16182572711134628967', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/BestPractices/PillBestPractices.tsx', + hash: '15184619707213158796', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/State/PillExampleDisabled.tsx', + hash: '225635531870302008', + }, + { file: 'packages/fluentui/docs/src/examples/components/Pill/State/index.tsx', hash: '7850230691816422967' }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Types/PillExample.tsx', + hash: '3917196493748856429', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Types/PillsExample.tsx', + hash: '8180071303992218841', + }, + { file: 'packages/fluentui/docs/src/examples/components/Pill/Types/index.tsx', hash: '11535681964715845934' }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleActionable.tsx', + hash: '13550250194486157707', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleAppearance.tsx', + hash: '12642313646398949118', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleIcon.tsx', + hash: '3033494631218963635', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleImage.tsx', + hash: '12025962676000518988', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleRectangular.tsx', + hash: '9475227123919005662', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleSelectable.tsx', + hash: '4059077961421342466', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleSizes.tsx', + hash: '1372461143642718047', + }, + { file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/index.tsx', hash: '4794134926682899725' }, + { file: 'packages/fluentui/docs/src/examples/components/Pill/index.tsx', hash: '308800105363798938' }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/BestPractices/PopupBestPractices.tsx', + hash: '14691495679088971408', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Performance/PopupMinimal.perf.tsx', + hash: '769127780080565910', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Rtl/PopupExample.rtl.tsx', + hash: '4025468581995924373', + }, + { file: 'packages/fluentui/docs/src/examples/components/Popup/Rtl/index.tsx', hash: '10873636211257697823' }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupControlledExample.shorthand.tsx', + hash: '11360271729888420335', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupControlledExample.tsx', + hash: '15236078454659808077', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupCustomTargetExample.shorthand.tsx', + hash: '14177824506531876219', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupCustomTargetExample.tsx', + hash: '15618421921267612568', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExample.shorthand.tsx', + hash: '5651623114942915273', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExample.tsx', + hash: '2201968360249751569', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExampleInline.shorthand.tsx', + hash: '16143307516772722391', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExampleInline.tsx', + hash: '15436059692901633142', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExamplePointing.shorthand.tsx', + hash: '11380429919678701304', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupFocusTrapExample.shorthand.tsx', + hash: '4844970199294400171', + }, + { file: 'packages/fluentui/docs/src/examples/components/Popup/Types/index.tsx', hash: '1038283187659463283' }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleAsync.shorthand.tsx', + hash: '13310281521799433826', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleCloseButton.shorthand.tsx', + hash: '15497765193228430672', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleCloseButton.tsx', + hash: '9958856842982015940', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleContextOnElement.tsx', + hash: '16810053831311380677', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleNested.shorthand.tsx', + hash: '6977345676829096553', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOn.shorthand.tsx', + hash: '12040021593308161947', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOnMultiple.shorthand.tsx', + hash: '11901628195575852306', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOnWithFocusTrap.shorthand.tsx', + hash: '11387245286688535625', + }, + { file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/index.tsx', hash: '15583074628811659850' }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExampleAutoSize.shorthand.tsx', + hash: '18051787308840745700', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExampleOffset.shorthand.tsx', + hash: '2598279928927838796', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExamplePosition.shorthand.tsx', + hash: '5014667790535831638', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExamplePosition.tsx', + hash: '14724531471909272772', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/index.tsx', + hash: '11205808743807307793', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopperExamplePositioning.tsx', + hash: '3402356215985975741', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopperExampleVisibilityModifiers.tsx', + hash: '5930513785737904564', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExampleContainerTransformed.tsx', + hash: '6454123585379870685', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExamplePointerMargin.shorthand.tsx', + hash: '12246850078535057943', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExamplePointerOffset.tsx', + hash: '8557789888384105072', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopupScrollExample.tsx', + hash: '1092456042955589651', + }, + { file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/index.tsx', hash: '1257556053517955659' }, + { file: 'packages/fluentui/docs/src/examples/components/Popup/index.tsx', hash: '14244818971203151580' }, + { + file: 'packages/fluentui/docs/src/examples/components/Portal/Performance/PortalMinimal.perf.tsx', + hash: '1280050399468706846', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Portal/State/PortalExampleOpen.tsx', + hash: '7747918653201416489', + }, + { file: 'packages/fluentui/docs/src/examples/components/Portal/State/index.tsx', hash: '2471947539793886914' }, + { + file: 'packages/fluentui/docs/src/examples/components/Portal/Types/PortalExample.shorthand.tsx', + hash: '7093133557609363165', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Portal/Types/PortalExample.tsx', + hash: '16973700092145622013', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Portal/Types/PortalExampleFocusTrapped.shorthand.tsx', + hash: '18157629743013996375', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Portal/Types/PortalExampleFocusTrapped.tsx', + hash: '6823047004923659443', + }, + { file: 'packages/fluentui/docs/src/examples/components/Portal/Types/index.tsx', hash: '12807792126420428514' }, + { file: 'packages/fluentui/docs/src/examples/components/Portal/index.tsx', hash: '4816663574998133171' }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Performance/ProviderMergeThemes.perf.tsx', + hash: '10357042662153941278', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Performance/ProviderMinimal.perf.tsx', + hash: '875685099328132794', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Performance/index.tsx', + hash: '14396567022906488393', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderDisableAnimationsExample.shorthand.tsx', + hash: '12158931261228946976', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExample.shorthand.tsx', + hash: '7876580913304867265', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleFocusBorder.shorthand.tsx', + hash: '18315534677363544150', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleRendererFelaPluginFallbackValue.shorthand.tsx', + hash: '9376927013985860098', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleScrollbar.shorthand.tsx', + hash: '14869269664997133421', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleStyles.shorthand.tsx', + hash: '915498641226028817', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderRtlExample.shorthand.tsx', + hash: '971324591208205115', + }, + { file: 'packages/fluentui/docs/src/examples/components/Provider/Types/index.tsx', hash: '1548681423522224763' }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Usage/ProviderExampleTarget.tsx', + hash: '13947434155337757662', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Provider/Usage/ProviderExampleTargetFrame.tsx', + hash: '10241159316166337828', + }, + { file: 'packages/fluentui/docs/src/examples/components/Provider/Usage/index.tsx', hash: '1591294953056712013' }, + { file: 'packages/fluentui/docs/src/examples/components/Provider/index.tsx', hash: '14961953425430424666' }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExample.shorthand.tsx', + hash: '8794932438885348780', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExampleChecked.shorthand.tsx', + hash: '10851098855382529857', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExampleDisabled.shorthand.tsx', + hash: '11656138751705946866', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Item/index.tsx', + hash: '14497407002158091465', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Performance/RadioGroupMinimal.perf.tsx', + hash: '15053198625352535132', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Rtl/RadioGroupExample.rtl.tsx', + hash: '4471510346867972515', + }, + { file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Rtl/index.tsx', hash: '3850717975312738992' }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupColorPickerExample.shorthand.tsx', + hash: '1963146957713849165', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupExample.shorthand.tsx', + hash: '15576873279871783334', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupVerticalExample.shorthand.tsx', + hash: '6799207127209368586', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Types/index.tsx', + hash: '1765245586396985668', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Usage/RadioGroupCustomExample.shorthand.tsx', + hash: '13561962407174439681', + }, + { + file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Usage/index.tsx', + hash: '16582427638124774793', + }, + { file: 'packages/fluentui/docs/src/examples/components/RadioGroup/index.tsx', hash: '8270839829663713461' }, + { + file: 'packages/fluentui/docs/src/examples/components/Reaction/BestPractices/ReactionBestPractices.tsx', + hash: '9273372572363071132', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Reaction/Performance/ReactionMinimal.perf.tsx', + hash: '1050040320316407323', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Reaction/Rtl/ReactionExample.rtl.tsx', + hash: '4248876968732174230', + }, + { file: 'packages/fluentui/docs/src/examples/components/Reaction/Rtl/index.tsx', hash: '2015079013080726768' }, + { + file: 'packages/fluentui/docs/src/examples/components/Reaction/Types/ReactionExample.shorthand.tsx', + hash: '17305309175171886727', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Reaction/Types/ReactionGroupExample.shorthand.tsx', + hash: '5653765080526238268', + }, + { file: 'packages/fluentui/docs/src/examples/components/Reaction/Types/index.tsx', hash: '4533187858270278955' }, + { file: 'packages/fluentui/docs/src/examples/components/Reaction/index.tsx', hash: '13552494968983937345' }, + { + file: 'packages/fluentui/docs/src/examples/components/Ref/Performance/RefMinimal.perf.tsx', + hash: '12734421099743106835', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Ref/Types/RefExample.shorthand.tsx', + hash: '947545573143756399', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Ref/Types/RefForwardingExample.shorthand.tsx', + hash: '12714715976648162928', + }, + { file: 'packages/fluentui/docs/src/examples/components/Ref/Types/index.tsx', hash: '17846087013936532796' }, + { file: 'packages/fluentui/docs/src/examples/components/Ref/index.tsx', hash: '15630243285341224194' }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Performance/SegmentMinimal.perf.tsx', + hash: '6106209279245030302', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Rtl/SegmentExample.rtl.tsx', + hash: '4984314994571441949', + }, + { file: 'packages/fluentui/docs/src/examples/components/Segment/Rtl/index.tsx', hash: '7264175941352362763' }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/States/SegmentExampleDisabled.shorthand.tsx', + hash: '1447666560336142634', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/States/SegmentExampleDisabled.tsx', + hash: '9939080071452335784', + }, + { file: 'packages/fluentui/docs/src/examples/components/Segment/States/index.tsx', hash: '15510553270873649507' }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Types/SegmentExample.shorthand.tsx', + hash: '4521252015219986379', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Types/SegmentExample.tsx', + hash: '14191539552345947271', + }, + { file: 'packages/fluentui/docs/src/examples/components/Segment/Types/index.tsx', hash: '6425801768050272369' }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleColor.shorthand.tsx', + hash: '4018577540283862271', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleColor.tsx', + hash: '11898578555204733155', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleInverted.shorthand.tsx', + hash: '5006772346970981875', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleInverted.tsx', + hash: '4674557655748034557', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/index.tsx', + hash: '17210751842025928867', + }, + { file: 'packages/fluentui/docs/src/examples/components/Segment/index.tsx', hash: '13165167863480646704' }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/BestPractices/SkeletonBestPractices.tsx', + hash: '11299779863031749491', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/Performance/SkeletonMinimal.perf.tsx', + hash: '17151828783466057607', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/Performance/index.tsx', + hash: '13068110492453554314', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleCard.tsx', + hash: '11681636039219057772', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleDefault.tsx', + hash: '5298862632862212220', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleList.tsx', + hash: '3994728901000370391', + }, + { file: 'packages/fluentui/docs/src/examples/components/Skeleton/Usage/index.tsx', hash: '8658623377452207069' }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/Variations/SkeletonExampleAnimations.tsx', + hash: '5840051234383928667', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/Variations/SkeletonExampleComponents.tsx', + hash: '6146256229951310790', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Skeleton/Variations/index.tsx', + hash: '4963526455682049474', + }, + { file: 'packages/fluentui/docs/src/examples/components/Skeleton/index.tsx', hash: '4930155455556413528' }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/BestPractices/SliderBestPractices.tsx', + hash: '16971553798248851448', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/Performance/SliderMinimal.perf.tsx', + hash: '5683915994532975308', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/Rtl/SliderExample.rtl.tsx', + hash: '11110359940013906638', + }, + { file: 'packages/fluentui/docs/src/examples/components/Slider/Rtl/index.tsx', hash: '5828325333876107293' }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/States/SliderExampleDisabled.shorthand.tsx', + hash: '14759118373998593037', + }, + { file: 'packages/fluentui/docs/src/examples/components/Slider/States/index.tsx', hash: '5819082409675027780' }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/Types/SliderExample.shorthand.tsx', + hash: '5451486256462625366', + }, + { file: 'packages/fluentui/docs/src/examples/components/Slider/Types/index.tsx', hash: '7324547195758132067' }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/Usage/SliderExampleAction.shorthand.tsx', + hash: '7745582782640576862', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/Usage/SliderExampleForm.shorthand.tsx', + hash: '2111231209869031445', + }, + { file: 'packages/fluentui/docs/src/examples/components/Slider/Usage/index.tsx', hash: '3885309747960239628' }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/Variations/SliderExampleFluid.shorthand.tsx', + hash: '4637699113225425671', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/Variations/SliderExampleVertical.shorthand.tsx', + hash: '17437641334520746677', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Slider/Variations/index.tsx', + hash: '11924443720597252865', + }, + { file: 'packages/fluentui/docs/src/examples/components/Slider/index.tsx', hash: '5206201463804797308' }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/BestPractices/SplitButtonBestPractices.tsx', + hash: '2000902291897511495', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Performance/SplitButtonMinimal.perf.tsx', + hash: '3500159460743084221', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Slots/SplitButtonIconAndContentExample.shorthand.tsx', + hash: '13085330416997443259', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Slots/SplitButtonToggleButtonExample.shorthand.tsx', + hash: '10202142522989619458', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Slots/index.tsx', + hash: '7830322805396207627', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/States/SplitButtonExampleDisabled.shorthand.tsx', + hash: '9620865874445391479', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/States/index.tsx', + hash: '11088877437828424103', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExample.shorthand.tsx', + hash: '18444227571953934657', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExampleFlat.shorthand.tsx', + hash: '2950485000675828410', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExamplePrimary.shorthand.tsx', + hash: '3342011974196004167', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExampleSmall.shorthand.tsx', + hash: '4795058889272829421', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/index.tsx', + hash: '7397507779112941418', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Usage/SplitButtonMainOptionChangeExample.shorthand.tsx', + hash: '9023600002190709651', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Usage/SplitButtonPositioningExampleShorthand.shorthand.tsx', + hash: '8489259726922924849', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Usage/index.tsx', + hash: '16562305662577179570', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Visual/SplitButtonExampleSmallContainer.tsx', + hash: '13278820737132459641', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SplitButton/Visual/index.tsx', + hash: '133837785704319957', + }, + { file: 'packages/fluentui/docs/src/examples/components/SplitButton/index.tsx', hash: '12516377041553330988' }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/BestPractices/StatusBestPractices.tsx', + hash: '2842206438674642976', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/Performance/StatusMinimal.perf.tsx', + hash: '3467231160851523327', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/Types/StatusExample.shorthand.tsx', + hash: '12044042368016196218', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/Types/StatusTypeExample.shorthand.tsx', + hash: '13350748024954070133', + }, + { file: 'packages/fluentui/docs/src/examples/components/Status/Types/index.tsx', hash: '2811353043156884507' }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/Variations/StatusColorExample.shorthand.tsx', + hash: '3987068556304091057', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/Variations/StatusCustomExample.shorthand.tsx', + hash: '2548938419948027605', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/Variations/StatusIconExample.shorthand.tsx', + hash: '5524818873389068964', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/Variations/StatusSizeExample.shorthand.tsx', + hash: '5707553982966709248', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Status/Variations/index.tsx', + hash: '9120569656874648802', + }, + { file: 'packages/fluentui/docs/src/examples/components/Status/index.tsx', hash: '2816738493521398893' }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/BestPractices/IconBestPractices.tsx', + hash: '4072626567249075080', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Performance/IconMinimal.perf.tsx', + hash: '5190579029005441788', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Performance/index.tsx', + hash: '16814660870533487226', + }, + { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Playground.tsx', hash: '8812012154417175908' }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/SvgIconExample.rtl.tsx', + hash: '14644173506843824353', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/SvgIconExampleRotate.rtl.tsx', + hash: '15057195332144981474', + }, + { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/index.tsx', hash: '1612672297693581878' }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/States/SvgIconExampleDisabled.shorthand.tsx', + hash: '3470608587583128076', + }, + { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/States/index.tsx', hash: '10545754726360979463' }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Types/SvgIconExample.shorthand.tsx', + hash: '10086633318723837555', + }, + { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Types/index.tsx', hash: '17535747109177872834' }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Usage/SvgIconSetExample.shorthand.tsx', + hash: '712280352364671982', + }, + { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Usage/index.tsx', hash: '7787500621832502210' }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleBordered.shorthand.tsx', + hash: '13663934745164798152', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleCircular.shorthand.tsx', + hash: '10039662552931739', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleColor.shorthand.tsx', + hash: '11096658655423303569', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleRotate.shorthand.tsx', + hash: '9100232926702492531', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleSize.shorthand.tsx', + hash: '4188316930125539160', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleSpace.shorthand.tsx', + hash: '5992719719142309327', + }, + { + file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/index.tsx', + hash: '167430481359948232', + }, + { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/index.tsx', hash: '17532453811600698785' }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/BestPractices/TableBestPractices.tsx', + hash: '13116952679854774648', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Performance/TableManyItems.perf.tsx', + hash: '8843379085853058190', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Performance/TableMinimal.perf.tsx', + hash: '6451763713975397742', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Performance/index.tsx', + hash: '5455578957824022592', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleNavigable.shorthand.tsx', + hash: '1321971208257382513', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStatic.shorthand.tsx', + hash: '14512923368632768022', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStatic.tsx', + hash: '5761370134080040759', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticCompact.shorthand.tsx', + hash: '5032942767772539042', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticHeadless.shorthand.tsx', + hash: '1984701926003492154', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticRowless.shorthand.tsx', + hash: '12862859521290575140', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticTruncate.shorthand.tsx', + hash: '3789911366669930488', + }, + { file: 'packages/fluentui/docs/src/examples/components/Table/Usage/index.tsx', hash: '7212079707197341769' }, + { file: 'packages/fluentui/docs/src/examples/components/Table/index.tsx', hash: '8209480989900875119' }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/BestPractices/TextBestPractices.tsx', + hash: '13758922197264512339', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Performance/TextMinimal.perf.tsx', + hash: '6082426067430696487', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Rtl/TextExample.rtl.tsx', + hash: '18253220197384221052', + }, + { file: 'packages/fluentui/docs/src/examples/components/Text/Rtl/index.tsx', hash: '7916814126989481073' }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleDisabled.shorthand.tsx', + hash: '10005342357982055357', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleDisabled.tsx', + hash: '10682467434654740662', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleError.shorthand.tsx', + hash: '12523200570024022826', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleError.tsx', + hash: '2268246935270334744', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleSuccess.shorthand.tsx', + hash: '2741758658117195387', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleSuccess.tsx', + hash: '12695842757449186386', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleTemporary.shorthand.tsx', + hash: '12157727285162703176', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleTemporary.tsx', + hash: '10489178677587453901', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleTruncated.shorthand.tsx', + hash: '3078072220366705288', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleTruncated.tsx', + hash: '4460110182775161240', + }, + { file: 'packages/fluentui/docs/src/examples/components/Text/States/index.tsx', hash: '14949581414261390973' }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Types/TextSizesExample.shorthand.tsx', + hash: '3821817729761856817', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Types/TextSizesExample.tsx', + hash: '7100085658781908208', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Types/TextWeightsExample.shorthand.tsx', + hash: '7898500173523470913', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Types/TextWeightsExample.tsx', + hash: '7525213490240351962', + }, + { file: 'packages/fluentui/docs/src/examples/components/Text/Types/index.tsx', hash: '8170466156453858773' }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAlign.shorthand.tsx', + hash: '10090528081301512500', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAlign.tsx', + hash: '9602188435828454504', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAtMention.shorthand.tsx', + hash: '9568381306981174747', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAtMention.tsx', + hash: '7273333936839378560', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleColor.shorthand.tsx', + hash: '593035909691715305', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleColor.tsx', + hash: '14979348856804430653', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleImportant.shorthand.tsx', + hash: '16945189331882039626', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleImportant.tsx', + hash: '15237789108945229891', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleTimestamp.shorthand.tsx', + hash: '7819109379560072233', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleTimestamp.tsx', + hash: '5887414291140974047', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Text/Variations/index.tsx', + hash: '18148527819162278688', + }, + { file: 'packages/fluentui/docs/src/examples/components/Text/index.tsx', hash: '5505583030986180768' }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/Performance/TextAreaMinimal.perf.tsx', + hash: '787763541317368544', + }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/States/TextAreaDisabledExample.shorthand.tsx', + hash: '1398148223167664272', + }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/States/TextAreaValueExample.shorthand.tsx', + hash: '10331862364447876823', + }, + { file: 'packages/fluentui/docs/src/examples/components/TextArea/States/index.tsx', hash: '6698344117014108055' }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/Types/TextAreaExample.shorthand.tsx', + hash: '14733924463548594253', + }, + { file: 'packages/fluentui/docs/src/examples/components/TextArea/Types/index.tsx', hash: '3683382352963583728' }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleHeight.shorthand.tsx', + hash: '1211085858101929404', + }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleMaxLength.shorthand.tsx', + hash: '9562510689858609706', + }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleResize.shorthand.tsx', + hash: '4876842304034575135', + }, + { file: 'packages/fluentui/docs/src/examples/components/TextArea/Usage/index.tsx', hash: '2237594003502654008' }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/Variations/TextAreaExampleFluid.shorthand.tsx', + hash: '3545887297492075263', + }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/Variations/TextAreaExampleInverted.shorthand.tsx', + hash: '17087013464811584960', + }, + { + file: 'packages/fluentui/docs/src/examples/components/TextArea/Variations/index.tsx', + hash: '4704806062673855327', + }, + { file: 'packages/fluentui/docs/src/examples/components/TextArea/index.tsx', hash: '12188412524533348165' }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/BestPractices/ToolbarBestPractices.tsx', + hash: '7690630516491632299', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleCustomContent.shorthand.tsx', + hash: '9350437590169425941', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenu.shorthand.tsx', + hash: '14374045559814061777', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuItemToggle.shorthand.tsx', + hash: '11619348413229807632', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuRadioGroup.shorthand.tsx', + hash: '12932498558254125079', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuWithSubmenu.shorthand.tsx', + hash: '9181858135213078479', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleOverflow.shorthand.tsx', + hash: '14123305047218867877', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExamplePopup.shorthand.tsx', + hash: '6947040501896189720', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleRadioGroup.shorthand.tsx', + hash: '10794513158764683839', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/index.tsx', + hash: '10481282122210591927', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Performance/CustomToolbar.perf.tsx', + hash: '12947291466463780126', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Performance/ToolbarMinimal.perf.tsx', + hash: '8305048149129463206', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Performance/index.tsx', + hash: '6873361932430304586', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExample.shorthand.tsx', + hash: '7261997885886261076', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExample.tsx', + hash: '14847037438949442568', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExampleEditor.shorthand.tsx', + hash: '17212861393922761147', + }, + { file: 'packages/fluentui/docs/src/examples/components/Toolbar/Types/index.tsx', hash: '10426904223974509115' }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExampleActionPopupInMenu.shorthand.tsx', + hash: '16581044095774214451', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExamplePopupInMenu.shorthand.tsx', + hash: '15559958015729382474', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExampleWithTooltip.shorthand.tsx', + hash: '9360949351884014708', + }, + { file: 'packages/fluentui/docs/src/examples/components/Toolbar/Usage/index.tsx', hash: '3741193560673302929' }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleChatMessage.tsx', + hash: '597807714766702107', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleCompose.shorthand.tsx', + hash: '2943541742173150125', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleOverflowPositioning.rtl.tsx', + hash: '8896970923041455552', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleOverflowPositioning.shorthand.tsx', + hash: '8392159780916116340', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleVariables.shorthand.tsx', + hash: '973954519216817273', + }, + { file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/index.tsx', hash: '2280780949824614506' }, + { file: 'packages/fluentui/docs/src/examples/components/Toolbar/index.tsx', hash: '3955145262259009939' }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/BestPractices/TooltipBestPractices.tsx', + hash: '12264769787489140472', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Performance/TooltipMinimal.perf.tsx', + hash: '8391989295459389123', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Rtl/TooltipExample.rtl.tsx', + hash: '17501348274045005215', + }, + { file: 'packages/fluentui/docs/src/examples/components/Tooltip/Rtl/index.tsx', hash: '8231368109071058412' }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/States/TooltipOpenControlledExample.shorthand.tsx', + hash: '6291038619515393728', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/States/TooltipOpenControlledExample.tsx', + hash: '5717027646454076412', + }, + { file: 'packages/fluentui/docs/src/examples/components/Tooltip/States/index.tsx', hash: '4692331360484948060' }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExample.shorthand.tsx', + hash: '14387757590222922955', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExample.tsx', + hash: '3040316856705893337', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExamplePointing.shorthand.tsx', + hash: '13893994275100589306', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExamplePointing.tsx', + hash: '6599114506851208409', + }, + { file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/index.tsx', hash: '9674896746410444932' }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDialogContent.shorthand.tsx', + hash: '16672009771982611827', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDisabledTrigger.shorthand.tsx', + hash: '9432946789900165765', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDismissOnContentMouseEnter.tsx', + hash: '1895508525939336631', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleTarget.shorthand.tsx', + hash: '10439831362752589746', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleTarget.tsx', + hash: '10582264869563911497', + }, + { file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/index.tsx', hash: '1997186623739287675' }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Variations/TooltipExamplePosition.shorthand.tsx', + hash: '16854894253130607416', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Variations/TooltipExamplePosition.tsx', + hash: '11808497640753109890', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Variations/index.tsx', + hash: '6731401908207692704', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tooltip/Visual/TooltipExamplePointerMargin.shorthand.tsx', + hash: '12872392821532343061', + }, + { file: 'packages/fluentui/docs/src/examples/components/Tooltip/Visual/index.tsx', hash: '13603571994211374586' }, + { file: 'packages/fluentui/docs/src/examples/components/Tooltip/index.tsx', hash: '2058144254470973416' }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/BestPractices/TreeBestPractices.tsx', + hash: '5269011941010168614', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Performance/TreeMinimal.perf.tsx', + hash: '489946794118741384', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Performance/TreeWith60ListItems.perf.tsx', + hash: '12416168620018960866', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Performance/index.tsx', + hash: '18200172470583665933', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Types/TreeExample.shorthand.tsx', + hash: '10987719260332768720', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Types/TreeExclusiveExample.shorthand.tsx', + hash: '8101844356066711523', + }, + { file: 'packages/fluentui/docs/src/examples/components/Tree/Types/index.tsx', hash: '10799362557329168225' }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/TreeInitiallyOpenExample.shorthand.tsx', + hash: '17737307388979450495', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/TreeMultiselectBasicExample.shorthand.tsx', + hash: '6401296778527594059', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/TreeMultiselectExample.shorthand.tsx', + hash: '12495650092802007936', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/TreeTitleCustomizationExample.shorthand.tsx', + hash: '11056546458539147302', + }, + { file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/index.tsx', hash: '8490738550400826673' }, + { file: 'packages/fluentui/docs/src/examples/components/Tree/index.tsx', hash: '7170014822219967037' }, + { + file: 'packages/fluentui/docs/src/examples/components/Video/Performance/VideoMinimal.perf.tsx', + hash: '4983642729868410970', + }, + { + file: 'packages/fluentui/docs/src/examples/components/Video/Types/VideoExample.shorthand.tsx', + hash: '17150204613404177820', + }, + { file: 'packages/fluentui/docs/src/examples/components/Video/Types/index.tsx', hash: '3759187239395817059' }, + { file: 'packages/fluentui/docs/src/examples/components/Video/index.tsx', hash: '259172865122869557' }, + { file: 'packages/fluentui/docs/src/global.d.ts', hash: '14936706255065350562' }, + { file: 'packages/fluentui/docs/src/index.ejs', hash: '4900373226579034748' }, + { file: 'packages/fluentui/docs/src/index.html', hash: '9592085092662455894' }, + { file: 'packages/fluentui/docs/src/index.tsx', hash: '9684143093088289648' }, + { file: 'packages/fluentui/docs/src/pages/Composition.mdx', hash: '10186491244501102909' }, + { file: 'packages/fluentui/docs/src/pages/Debugging.mdx', hash: '18375082099652213990' }, + { file: 'packages/fluentui/docs/src/pages/Layout.mdx', hash: '3180541691175480199' }, + { file: 'packages/fluentui/docs/src/pages/ShorthandProps.mdx', hash: '15976754765035424430' }, + { + file: 'packages/fluentui/docs/src/public/images/2020_MSFT_Icon_Celebration_placeholder.jpg', + hash: '2925398530444399930', + }, + { file: 'packages/fluentui/docs/src/public/images/avatar/AllanMunger.jpg', hash: '3613388593767865605' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/AmandaBrady.jpg', hash: '5478322598207531530' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/AshleyMcCarthy.jpg', hash: '2754307271603289620' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/CameronEvans.jpg', hash: '5294189036657935794' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/CarlosSlattery.jpg', hash: '10178184967006338761' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/CarolePoland.jpg', hash: '11147373829946689608' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/CecilFolk.jpg', hash: '14225108329051412439' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/CelesteBurton.jpg', hash: '11316135954594294363' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/CharlotteWaltson.jpg', hash: '2774426450807629827' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/ColinBallinger.jpg', hash: '17681050335581092084' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/DaisyPhillips.jpg', hash: '10949871083575484027' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/ElliotWoodward.jpg', hash: '3405760508019923303' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/ElviaAtkins.jpg', hash: '5611089447394491790' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/ErikNason.jpg', hash: '1413017518416054984' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/HenryBrill.jpg', hash: '15861918850676483061' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/IsaacFielder.jpg', hash: '7118775979671994925' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/JohnieMcConnell.jpg', hash: '17367508280523725103' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/KatLarsson.jpg', hash: '2670919255846102339' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/KatriAthokas.jpg', hash: '487231194185754540' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/KevinSturgis.jpg', hash: '3013064020880462661' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/KristinPatterson.jpg', hash: '13412995139552529437' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/LydiaBauer.jpg', hash: '4175277172402001465' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/MauricioAugust.jpg', hash: '5491418556314909777' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/MiguelGarcia.jpg', hash: '3336511373738327952' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/MonaKane.jpg', hash: '18325328201356331133' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/RobertTolbert.jpg', hash: '4300254536734927938' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/RobinCounts.jpg', hash: '13340930959792462337' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/TimDeboer.jpg', hash: '10257406127647555763' }, + { file: 'packages/fluentui/docs/src/public/images/avatar/WandaHoward.jpg', hash: '11836273278313166429' }, + { file: 'packages/fluentui/docs/src/public/images/debug-panel.png', hash: '1763594797351844515' }, + { file: 'packages/fluentui/docs/src/public/images/flex-column.svg', hash: '13420908369708187834' }, + { file: 'packages/fluentui/docs/src/public/images/flex.svg', hash: '12705524441791002011' }, + { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo-black.png', hash: '17285458065082868156' }, + { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo-dev.png', hash: '18384050230717677814' }, + { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo-inverted.png', hash: '7323049856764235678' }, + { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo-white.png', hash: '16873796944914726880' }, + { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo.png', hash: '4223357833293521573' }, + { file: 'packages/fluentui/docs/src/public/images/grid-page.svg', hash: '5845272755759141768' }, + { file: 'packages/fluentui/docs/src/public/images/grid.svg', hash: '18145659620074116750' }, + { file: 'packages/fluentui/docs/src/public/images/leaves/4.png', hash: '9698121306957908242' }, + { file: 'packages/fluentui/docs/src/public/images/merge-themes.png', hash: '10780854662329195358' }, + { file: 'packages/fluentui/docs/src/public/images/telemetry-popover.png', hash: '14868284227356840303' }, + { + file: 'packages/fluentui/docs/src/public/images/wireframe/centered-paragraph.png', + hash: '10969773164831580739', + }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/image-square.png', hash: '16581090418038656475' }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/image-text.png', hash: '3041367255737086447' }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/image.png', hash: '747346878701406979' }, + { + file: 'packages/fluentui/docs/src/public/images/wireframe/media-paragraph-alt.png', + hash: '4471622377677331550', + }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/media-paragraph.png', hash: '11364423197818185453' }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/paragraph.png', hash: '9934416593936712637' }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/short-paragraph.png', hash: '16858210220403627072' }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/square-image.png', hash: '16889948977609430935' }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/text-image.png', hash: '7314099801723707747' }, + { file: 'packages/fluentui/docs/src/public/images/wireframe/white-image.png', hash: '8491941802269190219' }, + { file: 'packages/fluentui/docs/src/routes.tsx', hash: '548899793948079259' }, + { file: 'packages/fluentui/docs/src/types.ts', hash: '3690356436343090709' }, + { file: 'packages/fluentui/docs/src/utils/componentInfoContext.ts', hash: '14141966615007506394' }, + { file: 'packages/fluentui/docs/src/utils/exampleKebabNameToFilename.ts', hash: '13723917716259720251' }, + { file: 'packages/fluentui/docs/src/utils/examplePathToHash.ts', hash: '17785041489810962660' }, + { file: 'packages/fluentui/docs/src/utils/getComponentGroup.ts', hash: '10023209888705973382' }, + { file: 'packages/fluentui/docs/src/utils/getComponentPathname.ts', hash: '15202045931346218345' }, + { file: 'packages/fluentui/docs/src/utils/getFormattedHash.ts', hash: '3411076362027193243' }, + { file: 'packages/fluentui/docs/src/utils/getInfoForSeeTags.ts', hash: '4991392641415004304' }, + { file: 'packages/fluentui/docs/src/utils/helpers.tsx', hash: '1810044703867440324' }, + { file: 'packages/fluentui/docs/src/utils/index.tsx', hash: '13806331586645047503' }, + { file: 'packages/fluentui/docs/src/utils/parseExamplePath.ts', hash: '16706072088821032380' }, + { file: 'packages/fluentui/docs/src/utils/scrollToAnchor.ts', hash: '17162046583042382009' }, + { file: 'packages/fluentui/docs/src/utils/systemColors.ts', hash: '12421366474515129353' }, + { file: 'packages/fluentui/docs/src/views/Accessibility.tsx', hash: '14313422365893815015' }, + { file: 'packages/fluentui/docs/src/views/AccessibilityBehaviors.tsx', hash: '4339850402107540172' }, + { file: 'packages/fluentui/docs/src/views/AutoFocusZoneDoc.tsx', hash: '7307499123829744760' }, + { file: 'packages/fluentui/docs/src/views/ButtonNameComputation.tsx', hash: '12480504237081445002' }, + { file: 'packages/fluentui/docs/src/views/CategoryColorPalette.tsx', hash: '16022603617278599885' }, + { file: 'packages/fluentui/docs/src/views/CategoryColorSchemes.tsx', hash: '6249285355893149247' }, + { file: 'packages/fluentui/docs/src/views/ColorPalette.tsx', hash: '14361136615216977425' }, + { file: 'packages/fluentui/docs/src/views/ColorSchemes.tsx', hash: '5696274395708458130' }, + { file: 'packages/fluentui/docs/src/views/Colors.tsx', hash: '18267685702508182429' }, + { file: 'packages/fluentui/docs/src/views/FAQ.tsx', hash: '9327556336647218856' }, + { file: 'packages/fluentui/docs/src/views/FocusTrapZoneDoc.tsx', hash: '5869377137718940548' }, + { file: 'packages/fluentui/docs/src/views/FocusZoneDoc.tsx', hash: '14378636742874247590' }, + { file: 'packages/fluentui/docs/src/views/IconViewer.tsx', hash: '4798597363505578805' }, + { file: 'packages/fluentui/docs/src/views/IntegrateCustomComponents.tsx', hash: '6622788869327045608' }, + { file: 'packages/fluentui/docs/src/views/Introduction.tsx', hash: '11800775140060361692' }, + { file: 'packages/fluentui/docs/src/views/Layout.tsx', hash: '13766368756168310176' }, + { file: 'packages/fluentui/docs/src/views/PageNotFound.tsx', hash: '3991127502619281965' }, + { file: 'packages/fluentui/docs/src/views/Performance.tsx', hash: '6468674394624662279' }, + { file: 'packages/fluentui/docs/src/views/PerformanceTests.tsx', hash: '11399504417377192266' }, + { file: 'packages/fluentui/docs/src/views/QuickStart.tsx', hash: '5780470598893800470' }, + { file: 'packages/fluentui/docs/src/views/Theming.tsx', hash: '645654017210929903' }, + { file: 'packages/fluentui/docs/src/views/ThemingExamples.tsx', hash: '16084639066734426970' }, + { file: 'packages/fluentui/docs/src/vr-tests/Accordion/Accordion.stories.tsx', hash: '2908197600057391553' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Accordion/AccordionExampleCustomTitle.stories.tsx', + hash: '16179710846324635696', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Alert/Alert.stories.tsx', hash: '10767343889850384505' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleDanger.stories.tsx', + hash: '15155761001088390209', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleDismissible.stories.tsx', + hash: '6857463277843533941', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleInfo.stories.tsx', hash: '3791698035384736485' }, + { file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleOof.stories.tsx', hash: '2342828234592925900' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleUrgent.stories.tsx', + hash: '17054968989162414493', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Alert/commonStoryWrightSteps.ts', hash: '12721790327113813325' }, + { file: 'packages/fluentui/docs/src/vr-tests/Animation/Animation.stories.tsx', hash: '4181148551675552707' }, + { file: 'packages/fluentui/docs/src/vr-tests/Attachment/Attachment.stories.tsx', hash: '16642720576436713986' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Attachment/AttachmentActionExampleShorthand.stories.tsx', + hash: '3716793378492317277', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Attachment/AttachmentActionableExampleShorthand.stories.tsx', + hash: '10698904945091264204', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Attachment/commonStoryWrightSteps.ts', hash: '1980623060784981451' }, + { file: 'packages/fluentui/docs/src/vr-tests/Avatar/Avatar.stories.tsx', hash: '11199104726299349165' }, + { file: 'packages/fluentui/docs/src/vr-tests/Box/Box.stories.tsx', hash: '3317368452319233198' }, + { file: 'packages/fluentui/docs/src/vr-tests/Breadcrumb/Breadcrumb.stories.tsx', hash: '14840601935862189481' }, + { file: 'packages/fluentui/docs/src/vr-tests/Button/Button.stories.tsx', hash: '6775530068213781537' }, + { file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExample.stories.tsx', hash: '13171374555278763771' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExampleContentAndIcon.stories.tsx', + hash: '16926446962302972010', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExampleDisabled.stories.tsx', + hash: '8847011181951402328', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExampleTextShorthand.stories.tsx', + hash: '2002621327211757642', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExampleWithTooltip.stories.tsx', + hash: '10371603433001352361', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonGroupCircularExampleShorthand.stories.tsx', + hash: '12419436000181409993', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonGroupExampleShorthand.stories.tsx', + hash: '594990976777991069', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Button/commonStoryWrightSteps.ts', hash: '13040400329679067273' }, + { file: 'packages/fluentui/docs/src/vr-tests/Card/Card.stories.tsx', hash: '15326725132438471431' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Card/CardExampleFocusable.stories.tsx', + hash: '4156768447595492362', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Card/CardExampleWithPreview.stories.tsx', + hash: '13478840147494527644', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Carousel/Carousel.stories.tsx', hash: '14817153570410016798' }, + { file: 'packages/fluentui/docs/src/vr-tests/Chat/Chat.stories.tsx', hash: '15245816339893430959' }, + { file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatExample.stories.tsx', hash: '1425446495779930194' }, + { file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatExampleCompact.stories.tsx', hash: '13251803643511980833' }, + { file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatExampleDetails.stories.tsx', hash: '7469309566711005970' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatExampleInScrollableShorthand.stories.tsx', + hash: '14139475853124801776', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatMessageExampleBadge.stories.tsx', + hash: '6649561404943581914', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Chat/MessageReactionsWithPopup.stories.tsx', + hash: '2125275788346988499', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Checkbox/Checkbox.stories.tsx', hash: '9297591130763312835' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExample.stories.tsx', + hash: '11981576073340880701', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExampleCheckedMixed.stories.tsx', + hash: '6988841085427624024', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExampleToggle.stories.tsx', + hash: '17041672079763277726', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Checkbox/commonStoryWrightSteps.ts', hash: '15779623513387323485' }, + { file: 'packages/fluentui/docs/src/vr-tests/Datepicker/Datepicker.stories.tsx', hash: '16950762239704288937' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerCellExample.stories.tsx', + hash: '5803726279486497054', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleClearable.stories.tsx', + hash: '17708742659733322937', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleLocalizationStrings.stories.tsx', + hash: '9501925128341184053', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleMinMaxDate.stories.tsx', + hash: '4670026384566950417', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleNoInput.stories.tsx', + hash: '15040560426204632860', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleRequired.stories.tsx', + hash: '9370669105425882114', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleRestrictedDates.stories.tsx', + hash: '5967310705340174608', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleStandaloneCalendarButton.stories.tsx', + hash: '15633474592787066601', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleToday.stories.tsx', + hash: '7515178996452324600', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleWeek.stories.tsx', + hash: '6208343740595701430', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerFormatExample.stories.tsx', + hash: '16933697073992990458', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerHeaderCellExample.stories.tsx', + hash: '395850943947398801', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Datepicker/utils.ts', hash: '4512443095283466106' }, + { file: 'packages/fluentui/docs/src/vr-tests/Dialog/Dialog.stories.tsx', hash: '14959937483740676108' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleBackdrop.stories.tsx', + hash: '10310462023880394967', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleContent.stories.tsx', + hash: '15603482485839891799', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleFooter.stories.tsx', + hash: '8780643621620224764', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleFullWidth.stories.tsx', + hash: '12526215090824633553', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleHeaderAction.stories.tsx', + hash: '3608597711373337505', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleRtl.stories.tsx', hash: '13913266811227693801' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleScroll.stories.tsx', + hash: '8727638438511381346', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleZoomContent.stories.tsx', + hash: '2646322061726867805', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Dialog/commonStoryWrightSteps.ts', hash: '5035117655443987294' }, + { file: 'packages/fluentui/docs/src/vr-tests/Divider/Divider.stories.tsx', hash: '2336088392374210039' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleColor.stories.tsx', + hash: '9350984882141975047', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleContent.stories.tsx', + hash: '15713735976335551192', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleFittedShorthand.stories.tsx', + hash: '7575714561514384677', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleImportantShorthand.stories.tsx', + hash: '7934661102588913154', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleRtl.stories.tsx', + hash: '1919741483563311435', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleRtlAndLtr.stories.tsx', + hash: '1596553248176707554', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleShorthand.stories.tsx', + hash: '1836745762037086729', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleSize.stories.tsx', + hash: '749462362943519466', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Dropdown/Dropdown.stories.tsx', hash: '7380798490621690637' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownClearableExample.stories.tsx', + hash: '10901930380665357639', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownCustomClearableExample.stories.tsx', + hash: '16599115945490633817', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExample.stories.tsx', hash: '6746037870592578958' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleDisabled.stories.tsx', + hash: '2548138539726891611', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleHeaderMessage.stories.tsx', + hash: '7474610870874134535', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleLoading.stories.tsx', + hash: '4750019353543139535', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleMultiple.stories.tsx', + hash: '4943875313427980342', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExamplePosition.stories.tsx', + hash: '5226721723577165111', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleRtl.stories.tsx', + hash: '4267473619245331597', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleSearchMultiple.stories.tsx', + hash: '17639475738577957204', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Embed/Embed.stories.tsx', hash: '14352696819000693300' }, + { file: 'packages/fluentui/docs/src/vr-tests/Flex/Flex.stories.tsx', hash: '4876944789388275395' }, + { file: 'packages/fluentui/docs/src/vr-tests/Form/Form.stories.tsx', hash: '10319055880626561175' }, + { file: 'packages/fluentui/docs/src/vr-tests/Grid/Grid.stories.tsx', hash: '9747090622440024910' }, + { file: 'packages/fluentui/docs/src/vr-tests/Header/Header.stories.tsx', hash: '11713594437092210982' }, + { file: 'packages/fluentui/docs/src/vr-tests/Image/Image.stories.tsx', hash: '13728569992723813207' }, + { file: 'packages/fluentui/docs/src/vr-tests/Input/Input.stories.tsx', hash: '3117706994055304869' }, + { file: 'packages/fluentui/docs/src/vr-tests/Input/InputExample.stories.tsx', hash: '4259709115869032841' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Input/InputExampleClearable.stories.tsx', + hash: '13357124920678294349', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Input/InputExampleLabelShorthand.stories.tsx', + hash: '9403554131586270215', + }, + { file: 'packages/fluentui/docs/src/vr-tests/ItemLayout/ItemLayout.stories.tsx', hash: '11291004727629675957' }, + { file: 'packages/fluentui/docs/src/vr-tests/Label/Label.stories.tsx', hash: '8322646797296035677' }, + { file: 'packages/fluentui/docs/src/vr-tests/Layout/Layout.stories.tsx', hash: '12305168029748552920' }, + { file: 'packages/fluentui/docs/src/vr-tests/List/List.stories.tsx', hash: '10005658482092092172' }, + { + file: 'packages/fluentui/docs/src/vr-tests/List/ListExampleNavigable.stories.tsx', + hash: '2033264551140513567', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/List/ListExampleSelectable.stories.tsx', + hash: '14791665715268384357', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Loader/Loader.stories.tsx', hash: '8685629729393552982' }, + { file: 'packages/fluentui/docs/src/vr-tests/Menu/Menu.stories.tsx', hash: '16522996101712812439' }, + { file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExample.stories.tsx', hash: '7874842300195873502' }, + { file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleIconOnly.stories.tsx', hash: '8811514051065876803' }, + { file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePointing.stories.tsx', hash: '1770809861026398977' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePositioningShorthand.stories.tsx', + hash: '12047715271551824840', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePositioningUpdateShorthand.stories.tsx', + hash: '9844235307744556267', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleToolbarShorthand.stories.tsx', + hash: '12430374699620979123', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleUnderlined.stories.tsx', + hash: '2828156010439144931', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleVertical.stories.tsx', hash: '3930389962001801874' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleVerticalPointing.stories.tsx', + hash: '2242695733298295403', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithIcons.stories.tsx', + hash: '7212200464392574991', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithSubMenu.stories.tsx', + hash: '12177337937806814467', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithSubMenuHover.stories.tsx', + hash: '13893143021108359130', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithTooltip.stories.tsx', + hash: '13597485382012665494', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Menu/commonStoryWrightSteps.ts', hash: '2988540096115097198' }, + { file: 'packages/fluentui/docs/src/vr-tests/MenuButton/MenuButton.stories.tsx', hash: '13465199678920766931' }, + { + file: 'packages/fluentui/docs/src/vr-tests/MenuButton/MenuButtonExampleRtl.stories.tsx', + hash: '14881944460208222872', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Pill/Pill.stories.tsx', hash: '16209955480601373171' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Popup/PopperExamplePositioning.stories.tsx', + hash: '17108778031370138215', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Popup/PopperExampleVisibilityModifiers.stories.tsx', + hash: '14496472523165935743', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Popup/Popup.stories.tsx', hash: '12982035354835778622' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupControlledExample.stories.tsx', + hash: '14219445074388559561', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupCustomTargetExample.stories.tsx', + hash: '16628596992789755265', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupExample.stories.tsx', hash: '273093962948343256' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupExampleOffset.stories.tsx', + hash: '17279656499074273202', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupExampleRtl.stories.tsx', hash: '17821588893262132237' }, + { file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupScrollExample.stories.tsx', hash: '7472589559301459687' }, + { file: 'packages/fluentui/docs/src/vr-tests/Portal/Portal.stories.tsx', hash: '18329814951255029859' }, + { file: 'packages/fluentui/docs/src/vr-tests/Provider/Provider.stories.tsx', hash: '1849411383435458007' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Provider/ProviderExampleFocusBorderShorthand.stories.tsx', + hash: '556263522791941668', + }, + { file: 'packages/fluentui/docs/src/vr-tests/RadioGroup/RadioGroup.stories.tsx', hash: '3002626285268418385' }, + { + file: 'packages/fluentui/docs/src/vr-tests/RadioGroup/RadioGroupVerticalExample.stories.tsx', + hash: '1882653333358837562', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Reaction/Reaction.stories.tsx', hash: '12197126940858620978' }, + { file: 'packages/fluentui/docs/src/vr-tests/Segment/Segment.stories.tsx', hash: '5752809249559982694' }, + { file: 'packages/fluentui/docs/src/vr-tests/Skeleton/Skeleton.stories.tsx', hash: '452440236106245320' }, + { file: 'packages/fluentui/docs/src/vr-tests/Slider/Slider.stories.tsx', hash: '5261459962563409855' }, + { file: 'packages/fluentui/docs/src/vr-tests/Slider/SliderExampleRtl.stories.tsx', hash: '3914854734713079222' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Slider/SliderExampleShorthand.stories.tsx', + hash: '9929060552557872639', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Slider/commonStoryWrightSteps.ts', hash: '2651038160251967308' }, + { file: 'packages/fluentui/docs/src/vr-tests/SplitButton/SplitButton.stories.tsx', hash: '8519984363954494070' }, + { + file: 'packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonExamplePrimaryShorthand.stories.tsx', + hash: '8422849834173982846', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonExampleSmallContainer.stories.tsx', + hash: '7689840483461586695', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonPositioningExampleShorthand.stories.tsx', + hash: '5894858692563044601', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Status/Status.stories.tsx', hash: '14667992198519604702' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Status/StatusTypeExampleShorthand.stories.tsx', + hash: '1420982689125655842', + }, + { file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIcon.stories.tsx', hash: '13844315544099130747' }, + { file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExample.stories.tsx', hash: '17296559805843725617' }, + { + file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleCircular.stories.tsx', + hash: '15602236924226983002', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleColor.stories.tsx', + hash: '3200142409606409793', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleDisabled.stories.tsx', + hash: '12086886858916930169', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleSize.stories.tsx', + hash: '3300404581410564444', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleSpace.stories.tsx', + hash: '16223808322314871624', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconSetExampleShorthand.stories.tsx', + hash: '3614912091945043787', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgconExampleBordered.stories.tsx', + hash: '3229855193108540106', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Table/StaticTable.stories.tsx', hash: '6191690595588093057' }, + { file: 'packages/fluentui/docs/src/vr-tests/Table/Table.stories.tsx', hash: '925276430554274312' }, + { file: 'packages/fluentui/docs/src/vr-tests/Text/Text.stories.tsx', hash: '17715685917275609993' }, + { file: 'packages/fluentui/docs/src/vr-tests/TextArea/TextArea.stories.tsx', hash: '10595951872412841348' }, + { file: 'packages/fluentui/docs/src/vr-tests/TextArea/TextAreaExample.stories.tsx', hash: '9931006383186087473' }, + { + file: 'packages/fluentui/docs/src/vr-tests/TextArea/TextAreaExampleInverted.stories.tsx', + hash: '9373604424649653510', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Toolbar/Toolbar.stories.tsx', hash: '8697615237273139195' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleActionPopupInMenu.stories.tsx', + hash: '11324502800226063998', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleEditorShorthand.stories.tsx', + hash: '17289603700788241000', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleMenuShorthand.stories.tsx', + hash: '7548137847935688166', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleMenuWithSubmenuShorthand.stories.tsx', + hash: '10032109462229660098', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflow.stories.tsx', + hash: '3169480496775116993', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflowPositioningShorthand.stories.tsx', + hash: '18419392648893855481', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflowPositioningShorthandRtl.stories.tsx', + hash: '3162366872774944657', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExamplePopupInMenu.stories.tsx', + hash: '3063647798902196619', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExamplePopupShorthand.stories.tsx', + hash: '4914685865878468106', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleRadioGroupShorthand.stories.tsx', + hash: '8706800865705494388', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleShorthand.stories.tsx', + hash: '16747780565214128517', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleVariables.stories.tsx', + hash: '4469272913605194531', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Tooltip/Tooltip.stories.tsx', hash: '15792984072210537690' }, + { file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExample.stories.tsx', hash: '15679492189176217862' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleDialogContentShorthand.stories.tsx', + hash: '13135746159300986169', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExamplePointing.stories.tsx', + hash: '12950718817577864559', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleRtl.stories.tsx', + hash: '12279619360757980168', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleTarget.stories.tsx', + hash: '16157157304124443814', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Tree/Tree.stories.tsx', hash: '1332342421862574948' }, + { + file: 'packages/fluentui/docs/src/vr-tests/Tree/TreeExampleShorthand.stories.tsx', + hash: '4500943896345512926', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Tree/TreeMultiselectExample.stories.tsx', + hash: '14765947487485746937', + }, + { + file: 'packages/fluentui/docs/src/vr-tests/Tree/TreeTitleCustomizationExample.stories.tsx', + hash: '10973446212198458933', + }, + { file: 'packages/fluentui/docs/src/vr-tests/Video/Video.stories.tsx', hash: '8562641388055379331' }, + { file: 'packages/fluentui/docs/src/vr-tests/utilities/getThemeStoryVariant.tsx', hash: '15628272627810505572' }, + { file: 'packages/fluentui/docs/src/vr-tests/utilities/index.ts', hash: '4893167292256393098' }, + { file: 'packages/fluentui/docs/tsconfig.json', hash: '872626015430090431' }, + ], + '@fluentui/react-swatch-picker-preview': [ + { file: 'packages/react-components/react-swatch-picker-preview/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-swatch-picker-preview/.eslintrc.json', hash: '11822209983446579696' }, + { + file: 'packages/react-components/react-swatch-picker-preview/.storybook/main.js', + hash: '11617744840349284164', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/.storybook/preview.js', + hash: '1791378012295456991', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-swatch-picker-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-swatch-picker-preview/LICENSE', hash: '5934331551714403714' }, + { file: 'packages/react-components/react-swatch-picker-preview/README.md', hash: '7419281624987644468' }, + { + file: 'packages/react-components/react-swatch-picker-preview/config/api-extractor.json', + hash: '124052868224837692', + }, + { file: 'packages/react-components/react-swatch-picker-preview/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-swatch-picker-preview/docs/Spec.md', hash: '6103625817265663911' }, + { + file: 'packages/react-components/react-swatch-picker-preview/etc/react-swatch-picker-preview.api.md', + hash: '16193202918846092278', + }, + { file: 'packages/react-components/react-swatch-picker-preview/jest.config.js', hash: '17033989963135647545' }, + { file: 'packages/react-components/react-swatch-picker-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-swatch-picker-preview/package.json', + hash: '549445429650425408', + deps: [ + '@fluentui/react-jsx-runtime', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-swatch-picker-preview/project.json', hash: '18290180041366416211' }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/SwatchPicker.ts', + hash: '9804286450005810402', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.test.tsx', + hash: '9571205629442676551', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.tsx', + hash: '10932485903494897566', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.types.ts', + hash: '2241787495689417402', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/__snapshots__/SwatchPicker.test.tsx.snap', + hash: '18252006600174267969', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/index.ts', + hash: '7361079493278890998', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/renderSwatchPicker.tsx', + hash: '6990947521985192591', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/useSwatchPicker.ts', + hash: '769200771881258129', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/useSwatchPickerStyles.styles.ts', + hash: '17752194373954321560', + }, + { file: 'packages/react-components/react-swatch-picker-preview/src/index.ts', hash: '1833191522506500701' }, + { + file: 'packages/react-components/react-swatch-picker-preview/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { file: 'packages/react-components/react-swatch-picker-preview/stories/.gitkeep', hash: '3244421341483603138' }, + { + file: 'packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerBestPractices.md', + hash: '13132854725403121719', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerDefault.stories.tsx', + hash: '17318452984797150085', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/index.stories.tsx', + hash: '12173169998730479378', + }, + { file: 'packages/react-components/react-swatch-picker-preview/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-swatch-picker-preview/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-swatch-picker-preview/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/stress-test': [ + { file: 'apps/stress-test/.babelrc', hash: '12862917896289059134' }, + { file: 'apps/stress-test/.eslintrc.json', hash: '17415001537957764759' }, + { file: 'apps/stress-test/.gitignore', hash: '15381081997006216537' }, + { file: 'apps/stress-test/.npmignore', hash: '6985117138208138805' }, + { file: 'apps/stress-test/CHANGELOG.json', hash: '3437580707295011777' }, + { file: 'apps/stress-test/CHANGELOG.md', hash: '11176202236824542392' }, + { file: 'apps/stress-test/README.md', hash: '6390444478274191284' }, + { file: 'apps/stress-test/config/tests.js', hash: '11168571691074990614' }, + { file: 'apps/stress-test/jest.config.js', hash: '9458445199894798693' }, + { file: 'apps/stress-test/just.config.ts', hash: '10393370776333958822' }, + { + file: 'apps/stress-test/package.json', + hash: '15481262008595934140', + deps: [ + '@fluentui/react', + '@fluentui/react-components', + 'npm:@fluentui/react-icons', + '@fluentui/web-components', + 'npm:@microsoft/fast-element', + 'npm:afterframe', + 'npm:react', + 'npm:react-dom', + 'npm:random-seedable', + '@fluentui/scripts-tasks', + '@fluentui/scripts-storybook', + ], + }, + { file: 'apps/stress-test/project.json', hash: '8519279046864749978' }, + { file: 'apps/stress-test/scenarios/default.js', hash: '5667652972228170629' }, + { file: 'apps/stress-test/scripts/commands/build.ts', hash: '9419308908411865324' }, + { file: 'apps/stress-test/scripts/commands/buildFixture.ts', hash: '4525318911210783745' }, + { file: 'apps/stress-test/scripts/commands/buildTestConfig.ts', hash: '10914442217612715419' }, + { file: 'apps/stress-test/scripts/commands/dev.ts', hash: '717550860288446011' }, + { file: 'apps/stress-test/scripts/commands/processResults.ts', hash: '12562565022016957121' }, + { file: 'apps/stress-test/scripts/commands/run.ts', hash: '4847220144281690301' }, + { file: 'apps/stress-test/scripts/commands/runServer.ts', hash: '1695533053367418885' }, + { file: 'apps/stress-test/scripts/commands/runTachometer.ts', hash: '14114252202943153800' }, + { file: 'apps/stress-test/scripts/stressTest.ts', hash: '11797513512940166661' }, + { file: 'apps/stress-test/scripts/utils/configureYargs.ts', hash: '16260029187749751820' }, + { file: 'apps/stress-test/scripts/utils/fixtures.ts', hash: '10863951851903674631' }, + { file: 'apps/stress-test/scripts/utils/getBrowsers.ts', hash: '2767025493846740149' }, + { file: 'apps/stress-test/scripts/utils/paths.ts', hash: '5278825876081271854' }, + { file: 'apps/stress-test/scripts/utils/server.ts', hash: '822087886506422870' }, + { file: 'apps/stress-test/scripts/utils/tachometer.ts', hash: '3168697832787878755' }, + { file: 'apps/stress-test/scripts/utils/tree/RandomSelectorTreeNode.ts', hash: '6146005535267643186' }, + { file: 'apps/stress-test/scripts/utils/tree/RandomTree.ts', hash: '13001941047399227604' }, + { file: 'apps/stress-test/scripts/utils/types.ts', hash: '5655566756638933089' }, + { file: 'apps/stress-test/src/components/v8/StressApp.tsx', hash: '18116729224501891286' }, + { file: 'apps/stress-test/src/components/v8/StressComponent.tsx', hash: '4244808785460217124' }, + { file: 'apps/stress-test/src/components/v8/StressContainer.tsx', hash: '9963871457639355036' }, + { file: 'apps/stress-test/src/components/v9/StressApp.tsx', hash: '8514184576449260536' }, + { file: 'apps/stress-test/src/components/v9/StressComponent.tsx', hash: '2111244307928688142' }, + { file: 'apps/stress-test/src/components/v9/StressContainer.tsx', hash: '13765506946664693107' }, + { file: 'apps/stress-test/src/components/wc/stressApp.ts', hash: '4924957931395796051' }, + { file: 'apps/stress-test/src/components/wc/stressComponent.ts', hash: '17691895993458559136' }, + { file: 'apps/stress-test/src/components/wc/stressContainer.ts', hash: '6793612953422835054' }, + { file: 'apps/stress-test/src/fixtures/.gitignore', hash: '5942482769455841618' }, + { file: 'apps/stress-test/src/pages/v8/simple-stress/index.html', hash: '17054045918937358546' }, + { file: 'apps/stress-test/src/pages/v8/simple-stress/index.tsx', hash: '8145014336300914316' }, + { file: 'apps/stress-test/src/pages/v8/stress-tree/index.html', hash: '15931849501101204950' }, + { file: 'apps/stress-test/src/pages/v8/stress-tree/index.tsx', hash: '10784484438983706757' }, + { file: 'apps/stress-test/src/pages/v9/simple-stress/index.html', hash: '17996328833487928766' }, + { file: 'apps/stress-test/src/pages/v9/simple-stress/index.tsx', hash: '5275492453195147599' }, + { file: 'apps/stress-test/src/pages/v9/stress-tree/index.html', hash: '16355370479256157553' }, + { file: 'apps/stress-test/src/pages/v9/stress-tree/index.tsx', hash: '5258794036800619415' }, + { file: 'apps/stress-test/src/pages/wc/simple-stress/index.html', hash: '1270571087989138208' }, + { file: 'apps/stress-test/src/pages/wc/simple-stress/index.ts', hash: '15556660320515370092' }, + { file: 'apps/stress-test/src/pages/wc/stress-tree/index.html', hash: '11835810937514846385' }, + { file: 'apps/stress-test/src/pages/wc/stress-tree/index.ts', hash: '15833416144539563430' }, + { file: 'apps/stress-test/src/renderers/v8/button.tsx', hash: '9045728902588530340' }, + { file: 'apps/stress-test/src/renderers/v8/checkbox.tsx', hash: '6539321948897356327' }, + { file: 'apps/stress-test/src/renderers/v8/spinButton.tsx', hash: '16265282132677230376' }, + { file: 'apps/stress-test/src/renderers/v8/stress.tsx', hash: '11516277076088170648' }, + { file: 'apps/stress-test/src/renderers/v8/textField.tsx', hash: '15777792370713890617' }, + { file: 'apps/stress-test/src/renderers/v8/textarea.tsx', hash: '5651749419672941671' }, + { file: 'apps/stress-test/src/renderers/v9/btn/basic.tsx', hash: '7135601453948143150' }, + { file: 'apps/stress-test/src/renderers/v9/btn/idiomatic.tsx', hash: '17785011319006702868' }, + { file: 'apps/stress-test/src/renderers/v9/btn/override.tsx', hash: '5832742309068265507' }, + { file: 'apps/stress-test/src/renderers/v9/btn/styles.ts', hash: '2372224596345633038' }, + { file: 'apps/stress-test/src/renderers/v9/button.tsx', hash: '12612410767034293702' }, + { file: 'apps/stress-test/src/renderers/v9/checkbox.tsx', hash: '3401473945961708472' }, + { file: 'apps/stress-test/src/renderers/v9/input.tsx', hash: '8820280999885685987' }, + { file: 'apps/stress-test/src/renderers/v9/spinButton/noPseudos.tsx', hash: '2688120599484118925' }, + { file: 'apps/stress-test/src/renderers/v9/spinButton/vanilla.tsx', hash: '13829098914655280350' }, + { file: 'apps/stress-test/src/renderers/v9/spinButton.tsx', hash: '6121116104547615511' }, + { file: 'apps/stress-test/src/renderers/v9/stress.tsx', hash: '14702699307755792534' }, + { file: 'apps/stress-test/src/renderers/v9/textarea/noPseudo.tsx', hash: '1389311219434304303' }, + { file: 'apps/stress-test/src/renderers/v9/textarea.tsx', hash: '12873383168720038622' }, + { file: 'apps/stress-test/src/renderers/v9/vanillaButton.tsx', hash: '4516616351088856213' }, + { file: 'apps/stress-test/src/renderers/wc/btn/vanillaButton.ts', hash: '10811222679811356956' }, + { file: 'apps/stress-test/src/renderers/wc/btn/wcBasicButton.ts', hash: '11539836511375251289' }, + { file: 'apps/stress-test/src/renderers/wc/button.ts', hash: '6999027257311316012' }, + { file: 'apps/stress-test/src/renderers/wc/checkbox.ts', hash: '15970545569051510853' }, + { file: 'apps/stress-test/src/renderers/wc/numberField/vanilla.ts', hash: '8959457943263928112' }, + { file: 'apps/stress-test/src/renderers/wc/numberField.ts', hash: '16321108348585429551' }, + { file: 'apps/stress-test/src/renderers/wc/stress.ts', hash: '10883422701119623451' }, + { file: 'apps/stress-test/src/renderers/wc/textField.ts', hash: '291657744163180278' }, + { file: 'apps/stress-test/src/shared/css/RandomSelector.ts', hash: '16765679475685581804' }, + { file: 'apps/stress-test/src/shared/css/injectStyles.ts', hash: '874717523769405550' }, + { file: 'apps/stress-test/src/shared/react/ReactSelectorTree.tsx', hash: '1904747251329859137' }, + { file: 'apps/stress-test/src/shared/react/ReactTest.tsx', hash: '15293360124561503855' }, + { file: 'apps/stress-test/src/shared/react/ReactTree.tsx', hash: '7152825019561051430' }, + { file: 'apps/stress-test/src/shared/react/TestAdd.tsx', hash: '12303512287437308333' }, + { file: 'apps/stress-test/src/shared/react/TestInjectStyles.tsx', hash: '15879335621216282780' }, + { file: 'apps/stress-test/src/shared/react/TestMount.tsx', hash: '7958151074071589670' }, + { file: 'apps/stress-test/src/shared/react/TestReRenderAll.tsx', hash: '11165957533216239885' }, + { file: 'apps/stress-test/src/shared/react/TestRemoveAll.tsx', hash: '9728966942634649684' }, + { file: 'apps/stress-test/src/shared/react/onRender.ts', hash: '13278968105407979487' }, + { file: 'apps/stress-test/src/shared/react/types.ts', hash: '17179176776844544347' }, + { file: 'apps/stress-test/src/shared/tree/iterators/dfs.ts', hash: '12875190868999900583' }, + { file: 'apps/stress-test/src/shared/tree/types.ts', hash: '7464791436826229288' }, + { file: 'apps/stress-test/src/shared/utils/performanceMeasure.ts', hash: '3012816799120387809' }, + { file: 'apps/stress-test/src/shared/utils/random.ts', hash: '16404106474801088880' }, + { file: 'apps/stress-test/src/shared/utils/testOptions.ts', hash: '17341661357557143378' }, + { file: 'apps/stress-test/src/shared/utils/testUtils.ts', hash: '12817262226704966804' }, + { file: 'apps/stress-test/src/shared/vanilla/TestAdd.ts', hash: '9408687668738176897' }, + { file: 'apps/stress-test/src/shared/vanilla/TestInjectStyles.ts', hash: '14944531061658898293' }, + { file: 'apps/stress-test/src/shared/vanilla/TestMount.ts', hash: '4062758155564446044' }, + { file: 'apps/stress-test/src/shared/vanilla/TestReRenderAll.ts', hash: '505702295482162602' }, + { file: 'apps/stress-test/src/shared/vanilla/TestRemoveAll.ts', hash: '6839898938459418030' }, + { file: 'apps/stress-test/src/shared/vanilla/VanillaSelectorTree.ts', hash: '13281375955283748015' }, + { file: 'apps/stress-test/src/shared/vanilla/VanillaTree.ts', hash: '577304213019575576' }, + { file: 'apps/stress-test/src/shared/vanilla/types.ts', hash: '11716853905215850052' }, + { file: 'apps/stress-test/src/shared/wc/TestAdd.ts', hash: '7712416855864373058' }, + { file: 'apps/stress-test/src/shared/wc/TestInjectStyles.ts', hash: '17649406931455398846' }, + { file: 'apps/stress-test/src/shared/wc/TestMount.ts', hash: '12906067654388519872' }, + { file: 'apps/stress-test/src/shared/wc/TestReRenderAll.ts', hash: '5312913760596417727' }, + { file: 'apps/stress-test/src/shared/wc/TestRemoveAll.ts', hash: '18443864224568875877' }, + { file: 'apps/stress-test/src/shared/wc/WCSelectorTree.ts', hash: '14790884250663509401' }, + { file: 'apps/stress-test/src/shared/wc/WCTest.ts', hash: '16321518401394895901' }, + { file: 'apps/stress-test/src/shared/wc/WCTree.ts', hash: '6417409144636896365' }, + { file: 'apps/stress-test/src/shared/wc/types.ts', hash: '16914982769205636568' }, + { file: 'apps/stress-test/tsconfig.json', hash: '14768176472458847426' }, + { file: 'apps/stress-test/tsconfig.scripts.json', hash: '14672983425013350832' }, + { file: 'apps/stress-test/tsconfig.type.json', hash: '14876708043234667071' }, + { file: 'apps/stress-test/webpack/griffelConfig.ts', hash: '5590847160006798528' }, + { file: 'apps/stress-test/webpack/pageConfig.ts', hash: '49920576016816112' }, + { file: 'apps/stress-test/webpack/webpack.config.ts', hash: '12028734856447424120' }, + ], + '@fluentui/scripts-beachball': [ + { file: 'scripts/beachball/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/beachball/base.config.json', hash: '18294427476962403546' }, + { file: 'scripts/beachball/config.test.ts', hash: '17068829733399846091' }, + { file: 'scripts/beachball/customRenderers.ts', hash: '2804302704640461371' }, + { file: 'scripts/beachball/index.ts', hash: '3737354317537434882' }, + { file: 'scripts/beachball/jest.config.js', hash: '2008262210406061286' }, + { + file: 'scripts/beachball/package.json', + hash: '953464476337955798', + deps: ['@fluentui/scripts-github', '@fluentui/scripts-monorepo', '@fluentui/scripts-ts-node'], + }, + { file: 'scripts/beachball/project.json', hash: '73363171559233326' }, + { file: 'scripts/beachball/register.js', hash: '7204532544120368288' }, + { file: 'scripts/beachball/release-v8.config.js', hash: '12329776896108476656' }, + { file: 'scripts/beachball/release-vNext.config.js', hash: '12645380069464220490' }, + { file: 'scripts/beachball/shared.config.ts', hash: '3554874950759589528' }, + { file: 'scripts/beachball/tsconfig.json', hash: '3297202739442548297' }, + { file: 'scripts/beachball/tsconfig.lib.json', hash: '2990800560681471715' }, + { file: 'scripts/beachball/tsconfig.spec.json', hash: '16242416785763058919' }, + { file: 'scripts/beachball/utils.ts', hash: '13805748505039690586' }, + ], + '@fluentui/circulars-test': [ + { file: 'packages/fluentui/circulars-test/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/circulars-test/README.md', hash: '16627736154734360742' }, + { file: 'packages/fluentui/circulars-test/gulpfile.ts', hash: '8697200394590035566' }, + { + file: 'packages/fluentui/circulars-test/package.json', + hash: '12258503670094856879', + deps: ['@fluentui/react-northstar', '@fluentui/scripts-gulp'], + }, + { file: 'packages/fluentui/circulars-test/project.json', hash: '14472453665394675939' }, + ], + '@fluentui/react-link': [ + { file: 'packages/react-components/react-link/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-link/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-link/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-link/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-link/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-link/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-link/CHANGELOG.json', hash: '3962037913672436497' }, + { file: 'packages/react-components/react-link/CHANGELOG.md', hash: '18194813021463348387' }, + { file: 'packages/react-components/react-link/LICENSE', hash: '9832907009994579246' }, + { file: 'packages/react-components/react-link/README.md', hash: '6792617757650079592' }, + { file: 'packages/react-components/react-link/bundle-size/Label.fixture.js', hash: '9121178836648557554' }, + { file: 'packages/react-components/react-link/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-link/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-link/docs/MIGRATION.md', hash: '15493690066707415440' }, + { file: 'packages/react-components/react-link/docs/SPEC.md', hash: '12261141108370125154' }, + { file: 'packages/react-components/react-link/etc/react-link.api.md', hash: '9312917724489390831' }, + { file: 'packages/react-components/react-link/jest.config.js', hash: '11862231451554250380' }, + { file: 'packages/react-components/react-link/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-link/package.json', + hash: '12694717080936649426', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/a11y-testing', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-link/project.json', hash: '11422930109814152197' }, + { file: 'packages/react-components/react-link/src/Link.ts', hash: '7031503808279670627' }, + { file: 'packages/react-components/react-link/src/components/Link/Link.test.tsx', hash: '17540359287886314045' }, + { file: 'packages/react-components/react-link/src/components/Link/Link.tsx', hash: '3711147948241012629' }, + { file: 'packages/react-components/react-link/src/components/Link/Link.types.ts', hash: '3756492797898260450' }, + { + file: 'packages/react-components/react-link/src/components/Link/__snapshots__/Link.test.tsx.snap', + hash: '18030217870111124529', + }, + { file: 'packages/react-components/react-link/src/components/Link/index.ts', hash: '4320358890099633430' }, + { file: 'packages/react-components/react-link/src/components/Link/renderLink.tsx', hash: '9789431458503251801' }, + { file: 'packages/react-components/react-link/src/components/Link/useLink.ts', hash: '17399821058666932648' }, + { file: 'packages/react-components/react-link/src/components/Link/useLinkState.ts', hash: '3824048378179671478' }, + { + file: 'packages/react-components/react-link/src/components/Link/useLinkStyles.styles.ts', + hash: '300714945188623948', + }, + { file: 'packages/react-components/react-link/src/index.ts', hash: '4845491281378724120' }, + { file: 'packages/react-components/react-link/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-link/stories/Link/LinkAppearance.stories.tsx', + hash: '4374522065294609674', + }, + { + file: 'packages/react-components/react-link/stories/Link/LinkAsButton.stories.tsx', + hash: '7456747567086542617', + }, + { file: 'packages/react-components/react-link/stories/Link/LinkAsSpan.stories.tsx', hash: '3652403217738880018' }, + { file: 'packages/react-components/react-link/stories/Link/LinkBestPractices.md', hash: '3244421341483603138' }, + { + file: 'packages/react-components/react-link/stories/Link/LinkDefault.stories.tsx', + hash: '15067384076845671705', + }, + { file: 'packages/react-components/react-link/stories/Link/LinkDescription.md', hash: '7236969301982012236' }, + { + file: 'packages/react-components/react-link/stories/Link/LinkDisabled.stories.tsx', + hash: '4914115128158846428', + }, + { + file: 'packages/react-components/react-link/stories/Link/LinkDisabledFocusable.stories.tsx', + hash: '14219911784243672353', + }, + { file: 'packages/react-components/react-link/stories/Link/LinkInline.stories.tsx', hash: '9590348700846670455' }, + { file: 'packages/react-components/react-link/stories/Link/index.stories.tsx', hash: '1901570717605656364' }, + { file: 'packages/react-components/react-link/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-link/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-link/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-jsx-runtime': [ + { file: 'packages/react-components/react-jsx-runtime/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-jsx-runtime/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-jsx-runtime/.gitignore', hash: '9550321157120374298' }, + { file: 'packages/react-components/react-jsx-runtime/.swcrc', hash: '471348148265161299' }, + { file: 'packages/react-components/react-jsx-runtime/CHANGELOG.json', hash: '10971670868821144686' }, + { file: 'packages/react-components/react-jsx-runtime/CHANGELOG.md', hash: '12062860809062640425' }, + { file: 'packages/react-components/react-jsx-runtime/LICENSE', hash: '8462864562846768755' }, + { file: 'packages/react-components/react-jsx-runtime/README.md', hash: '11109812187361138131' }, + { + file: 'packages/react-components/react-jsx-runtime/bundle-size/Classic.fixture.js', + hash: '2189361890724554761', + }, + { + file: 'packages/react-components/react-jsx-runtime/bundle-size/DevRuntime.fixture.js', + hash: '12091473808950978917', + }, + { + file: 'packages/react-components/react-jsx-runtime/bundle-size/Runtime.fixture.js', + hash: '6901675173806772497', + }, + { file: 'packages/react-components/react-jsx-runtime/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-jsx-runtime/config/pre-copy.json', hash: '447189867406931907' }, + { file: 'packages/react-components/react-jsx-runtime/config/tests.js', hash: '16913843724990866890' }, + { + file: 'packages/react-components/react-jsx-runtime/etc/react-jsx-runtime.api.md', + hash: '16798684193978159480', + }, + { file: 'packages/react-components/react-jsx-runtime/jest.config.js', hash: '2360704257532875213' }, + { file: 'packages/react-components/react-jsx-runtime/just.config.ts', hash: '8807236478034018475' }, + { + file: 'packages/react-components/react-jsx-runtime/package.json', + hash: '7260507828872674596', + deps: [ + '@fluentui/react-utilities', + 'npm:react-is', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-components/react-jsx-runtime/project.json', hash: '10908212225777993114' }, + { file: 'packages/react-components/react-jsx-runtime/src/createElement.test.tsx', hash: '7857934002103683381' }, + { file: 'packages/react-components/react-jsx-runtime/src/createElement.ts', hash: '5143903251423192488' }, + { file: 'packages/react-components/react-jsx-runtime/src/index.ts', hash: '10432910293518490296' }, + { file: 'packages/react-components/react-jsx-runtime/src/interop.test.tsx', hash: '7355979823247544430' }, + { + file: 'packages/react-components/react-jsx-runtime/src/jsx/createElementFromSlotComponent.ts', + hash: '3242772620948003538', + }, + { file: 'packages/react-components/react-jsx-runtime/src/jsx/createJSX.ts', hash: '16587162612105716723' }, + { file: 'packages/react-components/react-jsx-runtime/src/jsx/jsxDEVSlot.ts', hash: '13641530372240414573' }, + { file: 'packages/react-components/react-jsx-runtime/src/jsx/jsxSlot.ts', hash: '3757873525937880939' }, + { file: 'packages/react-components/react-jsx-runtime/src/jsx/jsxsSlot.ts', hash: '14860851723228540792' }, + { + file: 'packages/react-components/react-jsx-runtime/src/jsx-dev-runtime/index.d.ts__tmpl__', + hash: '853853025402546499', + }, + { + file: 'packages/react-components/react-jsx-runtime/src/jsx-dev-runtime/package.json__tmpl__', + hash: '12566889565698761272', + }, + { file: 'packages/react-components/react-jsx-runtime/src/jsx-dev-runtime.ts', hash: '1020294888243174344' }, + { + file: 'packages/react-components/react-jsx-runtime/src/jsx-runtime/index.d.ts__tmpl__', + hash: '9028021041769997884', + }, + { + file: 'packages/react-components/react-jsx-runtime/src/jsx-runtime/package.json__tmpl__', + hash: '4896823238390758319', + }, + { file: 'packages/react-components/react-jsx-runtime/src/jsx-runtime.test.tsx', hash: '4011489009326148226' }, + { file: 'packages/react-components/react-jsx-runtime/src/jsx-runtime.ts', hash: '1117252994552105149' }, + { file: 'packages/react-components/react-jsx-runtime/src/utils/DevRuntime.ts', hash: '16814367357734031505' }, + { file: 'packages/react-components/react-jsx-runtime/src/utils/Runtime.ts', hash: '1866520596003103388' }, + { + file: 'packages/react-components/react-jsx-runtime/src/utils/createCompatSlotComponent.ts', + hash: '3622659148642250765', + }, + { + file: 'packages/react-components/react-jsx-runtime/src/utils/getMetadataFromSlotComponent.test.ts', + hash: '6977890710643796475', + }, + { + file: 'packages/react-components/react-jsx-runtime/src/utils/getMetadataFromSlotComponent.ts', + hash: '7143021942311493841', + }, + { file: 'packages/react-components/react-jsx-runtime/src/utils/types.ts', hash: '12638258598676338443' }, + { + file: 'packages/react-components/react-jsx-runtime/src/utils/warnIfElementTypeIsInvalid.ts', + hash: '17606458788076983412', + }, + { file: 'packages/react-components/react-jsx-runtime/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/react-jsx-runtime/tsconfig.lib.json', hash: '14975475306433073951' }, + { file: 'packages/react-components/react-jsx-runtime/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/projects-test': [ + { file: 'packages/fluentui/projects-test/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/projects-test/README.md', hash: '7712439429583937954' }, + { file: 'packages/fluentui/projects-test/assets/.eslintrc.json', hash: '9463757486019526557' }, + { file: 'packages/fluentui/projects-test/assets/cra/src/App.tsx', hash: '13975067287482039525' }, + { file: 'packages/fluentui/projects-test/assets/nextjs/pages/index.js', hash: '16720790296375983707' }, + { file: 'packages/fluentui/projects-test/assets/rollup/app.js', hash: '13611222878904424794' }, + { file: 'packages/fluentui/projects-test/assets/rollup/index.html', hash: '11741015068606122975' }, + { file: 'packages/fluentui/projects-test/assets/rollup/rollup.config.js', hash: '13323537449881479399' }, + { file: 'packages/fluentui/projects-test/assets/typings/src/index.tsx', hash: '9172007156886044749' }, + { file: 'packages/fluentui/projects-test/assets/typings/tsconfig.json', hash: '3933573742264779466' }, + { file: 'packages/fluentui/projects-test/babel.config.js', hash: '7654395597360391156' }, + { file: 'packages/fluentui/projects-test/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/projects-test/package.json', + hash: '4974496406254325970', + deps: [ + '@fluentui/react-northstar', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-projects-test', + ], + }, + { file: 'packages/fluentui/projects-test/project.json', hash: '11570660909808003153' }, + { file: 'packages/fluentui/projects-test/src/createReactApp.ts', hash: '14019440883191487480' }, + { file: 'packages/fluentui/projects-test/src/index.ts', hash: '6599092941110334536' }, + { file: 'packages/fluentui/projects-test/src/nextjs.ts', hash: '13103653866778791666' }, + { file: 'packages/fluentui/projects-test/src/rollup.ts', hash: '15862608973975210540' }, + { file: 'packages/fluentui/projects-test/src/typings.ts', hash: '1801624949097448713' }, + { file: 'packages/fluentui/projects-test/tsconfig.json', hash: '16064600855511744168' }, + ], + '@fluentui/scripts-projects-test': [ + { file: 'scripts/projects-test/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/projects-test/jest.config.js', hash: '14803115449739597477' }, + { + file: 'scripts/projects-test/package.json', + hash: '2440450978402607536', + deps: ['@fluentui/scripts-utils', '@fluentui/scripts-puppeteer', '@fluentui/scripts-monorepo'], + }, + { file: 'scripts/projects-test/project.json', hash: '7187626296521124201' }, + { file: 'scripts/projects-test/src/createReactApp.ts', hash: '12302227798055165115' }, + { file: 'scripts/projects-test/src/index.ts', hash: '14506511509153432346' }, + { file: 'scripts/projects-test/src/packPackages.ts', hash: '11290851018015733867' }, + { file: 'scripts/projects-test/src/performBrowserTest.ts', hash: '13012556253100885968' }, + { file: 'scripts/projects-test/src/utils.ts', hash: '3861302237109431008' }, + { file: 'scripts/projects-test/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/projects-test/tsconfig.lib.json', hash: '15222053984038389170' }, + { file: 'scripts/projects-test/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-proptypes': [ + { file: 'packages/fluentui/react-proptypes/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-proptypes/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-proptypes/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-proptypes/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-proptypes/jest.config.js', hash: '13298147580513423019' }, + { + file: 'packages/fluentui/react-proptypes/package.json', + hash: '7789869904881339211', + deps: [ + 'npm:@babel/runtime', + 'npm:lodash', + 'npm:prop-types', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:lerna-alias', + ], + }, + { file: 'packages/fluentui/react-proptypes/project.json', hash: '15801865268072002675' }, + { file: 'packages/fluentui/react-proptypes/src/index.ts', hash: '1441906070263022901' }, + { file: 'packages/fluentui/react-proptypes/src/leven.ts', hash: '8912276677069105379' }, + { file: 'packages/fluentui/react-proptypes/test/customPropTypes-test.ts', hash: '17583040494138182165' }, + { file: 'packages/fluentui/react-proptypes/tsconfig.json', hash: '2135287164835617870' }, + ], + '@fluentui/react-list-preview': [ + { file: 'packages/react-components/react-list-preview/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-list-preview/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-list-preview/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-list-preview/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-list-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-list-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-list-preview/LICENSE', hash: '5128350754157408457' }, + { file: 'packages/react-components/react-list-preview/README.md', hash: '13329727955369014943' }, + { file: 'packages/react-components/react-list-preview/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-list-preview/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-list-preview/docs/Spec.md', hash: '17280073763812887463' }, + { + file: 'packages/react-components/react-list-preview/etc/react-list-preview.api.md', + hash: '17650744448258090218', + }, + { file: 'packages/react-components/react-list-preview/jest.config.js', hash: '16230585065887809640' }, + { file: 'packages/react-components/react-list-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-list-preview/package.json', + hash: '5076334288358975452', + deps: [ + '@fluentui/react-jsx-runtime', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-shared-contexts', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-list-preview/project.json', hash: '18301453267181054182' }, + { file: 'packages/react-components/react-list-preview/src/List.ts', hash: '10892037581495151528' }, + { file: 'packages/react-components/react-list-preview/src/ListItem.ts', hash: '14415772845252035707' }, + { file: 'packages/react-components/react-list-preview/src/ListItemButton.ts', hash: '12363711673052210096' }, + { + file: 'packages/react-components/react-list-preview/src/components/List/List.test.tsx', + hash: '12322910775799983605', + }, + { + file: 'packages/react-components/react-list-preview/src/components/List/List.tsx', + hash: '1906116023345710491', + }, + { + file: 'packages/react-components/react-list-preview/src/components/List/List.types.ts', + hash: '8206792748462071029', + }, + { + file: 'packages/react-components/react-list-preview/src/components/List/__snapshots__/List.test.tsx.snap', + hash: '1227827408222929890', + }, + { + file: 'packages/react-components/react-list-preview/src/components/List/index.ts', + hash: '17107546934093025866', + }, + { + file: 'packages/react-components/react-list-preview/src/components/List/renderList.tsx', + hash: '15714918800686291357', + }, + { + file: 'packages/react-components/react-list-preview/src/components/List/useList.ts', + hash: '1027276539563479344', + }, + { + file: 'packages/react-components/react-list-preview/src/components/List/useListStyles.styles.ts', + hash: '6095077202937619016', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItem/ListItem.test.tsx', + hash: '3230708006815606248', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItem/ListItem.tsx', + hash: '3046689597475996224', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItem/ListItem.types.ts', + hash: '8027419436099248507', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItem/__snapshots__/ListItem.test.tsx.snap', + hash: '2250098978442735994', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItem/index.ts', + hash: '13458219659794583076', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItem/renderListItem.tsx', + hash: '4538665908862285107', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItem/useListItem.ts', + hash: '8332993251183877292', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItem/useListItemStyles.styles.ts', + hash: '145972862822319399', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.test.tsx', + hash: '8574153664309206265', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.tsx', + hash: '15946025473178805384', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.types.ts', + hash: '12013190060983824846', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItemButton/__snapshots__/ListItemButton.test.tsx.snap', + hash: '7851601325088660553', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItemButton/index.ts', + hash: '10205948326421395785', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItemButton/renderListItemButton.tsx', + hash: '4278382112469247585', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItemButton/useListItemButton.ts', + hash: '17042796213188080990', + }, + { + file: 'packages/react-components/react-list-preview/src/components/ListItemButton/useListItemButtonStyles.styles.ts', + hash: '8509921485527948458', + }, + { file: 'packages/react-components/react-list-preview/src/index.ts', hash: '12167157468152511670' }, + { file: 'packages/react-components/react-list-preview/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-list-preview/stories/List/ListBestPractices.md', + hash: '13132854725403121719', + }, + { + file: 'packages/react-components/react-list-preview/stories/List/ListDefault.stories.tsx', + hash: '5601696470293348097', + }, + { + file: 'packages/react-components/react-list-preview/stories/List/ListDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-list-preview/stories/List/index.stories.tsx', + hash: '9555990577237225551', + }, + { + file: 'packages/react-components/react-list-preview/stories/ListItem/ListItemBestPractices.md', + hash: '13132854725403121719', + }, + { + file: 'packages/react-components/react-list-preview/stories/ListItem/ListItemDefault.stories.tsx', + hash: '13381635606214282007', + }, + { + file: 'packages/react-components/react-list-preview/stories/ListItem/ListItemDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-list-preview/stories/ListItem/index.stories.tsx', + hash: '9558837703344875089', + }, + { + file: 'packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonBestPractices.md', + hash: '13132854725403121719', + }, + { + file: 'packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonDefault.stories.tsx', + hash: '6954470783452371311', + }, + { + file: 'packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-list-preview/stories/ListItemButton/index.stories.tsx', + hash: '5432902562725269627', + }, + { file: 'packages/react-components/react-list-preview/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-list-preview/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-list-preview/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-motion-preview': [ + { file: 'packages/react-components/react-motion-preview/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-motion-preview/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-motion-preview/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-motion-preview/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-motion-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-motion-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-motion-preview/CHANGELOG.json', hash: '11137084770627020814' }, + { file: 'packages/react-components/react-motion-preview/CHANGELOG.md', hash: '7183679563961265393' }, + { file: 'packages/react-components/react-motion-preview/LICENSE', hash: '1234262793966931881' }, + { file: 'packages/react-components/react-motion-preview/README.md', hash: '5121976902997572308' }, + { file: 'packages/react-components/react-motion-preview/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-motion-preview/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-motion-preview/docs/Spec.md', hash: '17845913729800975033' }, + { + file: 'packages/react-components/react-motion-preview/etc/react-motion-preview.api.md', + hash: '11822234989690462944', + }, + { file: 'packages/react-components/react-motion-preview/jest.config.js', hash: '14155382610793147225' }, + { file: 'packages/react-components/react-motion-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-motion-preview/package.json', + hash: '15544045345364563922', + deps: [ + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-motion-preview/project.json', hash: '9755635695534125383' }, + { file: 'packages/react-components/react-motion-preview/src/hooks/index.ts', hash: '8858878511737786592' }, + { + file: 'packages/react-components/react-motion-preview/src/hooks/useMotion.test.ts', + hash: '5083954587357687141', + }, + { file: 'packages/react-components/react-motion-preview/src/hooks/useMotion.ts', hash: '8532028455825888123' }, + { + file: 'packages/react-components/react-motion-preview/src/hooks/useMotionClassNames.test.ts', + hash: '2430367888544834912', + }, + { + file: 'packages/react-components/react-motion-preview/src/hooks/useMotionClassNames.ts', + hash: '10739644114435117367', + }, + { + file: 'packages/react-components/react-motion-preview/src/hooks/useReducedMotion.ts', + hash: '15515325398588090509', + }, + { file: 'packages/react-components/react-motion-preview/src/index.ts', hash: '479877564955136295' }, + { + file: 'packages/react-components/react-motion-preview/src/styles/useReducedMotionStyles.styles.ts', + hash: '4540984684513496074', + }, + { + file: 'packages/react-components/react-motion-preview/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { file: 'packages/react-components/react-motion-preview/src/utils/dom-style.ts', hash: '6443096568349431012' }, + { + file: 'packages/react-components/react-motion-preview/stories/UseMotion/MotionDescription.md', + hash: '4620999901264858225', + }, + { + file: 'packages/react-components/react-motion-preview/stories/UseMotion/MotionPreview.md', + hash: '9912155066303383782', + }, + { + file: 'packages/react-components/react-motion-preview/stories/UseMotion/MotionUsage.md', + hash: '10800830911355677136', + }, + { + file: 'packages/react-components/react-motion-preview/stories/UseMotion/UseMotion.stories.tsx', + hash: '3965154038000933055', + }, + { + file: 'packages/react-components/react-motion-preview/stories/UseMotion/UseMotionClassNames.stories.tsx', + hash: '972675374824631381', + }, + { + file: 'packages/react-components/react-motion-preview/stories/UseMotion/UseMotionWithDuration.stories.tsx', + hash: '7144854141420674605', + }, + { + file: 'packages/react-components/react-motion-preview/stories/UseMotion/index.stories.ts', + hash: '8283014325877865669', + }, + { file: 'packages/react-components/react-motion-preview/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-motion-preview/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-motion-preview/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/storybook': [ + { file: 'packages/storybook/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/storybook/.npmignore', hash: '15779616407447347661' }, + { file: 'packages/storybook/CHANGELOG.json', hash: '9684832229916596120' }, + { file: 'packages/storybook/CHANGELOG.md', hash: '6591049344540378333' }, + { file: 'packages/storybook/LICENSE', hash: '6831112954983569679' }, + { file: 'packages/storybook/README.md', hash: '14770738643865662074' }, + { file: 'packages/storybook/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/storybook/package.json', + hash: '11762021688884133970', + deps: [ + '@fluentui/react', + '@fluentui/theme', + 'npm:@storybook/addon-knobs', + 'npm:@storybook/addon-essentials', + 'npm:@storybook/addons', + '@fluentui/azure-themes', + '@fluentui/theme-samples', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/storybook/project.json', hash: '10709984597705834020' }, + { file: 'packages/storybook/src/decorators/index.ts', hash: '16391345502308910273' }, + { file: 'packages/storybook/src/decorators/withKeytipLayer.tsx', hash: '8532635969922419204' }, + { file: 'packages/storybook/src/decorators/withStrictMode.tsx', hash: '13082330610558521527' }, + { file: 'packages/storybook/src/index.ts', hash: '15433361193389949391' }, + { file: 'packages/storybook/src/knobs/useStrictMode.ts', hash: '1532086437071717950' }, + { file: 'packages/storybook/tsconfig.json', hash: '3498435803851457058' }, + ], + '@fluentui/theme': [ + { file: 'packages/theme/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/theme/.npmignore', hash: '7699079327417375383' }, + { file: 'packages/theme/CHANGELOG.json', hash: '8694526630624738678' }, + { file: 'packages/theme/CHANGELOG.md', hash: '5405190803702508355' }, + { file: 'packages/theme/LICENSE', hash: '15786973076553793748' }, + { file: 'packages/theme/README.md', hash: '9513324721564020061' }, + { file: 'packages/theme/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/theme/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/theme/etc/theme.api.md', hash: '11990291598636491933' }, + { file: 'packages/theme/jest.config.js', hash: '8193037916930093299' }, + { file: 'packages/theme/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/theme/package.json', + hash: '4880658300010728294', + deps: [ + '@fluentui/merge-styles', + '@fluentui/utilities', + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/theme/project.json', hash: '5594824764663362836' }, + { file: 'packages/theme/src/FluentTheme.ts', hash: '8872927701412996736' }, + { file: 'packages/theme/src/__snapshots__/createTheme.test.ts.snap', hash: '1620181105913435241' }, + { file: 'packages/theme/src/__snapshots__/mergeThemes.test.ts.snap', hash: '3437625483425530701' }, + { file: 'packages/theme/src/colors/DefaultPalette.ts', hash: '9047280692656939649' }, + { file: 'packages/theme/src/colors/FluentColors.ts', hash: '3901943768402102586' }, + { file: 'packages/theme/src/colors/index.ts', hash: '17068496585037409656' }, + { file: 'packages/theme/src/createTheme.test.ts', hash: '13146216824160332649' }, + { file: 'packages/theme/src/createTheme.ts', hash: '165150282001144514' }, + { file: 'packages/theme/src/effects/DefaultEffects.ts', hash: '12509924764455750919' }, + { file: 'packages/theme/src/effects/FluentDepths.ts', hash: '17261250879660942101' }, + { file: 'packages/theme/src/effects/index.ts', hash: '11784798050056506025' }, + { file: 'packages/theme/src/fonts/DefaultFontStyles.ts', hash: '7513078596996372857' }, + { file: 'packages/theme/src/fonts/FluentFonts.ts', hash: '15183035779480308768' }, + { file: 'packages/theme/src/fonts/__snapshots__/createFontStyles.test.ts.snap', hash: '13260755682867724243' }, + { file: 'packages/theme/src/fonts/createFontStyles.test.ts', hash: '342084165563790114' }, + { file: 'packages/theme/src/fonts/createFontStyles.ts', hash: '6054997297777341246' }, + { file: 'packages/theme/src/fonts/index.ts', hash: '7989996203233507146' }, + { file: 'packages/theme/src/index.ts', hash: '5096156196141648071' }, + { file: 'packages/theme/src/mergeThemes.test.ts', hash: '1854964498231524841' }, + { file: 'packages/theme/src/mergeThemes.ts', hash: '8066733853025885142' }, + { file: 'packages/theme/src/motion/AnimationStyles.ts', hash: '6009016863933539960' }, + { file: 'packages/theme/src/motion/FluentMotion.ts', hash: '14434753786724348979' }, + { file: 'packages/theme/src/motion/index.ts', hash: '11675984740600839755' }, + { file: 'packages/theme/src/spacing/DefaultSpacing.ts', hash: '10219715360821251712' }, + { file: 'packages/theme/src/spacing/index.ts', hash: '3486351936943740825' }, + { file: 'packages/theme/src/types/IAnimationStyles.ts', hash: '12653971684196105051' }, + { file: 'packages/theme/src/types/IEffects.ts', hash: '10026907101397233905' }, + { file: 'packages/theme/src/types/IFabricConfig.ts', hash: '5071856735493168297' }, + { file: 'packages/theme/src/types/IFontStyles.ts', hash: '2182319282794586696' }, + { file: 'packages/theme/src/types/IPalette.ts', hash: '2529464931097454784' }, + { file: 'packages/theme/src/types/IScheme.ts', hash: '9513225299507328404' }, + { file: 'packages/theme/src/types/ISemanticColors.ts', hash: '4202804278930620465' }, + { file: 'packages/theme/src/types/ISemanticTextColors.ts', hash: '14306295845370698813' }, + { file: 'packages/theme/src/types/ISpacing.ts', hash: '15242286375604099718' }, + { file: 'packages/theme/src/types/ITheme.ts', hash: '3909617946113210701' }, + { file: 'packages/theme/src/types/Theme.ts', hash: '10290910868267444293' }, + { file: 'packages/theme/src/types/index.ts', hash: '11830819220037665655' }, + { file: 'packages/theme/src/utilities/makeSemanticColors.ts', hash: '7063463176732882313' }, + { file: 'packages/theme/src/version.ts', hash: '14766332737427891807' }, + { file: 'packages/theme/tsconfig.json', hash: '12924358714988094235' }, + ], + '@fluentui/scripts-generators': [ + { file: 'scripts/generators/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/generators/README.md', hash: '3244421341483603138' }, + { file: 'scripts/generators/copy-notices.js', hash: '8339956232807130894' }, + { file: 'scripts/generators/create-package/index.ts', hash: '1023464366955464488' }, + { file: 'scripts/generators/create-package/plop-templates/.npmignore', hash: '15779616407447347661' }, + { file: 'scripts/generators/create-package/plop-templates/LICENSE', hash: '7784678994578688470' }, + { file: 'scripts/generators/create-package/plop-templates-node/.eslintrc.json', hash: '11018738359270224912' }, + { file: 'scripts/generators/create-package/plop-templates-node/README.md', hash: '11488531901706867964' }, + { file: 'scripts/generators/create-package/plop-templates-node/jest.config.js', hash: '5767287689832801759' }, + { file: 'scripts/generators/create-package/plop-templates-node/just.config.ts', hash: '10393370776333958822' }, + { file: 'scripts/generators/create-package/plop-templates-node/package.json.hbs', hash: '1858263664827995967' }, + { file: 'scripts/generators/create-package/plop-templates-node/src/index.ts', hash: '3244421341483603138' }, + { file: 'scripts/generators/create-package/plop-templates-node/tsconfig.json', hash: '14003963471471549059' }, + { file: 'scripts/generators/generate-package-manifest.js', hash: '829917185810683924' }, + { file: 'scripts/generators/generate-version-files.spec.ts', hash: '11734705974912052662' }, + { file: 'scripts/generators/generate-version-files.ts', hash: '16599489589663836752' }, + { file: 'scripts/generators/jest.config.js', hash: '17142233150211201331' }, + { + file: 'scripts/generators/package.json', + hash: '17736771304901104740', + deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-projects-test'], + }, + { file: 'scripts/generators/project.json', hash: '13911854573080798778' }, + { file: 'scripts/generators/rename-package.ts', hash: '18400035219499976562' }, + { file: 'scripts/generators/token-pipeline.ts', hash: '3747370135770113790' }, + { file: 'scripts/generators/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/generators/tsconfig.lib.json', hash: '504082678461750961' }, + { file: 'scripts/generators/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/scripts-storybook': [ + { file: 'scripts/storybook/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/storybook/README.md', hash: '6260771668642713165' }, + { file: 'scripts/storybook/jest.config.js', hash: '16159426598495183550' }, + { file: 'scripts/storybook/package.json', hash: '12768044836505529310', deps: ['@fluentui/scripts-monorepo'] }, + { file: 'scripts/storybook/project.json', hash: '11232580624195990329' }, + { file: 'scripts/storybook/src/index.d.ts', hash: '826157356781274866' }, + { file: 'scripts/storybook/src/index.js', hash: '1482846448957198356' }, + { file: 'scripts/storybook/src/loaders/custom-loader.js', hash: '4294621560128078241' }, + { file: 'scripts/storybook/src/rules.js', hash: '3284759671334880193' }, + { file: 'scripts/storybook/src/rules.spec.ts', hash: '13748453131777334686' }, + { file: 'scripts/storybook/src/utils.js', hash: '16447078335761239049' }, + { file: 'scripts/storybook/src/utils.spec.js', hash: '7235305373409857463' }, + { file: 'scripts/storybook/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/storybook/tsconfig.lib.json', hash: '3593133700658772030' }, + { file: 'scripts/storybook/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-icon-provider': [ + { file: 'packages/react-icon-provider/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-icon-provider/.npmignore', hash: '7699079327417375383' }, + { file: 'packages/react-icon-provider/CHANGELOG.json', hash: '7676443020765681429' }, + { file: 'packages/react-icon-provider/CHANGELOG.md', hash: '4138333685783748774' }, + { file: 'packages/react-icon-provider/LICENSE', hash: '3916819357349058896' }, + { file: 'packages/react-icon-provider/README.md', hash: '11260395080290584789' }, + { file: 'packages/react-icon-provider/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/react-icon-provider/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-icon-provider/etc/react-icon-provider.api.md', hash: '2639769618235613758' }, + { file: 'packages/react-icon-provider/jest.config.js', hash: '12858682342254308337' }, + { file: 'packages/react-icon-provider/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-icon-provider/package.json', + hash: '16700522927875202724', + deps: [ + '@fluentui/set-version', + '@fluentui/style-utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-icon-provider/project.json', hash: '11213610105968358891' }, + { file: 'packages/react-icon-provider/src/IconProvider.test.tsx', hash: '9471100122187543170' }, + { file: 'packages/react-icon-provider/src/IconProvider.tsx', hash: '5846544110297203840' }, + { file: 'packages/react-icon-provider/src/IconProvider.types.ts', hash: '18141011749410796467' }, + { file: 'packages/react-icon-provider/src/index.ts', hash: '14545138585849154184' }, + { file: 'packages/react-icon-provider/src/version.ts', hash: '14409932537788799216' }, + { file: 'packages/react-icon-provider/tsconfig.json', hash: '5979352251281818134' }, + { file: 'packages/react-icon-provider/webpack.config.js', hash: '15864044479926769048' }, + ], + '@fluentui/react-infolabel': [ + { file: 'packages/react-components/react-infolabel/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-infolabel/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-infolabel/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-infolabel/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-infolabel/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-infolabel/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-infolabel/CHANGELOG.json', hash: '14825917095076416560' }, + { file: 'packages/react-components/react-infolabel/CHANGELOG.md', hash: '5575191642924707850' }, + { file: 'packages/react-components/react-infolabel/LICENSE', hash: '2987466484218074898' }, + { file: 'packages/react-components/react-infolabel/README.md', hash: '5543000756530108389' }, + { file: 'packages/react-components/react-infolabel/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-infolabel/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-infolabel/docs/Spec.md', hash: '12415704727702896077' }, + { file: 'packages/react-components/react-infolabel/etc/images/anatomy.png', hash: '13995183815818235250' }, + { file: 'packages/react-components/react-infolabel/etc/react-infolabel.api.md', hash: '9231325368668071686' }, + { file: 'packages/react-components/react-infolabel/jest.config.js', hash: '5573754893493331513' }, + { file: 'packages/react-components/react-infolabel/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-infolabel/package.json', + hash: '3691223503924983980', + deps: [ + 'npm:@fluentui/react-icons', + '@fluentui/react-label', + '@fluentui/react-popover', + '@fluentui/react-tabster', + '@fluentui/react-jsx-runtime', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-infolabel/project.json', hash: '2136490827902334281' }, + { file: 'packages/react-components/react-infolabel/src/InfoButton.ts', hash: '6736681049567293007' }, + { file: 'packages/react-components/react-infolabel/src/InfoLabel.ts', hash: '10491035089563452821' }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoButton/DefaultInfoButtonIcons.tsx', + hash: '2356653625358885392', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.test.tsx', + hash: '13091422380860995039', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.tsx', + hash: '5812446199269029862', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.types.ts', + hash: '14174263946567083160', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoButton/index.ts', + hash: '7451520123696318723', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoButton/renderInfoButton.tsx', + hash: '16476543032585061641', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoButton/useInfoButton.tsx', + hash: '12562846819852203468', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoButton/useInfoButtonStyles.styles.ts', + hash: '4457053427318314740', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.cy.tsx', + hash: '2745939329689272907', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.test.tsx', + hash: '6162167383950242729', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.tsx', + hash: '12414993670554885735', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.types.ts', + hash: '12259668345002550793', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoLabel/index.ts', + hash: '1040167975180781477', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoLabel/renderInfoLabel.tsx', + hash: '5569550196608831394', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoLabel/useInfoLabel.ts', + hash: '14332118226680718175', + }, + { + file: 'packages/react-components/react-infolabel/src/components/InfoLabel/useInfoLabelStyles.styles.ts', + hash: '11079399471116346237', + }, + { file: 'packages/react-components/react-infolabel/src/index.ts', hash: '12739416375820815573' }, + { file: 'packages/react-components/react-infolabel/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelBestPractices.md', + hash: '18109648245575154087', + }, + { + file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelDefault.stories.tsx', + hash: '33809515516315681', + }, + { + file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelDescription.md', + hash: '3255656647713314223', + }, + { + file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelInField.stories.tsx', + hash: '15564638452241970423', + }, + { + file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelPatternDecision.md', + hash: '14148502240650949226', + }, + { + file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelRequired.stories.tsx', + hash: '16536409628055983147', + }, + { + file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelSize.stories.tsx', + hash: '14310723017255313418', + }, + { + file: 'packages/react-components/react-infolabel/stories/InfoLabel/index.stories.tsx', + hash: '4506291592511583485', + }, + { file: 'packages/react-components/react-infolabel/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-infolabel/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-infolabel/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-date-time': [ + { file: 'packages/react-date-time/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/react-date-time/.npmignore', hash: '47056201363133096' }, + { file: 'packages/react-date-time/CHANGELOG.json', hash: '18156196373815370050' }, + { file: 'packages/react-date-time/CHANGELOG.md', hash: '4855813969435406760' }, + { file: 'packages/react-date-time/LICENSE', hash: '12975953156565096830' }, + { file: 'packages/react-date-time/README.md', hash: '15691804740406296083' }, + { file: 'packages/react-date-time/jest.config.js', hash: '8193037916930093299' }, + { file: 'packages/react-date-time/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-date-time/package.json', + hash: '9250053857878111678', + deps: [ + '@fluentui/react', + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-date-time/project.json', hash: '17422642528566626285' }, + { file: 'packages/react-date-time/src/Calendar.ts', hash: '14700922771323523697' }, + { file: 'packages/react-date-time/src/DatePicker.ts', hash: '3623451289574798351' }, + { file: 'packages/react-date-time/src/DateTimeUtilities.ts', hash: '5456722169763545772' }, + { file: 'packages/react-date-time/src/WeeklyDayPicker.ts', hash: '1544570974339003405' }, + { file: 'packages/react-date-time/src/index.ts', hash: '15527264248861218523' }, + { file: 'packages/react-date-time/src/version.ts', hash: '9682315595235674523' }, + { file: 'packages/react-date-time/tsconfig.json', hash: '15516134720009168635' }, + { file: 'packages/react-date-time/webpack.config.js', hash: '13232597493584319508' }, + ], + '@fluentui/react-spinbutton': [ + { file: 'packages/react-components/react-spinbutton/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-spinbutton/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-spinbutton/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-spinbutton/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-spinbutton/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-spinbutton/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-spinbutton/CHANGELOG.json', hash: '4847245186650734891' }, + { file: 'packages/react-components/react-spinbutton/CHANGELOG.md', hash: '4902713454531527375' }, + { file: 'packages/react-components/react-spinbutton/LICENSE', hash: '4901619448559189631' }, + { file: 'packages/react-components/react-spinbutton/README.md', hash: '6512108027180420597' }, + { + file: 'packages/react-components/react-spinbutton/bundle-size/SpinButton.fixture.js', + hash: '16023973476048778455', + }, + { file: 'packages/react-components/react-spinbutton/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-spinbutton/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-spinbutton/docs/Spec.md', hash: '17048980095820677857' }, + { + file: 'packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-anatomy-alt-optional.png', + hash: '13753539968611981470', + }, + { + file: 'packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-anatomy.png', + hash: '18087276809080644822', + }, + { + file: 'packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-rtl.png', + hash: '10178174469976600135', + }, + { file: 'packages/react-components/react-spinbutton/etc/react-spinbutton.api.md', hash: '18118992056737806686' }, + { file: 'packages/react-components/react-spinbutton/jest.config.js', hash: '5038573041434583937' }, + { file: 'packages/react-components/react-spinbutton/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-spinbutton/package.json', + hash: '17080806880489308285', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-field', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/react-label', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-spinbutton/project.json', hash: '6379772465996644580' }, + { file: 'packages/react-components/react-spinbutton/src/SpinButton.ts', hash: '10602772673075263099' }, + { + file: 'packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.test.tsx', + hash: '2529374188480590348', + }, + { + file: 'packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.tsx', + hash: '788511591351181259', + }, + { + file: 'packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.types.ts', + hash: '3207195866649797051', + }, + { + file: 'packages/react-components/react-spinbutton/src/components/SpinButton/index.ts', + hash: '5065932832394680212', + }, + { + file: 'packages/react-components/react-spinbutton/src/components/SpinButton/renderSpinButton.tsx', + hash: '17782965779459944100', + }, + { + file: 'packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButton.tsx', + hash: '10465556537581682721', + }, + { + file: 'packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButtonStyles.styles.ts', + hash: '15271342305082281981', + }, + { file: 'packages/react-components/react-spinbutton/src/index.ts', hash: '2388138643531843309' }, + { file: 'packages/react-components/react-spinbutton/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { file: 'packages/react-components/react-spinbutton/src/utils/clamp.test.ts', hash: '3964669773551288141' }, + { file: 'packages/react-components/react-spinbutton/src/utils/clamp.ts', hash: '10177435754315781459' }, + { file: 'packages/react-components/react-spinbutton/src/utils/getBound.test.ts', hash: '18120932611634343469' }, + { file: 'packages/react-components/react-spinbutton/src/utils/getBound.ts', hash: '515581470280674119' }, + { file: 'packages/react-components/react-spinbutton/src/utils/index.ts', hash: '16890875363210734367' }, + { file: 'packages/react-components/react-spinbutton/src/utils/precision.test.ts', hash: '798415561525743906' }, + { file: 'packages/react-components/react-spinbutton/src/utils/precision.ts', hash: '16903292310337878641' }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonAccessibility.stories.mdx', + hash: '1503270725368707028', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonAppearance.stories.tsx', + hash: '13092748199560825495', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonBestPractices.md', + hash: '4783838838611473205', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonBounds.stories.tsx', + hash: '7858054212332861516', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonControlled.stories.tsx', + hash: '207977934062393475', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDefault.stories.tsx', + hash: '1013817923674569921', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDescription.md', + hash: '13202291952905790897', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDisabled.stories.tsx', + hash: '4734117348533727561', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDisplayValue.stories.tsx', + hash: '10424051550481513902', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonSize.stories.tsx', + hash: '1604059465229598492', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonStep.stories.tsx', + hash: '231949000919450310', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonUncontrolled.stories.tsx', + hash: '16327167484923159262', + }, + { + file: 'packages/react-components/react-spinbutton/stories/SpinButton/index.stories.tsx', + hash: '16340081334536213963', + }, + { file: 'packages/react-components/react-spinbutton/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-spinbutton/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-spinbutton/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-conformance': [ + { file: 'packages/react-conformance/.eslintrc.json', hash: '11018738359270224912' }, + { file: 'packages/react-conformance/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-conformance/CHANGELOG.json', hash: '6578657003336071113' }, + { file: 'packages/react-conformance/CHANGELOG.md', hash: '66641472905235873' }, + { file: 'packages/react-conformance/LICENSE', hash: '7780562789533159941' }, + { file: 'packages/react-conformance/README.md', hash: '6556208184847558914' }, + { file: 'packages/react-conformance/config/api-extractor.json', hash: '13718895879978423572' }, + { file: 'packages/react-conformance/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-conformance/etc/react-conformance.api.md', hash: '840228627974102754' }, + { file: 'packages/react-conformance/jest.config.js', hash: '5527543839095969732' }, + { file: 'packages/react-conformance/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-conformance/package.json', + hash: '58094267094777417', + deps: [ + 'npm:lodash', + 'npm:chalk', + 'npm:react-docgen-typescript', + 'npm:react-is', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:@testing-library/react', + 'npm:jest', + 'npm:react', + 'npm:react-dom', + 'npm:typescript', + ], + }, + { file: 'packages/react-conformance/project.json', hash: '214209136939617400' }, + { file: 'packages/react-conformance/src/defaultErrorMessages.tsx', hash: '1214813805605604373' }, + { file: 'packages/react-conformance/src/defaultTests.tsx', hash: '214491534434202084' }, + { file: 'packages/react-conformance/src/index.ts', hash: '13966697755180852351' }, + { file: 'packages/react-conformance/src/isConformant.ts', hash: '2029686572280398735' }, + { file: 'packages/react-conformance/src/types.ts', hash: '1086329725081600766' }, + { file: 'packages/react-conformance/src/utils/createTsProgram.ts', hash: '15323993820830846187' }, + { file: 'packages/react-conformance/src/utils/errorMessages.ts', hash: '12936357018639293921' }, + { file: 'packages/react-conformance/src/utils/getCallbackArguments.test.ts', hash: '3190033166404173726' }, + { file: 'packages/react-conformance/src/utils/getCallbackArguments.ts', hash: '10149531500130398942' }, + { file: 'packages/react-conformance/src/utils/getComponentDoc.ts', hash: '16416622701949776911' }, + { file: 'packages/react-conformance/src/utils/getPackagePath.ts', hash: '14010501437001551216' }, + { file: 'packages/react-conformance/src/utils/index.ts', hash: '17773056335241924487' }, + { file: 'packages/react-conformance/src/utils/merge.test.ts', hash: '11835591977761030799' }, + { file: 'packages/react-conformance/src/utils/merge.ts', hash: '16613229026682068851' }, + { file: 'packages/react-conformance/src/utils/validateCallbackArguments.test.ts', hash: '3119507892883401399' }, + { file: 'packages/react-conformance/src/utils/validateCallbackArguments.ts', hash: '14962630765061713958' }, + { file: 'packages/react-conformance/tsconfig.json', hash: '1064149269220154025' }, + { file: 'packages/react-conformance/tsconfig.lib.json', hash: '16857783929210866443' }, + { file: 'packages/react-conformance/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-switch': [ + { file: 'packages/react-components/react-switch/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-switch/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-switch/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-switch/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-switch/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-switch/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-switch/CHANGELOG.json', hash: '93480200567092769' }, + { file: 'packages/react-components/react-switch/CHANGELOG.md', hash: '4993373179594467646' }, + { file: 'packages/react-components/react-switch/LICENSE', hash: '7758643350479616012' }, + { file: 'packages/react-components/react-switch/README.md', hash: '6695124769051641866' }, + { file: 'packages/react-components/react-switch/bundle-size/Switch.fixture.js', hash: '18142234447983599749' }, + { file: 'packages/react-components/react-switch/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-switch/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-switch/docs/MIGRATION.md', hash: '15118859291030401714' }, + { file: 'packages/react-components/react-switch/docs/Spec.md', hash: '17548703377455617725' }, + { file: 'packages/react-components/react-switch/etc/react-switch.api.md', hash: '10388195155800950811' }, + { file: 'packages/react-components/react-switch/jest.config.js', hash: '11796909119431137923' }, + { file: 'packages/react-components/react-switch/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-switch/package.json', + hash: '13345183038821483661', + deps: [ + '@fluentui/react-field', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-label', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-switch/project.json', hash: '17239642703487167945' }, + { file: 'packages/react-components/react-switch/src/Switch.ts', hash: '4931084963559363607' }, + { + file: 'packages/react-components/react-switch/src/components/Switch/Switch.test.tsx', + hash: '7606500747307139081', + }, + { file: 'packages/react-components/react-switch/src/components/Switch/Switch.tsx', hash: '159146658299780809' }, + { + file: 'packages/react-components/react-switch/src/components/Switch/Switch.types.ts', + hash: '3218403624876301764', + }, + { file: 'packages/react-components/react-switch/src/components/Switch/index.ts', hash: '792032061260370567' }, + { + file: 'packages/react-components/react-switch/src/components/Switch/renderSwitch.tsx', + hash: '10093392201553883072', + }, + { + file: 'packages/react-components/react-switch/src/components/Switch/useSwitch.tsx', + hash: '12151981653417627061', + }, + { + file: 'packages/react-components/react-switch/src/components/Switch/useSwitchStyles.styles.ts', + hash: '5898159194979167501', + }, + { file: 'packages/react-components/react-switch/src/index.ts', hash: '13437810719619271071' }, + { file: 'packages/react-components/react-switch/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-switch/stories/Switch/SwitchBestPractices.md', + hash: '8459364606907620813', + }, + { + file: 'packages/react-components/react-switch/stories/Switch/SwitchChecked.stories.tsx', + hash: '3140098803061046154', + }, + { + file: 'packages/react-components/react-switch/stories/Switch/SwitchDefault.stories.tsx', + hash: '3109229446861735999', + }, + { + file: 'packages/react-components/react-switch/stories/Switch/SwitchDescription.md', + hash: '16734928102220688292', + }, + { + file: 'packages/react-components/react-switch/stories/Switch/SwitchDisabled.stories.tsx', + hash: '2972558941372219207', + }, + { + file: 'packages/react-components/react-switch/stories/Switch/SwitchLabel.stories.tsx', + hash: '6846171252178115747', + }, + { + file: 'packages/react-components/react-switch/stories/Switch/SwitchLabelWrapping.stories.tsx', + hash: '13592280099387883871', + }, + { + file: 'packages/react-components/react-switch/stories/Switch/SwitchRequired.stories.tsx', + hash: '341782030343560004', + }, + { file: 'packages/react-components/react-switch/stories/Switch/index.stories.tsx', hash: '8026541863353447357' }, + { file: 'packages/react-components/react-switch/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-switch/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-switch/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/public-docsite-v9': [ + { file: 'apps/public-docsite-v9/.eslintrc.json', hash: '12497812907571400468' }, + { file: 'apps/public-docsite-v9/.storybook/docs-root-v9.css', hash: '16563406447022184093' }, + { file: 'apps/public-docsite-v9/.storybook/fix-title.js', hash: '17599399265234770426' }, + { file: 'apps/public-docsite-v9/.storybook/main.js', hash: '6496718208363723616' }, + { file: 'apps/public-docsite-v9/.storybook/manager-head.html', hash: '13902987237282594488' }, + { file: 'apps/public-docsite-v9/.storybook/manager.js', hash: '540459751487629314' }, + { file: 'apps/public-docsite-v9/.storybook/preview.js', hash: '628810804158154204' }, + { file: 'apps/public-docsite-v9/.storybook/theme.js', hash: '7607713174807756313' }, + { file: 'apps/public-docsite-v9/.storybook/tsconfig.json', hash: '15192856431060810840' }, + { file: 'apps/public-docsite-v9/CHANGELOG.json', hash: '5406493558112367419' }, + { file: 'apps/public-docsite-v9/CHANGELOG.md', hash: '8062893342931727325' }, + { file: 'apps/public-docsite-v9/README.md', hash: '537846658286629306' }, + { file: 'apps/public-docsite-v9/just.config.ts', hash: '2411455081002746933' }, + { + file: 'apps/public-docsite-v9/package.json', + hash: '16525272186147476408', + deps: [ + '@fluentui/react-calendar-compat', + '@fluentui/react-datepicker-compat', + '@fluentui/react-migration-v8-v9', + '@fluentui/react-migration-v0-v9', + '@fluentui/react', + '@fluentui/react-northstar', + '@fluentui/react-icons-northstar', + '@fluentui/react-components', + '@fluentui/react-storybook-addon', + '@fluentui/react-storybook-addon-export-to-sandbox', + '@fluentui/theme-designer', + '@fluentui/react-rating-preview', + '@fluentui/react-search-preview', + '@fluentui/react-motion-preview', + '@fluentui/react-teaching-popover-preview', + '@fluentui/react-timepicker-compat-preview', + 'npm:@griffel/react', + 'npm:@microsoft/applicationinsights-web', + 'npm:react', + 'npm:react-dom', + 'npm:react-window', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-storybook', + '@fluentui/scripts-tasks', + ], + }, + { file: 'apps/public-docsite-v9/project.json', hash: '1043518714100618396' }, + { file: 'apps/public-docsite-v9/public/brand-ramp-example.png', hash: '15610878053853781255' }, + { file: 'apps/public-docsite-v9/public/favicon-192.ico', hash: '8084905982277287563' }, + { file: 'apps/public-docsite-v9/public/favicon.ico', hash: '16917280242094002623' }, + { file: 'apps/public-docsite-v9/public/fluent.svg', hash: '18218964943649168724' }, + { file: 'apps/public-docsite-v9/public/fluent9-chevrons.png', hash: '12840033210156090801' }, + { file: 'apps/public-docsite-v9/public/fluent9-spring.png', hash: '11573364905124166842' }, + { file: 'apps/public-docsite-v9/public/fluent9-stars.png', hash: '9893314943427985760' }, + { file: 'apps/public-docsite-v9/public/fluent9.png', hash: '5704881173370893026' }, + { file: 'apps/public-docsite-v9/public/fluentui-banner-meta.png', hash: '1719012936996521465' }, + { file: 'apps/public-docsite-v9/public/fluentui-banner2.jpg', hash: '18306632541452318124' }, + { file: 'apps/public-docsite-v9/public/fluentui-logo.svg', hash: '15653200647526419127' }, + { file: 'apps/public-docsite-v9/public/fluentui-wide-banner.webp', hash: '7418162448352499674' }, + { file: 'apps/public-docsite-v9/public/lightweight.svg', hash: '5657497639188991046' }, + { file: 'apps/public-docsite-v9/public/shell.css', hash: '5646785212764741393' }, + { file: 'apps/public-docsite-v9/public/spring.svg', hash: '1151285431788351073' }, + { file: 'apps/public-docsite-v9/public/style-resolution.excalidraw', hash: '1279300784780131453' }, + { file: 'apps/public-docsite-v9/public/style-resolution.png', hash: '3903023650636210804' }, + { file: 'apps/public-docsite-v9/public/tokens.svg', hash: '13691732948447367898' }, + { file: 'apps/public-docsite-v9/src/Concepts/AdvancedConfiguration.stories.mdx', hash: '6027268182050122246' }, + { file: 'apps/public-docsite-v9/src/Concepts/BrowserSupportMatrix.stories.mdx', hash: '1228607429917320857' }, + { file: 'apps/public-docsite-v9/src/Concepts/BuildTimeStyles.stories.mdx', hash: '12437946029172170614' }, + { file: 'apps/public-docsite-v9/src/Concepts/Introduction.stories.mdx', hash: '3509193672195860507' }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Avatar.stories.mdx', + hash: '7500159876916604705', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Box.stories.mdx', + hash: '17726929489974387754', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Button.stories.mdx', + hash: '5165102981189121498', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/Card.stories.mdx', + hash: '14151972520219956278', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardBody.stories.mdx', + hash: '18162109570330781614', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardFooter.stories.mdx', + hash: '4687093865631735497', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardHeader.stories.mdx', + hash: '2050221457843558006', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardPreview.stories.mdx', + hash: '11621837033913569045', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Checkbox.stories.mdx', + hash: '18407956735545093769', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Divider.stories.mdx', + hash: '13595048683221264730', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Flex.stories.mdx', + hash: '11954588101481249892', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/FlexItem.stories.mdx', + hash: '8420309599134924583', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Grid.stories.mdx', + hash: '6700576905807336071', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Header.stories.mdx', + hash: '4058145472704301164', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/ComparisonTile.styles.ts', + hash: '1623254964187684935', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/ComparisonTile.tsx', + hash: '6031510467069933075', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconCatalog.styles.ts', + hash: '14720705468818279735', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconCatalog.tsx', + hash: '10029602955996080382', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconGrid.tsx', + hash: '13375498134383154357', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/iconMapping.ts', + hash: '17191414831423116710', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/types.ts', + hash: '13320189052275250119', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/useDebounce.ts', + hash: '1627091520647089283', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Image.stories.mdx', + hash: '9617825166794162424', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Input.stories.mdx', + hash: '8366871421104612219', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/ItemLayout.stories.mdx', + hash: '2291507764460056594', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Label.stories.mdx', + hash: '10055988712162174323', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Loader.stories.mdx', + hash: '14988360606182076802', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Menu.stories.mdx', + hash: '13915961584180156834', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Popup.stories.mdx', + hash: '18317202100908469848', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/RadioGroup.stories.mdx', + hash: '2435464880236261514', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Ref.stories.mdx', + hash: '6423583874536323626', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Segment.stories.mdx', + hash: '5477278039908075779', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Slider.stories.mdx', + hash: '18101668614946165878', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Spinner.stories.mdx', + hash: '15312019235072516276', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/SplitButton.stories.mdx', + hash: '1847294588723170087', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/TabList.stories.mdx', + hash: '8391983318858567681', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Text.stories.mdx', + hash: '10058089897799736192', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Textarea.stories.mdx', + hash: '9208490595500693037', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Toolbar.stories.mdx', + hash: '17071380723254082436', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Tooltip.stories.mdx', + hash: '17455365854773573149', + }, + { file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Icons.stories.mdx', hash: '17010056017852607842' }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-custom-accessibility.stories.mdx', + hash: '2596856736038670889', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-positioning.stories.mdx', + hash: '17529793891355272427', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-styles.stories.mdx', + hash: '17794812762778613022', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ComponentMapping.stories.mdx', + hash: '16243915867913704219', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/AvatarGroup.stories.mdx', + hash: '10119565970722557988', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Button.stories.mdx', + hash: '11656382532750115105', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/Card.stories.mdx', + hash: '14903830942748763588', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardFooter.stories.mdx', + hash: '4062734561496252096', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardHeader.stories.mdx', + hash: '10725482604752600152', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardPreview.stories.mdx', + hash: '2059119778639415486', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Checkbox.stories.mdx', + hash: '6823461108728301975', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Divider.stories.mdx', + hash: '17785455521448078061', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Input.stories.mdx', + hash: '15431601912224865768', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Label.stories.mdx', + hash: '9054058141062094741', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Menu.stories.mdx', + hash: '2558282556221331632', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/RadioGroup.stories.mdx', + hash: '12226839331106575731', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Slider.stories.mdx', + hash: '8003497693586564560', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv8Examples.stories.tsx', + hash: '14715459287100320010', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv9Examples.stories.tsx', + hash: '5673282445582931303', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/SpinButton.stories.mdx', + hash: '9332700504183803319', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Spinner.stories.mdx', + hash: '1809941066840167935', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Tabs.stories.mdx', + hash: '4052626642361921649', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Textarea.stories.mdx', + hash: '17808685935793411891', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Theme.stories.mdx', + hash: '4384252736065296258', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/BrandColors.stories.tsx', + hash: '16329563639900296559', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorBlock.styles.ts', + hash: '3160347553800729901', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorBlock.tsx', + hash: '8565745042529971498', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorCompare.tsx', + hash: '15976953488790079976', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorMapping.stories.mdx', + hash: '3020894949684801504', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/NamedColors.stories.tsx', + hash: '11934418843702881095', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/NeutralColors.stories.tsx', + hash: '2966669084201347416', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/SemanticColors.stories.tsx', + hash: '5560789208522828535', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/colorMap.ts', + hash: '1488055267438205957', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/colorUtils.ts', + hash: '11801248277102989709', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/themeMap.ts', + hash: '17925504785797383915', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/types.ts', + hash: '13063420644715283401', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Troubleshooting.stories.mdx', + hash: '8747907334094583065', + }, + { file: 'apps/public-docsite-v9/src/Concepts/Migration/GettingStarted.stories.mdx', hash: '9451779699191391096' }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/HandlingBreakingChanges.stories.mdx', + hash: '13000995019411734332', + }, + { + file: 'apps/public-docsite-v9/src/Concepts/Migration/KeepingDesignConsistent.stories.mdx', + hash: '4274985729871756294', + }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/AreaCard.styles.ts', hash: '11383167343776703189' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/AreaCard.tsx', hash: '6998504548639232531' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/CodeItemCard.styles.ts', hash: '5690225079957065794' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/CodeItemCard.tsx', hash: '11390534584125618959' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/CodeItemIcons.tsx', hash: '1009357634118917580' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/Legend.styles.ts', hash: '10289947676290531535' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/Legend.tsx', hash: '13163962968913761556' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/OverviewCard.styles.ts', hash: '13023911342358279998' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/OverviewCard.tsx', hash: '3896737839883874452' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/PackageCard.styles.ts', hash: '3178517568105324799' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/PackageCard.tsx', hash: '8149333433858496621' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/Poster.stories.mdx', hash: '11768706133390347465' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/Poster.styles.ts', hash: '10078616957021919379' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/Poster.tsx', hash: '13510609166964038907' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/metadata.ts', hash: '246122072962373895' }, + { file: 'apps/public-docsite-v9/src/Concepts/Poster/types.ts', hash: '18096539967471875526' }, + { file: 'apps/public-docsite-v9/src/Concepts/QuickStart.stories.mdx', hash: '3639996361033081603' }, + { file: 'apps/public-docsite-v9/src/Concepts/SSR/MenuSSRDefaultOpen.stories.tsx', hash: '17417466496504427195' }, + { file: 'apps/public-docsite-v9/src/Concepts/SSR/NextJSAppDir.stories.mdx', hash: '5618765040692212335' }, + { file: 'apps/public-docsite-v9/src/Concepts/SSR/Nextjs.stories.mdx', hash: '6329398926014210453' }, + { file: 'apps/public-docsite-v9/src/Concepts/SSR/Portals.stories.mdx', hash: '14703143921670652091' }, + { file: 'apps/public-docsite-v9/src/Concepts/SSR/SSR.stories.mdx', hash: '17007025667679716727' }, + { file: 'apps/public-docsite-v9/src/Concepts/Slots/SlotSketch.stories.tsx', hash: '15629017638520325281' }, + { file: 'apps/public-docsite-v9/src/Concepts/Slots/Slots.stories.mdx', hash: '3201251314176313597' }, + { file: 'apps/public-docsite-v9/src/Concepts/StylingComponents.stories.mdx', hash: '14475903966694824475' }, + { file: 'apps/public-docsite-v9/src/Concepts/ThemeDesigner.stories.mdx', hash: '10163196227003295423' }, + { file: 'apps/public-docsite-v9/src/Concepts/Theming.stories.mdx', hash: '18265015977572975070' }, + { file: 'apps/public-docsite-v9/src/Concepts/components/WhatsNewBoxes.styles.ts', hash: '3505954724490374240' }, + { file: 'apps/public-docsite-v9/src/Concepts/components/WhatsNewBoxes.tsx', hash: '5997681001706950540' }, + { file: 'apps/public-docsite-v9/src/DocsComponents/DirSwitch.stories.tsx', hash: '17835614396368939615' }, + { + file: 'apps/public-docsite-v9/src/DocsComponents/FluentDocsContainer.stories.tsx', + hash: '7165188870592901014', + }, + { file: 'apps/public-docsite-v9/src/DocsComponents/FluentDocsPage.stories.tsx', hash: '7081773190048278332' }, + { file: 'apps/public-docsite-v9/src/DocsComponents/ThemePicker.stories.tsx', hash: '15694390206129851378' }, + { file: 'apps/public-docsite-v9/src/DocsComponents/Toc.stories.tsx', hash: '12094141171645307537' }, + { file: 'apps/public-docsite-v9/src/shims/ThemeShim/themeDuplicates.ts', hash: '11231048427901921409' }, + { file: 'apps/public-docsite-v9/src/shims/ThemeShim/v8ThemeShim.ts', hash: '11884523527404188288' }, + { file: 'apps/public-docsite-v9/src/shims/ThemeShim/v9BrandVariantsShim.ts', hash: '6259229093326138167' }, + { file: 'apps/public-docsite-v9/src/shims/ThemeShim/v9ThemeShim.ts', hash: '9946586764904553104' }, + { file: 'apps/public-docsite-v9/tsconfig.app.json', hash: '2683353677112626789' }, + { file: 'apps/public-docsite-v9/tsconfig.json', hash: '12149056959744678629' }, + ], + '@fluentui/react': [ + { file: 'packages/react/.eslintrc.js', hash: '18322613162592272510' }, + { file: 'packages/react/.npmignore', hash: '47056201363133096' }, + { file: 'packages/react/.vscode/settings.json', hash: '12021589480221246916' }, + { file: 'packages/react/CHANGELOG.json', hash: '6951825329134936821' }, + { file: 'packages/react/CHANGELOG.md', hash: '12099638385382086950' }, + { file: 'packages/react/LICENSE', hash: '2813735303365335595' }, + { file: 'packages/react/README.md', hash: '3435017277481595030' }, + { file: 'packages/react/__mocks__/@fluentui/utilities.ts', hash: '12050978786399858000' }, + { file: 'packages/react/bundle-size-auditor.config.js', hash: '1614748617965411486' }, + { file: 'packages/react/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/react/config/pre-copy.json', hash: '14026383330722125688' }, + { file: 'packages/react/config/tests.js', hash: '13158865319411973838' }, + { file: 'packages/react/empty-entrypoint.js', hash: '1610763553242483540' }, + { file: 'packages/react/etc/react.api.md', hash: '10965535314750180986' }, + { file: 'packages/react/jest.config.js', hash: '8193037916930093299' }, + { file: 'packages/react/just.config.ts', hash: '3344775425486365003' }, + { + file: 'packages/react/package.json', + hash: '12246868904466760490', + deps: [ + '@fluentui/date-time-utilities', + '@fluentui/foundation-legacy', + '@fluentui/font-icons-mdl2', + '@fluentui/merge-styles', + '@fluentui/react-focus', + '@fluentui/react-hooks', + '@fluentui/react-portal-compat-context', + '@fluentui/react-window-provider', + '@fluentui/set-version', + '@fluentui/style-utilities', + '@fluentui/theme', + '@fluentui/utilities', + 'npm:@microsoft/load-themed-styles', + 'npm:tslib', + '@fluentui/common-styles', + '@fluentui/eslint-plugin', + '@fluentui/example-data', + '@fluentui/jest-serializer-merge-styles', + '@fluentui/react-conformance', + '@fluentui/test-utilities', + '@fluentui/webpack-utilities', + 'npm:office-ui-fabric-core', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react/project.json', hash: '17701349262890228270' }, + { file: 'packages/react/src/ActivityItem.ts', hash: '15691553335115204721' }, + { file: 'packages/react/src/Announced.ts', hash: '7828906494215171216' }, + { file: 'packages/react/src/Autofill.ts', hash: '16457316051496421810' }, + { file: 'packages/react/src/Breadcrumb.ts', hash: '4692325558598841885' }, + { file: 'packages/react/src/Button.ts', hash: '8626324674700708044' }, + { file: 'packages/react/src/ButtonGrid.ts', hash: '881856585163408327' }, + { file: 'packages/react/src/Calendar.ts', hash: '569100325234550221' }, + { file: 'packages/react/src/Callout.ts', hash: '11821162718730855739' }, + { file: 'packages/react/src/Check.ts', hash: '12837435387320211305' }, + { file: 'packages/react/src/Checkbox.ts', hash: '15174834295790980707' }, + { file: 'packages/react/src/ChoiceGroup.ts', hash: '8551466585424623975' }, + { file: 'packages/react/src/ChoiceGroupOption.ts', hash: '12282666165702349379' }, + { file: 'packages/react/src/Coachmark.ts', hash: '10298383592307786534' }, + { file: 'packages/react/src/Color.ts', hash: '1851453512554942402' }, + { file: 'packages/react/src/ColorPicker.ts', hash: '11367027736402733854' }, + { file: 'packages/react/src/ComboBox.ts', hash: '6941430331366320497' }, + { file: 'packages/react/src/CommandBar.ts', hash: '13781943264137645943' }, + { file: 'packages/react/src/ContextualMenu.ts', hash: '11044360894834949697' }, + { file: 'packages/react/src/DatePicker.ts', hash: '14140387775859161252' }, + { file: 'packages/react/src/DateTimeUtilities.ts', hash: '16407665973972677758' }, + { file: 'packages/react/src/DetailsList.ts', hash: '11060283209431896804' }, + { file: 'packages/react/src/Dialog.ts', hash: '4454994753170598490' }, + { file: 'packages/react/src/Divider.ts', hash: '11741977117356417348' }, + { file: 'packages/react/src/DocumentCard.ts', hash: '15635077762585676697' }, + { file: 'packages/react/src/DragDrop.ts', hash: '15334126186863286998' }, + { file: 'packages/react/src/DraggableZone.ts', hash: '8347592647128284806' }, + { file: 'packages/react/src/Dropdown.ts', hash: '18194367805350925119' }, + { file: 'packages/react/src/ExtendedPicker.ts', hash: '1781688548792408840' }, + { file: 'packages/react/src/Fabric.ts', hash: '9388144000989131059' }, + { file: 'packages/react/src/Facepile.ts', hash: '13878559315498248276' }, + { file: 'packages/react/src/FloatingPicker.ts', hash: '8168562264864126910' }, + { file: 'packages/react/src/FocusTrapZone.ts', hash: '13340226361778469587' }, + { file: 'packages/react/src/FocusZone.ts', hash: '17163596780283843540' }, + { file: 'packages/react/src/Grid.ts', hash: '881856585163408327' }, + { file: 'packages/react/src/GroupedList.ts', hash: '17984522349933548027' }, + { file: 'packages/react/src/GroupedListV2.ts', hash: '5354730782250258919' }, + { file: 'packages/react/src/HoverCard.ts', hash: '10703228722220731271' }, + { file: 'packages/react/src/Icon.ts', hash: '313947480257717044' }, + { file: 'packages/react/src/Icons.ts', hash: '11257336694483866853' }, + { file: 'packages/react/src/Image.ts', hash: '16464656776672641880' }, + { file: 'packages/react/src/Keytip.ts', hash: '14735860805141051080' }, + { file: 'packages/react/src/KeytipData.ts', hash: '13233209451898491569' }, + { file: 'packages/react/src/KeytipLayer.ts', hash: '5673003055379526700' }, + { file: 'packages/react/src/Keytips.ts', hash: '10469364805952831599' }, + { file: 'packages/react/src/Label.ts', hash: '4712475947755339018' }, + { file: 'packages/react/src/Layer.ts', hash: '1733045992777260244' }, + { file: 'packages/react/src/Link.ts', hash: '10181647052088224625' }, + { file: 'packages/react/src/List.ts', hash: '10892037581495151528' }, + { file: 'packages/react/src/MarqueeSelection.ts', hash: '10113684216889674368' }, + { file: 'packages/react/src/MessageBar.ts', hash: '11069752646730668502' }, + { file: 'packages/react/src/Modal.ts', hash: '4724632803121488282' }, + { file: 'packages/react/src/Nav.ts', hash: '16517290324481129723' }, + { file: 'packages/react/src/OverflowSet.ts', hash: '16078762239706375810' }, + { file: 'packages/react/src/Overlay.ts', hash: '3285303095679141452' }, + { file: 'packages/react/src/Panel.ts', hash: '16595715402019817627' }, + { file: 'packages/react/src/Persona.ts', hash: '11634239554265983330' }, + { file: 'packages/react/src/PersonaCoin.ts', hash: '11634239554265983330' }, + { file: 'packages/react/src/PersonaPresence.ts', hash: '16657819352363000963' }, + { file: 'packages/react/src/Pickers.ts', hash: '7315127516418647489' }, + { file: 'packages/react/src/Pivot.ts', hash: '13900400919767902771' }, + { file: 'packages/react/src/Popup.ts', hash: '11254074860887789694' }, + { file: 'packages/react/src/Positioning.ts', hash: '12929630452344570883' }, + { file: 'packages/react/src/PositioningContainer.ts', hash: '14723175961025769754' }, + { file: 'packages/react/src/ProgressIndicator.ts', hash: '6533264803521264651' }, + { file: 'packages/react/src/Rating.ts', hash: '15823645109042535388' }, + { file: 'packages/react/src/ResizeGroup.ts', hash: '17736351568471188817' }, + { file: 'packages/react/src/ResponsiveMode.ts', hash: '4238096090649122928' }, + { file: 'packages/react/src/ScrollablePane.ts', hash: '11525201575146771343' }, + { file: 'packages/react/src/SearchBox.ts', hash: '15808954179607126400' }, + { file: 'packages/react/src/SelectableOption.ts', hash: '12748464959660480730' }, + { file: 'packages/react/src/SelectedItemsList.ts', hash: '8395059039592633644' }, + { file: 'packages/react/src/Selection.ts', hash: '10143265323494697518' }, + { file: 'packages/react/src/Separator.ts', hash: '1811822594030495246' }, + { file: 'packages/react/src/Shimmer.ts', hash: '3579635837268703050' }, + { file: 'packages/react/src/ShimmeredDetailsList.ts', hash: '3558579282568365265' }, + { file: 'packages/react/src/Slider.ts', hash: '8062765663185726667' }, + { file: 'packages/react/src/SpinButton.ts', hash: '10602772673075263099' }, + { file: 'packages/react/src/Spinner.ts', hash: '17775753931591747303' }, + { file: 'packages/react/src/Stack.ts', hash: '14506809887411988561' }, + { file: 'packages/react/src/Sticky.ts', hash: '4023672496774955026' }, + { file: 'packages/react/src/Styling.ts', hash: '18075108818090873357' }, + { file: 'packages/react/src/SwatchColorPicker.ts', hash: '6007149929098899385' }, + { file: 'packages/react/src/TeachingBubble.ts', hash: '14630397906653552215' }, + { file: 'packages/react/src/Text.ts', hash: '18074790047408023562' }, + { file: 'packages/react/src/TextField.ts', hash: '8776486715515654409' }, + { file: 'packages/react/src/Theme.ts', hash: '4060037938213976140' }, + { file: 'packages/react/src/ThemeGenerator.ts', hash: '10341606355790351710' }, + { file: 'packages/react/src/TimePicker.ts', hash: '8919003633615161634' }, + { file: 'packages/react/src/Toggle.ts', hash: '17043961152625470253' }, + { file: 'packages/react/src/Tooltip.ts', hash: '17674670289509594830' }, + { file: 'packages/react/src/Utilities.ts', hash: '17137381318660875692' }, + { file: 'packages/react/src/Viewport.ts', hash: '9695251108878314796' }, + { file: 'packages/react/src/WeeklyDayPicker.ts', hash: '13543915856335724087' }, + { file: 'packages/react/src/WindowProvider.ts', hash: '10613406804967383798' }, + { file: 'packages/react/src/common/DirectionalHint.ts', hash: '4075025867885052120' }, + { file: 'packages/react/src/common/DocPage.types.ts', hash: '3317054908413247007' }, + { file: 'packages/react/src/common/IAccessiblePopupProps.ts', hash: '15218209719259118451' }, + { file: 'packages/react/src/common/TestImages.ts', hash: '10252575403022796568' }, + { file: 'packages/react/src/common/isConformant.ts', hash: '14501087979372828339' }, + { file: 'packages/react/src/common/shallowUntilTarget.ts', hash: '9363535113840956016' }, + { file: 'packages/react/src/common/testUtilities.ts', hash: '15153870803575118415' }, + { file: 'packages/react/src/components/ActivityItem/ActivityItem.classNames.ts', hash: '10959441434876498415' }, + { file: 'packages/react/src/components/ActivityItem/ActivityItem.styles.ts', hash: '17922129355434787187' }, + { file: 'packages/react/src/components/ActivityItem/ActivityItem.test.tsx', hash: '9308564639709118220' }, + { file: 'packages/react/src/components/ActivityItem/ActivityItem.tsx', hash: '15024881015934520035' }, + { file: 'packages/react/src/components/ActivityItem/ActivityItem.types.ts', hash: '5658929453140030040' }, + { + file: 'packages/react/src/components/ActivityItem/__snapshots__/ActivityItem.test.tsx.snap', + hash: '2875045296901384882', + }, + { file: 'packages/react/src/components/ActivityItem/index.ts', hash: '15613685813342155204' }, + { file: 'packages/react/src/components/Announced/Announced.base.tsx', hash: '14808936570361767980' }, + { file: 'packages/react/src/components/Announced/Announced.styles.ts', hash: '2609277003134345376' }, + { file: 'packages/react/src/components/Announced/Announced.test.tsx', hash: '13159186001787092755' }, + { file: 'packages/react/src/components/Announced/Announced.ts', hash: '5520471808720202213' }, + { file: 'packages/react/src/components/Announced/Announced.types.ts', hash: '1166604111861235670' }, + { + file: 'packages/react/src/components/Announced/__snapshots__/Announced.test.tsx.snap', + hash: '11083460018032104443', + }, + { file: 'packages/react/src/components/Announced/index.ts', hash: '15185491289973397311' }, + { file: 'packages/react/src/components/Autofill/Autofill.test.tsx', hash: '14829303470930849800' }, + { file: 'packages/react/src/components/Autofill/Autofill.tsx', hash: '2844735981914153753' }, + { file: 'packages/react/src/components/Autofill/Autofill.types.ts', hash: '1324609616284281878' }, + { file: 'packages/react/src/components/Autofill/index.ts', hash: '9802973723482047247' }, + { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.base.tsx', hash: '2959849278643511780' }, + { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.styles.ts', hash: '5490687911274150064' }, + { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.test.tsx', hash: '1397742070578054284' }, + { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.tsx', hash: '1697940405249114382' }, + { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.types.ts', hash: '8602583152421031524' }, + { + file: 'packages/react/src/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap', + hash: '11005458348753777619', + }, + { file: 'packages/react/src/components/Breadcrumb/index.ts', hash: '2400277785402358351' }, + { file: 'packages/react/src/components/Button/ActionButton/ActionButton.styles.ts', hash: '5681673974154994069' }, + { file: 'packages/react/src/components/Button/ActionButton/ActionButton.tsx', hash: '13604987828611667561' }, + { file: 'packages/react/src/components/Button/BaseButton.classNames.ts', hash: '17560792537917575282' }, + { file: 'packages/react/src/components/Button/BaseButton.styles.ts', hash: '13775319018755096354' }, + { file: 'packages/react/src/components/Button/BaseButton.tsx', hash: '11691847524303977471' }, + { file: 'packages/react/src/components/Button/Button.deprecated.test.tsx', hash: '3790866997069875783' }, + { file: 'packages/react/src/components/Button/Button.test.tsx', hash: '8768289926859505225' }, + { file: 'packages/react/src/components/Button/Button.tsx', hash: '2897151106942011808' }, + { file: 'packages/react/src/components/Button/Button.types.ts', hash: '2214420206943208397' }, + { file: 'packages/react/src/components/Button/ButtonThemes.ts', hash: '858669685161863380' }, + { + file: 'packages/react/src/components/Button/CommandBarButton/CommandBarButton.styles.ts', + hash: '12384204530508226570', + }, + { + file: 'packages/react/src/components/Button/CommandBarButton/CommandBarButton.tsx', + hash: '12454085510449396776', + }, + { file: 'packages/react/src/components/Button/CommandButton/CommandButton.tsx', hash: '15919999991405643341' }, + { + file: 'packages/react/src/components/Button/CompoundButton/CompoundButton.styles.ts', + hash: '15121334606545964834', + }, + { file: 'packages/react/src/components/Button/CompoundButton/CompoundButton.tsx', hash: '11269834283536570675' }, + { + file: 'packages/react/src/components/Button/DefaultButton/DefaultButton.styles.ts', + hash: '18241509591047606021', + }, + { file: 'packages/react/src/components/Button/DefaultButton/DefaultButton.tsx', hash: '15772839065412790331' }, + { file: 'packages/react/src/components/Button/IconButton/IconButton.styles.ts', hash: '9769004099447041949' }, + { file: 'packages/react/src/components/Button/IconButton/IconButton.tsx', hash: '2733847614666169059' }, + { + file: 'packages/react/src/components/Button/MessageBarButton/MessageBarButton.styles.ts', + hash: '9568488038348577146', + }, + { + file: 'packages/react/src/components/Button/MessageBarButton/MessageBarButton.tsx', + hash: '4960487562370824955', + }, + { file: 'packages/react/src/components/Button/PrimaryButton/PrimaryButton.tsx', hash: '611494823225309972' }, + { + file: 'packages/react/src/components/Button/SplitButton/SplitButton.classNames.ts', + hash: '180913642668624058', + }, + { file: 'packages/react/src/components/Button/SplitButton/SplitButton.styles.ts', hash: '13161165176196832651' }, + { + file: 'packages/react/src/components/Button/__snapshots__/Button.deprecated.test.tsx.snap', + hash: '10779387157892625644', + }, + { file: 'packages/react/src/components/Button/__snapshots__/Button.test.tsx.snap', hash: '6525828065674363022' }, + { file: 'packages/react/src/components/Button/index.ts', hash: '3026621165842617645' }, + { file: 'packages/react/src/components/Calendar/Calendar.base.tsx', hash: '3698885589942741371' }, + { file: 'packages/react/src/components/Calendar/Calendar.styles.ts', hash: '7681885833460442019' }, + { file: 'packages/react/src/components/Calendar/Calendar.test.tsx', hash: '12113283689946056276' }, + { file: 'packages/react/src/components/Calendar/Calendar.tsx', hash: '17842804668188421221' }, + { file: 'packages/react/src/components/Calendar/Calendar.types.ts', hash: '16761844729622092230' }, + { file: 'packages/react/src/components/Calendar/CalendarDay/CalendarDay.base.tsx', hash: '8612771638643633009' }, + { + file: 'packages/react/src/components/Calendar/CalendarDay/CalendarDay.styles.ts', + hash: '14371245373320384030', + }, + { file: 'packages/react/src/components/Calendar/CalendarDay/CalendarDay.tsx', hash: '2868624136863589280' }, + { file: 'packages/react/src/components/Calendar/CalendarDay/CalendarDay.types.ts', hash: '1572652125125308751' }, + { + file: 'packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.base.tsx', + hash: '14029913455996670188', + }, + { + file: 'packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.styles.ts', + hash: '13220094357196562209', + }, + { file: 'packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.tsx', hash: '14175881740264283095' }, + { + file: 'packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.types.ts', + hash: '11761404676563048345', + }, + { + file: 'packages/react/src/components/Calendar/CalendarPicker/CalendarPicker.styles.ts', + hash: '16513698440551210411', + }, + { + file: 'packages/react/src/components/Calendar/CalendarPicker/CalendarPicker.types.ts', + hash: '13641312866335280338', + }, + { + file: 'packages/react/src/components/Calendar/CalendarYear/CalendarYear.base.tsx', + hash: '14931817285159607366', + }, + { + file: 'packages/react/src/components/Calendar/CalendarYear/CalendarYear.styles.ts', + hash: '5022118626516064814', + }, + { file: 'packages/react/src/components/Calendar/CalendarYear/CalendarYear.tsx', hash: '3790852113301377423' }, + { + file: 'packages/react/src/components/Calendar/CalendarYear/CalendarYear.types.ts', + hash: '1212633857493091969', + }, + { file: 'packages/react/src/components/Calendar/defaults.ts', hash: '10932514365007165542' }, + { file: 'packages/react/src/components/Calendar/index.ts', hash: '8926931160772554368' }, + { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.base.tsx', hash: '9364545756154110372' }, + { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.styles.ts', hash: '5474799333794445305' }, + { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.test.tsx', hash: '14077376632654469516' }, + { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.tsx', hash: '13954748508369387771' }, + { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.types.ts', hash: '1315148665165774731' }, + { file: 'packages/react/src/components/CalendarDayGrid/CalendarGridDayCell.tsx', hash: '4377391835895631601' }, + { file: 'packages/react/src/components/CalendarDayGrid/CalendarGridRow.tsx', hash: '11836484162619787282' }, + { file: 'packages/react/src/components/CalendarDayGrid/CalendarMonthHeaderRow.tsx', hash: '1425249185322741479' }, + { file: 'packages/react/src/components/Callout/Callout.test.tsx', hash: '5054917375884985643' }, + { file: 'packages/react/src/components/Callout/Callout.tsx', hash: '15098348347424675166' }, + { file: 'packages/react/src/components/Callout/Callout.types.ts', hash: '9671085334529620331' }, + { file: 'packages/react/src/components/Callout/CalloutContent.base.tsx', hash: '7711216549782122145' }, + { file: 'packages/react/src/components/Callout/CalloutContent.styles.ts', hash: '14671269818620114958' }, + { file: 'packages/react/src/components/Callout/CalloutContent.tsx', hash: '2613599015627140647' }, + { file: 'packages/react/src/components/Callout/FocusTrapCallout.tsx', hash: '5711466981505374301' }, + { file: 'packages/react/src/components/Callout/FocusTrapCallout.types.ts', hash: '13099154175811699019' }, + { + file: 'packages/react/src/components/Callout/__snapshots__/Callout.test.tsx.snap', + hash: '7092676668363738687', + }, + { file: 'packages/react/src/components/Callout/index.ts', hash: '18337988706537354723' }, + { file: 'packages/react/src/components/Check/Check.base.tsx', hash: '8099389880777908630' }, + { file: 'packages/react/src/components/Check/Check.styles.ts', hash: '11959653952883669852' }, + { file: 'packages/react/src/components/Check/Check.test.tsx', hash: '7098964263180304704' }, + { file: 'packages/react/src/components/Check/Check.tsx', hash: '2854772255457713049' }, + { file: 'packages/react/src/components/Check/Check.types.ts', hash: '1581118031102622036' }, + { file: 'packages/react/src/components/Check/__snapshots__/Check.test.tsx.snap', hash: '2994867670221716739' }, + { file: 'packages/react/src/components/Check/index.ts', hash: '760208717723128464' }, + { file: 'packages/react/src/components/Checkbox/Checkbox.base.tsx', hash: '17742414755561541210' }, + { file: 'packages/react/src/components/Checkbox/Checkbox.styles.ts', hash: '14738880418511813030' }, + { file: 'packages/react/src/components/Checkbox/Checkbox.test.tsx', hash: '3079724934788581514' }, + { file: 'packages/react/src/components/Checkbox/Checkbox.tsx', hash: '13026628343713587440' }, + { file: 'packages/react/src/components/Checkbox/Checkbox.types.ts', hash: '12031426030660668047' }, + { + file: 'packages/react/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap', + hash: '13716157077664308640', + }, + { file: 'packages/react/src/components/Checkbox/index.ts', hash: '7986300600148701571' }, + { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.base.tsx', hash: '13068795033757508402' }, + { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.styles.ts', hash: '4320475055744560416' }, + { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.test.tsx', hash: '14850742821881609942' }, + { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.tsx', hash: '8195161768483642804' }, + { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.types.ts', hash: '758817708746738591' }, + { + file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.tsx', + hash: '16705429588975673989', + }, + { + file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.ts', + hash: '7899251538753065410', + }, + { + file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.test.tsx', + hash: '15957366648578097033', + }, + { + file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.tsx', + hash: '4190193031612152205', + }, + { + file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.types.ts', + hash: '12527274131552227495', + }, + { + file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/__snapshots__/ChoiceGroupOption.test.tsx.snap', + hash: '8810824705317029428', + }, + { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/index.ts', hash: '18423094160257844331' }, + { + file: 'packages/react/src/components/ChoiceGroup/__snapshots__/ChoiceGroup.test.tsx.snap', + hash: '9569553682240889905', + }, + { file: 'packages/react/src/components/ChoiceGroup/index.ts', hash: '328194483357894544' }, + { file: 'packages/react/src/components/Coachmark/Beak/Beak.styles.ts', hash: '10190924621190518847' }, + { file: 'packages/react/src/components/Coachmark/Beak/Beak.tsx', hash: '5905785957078046086' }, + { file: 'packages/react/src/components/Coachmark/Beak/Beak.types.ts', hash: '7291097281646749393' }, + { file: 'packages/react/src/components/Coachmark/Coachmark.base.tsx', hash: '9056756754402703923' }, + { file: 'packages/react/src/components/Coachmark/Coachmark.styles.ts', hash: '10326954716722979061' }, + { file: 'packages/react/src/components/Coachmark/Coachmark.test.tsx', hash: '16185438735178022700' }, + { file: 'packages/react/src/components/Coachmark/Coachmark.ts', hash: '5196593985187011138' }, + { file: 'packages/react/src/components/Coachmark/Coachmark.types.ts', hash: '7489711855929492755' }, + { + file: 'packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.styles.ts', + hash: '2162783246021921799', + }, + { + file: 'packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.tsx', + hash: '6990834051214097788', + }, + { + file: 'packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.types.ts', + hash: '13774772956859115836', + }, + { file: 'packages/react/src/components/Coachmark/PositioningContainer/index.ts', hash: '10130805448946875991' }, + { + file: 'packages/react/src/components/Coachmark/__snapshots__/Coachmark.test.tsx.snap', + hash: '3728261009976044833', + }, + { file: 'packages/react/src/components/Coachmark/index.ts', hash: '17067815343666058002' }, + { file: 'packages/react/src/components/ColorPicker/ColorPicker.base.tsx', hash: '7180003949049537184' }, + { + file: 'packages/react/src/components/ColorPicker/ColorPicker.deprecated.test.tsx', + hash: '1858759756402820397', + }, + { file: 'packages/react/src/components/ColorPicker/ColorPicker.styles.ts', hash: '13861598838815848006' }, + { file: 'packages/react/src/components/ColorPicker/ColorPicker.test.tsx', hash: '14055911644872002613' }, + { file: 'packages/react/src/components/ColorPicker/ColorPicker.tsx', hash: '3828925813868702320' }, + { file: 'packages/react/src/components/ColorPicker/ColorPicker.types.ts', hash: '18374948044378105293' }, + { + file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.base.tsx', + hash: '2973631643717621166', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.styles.ts', + hash: '157313535816601706', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.test.tsx', + hash: '15268079714026099074', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.tsx', + hash: '6995462218313240219', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.types.ts', + hash: '10322384115733206371', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorRectangle/__snapshots__/ColorRectangle.test.tsx.snap', + hash: '10729672506798250519', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.base.tsx', + hash: '13278161114456779756', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.deprecated.test.tsx', + hash: '13316991814195708224', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.styles.ts', + hash: '17221012701587550663', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.test.tsx', + hash: '3883018588900249454', + }, + { file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.tsx', hash: '5339430979491373150' }, + { + file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.types.ts', + hash: '447516077491216644', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorSlider/__snapshots__/ColorSlider.deprecated.test.tsx.snap', + hash: '16239289712154164621', + }, + { + file: 'packages/react/src/components/ColorPicker/ColorSlider/__snapshots__/ColorSlider.test.tsx.snap', + hash: '12518773005539682818', + }, + { + file: 'packages/react/src/components/ColorPicker/__snapshots__/ColorPicker.test.tsx.snap', + hash: '7343175688397682026', + }, + { file: 'packages/react/src/components/ColorPicker/index.ts', hash: '7939662011628958779' }, + { file: 'packages/react/src/components/ComboBox/ComboBox.classNames.ts', hash: '3467725814675995660' }, + { file: 'packages/react/src/components/ComboBox/ComboBox.styles.ts', hash: '6464576420747089558' }, + { file: 'packages/react/src/components/ComboBox/ComboBox.test.tsx', hash: '16954748442404999255' }, + { file: 'packages/react/src/components/ComboBox/ComboBox.tsx', hash: '8989906260515157173' }, + { file: 'packages/react/src/components/ComboBox/ComboBox.types.ts', hash: '957405394456490575' }, + { file: 'packages/react/src/components/ComboBox/VirtualizedComboBox.tsx', hash: '18330214605208399631' }, + { + file: 'packages/react/src/components/ComboBox/__snapshots__/ComboBox.test.tsx.snap', + hash: '5482146850650565127', + }, + { file: 'packages/react/src/components/ComboBox/index.ts', hash: '9834057037475040238' }, + { file: 'packages/react/src/components/CommandBar/CommandBar.base.tsx', hash: '2552079397073764410' }, + { file: 'packages/react/src/components/CommandBar/CommandBar.deprecated.test.tsx', hash: '12378369935626821833' }, + { file: 'packages/react/src/components/CommandBar/CommandBar.styles.ts', hash: '5993613558436675319' }, + { file: 'packages/react/src/components/CommandBar/CommandBar.test.tsx', hash: '11216319412535445892' }, + { file: 'packages/react/src/components/CommandBar/CommandBar.tsx', hash: '700267282760851139' }, + { file: 'packages/react/src/components/CommandBar/CommandBar.types.ts', hash: '3532179943527593242' }, + { + file: 'packages/react/src/components/CommandBar/__snapshots__/CommandBar.deprecated.test.tsx.snap', + hash: '16088271511149617368', + }, + { + file: 'packages/react/src/components/CommandBar/__snapshots__/CommandBar.test.tsx.snap', + hash: '12207775744090479986', + }, + { file: 'packages/react/src/components/CommandBar/index.ts', hash: '3215200113690211413' }, + { file: 'packages/react/src/components/ComponentConformance.test.tsx', hash: '10480277133274272228' }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.base.tsx', hash: '5877188823725891655' }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenu.classNames.ts', + hash: '10706196024534983914', + }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.cnstyles.ts', hash: '3654706946123482754' }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenu.deprecated.test.tsx', + hash: '198235862324324028', + }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.styles.ts', hash: '17175239582403304459' }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.test.tsx', hash: '2120930861885774156' }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.tsx', hash: '3920779922044026270' }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.types.ts', hash: '11798924850247416531' }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenuItem.base.tsx', hash: '6854375821061177190' }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenuItem.test.tsx', hash: '9752520632902479921' }, + { file: 'packages/react/src/components/ContextualMenu/ContextualMenuItem.ts', hash: '63171619528417113' }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItem.types.ts', + hash: '13270971864325546680', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.deprecated.test.tsx', + hash: '3558946452323923907', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.test.tsx', + hash: '9918131864879234023', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.tsx', + hash: '3098687527450227800', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.deprecated.test.tsx', + hash: '12212037314653515053', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.test.tsx', + hash: '15584535416442484383', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.tsx', + hash: '9063110335323343604', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.tsx', + hash: '14701963235740302031', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.types.ts', + hash: '13008443172857294424', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.deprecated.test.tsx', + hash: '3989543743399102394', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.test.tsx', + hash: '5321812505019653351', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.tsx', + hash: '4663915473238241475', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuAnchor.deprecated.test.tsx.snap', + hash: '14041414160285571668', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuAnchor.test.tsx.snap', + hash: '14041414160285571668', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuButton.deprecated.test.tsx.snap', + hash: '14710957708359584012', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuButton.test.tsx.snap', + hash: '14710957708359584012', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuSplitButton.deprecated.test.tsx.snap', + hash: '8437199313117887841', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuSplitButton.test.tsx.snap', + hash: '8437199313117887841', + }, + { + file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/index.ts', + hash: '11528547953994929240', + }, + { + file: 'packages/react/src/components/ContextualMenu/__snapshots__/ContextualMenu.test.tsx.snap', + hash: '3252836540291663345', + }, + { + file: 'packages/react/src/components/ContextualMenu/__snapshots__/ContextualMenuItem.test.tsx.snap', + hash: '17054590227599556346', + }, + { file: 'packages/react/src/components/ContextualMenu/index.ts', hash: '3835542198813000796' }, + { file: 'packages/react/src/components/DatePicker/DatePicker.base.tsx', hash: '11556118508861459365' }, + { file: 'packages/react/src/components/DatePicker/DatePicker.styles.ts', hash: '13564743909105234986' }, + { file: 'packages/react/src/components/DatePicker/DatePicker.test.tsx', hash: '1752159393780274598' }, + { file: 'packages/react/src/components/DatePicker/DatePicker.tsx', hash: '4670714210270594435' }, + { file: 'packages/react/src/components/DatePicker/DatePicker.types.ts', hash: '15140280667936305477' }, + { + file: 'packages/react/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap', + hash: '13576409900070206139', + }, + { file: 'packages/react/src/components/DatePicker/defaults.ts', hash: '9768572084554514711' }, + { file: 'packages/react/src/components/DatePicker/index.ts', hash: '17974637769310028943' }, + { file: 'packages/react/src/components/DetailsList/DetailsColumn.base.tsx', hash: '6308648217640225380' }, + { file: 'packages/react/src/components/DetailsList/DetailsColumn.styles.ts', hash: '4880164232418754095' }, + { file: 'packages/react/src/components/DetailsList/DetailsColumn.test.tsx', hash: '6798921407981461914' }, + { file: 'packages/react/src/components/DetailsList/DetailsColumn.ts', hash: '4902399603567842665' }, + { file: 'packages/react/src/components/DetailsList/DetailsColumn.types.ts', hash: '8180062505592077016' }, + { file: 'packages/react/src/components/DetailsList/DetailsFooter.types.ts', hash: '11446456440966141852' }, + { file: 'packages/react/src/components/DetailsList/DetailsHeader.base.tsx', hash: '3928141695731168504' }, + { file: 'packages/react/src/components/DetailsList/DetailsHeader.styles.ts', hash: '5073662827578508154' }, + { file: 'packages/react/src/components/DetailsList/DetailsHeader.test.tsx', hash: '3014066941567472289' }, + { file: 'packages/react/src/components/DetailsList/DetailsHeader.ts', hash: '17422579751459550432' }, + { file: 'packages/react/src/components/DetailsList/DetailsHeader.types.ts', hash: '7637123501724238546' }, + { file: 'packages/react/src/components/DetailsList/DetailsList.base.tsx', hash: '2799961499477794228' }, + { file: 'packages/react/src/components/DetailsList/DetailsList.styles.ts', hash: '7526554567819721912' }, + { file: 'packages/react/src/components/DetailsList/DetailsList.test.tsx', hash: '6228800664354956955' }, + { file: 'packages/react/src/components/DetailsList/DetailsList.ts', hash: '12728534349659462744' }, + { file: 'packages/react/src/components/DetailsList/DetailsList.types.ts', hash: '9537843069676358412' }, + { file: 'packages/react/src/components/DetailsList/DetailsListV2.test.tsx', hash: '18360992886402272534' }, + { file: 'packages/react/src/components/DetailsList/DetailsRow.base.tsx', hash: '5406961765015794815' }, + { file: 'packages/react/src/components/DetailsList/DetailsRow.styles.ts', hash: '3731969425006369055' }, + { file: 'packages/react/src/components/DetailsList/DetailsRow.test.tsx', hash: '2834031795765256016' }, + { file: 'packages/react/src/components/DetailsList/DetailsRow.ts', hash: '11470577206839450556' }, + { file: 'packages/react/src/components/DetailsList/DetailsRow.types.ts', hash: '17665153010720544130' }, + { file: 'packages/react/src/components/DetailsList/DetailsRowCheck.styles.ts', hash: '15671426098715829029' }, + { file: 'packages/react/src/components/DetailsList/DetailsRowCheck.tsx', hash: '5242923550637359098' }, + { file: 'packages/react/src/components/DetailsList/DetailsRowCheck.types.ts', hash: '7924190524800312148' }, + { file: 'packages/react/src/components/DetailsList/DetailsRowFields.tsx', hash: '11847639474237705982' }, + { file: 'packages/react/src/components/DetailsList/DetailsRowFields.types.ts', hash: '1010241688363163897' }, + { file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.base.tsx', hash: '3035507686770242754' }, + { + file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.styles.ts', + hash: '14244971813247985296', + }, + { file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.test.tsx', hash: '2424496070241863869' }, + { file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.ts', hash: '5199934512938546464' }, + { file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.types.ts', hash: '11982842825329048243' }, + { + file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsColumn.test.tsx.snap', + hash: '10877029629695718863', + }, + { + file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsHeader.test.tsx.snap', + hash: '7752035837626973782', + }, + { + file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsList.test.tsx.snap', + hash: '9571333155875344655', + }, + { + file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsListV2.test.tsx.snap', + hash: '16889062212530889471', + }, + { + file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsRow.test.tsx.snap', + hash: '11109931562984326200', + }, + { + file: 'packages/react/src/components/DetailsList/__snapshots__/ShimmeredDetailsList.test.tsx.snap', + hash: '13956054951020044610', + }, + { file: 'packages/react/src/components/DetailsList/index.ts', hash: '11905967269357664057' }, + { file: 'packages/react/src/components/Dialog/Dialog.base.tsx', hash: '1335031672704243772' }, + { file: 'packages/react/src/components/Dialog/Dialog.deprecated.test.tsx', hash: '2188927542479579813' }, + { file: 'packages/react/src/components/Dialog/Dialog.styles.ts', hash: '1274186165067202097' }, + { file: 'packages/react/src/components/Dialog/Dialog.test.tsx', hash: '1250079322956341113' }, + { file: 'packages/react/src/components/Dialog/Dialog.tsx', hash: '10039529914607071950' }, + { file: 'packages/react/src/components/Dialog/Dialog.types.ts', hash: '18136777266972422495' }, + { file: 'packages/react/src/components/Dialog/DialogContent.base.tsx', hash: '11343728294232910282' }, + { file: 'packages/react/src/components/Dialog/DialogContent.styles.ts', hash: '4270458193570647094' }, + { file: 'packages/react/src/components/Dialog/DialogContent.tsx', hash: '17518100903877368017' }, + { file: 'packages/react/src/components/Dialog/DialogContent.types.ts', hash: '4747961404545812644' }, + { file: 'packages/react/src/components/Dialog/DialogFooter.base.tsx', hash: '10782995317447912366' }, + { file: 'packages/react/src/components/Dialog/DialogFooter.styles.ts', hash: '17208002434260655427' }, + { file: 'packages/react/src/components/Dialog/DialogFooter.tsx', hash: '12109203749703017200' }, + { file: 'packages/react/src/components/Dialog/DialogFooter.types.ts', hash: '6262905726334995933' }, + { + file: 'packages/react/src/components/Dialog/__snapshots__/Dialog.deprecated.test.tsx.snap', + hash: '1205677692101133734', + }, + { file: 'packages/react/src/components/Dialog/__snapshots__/Dialog.test.tsx.snap', hash: '14260178774430004740' }, + { file: 'packages/react/src/components/Dialog/index.ts', hash: '7399685691520743552' }, + { file: 'packages/react/src/components/Divider/VerticalDivider.base.tsx', hash: '14747514845048329254' }, + { file: 'packages/react/src/components/Divider/VerticalDivider.classNames.ts', hash: '14958285190679663562' }, + { file: 'packages/react/src/components/Divider/VerticalDivider.styles.ts', hash: '2333036108043844947' }, + { file: 'packages/react/src/components/Divider/VerticalDivider.test.tsx', hash: '15996912185164124298' }, + { file: 'packages/react/src/components/Divider/VerticalDivider.tsx', hash: '4835536727331111736' }, + { file: 'packages/react/src/components/Divider/VerticalDivider.types.ts', hash: '10846488578576759054' }, + { file: 'packages/react/src/components/Divider/index.ts', hash: '11460793940690681257' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCard.base.tsx', hash: '13812626508580200819' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCard.styles.ts', hash: '2131296789428441065' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCard.test.tsx', hash: '15482888094788676500' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCard.ts', hash: '8676978884832092435' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCard.types.ts', hash: '15823224865111213520' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardActions.base.tsx', hash: '12618360925624178049' }, + { + file: 'packages/react/src/components/DocumentCard/DocumentCardActions.styles.ts', + hash: '18073006403572164218', + }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardActions.ts', hash: '7210607681946114376' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardActions.types.ts', hash: '17216634669902609499' }, + { + file: 'packages/react/src/components/DocumentCard/DocumentCardActivity.base.tsx', + hash: '15733532529261222511', + }, + { + file: 'packages/react/src/components/DocumentCard/DocumentCardActivity.styles.ts', + hash: '4735425582448454346', + }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardActivity.ts', hash: '15086127853218677837' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardActivity.types.ts', hash: '9561565954234648002' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardDetails.base.tsx', hash: '6440829969312645425' }, + { + file: 'packages/react/src/components/DocumentCard/DocumentCardDetails.styles.ts', + hash: '11880948122737474571', + }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardDetails.ts', hash: '18132989513726564615' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardDetails.types.ts', hash: '2756943457533117735' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.base.tsx', hash: '11014604612367552221' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.styles.ts', hash: '3780284966890539977' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.test.tsx', hash: '1580886441918862054' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.ts', hash: '10433805243649759860' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.types.ts', hash: '15934884145645343404' }, + { + file: 'packages/react/src/components/DocumentCard/DocumentCardLocation.base.tsx', + hash: '11939763814866414085', + }, + { + file: 'packages/react/src/components/DocumentCard/DocumentCardLocation.styles.ts', + hash: '13514891004140091333', + }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardLocation.ts', hash: '8735208547155425896' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardLocation.types.ts', hash: '8841526483942904591' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardLogo.base.tsx', hash: '8438097103948406750' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardLogo.styles.ts', hash: '15136768782429072113' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardLogo.ts', hash: '7856356439067054499' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardLogo.types.ts', hash: '14701492463350455067' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardPreview.base.tsx', hash: '11848821011500897044' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardPreview.styles.ts', hash: '5544712449354910585' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardPreview.ts', hash: '11787269282631307300' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardPreview.types.ts', hash: '8047917283408471306' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardStatus.base.tsx', hash: '12393731567818105572' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardStatus.styles.ts', hash: '3622145673328933221' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardStatus.ts', hash: '5034770503855371748' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardStatus.types.ts', hash: '12693285533780951481' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardTitle.base.tsx', hash: '2674068828407692747' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardTitle.styles.ts', hash: '746101100616079977' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardTitle.ts', hash: '4490870589977340710' }, + { file: 'packages/react/src/components/DocumentCard/DocumentCardTitle.types.ts', hash: '10582359202711643083' }, + { + file: 'packages/react/src/components/DocumentCard/__snapshots__/DocumentCard.test.tsx.snap', + hash: '4538584156885630867', + }, + { + file: 'packages/react/src/components/DocumentCard/__snapshots__/DocumentCardImage.test.tsx.snap', + hash: '9362918664972220624', + }, + { file: 'packages/react/src/components/DocumentCard/index.ts', hash: '15416848639888338244' }, + { file: 'packages/react/src/components/Dropdown/Dropdown.base.tsx', hash: '5982101215514390747' }, + { file: 'packages/react/src/components/Dropdown/Dropdown.styles.ts', hash: '6706815686211379956' }, + { file: 'packages/react/src/components/Dropdown/Dropdown.test.tsx', hash: '10675635400111409800' }, + { file: 'packages/react/src/components/Dropdown/Dropdown.tsx', hash: '3664291599270262346' }, + { file: 'packages/react/src/components/Dropdown/Dropdown.types.ts', hash: '805386249723069476' }, + { + file: 'packages/react/src/components/Dropdown/__snapshots__/Dropdown.test.tsx.snap', + hash: '13951042411364693238', + }, + { file: 'packages/react/src/components/Dropdown/index.ts', hash: '10944128569618040409' }, + { + file: 'packages/react/src/components/Dropdown/utilities/DropdownSizePosCache.test.ts', + hash: '14298618403894076114', + }, + { + file: 'packages/react/src/components/Dropdown/utilities/DropdownSizePosCache.ts', + hash: '14573545613857367131', + }, + { file: 'packages/react/src/components/ExtendedPicker/BaseExtendedPicker.scss', hash: '12208239487391689192' }, + { file: 'packages/react/src/components/ExtendedPicker/BaseExtendedPicker.test.tsx', hash: '2841294449776155583' }, + { file: 'packages/react/src/components/ExtendedPicker/BaseExtendedPicker.tsx', hash: '2417453781687326962' }, + { + file: 'packages/react/src/components/ExtendedPicker/BaseExtendedPicker.types.ts', + hash: '15463802587148449884', + }, + { + file: 'packages/react/src/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss', + hash: '17786163747904205632', + }, + { + file: 'packages/react/src/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.tsx', + hash: '13191670132860696607', + }, + { + file: 'packages/react/src/components/ExtendedPicker/__snapshots__/BaseExtendedPicker.test.tsx.snap', + hash: '6741546184545952465', + }, + { file: 'packages/react/src/components/ExtendedPicker/index.ts', hash: '16868542197048982054' }, + { file: 'packages/react/src/components/Fabric/Fabric.base.tsx', hash: '15683732381298373787' }, + { file: 'packages/react/src/components/Fabric/Fabric.styles.ts', hash: '3127272392985933000' }, + { file: 'packages/react/src/components/Fabric/Fabric.test.tsx', hash: '17910243263768585833' }, + { file: 'packages/react/src/components/Fabric/Fabric.tsx', hash: '1121061255147231937' }, + { file: 'packages/react/src/components/Fabric/Fabric.types.ts', hash: '9200626287532995187' }, + { file: 'packages/react/src/components/Fabric/__snapshots__/Fabric.test.tsx.snap', hash: '1783002843621059971' }, + { file: 'packages/react/src/components/Fabric/index.ts', hash: '16845651033210989707' }, + { file: 'packages/react/src/components/Facepile/Facepile.base.tsx', hash: '11217134564165655591' }, + { file: 'packages/react/src/components/Facepile/Facepile.styles.ts', hash: '3138742609820872548' }, + { file: 'packages/react/src/components/Facepile/Facepile.test.tsx', hash: '11808318394624143691' }, + { file: 'packages/react/src/components/Facepile/Facepile.tsx', hash: '4306908805761378642' }, + { file: 'packages/react/src/components/Facepile/Facepile.types.ts', hash: '10072003322857041114' }, + { file: 'packages/react/src/components/Facepile/FacepileButton.styles.ts', hash: '7829359605023940665' }, + { file: 'packages/react/src/components/Facepile/FacepileButton.tsx', hash: '2155259046902727571' }, + { + file: 'packages/react/src/components/Facepile/__snapshots__/Facepile.test.tsx.snap', + hash: '6035729035787766585', + }, + { file: 'packages/react/src/components/Facepile/index.ts', hash: '3843010742943322381' }, + { file: 'packages/react/src/components/FloatingPicker/BaseFloatingPicker.scss', hash: '3604756766474209425' }, + { + file: 'packages/react/src/components/FloatingPicker/BaseFloatingPicker.test.tsx', + hash: '10402050741886698050', + }, + { file: 'packages/react/src/components/FloatingPicker/BaseFloatingPicker.tsx', hash: '11401685007576339654' }, + { file: 'packages/react/src/components/FloatingPicker/BaseFloatingPicker.types.ts', hash: '1645066791828351675' }, + { + file: 'packages/react/src/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.tsx', + hash: '10382637701827323538', + }, + { + file: 'packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePicker.scss', + hash: '3905654351229104045', + }, + { + file: 'packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/PickerItemsDefault.scss', + hash: '998801082346015725', + }, + { + file: 'packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SelectedItemDefault.tsx', + hash: '897588648460287399', + }, + { + file: 'packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx', + hash: '10345250805301606220', + }, + { + file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionStore.test.tsx', + hash: '17752174539815674325', + }, + { + file: 'packages/react/src/components/FloatingPicker/Suggestions/Suggestions.types.ts', + hash: '1619086524390486592', + }, + { + file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.scss', + hash: '14094996955090584456', + }, + { + file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.test.tsx', + hash: '2858897028514122286', + }, + { + file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.tsx', + hash: '5387100967775322843', + }, + { + file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsCore.scss', + hash: '1212577356362130966', + }, + { + file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsCore.tsx', + hash: '17624290543989563506', + }, + { + file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsStore.ts', + hash: '647289822927373071', + }, + { + file: 'packages/react/src/components/FloatingPicker/__snapshots__/BaseFloatingPicker.test.tsx.snap', + hash: '16517390094975721383', + }, + { file: 'packages/react/src/components/FloatingPicker/index.ts', hash: '1170539822572092906' }, + { file: 'packages/react/src/components/FocusTrapZone/FocusTrapZone.test.tsx', hash: '3653120050351888108' }, + { file: 'packages/react/src/components/FocusTrapZone/FocusTrapZone.tsx', hash: '10749728776021839597' }, + { file: 'packages/react/src/components/FocusTrapZone/FocusTrapZone.types.ts', hash: '6325135567045903758' }, + { file: 'packages/react/src/components/FocusTrapZone/index.ts', hash: '8327216471932571554' }, + { file: 'packages/react/src/components/GroupedList/GroupFooter.base.tsx', hash: '14198741911962538297' }, + { file: 'packages/react/src/components/GroupedList/GroupFooter.styles.ts', hash: '14745204278246478319' }, + { file: 'packages/react/src/components/GroupedList/GroupFooter.ts', hash: '14580690585539484982' }, + { file: 'packages/react/src/components/GroupedList/GroupFooter.types.ts', hash: '1147400551367794739' }, + { file: 'packages/react/src/components/GroupedList/GroupHeader.base.tsx', hash: '3726588132786848597' }, + { file: 'packages/react/src/components/GroupedList/GroupHeader.styles.ts', hash: '127249141428848245' }, + { file: 'packages/react/src/components/GroupedList/GroupHeader.ts', hash: '14406360241147099907' }, + { file: 'packages/react/src/components/GroupedList/GroupHeader.types.ts', hash: '869293819287687801' }, + { file: 'packages/react/src/components/GroupedList/GroupShowAll.base.tsx', hash: '13430177116838777970' }, + { file: 'packages/react/src/components/GroupedList/GroupShowAll.styles.ts', hash: '9173240059922396704' }, + { file: 'packages/react/src/components/GroupedList/GroupShowAll.ts', hash: '18241463491945654086' }, + { file: 'packages/react/src/components/GroupedList/GroupShowAll.types.ts', hash: '15505112258738188159' }, + { file: 'packages/react/src/components/GroupedList/GroupSpacer.tsx', hash: '2382614986997954733' }, + { file: 'packages/react/src/components/GroupedList/GroupSpacer.types.ts', hash: '16962133135384591377' }, + { file: 'packages/react/src/components/GroupedList/GroupedList.base.tsx', hash: '15701306319172639078' }, + { file: 'packages/react/src/components/GroupedList/GroupedList.styles.ts', hash: '14642443188238030052' }, + { file: 'packages/react/src/components/GroupedList/GroupedList.test.tsx', hash: '14268783024355777066' }, + { file: 'packages/react/src/components/GroupedList/GroupedList.ts', hash: '4364629580250318037' }, + { file: 'packages/react/src/components/GroupedList/GroupedList.types.ts', hash: '6313853039955612053' }, + { file: 'packages/react/src/components/GroupedList/GroupedListSection.tsx', hash: '15904592677032813529' }, + { file: 'packages/react/src/components/GroupedList/GroupedListV2.base.tsx', hash: '6481450481892001553' }, + { file: 'packages/react/src/components/GroupedList/GroupedListV2.test.tsx', hash: '17238450217629509752' }, + { file: 'packages/react/src/components/GroupedList/GroupedListV2.tsx', hash: '6260798994381323732' }, + { file: 'packages/react/src/components/GroupedList/GroupedListV2.types.ts', hash: '8326581936979434519' }, + { file: 'packages/react/src/components/GroupedList/index.ts', hash: '1461761807935333812' }, + { file: 'packages/react/src/components/HoverCard/BaseCard.types.ts', hash: '7854988721086480335' }, + { file: 'packages/react/src/components/HoverCard/CardCallout/CardCallout.tsx', hash: '6318903072711304556' }, + { file: 'packages/react/src/components/HoverCard/ExpandingCard.base.tsx', hash: '12920278905857343993' }, + { file: 'packages/react/src/components/HoverCard/ExpandingCard.styles.ts', hash: '2569486849539241092' }, + { file: 'packages/react/src/components/HoverCard/ExpandingCard.ts', hash: '14634468554846579407' }, + { file: 'packages/react/src/components/HoverCard/ExpandingCard.types.ts', hash: '6870429964911366844' }, + { file: 'packages/react/src/components/HoverCard/HoverCard.base.tsx', hash: '7594950086626185659' }, + { file: 'packages/react/src/components/HoverCard/HoverCard.styles.ts', hash: '13603738129536779165' }, + { file: 'packages/react/src/components/HoverCard/HoverCard.test.tsx', hash: '12683699210328003784' }, + { file: 'packages/react/src/components/HoverCard/HoverCard.ts', hash: '9256784689499188401' }, + { file: 'packages/react/src/components/HoverCard/HoverCard.types.ts', hash: '9375330990542611125' }, + { file: 'packages/react/src/components/HoverCard/PlainCard/PlainCard.base.tsx', hash: '3832709380523488574' }, + { file: 'packages/react/src/components/HoverCard/PlainCard/PlainCard.styles.ts', hash: '1750819295487788524' }, + { file: 'packages/react/src/components/HoverCard/PlainCard/PlainCard.ts', hash: '876829282032579574' }, + { file: 'packages/react/src/components/HoverCard/PlainCard/PlainCard.types.ts', hash: '17980034747921061565' }, + { + file: 'packages/react/src/components/HoverCard/__snapshots__/HoverCard.test.tsx.snap', + hash: '8142014490582894703', + }, + { file: 'packages/react/src/components/HoverCard/index.ts', hash: '9603968589460798746' }, + { file: 'packages/react/src/components/Icon/FontIcon.test.tsx', hash: '9649120469191571884' }, + { file: 'packages/react/src/components/Icon/FontIcon.tsx', hash: '7793447455696767318' }, + { file: 'packages/react/src/components/Icon/Icon.base.tsx', hash: '3422716483088640348' }, + { file: 'packages/react/src/components/Icon/Icon.styles.ts', hash: '15493732365313653034' }, + { file: 'packages/react/src/components/Icon/Icon.test.tsx', hash: '17082809089358473376' }, + { file: 'packages/react/src/components/Icon/Icon.tsx', hash: '17379752979197206906' }, + { file: 'packages/react/src/components/Icon/Icon.types.ts', hash: '3134559495065858448' }, + { file: 'packages/react/src/components/Icon/ImageIcon.test.tsx', hash: '18144711626394801617' }, + { file: 'packages/react/src/components/Icon/ImageIcon.tsx', hash: '1808967559310429816' }, + { file: 'packages/react/src/components/Icon/__snapshots__/FontIcon.test.tsx.snap', hash: '13051146926087860573' }, + { file: 'packages/react/src/components/Icon/__snapshots__/Icon.test.tsx.snap', hash: '120175245064663605' }, + { file: 'packages/react/src/components/Icon/__snapshots__/ImageIcon.test.tsx.snap', hash: '4160491147454961750' }, + { file: 'packages/react/src/components/Icon/index.ts', hash: '18332890298919647701' }, + { file: 'packages/react/src/components/Image/Image.base.tsx', hash: '14123135419720583714' }, + { file: 'packages/react/src/components/Image/Image.styles.ts', hash: '7530737254051669603' }, + { file: 'packages/react/src/components/Image/Image.test.tsx', hash: '72724674218984311' }, + { file: 'packages/react/src/components/Image/Image.tsx', hash: '4184098376163028342' }, + { file: 'packages/react/src/components/Image/Image.types.ts', hash: '17944297075205116667' }, + { file: 'packages/react/src/components/Image/__snapshots__/Image.test.tsx.snap', hash: '8589950869797284375' }, + { file: 'packages/react/src/components/Image/index.ts', hash: '6117348458737991291' }, + { file: 'packages/react/src/components/Keytip/Keytip.styles.ts', hash: '26470584495180607' }, + { file: 'packages/react/src/components/Keytip/Keytip.tsx', hash: '1766817765311778495' }, + { file: 'packages/react/src/components/Keytip/Keytip.types.ts', hash: '16293725386152764984' }, + { file: 'packages/react/src/components/Keytip/KeytipContent.base.tsx', hash: '5493927869174904437' }, + { file: 'packages/react/src/components/Keytip/KeytipContent.test.tsx', hash: '5086309600864173535' }, + { file: 'packages/react/src/components/Keytip/KeytipContent.tsx', hash: '11611940156425372619' }, + { + file: 'packages/react/src/components/Keytip/__snapshots__/KeytipContent.test.tsx.snap', + hash: '2596460814892278429', + }, + { file: 'packages/react/src/components/Keytip/index.ts', hash: '1589728284157203563' }, + { file: 'packages/react/src/components/KeytipData/KeytipData.tsx', hash: '15775201828664799680' }, + { file: 'packages/react/src/components/KeytipData/KeytipData.types.ts', hash: '12324447823866814267' }, + { file: 'packages/react/src/components/KeytipData/index.ts', hash: '4712198936381945548' }, + { file: 'packages/react/src/components/KeytipData/useKeytipData.test.tsx', hash: '17009869791449521401' }, + { file: 'packages/react/src/components/KeytipData/useKeytipData.ts', hash: '5488949258786574622' }, + { file: 'packages/react/src/components/KeytipData/useKeytipRef.test.ts', hash: '6346566064757434343' }, + { file: 'packages/react/src/components/KeytipData/useKeytipRef.ts', hash: '14435606425695323098' }, + { file: 'packages/react/src/components/KeytipLayer/IKeytipTreeNode.ts', hash: '4259987714669396673' }, + { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.base.tsx', hash: '6544893700817273089' }, + { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.styles.ts', hash: '16884186816077888808' }, + { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.test.tsx', hash: '9818784360532204726' }, + { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.tsx', hash: '9909297938001309774' }, + { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.types.ts', hash: '15640944128209193732' }, + { file: 'packages/react/src/components/KeytipLayer/KeytipTree.test.tsx', hash: '9517751630103101293' }, + { file: 'packages/react/src/components/KeytipLayer/KeytipTree.ts', hash: '14167456441228340020' }, + { file: 'packages/react/src/components/KeytipLayer/index.ts', hash: '333553465631618123' }, + { file: 'packages/react/src/components/Label/Label.base.tsx', hash: '8190575964210506548' }, + { file: 'packages/react/src/components/Label/Label.styles.ts', hash: '5738839503600392947' }, + { file: 'packages/react/src/components/Label/Label.test.tsx', hash: '10090713217767425577' }, + { file: 'packages/react/src/components/Label/Label.tsx', hash: '8942462394854847624' }, + { file: 'packages/react/src/components/Label/Label.types.ts', hash: '8823718327343549516' }, + { file: 'packages/react/src/components/Label/LabelMixins.scss', hash: '2865796132641773676' }, + { file: 'packages/react/src/components/Label/__snapshots__/Label.test.tsx.snap', hash: '16950664531217292276' }, + { file: 'packages/react/src/components/Label/index.ts', hash: '701782372226603037' }, + { file: 'packages/react/src/components/Layer/Layer.base.tsx', hash: '14484890726556761152' }, + { file: 'packages/react/src/components/Layer/Layer.notification.ts', hash: '14110203098247553111' }, + { file: 'packages/react/src/components/Layer/Layer.styles.ts', hash: '9132996130234515054' }, + { file: 'packages/react/src/components/Layer/Layer.test.tsx', hash: '10526067785847207172' }, + { file: 'packages/react/src/components/Layer/Layer.tsx', hash: '16441278557794939293' }, + { file: 'packages/react/src/components/Layer/Layer.types.ts', hash: '18253182603761913277' }, + { file: 'packages/react/src/components/Layer/LayerHost.tsx', hash: '6415687165915280246' }, + { file: 'packages/react/src/components/Layer/LayerHost.types.ts', hash: '12435084507892692287' }, + { file: 'packages/react/src/components/Layer/__snapshots__/Layer.test.tsx.snap', hash: '4347345238023347739' }, + { file: 'packages/react/src/components/Layer/index.ts', hash: '2702225210959749876' }, + { file: 'packages/react/src/components/Link/Link.base.tsx', hash: '4696009851687537006' }, + { file: 'packages/react/src/components/Link/Link.styles.ts', hash: '6380541707633307769' }, + { file: 'packages/react/src/components/Link/Link.test.tsx', hash: '13162337841979270382' }, + { file: 'packages/react/src/components/Link/Link.tsx', hash: '1483460583795267065' }, + { file: 'packages/react/src/components/Link/Link.types.ts', hash: '7950997878673908950' }, + { file: 'packages/react/src/components/Link/__snapshots__/Link.test.tsx.snap', hash: '13236755011027298137' }, + { file: 'packages/react/src/components/Link/index.ts', hash: '16962753458348462360' }, + { file: 'packages/react/src/components/Link/useLink.ts', hash: '6771451659717631459' }, + { file: 'packages/react/src/components/List/List.test.tsx', hash: '14182207209684571411' }, + { file: 'packages/react/src/components/List/List.tsx', hash: '337398525385147578' }, + { file: 'packages/react/src/components/List/List.types.ts', hash: '1931441716112280094' }, + { file: 'packages/react/src/components/List/__snapshots__/List.test.tsx.snap', hash: '6603110722863245756' }, + { file: 'packages/react/src/components/List/index.ts', hash: '3791292240660287058' }, + { file: 'packages/react/src/components/List/utils/scroll.test.ts', hash: '5035250436686997299' }, + { file: 'packages/react/src/components/List/utils/scroll.ts', hash: '3276954363382087534' }, + { file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.base.tsx', hash: '8108986356865954062' }, + { + file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.styles.tsx', + hash: '11629235192520125274', + }, + { file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.test.tsx', hash: '4097529235713830466' }, + { file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.tsx', hash: '3131729497757785613' }, + { file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.types.ts', hash: '7652722384397140480' }, + { + file: 'packages/react/src/components/MarqueeSelection/__snapshots__/MarqueeSelection.test.tsx.snap', + hash: '1476072118831675136', + }, + { file: 'packages/react/src/components/MessageBar/MessageBar.base.tsx', hash: '3641725290805595446' }, + { file: 'packages/react/src/components/MessageBar/MessageBar.styles.ts', hash: '16901430479262789866' }, + { file: 'packages/react/src/components/MessageBar/MessageBar.test.tsx', hash: '4200531768298042001' }, + { file: 'packages/react/src/components/MessageBar/MessageBar.tsx', hash: '15934533885780135935' }, + { file: 'packages/react/src/components/MessageBar/MessageBar.types.ts', hash: '12107460841232965387' }, + { + file: 'packages/react/src/components/MessageBar/__snapshots__/MessageBar.test.tsx.snap', + hash: '12089438488535566985', + }, + { file: 'packages/react/src/components/MessageBar/index.ts', hash: '10165783190127395700' }, + { file: 'packages/react/src/components/Modal/Modal.base.tsx', hash: '7774473038141256639' }, + { file: 'packages/react/src/components/Modal/Modal.styles.ts', hash: '13010493938273472658' }, + { file: 'packages/react/src/components/Modal/Modal.test.tsx', hash: '7330042059600029952' }, + { file: 'packages/react/src/components/Modal/Modal.ts', hash: '13683187870561493708' }, + { file: 'packages/react/src/components/Modal/Modal.types.ts', hash: '9311092462398275867' }, + { file: 'packages/react/src/components/Modal/__snapshots__/Modal.test.tsx.snap', hash: '16603919199555912093' }, + { file: 'packages/react/src/components/Modal/index.ts', hash: '13798025325857153668' }, + { file: 'packages/react/src/components/Nav/Nav.base.tsx', hash: '8394582414073501513' }, + { file: 'packages/react/src/components/Nav/Nav.styles.ts', hash: '14512050744103400087' }, + { file: 'packages/react/src/components/Nav/Nav.test.tsx', hash: '15514537140918235707' }, + { file: 'packages/react/src/components/Nav/Nav.tsx', hash: '10638284599870328707' }, + { file: 'packages/react/src/components/Nav/Nav.types.ts', hash: '8186856480909759678' }, + { file: 'packages/react/src/components/Nav/__snapshots__/Nav.test.tsx.snap', hash: '9307439353878066651' }, + { file: 'packages/react/src/components/Nav/index.ts', hash: '12662416181288669629' }, + { file: 'packages/react/src/components/OverflowSet/OverflowButton.tsx', hash: '9769707305996342513' }, + { file: 'packages/react/src/components/OverflowSet/OverflowSet.base.tsx', hash: '7113035684216930208' }, + { file: 'packages/react/src/components/OverflowSet/OverflowSet.styles.ts', hash: '5647135014154387382' }, + { file: 'packages/react/src/components/OverflowSet/OverflowSet.test.tsx', hash: '10333146601109509690' }, + { file: 'packages/react/src/components/OverflowSet/OverflowSet.ts', hash: '11238335157785127924' }, + { file: 'packages/react/src/components/OverflowSet/OverflowSet.types.ts', hash: '13948203100630407433' }, + { + file: 'packages/react/src/components/OverflowSet/__snapshots__/OverflowSet.test.tsx.snap', + hash: '248229536782956095', + }, + { file: 'packages/react/src/components/OverflowSet/index.ts', hash: '16933137934852433852' }, + { file: 'packages/react/src/components/Overlay/Overlay.base.tsx', hash: '11398904192435363344' }, + { file: 'packages/react/src/components/Overlay/Overlay.styles.ts', hash: '12479301927551480916' }, + { file: 'packages/react/src/components/Overlay/Overlay.test.tsx', hash: '5375182851494505692' }, + { file: 'packages/react/src/components/Overlay/Overlay.tsx', hash: '14338623169213129149' }, + { file: 'packages/react/src/components/Overlay/Overlay.types.ts', hash: '2235807634895380003' }, + { file: 'packages/react/src/components/Overlay/index.ts', hash: '11296397034515992856' }, + { file: 'packages/react/src/components/Panel/Panel.base.tsx', hash: '12463543702726193236' }, + { file: 'packages/react/src/components/Panel/Panel.styles.ts', hash: '11077941591310445928' }, + { file: 'packages/react/src/components/Panel/Panel.test.tsx', hash: '1588567945652832575' }, + { file: 'packages/react/src/components/Panel/Panel.ts', hash: '8839731453608919663' }, + { file: 'packages/react/src/components/Panel/Panel.types.ts', hash: '6670275864375140828' }, + { file: 'packages/react/src/components/Panel/__snapshots__/Panel.test.tsx.snap', hash: '559260894059668605' }, + { file: 'packages/react/src/components/Panel/index.ts', hash: '13335174913237626780' }, + { file: 'packages/react/src/components/Persona/Persona.base.tsx', hash: '6194967196605028938' }, + { file: 'packages/react/src/components/Persona/Persona.deprecated.test.tsx', hash: '11989340987137030740' }, + { file: 'packages/react/src/components/Persona/Persona.styles.ts', hash: '1920607507152248627' }, + { file: 'packages/react/src/components/Persona/Persona.test.tsx', hash: '17539018815879877692' }, + { file: 'packages/react/src/components/Persona/Persona.tsx', hash: '9379532642372744584' }, + { file: 'packages/react/src/components/Persona/Persona.types.ts', hash: '17005696098342686371' }, + { file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.base.tsx', hash: '7978214084573190099' }, + { + file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.deprecated.test.tsx', + hash: '12416360491602756091', + }, + { file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.styles.ts', hash: '3840381039426790312' }, + { file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.test.tsx', hash: '2750927891149479510' }, + { file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.tsx', hash: '1454207390708087949' }, + { + file: 'packages/react/src/components/Persona/PersonaCoin/__snapshots__/PersonaCoin.deprecated.test.tsx.snap', + hash: '8688578988288194326', + }, + { + file: 'packages/react/src/components/Persona/PersonaCoin/__snapshots__/PersonaCoin.test.tsx.snap', + hash: '4893031829279367457', + }, + { file: 'packages/react/src/components/Persona/PersonaCoin/index.ts', hash: '10833710250217357347' }, + { file: 'packages/react/src/components/Persona/PersonaConsts.tsx', hash: '1957132599773504778' }, + { file: 'packages/react/src/components/Persona/PersonaInitialsColor.test.ts', hash: '301179335668360928' }, + { file: 'packages/react/src/components/Persona/PersonaInitialsColor.ts', hash: '18170963028405037460' }, + { + file: 'packages/react/src/components/Persona/PersonaPresence/PersonaPresence.base.tsx', + hash: '3062885056415174826', + }, + { + file: 'packages/react/src/components/Persona/PersonaPresence/PersonaPresence.styles.ts', + hash: '6615263651250958481', + }, + { + file: 'packages/react/src/components/Persona/PersonaPresence/PersonaPresence.test.tsx', + hash: '13226130009014815513', + }, + { + file: 'packages/react/src/components/Persona/PersonaPresence/PersonaPresence.tsx', + hash: '9491698373175359234', + }, + { + file: 'packages/react/src/components/Persona/PersonaPresence/__snapshots__/PersonaPresence.test.tsx.snap', + hash: '1987937457430225355', + }, + { file: 'packages/react/src/components/Persona/PersonaPresence/index.ts', hash: '8712998843474566045' }, + { + file: 'packages/react/src/components/Persona/__snapshots__/Persona.deprecated.test.tsx.snap', + hash: '12606532779411858656', + }, + { + file: 'packages/react/src/components/Persona/__snapshots__/Persona.test.tsx.snap', + hash: '5243408820705783769', + }, + { file: 'packages/react/src/components/Persona/index.ts', hash: '1003635016468659877' }, + { file: 'packages/react/src/components/Persona/test-utils.tsx', hash: '18432891952579134324' }, + { file: 'packages/react/src/components/Pivot/Pivot.base.tsx', hash: '5254684007184867388' }, + { file: 'packages/react/src/components/Pivot/Pivot.deprecated.test.tsx', hash: '1235740737998705772' }, + { file: 'packages/react/src/components/Pivot/Pivot.styles.ts', hash: '9108562916062400261' }, + { file: 'packages/react/src/components/Pivot/Pivot.test.tsx', hash: '1862426908183434633' }, + { file: 'packages/react/src/components/Pivot/Pivot.tsx', hash: '5829419170269708419' }, + { file: 'packages/react/src/components/Pivot/Pivot.types.ts', hash: '15724983107723831286' }, + { file: 'packages/react/src/components/Pivot/PivotItem.tsx', hash: '5498227973895913176' }, + { file: 'packages/react/src/components/Pivot/PivotItem.types.ts', hash: '7463314133865753309' }, + { + file: 'packages/react/src/components/Pivot/__snapshots__/Pivot.deprecated.test.tsx.snap', + hash: '9350737731021987462', + }, + { file: 'packages/react/src/components/Pivot/__snapshots__/Pivot.test.tsx.snap', hash: '14812844193113361128' }, + { file: 'packages/react/src/components/Pivot/index.ts', hash: '16401592313694217989' }, + { file: 'packages/react/src/components/Popup/Popup.test.tsx', hash: '14748219392463636319' }, + { file: 'packages/react/src/components/Popup/Popup.tsx', hash: '18303114733075754228' }, + { file: 'packages/react/src/components/Popup/Popup.types.ts', hash: '2644822833966833698' }, + { file: 'packages/react/src/components/Popup/index.ts', hash: '15938578186587982924' }, + { + file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.base.tsx', + hash: '2266128567453655067', + }, + { + file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.styles.ts', + hash: '17437177184475748779', + }, + { + file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.test.tsx', + hash: '13377810921948144940', + }, + { file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.tsx', hash: '3338648644072271163' }, + { + file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.types.ts', + hash: '13275827929777402920', + }, + { + file: 'packages/react/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.test.tsx.snap', + hash: '5669310949553554689', + }, + { file: 'packages/react/src/components/ProgressIndicator/index.ts', hash: '16364455361019886446' }, + { file: 'packages/react/src/components/Rating/Rating.base.tsx', hash: '4565165120321522700' }, + { file: 'packages/react/src/components/Rating/Rating.styles.ts', hash: '9112171566781846387' }, + { file: 'packages/react/src/components/Rating/Rating.test.tsx', hash: '12019971281630417718' }, + { file: 'packages/react/src/components/Rating/Rating.tsx', hash: '8474775138709046972' }, + { file: 'packages/react/src/components/Rating/Rating.types.ts', hash: '3293957530885947735' }, + { file: 'packages/react/src/components/Rating/__snapshots__/Rating.test.tsx.snap', hash: '6878166199175042678' }, + { file: 'packages/react/src/components/Rating/index.ts', hash: '6936810521464100990' }, + { file: 'packages/react/src/components/ResizeGroup/ResizeGroup.base.tsx', hash: '9694591702737967514' }, + { file: 'packages/react/src/components/ResizeGroup/ResizeGroup.test.tsx', hash: '5245675499839808625' }, + { file: 'packages/react/src/components/ResizeGroup/ResizeGroup.tsx', hash: '11042089564242243766' }, + { file: 'packages/react/src/components/ResizeGroup/ResizeGroup.types.ts', hash: '18215672949674225534' }, + { + file: 'packages/react/src/components/ResizeGroup/__snapshots__/ResizeGroup.test.tsx.snap', + hash: '11336585111154751236', + }, + { file: 'packages/react/src/components/ResizeGroup/index.ts', hash: '18030751737929359966' }, + { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.base.tsx', hash: '4728891024798577999' }, + { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.scss', hash: '12660556819721993651' }, + { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.styles.ts', hash: '7630057771040368786' }, + { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.test.tsx', hash: '5450045075671214421' }, + { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.tsx', hash: '10278226015705813013' }, + { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.types.ts', hash: '11149654521789685360' }, + { + file: 'packages/react/src/components/ScrollablePane/__snapshots__/ScrollablePane.test.tsx.snap', + hash: '11917452609133122703', + }, + { file: 'packages/react/src/components/ScrollablePane/index.ts', hash: '9022712096012739667' }, + { file: 'packages/react/src/components/SearchBox/SearchBox.base.tsx', hash: '4225740635739479085' }, + { file: 'packages/react/src/components/SearchBox/SearchBox.styles.tsx', hash: '1901328636794627212' }, + { file: 'packages/react/src/components/SearchBox/SearchBox.test.tsx', hash: '15270693759819107024' }, + { file: 'packages/react/src/components/SearchBox/SearchBox.tsx', hash: '14815922271880527031' }, + { file: 'packages/react/src/components/SearchBox/SearchBox.types.ts', hash: '16561624650344526815' }, + { + file: 'packages/react/src/components/SearchBox/__snapshots__/SearchBox.test.tsx.snap', + hash: '5163262981591412955', + }, + { file: 'packages/react/src/components/SearchBox/index.ts', hash: '2002340183405233581' }, + { + file: 'packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.test.tsx', + hash: '2439461074165366957', + }, + { + file: 'packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.tsx', + hash: '15017942153576064679', + }, + { + file: 'packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.types.ts', + hash: '13036270235408570430', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.scss', + hash: '15475341105828219619', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.ts', + hash: '15633592521000750806', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.tsx', + hash: '14514987165749763434', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.types.ts', + hash: '14366127583648771435', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss', + hash: '758761801215317040', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.tsx', + hash: '17437319372558202829', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.tsx', + hash: '17756749329382603092', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.test.tsx', + hash: '13657963705753195239', + }, + { + file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.tsx', + hash: '2188525700728877068', + }, + { + file: 'packages/react/src/components/SelectedItemsList/__snapshots__/BaseSelectedItemsList.test.tsx.snap', + hash: '17274296306189210980', + }, + { file: 'packages/react/src/components/SelectedItemsList/index.ts', hash: '7595379961393666277' }, + { file: 'packages/react/src/components/Separator/Separator.base.tsx', hash: '17294625678770939029' }, + { file: 'packages/react/src/components/Separator/Separator.styles.ts', hash: '14230472610755643944' }, + { file: 'packages/react/src/components/Separator/Separator.test.tsx', hash: '7738872471754358071' }, + { file: 'packages/react/src/components/Separator/Separator.tsx', hash: '2708132967434374502' }, + { file: 'packages/react/src/components/Separator/Separator.types.ts', hash: '13040932608955788124' }, + { file: 'packages/react/src/components/Separator/index.ts', hash: '14575455021946241513' }, + { file: 'packages/react/src/components/Shimmer/Shimmer.base.tsx', hash: '622305100319727334' }, + { file: 'packages/react/src/components/Shimmer/Shimmer.styles.ts', hash: '7858803940928495535' }, + { file: 'packages/react/src/components/Shimmer/Shimmer.test.tsx', hash: '14192583860063774916' }, + { file: 'packages/react/src/components/Shimmer/Shimmer.tsx', hash: '1394717753894766880' }, + { file: 'packages/react/src/components/Shimmer/Shimmer.types.ts', hash: '17331228457676528659' }, + { + file: 'packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.base.tsx', + hash: '10275032889626978683', + }, + { + file: 'packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.ts', + hash: '11420523654698134729', + }, + { file: 'packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.tsx', hash: '9694371307250105703' }, + { + file: 'packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.types.ts', + hash: '1728577304450374260', + }, + { + file: 'packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.tsx', + hash: '18379310095005316743', + }, + { + file: 'packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.ts', + hash: '2545105839221331446', + }, + { + file: 'packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.tsx', + hash: '14250368054107805040', + }, + { + file: 'packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.types.ts', + hash: '7115051155111137833', + }, + { file: 'packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.base.tsx', hash: '78556124504108996' }, + { file: 'packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.styles.ts', hash: '2064652991532358343' }, + { file: 'packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.tsx', hash: '11476010222559961913' }, + { file: 'packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.types.ts', hash: '2110669865470376426' }, + { file: 'packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.base.tsx', hash: '11316009371793371654' }, + { file: 'packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.styles.ts', hash: '16825660826402859755' }, + { file: 'packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.tsx', hash: '6810202527433669183' }, + { file: 'packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.types.ts', hash: '18351243406956033223' }, + { + file: 'packages/react/src/components/Shimmer/__snapshots__/Shimmer.test.tsx.snap', + hash: '3185768282225296628', + }, + { file: 'packages/react/src/components/Shimmer/index.ts', hash: '13927227349171452284' }, + { file: 'packages/react/src/components/Slider/Slider.base.tsx', hash: '15798451710094592561' }, + { file: 'packages/react/src/components/Slider/Slider.styles.ts', hash: '4607291680675548022' }, + { file: 'packages/react/src/components/Slider/Slider.test.tsx', hash: '8613310415484639048' }, + { file: 'packages/react/src/components/Slider/Slider.tsx', hash: '7410622987581707582' }, + { file: 'packages/react/src/components/Slider/Slider.types.ts', hash: '14952151059140667704' }, + { file: 'packages/react/src/components/Slider/__snapshots__/Slider.test.tsx.snap', hash: '9285732807236239098' }, + { file: 'packages/react/src/components/Slider/index.ts', hash: '16670111655346245754' }, + { file: 'packages/react/src/components/Slider/useSlider.ts', hash: '12900564936250592122' }, + { file: 'packages/react/src/components/SpinButton/SpinButton.base.tsx', hash: '18058269695188263893' }, + { file: 'packages/react/src/components/SpinButton/SpinButton.styles.ts', hash: '9802419801197429803' }, + { file: 'packages/react/src/components/SpinButton/SpinButton.test.tsx', hash: '1102850678003036987' }, + { file: 'packages/react/src/components/SpinButton/SpinButton.tsx', hash: '5507489409647508695' }, + { file: 'packages/react/src/components/SpinButton/SpinButton.types.ts', hash: '2703760200830686057' }, + { + file: 'packages/react/src/components/SpinButton/__snapshots__/SpinButton.test.tsx.snap', + hash: '12546769869747196784', + }, + { file: 'packages/react/src/components/SpinButton/index.ts', hash: '6778975452233565727' }, + { file: 'packages/react/src/components/Spinner/Spinner.base.tsx', hash: '7258097721326686377' }, + { file: 'packages/react/src/components/Spinner/Spinner.styles.tsx', hash: '716100486567492388' }, + { file: 'packages/react/src/components/Spinner/Spinner.test.tsx', hash: '12060499305856970384' }, + { file: 'packages/react/src/components/Spinner/Spinner.tsx', hash: '3200211062084468851' }, + { file: 'packages/react/src/components/Spinner/Spinner.types.ts', hash: '1544606461056547194' }, + { + file: 'packages/react/src/components/Spinner/__snapshots__/Spinner.test.tsx.snap', + hash: '10255693095285678582', + }, + { file: 'packages/react/src/components/Spinner/index.ts', hash: '1855220178076017776' }, + { file: 'packages/react/src/components/Stack/Stack.styles.ts', hash: '16321254993662249061' }, + { file: 'packages/react/src/components/Stack/Stack.test.tsx', hash: '11883216989281561254' }, + { file: 'packages/react/src/components/Stack/Stack.tsx', hash: '4140006760718240707' }, + { file: 'packages/react/src/components/Stack/Stack.types.ts', hash: '13977158692936683168' }, + { file: 'packages/react/src/components/Stack/StackItem/StackItem.styles.ts', hash: '10908263818739168703' }, + { file: 'packages/react/src/components/Stack/StackItem/StackItem.test.tsx', hash: '15972135318103519144' }, + { file: 'packages/react/src/components/Stack/StackItem/StackItem.tsx', hash: '15838468526064014217' }, + { file: 'packages/react/src/components/Stack/StackItem/StackItem.types.ts', hash: '3129159544618735975' }, + { file: 'packages/react/src/components/Stack/StackUtils.test.ts', hash: '521690037370632650' }, + { file: 'packages/react/src/components/Stack/StackUtils.ts', hash: '12286636882102513809' }, + { file: 'packages/react/src/components/Stack/__snapshots__/Stack.test.tsx.snap', hash: '12864004073364256598' }, + { file: 'packages/react/src/components/Stack/index.ts', hash: '1979466436394549136' }, + { file: 'packages/react/src/components/Sticky/Sticky.test.tsx', hash: '483009900348746854' }, + { file: 'packages/react/src/components/Sticky/Sticky.tsx', hash: '4820400588900345897' }, + { file: 'packages/react/src/components/Sticky/Sticky.types.ts', hash: '3615404119608318992' }, + { file: 'packages/react/src/components/Sticky/index.ts', hash: '2542216627679221864' }, + { file: 'packages/react/src/components/Sticky/util/comparison.test.ts', hash: '14096854823836155200' }, + { file: 'packages/react/src/components/Sticky/util/comparison.ts', hash: '4588257025943731766' }, + { file: 'packages/react/src/components/Sticky/util/scroll.test.ts', hash: '12778441671228486454' }, + { file: 'packages/react/src/components/Sticky/util/scroll.ts', hash: '7073818532586250683' }, + { + file: 'packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.base.tsx', + hash: '4877535088844461282', + }, + { + file: 'packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.styles.ts', + hash: '1746093924526525911', + }, + { file: 'packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.tsx', hash: '12490850924711508436' }, + { + file: 'packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.types.ts', + hash: '11755498344911849810', + }, + { + file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.base.tsx', + hash: '15148770286190928984', + }, + { + file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.styles.ts', + hash: '10927866444432786096', + }, + { + file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.test.tsx', + hash: '14920126625218364277', + }, + { file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.tsx', hash: '11572086435543663291' }, + { + file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.types.ts', + hash: '804021372959073378', + }, + { + file: 'packages/react/src/components/SwatchColorPicker/__snapshots__/SwatchColorPicker.test.tsx.snap', + hash: '9703469669882626284', + }, + { file: 'packages/react/src/components/SwatchColorPicker/index.ts', hash: '13458739188607801516' }, + { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.base.tsx', hash: '11960677283213387231' }, + { + file: 'packages/react/src/components/TeachingBubble/TeachingBubble.deprecated.test.tsx', + hash: '11992566066080602646', + }, + { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.styles.ts', hash: '15359886714365052297' }, + { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.test.tsx', hash: '13726719835642907185' }, + { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.ts', hash: '2444446477830155936' }, + { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.types.ts', hash: '16828074886234505184' }, + { + file: 'packages/react/src/components/TeachingBubble/TeachingBubbleContent.base.tsx', + hash: '16413351954180758506', + }, + { file: 'packages/react/src/components/TeachingBubble/TeachingBubbleContent.ts', hash: '14936507102622600629' }, + { + file: 'packages/react/src/components/TeachingBubble/__snapshots__/TeachingBubble.deprecated.test.tsx.snap', + hash: '13317529128477000448', + }, + { + file: 'packages/react/src/components/TeachingBubble/__snapshots__/TeachingBubble.test.tsx.snap', + hash: '11608354909874598053', + }, + { file: 'packages/react/src/components/TeachingBubble/index.ts', hash: '5537273073495594935' }, + { file: 'packages/react/src/components/Text/Text.styles.ts', hash: '16557720552861338265' }, + { file: 'packages/react/src/components/Text/Text.test.tsx', hash: '10229486515428514407' }, + { file: 'packages/react/src/components/Text/Text.ts', hash: '18117337464299047121' }, + { file: 'packages/react/src/components/Text/Text.types.tsx', hash: '17642157339175361608' }, + { file: 'packages/react/src/components/Text/Text.view.tsx', hash: '10365127091762030027' }, + { file: 'packages/react/src/components/Text/__snapshots__/Text.test.tsx.snap', hash: '9078894318583755413' }, + { file: 'packages/react/src/components/Text/index.ts', hash: '230878242475216758' }, + { + file: 'packages/react/src/components/TextField/MaskedTextField/MaskedTextField.test.tsx', + hash: '14177584564035837064', + }, + { + file: 'packages/react/src/components/TextField/MaskedTextField/MaskedTextField.tsx', + hash: '9197609096631929679', + }, + { + file: 'packages/react/src/components/TextField/MaskedTextField/__snapshots__/MaskedTextField.test.tsx.snap', + hash: '2368489911375711210', + }, + { + file: 'packages/react/src/components/TextField/MaskedTextField/inputMask.test.ts', + hash: '12837909525862283635', + }, + { file: 'packages/react/src/components/TextField/MaskedTextField/inputMask.ts', hash: '3204972971904546695' }, + { file: 'packages/react/src/components/TextField/TextField.base.tsx', hash: '3135520502977693022' }, + { file: 'packages/react/src/components/TextField/TextField.styles.tsx', hash: '16053279269199542379' }, + { file: 'packages/react/src/components/TextField/TextField.test.tsx', hash: '12025014664871757235' }, + { file: 'packages/react/src/components/TextField/TextField.ts', hash: '6203821991228467732' }, + { file: 'packages/react/src/components/TextField/TextField.types.ts', hash: '9000956738092230779' }, + { + file: 'packages/react/src/components/TextField/__snapshots__/TextField.test.tsx.snap', + hash: '16446484854028579884', + }, + { file: 'packages/react/src/components/TextField/index.ts', hash: '9634891770694366652' }, + { file: 'packages/react/src/components/ThemeGenerator/IThemeRules.ts', hash: '343349790449113474' }, + { file: 'packages/react/src/components/ThemeGenerator/IThemeSlotRule.ts', hash: '2798819573170736586' }, + { file: 'packages/react/src/components/ThemeGenerator/ThemeGenerator.ts', hash: '4318009942218972946' }, + { file: 'packages/react/src/components/ThemeGenerator/ThemeRulesStandard.ts', hash: '15460702558815436477' }, + { file: 'packages/react/src/components/ThemeGenerator/index.ts', hash: '2662606445442538581' }, + { file: 'packages/react/src/components/TimePicker/TimePicker.test.tsx', hash: '4430602795911846347' }, + { file: 'packages/react/src/components/TimePicker/TimePicker.tsx', hash: '14587751084581473926' }, + { file: 'packages/react/src/components/TimePicker/TimePicker.types.ts', hash: '4871830345667101562' }, + { + file: 'packages/react/src/components/TimePicker/__snapshots__/TimePicker.test.tsx.snap', + hash: '1192043543094055950', + }, + { file: 'packages/react/src/components/TimePicker/index.ts', hash: '4043660638174848621' }, + { file: 'packages/react/src/components/Toggle/Toggle.base.tsx', hash: '17041455243236331064' }, + { file: 'packages/react/src/components/Toggle/Toggle.deprecated.test.tsx', hash: '16420708565250016535' }, + { file: 'packages/react/src/components/Toggle/Toggle.styles.ts', hash: '10235414160628441935' }, + { file: 'packages/react/src/components/Toggle/Toggle.test.tsx', hash: '4749697846961425208' }, + { file: 'packages/react/src/components/Toggle/Toggle.tsx', hash: '13754746495419401585' }, + { file: 'packages/react/src/components/Toggle/Toggle.types.ts', hash: '10425114743254470105' }, + { file: 'packages/react/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap', hash: '14294764514930879696' }, + { file: 'packages/react/src/components/Toggle/index.ts', hash: '10198894087612340427' }, + { file: 'packages/react/src/components/Tooltip/Tooltip.base.tsx', hash: '14315739255581701896' }, + { file: 'packages/react/src/components/Tooltip/Tooltip.styles.ts', hash: '14364410225416825987' }, + { file: 'packages/react/src/components/Tooltip/Tooltip.test.tsx', hash: '6829170781879921284' }, + { file: 'packages/react/src/components/Tooltip/Tooltip.tsx', hash: '17811006348031671798' }, + { file: 'packages/react/src/components/Tooltip/Tooltip.types.ts', hash: '2660943847897709290' }, + { file: 'packages/react/src/components/Tooltip/TooltipHost.base.tsx', hash: '4222571360856747469' }, + { file: 'packages/react/src/components/Tooltip/TooltipHost.styles.ts', hash: '7084784521266667387' }, + { file: 'packages/react/src/components/Tooltip/TooltipHost.test.tsx', hash: '9044319496664347486' }, + { file: 'packages/react/src/components/Tooltip/TooltipHost.ts', hash: '15304936019843856429' }, + { file: 'packages/react/src/components/Tooltip/TooltipHost.types.ts', hash: '15670380784192667360' }, + { + file: 'packages/react/src/components/Tooltip/__snapshots__/Tooltip.test.tsx.snap', + hash: '2529886458703393903', + }, + { + file: 'packages/react/src/components/Tooltip/__snapshots__/TooltipHost.test.tsx.snap', + hash: '13426358771837104817', + }, + { file: 'packages/react/src/components/Tooltip/index.ts', hash: '13628541413104800808' }, + { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.base.tsx', hash: '10662405248411854209' }, + { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.styles.ts', hash: '17655471458969559384' }, + { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.test.tsx', hash: '1018673177354104156' }, + { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.tsx', hash: '14453694537649714043' }, + { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.types.ts', hash: '14595811500325100502' }, + { + file: 'packages/react/src/components/WeeklyDayPicker/__snapshots__/WeeklyDayPicker.test.tsx.snap', + hash: '2528983063086393230', + }, + { file: 'packages/react/src/components/WeeklyDayPicker/defaults.ts', hash: '11377986538922612005' }, + { file: 'packages/react/src/components/WeeklyDayPicker/index.ts', hash: '6171109175880934046' }, + { file: 'packages/react/src/components/pickers/AutoFill/BaseAutoFill.tsx', hash: '7343802070330089599' }, + { file: 'packages/react/src/components/pickers/AutoFill/BaseAutoFill.types.ts', hash: '6487201084997771499' }, + { file: 'packages/react/src/components/pickers/BasePicker.scss', hash: '2254284533524560358' }, + { file: 'packages/react/src/components/pickers/BasePicker.styles.ts', hash: '3491115508506418137' }, + { file: 'packages/react/src/components/pickers/BasePicker.test.tsx', hash: '15043266091913983080' }, + { file: 'packages/react/src/components/pickers/BasePicker.tsx', hash: '4054535122222800596' }, + { file: 'packages/react/src/components/pickers/BasePicker.types.ts', hash: '717340499218281756' }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePicker.test.tsx', + hash: '17876839589477737141', + }, + { file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePicker.tsx', hash: '16286230654566725538' }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.ts', + hash: '10855489273418432861', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.tsx', + hash: '9083961797742224049', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.types.ts', + hash: '16912167381812988428', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.ts', + hash: '4670107728068065016', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.tsx', + hash: '15063617562799640000', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PickerItemsDefault.scss', + hash: '6384005023815280495', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SelectedItemDefault.tsx', + hash: '15159392081114259751', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.scss', + hash: '5379873812562665385', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx', + hash: '9441381518993515989', + }, + { + file: 'packages/react/src/components/pickers/PeoplePicker/__snapshots__/PeoplePicker.test.tsx.snap', + hash: '1340262275578671623', + }, + { file: 'packages/react/src/components/pickers/PickerItem.types.ts', hash: '5019879866432474699' }, + { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.scss', hash: '7217102423921295318' }, + { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.styles.ts', hash: '13383952703102640475' }, + { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.test.tsx', hash: '15081865941454159082' }, + { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.tsx', hash: '14271707022680072031' }, + { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.types.ts', hash: '13968761647371279988' }, + { + file: 'packages/react/src/components/pickers/Suggestions/SuggestionsController.ts', + hash: '4740113206090778515', + }, + { + file: 'packages/react/src/components/pickers/Suggestions/SuggestionsItem.styles.ts', + hash: '9617715724013431436', + }, + { file: 'packages/react/src/components/pickers/Suggestions/SuggestionsItem.tsx', hash: '12808779264432058945' }, + { + file: 'packages/react/src/components/pickers/Suggestions/SuggestionsItem.types.ts', + hash: '3287646201182813027', + }, + { + file: 'packages/react/src/components/pickers/Suggestions/__snapshots__/Suggestions.test.tsx.snap', + hash: '13924503482300913537', + }, + { file: 'packages/react/src/components/pickers/TagPicker/TagItem.styles.ts', hash: '17090589944968694753' }, + { file: 'packages/react/src/components/pickers/TagPicker/TagItem.test.tsx', hash: '2142568253152648703' }, + { file: 'packages/react/src/components/pickers/TagPicker/TagItem.tsx', hash: '17339491415717015901' }, + { + file: 'packages/react/src/components/pickers/TagPicker/TagItemSuggestion.styles.ts', + hash: '12290923035788842340', + }, + { file: 'packages/react/src/components/pickers/TagPicker/TagItemSuggestion.tsx', hash: '3602386350156259409' }, + { file: 'packages/react/src/components/pickers/TagPicker/TagPicker.test.tsx', hash: '10483533162038956926' }, + { file: 'packages/react/src/components/pickers/TagPicker/TagPicker.tsx', hash: '13849646905761086680' }, + { file: 'packages/react/src/components/pickers/TagPicker/TagPicker.types.ts', hash: '2960981203569246534' }, + { + file: 'packages/react/src/components/pickers/TagPicker/__snapshots__/TagItem.test.tsx.snap', + hash: '7121888399084993878', + }, + { + file: 'packages/react/src/components/pickers/TagPicker/__snapshots__/TagPicker.test.tsx.snap', + hash: '10689900816861068695', + }, + { + file: 'packages/react/src/components/pickers/__snapshots__/BasePicker.test.tsx.snap', + hash: '6231335031253357456', + }, + { file: 'packages/react/src/components/pickers/index.ts', hash: '6869692424936090453' }, + { file: 'packages/react/src/index.bundle.ts', hash: '15702876611017698133' }, + { file: 'packages/react/src/index.ts', hash: '3984584751531391776' }, + { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.base.tsx', hash: '13048871594096070691' }, + { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.styles.ts', hash: '10672241857310378691' }, + { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.test.tsx', hash: '2437098213636126623' }, + { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.tsx', hash: '5275609746550163481' }, + { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.types.ts', hash: '7471614519619311838' }, + { file: 'packages/react/src/utilities/ButtonGrid/ButtonGridCell.tsx', hash: '8863275249735168504' }, + { file: 'packages/react/src/utilities/ButtonGrid/ButtonGridCell.types.ts', hash: '12269526535022680538' }, + { file: 'packages/react/src/utilities/ButtonGrid/index.ts', hash: '5606101914026628430' }, + { file: 'packages/react/src/utilities/DraggableZone/DraggableZone.styles.ts', hash: '7360859405718713398' }, + { file: 'packages/react/src/utilities/DraggableZone/DraggableZone.tsx', hash: '14662144876543203208' }, + { file: 'packages/react/src/utilities/DraggableZone/DraggableZone.types.ts', hash: '5286539702076790666' }, + { file: 'packages/react/src/utilities/DraggableZone/index.ts', hash: '991165440448171187' }, + { file: 'packages/react/src/utilities/MenuContext/MenuContext.ts', hash: '13949440192832242509' }, + { file: 'packages/react/src/utilities/MenuContext/index.ts', hash: '4195339341740520128' }, + { file: 'packages/react/src/utilities/MenuContext/types.ts', hash: '601766763771540766' }, + { file: 'packages/react/src/utilities/ThemeProvider/README.md', hash: '17637903867269031542' }, + { file: 'packages/react/src/utilities/ThemeProvider/ThemeContext.ts', hash: '13892208870743977838' }, + { file: 'packages/react/src/utilities/ThemeProvider/ThemeProvider.test.tsx', hash: '13679567931341185936' }, + { file: 'packages/react/src/utilities/ThemeProvider/ThemeProvider.tsx', hash: '6179047605470404754' }, + { file: 'packages/react/src/utilities/ThemeProvider/ThemeProvider.types.ts', hash: '17118972086321263161' }, + { + file: 'packages/react/src/utilities/ThemeProvider/__snapshots__/ThemeProvider.test.tsx.snap', + hash: '9894426767005176096', + }, + { file: 'packages/react/src/utilities/ThemeProvider/index.ts', hash: '15095908332300329015' }, + { file: 'packages/react/src/utilities/ThemeProvider/makeStyles.test.tsx', hash: '13703934544629777309' }, + { file: 'packages/react/src/utilities/ThemeProvider/makeStyles.ts', hash: '13518684396676587434' }, + { file: 'packages/react/src/utilities/ThemeProvider/renderThemeProvider.tsx', hash: '7031715562059584568' }, + { + file: 'packages/react/src/utilities/ThemeProvider/styleRenderers/mergeStylesRenderer.tsx', + hash: '3592602241860269066', + }, + { file: 'packages/react/src/utilities/ThemeProvider/styleRenderers/types.ts', hash: '10071936263955037148' }, + { file: 'packages/react/src/utilities/ThemeProvider/useTheme.ts', hash: '7002881355475012640' }, + { file: 'packages/react/src/utilities/ThemeProvider/useThemeProvider.tsx', hash: '16631113233994729461' }, + { file: 'packages/react/src/utilities/ThemeProvider/useThemeProviderClasses.tsx', hash: '5375575044419126164' }, + { file: 'packages/react/src/utilities/ThemeProvider/useThemeProviderState.tsx', hash: '17027141080033889589' }, + { file: 'packages/react/src/utilities/color/_rgbaOrHexString.ts', hash: '670629510036329557' }, + { file: 'packages/react/src/utilities/color/clamp.ts', hash: '8432403036522356124' }, + { file: 'packages/react/src/utilities/color/colors.test.ts', hash: '6514813408979578421' }, + { file: 'packages/react/src/utilities/color/colors.ts', hash: '14938309597260952164' }, + { file: 'packages/react/src/utilities/color/consts.ts', hash: '9659661416934864320' }, + { file: 'packages/react/src/utilities/color/correctHSV.ts', hash: '14305033368774440121' }, + { file: 'packages/react/src/utilities/color/correctHex.ts', hash: '14248417825592490956' }, + { file: 'packages/react/src/utilities/color/correctRGB.ts', hash: '15564249153975134575' }, + { file: 'packages/react/src/utilities/color/cssColor.ts', hash: '17411936481260342773' }, + { file: 'packages/react/src/utilities/color/getColorFromHSV.ts', hash: '5677659457274240736' }, + { file: 'packages/react/src/utilities/color/getColorFromRGBA.ts', hash: '1765799052939282201' }, + { file: 'packages/react/src/utilities/color/getColorFromString.ts', hash: '6313423634844260228' }, + { file: 'packages/react/src/utilities/color/getFullColorString.ts', hash: '3471378158992256582' }, + { file: 'packages/react/src/utilities/color/hsl2hsv.ts', hash: '6244023491766357157' }, + { file: 'packages/react/src/utilities/color/hsl2rgb.ts', hash: '15569236605928242144' }, + { file: 'packages/react/src/utilities/color/hsv2hex.ts', hash: '15287927800285061921' }, + { file: 'packages/react/src/utilities/color/hsv2hsl.ts', hash: '10595103910974750850' }, + { file: 'packages/react/src/utilities/color/hsv2rgb.ts', hash: '17472983733505672226' }, + { file: 'packages/react/src/utilities/color/index.ts', hash: '915658032881491641' }, + { file: 'packages/react/src/utilities/color/interfaces.ts', hash: '2432356879188360615' }, + { file: 'packages/react/src/utilities/color/rgb2hex.ts', hash: '12975140826208974199' }, + { file: 'packages/react/src/utilities/color/rgb2hsv.ts', hash: '5684905026209857335' }, + { file: 'packages/react/src/utilities/color/shades.ts', hash: '6374966934341090657' }, + { file: 'packages/react/src/utilities/color/updateA.ts', hash: '14416377082519676806' }, + { file: 'packages/react/src/utilities/color/updateH.ts', hash: '10044554694569887243' }, + { file: 'packages/react/src/utilities/color/updateRGB.ts', hash: '11322026034603094475' }, + { file: 'packages/react/src/utilities/color/updateSV.ts', hash: '15989758908719986538' }, + { file: 'packages/react/src/utilities/color/updateT.ts', hash: '11425172802903888793' }, + { + file: 'packages/react/src/utilities/contextualMenu/contextualMenuUtility.test.ts', + hash: '11775032268395869200', + }, + { file: 'packages/react/src/utilities/contextualMenu/contextualMenuUtility.ts', hash: '6439318017315226732' }, + { file: 'packages/react/src/utilities/contextualMenu/index.ts', hash: '14561010750715978131' }, + { file: 'packages/react/src/utilities/decorators/BaseDecorator.ts', hash: '12680571413768582546' }, + { file: 'packages/react/src/utilities/decorators/withContainsFocus.tsx', hash: '4199916114998813247' }, + { file: 'packages/react/src/utilities/decorators/withResponsiveMode.test.tsx', hash: '15396955314160038481' }, + { file: 'packages/react/src/utilities/decorators/withResponsiveMode.tsx', hash: '17698455087137585448' }, + { file: 'packages/react/src/utilities/decorators/withViewport.tsx', hash: '17941994249211471417' }, + { file: 'packages/react/src/utilities/dragdrop/DragDropHelper.tsx', hash: '2030077348553558869' }, + { file: 'packages/react/src/utilities/dragdrop/index.ts', hash: '3437101347851446346' }, + { file: 'packages/react/src/utilities/dragdrop/interfaces.ts', hash: '7577495661441722234' }, + { file: 'packages/react/src/utilities/groupedList/GroupedListUtility.test.tsx', hash: '16326497141718659536' }, + { file: 'packages/react/src/utilities/groupedList/GroupedListUtility.tsx', hash: '9856016773806578336' }, + { file: 'packages/react/src/utilities/hooks/useResponsiveMode.test.tsx', hash: '5869527387854552719' }, + { file: 'packages/react/src/utilities/hooks/useResponsiveMode.tsx', hash: '8652722068210931815' }, + { file: 'packages/react/src/utilities/keytips/IKeytipTransitionKey.test.ts', hash: '4487932675350890302' }, + { file: 'packages/react/src/utilities/keytips/IKeytipTransitionKey.ts', hash: '3993741686850747808' }, + { file: 'packages/react/src/utilities/keytips/KeytipConfig.test.ts', hash: '16228241456219329106' }, + { file: 'packages/react/src/utilities/keytips/KeytipConfig.ts', hash: '7633671420559248320' }, + { file: 'packages/react/src/utilities/keytips/KeytipConstants.ts', hash: '11846497808787026280' }, + { file: 'packages/react/src/utilities/keytips/KeytipManager.test.tsx', hash: '17114794707717858153' }, + { file: 'packages/react/src/utilities/keytips/KeytipManager.ts', hash: '4203378422840049741' }, + { file: 'packages/react/src/utilities/keytips/KeytipUtils.test.ts', hash: '7804697362348876619' }, + { file: 'packages/react/src/utilities/keytips/KeytipUtils.ts', hash: '3236660558323138655' }, + { file: 'packages/react/src/utilities/keytips/index.ts', hash: '6578652756422328106' }, + { file: 'packages/react/src/utilities/observeResize.ts', hash: '2332028751791908020' }, + { file: 'packages/react/src/utilities/positioning/index.ts', hash: '13313221551798480810' }, + { file: 'packages/react/src/utilities/positioning/positioning.test.ts', hash: '12108737569186708694' }, + { file: 'packages/react/src/utilities/positioning/positioning.ts', hash: '2267803550900081928' }, + { file: 'packages/react/src/utilities/positioning/positioning.types.ts', hash: '1308506524023896539' }, + { file: 'packages/react/src/utilities/positioning.ts', hash: '7688065479262789318' }, + { + file: 'packages/react/src/utilities/selectableOption/SelectableDroppableText.types.ts', + hash: '9756133308604085986', + }, + { file: 'packages/react/src/utilities/selectableOption/SelectableOption.ts', hash: '10362914716162970193' }, + { file: 'packages/react/src/utilities/selectableOption/SelectableOption.types.ts', hash: '539190171132149946' }, + { file: 'packages/react/src/utilities/selectableOption/index.ts', hash: '14391316765249285599' }, + { file: 'packages/react/src/utilities/selection/Selection.ts', hash: '15273105317210853787' }, + { file: 'packages/react/src/utilities/selection/SelectionZone.test.tsx', hash: '9021204914729111832' }, + { file: 'packages/react/src/utilities/selection/SelectionZone.tsx', hash: '8379252325004428129' }, + { file: 'packages/react/src/utilities/selection/index.ts', hash: '4368398702750911810' }, + { file: 'packages/react/src/utilities/selection/interfaces.ts', hash: '4575419091812881390' }, + { file: 'packages/react/src/utilities/useOverflow.ts', hash: '17763233002228636342' }, + { file: 'packages/react/src/version.ts', hash: '3619079259107913232' }, + { file: 'packages/react/tsconfig.json', hash: '5170099299450870280' }, + { file: 'packages/react/webpack.codepen.config.js', hash: '7053689822501882700' }, + { file: 'packages/react/webpack.config.js', hash: '7917211140041849215' }, + { file: 'packages/react/webpack.mf.config.js', hash: '14493054853418434433' }, + ], + '@fluentui/digest': [ + { file: 'packages/fluentui/digest/README.md', hash: '4858304439522311096' }, + { file: 'packages/fluentui/digest/assets/index.html', hash: '3216416950227096753' }, + { file: 'packages/fluentui/digest/just.config.ts', hash: '8979360801753407872' }, + { file: 'packages/fluentui/digest/package.json', hash: '8214724770717997582', deps: ['npm:querystring'] }, + { file: 'packages/fluentui/digest/project.json', hash: '3735961437424315139' }, + { file: 'packages/fluentui/digest/src/bundle/index.digest.tsx', hash: '6951110182645338430' }, + { file: 'packages/fluentui/digest/src/bundle/stories.tsx', hash: '2490260158626841599' }, + { file: 'packages/fluentui/digest/src/config.tsx', hash: '6214931607336280193' }, + { file: 'packages/fluentui/digest/src/digest.tsx', hash: '2244345445035896456' }, + { file: 'packages/fluentui/digest/src/webpack.config.ts', hash: '15142160838349309385' }, + { file: 'packages/fluentui/digest/tsconfig.json', hash: '16047973009729968895' }, + ], + '@fluentui/eslint-plugin': [ + { file: 'packages/eslint-plugin/.eslintrc.json', hash: '6702248602835585560' }, + { file: 'packages/eslint-plugin/CHANGELOG.json', hash: '13566414994364152721' }, + { file: 'packages/eslint-plugin/CHANGELOG.md', hash: '2382653209781718305' }, + { file: 'packages/eslint-plugin/README.md', hash: '6515429868455497447' }, + { + file: 'packages/eslint-plugin/package.json', + hash: '2069193219073938718', + deps: [ + 'npm:@griffel/eslint-plugin', + 'npm:@rnx-kit/eslint-plugin', + 'npm:@typescript-eslint/eslint-plugin', + 'npm:@typescript-eslint/experimental-utils', + 'npm:@typescript-eslint/parser', + 'npm:eslint-config-airbnb', + 'npm:eslint-config-prettier', + 'npm:eslint-import-resolver-typescript', + 'npm:eslint-plugin-deprecation', + 'npm:eslint-plugin-import', + 'npm:eslint-plugin-jest', + 'npm:eslint-plugin-jsdoc', + 'npm:eslint-plugin-jsx-a11y', + 'npm:eslint-plugin-react', + 'npm:eslint-plugin-react-hooks', + 'npm:fs-extra', + 'npm:minimatch', + 'npm:jju', + 'npm:eslint', + 'npm:typescript', + ], + }, + { file: 'packages/eslint-plugin/project.json', hash: '1301597791484806568' }, + { file: 'packages/eslint-plugin/src/configs/base-legacy.js', hash: '14665444077677365009' }, + { file: 'packages/eslint-plugin/src/configs/base.js', hash: '13118811890005841714' }, + { file: 'packages/eslint-plugin/src/configs/core.js', hash: '7987804994885855829' }, + { file: 'packages/eslint-plugin/src/configs/imports.js', hash: '11327634237007787886' }, + { file: 'packages/eslint-plugin/src/configs/node-legacy.js', hash: '10767308883214650760' }, + { file: 'packages/eslint-plugin/src/configs/node.js', hash: '1222248047971981401' }, + { file: 'packages/eslint-plugin/src/configs/react-config.js', hash: '9068321685220036799' }, + { file: 'packages/eslint-plugin/src/configs/react-legacy.js', hash: '9470003892035401491' }, + { file: 'packages/eslint-plugin/src/configs/react-northstar.js', hash: '9533814243477463140' }, + { file: 'packages/eslint-plugin/src/configs/react.js', hash: '8307907617103516118' }, + { file: 'packages/eslint-plugin/src/configs/restricted-globals.js', hash: '18376104961223750479' }, + { file: 'packages/eslint-plugin/src/index.js', hash: '17643391091811701371' }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/src/context.ts', + hash: '921614066716619819', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/src/index.ts', + hash: '12767886012319403268', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/tsconfig.json', + hash: '8939312372276470872', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/exclude/special-path/src/index.ts', + hash: '12767886012319403268', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/exclude/tsconfig.json', + hash: '8939312372276470872', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/src/context.ts', + hash: '6433024526995447386', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/src/index.ts', + hash: '12767886012319403268', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/tsconfig.json', + hash: '8939312372276470872', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/src/internal/context.ts', + hash: '6433024526995447386', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/src/internal/index.ts', + hash: '12767886012319403268', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/tsconfig.json', + hash: '8939312372276470872', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/named-export/src/index.ts', + hash: '12767886012319403268', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/named-export/tsconfig.json', + hash: '8939312372276470872', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/src/context.ts', + hash: '17105299796982801295', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/src/index.ts', + hash: '12767886012319403268', + }, + { + file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/tsconfig.json', + hash: '8939312372276470872', + }, + { file: 'packages/eslint-plugin/src/rules/ban-context-export/index.js', hash: '12847161635521615310' }, + { file: 'packages/eslint-plugin/src/rules/ban-context-export/index.test.js', hash: '464311512855807170' }, + { file: 'packages/eslint-plugin/src/rules/ban-imports.js', hash: '14494031545397940759' }, + { file: 'packages/eslint-plugin/src/rules/ban-instanceof-html-element/index.js', hash: '17266374067885429294' }, + { + file: 'packages/eslint-plugin/src/rules/ban-instanceof-html-element/index.test.js', + hash: '6679306743942455995', + }, + { file: 'packages/eslint-plugin/src/rules/deprecated-keyboard-event-props.js', hash: '14382391648336116412' }, + { file: 'packages/eslint-plugin/src/rules/max-len.js', hash: '6542972604164962236' }, + { file: 'packages/eslint-plugin/src/rules/no-context-default-value/index.js', hash: '12837708352970806418' }, + { file: 'packages/eslint-plugin/src/rules/no-context-default-value/index.test.js', hash: '11131012401618805739' }, + { file: 'packages/eslint-plugin/src/rules/no-global-react.js', hash: '2921266244182474215' }, + { file: 'packages/eslint-plugin/src/rules/no-restricted-imports/index.js', hash: '13917956998549149408' }, + { file: 'packages/eslint-plugin/src/rules/no-restricted-imports/index.test.js', hash: '9202308256820145329' }, + { file: 'packages/eslint-plugin/src/rules/no-tslint-comments.js', hash: '12222375696974991780' }, + { file: 'packages/eslint-plugin/src/rules/no-visibility-modifiers.js', hash: '9342359926437404469' }, + { file: 'packages/eslint-plugin/src/utils/configHelpers.js', hash: '2104693757629241199' }, + { file: 'packages/eslint-plugin/src/utils/createRule.js', hash: '9300592942279712397' }, + { file: 'packages/eslint-plugin/src/utils/type-services.js', hash: '12027578898158183503' }, + { file: 'packages/eslint-plugin/tsconfig.json', hash: '17734194482250290088' }, + ], + '@fluentui/scripts-executors': [ + { file: 'scripts/executors/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/executors/README.md', hash: '3244421341483603138' }, + { file: 'scripts/executors/buildTo.js', hash: '3177712464592732161' }, + { file: 'scripts/executors/check-for-modified-files.ts', hash: '10763607801252226068' }, + { file: 'scripts/executors/checkIfPackagesAffected.js', hash: '9043336426953832291' }, + { file: 'scripts/executors/debug-test.js', hash: '8593654279449055223' }, + { file: 'scripts/executors/format.js', hash: '10819326993618316495' }, + { file: 'scripts/executors/invalidate-just-cache.js', hash: '7264489028234806785' }, + { file: 'scripts/executors/jest.config.js', hash: '13109292494898296739' }, + { file: 'scripts/executors/local-codepen.js', hash: '10392194689106589533' }, + { + file: 'scripts/executors/package.json', + hash: '2367017281587144268', + deps: ['@fluentui/scripts-utils', '@fluentui/scripts-monorepo', '@fluentui/scripts-prettier'], + }, + { file: 'scripts/executors/project.json', hash: '4424758346050050205' }, + { file: 'scripts/executors/runPublished.js', hash: '10512724592827008811' }, + { file: 'scripts/executors/runPublished.spec.ts', hash: '13578313146003609025' }, + { file: 'scripts/executors/runTo.js', hash: '16974010502221615189' }, + { file: 'scripts/executors/scrub.js', hash: '13651139657942254610' }, + { file: 'scripts/executors/start.js', hash: '4541487088238761962' }, + { file: 'scripts/executors/tag-react-components.ts', hash: '6138569374629742911' }, + { file: 'scripts/executors/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/executors/tsconfig.lib.json', hash: '3753806828268919288' }, + { file: 'scripts/executors/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/accessibility': [ + { file: 'packages/fluentui/accessibility/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/accessibility/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/accessibility/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/accessibility/gulpfile.ts', hash: '176942506073220361' }, + { file: 'packages/fluentui/accessibility/jest.config.js', hash: '17874205282351665656' }, + { + file: 'packages/fluentui/accessibility/package.json', + hash: '1428119293457422413', + deps: [ + 'npm:@babel/runtime', + 'npm:lodash', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:lerna-alias', + ], + }, + { file: 'packages/fluentui/accessibility/project.json', hash: '2397489462938001575' }, + { file: 'packages/fluentui/accessibility/src/attributes.ts', hash: '6126580553423144593' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Accordion/accordionBehavior.ts', + hash: '17324611406861834071', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Accordion/accordionContentBehavior.ts', + hash: '12181381870618121400', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Accordion/accordionTitleBehavior.ts', + hash: '17796073271152580', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Alert/alertBaseBehavior.ts', + hash: '15503638703161663370', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Alert/alertBehavior.ts', hash: '14876942720104755676' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Alert/alertWarningBehavior.ts', + hash: '16670372342351572102', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Attachment/attachmentBehavior.ts', + hash: '14711350566311191339', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Box/indicatorBehavior.ts', hash: '4710211886869035027' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbBehavior.ts', + hash: '6624882585753288771', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbDividerBehavior.ts', + hash: '15345187736983796585', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbItemBehavior.ts', + hash: '2474998566450288440', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Button/buttonBehavior.ts', hash: '4436560634489457374' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Button/buttonGroupBehavior.ts', + hash: '15604332073167090358', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Button/toggleButtonBehavior.ts', + hash: '6341598390491948665', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Card/cardBehavior.ts', hash: '7147184136409471442' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Card/cardChildrenFocusableBehavior.ts', + hash: '1480635677105411390', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Card/cardFocusableBehavior.ts', + hash: '8581885383405449382', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Card/cardSelectableBehavior.ts', + hash: '9823225621542171085', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Card/cardsContainerBehavior.ts', + hash: '8399647585268892796', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Carousel/carouselBehavior.ts', + hash: '16735531794753117694', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Carousel/carouselItemBehavior.ts', + hash: '666533224599054599', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Chat/chatBehavior.ts', hash: '10307880287350282214' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Chat/chatMessageBehavior.ts', + hash: '14062608507289014893', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Checkbox/checkboxBehavior.ts', hash: '5573660540498990' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Common/hiddenComponentBehavior.ts', + hash: '8752565833665693320', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerBehavior.ts', + hash: '16681584818965517163', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarBehavior.ts', + hash: '6694622893463831583', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarCellBehavior.ts', + hash: '15743873885274486004', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarCellButtonBehavior.ts', + hash: '14811251142968646419', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarGridBehavior.ts', + hash: '436589778918574077', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarGridRowBehavior.ts', + hash: '11408415070483512748', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarHeaderBehavior.ts', + hash: '11583385781059816627', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Dialog/dialogBehavior.ts', hash: '3238470165136100361' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Dropdown/dropdownSelectedItemBehavior.ts', + hash: '110616840354724677', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Embed/embedBehavior.ts', hash: '6943112027252523091' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Form/formFieldBehavior.tsx', hash: '8410832565631631431' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Grid/gridBehavior.ts', hash: '4359446512837990017' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Grid/gridHorizontalBehavior.ts', + hash: '15843361779325307873', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Icon/iconBehavior.ts', hash: '2207992782795803718' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Image/imageBehavior.ts', hash: '13577625865581953782' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Input/inputBehavior.ts', hash: '1320238384030157432' }, + { file: 'packages/fluentui/accessibility/src/behaviors/List/basicListBehavior.ts', hash: '12896324333351505002' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/List/basicListItemBehavior.ts', + hash: '5678163359671203676', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/List/listBehavior.ts', hash: '15868999383422317488' }, + { file: 'packages/fluentui/accessibility/src/behaviors/List/listItemBehavior.ts', hash: '17611607068265691873' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/List/navigableListBehavior.ts', + hash: '1138383627412710723', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/List/navigableListItemBehavior.ts', + hash: '8352293840311308214', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/List/selectableListBehavior.ts', + hash: '4590781714857354592', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/List/selectableListItemBehavior.ts', + hash: '3143195808065744213', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Loader/loaderBehavior.ts', hash: '13855327585064394709' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Menu/menuBehavior.ts', hash: '14678079248792887047' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Menu/menuDividerBehavior.ts', + hash: '16474793021650517124', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Menu/menuItemBehavior.ts', hash: '7179572448282857084' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Menu/submenuBehavior.ts', hash: '13096512577056529572' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/MenuButton/menuButtonBehavior.ts', + hash: '5038428572466939489', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillActionBehavior.ts', hash: '7155328372028007540' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillBehavior.ts', hash: '11077768158910457625' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillGroupBehavior.ts', hash: '15643334338602012397' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillIconBehavior.ts', hash: '1320149294645573451' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillImageBehavior.ts', hash: '17028543991514093621' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillOptionBehavior.ts', hash: '9922794901762647086' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Popup/popupBehavior.ts', hash: '14955898547553867919' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Radio/radioGroupBehavior.ts', + hash: '13697404999060333401', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Radio/radioGroupItemBehavior.ts', + hash: '10842489646198712586', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Slider/sliderBehavior.ts', hash: '16619822794642755440' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/SplitButton/splitButtonBehavior.ts', + hash: '10498336736474909429', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Status/statusBehavior.ts', hash: '15095623654951310160' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Tab/tabBehavior.ts', hash: '13343668174251408028' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Tab/tabListBehavior.ts', hash: '3649750043955821807' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Table/gridCellBehavior.ts', hash: '16115154876003545072' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Table/gridCellMultipleFocusableBehavior.ts', + hash: '8205386212064830567', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Table/gridCellWithFocusableElementBehavior.ts', + hash: '11169401865825718455', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Table/gridHeaderCellBehavior.ts', + hash: '10316613685585593548', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Table/gridHeaderRowBehavior.ts', + hash: '14353233905207834678', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Table/gridNestedBehavior.ts', + hash: '5223927548405850610', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Table/gridRowBehavior.ts', hash: '11534643350766657695' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Table/gridRowNestedBehavior.ts', + hash: '6036028543837403233', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Table/tableBehavior.ts', hash: '15734694712075449666' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Table/tableCellBehavior.ts', hash: '247888810071717795' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Table/tableHeaderCellBehavior.ts', + hash: '8543257944544197065', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Table/tableRowBehavior.ts', hash: '13529178146159239947' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/TextArea/textAreaBehavior.ts', + hash: '6844501444659162474', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/menuAsToolbarBehavior.ts', + hash: '1168779870270907687', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/menuItemAsToolbarButtonBehavior.ts', + hash: '13604841550587544122', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarBehavior.ts', + hash: '10375286365453415016', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarItemBehavior.ts', + hash: '3223369498067500941', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuBehavior.ts', + hash: '14285729647871437262', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuDividerBehavior.ts', + hash: '15861708930917223847', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemBehavior.ts', + hash: '10779092372332843312', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemCheckboxBehavior.ts', + hash: '12585360257044015499', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemRadioBehavior.ts', + hash: '14398017813178023378', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuRadioGroupBehavior.ts', + hash: '13209139658156443905', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuRadioGroupWrapperBehavior.ts', + hash: '10315186287981664781', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarRadioGroupBehavior.ts', + hash: '14423838109163982625', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarRadioGroupItemBehavior.ts', + hash: '4945835072624273403', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Tooltip/tooltipAsDescriptionBehavior.ts', + hash: '6750563588637322290', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Tooltip/tooltipAsLabelBehavior.ts', + hash: '1463731405657391158', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeAsListBehavior.ts', hash: '6548396450394702602' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeAsListboxBehavior.ts', + hash: '15994951088316249662', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeBehavior.ts', hash: '16075950710176999397' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeItemAsListItemBehavior.ts', + hash: '2754809114498177875', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeItemAsOptionBehavior.ts', + hash: '2738733369485414781', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeItemBehavior.ts', hash: '853033884357985145' }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeTitleAsListItemTitleBehavior.ts', + hash: '8550309938789182057', + }, + { + file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeTitleAsOptionBehavior.ts', + hash: '4750004437661185204', + }, + { file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeTitleBehavior.ts', hash: '1279045353923030959' }, + { file: 'packages/fluentui/accessibility/src/behaviors/Video/videoBehavior.ts', hash: '17435873847915410399' }, + { file: 'packages/fluentui/accessibility/src/behaviors/index.ts', hash: '10592048789013221274' }, + { file: 'packages/fluentui/accessibility/src/focusZone/types.ts', hash: '8290525201717420413' }, + { file: 'packages/fluentui/accessibility/src/index.ts', hash: '17846023419384888294' }, + { file: 'packages/fluentui/accessibility/src/keyboard-key/codes.ts', hash: '8066867947356659420' }, + { file: 'packages/fluentui/accessibility/src/keyboard-key/index.test.ts', hash: '11586213541177350052' }, + { file: 'packages/fluentui/accessibility/src/keyboard-key/index.ts', hash: '15545154138089162926' }, + { file: 'packages/fluentui/accessibility/src/types.ts', hash: '943053640310977860' }, + { + file: 'packages/fluentui/accessibility/test/behaviors/accordionTitleBehavior-test.tsx', + hash: '8591737914797308393', + }, + { file: 'packages/fluentui/accessibility/test/behaviors/alertBehavior-test.tsx', hash: '3800300251770286795' }, + { file: 'packages/fluentui/accessibility/test/behaviors/behavior-test.tsx', hash: '16838078441122709130' }, + { file: 'packages/fluentui/accessibility/test/behaviors/caroselBehavior-test.tsx', hash: '2681040911353087361' }, + { + file: 'packages/fluentui/accessibility/test/behaviors/caroseltemBehavior-test.tsx', + hash: '12757169696399672513', + }, + { file: 'packages/fluentui/accessibility/test/behaviors/dialogBehavior-test.tsx', hash: '7702041866389015810' }, + { file: 'packages/fluentui/accessibility/test/behaviors/gridRowBehavior-test.tsx', hash: '12429407748112289925' }, + { file: 'packages/fluentui/accessibility/test/behaviors/listBehavior-test.tsx', hash: '15933862797684258290' }, + { file: 'packages/fluentui/accessibility/test/behaviors/listItemBehavior-test.tsx', hash: '6331805374367020114' }, + { file: 'packages/fluentui/accessibility/test/behaviors/loaderBehavior-test.tsx', hash: '9965769228119512081' }, + { + file: 'packages/fluentui/accessibility/test/behaviors/menuButtonBehavior-test.tsx', + hash: '3474631202858190529', + }, + { file: 'packages/fluentui/accessibility/test/behaviors/popupBehavior-test.tsx', hash: '4455620227373588680' }, + { file: 'packages/fluentui/accessibility/test/behaviors/sliderBehavior-test.ts', hash: '1496488828314145704' }, + { + file: 'packages/fluentui/accessibility/test/behaviors/splitButtonBehavior-test.tsx', + hash: '5237191764740671671', + }, + { + file: 'packages/fluentui/accessibility/test/behaviors/tableRowBehavior-test.tsx', + hash: '13911979183562314470', + }, + { file: 'packages/fluentui/accessibility/test/behaviors/testDefinitions.ts', hash: '18350988259364493242' }, + { file: 'packages/fluentui/accessibility/test/behaviors/testHelper.tsx', hash: '13187273701176546577' }, + { + file: 'packages/fluentui/accessibility/test/behaviors/treeItemAsListItemBehavior-test.tsx', + hash: '3914609384428714413', + }, + { + file: 'packages/fluentui/accessibility/test/behaviors/treeItemAsOptionBehavior-test.tsx', + hash: '9405458900547864979', + }, + { + file: 'packages/fluentui/accessibility/test/behaviors/treeItemBehavior-test.tsx', + hash: '16616006821624562727', + }, + { + file: 'packages/fluentui/accessibility/test/behaviors/treeTitleAsListItemTitleBehavior-test.tsx', + hash: '10422237936892479508', + }, + { + file: 'packages/fluentui/accessibility/test/behaviors/treeTitleAsOptionBehavior-test.tsx', + hash: '14002345569026863398', + }, + { + file: 'packages/fluentui/accessibility/test/behaviors/treeTitleBehavior-test.tsx', + hash: '17773411748774405789', + }, + { file: 'packages/fluentui/accessibility/tsconfig.json', hash: '5873357200515143860' }, + ], + '@fluentui/react-component-event-listener': [ + { file: 'packages/fluentui/react-component-event-listener/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-component-event-listener/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-component-event-listener/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-component-event-listener/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-component-event-listener/jest.config.js', hash: '17864063104223117741' }, + { + file: 'packages/fluentui/react-component-event-listener/package.json', + hash: '982990065091895253', + deps: [ + 'npm:@babel/runtime', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:@types/simulant', + 'npm:lerna-alias', + 'npm:simulant', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-component-event-listener/project.json', hash: '7603987250497277862' }, + { file: 'packages/fluentui/react-component-event-listener/src/EventListener.ts', hash: '6339105570437663348' }, + { file: 'packages/fluentui/react-component-event-listener/src/index.ts', hash: '16230065282180187300' }, + { file: 'packages/fluentui/react-component-event-listener/src/types.ts', hash: '2021465131345141924' }, + { file: 'packages/fluentui/react-component-event-listener/src/useEventListener.ts', hash: '2879126978776296235' }, + { + file: 'packages/fluentui/react-component-event-listener/test/EventListener-test.tsx', + hash: '14784711746104707618', + }, + { file: 'packages/fluentui/react-component-event-listener/tsconfig.json', hash: '12214264623402812273' }, + ], + '@fluentui/scripts-dangerjs': [ + { file: 'scripts/dangerjs/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/dangerjs/jest.config.js', hash: '15039385487328949367' }, + { + file: 'scripts/dangerjs/package.json', + hash: '14603021980298066337', + deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-utils'], + }, + { file: 'scripts/dangerjs/project.json', hash: '13321965326957637416' }, + { file: 'scripts/dangerjs/src/api.ts', hash: '12918818137725486638' }, + { file: 'scripts/dangerjs/src/checkChangelog.ts', hash: '15268879974615931016' }, + { file: 'scripts/dangerjs/src/checkStorybookVersions.ts', hash: '3640144866496664527' }, + { file: 'scripts/dangerjs/src/detectNonApprovedDependencies/approvedPackages.ts', hash: '2479532893562050074' }, + { file: 'scripts/dangerjs/src/detectNonApprovedDependencies/index.ts', hash: '1357749020419503428' }, + { + file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/getFailedPackageVersionConstraints.ts', + hash: '1282063424853297229', + }, + { + file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/getRuntimeDependencies.ts', + hash: '14851787653196049793', + }, + { + file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/getVersionConstraints.ts', + hash: '11852620236094004296', + }, + { file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/index.ts', hash: '2091566142952858380' }, + { + file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/packageNameUtils.ts', + hash: '17117849726828671038', + }, + { file: 'scripts/dangerjs/src/index.js', hash: '8330967872875689137' }, + { file: 'scripts/dangerjs/src/types.ts', hash: '7630856845524243144' }, + { file: 'scripts/dangerjs/src/utils.ts', hash: '17556742610557548328' }, + { file: 'scripts/dangerjs/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/dangerjs/tsconfig.lib.json', hash: '15222053984038389170' }, + { file: 'scripts/dangerjs/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/priority-overflow': [ + { file: 'packages/react-components/priority-overflow/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/priority-overflow/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/priority-overflow/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/priority-overflow/CHANGELOG.json', hash: '4333659162810779590' }, + { file: 'packages/react-components/priority-overflow/CHANGELOG.md', hash: '4398841463571116898' }, + { file: 'packages/react-components/priority-overflow/LICENSE', hash: '11030407222875521344' }, + { file: 'packages/react-components/priority-overflow/README.md', hash: '10857736672267528914' }, + { + file: 'packages/react-components/priority-overflow/bundle-size/overflow-manager.fixture.js', + hash: '8551267840124202928', + }, + { file: 'packages/react-components/priority-overflow/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/priority-overflow/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/priority-overflow/etc/priority-overflow.api.md', hash: '7306121779845882287' }, + { file: 'packages/react-components/priority-overflow/jest.config.js', hash: '2868823370633145472' }, + { file: 'packages/react-components/priority-overflow/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/priority-overflow/package.json', + hash: '15007389892501600147', + deps: [ + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/react-components/priority-overflow/project.json', hash: '14779383503117085597' }, + { file: 'packages/react-components/priority-overflow/src/consts.ts', hash: '6620526346221759496' }, + { file: 'packages/react-components/priority-overflow/src/createResizeObserver.ts', hash: '4909053736922267358' }, + { file: 'packages/react-components/priority-overflow/src/debounce.test.ts', hash: '5063760544945907806' }, + { file: 'packages/react-components/priority-overflow/src/debounce.ts', hash: '17670239388147233622' }, + { file: 'packages/react-components/priority-overflow/src/index.ts', hash: '3206036393944881754' }, + { file: 'packages/react-components/priority-overflow/src/overflowManager.ts', hash: '9555740708619762309' }, + { file: 'packages/react-components/priority-overflow/src/priorityQueue.test.ts', hash: '16760683918500211316' }, + { file: 'packages/react-components/priority-overflow/src/priorityQueue.ts', hash: '12058761107106633401' }, + { file: 'packages/react-components/priority-overflow/src/types.ts', hash: '3269039576612425811' }, + { file: 'packages/react-components/priority-overflow/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/priority-overflow/tsconfig.lib.json', hash: '14975475306433073951' }, + { file: 'packages/react-components/priority-overflow/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-migration-v0-v9': [ + { file: 'packages/react-components/react-migration-v0-v9/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-migration-v0-v9/.eslintrc.json', hash: '12940771472901318782' }, + { file: 'packages/react-components/react-migration-v0-v9/.storybook/main.js', hash: '4776051661051838074' }, + { file: 'packages/react-components/react-migration-v0-v9/.storybook/preview.js', hash: '1791378012295456991' }, + { + file: 'packages/react-components/react-migration-v0-v9/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-migration-v0-v9/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-migration-v0-v9/CHANGELOG.json', hash: '10897993854186447786' }, + { file: 'packages/react-components/react-migration-v0-v9/CHANGELOG.md', hash: '13587647231916958745' }, + { file: 'packages/react-components/react-migration-v0-v9/LICENSE', hash: '11594246018623427034' }, + { file: 'packages/react-components/react-migration-v0-v9/README.md', hash: '9978296153426966189' }, + { file: 'packages/react-components/react-migration-v0-v9/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-migration-v0-v9/config/tests.js', hash: '16913843724990866890' }, + { + file: 'packages/react-components/react-migration-v0-v9/etc/react-migration-v0-v9.api.md', + hash: '7256229108422340938', + }, + { file: 'packages/react-components/react-migration-v0-v9/jest.config.js', hash: '12315810592738285777' }, + { file: 'packages/react-components/react-migration-v0-v9/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-migration-v0-v9/package.json', + hash: '4946657624895448195', + deps: [ + '@fluentui/react-aria', + '@fluentui/react-components', + '@fluentui/react-context-selector', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-northstar', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + '@fluentui/scripts-storybook', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-migration-v0-v9/project.json', hash: '8381556923960860136' }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Button/ButtonMigration.mixins.test.ts', + hash: '13688439579328644579', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Button/ButtonMigration.mixins.ts', + hash: '1521380022745067625', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Button/__snapshots__/ButtonMigration.mixins.test.ts.snap', + hash: '15238523249422194295', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Button/index.tsx', + hash: '15015419502366000969', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.styles.ts', + hash: '9815013043102458902', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.test.tsx', + hash: '10901172007854977441', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.tsx', + hash: '17887385485034197387', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/FlexItem.mixins.test.ts', + hash: '11976568329525176935', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/FlexItem.mixins.ts', + hash: '387312665307964792', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/index.ts', + hash: '3930111333542680336', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/FormField/FormFieldShim.tsx', + hash: '8378950965437301147', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/FormField/index.ts', + hash: '14212427842038029290', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.mixins.test.ts', + hash: '5330293473945457870', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.mixins.ts', + hash: '9668215664283966023', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.styles.ts', + hash: '10034584101967878894', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/GridShim.test.tsx', + hash: '755034056319894577', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/GridShim.tsx', + hash: '626707608599544926', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/index.ts', + hash: '15523671876724164145', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Input/Input.mixins.test.ts', + hash: '15443926802107261170', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Input/Input.mixins.ts', + hash: '1228629484584016948', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Input/index.ts', + hash: '406734113437868625', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.styles.ts', + hash: '9958570926942258881', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.test.tsx', + hash: '16916108475755138538', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.tsx', + hash: '475159289973551721', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/ItemLayout/index.tsx', + hash: '3113838002366069990', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/List.test.tsx', + hash: '12805398032478901779', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/List.tsx', + hash: '4068680904225237891', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/List.types.ts', + hash: '11908378584937348503', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/__snapshots__/List.test.tsx.snap', + hash: '12189414601608078303', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/index.ts', + hash: '17107546934093025866', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/listContext.ts', + hash: '9337597684660879030', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/renderList.tsx', + hash: '2186521174788678765', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/useList.ts', + hash: '11318024193224137697', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/useListContextValues.ts', + hash: '11563979621193940730', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/useListStyles.styles.ts', + hash: '10381177976274865563', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.test.tsx', + hash: '8056764134477992026', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.tsx', + hash: '12481687515454290723', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.types.ts', + hash: '13437384804128457294', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/__snapshots__/ListItem.test.tsx.snap', + hash: '9019909192155778823', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/index.ts', + hash: '13458219659794583076', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/renderListItem.tsx', + hash: '14567909198214388091', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/useListItem.tsx', + hash: '8349808383490405801', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/useListItemStyles.styles.ts', + hash: '10549323801670309271', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/hooks/index.ts', + hash: '14536450081702718010', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/hooks/types.ts', + hash: '11011618432504847952', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/hooks/useListSelection.tsx', + hash: '18367481209994946833', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/List/index.ts', + hash: '6837911686204013385', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Primitive/Primitive.test.tsx', + hash: '10954895803829758288', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Primitive/Primitive.tsx', + hash: '8102630166808687777', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Primitive/index.tsx', + hash: '8320853195778671583', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.styles.ts', + hash: '163465406698795241', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.test.tsx', + hash: '2074843457095701442', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.tsx', + hash: '9318348374337572435', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Segment/index.ts', + hash: '6478703878423887942', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Slider/Slider.mixins.test.ts', + hash: '14618851225306044609', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Slider/Slider.mixins.ts', + hash: '1724504369532945724', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Slider/index.ts', + hash: '4185767866868550439', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Spinner/SpinnerMigration.mixins.test.ts', + hash: '2617086967168608302', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Spinner/SpinnerMigration.mixins.ts', + hash: '1036577262271937885', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/Spinner/index.tsx', + hash: '1625672833113366276', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.styles.ts', + hash: '9672829306212420518', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.test.tsx', + hash: '11969189071958437142', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.tsx', + hash: '11324608273378346647', + }, + { + file: 'packages/react-components/react-migration-v0-v9/src/components/StyledText/index.tsx', + hash: '9128570621886886223', + }, + { file: 'packages/react-components/react-migration-v0-v9/src/index.ts', hash: '1478560306537712184' }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/Button/Description.md', + hash: '17654230325647330180', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/Button/index.stories.tsx', + hash: '2357883713191857365', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/Flex/Description.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/Flex/index.stories.tsx', + hash: '11624234279834608424', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/FormFieldShim/Description.md', + hash: '17245299467260723598', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/FormFieldShim/index.stories.tsx', + hash: '5822881442487782254', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/GridShim/Description.md', + hash: '11904517854334539499', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/GridShim/index.stories.tsx', + hash: '6258327294094268259', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/Input/Description.md', + hash: '13460661974646312287', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/Input/index.stories.tsx', + hash: '4344639936932010242', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/List/Default.stories.tsx', + hash: '7596825406422268438', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/List/ListDescription.md', + hash: '17355733937330781996', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/List/Navigable.stories.tsx', + hash: '15380368917294536797', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/List/Selectable.stories.tsx', + hash: '12620296337149399839', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/List/index.stories.tsx', + hash: '6157921948866129838', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/SegmentShim/Description.md', + hash: '15545594269846251957', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/SegmentShim/index.stories.tsx', + hash: '12880934640704780643', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/SliderMixin/Description.md', + hash: '8272780712725776392', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/SliderMixin/index.stories.tsx', + hash: '6363553375590128729', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/Spinner/Description.md', + hash: '10637276773146727799', + }, + { + file: 'packages/react-components/react-migration-v0-v9/stories/Spinner/index.stories.tsx', + hash: '10694249060338362664', + }, + { file: 'packages/react-components/react-migration-v0-v9/tsconfig.json', hash: '13343058975825373724' }, + { file: 'packages/react-components/react-migration-v0-v9/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-migration-v0-v9/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/keyboard-key': [ + { file: 'packages/keyboard-key/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/keyboard-key/.npmignore', hash: '7699079327417375383' }, + { file: 'packages/keyboard-key/CHANGELOG.json', hash: '10179365370606137091' }, + { file: 'packages/keyboard-key/CHANGELOG.md', hash: '147863297539555338' }, + { file: 'packages/keyboard-key/LICENSE', hash: '8930695425710127949' }, + { file: 'packages/keyboard-key/README.md', hash: '17220773256264690709' }, + { file: 'packages/keyboard-key/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/keyboard-key/etc/keyboard-key.api.md', hash: '10686124383883084997' }, + { file: 'packages/keyboard-key/jest.config.js', hash: '9635769799634201842' }, + { file: 'packages/keyboard-key/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/keyboard-key/package.json', + hash: '1170975034285432666', + deps: [ + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/keyboard-key/project.json', hash: '15756375364528527746' }, + { file: 'packages/keyboard-key/src/codes.ts', hash: '8066867947356659420' }, + { file: 'packages/keyboard-key/src/index.test.ts', hash: '11586213541177350052' }, + { file: 'packages/keyboard-key/src/index.ts', hash: '11633495272869031359' }, + { file: 'packages/keyboard-key/tsconfig.json', hash: '17161308168961447910' }, + ], + '@fluentui/scripts-monorepo': [ + { file: 'scripts/monorepo/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/monorepo/jest.config.js', hash: '1384953526716204487' }, + { file: 'scripts/monorepo/package.json', hash: '3151914312966891220', deps: ['@fluentui/scripts-utils'] }, + { file: 'scripts/monorepo/project.json', hash: '17093955917889568889' }, + { file: 'scripts/monorepo/src/eslint-constants.js', hash: '7443856441866657412' }, + { file: 'scripts/monorepo/src/findGitRoot.js', hash: '4363463957869502799' }, + { file: 'scripts/monorepo/src/findRepoDeps.js', hash: '7553372038547408261' }, + { file: 'scripts/monorepo/src/get-lerna-aliases.js', hash: '11009367209609457683' }, + { file: 'scripts/monorepo/src/getAffectedPackages.js', hash: '17525808605986894312' }, + { file: 'scripts/monorepo/src/getAllPackageInfo.js', hash: '2379402033617125376' }, + { file: 'scripts/monorepo/src/getAllPackageInfo.spec.ts', hash: '1140840808034567865' }, + { file: 'scripts/monorepo/src/getDefaultEnvironmentVars.js', hash: '5734650452138389015' }, + { file: 'scripts/monorepo/src/getDependencies.d.ts', hash: '11422852845790360359' }, + { file: 'scripts/monorepo/src/getDependencies.js', hash: '7623291918152264365' }, + { file: 'scripts/monorepo/src/getDependencies.spec.js', hash: '18441659048142407685' }, + { file: 'scripts/monorepo/src/getNthCommit.js', hash: '508999649282071492' }, + { file: 'scripts/monorepo/src/index.d.ts', hash: '633307509083187231' }, + { file: 'scripts/monorepo/src/index.js', hash: '3480277268839262091' }, + { file: 'scripts/monorepo/src/isConvergedPackage.js', hash: '5285532099277225326' }, + { file: 'scripts/monorepo/src/tree.js', hash: '3417107466093454766' }, + { file: 'scripts/monorepo/src/types.ts', hash: '12073047551950673729' }, + { file: 'scripts/monorepo/src/utils.js', hash: '13391023183473540106' }, + { file: 'scripts/monorepo/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/monorepo/tsconfig.lib.json', hash: '3593133700658772030' }, + { file: 'scripts/monorepo/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/ssr-tests-v9': [ + { file: 'apps/ssr-tests-v9/.eslintrc.json', hash: '17415001537957764759' }, + { file: 'apps/ssr-tests-v9/.npmignore', hash: '6985117138208138805' }, + { file: 'apps/ssr-tests-v9/.storybook/main.js', hash: '1212305810175821020' }, + { file: 'apps/ssr-tests-v9/.storybook/preview.js', hash: '3771044947140527406' }, + { file: 'apps/ssr-tests-v9/.storybook/tsconfig.json', hash: '14109446059604296292' }, + { file: 'apps/ssr-tests-v9/CHANGELOG.json', hash: '10565813083365182125' }, + { file: 'apps/ssr-tests-v9/CHANGELOG.md', hash: '7027171009374181352' }, + { file: 'apps/ssr-tests-v9/README.md', hash: '14065455051967402252' }, + { file: 'apps/ssr-tests-v9/config/tests.js', hash: '11168571691074990614' }, + { file: 'apps/ssr-tests-v9/jest.config.js', hash: '9458445199894798693' }, + { file: 'apps/ssr-tests-v9/just.config.ts', hash: '10393370776333958822' }, + { + file: 'apps/ssr-tests-v9/package.json', + hash: '8923427910776151549', + deps: [ + '@fluentui/react-components', + '@fluentui/react-utilities', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-storybook', + ], + }, + { file: 'apps/ssr-tests-v9/project.json', hash: '15064735109472825928' }, + { file: 'apps/ssr-tests-v9/src/stories/Menu/DefaultOpen.stories.tsx', hash: '9756001618427095260' }, + { file: 'apps/ssr-tests-v9/src/stories/Menu/index.stories.tsx', hash: '9459470396080333721' }, + { file: 'apps/ssr-tests-v9/src/stories/Tooltip/DefaultOpen.stories.tsx', hash: '14503999588850100551' }, + { file: 'apps/ssr-tests-v9/src/stories/Tooltip/index.stories.tsx', hash: '2359036706156696468' }, + { file: 'apps/ssr-tests-v9/src/stories/Utilitites/index.stories.tsx', hash: '11459814591521163889' }, + { file: 'apps/ssr-tests-v9/src/stories/Utilitites/useAnimationFrame.stories.tsx', hash: '4136409707688092330' }, + { file: 'apps/ssr-tests-v9/tsconfig.json', hash: '4637104942856286995' }, + { file: 'apps/ssr-tests-v9/tsconfig.lib.json', hash: '9469665441243672593' }, + { file: 'apps/ssr-tests-v9/tsconfig.spec.json', hash: '13287603543641469083' }, + { file: 'apps/ssr-tests-v9/tsconfig.stories.json', hash: '3244421341483603138' }, + ], + '@fluentui/react-badge': [ + { file: 'packages/react-components/react-badge/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-badge/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-badge/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-badge/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-badge/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-badge/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-badge/CHANGELOG.json', hash: '3838142065842905213' }, + { file: 'packages/react-components/react-badge/CHANGELOG.md', hash: '8328083364379344161' }, + { file: 'packages/react-components/react-badge/LICENSE', hash: '5659285969361613184' }, + { file: 'packages/react-components/react-badge/README.md', hash: '741049524515709119' }, + { file: 'packages/react-components/react-badge/bundle-size/Badge.fixture.js', hash: '18016310058213888091' }, + { + file: 'packages/react-components/react-badge/bundle-size/CounterBadge.fixture.js', + hash: '11116175457104908609', + }, + { + file: 'packages/react-components/react-badge/bundle-size/PresenseBadge.fixture.js', + hash: '14243990803293442333', + }, + { file: 'packages/react-components/react-badge/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-badge/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-badge/docs/MIGRATION.md', hash: '12718996084650884249' }, + { file: 'packages/react-components/react-badge/docs/Spec.md', hash: '4981436966355345762' }, + { file: 'packages/react-components/react-badge/etc/react-badge.api.md', hash: '17669930272481993235' }, + { file: 'packages/react-components/react-badge/jest.config.js', hash: '5702010820628736971' }, + { file: 'packages/react-components/react-badge/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-badge/package.json', + hash: '13596268650071717014', + deps: [ + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-badge/project.json', hash: '1247452013363452004' }, + { file: 'packages/react-components/react-badge/src/Badge.ts', hash: '2510791038021244676' }, + { file: 'packages/react-components/react-badge/src/CounterBadge.ts', hash: '6039544832911443106' }, + { file: 'packages/react-components/react-badge/src/PresenceBadge.ts', hash: '966139791510714730' }, + { + file: 'packages/react-components/react-badge/src/components/Badge/Badge.test.tsx', + hash: '2291120686699126936', + }, + { file: 'packages/react-components/react-badge/src/components/Badge/Badge.tsx', hash: '5730875022532459229' }, + { + file: 'packages/react-components/react-badge/src/components/Badge/Badge.types.ts', + hash: '4284246403350811291', + }, + { + file: 'packages/react-components/react-badge/src/components/Badge/__snapshots__/Badge.test.tsx.snap', + hash: '6711022694333634888', + }, + { file: 'packages/react-components/react-badge/src/components/Badge/index.ts', hash: '1476629210370430931' }, + { + file: 'packages/react-components/react-badge/src/components/Badge/renderBadge.tsx', + hash: '9996716902381900230', + }, + { file: 'packages/react-components/react-badge/src/components/Badge/useBadge.ts', hash: '6249942987623297178' }, + { + file: 'packages/react-components/react-badge/src/components/Badge/useBadgeStyles.styles.ts', + hash: '2198511761615120709', + }, + { + file: 'packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.test.tsx', + hash: '16785701196245371781', + }, + { + file: 'packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.tsx', + hash: '1852761979729563729', + }, + { + file: 'packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.types.ts', + hash: '13654828388063681108', + }, + { + file: 'packages/react-components/react-badge/src/components/CounterBadge/__snapshots__/CounterBadge.test.tsx.snap', + hash: '8082377041564993844', + }, + { + file: 'packages/react-components/react-badge/src/components/CounterBadge/index.ts', + hash: '6547105508262150940', + }, + { + file: 'packages/react-components/react-badge/src/components/CounterBadge/useCounterBadge.ts', + hash: '14338285655892039809', + }, + { + file: 'packages/react-components/react-badge/src/components/CounterBadge/useCounterBadgeStyles.styles.ts', + hash: '10120133273911278700', + }, + { + file: 'packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.test.tsx', + hash: '5815693297904013980', + }, + { + file: 'packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.tsx', + hash: '9644698475507516468', + }, + { + file: 'packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.types.ts', + hash: '16229658686092641977', + }, + { + file: 'packages/react-components/react-badge/src/components/PresenceBadge/__snapshots__/PresenceBadge.test.tsx.snap', + hash: '15228924334910826003', + }, + { + file: 'packages/react-components/react-badge/src/components/PresenceBadge/index.ts', + hash: '11517521578520876854', + }, + { + file: 'packages/react-components/react-badge/src/components/PresenceBadge/presenceIcons.ts', + hash: '14406401175654278430', + }, + { + file: 'packages/react-components/react-badge/src/components/PresenceBadge/usePresenceBadge.tsx', + hash: '7288458005042661885', + }, + { + file: 'packages/react-components/react-badge/src/components/PresenceBadge/usePresenceBadgeStyles.styles.ts', + hash: '15934854199050763595', + }, + { file: 'packages/react-components/react-badge/src/index.ts', hash: '16013987246277682438' }, + { file: 'packages/react-components/react-badge/src/testing/isConformant.ts', hash: '14447437808059758114' }, + { + file: 'packages/react-components/react-badge/stories/Badge/BadgeAppearance.stories.tsx', + hash: '9157737770137255570', + }, + { + file: 'packages/react-components/react-badge/stories/Badge/BadgeBestPractices.md', + hash: '7394302782434059313', + }, + { + file: 'packages/react-components/react-badge/stories/Badge/BadgeColor.stories.tsx', + hash: '8736371573721917301', + }, + { + file: 'packages/react-components/react-badge/stories/Badge/BadgeDefault.stories.tsx', + hash: '16490059828019383252', + }, + { file: 'packages/react-components/react-badge/stories/Badge/BadgeDescription.md', hash: '10544040785170591815' }, + { + file: 'packages/react-components/react-badge/stories/Badge/BadgeIcon.stories.tsx', + hash: '3092952115653825428', + }, + { + file: 'packages/react-components/react-badge/stories/Badge/BadgeShapes.stories.tsx', + hash: '3012525196355438962', + }, + { + file: 'packages/react-components/react-badge/stories/Badge/BadgeSizes.stories.tsx', + hash: '8996124492394830949', + }, + { file: 'packages/react-components/react-badge/stories/Badge/index.stories.tsx', hash: '9336081823336802656' }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeAppearance.stories.tsx', + hash: '1132782369760502827', + }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeBestPractices.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeColor.stories.tsx', + hash: '3726008495638286061', + }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDefault.stories.tsx', + hash: '12495911009820026675', + }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDescription.md', + hash: '17199299847592287892', + }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDot.stories.tsx', + hash: '11304165446131649687', + }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeShapes.stories.tsx', + hash: '2293809520768402959', + }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeSizes.stories.tsx', + hash: '16654987495768560853', + }, + { + file: 'packages/react-components/react-badge/stories/CounterBadge/index.stories.tsx', + hash: '8535943447027099881', + }, + { + file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeBestPractices.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeDefault.stories.tsx', + hash: '15264240781375830137', + }, + { + file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeDescription.md', + hash: '2055988351009907164', + }, + { + file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeOutOfOffice.stories.tsx', + hash: '14955421743325613433', + }, + { + file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeSizes.stories.tsx', + hash: '12704301323912754084', + }, + { + file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeStatus.stories.tsx', + hash: '13799869294717671623', + }, + { + file: 'packages/react-components/react-badge/stories/PresenceBadge/index.stories.tsx', + hash: '2602818216760981976', + }, + { file: 'packages/react-components/react-badge/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-badge/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-badge/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/example-data': [ + { file: 'packages/example-data/.eslintrc.json', hash: '3229880202825641002' }, + { file: 'packages/example-data/.npmignore', hash: '47056201363133096' }, + { file: 'packages/example-data/CHANGELOG.json', hash: '9048642913278741833' }, + { file: 'packages/example-data/CHANGELOG.md', hash: '12235872426400347757' }, + { file: 'packages/example-data/LICENSE', hash: '12367838612108125011' }, + { file: 'packages/example-data/README.md', hash: '7119854316177950935' }, + { file: 'packages/example-data/config/api-extractor.json', hash: '10981721980506993079' }, + { file: 'packages/example-data/etc/example-data.api.md', hash: '4672979637124934763' }, + { file: 'packages/example-data/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/example-data/package.json', + hash: '17742021473028152345', + deps: [ + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'packages/example-data/project.json', hash: '17680685214412804652' }, + { file: 'packages/example-data/src/facepile.ts', hash: '2655635451145751592' }, + { file: 'packages/example-data/src/index.ts', hash: '476073902722847914' }, + { file: 'packages/example-data/src/listItems.ts', hash: '4874104725793960628' }, + { file: 'packages/example-data/src/lorem.ts', hash: '8053126041927246028' }, + { file: 'packages/example-data/src/people.ts', hash: '6416917373887433733' }, + { file: 'packages/example-data/src/range.ts', hash: '3302006145478468298' }, + { file: 'packages/example-data/src/testImages.ts', hash: '4417580955949983984' }, + { file: 'packages/example-data/tsconfig.json', hash: '10705276064557648381' }, + { file: 'packages/example-data/webpack.config.js', hash: '1655035376737530180' }, + ], + '@fluentui/react-persona': [ + { file: 'packages/react-components/react-persona/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-persona/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-persona/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-persona/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-persona/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-persona/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-persona/CHANGELOG.json', hash: '5916678123087417001' }, + { file: 'packages/react-components/react-persona/CHANGELOG.md', hash: '3363492742739613050' }, + { file: 'packages/react-components/react-persona/LICENSE', hash: '6137498738426131383' }, + { file: 'packages/react-components/react-persona/README.md', hash: '12675629857136863246' }, + { file: 'packages/react-components/react-persona/bundle-size/Persona.fixture.js', hash: '15487570408879567833' }, + { file: 'packages/react-components/react-persona/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-persona/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-persona/docs/MIGRATION.md', hash: '17378712130195637222' }, + { file: 'packages/react-components/react-persona/docs/Spec.md', hash: '6967437294349522091' }, + { file: 'packages/react-components/react-persona/etc/images/anatomy.png', hash: '10781667208635285558' }, + { file: 'packages/react-components/react-persona/etc/images/avatar.png', hash: '9562625475398502185' }, + { file: 'packages/react-components/react-persona/etc/images/avatar_badge.png', hash: '9338819851581626892' }, + { file: 'packages/react-components/react-persona/etc/images/badge.png', hash: '17522195762955017669' }, + { file: 'packages/react-components/react-persona/etc/images/grid_after.png', hash: '6933613033871152976' }, + { file: 'packages/react-components/react-persona/etc/images/grid_before.png', hash: '13998141908743472922' }, + { file: 'packages/react-components/react-persona/etc/images/grid_below.png', hash: '3859323812046760721' }, + { file: 'packages/react-components/react-persona/etc/react-persona.api.md', hash: '14795997154590965053' }, + { file: 'packages/react-components/react-persona/jest.config.js', hash: '8129347973438031603' }, + { file: 'packages/react-components/react-persona/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-persona/package.json', + hash: '7140288082976502672', + deps: [ + '@fluentui/react-avatar', + '@fluentui/react-badge', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-persona/project.json', hash: '5858224934607894803' }, + { file: 'packages/react-components/react-persona/src/Persona.ts', hash: '11634239554265983330' }, + { + file: 'packages/react-components/react-persona/src/components/Persona/Persona.test.tsx', + hash: '8861398421216942861', + }, + { + file: 'packages/react-components/react-persona/src/components/Persona/Persona.tsx', + hash: '6767483379236609829', + }, + { + file: 'packages/react-components/react-persona/src/components/Persona/Persona.types.ts', + hash: '891732937289352445', + }, + { file: 'packages/react-components/react-persona/src/components/Persona/index.ts', hash: '815066361299291068' }, + { + file: 'packages/react-components/react-persona/src/components/Persona/renderPersona.tsx', + hash: '12503343474919913859', + }, + { + file: 'packages/react-components/react-persona/src/components/Persona/usePersona.ts', + hash: '7299955268610853887', + }, + { + file: 'packages/react-components/react-persona/src/components/Persona/usePersonaStyles.styles.ts', + hash: '13429552607938862653', + }, + { file: 'packages/react-components/react-persona/src/index.ts', hash: '733085347323584427' }, + { file: 'packages/react-components/react-persona/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-persona/stories/Persona/PersonaAvatarSize.stories.tsx', + hash: '7330072247446824330', + }, + { + file: 'packages/react-components/react-persona/stories/Persona/PersonaDefault.stories.tsx', + hash: '6962823296596584994', + }, + { + file: 'packages/react-components/react-persona/stories/Persona/PersonaDescription.md', + hash: '2005954066348145499', + }, + { + file: 'packages/react-components/react-persona/stories/Persona/PersonaPresencePreviousBehavior.stories.tsx', + hash: '7780860207726490895', + }, + { + file: 'packages/react-components/react-persona/stories/Persona/PersonaPresenceSize.stories.tsx', + hash: '17996713618212360785', + }, + { + file: 'packages/react-components/react-persona/stories/Persona/PersonaTextAlignment.stories.tsx', + hash: '14036210296442852602', + }, + { + file: 'packages/react-components/react-persona/stories/Persona/PersonaTextPosition.stories.tsx', + hash: '3716010766339279556', + }, + { + file: 'packages/react-components/react-persona/stories/Persona/index.stories.tsx', + hash: '11619656050038070907', + }, + { file: 'packages/react-components/react-persona/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-persona/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-persona/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/pr-deploy-site': [ + { file: 'apps/pr-deploy-site/.eslintrc.json', hash: '13367636068836493348' }, + { file: 'apps/pr-deploy-site/CHANGELOG.json', hash: '10223425423810861213' }, + { file: 'apps/pr-deploy-site/CHANGELOG.md', hash: '14685531263075523780' }, + { file: 'apps/pr-deploy-site/README.md', hash: '6722478197317014790' }, + { file: 'apps/pr-deploy-site/chiclet-test.html', hash: '9993395785341340820' }, + { file: 'apps/pr-deploy-site/index.html', hash: '100795799416268803' }, + { file: 'apps/pr-deploy-site/just.config.ts', hash: '17822963251943017025' }, + { + file: 'apps/pr-deploy-site/package.json', + hash: '15767832108474548373', + deps: ['@fluentui/eslint-plugin', '@fluentui/scripts-tasks', '@fluentui/scripts-monorepo'], + }, + { file: 'apps/pr-deploy-site/pr-deploy-site.css', hash: '4709491619076049329' }, + { file: 'apps/pr-deploy-site/pr-deploy-site.js', hash: '6526057395852723073' }, + { file: 'apps/pr-deploy-site/project.json', hash: '15758273448551696582' }, + { file: 'apps/pr-deploy-site/tsconfig.json', hash: '5982494929140394036' }, + ], + '@fluentui/scripts-jest': [ + { file: 'scripts/jest/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/jest/jest.config.js', hash: '3813261862233335890' }, + { + file: 'scripts/jest/package.json', + hash: '14164984823080938344', + deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-utils'], + }, + { file: 'scripts/jest/project.json', hash: '12078030697868316929' }, + { file: 'scripts/jest/src/index.js', hash: '16087382004284617467' }, + { file: 'scripts/jest/src/jest.preset.v0.js', hash: '5867124286943409158' }, + { file: 'scripts/jest/src/jest.preset.v0.spec.ts', hash: '14542700976601267891' }, + { file: 'scripts/jest/src/jest.preset.v8.js', hash: '7214783837184776239' }, + { file: 'scripts/jest/src/jest.preset.v8.spec.ts', hash: '12951278503786579953' }, + { file: 'scripts/jest/src/v0/setupTests.js', hash: '12654493952027143402' }, + { file: 'scripts/jest/src/v8/jest-mock.js', hash: '10441877977763399001' }, + { file: 'scripts/jest/src/v8/jest-reporter.js', hash: '17340096134020818293' }, + { file: 'scripts/jest/src/v8/jest-setup.js', hash: '7778886422321321206' }, + { file: 'scripts/jest/src/v8/jest-style-mock.js', hash: '3486721905956313351' }, + { file: 'scripts/jest/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/jest/tsconfig.lib.json', hash: '3593133700658772030' }, + { file: 'scripts/jest/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-rating-preview': [ + { file: 'packages/react-components/react-rating-preview/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-rating-preview/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-rating-preview/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-rating-preview/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-rating-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-rating-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-rating-preview/CHANGELOG.json', hash: '1386950926958177706' }, + { file: 'packages/react-components/react-rating-preview/CHANGELOG.md', hash: '7481927941742122982' }, + { file: 'packages/react-components/react-rating-preview/LICENSE', hash: '11029626774304352386' }, + { file: 'packages/react-components/react-rating-preview/README.md', hash: '2315553695549024501' }, + { file: 'packages/react-components/react-rating-preview/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-rating-preview/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-rating-preview/docs/Spec.md', hash: '13399743181965079106' }, + { + file: 'packages/react-components/react-rating-preview/etc/react-rating-preview.api.md', + hash: '546737215946085466', + }, + { file: 'packages/react-components/react-rating-preview/jest.config.js', hash: '13638262759997247348' }, + { file: 'packages/react-components/react-rating-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-rating-preview/package.json', + hash: '6500567209729890407', + deps: [ + '@fluentui/react-jsx-runtime', + 'npm:@fluentui/react-icons', + '@fluentui/react-theme', + '@fluentui/react-tabster', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-rating-preview/project.json', hash: '309846336706056488' }, + { file: 'packages/react-components/react-rating-preview/src/Rating.ts', hash: '15823645109042535388' }, + { file: 'packages/react-components/react-rating-preview/src/RatingItem.ts', hash: '2041029226151546635' }, + { + file: 'packages/react-components/react-rating-preview/src/components/Rating/Rating.test.tsx', + hash: '5283780706645667459', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/Rating/Rating.tsx', + hash: '17937483042811168623', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/Rating/Rating.types.ts', + hash: '11581003550124668523', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/Rating/__snapshots__/Rating.test.tsx.snap', + hash: '12871779555702267298', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/Rating/index.ts', + hash: '16560610711340093657', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/Rating/renderRating.tsx', + hash: '17511663661061571492', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/Rating/useRating.tsx', + hash: '778443718043001840', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/Rating/useRatingStyles.styles.ts', + hash: '8465426701306811937', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.test.tsx', + hash: '6919100699748520443', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.tsx', + hash: '14249217300465265132', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.types.ts', + hash: '3463608295260686451', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/RatingItem/__snapshots__/RatingItem.test.tsx.snap', + hash: '12673552041574392517', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/RatingItem/index.ts', + hash: '7256066201974826524', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/RatingItem/renderRatingItem.tsx', + hash: '17922546264381731658', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/RatingItem/useRatingItem.tsx', + hash: '73122377714334878', + }, + { + file: 'packages/react-components/react-rating-preview/src/components/RatingItem/useRatingItemStyles.styles.ts', + hash: '13473747997341116040', + }, + { + file: 'packages/react-components/react-rating-preview/src/contexts/RatingContext.tsx', + hash: '14442501886031449970', + }, + { file: 'packages/react-components/react-rating-preview/src/contexts/index.ts', hash: '897686478701984368' }, + { + file: 'packages/react-components/react-rating-preview/src/contexts/useRatingContextValues.ts', + hash: '14732512412813204150', + }, + { file: 'packages/react-components/react-rating-preview/src/index.ts', hash: '542036710468795052' }, + { + file: 'packages/react-components/react-rating-preview/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingBestPractices.md', + hash: '13132854725403121719', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingCompact.stories.tsx', + hash: '10038980048705258013', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingDefault.stories.tsx', + hash: '10411813347289797490', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingMax.stories.tsx', + hash: '13823895250729025068', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingPrecision.stories.tsx', + hash: '13010653961703171182', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingReadOnly.stories.tsx', + hash: '16740155415181268133', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingShape.stories.tsx', + hash: '10702844511181810660', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/RatingSize.stories.tsx', + hash: '15592318112463151981', + }, + { + file: 'packages/react-components/react-rating-preview/stories/Rating/index.stories.tsx', + hash: '16840504286423106121', + }, + { file: 'packages/react-components/react-rating-preview/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-rating-preview/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-rating-preview/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-toolbar': [ + { file: 'packages/react-components/react-toolbar/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-toolbar/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-toolbar/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-toolbar/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-toolbar/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-toolbar/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-toolbar/CHANGELOG.json', hash: '2679299470989409940' }, + { file: 'packages/react-components/react-toolbar/CHANGELOG.md', hash: '7443287667751919479' }, + { file: 'packages/react-components/react-toolbar/LICENSE', hash: '11699752302272615156' }, + { file: 'packages/react-components/react-toolbar/README.md', hash: '17327849331251576092' }, + { file: 'packages/react-components/react-toolbar/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-toolbar/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-toolbar/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-toolbar/docs/Spec.md', hash: '6230791134705908197' }, + { file: 'packages/react-components/react-toolbar/etc/react-toolbar.api.md', hash: '14892045251414762508' }, + { file: 'packages/react-components/react-toolbar/jest.config.js', hash: '1491522759465693041' }, + { file: 'packages/react-components/react-toolbar/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-toolbar/package.json', + hash: '4069504963295153829', + deps: [ + '@fluentui/react-button', + '@fluentui/react-divider', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + '@fluentui/react-context-selector', + '@fluentui/react-radio', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-toolbar/project.json', hash: '15938424473686317514' }, + { file: 'packages/react-components/react-toolbar/src/Toolbar.ts', hash: '8394812810816711041' }, + { file: 'packages/react-components/react-toolbar/src/ToolbarButton.ts', hash: '15095606044855941967' }, + { file: 'packages/react-components/react-toolbar/src/ToolbarDivider.ts', hash: '5910102740128292344' }, + { file: 'packages/react-components/react-toolbar/src/ToolbarGroup.ts', hash: '1334304663874257745' }, + { file: 'packages/react-components/react-toolbar/src/ToolbarRadioButton.ts', hash: '16683479119449201369' }, + { file: 'packages/react-components/react-toolbar/src/ToolbarRadioGroup.ts', hash: '11025653910760393630' }, + { file: 'packages/react-components/react-toolbar/src/ToolbarToggleButton.ts', hash: '11558050513028606074' }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.cy.tsx', + hash: '18190796771724329956', + }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.test.tsx', + hash: '13039308109964193960', + }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.tsx', + hash: '6125519897848849531', + }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.types.ts', + hash: '5769296385799820899', + }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/ToolbarContext.ts', + hash: '16254330530638847001', + }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/__snapshots__/Toolbar.test.tsx.snap', + hash: '3213917547931842953', + }, + { file: 'packages/react-components/react-toolbar/src/components/Toolbar/index.ts', hash: '738351043517473027' }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/renderToolbar.tsx', + hash: '5344923693916361181', + }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/useToolbar.ts', + hash: '16259873341228918636', + }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/useToolbarContextValues.tsx', + hash: '12166336615514259420', + }, + { + file: 'packages/react-components/react-toolbar/src/components/Toolbar/useToolbarStyles.styles.ts', + hash: '603069451744682951', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.test.tsx', + hash: '13745661509449217165', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.tsx', + hash: '6836800995793072290', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.types.ts', + hash: '6180758115617748565', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/__snapshots__/ToolbarButton.test.tsx.snap', + hash: '10247478132621931341', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/index.ts', + hash: '11524062334948930900', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButton.ts', + hash: '1039717625327272054', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButtonStyles.styles.ts', + hash: '2967340636566566587', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.test.tsx', + hash: '7264474627499337873', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.tsx', + hash: '16225773209810846008', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.types.ts', + hash: '14744270117949556840', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/__snapshots__/ToolbarDivider.test.tsx.snap', + hash: '14415100046558031978', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/index.ts', + hash: '1526444007332312428', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/useToolbarDivider.ts', + hash: '17605264207797018150', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/useToolbarDividerStyles.styles.ts', + hash: '5137750223570700400', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.test.tsx', + hash: '3652445854445709654', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.tsx', + hash: '10022688157462161383', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.types.ts', + hash: '16010779742453253805', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/__snapshots__/ToolbarGroup.test.tsx.snap', + hash: '16684155283501614261', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/index.ts', + hash: '11269338224905271946', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/renderToolbarGroup.tsx', + hash: '8478142400781213724', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroup.ts', + hash: '16077103092893388185', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroupStyles.styles.ts', + hash: '16900409052136883615', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.test.tsx', + hash: '15085146305304111742', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.tsx', + hash: '13585266228605300355', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.types.ts', + hash: '1084262974156884328', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/__snapshots__/ToolbarRadioButton.test.tsx.snap', + hash: '16686308830081031237', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/index.ts', + hash: '1287773747565266338', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/useToolbarRadioButton.ts', + hash: '13585520412147692119', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/useToolbarRadioButtonStyles.styles.ts', + hash: '882772897875100667', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.test.tsx', + hash: '1666645086624633077', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.tsx', + hash: '11597493060405972029', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.types.ts', + hash: '5362057759819616453', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/__snapshots__/ToolbarRadioGroup.test.tsx.snap', + hash: '6778642779289195059', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/index.ts', + hash: '6797519109209546610', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.test.tsx', + hash: '2785987815279519313', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.tsx', + hash: '17286377178801905329', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.types.ts', + hash: '2799630108927680878', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/__snapshots__/ToolbarToggleButton.test.tsx.snap', + hash: '6448662158044233507', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/index.ts', + hash: '3726334219305394579', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/useToolbarToggleButton.ts', + hash: '10839425491090565227', + }, + { + file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/useToolbarToggleButtonStyles.styles.ts', + hash: '4298852610540032162', + }, + { file: 'packages/react-components/react-toolbar/src/index.ts', hash: '13436624389201452827' }, + { file: 'packages/react-components/react-toolbar/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarBestPractices.md', + hash: '15729850903231663767', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarControlledToggleButton.stories.tsx', + hash: '2229491058474026133', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarDefault.stories.tsx', + hash: '12754270821430915606', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarDescription.md', + hash: '11864277242571194941', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarFarGroup.stories.tsx', + hash: '15410378090287586604', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarLarge.stories.tsx', + hash: '1969991914501961647', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarMedium.stories.tsx', + hash: '10266984033920926402', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarOverflow.stories.tsx', + hash: '7713723578793215758', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarRadio.stories.tsx', + hash: '2319780391350821451', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarRadioControlled.stories.tsx', + hash: '6752560067054092764', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarSmall.stories.tsx', + hash: '16300341684049215640', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarSubtle.stories.tsx', + hash: '11114266572266597332', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarVertical.stories.tsx', + hash: '112779657426848656', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarVerticalButton.stories.tsx', + hash: '1450220188507366907', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarWithPopover.stories.tsx', + hash: '15385353564918673854', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarWithTooltip.stories.tsx', + hash: '14225052960477459882', + }, + { + file: 'packages/react-components/react-toolbar/stories/Toolbar/index.stories.tsx', + hash: '8744702613617176196', + }, + { file: 'packages/react-components/react-toolbar/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-toolbar/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-toolbar/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-toolbar/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-text': [ + { file: 'packages/react-components/react-text/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-text/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-text/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-text/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-text/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-text/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-text/CHANGELOG.json', hash: '14746472734011799848' }, + { file: 'packages/react-components/react-text/CHANGELOG.md', hash: '5530030983973534839' }, + { file: 'packages/react-components/react-text/LICENSE', hash: '4936020564043377923' }, + { file: 'packages/react-components/react-text/README.md', hash: '14594000409558953178' }, + { file: 'packages/react-components/react-text/bundle-size/Text.Default.fixture.js', hash: '9372275947322015042' }, + { + file: 'packages/react-components/react-text/bundle-size/Text.Wrappers.fixture.js', + hash: '4343285488848262892', + }, + { file: 'packages/react-components/react-text/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-text/config/tests.js', hash: '14010006175392234982' }, + { file: 'packages/react-components/react-text/docs/MIGRATION.md', hash: '4926594767893644190' }, + { file: 'packages/react-components/react-text/docs/Spec.md', hash: '11156190551232632838' }, + { file: 'packages/react-components/react-text/docs/assets/typography-examples.gif', hash: '5944766188234749424' }, + { file: 'packages/react-components/react-text/etc/react-text.api.md', hash: '15630657575673412419' }, + { file: 'packages/react-components/react-text/jest.config.js', hash: '13250048585224657153' }, + { file: 'packages/react-components/react-text/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-text/package.json', + hash: '9181332167887385646', + deps: [ + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-text/project.json', hash: '497480200449367797' }, + { file: 'packages/react-components/react-text/src/Body1.ts', hash: '9667282400563853276' }, + { file: 'packages/react-components/react-text/src/Body1Strong.ts', hash: '13823224720861472657' }, + { file: 'packages/react-components/react-text/src/Body1Stronger.ts', hash: '3286566584428617482' }, + { file: 'packages/react-components/react-text/src/Body2.ts', hash: '8183283637965760260' }, + { file: 'packages/react-components/react-text/src/Caption1.ts', hash: '4788522305935816127' }, + { file: 'packages/react-components/react-text/src/Caption1Strong.ts', hash: '2149384589348724474' }, + { file: 'packages/react-components/react-text/src/Caption1Stronger.ts', hash: '10916957720193657172' }, + { file: 'packages/react-components/react-text/src/Caption2.ts', hash: '5102526396849719794' }, + { file: 'packages/react-components/react-text/src/Caption2Strong.ts', hash: '7572462389090243622' }, + { file: 'packages/react-components/react-text/src/Display.ts', hash: '4685022632235662968' }, + { file: 'packages/react-components/react-text/src/LargeTitle.ts', hash: '16487674571008795637' }, + { file: 'packages/react-components/react-text/src/Subtitle1.ts', hash: '16033303200156257737' }, + { file: 'packages/react-components/react-text/src/Subtitle2.ts', hash: '3476755232628464350' }, + { file: 'packages/react-components/react-text/src/Subtitle2Stronger.ts', hash: '16315524108236767900' }, + { file: 'packages/react-components/react-text/src/Text.ts', hash: '18074790047408023562' }, + { file: 'packages/react-components/react-text/src/Title1.ts', hash: '17555355943170034657' }, + { file: 'packages/react-components/react-text/src/Title2.ts', hash: '7269104715253581064' }, + { file: 'packages/react-components/react-text/src/Title3.ts', hash: '13543050376223625530' }, + { file: 'packages/react-components/react-text/src/components/Text/Text.test.tsx', hash: '10358087802752874407' }, + { file: 'packages/react-components/react-text/src/components/Text/Text.tsx', hash: '15225570993742240023' }, + { file: 'packages/react-components/react-text/src/components/Text/Text.types.ts', hash: '14628039381215441828' }, + { file: 'packages/react-components/react-text/src/components/Text/index.ts', hash: '3679423971540201261' }, + { file: 'packages/react-components/react-text/src/components/Text/renderText.tsx', hash: '12277062145316794641' }, + { file: 'packages/react-components/react-text/src/components/Text/useText.ts', hash: '10631330431687230925' }, + { + file: 'packages/react-components/react-text/src/components/Text/useTextStyles.styles.ts', + hash: '8180430562340821244', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1/Body1.test.tsx', + hash: '9894037939799415333', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1/Body1.tsx', + hash: '5366069605146131494', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1/index.ts', + hash: '14114934386458292686', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1/useBody1Styles.styles.ts', + hash: '12844845312353658561', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1Strong/Body1Strong.test.tsx', + hash: '10855272301661388234', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1Strong/Body1Strong.tsx', + hash: '11524714835326398685', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1Strong/index.ts', + hash: '1459948605428759386', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1Strong/useBody1StrongStyles.styles.ts', + hash: '6414602464149070199', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1Stronger/Body1Stronger.test.tsx', + hash: '1484282817804899892', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1Stronger/Body1Stronger.tsx', + hash: '3334814281589344133', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1Stronger/index.ts', + hash: '10194746070259772281', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body1Stronger/useBody1StrongerStyles.styles.ts', + hash: '8876787566301622094', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body2/Body2.test.tsx', + hash: '16080733609312017065', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body2/Body2.tsx', + hash: '10543167376626268951', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body2/index.ts', + hash: '15734780964608692484', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Body2/useBody2Styles.styles.ts', + hash: '2179965817036105151', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1/Caption1.test.tsx', + hash: '18364219394070326703', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1/Caption1.tsx', + hash: '5365603815581407077', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1/index.ts', + hash: '13292481802490231528', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1/useCaption1Styles.styles.ts', + hash: '17678336276744860638', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1Strong/Caption1Strong.test.tsx', + hash: '10855745484138944673', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1Strong/Caption1Strong.tsx', + hash: '13139698996938859077', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1Strong/index.ts', + hash: '15003375483982098027', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1Strong/useCaption1StrongStyles.styles.ts', + hash: '14992344039816775280', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1Stronger/Caption1Stronger.test.tsx', + hash: '145900403893458087', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1Stronger/Caption1Stronger.tsx', + hash: '8060776291855045773', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1Stronger/index.ts', + hash: '15869920445770356096', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption1Stronger/useCaption1Stronger.styles.ts', + hash: '6637626472059456130', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption2/Caption2.test.tsx', + hash: '18403821228559899680', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption2/Caption2.tsx', + hash: '4576498597993247268', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption2/index.ts', + hash: '7336284101298750631', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption2/useCaption2Styles.styles.ts', + hash: '3351567266887346725', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption2Strong/Caption2Strong.test.tsx', + hash: '2398079818540772501', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption2Strong/Caption2Strong.tsx', + hash: '4951760950137277604', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption2Strong/index.ts', + hash: '17023856116505366051', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Caption2Strong/useCaption2StrongStyles.styles.ts', + hash: '16711009952230674581', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Display/Display.test.tsx', + hash: '8902387253771320134', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Display/Display.tsx', + hash: '15163273678942990099', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Display/index.ts', + hash: '1655129168591164529', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Display/useDisplayStyles.styles.ts', + hash: '2155688834321594944', + }, + { + file: 'packages/react-components/react-text/src/components/presets/LargeTitle/LargeTitle.test.tsx', + hash: '10689996326037032312', + }, + { + file: 'packages/react-components/react-text/src/components/presets/LargeTitle/LargeTitle.tsx', + hash: '10845770827182851022', + }, + { + file: 'packages/react-components/react-text/src/components/presets/LargeTitle/index.ts', + hash: '10381804999879881593', + }, + { + file: 'packages/react-components/react-text/src/components/presets/LargeTitle/useLargeTitleStyles.styles.ts', + hash: '9204784057218126288', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle1/Subtitle1.test.tsx', + hash: '8400411135710061570', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle1/Subtitle1.tsx', + hash: '6818323249646657027', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle1/index.ts', + hash: '17144394370666913272', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle1/useSubtitle1Styles.styles.ts', + hash: '13973796368695964185', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle2/Subtitle2.test.tsx', + hash: '16800739000274466640', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle2/Subtitle2.tsx', + hash: '15995954742755224260', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle2/index.ts', + hash: '2395262566287968836', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle2/useSubtitle2Styles.styles.ts', + hash: '3548578033972741049', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle2Stronger/Subtitle2Stronger.test.tsx', + hash: '9486754707899734006', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle2Stronger/Subtitle2Stronger.tsx', + hash: '11834028200088074682', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle2Stronger/index.ts', + hash: '15834411329339240732', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Subtitle2Stronger/useSubtitle2Stronger.styles.ts', + hash: '14099105492801059828', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title1/Title1.test.tsx', + hash: '13980206727970199045', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title1/Title1.tsx', + hash: '15892461228380942200', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title1/index.ts', + hash: '8932830417608409787', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title1/useTitle1Styles.styles.ts', + hash: '10323980728201993935', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title2/Title2.test.tsx', + hash: '9313693279109464292', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title2/Title2.tsx', + hash: '16219814511697192588', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title2/index.ts', + hash: '13092072330785019922', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title2/useTitle2Styles.styles.ts', + hash: '15767653350255270679', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title3/Title3.test.tsx', + hash: '16041612927712782515', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title3/Title3.tsx', + hash: '1482714465420909906', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title3/index.ts', + hash: '5421005612796075725', + }, + { + file: 'packages/react-components/react-text/src/components/presets/Title3/useTitle3Styles.styles.ts', + hash: '13551327395414956915', + }, + { + file: 'packages/react-components/react-text/src/components/presets/createPreset.ts', + hash: '17313362690045924117', + }, + { file: 'packages/react-components/react-text/src/index.ts', hash: '4004944184614105514' }, + { file: 'packages/react-components/react-text/src/testing/isConformant.ts', hash: '10210662947692554095' }, + { file: 'packages/react-components/react-text/stories/Text/Default.stories.tsx', hash: '5287666121360600616' }, + { + file: 'packages/react-components/react-text/stories/Text/TextAlignment.stories.tsx', + hash: '6242707523860852359', + }, + { file: 'packages/react-components/react-text/stories/Text/TextBestPractices.md', hash: '7035477963273089456' }, + { file: 'packages/react-components/react-text/stories/Text/TextDescription.md', hash: '16470577204288111202' }, + { file: 'packages/react-components/react-text/stories/Text/TextFont.stories.tsx', hash: '11116949968316746227' }, + { + file: 'packages/react-components/react-text/stories/Text/TextItalic.stories.tsx', + hash: '10422272221648492172', + }, + { file: 'packages/react-components/react-text/stories/Text/TextPresets.md', hash: '10418459320242657564' }, + { + file: 'packages/react-components/react-text/stories/Text/TextPresets.stories.tsx', + hash: '8737629838560008759', + }, + { file: 'packages/react-components/react-text/stories/Text/TextSize.stories.tsx', hash: '14604640943488556546' }, + { + file: 'packages/react-components/react-text/stories/Text/TextStrikeThrough.stories.tsx', + hash: '5360501811450986755', + }, + { + file: 'packages/react-components/react-text/stories/Text/TextTruncate.stories.tsx', + hash: '11750770438919753549', + }, + { + file: 'packages/react-components/react-text/stories/Text/TextUnderline.stories.tsx', + hash: '16315826356528260583', + }, + { file: 'packages/react-components/react-text/stories/Text/TextWeight.stories.tsx', hash: '6081025630306336337' }, + { file: 'packages/react-components/react-text/stories/Text/index.stories.tsx', hash: '2698621728331086757' }, + { file: 'packages/react-components/react-text/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-text/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-text/tsconfig.spec.json', hash: '6578707152334499940' }, + ], + '@fluentui/scripts-test-ssr': [ + { file: 'scripts/test-ssr/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/test-ssr/README.md', hash: '12699687466976303239' }, + { file: 'scripts/test-ssr/bin/test-ssr.js', hash: '8805610837379847465' }, + { file: 'scripts/test-ssr/jest.config.js', hash: '11527576380239430971' }, + { + file: 'scripts/test-ssr/package.json', + hash: '5757712170384653205', + deps: ['@fluentui/scripts-puppeteer', '@fluentui/scripts-ts-node'], + }, + { file: 'scripts/test-ssr/project.json', hash: '8607452646844129216' }, + { file: 'scripts/test-ssr/src/cli.ts', hash: '9681510604885864279' }, + { file: 'scripts/test-ssr/src/commands/main.ts', hash: '5373798188839451215' }, + { file: 'scripts/test-ssr/src/shims/module.js', hash: '6994254687357316236' }, + { file: 'scripts/test-ssr/src/utils/buildAssets.test.ts', hash: '7131330003385329020' }, + { file: 'scripts/test-ssr/src/utils/buildAssets.ts', hash: '8657021135056357882' }, + { file: 'scripts/test-ssr/src/utils/constants.ts', hash: '13310172053469550506' }, + { file: 'scripts/test-ssr/src/utils/generateEntryPoints.test.ts', hash: '4312975137369069285' }, + { file: 'scripts/test-ssr/src/utils/generateEntryPoints.ts', hash: '15091510962787083993' }, + { file: 'scripts/test-ssr/src/utils/getExportFromFile.test.ts', hash: '15350347943875414675' }, + { file: 'scripts/test-ssr/src/utils/getExportFromFile.ts', hash: '16525910075835513493' }, + { file: 'scripts/test-ssr/src/utils/helpers.ts', hash: '907485589681988891' }, + { file: 'scripts/test-ssr/src/utils/renderToHTML.test.ts', hash: '18102029768147530086' }, + { file: 'scripts/test-ssr/src/utils/renderToHTML.ts', hash: '8653651019165466798' }, + { file: 'scripts/test-ssr/src/utils/visitPage.ts', hash: '13302790300574375017' }, + { file: 'scripts/test-ssr/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/test-ssr/tsconfig.lib.json', hash: '15222053984038389170' }, + { file: 'scripts/test-ssr/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-theme-sass': [ + { file: 'packages/react-components/react-theme-sass/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-theme-sass/.eslintrc.json', hash: '11018738359270224912' }, + { file: 'packages/react-components/react-theme-sass/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-theme-sass/CHANGELOG.json', hash: '5594685481643840414' }, + { file: 'packages/react-components/react-theme-sass/CHANGELOG.md', hash: '4856582190832297662' }, + { file: 'packages/react-components/react-theme-sass/LICENSE', hash: '7651792034110510731' }, + { file: 'packages/react-components/react-theme-sass/README.md', hash: '15214253752717970109' }, + { file: 'packages/react-components/react-theme-sass/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-theme-sass/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-theme-sass/etc/react-theme-sass.api.md', hash: '14358162522400668675' }, + { file: 'packages/react-components/react-theme-sass/jest.config.js', hash: '17399809852034663364' }, + { file: 'packages/react-components/react-theme-sass/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-theme-sass/package.json', + hash: '5930055320158030255', + deps: [ + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-theme', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/react-components/react-theme-sass/project.json', hash: '2766526344846927114' }, + { file: 'packages/react-components/react-theme-sass/sass/Sass.test.ts', hash: '3297823665033471734' }, + { file: 'packages/react-components/react-theme-sass/sass/borderRadiusTokens.scss', hash: '4143081919880994643' }, + { file: 'packages/react-components/react-theme-sass/sass/colorPaletteTokens.scss', hash: '1410739843977013578' }, + { file: 'packages/react-components/react-theme-sass/sass/colorTokens.scss', hash: '5989857681329073660' }, + { file: 'packages/react-components/react-theme-sass/sass/curveTokens.scss', hash: '17869535884671872417' }, + { file: 'packages/react-components/react-theme-sass/sass/durationTokens.scss', hash: '5806122938809088304' }, + { file: 'packages/react-components/react-theme-sass/sass/fontTokens.scss', hash: '6033061885418814247' }, + { file: 'packages/react-components/react-theme-sass/sass/shadowTokens.scss', hash: '4177663170137987842' }, + { file: 'packages/react-components/react-theme-sass/sass/spacingTokens.scss', hash: '977102655101265716' }, + { file: 'packages/react-components/react-theme-sass/sass/strokeWidthTokens.scss', hash: '8747232526648247088' }, + { file: 'packages/react-components/react-theme-sass/sass/tokens.scss', hash: '17672327996225294765' }, + { file: 'packages/react-components/react-theme-sass/src/index.ts', hash: '15196355143394379680' }, + { file: 'packages/react-components/react-theme-sass/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/react-theme-sass/tsconfig.lib.json', hash: '14975475306433073951' }, + { file: 'packages/react-components/react-theme-sass/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/vr-tests': [ + { file: 'apps/vr-tests/.eslintrc.json', hash: '10551831104493574097' }, + { file: 'apps/vr-tests/.storybook/main.js', hash: '14940333360803121656' }, + { file: 'apps/vr-tests/.storybook/manager.js', hash: '8031267414392898657' }, + { file: 'apps/vr-tests/.storybook/preview.js', hash: '3982292904030882131' }, + { file: 'apps/vr-tests/CHANGELOG.json', hash: '7449587578967385188' }, + { file: 'apps/vr-tests/CHANGELOG.md', hash: '2930179689752298073' }, + { file: 'apps/vr-tests/dndSim.js', hash: '724746063622656033' }, + { file: 'apps/vr-tests/just.config.ts', hash: '2411455081002746933' }, + { + file: 'apps/vr-tests/package.json', + hash: '5047474567217814010', + deps: [ + '@fluentui/example-data', + '@fluentui/font-icons-mdl2', + '@fluentui/react', + '@fluentui/react-experiments', + '@fluentui/react-hooks', + '@fluentui/react-icons-mdl2', + '@fluentui/storybook', + '@fluentui/react-charting', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-storybook', + '@fluentui/scripts-tasks', + ], + }, + { file: 'apps/vr-tests/project.json', hash: '15420030406986740766' }, + { file: 'apps/vr-tests/src/stories/ActivityItem.stories.tsx', hash: '11569687009388202467' }, + { file: 'apps/vr-tests/src/stories/Breadcrumb.stories.tsx', hash: '15341591510460372817' }, + { file: 'apps/vr-tests/src/stories/Button.stories.tsx', hash: '2914444188833757479' }, + { file: 'apps/vr-tests/src/stories/Calendar.stories.tsx', hash: '8538109429933462804' }, + { file: 'apps/vr-tests/src/stories/Checkbox.stories.tsx', hash: '3325419673387896680' }, + { file: 'apps/vr-tests/src/stories/ChoiceGroup.stories.tsx', hash: '1195574547624136369' }, + { file: 'apps/vr-tests/src/stories/Coachmark.stories.tsx', hash: '13321973702134234996' }, + { file: 'apps/vr-tests/src/stories/ColorPicker.stories.tsx', hash: '1213299846978993705' }, + { file: 'apps/vr-tests/src/stories/ComboBox.stories.tsx', hash: '9573414728786821330' }, + { file: 'apps/vr-tests/src/stories/CommandBar.stories.tsx', hash: '16263711139643921965' }, + { file: 'apps/vr-tests/src/stories/ContextualMenu.stories.tsx', hash: '7001519228488221050' }, + { file: 'apps/vr-tests/src/stories/DatePicker.stories.tsx', hash: '11469137129615659110' }, + { file: 'apps/vr-tests/src/stories/DetailsHeader.stories.tsx', hash: '5006577645632454049' }, + { file: 'apps/vr-tests/src/stories/DetailsList.stories.tsx', hash: '2879269659033154743' }, + { file: 'apps/vr-tests/src/stories/Dialog.stories.tsx', hash: '8052652729179956677' }, + { file: 'apps/vr-tests/src/stories/DocumentCard.stories.tsx', hash: '13899581374990015662' }, + { file: 'apps/vr-tests/src/stories/Dropdown.stories.tsx', hash: '2496251228511985784' }, + { file: 'apps/vr-tests/src/stories/Facepile.stories.tsx', hash: '12643002484132090873' }, + { file: 'apps/vr-tests/src/stories/FocusTrapZone.stories.tsx', hash: '5799413550175548528' }, + { file: 'apps/vr-tests/src/stories/FolderCover.stories.tsx', hash: '4906025218546588645' }, + { file: 'apps/vr-tests/src/stories/Fonts.stories.tsx', hash: '9549012890812409892' }, + { file: 'apps/vr-tests/src/stories/GroupedList.stories.tsx', hash: '11989572581811905811' }, + { file: 'apps/vr-tests/src/stories/HoverCard.stories.tsx', hash: '9319677405272986757' }, + { file: 'apps/vr-tests/src/stories/Icon.stories.tsx', hash: '15565848215587566233' }, + { file: 'apps/vr-tests/src/stories/Image.stories.tsx', hash: '6543648971192419845' }, + { file: 'apps/vr-tests/src/stories/Keytip.stories.tsx', hash: '14260629868498047882' }, + { file: 'apps/vr-tests/src/stories/Label.stories.tsx', hash: '16290920097226483294' }, + { file: 'apps/vr-tests/src/stories/Layer.stories.tsx', hash: '5774399677897090021' }, + { file: 'apps/vr-tests/src/stories/Link.stories.tsx', hash: '7575426125237736148' }, + { file: 'apps/vr-tests/src/stories/List.stories.tsx', hash: '8890180346033902095' }, + { file: 'apps/vr-tests/src/stories/MessageBar.stories.tsx', hash: '17616959218745846857' }, + { file: 'apps/vr-tests/src/stories/Modal.stories.tsx', hash: '9481699508246475797' }, + { file: 'apps/vr-tests/src/stories/Nav.stories.tsx', hash: '3467793982394536754' }, + { file: 'apps/vr-tests/src/stories/OverflowSet.stories.tsx', hash: '11103702669391570247' }, + { file: 'apps/vr-tests/src/stories/Overlay.stories.tsx', hash: '7861384592809448582' }, + { file: 'apps/vr-tests/src/stories/Panel.stories.tsx', hash: '4738198071916866546' }, + { file: 'apps/vr-tests/src/stories/PeoplePicker.stories.tsx', hash: '9173552436371785845' }, + { file: 'apps/vr-tests/src/stories/Persona.stories.tsx', hash: '16082800449887917174' }, + { file: 'apps/vr-tests/src/stories/Pivot.stories.tsx', hash: '484161555692287630' }, + { file: 'apps/vr-tests/src/stories/ProgressIndicator.stories.tsx', hash: '7137422605283021864' }, + { file: 'apps/vr-tests/src/stories/Rating.stories.tsx', hash: '8013473872216302645' }, + { file: 'apps/vr-tests/src/stories/ResizeGroup.stories.tsx', hash: '14761542910375483519' }, + { file: 'apps/vr-tests/src/stories/ScrollablePane.DetailsList.stories.tsx', hash: '2739168817822626656' }, + { file: 'apps/vr-tests/src/stories/ScrollablePane.GroupedDetailsList.stories.tsx', hash: '14761350823260518667' }, + { file: 'apps/vr-tests/src/stories/ScrollablePane.stories.tsx', hash: '13192871338079180854' }, + { file: 'apps/vr-tests/src/stories/SearchBox.stories.tsx', hash: '10379901043117580437' }, + { file: 'apps/vr-tests/src/stories/Separator.stories.tsx', hash: '13858622861667232974' }, + { file: 'apps/vr-tests/src/stories/Shimmer.stories.tsx', hash: '2903504102464264659' }, + { file: 'apps/vr-tests/src/stories/Signals.stories.tsx', hash: '17328372343649759425' }, + { file: 'apps/vr-tests/src/stories/Slider.stories.tsx', hash: '2368783335741726350' }, + { file: 'apps/vr-tests/src/stories/SpinButton.stories.tsx', hash: '8338452628845866471' }, + { file: 'apps/vr-tests/src/stories/Spinner.stories.tsx', hash: '1055217432712008178' }, + { file: 'apps/vr-tests/src/stories/Stack.stories.tsx', hash: '6523560878963516561' }, + { file: 'apps/vr-tests/src/stories/Sticky.Breadcrumb.stories.tsx', hash: '4487830027107272051' }, + { file: 'apps/vr-tests/src/stories/Suggestions.stories.tsx', hash: '17815861088103051556' }, + { file: 'apps/vr-tests/src/stories/SwatchColorPicker.stories.tsx', hash: '13775012423130559181' }, + { file: 'apps/vr-tests/src/stories/TagPicker.stories.tsx', hash: '14671286227568644399' }, + { file: 'apps/vr-tests/src/stories/TeachingBubble.stories.tsx', hash: '9348122633621119111' }, + { file: 'apps/vr-tests/src/stories/Text.stories.tsx', hash: '8527555373311206159' }, + { file: 'apps/vr-tests/src/stories/TextField.stories.tsx', hash: '11402453234080773139' }, + { file: 'apps/vr-tests/src/stories/ThemeProvider.stories.tsx', hash: '16275933529011562097' }, + { file: 'apps/vr-tests/src/stories/Tile.stories.tsx', hash: '14561588542669597183' }, + { file: 'apps/vr-tests/src/stories/TilesList.stories.tsx', hash: '3260762837761387433' }, + { file: 'apps/vr-tests/src/stories/Toggle.stories.tsx', hash: '10938683553158804823' }, + { file: 'apps/vr-tests/src/stories/Tooltip.stories.tsx', hash: '15939194512245739562' }, + { file: 'apps/vr-tests/src/stories/react-charting/AreaChart.stories.tsx', hash: '8203280599867073608' }, + { file: 'apps/vr-tests/src/stories/react-charting/DonutChart.stories.tsx', hash: '11937359916768393790' }, + { file: 'apps/vr-tests/src/stories/react-charting/GaugeChart.stories.tsx', hash: '15594215412651597314' }, + { file: 'apps/vr-tests/src/stories/react-charting/HeatMapChart.stories.tsx', hash: '17519556808732036733' }, + { file: 'apps/vr-tests/src/stories/react-charting/HorizontalBarChart.stories.tsx', hash: '13460446107341381296' }, + { file: 'apps/vr-tests/src/stories/react-charting/Legend.stories.tsx', hash: '4654126725540170806' }, + { file: 'apps/vr-tests/src/stories/react-charting/LineChart.stories.tsx', hash: '6506744441684266097' }, + { file: 'apps/vr-tests/src/stories/react-charting/MultiStackBarChart.stories.tsx', hash: '7178505763800800532' }, + { file: 'apps/vr-tests/src/stories/react-charting/Piechart.stories.tsx', hash: '15708474069628495010' }, + { file: 'apps/vr-tests/src/stories/react-charting/SankeyChart.stories.tsx', hash: '1792240597863600821' }, + { file: 'apps/vr-tests/src/stories/react-charting/SparklineChart.stories.tsx', hash: '5855342004212481143' }, + { file: 'apps/vr-tests/src/stories/react-charting/StackedBarChart.stories.tsx', hash: '14972009123979681780' }, + { file: 'apps/vr-tests/src/stories/react-charting/TreeChart.stories.tsx', hash: '15398948019288529805' }, + { file: 'apps/vr-tests/src/stories/react-charting/VerticalBarChart.stories.tsx', hash: '7754085844637102451' }, + { file: 'apps/vr-tests/src/stories/z_Callout.stories.tsx', hash: '4524354447780660422' }, + { file: 'apps/vr-tests/src/utilities/DevOnlyStoryHeader.tsx', hash: '8874774277832379592' }, + { file: 'apps/vr-tests/src/utilities/TestWrapperDecorator.tsx', hash: '13027273294579000586' }, + { file: 'apps/vr-tests/src/utilities/index.ts', hash: '77713048722310053' }, + { file: 'apps/vr-tests/src/utilities/types.ts', hash: '9013455218348419096' }, + { file: 'apps/vr-tests/tsconfig.json', hash: '3557499061294487570' }, + ], + '@fluentui/react-positioning': [ + { file: 'packages/react-components/react-positioning/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-positioning/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-positioning/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-positioning/CHANGELOG.json', hash: '4356248270442561023' }, + { file: 'packages/react-components/react-positioning/CHANGELOG.md', hash: '4847233942356914741' }, + { file: 'packages/react-components/react-positioning/LICENSE', hash: '5089922527070038048' }, + { file: 'packages/react-components/react-positioning/README.md', hash: '2417768606010098926' }, + { + file: 'packages/react-components/react-positioning/bundle-size/usePopper.fixture.js', + hash: '5183258026047587937', + }, + { file: 'packages/react-components/react-positioning/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-positioning/config/tests.js', hash: '16913843724990866890' }, + { + file: 'packages/react-components/react-positioning/etc/react-positioning.api.md', + hash: '18364179009656134909', + }, + { file: 'packages/react-components/react-positioning/jest.config.js', hash: '1911801824510823535' }, + { file: 'packages/react-components/react-positioning/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-positioning/package.json', + hash: '11419968880051446930', + deps: [ + 'npm:@floating-ui/dom', + 'npm:@floating-ui/devtools', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-positioning/project.json', hash: '5245284538107226970' }, + { file: 'packages/react-components/react-positioning/src/constants.ts', hash: '4812450824066108556' }, + { file: 'packages/react-components/react-positioning/src/createArrowStyles.ts', hash: '4816621363801924689' }, + { + file: 'packages/react-components/react-positioning/src/createPositionManager.ts', + hash: '10300998202434588247', + }, + { file: 'packages/react-components/react-positioning/src/createSlideStyles.ts', hash: '3653766009363043840' }, + { + file: 'packages/react-components/react-positioning/src/createVirtualElementFromClick.ts', + hash: '2923071022768484245', + }, + { file: 'packages/react-components/react-positioning/src/index.ts', hash: '3889687764181437663' }, + { + file: 'packages/react-components/react-positioning/src/middleware/coverTarget.ts', + hash: '11446814345254290307', + }, + { file: 'packages/react-components/react-positioning/src/middleware/flip.ts', hash: '4128332339311583311' }, + { file: 'packages/react-components/react-positioning/src/middleware/index.ts', hash: '10004993199977720656' }, + { + file: 'packages/react-components/react-positioning/src/middleware/intersecting.ts', + hash: '10280650566629227467', + }, + { + file: 'packages/react-components/react-positioning/src/middleware/matchTargetSize.test.ts', + hash: '15419830195167683077', + }, + { + file: 'packages/react-components/react-positioning/src/middleware/matchTargetSize.ts', + hash: '15376750943530628376', + }, + { + file: 'packages/react-components/react-positioning/src/middleware/maxSize.test.ts', + hash: '11847409733577590675', + }, + { file: 'packages/react-components/react-positioning/src/middleware/maxSize.ts', hash: '10958991407201312433' }, + { file: 'packages/react-components/react-positioning/src/middleware/offset.ts', hash: '1347711306628883277' }, + { file: 'packages/react-components/react-positioning/src/middleware/shift.ts', hash: '13982566745452618280' }, + { file: 'packages/react-components/react-positioning/src/types.test.ts', hash: '16061796271944754604' }, + { file: 'packages/react-components/react-positioning/src/types.ts', hash: '4162330794092529449' }, + { file: 'packages/react-components/react-positioning/src/usePositioning.ts', hash: '17591020286304693906' }, + { + file: 'packages/react-components/react-positioning/src/usePositioningMouseTarget.ts', + hash: '8779354366062893755', + }, + { file: 'packages/react-components/react-positioning/src/utils/debounce.ts', hash: '13930592765832964864' }, + { file: 'packages/react-components/react-positioning/src/utils/devtools.ts', hash: '6102556645022930270' }, + { + file: 'packages/react-components/react-positioning/src/utils/fromFloatingUIPlacement.test.ts', + hash: '14530768433800914418', + }, + { + file: 'packages/react-components/react-positioning/src/utils/fromFloatingUIPlacement.ts', + hash: '5306564900046691192', + }, + { file: 'packages/react-components/react-positioning/src/utils/getBoundary.ts', hash: '3368949379853203911' }, + { + file: 'packages/react-components/react-positioning/src/utils/getFloatingUIOffset.test.ts', + hash: '7575841896073806048', + }, + { + file: 'packages/react-components/react-positioning/src/utils/getFloatingUIOffset.ts', + hash: '9985513219821945968', + }, + { + file: 'packages/react-components/react-positioning/src/utils/getReactFiberFromNode.ts', + hash: '8959436210742527297', + }, + { + file: 'packages/react-components/react-positioning/src/utils/getScrollParent.ts', + hash: '18070071901955288061', + }, + { + file: 'packages/react-components/react-positioning/src/utils/hasAutoFocusFilter.ts', + hash: '2112971738028654481', + }, + { file: 'packages/react-components/react-positioning/src/utils/index.ts', hash: '998032976871910048' }, + { + file: 'packages/react-components/react-positioning/src/utils/listScrollParents.test.ts', + hash: '11927392465683226617', + }, + { + file: 'packages/react-components/react-positioning/src/utils/listScrollParents.ts', + hash: '1611437915141190212', + }, + { + file: 'packages/react-components/react-positioning/src/utils/mergeArrowOffset.test.ts', + hash: '12878054589651221300', + }, + { + file: 'packages/react-components/react-positioning/src/utils/mergeArrowOffset.ts', + hash: '14933934374399891510', + }, + { + file: 'packages/react-components/react-positioning/src/utils/normalizeAutoSize.test.ts', + hash: '3117602037330931432', + }, + { + file: 'packages/react-components/react-positioning/src/utils/normalizeAutoSize.ts', + hash: '990736725046059569', + }, + { + file: 'packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.test.ts', + hash: '1498123558613702867', + }, + { + file: 'packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.ts', + hash: '13333945119299100587', + }, + { + file: 'packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.test.ts', + hash: '4826160436314984224', + }, + { + file: 'packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.ts', + hash: '16730999955673908650', + }, + { + file: 'packages/react-components/react-positioning/src/utils/toFloatingUIPadding.test.ts', + hash: '1971653496535654260', + }, + { + file: 'packages/react-components/react-positioning/src/utils/toFloatingUIPadding.ts', + hash: '14419864248559003091', + }, + { + file: 'packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.test.ts', + hash: '11727863645223188803', + }, + { + file: 'packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.ts', + hash: '6079489230626652709', + }, + { + file: 'packages/react-components/react-positioning/src/utils/toggleScrollListener.test.ts', + hash: '10649142849159055061', + }, + { + file: 'packages/react-components/react-positioning/src/utils/toggleScrollListener.ts', + hash: '2156607211095016409', + }, + { + file: 'packages/react-components/react-positioning/src/utils/useCallbackRef.test.ts', + hash: '4294465573577228095', + }, + { file: 'packages/react-components/react-positioning/src/utils/useCallbackRef.ts', hash: '9531693418244808481' }, + { + file: 'packages/react-components/react-positioning/src/utils/writeArrowUpdates.ts', + hash: '6018473284504345707', + }, + { + file: 'packages/react-components/react-positioning/src/utils/writeContainerupdates.ts', + hash: '4817679150978717204', + }, + { file: 'packages/react-components/react-positioning/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/react-positioning/tsconfig.lib.json', hash: '14975475306433073951' }, + { file: 'packages/react-components/react-positioning/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-window-provider': [ + { file: 'packages/react-window-provider/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-window-provider/.npmignore', hash: '7699079327417375383' }, + { file: 'packages/react-window-provider/CHANGELOG.json', hash: '17196202453103955991' }, + { file: 'packages/react-window-provider/CHANGELOG.md', hash: '14116626830318945402' }, + { file: 'packages/react-window-provider/LICENSE', hash: '11661279664396385797' }, + { file: 'packages/react-window-provider/README.md', hash: '7476292892779210215' }, + { file: 'packages/react-window-provider/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/react-window-provider/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-window-provider/etc/react-window-provider.api.md', hash: '17731887639684768729' }, + { file: 'packages/react-window-provider/jest.config.js', hash: '12858682342254308337' }, + { file: 'packages/react-window-provider/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-window-provider/package.json', + hash: '16162568207572742971', + deps: [ + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/test-utilities', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-window-provider/project.json', hash: '9373053046562156021' }, + { file: 'packages/react-window-provider/src/WindowProvider.test.tsx', hash: '2877876259272044445' }, + { file: 'packages/react-window-provider/src/WindowProvider.tsx', hash: '2732980198195700826' }, + { file: 'packages/react-window-provider/src/index.ts', hash: '9447988520403946318' }, + { file: 'packages/react-window-provider/src/version.ts', hash: '11880968333285263790' }, + { file: 'packages/react-window-provider/tsconfig.json', hash: '17912118017775714616' }, + ], + '@fluentui/react-bindings': [ + { file: 'packages/fluentui/react-bindings/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-bindings/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-bindings/README.md', hash: '5554826359153268764' }, + { file: 'packages/fluentui/react-bindings/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-bindings/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-bindings/jest.config.js', hash: '13482069522961692092' }, + { + file: 'packages/fluentui/react-bindings/package.json', + hash: '14346723190653309755', + deps: [ + 'npm:@babel/runtime', + '@fluentui/accessibility', + '@fluentui/dom-utilities', + '@fluentui/react-component-event-listener', + '@fluentui/react-component-ref', + '@fluentui/react-northstar-fela-renderer', + '@fluentui/react-northstar-styles-renderer', + '@fluentui/state', + '@fluentui/styles', + 'npm:classnames', + 'npm:lodash', + 'npm:prop-types', + 'npm:react-is', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:@types/classnames', + 'npm:lerna-alias', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/fluentui/react-bindings/project.json', hash: '3098724062779490806' }, + { file: 'packages/fluentui/react-bindings/src/FocusZone/AutoFocusZone.tsx', hash: '4199334887796948956' }, + { file: 'packages/fluentui/react-bindings/src/FocusZone/AutoFocusZone.types.tsx', hash: '16937245917268822243' }, + { file: 'packages/fluentui/react-bindings/src/FocusZone/CHANGELOG.md', hash: '5737717684221164128' }, + { file: 'packages/fluentui/react-bindings/src/FocusZone/FocusTrapZone.tsx', hash: '9271770944176692894' }, + { file: 'packages/fluentui/react-bindings/src/FocusZone/FocusTrapZone.types.tsx', hash: '6721933620429714223' }, + { file: 'packages/fluentui/react-bindings/src/FocusZone/FocusZone.tsx', hash: '14087648694060844766' }, + { file: 'packages/fluentui/react-bindings/src/FocusZone/FocusZone.types.ts', hash: '6484887556753817232' }, + { file: 'packages/fluentui/react-bindings/src/FocusZone/focusUtilities.ts', hash: '2134347144387795778' }, + { file: 'packages/fluentui/react-bindings/src/accessibility/getAccessibility.ts', hash: '9905959387087432414' }, + { file: 'packages/fluentui/react-bindings/src/accessibility/getKeyDownHandlers.ts', hash: '6508602261516528592' }, + { + file: 'packages/fluentui/react-bindings/src/accessibility/shouldHandleOnKeys.ts', + hash: '12329884440950941235', + }, + { file: 'packages/fluentui/react-bindings/src/accessibility/types.ts', hash: '8507962475349685827' }, + { file: 'packages/fluentui/react-bindings/src/compose/compose.ts', hash: '16921634422497416980' }, + { file: 'packages/fluentui/react-bindings/src/compose/computeDisplayNames.ts', hash: '704472153739541249' }, + { file: 'packages/fluentui/react-bindings/src/compose/consts.ts', hash: '18337356828678773963' }, + { file: 'packages/fluentui/react-bindings/src/compose/index.ts', hash: '7773316450141562148' }, + { file: 'packages/fluentui/react-bindings/src/compose/mergeComposeOptions.ts', hash: '17185748125330766477' }, + { file: 'packages/fluentui/react-bindings/src/compose/mergeProps.ts', hash: '15881221697179785074' }, + { file: 'packages/fluentui/react-bindings/src/compose/mergeSlotProp.ts', hash: '18383256050663696082' }, + { file: 'packages/fluentui/react-bindings/src/compose/resolveSlotProps.ts', hash: '8030070576146247010' }, + { file: 'packages/fluentui/react-bindings/src/compose/wasComposedPreviously.ts', hash: '1226672711091759257' }, + { file: 'packages/fluentui/react-bindings/src/context-selector/createContext.ts', hash: '6163243789877254688' }, + { file: 'packages/fluentui/react-bindings/src/context-selector/types.ts', hash: '3161780195518143211' }, + { + file: 'packages/fluentui/react-bindings/src/context-selector/useContextSelector.ts', + hash: '3491395144900557629', + }, + { + file: 'packages/fluentui/react-bindings/src/context-selector/useContextSelectors.ts', + hash: '1342159682866982236', + }, + { file: 'packages/fluentui/react-bindings/src/context-selector/utils.ts', hash: '17756608188575203033' }, + { file: 'packages/fluentui/react-bindings/src/context.ts', hash: '2504617840057081701' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useAccessibility.ts', hash: '3730530656873314231' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useAutoControlled.ts', hash: '12020210326362175081' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useCallbackRef.ts', hash: '15260364968763194765' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useDeepMemo.ts', hash: '17664904316742192049' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useDispatchEffect.ts', hash: '523797428438187487' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useEventCallback.ts', hash: '11138167901000764022' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useFirstMount.ts', hash: '5753842204700810434' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useIFrameFocusDispatch.ts', hash: '13901258080296261682' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useIFrameListener.ts', hash: '4676672547320515687' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useIsomorphicLayoutEffect.ts', hash: '16377582332034814703' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useMergedRefs.ts', hash: '15582394188849760782' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useOnIFrameFocus.ts', hash: '56459656605781305' }, + { file: 'packages/fluentui/react-bindings/src/hooks/usePrevious.ts', hash: '5452705422744365770' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useStateManager.ts', hash: '8134058115156793670' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useStyles.ts', hash: '11209977391116869457' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useTriggerElement.tsx', hash: '9730828956065644548' }, + { file: 'packages/fluentui/react-bindings/src/hooks/useUnhandledProps.ts', hash: '4316059602380733165' }, + { file: 'packages/fluentui/react-bindings/src/index.ts', hash: '13182088506342331974' }, + { file: 'packages/fluentui/react-bindings/src/renderer/RendererContext.ts', hash: '4606835393501439883' }, + { file: 'packages/fluentui/react-bindings/src/styles/calculateAnimationTimeout.ts', hash: '3577142684966313424' }, + { file: 'packages/fluentui/react-bindings/src/styles/convertCssTimeToNumber.ts', hash: '3428534051178975951' }, + { file: 'packages/fluentui/react-bindings/src/styles/createAnimationStyles.tsx', hash: '14985851399239248408' }, + { file: 'packages/fluentui/react-bindings/src/styles/getStyles.ts', hash: '7851722266115206239' }, + { file: 'packages/fluentui/react-bindings/src/styles/resolveStyles.ts', hash: '7494741231570264675' }, + { file: 'packages/fluentui/react-bindings/src/styles/resolveVariables.ts', hash: '3897312963989673948' }, + { file: 'packages/fluentui/react-bindings/src/styles/types.ts', hash: '2676463631309134474' }, + { file: 'packages/fluentui/react-bindings/src/telemetry/types.ts', hash: '3385728758588133783' }, + { file: 'packages/fluentui/react-bindings/src/telemetry/useTelemetry.ts', hash: '14279666623156289577' }, + { file: 'packages/fluentui/react-bindings/src/utils/childrenExist.ts', hash: '3619272524856284343' }, + { file: 'packages/fluentui/react-bindings/src/utils/findScrollableParent.ts', hash: '8216732174798600668' }, + { file: 'packages/fluentui/react-bindings/src/utils/getDocument.ts', hash: '397452915165775464' }, + { file: 'packages/fluentui/react-bindings/src/utils/getElementType.ts', hash: '14632862614401893634' }, + { file: 'packages/fluentui/react-bindings/src/utils/getUnhandledProps.ts', hash: '14871327633567128163' }, + { file: 'packages/fluentui/react-bindings/src/utils/getWindow.ts', hash: '7683375961842184637' }, + { file: 'packages/fluentui/react-bindings/src/utils/mergeVariablesOverrides.ts', hash: '14811737278601338124' }, + { file: 'packages/fluentui/react-bindings/src/utils/shouldWrapFocus.ts', hash: '8136869381532219162' }, + { file: 'packages/fluentui/react-bindings/test/FocusZone/AutoFocusZone-test.tsx', hash: '432487377960798699' }, + { file: 'packages/fluentui/react-bindings/test/FocusZone/FocusTrapZone-test.tsx', hash: '14127515033989798787' }, + { + file: 'packages/fluentui/react-bindings/test/FocusZone/FocusZone-EventHandler-test.tsx', + hash: '5758157999812473111', + }, + { file: 'packages/fluentui/react-bindings/test/FocusZone/FocusZone-test.tsx', hash: '11460017440070152700' }, + { file: 'packages/fluentui/react-bindings/test/FocusZone/test-utils.ts', hash: '16799898351626858078' }, + { + file: 'packages/fluentui/react-bindings/test/accesibility/getKeyDownHandlers-test.ts', + hash: '1314342481233369549', + }, + { + file: 'packages/fluentui/react-bindings/test/accesibility/shouldHandleOnKeys-test.ts', + hash: '13917629719032260976', + }, + { file: 'packages/fluentui/react-bindings/test/compose/compose-test.tsx', hash: '3618138711751616693' }, + { file: 'packages/fluentui/react-bindings/test/compose/mergeProps-test.ts', hash: '1891371554949461375' }, + { file: 'packages/fluentui/react-bindings/test/compose/resolveSlotProps-test.tsx', hash: '2129678302506557664' }, + { file: 'packages/fluentui/react-bindings/test/compose/useCompose-test.tsx', hash: '14515254382037114858' }, + { file: 'packages/fluentui/react-bindings/test/consoleUtil.ts', hash: '11997294564447184338' }, + { + file: 'packages/fluentui/react-bindings/test/context-selector/createContext-test.tsx', + hash: '15993208680747699154', + }, + { + file: 'packages/fluentui/react-bindings/test/context-selector/useContextSelector-test.tsx', + hash: '6822936490356771304', + }, + { + file: 'packages/fluentui/react-bindings/test/context-selector/useContextSelectors-test.tsx', + hash: '3338357613132226466', + }, + { file: 'packages/fluentui/react-bindings/test/hooks/useAccessibility-test.tsx', hash: '5452579922559097617' }, + { file: 'packages/fluentui/react-bindings/test/hooks/useAutoControlled-test.tsx', hash: '14614999468088827773' }, + { file: 'packages/fluentui/react-bindings/test/hooks/useDispatchEffect-test.tsx', hash: '6496925804728216557' }, + { file: 'packages/fluentui/react-bindings/test/hooks/usePrevious-test.tsx', hash: '13651472287362297844' }, + { file: 'packages/fluentui/react-bindings/test/hooks/useStateManager-test.tsx', hash: '11737377582758503546' }, + { file: 'packages/fluentui/react-bindings/test/hooks/useStyles-test.tsx', hash: '2925905690540636262' }, + { file: 'packages/fluentui/react-bindings/test/hooks/useTriggerElement-test.tsx', hash: '18153385961075510546' }, + { + file: 'packages/fluentui/react-bindings/test/styles/convertCssTimeToNumber-test.ts', + hash: '5642114857287271136', + }, + { + file: 'packages/fluentui/react-bindings/test/styles/createAnimationStyles-test.ts', + hash: '15257190023862954681', + }, + { file: 'packages/fluentui/react-bindings/test/styles/resolveStyles-test.ts', hash: '8240816706156827159' }, + { file: 'packages/fluentui/react-bindings/test/styles/resolveVariables-test.ts', hash: '10826720913442109057' }, + { file: 'packages/fluentui/react-bindings/test/utils/childrenExist-test.tsx', hash: '13994241964374512709' }, + { file: 'packages/fluentui/react-bindings/test/utils/getElementType-test.ts', hash: '13908434027580439892' }, + { file: 'packages/fluentui/react-bindings/test/utils/getUnhandledProps-test.ts', hash: '1460976605323951307' }, + { file: 'packages/fluentui/react-bindings/tsconfig.json', hash: '1277968607411436930' }, + ], + '@fluentui/react-components': [ + { file: 'packages/react-components/react-components/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-components/.eslintrc.json', hash: '16150242168540975786' }, + { file: 'packages/react-components/react-components/.gitignore', hash: '13372735117233221667' }, + { file: 'packages/react-components/react-components/.storybook/main.js', hash: '5645485037555221482' }, + { file: 'packages/react-components/react-components/.storybook/preview.js', hash: '8038481416891966773' }, + { file: 'packages/react-components/react-components/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-components/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-components/CHANGELOG.json', hash: '3933417667138973232' }, + { file: 'packages/react-components/react-components/CHANGELOG.md', hash: '15663227018170933658' }, + { file: 'packages/react-components/react-components/LICENSE', hash: '10255657226477075794' }, + { file: 'packages/react-components/react-components/README.md', hash: '11587884417356817137' }, + { file: 'packages/react-components/react-components/assets/alert-keyboard.png', hash: '15249732195573034994' }, + { file: 'packages/react-components/react-components/assets/alert-mouse-touch.png', hash: '12249460593997234403' }, + { file: 'packages/react-components/react-components/assets/dialog-anatomy.png', hash: '9790416628323586517' }, + { file: 'packages/react-components/react-components/assets/modal-keyboard.png', hash: '9012292467073880542' }, + { file: 'packages/react-components/react-components/assets/modal-mouse-touch.png', hash: '3033643199014309546' }, + { + file: 'packages/react-components/react-components/assets/non-modal-keyboard.png', + hash: '11384655701996986210', + }, + { + file: 'packages/react-components/react-components/assets/non-modal-mouse-touch.png', + hash: '16247262641136131571', + }, + { + file: 'packages/react-components/react-components/bundle-size/ButtonProviderAndTheme.fixture.js', + hash: '17019747510632370214', + }, + { + file: 'packages/react-components/react-components/bundle-size/MultipleComponents.fixture.js', + hash: '7427445305648856257', + }, + { + file: 'packages/react-components/react-components/bundle-size/ProviderAndTheme.fixture.js', + hash: '12914286093854360655', + }, + { file: 'packages/react-components/react-components/config/api-extractor.json', hash: '124052868224837692' }, + { + file: 'packages/react-components/react-components/config/api-extractor.unstable.json', + hash: '9512960027067289088', + }, + { file: 'packages/react-components/react-components/config/pre-copy.json', hash: '8933244511250124822' }, + { file: 'packages/react-components/react-components/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-components/docs/MIGRATION-NOTES.md', hash: '4521324631345225068' }, + { file: 'packages/react-components/react-components/etc/react-components.api.md', hash: '18095309827241643254' }, + { + file: 'packages/react-components/react-components/etc/react-components.unstable.api.md', + hash: '4109143100580997913', + }, + { file: 'packages/react-components/react-components/jest.config.js', hash: '11810330001400121529' }, + { file: 'packages/react-components/react-components/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-components/package.json', + hash: '6821435458712997046', + deps: [ + '@fluentui/react-accordion', + '@fluentui/react-alert', + '@fluentui/react-avatar', + '@fluentui/react-badge', + '@fluentui/react-button', + '@fluentui/react-card', + '@fluentui/react-checkbox', + '@fluentui/react-combobox', + '@fluentui/react-dialog', + '@fluentui/react-divider', + '@fluentui/react-drawer', + '@fluentui/react-field', + '@fluentui/react-image', + '@fluentui/react-infobutton', + '@fluentui/react-infolabel', + '@fluentui/react-input', + '@fluentui/react-label', + '@fluentui/react-link', + '@fluentui/react-menu', + '@fluentui/react-overflow', + '@fluentui/react-persona', + '@fluentui/react-portal', + '@fluentui/react-popover', + '@fluentui/react-positioning', + '@fluentui/react-progress', + '@fluentui/react-provider', + '@fluentui/react-radio', + '@fluentui/react-select', + '@fluentui/react-shared-contexts', + '@fluentui/react-skeleton', + '@fluentui/react-slider', + '@fluentui/react-spinbutton', + '@fluentui/react-spinner', + '@fluentui/react-switch', + '@fluentui/react-table', + '@fluentui/react-tabs', + '@fluentui/react-tabster', + '@fluentui/react-tags', + '@fluentui/react-textarea', + '@fluentui/react-theme', + '@fluentui/react-toast', + '@fluentui/react-toolbar', + '@fluentui/react-tooltip', + '@fluentui/react-utilities', + '@fluentui/react-text', + '@fluentui/react-virtualizer', + '@fluentui/react-tree', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/react-message-bar', + '@fluentui/react-breadcrumb', + '@fluentui/eslint-plugin', + 'npm:react-hook-form', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-components/project.json', hash: '15915132305255283070' }, + { + file: 'packages/react-components/react-components/src/Concepts/Icons/ReactIconGrid.tsx', + hash: '15648366075411592656', + }, + { file: 'packages/react-components/react-components/src/index.ts', hash: '9602633354990534895' }, + { file: 'packages/react-components/react-components/src/unstable/index.ts', hash: '17127110014653250113' }, + { + file: 'packages/react-components/react-components/src/unstable/package.json__tmpl__', + hash: '14469017445902889019', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Accordion.stories.tsx', + hash: '5261274850033724196', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/AccordionFaq.stories.tsx', + hash: '3711296761758539461', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Button.stories.tsx', + hash: '9135053873053394162', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Checkbox.stories.tsx', + hash: '18422225923861027839', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Input.stories.tsx', + hash: '13031699296131987255', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Link.stories.tsx', + hash: '9284047790819060564', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/ListOfScenarios.stories.mdx', + hash: '18008776474087302263', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Menu.stories.tsx', + hash: '5496036381131988450', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/MenuSplitGroup.stories.tsx', + hash: '13714132678203560925', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Popover.stories.tsx', + hash: '1484726241091602586', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/RadioGroup.stories.tsx', + hash: '7308888334073459506', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Slider.stories.tsx', + hash: '13192574564934461371', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Spinner.stories.tsx', + hash: '6986065893612221448', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/SplitButton.stories.tsx', + hash: '7176544829687519936', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Switch.stories.tsx', + hash: '15970436396001209984', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/TabListHorizontal.stories.tsx', + hash: '9938150602800442377', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/TabListOverflow.stories.tsx', + hash: '15038822242040527851', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/TabListVertical.stories.tsx', + hash: '16057335239807774657', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Textarea.stories.tsx', + hash: '9635748482005322625', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/ToggleButton.stories.tsx', + hash: '17407275276966444104', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Tooltip.stories.tsx', + hash: '17546321637487339355', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/index.stories.tsx', + hash: '14658705870973190500', + }, + { + file: 'packages/react-components/react-components/stories/AccessibilityScenarios/utils.tsx', + hash: '7215302430949320194', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Accessibility/AccessibleComponents.stories.mdx', + hash: '3295771942860848592', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Accessibility/AccessibleExperiences.stories.mdx', + hash: '2900291657079817589', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Accessibility/FocusIndicator.stories.mdx', + hash: '1717337186527803258', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Axis.stories.tsx', + hash: '10318348332393326457', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/CircularNavigation.stories.tsx', + hash: '6781750418223870091', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Default.stories.tsx', + hash: '13313594812236532657', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Memorize.stories.tsx', + hash: '1820798249934632278', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/index.stories.tsx', + hash: '6967816180948552799', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/useArrowNavigationGroupDescription.md', + hash: '2031447657270072240', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/Default.stories.tsx', + hash: '13224545909870604584', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindAllWhere.stories.tsx', + hash: '9017130571781111926', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindFirst.stories.tsx', + hash: '317264299185587249', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindLast.stories.tsx', + hash: '18052296652579568309', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindNext.stories.tsx', + hash: '17925103578502891443', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindPrevious.stories.tsx', + hash: '10084829099646404716', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/index.stories.tsx', + hash: '9794805248352104971', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/useFocusFindersDescription.md', + hash: '9049217529934217066', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/Default.stories.tsx', + hash: '9065252716333350570', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/Limited.stories.tsx', + hash: '9555705919210714710', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/LimitedTrapFocus.stories.tsx', + hash: '13702213217400448084', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/index.stories.tsx', + hash: '157374974440116360', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/useFocusableGroupDescription.md', + hash: '8837756520973428757', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/Default.stories.tsx', + hash: '12297290380505646340', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/InertFocusTrap.stories.tsx', + hash: '18201555536110422598', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/index.stories.tsx', + hash: '6330308829316680025', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/useModalAttributesDescription.md', + hash: '8341388369435401062', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/Default.stories.tsx', + hash: '10152294546566560089', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/MultipleNames.stories.tsx', + hash: '9397108312180853844', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/index.stories.tsx', + hash: '2051553537147974031', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/useObservedElementDescription.md', + hash: '9542011707964967918', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/Default.stories.stories.tsx', + hash: '11494446748156496224', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/FocusRestoreHistory.stories.tsx', + hash: '3681364596967862819', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/UserRestoreFocus.stories.stories.tsx', + hash: '9793947365179708427', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/index.stories.tsx', + hash: '1448366491964554873', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/useRestoreFocusSourceDescription.md', + hash: '727321225129794077', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/Default.stories.tsx', + hash: '6326143576473960437', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/index.stories.tsx', + hash: '5639657332615332719', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/useUncontrolledFocusDescription.md', + hash: '9882522118220737320', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Icons/Icon.stories.mdx', + hash: '1197053246392928276', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Icons/IconTable.stories.mdx', + hash: '4896154475220076794', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/MatchTargetSize.stories.tsx', + hash: '4487974487102015866', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/OverflowBoundaryPadding.stories.tsx', + hash: '14304319794708833793', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningAnchorToTarget.stories.tsx', + hash: '12152022627674249494', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningBestPractices.md', + hash: '4693427405734490301', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningCoverTarget.stories.tsx', + hash: '15984490079701264594', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningDefault.stories.tsx', + hash: '14129962775143693627', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningDescription.md', + hash: '12862623453561421564', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningDisableTransform.stories.tsx', + hash: '6806805123184905778', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningFlipBoundary.stories.tsx', + hash: '15305995841896426816', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningImperativeAnchorTarget.stories.tsx', + hash: '6229434466729398121', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningImperativePositionUpdate.stories.tsx', + hash: '12186453763733206915', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningOffsetFunction.stories.tsx', + hash: '11624576393760387377', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningOffsetValue.stories.tsx', + hash: '13170786133550262509', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningOverflowBoundary.stories.tsx', + hash: '8317968229863701716', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningShorthandPositions.stories.tsx', + hash: '7414638675247295275', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/index.stories.tsx', + hash: '9056885794431434983', + }, + { + file: 'packages/react-components/react-components/stories/Concepts/Positioning/utils.stories.tsx', + hash: '9474602900711575872', + }, + { + file: 'packages/react-components/react-components/stories/Migrations/Flex.Stack.stories.mdx', + hash: '828823711976364144', + }, + { + file: 'packages/react-components/react-components/stories/Migrations/Flex.StackItem.stories.mdx', + hash: '7377444694311401484', + }, + { + file: 'packages/react-components/react-components/stories/Migrations/utils.stories.test.tsx', + hash: '15201130176337142924', + }, + { + file: 'packages/react-components/react-components/stories/Migrations/utils.stories.tsx', + hash: '10595453595829049863', + }, + { file: 'packages/react-components/react-components/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-components/tsconfig.lib.json', hash: '2330431448937249608' }, + { file: 'packages/react-components/react-components/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-spinner': [ + { file: 'packages/react-components/react-spinner/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-spinner/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-spinner/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-spinner/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-spinner/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-spinner/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-spinner/CHANGELOG.json', hash: '3280890749163842627' }, + { file: 'packages/react-components/react-spinner/CHANGELOG.md', hash: '12792390149026574823' }, + { file: 'packages/react-components/react-spinner/LICENSE', hash: '14553388487284712078' }, + { file: 'packages/react-components/react-spinner/README.md', hash: '10087843760024113769' }, + { file: 'packages/react-components/react-spinner/bundle-size/Spinner.fixture.js', hash: '5992710611579886911' }, + { file: 'packages/react-components/react-spinner/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-spinner/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-spinner/docs/MIGRATION.md', hash: '4271430718709456187' }, + { file: 'packages/react-components/react-spinner/docs/Spec.md', hash: '8108242124769863167' }, + { file: 'packages/react-components/react-spinner/etc/react-spinner.api.md', hash: '6943912974007911651' }, + { file: 'packages/react-components/react-spinner/jest.config.js', hash: '11572584267529988690' }, + { file: 'packages/react-components/react-spinner/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-spinner/package.json', + hash: '12596561334443842269', + deps: [ + '@fluentui/react-jsx-runtime', + '@fluentui/react-label', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-spinner/project.json', hash: '16333624156321919677' }, + { file: 'packages/react-components/react-spinner/src/Spinner.ts', hash: '17775753931591747303' }, + { + file: 'packages/react-components/react-spinner/src/components/Spinner/DefaultSvg.tsx', + hash: '2492171149641849851', + }, + { + file: 'packages/react-components/react-spinner/src/components/Spinner/Spinner.test.tsx', + hash: '16612308379317311160', + }, + { + file: 'packages/react-components/react-spinner/src/components/Spinner/Spinner.tsx', + hash: '11487284038740981348', + }, + { + file: 'packages/react-components/react-spinner/src/components/Spinner/Spinner.types.ts', + hash: '11615634852342602324', + }, + { file: 'packages/react-components/react-spinner/src/components/Spinner/index.ts', hash: '5479350457561490387' }, + { + file: 'packages/react-components/react-spinner/src/components/Spinner/renderSpinner.tsx', + hash: '5967742638171182429', + }, + { + file: 'packages/react-components/react-spinner/src/components/Spinner/useSpinner.tsx', + hash: '5315405786166520951', + }, + { + file: 'packages/react-components/react-spinner/src/components/Spinner/useSpinnerStyles.styles.ts', + hash: '9739165177237335620', + }, + { file: 'packages/react-components/react-spinner/src/contexts/SpinnerContext.ts', hash: '15656672469164403534' }, + { file: 'packages/react-components/react-spinner/src/contexts/index.ts', hash: '18421418232924887404' }, + { file: 'packages/react-components/react-spinner/src/index.ts', hash: '12925949466018778405' }, + { file: 'packages/react-components/react-spinner/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerAppearance.stories.tsx', + hash: '2553746132280526795', + }, + { + file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerBestPractices.md', + hash: '14494351965436565766', + }, + { + file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerDefault.stories.tsx', + hash: '5947288127862564020', + }, + { + file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerDescription.md', + hash: '2258339333508008098', + }, + { + file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerLabel.stories.tsx', + hash: '15822432114109503670', + }, + { + file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerSize.stories.tsx', + hash: '3317730365577270949', + }, + { + file: 'packages/react-components/react-spinner/stories/Spinner/index.stories.tsx', + hash: '17876671725641816133', + }, + { file: 'packages/react-components/react-spinner/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-spinner/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-spinner/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-motions-preview': [ + { file: 'packages/react-components/react-motions-preview/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-motions-preview/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-motions-preview/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-motions-preview/.storybook/preview.js', hash: '1791378012295456991' }, + { + file: 'packages/react-components/react-motions-preview/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-motions-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-motions-preview/LICENSE', hash: '7138711571438781774' }, + { file: 'packages/react-components/react-motions-preview/README.md', hash: '17498722335979354024' }, + { file: 'packages/react-components/react-motions-preview/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-motions-preview/config/tests.js', hash: '16913843724990866890' }, + { + file: 'packages/react-components/react-motions-preview/etc/react-motions-preview.api.md', + hash: '12743696528407065677', + }, + { file: 'packages/react-components/react-motions-preview/jest.config.js', hash: '15864305436409793865' }, + { file: 'packages/react-components/react-motions-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-motions-preview/package.json', + hash: '3696756658694654553', + deps: [ + '@fluentui/react-shared-contexts', + '@fluentui/react-utilities', + 'npm:@swc/helpers', + 'npm:react-is', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-motions-preview/project.json', hash: '12296590422921745095' }, + { + file: 'packages/react-components/react-motions-preview/src/factories/createAtom.test.tsx', + hash: '1047206177802055811', + }, + { + file: 'packages/react-components/react-motions-preview/src/factories/createAtom.ts', + hash: '17739657523056274812', + }, + { + file: 'packages/react-components/react-motions-preview/src/factories/createPresence.test.tsx', + hash: '2448045071357828784', + }, + { + file: 'packages/react-components/react-motions-preview/src/factories/createPresence.ts', + hash: '11236981719297968322', + }, + { + file: 'packages/react-components/react-motions-preview/src/hooks/useIsReducedMotion.test.tsx', + hash: '8887201488767817033', + }, + { + file: 'packages/react-components/react-motions-preview/src/hooks/useIsReducedMotion.ts', + hash: '4106377544759115907', + }, + { + file: 'packages/react-components/react-motions-preview/src/hooks/useMotionImperativeRef.test.tsx', + hash: '7993664620419479161', + }, + { + file: 'packages/react-components/react-motions-preview/src/hooks/useMotionImperativeRef.ts', + hash: '1632631879080868129', + }, + { file: 'packages/react-components/react-motions-preview/src/index.ts', hash: '8131632330745602255' }, + { file: 'packages/react-components/react-motions-preview/src/motions/atom/fade.ts', hash: '7486748159940927914' }, + { + file: 'packages/react-components/react-motions-preview/src/motions/atom/index.ts', + hash: '16753120998278687480', + }, + { + file: 'packages/react-components/react-motions-preview/src/motions/atom/scale.ts', + hash: '16979265713479036920', + }, + { + file: 'packages/react-components/react-motions-preview/src/motions/atom/slide.ts', + hash: '5741435285593211782', + }, + { + file: 'packages/react-components/react-motions-preview/src/motions/atom/tokens.ts', + hash: '15231772390421822079', + }, + { + file: 'packages/react-components/react-motions-preview/src/motions/presence/fade.ts', + hash: '10807810800143017859', + }, + { + file: 'packages/react-components/react-motions-preview/src/motions/presence/index.ts', + hash: '16753120998278687480', + }, + { + file: 'packages/react-components/react-motions-preview/src/motions/presence/scale.ts', + hash: '7134190811033882315', + }, + { + file: 'packages/react-components/react-motions-preview/src/motions/presence/slide.ts', + hash: '8481780441080782244', + }, + { file: 'packages/react-components/react-motions-preview/src/types.ts', hash: '16229776850125672679' }, + { + file: 'packages/react-components/react-motions-preview/src/utils/getChildElement.test.tsx', + hash: '8841238823050513452', + }, + { + file: 'packages/react-components/react-motions-preview/src/utils/getChildElement.ts', + hash: '12546952061692389581', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/CreateAtom.stories.md', + hash: '5893255975788056106', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/CreateAtom.stories.tsx', + hash: '5782165169486360963', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/CreatePresence.stories.md', + hash: '12142141077619929634', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/CreatePresence.stories.tsx', + hash: '11545114550073710457', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/CustomAtom.stories.md', + hash: '8191854486238302831', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/CustomAtom.stories.tsx', + hash: '4462772013305188622', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/ImperativeRefPlayState.stories.md', + hash: '5961784044077758105', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/ImperativeRefPlayState.stories.tsx', + hash: '11804399789389445656', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/MotionDefault.stories.tsx', + hash: '12159791219112165896', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/MotionDescription.md', + hash: '6774937818624891077', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/MotionLibrary.stories.md', + hash: '4799461372227860502', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/MotionLibrary.stories.tsx', + hash: '18001169511280264377', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/PresenceAppear.stories.md', + hash: '16813191778445729025', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/PresenceAppear.stories.tsx', + hash: '10249922983205892831', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/PresenceUnmountOnExit.stories.md', + hash: '4980239457863910445', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/PresenceUnmountOnExit.stories.tsx', + hash: '16450904187679412076', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/TokensUsage.stories.md', + hash: '13013623227649516115', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/TokensUsage.stories.tsx', + hash: '7189530296843671807', + }, + { + file: 'packages/react-components/react-motions-preview/stories/Motion/index.stories.ts', + hash: '11605213295335544089', + }, + { file: 'packages/react-components/react-motions-preview/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-motions-preview/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-motions-preview/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/scheme-utilities': [ + { file: 'packages/scheme-utilities/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/scheme-utilities/.npmignore', hash: '47056201363133096' }, + { file: 'packages/scheme-utilities/CHANGELOG.json', hash: '10831990114637121424' }, + { file: 'packages/scheme-utilities/CHANGELOG.md', hash: '11561547596405105751' }, + { file: 'packages/scheme-utilities/LICENSE', hash: '15398908318832700008' }, + { file: 'packages/scheme-utilities/README.md', hash: '17462190804923423170' }, + { file: 'packages/scheme-utilities/example.png', hash: '5304605585461739441' }, + { file: 'packages/scheme-utilities/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/scheme-utilities/package.json', + hash: '16797713160660247554', + deps: [ + '@fluentui/theme', + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'packages/scheme-utilities/project.json', hash: '18207278494590169669' }, + { file: 'packages/scheme-utilities/src/index.ts', hash: '12035799633836013526' }, + { file: 'packages/scheme-utilities/src/utilities.ts', hash: '12593228511294575624' }, + { file: 'packages/scheme-utilities/src/variantThemeType.ts', hash: '848702664263651221' }, + { file: 'packages/scheme-utilities/src/variants.ts', hash: '11090517405357739151' }, + { file: 'packages/scheme-utilities/src/version.ts', hash: '6347835831859264688' }, + { file: 'packages/scheme-utilities/tsconfig.json', hash: '2384178432518439606' }, + { file: 'packages/scheme-utilities/webpack.config.js', hash: '3900466450664749944' }, + ], + '@fluentui/react-input': [ + { file: 'packages/react-components/react-input/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-input/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-input/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-input/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-input/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-input/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-input/CHANGELOG.json', hash: '16902776417506954393' }, + { file: 'packages/react-components/react-input/CHANGELOG.md', hash: '12659363144881103523' }, + { file: 'packages/react-components/react-input/LICENSE', hash: '17921975243735857791' }, + { file: 'packages/react-components/react-input/README.md', hash: '5789151720033807483' }, + { file: 'packages/react-components/react-input/bundle-size/Input.fixture.js', hash: '15446350093573765852' }, + { file: 'packages/react-components/react-input/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-input/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-input/docs/Spec-styling.md', hash: '12893795690828629797' }, + { file: 'packages/react-components/react-input/docs/Spec-variants.md', hash: '14494830944240525083' }, + { file: 'packages/react-components/react-input/docs/Spec.md', hash: '5306108129554253618' }, + { file: 'packages/react-components/react-input/etc/react-input.api.md', hash: '8395695789212950644' }, + { file: 'packages/react-components/react-input/jest.config.js', hash: '8466466753515983120' }, + { file: 'packages/react-components/react-input/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-input/package.json', + hash: '10777907370065733381', + deps: [ + '@fluentui/react-field', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/react-text', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-input/project.json', hash: '10199176759041895704' }, + { file: 'packages/react-components/react-input/src/Input.ts', hash: '10429882019873203426' }, + { + file: 'packages/react-components/react-input/src/components/Input/Input.test.tsx', + hash: '9943754574556771396', + }, + { file: 'packages/react-components/react-input/src/components/Input/Input.tsx', hash: '2593076107497856454' }, + { + file: 'packages/react-components/react-input/src/components/Input/Input.types.ts', + hash: '5991618772507553577', + }, + { + file: 'packages/react-components/react-input/src/components/Input/__snapshots__/Input.test.tsx.snap', + hash: '8696547501521471701', + }, + { file: 'packages/react-components/react-input/src/components/Input/index.ts', hash: '9629035020677552243' }, + { + file: 'packages/react-components/react-input/src/components/Input/renderInput.tsx', + hash: '17464159116055354529', + }, + { file: 'packages/react-components/react-input/src/components/Input/useInput.ts', hash: '7096296182051013434' }, + { + file: 'packages/react-components/react-input/src/components/Input/useInputStyles.styles.ts', + hash: '17030352388227783114', + }, + { file: 'packages/react-components/react-input/src/index.ts', hash: '1860518375733372751' }, + { file: 'packages/react-components/react-input/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-input/stories/Input/InputAppearance.stories.tsx', + hash: '16605839565629747390', + }, + { file: 'packages/react-components/react-input/stories/Input/InputBestPractices.md', hash: '84526309930099766' }, + { + file: 'packages/react-components/react-input/stories/Input/InputContentBeforeAfter.stories.tsx', + hash: '8269160108933136866', + }, + { + file: 'packages/react-components/react-input/stories/Input/InputControlled.stories.tsx', + hash: '1485009000094407100', + }, + { + file: 'packages/react-components/react-input/stories/Input/InputDefault.stories.tsx', + hash: '5448587894533551399', + }, + { file: 'packages/react-components/react-input/stories/Input/InputDescription.md', hash: '11217759867033227655' }, + { + file: 'packages/react-components/react-input/stories/Input/InputDisabled.stories.tsx', + hash: '10764757400929231557', + }, + { + file: 'packages/react-components/react-input/stories/Input/InputInline.stories.tsx', + hash: '9245622638907234352', + }, + { + file: 'packages/react-components/react-input/stories/Input/InputPlaceholder.stories.tsx', + hash: '7248062527841234398', + }, + { + file: 'packages/react-components/react-input/stories/Input/InputSize.stories.tsx', + hash: '18091173436190785431', + }, + { + file: 'packages/react-components/react-input/stories/Input/InputType.stories.tsx', + hash: '13006764319554437671', + }, + { + file: 'packages/react-components/react-input/stories/Input/InputUncontrolled.stories.tsx', + hash: '3016126986246343470', + }, + { file: 'packages/react-components/react-input/stories/Input/index.stories.tsx', hash: '668131335390485946' }, + { file: 'packages/react-components/react-input/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-input/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-input/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-alert': [ + { file: 'packages/react-components/react-alert/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-alert/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-alert/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-alert/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-alert/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-alert/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-alert/CHANGELOG.json', hash: '83764038971076835' }, + { file: 'packages/react-components/react-alert/CHANGELOG.md', hash: '5175289707873145207' }, + { file: 'packages/react-components/react-alert/LICENSE', hash: '16252253352334995182' }, + { file: 'packages/react-components/react-alert/README.md', hash: '8131351181258092235' }, + { file: 'packages/react-components/react-alert/bundle-size/Alert.fixture.js', hash: '6960359331564279967' }, + { file: 'packages/react-components/react-alert/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-alert/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-alert/docs/Migration.md', hash: '3244421341483603138' }, + { file: 'packages/react-components/react-alert/docs/Spec.md', hash: '3535638354464497682' }, + { file: 'packages/react-components/react-alert/etc/react-alert.api.md', hash: '11555109672566503552' }, + { file: 'packages/react-components/react-alert/jest.config.js', hash: '6773733652008972475' }, + { file: 'packages/react-components/react-alert/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-alert/package.json', + hash: '9312706055205409696', + deps: [ + '@fluentui/react-avatar', + '@fluentui/react-button', + 'npm:@fluentui/react-icons', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-alert/project.json', hash: '17708818428810623099' }, + { file: 'packages/react-components/react-alert/src/Alert.ts', hash: '478807590469964963' }, + { + file: 'packages/react-components/react-alert/src/components/Alert/Alert.test.tsx', + hash: '17628692932786280219', + }, + { file: 'packages/react-components/react-alert/src/components/Alert/Alert.tsx', hash: '8611980662277149012' }, + { + file: 'packages/react-components/react-alert/src/components/Alert/Alert.types.ts', + hash: '8366251069357697620', + }, + { file: 'packages/react-components/react-alert/src/components/Alert/index.ts', hash: '11930097802137833911' }, + { + file: 'packages/react-components/react-alert/src/components/Alert/renderAlert.tsx', + hash: '264769270216256867', + }, + { file: 'packages/react-components/react-alert/src/components/Alert/useAlert.tsx', hash: '14231640179437609527' }, + { + file: 'packages/react-components/react-alert/src/components/Alert/useAlertStyles.styles.ts', + hash: '4259845399899254015', + }, + { file: 'packages/react-components/react-alert/src/index.ts', hash: '6190406855358997804' }, + { file: 'packages/react-components/react-alert/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-alert/stories/Alert/AlertAction.stories.tsx', + hash: '8515455195432805008', + }, + { + file: 'packages/react-components/react-alert/stories/Alert/AlertAppearance.stories.tsx', + hash: '4232635026830561594', + }, + { + file: 'packages/react-components/react-alert/stories/Alert/AlertAvatar.stories.tsx', + hash: '11364985778976863191', + }, + { + file: 'packages/react-components/react-alert/stories/Alert/AlertDefault.stories.tsx', + hash: '10864479039782208759', + }, + { file: 'packages/react-components/react-alert/stories/Alert/AlertDescription.md', hash: '3742228099756735432' }, + { + file: 'packages/react-components/react-alert/stories/Alert/AlertIcon.stories.tsx', + hash: '10179515381949480946', + }, + { + file: 'packages/react-components/react-alert/stories/Alert/AlertIntent.stories.tsx', + hash: '8283473983697123165', + }, + { file: 'packages/react-components/react-alert/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-alert/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-alert/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-northstar': [ + { file: 'packages/fluentui/react-northstar/.eslintrc.json', hash: '13803004907869012609' }, + { file: 'packages/fluentui/react-northstar/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-northstar/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-northstar/bundle-size-auditor.config.js', hash: '8028542614695662015' }, + { file: 'packages/fluentui/react-northstar/gulpfile.ts', hash: '14333776487082390359' }, + { file: 'packages/fluentui/react-northstar/jest-setup.js', hash: '17870551335504754824' }, + { file: 'packages/fluentui/react-northstar/jest.config.js', hash: '4825447735539633911' }, + { + file: 'packages/fluentui/react-northstar/package.json', + hash: '499347416330387156', + deps: [ + 'npm:@babel/runtime', + '@fluentui/accessibility', + '@fluentui/dom-utilities', + '@fluentui/react-bindings', + '@fluentui/react-component-event-listener', + '@fluentui/react-component-nesting-registry', + '@fluentui/react-component-ref', + '@fluentui/react-icons-northstar', + '@fluentui/react-northstar-styles-renderer', + '@fluentui/react-portal-compat-context', + '@fluentui/react-proptypes', + '@fluentui/state', + '@fluentui/styles', + 'npm:@popperjs/core', + 'npm:body-scroll-lock', + 'npm:classnames', + 'npm:compute-scroll-into-view', + 'npm:downshift', + 'npm:lodash', + 'npm:prop-types', + 'npm:react-is', + 'npm:react-transition-group', + '@fluentui/a11y-testing', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:@types/classnames', + 'npm:@types/faker', + 'npm:@types/simulant', + 'npm:csstype', + 'npm:faker', + 'npm:fela-tools', + 'npm:lerna-alias', + 'npm:qs', + 'npm:simulant', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-northstar/project.json', hash: '7507003061923116844' }, + { file: 'packages/fluentui/react-northstar/src/components/Accordion/Accordion.tsx', hash: '7847851307995452672' }, + { + file: 'packages/fluentui/react-northstar/src/components/Accordion/AccordionContent.tsx', + hash: '5958238493847788660', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Accordion/AccordionTitle.tsx', + hash: '11415776891352447674', + }, + { file: 'packages/fluentui/react-northstar/src/components/Alert/Alert.tsx', hash: '9224562400260505665' }, + { + file: 'packages/fluentui/react-northstar/src/components/Alert/AlertDismissAction.tsx', + hash: '7141232459421707385', + }, + { file: 'packages/fluentui/react-northstar/src/components/Animation/Animation.tsx', hash: '4846505342841501437' }, + { + file: 'packages/fluentui/react-northstar/src/components/Animation/useAnimationStyles.ts', + hash: '14061391268464766749', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Attachment/Attachment.tsx', + hash: '6863685528312287349', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentAction.tsx', + hash: '9228082367920242983', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentBody.tsx', + hash: '5925296059771866051', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentDescription.tsx', + hash: '6198469028872251324', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentHeader.tsx', + hash: '3372430972652335250', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentIcon.tsx', + hash: '8521330284142418811', + }, + { file: 'packages/fluentui/react-northstar/src/components/Avatar/Avatar.tsx', hash: '748495765262535632' }, + { file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarIcon.tsx', hash: '6356413093529093028' }, + { file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarImage.tsx', hash: '10099046153004731582' }, + { file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarLabel.tsx', hash: '6515048819985511977' }, + { + file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarStatus.tsx', + hash: '12428186955649381416', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarStatusIcon.tsx', + hash: '23743443202367657', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarStatusImage.tsx', + hash: '7400669439155618306', + }, + { file: 'packages/fluentui/react-northstar/src/components/Box/Box.tsx', hash: '17633032765631059213' }, + { + file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/Breadcrumb.tsx', + hash: '14104155212011880671', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbDivider.tsx', + hash: '8114640623799863659', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbItem.tsx', + hash: '17240006574900530403', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbLink.tsx', + hash: '1048134297688410819', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/breadcrumbContext.ts', + hash: '1438190142722133938', + }, + { file: 'packages/fluentui/react-northstar/src/components/Button/Button.tsx', hash: '4311649433023922831' }, + { + file: 'packages/fluentui/react-northstar/src/components/Button/ButtonContent.tsx', + hash: '3931831893392389213', + }, + { file: 'packages/fluentui/react-northstar/src/components/Button/ButtonGroup.tsx', hash: '7402632697949078434' }, + { file: 'packages/fluentui/react-northstar/src/components/Card/Card.tsx', hash: '9533175431319145381' }, + { file: 'packages/fluentui/react-northstar/src/components/Card/CardBody.tsx', hash: '3806087985347141687' }, + { file: 'packages/fluentui/react-northstar/src/components/Card/CardColumn.tsx', hash: '2871691175852794018' }, + { + file: 'packages/fluentui/react-northstar/src/components/Card/CardExpandableBox.tsx', + hash: '17304646012266738418', + }, + { file: 'packages/fluentui/react-northstar/src/components/Card/CardFooter.tsx', hash: '6069914877925460964' }, + { file: 'packages/fluentui/react-northstar/src/components/Card/CardHeader.tsx', hash: '14899392316230501271' }, + { file: 'packages/fluentui/react-northstar/src/components/Card/CardPreview.tsx', hash: '1386160146759486587' }, + { + file: 'packages/fluentui/react-northstar/src/components/Card/CardTopControls.tsx', + hash: '17777570770525993895', + }, + { file: 'packages/fluentui/react-northstar/src/components/Carousel/Carousel.tsx', hash: '11520270933550892655' }, + { + file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselItem.tsx', + hash: '1704241988545725264', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselNavigation.tsx', + hash: '4510245105983260686', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselNavigationItem.tsx', + hash: '10603463667236101339', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselPaddle.tsx', + hash: '9122961265585463134', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselPaddlesContainer.tsx', + hash: '5884466783611926198', + }, + { file: 'packages/fluentui/react-northstar/src/components/Carousel/utils.ts', hash: '6646904547431357450' }, + { file: 'packages/fluentui/react-northstar/src/components/Chat/Chat.tsx', hash: '13880991049888535467' }, + { file: 'packages/fluentui/react-northstar/src/components/Chat/ChatItem.tsx', hash: '1137720096355947257' }, + { file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessage.tsx', hash: '8979923955515009671' }, + { + file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessageContent.tsx', + hash: '2975300193933132172', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessageDetails.tsx', + hash: '10975285986126230325', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessageHeader.tsx', + hash: '4772325511787546898', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessageReadStatus.tsx', + hash: '17571050160211548251', + }, + { file: 'packages/fluentui/react-northstar/src/components/Chat/chatContext.ts', hash: '5000819501526969887' }, + { file: 'packages/fluentui/react-northstar/src/components/Chat/chatDensity.ts', hash: '5054885706948365266' }, + { + file: 'packages/fluentui/react-northstar/src/components/Chat/chatItemContext.ts', + hash: '13614626662989007113', + }, + { file: 'packages/fluentui/react-northstar/src/components/Checkbox/Checkbox.tsx', hash: '14439246164524684209' }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/Datepicker.tsx', + hash: '9534980117701527084', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendar.tsx', + hash: '3211241399984334245', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarCell.tsx', + hash: '16785975453348029131', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarCellButton.tsx', + hash: '2761189948651095557', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarGrid.tsx', + hash: '5019574059023183656', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarGridRow.tsx', + hash: '12416200835622390859', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeader.tsx', + hash: '17486710640239626226', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeaderAction.tsx', + hash: '8284481544334173905', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeaderCell.tsx', + hash: '8518396826686737330', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/navigateToNewDate.tsx', + hash: '7051424537855326066', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Datepicker/validateDate.tsx', + hash: '9396488240033088261', + }, + { file: 'packages/fluentui/react-northstar/src/components/Debug/Debug.tsx', hash: '14065203870232706053' }, + { + file: 'packages/fluentui/react-northstar/src/components/Debug/DebugComponentViewer.tsx', + hash: '312272768687233713', + }, + { file: 'packages/fluentui/react-northstar/src/components/Debug/DebugLine.tsx', hash: '6997002265541711848' }, + { file: 'packages/fluentui/react-northstar/src/components/Debug/DebugPanel.tsx', hash: '2098947295622538161' }, + { + file: 'packages/fluentui/react-northstar/src/components/Debug/DebugPanelData.tsx', + hash: '8428394548659896147', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Debug/DebugPanelItem.tsx', + hash: '9645300271690604629', + }, + { file: 'packages/fluentui/react-northstar/src/components/Debug/DebugRect.tsx', hash: '16625045838109269939' }, + { file: 'packages/fluentui/react-northstar/src/components/Debug/DebugSelector.tsx', hash: '3361885019360260680' }, + { + file: 'packages/fluentui/react-northstar/src/components/Debug/FiberNavigator.ts', + hash: '10855844848543490871', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Debug/ScrollToBottom.tsx', + hash: '14726500017049937957', + }, + { file: 'packages/fluentui/react-northstar/src/components/Debug/utils.ts', hash: '9684972719826588233' }, + { file: 'packages/fluentui/react-northstar/src/components/Design/Design.tsx', hash: '6229896215043380269' }, + { file: 'packages/fluentui/react-northstar/src/components/Dialog/Dialog.tsx', hash: '18211608977012615962' }, + { file: 'packages/fluentui/react-northstar/src/components/Dialog/DialogFooter.tsx', hash: '1435085386463972271' }, + { file: 'packages/fluentui/react-northstar/src/components/Divider/Divider.tsx', hash: '6350215477669300948' }, + { + file: 'packages/fluentui/react-northstar/src/components/Divider/DividerContent.tsx', + hash: '9591743889610800047', + }, + { file: 'packages/fluentui/react-northstar/src/components/Dropdown/Dropdown.tsx', hash: '13599762255086408029' }, + { + file: 'packages/fluentui/react-northstar/src/components/Dropdown/DropdownItem.tsx', + hash: '3323611497200258084', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Dropdown/DropdownSearchInput.tsx', + hash: '17164119620919997898', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Dropdown/DropdownSelectedItem.tsx', + hash: '2904683542301281280', + }, + { file: 'packages/fluentui/react-northstar/src/components/Embed/Embed.tsx', hash: '12376322776372112440' }, + { file: 'packages/fluentui/react-northstar/src/components/Flex/Flex.tsx', hash: '6982818452667314494' }, + { file: 'packages/fluentui/react-northstar/src/components/Flex/FlexItem.tsx', hash: '7403794678590116362' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/Form.tsx', hash: '8800910644203565529' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormButton.tsx', hash: '6828241720533638517' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormCheckbox.tsx', hash: '8436042708466632685' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormDatepicker.tsx', hash: '9982491292209506743' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormDropdown.tsx', hash: '18343620127439352258' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormField.tsx', hash: '9850188118835358297' }, + { + file: 'packages/fluentui/react-northstar/src/components/Form/FormFieldCustom.tsx', + hash: '16478427839518575650', + }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormInput.tsx', hash: '4163778940666564276' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormLabel.tsx', hash: '17043166478578447646' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormMessage.tsx', hash: '14582622186573458664' }, + { + file: 'packages/fluentui/react-northstar/src/components/Form/FormRadioGroup.tsx', + hash: '13787505355590378398', + }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormSlider.tsx', hash: '2295018312442464350' }, + { file: 'packages/fluentui/react-northstar/src/components/Form/FormTextArea.tsx', hash: '11999103602418495457' }, + { + file: 'packages/fluentui/react-northstar/src/components/Form/utils/formFieldBase.tsx', + hash: '16744216472522332613', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Form/utils/formFieldBaseContext.ts', + hash: '6795608341138352021', + }, + { file: 'packages/fluentui/react-northstar/src/components/Grid/Grid.tsx', hash: '17829217997130257266' }, + { file: 'packages/fluentui/react-northstar/src/components/Header/Header.tsx', hash: '8321592622301865843' }, + { + file: 'packages/fluentui/react-northstar/src/components/Header/HeaderDescription.tsx', + hash: '12329129616562820040', + }, + { file: 'packages/fluentui/react-northstar/src/components/Image/Image.tsx', hash: '11715297073047328469' }, + { file: 'packages/fluentui/react-northstar/src/components/Input/Input.tsx', hash: '17524959832323688861' }, + { file: 'packages/fluentui/react-northstar/src/components/Input/InputLabel.tsx', hash: '3206187582738539858' }, + { + file: 'packages/fluentui/react-northstar/src/components/ItemLayout/ItemLayout.tsx', + hash: '12259100651728852178', + }, + { file: 'packages/fluentui/react-northstar/src/components/Label/Label.tsx', hash: '5574878035520448894' }, + { file: 'packages/fluentui/react-northstar/src/components/Layout/Layout.tsx', hash: '15086000609764124919' }, + { file: 'packages/fluentui/react-northstar/src/components/List/List.tsx', hash: '6719230630130939027' }, + { file: 'packages/fluentui/react-northstar/src/components/List/ListItem.tsx', hash: '10782306238570299215' }, + { file: 'packages/fluentui/react-northstar/src/components/List/ListItemContent.tsx', hash: '48301783195265259' }, + { + file: 'packages/fluentui/react-northstar/src/components/List/ListItemContentMedia.tsx', + hash: '5598481049636795501', + }, + { + file: 'packages/fluentui/react-northstar/src/components/List/ListItemEndMedia.tsx', + hash: '6789731293643721633', + }, + { file: 'packages/fluentui/react-northstar/src/components/List/ListItemHeader.tsx', hash: '7891876198223932068' }, + { + file: 'packages/fluentui/react-northstar/src/components/List/ListItemHeaderMedia.tsx', + hash: '17353093073515839995', + }, + { file: 'packages/fluentui/react-northstar/src/components/List/ListItemMedia.tsx', hash: '1839407672304566822' }, + { file: 'packages/fluentui/react-northstar/src/components/List/listContext.ts', hash: '5582826283619864480' }, + { file: 'packages/fluentui/react-northstar/src/components/Loader/Loader.tsx', hash: '15483985739222235559' }, + { file: 'packages/fluentui/react-northstar/src/components/Menu/Menu.tsx', hash: '12313766017894638815' }, + { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuDivider.tsx', hash: '17427088955008148713' }, + { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItem.tsx', hash: '11169096155311292931' }, + { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItemContent.tsx', hash: '157525961668173349' }, + { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItemIcon.tsx', hash: '762586184035746897' }, + { + file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItemIndicator.tsx', + hash: '6320687466613633373', + }, + { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItemWrapper.tsx', hash: '782835574565158855' }, + { file: 'packages/fluentui/react-northstar/src/components/Menu/menuContext.ts', hash: '15576168683242631358' }, + { + file: 'packages/fluentui/react-northstar/src/components/MenuButton/MenuButton.tsx', + hash: '17186151859409294592', + }, + { + file: 'packages/fluentui/react-northstar/src/components/MenuButton/focusUtils.ts', + hash: '4021202567179231632', + }, + { file: 'packages/fluentui/react-northstar/src/components/Pill/Pill.tsx', hash: '6737044775224698236' }, + { file: 'packages/fluentui/react-northstar/src/components/Pill/PillAction.tsx', hash: '16439491134552422595' }, + { file: 'packages/fluentui/react-northstar/src/components/Pill/PillContent.tsx', hash: '15130144542802390574' }, + { file: 'packages/fluentui/react-northstar/src/components/Pill/PillGroup.tsx', hash: '2031881207353659816' }, + { file: 'packages/fluentui/react-northstar/src/components/Pill/PillIcon.tsx', hash: '2997520707141875519' }, + { file: 'packages/fluentui/react-northstar/src/components/Pill/PillImage.tsx', hash: '10744709375563168633' }, + { file: 'packages/fluentui/react-northstar/src/components/Pill/pillContext.ts', hash: '2505511281109627168' }, + { file: 'packages/fluentui/react-northstar/src/components/Popup/Popup.tsx', hash: '2116950962772469808' }, + { file: 'packages/fluentui/react-northstar/src/components/Popup/PopupContent.tsx', hash: '13214942977844333994' }, + { file: 'packages/fluentui/react-northstar/src/components/Portal/Portal.tsx', hash: '4059113526247197181' }, + { file: 'packages/fluentui/react-northstar/src/components/Portal/PortalInner.tsx', hash: '15771138805122631486' }, + { file: 'packages/fluentui/react-northstar/src/components/Portal/usePortalBox.ts', hash: '7292873357741174388' }, + { file: 'packages/fluentui/react-northstar/src/components/Provider/Provider.tsx', hash: '17319200045661840105' }, + { + file: 'packages/fluentui/react-northstar/src/components/Provider/ProviderConsumer.tsx', + hash: '9577051673823507002', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Provider/portalContext.ts', + hash: '2790279822616713840', + }, + { + file: 'packages/fluentui/react-northstar/src/components/RadioGroup/RadioGroup.tsx', + hash: '8185987492309397036', + }, + { + file: 'packages/fluentui/react-northstar/src/components/RadioGroup/RadioGroupItem.tsx', + hash: '17763337922187266080', + }, + { file: 'packages/fluentui/react-northstar/src/components/Reaction/Reaction.tsx', hash: '9855657459992333918' }, + { + file: 'packages/fluentui/react-northstar/src/components/Reaction/ReactionGroup.tsx', + hash: '12898639338834562081', + }, + { file: 'packages/fluentui/react-northstar/src/components/Segment/Segment.tsx', hash: '10802148962264378566' }, + { file: 'packages/fluentui/react-northstar/src/components/Skeleton/Skeleton.tsx', hash: '9194215087688328488' }, + { + file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonAvatar.tsx', + hash: '1752780832066126053', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonButton.tsx', + hash: '13776964169747188024', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonInput.tsx', + hash: '10520006317011318873', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonLine.tsx', + hash: '6189182797866988357', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonShape.tsx', + hash: '12564093305001034373', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonText.tsx', + hash: '16689091522861482541', + }, + { file: 'packages/fluentui/react-northstar/src/components/Slider/Slider.tsx', hash: '12542593756393248009' }, + { + file: 'packages/fluentui/react-northstar/src/components/SplitButton/SplitButton.tsx', + hash: '4787098714518653252', + }, + { + file: 'packages/fluentui/react-northstar/src/components/SplitButton/SplitButtonDivider.tsx', + hash: '175848223623461295', + }, + { + file: 'packages/fluentui/react-northstar/src/components/SplitButton/SplitButtonToggle.tsx', + hash: '2707343881608045507', + }, + { file: 'packages/fluentui/react-northstar/src/components/Status/Status.tsx', hash: '10821702057553428900' }, + { file: 'packages/fluentui/react-northstar/src/components/SvgIcon/SvgIcon.tsx', hash: '3109903244853284027' }, + { file: 'packages/fluentui/react-northstar/src/components/Table/Table.tsx', hash: '778871863897788019' }, + { file: 'packages/fluentui/react-northstar/src/components/Table/TableCell.tsx', hash: '8238803278213630517' }, + { file: 'packages/fluentui/react-northstar/src/components/Table/TableRow.tsx', hash: '6734512422896790121' }, + { file: 'packages/fluentui/react-northstar/src/components/Text/Text.tsx', hash: '9973884439099941954' }, + { file: 'packages/fluentui/react-northstar/src/components/TextArea/TextArea.tsx', hash: '5641130885212054333' }, + { file: 'packages/fluentui/react-northstar/src/components/Toolbar/Toolbar.tsx', hash: '11935729523711567724' }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarCustomItem.tsx', + hash: '1279085528159215065', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarDivider.tsx', + hash: '5043878662361527710', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItem.tsx', + hash: '12695800097714476460', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItemIcon.tsx', + hash: '16151370246926301063', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItemWrapper.tsx', + hash: '9012982409637720351', + }, + { file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenu.tsx', hash: '6478316462425984571' }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuDivider.tsx', + hash: '6546410737380971683', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItem.tsx', + hash: '15769073730736985424', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemActiveIndicator.tsx', + hash: '14041778004530243120', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemContent.tsx', + hash: '3998710959312647803', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemIcon.tsx', + hash: '16155135638075618501', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemSubmenuIndicator.tsx', + hash: '13302511047352503675', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuRadioGroup.tsx', + hash: '5603033942394130558', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuRadioGroupWrapper.tsx', + hash: '8466623792113768046', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarRadioGroup.tsx', + hash: '3123593901161826064', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/toolbarMenuContext.ts', + hash: '1238926081544242605', + }, + { + file: 'packages/fluentui/react-northstar/src/components/Toolbar/toolbarVariablesContext.ts', + hash: '13932160866218966251', + }, + { file: 'packages/fluentui/react-northstar/src/components/Tooltip/Tooltip.tsx', hash: '13070181950608226518' }, + { + file: 'packages/fluentui/react-northstar/src/components/Tooltip/TooltipContent.tsx', + hash: '4939757598129192274', + }, + { file: 'packages/fluentui/react-northstar/src/components/Tree/Tree.tsx', hash: '12771547015248644605' }, + { file: 'packages/fluentui/react-northstar/src/components/Tree/TreeItem.tsx', hash: '15202258227432023831' }, + { file: 'packages/fluentui/react-northstar/src/components/Tree/TreeTitle.tsx', hash: '16953890156543402421' }, + { file: 'packages/fluentui/react-northstar/src/components/Tree/context.ts', hash: '8437912965928316617' }, + { + file: 'packages/fluentui/react-northstar/src/components/Tree/hooks/flattenTree.ts', + hash: '4113590590764830277', + }, + { file: 'packages/fluentui/react-northstar/src/components/Tree/hooks/useTree.ts', hash: '6320206367937777801' }, + { + file: 'packages/fluentui/react-northstar/src/components/Tree/hooks/useVirtualTree.ts', + hash: '9631571422855687019', + }, + { file: 'packages/fluentui/react-northstar/src/components/Video/Video.tsx', hash: '18023367418046249698' }, + { file: 'packages/fluentui/react-northstar/src/index.ts', hash: '6778225692631498331' }, + { file: 'packages/fluentui/react-northstar/src/styles/debugStyles.ts', hash: '7688079653834349124' }, + { file: 'packages/fluentui/react-northstar/src/styles/translateAlignProp.ts', hash: '752370909825380216' }, + { file: 'packages/fluentui/react-northstar/src/themes/colorUtils.ts', hash: '8838768133109851282' }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/animations/durations.ts', + hash: '14771948159306756204', + }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/animations/fade.ts', hash: '14454986281428325810' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/animations/index.ts', hash: '5678496085930231257' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/animations/scale.ts', hash: '5109538634901918243' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/animations/slide.ts', hash: '14163477310393579173' }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/animations/timingFunctions.ts', + hash: '14028571513420355031', + }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/categoryColors.ts', hash: '15037112319325605062' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/colors.ts', hash: '9976161978364344114' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/componentStyles.ts', hash: '16362963385923622430' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/componentVariables.ts', hash: '6218887021869389764' }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionContentStyles.ts', + hash: '17970759815785909371', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionStyles.ts', + hash: '10413457414052477945', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionTitleStyles.ts', + hash: '295522687558612603', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionTitleVariables.ts', + hash: '3774561873064648852', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionVariables.ts', + hash: '2912430932263239034', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/activeIndicatorUrl.ts', + hash: '16959025885783912107', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertDismissActionStyles.ts', + hash: '8883629395591772539', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertDismissActionVariables.ts', + hash: '10804710916761328142', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertStyles.ts', + hash: '4347489529828032292', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertVariables.ts', + hash: '12020207677689671077', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/dismissIndicatorUrl.ts', + hash: '17196885391107542824', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentActionStyles.ts', + hash: '3122251545754751723', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentActionVariables.ts', + hash: '596237278780895444', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentBodyStyles.ts', + hash: '1236954075014915745', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentBodyVariables.ts', + hash: '12990805591124852936', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionStyles.ts', + hash: '14860428913123777034', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionVariables.ts', + hash: '12291059340948640249', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentHeaderStyles.ts', + hash: '12349457700947533899', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentHeaderVariables.ts', + hash: '4518110835309799445', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentIconStyles.ts', + hash: '11569135969451134352', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentIconVariables.ts', + hash: '9483175780455240001', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentStyles.ts', + hash: '15779846505997170050', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentVariables.ts', + hash: '3257016234041658496', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarIconStyles.ts', + hash: '4028758838427045017', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarIconVariables.ts', + hash: '2591587808385506936', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarImageStyles.ts', + hash: '96468916043586572', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarImageVariables.ts', + hash: '364078636829947123', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarLabelStyles.ts', + hash: '13782254950157830747', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarLabelVariables.ts', + hash: '15759326830419612042', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarSizes.ts', + hash: '17627426635900559520', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusIconStyles.ts', + hash: '7312150310195387786', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusIconVariables.ts', + hash: '17985283974275043652', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusImageStyles.ts', + hash: '17469601204550358676', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusImageVariables.ts', + hash: '11925769658427898988', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusStyles.ts', + hash: '332835912119700268', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusVariables.ts', + hash: '2572589371592075388', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStyles.ts', + hash: '7585220263493020546', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarVariables.ts', + hash: '1013220856886105656', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbDividerStyles.ts', + hash: '4926331907265324786', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbDividerVariables.ts', + hash: '796340858591518739', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbItemStyles.ts', + hash: '13388667582142870191', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbItemVariables.ts', + hash: '18399125144127877635', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbLinkStyles.ts', + hash: '15716129793825526055', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbLinkVariables.ts', + hash: '10738404229116591081', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbStyles.ts', + hash: '4179557242661646205', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbVariables.ts', + hash: '17363705806688584245', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonContentStyles.ts', + hash: '4077583070496852803', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonContentVariables.ts', + hash: '3289841248962264502', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonGroupStyles.ts', + hash: '9666507498286403452', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonGroupVariables.ts', + hash: '10499263055740846178', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonStyles.ts', + hash: '17973504828742089357', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonVariables.ts', + hash: '2640286218711607201', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardBodyStyles.ts', + hash: '14909172558254849017', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardBodyVariables.ts', + hash: '2437497254977026043', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardExpandableBoxStyles.ts', + hash: '980512905984835656', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardExpandableBoxVariables.ts', + hash: '7021338153745781003', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardFooterStyles.ts', + hash: '17580288039580491037', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardFooterVariables.ts', + hash: '12358596455283625937', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardHeaderStyles.ts', + hash: '14086292031994645477', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardHeaderVariables.ts', + hash: '2022030864723901395', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardPreviewStyles.ts', + hash: '5004518115363761937', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardPreviewVariables.ts', + hash: '16953706850035132585', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardStyles.ts', + hash: '8302957385846401488', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardTopControlsStyles.ts', + hash: '13727651601497210158', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardTopControlsVariables.ts', + hash: '16228876906977315452', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardVariables.ts', + hash: '16781711713357575232', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselItemStyles.ts', + hash: '11574307512058055804', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselItemVariables.ts', + hash: '1924793607788525017', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationItemStyles.ts', + hash: '10541311879922069072', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationItemVariables.ts', + hash: '17505837565706332131', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationStyles.ts', + hash: '17465257619175089673', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationVariables.ts', + hash: '14862644286814505112', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddleStyles.ts', + hash: '15768400598026354031', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddleVariables.ts', + hash: '7026837716515901632', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddlesContainerStyles.ts', + hash: '1218307281472286341', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddlesContainerVariables.ts', + hash: '13329330458608992530', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselStyles.ts', + hash: '7060921143444106976', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselVariables.ts', + hash: '11487998778791836037', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/paddleIndicatorUrl.ts', + hash: '8627628437681655368', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStyles.ts', + hash: '1582706642481936333', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStylesComfy.ts', + hash: '11386244492140747182', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStylesCompact.ts', + hash: '5016674558785701877', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemVariables.ts', + hash: '16688620331680813181', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageContentStyles.ts', + hash: '11540241569015783983', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageContentVariables.ts', + hash: '5708450603124165917', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageDetailsStyles.ts', + hash: '6048357409017311258', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageDetailsVariables.ts', + hash: '16718678480987624974', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageReadStatusStyles.ts', + hash: '5475193133926447801', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageReadStatusVariables.ts', + hash: '15740441158743863734', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStyles.ts', + hash: '17222338827680820446', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesComfy.ts', + hash: '16595188472100188261', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesComfyRefresh.ts', + hash: '4128950085386110082', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesCompact.ts', + hash: '757629473240833905', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageVariables.ts', + hash: '8007373764332878604', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatStyles.ts', + hash: '15390513661512796187', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatVariables.ts', + hash: '6419897043496563561', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxIndeterminateIndicatorUrl.ts', + hash: '12604005374596722201', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxIndicatorUrl.ts', + hash: '2353877159274223154', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxStyles.ts', + hash: '7878158666403457041', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxVariables.ts', + hash: '364391724717931561', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellButtonStyles.ts', + hash: '3176373166612231046', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellButtonVariables.ts', + hash: '15696217644406185001', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellStyles.ts', + hash: '3042327811010476138', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellVariables.ts', + hash: '4640561316133584018', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridRowStyles.ts', + hash: '16537271159983756821', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridRowVariables.ts', + hash: '9947680763140590997', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridStyles.ts', + hash: '15005502310321623331', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridVariables.ts', + hash: '2746967052288976729', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderCellStyles.ts', + hash: '16834387999097607022', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderCellVariables.ts', + hash: '5137706892589995908', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderStyles.ts', + hash: '3409270825204207165', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderVariables.ts', + hash: '17773754208072779203', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarStyles.ts', + hash: '11348966078360204974', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarVariables.ts', + hash: '17049658367728325474', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerStyles.ts', + hash: '11904634714735254465', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerVariables.ts', + hash: '1230329683489056098', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogFooterStyles.ts', + hash: '8619218828106996268', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogStyles.ts', + hash: '8701768500376985092', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogVariables.ts', + hash: '14149951396267779743', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerContentStyles.ts', + hash: '7008797215036081870', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerStyles.ts', + hash: '13628850534872246317', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerVariables.ts', + hash: '6700241170430353431', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/checkableIndicatorUrl.ts', + hash: '8426540039198534384', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownItemStyles.ts', + hash: '452058418927530843', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownItemVariables.ts', + hash: '12518581659264948700', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSearchInputStyles.ts', + hash: '17403407436454230120', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSearchInputVariables.ts', + hash: '4778959973055463483', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSelectedItemStyles.ts', + hash: '5036604166569706092', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSelectedItemVariables.ts', + hash: '14555252578886112431', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownStyles.ts', + hash: '12075814017562592102', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownVariables.ts', + hash: '11773654079465347425', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Embed/embedStyles.ts', + hash: '11157393565182874186', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Embed/embedVariables.ts', + hash: '10946929391434652119', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Embed/pauseIndicatorUrl.ts', + hash: '14163463494638038708', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Embed/playIndicatorUrl.ts', + hash: '1165694472322477497', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexItemStyles.ts', + hash: '2381351329806131630', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexItemVariables.ts', + hash: '11530360091302042085', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexStyles.ts', + hash: '5534555220898109500', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexVariables.ts', + hash: '5828825052348643989', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/utils.ts', + hash: '4853854352747265011', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formFieldStyles.ts', + hash: '17727513840262178993', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formFieldVariables.ts', + hash: '18442808810925646135', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formLabelStyles.ts', + hash: '6489034326455172577', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formLabelVariables.ts', + hash: '9967727401450345621', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formMessageStyles.ts', + hash: '11729883337119568865', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formMessageVariables.ts', + hash: '8869872308474735363', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formStyles.ts', + hash: '14707309113461419683', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formVariables.tsx', + hash: '2786566580798801176', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Grid/gridStyles.ts', + hash: '10049913074815360538', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Grid/gridVariables.ts', + hash: '12210096003294268830', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Header/headerDescriptionStyles.ts', + hash: '11898695898065277973', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Header/headerDescriptionVariables.ts', + hash: '3619509329923923644', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Header/headerStyles.ts', + hash: '16835135212128136021', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Header/headerVariables.ts', + hash: '7758571779047444865', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Image/imageStyles.ts', + hash: '17845919072455127529', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Image/imageVariables.ts', + hash: '1845819916963201984', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Input/inputLabelStyles.ts', + hash: '15104638982297733077', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Input/inputLabelVariables.ts', + hash: '11133331271628197753', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Input/inputStyles.ts', + hash: '16976371114124373927', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Input/inputVariables.ts', + hash: '11698651023241377505', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/ItemLayout/itemLayoutStyles.ts', + hash: '100148364675088556', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/ItemLayout/itemLayoutVariables.ts', + hash: '14521132758200335944', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Label/labelStyles.ts', + hash: '14608065136488682405', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Label/labelVariables.ts', + hash: '7479397155226657895', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Layout/layoutStyles.ts', + hash: '13744831783491541854', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Layout/layoutVariables.ts', + hash: '7302828397390671261', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentMediaStyles.ts', + hash: '1727630438167673409', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentMediaVariables.ts', + hash: '6423418385782322076', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentStyles.ts', + hash: '7860236970815947468', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentVariables.ts', + hash: '17891798796238203862', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemEndMediaStyles.ts', + hash: '246926601143118644', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemEndMediaVariables.ts', + hash: '7729472269563542419', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderMediaStyles.ts', + hash: '12777502619116582480', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderMediaVariables.ts', + hash: '7507427195942104304', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderStyles.ts', + hash: '14906219517476433568', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderVariables.ts', + hash: '12344372430050573068', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemMediaStyles.ts', + hash: '17898380125799493607', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemMediaVariables.ts', + hash: '6861309937633703425', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemStyles.ts', + hash: '205333425101367318', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemVariables.ts', + hash: '7222413230872375070', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listStyles.ts', + hash: '5463710304513147120', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Loader/loaderStyles.ts', + hash: '5135493479101604144', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Loader/loaderVariables.ts', + hash: '1883827659536054756', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuDividerStyles.ts', + hash: '15828338080211425311', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuDividerVariables.ts', + hash: '11560978881139451417', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemContentStyles.ts', + hash: '1918897226975957072', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemContentVariables.ts', + hash: '621507624809262373', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIconStyles.ts', + hash: '1657821507101974044', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIconVariables.ts', + hash: '6954194845806585307', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIndicatorStyles.ts', + hash: '4334389388364090134', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIndicatorVariables.ts', + hash: '8707343247379130288', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemStyles.ts', + hash: '10906382449999724608', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemVariables.ts', + hash: '9114105854017503869', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemWrapperStyles.ts', + hash: '6570713768429180434', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemWrapperVariables.ts', + hash: '6034023239339142317', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuStyles.ts', + hash: '11330709786324826763', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuVariables.ts', + hash: '12202973407267122016', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/submenuIndicatorDirection.ts', + hash: '16676013216713793391', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/MenuButton/menuButtonStyles.ts', + hash: '14056489040055258236', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillActionStyles.ts', + hash: '8218667687715450430', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillContentStyles.ts', + hash: '5988198946627089021', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillGroupStyles.ts', + hash: '14234046157967030444', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillIconStyles.ts', + hash: '4833084607297422898', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillImageStyles.ts', + hash: '5722176440840103726', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillStyles.ts', + hash: '7875089542439177635', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillVariables.ts', + hash: '16970434371176489441', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Popup/popupContentStyles.ts', + hash: '11551065107006703006', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Popup/popupContentVariables.ts', + hash: '15155299609498501605', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Provider/providerStyles.ts', + hash: '12246946909178636635', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Provider/providerVariables.ts', + hash: '4237050843596393851', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupItemStyles.ts', + hash: '11733141247895106973', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupItemVariables.ts', + hash: '1410963406810642414', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupStyles.ts', + hash: '11216109689208890084', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionGroupStyles.ts', + hash: '15600202085985659691', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionGroupVariables.ts', + hash: '18279501337260248711', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionStyles.ts', + hash: '16702933675759395312', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionVariables.ts', + hash: '2326991576926697453', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Segment/segmentStyles.ts', + hash: '6018260944382324087', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Segment/segmentVariables.ts', + hash: '2340445252375615581', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonAvatarStyles.ts', + hash: '4671061646797557270', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonAvatarVariables.ts', + hash: '14164441955309142561', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonButtonStyles.ts', + hash: '11213343765328628389', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonButtonVariables.ts', + hash: '14164441955309142561', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonInputStyles.ts', + hash: '9558645324788876370', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonInputVariables.ts', + hash: '14164441955309142561', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonLineStyles.ts', + hash: '72797108529890029', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonLineVariables.ts', + hash: '14164441955309142561', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonShapeStyles.ts', + hash: '10985309027364307359', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonShapeVariables.ts', + hash: '14164441955309142561', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonStyles.ts', + hash: '11582752166254840270', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonTextStyles.ts', + hash: '10892819700266300746', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonTextVariables.ts', + hash: '14164441955309142561', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonVariables.ts', + hash: '12261413425486166426', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/utils/animations.ts', + hash: '1544522978559374540', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/utils/keyframes.ts', + hash: '10955688557993146324', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Slider/sliderStyles.ts', + hash: '6775086548562939701', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Slider/sliderVariables.ts', + hash: '12781842405418282858', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonDividerStyles.ts', + hash: '14170254709512265654', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonDividerVariables.ts', + hash: '13873446195431433000', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonStyles.ts', + hash: '11310296505673783875', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonToggleStyles.ts', + hash: '140511560137775517', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonToggleVariables.ts', + hash: '9706228838613710649', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonVariables.ts', + hash: '14969065795237070330', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/toggleIndicatorUrl.ts', + hash: '17515531167061030155', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Status/statusStyles.ts', + hash: '7498377440803947079', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Status/statusVariables.ts', + hash: '5995887502689944116', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SvgIcon/svgIconStyles.ts', + hash: '13789787697452677280', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/SvgIcon/svgIconVariables.ts', + hash: '16830963035373843584', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableCellStyles.ts', + hash: '9998047582789173077', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableCellVariables.ts', + hash: '17179676172813842787', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableRowStyles.ts', + hash: '569206166407569943', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableRowVariables.ts', + hash: '7014195797531800777', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableStyles.ts', + hash: '11099077070308203536', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableVariables.ts', + hash: '14836140358238840768', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Text/textStyles.ts', + hash: '13098771883429361252', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Text/textVariables.ts', + hash: '7484315766041928064', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/TextArea/textAreaStyles.ts', + hash: '12699271763260628640', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/TextArea/textAreaVariables.ts', + hash: '7855750672377342463', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/activeIndicatorUrl.ts', + hash: '2132244196695703598', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarCustomItemStyles.ts', + hash: '11824158878246713951', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarCustomItemVariables.ts', + hash: '17800092133851657140', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarDividerStyles.ts', + hash: '9220078841634176508', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarDividerVariables.ts', + hash: '13693107050922161757', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarItemStyles.ts', + hash: '3328062806257722365', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarItemVariables.ts', + hash: '17798359867619653287', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuDividerStyles.ts', + hash: '18250406595810300819', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuDividerVariables.ts', + hash: '13636735754107782600', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemActiveIndicatorStyles.ts', + hash: '17858199384397461495', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemActiveIndicatorVariables.ts', + hash: '4530719691202493349', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemIconStyles.ts', + hash: '17700533519447906336', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemIconVariables.ts', + hash: '5608597360865866046', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemStyles.ts', + hash: '5949064902679255671', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemSubmenuIndicatorStyles.ts', + hash: '15101458209206663075', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemSubmenuIndicatorVariables.ts', + hash: '17449689611987700443', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemVariables.ts', + hash: '8470828041757837184', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupStyles.ts', + hash: '15990216618563936162', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupVariables.ts', + hash: '17782808359179237346', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupWrapperStyles.ts', + hash: '8420482674146878097', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupWrapperVariables.ts', + hash: '6053349822566342387', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuStyles.ts', + hash: '8946254653014395366', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuVariables.ts', + hash: '6550857273809841135', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarRadioGroupStyles.ts', + hash: '14314529550618535408', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarStyles.ts', + hash: '9226371412509812252', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarVariables.ts', + hash: '3149192147963050155', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tooltip/tooltipContentStyles.ts', + hash: '16289553962671155894', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tooltip/tooltipContentVariables.ts', + hash: '4629835890193990737', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/checkboxIndicatorIndeterminatedUrl.ts', + hash: '16599601719567193527', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeItemStyles.ts', + hash: '12208941305020675428', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeStyles.ts', + hash: '8258447660898337239', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeTitleStyles.ts', + hash: '14461539179534007204', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeTitleVariables.ts', + hash: '10503889573482266724', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Video/videoStyles.ts', + hash: '10973700802785870748', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/components/Video/videoVariables.ts', + hash: '7696286689663916995', + }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/fontFaces.ts', hash: '5974686039723308038' }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/getBorderFocusStyles.ts', + hash: '9125604089500988430', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/getIconFillOrOutlineStyles.ts', + hash: '8643445364266943120', + }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/getPointerStyles.ts', hash: '4467874883863290210' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/index.tsx', hash: '1581374776596636836' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/pointerSvgUrl.ts', hash: '2857368959516864884' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/siteVariables.ts', hash: '14661460717873001608' }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/staticStyles/globalStyles.ts', + hash: '15748922728945704003', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/staticStyles/index.ts', + hash: '12265298600364461032', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams/staticStyles/normalizeCSS.ts', + hash: '17217307756892067800', + }, + { file: 'packages/fluentui/react-northstar/src/themes/teams/types.ts', hash: '7556703929819539276' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams-dark/colors.ts', hash: '14687655991173518735' }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/componentVariables.ts', + hash: '2041102859363169439', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Avatar/avatarVariables.ts', + hash: '7485469476929669546', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Chat/chatMessageVariables.ts', + hash: '10541089496613679112', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Datepicker/datepickerCalendarCellButtonVariables.ts', + hash: '13743134975937251199', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Datepicker/datepickerCalendarCellVariables.ts', + hash: '13635538325655268603', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Dialog/dialogVariables.ts', + hash: '16661416746382876765', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Divider/dividerVariables.ts', + hash: '457606091003616472', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Header/headerDescriptionVariables.ts', + hash: '13740213389422477604', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Header/headerVariables.ts', + hash: '15951103257039214959', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Label/labelVariables.ts', + hash: '12614290507403279127', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuDividerVariables.ts', + hash: '11560978881139451417', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemContentVariables.ts', + hash: '621507624809262373', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemIconVariables.ts', + hash: '6954194845806585307', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemIndicatorVariables.ts', + hash: '8707343247379130288', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemVariables.ts', + hash: '9114105854017503869', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemWrapperVariables.ts', + hash: '6034023239339142317', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuVariables.ts', + hash: '18299115008131538027', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Provider/providerVariables.ts', + hash: '8926038134835895724', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/RadioGroup/radioGroupItemVariables.ts', + hash: '2019025478424256877', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Reaction/reactionVariables.ts', + hash: '7086243477847928114', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Segment/segmentVariables.ts', + hash: '3470197313996434519', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/SplitButton/splitButtonVariables.ts', + hash: '4894562380788390580', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/SvgIcon/svgIconVariables.ts', + hash: '10250719142105668304', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Text/textVariables.ts', + hash: '7219713579841817306', + }, + { file: 'packages/fluentui/react-northstar/src/themes/teams-dark/index.ts', hash: '8831629279983580483' }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark/siteVariables.ts', + hash: '13865421087482632956', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/componentVariables.ts', + hash: '33620482670618895', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Chat/chatMessageDetailsVariables.ts', + hash: '10294568132566105829', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Chat/chatMessageVariables.ts', + hash: '12838676128597460041', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Datepicker/datepickerCalendarCellButtonVariables.ts', + hash: '17272841726990664443', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Dialog/dialogVariables.ts', + hash: '12638905351755113117', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Text/textVariables.ts', + hash: '6345058832963791127', + }, + { file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/index.ts', hash: '9797885670991484222' }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/siteVariables.ts', + hash: '9936863096117855431', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/componentStyles.ts', + hash: '2359425232917487546', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/componentVariables.ts', + hash: '1708402668906207631', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Button/buttonStyles.ts', + hash: '7008985540648425028', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Checkbox/checkboxStyles.ts', + hash: '15138412880018022295', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarCellButtonStyles.ts', + hash: '7870619796997738972', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarCellStyles.ts', + hash: '6206233104341220487', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarGridRowStyles.ts', + hash: '2119543217722202588', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Dropdown/dropdownItemStyles.ts', + hash: '4165428385506424575', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Embed/embedVariables.ts', + hash: '7897291940205825257', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Menu/menuItemWrapperStyles.ts', + hash: '13211947306758208686', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Slider/sliderStyles.ts', + hash: '2080253347622693642', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SplitButton/splitButtonDividerStyles.ts', + hash: '5778044792599420671', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SplitButton/splitButtonToggleStyles.ts', + hash: '12593872137564797775', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SvgIcon/svgIconStyles.ts', + hash: '1467745510690848118', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Toolbar/toolbarItemStyles.ts', + hash: '6529203507339313836', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/index.ts', + hash: '13828693508172020337', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/colors.ts', + hash: '13380170100585365255', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/componentVariables.ts', + hash: '12850886699449788115', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Avatar/avatarVariables.ts', + hash: '5929945505833645363', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Button/buttonVariables.ts', + hash: '4230100176295354725', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Card/cardVariables.ts', + hash: '4441392006693378487', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Chat/chatMessageVariables.ts', + hash: '10277153225320233374', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Chat/chatVariables.ts', + hash: '15428558076173865476', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Checkbox/checkboxVariables.ts', + hash: '1438647470493103546', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarCellButtonVariables.ts', + hash: '5108786434431634510', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarCellVariables.ts', + hash: '15882597416321592805', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarGridRowVariables.ts', + hash: '3274762635991417057', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dialog/dialogVariables.ts', + hash: '800524904879833383', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Divider/dividerVariables.ts', + hash: '7016648034119248666', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownItemVariables.ts', + hash: '12518581659264948700', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownSelectedItemVariables.ts', + hash: '14555252578886112431', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownVariables.ts', + hash: '13983034283305393777', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Embed/embedVariables.ts', + hash: '13092970836696786627', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Header/headerVariables.ts', + hash: '8503267197439685170', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Input/inputVariables.ts', + hash: '520353307861641229', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Label/labelVariables.ts', + hash: '11589864746261847205', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Loader/loaderVariables.ts', + hash: '9405199539273439418', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuDividerVariables.ts', + hash: '11560978881139451417', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemContentVariables.ts', + hash: '621507624809262373', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemIconVariables.ts', + hash: '6954194845806585307', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemIndicatorVariables.ts', + hash: '8707343247379130288', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemVariables.ts', + hash: '9114105854017503869', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemWrapperVariables.ts', + hash: '6034023239339142317', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuVariables.ts', + hash: '1277746220742188888', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Provider/providerVariables.ts', + hash: '10571309971208651489', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/RadioGroup/radioGroupItemVariables.ts', + hash: '1439639555343322710', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Reaction/reactionVariables.ts', + hash: '5062189662819961655', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Segment/segmentVariables.ts', + hash: '14062126404753888651', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/SplitButton/splitButtonVariables.ts', + hash: '2324856329243342733', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Text/textVariables.ts', + hash: '7369839868744494882', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/TextArea/textAreaVariables.ts', + hash: '5737337775538968850', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarCustomItemVariables.ts', + hash: '17800092133851657140', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarDividerVariables.ts', + hash: '13693107050922161757', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarItemVariables.ts', + hash: '17798359867619653287', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuDividerVariables.ts', + hash: '13636735754107782600', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemActiveIndicatorVariables.ts', + hash: '4530719691202493349', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemIconVariables.ts', + hash: '5608597360865866046', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemSubmenuIndicatorVariables.ts', + hash: '17449689611987700443', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemVariables.ts', + hash: '8470828041757837184', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuRadioGroupVariables.ts', + hash: '17782808359179237346', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuRadioGroupWrapperVariables.ts', + hash: '6053349822566342387', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuVariables.ts', + hash: '6550857273809841135', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarVariables.ts', + hash: '15415334169765226340', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Tooltip/tooltipContentVariables.ts', + hash: '11033527039317202465', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/index.ts', + hash: '10952774136721087966', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/siteVariables.ts', + hash: '4549791645439227052', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-v2/componentVariables.ts', + hash: '15533000153074961336', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-v2/components/Chat/chatMessageDetailsVariables.ts', + hash: '10294568132566105829', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-v2/components/Chat/chatMessageVariables.ts', + hash: '4391401100274700451', + }, + { + file: 'packages/fluentui/react-northstar/src/themes/teams-v2/components/Text/textVariables.ts', + hash: '6345058832963791127', + }, + { file: 'packages/fluentui/react-northstar/src/themes/teams-v2/index.ts', hash: '4177525779689153766' }, + { file: 'packages/fluentui/react-northstar/src/themes/teams-v2/siteVariables.ts', hash: '17867815598183882592' }, + { file: 'packages/fluentui/react-northstar/src/themes/types.ts', hash: '4007152926719875180' }, + { file: 'packages/fluentui/react-northstar/src/types.ts', hash: '8034626796951276018' }, + { + file: 'packages/fluentui/react-northstar/src/utils/accessibility/FocusHandling/FocusContainer.ts', + hash: '8373133028965064743', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/accessibility/Styles/accessibilityStyles.ts', + hash: '3664069971041003478', + }, + { file: 'packages/fluentui/react-northstar/src/utils/commonPropInterfaces.ts', hash: '1867192726082976183' }, + { file: 'packages/fluentui/react-northstar/src/utils/commonPropTypes.ts', hash: '9865645421311194631' }, + { file: 'packages/fluentui/react-northstar/src/utils/constants.ts', hash: '16875657864767821301' }, + { file: 'packages/fluentui/react-northstar/src/utils/createComponent.tsx', hash: '13489270601672849222' }, + { file: 'packages/fluentui/react-northstar/src/utils/createComponentInternal.ts', hash: '4922907263354399064' }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/dateFormatting.defaults.ts', + hash: '13692590557899151685', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/dateFormatting.types.ts', + hash: '16508226785106265770', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatDay.ts', + hash: '18225295570491744117', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatMonthDayYear.ts', + hash: '13079395079301750418', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatMonthYear.ts', + hash: '8693233030079857638', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatYear.ts', + hash: '11737192759499506409', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/index.ts', + hash: '17338481091946929409', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/dateGrid.types.ts', + hash: '9429451993053819858', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/findAvailableDate.ts', + hash: '17812579345659974705', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getBoundedDateRange.ts', + hash: '5151142947748778290', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getDateRangeTypeToUse.ts', + hash: '16696959932960635992', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getDayGrid.ts', + hash: '8170172914110350314', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/index.ts', + hash: '12957004530838335926', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isAfterMaxDate.ts', + hash: '4879284728703250347', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isBeforeMinDate.ts', + hash: '9762482266014451107', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isContiguous.ts', + hash: '17889414780369493822', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isRestrictedDate.ts', + hash: '8608321153134897550', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateMath/dateMath.ts', + hash: '1559935868198869990', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateValues/dateValues.ts', + hash: '6136428444968832474', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateValues/timeConstants.ts', + hash: '11246283356384718781', + }, + { file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/index.ts', hash: '9964063213143333808' }, + { file: 'packages/fluentui/react-northstar/src/utils/doesNodeContainClick.tsx', hash: '12125759582258943223' }, + { file: 'packages/fluentui/react-northstar/src/utils/factories.ts', hash: '17858959541041954517' }, + { file: 'packages/fluentui/react-northstar/src/utils/fontSizeUtility.ts', hash: '8951310441334447681' }, + { file: 'packages/fluentui/react-northstar/src/utils/format.ts', hash: '660643786560617444' }, + { file: 'packages/fluentui/react-northstar/src/utils/getKindProp.ts', hash: '10668323006325811482' }, + { + file: 'packages/fluentui/react-northstar/src/utils/getOrGenerateIdFromShorthand.ts', + hash: '7159609441996775627', + }, + { file: 'packages/fluentui/react-northstar/src/utils/getReactFiberFromNode.ts', hash: '15887164690270712100' }, + { file: 'packages/fluentui/react-northstar/src/utils/htmlPropsUtils.tsx', hash: '8492245048141318554' }, + { file: 'packages/fluentui/react-northstar/src/utils/index.ts', hash: '10809702915518222560' }, + { file: 'packages/fluentui/react-northstar/src/utils/isBrowser.tsx', hash: '8377252813388330231' }, + { file: 'packages/fluentui/react-northstar/src/utils/isRightClick.ts', hash: '9229416080838438451' }, + { file: 'packages/fluentui/react-northstar/src/utils/mergeProviderContexts.ts', hash: '5994964037716514132' }, + { file: 'packages/fluentui/react-northstar/src/utils/positioner/Popper.tsx', hash: '6388171080340640615' }, + { + file: 'packages/fluentui/react-northstar/src/utils/positioner/createReferenceFromClick.ts', + hash: '7463861146748463910', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/positioner/getBasePlacement.ts', + hash: '9075466749088351681', + }, + { file: 'packages/fluentui/react-northstar/src/utils/positioner/getBoundary.ts', hash: '4063574645465863990' }, + { + file: 'packages/fluentui/react-northstar/src/utils/positioner/getScrollParent.ts', + hash: '6406857083616074429', + }, + { file: 'packages/fluentui/react-northstar/src/utils/positioner/index.ts', hash: '16741470065971830342' }, + { + file: 'packages/fluentui/react-northstar/src/utils/positioner/isIntersectingModifier.ts', + hash: '14996281385889671915', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/positioner/partitionPopperPropsFromShorthand.ts', + hash: '60902350216586212', + }, + { + file: 'packages/fluentui/react-northstar/src/utils/positioner/positioningHelper.ts', + hash: '11838972231834093918', + }, + { file: 'packages/fluentui/react-northstar/src/utils/positioner/types.internal.ts', hash: '8041393692256519971' }, + { file: 'packages/fluentui/react-northstar/src/utils/positioner/types.ts', hash: '10059359397654935976' }, + { file: 'packages/fluentui/react-northstar/src/utils/positioner/usePopper.ts', hash: '5361783124069308182' }, + { file: 'packages/fluentui/react-northstar/src/utils/providerMissingHandler.ts', hash: '1279551015713903316' }, + { file: 'packages/fluentui/react-northstar/src/utils/renderComponent.tsx', hash: '16927930450112016967' }, + { file: 'packages/fluentui/react-northstar/src/utils/rtlTextContainer.tsx', hash: '4868725216145875527' }, + { + file: 'packages/fluentui/react-northstar/src/utils/shouldPreventDefaultOnKeyDown.ts', + hash: '5655537719905651960', + }, + { file: 'packages/fluentui/react-northstar/src/utils/stringLiteralsArray.ts', hash: '10689007480493641009' }, + { file: 'packages/fluentui/react-northstar/src/utils/whatInput.ts', hash: '15905753664237270166' }, + { file: 'packages/fluentui/react-northstar/test/__mocks__/@popperjs/core.ts', hash: '7478175262164732181' }, + { file: 'packages/fluentui/react-northstar/test/__mocks__/lodash.ts', hash: '17131456654501248151' }, + { + file: 'packages/fluentui/react-northstar/test/__mocks__/react-transition-group.ts', + hash: '12729441849589802586', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/commonHelpers.ts', + hash: '15161560263721820605', + }, + { file: 'packages/fluentui/react-northstar/test/specs/commonTests/eventTarget.ts', hash: '10879088653306825915' }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/extraConformanceTests.tsx', + hash: '7660913897739216792', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/handlesAccessibility.tsx', + hash: '14547718182071292892', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/htmlIsAccessibilityCompliant.ts', + hash: '10577071958328154685', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/implementsCollectionShorthandProp.tsx', + hash: '3217428025445274887', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/implementsPopperProps.tsx', + hash: '9652296180090228330', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/implementsShorthandProp.tsx', + hash: '17761144056956912361', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/implementsWrapperProp.tsx', + hash: '3773268252436089902', + }, + { file: 'packages/fluentui/react-northstar/test/specs/commonTests/index.ts', hash: '2058280329446324209' }, + { + file: 'packages/fluentui/react-northstar/test/specs/commonTests/isConformant.tsx', + hash: '10778236703368157250', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Accordion/Accordion-test.tsx', + hash: '16603233108252648288', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Accordion/AccordionContent-test.tsx', + hash: '8235180871538684066', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Accordion/AccordionTitle-test.tsx', + hash: '1913859106925668364', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Alert/Alert-test.tsx', + hash: '17921665851972536059', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Alert/AlertDismissAction-test.tsx', + hash: '10345856310136386920', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Animation/Animation-test.tsx', + hash: '13826604861874426066', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/Attachment-test.tsx', + hash: '16957293851459536363', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentAction-test.tsx', + hash: '14620159586847349890', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentBody-test.tsx', + hash: '7772374243305788108', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentDescription-test.tsx', + hash: '17209875525350538285', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentHeader-test.tsx', + hash: '1651566118295417225', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentIcon-test.tsx', + hash: '17933537462765513484', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Avatar/Avatar-test.tsx', + hash: '4322381528047759922', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Avatar/AvatarStatusIcon-test.tsx', + hash: '6251030996757450195', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Box/Box-test.tsx', + hash: '17835161325052902783', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Breadcrumb/Breadcrumb-test.ts', + hash: '16386882857663541002', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbDivider-test.ts', + hash: '8035817973357532220', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbItem-test.ts', + hash: '3181156825954883132', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbLink-test.ts', + hash: '11147658363668547992', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Button/Button-test.tsx', + hash: '1326436848149099376', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Button/ButtonContent-test.tsx', + hash: '10169093068037721396', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Button/ButtonGroup-test.tsx', + hash: '13404732748774538333', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Card/Card-test.tsx', + hash: '14872801092154452183', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardBody-test.tsx', + hash: '4961802290389165907', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardColumn-test.tsx', + hash: '2946857707153904783', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardExpandableBox-test.tsx', + hash: '18081246896977472476', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardFooter-test.tsx', + hash: '4568333006684685536', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardHeader-test.tsx', + hash: '5973905523470608280', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardPreview-test.tsx', + hash: '15380903345359050138', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardTopControls-test.tsx', + hash: '12718460699447619691', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/Carousel-test.tsx', + hash: '6512271293541251118', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselItem-test.tsx', + hash: '15488894922033434421', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselNavigation-test.tsx', + hash: '1989696240370193656', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselNavigationItem-test.tsx', + hash: '4630459689601325689', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselPaddle-test.tsx', + hash: '17284552819210128139', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Chat/Chat-test.tsx', + hash: '16240544497376105969', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatItem-test.tsx', + hash: '9317815919826984931', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessage-test.tsx', + hash: '15704714301524573565', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageContent-test.tsx', + hash: '12206648926544507089', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageDetails-test.tsx', + hash: '3897749336843958446', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageHeader-test.tsx', + hash: '12042384580656900705', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageReadStatus-test.tsx', + hash: '13588198715754619111', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Checkbox/Checkbox-test.tsx', + hash: '7825630663755003476', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/Datepicker-test.tsx', + hash: '1861003246359552439', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendar-test.tsx', + hash: '2233720293546010797', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarCell-test.tsx', + hash: '15892486420343153903', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarCellButton-test.tsx', + hash: '8997437747079875984', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarGrid-test.tsx', + hash: '12491487181544275019', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarGridRow-test.tsx', + hash: '6748518535575405844', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeader-test.tsx', + hash: '15227031319512760357', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeaderAction-test.tsx', + hash: '14664648722850097564', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeaderCell-test.tsx', + hash: '8616588072472146297', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/navigateToNewDate-test.tsx', + hash: '8732936018653634364', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/validateDate-test.tsx', + hash: '2834079238353411400', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Debug/utils-test.ts', + hash: '1339206635125466021', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Dialog/Dialog-test.tsx', + hash: '9237941996732807559', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Dialog/DialogFooter-test.tsx', + hash: '9235047452155095681', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Divider/Divider-test.tsx', + hash: '12854080868881418619', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Divider/DividerContent-test.tsx', + hash: '14342575122727540692', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/Dropdown-test.tsx', + hash: '7604599215403052112', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownItem-test.tsx', + hash: '1473585089237751717', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownSearchInput-test.tsx', + hash: '3925975303508541947', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownSelectedItem-test.tsx', + hash: '12109862275815818659', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/test-utils.tsx', + hash: '9778718411390596817', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Embed/Embed-test.tsx', + hash: '18004703066055679324', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/Form-test.tsx', + hash: '4357145295874511821', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormButton-test.tsx', + hash: '2480530927011052275', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormCheckbox-test.tsx', + hash: '16595455459410141480', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormDatepicker-test.tsx', + hash: '6123129437006011085', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormDropdown-test.tsx', + hash: '3439503302665132723', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormField-test.tsx', + hash: '9414094539119391119', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormFieldCustom-test.tsx', + hash: '7542078810202115053', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormInput-test.tsx', + hash: '8382766727191067703', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormLabel-test.tsx', + hash: '2042354020208887865', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormMessage-test.tsx', + hash: '15906543573128503902', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormRadioGroup-test.tsx', + hash: '5056958632862126533', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormSlider-test.tsx', + hash: '364414860270359616', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormTextArea-test.tsx', + hash: '14998274972297178761', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Grid/Grid-test.tsx', + hash: '17892297248944202229', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Header/Header-test.ts', + hash: '9487762096743194623', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Header/HeaderDescription-test.ts', + hash: '15842708465317391877', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Image/Image-test.tsx', + hash: '12851937568039079063', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Input/Input-test.tsx', + hash: '1691823196277230616', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Input/InputLabel-test.tsx', + hash: '877087592278268379', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/ItemLayout/ItemLayout-test.ts', + hash: '8485818133839845423', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Label/Label-test.tsx', + hash: '9474396410541813616', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Layout/Layout-test.ts', + hash: '1900237706348259417', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/List/List-test.tsx', + hash: '3097287775703992573', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItem-test.tsx', + hash: '9928356118452444044', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemContent-test.tsx', + hash: '1095048506653080069', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemContentMedia-test.tsx', + hash: '17371151810202432116', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemEndMedia-test.tsx', + hash: '1322925889570751378', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemHeader-test.tsx', + hash: '2846611475396535397', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemHeaderMedia-test.tsx', + hash: '4877505627170088792', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemMedia-test.tsx', + hash: '18069936088151066910', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Loader/Loader-test.tsx', + hash: '9449749231197165968', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Menu/Menu-test.tsx', + hash: '12165382481008066044', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuDivider-test.ts', + hash: '11686102310312265839', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItem-test.tsx', + hash: '2654099299647523812', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemContent-test.tsx', + hash: '7715872639743413366', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemIcon-test.tsx', + hash: '14320571732615103337', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemIndicator-test.tsx', + hash: '8332513050282139750', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemWrapper-test.tsx', + hash: '5853615396637177252', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/MenuButton/MenuButton-test.tsx', + hash: '10459616558362422535', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Pill/Pill-test.tsx', + hash: '9581060234870722120', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Pill/PillAction-test.ts', + hash: '6179880651922626996', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Pill/PillGroup-test.ts', + hash: '11981612515295806007', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Popup/Popup-test.tsx', + hash: '8434777514512007216', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Popup/PopupContent-test.ts', + hash: '13638739475903005750', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Portal/Portal-test.tsx', + hash: '15465996118162269272', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Portal/PortalInner-test.tsx', + hash: '5754434891661785018', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Provider/Provider-test.tsx', + hash: '2240640287140070383', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Provider/ProviderConsumer-test.tsx', + hash: '13002904769286609320', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/RadioGroup/RadioGroup-test.tsx', + hash: '17457288701005817085', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/RadioGroup/RadioGroupItem-test.ts', + hash: '3694787136224530727', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Reaction/Reaction-test.tsx', + hash: '17460569499475553055', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Reaction/ReactionGroup-test.tsx', + hash: '8891288184075771422', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Segment/Segment-test.ts', + hash: '18342948157651185262', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/Skeleton-test.tsx', + hash: '5431693271941474537', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonAvatar-test.tsx', + hash: '633215657105970504', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonButton-test.tsx', + hash: '857912520415791019', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonInput-test.tsx', + hash: '16014302676971243686', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonLine-test.tsx', + hash: '6710987888418158263', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonShape-test.tsx', + hash: '417051666742724868', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonText-test.tsx', + hash: '13342668590815722830', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Slider/Slider-test.tsx', + hash: '17195985081238689502', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/SplitButton/SplitButton-test.tsx', + hash: '6285634676352090825', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/SplitButton/SplitButtonToggle-test.tsx', + hash: '17168430121306085647', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Status/Status-test.tsx', + hash: '9207495202148573899', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Table/Table-test.tsx', + hash: '14320851970052755336', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Table/TableCell-test.tsx', + hash: '13268733205756804476', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Table/TableRow-test.tsx', + hash: '15721665457219970259', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Text/Text-test.tsx', + hash: '15774609461339472960', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/TextArea/TextArea-test.tsx', + hash: '10904772413893805454', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/Toolbar-test.tsx', + hash: '3273080662216660222', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarCustomItem-test.ts', + hash: '1971629901099191306', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarDivider-test.ts', + hash: '1961608604314474618', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItem-test.tsx', + hash: '18244914693327485303', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItemIcon-test.tsx', + hash: '13596680737528963805', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItemWrapper-test.tsx', + hash: '13156786441078339060', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenu-test.tsx', + hash: '17322254714369170926', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuDivider-test.ts', + hash: '2317588345846814381', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItem-test.ts', + hash: '14252176927580183276', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemActiveIndicator-test.ts', + hash: '7338121822972968481', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemContent-test.ts', + hash: '16940688787172569278', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemIcon-test.ts', + hash: '12036502141770290712', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemSubmenuIndicator-test.ts', + hash: '17060725767436850200', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuRadioGroup-test.ts', + hash: '13251209218976290123', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuRadioGroupWrapper-test.ts', + hash: '12304408542935772201', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarRadioGroup-test.tsx', + hash: '10137003306110435359', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Tooltip/Tooltip-test.tsx', + hash: '8889331025271088718', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Tooltip/TooltipContent-test.ts', + hash: '7678283977980244711', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Tree/Tree-test.tsx', + hash: '10244675648720734018', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Tree/TreeItem-test.tsx', + hash: '4945161483942705254', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Tree/TreeTitle-test.tsx', + hash: '8773859907745772342', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Tree/useTree-test.tsx', + hash: '5793822819577735110', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Tree/useVirtualTree-test.tsx', + hash: '5626760577217895360', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/components/Video/Video-test.tsx', + hash: '1926816928517605541', + }, + { file: 'packages/fluentui/react-northstar/test/specs/themes/colorUtils-test.ts', hash: '7657706024055204904' }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/accessibility/FocusContainer-test.ts', + hash: '223800887962504547', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/createComponent-test.tsx', + hash: '7246460273016057939', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatDay-test.ts', + hash: '2311094940376933322', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatMonthDayYear-test.ts', + hash: '1872098968821842300', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatMonthYear-test.ts', + hash: '2459189009262561277', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatYear-test.ts', + hash: '16280194774285350298', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/__snapshots__/getDayGrid-test.ts.snap', + hash: '2311635867604483689', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/findAvailableDate-test.ts', + hash: '15572784148609697340', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getBoundedDateRange-test.ts', + hash: '2623791697737703526', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getDateRangeTypeToUse-test.ts', + hash: '14573867150223039839', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getDayGrid-test.ts', + hash: '6975924948134206302', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isAfterMaxDate-test.ts', + hash: '12815467872040329995', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isBeforeMinDate-test.ts', + hash: '3803387967835514747', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isContiguous-test.ts', + hash: '16494931337448801984', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isRestrictedDate-test.ts', + hash: '3940731087686096730', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateMath/dateMath-test.ts', + hash: '10661094989801549340', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/doesNodeContainClick-test.ts', + hash: '16229342285576678393', + }, + { file: 'packages/fluentui/react-northstar/test/specs/utils/factories-test.tsx', hash: '15646126022037774298' }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/fontSizeUtility-test.ts', + hash: '17646536945264760221', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/getReactFiberFromNode-test.tsx', + hash: '14994895051922141272', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/htmlInputPropsUtils-test.ts', + hash: '7674098100722179265', + }, + { file: 'packages/fluentui/react-northstar/test/specs/utils/isBrowser-test.ts', hash: '17150880185040762390' }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/mergeProviderContexts/mergeBooleanValues-test.ts', + hash: '16868530262621193395', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/mergeProviderContexts/mergeProviderContexts-test.ts', + hash: '15934990098831498959', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/positioner/getScrollParent-test.ts', + hash: '15923669357357889226', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/positioner/positioningHelper-test.ts', + hash: '12724373629963656299', + }, + { + file: 'packages/fluentui/react-northstar/test/specs/utils/shouldPreventDefaultOnKeyDown-test.ts', + hash: '284482009341561469', + }, + { file: 'packages/fluentui/react-northstar/test/specs/utils/whatInput-test.tsx', hash: '4965920864058832888' }, + { file: 'packages/fluentui/react-northstar/test/utils/assertNodeContains.ts', hash: '16326988012836660074' }, + { file: 'packages/fluentui/react-northstar/test/utils/consoleUtil.ts', hash: '1538858825893602837' }, + { file: 'packages/fluentui/react-northstar/test/utils/domEvent.ts', hash: '1337068844579757941' }, + { file: 'packages/fluentui/react-northstar/test/utils/findIntrinsicElement.ts', hash: '11574652103696867807' }, + { file: 'packages/fluentui/react-northstar/test/utils/getDisplayName.ts', hash: '13697273738737733112' }, + { file: 'packages/fluentui/react-northstar/test/utils/index.ts', hash: '1972489484976587726' }, + { file: 'packages/fluentui/react-northstar/test/utils/nextFrame.ts', hash: '7596599917002412285' }, + { file: 'packages/fluentui/react-northstar/test/utils/syntheticEvent.ts', hash: '10249353881461568646' }, + { file: 'packages/fluentui/react-northstar/test/utils/withProvider.tsx', hash: '14725531562489182975' }, + { file: 'packages/fluentui/react-northstar/tsconfig.json', hash: '3307365675788742834' }, + { file: 'packages/fluentui/react-northstar/tsconfig.spec.json', hash: '8498668848331699403' }, + ], + '@fluentui/public-docsite-resources': [ + { file: 'apps/public-docsite-resources/.eslintrc.json', hash: '1006039826695126320' }, + { file: 'apps/public-docsite-resources/.npmignore', hash: '2926714820578262549' }, + { file: 'apps/public-docsite-resources/CHANGELOG.json', hash: '16283141252976196454' }, + { file: 'apps/public-docsite-resources/CHANGELOG.md', hash: '16861719145102182217' }, + { file: 'apps/public-docsite-resources/LICENSE', hash: '10066751927269712564' }, + { file: 'apps/public-docsite-resources/README.md', hash: '7141883042692341254' }, + { file: 'apps/public-docsite-resources/config/api-docs.js', hash: '11668101459963587459' }, + { file: 'apps/public-docsite-resources/config/pre-copy.json', hash: '6078374637344320600' }, + { file: 'apps/public-docsite-resources/just.config.ts', hash: '3934073888276956957' }, + { + file: 'apps/public-docsite-resources/package.json', + hash: '3404403150191974449', + deps: [ + '@fluentui/react', + '@fluentui/react-charting', + '@fluentui/react-examples', + 'npm:@microsoft/load-themed-styles', + '@fluentui/azure-themes', + '@fluentui/react-docsite-components', + '@fluentui/font-icons-mdl2', + '@fluentui/set-version', + '@fluentui/theme-samples', + '@fluentui/react-monaco-editor', + 'npm:office-ui-fabric-core', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/api-docs', + '@fluentui/eslint-plugin', + '@fluentui/scripts-monorepo', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'apps/public-docsite-resources/project.json', hash: '1147105777361919067' }, + { file: 'apps/public-docsite-resources/src/AppDefinition.tsx', hash: '7277832506832781573' }, + { file: 'apps/public-docsite-resources/src/GettingStartedPage.tsx', hash: '3862410802762460924' }, + { file: 'apps/public-docsite-resources/src/components/DemoPage.tsx', hash: '9020549840902458335' }, + { file: 'apps/public-docsite-resources/src/components/DemoPage.types.ts', hash: '13637648667090905659' }, + { file: 'apps/public-docsite-resources/src/components/pages/ActivityItemPage.tsx', hash: '12874555494259594381' }, + { + file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedBulkOperationsPage.tsx', + hash: '14152797804181136183', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedLazyLoadingPage.tsx', + hash: '12845085304038823878', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedPage.tsx', + hash: '7616571420309216578', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedQuickActionsPage.tsx', + hash: '3085789639514069691', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedSearchResultsPage.tsx', + hash: '4759661553964954805', + }, + { file: 'apps/public-docsite-resources/src/components/pages/BreadcrumbPage.tsx', hash: '17749543750938202238' }, + { file: 'apps/public-docsite-resources/src/components/pages/ButtonPage.tsx', hash: '1074859371510836896' }, + { file: 'apps/public-docsite-resources/src/components/pages/CalendarPage.tsx', hash: '9066959064675474449' }, + { file: 'apps/public-docsite-resources/src/components/pages/CalloutPage.tsx', hash: '3985615511416534706' }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/AreaChartPage.tsx', + hash: '9142849699720576026', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/DonutChartPage.tsx', + hash: '8401913092164120335', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/GaugeChartPage.tsx', + hash: '5909945778333785594', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/GroupedVerticalBarChartPage.tsx', + hash: '5871885321022510668', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/HeatMapChartPage.tsx', + hash: '447712487347504671', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/HorizontalBarChartPage.tsx', + hash: '10635783908789682392', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/HorizontalBarChartWithAxisPage.tsx', + hash: '15860945913932029918', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/LegendsPage.tsx', + hash: '5931039197259354517', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/LineChartPage.tsx', + hash: '5931039197259354517', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/MultiStackedBarChartPage.tsx', + hash: '6864870389254610389', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/PieChartPage.tsx', + hash: '14073402168693410464', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/SankeyChartPage.tsx', + hash: '1773501327481125982', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/SparklineChartPage.tsx', + hash: '234023845337169016', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/StackedBarChartPage.tsx', + hash: '3762902924545887431', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/TreeChartPage.tsx', + hash: '6379781915487945751', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/VerticalBarChartStandardPage.tsx', + hash: '10657208350562091459', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/Charting/VerticalStackedBarChartPage.tsx', + hash: '18035167189116711073', + }, + { file: 'apps/public-docsite-resources/src/components/pages/CheckboxPage.tsx', hash: '4704363360278678460' }, + { file: 'apps/public-docsite-resources/src/components/pages/ChoiceGroupPage.tsx', hash: '14065659955961397923' }, + { file: 'apps/public-docsite-resources/src/components/pages/CoachmarkPage.tsx', hash: '6023492553801230509' }, + { file: 'apps/public-docsite-resources/src/components/pages/ColorPickerPage.tsx', hash: '9314814354432295747' }, + { + file: 'apps/public-docsite-resources/src/components/pages/ColorsPage.global.scss', + hash: '8516477111204758268', + }, + { file: 'apps/public-docsite-resources/src/components/pages/ColorsPage.tsx', hash: '14293885024317434682' }, + { file: 'apps/public-docsite-resources/src/components/pages/ComboBoxPage.tsx', hash: '14225846150450310921' }, + { file: 'apps/public-docsite-resources/src/components/pages/CommandBarPage.tsx', hash: '2983211923980480407' }, + { + file: 'apps/public-docsite-resources/src/components/pages/ContextualMenuPage.tsx', + hash: '11322341863360396305', + }, + { file: 'apps/public-docsite-resources/src/components/pages/DatePickerPage.tsx', hash: '9693425122656743109' }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListAdvancedPage.tsx', + hash: '10497699611319342029', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListAnimationPage.tsx', + hash: '13246065446364453753', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListBasicPage.tsx', + hash: '5610768878447358512', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCompactPage.tsx', + hash: '9764384910422782275', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomColumnsPage.tsx', + hash: '1693193915191907175', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomFooterPage.tsx', + hash: '17455300748596259298', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomGroupHeadersPage.tsx', + hash: '17528947698984247944', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomRowsPage.tsx', + hash: '18378788640799452555', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListDragDropPage.tsx', + hash: '14997912916660581544', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListKeyboardDragDropPage.tsx', + hash: '1981206541946206946', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListKeyboardOverridesPage.tsx', + hash: '7924074756106420545', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListLargeGroupedPage.tsx', + hash: '17556143238825852135', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListNavigatingFocusPage.tsx', + hash: '17751629156569546517', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListPage.tsx', + hash: '16641730452823548384', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListProportionalColumnsPage.tsx', + hash: '16630306616595775231', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListShimmerPage.tsx', + hash: '14148595482952030923', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListSimpleGroupedPage.tsx', + hash: '3338805991866415156', + }, + { file: 'apps/public-docsite-resources/src/components/pages/DialogPage.tsx', hash: '5841632104556317487' }, + { file: 'apps/public-docsite-resources/src/components/pages/DividerPage.tsx', hash: '17426411170169843402' }, + { file: 'apps/public-docsite-resources/src/components/pages/DocumentCardPage.tsx', hash: '14158468745118722213' }, + { file: 'apps/public-docsite-resources/src/components/pages/DropdownPage.tsx', hash: '14720258869656067591' }, + { + file: 'apps/public-docsite-resources/src/components/pages/ExtendedPeoplePickerPage.tsx', + hash: '12659529066039516185', + }, + { file: 'apps/public-docsite-resources/src/components/pages/FacepilePage.tsx', hash: '3803403514969383383' }, + { + file: 'apps/public-docsite-resources/src/components/pages/FloatingPeoplePickerPage.tsx', + hash: '18005353677452631413', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/FocusTrapZonePage.tsx', + hash: '15037290987307246733', + }, + { file: 'apps/public-docsite-resources/src/components/pages/FocusZonePage.tsx', hash: '11010664311417327928' }, + { file: 'apps/public-docsite-resources/src/components/pages/GroupedListPage.tsx', hash: '15069269515386649438' }, + { file: 'apps/public-docsite-resources/src/components/pages/HoverCardPage.tsx', hash: '10856368801549589069' }, + { file: 'apps/public-docsite-resources/src/components/pages/IconPage.tsx', hash: '2231566654499636239' }, + { file: 'apps/public-docsite-resources/src/components/pages/ImagePage.tsx', hash: '1743385979724412862' }, + { file: 'apps/public-docsite-resources/src/components/pages/KeytipsPage.tsx', hash: '7131832946901219494' }, + { file: 'apps/public-docsite-resources/src/components/pages/LabelPage.tsx', hash: '5089297279315795147' }, + { file: 'apps/public-docsite-resources/src/components/pages/LayerPage.tsx', hash: '10390176672824469574' }, + { file: 'apps/public-docsite-resources/src/components/pages/LinkPage.tsx', hash: '6989305525356878229' }, + { file: 'apps/public-docsite-resources/src/components/pages/ListPage.tsx', hash: '15036518738078275188' }, + { + file: 'apps/public-docsite-resources/src/components/pages/MarqueeSelectionPage.tsx', + hash: '804408648016633702', + }, + { file: 'apps/public-docsite-resources/src/components/pages/MessageBarPage.tsx', hash: '7035159494733576301' }, + { file: 'apps/public-docsite-resources/src/components/pages/ModalPage.tsx', hash: '547344146741172952' }, + { file: 'apps/public-docsite-resources/src/components/pages/NavPage.tsx', hash: '15148247899806790313' }, + { file: 'apps/public-docsite-resources/src/components/pages/OverflowSetPage.tsx', hash: '3573843971840842412' }, + { file: 'apps/public-docsite-resources/src/components/pages/OverlayPage.tsx', hash: '15606061420059807231' }, + { file: 'apps/public-docsite-resources/src/components/pages/PanelPage.tsx', hash: '1119918289902627721' }, + { file: 'apps/public-docsite-resources/src/components/pages/PeoplePickerPage.tsx', hash: '12052940092962775123' }, + { file: 'apps/public-docsite-resources/src/components/pages/PersonaPage.tsx', hash: '6831941677144068143' }, + { file: 'apps/public-docsite-resources/src/components/pages/PickersPage.tsx', hash: '11964132278983850456' }, + { file: 'apps/public-docsite-resources/src/components/pages/PivotPage.tsx', hash: '2959788360604830538' }, + { file: 'apps/public-docsite-resources/src/components/pages/PopupPage.tsx', hash: '13606486863467912445' }, + { + file: 'apps/public-docsite-resources/src/components/pages/ProgressIndicatorPage.tsx', + hash: '4186603000795134820', + }, + { file: 'apps/public-docsite-resources/src/components/pages/RatingPage.tsx', hash: '4350031286872721266' }, + { file: 'apps/public-docsite-resources/src/components/pages/ResizeGroupPage.tsx', hash: '2973060030244344700' }, + { + file: 'apps/public-docsite-resources/src/components/pages/ScrollablePanePage.tsx', + hash: '16819364679994888960', + }, + { file: 'apps/public-docsite-resources/src/components/pages/SearchBoxPage.tsx', hash: '3029224427276024716' }, + { + file: 'apps/public-docsite-resources/src/components/pages/SelectedPeopleListPage.tsx', + hash: '7772640726096248692', + }, + { file: 'apps/public-docsite-resources/src/components/pages/SelectionPage.tsx', hash: '12409427404313953929' }, + { file: 'apps/public-docsite-resources/src/components/pages/SeparatorPage.tsx', hash: '17281088957051862846' }, + { file: 'apps/public-docsite-resources/src/components/pages/ShimmerPage.tsx', hash: '3280936027558693643' }, + { file: 'apps/public-docsite-resources/src/components/pages/SliderPage.tsx', hash: '8366292712707135930' }, + { file: 'apps/public-docsite-resources/src/components/pages/SpinButtonPage.tsx', hash: '12119173098289938380' }, + { file: 'apps/public-docsite-resources/src/components/pages/SpinnerPage.tsx', hash: '2885100480385886395' }, + { file: 'apps/public-docsite-resources/src/components/pages/StackPage.tsx', hash: '12041367432076032971' }, + { + file: 'apps/public-docsite-resources/src/components/pages/SwatchColorPickerPage.tsx', + hash: '11506943068731345318', + }, + { + file: 'apps/public-docsite-resources/src/components/pages/TeachingBubblePage.tsx', + hash: '6577733362138824835', + }, + { file: 'apps/public-docsite-resources/src/components/pages/TextFieldPage.tsx', hash: '1127323915038076733' }, + { file: 'apps/public-docsite-resources/src/components/pages/TextPage.tsx', hash: '17491494741568173358' }, + { file: 'apps/public-docsite-resources/src/components/pages/ThemePage.styles.ts', hash: '16939098392212581786' }, + { file: 'apps/public-docsite-resources/src/components/pages/ThemePage.tsx', hash: '5968573234874446418' }, + { + file: 'apps/public-docsite-resources/src/components/pages/ThemeProviderPage.tsx', + hash: '18028324695488637599', + }, + { file: 'apps/public-docsite-resources/src/components/pages/TimePickerPage.tsx', hash: '2391481625512082875' }, + { file: 'apps/public-docsite-resources/src/components/pages/TogglePage.tsx', hash: '611908229068244253' }, + { file: 'apps/public-docsite-resources/src/components/pages/TooltipPage.tsx', hash: '4157242533682705545' }, + { file: 'apps/public-docsite-resources/src/docs/GettingStartedOverview.md', hash: '9186252321786039138' }, + { file: 'apps/public-docsite-resources/src/index.tsx', hash: '15810414772634229766' }, + { file: 'apps/public-docsite-resources/src/theme/AppThemes.ts', hash: '2651411579354420478' }, + { file: 'apps/public-docsite-resources/src/version.ts', hash: '3127048310947807269' }, + { file: 'apps/public-docsite-resources/tsconfig.json', hash: '1759609835745211941' }, + { file: 'apps/public-docsite-resources/webpack.config.js', hash: '8276713782046820680' }, + { file: 'apps/public-docsite-resources/webpack.serve.config.js', hash: '16193407125720974232' }, + ], + '@fluentui/react-hooks': [ + { file: 'packages/react-hooks/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/react-hooks/.npmignore', hash: '47056201363133096' }, + { file: 'packages/react-hooks/CHANGELOG.json', hash: '6903353318491270734' }, + { file: 'packages/react-hooks/CHANGELOG.md', hash: '4373204522688068180' }, + { file: 'packages/react-hooks/LICENSE', hash: '8744700261631581284' }, + { file: 'packages/react-hooks/README.md', hash: '9078140562214112263' }, + { file: 'packages/react-hooks/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/react-hooks/config/tests.js', hash: '2484785926023527183' }, + { file: 'packages/react-hooks/etc/react-hooks.api.md', hash: '14890692399752787928' }, + { file: 'packages/react-hooks/jest.config.js', hash: '12858682342254308337' }, + { file: 'packages/react-hooks/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-hooks/package.json', + hash: '6276994753942711587', + deps: [ + '@fluentui/react-window-provider', + '@fluentui/set-version', + '@fluentui/utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/test-utilities', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-hooks/project.json', hash: '6754036360657165220' }, + { file: 'packages/react-hooks/src/index.ts', hash: '8812997253771358596' }, + { file: 'packages/react-hooks/src/testUtilities.tsx', hash: '15657115562759724898' }, + { file: 'packages/react-hooks/src/useAsync.ts', hash: '1414020915847618581' }, + { file: 'packages/react-hooks/src/useBoolean.test.tsx', hash: '10482234089618244690' }, + { file: 'packages/react-hooks/src/useBoolean.ts', hash: '16859819035326470427' }, + { file: 'packages/react-hooks/src/useConst.test.tsx', hash: '6312687103484766497' }, + { file: 'packages/react-hooks/src/useConst.ts', hash: '10777778552058882248' }, + { file: 'packages/react-hooks/src/useConstCallback.test.tsx', hash: '16043395328514584024' }, + { file: 'packages/react-hooks/src/useConstCallback.ts', hash: '1361219448301389173' }, + { file: 'packages/react-hooks/src/useControllableValue.test.tsx', hash: '5762110490075486825' }, + { file: 'packages/react-hooks/src/useControllableValue.ts', hash: '6509890426237455715' }, + { file: 'packages/react-hooks/src/useEventCallback.test.ts', hash: '17051523471062309998' }, + { file: 'packages/react-hooks/src/useEventCallback.ts', hash: '11398682938274370856' }, + { file: 'packages/react-hooks/src/useForceUpdate.test.tsx', hash: '888582721771798845' }, + { file: 'packages/react-hooks/src/useForceUpdate.ts', hash: '2712133802208231920' }, + { file: 'packages/react-hooks/src/useId.test.tsx', hash: '15852945873220308736' }, + { file: 'packages/react-hooks/src/useId.ts', hash: '783247756396774564' }, + { file: 'packages/react-hooks/src/useMergedRefs.test.tsx', hash: '10700249183639223030' }, + { file: 'packages/react-hooks/src/useMergedRefs.ts', hash: '15582394188849760782' }, + { file: 'packages/react-hooks/src/useMount.test.tsx', hash: '14206136109322867617' }, + { file: 'packages/react-hooks/src/useMount.ts', hash: '18329731702911365804' }, + { file: 'packages/react-hooks/src/useMountSync.test.tsx', hash: '11189345965072550047' }, + { file: 'packages/react-hooks/src/useMountSync.ts', hash: '9299027787812325818' }, + { file: 'packages/react-hooks/src/useOnEvent.ts', hash: '17052043779489947676' }, + { file: 'packages/react-hooks/src/usePrevious.test.tsx', hash: '9069046424079428945' }, + { file: 'packages/react-hooks/src/usePrevious.ts', hash: '12310076477386868431' }, + { file: 'packages/react-hooks/src/useRefEffect.test.tsx', hash: '2259278510254299602' }, + { file: 'packages/react-hooks/src/useRefEffect.ts', hash: '17383740752291583544' }, + { file: 'packages/react-hooks/src/useSetInterval.test.tsx', hash: '13864624324407150233' }, + { file: 'packages/react-hooks/src/useSetInterval.ts', hash: '18010635980916199311' }, + { file: 'packages/react-hooks/src/useSetTimeout.test.tsx', hash: '13604802953379833692' }, + { file: 'packages/react-hooks/src/useSetTimeout.ts', hash: '762592617994036615' }, + { file: 'packages/react-hooks/src/useTarget.ts', hash: '12682105242997500082' }, + { file: 'packages/react-hooks/src/useUnmount.test.tsx', hash: '12554573688970283861' }, + { file: 'packages/react-hooks/src/useUnmount.ts', hash: '14158102226970174047' }, + { file: 'packages/react-hooks/src/useWarnings.test.tsx', hash: '11910066874523431865' }, + { file: 'packages/react-hooks/src/useWarnings.ts', hash: '10008379029190216816' }, + { file: 'packages/react-hooks/src/version.ts', hash: '5995781004115751505' }, + { file: 'packages/react-hooks/tsconfig.json', hash: '15516134720009168635' }, + { file: 'packages/react-hooks/webpack.config.js', hash: '5701859674302912997' }, + ], + '@fluentui/react-monaco-editor': [ + { file: 'packages/react-monaco-editor/.eslintrc.json', hash: '7340591681907052528' }, + { file: 'packages/react-monaco-editor/.npmignore', hash: '7699079327417375383' }, + { file: 'packages/react-monaco-editor/CHANGELOG.json', hash: '4052769043464886293' }, + { file: 'packages/react-monaco-editor/CHANGELOG.md', hash: '4378676521123102836' }, + { file: 'packages/react-monaco-editor/LICENSE', hash: '15857057829823514426' }, + { file: 'packages/react-monaco-editor/README.md', hash: '215778933993031194' }, + { file: 'packages/react-monaco-editor/config/pre-copy.json', hash: '10496597701824624187' }, + { file: 'packages/react-monaco-editor/index.html', hash: '1791716988592375380' }, + { file: 'packages/react-monaco-editor/jest.config.js', hash: '5168375124118756559' }, + { file: 'packages/react-monaco-editor/just.config.ts', hash: '404017912661233600' }, + { + file: 'packages/react-monaco-editor/package.json', + hash: '10660752150120145130', + deps: [ + '@fluentui/react', + 'npm:@microsoft/load-themed-styles', + '@fluentui/example-data', + '@fluentui/monaco-editor', + '@fluentui/react-hooks', + '@fluentui/react-charting', + 'npm:raw-loader', + 'npm:react-syntax-highlighter', + 'npm:tslib', + '@fluentui/eslint-plugin', + 'npm:@types/react-syntax-highlighter', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-monaco-editor/project.json', hash: '1052909350799747146' }, + { file: 'packages/react-monaco-editor/scripts/addMonacoWebpackConfig.js', hash: '5333027717716750886' }, + { file: 'packages/react-monaco-editor/scripts/copyTypes.ts', hash: '15470147487360395774' }, + { file: 'packages/react-monaco-editor/src/Editor.ts', hash: '6017495469224351667' }, + { file: 'packages/react-monaco-editor/src/EditorWrapper.ts', hash: '10125870415289685067' }, + { file: 'packages/react-monaco-editor/src/TsxEditor.ts', hash: '10751227075439005751' }, + { file: 'packages/react-monaco-editor/src/components/Editor.tsx', hash: '13590339725241717557' }, + { file: 'packages/react-monaco-editor/src/components/Editor.types.ts', hash: '931518761748666165' }, + { file: 'packages/react-monaco-editor/src/components/EditorError.tsx', hash: '6978711720466275879' }, + { file: 'packages/react-monaco-editor/src/components/EditorErrorHandler.tsx', hash: '7094031796655130638' }, + { file: 'packages/react-monaco-editor/src/components/EditorLoading.tsx', hash: '17756141341694568257' }, + { file: 'packages/react-monaco-editor/src/components/EditorWrapper.tsx', hash: '14675879456062578953' }, + { file: 'packages/react-monaco-editor/src/components/EditorWrapper.types.ts', hash: '10918850883274788009' }, + { file: 'packages/react-monaco-editor/src/components/TsxEditor.tsx', hash: '16895967541425618893' }, + { file: 'packages/react-monaco-editor/src/components/TsxEditor.types.ts', hash: '6382517796676619793' }, + { file: 'packages/react-monaco-editor/src/components/TypeScriptSnippet.tsx', hash: '9289521752302825874' }, + { file: 'packages/react-monaco-editor/src/components/consts.ts', hash: '17899882920572319776' }, + { file: 'packages/react-monaco-editor/src/components/index.ts', hash: '17378269472056454119' }, + { file: 'packages/react-monaco-editor/src/demo/App.tsx', hash: '3398055607368439105' }, + { file: 'packages/react-monaco-editor/src/demo/index.tsx', hash: '6366974914566276988' }, + { file: 'packages/react-monaco-editor/src/imports.test.ts', hash: '16558841996641162330' }, + { file: 'packages/react-monaco-editor/src/index.ts', hash: '2660105875934296833' }, + { file: 'packages/react-monaco-editor/src/interfaces/index.ts', hash: '10563128095872578362' }, + { file: 'packages/react-monaco-editor/src/interfaces/monaco.ts', hash: '5365919266167576279' }, + { file: 'packages/react-monaco-editor/src/interfaces/packageGroup.ts', hash: '15072110747073265711' }, + { file: 'packages/react-monaco-editor/src/interfaces/transformedCode.ts', hash: '9629925872874446454' }, + { + file: 'packages/react-monaco-editor/src/transpiler/__snapshots__/exampleTransform.test.ts.snap', + hash: '10292795761254527001', + }, + { file: 'packages/react-monaco-editor/src/transpiler/exampleParser.test.ts', hash: '9891990965669883703' }, + { file: 'packages/react-monaco-editor/src/transpiler/exampleParser.ts', hash: '8211624242523849272' }, + { file: 'packages/react-monaco-editor/src/transpiler/exampleTransform.test.ts', hash: '1522140756961621850' }, + { file: 'packages/react-monaco-editor/src/transpiler/exampleTransform.ts', hash: '14477424259989592192' }, + { file: 'packages/react-monaco-editor/src/transpiler/examples/class.txt', hash: '12975026045123300332' }, + { + file: 'packages/react-monaco-editor/src/transpiler/examples/classTranspiled.txt', + hash: '16439102531686810302', + }, + { file: 'packages/react-monaco-editor/src/transpiler/examples/customPackages.txt', hash: '7179133814494836586' }, + { + file: 'packages/react-monaco-editor/src/transpiler/examples/customPackagesFluent.txt', + hash: '10058548755387005189', + }, + { file: 'packages/react-monaco-editor/src/transpiler/examples/function.txt', hash: '9563192592967671900' }, + { + file: 'packages/react-monaco-editor/src/transpiler/examples/functionTranspiled.txt', + hash: '6749082270165661166', + }, + { file: 'packages/react-monaco-editor/src/transpiler/examples/relativeImport.txt', hash: '6088749950053757682' }, + { file: 'packages/react-monaco-editor/src/transpiler/index.ts', hash: '18278831555090185964' }, + { file: 'packages/react-monaco-editor/src/transpiler/transpile.ts', hash: '16889766031692255838' }, + { file: 'packages/react-monaco-editor/src/transpiler/transpileHelpers.test.ts', hash: '4371018842887360839' }, + { file: 'packages/react-monaco-editor/src/transpiler/transpileHelpers.ts', hash: '2760415028804555715' }, + { file: 'packages/react-monaco-editor/src/utilities/defaultSupportedPackages.ts', hash: '667082477780337268' }, + { file: 'packages/react-monaco-editor/src/utilities/getQueryParam.test.ts', hash: '17807893369167537417' }, + { file: 'packages/react-monaco-editor/src/utilities/getQueryParam.ts', hash: '5415427488872325615' }, + { file: 'packages/react-monaco-editor/src/utilities/index.ts', hash: '5755389207234709934' }, + { file: 'packages/react-monaco-editor/src/utilities/isEditorSupported.ts', hash: '14471034323467341722' }, + { file: 'packages/react-monaco-editor/src/utilities/settings.ts', hash: '4543245557747589830' }, + { file: 'packages/react-monaco-editor/tsconfig.json', hash: '18188014709090939787' }, + { file: 'packages/react-monaco-editor/webpack.serve.config.js', hash: '14712024823986301981' }, + ], + '@fluentui/code-sandbox': [ + { file: 'packages/fluentui/code-sandbox/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/code-sandbox/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/code-sandbox/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/code-sandbox/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/code-sandbox/package.json', + hash: '11253220741395450065', + deps: [ + '@fluentui/docs-components', + 'npm:lodash', + '@fluentui/eslint-plugin', + '@fluentui/react-northstar', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/code-sandbox/project.json', hash: '5162402659160918655' }, + { file: 'packages/fluentui/code-sandbox/src/KnobsSnippet.tsx', hash: '1773927934854982206' }, + { file: 'packages/fluentui/code-sandbox/src/SandboxApp.tsx', hash: '3987921530467467936' }, + { file: 'packages/fluentui/code-sandbox/src/createCallbackLogFormatter.ts', hash: '5527801291715599944' }, + { file: 'packages/fluentui/code-sandbox/src/index.ts', hash: '3876221794154391346' }, + { file: 'packages/fluentui/code-sandbox/src/knobComponents.tsx', hash: '12929511866022094531' }, + { file: 'packages/fluentui/code-sandbox/tsconfig.json', hash: '10710169321765083407' }, + ], + '@fluentui/react-component-ref': [ + { file: 'packages/fluentui/react-component-ref/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-component-ref/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-component-ref/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-component-ref/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-component-ref/jest.config.js', hash: '16229841778322564435' }, + { + file: 'packages/fluentui/react-component-ref/package.json', + hash: '7529430488905102947', + deps: [ + 'npm:@babel/runtime', + 'npm:react-is', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:lerna-alias', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-component-ref/project.json', hash: '6126110977524113939' }, + { file: 'packages/fluentui/react-component-ref/src/Ref.tsx', hash: '8736695420541124411' }, + { file: 'packages/fluentui/react-component-ref/src/index.ts', hash: '2957471030756768947' }, + { file: 'packages/fluentui/react-component-ref/src/utils.ts', hash: '5021221117969286327' }, + { file: 'packages/fluentui/react-component-ref/test/Ref-test.tsx', hash: '15199118732810061095' }, + { file: 'packages/fluentui/react-component-ref/test/fixtures.tsx', hash: '17981835075008341893' }, + { file: 'packages/fluentui/react-component-ref/test/handleRef-test.ts', hash: '14323864877924546412' }, + { file: 'packages/fluentui/react-component-ref/test/isRefObject-test.ts', hash: '1265088125532153475' }, + { file: 'packages/fluentui/react-component-ref/tsconfig.json', hash: '12214264623402812273' }, + ], + '@fluentui/scripts-gulp': [ + { file: 'scripts/gulp/.eslintrc.json', hash: '1780714561029609382' }, + { file: 'scripts/gulp/jest.config.js', hash: '5062185366330253835' }, + { + file: 'scripts/gulp/package.json', + hash: '620703661800637679', + deps: [ + '@fluentui/scripts-monorepo', + '@fluentui/scripts-utils', + '@fluentui/scripts-prettier', + '@fluentui/scripts-puppeteer', + '@fluentui/scripts-babel', + '@fluentui/scripts-projects-test', + ], + }, + { file: 'scripts/gulp/project.json', hash: '3096408817704266345' }, + { file: 'scripts/gulp/src/config.ts', hash: '1152274046574746097' }, + { file: 'scripts/gulp/src/index.ts', hash: '7155269880542520414' }, + { file: 'scripts/gulp/src/plugins/gulp-component-menu-behaviors.ts', hash: '14794995339262339082' }, + { file: 'scripts/gulp/src/plugins/gulp-cypress.ts', hash: '594034633777443767' }, + { file: 'scripts/gulp/src/plugins/gulp-doctoc.ts', hash: '16179003157117981064' }, + { file: 'scripts/gulp/src/plugins/gulp-example-menu.ts', hash: '16356696777619040236' }, + { file: 'scripts/gulp/src/plugins/gulp-example-source.ts', hash: '385517391147554585' }, + { file: 'scripts/gulp/src/plugins/gulp-jest.ts', hash: '8955289815280817773' }, + { file: 'scripts/gulp/src/plugins/gulp-react-docgen.ts', hash: '6408676183752597483' }, + { file: 'scripts/gulp/src/plugins/gulp-webpack.ts', hash: '9370131498478486856' }, + { file: 'scripts/gulp/src/plugins/util/docgen.ts', hash: '10272339795154204934' }, + { file: 'scripts/gulp/src/plugins/util/docs-types.ts', hash: '11426038160844139699' }, + { file: 'scripts/gulp/src/plugins/util/getComponentInfo.ts', hash: '2980768138909657298' }, + { file: 'scripts/gulp/src/plugins/util/getRelativePathToSourceFile.ts', hash: '4636174730281639056' }, + { file: 'scripts/gulp/src/plugins/util/getShorthandInfo.ts', hash: '82871639742268498' }, + { file: 'scripts/gulp/src/plugins/util/index.ts', hash: '10847390264829094108' }, + { file: 'scripts/gulp/src/plugins/util/parseBuffer.ts', hash: '4873230922314432063' }, + { file: 'scripts/gulp/src/plugins/util/parseDefaultPropsValues.ts', hash: '5238221904296974450' }, + { file: 'scripts/gulp/src/plugins/util/parseDocSection.ts', hash: '13639522712631005195' }, + { file: 'scripts/gulp/src/plugins/util/parseDocblock.ts', hash: '5229957627777581211' }, + { file: 'scripts/gulp/src/plugins/util/parseType.ts', hash: '2020153800369620730' }, + { file: 'scripts/gulp/src/plugins/util/parseTypeAnnotation.ts', hash: '17653591491975389214' }, + { file: 'scripts/gulp/src/plugins/util/tsLanguageService.ts', hash: '15783400455653817887' }, + { file: 'scripts/gulp/src/preset.ts', hash: '2711454985674092336' }, + { file: 'scripts/gulp/src/tasks/browserAdapters.ts', hash: '4567420568985195828' }, + { file: 'scripts/gulp/src/tasks/bundle.ts', hash: '16595672668696770467' }, + { file: 'scripts/gulp/src/tasks/component-info.ts', hash: '9646456630648543387' }, + { file: 'scripts/gulp/src/tasks/docs.ts', hash: '4428791750588770695' }, + { file: 'scripts/gulp/src/tasks/serve.ts', hash: '2927945412709591114' }, + { file: 'scripts/gulp/src/tasks/stats.ts', hash: '10337716767911269452' }, + { file: 'scripts/gulp/src/tasks/test-circulars/config.ts', hash: '3696039267764445384' }, + { file: 'scripts/gulp/src/tasks/test-circulars/index.ts', hash: '4002982004987266417' }, + { file: 'scripts/gulp/src/tasks/test-circulars/utils.ts', hash: '10987622128974484970' }, + { file: 'scripts/gulp/src/tasks/test-dependencies/index.ts', hash: '9734234285232294639' }, + { file: 'scripts/gulp/src/tasks/test-dependencies/utils.ts', hash: '11287650727847866426' }, + { file: 'scripts/gulp/src/tasks/test-e2e.ts', hash: '3235213262210072558' }, + { file: 'scripts/gulp/src/tasks/test-unit.ts', hash: '9289024222620648246' }, + { file: 'scripts/gulp/src/webpack/webpack.config.e2e.ts', hash: '13987955866919355449' }, + { file: 'scripts/gulp/src/webpack/webpack.config.stats.ts', hash: '17071462924856297081' }, + { file: 'scripts/gulp/src/webpack/webpack.config.ts', hash: '8112596741759733054' }, + { file: 'scripts/gulp/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/gulp/tsconfig.lib.json', hash: '10054891788177936356' }, + { file: 'scripts/gulp/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/scripts-package-manager': [ + { file: 'scripts/package-manager/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/package-manager/jest.config.js', hash: '16568789143873113093' }, + { file: 'scripts/package-manager/package.json', hash: '2809962615901878866' }, + { file: 'scripts/package-manager/postinstall.js', hash: '9250556824353534057' }, + { file: 'scripts/package-manager/project.json', hash: '16573537905473013173' }, + { file: 'scripts/package-manager/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/package-manager/tsconfig.lib.json', hash: '3753806828268919288' }, + { file: 'scripts/package-manager/tsconfig.spec.json', hash: '16242416785763058919' }, + { file: 'scripts/package-manager/use-yarn-please.js', hash: '363289590456864077' }, + ], + '@fluentui/scripts-fluentui-publish': [ + { file: 'scripts/fluentui-publish/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/fluentui-publish/index.ts', hash: '1957588669308405884' }, + { file: 'scripts/fluentui-publish/jest.config.js', hash: '5846928013675828309' }, + { + file: 'scripts/fluentui-publish/package.json', + hash: '6624435746520159601', + deps: ['@fluentui/scripts-monorepo'], + }, + { file: 'scripts/fluentui-publish/project.json', hash: '6709988330732270986' }, + { file: 'scripts/fluentui-publish/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/fluentui-publish/tsconfig.lib.json', hash: '3753806828268919288' }, + { file: 'scripts/fluentui-publish/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/fluent2-theme': [ + { file: 'packages/fluent2-theme/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/fluent2-theme/.npmignore', hash: '47056201363133096' }, + { file: 'packages/fluent2-theme/CHANGELOG.json', hash: '14000262545189246502' }, + { file: 'packages/fluent2-theme/CHANGELOG.md', hash: '12092648922828663973' }, + { file: 'packages/fluent2-theme/LICENSE', hash: '13314032916801402668' }, + { file: 'packages/fluent2-theme/README.md', hash: '5178866690875074267' }, + { file: 'packages/fluent2-theme/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/fluent2-theme/package.json', + hash: '15050535793510851951', + deps: [ + '@fluentui/react', + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'packages/fluent2-theme/project.json', hash: '4537333210814173348' }, + { file: 'packages/fluent2-theme/src/componentStyles/BasePicker.styles.ts', hash: '15260600776551767882' }, + { file: 'packages/fluent2-theme/src/componentStyles/Breadcrumb.styles.ts', hash: '15372291180115099675' }, + { file: 'packages/fluent2-theme/src/componentStyles/Button.styles.ts', hash: '17753640107838954652' }, + { file: 'packages/fluent2-theme/src/componentStyles/Callout.styles.ts', hash: '16077482378149077721' }, + { file: 'packages/fluent2-theme/src/componentStyles/Check.styles.ts', hash: '13810909077831846777' }, + { file: 'packages/fluent2-theme/src/componentStyles/Checkbox.styles.ts', hash: '3424414869442365214' }, + { file: 'packages/fluent2-theme/src/componentStyles/ChoiceGroup.styles.ts', hash: '7308999010808507589' }, + { file: 'packages/fluent2-theme/src/componentStyles/ChoiceGroupOption.styles.ts', hash: '15788544625313028693' }, + { + file: 'packages/fluent2-theme/src/componentStyles/ColorPickerGridStyles.styles.ts', + hash: '16658141192552402060', + }, + { file: 'packages/fluent2-theme/src/componentStyles/CommandBar.styles.ts', hash: '12555985599653262034' }, + { file: 'packages/fluent2-theme/src/componentStyles/CommandBarButton.styles.ts', hash: '6257552873011644753' }, + { file: 'packages/fluent2-theme/src/componentStyles/ContextualMenu.styles.ts', hash: '6595251738348705689' }, + { file: 'packages/fluent2-theme/src/componentStyles/DetailsRowCheck.styles.ts', hash: '15893703503136844888' }, + { file: 'packages/fluent2-theme/src/componentStyles/Dialog.styles.ts', hash: '15676106242050735701' }, + { file: 'packages/fluent2-theme/src/componentStyles/Dropdown.styles.ts', hash: '17429374229032292005' }, + { file: 'packages/fluent2-theme/src/componentStyles/HoverCard.styles.ts', hash: '11420731975731615304' }, + { file: 'packages/fluent2-theme/src/componentStyles/MessageBar.styles.ts', hash: '6970817193015414941' }, + { file: 'packages/fluent2-theme/src/componentStyles/Modal.styles.ts', hash: '6149565223591052328' }, + { file: 'packages/fluent2-theme/src/componentStyles/Pivot.styles.ts', hash: '17110489539848042310' }, + { file: 'packages/fluent2-theme/src/componentStyles/SearchBox.styles.ts', hash: '11165416111356502027' }, + { file: 'packages/fluent2-theme/src/componentStyles/Slider.styles.ts', hash: '1801686107186612471' }, + { file: 'packages/fluent2-theme/src/componentStyles/SpinButton.styles.ts', hash: '5436783297629394729' }, + { file: 'packages/fluent2-theme/src/componentStyles/Spinner.styles.ts', hash: '2297587064235108640' }, + { file: 'packages/fluent2-theme/src/componentStyles/TagItem.styles.ts', hash: '8562803234129863321' }, + { file: 'packages/fluent2-theme/src/componentStyles/TextField.styles.ts', hash: '4531925913638019222' }, + { file: 'packages/fluent2-theme/src/componentStyles/Toggle.styles.ts', hash: '1148580698831778292' }, + { file: 'packages/fluent2-theme/src/componentStyles/inputStyleHelpers.utils.ts', hash: '10599679107732509558' }, + { file: 'packages/fluent2-theme/src/fluent2ComponentStyles.ts', hash: '4167974845032497451' }, + { file: 'packages/fluent2-theme/src/fluent2SharedColors.ts', hash: '17417864239864681637' }, + { file: 'packages/fluent2-theme/src/fluent2WebDarkTheme.ts', hash: '4115228166445543492' }, + { file: 'packages/fluent2-theme/src/fluent2WebLightTheme.ts', hash: '6879190915920168265' }, + { file: 'packages/fluent2-theme/src/index.ts', hash: '10220108571584631462' }, + { file: 'packages/fluent2-theme/src/types.ts', hash: '6590217542999449010' }, + { file: 'packages/fluent2-theme/src/version.ts', hash: '16446534884769303039' }, + { file: 'packages/fluent2-theme/tsconfig.json', hash: '6054155811259967380' }, + { file: 'packages/fluent2-theme/webpack.config.js', hash: '203595246380395220' }, + ], + '@fluentui/react-overflow': [ + { file: 'packages/react-components/react-overflow/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-overflow/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-overflow/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-overflow/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-overflow/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-overflow/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-overflow/CHANGELOG.json', hash: '17151345637925750323' }, + { file: 'packages/react-components/react-overflow/CHANGELOG.md', hash: '11159453311878671621' }, + { file: 'packages/react-components/react-overflow/LICENSE', hash: '9818542165238110929' }, + { file: 'packages/react-components/react-overflow/README.md', hash: '14042413657447533493' }, + { file: 'packages/react-components/react-overflow/bundle-size/hooks.fixture.js', hash: '98538218520861936' }, + { file: 'packages/react-components/react-overflow/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-overflow/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-overflow/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-overflow/etc/react-overflow.api.md', hash: '5944085284944377635' }, + { + file: 'packages/react-components/react-overflow/etc/react-priority-overflow.api.md', + hash: '6850313133803861984', + }, + { file: 'packages/react-components/react-overflow/jest.config.js', hash: '1514962155860067226' }, + { file: 'packages/react-components/react-overflow/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-overflow/package.json', + hash: '2219755465510116858', + deps: [ + '@fluentui/priority-overflow', + '@fluentui/react-context-selector', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-overflow/project.json', hash: '14511368221817073832' }, + { file: 'packages/react-components/react-overflow/src/Overflow.cy.tsx', hash: '5903549386456079078' }, + { + file: 'packages/react-components/react-overflow/src/components/Overflow.test.tsx', + hash: '4616096457460375706', + }, + { file: 'packages/react-components/react-overflow/src/components/Overflow.tsx', hash: '15335767250878277368' }, + { + file: 'packages/react-components/react-overflow/src/components/OverflowDivider/OverflowDivider.tsx', + hash: '9991237880667566221', + }, + { + file: 'packages/react-components/react-overflow/src/components/OverflowDivider/OverflowDivider.types.ts', + hash: '10260336547526921784', + }, + { + file: 'packages/react-components/react-overflow/src/components/OverflowItem/OverflowItem.tsx', + hash: '13525090351953575094', + }, + { + file: 'packages/react-components/react-overflow/src/components/OverflowItem/OverflowItem.types.ts', + hash: '8179926864947790425', + }, + { + file: 'packages/react-components/react-overflow/src/components/OverflowItem/index.ts', + hash: '18199425824488830312', + }, + { + file: 'packages/react-components/react-overflow/src/components/useOverflowStyles.styles.ts', + hash: '16931751093871652445', + }, + { file: 'packages/react-components/react-overflow/src/constants.ts', hash: '11914410734725550543' }, + { file: 'packages/react-components/react-overflow/src/index.ts', hash: '928923642684209487' }, + { file: 'packages/react-components/react-overflow/src/overflowContext.ts', hash: '7769612302933074122' }, + { file: 'packages/react-components/react-overflow/src/types.ts', hash: '5492746861660879830' }, + { + file: 'packages/react-components/react-overflow/src/useIsOverflowGroupVisible.ts', + hash: '4841996585229831820', + }, + { file: 'packages/react-components/react-overflow/src/useIsOverflowItemVisible.ts', hash: '6306945866532867469' }, + { + file: 'packages/react-components/react-overflow/src/useOverflowContainer.test.ts', + hash: '11708115788843291653', + }, + { file: 'packages/react-components/react-overflow/src/useOverflowContainer.ts', hash: '6511953937396193454' }, + { file: 'packages/react-components/react-overflow/src/useOverflowCount.ts', hash: '5628822841071015476' }, + { file: 'packages/react-components/react-overflow/src/useOverflowDivider.ts', hash: '7563026932439474358' }, + { file: 'packages/react-components/react-overflow/src/useOverflowItem.test.tsx', hash: '6068719971330329687' }, + { file: 'packages/react-components/react-overflow/src/useOverflowItem.ts', hash: '11076561095104277063' }, + { file: 'packages/react-components/react-overflow/src/useOverflowMenu.ts', hash: '2665228874597285133' }, + { + file: 'packages/react-components/react-overflow/src/useOverflowVisibility.test.tsx', + hash: '3159144109608287371', + }, + { file: 'packages/react-components/react-overflow/src/useOverflowVisibility.ts', hash: '816675367100410748' }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/Default.stories.tsx', + hash: '13636933276269901073', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/Dividers.stories.tsx', + hash: '17525297437007530058', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/LargerDividers.stories.tsx', + hash: '12330010832915645500', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/MinimumVisible.stories.tsx', + hash: '14537983058431798177', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/OverflowByPriority.stories.tsx', + hash: '14209658414845891889', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/OverflowDescription.md', + hash: '3103387157794012604', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/Pinned.stories.tsx', + hash: '6120787215013052902', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/PriorityWithDividers.stories.tsx', + hash: '1841267361857628080', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/ReverseDomOrder.stories.tsx', + hash: '528035539893611447', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/Vertical.stories.tsx', + hash: '15263716140745374237', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/Wrapped.stories.tsx', + hash: '3049936368731116819', + }, + { + file: 'packages/react-components/react-overflow/stories/Overflow/index.stories.tsx', + hash: '11843265896563295928', + }, + { file: 'packages/react-components/react-overflow/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-overflow/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-overflow/tsconfig.lib.json', hash: '2390123189881839961' }, + { file: 'packages/react-components/react-overflow/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-migration-v8-v9': [ + { file: 'packages/react-components/react-migration-v8-v9/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-migration-v8-v9/.eslintrc.json', hash: '12940771472901318782' }, + { file: 'packages/react-components/react-migration-v8-v9/.storybook/main.js', hash: '7685356111495756458' }, + { file: 'packages/react-components/react-migration-v8-v9/.storybook/preview.js', hash: '1791378012295456991' }, + { + file: 'packages/react-components/react-migration-v8-v9/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-migration-v8-v9/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-migration-v8-v9/CHANGELOG.json', hash: '4482660811503421238' }, + { file: 'packages/react-components/react-migration-v8-v9/CHANGELOG.md', hash: '3437347504588188651' }, + { file: 'packages/react-components/react-migration-v8-v9/LICENSE', hash: '10913970292391220170' }, + { file: 'packages/react-components/react-migration-v8-v9/README.md', hash: '15667163717531608187' }, + { file: 'packages/react-components/react-migration-v8-v9/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-migration-v8-v9/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-migration-v8-v9/docs/Spec.md', hash: '3855974602588191742' }, + { + file: 'packages/react-components/react-migration-v8-v9/etc/react-migration-v8-v9.api.md', + hash: '2219432216497333075', + }, + { file: 'packages/react-components/react-migration-v8-v9/jest.config.js', hash: '12480753325623125896' }, + { file: 'packages/react-components/react-migration-v8-v9/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-migration-v8-v9/package.json', + hash: '663868487500583523', + deps: [ + 'npm:@ctrl/tinycolor', + '@fluentui/fluent2-theme', + '@fluentui/react', + '@fluentui/react-components', + 'npm:@fluentui/react-icons', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-migration-v8-v9/project.json', hash: '17528918550118370943' }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/ActionButtonShim.tsx', + hash: '4110087356959872754', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/ButtonShim.tsx', + hash: '16685654881402239626', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/CommandButtonShim.tsx', + hash: '4759681242635364297', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/CompoundButtonShim.tsx', + hash: '980584788610671562', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/DefaultButtonShim.tsx', + hash: '1506610680792068683', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/MenuButtonShim.tsx', + hash: '8742878838054043627', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/PrimaryButtonShim.tsx', + hash: '6779100275448036846', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/ToggleButtonShim.tsx', + hash: '14084275913679095107', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/index.ts', + hash: '15474820367684411221', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Button/shimButtonProps.tsx', + hash: '13480263659535974927', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Menu/MenuShim.tsx', + hash: '326950797068294927', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Menu/index.ts', + hash: '8609775169523161902', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Menu/shimMenuProps.tsx', + hash: '6020802296135092829', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/StackItemShim.styles.ts', + hash: '4960978407952946760', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/StackItemShim.tsx', + hash: '14483473330383428973', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/StackShim.styles.ts', + hash: '6869802001657343935', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/StackShim.tsx', + hash: '7702757711522861692', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/index.ts', + hash: '1941368763660759388', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/stackUtils.ts', + hash: '523900441251478792', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/index.ts', + hash: '3659296414290183689', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/themeDuplicates.ts', + hash: '3014332871161126707', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/v8ThemeShim.ts', + hash: '7128294389039183692', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/v9BrandVariantsShim.ts', + hash: '15701946189222231667', + }, + { + file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/v9ThemeShim.ts', + hash: '16396774737410343002', + }, + { file: 'packages/react-components/react-migration-v8-v9/src/index.ts', hash: '15917486237367269151' }, + { + file: 'packages/react-components/react-migration-v8-v9/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ActionButtonShim/Description.md', + hash: '17799358882441678529', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ActionButtonShim/index.stories.tsx', + hash: '9619742389496589062', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/CommandButtonShim/Description.md', + hash: '15808068507500321486', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/CommandButtonShim/index.stories.tsx', + hash: '18400507665025012879', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/CompoundButtonShim/Description.md', + hash: '15615121418417537709', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/CompoundButtonShim/index.stories.tsx', + hash: '6103598228001237977', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/DefaultButtonShim/Description.md', + hash: '15808068507500321486', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/DefaultButtonShim/index.stories.tsx', + hash: '265941327074415516', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/MenuButtonShim/Description.md', + hash: '14517934418526815308', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/MenuButtonShim/index.stories.tsx', + hash: '17296333858974276990', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/PrimaryButtonShim/Description.md', + hash: '6403447194976241983', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/PrimaryButtonShim/index.stories.tsx', + hash: '9512401406819475429', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/Stack/Description.md', + hash: '15468957204558403920', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/Stack/index.stories.tsx', + hash: '13606024100413921215', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/ThemePreviewV8.stories.tsx', + hash: '8609587245661663745', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/ThemePreviewV9.stories.tsx', + hash: '13812748298400740871', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createBrandVariants/Description.md', + hash: '2972834094669803032', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createBrandVariants/index.stories.tsx', + hash: '3007379002370881485', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV8Theme/Description.md', + hash: '8730786855857856968', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV8Theme/index.stories.tsx', + hash: '7073847923381154773', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV9Theme/Description.md', + hash: '16317707978565389600', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV9Theme/index.stories.tsx', + hash: '1981086446371619663', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ToggleButtonShim/Description.md', + hash: '6884975637287055051', + }, + { + file: 'packages/react-components/react-migration-v8-v9/stories/ToggleButtonShim/index.stories.tsx', + hash: '12333612406901703840', + }, + { file: 'packages/react-components/react-migration-v8-v9/tsconfig.json', hash: '4817934933929993148' }, + { file: 'packages/react-components/react-migration-v8-v9/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-migration-v8-v9/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-tabster': [ + { file: 'packages/react-components/react-tabster/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-tabster/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-tabster/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-tabster/CHANGELOG.json', hash: '17283868674843285410' }, + { file: 'packages/react-components/react-tabster/CHANGELOG.md', hash: '1343400762706998062' }, + { file: 'packages/react-components/react-tabster/LICENSE', hash: '8780663838113620346' }, + { file: 'packages/react-components/react-tabster/README.md', hash: '12252804276424131116' }, + { file: 'packages/react-components/react-tabster/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-tabster/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-tabster/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-tabster/etc/react-tabster.api.md', hash: '2288916014796255296' }, + { file: 'packages/react-components/react-tabster/jest.config.js', hash: '18325348387735168838' }, + { file: 'packages/react-components/react-tabster/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-tabster/package.json', + hash: '9722559108762075220', + deps: [ + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + 'npm:keyborg', + 'npm:tabster', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-tabster/project.json', hash: '4885231158788135051' }, + { file: 'packages/react-components/react-tabster/src/focus/constants.ts', hash: '11610761315621037017' }, + { + file: 'packages/react-components/react-tabster/src/focus/createCustomFocusIndicatorStyle.ts', + hash: '10135999026179805427', + }, + { + file: 'packages/react-components/react-tabster/src/focus/createFocusOutlineStyle.ts', + hash: '2999734728216420753', + }, + { + file: 'packages/react-components/react-tabster/src/focus/focusVisiblePolyfill.test.ts', + hash: '7780914345110669573', + }, + { + file: 'packages/react-components/react-tabster/src/focus/focusVisiblePolyfill.ts', + hash: '17613086650502476862', + }, + { + file: 'packages/react-components/react-tabster/src/focus/focusWithinPolyfill.ts', + hash: '13269786247543402149', + }, + { file: 'packages/react-components/react-tabster/src/focus/index.ts', hash: '119617557468013632' }, + { file: 'packages/react-components/react-tabster/src/hooks/index.ts', hash: '10780671055306574479' }, + { + file: 'packages/react-components/react-tabster/src/hooks/useArrowNavigationGroup.ts', + hash: '13010941348645235525', + }, + { file: 'packages/react-components/react-tabster/src/hooks/useFocusFinders.ts', hash: '4287553250764137007' }, + { file: 'packages/react-components/react-tabster/src/hooks/useFocusObserved.ts', hash: '5423822093800652739' }, + { file: 'packages/react-components/react-tabster/src/hooks/useFocusVisible.cy.tsx', hash: '7947075782985402033' }, + { + file: 'packages/react-components/react-tabster/src/hooks/useFocusVisible.test.tsx', + hash: '1954438373418047311', + }, + { file: 'packages/react-components/react-tabster/src/hooks/useFocusVisible.ts', hash: '11746992728975359453' }, + { file: 'packages/react-components/react-tabster/src/hooks/useFocusWithin.ts', hash: '514927461607676297' }, + { file: 'packages/react-components/react-tabster/src/hooks/useFocusableGroup.ts', hash: '3474408154515309341' }, + { + file: 'packages/react-components/react-tabster/src/hooks/useKeyboardNavAttribute.ts', + hash: '13537309225714687781', + }, + { + file: 'packages/react-components/react-tabster/src/hooks/useMergeTabsterAttributes.ts', + hash: '10846465615831234216', + }, + { file: 'packages/react-components/react-tabster/src/hooks/useModalAttributes.ts', hash: '7363526368192805001' }, + { file: 'packages/react-components/react-tabster/src/hooks/useObservedElement.ts', hash: '5721509457510651126' }, + { file: 'packages/react-components/react-tabster/src/hooks/useRestoreFocus.ts', hash: '11825775820569907957' }, + { file: 'packages/react-components/react-tabster/src/hooks/useTabster.ts', hash: '6433329624895994249' }, + { + file: 'packages/react-components/react-tabster/src/hooks/useTabsterAttributes.ts', + hash: '12511269325455079018', + }, + { + file: 'packages/react-components/react-tabster/src/hooks/useUncontrolledFocus.ts', + hash: '3918052114715897957', + }, + { file: 'packages/react-components/react-tabster/src/index.ts', hash: '11056968312503357075' }, + { file: 'packages/react-components/react-tabster/src/useFocusObserved.cy.tsx', hash: '4941677566385580864' }, + { file: 'packages/react-components/react-tabster/src/useKeyborg.cy.tsx', hash: '2163661386752319470' }, + { file: 'packages/react-components/react-tabster/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-tabster/tsconfig.json', hash: '5596071008249197618' }, + { file: 'packages/react-components/react-tabster/tsconfig.lib.json', hash: '4109592473830538944' }, + { file: 'packages/react-components/react-tabster/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-textarea': [ + { file: 'packages/react-components/react-textarea/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-textarea/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-textarea/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-textarea/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-textarea/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-textarea/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-textarea/CHANGELOG.json', hash: '11520373447395147471' }, + { file: 'packages/react-components/react-textarea/CHANGELOG.md', hash: '11980578315049592601' }, + { file: 'packages/react-components/react-textarea/LICENSE', hash: '4498715062543112309' }, + { file: 'packages/react-components/react-textarea/README.md', hash: '5344125108621430649' }, + { + file: 'packages/react-components/react-textarea/bundle-size/Textarea.fixture.js', + hash: '17192439065238344351', + }, + { file: 'packages/react-components/react-textarea/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-textarea/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-textarea/docs/MIGRATION.md', hash: '17526740844244675212' }, + { file: 'packages/react-components/react-textarea/docs/Spec.md', hash: '14303084858892571145' }, + { file: 'packages/react-components/react-textarea/etc/react-textarea.api.md', hash: '5342628119613252095' }, + { file: 'packages/react-components/react-textarea/jest.config.js', hash: '10624360471583357965' }, + { file: 'packages/react-components/react-textarea/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-textarea/package.json', + hash: '4053548600420780000', + deps: [ + '@fluentui/react-field', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-textarea/project.json', hash: '1644416225662266477' }, + { file: 'packages/react-components/react-textarea/src/Textarea.ts', hash: '13370679537604069238' }, + { + file: 'packages/react-components/react-textarea/src/components/Textarea/Textarea.test.tsx', + hash: '16757346701550754906', + }, + { + file: 'packages/react-components/react-textarea/src/components/Textarea/Textarea.tsx', + hash: '16800492880889954221', + }, + { + file: 'packages/react-components/react-textarea/src/components/Textarea/Textarea.types.ts', + hash: '13003143832388706091', + }, + { + file: 'packages/react-components/react-textarea/src/components/Textarea/__snapshots__/Textarea.test.tsx.snap', + hash: '16171152998841505643', + }, + { + file: 'packages/react-components/react-textarea/src/components/Textarea/index.ts', + hash: '10698797457300083130', + }, + { + file: 'packages/react-components/react-textarea/src/components/Textarea/renderTextarea.tsx', + hash: '6185419952357045299', + }, + { + file: 'packages/react-components/react-textarea/src/components/Textarea/useTextarea.ts', + hash: '11772613917085952848', + }, + { + file: 'packages/react-components/react-textarea/src/components/Textarea/useTextareaStyles.styles.ts', + hash: '13631958646115528732', + }, + { file: 'packages/react-components/react-textarea/src/index.ts', hash: '6584368484105727560' }, + { file: 'packages/react-components/react-textarea/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaAppearance.stories.tsx', + hash: '3539206738445718143', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaBestPractices.md', + hash: '18227114171815669424', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaControlled.stories.tsx', + hash: '6872279739035536493', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaDefault.stories.tsx', + hash: '8318281564179232897', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaDescription.md', + hash: '13485520316389720001', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaDisabled.stories.tsx', + hash: '983048653998254023', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaPlaceholder.stories.tsx', + hash: '462631168486124274', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaResize.stories.tsx', + hash: '5894749941129343810', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaSize.stories.tsx', + hash: '13553877523019339375', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/TextareaUncontrolled.stories.tsx', + hash: '16181491644002402100', + }, + { + file: 'packages/react-components/react-textarea/stories/Textarea/index.stories.tsx', + hash: '4062141522867859029', + }, + { file: 'packages/react-components/react-textarea/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-textarea/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-textarea/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-divider': [ + { file: 'packages/react-components/react-divider/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-divider/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-divider/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-divider/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-divider/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-divider/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-divider/CHANGELOG.json', hash: '13479079640864241012' }, + { file: 'packages/react-components/react-divider/CHANGELOG.md', hash: '1395793154130333585' }, + { file: 'packages/react-components/react-divider/LICENSE', hash: '14023817589098421944' }, + { file: 'packages/react-components/react-divider/README.md', hash: '4056766105974983014' }, + { file: 'packages/react-components/react-divider/bundle-size/Divider.fixture.js', hash: '11373332966181672710' }, + { file: 'packages/react-components/react-divider/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-divider/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-divider/docs/MIGRATION.md', hash: '1643705267251793566' }, + { file: 'packages/react-components/react-divider/docs/Spec.md', hash: '10507791707433600269' }, + { file: 'packages/react-components/react-divider/etc/react-divider.api.md', hash: '16630984229525847963' }, + { file: 'packages/react-components/react-divider/jest.config.js', hash: '1152927763039745529' }, + { file: 'packages/react-components/react-divider/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-divider/package.json', + hash: '414161679037595975', + deps: [ + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-divider/project.json', hash: '12787666147608019291' }, + { file: 'packages/react-components/react-divider/src/Divider.ts', hash: '11741977117356417348' }, + { + file: 'packages/react-components/react-divider/src/components/Divider/Divider.test.tsx', + hash: '3056478946647445040', + }, + { + file: 'packages/react-components/react-divider/src/components/Divider/Divider.tsx', + hash: '9130488984128699236', + }, + { + file: 'packages/react-components/react-divider/src/components/Divider/Divider.types.ts', + hash: '13344028649484127587', + }, + { + file: 'packages/react-components/react-divider/src/components/Divider/__snapshots__/Divider.test.tsx.snap', + hash: '8915016820289301301', + }, + { file: 'packages/react-components/react-divider/src/components/Divider/index.ts', hash: '8553978515837008839' }, + { + file: 'packages/react-components/react-divider/src/components/Divider/renderDivider.tsx', + hash: '10546145220103482807', + }, + { + file: 'packages/react-components/react-divider/src/components/Divider/useDivider.ts', + hash: '8203516345352424438', + }, + { + file: 'packages/react-components/react-divider/src/components/Divider/useDividerStyles.styles.ts', + hash: '2052352461363498101', + }, + { file: 'packages/react-components/react-divider/src/index.ts', hash: '12277375761739938933' }, + { file: 'packages/react-components/react-divider/src/testing/isConformant.ts', hash: '17159661999478583888' }, + { + file: 'packages/react-components/react-divider/stories/Divider/DividerAlignContent.stories.tsx', + hash: '15576400069782630240', + }, + { + file: 'packages/react-components/react-divider/stories/Divider/DividerAppearance.stories.tsx', + hash: '14036585423451622453', + }, + { + file: 'packages/react-components/react-divider/stories/Divider/DividerCustomStyles.stories.tsx', + hash: '6179818489606984873', + }, + { + file: 'packages/react-components/react-divider/stories/Divider/DividerDefault.stories.tsx', + hash: '5883094048084295487', + }, + { + file: 'packages/react-components/react-divider/stories/Divider/DividerDescription.md', + hash: '1060509776422159278', + }, + { + file: 'packages/react-components/react-divider/stories/Divider/DividerInset.stories.tsx', + hash: '11405478731423348346', + }, + { + file: 'packages/react-components/react-divider/stories/Divider/DividerVertical.stories.tsx', + hash: '16290598666283219629', + }, + { + file: 'packages/react-components/react-divider/stories/Divider/index.stories.tsx', + hash: '17125349910069173416', + }, + { file: 'packages/react-components/react-divider/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-divider/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-divider/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/codemods': [ + { file: 'packages/codemods/.eslintrc.json', hash: '4428152067048705317' }, + { file: 'packages/codemods/.npmignore', hash: '47056201363133096' }, + { file: 'packages/codemods/CHANGELOG.json', hash: '11347495108269306727' }, + { file: 'packages/codemods/CHANGELOG.md', hash: '8867042710605885765' }, + { file: 'packages/codemods/LICENSE', hash: '14163660608650232522' }, + { file: 'packages/codemods/README.md', hash: '13860676800098945886' }, + { file: 'packages/codemods/bin/upgrade.js', hash: '16520232535087589005' }, + { file: 'packages/codemods/documentation/howTo.md', hash: '7461052920490961802' }, + { file: 'packages/codemods/documentation/renamePropTransforms.md', hash: '241704516325919730' }, + { file: 'packages/codemods/jest.config.js', hash: '5767287689832801759' }, + { file: 'packages/codemods/just.config.ts', hash: '2411455081002746933' }, + { + file: 'packages/codemods/package.json', + hash: '2182322265430513456', + deps: [ + 'npm:tslib', + 'npm:react', + 'npm:ts-morph', + 'npm:glob', + 'npm:yargs', + '@fluentui/eslint-plugin', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/codemods/project.json', hash: '1183081484802960152' }, + { file: 'packages/codemods/src/codeMods/mods/componentToCompat/compatHelpers.ts', hash: '9240806428948769680' }, + { + file: 'packages/codemods/src/codeMods/mods/componentToCompat/componentToCompat.mod.ts', + hash: '17273743481686930406', + }, + { file: 'packages/codemods/src/codeMods/mods/componentToCompat/namedExports.ts', hash: '10333643041167619988' }, + { file: 'packages/codemods/src/codeMods/mods/configMod/configMod.mod.ts', hash: '8256406929658905577' }, + { + file: 'packages/codemods/src/codeMods/mods/officeToFluentImport/officeToFluentImport.mod.ts', + hash: '16353032478154865044', + }, + { file: 'packages/codemods/src/codeMods/mods/oldToNewButton/oldToNewButton.mod.ts', hash: '1357173166044755082' }, + { + file: 'packages/codemods/src/codeMods/mods/personaToAvatar/personaToAvatar.mod.ts', + hash: '3425367627829998026', + }, + { file: 'packages/codemods/src/codeMods/mods/upgrades.json', hash: '8534611347961339460' }, + { + file: 'packages/codemods/src/codeMods/tests/componentToCompat/componentToCompat.test.ts', + hash: '9545073426540253167', + }, + { file: 'packages/codemods/src/codeMods/tests/configMod/configMod.test.ts', hash: '9507343427469922246' }, + { file: 'packages/codemods/src/codeMods/tests/mock/button/mButtonProps.tsx', hash: '7468149991658358259' }, + { file: 'packages/codemods/src/codeMods/tests/mock/button/mButtonStyles.tsx', hash: '12384006366854582909' }, + { + file: 'packages/codemods/src/codeMods/tests/mock/button/mCompoundButtonProps.tsx', + hash: '15112058447461572698', + }, + { file: 'packages/codemods/src/codeMods/tests/mock/compat/Button.tsx', hash: '10262838276442804862' }, + { file: 'packages/codemods/src/codeMods/tests/mock/compat/DefaultButton.tsx', hash: '8256931557089837956' }, + { file: 'packages/codemods/src/codeMods/tests/mock/compat/ImportsStuff.tsx', hash: '1518893783011304840' }, + { file: 'packages/codemods/src/codeMods/tests/mock/compat/mockIndex.ts', hash: '3709648605083778684' }, + { file: 'packages/codemods/src/codeMods/tests/mock/dropdown/mDropdownProps.tsx', hash: '4363796598908677651' }, + { + file: 'packages/codemods/src/codeMods/tests/mock/dropdown/mDropdownSpreadProps.tsx', + hash: '4375066566216277476', + }, + { file: 'packages/codemods/src/codeMods/tests/mock/mockFunction.tsx', hash: '311456311444952405' }, + { file: 'packages/codemods/src/codeMods/tests/mock/mockImport.tsx', hash: '17710243442170095470' }, + { file: 'packages/codemods/src/codeMods/tests/mock/persona/mClass.tsx', hash: '17753879045974249120' }, + { file: 'packages/codemods/src/codeMods/tests/mock/persona/mFunction.tsx', hash: '5626766255761670481' }, + { file: 'packages/codemods/src/codeMods/tests/mock/persona/mInterface.tsx', hash: '9034839761500607237' }, + { file: 'packages/codemods/src/codeMods/tests/mock/persona/mPersonaProps.tsx', hash: '11328331329653495165' }, + { + file: 'packages/codemods/src/codeMods/tests/mock/persona/mPersonaSpreadProps.tsx', + hash: '13995810082966974410', + }, + { file: 'packages/codemods/src/codeMods/tests/mock/persona/mWithPersonaSize.tsx', hash: '3491347508505688659' }, + { file: 'packages/codemods/src/codeMods/tests/mock/spinner/mSpinnerProps.tsx', hash: '7870275173352507482' }, + { + file: 'packages/codemods/src/codeMods/tests/mock/spinner/mSpinnerSpreadProps.tsx', + hash: '11413584911410415206', + }, + { file: 'packages/codemods/src/codeMods/tests/mock/utils/mockEdgeImports.tsx', hash: '6904143302243784622' }, + { file: 'packages/codemods/src/codeMods/tests/mock/utils/mockImports.tsx', hash: '4989490717297183261' }, + { + file: 'packages/codemods/src/codeMods/tests/officeToFluentImport/officeToFluentImport.test.ts', + hash: '7003135997588781179', + }, + { + file: 'packages/codemods/src/codeMods/tests/oldToNewButton/oldToNewButton.test.ts', + hash: '1764156562373966815', + }, + { + file: 'packages/codemods/src/codeMods/tests/personaToAvatar/componentMod.test.ts', + hash: '12262799446987997670', + }, + { file: 'packages/codemods/src/codeMods/tests/personaToAvatar/propsMod.test.ts', hash: '11171104898829191255' }, + { file: 'packages/codemods/src/codeMods/tests/utilities/importUtils.test.ts', hash: '7159995125621984221' }, + { file: 'packages/codemods/src/codeMods/tests/utilities/jsxUtilities.test.ts', hash: '8007580690693405560' }, + { file: 'packages/codemods/src/codeMods/tests/utilities/propUtilities.test.ts', hash: '4677491295252227055' }, + { file: 'packages/codemods/src/codeMods/types.ts', hash: '13021417299316460312' }, + { file: 'packages/codemods/src/codeMods/utilities/helpers/propHelpers.ts', hash: '2484056730035742925' }, + { file: 'packages/codemods/src/codeMods/utilities/imports.ts', hash: '15301094299013895104' }, + { file: 'packages/codemods/src/codeMods/utilities/index.ts', hash: '2555049955491844014' }, + { file: 'packages/codemods/src/codeMods/utilities/jsx.ts', hash: '13793530493669573769' }, + { file: 'packages/codemods/src/codeMods/utilities/props.ts', hash: '12666028733730733197' }, + { file: 'packages/codemods/src/codeMods/utilities/transforms.ts', hash: '16926870991077811697' }, + { file: 'packages/codemods/src/command.ts', hash: '18096051007695008033' }, + { file: 'packages/codemods/src/helpers/chainable.ts', hash: '8733383370644214781' }, + { file: 'packages/codemods/src/helpers/maybe.ts', hash: '14176675661170324955' }, + { file: 'packages/codemods/src/helpers/result.ts', hash: '5450803410888169633' }, + { file: 'packages/codemods/src/helpers/tests/maybe.test.ts', hash: '4721878516108784302' }, + { file: 'packages/codemods/src/helpers/tests/result.test.ts', hash: '12287505420809316455' }, + { file: 'packages/codemods/src/index.ts', hash: '7306275544208333527' }, + { file: 'packages/codemods/src/modRunner/logger.ts', hash: '3590337614079459744' }, + { file: 'packages/codemods/src/modRunner/modFilter.ts', hash: '7822802422462301002' }, + { file: 'packages/codemods/src/modRunner/runnerUtilities.ts', hash: '16535238509257622858' }, + { file: 'packages/codemods/src/modRunner/tests/command.test.ts', hash: '12681799096963602133' }, + { file: 'packages/codemods/src/modRunner/tests/filters.test.ts', hash: '3040657239305293440' }, + { file: 'packages/codemods/src/modRunner/tests/mocks/MockMods/CodeMod.mock.ts', hash: '15197719005968264090' }, + { file: 'packages/codemods/src/modRunner/tests/mocks/MockMods/JSMock.mod.js', hash: '11801600890007965326' }, + { + file: 'packages/codemods/src/modRunner/tests/mocks/MockProject/projects/subProject/tsconfig.json', + hash: '5954153889229813267', + }, + { + file: 'packages/codemods/src/modRunner/tests/mocks/MockProject/src/File-react.tsx', + hash: '15555827964896839803', + }, + { file: 'packages/codemods/src/modRunner/tests/mocks/MockProject/src/File.ts', hash: '15555827964896839803' }, + { file: 'packages/codemods/src/modRunner/tests/mocks/MockProject/tsconfig.json', hash: '5954153889229813267' }, + { file: 'packages/codemods/src/modRunner/tests/modRunner.test.ts', hash: '15492578309836042993' }, + { file: 'packages/codemods/src/modRunner/tests/upgrade.test.ts', hash: '17926476974248175499' }, + { file: 'packages/codemods/src/upgrade.ts', hash: '10683793787605745167' }, + { file: 'packages/codemods/tsconfig.json', hash: '9192670197236996538' }, + ], + '@fluentui/react-examples': [ + { file: 'packages/react-examples/.eslintrc.json', hash: '1702330080249613942' }, + { file: 'packages/react-examples/.npmignore', hash: '47056201363133096' }, + { file: 'packages/react-examples/.storybook/main.js', hash: '14816398585331678918' }, + { file: 'packages/react-examples/.storybook/manager.js', hash: '10262691162070439084' }, + { file: 'packages/react-examples/.storybook/preview-loader.js', hash: '11880477845897264629' }, + { file: 'packages/react-examples/.storybook/preview.js', hash: '285925511367961485' }, + { file: 'packages/react-examples/.storybook/tsconfig.json', hash: '8998439185517558766' }, + { file: 'packages/react-examples/CHANGELOG.json', hash: '1657021903900291541' }, + { file: 'packages/react-examples/CHANGELOG.md', hash: '8540291172350589844' }, + { file: 'packages/react-examples/LICENSE', hash: '16146362590109763261' }, + { file: 'packages/react-examples/README.md', hash: '9006185454830750184' }, + { file: 'packages/react-examples/cypress.config.ts', hash: '14032725885983203266' }, + { file: 'packages/react-examples/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-examples/package.json', + hash: '15873865825890157794', + deps: [ + '@fluentui/azure-themes', + '@fluentui/date-time-utilities', + '@fluentui/dom-utilities', + '@fluentui/example-data', + '@fluentui/font-icons-mdl2', + '@fluentui/foundation-legacy', + '@fluentui/merge-styles', + '@fluentui/react', + '@fluentui/react-cards', + '@fluentui/react-charting', + '@fluentui/react-docsite-components', + '@fluentui/react-experiments', + '@fluentui/react-file-type-icons', + '@fluentui/react-focus', + '@fluentui/react-hooks', + '@fluentui/react-icons-mdl2', + '@fluentui/scheme-utilities', + '@fluentui/style-utilities', + '@fluentui/theme', + '@fluentui/theme-samples', + '@fluentui/utilities', + 'npm:@microsoft/load-themed-styles', + 'npm:d3-fetch', + 'npm:d3-format', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/storybook', + 'npm:@types/d3-format', + 'npm:@types/d3-fetch', + '@fluentui/scripts-webpack', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/react-examples/project.json', hash: '9649139128656182995' }, + { + file: 'packages/react-examples/src/azure-themes/stories/Themes/Themes.stories.tsx', + hash: '2125217204908134883', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/CalendarInlineMultidayDayView.stories.tsx', + hash: '9777485459679979455', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/ContextMenu.stories.tsx', + hash: '11906792680589086576', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/DetailsListCustomColumnsExample.stories.tsx', + hash: '1526604806666311017', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/Pivots.stories.tsx', + hash: '8505117310795656110', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/ProgressIndicator.stories.tsx', + hash: '7878042562887496662', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/SpinButton.stories.tsx', + hash: '9644363006615395796', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/TeachingBubble.stories.tsx', + hash: '6363913365421312335', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/actionButton.stories.tsx', + hash: '2943437613734380711', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx', + hash: '15773176792318513295', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/activityitempersonas.stories.tsx', + hash: '17493377115708891980', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/buttonToggle.stories.tsx', + hash: '13322041471963459713', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/callout.stories.tsx', + hash: '12572487828916593340', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/choiceGroupWithImagesandIcons.stories.tsx', + hash: '11988481674102576150', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/choicegroup.stories.tsx', + hash: '1830356398977442236', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/colorpicker.stories.tsx', + hash: '17135174824570336702', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/comboBox.stories.tsx', + hash: '11774074986199852070', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/commandBar.stories.tsx', + hash: '18251599124601402250', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/commandBarButton.stories.tsx', + hash: '7982136203595322144', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/contextualMenu.stories.tsx', + hash: '9107686953554100721', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/dateBoundary.stories.tsx', + hash: '13784003701073842051', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/defaultDatePicker.tsx', + hash: '12667593297047487456', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/detailsList.stories.tsx', + hash: '9912609037404072743', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/dropdown.stories.tsx', + hash: '10420437495479310291', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/iconButton.stories.tsx', + hash: '3357533028131049247', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/iconTooltip.stories.tsx', + hash: '5754928710161508947', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/messageBar.stories.tsx', + hash: '16203732642630267765', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/slider.stories.tsx', + hash: '14770656390957719230', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/spinner.stories.tsx', + hash: '5676613769831055307', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/splitButton.stories.tsx', + hash: '13342035394552227782', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/tags.stories.tsx', + hash: '3454619756727937887', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/toggle.stories.tsx', + hash: '3283213291269405540', + }, + { + file: 'packages/react-examples/src/azure-themes/stories/components/tooltip.stories.tsx', + hash: '10393279098064559619', + }, + { + file: 'packages/react-examples/src/react/ActivityItem/ActivityItem.Basic.Example.tsx', + hash: '13914346728006709604', + }, + { + file: 'packages/react-examples/src/react/ActivityItem/ActivityItem.Compact.Example.tsx', + hash: '10799670486824503656', + }, + { + file: 'packages/react-examples/src/react/ActivityItem/ActivityItem.Persona.Example.tsx', + hash: '4530460165784137223', + }, + { file: 'packages/react-examples/src/react/ActivityItem/ActivityItem.doc.tsx', hash: '18382057917831206852' }, + { + file: 'packages/react-examples/src/react/ActivityItem/docs/ActivityItemBestPractices.md', + hash: '14641514549794392494', + }, + { + file: 'packages/react-examples/src/react/ActivityItem/docs/ActivityItemOverview.md', + hash: '13943306819186175577', + }, + { + file: 'packages/react-examples/src/react/Announced/Announced.BulkOperations.Example.tsx', + hash: '723390365406397872', + }, + { + file: 'packages/react-examples/src/react/Announced/Announced.LazyLoading.Example.tsx', + hash: '5721743437762442725', + }, + { + file: 'packages/react-examples/src/react/Announced/Announced.QuickActions.Example.tsx', + hash: '13040897774565725346', + }, + { + file: 'packages/react-examples/src/react/Announced/Announced.SearchResults.Example.tsx', + hash: '8593960476119642725', + }, + { file: 'packages/react-examples/src/react/Announced/Announced.doc.tsx', hash: '13290861637697161815' }, + { file: 'packages/react-examples/src/react/Announced/docs/AnnouncedOverview.md', hash: '7286146550152171442' }, + { file: 'packages/react-examples/src/react/Announced/docs/Asynchronous/Donts.md', hash: '10308843472612849527' }, + { file: 'packages/react-examples/src/react/Announced/docs/Asynchronous/Dos.md', hash: '8151809050993285928' }, + { + file: 'packages/react-examples/src/react/Announced/docs/Asynchronous/Overview.md', + hash: '17122414855820838170', + }, + { + file: 'packages/react-examples/src/react/Announced/docs/BulkLongRunning/Donts.md', + hash: '3313655889678117965', + }, + { file: 'packages/react-examples/src/react/Announced/docs/BulkLongRunning/Dos.md', hash: '5257417610796255358' }, + { + file: 'packages/react-examples/src/react/Announced/docs/BulkLongRunning/Overview.md', + hash: '13728180440979579656', + }, + { file: 'packages/react-examples/src/react/Announced/docs/QuickActions/Donts.md', hash: '3921478636485365154' }, + { file: 'packages/react-examples/src/react/Announced/docs/QuickActions/Dos.md', hash: '15174421481868869367' }, + { + file: 'packages/react-examples/src/react/Announced/docs/QuickActions/Overview.md', + hash: '15688976934623723027', + }, + { file: 'packages/react-examples/src/react/Announced/docs/SearchResults/Donts.md', hash: '7961540872895838551' }, + { file: 'packages/react-examples/src/react/Announced/docs/SearchResults/Dos.md', hash: '14589829831559595933' }, + { + file: 'packages/react-examples/src/react/Announced/docs/SearchResults/Overview.md', + hash: '15600377904142434146', + }, + { + file: 'packages/react-examples/src/react/Breadcrumb/Breadcrumb.Basic.Example.tsx', + hash: '3179480932676095995', + }, + { + file: 'packages/react-examples/src/react/Breadcrumb/Breadcrumb.Collapsing.Example.tsx', + hash: '12999198751733228695', + }, + { + file: 'packages/react-examples/src/react/Breadcrumb/Breadcrumb.Static.Example.tsx', + hash: '16266848918167291560', + }, + { file: 'packages/react-examples/src/react/Breadcrumb/Breadcrumb.doc.tsx', hash: '1036348250448252175' }, + { + file: 'packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbBestPractices.md', + hash: '13343729804615205774', + }, + { file: 'packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbDonts.md', hash: '15126643046228785634' }, + { file: 'packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbDos.md', hash: '9779072492094064773' }, + { file: 'packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbOverview.md', hash: '18079527568158322334' }, + { file: 'packages/react-examples/src/react/Button/Button.Action.Example.tsx', hash: '17593143648911728928' }, + { file: 'packages/react-examples/src/react/Button/Button.Anchor.Example.tsx', hash: '10364344687196047790' }, + { file: 'packages/react-examples/src/react/Button/Button.Command.Example.tsx', hash: '17701013651033269340' }, + { file: 'packages/react-examples/src/react/Button/Button.CommandBar.Example.tsx', hash: '2442938012510837186' }, + { file: 'packages/react-examples/src/react/Button/Button.Compound.Example.tsx', hash: '10064596175304087228' }, + { + file: 'packages/react-examples/src/react/Button/Button.ContextualMenu.Example.tsx', + hash: '2327815820929103506', + }, + { file: 'packages/react-examples/src/react/Button/Button.CustomSplit.Example.tsx', hash: '3510559926954356307' }, + { file: 'packages/react-examples/src/react/Button/Button.Default.Example.tsx', hash: '15170870096351325084' }, + { file: 'packages/react-examples/src/react/Button/Button.Icon.Example.tsx', hash: '16864707904196884373' }, + { + file: 'packages/react-examples/src/react/Button/Button.IconWithTooltip.Example.tsx', + hash: '5856918498084472394', + }, + { file: 'packages/react-examples/src/react/Button/Button.Split.Example.tsx', hash: '6443594856225278219' }, + { file: 'packages/react-examples/src/react/Button/Button.Toggle.Example.tsx', hash: '11273168701657466174' }, + { file: 'packages/react-examples/src/react/Button/Button.doc.tsx', hash: '14798888054962382957' }, + { file: 'packages/react-examples/src/react/Button/docs/ButtonBestPractices.md', hash: '8262488791457160795' }, + { file: 'packages/react-examples/src/react/Button/docs/ButtonOverview.md', hash: '15025314181002136189' }, + { file: 'packages/react-examples/src/react/Calendar/Calendar.Button.Example.tsx', hash: '11670713828649373426' }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.ContiguousWorkWeekDays.Example.tsx', + hash: '6025642632513182041', + }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.CustomDayCellRef.Example.tsx', + hash: '10101935902661584177', + }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.DateBoundaries.Example.tsx', + hash: '14122370693085520131', + }, + { file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.Example.tsx', hash: '5895412511470144388' }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.MarkedDays.Example.tsx', + hash: '7115975224915797628', + }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.MonthOnly.Example.tsx', + hash: '7514301355919486445', + }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.MonthSelection.Example.tsx', + hash: '12194911337183155096', + }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.MultidayDayView.Example.tsx', + hash: '9777485459679979455', + }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.NonContiguousWorkWeekDays.Example.tsx', + hash: '16739657324829049689', + }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.OverlaidMonthPicker.Example.tsx', + hash: '8598152411539421499', + }, + { file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.SixWeeks.tsx', hash: '9814512951353916548' }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.WeekNumbers.Example.tsx', + hash: '2353257937602785635', + }, + { + file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.WeekSelection.Example.tsx', + hash: '711746990858717859', + }, + { file: 'packages/react-examples/src/react/Calendar/Calendar.doc.tsx', hash: '5098259750648110690' }, + { file: 'packages/react-examples/src/react/Calendar/docs/CalendarBestPractices.md', hash: '1724779152274891464' }, + { file: 'packages/react-examples/src/react/Calendar/docs/CalendarOverview.md', hash: '621070059803414892' }, + { file: 'packages/react-examples/src/react/Callout/Callout.Basic.Example.tsx', hash: '10375834041956947410' }, + { file: 'packages/react-examples/src/react/Callout/Callout.Cover.Example.tsx', hash: '13961468534046685528' }, + { + file: 'packages/react-examples/src/react/Callout/Callout.Directional.Example.tsx', + hash: '4473873551862082509', + }, + { file: 'packages/react-examples/src/react/Callout/Callout.FocusTrap.Example.tsx', hash: '5386241572332227912' }, + { file: 'packages/react-examples/src/react/Callout/Callout.Status.Example.tsx', hash: '4084051320422216883' }, + { file: 'packages/react-examples/src/react/Callout/Callout.doc.tsx', hash: '6417004314429107130' }, + { file: 'packages/react-examples/src/react/Callout/docs/CalloutBestPractices.md', hash: '240584423619826575' }, + { file: 'packages/react-examples/src/react/Callout/docs/CalloutOverview.md', hash: '1386018283761269927' }, + { file: 'packages/react-examples/src/react/Checkbox/Checkbox.Basic.Example.tsx', hash: '16088471200763141215' }, + { + file: 'packages/react-examples/src/react/Checkbox/Checkbox.Indeterminate.Example.tsx', + hash: '2573388622640783503', + }, + { file: 'packages/react-examples/src/react/Checkbox/Checkbox.Other.Example.tsx', hash: '17065609027463333266' }, + { file: 'packages/react-examples/src/react/Checkbox/Checkbox.doc.tsx', hash: '7637244348529120014' }, + { + file: 'packages/react-examples/src/react/Checkbox/docs/CheckboxBestPractices.md', + hash: '17643376500449998917', + }, + { file: 'packages/react-examples/src/react/Checkbox/docs/CheckboxOverview.md', hash: '6127085583634782780' }, + { + file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Basic.Example.tsx', + hash: '1830356398977442236', + }, + { + file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Controlled.Example.tsx', + hash: '13372284433648480700', + }, + { + file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Custom.Example.tsx', + hash: '6563198185507424076', + }, + { + file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Icon.Example.tsx', + hash: '11509984463129156349', + }, + { + file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Image.Example.tsx', + hash: '9440296067970459789', + }, + { + file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Label.Example.tsx', + hash: '3118031141092502161', + }, + { file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.doc.tsx', hash: '10803705851408154810' }, + { + file: 'packages/react-examples/src/react/ChoiceGroup/docs/ChoiceGroupBestPractices.md', + hash: '6729357172259799389', + }, + { + file: 'packages/react-examples/src/react/ChoiceGroup/docs/ChoiceGroupOverview.md', + hash: '13427093563652446624', + }, + { file: 'packages/react-examples/src/react/Coachmark/Coachmark.Basic.Example.tsx', hash: '8115923272607319524' }, + { file: 'packages/react-examples/src/react/Coachmark/Coachmark.doc.tsx', hash: '2170188443948751602' }, + { + file: 'packages/react-examples/src/react/Coachmark/docs/CoachmarkBestPractices.md', + hash: '3542754544981209669', + }, + { file: 'packages/react-examples/src/react/Coachmark/docs/CoachmarkOverview.md', hash: '8005866302720607190' }, + { + file: 'packages/react-examples/src/react/ColorPicker/ColorPicker.Basic.Example.tsx', + hash: '10522614933577852925', + }, + { file: 'packages/react-examples/src/react/ColorPicker/ColorPicker.doc.tsx', hash: '12006933118369254888' }, + { + file: 'packages/react-examples/src/react/ColorPicker/docs/ColorPickerBestPractices.md', + hash: '3795548029277003302', + }, + { + file: 'packages/react-examples/src/react/ColorPicker/docs/ColorPickerOverview.md', + hash: '3453145954457329699', + }, + { file: 'packages/react-examples/src/react/ComboBox/ComboBox.Basic.Example.tsx', hash: '7502722137008929143' }, + { + file: 'packages/react-examples/src/react/ComboBox/ComboBox.Controlled.Example.tsx', + hash: '14501769400595421085', + }, + { + file: 'packages/react-examples/src/react/ComboBox/ComboBox.ControlledMulti.Example.tsx', + hash: '16765727178232050486', + }, + { + file: 'packages/react-examples/src/react/ComboBox/ComboBox.CustomStyled.Example.tsx', + hash: '5820589524560737520', + }, + { + file: 'packages/react-examples/src/react/ComboBox/ComboBox.ErrorHandling.Example.tsx', + hash: '13622785407850884952', + }, + { + file: 'packages/react-examples/src/react/ComboBox/ComboBox.FreeInput.Example.tsx', + hash: '4208904628665600564', + }, + { file: 'packages/react-examples/src/react/ComboBox/ComboBox.Inline.Example.tsx', hash: '2616579794797596961' }, + { + file: 'packages/react-examples/src/react/ComboBox/ComboBox.SelectAll.Example.tsx', + hash: '5983196249930964714', + }, + { file: 'packages/react-examples/src/react/ComboBox/ComboBox.Toggles.Example.tsx', hash: '2377940844185308494' }, + { + file: 'packages/react-examples/src/react/ComboBox/ComboBox.Virtualized.Example.tsx', + hash: '365148847710436100', + }, + { file: 'packages/react-examples/src/react/ComboBox/ComboBox.doc.tsx', hash: '357185813601538313' }, + { + file: 'packages/react-examples/src/react/ComboBox/docs/ComboBoxBestPractices.md', + hash: '17035604686479250820', + }, + { file: 'packages/react-examples/src/react/ComboBox/docs/ComboBoxOverview.md', hash: '9370671476619575997' }, + { + file: 'packages/react-examples/src/react/CommandBar/CommandBar.Basic.Example.tsx', + hash: '17066427437658259595', + }, + { + file: 'packages/react-examples/src/react/CommandBar/CommandBar.ButtonAs.Example.tsx', + hash: '5837946070733281923', + }, + { + file: 'packages/react-examples/src/react/CommandBar/CommandBar.CommandBarButtonAs.Example.tsx', + hash: '14239124937065302117', + }, + { + file: 'packages/react-examples/src/react/CommandBar/CommandBar.Lazy.Example.tsx', + hash: '17807876090463777179', + }, + { + file: 'packages/react-examples/src/react/CommandBar/CommandBar.SplitDisabled.Example.tsx', + hash: '7982136203595322144', + }, + { file: 'packages/react-examples/src/react/CommandBar/CommandBar.doc.tsx', hash: '1658365400337715044' }, + { + file: 'packages/react-examples/src/react/CommandBar/docs/CommandBarBestPractices.md', + hash: '3244421341483603138', + }, + { file: 'packages/react-examples/src/react/CommandBar/docs/CommandBarDonts.md', hash: '2936847419132216345' }, + { file: 'packages/react-examples/src/react/CommandBar/docs/CommandBarDos.md', hash: '8038266723043974091' }, + { file: 'packages/react-examples/src/react/CommandBar/docs/CommandBarOverview.md', hash: '12433928073671197593' }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Basic.Example.tsx', + hash: '15024050478757158039', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Checkmarks.Example.tsx', + hash: '14515122039023548947', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomMenuItem.Example.tsx', + hash: '15406133367855884805', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomMenuList.Example.tsx', + hash: '18080008874280316465', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Customization.Example.tsx', + hash: '10303354487583732973', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomizationWithNoWrap.Example.tsx', + hash: '7575207669815626429', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Default.Example.tsx', + hash: '1530319152823290747', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Directional.Example.tsx', + hash: '15516342593661369094', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Header.Example.tsx', + hash: '8334550483772262315', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.CustomLayout.Example.tsx', + hash: '13454632454935162608', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.Example.tsx', + hash: '6142740927821312183', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.SecondaryText.Example.tsx', + hash: '5961826317856918036', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Persisted.Example.tsx', + hash: '8213806715052253524', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.ScreenReader.Example.tsx', + hash: '10697606395198110360', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.ScrollBar.Example.tsx', + hash: '1722708791515401786', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Section.Example.tsx', + hash: '18436301671278993690', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Submenu.Example.tsx', + hash: '9533551810157961455', + }, + { file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.doc.tsx', hash: '14800238289383689439' }, + { + file: 'packages/react-examples/src/react/ContextualMenu/docs/ContextualMenuBestPractices.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-examples/src/react/ContextualMenu/docs/ContextualMenuOverview.md', + hash: '12656464994679017844', + }, + { + file: 'packages/react-examples/src/react/DatePicker/DatePicker.Basic.Example.tsx', + hash: '6549048858535079254', + }, + { + file: 'packages/react-examples/src/react/DatePicker/DatePicker.Bounded.Example.tsx', + hash: '945690607138379041', + }, + { + file: 'packages/react-examples/src/react/DatePicker/DatePicker.Disabled.Example.tsx', + hash: '7852459322286540417', + }, + { + file: 'packages/react-examples/src/react/DatePicker/DatePicker.ExternalControls.Example.tsx', + hash: '2929655713090247834', + }, + { + file: 'packages/react-examples/src/react/DatePicker/DatePicker.Format.Example.tsx', + hash: '4800851782533937854', + }, + { + file: 'packages/react-examples/src/react/DatePicker/DatePicker.Input.Example.tsx', + hash: '17862152781842630711', + }, + { + file: 'packages/react-examples/src/react/DatePicker/DatePicker.Required.Example.tsx', + hash: '1199588964446882734', + }, + { + file: 'packages/react-examples/src/react/DatePicker/DatePicker.WeekNumbers.Example.tsx', + hash: '455026032289058001', + }, + { file: 'packages/react-examples/src/react/DatePicker/DatePicker.doc.tsx', hash: '9390102577745904173' }, + { + file: 'packages/react-examples/src/react/DatePicker/docs/DatePickerBestPractices.md', + hash: '6027517843294263285', + }, + { file: 'packages/react-examples/src/react/DatePicker/docs/DatePickerOverview.md', hash: '16501907132069119744' }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.Advanced.Example.tsx', + hash: '10936658170286572027', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.Animation.Example.tsx', + hash: '12952134854918913476', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.Basic.Example.tsx', + hash: '12601034262536179240', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.ColumnResize.Example.tsx', + hash: '7933016525740133567', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.Compact.Example.tsx', + hash: '17284966156754520880', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.CustomColumns.Example.tsx', + hash: '15299506464582400188', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.CustomFooter.Example.tsx', + hash: '5723594411723316360', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.CustomGroupHeaders.Example.tsx', + hash: '17474804655111743620', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.CustomRows.Example.tsx', + hash: '17718844388107480115', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.Documents.Example.tsx', + hash: '16360957095806271966', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.DragDrop.Example.tsx', + hash: '13225220291514927647', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.Grouped.Example.tsx', + hash: '15295013036594439238', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.Grouped.Large.Example.tsx', + hash: '9002360090695420523', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.Example.tsx', + hash: '7191711872095586308', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.Large.Example.tsx', + hash: '13050903748181177330', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.ScrollToIndex.Example.tsx', + hash: '3810081735068958509', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.KeyboardAccessibleResizeAndReorder.Example.tsx', + hash: '12957527607896668759', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.KeyboardOverrides.Example.tsx', + hash: '1988461786659592263', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.NavigatingFocus.Example.tsx', + hash: '10665961175021256090', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.OnRender.Example.tsx', + hash: '2862235458283001317', + }, + { + file: 'packages/react-examples/src/react/DetailsList/DetailsList.ProportionalColumns.Example.tsx', + hash: '3643204862810472365', + }, + { file: 'packages/react-examples/src/react/DetailsList/DetailsList.doc.tsx', hash: '17139182265007990631' }, + { + file: 'packages/react-examples/src/react/DetailsList/docs/DetailsListBestPractices.md', + hash: '14636184564336669454', + }, + { + file: 'packages/react-examples/src/react/DetailsList/docs/DetailsListOverview.md', + hash: '11157854257701048090', + }, + { file: 'packages/react-examples/src/react/Dialog/Dialog.Basic.Example.tsx', hash: '14926128857017700522' }, + { file: 'packages/react-examples/src/react/Dialog/Dialog.Blocking.Example.tsx', hash: '119258777603234032' }, + { file: 'packages/react-examples/src/react/Dialog/Dialog.LargeHeader.Example.tsx', hash: '12232932083852256459' }, + { file: 'packages/react-examples/src/react/Dialog/Dialog.Modeless.Example.tsx', hash: '9025354215202154957' }, + { + file: 'packages/react-examples/src/react/Dialog/Dialog.TopOffsetFixed.Example.tsx', + hash: '13790338846169811872', + }, + { file: 'packages/react-examples/src/react/Dialog/Dialog.doc.tsx', hash: '2269612876944993533' }, + { file: 'packages/react-examples/src/react/Dialog/docs/DialogBestPractices.md', hash: '11907210801286321316' }, + { file: 'packages/react-examples/src/react/Dialog/docs/DialogOverview.md', hash: '3268738518893757993' }, + { file: 'packages/react-examples/src/react/Divider/Divider.doc.tsx', hash: '1350864656580636149' }, + { + file: 'packages/react-examples/src/react/Divider/VerticalDivider.Basic.Example.tsx', + hash: '3257087342624713968', + }, + { + file: 'packages/react-examples/src/react/Divider/VerticalDivider.Custom.Example.tsx', + hash: '7108559914889829781', + }, + { file: 'packages/react-examples/src/react/Divider/docs/DividerBestPractices.md', hash: '11242884916003164840' }, + { file: 'packages/react-examples/src/react/Divider/docs/DividerDonts.md', hash: '13755611818631916263' }, + { file: 'packages/react-examples/src/react/Divider/docs/DividerDos.md', hash: '14635313222160471004' }, + { file: 'packages/react-examples/src/react/Divider/docs/DividerOverview.md', hash: '10876792181377551346' }, + { + file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Basic.Example.tsx', + hash: '3873407903814701928', + }, + { + file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Compact.Example.tsx', + hash: '7410695870915872714', + }, + { + file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Complete.Example.tsx', + hash: '14950282326681339256', + }, + { + file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Conversation.Example.tsx', + hash: '7359603887504081024', + }, + { + file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Image.Example.tsx', + hash: '12288266672582981378', + }, + { file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.doc.tsx', hash: '6543750251896297702' }, + { + file: 'packages/react-examples/src/react/DocumentCard/docs/DocumentCardBestPractices.md', + hash: '18440794351515262745', + }, + { + file: 'packages/react-examples/src/react/DocumentCard/docs/DocumentCardOverview.md', + hash: '16511513555890905893', + }, + { file: 'packages/react-examples/src/react/Dropdown/Dropdown.Basic.Example.tsx', hash: '9014889844532656913' }, + { + file: 'packages/react-examples/src/react/Dropdown/Dropdown.Controlled.Example.tsx', + hash: '9831538055339985201', + }, + { + file: 'packages/react-examples/src/react/Dropdown/Dropdown.ControlledMulti.Example.tsx', + hash: '17207319378954556138', + }, + { file: 'packages/react-examples/src/react/Dropdown/Dropdown.Custom.Example.tsx', hash: '7423142535989082375' }, + { file: 'packages/react-examples/src/react/Dropdown/Dropdown.Error.Example.tsx', hash: '18282001024220261190' }, + { file: 'packages/react-examples/src/react/Dropdown/Dropdown.Required.Example.tsx', hash: '169052893274483609' }, + { + file: 'packages/react-examples/src/react/Dropdown/Dropdown.SelectStyle.Example.tsx', + hash: '15296133929690564301', + }, + { + file: 'packages/react-examples/src/react/Dropdown/Dropdown.Wrapping.Example.tsx', + hash: '11743290379097092920', + }, + { file: 'packages/react-examples/src/react/Dropdown/Dropdown.doc.tsx', hash: '9086926411011225144' }, + { file: 'packages/react-examples/src/react/Dropdown/docs/DropdownBestPractices.md', hash: '6884534436204458575' }, + { file: 'packages/react-examples/src/react/Dropdown/docs/DropdownOverview.md', hash: '1588924648391255177' }, + { + file: 'packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.Basic.Example.tsx', + hash: '5193709435476630783', + }, + { + file: 'packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.Controlled.Example.tsx', + hash: '12108009187713968836', + }, + { + file: 'packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.doc.tsx', + hash: '9397038313871032020', + }, + { + file: 'packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerBestPractices.md', + hash: '17994737321331640608', + }, + { + file: 'packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerDonts.md', + hash: '13761658156329873951', + }, + { + file: 'packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerDos.md', + hash: '2988442599845077013', + }, + { + file: 'packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerOverview.md', + hash: '7342423013769981200', + }, + { + file: 'packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.Basic.Example.tsx', + hash: '802101070041496746', + }, + { + file: 'packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.Controlled.Example.tsx', + hash: '2701111392899146044', + }, + { + file: 'packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.doc.tsx', + hash: '9904931083626785664', + }, + { + file: 'packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerBestPractices.md', + hash: '17994737321331640608', + }, + { + file: 'packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerDonts.md', + hash: '13761658156329873951', + }, + { + file: 'packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerDos.md', + hash: '2988442599845077013', + }, + { + file: 'packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerOverview.md', + hash: '7342423013769981200', + }, + { file: 'packages/react-examples/src/react/Facepile/Facepile.AddFace.Example.tsx', hash: '3378218549063950791' }, + { file: 'packages/react-examples/src/react/Facepile/Facepile.Basic.Example.tsx', hash: '10441413266599899897' }, + { file: 'packages/react-examples/src/react/Facepile/Facepile.Overflow.Example.tsx', hash: '7638052892921375329' }, + { file: 'packages/react-examples/src/react/Facepile/Facepile.doc.tsx', hash: '11908784292302046334' }, + { file: 'packages/react-examples/src/react/Facepile/docs/FacepileBestPractices.md', hash: '3422765395890976172' }, + { file: 'packages/react-examples/src/react/Facepile/docs/FacepileOverview.md', hash: '9798433928308762020' }, + { + file: 'packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.Basic.Example.tsx', + hash: '12622245239280094415', + }, + { + file: 'packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.SelectableFooter.Example.tsx', + hash: '123789111774379882', + }, + { + file: 'packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.doc.tsx', + hash: '14963739742697498603', + }, + { + file: 'packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerBestPractices.md', + hash: '15181747479013544023', + }, + { + file: 'packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerDonts.md', + hash: '5113401384613823537', + }, + { + file: 'packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerDos.md', + hash: '15524347270405680831', + }, + { + file: 'packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerOverview.md', + hash: '6547824185873455057', + }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.Click.Example.tsx', + hash: '257684823259240373', + }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.Example.tsx', + hash: '4891878368416196997', + }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.FocusOnCustomElement.Example.tsx', + hash: '8218921500198309959', + }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.DialogInPanel.Example.tsx', + hash: '8454932298771962096', + }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.FocusZone.Example.tsx', + hash: '13002184895825458792', + }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Nested.Example.tsx', + hash: '7467898439076848824', + }, + { file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.doc.tsx', hash: '10554829977581816321' }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/docs/FocusTrapZoneBestPractices.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/docs/FocusTrapZoneOverview.md', + hash: '16489263610855687923', + }, + { + file: 'packages/react-examples/src/react/FocusTrapZone/e2e/FocusTrapZone.e2e.tsx', + hash: '2315340949449524344', + }, + { + file: 'packages/react-examples/src/react/GroupedList/GroupedList.Basic.Example.tsx', + hash: '3068219762651657477', + }, + { + file: 'packages/react-examples/src/react/GroupedList/GroupedList.Custom.Example.tsx', + hash: '5036102286324939709', + }, + { + file: 'packages/react-examples/src/react/GroupedList/GroupedList.CustomCheckbox.Example.tsx', + hash: '3409300813165441827', + }, + { file: 'packages/react-examples/src/react/GroupedList/GroupedList.doc.tsx', hash: '13027056762316810629' }, + { + file: 'packages/react-examples/src/react/GroupedList/GroupedListV2.Basic.Example.tsx', + hash: '6877910189807441405', + }, + { + file: 'packages/react-examples/src/react/GroupedList/GroupedListV2.Custom.Example.tsx', + hash: '6166019240691139606', + }, + { + file: 'packages/react-examples/src/react/GroupedList/GroupedListV2.CustomCheckbox.Example.tsx', + hash: '7013803679530459064', + }, + { + file: 'packages/react-examples/src/react/GroupedList/docs/GroupedListBestPractices.md', + hash: '4396915049264391582', + }, + { + file: 'packages/react-examples/src/react/GroupedList/docs/GroupedListOverview.md', + hash: '17801108937409570084', + }, + { file: 'packages/react-examples/src/react/HoverCard/HoverCard.Basic.Example.tsx', hash: '15689722060711630441' }, + { + file: 'packages/react-examples/src/react/HoverCard/HoverCard.EventListenerTarget.Example.tsx', + hash: '1184877838989704587', + }, + { + file: 'packages/react-examples/src/react/HoverCard/HoverCard.InstantDismiss.Example.tsx', + hash: '4282847255970339858', + }, + { + file: 'packages/react-examples/src/react/HoverCard/HoverCard.PlainCard.Example.tsx', + hash: '17731134095378448713', + }, + { file: 'packages/react-examples/src/react/HoverCard/HoverCard.Target.Example.tsx', hash: '8142630273180268427' }, + { file: 'packages/react-examples/src/react/HoverCard/HoverCard.doc.tsx', hash: '17447330564499037589' }, + { + file: 'packages/react-examples/src/react/HoverCard/docs/HoverCardBestPractices.md', + hash: '6402841024745661251', + }, + { file: 'packages/react-examples/src/react/HoverCard/docs/HoverCardDonts.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/HoverCard/docs/HoverCardDos.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/HoverCard/docs/HoverCardOverview.md', hash: '1328985595064008706' }, + { file: 'packages/react-examples/src/react/Icon/Icon.Basic.Example.tsx', hash: '17984128308105474954' }, + { file: 'packages/react-examples/src/react/Icon/Icon.Color.Example.tsx', hash: '16645252243482480020' }, + { file: 'packages/react-examples/src/react/Icon/Icon.ImageSheet.Example.tsx', hash: '12417527067508713040' }, + { file: 'packages/react-examples/src/react/Icon/Icon.Svg.Example.tsx', hash: '9804999214021296737' }, + { file: 'packages/react-examples/src/react/Icon/Icon.SvgFactory.Example.tsx', hash: '12995738621667765130' }, + { file: 'packages/react-examples/src/react/Icon/Icon.doc.tsx', hash: '9600632903019317388' }, + { file: 'packages/react-examples/src/react/Icon/docs/IconBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Icon/docs/IconDonts.md', hash: '15344252599448800187' }, + { file: 'packages/react-examples/src/react/Icon/docs/IconDos.md', hash: '15524612824331846611' }, + { file: 'packages/react-examples/src/react/Icon/docs/IconOverview.md', hash: '14232662465928493194' }, + { file: 'packages/react-examples/src/react/Image/Image.Center.Example.tsx', hash: '13688308880362680216' }, + { file: 'packages/react-examples/src/react/Image/Image.CenterContain.Example.tsx', hash: '15537033815011706562' }, + { file: 'packages/react-examples/src/react/Image/Image.CenterCover.Example.tsx', hash: '16676516025593185140' }, + { file: 'packages/react-examples/src/react/Image/Image.Contain.Example.tsx', hash: '3464235972853729614' }, + { file: 'packages/react-examples/src/react/Image/Image.Cover.Example.tsx', hash: '14128222888645305083' }, + { file: 'packages/react-examples/src/react/Image/Image.Default.Example.tsx', hash: '16195834891851780437' }, + { file: 'packages/react-examples/src/react/Image/Image.MaximizeFrame.Example.tsx', hash: '1849642479791586733' }, + { file: 'packages/react-examples/src/react/Image/Image.None.Example.tsx', hash: '310091402227357972' }, + { file: 'packages/react-examples/src/react/Image/Image.doc.tsx', hash: '16404311410705072998' }, + { file: 'packages/react-examples/src/react/Image/docs/ImageBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Image/docs/ImageDonts.md', hash: '13782942017733195935' }, + { file: 'packages/react-examples/src/react/Image/docs/ImageDos.md', hash: '15316394944600606401' }, + { file: 'packages/react-examples/src/react/Image/docs/ImageOverview.md', hash: '9859623914128876128' }, + { file: 'packages/react-examples/src/react/Keytip/KeytipSetup.ts', hash: '11317631626897306946' }, + { file: 'packages/react-examples/src/react/Keytip/Keytips.Basic.Example.tsx', hash: '6640280617156300280' }, + { file: 'packages/react-examples/src/react/Keytip/Keytips.Button.Example.tsx', hash: '16592718340595109676' }, + { file: 'packages/react-examples/src/react/Keytip/Keytips.CommandBar.Example.tsx', hash: '6426746182364253601' }, + { file: 'packages/react-examples/src/react/Keytip/Keytips.Dynamic.Example.tsx', hash: '3832300351857332106' }, + { file: 'packages/react-examples/src/react/Keytip/Keytips.Overflow.Example.tsx', hash: '7360673924545900757' }, + { file: 'packages/react-examples/src/react/Keytip/Keytips.doc.tsx', hash: '13060212283774655089' }, + { file: 'packages/react-examples/src/react/Keytip/docs/KeytipBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Keytip/docs/KeytipDonts.md', hash: '7427975219778042435' }, + { file: 'packages/react-examples/src/react/Keytip/docs/KeytipDos.md', hash: '16533272425370690610' }, + { file: 'packages/react-examples/src/react/Keytip/docs/KeytipOverview.md', hash: '5466366661710388407' }, + { file: 'packages/react-examples/src/react/Label/Label.Basic.Example.tsx', hash: '3115439932532188730' }, + { file: 'packages/react-examples/src/react/Label/Label.doc.tsx', hash: '13629702760836766009' }, + { file: 'packages/react-examples/src/react/Label/docs/LabelBestPractices.md', hash: '2651885143282491468' }, + { file: 'packages/react-examples/src/react/Label/docs/LabelOverview.md', hash: '12429300776760883752' }, + { file: 'packages/react-examples/src/react/Layer/Layer.Basic.Example.tsx', hash: '12030336442605652258' }, + { file: 'packages/react-examples/src/react/Layer/Layer.Customized.Example.tsx', hash: '11956652046660618414' }, + { file: 'packages/react-examples/src/react/Layer/Layer.Hosted.Example.tsx', hash: '10293813580636768822' }, + { file: 'packages/react-examples/src/react/Layer/Layer.NestedLayers.Example.tsx', hash: '10313887427342640125' }, + { file: 'packages/react-examples/src/react/Layer/Layer.doc.tsx', hash: '15060647147787646094' }, + { file: 'packages/react-examples/src/react/Layer/docs/LayerBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Layer/docs/LayerDonts.md', hash: '14968157154523423' }, + { file: 'packages/react-examples/src/react/Layer/docs/LayerDos.md', hash: '3762722919646391153' }, + { file: 'packages/react-examples/src/react/Layer/docs/LayerOverview.md', hash: '8188173414299539873' }, + { file: 'packages/react-examples/src/react/Link/Link.Basic.Example.tsx', hash: '9677832399895249361' }, + { file: 'packages/react-examples/src/react/Link/Link.doc.tsx', hash: '4750051426322737107' }, + { file: 'packages/react-examples/src/react/Link/docs/LinkBestPractices.md', hash: '2033998257774753154' }, + { file: 'packages/react-examples/src/react/Link/docs/LinkOverview.md', hash: '8574338900119621794' }, + { file: 'packages/react-examples/src/react/List/List.Basic.Example.tsx', hash: '15939721599071437024' }, + { file: 'packages/react-examples/src/react/List/List.Ghosting.Example.tsx', hash: '17859063248793674054' }, + { file: 'packages/react-examples/src/react/List/List.Grid.Example.tsx', hash: '10849003690715510287' }, + { file: 'packages/react-examples/src/react/List/List.Scrolling.Example.tsx', hash: '15072124581431867101' }, + { file: 'packages/react-examples/src/react/List/List.doc.tsx', hash: '6049496841500809671' }, + { file: 'packages/react-examples/src/react/List/docs/ListBestPractices.md', hash: '906673786462981672' }, + { file: 'packages/react-examples/src/react/List/docs/ListOverview.md', hash: '7235412708700446784' }, + { + file: 'packages/react-examples/src/react/MarqueeSelection/MarqueeSelection.Basic.Example.tsx', + hash: '8571825305728269079', + }, + { + file: 'packages/react-examples/src/react/MarqueeSelection/MarqueeSelection.doc.tsx', + hash: '3267846887614393481', + }, + { + file: 'packages/react-examples/src/react/MarqueeSelection/docs/MarqueeSelectionBestPractices.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-examples/src/react/MarqueeSelection/docs/MarqueeSelectionOverview.md', + hash: '9757531769826842687', + }, + { + file: 'packages/react-examples/src/react/MessageBar/MessageBar.Basic.Example.tsx', + hash: '9255977763381882612', + }, + { + file: 'packages/react-examples/src/react/MessageBar/MessageBar.NoDelay.Example.tsx', + hash: '8419449418470358759', + }, + { file: 'packages/react-examples/src/react/MessageBar/MessageBar.doc.tsx', hash: '3375136037863448156' }, + { + file: 'packages/react-examples/src/react/MessageBar/docs/MessageBarBestPractices.md', + hash: '14552579103480173435', + }, + { file: 'packages/react-examples/src/react/MessageBar/docs/MessageBarOverview.md', hash: '18169650851106535878' }, + { file: 'packages/react-examples/src/react/Modal/Modal.Basic.Example.tsx', hash: '12053434654761993165' }, + { file: 'packages/react-examples/src/react/Modal/Modal.Modeless.Example.tsx', hash: '8430039276142769105' }, + { file: 'packages/react-examples/src/react/Modal/Modal.doc.tsx', hash: '1692491552675013468' }, + { file: 'packages/react-examples/src/react/Modal/docs/ModalBestPractices.md', hash: '17303831486824291557' }, + { file: 'packages/react-examples/src/react/Modal/docs/ModalOverview.md', hash: '750264115238529685' }, + { file: 'packages/react-examples/src/react/Nav/Nav.Basic.Example.tsx', hash: '7068700491956882868' }, + { + file: 'packages/react-examples/src/react/Nav/Nav.CustomGroupHeaders.Example.tsx', + hash: '11381396761722683633', + }, + { file: 'packages/react-examples/src/react/Nav/Nav.FabricDemoApp.Example.tsx', hash: '14556451596879196930' }, + { file: 'packages/react-examples/src/react/Nav/Nav.FocusZone.Example.tsx', hash: '9346626568314365401' }, + { file: 'packages/react-examples/src/react/Nav/Nav.Nested.Example.tsx', hash: '5579623567974645982' }, + { file: 'packages/react-examples/src/react/Nav/Nav.Wrapped.Example.tsx', hash: '448985030608262017' }, + { file: 'packages/react-examples/src/react/Nav/Nav.doc.tsx', hash: '336230450141047609' }, + { file: 'packages/react-examples/src/react/Nav/docs/NavBestPractices.md', hash: '14284117560595097883' }, + { file: 'packages/react-examples/src/react/Nav/docs/NavOverview.md', hash: '1264928082970175275' }, + { + file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.Basic.Example.tsx', + hash: '13374794158924025300', + }, + { + file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.BasicReversed.Example.tsx', + hash: '6883040674335126457', + }, + { + file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.Custom.Example.tsx', + hash: '18395805109691746051', + }, + { + file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.Vertical.Example.tsx', + hash: '2772424211657725630', + }, + { file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.doc.tsx', hash: '17904403700316649397' }, + { + file: 'packages/react-examples/src/react/OverflowSet/docs/OverflowSetOverview.md', + hash: '16450753773806735512', + }, + { file: 'packages/react-examples/src/react/Overlay/Overlay.Dark.Example.tsx', hash: '5211673163618366885' }, + { file: 'packages/react-examples/src/react/Overlay/Overlay.Light.Example.tsx', hash: '12813896686728752122' }, + { file: 'packages/react-examples/src/react/Overlay/Overlay.doc.tsx', hash: '12351709045741002672' }, + { file: 'packages/react-examples/src/react/Overlay/docs/OverlayBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Overlay/docs/OverlayDonts.md', hash: '7421340973886295081' }, + { file: 'packages/react-examples/src/react/Overlay/docs/OverlayDos.md', hash: '1721162984869848674' }, + { file: 'packages/react-examples/src/react/Overlay/docs/OverlayOverview.md', hash: '109444894527994868' }, + { file: 'packages/react-examples/src/react/Panel/Panel.Basic.Example.tsx', hash: '18348534594647973417' }, + { + file: 'packages/react-examples/src/react/Panel/Panel.ConfirmDismiss.Example.tsx', + hash: '13758804553242827638', + }, + { file: 'packages/react-examples/src/react/Panel/Panel.Controlled.Example.tsx', hash: '11469069615638120232' }, + { file: 'packages/react-examples/src/react/Panel/Panel.Footer.Example.tsx', hash: '282488112062051188' }, + { + file: 'packages/react-examples/src/react/Panel/Panel.HandleDismissTarget.Example.tsx', + hash: '6813491291038054532', + }, + { + file: 'packages/react-examples/src/react/Panel/Panel.HiddenOnDismiss.Example.tsx', + hash: '8068150090023928072', + }, + { file: 'packages/react-examples/src/react/Panel/Panel.LightDismiss.Example.tsx', hash: '10066513719817603751' }, + { + file: 'packages/react-examples/src/react/Panel/Panel.LightDismissCustom.Example.tsx', + hash: '5480968978251464037', + }, + { file: 'packages/react-examples/src/react/Panel/Panel.Navigation.Example.tsx', hash: '14746977786281311809' }, + { file: 'packages/react-examples/src/react/Panel/Panel.NonModal.Example.tsx', hash: '8537776278560152960' }, + { file: 'packages/react-examples/src/react/Panel/Panel.Sizes.Example.tsx', hash: '11589826232157726221' }, + { file: 'packages/react-examples/src/react/Panel/Panel.doc.tsx', hash: '12570788300801762430' }, + { file: 'packages/react-examples/src/react/Panel/docs/PanelBestPractices.md', hash: '8066461067264139077' }, + { file: 'packages/react-examples/src/react/Panel/docs/PanelOverview.md', hash: '12758515869681944156' }, + { + file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.Compact.Example.tsx', + hash: '6698475318564411316', + }, + { + file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.Controlled.Example.tsx', + hash: '10151453783919524204', + }, + { + file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.LimitedSearch.Example.tsx', + hash: '2497287395716121825', + }, + { + file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.List.Example.tsx', + hash: '17729190275421189817', + }, + { + file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.Normal.Example.tsx', + hash: '4039497620015636126', + }, + { + file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.PreselectedItems.Example.tsx', + hash: '15252965684870874172', + }, + { + file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.ProcessSelection.Example.tsx', + hash: '7503099760438933307', + }, + { file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.doc.tsx', hash: '778687821583669658' }, + { + file: 'packages/react-examples/src/react/PeoplePicker/docs/PeoplePickerBestPractices.md', + hash: '9928440444910866942', + }, + { + file: 'packages/react-examples/src/react/PeoplePicker/docs/PeoplePickerOverview.md', + hash: '15330317123451214903', + }, + { + file: 'packages/react-examples/src/react/PeoplePicker/examples/PeoplePickerExampleData.ts', + hash: '14353130418831610367', + }, + { file: 'packages/react-examples/src/react/Persona/Persona.Alternate.Example.tsx', hash: '2866159117048715114' }, + { file: 'packages/react-examples/src/react/Persona/Persona.Basic.Example.tsx', hash: '7932380203044306436' }, + { file: 'packages/react-examples/src/react/Persona/Persona.Colors.Example.tsx', hash: '2032631877590110768' }, + { + file: 'packages/react-examples/src/react/Persona/Persona.CustomCoinRender.Example.tsx', + hash: '13016865546518992020', + }, + { + file: 'packages/react-examples/src/react/Persona/Persona.CustomRender.Example.tsx', + hash: '7454634260085383601', + }, + { file: 'packages/react-examples/src/react/Persona/Persona.Initials.Example.tsx', hash: '2802357776118691299' }, + { file: 'packages/react-examples/src/react/Persona/Persona.Presence.Example.tsx', hash: '8911648096661539539' }, + { + file: 'packages/react-examples/src/react/Persona/Persona.PresenceColor.Example.tsx', + hash: '14904713972765434990', + }, + { + file: 'packages/react-examples/src/react/Persona/Persona.UnknownPersona.Example.tsx', + hash: '16568116341804152510', + }, + { file: 'packages/react-examples/src/react/Persona/Persona.doc.tsx', hash: '2240522496260828325' }, + { file: 'packages/react-examples/src/react/Persona/docs/PersonaBestPractices.md', hash: '16737357533417045300' }, + { file: 'packages/react-examples/src/react/Persona/docs/PersonaOverview.md', hash: '6206273138744719771' }, + { + file: 'packages/react-examples/src/react/Pickers/Picker.CustomResult.Example.tsx', + hash: '15301754753278259359', + }, + { file: 'packages/react-examples/src/react/Pickers/Pickers.doc.tsx', hash: '5987417366770875328' }, + { file: 'packages/react-examples/src/react/Pickers/TagPicker.Basic.Example.tsx', hash: '2914453979140321065' }, + { + file: 'packages/react-examples/src/react/Pickers/TagPicker.CustomRemoveIcon.Example.tsx', + hash: '5506752771543619207', + }, + { file: 'packages/react-examples/src/react/Pickers/TagPicker.Inline.Example.tsx', hash: '10670703175363899826' }, + { file: 'packages/react-examples/src/react/Pickers/docs/PickersBestPractices.md', hash: '3300666071909453850' }, + { file: 'packages/react-examples/src/react/Pickers/docs/PickersOverview.md', hash: '8724244213473266172' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.AlwaysRender.Example.tsx', hash: '16012670621837773894' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.Basic.Example.tsx', hash: '997670773469861034' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.IconCount.Example.tsx', hash: '11061311590518813315' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.Large.Example.tsx', hash: '16210398516447265344' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.OnChange.Example.tsx', hash: '4429540683677202104' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.OverflowMenu.Example.tsx', hash: '1648219339233567984' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.Override.Example.tsx', hash: '4593536575634024443' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.Remove.Example.tsx', hash: '18273271464801981813' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.Separate.Example.tsx', hash: '9803273520945449452' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.Tabs.Example.tsx', hash: '208905264665611074' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.TabsLarge.Example.tsx', hash: '583401572950803339' }, + { file: 'packages/react-examples/src/react/Pivot/Pivot.doc.tsx', hash: '6678416039317864807' }, + { file: 'packages/react-examples/src/react/Pivot/docs/PivotBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Pivot/docs/PivotDonts.md', hash: '13132784219352103008' }, + { file: 'packages/react-examples/src/react/Pivot/docs/PivotDos.md', hash: '13517426324971769199' }, + { file: 'packages/react-examples/src/react/Pivot/docs/PivotOverview.md', hash: '12751248200398699321' }, + { file: 'packages/react-examples/src/react/Popup/Popup.Basic.Example.tsx', hash: '15279825885362117643' }, + { file: 'packages/react-examples/src/react/Popup/Popup.Modal.Example.tsx', hash: '14146653354220845648' }, + { file: 'packages/react-examples/src/react/Popup/Popup.doc.tsx', hash: '6530362493639771944' }, + { file: 'packages/react-examples/src/react/Popup/docs/PopupBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Popup/docs/PopupDonts.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Popup/docs/PopupDos.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Popup/docs/PopupOverview.md', hash: '6239682717430606881' }, + { + file: 'packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.Basic.Example.tsx', + hash: '7878042562887496662', + }, + { + file: 'packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.Indeterminate.Example.tsx', + hash: '13545740794685865816', + }, + { + file: 'packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.doc.tsx', + hash: '4525749493416033155', + }, + { + file: 'packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorBestPractices.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorDonts.md', + hash: '1846679186045071833', + }, + { + file: 'packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorDos.md', + hash: '2737665049045063520', + }, + { + file: 'packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorOverview.md', + hash: '4902324094361584629', + }, + { file: 'packages/react-examples/src/react/Rating/Rating.Basic.Example.tsx', hash: '541982030987552717' }, + { + file: 'packages/react-examples/src/react/Rating/Rating.ButtonControlled.Example.tsx', + hash: '9584707866723820214', + }, + { file: 'packages/react-examples/src/react/Rating/Rating.doc.tsx', hash: '9281360173408764036' }, + { file: 'packages/react-examples/src/react/Rating/docs/RatingBestPractices.md', hash: '15970256686322638446' }, + { file: 'packages/react-examples/src/react/Rating/docs/RatingOverview.md', hash: '4717872153473304763' }, + { + file: 'packages/react-examples/src/react/ResizeGroup/ResizeGroup.FlexBox.Example.tsx', + hash: '5819645475632931604', + }, + { + file: 'packages/react-examples/src/react/ResizeGroup/ResizeGroup.OverflowSet.Example.tsx', + hash: '5721473211608888978', + }, + { + file: 'packages/react-examples/src/react/ResizeGroup/ResizeGroup.VerticalOverflowSet.Example.tsx', + hash: '9364272985055697723', + }, + { file: 'packages/react-examples/src/react/ResizeGroup/ResizeGroup.doc.tsx', hash: '9940807793702429141' }, + { + file: 'packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupBestPractices.md', + hash: '3244421341483603138', + }, + { file: 'packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupDonts.md', hash: '1750390794817632172' }, + { file: 'packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupDos.md', hash: '7245572358491681391' }, + { + file: 'packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupOverview.md', + hash: '2352326427353831267', + }, + { + file: 'packages/react-examples/src/react/ScrollablePane/ScrollablePane.Default.Example.tsx', + hash: '11113877117518547723', + }, + { + file: 'packages/react-examples/src/react/ScrollablePane/ScrollablePane.DetailsList.Example.tsx', + hash: '1882085002600555650', + }, + { file: 'packages/react-examples/src/react/ScrollablePane/ScrollablePane.doc.tsx', hash: '8461319800418810321' }, + { + file: 'packages/react-examples/src/react/ScrollablePane/docs/ScrollablePaneBestPractices.md', + hash: '13904886968403828885', + }, + { + file: 'packages/react-examples/src/react/ScrollablePane/docs/ScrollablePaneOverview.md', + hash: '10084326919845044900', + }, + { + file: 'packages/react-examples/src/react/SearchBox/SearchBox.CustomIcon.Example.tsx', + hash: '5426414070818314082', + }, + { + file: 'packages/react-examples/src/react/SearchBox/SearchBox.Disabled.Example.tsx', + hash: '7664933528098226509', + }, + { + file: 'packages/react-examples/src/react/SearchBox/SearchBox.FullSize.Example.tsx', + hash: '9644008808837079699', + }, + { file: 'packages/react-examples/src/react/SearchBox/SearchBox.Small.Example.tsx', hash: '11299667884153755044' }, + { + file: 'packages/react-examples/src/react/SearchBox/SearchBox.Underlined.Example.tsx', + hash: '16619076302738754714', + }, + { file: 'packages/react-examples/src/react/SearchBox/SearchBox.doc.tsx', hash: '11032357203793675680' }, + { + file: 'packages/react-examples/src/react/SearchBox/docs/SearchBoxBestPractices.md', + hash: '3557439061338581490', + }, + { file: 'packages/react-examples/src/react/SearchBox/docs/SearchBoxOverview.md', hash: '6266717057770798423' }, + { + file: 'packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.Basic.Example.tsx', + hash: '10946830108355350291', + }, + { + file: 'packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.Controlled.Example.tsx', + hash: '17272459144010908201', + }, + { + file: 'packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.doc.tsx', + hash: '5408048338806923770', + }, + { + file: 'packages/react-examples/src/react/SelectedPeopleList/docs/SelectedPeopleListDonts.md', + hash: '970258102470137051', + }, + { + file: 'packages/react-examples/src/react/SelectedPeopleList/docs/SelectedPeopleListDos.md', + hash: '14926848229419922236', + }, + { file: 'packages/react-examples/src/react/Selection/Selection.Basic.Example.tsx', hash: '14256235658935737442' }, + { file: 'packages/react-examples/src/react/Selection/Selection.doc.tsx', hash: '14968163274251836508' }, + { file: 'packages/react-examples/src/react/Selection/docs/SelectionOverview.md', hash: '1749544745534143256' }, + { file: 'packages/react-examples/src/react/Separator/Separator.Basic.Example.tsx', hash: '9574867819311136970' }, + { file: 'packages/react-examples/src/react/Separator/Separator.Icon.Example.tsx', hash: '13637856394144991987' }, + { file: 'packages/react-examples/src/react/Separator/Separator.Theming.Example.tsx', hash: '23141840819740680' }, + { file: 'packages/react-examples/src/react/Separator/Separator.doc.tsx', hash: '3926454664949544719' }, + { + file: 'packages/react-examples/src/react/Separator/docs/SeparatorBestPractices.md', + hash: '3244421341483603138', + }, + { file: 'packages/react-examples/src/react/Separator/docs/SeparatorDonts.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Separator/docs/SeparatorDos.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Separator/docs/SeparatorOverview.md', hash: '9460225228566615517' }, + { + file: 'packages/react-examples/src/react/Shimmer/Shimmer.Application.Example.tsx', + hash: '16376361212863184150', + }, + { file: 'packages/react-examples/src/react/Shimmer/Shimmer.Basic.Example.tsx', hash: '9370768287624512121' }, + { + file: 'packages/react-examples/src/react/Shimmer/Shimmer.CustomElements.Example.tsx', + hash: '17104489554377523890', + }, + { file: 'packages/react-examples/src/react/Shimmer/Shimmer.LoadData.Example.tsx', hash: '5030842721342374838' }, + { file: 'packages/react-examples/src/react/Shimmer/Shimmer.Styling.Example.tsx', hash: '6915665004198389032' }, + { file: 'packages/react-examples/src/react/Shimmer/Shimmer.doc.tsx', hash: '8736141412298840736' }, + { file: 'packages/react-examples/src/react/Shimmer/docs/ShimmerBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Shimmer/docs/ShimmerDonts.md', hash: '13934448943707141694' }, + { file: 'packages/react-examples/src/react/Shimmer/docs/ShimmerDos.md', hash: '1558710628742347330' }, + { file: 'packages/react-examples/src/react/Shimmer/docs/ShimmerOverview.md', hash: '4843985997669345004' }, + { file: 'packages/react-examples/src/react/Slider/Slider.Basic.Example.tsx', hash: '16122885293446272894' }, + { file: 'packages/react-examples/src/react/Slider/Slider.Ranged.Example.tsx', hash: '11422561318027565393' }, + { file: 'packages/react-examples/src/react/Slider/Slider.Vertical.Example.tsx', hash: '13206520944105997136' }, + { file: 'packages/react-examples/src/react/Slider/Slider.doc.tsx', hash: '8913922147770701189' }, + { file: 'packages/react-examples/src/react/Slider/docs/SliderBestPractices.md', hash: '2387148131789983162' }, + { file: 'packages/react-examples/src/react/Slider/docs/SliderOverview.md', hash: '8504488320612513093' }, + { + file: 'packages/react-examples/src/react/SpinButton/SpinButton.Basic.Example.tsx', + hash: '9006433823948792522', + }, + { + file: 'packages/react-examples/src/react/SpinButton/SpinButton.Controlled.Example.tsx', + hash: '12209496242538369748', + }, + { + file: 'packages/react-examples/src/react/SpinButton/SpinButton.CustomStyled.Example.tsx', + hash: '16465650619764579179', + }, + { file: 'packages/react-examples/src/react/SpinButton/SpinButton.Icon.Example.tsx', hash: '6626788932726993518' }, + { + file: 'packages/react-examples/src/react/SpinButton/SpinButton.Suffix.Example.tsx', + hash: '1079251097865055762', + }, + { + file: 'packages/react-examples/src/react/SpinButton/SpinButton.TopPosition.Example.tsx', + hash: '582843143874513756', + }, + { file: 'packages/react-examples/src/react/SpinButton/SpinButton.doc.tsx', hash: '7586160469216796173' }, + { + file: 'packages/react-examples/src/react/SpinButton/docs/SpinButtonBestPractices.md', + hash: '7394595204008996672', + }, + { file: 'packages/react-examples/src/react/SpinButton/docs/SpinButtonOverview.md', hash: '1350428310209392348' }, + { file: 'packages/react-examples/src/react/Spinner/Spinner.Basic.Example.tsx', hash: '5676613769831055307' }, + { file: 'packages/react-examples/src/react/Spinner/Spinner.Labeled.Example.tsx', hash: '6554690103655359792' }, + { file: 'packages/react-examples/src/react/Spinner/Spinner.doc.tsx', hash: '2680295685347079214' }, + { file: 'packages/react-examples/src/react/Spinner/docs/SpinnerBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Spinner/docs/SpinnerDonts.md', hash: '13465962442451970729' }, + { file: 'packages/react-examples/src/react/Spinner/docs/SpinnerDos.md', hash: '15907047634456378207' }, + { file: 'packages/react-examples/src/react/Spinner/docs/SpinnerOverview.md', hash: '1153354032756284251' }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Basic.Example.tsx', + hash: '397185853371300849', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Configure.Example.tsx', + hash: '3068600573305640316', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Grow.Example.tsx', + hash: '7663043324894099728', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.HorizontalAlign.Example.tsx', + hash: '16107132022246210787', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Reversed.Example.tsx', + hash: '6241489615533027431', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Shrink.Example.tsx', + hash: '4124600081374028027', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Spacing.Example.tsx', + hash: '1220623790429356324', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.VerticalAlign.Example.tsx', + hash: '2844202655523336279', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Wrap.Example.tsx', + hash: '4432830012103328674', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.WrapAdvanced.Example.tsx', + hash: '5719721466279762631', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.WrapNested.Example.tsx', + hash: '8495148496978143621', + }, + { file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Basic.Example.tsx', hash: '6782079249119429213' }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Configure.Example.tsx', + hash: '8514056594295328011', + }, + { file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Grow.Example.tsx', hash: '17937660614534801046' }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Vertical.HorizontalAlign.Example.tsx', + hash: '4266961035406961486', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Reversed.Example.tsx', + hash: '11573608768450252432', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Shrink.Example.tsx', + hash: '15026509761358180518', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Spacing.Example.tsx', + hash: '10900219514926473354', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Vertical.VerticalAlign.Example.tsx', + hash: '3270795531306189517', + }, + { file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Wrap.Example.tsx', hash: '15143405347761112638' }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Vertical.WrapAdvanced.Example.tsx', + hash: '921574311353468954', + }, + { + file: 'packages/react-examples/src/react/Stack/Stack.Vertical.WrapNested.Example.tsx', + hash: '15383052396031418364', + }, + { file: 'packages/react-examples/src/react/Stack/Stack.doc.tsx', hash: '7761546058475299469' }, + { file: 'packages/react-examples/src/react/Stack/docs/StackBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Stack/docs/StackDonts.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Stack/docs/StackDos.md', hash: '11728596372223301314' }, + { file: 'packages/react-examples/src/react/Stack/docs/StackOverview.md', hash: '12397352656042692504' }, + { + file: 'packages/react-examples/src/react/SwatchColorPicker/SwatchColorPicker.Basic.Example.tsx', + hash: '4923638072801173377', + }, + { + file: 'packages/react-examples/src/react/SwatchColorPicker/SwatchColorPicker.doc.tsx', + hash: '5507998858411018179', + }, + { + file: 'packages/react-examples/src/react/SwatchColorPicker/docs/SwatchColorPickerBestPractices.md', + hash: '4392559887818317006', + }, + { + file: 'packages/react-examples/src/react/SwatchColorPicker/docs/SwatchColorPickerOverview.md', + hash: '17352028475438906319', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.Basic.Example.tsx', + hash: '7495237260950355108', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.ButtonOrder.Example.tsx', + hash: '5239155264005845143', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.Condensed.Example.tsx', + hash: '877446611084859392', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.Illustration.Example.tsx', + hash: '7966558914940147995', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.MultiStep.Example.tsx', + hash: '1471557829804882323', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.SmallHeadline.Example.tsx', + hash: '6347084873900866086', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.Wide.Example.tsx', + hash: '11343270132436278903', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.WideIllustration.Example.tsx', + hash: '18124615145562684929', + }, + { file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.doc.tsx', hash: '3164002226905703915' }, + { + file: 'packages/react-examples/src/react/TeachingBubble/docs/TeachingBubbleBestPractices.md', + hash: '12253372352985739055', + }, + { + file: 'packages/react-examples/src/react/TeachingBubble/docs/TeachingBubbleOverview.md', + hash: '9592985478022845846', + }, + { file: 'packages/react-examples/src/react/Text/Text.Block.Example.tsx', hash: '2572640488515201257' }, + { file: 'packages/react-examples/src/react/Text/Text.Ramp.Example.tsx', hash: '17910302471956741708' }, + { file: 'packages/react-examples/src/react/Text/Text.Weights.Example.tsx', hash: '651063831392855072' }, + { file: 'packages/react-examples/src/react/Text/Text.Wrap.Example.tsx', hash: '1806536952248660360' }, + { file: 'packages/react-examples/src/react/Text/Text.doc.tsx', hash: '11970359592381181046' }, + { file: 'packages/react-examples/src/react/Text/docs/TextBestPractices.md', hash: '3244421341483603138' }, + { file: 'packages/react-examples/src/react/Text/docs/TextDonts.md', hash: '1812687761537955713' }, + { file: 'packages/react-examples/src/react/Text/docs/TextDos.md', hash: '3552494451723474854' }, + { file: 'packages/react-examples/src/react/Text/docs/TextOverview.md', hash: '6201808888188087402' }, + { file: 'packages/react-examples/src/react/TextField/TextField.Basic.Example.tsx', hash: '17697340126601025361' }, + { + file: 'packages/react-examples/src/react/TextField/TextField.Borderless.Example.tsx', + hash: '5776762670076842305', + }, + { + file: 'packages/react-examples/src/react/TextField/TextField.Controlled.Example.tsx', + hash: '13387913485237516134', + }, + { + file: 'packages/react-examples/src/react/TextField/TextField.CustomRender.Example.tsx', + hash: '15731781620662596897', + }, + { + file: 'packages/react-examples/src/react/TextField/TextField.ErrorMessage.Example.tsx', + hash: '13848334992902664893', + }, + { + file: 'packages/react-examples/src/react/TextField/TextField.Masked.Example.tsx', + hash: '16940421866897217217', + }, + { + file: 'packages/react-examples/src/react/TextField/TextField.Multiline.Example.tsx', + hash: '14466852683033202902', + }, + { + file: 'packages/react-examples/src/react/TextField/TextField.PrefixAndSuffix.Example.tsx', + hash: '5621047978049180529', + }, + { + file: 'packages/react-examples/src/react/TextField/TextField.Styled.Example.tsx', + hash: '17474113732489640237', + }, + { file: 'packages/react-examples/src/react/TextField/TextField.doc.tsx', hash: '351449129733137615' }, + { + file: 'packages/react-examples/src/react/TextField/docs/TextFieldBestPractices.md', + hash: '4891779884027992136', + }, + { file: 'packages/react-examples/src/react/TextField/docs/TextFieldOverview.md', hash: '1575292705357077088' }, + { file: 'packages/react-examples/src/react/Theme/Theme.doc.tsx', hash: '5725525103292734150' }, + { file: 'packages/react-examples/src/react/Theme/docs/ThemesOverview.md', hash: '1025689132255097325' }, + { file: 'packages/react-examples/src/react/ThemeGenerator/ThemeGenerator.doc.tsx', hash: '2481012262064489377' }, + { + file: 'packages/react-examples/src/react/ThemeProvider/ThemeProvider.Basic.Example.tsx', + hash: '18065435800720689216', + }, + { + file: 'packages/react-examples/src/react/ThemeProvider/ThemeProvider.Nested.Example.tsx', + hash: '17498722943115260456', + }, + { file: 'packages/react-examples/src/react/ThemeProvider/ThemeProvider.doc.tsx', hash: '14679110571809507221' }, + { + file: 'packages/react-examples/src/react/ThemeProvider/ThemeProvider.stories.tsx', + hash: '4360939645926293819', + }, + { + file: 'packages/react-examples/src/react/ThemeProvider/docs/ThemeProviderBestPractices.md', + hash: '9291823125102619223', + }, + { + file: 'packages/react-examples/src/react/ThemeProvider/docs/ThemeProviderOverview.md', + hash: '16911649373008640709', + }, + { + file: 'packages/react-examples/src/react/TimePicker/TimePicker.Basic.Example.tsx', + hash: '2986069269055991177', + }, + { + file: 'packages/react-examples/src/react/TimePicker/TimePicker.Controlled.Example.tsx', + hash: '175125299373631613', + }, + { + file: 'packages/react-examples/src/react/TimePicker/TimePicker.CustomTimeStrings.Example.tsx', + hash: '7605314919297467891', + }, + { + file: 'packages/react-examples/src/react/TimePicker/TimePicker.DateTimePicker.Example.tsx', + hash: '8634935140509827042', + }, + { + file: 'packages/react-examples/src/react/TimePicker/TimePicker.ValidationResult.Example.tsx', + hash: '4869507487398466300', + }, + { file: 'packages/react-examples/src/react/TimePicker/TimePicker.doc.tsx', hash: '15162167716925661256' }, + { + file: 'packages/react-examples/src/react/TimePicker/docs/TimePickerBestPractices.md', + hash: '17184947854592075536', + }, + { file: 'packages/react-examples/src/react/TimePicker/docs/TimePickerOverview.md', hash: '12628229697985609328' }, + { file: 'packages/react-examples/src/react/Toggle/Toggle.Basic.Example.tsx', hash: '296997063617274157' }, + { file: 'packages/react-examples/src/react/Toggle/Toggle.CustomLabel.Example.tsx', hash: '12819052129733986050' }, + { file: 'packages/react-examples/src/react/Toggle/Toggle.doc.tsx', hash: '16648643731009257993' }, + { file: 'packages/react-examples/src/react/Toggle/docs/ToggleBestPractices.md', hash: '14671921759592124956' }, + { file: 'packages/react-examples/src/react/Toggle/docs/ToggleOverview.md', hash: '5058309645448523639' }, + { + file: 'packages/react-examples/src/react/Tooltip/Tooltip.AbsolutePosition.Example.tsx', + hash: '6422947980529143287', + }, + { file: 'packages/react-examples/src/react/Tooltip/Tooltip.Basic.Example.tsx', hash: '11598663710486420109' }, + { file: 'packages/react-examples/src/react/Tooltip/Tooltip.Custom.Example.tsx', hash: '13584977360149752361' }, + { file: 'packages/react-examples/src/react/Tooltip/Tooltip.Display.Example.tsx', hash: '4847577445051092212' }, + { + file: 'packages/react-examples/src/react/Tooltip/Tooltip.Interactive.Example.tsx', + hash: '7828051206751308669', + }, + { file: 'packages/react-examples/src/react/Tooltip/Tooltip.Overflow.Example.tsx', hash: '806920868530231686' }, + { file: 'packages/react-examples/src/react/Tooltip/Tooltip.doc.tsx', hash: '296399804726274849' }, + { file: 'packages/react-examples/src/react/Tooltip/docs/TooltipBestPractices.md', hash: '7755171346331932930' }, + { file: 'packages/react-examples/src/react/Tooltip/docs/TooltipOverview.md', hash: '8796628313378671712' }, + { + file: 'packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Example.scss', + hash: '8887148203940963303', + }, + { + file: 'packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Example.tsx', + hash: '11074158271954337286', + }, + { + file: 'packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx', + hash: '1782051463240559076', + }, + { + file: 'packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.MarkedDays.Example.tsx', + hash: '83617302861297456', + }, + { file: 'packages/react-examples/src/react-cards/Card/Card.Configure.Example.tsx', hash: '6829387816201221529' }, + { + file: 'packages/react-examples/src/react-cards/Card/Card.Horizontal.Example.tsx', + hash: '17316572223916603990', + }, + { file: 'packages/react-examples/src/react-cards/Card/Card.Vertical.Example.tsx', hash: '8828664300500480205' }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.Basic.Example.tsx', + hash: '17280228016338608640', + }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.CustomAccessibility.Example.tsx', + hash: '91286154134076767', + }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.DataChange.Example.tsx', + hash: '6688939291679086171', + }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.LargeData.Example.tsx', + hash: '14375772672176497300', + }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.Multiple.Example.tsx', + hash: '5790932728445775074', + }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.Styled.Example.tsx', + hash: '3219925141936248769', + }, + { file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.doc.tsx', hash: '4837721049513527166' }, + { file: 'packages/react-examples/src/react-charting/AreaChart/AreaChartPage.tsx', hash: '4908599330711186091' }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/docs/AreaChartBestPractices.md', + hash: '8667501283021664942', + }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/docs/AreaChartDonts.md', + hash: '6341862057868122032', + }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/docs/AreaChartDos.md', + hash: '13112543964230723538', + }, + { + file: 'packages/react-examples/src/react-charting/AreaChart/docs/AreaChartOverview.md', + hash: '6557352484419296085', + }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.Basic.Example.tsx', + hash: '14742041563816254972', + }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.CustomAccessibility.Example.tsx', + hash: '5947170745589368987', + }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.CustomCallout.Example.tsx', + hash: '10044935613886027628', + }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.Dynamic.Example.tsx', + hash: '12862431042025783292', + }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.doc.tsx', + hash: '12628122887827348086', + }, + { file: 'packages/react-examples/src/react-charting/DonutChart/DonutChartPage.tsx', hash: '372760954603184761' }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/docs/DonutChartBestPractices.md', + hash: '16300067599723018120', + }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/docs/DonutChartDonts.md', + hash: '13677672991812468743', + }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/docs/DonutChartDos.md', + hash: '13594512462831129291', + }, + { + file: 'packages/react-examples/src/react-charting/DonutChart/docs/DonutChartOverview.md', + hash: '6204014879587669217', + }, + { + file: 'packages/react-examples/src/react-charting/GaugeChart/GaugeChart.Basic.Example.tsx', + hash: '16149580628524933008', + }, + { + file: 'packages/react-examples/src/react-charting/GaugeChart/GaugeChart.Variant.Example.tsx', + hash: '9126260302719343105', + }, + { + file: 'packages/react-examples/src/react-charting/GaugeChart/GaugeChart.doc.tsx', + hash: '10718149355691209173', + }, + { + file: 'packages/react-examples/src/react-charting/GaugeChart/GaugeChartPage.tsx', + hash: '16640437771472467039', + }, + { + file: 'packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartBestPractices.md', + hash: '15727587785304445954', + }, + { + file: 'packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartDonts.md', + hash: '1081792757328488596', + }, + { + file: 'packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartDos.md', + hash: '7794023420355098591', + }, + { + file: 'packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartOverview.md', + hash: '17251215862264929766', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Basic.Example.tsx', + hash: '8765749276400440476', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.CustomAccessibility.Example.tsx', + hash: '7855107173035791090', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Styled.Example.tsx', + hash: '10072552460465707316', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Truncated.Example.tsx', + hash: '14359382740573587985', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.doc.tsx', + hash: '11514123822468590747', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChartPage.tsx', + hash: '8452333274806373661', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartBestPractices.md', + hash: '15294929844943858089', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartDonts.md', + hash: '16148048113015171770', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartDos.md', + hash: '14610165816610031867', + }, + { + file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartOverview.md', + hash: '10931229892839990338', + }, + { + file: 'packages/react-examples/src/react-charting/HeatMapChart/HeatMapChart.doc.tsx', + hash: '16115623563074567806', + }, + { + file: 'packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartBasic.CustomAccessibility.Example.tsx', + hash: '11708850517126970876', + }, + { + file: 'packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartBasic.Example.tsx', + hash: '10262357403800107', + }, + { + file: 'packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartPage.tsx', + hash: '6875793756240523159', + }, + { + file: 'packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartBestPractices.md', + hash: '2397917437906085447', + }, + { + file: 'packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartDonts.md', + hash: '3773423687848795802', + }, + { + file: 'packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartDos.md', + hash: '15371103820530549100', + }, + { + file: 'packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartOverview.md', + hash: '11879653409540920034', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Basic.Example.tsx', + hash: '13252158935887926671', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Benchmark.Example.tsx', + hash: '4287642655868330949', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.CustomAccessibility.Example.tsx', + hash: '8745243420945124223', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.CustomCallout.Example.tsx', + hash: '13406079384862782588', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Variant.Example.tsx', + hash: '2920049457733182532', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.doc.tsx', + hash: '17502781025553440606', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChartPage.tsx', + hash: '8291344898342706236', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartBestPractices.md', + hash: '16151128446301762382', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartDonts.md', + hash: '9744770780362582179', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartDos.md', + hash: '325930012420447456', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartOverview.md', + hash: '10347106881597446108', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.AxisTooltip.Example.tsx', + hash: '6459704628651063468', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.Basic.Example.tsx', + hash: '5516921156313325496', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.StringAxisTooltip.Example.tsx', + hash: '16828106331991834440', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.doc.tsx', + hash: '14590401134663921680', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxisPage.tsx', + hash: '5035299730033890133', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisBestPractices.md', + hash: '1883076091925546845', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisDonts.md', + hash: '1929719836825879626', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisDos.md', + hash: '7882006878115043204', + }, + { + file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisOverview.md', + hash: '2090146818650993319', + }, + { + file: 'packages/react-examples/src/react-charting/Legends/Legends.Basic.Example.tsx', + hash: '13318547901894743623', + }, + { + file: 'packages/react-examples/src/react-charting/Legends/Legends.OnChange.Example.tsx', + hash: '254509847114453779', + }, + { + file: 'packages/react-examples/src/react-charting/Legends/Legends.Overflow.Example.tsx', + hash: '13509103622834344877', + }, + { + file: 'packages/react-examples/src/react-charting/Legends/Legends.Styled.Example.tsx', + hash: '14549351446904751647', + }, + { + file: 'packages/react-examples/src/react-charting/Legends/Legends.WrapLines.Example.tsx', + hash: '10763696579939743825', + }, + { file: 'packages/react-examples/src/react-charting/Legends/Legends.doc.tsx', hash: '7266834029940545539' }, + { file: 'packages/react-examples/src/react-charting/Legends/LegendsPage.tsx', hash: '5015802845987146061' }, + { + file: 'packages/react-examples/src/react-charting/Legends/docs/LegendsBestPractices.md', + hash: '16372519399062358981', + }, + { + file: 'packages/react-examples/src/react-charting/Legends/docs/LegendsOverview.md', + hash: '6669044032918395598', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Basic.Example.tsx', + hash: '16609453156609940493', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/LineChart.CustomAccessibility.Example.tsx', + hash: '15848904157802634625', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/LineChart.CustomLocaleDateAxis.Example.tsx', + hash: '17424975472863078490', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Events.Example.tsx', + hash: '11443099609081595243', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Gaps.Example.tsx', + hash: '6439669200786227256', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/LineChart.LargeData.Example.tsx', + hash: '16829926365893456599', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Multiple.Example.tsx', + hash: '17987367081455407416', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Styled.Example.tsx', + hash: '12410478632737069679', + }, + { file: 'packages/react-examples/src/react-charting/LineChart/LineChart.doc.tsx', hash: '7678613275504857548' }, + { file: 'packages/react-examples/src/react-charting/LineChart/LineChartPage.tsx', hash: '6723436798090404763' }, + { + file: 'packages/react-examples/src/react-charting/LineChart/docs/LineChartBestPractices.md', + hash: '6714629733050737300', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/docs/LineChartDonts.md', + hash: '14412880537195715769', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/docs/LineChartDos.md', + hash: '3909689919490469374', + }, + { + file: 'packages/react-examples/src/react-charting/LineChart/docs/LineChartOverview.md', + hash: '10371717520503731024', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.Example.tsx', + hash: '3428263105847588170', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.Variant.Example.tsx', + hash: '14478237278453578125', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.doc.tsx', + hash: '10516361952942143793', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChartPage.tsx', + hash: '8031095526414554570', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChartWithPlaceHolder.Example.tsx', + hash: '5387327515635763623', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartBestPractices.md', + hash: '2690332724878924286', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartDonts.md', + hash: '9744770780362582179', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartDos.md', + hash: '17058286745613894005', + }, + { + file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartOverview.md', + hash: '9567727283032560252', + }, + { + file: 'packages/react-examples/src/react-charting/PieChart/PieChart.Basic.Example.tsx', + hash: '8203334510932548198', + }, + { + file: 'packages/react-examples/src/react-charting/PieChart/PieChart.Dynamic.Example.tsx', + hash: '10449071395922245157', + }, + { file: 'packages/react-examples/src/react-charting/PieChart/PieChart.doc.tsx', hash: '11344460396535720753' }, + { file: 'packages/react-examples/src/react-charting/PieChart/PieChartPage.tsx', hash: '3067168850426368882' }, + { + file: 'packages/react-examples/src/react-charting/PieChart/docs/PieChartBestPractices.md', + hash: '9239548385463694443', + }, + { + file: 'packages/react-examples/src/react-charting/PieChart/docs/PieChartOverview.md', + hash: '12435926360300087351', + }, + { + file: 'packages/react-examples/src/react-charting/SankeyChart/SankeyChart.Basic.Example.tsx', + hash: '15895521692770891123', + }, + { + file: 'packages/react-examples/src/react-charting/SankeyChart/SankeyChart.Inbox.Example.tsx', + hash: '11338422240875637555', + }, + { + file: 'packages/react-examples/src/react-charting/SankeyChart/SankeyChart.doc.tsx', + hash: '5612032228516822569', + }, + { + file: 'packages/react-examples/src/react-charting/SankeyChart/SankeyChartPage.tsx', + hash: '6599378000696069918', + }, + { + file: 'packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartBestPractices.md', + hash: '10660018979829767509', + }, + { + file: 'packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartDonts.md', + hash: '13301146973251673370', + }, + { + file: 'packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartDos.md', + hash: '1539175195150153200', + }, + { + file: 'packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartOverview.md', + hash: '7891621325208064656', + }, + { + file: 'packages/react-examples/src/react-charting/SparklineChart/SparklineChart.Basic.Example.tsx', + hash: '7996953674632164929', + }, + { + file: 'packages/react-examples/src/react-charting/SparklineChart/SparklineChart.doc.tsx', + hash: '520593925782042104', + }, + { + file: 'packages/react-examples/src/react-charting/SparklineChart/SparklineChartPage.tsx', + hash: '6550554335150726180', + }, + { + file: 'packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartBestPractices.md', + hash: '13483173933522190353', + }, + { + file: 'packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartDonts.md', + hash: '11299798707424545592', + }, + { + file: 'packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartDos.md', + hash: '1697315164222562053', + }, + { + file: 'packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartOverview.md', + hash: '14809910634717392563', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChart.CustomAccessibility.Example.tsx', + hash: '7681705201021791043', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChart.Example.tsx', + hash: '11601994178156060431', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChartWithPlaceHolder.Example.tsx', + hash: '15927852500748954627', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.BaseBar.Example.tsx', + hash: '9651160196089340776', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Basic.Example.tsx', + hash: '5364722359703304730', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Benchmark.Example.tsx', + hash: '11978417296447961080', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.CustomAccessibility.Example.tsx', + hash: '2288295920028534361', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Dynamic.Example.tsx', + hash: '16401953707966301386', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Multiple.Example.tsx', + hash: '15030752846565030223', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.doc.tsx', + hash: '15556279018016952835', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChartPage.tsx', + hash: '12068599533954281772', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartBestPractices.md', + hash: '16329234638281406580', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartDonts.md', + hash: '9744770780362582179', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartDos.md', + hash: '12392110646580197178', + }, + { + file: 'packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartOverview.md', + hash: '9514828762490962803', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayer.Example.tsx', + hash: '7678522819956493260', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerCompact.Example.tsx', + hash: '12235799044053510801', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerCompactDocSite.Example.tsx', + hash: '16627233669655998907', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerDocSite.Example.tsx', + hash: '14668717497310929772', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerLong.Example.tsx', + hash: '2717068418213538167', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.TwoLayer.Example.tsx', + hash: '10571073613589868518', + }, + { file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.doc.tsx', hash: '11173162709033730647' }, + { file: 'packages/react-examples/src/react-charting/TreeChart/TreeChartPage.tsx', hash: '2366910803326724394' }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/docs/TreeChartBestPractices.md', + hash: '4433147631214615208', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/docs/TreeChartDonts.md', + hash: '17448766090531150739', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/docs/TreeChartDos.md', + hash: '17299718083732552010', + }, + { + file: 'packages/react-examples/src/react-charting/TreeChart/docs/TreeChartOverview.md', + hash: '13281315253395855539', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.AxisTooltip.Example.tsx', + hash: '3440368874285633954', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Basic.Example.tsx', + hash: '7236293491875440718', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.CustomAccessibility.Example.tsx', + hash: '9720292503266491395', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Dynamic.Example.tsx', + hash: '13174372272560557644', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.RotateLabels.Example.tsx', + hash: '9266907551817692921', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Styled.Example.tsx', + hash: '16741806930992796868', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.doc.tsx', + hash: '4797540806541545801', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChartPage.tsx', + hash: '15128301750103217480', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartBestPractices.md', + hash: '16364767162395907158', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartDonts.md', + hash: '7968404933206089384', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartDos.md', + hash: '15311150692622924592', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartOverview.md', + hash: '765353722265452356', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.AxisTooltip.Example.tsx', + hash: '13191895355624307502', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Basic.Example.tsx', + hash: '17782065064180114250', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Callout.Example.tsx', + hash: '10944347787777491182', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.CustomAccessibility.Example.tsx', + hash: '1070898371773461860', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Styled.Example.tsx', + hash: '4504351050897917110', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.doc.tsx', + hash: '3287708940831127290', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChartPage.tsx', + hash: '15864858780968607914', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartBestPractices.md', + hash: '7575666629590817987', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartDonts.md', + hash: '16148048113015171770', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartDos.md', + hash: '14610165816610031867', + }, + { + file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartOverview.md', + hash: '17155804307757386673', + }, + { file: 'packages/react-examples/src/react-charting/demo/AppDefinition.tsx', hash: '5500226316546506996' }, + { file: 'packages/react-examples/src/react-charting/demo/AppThemes.ts', hash: '4733901559184113020' }, + { file: 'packages/react-examples/src/react-charting/demo/GettingStartedPage.tsx', hash: '16105541935593779438' }, + { file: 'packages/react-examples/src/react-charting/demo/index.tsx', hash: '17416720422326067006' }, + { + file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Basic.Example.tsx', + hash: '8930719020880385792', + }, + { + file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Breadcrumb.Example.tsx', + hash: '4984296336724180173', + }, + { + file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Footer.Example.tsx', + hash: '8685788575260044113', + }, + { + file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Preview.Example.tsx', + hash: '9204835405452805309', + }, + { + file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Xsmall.Example.tsx', + hash: '9883949284175000331', + }, + { + file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Xsmall.Footer.Example.tsx', + hash: '13684300580914819009', + }, + { file: 'packages/react-examples/src/react-experiments/Chiclet/ChicletPage.tsx', hash: '6309817484233845154' }, + { + file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Accordion.Example.tsx', + hash: '15159333797981158652', + }, + { + file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Basic.Example.tsx', + hash: '12659675144452419206', + }, + { + file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Controlled.Example.tsx', + hash: '8952443015251807929', + }, + { + file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Recursive.Example.tsx', + hash: '9112946933932153761', + }, + { + file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Slots.Example.tsx', + hash: '6677308251806862729', + }, + { + file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Styled.Example.tsx', + hash: '8619495061269822495', + }, + { + file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSectionPage.tsx', + hash: '5288564094978258535', + }, + { + file: 'packages/react-examples/src/react-experiments/FileTypeIcon/FileTypeIcon.Basic.Example.tsx', + hash: '917684447694156665', + }, + { + file: 'packages/react-examples/src/react-experiments/FileTypeIcon/FileTypeIconPage.tsx', + hash: '858993541312384290', + }, + { + file: 'packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.CustomRender.Example.tsx', + hash: '6292110668678104288', + }, + { + file: 'packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.Example.tsx', + hash: '707642620583749699', + }, + { + file: 'packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.HeaderFooter.Example.tsx', + hash: '13106417764492493310', + }, + { + file: 'packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingSuggestionsPage.tsx', + hash: '16474647862080665137', + }, + { + file: 'packages/react-examples/src/react-experiments/FolderCover/FolderCover.Basic.Example.tsx', + hash: '13644616959959750103', + }, + { + file: 'packages/react-examples/src/react-experiments/FolderCover/FolderCoverPage.tsx', + hash: '16138332361658578983', + }, + { + file: 'packages/react-examples/src/react-experiments/LayoutGroup/LayoutGroup.Basic.Example.tsx', + hash: '2242368482669957303', + }, + { + file: 'packages/react-examples/src/react-experiments/LayoutGroup/LayoutGroupPage.tsx', + hash: '10999466950766503186', + }, + { + file: 'packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedback.Example.tsx', + hash: '9963588234996656191', + }, + { + file: 'packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackCallout.Example.tsx', + hash: '7009666584489671037', + }, + { + file: 'packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackPage.tsx', + hash: '8117285971645963619', + }, + { + file: 'packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackStack.Example.tsx', + hash: '8215761124552069416', + }, + { + file: 'packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Basic.Example.tsx', + hash: '16672023748927658570', + }, + { + file: 'packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Customization.Example.tsx', + hash: '15746267823289451390', + }, + { + file: 'packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Customization.Round.Example.tsx', + hash: '16588942881062896611', + }, + { + file: 'packages/react-examples/src/react-experiments/Pagination/Pagination.ComboBox.Example.tsx', + hash: '10221865281541950791', + }, + { + file: 'packages/react-examples/src/react-experiments/Pagination/PaginationPage.tsx', + hash: '8871130369002585937', + }, + { + file: 'packages/react-examples/src/react-experiments/Persona/Persona.Example.tsx', + hash: '13323610891568828947', + }, + { file: 'packages/react-examples/src/react-experiments/Persona/PersonaPage.tsx', hash: '4386929712448366979' }, + { + file: 'packages/react-examples/src/react-experiments/Persona/VerticalPersona.Example.tsx', + hash: '6280952920806886611', + }, + { + file: 'packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoin.Example.tsx', + hash: '5198304688619672463', + }, + { + file: 'packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoinPage.tsx', + hash: '597153685931096748', + }, + { + file: 'packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoinSizeAndColor.Example.tsx', + hash: '15925621842330965615', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.Basic.DragDrop.Example.tsx', + hash: '11998599855861317186', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.Basic.Example.tsx', + hash: '1813147298084512047', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.DragDropBetweenWells.Example.tsx', + hash: '10334562335982740605', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithContextMenu.Example.tsx', + hash: '15548997466564876088', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithEdit.Example.tsx', + hash: '7110135765839362365', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithEditInContextMenu.Example.tsx', + hash: '17140363768491353808', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithGroupExpand.Example.tsx', + hash: '12324471504246880713', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleListPage.tsx', + hash: '13688015502388949655', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/docs/SelectedPeopleListDonts.md', + hash: '970258102470137051', + }, + { + file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/docs/SelectedPeopleListDos.md', + hash: '14926848229419922236', + }, + { + file: 'packages/react-examples/src/react-experiments/Sidebar/Sidebar.Basic.Example.tsx', + hash: '16661739891134879041', + }, + { + file: 'packages/react-examples/src/react-experiments/Sidebar/Sidebar.Collapsed.Example.tsx', + hash: '15003512523536440179', + }, + { file: 'packages/react-examples/src/react-experiments/Sidebar/SidebarPage.tsx', hash: '14960004064937642663' }, + { + file: 'packages/react-examples/src/react-experiments/Signals/SignalField.Basic.Example.tsx', + hash: '10922412750446698665', + }, + { + file: 'packages/react-examples/src/react-experiments/Signals/Signals.Basic.Example.tsx', + hash: '10060294351317517165', + }, + { + file: 'packages/react-examples/src/react-experiments/Signals/Signals.Example.scss', + hash: '8438670691459106267', + }, + { file: 'packages/react-examples/src/react-experiments/Signals/SignalsPage.tsx', hash: '14146406673869305765' }, + { file: 'packages/react-examples/src/react-experiments/Slider/Slider.Example.tsx', hash: '9917636369122157024' }, + { + file: 'packages/react-examples/src/react-experiments/Slider/Slider.Vertical.Example.tsx', + hash: '11870888312804408806', + }, + { file: 'packages/react-examples/src/react-experiments/Slider/SliderPage.tsx', hash: '16202212692805425480' }, + { + file: 'packages/react-examples/src/react-experiments/StaticList/StaticListPage.tsx', + hash: '16599220045566881237', + }, + { + file: 'packages/react-examples/src/react-experiments/Theming/Theming.Schemes.Custom.Example.tsx', + hash: '6092325306258851700', + }, + { + file: 'packages/react-examples/src/react-experiments/Theming/Theming.Schemes.Variant.Example.tsx', + hash: '6414750604467205160', + }, + { file: 'packages/react-examples/src/react-experiments/Theming/ThemingPage.tsx', hash: '11929647568890781490' }, + { + file: 'packages/react-examples/src/react-experiments/Tile/Tile.Document.Example.tsx', + hash: '1451127257262809525', + }, + { file: 'packages/react-examples/src/react-experiments/Tile/Tile.Example.scss', hash: '9239083632746717173' }, + { + file: 'packages/react-examples/src/react-experiments/Tile/Tile.Folder.Example.tsx', + hash: '10313966864598219856', + }, + { + file: 'packages/react-examples/src/react-experiments/Tile/Tile.Media.Example.tsx', + hash: '7825783569121455932', + }, + { file: 'packages/react-examples/src/react-experiments/Tile/TilePage.tsx', hash: '16986402846290123940' }, + { + file: 'packages/react-examples/src/react-experiments/TilesList/ExampleHelpers.tsx', + hash: '5885130793784814347', + }, + { + file: 'packages/react-examples/src/react-experiments/TilesList/TilesList.Basic.Example.tsx', + hash: '12689940136040547907', + }, + { + file: 'packages/react-examples/src/react-experiments/TilesList/TilesList.Document.Example.tsx', + hash: '15268770873391847911', + }, + { + file: 'packages/react-examples/src/react-experiments/TilesList/TilesList.Example.scss', + hash: '16795486179587091785', + }, + { + file: 'packages/react-examples/src/react-experiments/TilesList/TilesList.Media.Example.tsx', + hash: '5060510999175829594', + }, + { + file: 'packages/react-examples/src/react-experiments/TilesList/TilesListPage.tsx', + hash: '5893706552312839035', + }, + { + file: 'packages/react-examples/src/react-experiments/UnifiedPeoplePicker/DoubleUnifiedPeoplePicker.Example.tsx', + hash: '17345325041048264800', + }, + { + file: 'packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePicker.Example.tsx', + hash: '17726985096447711321', + }, + { + file: 'packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePicker.WithEdit.Example.tsx', + hash: '18072241743869642673', + }, + { + file: 'packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePickerPage.tsx', + hash: '17760392667692101835', + }, + { + file: 'packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Basic.Example.tsx', + hash: '68072280452097755', + }, + { + file: 'packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Basic2.Example.tsx', + hash: '1955269037613322544', + }, + { + file: 'packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Example.scss', + hash: '13239750418457062169', + }, + { + file: 'packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedListPage.tsx', + hash: '11902707775214362543', + }, + { file: 'packages/react-examples/src/react-experiments/demo/AppDefinition.tsx', hash: '18428760086075985217' }, + { file: 'packages/react-examples/src/react-experiments/demo/AppThemes.ts', hash: '16940588306323476143' }, + { + file: 'packages/react-examples/src/react-experiments/demo/GettingStartedPage.tsx', + hash: '8926393232991035941', + }, + { file: 'packages/react-examples/src/react-experiments/demo/index.tsx', hash: '8452953617370397632' }, + { + file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.Disabled.Example.tsx', + hash: '591105582283659640', + }, + { + file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.HorizontalMenu.Example.tsx', + hash: '15025677695253467860', + }, + { + file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.List.Example.tsx', + hash: '7052917308202375780', + }, + { + file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.Photos.Example.tsx', + hash: '15312191457300881752', + }, + { + file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.Tabbable.Example.tsx', + hash: '14660928901055405455', + }, + { file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.doc.tsx', hash: '1079957587186782410' }, + { + file: 'packages/react-examples/src/react-focus/FocusZone/docs/FocusZoneOverview.md', + hash: '13397458153671891240', + }, + { file: 'packages/react-examples/tsconfig.cy.json', hash: '15298769101167954295' }, + { file: 'packages/react-examples/tsconfig.json', hash: '6768911732744882519' }, + ], + '@fluentui/scripts-perf-test-flamegrill': [ + { file: 'scripts/perf-test-flamegrill/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/perf-test-flamegrill/jest.config.js', hash: '8618634705738605800' }, + { + file: 'scripts/perf-test-flamegrill/package.json', + hash: '11021363269324038115', + deps: ['npm:@types/react', 'npm:@types/react-dom', 'npm:react', 'npm:react-dom', 'npm:webpack'], + }, + { file: 'scripts/perf-test-flamegrill/project.json', hash: '10759724985611859010' }, + { file: 'scripts/perf-test-flamegrill/src/index.ts', hash: '11035012132823640935' }, + { file: 'scripts/perf-test-flamegrill/src/load-scenarios.ts', hash: '7976963383113325782' }, + { file: 'scripts/perf-test-flamegrill/src/renderer.tsx', hash: '12543503922466542873' }, + { file: 'scripts/perf-test-flamegrill/src/types.ts', hash: '16361176486131323805' }, + { file: 'scripts/perf-test-flamegrill/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/perf-test-flamegrill/tsconfig.lib.json', hash: '14190301940653848041' }, + { file: 'scripts/perf-test-flamegrill/tsconfig.spec.json', hash: '11895456033159184725' }, + ], + '@fluentui/react-card': [ + { file: 'packages/react-components/react-card/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-card/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-card/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-card/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-card/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-card/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-card/CHANGELOG.json', hash: '16120836240991081328' }, + { file: 'packages/react-components/react-card/CHANGELOG.md', hash: '982678929693669752' }, + { file: 'packages/react-components/react-card/LICENSE', hash: '2188560866401644945' }, + { file: 'packages/react-components/react-card/README.md', hash: '11877879705104426476' }, + { file: 'packages/react-components/react-card/bundle-size/Card.All.fixture.js', hash: '9678671079204535147' }, + { file: 'packages/react-components/react-card/bundle-size/Card.fixture.js', hash: '17044429561188065558' }, + { file: 'packages/react-components/react-card/bundle-size/CardFooter.fixture.js', hash: '15097452954087720794' }, + { file: 'packages/react-components/react-card/bundle-size/CardHeader.fixture.js', hash: '9372357943462304670' }, + { file: 'packages/react-components/react-card/bundle-size/CardPreview.fixture.js', hash: '2766458474759225677' }, + { file: 'packages/react-components/react-card/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-card/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-card/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-card/docs/Spec.md', hash: '133649701608289193' }, + { file: 'packages/react-components/react-card/docs/assets/Card.png', hash: '8621537168628927824' }, + { file: 'packages/react-components/react-card/docs/assets/CardHeader.png', hash: '14490283695070957660' }, + { file: 'packages/react-components/react-card/docs/assets/CardPreview.png', hash: '1838343721682392559' }, + { file: 'packages/react-components/react-card/docs/assets/ai_deck_template.png', hash: '7288944920457398910' }, + { file: 'packages/react-components/react-card/docs/assets/avatar_mauricio.svg', hash: '798618793155809767' }, + { file: 'packages/react-components/react-card/docs/assets/card-example.png', hash: '16213957152649995111' }, + { + file: 'packages/react-components/react-card/docs/assets/context-interaction-keyboard.png', + hash: '16120849394699770653', + }, + { + file: 'packages/react-components/react-card/docs/assets/context-interaction-mouse.png', + hash: '17968123321031789650', + }, + { file: 'packages/react-components/react-card/docs/assets/context-narrator.png', hash: '12645539401046132098' }, + { file: 'packages/react-components/react-card/docs/assets/disabled-narrator.png', hash: '2566029565229306184' }, + { file: 'packages/react-components/react-card/docs/assets/disabled.png', hash: '826913629030223189' }, + { file: 'packages/react-components/react-card/docs/assets/intelligence.png', hash: '8986692323019308027' }, + { + file: 'packages/react-components/react-card/docs/assets/interactive-example.png', + hash: '16139223062879931574', + }, + { + file: 'packages/react-components/react-card/docs/assets/interactive-interaction-keyboard.png', + hash: '15639838958589057587', + }, + { + file: 'packages/react-components/react-card/docs/assets/interactive-interaction-mouse.png', + hash: '13603809071411899987', + }, + { + file: 'packages/react-components/react-card/docs/assets/interactive-narrator.png', + hash: '8045885383518893015', + }, + { + file: 'packages/react-components/react-card/docs/assets/non-interactive-interaction-keyboard.png', + hash: '7324405548581008515', + }, + { + file: 'packages/react-components/react-card/docs/assets/non-interactive-interaction-mouse.png', + hash: '14389441996799242835', + }, + { + file: 'packages/react-components/react-card/docs/assets/non-interactive-narrator.png', + hash: '18012095954511675112', + }, + { + file: 'packages/react-components/react-card/docs/assets/non-interactive-selectable-interaction-keyboard.png', + hash: '12221987790543441657', + }, + { + file: 'packages/react-components/react-card/docs/assets/non-interactive-selectable-interaction-mouse.png', + hash: '8943180528124548767', + }, + { + file: 'packages/react-components/react-card/docs/assets/selectable-interaction-keyboard.png', + hash: '3413035361011770976', + }, + { + file: 'packages/react-components/react-card/docs/assets/selectable-interaction-mouse.png', + hash: '13723554415792087034', + }, + { + file: 'packages/react-components/react-card/docs/assets/selectable-narrator.png', + hash: '17363651610905279991', + }, + { file: 'packages/react-components/react-card/etc/react-card.api.md', hash: '10685004744171166720' }, + { file: 'packages/react-components/react-card/jest.config.js', hash: '1186570427670545163' }, + { file: 'packages/react-components/react-card/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-card/package.json', + hash: '1922847737090488424', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance-griffel', + '@fluentui/react-conformance', + '@fluentui/react-button', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-card/project.json', hash: '3792275988646366268' }, + { file: 'packages/react-components/react-card/src/Card.ts', hash: '18296053792853651864' }, + { file: 'packages/react-components/react-card/src/CardFooter.ts', hash: '7561174730803302695' }, + { file: 'packages/react-components/react-card/src/CardHeader.ts', hash: '11488685953149160992' }, + { file: 'packages/react-components/react-card/src/CardPreview.ts', hash: '13744048761580656089' }, + { file: 'packages/react-components/react-card/src/components/Card/Card.cy.tsx', hash: '2105453024913473649' }, + { file: 'packages/react-components/react-card/src/components/Card/Card.test.tsx', hash: '553476840907813350' }, + { file: 'packages/react-components/react-card/src/components/Card/Card.tsx', hash: '7076191578603293422' }, + { file: 'packages/react-components/react-card/src/components/Card/Card.types.ts', hash: '9093785096818348353' }, + { file: 'packages/react-components/react-card/src/components/Card/CardContext.ts', hash: '5313906443440265390' }, + { + file: 'packages/react-components/react-card/src/components/Card/__snapshots__/Card.test.tsx.snap', + hash: '10908852138267868471', + }, + { file: 'packages/react-components/react-card/src/components/Card/index.ts', hash: '4412053949287446293' }, + { file: 'packages/react-components/react-card/src/components/Card/renderCard.tsx', hash: '1433067605483476608' }, + { file: 'packages/react-components/react-card/src/components/Card/useCard.ts', hash: '7381777414402087275' }, + { + file: 'packages/react-components/react-card/src/components/Card/useCardContextValue.ts', + hash: '11473343537526781780', + }, + { + file: 'packages/react-components/react-card/src/components/Card/useCardSelectable.ts', + hash: '4499997916310000329', + }, + { + file: 'packages/react-components/react-card/src/components/Card/useCardStyles.styles.ts', + hash: '3260247311744362996', + }, + { + file: 'packages/react-components/react-card/src/components/CardFooter/CardFooter.test.tsx', + hash: '7622635874606375345', + }, + { + file: 'packages/react-components/react-card/src/components/CardFooter/CardFooter.tsx', + hash: '7889064387052454866', + }, + { + file: 'packages/react-components/react-card/src/components/CardFooter/CardFooter.types.ts', + hash: '15847435805993234907', + }, + { + file: 'packages/react-components/react-card/src/components/CardFooter/__snapshots__/CardFooter.test.tsx.snap', + hash: '13290122802036257097', + }, + { file: 'packages/react-components/react-card/src/components/CardFooter/index.ts', hash: '17558814753364081460' }, + { + file: 'packages/react-components/react-card/src/components/CardFooter/renderCardFooter.tsx', + hash: '9307070283238530438', + }, + { + file: 'packages/react-components/react-card/src/components/CardFooter/useCardFooter.ts', + hash: '2145180249134842105', + }, + { + file: 'packages/react-components/react-card/src/components/CardFooter/useCardFooterStyles.styles.ts', + hash: '1083821341387929360', + }, + { + file: 'packages/react-components/react-card/src/components/CardHeader/CardHeader.test.tsx', + hash: '14165954293035533075', + }, + { + file: 'packages/react-components/react-card/src/components/CardHeader/CardHeader.tsx', + hash: '4181728876463672231', + }, + { + file: 'packages/react-components/react-card/src/components/CardHeader/CardHeader.types.ts', + hash: '6184633634019281557', + }, + { + file: 'packages/react-components/react-card/src/components/CardHeader/__snapshots__/CardHeader.test.tsx.snap', + hash: '7156722307139223011', + }, + { file: 'packages/react-components/react-card/src/components/CardHeader/index.ts', hash: '16584665457828373794' }, + { + file: 'packages/react-components/react-card/src/components/CardHeader/renderCardHeader.tsx', + hash: '1737812013511382678', + }, + { + file: 'packages/react-components/react-card/src/components/CardHeader/useCardHeader.ts', + hash: '10695894625791794917', + }, + { + file: 'packages/react-components/react-card/src/components/CardHeader/useCardHeaderStyles.styles.ts', + hash: '4022899973834377131', + }, + { + file: 'packages/react-components/react-card/src/components/CardPreview/CardPreview.test.tsx', + hash: '951239204372092264', + }, + { + file: 'packages/react-components/react-card/src/components/CardPreview/CardPreview.tsx', + hash: '14878782731745105216', + }, + { + file: 'packages/react-components/react-card/src/components/CardPreview/CardPreview.types.ts', + hash: '14504123763327617675', + }, + { + file: 'packages/react-components/react-card/src/components/CardPreview/__snapshots__/CardPreview.test.tsx.snap', + hash: '8716685275269430990', + }, + { file: 'packages/react-components/react-card/src/components/CardPreview/index.ts', hash: '3007392998775828301' }, + { + file: 'packages/react-components/react-card/src/components/CardPreview/renderCardPreview.tsx', + hash: '14553561723104936319', + }, + { + file: 'packages/react-components/react-card/src/components/CardPreview/useCardPreview.ts', + hash: '4307043996778361696', + }, + { + file: 'packages/react-components/react-card/src/components/CardPreview/useCardPreviewStyles.styles.ts', + hash: '11199041551264682609', + }, + { file: 'packages/react-components/react-card/src/index.ts', hash: '15466602958638333138' }, + { file: 'packages/react-components/react-card/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-card/stories/Card/CardAppearance.stories.tsx', + hash: '5604951275060761597', + }, + { file: 'packages/react-components/react-card/stories/Card/CardBestPractices.md', hash: '9308224653380770229' }, + { + file: 'packages/react-components/react-card/stories/Card/CardDefault.stories.tsx', + hash: '12855457768309390333', + }, + { file: 'packages/react-components/react-card/stories/Card/CardDescription.md', hash: '3049495499082503502' }, + { + file: 'packages/react-components/react-card/stories/Card/CardFocusMode.stories.tsx', + hash: '13084607985882534580', + }, + { + file: 'packages/react-components/react-card/stories/Card/CardOrientation.stories.tsx', + hash: '4533715330779289813', + }, + { + file: 'packages/react-components/react-card/stories/Card/CardSelectable.stories.tsx', + hash: '8302053683602571951', + }, + { + file: 'packages/react-components/react-card/stories/Card/CardSelectableIndicator.stories.tsx', + hash: '18084073634622817532', + }, + { file: 'packages/react-components/react-card/stories/Card/CardSize.stories.tsx', hash: '16436840345511589357' }, + { + file: 'packages/react-components/react-card/stories/Card/CardTemplates.stories.tsx', + hash: '987134944539571023', + }, + { file: 'packages/react-components/react-card/stories/Card/index.stories.tsx', hash: '8678212714962414506' }, + { + file: 'packages/react-components/react-card/stories/CardFooter/CardFooterDefault.stories.tsx', + hash: '10194971669813246487', + }, + { + file: 'packages/react-components/react-card/stories/CardFooter/CardFooterDescription.md', + hash: '17958053600000174792', + }, + { + file: 'packages/react-components/react-card/stories/CardFooter/index.stories.tsx', + hash: '15149208140262958802', + }, + { + file: 'packages/react-components/react-card/stories/CardHeader/CardHeaderDefault.stories.tsx', + hash: '7030182012670348854', + }, + { + file: 'packages/react-components/react-card/stories/CardHeader/CardHeaderDescription.md', + hash: '278184689441639698', + }, + { + file: 'packages/react-components/react-card/stories/CardHeader/index.stories.tsx', + hash: '17193498931451041088', + }, + { + file: 'packages/react-components/react-card/stories/CardPreview/CardPreviewDefault.stories.tsx', + hash: '14549936026171874196', + }, + { + file: 'packages/react-components/react-card/stories/CardPreview/CardPreviewDescription.md', + hash: '8805484546756020533', + }, + { + file: 'packages/react-components/react-card/stories/CardPreview/index.stories.tsx', + hash: '6381064104818270081', + }, + { file: 'packages/react-components/react-card/stories/assets/app_logo.svg', hash: '1145867221942749854' }, + { file: 'packages/react-components/react-card/stories/assets/avatar_colin.svg', hash: '13980132709968424389' }, + { file: 'packages/react-components/react-card/stories/assets/avatar_elvia.svg', hash: '12306115599923301814' }, + { file: 'packages/react-components/react-card/stories/assets/doc_template.png', hash: '16781486718899349419' }, + { file: 'packages/react-components/react-card/stories/assets/docx.png', hash: '12646787685627878886' }, + { file: 'packages/react-components/react-card/stories/assets/intelligence.png', hash: '8986692323019308027' }, + { file: 'packages/react-components/react-card/stories/assets/logo.svg', hash: '16479129341081339952' }, + { file: 'packages/react-components/react-card/stories/assets/logo2.svg', hash: '15824796547274656557' }, + { file: 'packages/react-components/react-card/stories/assets/logo3.svg', hash: '8392637098591831239' }, + { file: 'packages/react-components/react-card/stories/assets/office1.png', hash: '13326536504039238663' }, + { file: 'packages/react-components/react-card/stories/assets/office2.png', hash: '4573548322140247346' }, + { file: 'packages/react-components/react-card/stories/assets/pptx.png', hash: '3265152117027098916' }, + { file: 'packages/react-components/react-card/stories/assets/sales_template.png', hash: '10998262158388512370' }, + { file: 'packages/react-components/react-card/stories/assets/xlsx.png', hash: '5592114303427511673' }, + { file: 'packages/react-components/react-card/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-card/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-card/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-card/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/scripts-update-release-notes': [ + { file: 'scripts/update-release-notes/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/update-release-notes/changelogsAndTags.ts', hash: '9695448628784925143' }, + { file: 'scripts/update-release-notes/index.ts', hash: '4586362800451860761' }, + { file: 'scripts/update-release-notes/init.ts', hash: '7376748252051231026' }, + { file: 'scripts/update-release-notes/jest.config.js', hash: '14450656967466977753' }, + { file: 'scripts/update-release-notes/markdown.ts', hash: '2689630508375349858' }, + { + file: 'scripts/update-release-notes/package.json', + hash: '10460076229097447114', + deps: ['@fluentui/scripts-github'], + }, + { file: 'scripts/update-release-notes/project.json', hash: '14473144405799169564' }, + { file: 'scripts/update-release-notes/pullRequests.ts', hash: '13578436414946334968' }, + { file: 'scripts/update-release-notes/releases.ts', hash: '5175589060836789611' }, + { file: 'scripts/update-release-notes/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/update-release-notes/tsconfig.lib.json', hash: '3753806828268919288' }, + { file: 'scripts/update-release-notes/tsconfig.spec.json', hash: '16242416785763058919' }, + { file: 'scripts/update-release-notes/types.ts', hash: '2247159842994839983' }, + ], + '@fluentui/font-icons-mdl2': [ + { file: 'packages/font-icons-mdl2/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/font-icons-mdl2/.npmignore', hash: '47056201363133096' }, + { file: 'packages/font-icons-mdl2/CHANGELOG.json', hash: '6596473413517250674' }, + { file: 'packages/font-icons-mdl2/CHANGELOG.md', hash: '11813262917588591655' }, + { file: 'packages/font-icons-mdl2/LICENSE', hash: '12908007654657131543' }, + { file: 'packages/font-icons-mdl2/README.md', hash: '1942754853377387705' }, + { file: 'packages/font-icons-mdl2/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-0.json', hash: '7706377881449390395' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-1.json', hash: '12994875537715451137' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-10.json', hash: '2815620732732830195' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-11.json', hash: '7236241969158321736' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-12.json', hash: '9678062810318118885' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-13.json', hash: '5156040440638150948' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-14.json', hash: '13039891500113351097' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-15.json', hash: '8801652855336313148' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-16.json', hash: '15516953590367115156' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-17.json', hash: '13589667259558619548' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-2.json', hash: '7875540344301974216' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-3.json', hash: '16077858637040139431' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-4.json', hash: '2841366491057342586' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-5.json', hash: '2556643830595083093' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-6.json', hash: '15068278795867487161' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-7.json', hash: '9212439579894632972' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-8.json', hash: '2080398174427644166' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons-9.json', hash: '4759858566820518147' }, + { file: 'packages/font-icons-mdl2/config/fabric-icons.json', hash: '6963775744796371758' }, + { file: 'packages/font-icons-mdl2/config/pre-copy.json', hash: '7054591292658078092' }, + { file: 'packages/font-icons-mdl2/etc/font-icons-mdl2.api.md', hash: '1040272583929107432' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-0-467ee27f.woff', hash: '9727409240084950456' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-1-4d521695.woff', hash: '11782482911719233328' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-10-c4ded8e4.woff', hash: '8683213800300962823' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-11-2a8393d6.woff', hash: '4800192945444416049' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-12-7e945a1e.woff', hash: '7152385435025376386' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-13-c3989a02.woff', hash: '15826418001211840958' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-14-5cf58db8.woff', hash: '1568575544080586197' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-15-3807251b.woff', hash: '6679690953050194640' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-16-9cf93f3b.woff', hash: '10385869052298718372' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-17-0c4ed701.woff', hash: '9879264519512726611' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-2-63c99abf.woff', hash: '4248354025373691406' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-3-089e217a.woff', hash: '10079215862186498571' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-4-a656cc0a.woff', hash: '763904542900725867' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-5-f95ba260.woff', hash: '12283581664107513526' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-6-ef6fd590.woff', hash: '6636588578906150594' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-7-2b97bb99.woff', hash: '1562652165603914188' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-8-6fdf1528.woff', hash: '10760299555913719264' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-9-c6162b42.woff', hash: '11880077812956966882' }, + { file: 'packages/font-icons-mdl2/fonts/fabric-icons-a13498cf.woff', hash: '9094530928610613666' }, + { file: 'packages/font-icons-mdl2/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/font-icons-mdl2/package.json', + hash: '6766348593423021237', + deps: [ + '@fluentui/set-version', + '@fluentui/style-utilities', + '@fluentui/utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/font-icons-mdl2/project.json', hash: '16347449220567014521' }, + { file: 'packages/font-icons-mdl2/src/IconNames.ts', hash: '15040646129596948898' }, + { file: 'packages/font-icons-mdl2/src/data/AllIconNames.json', hash: '255000302489916290' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-0.ts', hash: '8915246145745466284' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-1.ts', hash: '8405252460772238398' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-10.ts', hash: '13454595347227280180' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-11.ts', hash: '3846349522741700547' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-12.ts', hash: '14919245803957946133' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-13.ts', hash: '13421949462798247163' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-14.ts', hash: '11651766092006487866' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-15.ts', hash: '5913067749739754889' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-16.ts', hash: '1938273561721658506' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-17.ts', hash: '16745157463180821700' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-2.ts', hash: '8089041981968012677' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-3.ts', hash: '15666268342868477210' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-4.ts', hash: '7141991849238464261' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-5.ts', hash: '17978308980500404278' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-6.ts', hash: '4598385603964478011' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-7.ts', hash: '7191688199835628637' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-8.ts', hash: '15977938474733404181' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons-9.ts', hash: '4640504316025068722' }, + { file: 'packages/font-icons-mdl2/src/fabric-icons.ts', hash: '16136330814992617156' }, + { file: 'packages/font-icons-mdl2/src/iconAliases.ts', hash: '14099067786273144772' }, + { file: 'packages/font-icons-mdl2/src/iconNames.test.ts', hash: '1735850012565977488' }, + { file: 'packages/font-icons-mdl2/src/index.ts', hash: '18182222310833360328' }, + { file: 'packages/font-icons-mdl2/src/version.ts', hash: '2559425555783107307' }, + { file: 'packages/font-icons-mdl2/tsconfig.json', hash: '279610058387507708' }, + ], + '@fluentui/react-avatar': [ + { file: 'packages/react-components/react-avatar/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-avatar/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-avatar/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-avatar/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-avatar/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-avatar/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-avatar/CHANGELOG.json', hash: '17359224246229139817' }, + { file: 'packages/react-components/react-avatar/CHANGELOG.md', hash: '13775367118916418634' }, + { file: 'packages/react-components/react-avatar/LICENSE', hash: '1561472303802842351' }, + { file: 'packages/react-components/react-avatar/README-AvatarGroup.md', hash: '6635177105173945453' }, + { file: 'packages/react-components/react-avatar/README.md', hash: '3417364935367193895' }, + { file: 'packages/react-components/react-avatar/bundle-size/Avatar.fixture.js', hash: '5791018364621035780' }, + { + file: 'packages/react-components/react-avatar/bundle-size/AvatarGroup.fixture.js', + hash: '2351286029785799155', + }, + { + file: 'packages/react-components/react-avatar/bundle-size/AvatarGroupItem.fixture.js', + hash: '2729519475190533563', + }, + { file: 'packages/react-components/react-avatar/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-avatar/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-avatar/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-avatar/docs/MIGRATION.md', hash: '3195958884814768437' }, + { file: 'packages/react-components/react-avatar/docs/SPEC-AvatarGroup.md', hash: '11426133715399943569' }, + { file: 'packages/react-components/react-avatar/docs/SPEC.md', hash: '4287805402968502679' }, + { file: 'packages/react-components/react-avatar/etc/react-avatar.api.md', hash: '17662099340512427639' }, + { file: 'packages/react-components/react-avatar/jest.config.js', hash: '6376176729770622848' }, + { file: 'packages/react-components/react-avatar/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-avatar/package.json', + hash: '8265612536199943469', + deps: [ + '@fluentui/react-badge', + '@fluentui/react-context-selector', + 'npm:@fluentui/react-icons', + '@fluentui/react-popover', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-tooltip', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + 'npm:es6-weak-map', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-avatar/project.json', hash: '15962836208333366159' }, + { file: 'packages/react-components/react-avatar/src/Avatar.ts', hash: '7635867096605850206' }, + { file: 'packages/react-components/react-avatar/src/AvatarGroup.ts', hash: '6984127121712003934' }, + { file: 'packages/react-components/react-avatar/src/AvatarGroupItem.ts', hash: '9295176073013264238' }, + { file: 'packages/react-components/react-avatar/src/AvatarGroupPopover.ts', hash: '10828507195645538418' }, + { + file: 'packages/react-components/react-avatar/src/components/Avatar/Avatar.test.tsx', + hash: '3799793463774131037', + }, + { file: 'packages/react-components/react-avatar/src/components/Avatar/Avatar.tsx', hash: '4286195710387072464' }, + { + file: 'packages/react-components/react-avatar/src/components/Avatar/Avatar.types.ts', + hash: '3502910881682367236', + }, + { file: 'packages/react-components/react-avatar/src/components/Avatar/index.ts', hash: '1955269048664210261' }, + { + file: 'packages/react-components/react-avatar/src/components/Avatar/renderAvatar.tsx', + hash: '17085450580548719997', + }, + { + file: 'packages/react-components/react-avatar/src/components/Avatar/useAvatar.tsx', + hash: '17265171031077561605', + }, + { + file: 'packages/react-components/react-avatar/src/components/Avatar/useAvatarStyles.styles.ts', + hash: '9237444740068646329', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.cy.tsx', + hash: '9396486021626927639', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.test.tsx', + hash: '667562290854564595', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.tsx', + hash: '12574745185973390309', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.types.ts', + hash: '11445543023522684177', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/index.ts', + hash: '8395078397697710402', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/renderAvatarGroup.tsx', + hash: '906681850248904049', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroup.tsx', + hash: '9748744777328738202', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroupContextValues.ts', + hash: '7762097512239166845', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroupStyles.styles.ts', + hash: '14767535204413912450', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.test.tsx', + hash: '10693309452718169000', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.tsx', + hash: '7048541463080468607', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.types.ts', + hash: '13088512575982029284', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/index.ts', + hash: '282603665069963077', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/renderAvatarGroupItem.tsx', + hash: '14044015495498541840', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItem.ts', + hash: '6698825707962161686', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItemStyles.styles.ts', + hash: '51869593395452064', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.test.tsx', + hash: '3568582866102004130', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.tsx', + hash: '17770210227374180685', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.types.ts', + hash: '16101743792578847966', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/index.ts', + hash: '16771975726213604396', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/renderAvatarGroupPopover.tsx', + hash: '10757030829615508783', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopover.tsx', + hash: '2555256022131750635', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.ts', + hash: '6728840970785876253', + }, + { + file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.ts', + hash: '11153103963870430610', + }, + { file: 'packages/react-components/react-avatar/src/contexts/AvatarContext.ts', hash: '590498634812227243' }, + { + file: 'packages/react-components/react-avatar/src/contexts/AvatarGroupContext.ts', + hash: '6848247087059396651', + }, + { file: 'packages/react-components/react-avatar/src/contexts/index.ts', hash: '2367898825323850098' }, + { file: 'packages/react-components/react-avatar/src/index.ts', hash: '17396567248118398568' }, + { file: 'packages/react-components/react-avatar/src/testing/isConformant.ts', hash: '14447437808059758114' }, + { file: 'packages/react-components/react-avatar/src/utils/getInitials.test.ts', hash: '1680373439266347581' }, + { file: 'packages/react-components/react-avatar/src/utils/getInitials.ts', hash: '8327067548509255430' }, + { file: 'packages/react-components/react-avatar/src/utils/index.ts', hash: '12640729207052328910' }, + { + file: 'packages/react-components/react-avatar/src/utils/partitionAvatarGroupItems.test.ts', + hash: '9020780588609051149', + }, + { + file: 'packages/react-components/react-avatar/src/utils/partitionAvatarGroupItems.ts', + hash: '543320327366877998', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarActive.stories.tsx', + hash: '11500606915849458094', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarActiveAppearance.stories.tsx', + hash: '6182092775061915836', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarBadge.stories.tsx', + hash: '11737232360515773548', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarBadgeIcon.stories.tsx', + hash: '8242903931583202526', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarColorBrand.stories.tsx', + hash: '18386464499879542692', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarColorColorful.stories.tsx', + hash: '1485807022761171712', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarColorPalette.stories.tsx', + hash: '3082620768392145900', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarDefault.stories.tsx', + hash: '879195072404448224', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarDescription.md', + hash: '13383169207186333246', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarIcon.stories.tsx', + hash: '5602542620961988143', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarImage.stories.tsx', + hash: '18370734978373805725', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarInitials.stories.tsx', + hash: '6358033680498150005', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarName.stories.tsx', + hash: '8073892423041068966', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarSize.stories.tsx', + hash: '16769822324005143226', + }, + { + file: 'packages/react-components/react-avatar/stories/Avatar/AvatarSquare.stories.tsx', + hash: '10756829190493281080', + }, + { file: 'packages/react-components/react-avatar/stories/Avatar/index.stories.tsx', hash: '14429406280611309106' }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupBestPractices.md', + hash: '2259983816839514735', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupDefault.stories.tsx', + hash: '18379733445475677697', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupDescription.md', + hash: '5437435466472005639', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupIndicator.stories.tsx', + hash: '17517750698648452574', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupLayout.stories.tsx', + hash: '16809663284413994087', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizePie.stories.tsx', + hash: '4328408042847102333', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizeSpread.stories.tsx', + hash: '15556124444323653952', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizeStack.stories.tsx', + hash: '17922874870636889465', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupTooltip.stories.tsx', + hash: '10320557607960243438', + }, + { + file: 'packages/react-components/react-avatar/stories/AvatarGroup/index.stories.tsx', + hash: '8538042635878276171', + }, + { file: 'packages/react-components/react-avatar/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-avatar/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-avatar/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-avatar/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-18-tests-v9': [ + { file: 'apps/react-18-tests-v9/.eslintrc.json', hash: '273467718057503654' }, + { file: 'apps/react-18-tests-v9/README.md', hash: '15038214804025114768' }, + { file: 'apps/react-18-tests-v9/config/tests.js', hash: '14010006175392234982' }, + { file: 'apps/react-18-tests-v9/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'apps/react-18-tests-v9/jest.config.js', hash: '1432362935093989965' }, + { file: 'apps/react-18-tests-v9/just.config.ts', hash: '10393370776333958822' }, + { + file: 'apps/react-18-tests-v9/package.json', + hash: '1062290610976451640', + deps: [ + '@fluentui/react-components', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + ], + }, + { file: 'apps/react-18-tests-v9/project.json', hash: '11399828626299105622' }, + { file: 'apps/react-18-tests-v9/src/App.cy.tsx', hash: '11549801901057863626' }, + { file: 'apps/react-18-tests-v9/src/App.test.tsx', hash: '2670902714833840717' }, + { file: 'apps/react-18-tests-v9/src/App.tsx', hash: '7525441005714447901' }, + { file: 'apps/react-18-tests-v9/src/Portal.cy.tsx', hash: '4580707977750569950' }, + { file: 'apps/react-18-tests-v9/src/components/.gitkeep', hash: '3244421341483603138' }, + { file: 'apps/react-18-tests-v9/src/index.tsx', hash: '2918296648402810869' }, + { file: 'apps/react-18-tests-v9/tsconfig.app.json', hash: '7764918925105932542' }, + { file: 'apps/react-18-tests-v9/tsconfig.cy.json', hash: '4669440979528425638' }, + { file: 'apps/react-18-tests-v9/tsconfig.json', hash: '15327827180026486345' }, + { file: 'apps/react-18-tests-v9/tsconfig.react-compat-check.json', hash: '5090552958223827867' }, + { file: 'apps/react-18-tests-v9/tsconfig.spec.json', hash: '13287603543641469083' }, + { file: 'apps/react-18-tests-v9/webpack.config.js', hash: '6286313998835058704' }, + ], + '@fluentui/react-toast': [ + { file: 'packages/react-components/react-toast/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-toast/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-toast/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-toast/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-toast/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-toast/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-toast/CHANGELOG.json', hash: '10682980803074083997' }, + { file: 'packages/react-components/react-toast/CHANGELOG.md', hash: '81747637200741746' }, + { file: 'packages/react-components/react-toast/LICENSE', hash: '16949844902912624644' }, + { file: 'packages/react-components/react-toast/README.md', hash: '5200240906534650137' }, + { file: 'packages/react-components/react-toast/bundle-size/Toast.fixture.js', hash: '6560991872473022341' }, + { file: 'packages/react-components/react-toast/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-toast/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-toast/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-toast/docs/Spec.md', hash: '5531735670500748841' }, + { file: 'packages/react-components/react-toast/etc/react-toast.api.md', hash: '17225121659189868810' }, + { file: 'packages/react-components/react-toast/jest.config.js', hash: '15944780785972716927' }, + { file: 'packages/react-components/react-toast/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-toast/package.json', + hash: '9896839657513933603', + deps: [ + 'npm:react-transition-group', + '@fluentui/keyboard-keys', + '@fluentui/react-aria', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-portal', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-toast/project.json', hash: '13521513962168744879' }, + { file: 'packages/react-components/react-toast/src/AriaLive.ts', hash: '5934469984273040875' }, + { file: 'packages/react-components/react-toast/src/Toast.ts', hash: '15307374811813973691' }, + { file: 'packages/react-components/react-toast/src/ToastBody.ts', hash: '14018551671824986687' }, + { file: 'packages/react-components/react-toast/src/ToastContainer.ts', hash: '4549595851046325076' }, + { file: 'packages/react-components/react-toast/src/ToastFooter.ts', hash: '3447343814030086069' }, + { file: 'packages/react-components/react-toast/src/ToastTitle.ts', hash: '18222299034471560017' }, + { file: 'packages/react-components/react-toast/src/ToastTrigger.ts', hash: '17586437167278520860' }, + { file: 'packages/react-components/react-toast/src/Toaster.ts', hash: '14175431586628349058' }, + { + file: 'packages/react-components/react-toast/src/components/AriaLive/AriaLive.test.tsx', + hash: '6442107386395292215', + }, + { + file: 'packages/react-components/react-toast/src/components/AriaLive/AriaLive.tsx', + hash: '10793716600399358394', + }, + { + file: 'packages/react-components/react-toast/src/components/AriaLive/AriaLive.types.ts', + hash: '1840525305665705621', + }, + { + file: 'packages/react-components/react-toast/src/components/AriaLive/__snapshots__/AriaLive.test.tsx.snap', + hash: '9299768569933835789', + }, + { file: 'packages/react-components/react-toast/src/components/AriaLive/index.ts', hash: '10741602548266810528' }, + { + file: 'packages/react-components/react-toast/src/components/AriaLive/renderAriaLive.tsx', + hash: '804859745476151280', + }, + { + file: 'packages/react-components/react-toast/src/components/AriaLive/useAriaLive.ts', + hash: '9086600559679733817', + }, + { + file: 'packages/react-components/react-toast/src/components/AriaLive/useAriaLiveStyles.styles.ts', + hash: '3048096877751050924', + }, + { file: 'packages/react-components/react-toast/src/components/Timer/Timer.tsx', hash: '13074196879071224508' }, + { file: 'packages/react-components/react-toast/src/components/Timer/index.ts', hash: '11991616074639956962' }, + { + file: 'packages/react-components/react-toast/src/components/Timer/useTimerStyles.styles.ts', + hash: '3655775969916230892', + }, + { file: 'packages/react-components/react-toast/src/components/Toast/Toast.cy.tsx', hash: '2288544208526258981' }, + { + file: 'packages/react-components/react-toast/src/components/Toast/Toast.test.tsx', + hash: '7287555393203087881', + }, + { file: 'packages/react-components/react-toast/src/components/Toast/Toast.tsx', hash: '2224711623959003139' }, + { + file: 'packages/react-components/react-toast/src/components/Toast/Toast.types.ts', + hash: '4125010440475230441', + }, + { + file: 'packages/react-components/react-toast/src/components/Toast/__snapshots__/Toast.test.tsx.snap', + hash: '17132507511060694009', + }, + { file: 'packages/react-components/react-toast/src/components/Toast/index.ts', hash: '9618109493875621933' }, + { + file: 'packages/react-components/react-toast/src/components/Toast/renderToast.tsx', + hash: '10720877630875372757', + }, + { file: 'packages/react-components/react-toast/src/components/Toast/useToast.ts', hash: '14393623992813194661' }, + { + file: 'packages/react-components/react-toast/src/components/Toast/useToastContextValues.ts', + hash: '17198227334991763932', + }, + { + file: 'packages/react-components/react-toast/src/components/Toast/useToastStyles.styles.ts', + hash: '5557503513257771403', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastBody/ToastBody.test.tsx', + hash: '4615164798964869091', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastBody/ToastBody.tsx', + hash: '16250573446787171280', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastBody/ToastBody.types.ts', + hash: '13920834813969313152', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastBody/__snapshots__/ToastBody.test.tsx.snap', + hash: '12684431859116950296', + }, + { file: 'packages/react-components/react-toast/src/components/ToastBody/index.ts', hash: '5968957915263728965' }, + { + file: 'packages/react-components/react-toast/src/components/ToastBody/renderToastBody.tsx', + hash: '17351686009722435973', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastBody/useToastBody.ts', + hash: '13885753874205757551', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastBody/useToastBodyStyles.styles.ts', + hash: '16206700759378001578', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.test.tsx', + hash: '13901012506742295174', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.tsx', + hash: '8153427315959101768', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.types.ts', + hash: '11863328464789215239', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/__snapshots__/ToastContainer.test.tsx.snap', + hash: '8668649856276633305', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/index.ts', + hash: '11995343187778965101', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/renderToastContainer.tsx', + hash: '502309263840540420', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/useToastContainer.ts', + hash: '4141911229094274827', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/useToastContainerContextValues.ts', + hash: '2939155370336925438', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastContainer/useToastContainerStyles.styles.ts', + hash: '13104713389251292492', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.test.tsx', + hash: '11424619225162201801', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.tsx', + hash: '14593751910312704304', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.types.ts', + hash: '16374988639865684493', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastFooter/__snapshots__/ToastFooter.test.tsx.snap', + hash: '11711970304670119990', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastFooter/index.ts', + hash: '8513825837838800870', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastFooter/renderToastFooter.tsx', + hash: '207596864359220555', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastFooter/useToastFooter.ts', + hash: '5228857853735293339', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastFooter/useToastFooterStyles.styles.ts', + hash: '10893633555471477285', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.test.tsx', + hash: '11441684459784269904', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.tsx', + hash: '14292430330710862628', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.types.ts', + hash: '11837561380110483063', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTitle/__snapshots__/ToastTitle.test.tsx.snap', + hash: '4821473578764279817', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTitle/index.ts', + hash: '18016065779722545690', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTitle/renderToastTitle.tsx', + hash: '1333420123859818252', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTitle/useToastTitle.tsx', + hash: '3210588607959161520', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTitle/useToastTitleStyles.styles.ts', + hash: '9426158279615934679', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.test.tsx', + hash: '5699776953831978713', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.tsx', + hash: '12726203067935754162', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.types.ts', + hash: '3842715180784819968', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTrigger/__snapshots__/ToastTrigger.test.tsx.snap', + hash: '7844219453060346860', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTrigger/index.ts', + hash: '12655493691993462210', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTrigger/renderToastTrigger.tsx', + hash: '9466096862869316156', + }, + { + file: 'packages/react-components/react-toast/src/components/ToastTrigger/useToastTrigger.ts', + hash: '14019618160278474734', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/Toaster.test.tsx', + hash: '12635356051816143342', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/Toaster.tsx', + hash: '11964445524095106184', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/Toaster.types.ts', + hash: '6892226576257011954', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/__snapshots__/Toaster.test.tsx.snap', + hash: '7319367689813891897', + }, + { file: 'packages/react-components/react-toast/src/components/Toaster/index.ts', hash: '13462024364787886895' }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/renderToaster.tsx', + hash: '9152323389222907502', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/useToastAnnounce.test.ts', + hash: '9116052771586688891', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/useToastAnnounce.ts', + hash: '14195815015884209829', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/useToaster.tsx', + hash: '7064899387464883541', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/useToasterFocusManagement.ts', + hash: '10371120963803549058', + }, + { + file: 'packages/react-components/react-toast/src/components/Toaster/useToasterStyles.styles.ts', + hash: '7051660454651767404', + }, + { + file: 'packages/react-components/react-toast/src/contexts/toastContainerContext.tsx', + hash: '15337355315856952234', + }, + { file: 'packages/react-components/react-toast/src/index.ts', hash: '6864147601055510200' }, + { file: 'packages/react-components/react-toast/src/state/constants.ts', hash: '4536377250461792080' }, + { file: 'packages/react-components/react-toast/src/state/index.ts', hash: '14875581869228627377' }, + { file: 'packages/react-components/react-toast/src/state/types.ts', hash: '11674482699256017506' }, + { + file: 'packages/react-components/react-toast/src/state/useToastController.test.ts', + hash: '423595520882331462', + }, + { file: 'packages/react-components/react-toast/src/state/useToastController.ts', hash: '14902116527194633878' }, + { file: 'packages/react-components/react-toast/src/state/useToaster.test.ts', hash: '15339475067759049682' }, + { file: 'packages/react-components/react-toast/src/state/useToaster.ts', hash: '4010526536948328405' }, + { + file: 'packages/react-components/react-toast/src/state/vanilla/createToaster.test.ts', + hash: '16596155413226223798', + }, + { file: 'packages/react-components/react-toast/src/state/vanilla/createToaster.ts', hash: '2152902961797097092' }, + { + file: 'packages/react-components/react-toast/src/state/vanilla/dismissAllToasts.ts', + hash: '15412166527852405711', + }, + { file: 'packages/react-components/react-toast/src/state/vanilla/dismissToast.ts', hash: '17045451126332775989' }, + { + file: 'packages/react-components/react-toast/src/state/vanilla/dispatchToast.ts', + hash: '14216726211594981683', + }, + { + file: 'packages/react-components/react-toast/src/state/vanilla/getPositionStyles.test.ts', + hash: '16064541192915922154', + }, + { + file: 'packages/react-components/react-toast/src/state/vanilla/getPositionStyles.ts', + hash: '5733826555173060559', + }, + { file: 'packages/react-components/react-toast/src/state/vanilla/index.ts', hash: '4917379822293467718' }, + { file: 'packages/react-components/react-toast/src/state/vanilla/pauseToast.ts', hash: '8244489699298786724' }, + { file: 'packages/react-components/react-toast/src/state/vanilla/playToast.ts', hash: '14560953344582947245' }, + { file: 'packages/react-components/react-toast/src/state/vanilla/updateToast.ts', hash: '8004308242007218224' }, + { file: 'packages/react-components/react-toast/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-toast/stories/Toast/CustomTimeout.stories.tsx', + hash: '16096607677990871710', + }, + { file: 'packages/react-components/react-toast/stories/Toast/Default.stories.tsx', hash: '1974781387464513603' }, + { + file: 'packages/react-components/react-toast/stories/Toast/DefaultToastOptions.stories.tsx', + hash: '8958973929668160517', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/DismissAll.stories.tsx', + hash: '2685894480482990937', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/DismissToast.stories.tsx', + hash: '8774218450743142683', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/DismissToastWithAction.stories.tsx', + hash: '8458792279487386337', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/FocusKeyboardShortcut.stories.tsx', + hash: '14074369499061671706', + }, + { file: 'packages/react-components/react-toast/stories/Toast/Inline.stories.tsx', hash: '17578441719614929430' }, + { file: 'packages/react-components/react-toast/stories/Toast/Intent.stories.tsx', hash: '1090435765951400454' }, + { + file: 'packages/react-components/react-toast/stories/Toast/InvertedAppearance.stories.tsx', + hash: '10760961140479438812', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/MultipleToasters.stories.tsx', + hash: '12056886636971994811', + }, + { file: 'packages/react-components/react-toast/stories/Toast/Offset.stories.tsx', hash: '8806183767015813092' }, + { + file: 'packages/react-components/react-toast/stories/Toast/PauseAndPlay.stories.tsx', + hash: '5162053943050726387', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/PauseOnHover.stories.tsx', + hash: '4073400650824333528', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/PauseOnWindowBlur.stories.tsx', + hash: '8548636225339869647', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/ProgressToast.stories.tsx', + hash: '13662336240826558606', + }, + { file: 'packages/react-components/react-toast/stories/Toast/ToastDescription.md', hash: '8747828005507942046' }, + { + file: 'packages/react-components/react-toast/stories/Toast/ToastLifecycle.stories.tsx', + hash: '1932874522668137805', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/ToastPositions.stories.tsx', + hash: '18410503127903303083', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/ToasterLimit.stories.tsx', + hash: '68893506097705199', + }, + { + file: 'packages/react-components/react-toast/stories/Toast/UpdateToast.stories.tsx', + hash: '14044906220579458655', + }, + { file: 'packages/react-components/react-toast/stories/Toast/index.stories.tsx', hash: '10239704938406017702' }, + { file: 'packages/react-components/react-toast/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-toast/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-toast/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-toast/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/theming-designer': [ + { file: 'apps/theming-designer/.eslintrc.json', hash: '15624877064293233006' }, + { file: 'apps/theming-designer/CHANGELOG.json', hash: '12291746697898346988' }, + { file: 'apps/theming-designer/CHANGELOG.md', hash: '2344453555304636804' }, + { file: 'apps/theming-designer/config/pre-copy.json', hash: '7137810373311645754' }, + { file: 'apps/theming-designer/index.html', hash: '8525451778566725428' }, + { file: 'apps/theming-designer/just.config.ts', hash: '10393370776333958822' }, + { + file: 'apps/theming-designer/package.json', + hash: '5895925697172101667', + deps: [ + '@fluentui/react', + '@fluentui/merge-styles', + '@fluentui/react-docsite-components', + '@fluentui/foundation-legacy', + '@fluentui/scheme-utilities', + '@fluentui/set-version', + '@fluentui/font-icons-mdl2', + 'npm:@microsoft/load-themed-styles', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'apps/theming-designer/project.json', hash: '9081308584738412223' }, + { file: 'apps/theming-designer/src/components/AccessibilityChecker.tsx', hash: '16506844564323751906' }, + { file: 'apps/theming-designer/src/components/AccessibilityDetailsList.tsx', hash: '5938047411396517048' }, + { file: 'apps/theming-designer/src/components/FabricPalette.tsx', hash: '9986798636782472459' }, + { file: 'apps/theming-designer/src/components/FabricSlotWidget.tsx', hash: '7010333939466710623' }, + { file: 'apps/theming-designer/src/components/Header.tsx', hash: '2142641914456137998' }, + { file: 'apps/theming-designer/src/components/Samples/index.tsx', hash: '7706638862259866271' }, + { file: 'apps/theming-designer/src/components/SemanticSlots.tsx', hash: '13534245869120806388' }, + { file: 'apps/theming-designer/src/components/SemanticSlotsDetailsList.tsx', hash: '8958989502641470533' }, + { file: 'apps/theming-designer/src/components/ThemeDesignerColorPicker.tsx', hash: '10551357834195680053' }, + { file: 'apps/theming-designer/src/components/ThemeSlots.tsx', hash: '6097271652755743157' }, + { file: 'apps/theming-designer/src/components/ThemingDesigner.tsx', hash: '11004141289564786969' }, + { file: 'apps/theming-designer/src/index.tsx', hash: '12575369939743920224' }, + { file: 'apps/theming-designer/src/shared/MainPanelStyles.tsx', hash: '4729267293215866647' }, + { file: 'apps/theming-designer/src/shared/Typography.tsx', hash: '15775203349013380082' }, + { file: 'apps/theming-designer/src/version.ts', hash: '17927131915821894877' }, + { file: 'apps/theming-designer/tsconfig.json', hash: '9192958159039358107' }, + { file: 'apps/theming-designer/webpack.config.js', hash: '8376152823140446600' }, + { file: 'apps/theming-designer/webpack.serve.config.js', hash: '5761943271931032973' }, + ], + '@fluentui/react-calendar-compat': [ + { file: 'packages/react-components/react-calendar-compat/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-calendar-compat/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-calendar-compat/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-calendar-compat/.storybook/preview.js', hash: '1791378012295456991' }, + { + file: 'packages/react-components/react-calendar-compat/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-calendar-compat/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-calendar-compat/CHANGELOG.json', hash: '7092211169174649637' }, + { file: 'packages/react-components/react-calendar-compat/CHANGELOG.md', hash: '2828901146932446647' }, + { file: 'packages/react-components/react-calendar-compat/LICENSE', hash: '8614029084732105219' }, + { file: 'packages/react-components/react-calendar-compat/README.md', hash: '4014635926778646785' }, + { + file: 'packages/react-components/react-calendar-compat/bundle-size/Calendar.fixture.js', + hash: '10845155123644884091', + }, + { file: 'packages/react-components/react-calendar-compat/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-calendar-compat/config/tests.js', hash: '16913843724990866890' }, + { + file: 'packages/react-components/react-calendar-compat/etc/react-calendar-compat.api.md', + hash: '11280265714401482809', + }, + { file: 'packages/react-components/react-calendar-compat/jest.config.js', hash: '17594938369918384400' }, + { file: 'packages/react-components/react-calendar-compat/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-calendar-compat/package.json', + hash: '12780475791619375299', + deps: [ + '@fluentui/keyboard-keys', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-calendar-compat/project.json', hash: '10336287111758931158' }, + { file: 'packages/react-components/react-calendar-compat/src/Calendar.ts', hash: '569100325234550221' }, + { file: 'packages/react-components/react-calendar-compat/src/CalendarDay.ts', hash: '8597632098014907945' }, + { file: 'packages/react-components/react-calendar-compat/src/CalendarDayGrid.ts', hash: '9006730546358771150' }, + { file: 'packages/react-components/react-calendar-compat/src/CalendarMonth.ts', hash: '15700967951441475220' }, + { file: 'packages/react-components/react-calendar-compat/src/CalendarPicker.ts', hash: '14523906469553885140' }, + { file: 'packages/react-components/react-calendar-compat/src/CalendarYear.ts', hash: '5034780660418317532' }, + { + file: 'packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.test.tsx', + hash: '13664934943248530105', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.tsx', + hash: '12075814383556349697', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.types.ts', + hash: '6962729070181472361', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/Calendar/defaults.ts', + hash: '12150049920056951841', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/Calendar/index.ts', + hash: '280614579109648880', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/Calendar/useCalendarStyles.styles.ts', + hash: '1006542229430292590', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDay/CalendarDay.tsx', + hash: '7046653937375099156', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDay/CalendarDay.types.ts', + hash: '7254463921971646205', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDay/index.ts', + hash: '5069320966498210852', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDay/useCalendarDayStyles.styles.ts', + hash: '14296708635223528064', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.test.tsx', + hash: '5166513198801435477', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.tsx', + hash: '14150020809682641348', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.types.ts', + hash: '16844172177097176878', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarGridDayCell.tsx', + hash: '8539280218068598115', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarGridRow.tsx', + hash: '12406916342262678923', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarMonthHeaderRow.tsx', + hash: '4731438398885101298', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/index.ts', + hash: '8094953342360531716', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useCalendarDayGridStyles.styles.ts', + hash: '9465252406194562240', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useWeekCornerStyles.styles.ts', + hash: '14768584383717911854', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useWeeks.ts', + hash: '5738594502898152200', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarMonth/CalendarMonth.tsx', + hash: '16366612975234214650', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarMonth/CalendarMonth.types.ts', + hash: '17523810711583792348', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarMonth/index.ts', + hash: '17307579052286375469', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarMonth/useCalendarMonthStyles.ts', + hash: '4576688148791858990', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarPicker/CalendarPicker.types.ts', + hash: '4275469484249014334', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarPicker/index.ts', + hash: '14592164704749861149', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarPicker/useCalendarPickerStyles.styles.ts', + hash: '8049535238955487663', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarYear/CalendarYear.tsx', + hash: '2490533279016265988', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarYear/CalendarYear.types.ts', + hash: '11446533358687332984', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarYear/index.ts', + hash: '18404670979156991646', + }, + { + file: 'packages/react-components/react-calendar-compat/src/components/CalendarYear/useCalendarYearStyles.styles.ts', + hash: '8791019775600337052', + }, + { file: 'packages/react-components/react-calendar-compat/src/index.ts', hash: '11058792551302697956' }, + { + file: 'packages/react-components/react-calendar-compat/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { file: 'packages/react-components/react-calendar-compat/src/utils/animations.ts', hash: '11768504868995077808' }, + { file: 'packages/react-components/react-calendar-compat/src/utils/constants.ts', hash: '6954577135884407208' }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.defaults.ts', + hash: '960516216584631364', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.test.ts', + hash: '1328095693882055479', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.types.ts', + hash: '3964238463408131802', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateFormatting/index.ts', + hash: '11444866860731853863', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/dateGrid.types.ts', + hash: '13869017007540650023', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/findAvailableDate.ts', + hash: '1044521199169079412', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/getBoundedDateRange.ts', + hash: '5151142947748778290', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/getDateRangeTypeToUse.ts', + hash: '6352858266315262616', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/getDayGrid.ts', + hash: '10043549393078829484', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/index.ts', + hash: '10066372923074331696', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/isAfterMaxDate.ts', + hash: '5477043376904704413', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/isBeforeMinDate.ts', + hash: '7418121542564448874', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/isContiguous.ts', + hash: '5454231782673888564', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/isRestrictedDate.ts', + hash: '17835191090077548002', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateMath/dateMath.test.ts', + hash: '10841282865769457042', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateMath/dateMath.ts', + hash: '15051247567906633079', + }, + { + file: 'packages/react-components/react-calendar-compat/src/utils/dateMath/index.ts', + hash: '12772919650999189149', + }, + { file: 'packages/react-components/react-calendar-compat/src/utils/focus.ts', hash: '7882318112925005824' }, + { file: 'packages/react-components/react-calendar-compat/src/utils/index.ts', hash: '2304887399068246115' }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarBestPractices.md', + hash: '12332716352476795030', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarContiguousWork.stories.tsx', + hash: '9107126930642284008', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarCustomDayCellRef.stories.tsx', + hash: '1634922785720367782', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarDateBoundaries.stories.tsx', + hash: '12778969296532591271', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarDefault.stories.tsx', + hash: '1209565745415093032', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarDescription.md', + hash: '621070059803414892', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarMarkedDays.stories.tsx', + hash: '14380631099370286571', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarMonthOnly.stories.tsx', + hash: '18071268346481390719', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarMonthSelection.stories.tsx', + hash: '4355438240880441608', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarMultiDayView.stories.tsx', + hash: '15852493648870531727', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarNonContiguousWorkWeekDays.stories.tsx', + hash: '6659257569324158817', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarOverlaidMonthPicker.stories.tsx', + hash: '6466716036656954449', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarSixWeeks.stories.tsx', + hash: '4478784017377594668', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarWeekNumbers.stories.tsx', + hash: '8784780254995702862', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarWeekSelection.stories.tsx', + hash: '16213513011473001401', + }, + { + file: 'packages/react-components/react-calendar-compat/stories/Calendar/index.stories.tsx', + hash: '16088818829018348985', + }, + { file: 'packages/react-components/react-calendar-compat/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-calendar-compat/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-calendar-compat/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-accordion': [ + { file: 'packages/react-components/react-accordion/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-accordion/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-accordion/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-accordion/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-accordion/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-accordion/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-accordion/CHANGELOG.json', hash: '6704438454373788221' }, + { file: 'packages/react-components/react-accordion/CHANGELOG.md', hash: '6697478859424030169' }, + { file: 'packages/react-components/react-accordion/LICENSE', hash: '10515969215667611391' }, + { file: 'packages/react-components/react-accordion/README.md', hash: '35811706167284032' }, + { + file: 'packages/react-components/react-accordion/bundle-size/Accordion.fixture.js', + hash: '13025293423793119149', + }, + { file: 'packages/react-components/react-accordion/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-accordion/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-accordion/docs/Spec.md', hash: '6652265893767303498' }, + { file: 'packages/react-components/react-accordion/etc/react-accordion.api.md', hash: '11114769121820098904' }, + { file: 'packages/react-components/react-accordion/jest.config.js', hash: '10085574794168449847' }, + { file: 'packages/react-components/react-accordion/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-accordion/package.json', + hash: '5342481591420806101', + deps: [ + '@fluentui/react-aria', + '@fluentui/react-context-selector', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-accordion/project.json', hash: '11440399097110510166' }, + { file: 'packages/react-components/react-accordion/src/Accordion.ts', hash: '16785143114878803654' }, + { file: 'packages/react-components/react-accordion/src/AccordionHeader.ts', hash: '1289798043912099911' }, + { file: 'packages/react-components/react-accordion/src/AccordionItem.ts', hash: '13880495646436759837' }, + { file: 'packages/react-components/react-accordion/src/AccordionPanel.ts', hash: '2438131819937850194' }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/Accordion.test.tsx', + hash: '16976759395372490307', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/Accordion.tsx', + hash: '15197950880235884291', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/Accordion.types.ts', + hash: '15153786169925228028', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/__snapshots__/Accordion.test.tsx.snap', + hash: '5440086178578092926', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/index.ts', + hash: '17015962739051035664', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/renderAccordion.tsx', + hash: '6544593693425754680', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordion.test.ts', + hash: '12537166421869993251', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordion.ts', + hash: '10592401544867876413', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordionContextValues.test.ts', + hash: '10384572688653114691', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordionContextValues.ts', + hash: '10925599516232107360', + }, + { + file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordionStyles.styles.ts', + hash: '12739953739489862888', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.test.tsx', + hash: '5484094921469231221', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.tsx', + hash: '4502134863578619717', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.types.ts', + hash: '5748973260493932389', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/__snapshots__/AccordionHeader.test.tsx.snap', + hash: '11481347373076612900', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/index.ts', + hash: '11564966910913854684', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/renderAccordionHeader.tsx', + hash: '6656884323774064240', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeader.test.tsx', + hash: '18006183417930942098', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeader.tsx', + hash: '4234484994424947618', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderContextValues.test.ts', + hash: '12191753425986561264', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderContextValues.ts', + hash: '8394955758226906343', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderStyles.styles.ts', + hash: '7258185454670979521', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.test.tsx', + hash: '5425981379802688695', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.tsx', + hash: '2321336620717464241', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.types.ts', + hash: '14496451663354119304', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/__snapshots__/AccordionItem.test.tsx.snap', + hash: '64784876023442588', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/index.ts', + hash: '6963096868193264995', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/renderAccordionItem.tsx', + hash: '17207020838960006677', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItem.ts', + hash: '2809714543727973223', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemContextValues.test.ts', + hash: '15386535776538766060', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemContextValues.ts', + hash: '13547940835645645091', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemStyles.styles.ts', + hash: '12158531883424991447', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.test.tsx', + hash: '7403067348982790520', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.tsx', + hash: '12495705955231481459', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.types.ts', + hash: '7103168862077477490', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionPanel/__snapshots__/AccordionPanel.test.tsx.snap', + hash: '10697015544631848634', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionPanel/index.ts', + hash: '11587887317947469666', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionPanel/renderAccordionPanel.tsx', + hash: '7472039993286476875', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionPanel/useAccordionPanel.ts', + hash: '6080867399999950807', + }, + { + file: 'packages/react-components/react-accordion/src/components/AccordionPanel/useAccordionPanelStyles.styles.ts', + hash: '6138244921461656114', + }, + { file: 'packages/react-components/react-accordion/src/contexts/accordion.ts', hash: '16736880611846345591' }, + { + file: 'packages/react-components/react-accordion/src/contexts/accordionHeader.ts', + hash: '15693653098769319600', + }, + { file: 'packages/react-components/react-accordion/src/contexts/accordionItem.ts', hash: '9005618419480165756' }, + { file: 'packages/react-components/react-accordion/src/index.ts', hash: '11836421926908868045' }, + { file: 'packages/react-components/react-accordion/src/testing/isConformant.ts', hash: '14447437808059758114' }, + { + file: 'packages/react-components/react-accordion/src/testing/mockContextValue.ts', + hash: '14895647593596771238', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionCollapsible.stories.tsx', + hash: '4629635531241842185', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionControlled.stories.tsx', + hash: '13597522106183020319', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionDefault.stories.tsx', + hash: '8772977066618335771', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionDescription.md', + hash: '10120928891625568491', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionDisabled.stories.tsx', + hash: '9121740621629891803', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionExpandIcon.stories.tsx', + hash: '10117909561030074085', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionExpandIconPosition.stories.tsx', + hash: '15839297606794072409', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionHeaders.stories.tsx', + hash: '17224421090665489535', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionInline.stories.tsx', + hash: '2053407323239713367', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionMultiple.stories.tsx', + hash: '3384058409854640541', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionNavigation.stories.tsx', + hash: '14976414457374632634', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionOpenItems.stories.tsx', + hash: '7862328611087952935', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionSizes.stories.tsx', + hash: '3647343044623226526', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/AccordionWithIcon.stories.tsx', + hash: '9331458468679791705', + }, + { + file: 'packages/react-components/react-accordion/stories/Accordion/index.stories.tsx', + hash: '15027356603113973585', + }, + { file: 'packages/react-components/react-accordion/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-accordion/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-accordion/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-northstar-emotion-renderer': [ + { file: 'packages/fluentui/react-northstar-emotion-renderer/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/jest.config.js', hash: '10065914605359659073' }, + { + file: 'packages/fluentui/react-northstar-emotion-renderer/package.json', + hash: '16057095585920927971', + deps: [ + 'npm:@babel/runtime', + 'npm:@emotion/cache', + 'npm:@emotion/serialize', + 'npm:@emotion/sheet', + 'npm:@emotion/utils', + '@fluentui/react-northstar-styles-renderer', + '@fluentui/styles', + 'npm:stylis', + 'npm:stylis-plugin-rtl', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:@types/stylis', + 'npm:lerna-alias', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/project.json', hash: '5988446854191171584' }, + { + file: 'packages/fluentui/react-northstar-emotion-renderer/src/createEmotionRenderer.tsx', + hash: '3527459238388368320', + }, + { + file: 'packages/fluentui/react-northstar-emotion-renderer/src/disableAnimations.ts', + hash: '15169298850039687481', + }, + { + file: 'packages/fluentui/react-northstar-emotion-renderer/src/focusVisiblePlugin.ts', + hash: '15882127862814043576', + }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/src/fontUtils.ts', hash: '2024523837323362739' }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/src/index.ts', hash: '4595283533174490101' }, + { + file: 'packages/fluentui/react-northstar-emotion-renderer/src/invokeKeyframes.ts', + hash: '8615174738355072265', + }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/src/utils.ts', hash: '4045080220261049628' }, + { + file: 'packages/fluentui/react-northstar-emotion-renderer/test/__snapshots__/emotionRenderer-test.ts.snap', + hash: '10413787701503712849', + }, + { + file: 'packages/fluentui/react-northstar-emotion-renderer/test/emotionRenderer-test.ts', + hash: '13586919140231825454', + }, + { + file: 'packages/fluentui/react-northstar-emotion-renderer/test/focusVisiblePlugin-test.ts', + hash: '13336232390182493707', + }, + { file: 'packages/fluentui/react-northstar-emotion-renderer/tsconfig.json', hash: '17948747254354210464' }, + ], + '@fluentui/react-docsite-components': [ + { file: 'packages/react-docsite-components/.eslintrc.json', hash: '17910802694759075705' }, + { file: 'packages/react-docsite-components/.npmignore', hash: '47056201363133096' }, + { file: 'packages/react-docsite-components/CHANGELOG.json', hash: '15623346196486686' }, + { file: 'packages/react-docsite-components/CHANGELOG.md', hash: '16667333957296172062' }, + { file: 'packages/react-docsite-components/LICENSE', hash: '9616427488211660399' }, + { file: 'packages/react-docsite-components/README.md', hash: '2220872118300718726' }, + { file: 'packages/react-docsite-components/config/pre-copy.json', hash: '10496597701824624187' }, + { file: 'packages/react-docsite-components/index.html', hash: '2640797298882155798' }, + { file: 'packages/react-docsite-components/jest.config.js', hash: '5767287689832801759' }, + { file: 'packages/react-docsite-components/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-docsite-components/package.json', + hash: '10314344290287066915', + deps: [ + '@fluentui/react', + '@fluentui/theme', + 'npm:@microsoft/load-themed-styles', + '@fluentui/example-data', + '@fluentui/public-docsite-setup', + '@fluentui/react-hooks', + '@fluentui/set-version', + '@fluentui/react-monaco-editor', + 'npm:color-check', + 'npm:markdown-to-jsx', + 'npm:office-ui-fabric-core', + 'npm:react-custom-scrollbars', + 'npm:react-syntax-highlighter', + 'npm:tslib', + '@fluentui/common-styles', + '@fluentui/eslint-plugin', + 'npm:@types/color-check', + 'npm:@types/react-custom-scrollbars', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-docsite-components/project.json', hash: '10631926172196863479' }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationDetail/AnimationDetail.tsx', + hash: '11264131826746095967', + }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationDetail/AnimationDetail.types.ts', + hash: '10921051691769202943', + }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationDetail/index.ts', + hash: '3670912092410067411', + }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/AnimationDetailGrid.tsx', + hash: '16347224904878135663', + }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/AnimationDetailGrid.types.ts', + hash: '12493861838927048618', + }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/index.ts', + hash: '3186403042237813675', + }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationExample/AnimationExample.tsx', + hash: '9795940310449634330', + }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationExample/AnimationExample.types.ts', + hash: '11921866709470015362', + }, + { + file: 'packages/react-docsite-components/src/components/Animation/AnimationExample/index.ts', + hash: '14853755572767387801', + }, + { file: 'packages/react-docsite-components/src/components/Animation/index.ts', hash: '13772077451262221428' }, + { + file: 'packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTable.tsx', + hash: '6693920952919094704', + }, + { + file: 'packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTableSet.tsx', + hash: '12110962144033825225', + }, + { + file: 'packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTableSet.types.ts', + hash: '14792084498059802857', + }, + { + file: 'packages/react-docsite-components/src/components/ApiReferencesTable/index.ts', + hash: '15605678694974685331', + }, + { + file: 'packages/react-docsite-components/src/components/ApiReferencesTable/tokenResolver.test.ts', + hash: '17246629434563524157', + }, + { + file: 'packages/react-docsite-components/src/components/ApiReferencesTable/tokenResolver.ts', + hash: '11203029933842193563', + }, + { file: 'packages/react-docsite-components/src/components/App/App.styles.ts', hash: '16366742593675220433' }, + { file: 'packages/react-docsite-components/src/components/App/App.tsx', hash: '5479481127201385538' }, + { file: 'packages/react-docsite-components/src/components/App/App.types.ts', hash: '3013181038616524203' }, + { file: 'packages/react-docsite-components/src/components/App/index.ts', hash: '14112724461615500278' }, + { file: 'packages/react-docsite-components/src/components/Badge/Badge.tsx', hash: '11558535686674202398' }, + { file: 'packages/react-docsite-components/src/components/Badge/Badge.types.ts', hash: '8744809654982521758' }, + { file: 'packages/react-docsite-components/src/components/Badge/index.ts', hash: '4962031303727737639' }, + { + file: 'packages/react-docsite-components/src/components/CodeSnippet/CodeSnippet.styles.ts', + hash: '6620062364833710851', + }, + { + file: 'packages/react-docsite-components/src/components/CodeSnippet/CodeSnippet.tsx', + hash: '13813234680433505694', + }, + { + file: 'packages/react-docsite-components/src/components/CodeSnippet/PrismCodeSnippet.tsx', + hash: '15729185984999372459', + }, + { file: 'packages/react-docsite-components/src/components/CodeSnippet/index.ts', hash: '4078061758664398964' }, + { + file: 'packages/react-docsite-components/src/components/CodepenComponent/CodepenComponent.tsx', + hash: '11870257513293450538', + }, + { + file: 'packages/react-docsite-components/src/components/CodepenComponent/CodepenComponent.types.ts', + hash: '15369017375806556484', + }, + { + file: 'packages/react-docsite-components/src/components/CodepenComponent/index.ts', + hash: '6992589686786059677', + }, + { + file: 'packages/react-docsite-components/src/components/ColorPalette/ColorPalette.styles.ts', + hash: '10408275644401713063', + }, + { + file: 'packages/react-docsite-components/src/components/ColorPalette/ColorPalette.tsx', + hash: '13383233160734780830', + }, + { + file: 'packages/react-docsite-components/src/components/ColorPalette/ColorPalette.types.ts', + hash: '7727147804317552266', + }, + { file: 'packages/react-docsite-components/src/components/ColorPalette/index.ts', hash: '2243447153520337046' }, + { + file: 'packages/react-docsite-components/src/components/ComponentPage/ComponentPage.styles.ts', + hash: '2847849537891104567', + }, + { + file: 'packages/react-docsite-components/src/components/ComponentPage/ComponentPage.tsx', + hash: '12667409702626479674', + }, + { + file: 'packages/react-docsite-components/src/components/ComponentPage/ComponentPage.types.ts', + hash: '11238805679830811443', + }, + { file: 'packages/react-docsite-components/src/components/ComponentPage/index.ts', hash: '5520169500609217837' }, + { + file: 'packages/react-docsite-components/src/components/DisplayToggle/DisplayToggle.tsx', + hash: '4910289010839064091', + }, + { + file: 'packages/react-docsite-components/src/components/DisplayToggle/DisplayToggle.types.ts', + hash: '6899766017438718203', + }, + { file: 'packages/react-docsite-components/src/components/DisplayToggle/index.ts', hash: '11307196144261154083' }, + { + file: 'packages/react-docsite-components/src/components/EditSection/EditSection.tsx', + hash: '12854715732857349029', + }, + { + file: 'packages/react-docsite-components/src/components/EditSection/EditSection.types.ts', + hash: '5572300696319586102', + }, + { file: 'packages/react-docsite-components/src/components/EditSection/index.ts', hash: '12495031237438416611' }, + { + file: 'packages/react-docsite-components/src/components/ExampleCard/ExampleCard.styles.ts', + hash: '9033267256349918834', + }, + { + file: 'packages/react-docsite-components/src/components/ExampleCard/ExampleCard.tsx', + hash: '17338998690457603436', + }, + { + file: 'packages/react-docsite-components/src/components/ExampleCard/ExampleCard.types.ts', + hash: '7242972042750925022', + }, + { file: 'packages/react-docsite-components/src/components/ExampleCard/index.ts', hash: '15094305405003736612' }, + { + file: 'packages/react-docsite-components/src/components/FeedbackList/FeedbackList.styles.ts', + hash: '15527272981673495220', + }, + { + file: 'packages/react-docsite-components/src/components/FeedbackList/FeedbackList.tsx', + hash: '6913565087332624295', + }, + { + file: 'packages/react-docsite-components/src/components/FeedbackList/FeedbackList.types.ts', + hash: '12055884543860903617', + }, + { file: 'packages/react-docsite-components/src/components/FeedbackList/index.ts', hash: '9242617650315490998' }, + { + file: 'packages/react-docsite-components/src/components/FeedbackList/relativeDates.test.tsx', + hash: '14205011362976557372', + }, + { + file: 'packages/react-docsite-components/src/components/FeedbackList/relativeDates.ts', + hash: '7957536793518410690', + }, + { file: 'packages/react-docsite-components/src/components/Header/Header.styles.ts', hash: '8473524780432870952' }, + { file: 'packages/react-docsite-components/src/components/Header/Header.tsx', hash: '10303724695287218835' }, + { file: 'packages/react-docsite-components/src/components/Header/Header.types.ts', hash: '16233883555288466961' }, + { file: 'packages/react-docsite-components/src/components/Header/index.ts', hash: '5506779718460944000' }, + { + file: 'packages/react-docsite-components/src/components/LoadingComponent/LoadingComponent.tsx', + hash: '13650245432014634690', + }, + { + file: 'packages/react-docsite-components/src/components/LoadingComponent/LoadingComponent.types.ts', + hash: '6400960813027923111', + }, + { + file: 'packages/react-docsite-components/src/components/LoadingComponent/index.ts', + hash: '5799557727547273435', + }, + { file: 'packages/react-docsite-components/src/components/Markdown/Markdown.tsx', hash: '3265394082177415297' }, + { + file: 'packages/react-docsite-components/src/components/Markdown/Markdown.types.ts', + hash: '15550085183233549182', + }, + { + file: 'packages/react-docsite-components/src/components/Markdown/MarkdownCode.tsx', + hash: '5782844213118550369', + }, + { + file: 'packages/react-docsite-components/src/components/Markdown/MarkdownHeader.tsx', + hash: '170166514560079612', + }, + { + file: 'packages/react-docsite-components/src/components/Markdown/MarkdownLink.tsx', + hash: '11369738457711070204', + }, + { + file: 'packages/react-docsite-components/src/components/Markdown/MarkdownParagraph.tsx', + hash: '927651713797114180', + }, + { + file: 'packages/react-docsite-components/src/components/Markdown/MarkdownPre.tsx', + hash: '11549614759760207006', + }, + { file: 'packages/react-docsite-components/src/components/Markdown/index.ts', hash: '2104250620797368259' }, + { + file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownCell.tsx', + hash: '18279001039219757069', + }, + { + file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTBody.tsx', + hash: '6801091733446794095', + }, + { + file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTHead.tsx', + hash: '6573393184264059451', + }, + { + file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.styles.ts', + hash: '11753276764079744984', + }, + { + file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.tsx', + hash: '15567154242683678350', + }, + { + file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.types.ts', + hash: '17986119871571670228', + }, + { + file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTr.tsx', + hash: '14456901982183056649', + }, + { file: 'packages/react-docsite-components/src/components/MarkdownTable/index.ts', hash: '13169572237147661272' }, + { file: 'packages/react-docsite-components/src/components/Nav/Nav.types.ts', hash: '15448548289405977557' }, + { file: 'packages/react-docsite-components/src/components/Nav/index.ts', hash: '16980948111742648072' }, + { file: 'packages/react-docsite-components/src/components/Page/Page.module.scss', hash: '15997096924270964157' }, + { file: 'packages/react-docsite-components/src/components/Page/Page.tsx', hash: '1385652342251007383' }, + { file: 'packages/react-docsite-components/src/components/Page/Page.types.ts', hash: '5020195258814514625' }, + { file: 'packages/react-docsite-components/src/components/Page/index.ts', hash: '3560070557009333257' }, + { + file: 'packages/react-docsite-components/src/components/Page/sections/BannerSection.tsx', + hash: '9459583740729657611', + }, + { + file: 'packages/react-docsite-components/src/components/Page/sections/BestPracticesSection.tsx', + hash: '2625722722092540946', + }, + { + file: 'packages/react-docsite-components/src/components/Page/sections/ExamplesSection.tsx', + hash: '7459818529105091139', + }, + { + file: 'packages/react-docsite-components/src/components/Page/sections/FeedbackSection.tsx', + hash: '5163148693013218817', + }, + { + file: 'packages/react-docsite-components/src/components/Page/sections/ImplementationSection.tsx', + hash: '12817609470043729', + }, + { + file: 'packages/react-docsite-components/src/components/Page/sections/MarkdownSection.tsx', + hash: '13600727208740058364', + }, + { + file: 'packages/react-docsite-components/src/components/Page/sections/OtherPageSection.tsx', + hash: '6448538661393121940', + }, + { + file: 'packages/react-docsite-components/src/components/Page/sections/OverviewSection.tsx', + hash: '5819020254044237698', + }, + { file: 'packages/react-docsite-components/src/components/Page/sections/index.ts', hash: '11022066208682099058' }, + { + file: 'packages/react-docsite-components/src/components/PageHeader/PageHeader.tsx', + hash: '14224263990280196724', + }, + { + file: 'packages/react-docsite-components/src/components/PageHeader/PageHeader.types.ts', + hash: '12065952942620058849', + }, + { file: 'packages/react-docsite-components/src/components/PageHeader/index.ts', hash: '5118033474718800442' }, + { + file: 'packages/react-docsite-components/src/components/PlatformBar/PlatformBar.base.tsx', + hash: '6676147153439959496', + }, + { + file: 'packages/react-docsite-components/src/components/PlatformBar/PlatformBar.styles.ts', + hash: '12425173100815747296', + }, + { + file: 'packages/react-docsite-components/src/components/PlatformBar/PlatformBar.tsx', + hash: '14835312562071670454', + }, + { + file: 'packages/react-docsite-components/src/components/PlatformBar/PlatformBar.types.ts', + hash: '5050109515969688623', + }, + { file: 'packages/react-docsite-components/src/components/PlatformBar/index.ts', hash: '17000560713892606846' }, + { + file: 'packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.module.scss', + hash: '10129437058013725451', + }, + { + file: 'packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.tsx', + hash: '1723918811407193241', + }, + { + file: 'packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.types.ts', + hash: '5209849757397689134', + }, + { file: 'packages/react-docsite-components/src/components/PlatformPicker/index.ts', hash: '3704407012159645691' }, + { + file: 'packages/react-docsite-components/src/components/PropertiesTable/PropertiesTable.tsx', + hash: '10609321670064992912', + }, + { + file: 'packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.styles.ts', + hash: '7576556022262521007', + }, + { + file: 'packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.tsx', + hash: '4252564358131238265', + }, + { + file: 'packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.types.ts', + hash: '10649805137209477089', + }, + { + file: 'packages/react-docsite-components/src/components/PropertiesTable/index.ts', + hash: '5168601532031671044', + }, + { + file: 'packages/react-docsite-components/src/components/ScrollBars/ScrollBars.tsx', + hash: '7492893318732139089', + }, + { + file: 'packages/react-docsite-components/src/components/ScrollBars/ScrollBars.types.ts', + hash: '8892757102835863185', + }, + { file: 'packages/react-docsite-components/src/components/ScrollBars/index.ts', hash: '2488975222934078523' }, + { + file: 'packages/react-docsite-components/src/components/SideRail/SideRail.styles.ts', + hash: '17464653957499105858', + }, + { file: 'packages/react-docsite-components/src/components/SideRail/SideRail.tsx', hash: '10530651215123821136' }, + { + file: 'packages/react-docsite-components/src/components/SideRail/SideRail.types.ts', + hash: '12378737735663262739', + }, + { file: 'packages/react-docsite-components/src/components/SideRail/index.ts', hash: '15350023720092837224' }, + { + file: 'packages/react-docsite-components/src/components/SiteMessageBar/SiteMessageBar.tsx', + hash: '5692542924300314898', + }, + { + file: 'packages/react-docsite-components/src/components/SiteMessageBar/SiteMessageBar.types.ts', + hash: '4633620292447014093', + }, + { file: 'packages/react-docsite-components/src/components/SiteMessageBar/index.ts', hash: '8013242729655963168' }, + { + file: 'packages/react-docsite-components/src/components/Table/Table.module.scss', + hash: '16550842896320001700', + }, + { file: 'packages/react-docsite-components/src/components/Table/Table.tsx', hash: '14379197659162050526' }, + { file: 'packages/react-docsite-components/src/components/Table/Table.types.ts', hash: '14075813774070979305' }, + { file: 'packages/react-docsite-components/src/components/Table/index.ts', hash: '5229940266654307261' }, + { + file: 'packages/react-docsite-components/src/components/TopBanner/TopBanner.module.scss', + hash: '15038493170820400757', + }, + { file: 'packages/react-docsite-components/src/components/TopBanner/TopBanner.tsx', hash: '8333453547241102032' }, + { + file: 'packages/react-docsite-components/src/components/TopBanner/TopBanner.types.ts', + hash: '10791569416871748217', + }, + { file: 'packages/react-docsite-components/src/components/TopBanner/index.ts', hash: '12469409406838065289' }, + { + file: 'packages/react-docsite-components/src/components/TopNav/TopNav.module.scss', + hash: '15528005425186561560', + }, + { file: 'packages/react-docsite-components/src/components/TopNav/TopNav.tsx', hash: '12121264468935953169' }, + { file: 'packages/react-docsite-components/src/components/TopNav/TopNav.types.ts', hash: '484556540365286005' }, + { file: 'packages/react-docsite-components/src/components/TopNav/index.ts', hash: '18228330905927286130' }, + { + file: 'packages/react-docsite-components/src/components/Video/Video.module.scss', + hash: '17577067756746920297', + }, + { file: 'packages/react-docsite-components/src/components/Video/Video.tsx', hash: '4885650580642838040' }, + { file: 'packages/react-docsite-components/src/components/Video/Video.types.ts', hash: '16538062891442897525' }, + { file: 'packages/react-docsite-components/src/components/Video/index.ts', hash: '10289931313091974900' }, + { file: 'packages/react-docsite-components/src/demo/demo.md', hash: '16278892541003887014' }, + { file: 'packages/react-docsite-components/src/index.demo.tsx', hash: '16084233626171032953' }, + { file: 'packages/react-docsite-components/src/index.ts', hash: '3402088956271963260' }, + { file: 'packages/react-docsite-components/src/index2.ts', hash: '10858750401029740114' }, + { file: 'packages/react-docsite-components/src/styles/_common.scss', hash: '4739691154712696008' }, + { file: 'packages/react-docsite-components/src/styles/constants.ts', hash: '18113821495747227057' }, + { file: 'packages/react-docsite-components/src/utilities/PlatformContext.tsx', hash: '10721691462706379471' }, + { file: 'packages/react-docsite-components/src/utilities/SiteDefinition.types.ts', hash: '3483411585517637402' }, + { file: 'packages/react-docsite-components/src/utilities/activePage.ts', hash: '8612871338526660105' }, + { file: 'packages/react-docsite-components/src/utilities/appInsightsHelper.ts', hash: '8138553450890304073' }, + { file: 'packages/react-docsite-components/src/utilities/baseDefinition.tsx', hash: '17208312766058810770' }, + { file: 'packages/react-docsite-components/src/utilities/createApp.tsx', hash: '17969024525428726625' }, + { file: 'packages/react-docsite-components/src/utilities/createDemoApp.tsx', hash: '2653224455280570175' }, + { file: 'packages/react-docsite-components/src/utilities/data.ts', hash: '18386193858659404356' }, + { file: 'packages/react-docsite-components/src/utilities/examplesOf.ts', hash: '10037047487220822653' }, + { + file: 'packages/react-docsite-components/src/utilities/extractAnchorLink.test.ts', + hash: '14821204508688466308', + }, + { file: 'packages/react-docsite-components/src/utilities/extractAnchorLink.ts', hash: '4010749088974230211' }, + { file: 'packages/react-docsite-components/src/utilities/getCurrentUrl.ts', hash: '10998380089641402222' }, + { file: 'packages/react-docsite-components/src/utilities/getEditUrl.ts', hash: '13662911029079054150' }, + { file: 'packages/react-docsite-components/src/utilities/getLinkColors.ts', hash: '12700816332715066801' }, + { file: 'packages/react-docsite-components/src/utilities/getNormalizedPath.ts', hash: '1431721679199564653' }, + { file: 'packages/react-docsite-components/src/utilities/getPageFirstPlatform.ts', hash: '1789802822213132435' }, + { file: 'packages/react-docsite-components/src/utilities/getSiteArea.ts', hash: '6341403548239437859' }, + { file: 'packages/react-docsite-components/src/utilities/index.ts', hash: '5861053845170178010' }, + { file: 'packages/react-docsite-components/src/utilities/index2.ts', hash: '18232133903563724366' }, + { file: 'packages/react-docsite-components/src/utilities/jumpToAnchor.ts', hash: '12726337012761599975' }, + { file: 'packages/react-docsite-components/src/utilities/parser/BaseParser.ts', hash: '17784227666965957282' }, + { + file: 'packages/react-docsite-components/src/utilities/parser/EnumParserHelper.ts', + hash: '15839387552642550867', + }, + { + file: 'packages/react-docsite-components/src/utilities/parser/InterfaceParserHelper.ts', + hash: '17116487468584992291', + }, + { file: 'packages/react-docsite-components/src/utilities/parser/Parse.ts', hash: '1455887245422584040' }, + { file: 'packages/react-docsite-components/src/utilities/parser/index.ts', hash: '12084374931088726602' }, + { file: 'packages/react-docsite-components/src/utilities/parser/interfaces.ts', hash: '4063379421402413669' }, + { file: 'packages/react-docsite-components/src/utilities/randomEntry.ts', hash: '6198528484003308287' }, + { file: 'packages/react-docsite-components/src/utilities/redirects.ts', hash: '17409290045674525834' }, + { + file: 'packages/react-docsite-components/src/utilities/removeAnchorLink.test.ts', + hash: '11015103027632462396', + }, + { file: 'packages/react-docsite-components/src/utilities/removeAnchorLink.ts', hash: '15447886450914037200' }, + { file: 'packages/react-docsite-components/src/utilities/router/Route.tsx', hash: '10175416453822392064' }, + { file: 'packages/react-docsite-components/src/utilities/router/Router.tsx', hash: '14816371583147992581' }, + { file: 'packages/react-docsite-components/src/utilities/router/index.ts', hash: '5321333771325496376' }, + { file: 'packages/react-docsite-components/src/utilities/showOnlyExamples.ts', hash: '17505358712249837772' }, + { file: 'packages/react-docsite-components/src/utilities/string.ts', hash: '10417563592158032366' }, + { file: 'packages/react-docsite-components/src/utilities/theme.ts', hash: '11154753743358389279' }, + { file: 'packages/react-docsite-components/src/utilities/windowWidth.ts', hash: '2891539011908030225' }, + { file: 'packages/react-docsite-components/src/version.ts', hash: '10007923850948970376' }, + { file: 'packages/react-docsite-components/tsconfig.json', hash: '3306502114190941300' }, + { file: 'packages/react-docsite-components/webpack.serve.config.js', hash: '8490482500988848252' }, + ], + '@fluentui/react-tags': [ + { file: 'packages/react-components/react-tags/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-tags/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-tags/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-tags/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-tags/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-tags/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-tags/CHANGELOG.json', hash: '194138550563336131' }, + { file: 'packages/react-components/react-tags/CHANGELOG.md', hash: '3161502209421304381' }, + { file: 'packages/react-components/react-tags/LICENSE', hash: '15984548770641206248' }, + { file: 'packages/react-components/react-tags/README.md', hash: '10500482775121349906' }, + { + file: 'packages/react-components/react-tags/bundle-size/InteractionTag.fixture.js', + hash: '17358477118197912493', + }, + { file: 'packages/react-components/react-tags/bundle-size/TagGroup.fixture.js', hash: '5014611251005463486' }, + { file: 'packages/react-components/react-tags/bundle-size/tag.fixture.js', hash: '15289223331746822136' }, + { file: 'packages/react-components/react-tags/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-tags/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-tags/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-tags/docs/Spec.md', hash: '6616655976701304277' }, + { file: 'packages/react-components/react-tags/etc/react-tags.api.md', hash: '10336091631530896536' }, + { file: 'packages/react-components/react-tags/jest.config.js', hash: '14977555368232687164' }, + { file: 'packages/react-components/react-tags/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-tags/package.json', + hash: '12340442389795941756', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-aria', + '@fluentui/react-avatar', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-tags/project.json', hash: '584427480657467091' }, + { file: 'packages/react-components/react-tags/src/InteractionTag.ts', hash: '13983274673714466720' }, + { file: 'packages/react-components/react-tags/src/InteractionTagPrimary.ts', hash: '6256468456880889102' }, + { file: 'packages/react-components/react-tags/src/InteractionTagSecondary.ts', hash: '5368134246602714141' }, + { file: 'packages/react-components/react-tags/src/Tag.ts', hash: '16167036964551788704' }, + { file: 'packages/react-components/react-tags/src/TagGroup.ts', hash: '6013255966207939916' }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.test.tsx', + hash: '10842010645442217057', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.tsx', + hash: '4399038313425811042', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.types.ts', + hash: '2420146369576242616', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTag/index.ts', + hash: '2950543417664974367', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTag/renderInteractionTag.tsx', + hash: '3182765218771271515', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTag/useInteractionTag.tsx', + hash: '13752441498224431555', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTag/useInteractionTagContextValues.ts', + hash: '17161257668063955216', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTag/useInteractionTagStyles.styles.ts', + hash: '13821784447335059322', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.test.tsx', + hash: '3842149846104916172', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.tsx', + hash: '1076682495847369815', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.types.ts', + hash: '9283581625076046764', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/index.ts', + hash: '9669082753145957501', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/renderInteractionTagPrimary.tsx', + hash: '4745226362693984168', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/useInteractionTagPrimary.ts', + hash: '9872086138500406659', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/useInteractionTagPrimaryStyles.styles.ts', + hash: '4030905491761244906', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.test.tsx', + hash: '16228802968407103171', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.tsx', + hash: '2448716909616843548', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.types.ts', + hash: '6736225241350796857', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/index.ts', + hash: '7102847806939032650', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/renderInteractionTagSecondary.tsx', + hash: '3049407018416866218', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/useInteractionTagSecondary.tsx', + hash: '13926257627148833119', + }, + { + file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/useInteractionTagSecondaryStyles.styles.ts', + hash: '13474997088340994505', + }, + { file: 'packages/react-components/react-tags/src/components/Tag/Tag.test.tsx', hash: '5880691168325391715' }, + { file: 'packages/react-components/react-tags/src/components/Tag/Tag.tsx', hash: '13044814626181179943' }, + { file: 'packages/react-components/react-tags/src/components/Tag/Tag.types.ts', hash: '3362487479164759445' }, + { file: 'packages/react-components/react-tags/src/components/Tag/index.ts', hash: '13324190693234466903' }, + { file: 'packages/react-components/react-tags/src/components/Tag/renderTag.tsx', hash: '14357471753040999319' }, + { file: 'packages/react-components/react-tags/src/components/Tag/useTag.test.tsx', hash: '7838179506645271588' }, + { file: 'packages/react-components/react-tags/src/components/Tag/useTag.tsx', hash: '6625208145382546803' }, + { + file: 'packages/react-components/react-tags/src/components/Tag/useTagStyles.styles.ts', + hash: '18039718330512640670', + }, + { + file: 'packages/react-components/react-tags/src/components/TagGroup/TagGroup.cy.tsx', + hash: '12274824442453552339', + }, + { + file: 'packages/react-components/react-tags/src/components/TagGroup/TagGroup.test.tsx', + hash: '1229481110407317788', + }, + { + file: 'packages/react-components/react-tags/src/components/TagGroup/TagGroup.tsx', + hash: '17830583590301202997', + }, + { + file: 'packages/react-components/react-tags/src/components/TagGroup/TagGroup.types.ts', + hash: '10915367910465333863', + }, + { file: 'packages/react-components/react-tags/src/components/TagGroup/index.ts', hash: '6068868025557275912' }, + { + file: 'packages/react-components/react-tags/src/components/TagGroup/renderTagGroup.tsx', + hash: '8785077840389673202', + }, + { + file: 'packages/react-components/react-tags/src/components/TagGroup/useTagGroup.ts', + hash: '14679630283213287791', + }, + { + file: 'packages/react-components/react-tags/src/components/TagGroup/useTagGroupContextValues.ts', + hash: '8227330079283938096', + }, + { + file: 'packages/react-components/react-tags/src/components/TagGroup/useTagGroupStyles.styles.ts', + hash: '7778412192044924650', + }, + { + file: 'packages/react-components/react-tags/src/contexts/interactionTagContext.tsx', + hash: '2243187516882251719', + }, + { file: 'packages/react-components/react-tags/src/contexts/tagGroupContext.tsx', hash: '12895731128273514711' }, + { file: 'packages/react-components/react-tags/src/index.ts', hash: '4735439958633325990' }, + { file: 'packages/react-components/react-tags/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { file: 'packages/react-components/react-tags/src/utils/index.ts', hash: '3821017355254528299' }, + { file: 'packages/react-components/react-tags/src/utils/types.ts', hash: '596369915833561848' }, + { + file: 'packages/react-components/react-tags/src/utils/useTagAvatarContextValues.ts', + hash: '8470255531493033889', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagAppearance.stories.tsx', + hash: '15179750862216411333', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagBestPractices.md', + hash: '8376548529359937030', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagDefault.stories.tsx', + hash: '2681683984692337791', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagDescription.md', + hash: '12243047500544241920', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagDisabled.stories.tsx', + hash: '9839825437772271568', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagDismiss.stories.tsx', + hash: '494691391610982935', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagHasPrimaryAction.stories.tsx', + hash: '15611238270398355789', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagIcon.stories.tsx', + hash: '12852002179133268371', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagMedia.md', + hash: '4762879944479477719', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagMedia.stories.tsx', + hash: '10949724879323552658', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagSecondaryText.stories.tsx', + hash: '3604279324954000926', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagShape.stories.tsx', + hash: '10907466358493935001', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagSize.stories.tsx', + hash: '10016659096879367027', + }, + { + file: 'packages/react-components/react-tags/stories/InteractionTag/index.stories.tsx', + hash: '5827689478757246692', + }, + { + file: 'packages/react-components/react-tags/stories/Tag/TagAppearance.stories.tsx', + hash: '3919694861981977634', + }, + { file: 'packages/react-components/react-tags/stories/Tag/TagBestPractices.md', hash: '12858297417514368292' }, + { file: 'packages/react-components/react-tags/stories/Tag/TagDefault.stories.tsx', hash: '17713833537975864762' }, + { file: 'packages/react-components/react-tags/stories/Tag/TagDescription.md', hash: '7715548073631177926' }, + { + file: 'packages/react-components/react-tags/stories/Tag/TagDisabled.stories.tsx', + hash: '16500515061880366924', + }, + { file: 'packages/react-components/react-tags/stories/Tag/TagDismiss.stories.tsx', hash: '17508285979156894864' }, + { file: 'packages/react-components/react-tags/stories/Tag/TagIcon.stories.tsx', hash: '3059091904526791471' }, + { file: 'packages/react-components/react-tags/stories/Tag/TagMedia.stories.tsx', hash: '3760481520461679314' }, + { + file: 'packages/react-components/react-tags/stories/Tag/TagSecondaryText.stories.tsx', + hash: '16438231938445811823', + }, + { file: 'packages/react-components/react-tags/stories/Tag/TagShape.stories.tsx', hash: '15631510183237341762' }, + { file: 'packages/react-components/react-tags/stories/Tag/TagSize.stories.tsx', hash: '10054136554160599561' }, + { file: 'packages/react-components/react-tags/stories/Tag/index.stories.tsx', hash: '605437294753359930' }, + { + file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupBestPractices.md', + hash: '4295534675539626496', + }, + { + file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupDefault.stories.tsx', + hash: '11205413669957950629', + }, + { + file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupDescription.md', + hash: '8733036749501389712', + }, + { + file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupDismiss.stories.tsx', + hash: '2371595253438866621', + }, + { + file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupOverflow.stories.tsx', + hash: '6620702853877345768', + }, + { + file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupSizes.stories.tsx', + hash: '48436092750364017', + }, + { file: 'packages/react-components/react-tags/stories/TagGroup/index.stories.tsx', hash: '8148050799531276468' }, + { file: 'packages/react-components/react-tags/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-tags/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-tags/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-tags/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-icons-northstar': [ + { file: 'packages/fluentui/react-icons-northstar/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-icons-northstar/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-icons-northstar/README.md', hash: '13053638770459338997' }, + { file: 'packages/fluentui/react-icons-northstar/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-icons-northstar/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-icons-northstar/jest.config.js', hash: '3465031014798019550' }, + { + file: 'packages/fluentui/react-icons-northstar/package.json', + hash: '5931091629939874207', + deps: [ + 'npm:@babel/runtime', + '@fluentui/accessibility', + '@fluentui/react-bindings', + '@fluentui/styles', + 'npm:classnames', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:@types/classnames', + 'npm:lerna-alias', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-icons-northstar/project.json', hash: '2673713012878548677' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/AcceptIcon.tsx', hash: '9767330132588126669' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/AccessibilityIcon.tsx', + hash: '3275560913924857013', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/AddIcon.tsx', hash: '11874085924420919079' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/AppFolderIcon.tsx', + hash: '10312148648643735481', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ApprovalsAppbarIcon.tsx', + hash: '1745626736151144385', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/AppsIcon.tsx', hash: '15069474369474712622' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ArchiveIcon.tsx', hash: '11398532143434039339' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ArrowDownIcon.tsx', + hash: '16325271689891166155', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ArrowLeftIcon.tsx', hash: '9221250842331686875' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ArrowRightIcon.tsx', + hash: '2730967691145257400', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ArrowSortIcon.tsx', hash: '6094461093423187241' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ArrowSyncIcon.tsx', + hash: '15766013812821710444', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ArrowUpIcon.tsx', hash: '4939672875425989341' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/AttendeeIcon.tsx', hash: '14285830896017378869' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/AudienceIcon.tsx', hash: '12250647430848484332' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/AudioLoadingIcon.tsx', + hash: '8012047090057191654', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/AudioOffIcon.tsx', hash: '946032617944927617' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/BanIcon.tsx', hash: '593464898756515555' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/BellIcon.tsx', hash: '11033097208023853390' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/BellSlashIcon.tsx', hash: '7591509515225408307' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/BellSnoozeIcon.tsx', + hash: '6369921584818208554', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/BluetoothIcon.tsx', + hash: '15334535281749150230', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/BoldIcon.tsx', hash: '8003201425970891211' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/BookmarkIcon.tsx', hash: '15690454909475339837' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/BreakoutRoomIcon.tsx', + hash: '17054383108180468005', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/BriefcaseIcon.tsx', + hash: '10478364328091420482', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/BroadcastIcon.tsx', hash: '3981239034303992809' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/BroadcastViewFullscreenIcon.tsx', + hash: '4249857887748612938', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/BroadcastViewLeftIcon.tsx', + hash: '14309947931521573574', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/BuildingIcon.tsx', hash: '9863410715723811575' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/BulletsIcon.tsx', hash: '3553116472011548812' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CalendarAgendaIcon.tsx', + hash: '13486160168791571840', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CalendarIcon.tsx', hash: '7908939309068871488' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CalendarWorkWeekIcon.tsx', + hash: '15012893111927043994', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallBlockedIcon.tsx', + hash: '11812511166458128842', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallControlCloseTrayIcon.tsx', + hash: '13321761086561697169', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallControlPresentNewIcon.tsx', + hash: '12300930260009159328', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallControlReleaseIcon.tsx', + hash: '11474115645162748616', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallControlRequestIcon.tsx', + hash: '17337124854225199349', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallControlShareIcon.tsx', + hash: '13243426694714208518', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallControlStopPresentingNewIcon.tsx', + hash: '6923024728426196189', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallDialpadIcon.tsx', + hash: '18173546005506602826', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CallEndIcon.tsx', hash: '6807397170524399524' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CallIcon.tsx', hash: '13101657994810936681' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallMissedLineIcon.tsx', + hash: '14382010946281942185', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallParkingIcon.tsx', + hash: '9041753200234911760', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CallPstnIcon.tsx', hash: '892374354652057083' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallRecordingIcon.tsx', + hash: '1338496657346481805', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CallVideoIcon.tsx', hash: '1747790287814309140' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CallVideoOffIcon.tsx', + hash: '5569040523138575316', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CameraIcon.tsx', hash: '17772892043983818358' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CanvasAddPageIcon.tsx', + hash: '11563591390427260327', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CartIcon.tsx', hash: '11772369317245466398' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CastingIcon.tsx', hash: '2794796235077473811' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ChannelShareIcon.tsx', + hash: '133952854926906356', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ChatIcon.tsx', hash: '5891127100155450348' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ChatOffIcon.tsx', hash: '513054842676894271' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CheckmarkCircleIcon.tsx', + hash: '13370034776084101658', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ChevronDownIcon.tsx', + hash: '10679410130761146727', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ChevronDownMediumIcon.tsx', + hash: '9881308937778058022', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ChevronEndIcon.tsx', + hash: '14157278717926177046', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ChevronEndMediumIcon.tsx', + hash: '9609092908967679756', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ChevronStartIcon.tsx', + hash: '10619632485351580681', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CircleIcon.tsx', hash: '17759723735001282331' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ClipboardCopiedToIcon.tsx', + hash: '17269187814463163724', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CloseIcon.tsx', hash: '5883069793501621836' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ClosedCaptionsIcon.tsx', + hash: '8588005992574030043', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CodeSnippetIcon.tsx', + hash: '3266125077547908119', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/CollapseIcon.tsx', hash: '16990795667701224833' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CompanionIcon.tsx', + hash: '16903738527604991088', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ComposeIcon.tsx', hash: '16911298295284661493' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ComputerAudioIcon.tsx', + hash: '18002388544616103388', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ComputerAudioOffIcon.tsx', + hash: '8092469846987677739', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ConferenceRoomDeviceIcon.tsx', + hash: '6522927528427907880', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ContactCardIcon.tsx', + hash: '5649466021280702633', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ContactGroupCallIcon.tsx', + hash: '5357983575802334698', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ContactGroupIcon.tsx', + hash: '967883254810176102', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ContentIcon.tsx', hash: '10364024546703268814' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ContentViewGalleryIcon.tsx', + hash: '16956658867308258911', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/CustomerHubIcon.tsx', + hash: '13327677392159958520', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/DesktopIcon.tsx', hash: '2290498536661256806' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/DoorArrowLeftIcon.tsx', + hash: '11232970802031723674', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/DownloadIcon.tsx', hash: '9696663328514966811' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/EditIcon.tsx', hash: '2445579134889833192' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/EmailIcon.tsx', hash: '1358538480708497908' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/EmailWithDotIcon.tsx', + hash: '7629466379447640863', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/EmojiAddIcon.tsx', hash: '16634487114604226561' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/EmojiIcon.tsx', hash: '13544428296413020078' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/EmojiSadIcon.tsx', hash: '16526152327799207932' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/EmojiSurprisedIcon.tsx', + hash: '17468242374398486398', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ErrorIcon.tsx', hash: '8264038088873975391' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ExcelColorIcon.tsx', + hash: '5719703865902159961', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ExcelIcon.tsx', hash: '3091121359113518045' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ExclamationCircleIcon.tsx', + hash: '5273179690351575014', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ExclamationTriangleIcon.tsx', + hash: '7219678797532383065', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ExpandIcon.tsx', hash: '3478030962395266149' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/EyeFriendlierIcon.tsx', + hash: '12541816809773727614', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/EyeIcon.tsx', hash: '5482205975972830342' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/EyeSlashIcon.tsx', hash: '14239087446261045134' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesAftereffectsIcon.tsx', + hash: '15234785057276085979', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesCodeIcon.tsx', + hash: '14171478505845468304', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesEmptyIcon.tsx', + hash: '1160213663175422320', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesErrorIcon.tsx', + hash: '11320107944649831249', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesFlashIcon.tsx', + hash: '7938923755537745595', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesGenericColoredIcon.tsx', + hash: '10103625455006717209', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FilesGifIcon.tsx', hash: '4457380569030031220' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesHtmlColoredIcon.tsx', + hash: '18194598359668222388', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesIllustratorIcon.tsx', + hash: '9403246467131235895', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FilesImageIcon.tsx', hash: '350148135600628262' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesIndesignIcon.tsx', + hash: '5071194216838704901', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesOneNoteIcon.tsx', + hash: '4576820073937361616', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesPdfColoredIcon.tsx', + hash: '11369050801446260972', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FilesPdfIcon.tsx', hash: '15222484695233621043' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesPhotoshopIcon.tsx', + hash: '8179122537363325570', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesPictureColoredIcon.tsx', + hash: '10282255315995378774', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesSketchIcon.tsx', + hash: '9747966208026329651', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesSoundIcon.tsx', + hash: '13188911702512882018', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesTextColoredIcon.tsx', + hash: '12525606082974032738', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FilesTxtIcon.tsx', hash: '11269954298617713317' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesUploadIcon.tsx', + hash: '9955614448869579325', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/FilesVideoIcon.tsx', + hash: '11855260788037384210', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FilesZipIcon.tsx', hash: '1368690835135742044' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FilterIcon.tsx', hash: '10501478521564293561' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FlagIcon.tsx', hash: '18309094007557461671' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FluidFileIcon.tsx', hash: '4818272200759283627' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FluidIcon.tsx', hash: '10327622295325099017' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FontColorIcon.tsx', hash: '1744684789516328003' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FontSizeIcon.tsx', hash: '38683636174248486' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/FormatIcon.tsx', hash: '1137153821765498269' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/GalleryIcon.tsx', hash: '14131618810771546774' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/GalleryNewIcon.tsx', + hash: '16132451069627052985', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/GalleryNewLargeIcon.tsx', + hash: '12076589306496788140', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/GeofenceArrivesIcon.tsx', + hash: '4186510871357557845', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/GeofenceArrivesOrLeavesIcon.tsx', + hash: '9536982863141470609', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/GeofenceLeavesIcon.tsx', + hash: '15064869923803265193', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/GiphyIcon.tsx', hash: '8256504984347443867' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/GlassesIcon.tsx', hash: '18325767604386777180' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/GlobeIcon.tsx', hash: '9653404386244516448' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/GridIcon.tsx', hash: '1969174477760596194' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/GroupVideoCallGridIcon.tsx', + hash: '1585568485104188562', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/HandIcon.tsx', hash: '16025566820558289292' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/HeadsetIcon.tsx', hash: '16153525151219761413' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/HighlightIcon.tsx', + hash: '15885863172528029399', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/HorizontalRuleIcon.tsx', + hash: '15541103414851377406', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx', + hash: '13059579967633397450', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ImageLibraryIcon.tsx', + hash: '7278742991513259939', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ImageUnavailableIcon.tsx', + hash: '15118908578271240233', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/IndentIcon.tsx', hash: '3154547386263760649' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/InfoIcon.tsx', hash: '7499704622321949637' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ItalicIcon.tsx', hash: '5523477001534623087' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LeaveIcon.tsx', hash: '9574849704589104795' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LightningIcon.tsx', hash: '1795826485660131267' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LikeIcon.tsx', hash: '7063557235739393599' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LinkIcon.tsx', hash: '9504475344765367420' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LinkedInIcon.tsx', hash: '10057424091842677050' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ListIcon.tsx', hash: '1016000382589170647' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LiveIcon.tsx', hash: '5488215966531474142' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LiveOffIcon.tsx', hash: '16575361601864172959' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LocationIcon.tsx', hash: '8780492650668547069' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/LockIcon.tsx', hash: '4581542167815224919' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MarkAsUnreadIcon.tsx', + hash: '8550877769355651073', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MeetingNewIcon.tsx', + hash: '13618933089732729211', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MeetingTimeIcon.tsx', + hash: '3462760770398000331', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MegaphoneIcon.tsx', + hash: '13477115110126199760', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/MentionIcon.tsx', hash: '10671365619704977659' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/MenuIcon.tsx', hash: '15054434194038008137' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MergeCallsIcon.tsx', + hash: '15676851599195598115', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MessageSeenIcon.tsx', + hash: '5696795887902525033', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/MicIcon.tsx', hash: '10360671465174889588' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/MicOffIcon.tsx', hash: '7040357597540731851' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/MicPulseIcon.tsx', hash: '7164242050306518142' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MicPulseOffIcon.tsx', + hash: '7613420464512654680', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MicrophoneDisabledIcon.tsx', + hash: '13505275375360955053', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/MicrosoftStreamIcon.tsx', + hash: '12399236842930770166', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/MoleculeIcon.tsx', hash: '3716543851177200931' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/MoreIcon.tsx', hash: '16908136912455579545' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/NoPresenterIcon.tsx', + hash: '15973919177186017219', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/NotepadPersonIcon.tsx', + hash: '17977894304893167867', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/NotesIcon.tsx', hash: '16759640413579287848' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/NotificationsMutedIcon.tsx', + hash: '5875687961337145635', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/NumberListIcon.tsx', + hash: '1882868947842711159', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/NumberSymbolIcon.tsx', + hash: '16604922701678220517', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/OcrOffIcon.tsx', hash: '7440654068161564006' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/OcrOnIcon.tsx', hash: '12156383114689500379' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/OneDriveIcon.tsx', hash: '16545193094314310937' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/OneNoteColorIcon.tsx', + hash: '6922862962983788010', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/OneNoteIcon.tsx', hash: '2068993209377571963' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/OneNoteMonoIcon.tsx', + hash: '2343842219262811176', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/OpenOutsideIcon.tsx', + hash: '9092134134437612636', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/OptionsIcon.tsx', hash: '18060907312452018719' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/OutdentIcon.tsx', hash: '18265199933622407843' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/OutlookColorIcon.tsx', + hash: '5105630249207417895', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PageFitIcon.tsx', hash: '16900179939925437545' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PanoramaIcon.tsx', hash: '17105386830337265958' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/PanoramaOffIcon.tsx', + hash: '9219110978377875691', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PaperclipIcon.tsx', hash: '4239239177416059508' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ParticipantAddIcon.tsx', + hash: '7735796838205869154', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ParticipantRemoveIcon.tsx', + hash: '11325167042710733689', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PauseIcon.tsx', hash: '13917837797811056510' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/PauseThickIcon.tsx', + hash: '16173831918942597630', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PersonIcon.tsx', hash: '18052122118522564842' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/PhoneArrowIcon.tsx', + hash: '11801537605593537815', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/PhoneClockIcon.tsx', + hash: '6533652891516124895', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PhoneIcon.tsx', hash: '3382340320172925285' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PlayIcon.tsx', hash: '13165464782933234218' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PlugsIcon.tsx', hash: '11855916397961252431' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PollIcon.tsx', hash: '7075189384486642197' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PopupIcon.tsx', hash: '2065406050477623398' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/PowerPointColorIcon.tsx', + hash: '17874363582960773501', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/PowerPointIcon.tsx', + hash: '16137608827629885801', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/PresenceAvailableIcon.tsx', + hash: '9990957245604778132', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/PresenceStrokeIcon.tsx', + hash: '17824949820148605299', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/PresenterIcon.tsx', hash: '1698604231272056754' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/QnaIcon.tsx', hash: '8914778651417679270' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/QuestionCircleIcon.tsx', + hash: '16459415809426073717', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/QuoteIcon.tsx', hash: '4434162689560226434' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/RadioButtonIcon.tsx', + hash: '5290220217869871570', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/RaiseHandColoredIcon.tsx', + hash: '13933793441697151098', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/RaiseHandDisabledIcon.tsx', + hash: '16001206708325701191', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/RaiseHandIcon.tsx', + hash: '10779312542230995138', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ReactionsIcon.tsx', hash: '6999409792852000504' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ReadAloudIcon.tsx', + hash: '11043178403681303772', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/RedbangIcon.tsx', hash: '16705215518281200085' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/RedoIcon.tsx', hash: '14558141566220753769' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/RemoveFormatIcon.tsx', + hash: '18387780868820154748', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ReplyIcon.tsx', hash: '9946554331864851333' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/RetryIcon.tsx', hash: '3854698078201679751' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/RobotIcon.tsx', hash: '2840301155558261180' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/SaveIcon.tsx', hash: '10241612031127787183' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ScreencastIcon.tsx', + hash: '8563482560859964140', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ScreenshareIcon.tsx', + hash: '3541086519960619212', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/SearchIcon.tsx', hash: '16949364921472168680' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/SendIcon.tsx', hash: '16565582621699205586' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/SettingsAudioIcon.tsx', + hash: '8455142933026254255', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/SettingsIcon.tsx', hash: '7451909565077434790' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ShareAltIcon.tsx', hash: '15780648612269482585' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ShareGenericIcon.tsx', + hash: '10938679578550444171', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ShareLocationIcon.tsx', + hash: '3246386558480608952', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ShareToIcon.tsx', hash: '8053903581216909211' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ShieldKeyholeIcon.tsx', + hash: '14317516207879380558', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/Shift24hIcon.tsx', hash: '1576029036422660201' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ShiftActivityIcon.tsx', + hash: '12476450379725202270', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/SignatureIcon.tsx', hash: '6069221599925336926' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/SkypeColorIcon.tsx', + hash: '11964495383061464903', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/SkypeLogoIcon.tsx', + hash: '16297684578405621843', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/SpeakerMuteIcon.tsx', + hash: '10273594272555337023', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/SpeakerPersonIcon.tsx', + hash: '7942492364252775925', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/SpotlightIcon.tsx', + hash: '16387817515735522462', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/SpotlightStopIcon.tsx', + hash: '13011299275377774274', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/StarIcon.tsx', hash: '4739112390899235218' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/StickerIcon.tsx', hash: '9345777383730561198' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/StrikeIcon.tsx', hash: '385334962548583817' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/SubtractIcon.tsx', hash: '8703089811411508672' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/SurveyIcon.tsx', hash: '10594815324984023274' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/SwitchCameraIcon.tsx', + hash: '9644599959041167274', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/SyncIcon.tsx', hash: '3421771998885069070' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TableAddIcon.tsx', hash: '11081295009511690813' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TableDeleteIcon.tsx', + hash: '11267456222392107793', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TableIcon.tsx', hash: '3122419123285994046' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TabsIcon.tsx', hash: '7652898168959998238' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TagIcon.tsx', hash: '17937754368960392939' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TaskListIcon.tsx', hash: '1664418548428026528' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TeamCreateIcon.tsx', hash: '270974819210504825' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TeamsIcon.tsx', hash: '7949896722513612029' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TeamsMonochromeIcon.tsx', + hash: '14992713721668347008', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TenantPersonalIcon.tsx', + hash: '6954339634002974222', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TenantWorkIcon.tsx', + hash: '8507358463993447821', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TextBulletListTreeIcon.tsx', + hash: '3709655949577500987', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ThumbtackIcon.tsx', hash: '2709424317170429241' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/ThumbtackSlashIcon.tsx', + hash: '14540796032563155748', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TiltPanZoomIcon.tsx', + hash: '2371688619901089057', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ToDoListIcon.tsx', hash: '18434469593499531550' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TranscriptIcon.tsx', + hash: '18087935866566701673', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TranslationIcon.tsx', + hash: '11755231279667369736', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TrashCanIcon.tsx', hash: '1686967991801065474' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TriangleDownIcon.tsx', + hash: '3886014635713707142', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TriangleEndIcon.tsx', + hash: '3047775475417718304', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/TriangleUpIcon.tsx', + hash: '17735367172971239835', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TvIcon.tsx', hash: '10048426132113526467' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/TwitterIcon.tsx', hash: '1248041826801414084' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/UnderlineIcon.tsx', + hash: '11124854209253009616', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/UndoIcon.tsx', hash: '15462322573799626280' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/UrgentIcon.tsx', hash: '4744484572233672521' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/UserBlurIcon.tsx', hash: '11390409467504388733' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/UserFriendsIcon.tsx', + hash: '17291066650707229650', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/UserPhoneIcon.tsx', hash: '8901679073035539244' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/VideoCameraEmphasisIcon.tsx', + hash: '6451348667520126362', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/VideoLoadingIcon.tsx', + hash: '353970034285485305', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/VideoPersonSparkleIcon.tsx', + hash: '16532618699662540314', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/VideoProhibitedIcon.tsx', + hash: '6999552347189846573', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/VideomailIcon.tsx', + hash: '12381422681028134585', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/VisioColorIcon.tsx', + hash: '5000929538397412882', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/VisioIcon.tsx', hash: '17345353077477829764' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/VolumeDownIcon.tsx', + hash: '8043599976898455867', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/VolumeIcon.tsx', hash: '4727927519744567505' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/VolumeUpIcon.tsx', hash: '17041260730894082739' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/WandIcon.tsx', hash: '204054122499858724' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/WhiteboardIcon.tsx', + hash: '12517907840141658211', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/WindowMaximizeIcon.tsx', + hash: '6107504875620614835', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/WindowMinimizeIcon.tsx', + hash: '8004388668609149200', + }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/WindowRestoreIcon.tsx', + hash: '5810889239601404730', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/WordColorIcon.tsx', hash: '1919537979474435213' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/WordIcon.tsx', hash: '7577785938802895256' }, + { + file: 'packages/fluentui/react-icons-northstar/src/components/WorkOrSchoolIcon.tsx', + hash: '13892222244017065102', + }, + { file: 'packages/fluentui/react-icons-northstar/src/components/YammerIcon.tsx', hash: '7970035682296632848' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ZoomInIcon.tsx', hash: '1687715738875566323' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ZoomOutIcon.tsx', hash: '11548925219174581327' }, + { file: 'packages/fluentui/react-icons-northstar/src/components/ZoomToFitIcon.tsx', hash: '4663294501472986168' }, + { file: 'packages/fluentui/react-icons-northstar/src/index.ts', hash: '10079002047266926316' }, + { file: 'packages/fluentui/react-icons-northstar/src/utils/createSvgIcon.ts', hash: '8789639293750363611' }, + { file: 'packages/fluentui/react-icons-northstar/src/utils/iconClassNames.ts', hash: '11445529543360569059' }, + { file: 'packages/fluentui/react-icons-northstar/src/utils/types.ts', hash: '15588436095144492247' }, + { + file: 'packages/fluentui/react-icons-northstar/test/components/components-test.tsx', + hash: '16260613535254906323', + }, + { + file: 'packages/fluentui/react-icons-northstar/test/utils/createSvgIcon-test.tsx', + hash: '15904652190730318413', + }, + { file: 'packages/fluentui/react-icons-northstar/tsconfig.json', hash: '15943827806802977490' }, + ], + '@fluentui/local-sandbox': [ + { file: 'packages/fluentui/local-sandbox/.browserslistrc', hash: '600685962376487384' }, + { file: 'packages/fluentui/local-sandbox/README.md', hash: '11541093473991115874' }, + { file: 'packages/fluentui/local-sandbox/babel.config.js', hash: '3569817794842814983' }, + { + file: 'packages/fluentui/local-sandbox/package.json', + hash: '15957460845464361736', + deps: ['@fluentui/react-northstar', '@fluentui/scripts-babel'], + }, + { file: 'packages/fluentui/local-sandbox/project.json', hash: '8676907972640714240' }, + { file: 'packages/fluentui/local-sandbox/public/index.html', hash: '11568775693172797411' }, + { file: 'packages/fluentui/local-sandbox/server.js', hash: '18020281195852225446' }, + { file: 'packages/fluentui/local-sandbox/src/index.tsx', hash: '14096238598856045997' }, + { file: 'packages/fluentui/local-sandbox/tsconfig.json', hash: '12941930694457671903' }, + { file: 'packages/fluentui/local-sandbox/webpack.config.js', hash: '4777308610290967055' }, + ], + '@fluentui/react-builder': [ + { file: 'packages/fluentui/react-builder/.eslintrc.json', hash: '14831957113987152077' }, + { file: 'packages/fluentui/react-builder/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-builder/README.md', hash: '10016986543265046541' }, + { file: 'packages/fluentui/react-builder/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-builder/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-builder/jest.config.js', hash: '10802544048614070297' }, + { + file: 'packages/fluentui/react-builder/package.json', + hash: '9631564501580531266', + deps: [ + '@fluentui/accessibility', + '@fluentui/code-sandbox', + '@fluentui/docs-components', + '@fluentui/react-component-event-listener', + '@fluentui/react-component-ref', + '@fluentui/react-icons-northstar', + '@fluentui/react-northstar', + 'npm:axe-core', + 'npm:immer', + 'npm:lodash', + 'npm:lz-string', + 'npm:react-document-title', + 'npm:react-frame-component', + 'npm:react-is', + 'npm:use-immer', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:@types/react-frame-component', + 'npm:lerna-alias', + 'npm:@babel/standalone', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-builder/project.json', hash: '204489873756000033' }, + { file: 'packages/fluentui/react-builder/src/accessibility/types.ts', hash: '929935902224512126' }, + { + file: 'packages/fluentui/react-builder/src/componentInfo/componentInfoContext.ts', + hash: '12952343612439281311', + }, + { file: 'packages/fluentui/react-builder/src/componentInfo/types.ts', hash: '10871122169681405192' }, + { file: 'packages/fluentui/react-builder/src/components/Anatomy.tsx', hash: '9559709697063752825' }, + { file: 'packages/fluentui/react-builder/src/components/BrowserWindow.tsx', hash: '1305587436928706280' }, + { file: 'packages/fluentui/react-builder/src/components/Builder.tsx', hash: '11101607489312975810' }, + { file: 'packages/fluentui/react-builder/src/components/Canvas.tsx', hash: '8782503380612329753' }, + { file: 'packages/fluentui/react-builder/src/components/CanvasWindow.tsx', hash: '9073503633717464783' }, + { file: 'packages/fluentui/react-builder/src/components/CodeEditor.tsx', hash: '623657732253296337' }, + { file: 'packages/fluentui/react-builder/src/components/ComponentList.tsx', hash: '14364923839728311600' }, + { + file: 'packages/fluentui/react-builder/src/components/ComponentPropertiesPanel.tsx', + hash: '5268511189036678893', + }, + { file: 'packages/fluentui/react-builder/src/components/ComponentTree.tsx', hash: '7846923338340185906' }, + { file: 'packages/fluentui/react-builder/src/components/DebugButtons.tsx', hash: '12509122275448910125' }, + { file: 'packages/fluentui/react-builder/src/components/DebugFrame.tsx', hash: '10043329517725525136' }, + { file: 'packages/fluentui/react-builder/src/components/Description.tsx', hash: '9567475832531969499' }, + { file: 'packages/fluentui/react-builder/src/components/Designer.tsx', hash: '13036707724185814545' }, + { file: 'packages/fluentui/react-builder/src/components/DropSelector.tsx', hash: '3542664213591641212' }, + { file: 'packages/fluentui/react-builder/src/components/ErrorBoundary.tsx', hash: '11122869423617163119' }, + { file: 'packages/fluentui/react-builder/src/components/ErrorPanel.tsx', hash: '9164703090634963658' }, + { file: 'packages/fluentui/react-builder/src/components/FullScreenPreview.tsx', hash: '16011726969178031086' }, + { file: 'packages/fluentui/react-builder/src/components/GetShareableLink.tsx', hash: '15433656223699742764' }, + { file: 'packages/fluentui/react-builder/src/components/InsertComponent.tsx', hash: '9906566956658338491' }, + { file: 'packages/fluentui/react-builder/src/components/Knobs.tsx', hash: '2567043305485912803' }, + { file: 'packages/fluentui/react-builder/src/components/MultiTypeKnob.tsx', hash: '2930992216485547340' }, + { file: 'packages/fluentui/react-builder/src/components/NavBarItem.tsx', hash: '6913624690736282433' }, + { file: 'packages/fluentui/react-builder/src/components/NavigationPanel.tsx', hash: '9800200967616636940' }, + { file: 'packages/fluentui/react-builder/src/components/ReaderNarration.tsx', hash: '16220487698280846067' }, + { file: 'packages/fluentui/react-builder/src/components/Toolbar.tsx', hash: '543702787129451118' }, + { + file: 'packages/fluentui/react-builder/src/components/tabPanels/AccessibilityTabPanel.tsx', + hash: '13590036990892215305', + }, + { + file: 'packages/fluentui/react-builder/src/components/tabPanels/AddTabPanel.tsx', + hash: '11042719876676903669', + }, + { + file: 'packages/fluentui/react-builder/src/components/tabPanels/NavigationTabPanel.tsx', + hash: '9858807996756415860', + }, + { file: 'packages/fluentui/react-builder/src/components/types.ts', hash: '1832743028101149231' }, + { file: 'packages/fluentui/react-builder/src/config.tsx', hash: '5814245327475203313' }, + { file: 'packages/fluentui/react-builder/src/hooks/index.ts', hash: '11226509319231205349' }, + { file: 'packages/fluentui/react-builder/src/hooks/runAxe.ts', hash: '8860485983799780375' }, + { file: 'packages/fluentui/react-builder/src/hooks/useMode.ts', hash: '17910004894933185109' }, + { file: 'packages/fluentui/react-builder/src/index.ts', hash: '7302446320173355624' }, + { file: 'packages/fluentui/react-builder/src/narration/NarrationComputer.tsx', hash: '3889128191066894050' }, + { file: 'packages/fluentui/react-builder/src/narration/SRNC-Definitions.tsx', hash: '8320166329157302802' }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-ElementStates-Win_JAWS.tsx', + hash: '6332595224770733718', + }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-ElementTypes-Win_JAWS.tsx', + hash: '7650259396047917910', + }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-ElementTypes-Win_JAWS_VPC.tsx', + hash: '1312765730158700516', + }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-LandmarksAndGroups-Win_JAWS.tsx', + hash: '4029867906059143388', + }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-LandmarksAndGroups-Win_JAWS_VPC.tsx', + hash: '2972313100645343181', + }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-ReadingOrder-Win_JAWS.tsx', + hash: '11595690551124846854', + }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-ReadingOrder-Win_JAWS_VPC.tsx', + hash: '15637529703244180336', + }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-StateRules-Win_JAWS.tsx', + hash: '15839976440027101995', + }, + { + file: 'packages/fluentui/react-builder/src/narration/SRNC-StateRules-Win_JAWS_VPC.tsx', + hash: '16696028047627629469', + }, + { file: 'packages/fluentui/react-builder/src/narration/SRNC-Usages-Win_JAWS.tsx', hash: '3454242724591971760' }, + { file: 'packages/fluentui/react-builder/src/state/index.tsx', hash: '2685696966902878094' }, + { file: 'packages/fluentui/react-builder/src/state/state.ts', hash: '14164046665851924982' }, + { file: 'packages/fluentui/react-builder/src/state/utils.ts', hash: '2393629447381052912' }, + { file: 'packages/fluentui/react-builder/src/utils/codeToTree.ts', hash: '13828598921945434473' }, + { file: 'packages/fluentui/react-builder/src/utils/getUUID.ts', hash: '10027271916887760783' }, + { file: 'packages/fluentui/react-builder/src/utils/treeStore.ts', hash: '3825005232368357598' }, + { file: 'packages/fluentui/react-builder/test/config-test.tsx', hash: '2603837748451585594' }, + { file: 'packages/fluentui/react-builder/test/utils/treeStore-test.ts', hash: '7324853206959097484' }, + { file: 'packages/fluentui/react-builder/todo.md', hash: '8222318070280973140' }, + { file: 'packages/fluentui/react-builder/tsconfig.json', hash: '4419506872376571172' }, + ], + '@fluentui/e2e': [ + { file: 'packages/fluentui/e2e/.eslintrc.json', hash: '4582290292281873136' }, + { file: 'packages/fluentui/e2e/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/e2e/README.md', hash: '7359165508010786092' }, + { file: 'packages/fluentui/e2e/babel.config.js', hash: '7654395597360391156' }, + { file: 'packages/fluentui/e2e/cypress/support/commands.js', hash: '4346932210195998935' }, + { file: 'packages/fluentui/e2e/cypress/support/e2e.js', hash: '8958390892426780845' }, + { file: 'packages/fluentui/e2e/cypress/support/index.d.ts', hash: '1050349724913102223' }, + { file: 'packages/fluentui/e2e/cypress.config.ts', hash: '10650622636735033301' }, + { file: 'packages/fluentui/e2e/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/e2e/package.json', + hash: '12477681538209041201', + deps: [ + '@fluentui/accessibility', + '@fluentui/react', + '@fluentui/react-icons-northstar', + '@fluentui/react-northstar', + '@fluentui/react-northstar-prototypes', + 'npm:@types/react-router-dom', + 'npm:lerna-alias', + 'npm:lodash', + 'npm:react-router-dom', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + ], + }, + { file: 'packages/fluentui/e2e/project.json', hash: '16913508845340459099' }, + { file: 'packages/fluentui/e2e/server/E2EExample.tsx', hash: '3499014286167000988' }, + { file: 'packages/fluentui/e2e/server/app.tsx', hash: '16202489186045223673' }, + { file: 'packages/fluentui/e2e/server/index.html', hash: '15258269720062780830' }, + { file: 'packages/fluentui/e2e/server/routes.ts', hash: '11057375900294827994' }, + { file: 'packages/fluentui/e2e/tests/carouselClickableContent-example.tsx', hash: '4743069259029583882' }, + { file: 'packages/fluentui/e2e/tests/carouselClickableContent.spec.ts', hash: '16237255077237516656' }, + { file: 'packages/fluentui/e2e/tests/chatMessageActionMenu-example.tsx', hash: '5076963271459573150' }, + { file: 'packages/fluentui/e2e/tests/chatMessageActionMenu.spec.ts', hash: '5324476327709994437' }, + { file: 'packages/fluentui/e2e/tests/datepicker-example.tsx', hash: '1803629627979009758' }, + { file: 'packages/fluentui/e2e/tests/datepicker.spec.ts', hash: '5328620499026462603' }, + { + file: 'packages/fluentui/e2e/tests/datepickerWithControlledSelectedDate-example.tsx', + hash: '17232189297346500144', + }, + { file: 'packages/fluentui/e2e/tests/datepickerWithControlledSelectedDate.spec.ts', hash: '9972000812362213438' }, + { file: 'packages/fluentui/e2e/tests/dialog-example.tsx', hash: '14670395535679878228' }, + { file: 'packages/fluentui/e2e/tests/dialog.spec.ts', hash: '9080139584052903217' }, + { file: 'packages/fluentui/e2e/tests/dialogInDialog-example.tsx', hash: '5368077115082155956' }, + { file: 'packages/fluentui/e2e/tests/dialogInDialog.spec.ts', hash: '9403986057790407239' }, + { file: 'packages/fluentui/e2e/tests/dialogInDialogWithDropdown-example.tsx', hash: '10611038361335342361' }, + { file: 'packages/fluentui/e2e/tests/dialogInDialogWithDropdown.spec.ts', hash: '6276305052387579257' }, + { file: 'packages/fluentui/e2e/tests/dialogInPopup-example.tsx', hash: '7674716831651329345' }, + { file: 'packages/fluentui/e2e/tests/dialogInPopup.spec.ts', hash: '14897258850010389359' }, + { file: 'packages/fluentui/e2e/tests/dialogPreventScroll-example.tsx', hash: '5559084864562935041' }, + { file: 'packages/fluentui/e2e/tests/dialogPreventScroll.spec.ts', hash: '9250859085534201583' }, + { file: 'packages/fluentui/e2e/tests/dialogWithDropdown-example.tsx', hash: '9967621738597251618' }, + { file: 'packages/fluentui/e2e/tests/dialogWithDropdown.spec.ts', hash: '10460346809481457060' }, + { file: 'packages/fluentui/e2e/tests/dropdown-example.tsx', hash: '7085571512538860924' }, + { file: 'packages/fluentui/e2e/tests/dropdown.spec.ts', hash: '12180675537760796473' }, + { file: 'packages/fluentui/e2e/tests/dropdownMoveFocusOnTab-example.tsx', hash: '1590492383482503996' }, + { file: 'packages/fluentui/e2e/tests/dropdownMoveFocusOnTab.spec.ts', hash: '16366076377253442699' }, + { file: 'packages/fluentui/e2e/tests/dropdownSearch-example.tsx', hash: '2243581698923060983' }, + { file: 'packages/fluentui/e2e/tests/dropdownSearch.spec.ts', hash: '8222488631505443553' }, + { file: 'packages/fluentui/e2e/tests/fabricLayerInPopup-example.tsx', hash: '5654558685761775986' }, + { file: 'packages/fluentui/e2e/tests/fabricLayerInPopup.spec.ts', hash: '13704094458215714046' }, + { file: 'packages/fluentui/e2e/tests/menuDismissOnItemClick-example.tsx', hash: '14437376863888489746' }, + { file: 'packages/fluentui/e2e/tests/menuDismissOnItemClick.spec.ts', hash: '9686476550271301697' }, + { file: 'packages/fluentui/e2e/tests/menuDismissScroll-example.tsx', hash: '13874781962939393061' }, + { file: 'packages/fluentui/e2e/tests/menuDismissScroll.spec.ts', hash: '14223321295916642370' }, + { file: 'packages/fluentui/e2e/tests/popupClickHandling-example.tsx', hash: '13213920161361176518' }, + { file: 'packages/fluentui/e2e/tests/popupClickHandling.spec.ts', hash: '2885575729341377987' }, + { file: 'packages/fluentui/e2e/tests/popupDismissScroll-example.tsx', hash: '7328442500399212185' }, + { file: 'packages/fluentui/e2e/tests/popupDismissScroll.spec.ts', hash: '5254233567644407063' }, + { file: 'packages/fluentui/e2e/tests/popupEscHandling-example.tsx', hash: '6592433637981138545' }, + { file: 'packages/fluentui/e2e/tests/popupEscHandling.spec.ts', hash: '1420963620788681365' }, + { file: 'packages/fluentui/e2e/tests/popupIframeDismiss-example.tsx', hash: '16346724390930618534' }, + { file: 'packages/fluentui/e2e/tests/popupIframeDismiss.spec.ts', hash: '6795602607780227830' }, + { file: 'packages/fluentui/e2e/tests/popupIframeInContent-example.tsx', hash: '4283302905232813226' }, + { file: 'packages/fluentui/e2e/tests/popupIframeInContent.spec.ts', hash: '17137734889454790279' }, + { file: 'packages/fluentui/e2e/tests/popupInMenu-example.tsx', hash: '16013900017767357976' }, + { file: 'packages/fluentui/e2e/tests/popupInMenu.spec.ts', hash: '7044470440674261311' }, + { file: 'packages/fluentui/e2e/tests/popupInPopup-example.tsx', hash: '9668277406755016860' }, + { file: 'packages/fluentui/e2e/tests/popupInPopup.spec.ts', hash: '1201516165930426055' }, + { file: 'packages/fluentui/e2e/tests/popupInSubmenuInToolbarMenu-example.tsx', hash: '15332631901223067083' }, + { file: 'packages/fluentui/e2e/tests/popupInSubmenuInToolbarMenu.spec.ts', hash: '1637590511583110830' }, + { file: 'packages/fluentui/e2e/tests/popupInToolbarMenu-example.tsx', hash: '17370124098474055427' }, + { file: 'packages/fluentui/e2e/tests/popupInToolbarMenu.spec.ts', hash: '17677000527941342638' }, + { file: 'packages/fluentui/e2e/tests/popupMouseDownSelecting-example.tsx', hash: '3023855540168575913' }, + { file: 'packages/fluentui/e2e/tests/popupMouseDownSelecting.spec.ts', hash: '7209143637156518437' }, + { file: 'packages/fluentui/e2e/tests/popupWithCloseInContent-example.tsx', hash: '138822329630966902' }, + { file: 'packages/fluentui/e2e/tests/popupWithCloseInContent.spec.ts', hash: '17534692300788679823' }, + { file: 'packages/fluentui/e2e/tests/popupWithTooltipTrigger-example.tsx', hash: '11807861820707471620' }, + { file: 'packages/fluentui/e2e/tests/popupWithTooltipTrigger.spec.ts', hash: '8697303816170122801' }, + { file: 'packages/fluentui/e2e/tests/popupWithoutTrigger-example.tsx', hash: '11139766354954965358' }, + { file: 'packages/fluentui/e2e/tests/popupWithoutTrigger.spec.ts', hash: '13246623807056887583' }, + { file: 'packages/fluentui/e2e/tests/submenuInToolbarMenu-example.tsx', hash: '575582352463613891' }, + { file: 'packages/fluentui/e2e/tests/submenuInToolbarMenu.spec.ts', hash: '1027166173685153422' }, + { file: 'packages/fluentui/e2e/tests/tableNavigable-example.tsx', hash: '14905569497518850229' }, + { file: 'packages/fluentui/e2e/tests/tableNavigable.spec.ts', hash: '12594198720782866612' }, + { file: 'packages/fluentui/e2e/tests/toolbarMenu-example.tsx', hash: '13362869464990240922' }, + { file: 'packages/fluentui/e2e/tests/toolbarMenu.spec.ts', hash: '11350393418665355075' }, + { file: 'packages/fluentui/e2e/tests/toolbarMenuOverflow-example.tsx', hash: '10545456953613671616' }, + { file: 'packages/fluentui/e2e/tests/toolbarMenuOverflow.spec.ts', hash: '7996186393233017896' }, + { file: 'packages/fluentui/e2e/tests/toolbarMenuOverflowWrapped-example.tsx', hash: '14754152518540080632' }, + { file: 'packages/fluentui/e2e/tests/toolbarMenuOverflowWrapped.spec.ts', hash: '706311342140479878' }, + { file: 'packages/fluentui/e2e/tests/toolbarWithPopupTooltip-example.tsx', hash: '2005065269202164843' }, + { file: 'packages/fluentui/e2e/tests/toolbarWithPopupTooltip.spec.ts', hash: '5925650631025544121' }, + { file: 'packages/fluentui/e2e/tests/tooltipDismissOnHoverContent-example.tsx', hash: '9489541278644546841' }, + { file: 'packages/fluentui/e2e/tests/tooltipDismissOnHoverContent.ts', hash: '9737872412877402347' }, + { file: 'packages/fluentui/e2e/tests/tooltipUnhandledProps-example.tsx', hash: '17958332038007928519' }, + { file: 'packages/fluentui/e2e/tests/tooltipUnhandledProps.spec.ts', hash: '5538405689313863866' }, + { file: 'packages/fluentui/e2e/tests/treeKeyboardNavigation-example.tsx', hash: '6918808607628651153' }, + { file: 'packages/fluentui/e2e/tests/treeKeyboardNavigation.spec.ts', hash: '14204769954003254618' }, + { + file: 'packages/fluentui/e2e/tests/treeVirtualizedKeyboardNavigation-example.tsx', + hash: '10207361172658324571', + }, + { file: 'packages/fluentui/e2e/tests/treeVirtualizedKeyboardNavigation.spec.ts', hash: '38611835611465959' }, + { file: 'packages/fluentui/e2e/tsconfig.json', hash: '10977915997837140135' }, + ], + '@fluentui/ssr-tests': [ + { file: 'apps/ssr-tests/CHANGELOG.json', hash: '1972360179664073596' }, + { file: 'apps/ssr-tests/CHANGELOG.md', hash: '10968265984611611699' }, + { file: 'apps/ssr-tests/just.config.ts', hash: '994669034758141798' }, + { + file: 'apps/ssr-tests/package.json', + hash: '7229768634367163191', + deps: [ + 'npm:tslib', + '@fluentui/react', + 'npm:@microsoft/load-themed-styles', + 'npm:@types/mocha', + '@fluentui/public-docsite-resources', + 'npm:mocha', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'apps/ssr-tests/project.json', hash: '1374228985476810396' }, + { file: 'apps/ssr-tests/test/test.js', hash: '13862241030754584160' }, + { file: 'apps/ssr-tests/webpack.config.js', hash: '4897565737584022724' }, + ], + '@fluentui/foundation-legacy': [ + { file: 'packages/foundation-legacy/.eslintrc.json', hash: '7788135779233596637' }, + { file: 'packages/foundation-legacy/.npmignore', hash: '47056201363133096' }, + { file: 'packages/foundation-legacy/CHANGELOG.json', hash: '11298518728473754760' }, + { file: 'packages/foundation-legacy/CHANGELOG.md', hash: '16846161063283363485' }, + { file: 'packages/foundation-legacy/LICENSE', hash: '13685109437677902912' }, + { file: 'packages/foundation-legacy/README.md', hash: '15150879100026194024' }, + { file: 'packages/foundation-legacy/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/foundation-legacy/config/tests.js', hash: '14311629952979925442' }, + { file: 'packages/foundation-legacy/etc/foundation-legacy.api.md', hash: '14544843647228988854' }, + { file: 'packages/foundation-legacy/jest.config.js', hash: '8193037916930093299' }, + { file: 'packages/foundation-legacy/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/foundation-legacy/package.json', + hash: '13399846164496288089', + deps: [ + '@fluentui/merge-styles', + '@fluentui/set-version', + '@fluentui/style-utilities', + '@fluentui/utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/jest-serializer-merge-styles', + 'npm:react-hooks-testing-library', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/foundation-legacy/project.json', hash: '11276530119421788355' }, + { file: 'packages/foundation-legacy/src/IComponent.ts', hash: '12873869061209405696' }, + { file: 'packages/foundation-legacy/src/IHTMLSlots.ts', hash: '7155527235082397630' }, + { file: 'packages/foundation-legacy/src/ISlots.ts', hash: '14464439662037354785' }, + { file: 'packages/foundation-legacy/src/ThemeProvider.tsx', hash: '9773670166953555244' }, + { file: 'packages/foundation-legacy/src/__snapshots__/slots.test.tsx.snap', hash: '2934915321740022132' }, + { file: 'packages/foundation-legacy/src/createComponent.test.tsx', hash: '15652826177782635176' }, + { file: 'packages/foundation-legacy/src/createComponent.tsx', hash: '8094359274865822450' }, + { file: 'packages/foundation-legacy/src/hooks/controlled.test.tsx', hash: '12333211994600071919' }, + { file: 'packages/foundation-legacy/src/hooks/controlled.ts', hash: '3122361485496884833' }, + { file: 'packages/foundation-legacy/src/hooks/index.ts', hash: '9409545618871287298' }, + { file: 'packages/foundation-legacy/src/index.ts', hash: '12930357685631545172' }, + { file: 'packages/foundation-legacy/src/next/IComponent.ts', hash: '8757900071418225654' }, + { file: 'packages/foundation-legacy/src/next/ISlots.ts', hash: '4759905666795430527' }, + { file: 'packages/foundation-legacy/src/next/composed.test.tsx', hash: '479587016516331393' }, + { file: 'packages/foundation-legacy/src/next/composed.tsx', hash: '10226147199765955542' }, + { file: 'packages/foundation-legacy/src/slots.test.tsx', hash: '7249480130106203402' }, + { file: 'packages/foundation-legacy/src/slots.tsx', hash: '7288443331153031485' }, + { file: 'packages/foundation-legacy/src/utilities.ts', hash: '14062945912928854747' }, + { file: 'packages/foundation-legacy/src/version.ts', hash: '14340592035898007548' }, + { file: 'packages/foundation-legacy/tsconfig.json', hash: '3335700563706807422' }, + { file: 'packages/foundation-legacy/webpack.config.js', hash: '9200631243869629539' }, + ], + '@fluentui/react-select': [ + { file: 'packages/react-components/react-select/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-select/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-select/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-select/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-select/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-select/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-select/CHANGELOG.json', hash: '17220450743865662035' }, + { file: 'packages/react-components/react-select/CHANGELOG.md', hash: '446421807821873597' }, + { file: 'packages/react-components/react-select/LICENSE', hash: '17145807327024823464' }, + { file: 'packages/react-components/react-select/README.md', hash: '10145820909930644942' }, + { file: 'packages/react-components/react-select/bundle-size/Select.fixture.js', hash: '17495459788921235447' }, + { file: 'packages/react-components/react-select/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-select/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-select/docs/Spec.md', hash: '5722250028980261869' }, + { file: 'packages/react-components/react-select/etc/react-select.api.md', hash: '3809105998633819686' }, + { file: 'packages/react-components/react-select/jest.config.js', hash: '11826049106570097430' }, + { file: 'packages/react-components/react-select/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-select/package.json', + hash: '12286932727227470358', + deps: [ + '@fluentui/react-field', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-shared-contexts', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-select/project.json', hash: '15892150223184549744' }, + { file: 'packages/react-components/react-select/src/Select.ts', hash: '13526045668201639069' }, + { + file: 'packages/react-components/react-select/src/components/Select/Select.test.tsx', + hash: '932831788378200454', + }, + { file: 'packages/react-components/react-select/src/components/Select/Select.tsx', hash: '7280199275130289075' }, + { + file: 'packages/react-components/react-select/src/components/Select/Select.types.ts', + hash: '16980961641113520849', + }, + { + file: 'packages/react-components/react-select/src/components/Select/__snapshots__/Select.test.tsx.snap', + hash: '13921980301158282062', + }, + { file: 'packages/react-components/react-select/src/components/Select/index.ts', hash: '4417052697791773506' }, + { + file: 'packages/react-components/react-select/src/components/Select/renderSelect.tsx', + hash: '13711059602504439985', + }, + { + file: 'packages/react-components/react-select/src/components/Select/useSelect.tsx', + hash: '11162270922758090163', + }, + { + file: 'packages/react-components/react-select/src/components/Select/useSelectStyles.styles.ts', + hash: '16121165471199880480', + }, + { file: 'packages/react-components/react-select/src/index.ts', hash: '9960025239165988400' }, + { file: 'packages/react-components/react-select/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-select/stories/Select/SelectAppearance.stories.tsx', + hash: '17338091775052657526', + }, + { + file: 'packages/react-components/react-select/stories/Select/SelectBestPractices.md', + hash: '3732417789999507960', + }, + { + file: 'packages/react-components/react-select/stories/Select/SelectControlled.stories.tsx', + hash: '18142795900071240816', + }, + { + file: 'packages/react-components/react-select/stories/Select/SelectDefault.stories.tsx', + hash: '12697183069620726717', + }, + { + file: 'packages/react-components/react-select/stories/Select/SelectDescription.md', + hash: '10480618255513286510', + }, + { + file: 'packages/react-components/react-select/stories/Select/SelectDisabled.stories.tsx', + hash: '15695391597017870010', + }, + { + file: 'packages/react-components/react-select/stories/Select/SelectInitialValue.stories.tsx', + hash: '15522135501908703756', + }, + { + file: 'packages/react-components/react-select/stories/Select/SelectSize.stories.tsx', + hash: '4277834054578622137', + }, + { file: 'packages/react-components/react-select/stories/Select/index.stories.tsx', hash: '10137669799075046942' }, + { file: 'packages/react-components/react-select/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-select/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-select/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/scripts-api-extractor': [ + { file: 'scripts/api-extractor/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/api-extractor/api-extractor.common.json', hash: '2748281453618585856' }, + { file: 'scripts/api-extractor/api-extractor.common.v-next.json', hash: '13189487548181031930' }, + { file: 'scripts/api-extractor/jest.config.js', hash: '9107139503166004092' }, + { file: 'scripts/api-extractor/package.json', hash: '6434448276705142187' }, + { file: 'scripts/api-extractor/project.json', hash: '10051297786450075718' }, + { file: 'scripts/api-extractor/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/api-extractor/tsconfig.lib.json', hash: '3753806828268919288' }, + { file: 'scripts/api-extractor/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/set-version': [ + { file: 'packages/set-version/.eslintrc.json', hash: '5040365066206164447' }, + { file: 'packages/set-version/.npmignore', hash: '47056201363133096' }, + { file: 'packages/set-version/CHANGELOG.json', hash: '4884908875942182344' }, + { file: 'packages/set-version/CHANGELOG.md', hash: '14468298258455261263' }, + { file: 'packages/set-version/LICENSE', hash: '17405240926357137557' }, + { file: 'packages/set-version/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/set-version/package.json', + hash: '14326386381338996167', + deps: ['npm:tslib', '@fluentui/eslint-plugin', '@fluentui/scripts-tasks'], + }, + { file: 'packages/set-version/project.json', hash: '17714374313672910233' }, + { file: 'packages/set-version/src/index.ts', hash: '2116276611683583139' }, + { file: 'packages/set-version/src/serVersion.test.ts', hash: '5429814530530758929' }, + { file: 'packages/set-version/src/setVersion.ts', hash: '4028316957040317271' }, + { file: 'packages/set-version/tsconfig.json', hash: '7584822408996227960' }, + ], + '@fluentui/react-portal': [ + { file: 'packages/react-components/react-portal/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-portal/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-portal/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-portal/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-portal/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-portal/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-portal/CHANGELOG.json', hash: '6591119815101217949' }, + { file: 'packages/react-components/react-portal/CHANGELOG.md', hash: '3274066332542757743' }, + { file: 'packages/react-components/react-portal/LICENSE', hash: '5436713769968226347' }, + { file: 'packages/react-components/react-portal/README.md', hash: '8273149864735662535' }, + { file: 'packages/react-components/react-portal/bundle-size/Portal.fixture.js', hash: '16985937506839637290' }, + { file: 'packages/react-components/react-portal/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-portal/config/tests.js', hash: '14010006175392234982' }, + { file: 'packages/react-components/react-portal/docs/Spec.md', hash: '6366170172262274459' }, + { file: 'packages/react-components/react-portal/etc/react-portal.api.md', hash: '10658581800869826363' }, + { file: 'packages/react-components/react-portal/jest.config.js', hash: '9910520644242674457' }, + { file: 'packages/react-components/react-portal/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-portal/package.json', + hash: '11677510734866859682', + deps: [ + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + 'npm:use-disposable', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-portal/project.json', hash: '14457468981824115850' }, + { file: 'packages/react-components/react-portal/src/Portal.ts', hash: '7845203508181959455' }, + { + file: 'packages/react-components/react-portal/src/components/Portal/Portal-node.test.tsx', + hash: '9136445508182774156', + }, + { + file: 'packages/react-components/react-portal/src/components/Portal/Portal.test.tsx', + hash: '17392842799512127596', + }, + { file: 'packages/react-components/react-portal/src/components/Portal/Portal.tsx', hash: '11011410844879135032' }, + { + file: 'packages/react-components/react-portal/src/components/Portal/Portal.types.ts', + hash: '11324991944097355967', + }, + { + file: 'packages/react-components/react-portal/src/components/Portal/__snapshots__/Portal.test.tsx.snap', + hash: '9062428348270700463', + }, + { file: 'packages/react-components/react-portal/src/components/Portal/index.ts', hash: '16697091254987862602' }, + { + file: 'packages/react-components/react-portal/src/components/Portal/renderPortal.tsx', + hash: '8968293240803067495', + }, + { + file: 'packages/react-components/react-portal/src/components/Portal/usePortal.ts', + hash: '16841979113281129113', + }, + { + file: 'packages/react-components/react-portal/src/components/Portal/usePortalMountNode.test.tsx', + hash: '11910220960810678723', + }, + { + file: 'packages/react-components/react-portal/src/components/Portal/usePortalMountNode.ts', + hash: '2336349602905310883', + }, + { + file: 'packages/react-components/react-portal/src/components/Portal/usePortalMountNodeStyles.styles.ts', + hash: '10679524190507651237', + }, + { file: 'packages/react-components/react-portal/src/index.ts', hash: '8374907855495313520' }, + { + file: 'packages/react-components/react-portal/src/utils/toMountNodeProps.test.ts', + hash: '6575869444091968759', + }, + { file: 'packages/react-components/react-portal/src/utils/toMountNodeProps.ts', hash: '17503404067390627007' }, + { + file: 'packages/react-components/react-portal/stories/Portal/PortalDefault.stories.tsx', + hash: '840727895949819606', + }, + { + file: 'packages/react-components/react-portal/stories/Portal/PortalDescription.md', + hash: '3241420095240977648', + }, + { file: 'packages/react-components/react-portal/stories/Portal/index.stories.tsx', hash: '17009993612510309048' }, + { + file: 'packages/react-components/react-portal/stories/toMountNodeProps/Default.stories.tsx', + hash: '18309127042547897604', + }, + { + file: 'packages/react-components/react-portal/stories/toMountNodeProps/index.stories.tsx', + hash: '15428942433571628197', + }, + { + file: 'packages/react-components/react-portal/stories/toMountNodeProps/toMountNodePropsDescription.md', + hash: '11465112477349060741', + }, + { file: 'packages/react-components/react-portal/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-portal/tsconfig.lib.json', hash: '2330431448937249608' }, + { file: 'packages/react-components/react-portal/tsconfig.spec.json', hash: '5989250612042187831' }, + ], + '@fluentui/scripts-ts-node': [ + { file: 'scripts/ts-node/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/ts-node/jest.config.js', hash: '17845001107193385709' }, + { file: 'scripts/ts-node/package.json', hash: '12828502435875523151' }, + { file: 'scripts/ts-node/project.json', hash: '2171572583854711182' }, + { file: 'scripts/ts-node/register.js', hash: '7326554617006767970' }, + { file: 'scripts/ts-node/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/ts-node/tsconfig.lib.json', hash: '3753806828268919288' }, + { file: 'scripts/ts-node/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-infobutton': [ + { file: 'packages/react-components/react-infobutton/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-infobutton/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-infobutton/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-infobutton/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-infobutton/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-infobutton/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-infobutton/CHANGELOG.json', hash: '15238147816511200513' }, + { file: 'packages/react-components/react-infobutton/CHANGELOG.md', hash: '13746918152090924083' }, + { file: 'packages/react-components/react-infobutton/LICENSE', hash: '17633016642573289784' }, + { file: 'packages/react-components/react-infobutton/README.md', hash: '6386604485399176422' }, + { + file: 'packages/react-components/react-infobutton/bundle-size/InfoButton.fixture.js', + hash: '759644844444210261', + }, + { + file: 'packages/react-components/react-infobutton/bundle-size/InfoLabel.fixture.js', + hash: '8561557699756231013', + }, + { file: 'packages/react-components/react-infobutton/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-infobutton/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-infobutton/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-infobutton/docs/Spec.md', hash: '12415704727702896077' }, + { file: 'packages/react-components/react-infobutton/etc/images/anatomy.png', hash: '13995183815818235250' }, + { file: 'packages/react-components/react-infobutton/etc/react-infobutton.api.md', hash: '7166180765339852355' }, + { file: 'packages/react-components/react-infobutton/jest.config.js', hash: '4511360346170781976' }, + { file: 'packages/react-components/react-infobutton/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-infobutton/package.json', + hash: '10722911638598738598', + deps: [ + 'npm:@fluentui/react-icons', + '@fluentui/react-label', + '@fluentui/react-popover', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-infobutton/project.json', hash: '10924230166498856608' }, + { file: 'packages/react-components/react-infobutton/src/InfoButton.ts', hash: '6736681049567293007' }, + { file: 'packages/react-components/react-infobutton/src/InfoLabel.ts', hash: '10491035089563452821' }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoButton/DefaultInfoButtonIcons.tsx', + hash: '2356653625358885392', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.test.tsx', + hash: '8713205559683010958', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.tsx', + hash: '9270853198934657958', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.types.ts', + hash: '12891027815312333985', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoButton/index.ts', + hash: '7451520123696318723', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoButton/renderInfoButton.tsx', + hash: '2954075369945934214', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoButton/useInfoButton.tsx', + hash: '3914295003966763922', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoButton/useInfoButtonStyles.styles.ts', + hash: '12015306674106208473', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.cy.tsx', + hash: '14532858853239359506', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.test.tsx', + hash: '1718709338479656088', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.tsx', + hash: '13094067001932444234', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.types.ts', + hash: '8128906299140167967', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoLabel/index.ts', + hash: '1040167975180781477', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoLabel/renderInfoLabel.tsx', + hash: '12063702469681501912', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts', + hash: '10543420685351752865', + }, + { + file: 'packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabelStyles.styles.ts', + hash: '14482136840318409233', + }, + { file: 'packages/react-components/react-infobutton/src/index.ts', hash: '1780398361093080958' }, + { file: 'packages/react-components/react-infobutton/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { file: 'packages/react-components/react-infobutton/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-infobutton/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-infobutton/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-infobutton/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/scripts-bundle-size-auditor': [ + { file: 'scripts/bundle-size-auditor/README.md', hash: '7308971503050426778' }, + { + file: 'scripts/bundle-size-auditor/__fixtures__/proj-one/bundle-size-auditor.config.js', + hash: '7435363296352118388', + }, + { file: 'scripts/bundle-size-auditor/__fixtures__/proj-one/lib-dist/hello.js', hash: '3025962609255239884' }, + { file: 'scripts/bundle-size-auditor/__fixtures__/proj-one/lib-dist/index.js', hash: '9471299597521760475' }, + { file: 'scripts/bundle-size-auditor/__fixtures__/proj-one/package.json', hash: '9762295079143560402' }, + { file: 'scripts/bundle-size-auditor/bin/bundle-size-auditor.js', hash: '4162646536432802739' }, + { file: 'scripts/bundle-size-auditor/jest.config.js', hash: '8276958337121510907' }, + { file: 'scripts/bundle-size-auditor/package.json', hash: '13938274440693939530' }, + { file: 'scripts/bundle-size-auditor/project.json', hash: '5867454910317339913' }, + { file: 'scripts/bundle-size-auditor/src/bundle-size-collect.ts', hash: '6441554579105820293' }, + { file: 'scripts/bundle-size-auditor/src/cli.spec.ts', hash: '4157129729123491570' }, + { file: 'scripts/bundle-size-auditor/src/cli.ts', hash: '8957246201282732872' }, + { file: 'scripts/bundle-size-auditor/src/index.dev.js', hash: '9260712020448791085' }, + { file: 'scripts/bundle-size-auditor/src/index.ts', hash: '12839598562953646843' }, + { file: 'scripts/bundle-size-auditor/src/merge-bundlesizes.ts', hash: '6240773769950594795' }, + { file: 'scripts/bundle-size-auditor/src/types.ts', hash: '8251796727224552861' }, + { file: 'scripts/bundle-size-auditor/src/typings.d.ts', hash: '14694322115759458648' }, + { file: 'scripts/bundle-size-auditor/src/utils.ts', hash: '9195238259767401168' }, + { file: 'scripts/bundle-size-auditor/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/bundle-size-auditor/tsconfig.lib.json', hash: '1724195388906143280' }, + { file: 'scripts/bundle-size-auditor/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/utilities': [ + { file: 'packages/utilities/.eslintrc.json', hash: '2580200865767780480' }, + { file: 'packages/utilities/CHANGELOG.json', hash: '6335607398106611430' }, + { file: 'packages/utilities/CHANGELOG.md', hash: '12816284100488688515' }, + { file: 'packages/utilities/LICENSE', hash: '2164827662511184675' }, + { file: 'packages/utilities/README.md', hash: '5244410816745376968' }, + { file: 'packages/utilities/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/utilities/config/tests.js', hash: '16641653404356876419' }, + { file: 'packages/utilities/etc/utilities.api.md', hash: '15018932460167178414' }, + { file: 'packages/utilities/jest.config.js', hash: '304128120137977307' }, + { file: 'packages/utilities/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/utilities/package.json', + hash: '675003616675843412', + deps: [ + '@fluentui/dom-utilities', + '@fluentui/merge-styles', + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/jest-serializer-merge-styles', + '@fluentui/test-utilities', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/utilities/project.json', hash: '17280231558626148637' }, + { file: 'packages/utilities/src/Async.test.ts', hash: '5759589505192850170' }, + { file: 'packages/utilities/src/Async.ts', hash: '15143769995860493369' }, + { file: 'packages/utilities/src/AutoScroll.ts', hash: '5601078848280160212' }, + { file: 'packages/utilities/src/BaseComponent.test.tsx', hash: '3877588864845288553' }, + { file: 'packages/utilities/src/BaseComponent.ts', hash: '9118405640307315372' }, + { file: 'packages/utilities/src/BaseComponent.types.ts', hash: '783638621225026234' }, + { file: 'packages/utilities/src/DelayedRender.tsx', hash: '4642510121216492222' }, + { file: 'packages/utilities/src/EventGroup.test.ts', hash: '12138699095578563984' }, + { file: 'packages/utilities/src/EventGroup.ts', hash: '14471280002975870863' }, + { file: 'packages/utilities/src/FabricPerformance.ts', hash: '4714530500644440274' }, + { file: 'packages/utilities/src/FocusRectsProvider.tsx', hash: '15787740731290076280' }, + { file: 'packages/utilities/src/GlobalSettings.ts', hash: '342336038417369589' }, + { file: 'packages/utilities/src/IClassNames.ts', hash: '3076168777488422116' }, + { file: 'packages/utilities/src/IComponentAs.ts', hash: '252446323054408189' }, + { file: 'packages/utilities/src/IDisposable.ts', hash: '2478442062744367057' }, + { file: 'packages/utilities/src/IRectangle.ts', hash: '10995019983178257971' }, + { file: 'packages/utilities/src/IRenderComponent.ts', hash: '461886732816612547' }, + { file: 'packages/utilities/src/IRenderFunction.ts', hash: '17813586765380303785' }, + { file: 'packages/utilities/src/ISize.ts', hash: '14461979371085555856' }, + { file: 'packages/utilities/src/IStyleFunction.ts', hash: '6791316609268819404' }, + { file: 'packages/utilities/src/KeyCodes.ts', hash: '14564321873164316746' }, + { file: 'packages/utilities/src/Point.ts', hash: '376713868510813523' }, + { file: 'packages/utilities/src/React.types.ts', hash: '17800794849670035313' }, + { file: 'packages/utilities/src/Rectangle.ts', hash: '824886417592807336' }, + { file: 'packages/utilities/src/__snapshots__/styled.test.tsx.snap', hash: '12979173466984991107' }, + { file: 'packages/utilities/src/appendFunction.test.ts', hash: '8729525214092344649' }, + { file: 'packages/utilities/src/appendFunction.ts', hash: '4083488610739721922' }, + { file: 'packages/utilities/src/aria.test.ts', hash: '14138603899583562794' }, + { file: 'packages/utilities/src/aria.ts', hash: '5735708631711502150' }, + { file: 'packages/utilities/src/array.test.ts', hash: '15801175074736137302' }, + { file: 'packages/utilities/src/array.ts', hash: '1894347163613481431' }, + { file: 'packages/utilities/src/asAsync.test.tsx', hash: '10697304036797267807' }, + { file: 'packages/utilities/src/asAsync.tsx', hash: '4181533372244279705' }, + { file: 'packages/utilities/src/assertNever.ts', hash: '1515606681749095367' }, + { file: 'packages/utilities/src/classNamesFunction.test.ts', hash: '6343392581387687372' }, + { file: 'packages/utilities/src/classNamesFunction.ts', hash: '8023095563856715213' }, + { + file: 'packages/utilities/src/componentAs/__snapshots__/composeComponentAs.test.tsx.snap', + hash: '2752369257854721166', + }, + { file: 'packages/utilities/src/componentAs/composeComponentAs.test.tsx', hash: '8746889857353005866' }, + { file: 'packages/utilities/src/componentAs/composeComponentAs.tsx', hash: '2140110881671918461' }, + { file: 'packages/utilities/src/controlled.test.ts', hash: '9058866301967561226' }, + { file: 'packages/utilities/src/controlled.ts', hash: '9066208032224367059' }, + { file: 'packages/utilities/src/createMergedRef.test.tsx', hash: '1416955141188369611' }, + { file: 'packages/utilities/src/createMergedRef.ts', hash: '1251098934683385949' }, + { file: 'packages/utilities/src/createRef.ts', hash: '9238843200674099325' }, + { file: 'packages/utilities/src/css.test.ts', hash: '10031246422893899008' }, + { file: 'packages/utilities/src/css.ts', hash: '1793825490912883658' }, + { file: 'packages/utilities/src/customizations/Customizations.test.ts', hash: '10105610822375110835' }, + { file: 'packages/utilities/src/customizations/Customizations.ts', hash: '3495907360416689960' }, + { file: 'packages/utilities/src/customizations/Customizer.test.tsx', hash: '12908700688009649933' }, + { file: 'packages/utilities/src/customizations/Customizer.tsx', hash: '7793381447130808575' }, + { file: 'packages/utilities/src/customizations/Customizer.types.tsx', hash: '13989787286778459151' }, + { file: 'packages/utilities/src/customizations/CustomizerContext.ts', hash: '13773513164298209090' }, + { file: 'packages/utilities/src/customizations/customizable.test.tsx', hash: '17417709320635180368' }, + { file: 'packages/utilities/src/customizations/customizable.tsx', hash: '3874477594453762777' }, + { file: 'packages/utilities/src/customizations/mergeCustomizations.ts', hash: '7624715242722992448' }, + { file: 'packages/utilities/src/customizations/mergeSettings.ts', hash: '949575409405210085' }, + { file: 'packages/utilities/src/customizations/useCustomizationSettings.test.tsx', hash: '9461785824933750783' }, + { file: 'packages/utilities/src/customizations/useCustomizationSettings.ts', hash: '9469212748401813506' }, + { file: 'packages/utilities/src/dom/IVirtualElement.ts', hash: '1272603442600869120' }, + { file: 'packages/utilities/src/dom/canUseDOM.ts', hash: '14283484485691740206' }, + { file: 'packages/utilities/src/dom/dom.test.ts', hash: '15189535752284549665' }, + { file: 'packages/utilities/src/dom/elementContains.ts', hash: '6731392015328967658' }, + { file: 'packages/utilities/src/dom/elementContainsAttribute.ts', hash: '9998380691696155229' }, + { file: 'packages/utilities/src/dom/findElementRecursive.ts', hash: '12204766649587740636' }, + { file: 'packages/utilities/src/dom/getChildren.ts', hash: '10521633747754719556' }, + { file: 'packages/utilities/src/dom/getDocument.ts', hash: '9086020502057242037' }, + { file: 'packages/utilities/src/dom/getFirstVisibleElementFromSelector.ts', hash: '6447989736279473834' }, + { file: 'packages/utilities/src/dom/getParent.ts', hash: '9718084071153318455' }, + { file: 'packages/utilities/src/dom/getRect.ts', hash: '60430354175429724' }, + { file: 'packages/utilities/src/dom/getVirtualParent.ts', hash: '11252940205299737616' }, + { file: 'packages/utilities/src/dom/getWindow.ts', hash: '18428128074541184664' }, + { file: 'packages/utilities/src/dom/isVirtualElement.ts', hash: '517001433736903322' }, + { file: 'packages/utilities/src/dom/on.ts', hash: '12860909919214186505' }, + { file: 'packages/utilities/src/dom/portalContainsElement.ts', hash: '5168170300745806070' }, + { file: 'packages/utilities/src/dom/raiseClick.ts', hash: '1733874287643999407' }, + { file: 'packages/utilities/src/dom/setPortalAttribute.ts', hash: '6856150449255039282' }, + { file: 'packages/utilities/src/dom/setSSR.ts', hash: '15371249151282858961' }, + { file: 'packages/utilities/src/dom/setVirtualParent.ts', hash: '10955819039440267009' }, + { file: 'packages/utilities/src/dom.ts', hash: '6537626984778766649' }, + { file: 'packages/utilities/src/extendComponent.test.tsx', hash: '13891293003835934127' }, + { file: 'packages/utilities/src/extendComponent.ts', hash: '11310818425939132405' }, + { file: 'packages/utilities/src/focus.test.tsx', hash: '18400430136451594057' }, + { file: 'packages/utilities/src/focus.ts', hash: '6643169002879769058' }, + { file: 'packages/utilities/src/getId.ts', hash: '6800706428956972366' }, + { file: 'packages/utilities/src/getNativeElementProps.test.ts', hash: '284309430326406258' }, + { file: 'packages/utilities/src/getNativeElementProps.ts', hash: '11067196988575191658' }, + { file: 'packages/utilities/src/getPropsWithDefaults.test.ts', hash: '13824695188429262134' }, + { file: 'packages/utilities/src/getPropsWithDefaults.ts', hash: '9323023684459143650' }, + { file: 'packages/utilities/src/hoist.ts', hash: '904637284183141448' }, + { file: 'packages/utilities/src/hoistStatics.ts', hash: '5921127637819176945' }, + { file: 'packages/utilities/src/ie11Detector.ts', hash: '8304370647762605469' }, + { file: 'packages/utilities/src/index.ts', hash: '8052320402088512943' }, + { file: 'packages/utilities/src/initializeComponentRef.test.tsx', hash: '16876304708087993207' }, + { file: 'packages/utilities/src/initializeComponentRef.ts', hash: '17624525091723477913' }, + { file: 'packages/utilities/src/initializeDir.ts', hash: '5746005562232527516' }, + { file: 'packages/utilities/src/initializeFocusRects.test.ts', hash: '9347386513877106337' }, + { file: 'packages/utilities/src/initializeFocusRects.ts', hash: '6836970356225779843' }, + { file: 'packages/utilities/src/initials.test.ts', hash: '17208878865390886151' }, + { file: 'packages/utilities/src/initials.ts', hash: '2246058192270431676' }, + { file: 'packages/utilities/src/keyboard.test.ts', hash: '2465005779275079326' }, + { file: 'packages/utilities/src/keyboard.ts', hash: '3375700092477164063' }, + { file: 'packages/utilities/src/language.ts', hash: '12255952474581979791' }, + { file: 'packages/utilities/src/localStorage.ts', hash: '9752275918665499733' }, + { file: 'packages/utilities/src/math.test.ts', hash: '15627959349529587251' }, + { file: 'packages/utilities/src/math.ts', hash: '1028645173261075305' }, + { file: 'packages/utilities/src/memoize.test.ts', hash: '14950283053726570866' }, + { file: 'packages/utilities/src/memoize.ts', hash: '9330385561301352185' }, + { file: 'packages/utilities/src/merge.test.ts', hash: '15739663652754460066' }, + { file: 'packages/utilities/src/merge.ts', hash: '17766544532271599629' }, + { file: 'packages/utilities/src/mobileDetector.test.ts', hash: '12078587837878594136' }, + { file: 'packages/utilities/src/mobileDetector.ts', hash: '10591507586021763956' }, + { file: 'packages/utilities/src/modalize.test.ts', hash: '4846297644711417399' }, + { file: 'packages/utilities/src/modalize.ts', hash: '4481198429821105814' }, + { file: 'packages/utilities/src/object.test.ts', hash: '10254436151796777817' }, + { file: 'packages/utilities/src/object.ts', hash: '17154324253698227529' }, + { file: 'packages/utilities/src/osDetector.test.ts', hash: '14894283611897002433' }, + { file: 'packages/utilities/src/osDetector.ts', hash: '13801506817898268308' }, + { file: 'packages/utilities/src/overflow.test.ts', hash: '12139207908953484445' }, + { file: 'packages/utilities/src/overflow.ts', hash: '12647135475165398177' }, + { file: 'packages/utilities/src/properties.test.ts', hash: '4741910110570935513' }, + { file: 'packages/utilities/src/properties.ts', hash: '16773543696469058656' }, + { + file: 'packages/utilities/src/renderFunction/__snapshots__/composeRenderFunction.test.tsx.snap', + hash: '2752369257854721166', + }, + { file: 'packages/utilities/src/renderFunction/composeRenderFunction.test.tsx', hash: '13687964334743642959' }, + { file: 'packages/utilities/src/renderFunction/composeRenderFunction.tsx', hash: '12949119472709400410' }, + { file: 'packages/utilities/src/resources.ts', hash: '13625698663830748145' }, + { file: 'packages/utilities/src/rtl.test.ts', hash: '13900837640822362624' }, + { file: 'packages/utilities/src/rtl.ts', hash: '14222644107188927084' }, + { file: 'packages/utilities/src/safeRequestAnimationFrame.test.tsx', hash: '16982205117397880539' }, + { file: 'packages/utilities/src/safeRequestAnimationFrame.ts', hash: '975133229678661328' }, + { file: 'packages/utilities/src/safeSetTimeout.test.tsx', hash: '9649408720700553344' }, + { file: 'packages/utilities/src/safeSetTimeout.ts', hash: '13218288715921649583' }, + { file: 'packages/utilities/src/scroll.ts', hash: '5360381395447204868' }, + { file: 'packages/utilities/src/selection/Selection.test.ts', hash: '16981423786519042627' }, + { file: 'packages/utilities/src/selection/Selection.ts', hash: '13343736426577884626' }, + { file: 'packages/utilities/src/selection/Selection.types.ts', hash: '2551952221941279699' }, + { file: 'packages/utilities/src/selection/index.ts', hash: '14851851460036267236' }, + { file: 'packages/utilities/src/sessionStorage.ts', hash: '11470067955594116423' }, + { file: 'packages/utilities/src/setFocusVisibility.test.tsx', hash: '3836380506317020464' }, + { file: 'packages/utilities/src/setFocusVisibility.ts', hash: '8156237404251675203' }, + { file: 'packages/utilities/src/string.ts', hash: '11645503253289741054' }, + { file: 'packages/utilities/src/styled.test.tsx', hash: '4946383566021141652' }, + { file: 'packages/utilities/src/styled.tsx', hash: '13378054297508466343' }, + { file: 'packages/utilities/src/useFocusRects.test.tsx', hash: '9129928342627505077' }, + { file: 'packages/utilities/src/useFocusRects.ts', hash: '17577250466138189088' }, + { file: 'packages/utilities/src/useIsomorphicLayoutEffect.ts', hash: '14729958331705232742' }, + { file: 'packages/utilities/src/version.ts', hash: '6263395338863769015' }, + { file: 'packages/utilities/src/warn/warn.test.ts', hash: '11418325315738532285' }, + { file: 'packages/utilities/src/warn/warn.ts', hash: '2637561142778231776' }, + { file: 'packages/utilities/src/warn/warnConditionallyRequiredProps.ts', hash: '16835554844251258233' }, + { file: 'packages/utilities/src/warn/warnControlledUsage.test.ts', hash: '13092967152654014039' }, + { file: 'packages/utilities/src/warn/warnControlledUsage.ts', hash: '796636411188940959' }, + { file: 'packages/utilities/src/warn/warnDeprecations.ts', hash: '12191875958213993028' }, + { file: 'packages/utilities/src/warn/warnMutuallyExclusive.ts', hash: '6917399654413973457' }, + { file: 'packages/utilities/src/warn.ts', hash: '16985317042801848559' }, + { file: 'packages/utilities/tsconfig.json', hash: '12681959843186909680' }, + ], + '@fluentui/scripts-lint-staged': [ + { file: 'scripts/lint-staged/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/lint-staged/eslint-for-package.js', hash: '4738514625431014423' }, + { file: 'scripts/lint-staged/eslint.js', hash: '13861068640127141789' }, + { file: 'scripts/lint-staged/jest.config.js', hash: '7963143772161094500' }, + { file: 'scripts/lint-staged/package.json', hash: '7493691809580746414', deps: ['@fluentui/scripts-monorepo'] }, + { file: 'scripts/lint-staged/project.json', hash: '14668309250613706165' }, + { file: 'scripts/lint-staged/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/lint-staged/tsconfig.lib.json', hash: '3753806828268919288' }, + { file: 'scripts/lint-staged/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/dom-utilities': [ + { file: 'packages/dom-utilities/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/dom-utilities/.npmignore', hash: '7699079327417375383' }, + { file: 'packages/dom-utilities/CHANGELOG.json', hash: '8068234031633819591' }, + { file: 'packages/dom-utilities/CHANGELOG.md', hash: '16100292252780397155' }, + { file: 'packages/dom-utilities/LICENSE', hash: '4650556597768654521' }, + { file: 'packages/dom-utilities/README.md', hash: '2433927414357617456' }, + { file: 'packages/dom-utilities/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/dom-utilities/etc/dom-utilities.api.md', hash: '10454177134700198954' }, + { file: 'packages/dom-utilities/jest.config.js', hash: '8457350006614220129' }, + { file: 'packages/dom-utilities/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/dom-utilities/package.json', + hash: '4796838588752972627', + deps: [ + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/dom-utilities/project.json', hash: '15540251548798604047' }, + { file: 'packages/dom-utilities/src/IVirtualElement.ts', hash: '15055156890037686138' }, + { file: 'packages/dom-utilities/src/elementContains.ts', hash: '5166646740547888307' }, + { file: 'packages/dom-utilities/src/elementContainsAttribute.ts', hash: '240530313650375428' }, + { file: 'packages/dom-utilities/src/findElementRecursive.ts', hash: '15902457052705517702' }, + { file: 'packages/dom-utilities/src/getChildren.ts', hash: '17303479692229336714' }, + { file: 'packages/dom-utilities/src/getParent.ts', hash: '17207135018437651072' }, + { file: 'packages/dom-utilities/src/getVirtualParent.ts', hash: '12867277850625566919' }, + { file: 'packages/dom-utilities/src/index.test.ts', hash: '9241586715584521733' }, + { file: 'packages/dom-utilities/src/index.ts', hash: '11567655210902058086' }, + { file: 'packages/dom-utilities/src/isVirtualElement.ts', hash: '5785282851313588602' }, + { file: 'packages/dom-utilities/src/portalContainsElement.ts', hash: '17978580743449785402' }, + { file: 'packages/dom-utilities/src/setPortalAttribute.ts', hash: '11039697298779251904' }, + { file: 'packages/dom-utilities/src/setVirtualParent.ts', hash: '14427122606930692518' }, + { file: 'packages/dom-utilities/src/version.ts', hash: '9176519080116557418' }, + { file: 'packages/dom-utilities/tsconfig.json', hash: '17721705097427987892' }, + ], + '@fluentui/theme-samples': [ + { file: 'packages/theme-samples/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/theme-samples/.npmignore', hash: '47056201363133096' }, + { file: 'packages/theme-samples/CHANGELOG.json', hash: '4107014302643558583' }, + { file: 'packages/theme-samples/CHANGELOG.md', hash: '16681506395571679930' }, + { file: 'packages/theme-samples/LICENSE', hash: '15482603230267471744' }, + { file: 'packages/theme-samples/README.md', hash: '3926556167459327423' }, + { file: 'packages/theme-samples/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/theme-samples/package.json', + hash: '15427753799492686926', + deps: [ + '@fluentui/react', + '@fluentui/set-version', + '@fluentui/scheme-utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'packages/theme-samples/project.json', hash: '6409800190469398757' }, + { file: 'packages/theme-samples/src/DarkCustomizations/DarkCustomizations.ts', hash: '5200885300371184710' }, + { file: 'packages/theme-samples/src/DarkCustomizations/index.ts', hash: '14444893938817993003' }, + { + file: 'packages/theme-samples/src/DarkCustomizations/styles/DatePickerStyles.ts', + hash: '15259319016214443724', + }, + { + file: 'packages/theme-samples/src/DarkCustomizations/styles/PeoplePickerStyles.ts', + hash: '12867402699419709127', + }, + { file: 'packages/theme-samples/src/DarkCustomizations/styles/index.ts', hash: '13786226689429555298' }, + { file: 'packages/theme-samples/src/DefaultCustomizations.ts', hash: '7362911222450954562' }, + { file: 'packages/theme-samples/src/TeamsCustomizations.ts', hash: '10750998333330948600' }, + { file: 'packages/theme-samples/src/WordCustomizations.ts', hash: '3224157461993899137' }, + { file: 'packages/theme-samples/src/index.ts', hash: '16878372643173057795' }, + { file: 'packages/theme-samples/src/version.ts', hash: '8159374621578079077' }, + { file: 'packages/theme-samples/tsconfig.json', hash: '5760297339315905719' }, + { file: 'packages/theme-samples/webpack.config.js', hash: '5642468613982628084' }, + ], + '@fluentui/azure-themes': [ + { file: 'packages/azure-themes/.eslintrc.json', hash: '7047059270393627238' }, + { file: 'packages/azure-themes/.npmignore', hash: '47056201363133096' }, + { file: 'packages/azure-themes/CHANGELOG.json', hash: '2814564121899980480' }, + { file: 'packages/azure-themes/CHANGELOG.md', hash: '12008305137318728187' }, + { file: 'packages/azure-themes/LICENSE', hash: '11805460047251502307' }, + { file: 'packages/azure-themes/README.md', hash: '9487251565582550648' }, + { file: 'packages/azure-themes/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/azure-themes/package.json', + hash: '13993476586447731937', + deps: [ + '@fluentui/react', + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'packages/azure-themes/project.json', hash: '6299750457924615058' }, + { file: 'packages/azure-themes/src/AzureCustomizations.ts', hash: '4760252950292272729' }, + { file: 'packages/azure-themes/src/azure/AzureColors.ts', hash: '14152952468054705526' }, + { file: 'packages/azure-themes/src/azure/AzureDepths.ts', hash: '17261250879660942101' }, + { file: 'packages/azure-themes/src/azure/AzureStyleSettings.ts', hash: '8316665480931492390' }, + { file: 'packages/azure-themes/src/azure/AzureThemeDark.ts', hash: '4313722604489990327' }, + { file: 'packages/azure-themes/src/azure/AzureThemeHighContrastDark.ts', hash: '7102611927819756797' }, + { file: 'packages/azure-themes/src/azure/AzureThemeHighContrastLight.ts', hash: '9454370145371971118' }, + { file: 'packages/azure-themes/src/azure/AzureThemeLight.ts', hash: '18091326576033638586' }, + { file: 'packages/azure-themes/src/azure/AzureType.ts', hash: '15414580302593572625' }, + { file: 'packages/azure-themes/src/azure/Constants.ts', hash: '2809813925329042682' }, + { file: 'packages/azure-themes/src/azure/IAzureSemanticColors.ts', hash: '13420497678842227618' }, + { file: 'packages/azure-themes/src/azure/IExtendedSemanticColors.ts', hash: '14227374167342092383' }, + { file: 'packages/azure-themes/src/azure/index.ts', hash: '4374715962088181245' }, + { file: 'packages/azure-themes/src/azure/styles/ActionButton.styles.ts', hash: '13596369672849093373' }, + { file: 'packages/azure-themes/src/azure/styles/Breadcrumb.styles.ts', hash: '17718963414523065709' }, + { file: 'packages/azure-themes/src/azure/styles/Calendar.styles.ts', hash: '16971015327285923408' }, + { file: 'packages/azure-themes/src/azure/styles/Callout.styles.ts', hash: '4549843136555746723' }, + { file: 'packages/azure-themes/src/azure/styles/Checkbox.styles.ts', hash: '7581482770815269795' }, + { file: 'packages/azure-themes/src/azure/styles/ChoiceGroupOptions.styles.ts', hash: '2636532473744196771' }, + { file: 'packages/azure-themes/src/azure/styles/ColorPicker.styles.ts', hash: '6392088099577082345' }, + { file: 'packages/azure-themes/src/azure/styles/ColorPickerGridCell.styles.ts', hash: '10160459480635280492' }, + { file: 'packages/azure-themes/src/azure/styles/ComboBox.styles.ts', hash: '17823202381537620748' }, + { file: 'packages/azure-themes/src/azure/styles/CommandBar.styles.ts', hash: '12712977659203094181' }, + { file: 'packages/azure-themes/src/azure/styles/CommandBarButton.styles.ts', hash: '2033780080583129886' }, + { file: 'packages/azure-themes/src/azure/styles/CompoundButton.styles.ts', hash: '17349175564712120044' }, + { file: 'packages/azure-themes/src/azure/styles/ContextualMenu.styles.ts', hash: '13424731381391286619' }, + { file: 'packages/azure-themes/src/azure/styles/DatePicker.styles.ts', hash: '11990316255925778035' }, + { file: 'packages/azure-themes/src/azure/styles/DefaultButton.styles.ts', hash: '15716448895851031924' }, + { file: 'packages/azure-themes/src/azure/styles/DetailsList.styles.ts', hash: '14513801309827161140' }, + { file: 'packages/azure-themes/src/azure/styles/Dialog.styles.ts', hash: '6387972746686542555' }, + { file: 'packages/azure-themes/src/azure/styles/DocumentCard.styles.ts', hash: '5072704218799592150' }, + { file: 'packages/azure-themes/src/azure/styles/DropDown.styles.ts', hash: '12791379548962019908' }, + { file: 'packages/azure-themes/src/azure/styles/HoverCard.styles.ts', hash: '437137438162278789' }, + { file: 'packages/azure-themes/src/azure/styles/IconButton.styles.ts', hash: '13095050026182229537' }, + { file: 'packages/azure-themes/src/azure/styles/Label.styles.ts', hash: '18308403615151462886' }, + { file: 'packages/azure-themes/src/azure/styles/Link.styles.ts', hash: '10966391963600700609' }, + { file: 'packages/azure-themes/src/azure/styles/MessageBar.styles.ts', hash: '13968504130946602066' }, + { file: 'packages/azure-themes/src/azure/styles/Modal.styles.ts', hash: '6304647593323757102' }, + { file: 'packages/azure-themes/src/azure/styles/Nav.styles.ts', hash: '3062138929163538025' }, + { file: 'packages/azure-themes/src/azure/styles/Overlay.styles.ts', hash: '7092008763459894671' }, + { file: 'packages/azure-themes/src/azure/styles/Panel.styles.ts', hash: '16260399713980995173' }, + { file: 'packages/azure-themes/src/azure/styles/Pivot.styles.ts', hash: '4205451113277631358' }, + { file: 'packages/azure-themes/src/azure/styles/PrimaryButton.styles.ts', hash: '10584165192860092413' }, + { file: 'packages/azure-themes/src/azure/styles/ProgressIndicator.styles.ts', hash: '11169363722773949196' }, + { file: 'packages/azure-themes/src/azure/styles/Rating.styles.ts', hash: '17915376534463516724' }, + { file: 'packages/azure-themes/src/azure/styles/SearchBox.styles.ts', hash: '10058059892588619195' }, + { file: 'packages/azure-themes/src/azure/styles/Slider.styles.ts', hash: '9299139275175695869' }, + { file: 'packages/azure-themes/src/azure/styles/SpinButton.styles.ts', hash: '3167652000896331774' }, + { file: 'packages/azure-themes/src/azure/styles/Suggestions.styles.ts', hash: '17170068933032839751' }, + { file: 'packages/azure-themes/src/azure/styles/SuggestionsItem.styles.ts', hash: '14260189213202838970' }, + { file: 'packages/azure-themes/src/azure/styles/TagItem.styles.ts', hash: '13074235089176650019' }, + { file: 'packages/azure-themes/src/azure/styles/TagPicker.styles.ts', hash: '17455813293478966913' }, + { file: 'packages/azure-themes/src/azure/styles/TeachingBubble.styles.ts', hash: '9742274931439777845' }, + { file: 'packages/azure-themes/src/azure/styles/TextField.styles.ts', hash: '16504341065904792603' }, + { file: 'packages/azure-themes/src/azure/styles/Toggle.styles.ts', hash: '9820131752972096051' }, + { file: 'packages/azure-themes/src/azure/styles/Tooltip.styles.ts', hash: '1137867786174432089' }, + { file: 'packages/azure-themes/src/index.ts', hash: '7441033631543621919' }, + { file: 'packages/azure-themes/src/version.ts', hash: '14756785630021474777' }, + { file: 'packages/azure-themes/tsconfig.json', hash: '6054155811259967380' }, + { file: 'packages/azure-themes/webpack.config.js', hash: '14062494459790566470' }, + ], + '@fluentui/jest-serializer-merge-styles': [ + { file: 'packages/jest-serializer-merge-styles/.eslintrc.json', hash: '9627670268003919245' }, + { file: 'packages/jest-serializer-merge-styles/.npmignore', hash: '47056201363133096' }, + { file: 'packages/jest-serializer-merge-styles/CHANGELOG.json', hash: '10954018229298175588' }, + { file: 'packages/jest-serializer-merge-styles/CHANGELOG.md', hash: '4453963391801474619' }, + { file: 'packages/jest-serializer-merge-styles/LICENSE', hash: '2632243039952250986' }, + { file: 'packages/jest-serializer-merge-styles/README.md', hash: '8547473322085278538' }, + { file: 'packages/jest-serializer-merge-styles/jest.config.js', hash: '17670261926655605039' }, + { file: 'packages/jest-serializer-merge-styles/just.config.ts', hash: '2411455081002746933' }, + { + file: 'packages/jest-serializer-merge-styles/package.json', + hash: '17303012843352115746', + deps: [ + '@fluentui/merge-styles', + '@fluentui/eslint-plugin', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/jest-serializer-merge-styles/project.json', hash: '9258619144494602857' }, + { + file: 'packages/jest-serializer-merge-styles/src/__snapshots__/index.test.tsx.snap', + hash: '4400590441458842461', + }, + { file: 'packages/jest-serializer-merge-styles/src/index.test.tsx', hash: '2012814102331462398' }, + { file: 'packages/jest-serializer-merge-styles/src/index.ts', hash: '15427981283161703159' }, + { file: 'packages/jest-serializer-merge-styles/tsconfig.json', hash: '18031699838750159282' }, + ], + '@fluentui/perf-test-react-components': [ + { file: 'apps/perf-test-react-components/.eslintrc.json', hash: '11394998712033899358' }, + { file: 'apps/perf-test-react-components/CHANGELOG.json', hash: '9705294603087361552' }, + { file: 'apps/perf-test-react-components/CHANGELOG.md', hash: '1955031280662643285' }, + { file: 'apps/perf-test-react-components/README.md', hash: '12764928321652014507' }, + { file: 'apps/perf-test-react-components/config/perf-test/index.ts', hash: '9382341332431634376' }, + { file: 'apps/perf-test-react-components/config/perf-test/scenarioIterations.ts', hash: '2689308603351418909' }, + { file: 'apps/perf-test-react-components/config/perf-test/scenarioNames.ts', hash: '7752641890685283927' }, + { file: 'apps/perf-test-react-components/config/perf-test/scenarioRenderTypes.ts', hash: '4111949727319474190' }, + { file: 'apps/perf-test-react-components/config/pre-copy.json', hash: '5251859254196291210' }, + { file: 'apps/perf-test-react-components/index.html', hash: '2745716322290525623' }, + { file: 'apps/perf-test-react-components/just.config.ts', hash: '4618050165307861195' }, + { + file: 'apps/perf-test-react-components/package.json', + hash: '14351998842130606319', + deps: [ + '@fluentui/scripts-perf-test-flamegrill', + '@fluentui/react-avatar', + '@fluentui/react-button', + '@fluentui/react-field', + '@fluentui/react-persona', + '@fluentui/react-provider', + '@fluentui/react-spinbutton', + '@fluentui/react-theme', + 'npm:@griffel/core', + 'npm:@microsoft/load-themed-styles', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-storybook', + ], + }, + { file: 'apps/perf-test-react-components/project.json', hash: '897404076483519183' }, + { file: 'apps/perf-test-react-components/src/app.tsx', hash: '3188751655411573665' }, + { file: 'apps/perf-test-react-components/src/scenarios/Avatar.tsx', hash: '8157265688749489090' }, + { file: 'apps/perf-test-react-components/src/scenarios/Button.tsx', hash: '274370466704185279' }, + { file: 'apps/perf-test-react-components/src/scenarios/Field.tsx', hash: '3681451947007170553' }, + { file: 'apps/perf-test-react-components/src/scenarios/FluentProvider.tsx', hash: '769812070028657132' }, + { + file: 'apps/perf-test-react-components/src/scenarios/FluentProviderWithTheme.tsx', + hash: '2530515739000735637', + }, + { file: 'apps/perf-test-react-components/src/scenarios/MakeStyles.tsx', hash: '7976650837438939483' }, + { file: 'apps/perf-test-react-components/src/scenarios/Persona.tsx', hash: '12680964084800898666' }, + { file: 'apps/perf-test-react-components/src/scenarios/SpinButton.tsx', hash: '13668415692180724398' }, + { file: 'apps/perf-test-react-components/tsconfig.json', hash: '8441577648341427081' }, + { file: 'apps/perf-test-react-components/webpack.config.js', hash: '6869860371066694099' }, + ], + '@fluentui/react-teaching-popover-preview': [ + { file: 'packages/react-components/react-teaching-popover-preview/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-teaching-popover-preview/.eslintrc.json', hash: '11822209983446579696' }, + { + file: 'packages/react-components/react-teaching-popover-preview/.storybook/main.js', + hash: '11617744840349284164', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/.storybook/preview.js', + hash: '1791378012295456991', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-teaching-popover-preview/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-teaching-popover-preview/CHANGELOG.json', hash: '8994884635951557618' }, + { file: 'packages/react-components/react-teaching-popover-preview/CHANGELOG.md', hash: '14480893186605819528' }, + { file: 'packages/react-components/react-teaching-popover-preview/LICENSE', hash: '8318516742902246056' }, + { file: 'packages/react-components/react-teaching-popover-preview/README.md', hash: '4815969679662335124' }, + { + file: 'packages/react-components/react-teaching-popover-preview/config/api-extractor.json', + hash: '124052868224837692', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/config/tests.js', + hash: '16913843724990866890', + }, + { file: 'packages/react-components/react-teaching-popover-preview/docs/Spec.md', hash: '16256309628029914774' }, + { + file: 'packages/react-components/react-teaching-popover-preview/etc/images/swapImage.png', + hash: '12876338665092853890', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/etc/react-teaching-popover-preview.api.md', + hash: '11243623359092034041', + }, + { file: 'packages/react-components/react-teaching-popover-preview/jest.config.js', hash: '13584371025946738595' }, + { file: 'packages/react-components/react-teaching-popover-preview/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-teaching-popover-preview/package.json', + hash: '17670663144617569278', + deps: [ + '@fluentui/react-jsx-runtime', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/react-shared-contexts', + '@fluentui/react-popover', + '@fluentui/react-button', + '@fluentui/react-tabster', + 'npm:@fluentui/react-icons', + '@fluentui/react-aria', + '@fluentui/react-context-selector', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-teaching-popover-preview/project.json', hash: '14616591285923787189' }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopover.ts', + hash: '7389541180256976710', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverActions.ts', + hash: '5358762121561117822', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverBody.ts', + hash: '1131558293591082898', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverButton.ts', + hash: '7413929216130545088', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverCarousel.ts', + hash: '12601511764903480892', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverContext.ts', + hash: '13481016016250248226', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverHeader.ts', + hash: '15529787251709216705', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverPageCount.ts', + hash: '17073836279869371730', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverSurface.ts', + hash: '14483713832663730605', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverTitle.ts', + hash: '13840095734895178938', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverTrigger.ts', + hash: '9281431365623494399', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.test.tsx', + hash: '112626277921287604', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.tsx', + hash: '14097696607211212505', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.types.ts', + hash: '12289824331777302830', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/index.ts', + hash: '1226227490827364046', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/renderTeachingPopover.tsx', + hash: '11005122137749609355', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/useTeachingPopover.ts', + hash: '9421874386964730109', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/useTeachingPopoverContext.ts', + hash: '15884992890186760431', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.test.tsx', + hash: '15349775667547186854', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.tsx', + hash: '14030510950857980014', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.types.ts', + hash: '16827896840583128219', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/__snapshots__/TeachingPopoverActions.test.tsx.snap', + hash: '18337752677565992943', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/index.ts', + hash: '18435084670675140657', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/renderTeachingPopoverActions.tsx', + hash: '14266117732360718671', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/useTeachingPopoverActions.ts', + hash: '4096968893721737403', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/useTeachingPopoverActionsStyles.styles.ts', + hash: '17255966558997131615', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.test.tsx', + hash: '11495521293989665067', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.tsx', + hash: '7858610052521811915', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.types.ts', + hash: '17319835197952734098', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/__snapshots__/TeachingPopoverBody.test.tsx.snap', + hash: '4314797497538624872', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/index.ts', + hash: '9472987200176136993', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/renderTeachingPopoverBody.tsx', + hash: '7235475384754499998', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/useTeachingPopoverBody.ts', + hash: '15612610339406533157', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.ts', + hash: '11908879224221270510', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.test.tsx', + hash: '12558548386874541122', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.tsx', + hash: '4404208766411340943', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.types.ts', + hash: '732387137400908009', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/index.ts', + hash: '11272611281483058771', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/renderTeachingPopoverButton.tsx', + hash: '14249489053108298165', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/useTeachingPopoverButton.ts', + hash: '10608687828497095226', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/useTeachingPopoverButtonStyles.styles.ts', + hash: '7486815103861852465', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.test.tsx', + hash: '15114064730783324960', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.tsx', + hash: '15064373276874971387', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.ts', + hash: '6173872613171697428', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/__snapshots__/TeachingPopoverCarousel.test.tsx.snap', + hash: '10518328939545785520', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/index.ts', + hash: '12454703240467593591', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.tsx', + hash: '14124941062994286254', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.ts', + hash: '6437048122874103933', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.ts', + hash: '7582112356649397034', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.test.tsx', + hash: '2708718707606539991', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.tsx', + hash: '7770809662350163780', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.types.ts', + hash: '1284598022225209861', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/__snapshots__/TeachingPopoverHeader.test.tsx.snap', + hash: '66542911360758428', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/index.ts', + hash: '15576869881896674472', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/renderTeachingPopoverHeader.tsx', + hash: '18321155974286134670', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/useTeachingPopoverHeader.tsx', + hash: '9762382604091848558', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.ts', + hash: '3852469850417217256', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.test.tsx', + hash: '4837419775547071769', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.tsx', + hash: '17504625350392450179', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.types.ts', + hash: '2843113478541239823', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/__snapshots__/TeachingPopoverPageCount.test.tsx.snap', + hash: '11407218936841546097', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/index.ts', + hash: '13686490779487932487', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/renderTeachingPopoverPageCount.tsx', + hash: '3192186327141850669', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/useTeachingPopoverPageCount.ts', + hash: '1970193870854102598', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/useTeachingPopoverPageCountStyles.styles.ts', + hash: '10634833093274167840', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.test.tsx', + hash: '5724934428492091490', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.tsx', + hash: '11272575543697199841', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.types.ts', + hash: '14003263876187418803', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/__snapshots__/TeachingPopoverSurface.test.tsx.snap', + hash: '9489208442087234503', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/index.ts', + hash: '11298545263727765591', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/renderTeachingPopoverSurface.tsx', + hash: '5159387223578862066', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/useTeachingPopoverSurface.ts', + hash: '8311099309561251981', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.ts', + hash: '14065583085885253091', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.test.tsx', + hash: '17768990193341551114', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.tsx', + hash: '525328514845513715', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.types.ts', + hash: '3090372936974350401', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/__snapshots__/TeachingPopoverTitle.test.tsx.snap', + hash: '4146139576376363143', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/index.ts', + hash: '6417325189862749957', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/renderTeachingPopoverTitle.tsx', + hash: '1606987935364254240', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/useTeachingPopoverTitle.tsx', + hash: '1009662058008658141', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.ts', + hash: '3770385461668929171', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.test.tsx', + hash: '5471836767446183674', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.tsx', + hash: '14008566932184133972', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.ts', + hash: '14896345722113243352', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/__snapshots__/TeachingPopoverTrigger.test.tsx.snap', + hash: '6172078088319873378', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/index.ts', + hash: '7072858892780895633', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.tsx', + hash: '11095981190180064218', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.ts', + hash: '16849029819529451671', + }, + { file: 'packages/react-components/react-teaching-popover-preview/src/index.ts', hash: '12678804439345883397' }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/src/testing/mockTeachingPopoverContext.ts', + hash: '14032699750228718615', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverBestPractices.md', + hash: '13132854725403121719', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverBranded.stories.tsx', + hash: '17521116200124480646', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarousel.stories.tsx', + hash: '5192604369618065969', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarouselBranded.stories.tsx', + hash: '13345141870510142666', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarouselText.stories.tsx', + hash: '18260449879385146338', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDefault.stories.tsx', + hash: '4876509690720671779', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDefaultBranded.stories.tsx', + hash: '17297757085466422856', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDescription.md', + hash: '3244421341483603138', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/index.stories.tsx', + hash: '13975208357646002979', + }, + { file: 'packages/react-components/react-teaching-popover-preview/tsconfig.json', hash: '4314087102028690976' }, + { + file: 'packages/react-components/react-teaching-popover-preview/tsconfig.lib.json', + hash: '5990226506726238656', + }, + { + file: 'packages/react-components/react-teaching-popover-preview/tsconfig.spec.json', + hash: '6114153871167405290', + }, + ], + '@fluentui/react-telemetry': [ + { file: 'packages/fluentui/react-telemetry/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-telemetry/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-telemetry/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-telemetry/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/react-telemetry/package.json', + hash: '11597637505080461496', + deps: [ + 'npm:@babel/runtime', + '@fluentui/react-bindings', + '@fluentui/react-component-event-listener', + 'npm:lodash', + 'npm:react-table', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + 'npm:@types/react-table', + 'npm:lerna-alias', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-telemetry/project.json', hash: '1545707455027966891' }, + { file: 'packages/fluentui/react-telemetry/src/TelemetryPerfFlags.tsx', hash: '15047243473559560992' }, + { file: 'packages/fluentui/react-telemetry/src/TelemetryPopover.tsx', hash: '17978132699403522947' }, + { file: 'packages/fluentui/react-telemetry/src/TelemetryTable.tsx', hash: '13466198782982969536' }, + { file: 'packages/fluentui/react-telemetry/src/index.ts', hash: '17796473986958886897' }, + { file: 'packages/fluentui/react-telemetry/src/styles.ts', hash: '15766090010848193032' }, + { file: 'packages/fluentui/react-telemetry/src/useIntervalUpdate.ts', hash: '11690443637827723090' }, + { file: 'packages/fluentui/react-telemetry/src/useTelemetryColumns.tsx', hash: '1843080583577724726' }, + { file: 'packages/fluentui/react-telemetry/src/useTelemetryData.ts', hash: '7679325461230384030' }, + { file: 'packages/fluentui/react-telemetry/src/useTelemetryState.ts', hash: '11457929168335446841' }, + { file: 'packages/fluentui/react-telemetry/tsconfig.json', hash: '9267037586801109256' }, + ], + '@fluentui/react-table': [ + { file: 'packages/react-components/react-table/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-table/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-table/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-table/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-table/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-table/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-table/CHANGELOG.json', hash: '15976043308258216480' }, + { file: 'packages/react-components/react-table/CHANGELOG.md', hash: '12284887034328568848' }, + { file: 'packages/react-components/react-table/LICENSE', hash: '4345477832354288605' }, + { file: 'packages/react-components/react-table/README.md', hash: '4901443484789913206' }, + { file: 'packages/react-components/react-table/bundle-size/DataGrid.fixture.js', hash: '3853986990699722698' }, + { + file: 'packages/react-components/react-table/bundle-size/PrimitivesOnly.fixture.js', + hash: '2453502332089171285', + }, + { + file: 'packages/react-components/react-table/bundle-size/TableAsDataGrid.fixture.js', + hash: '3489469272183983884', + }, + { + file: 'packages/react-components/react-table/bundle-size/TableSelectionOnly.fixture.js', + hash: '15101770674769534092', + }, + { + file: 'packages/react-components/react-table/bundle-size/TableSortOnly.fixture.js', + hash: '16772869715114899305', + }, + { file: 'packages/react-components/react-table/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-table/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-table/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-table/docs/Spec.md', hash: '6293734900932760050' }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide1.PNG', + hash: '12816229816120791114', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide10.PNG', + hash: '507403483594248181', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide11.PNG', + hash: '10821002649331152305', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide12.PNG', + hash: '16044207046169017904', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide13.PNG', + hash: '4558085957645872825', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide14.PNG', + hash: '15784983474924862966', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide15.PNG', + hash: '3911357198091251632', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide16.PNG', + hash: '16044207046169017904', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide17.PNG', + hash: '3771765972594141142', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide18.PNG', + hash: '1847454647595839912', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide19.PNG', + hash: '378265804099762004', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide2.PNG', + hash: '2013925037770347199', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide20.PNG', + hash: '11286961965291772510', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide21.PNG', + hash: '12780997597152140914', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide22.PNG', + hash: '11635355027693465335', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide23.PNG', + hash: '6091420021788820418', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide24.PNG', + hash: '185692542212997928', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide25.PNG', + hash: '765679849171402571', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide26.PNG', + hash: '14966586126216280425', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide27.PNG', + hash: '659754405265581401', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide28.PNG', + hash: '7909581484454979875', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide29.PNG', + hash: '15406246910192488097', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide3.PNG', + hash: '5018292620786143049', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide30.PNG', + hash: '8445475416143163908', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide4.PNG', + hash: '1410512037832003271', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide5.PNG', + hash: '7251737589323072305', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide6.PNG', + hash: '3097621861574444839', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide7.PNG', + hash: '7233386375010557980', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide8.PNG', + hash: '14959995681332803620', + }, + { + file: 'packages/react-components/react-table/etc/images/table-interactions/Slide9.PNG', + hash: '6476023258270782882', + }, + { file: 'packages/react-components/react-table/etc/react-table.api.md', hash: '17698100367778503037' }, + { file: 'packages/react-components/react-table/jest.config.js', hash: '6598540019410527330' }, + { file: 'packages/react-components/react-table/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-table/package.json', + hash: '7942069547503742693', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-aria', + '@fluentui/react-avatar', + '@fluentui/react-checkbox', + '@fluentui/react-context-selector', + 'npm:@fluentui/react-icons', + '@fluentui/react-radio', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-table/project.json', hash: '4794127214983829980' }, + { file: 'packages/react-components/react-table/src/DataGrid.ts', hash: '17079061606149660778' }, + { file: 'packages/react-components/react-table/src/DataGridBody.ts', hash: '8672044046349703751' }, + { file: 'packages/react-components/react-table/src/DataGridCell.ts', hash: '15985493277395717549' }, + { file: 'packages/react-components/react-table/src/DataGridHeader.ts', hash: '4414606268997421070' }, + { file: 'packages/react-components/react-table/src/DataGridHeaderCell.ts', hash: '4464250898020673551' }, + { file: 'packages/react-components/react-table/src/DataGridRow.ts', hash: '4969572224027565081' }, + { file: 'packages/react-components/react-table/src/DataGridSelectionCell.ts', hash: '9370795542556916127' }, + { file: 'packages/react-components/react-table/src/Table.ts', hash: '14778241596221356404' }, + { file: 'packages/react-components/react-table/src/TableBody.ts', hash: '586474510137933838' }, + { file: 'packages/react-components/react-table/src/TableCell.ts', hash: '13156803246933880197' }, + { file: 'packages/react-components/react-table/src/TableCellActions.ts', hash: '11397146158367149472' }, + { file: 'packages/react-components/react-table/src/TableCellLayout.ts', hash: '4640880441986165945' }, + { file: 'packages/react-components/react-table/src/TableCellPrimaryLayout.ts', hash: '4640880441986165945' }, + { file: 'packages/react-components/react-table/src/TableHeader.ts', hash: '838114321023204504' }, + { file: 'packages/react-components/react-table/src/TableHeaderCell.ts', hash: '6850659350249070005' }, + { file: 'packages/react-components/react-table/src/TableResizeHandle.ts', hash: '3108675560738752517' }, + { file: 'packages/react-components/react-table/src/TableRow.ts', hash: '3608582872695367179' }, + { file: 'packages/react-components/react-table/src/TableSelectionCell.ts', hash: '12503410089805101497' }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/DataGrid.cy.tsx', + hash: '3350411529027605508', + }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/DataGrid.test.tsx', + hash: '3121991208076853892', + }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/DataGrid.tsx', + hash: '17321264386000624870', + }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/DataGrid.types.ts', + hash: '709704323174809435', + }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/__snapshots__/DataGrid.test.tsx.snap', + hash: '17976811616864604250', + }, + { file: 'packages/react-components/react-table/src/components/DataGrid/index.ts', hash: '14447930360764847420' }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/renderDataGrid.tsx', + hash: '15762584639505010258', + }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/useDataGrid.ts', + hash: '18296519326555141072', + }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/useDataGridContextValues.ts', + hash: '4001850224425972488', + }, + { + file: 'packages/react-components/react-table/src/components/DataGrid/useDataGridStyles.styles.ts', + hash: '15924802483199645208', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridBody/DataGridBody.test.tsx', + hash: '365690180230643745', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridBody/DataGridBody.tsx', + hash: '13092328809030939159', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridBody/DataGridBody.types.ts', + hash: '989688156850890464', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridBody/__snapshots__/DataGridBody.test.tsx.snap', + hash: '12795865007847060242', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridBody/index.ts', + hash: '8074172754573827448', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridBody/renderDataGridBody.tsx', + hash: '13006146274395870229', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridBody/useDataGridBody.tsx', + hash: '2490474312124892640', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridBody/useDataGridBodyStyles.styles.ts', + hash: '3088072580687221418', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridCell/DataGridCell.test.tsx', + hash: '14284493750094275925', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridCell/DataGridCell.tsx', + hash: '5979950167817855884', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridCell/DataGridCell.types.ts', + hash: '1469647611878513101', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridCell/__snapshots__/DataGridCell.test.tsx.snap', + hash: '13297941497219637881', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridCell/index.ts', + hash: '1950686883714060159', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridCell/renderDataGridCell.tsx', + hash: '15672771230460021783', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridCell/useDataGridCell.ts', + hash: '5633900691479417673', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridCell/useDataGridCellStyles.styles.ts', + hash: '17197964593221316773', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.test.tsx', + hash: '4388468238184479221', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.tsx', + hash: '13625463631116259235', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.types.ts', + hash: '16511931732912371303', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeader/__snapshots__/DataGridHeader.test.tsx.snap', + hash: '9406093122186695703', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeader/index.ts', + hash: '3201680452232731904', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeader/renderDataGridHeader.tsx', + hash: '7782227593392993150', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeader/useDataGridHeader.ts', + hash: '8544879729013780740', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeader/useDataGridHeaderStyles.styles.ts', + hash: '5887884145834485645', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.test.tsx', + hash: '8046473821173442128', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.tsx', + hash: '15401726210547002467', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.types.ts', + hash: '10061728147229226131', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/__snapshots__/DataGridHeaderCell.test.tsx.snap', + hash: '15607676364797409456', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/index.ts', + hash: '11744360188312949192', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/renderDataGridHeaderCell.tsx', + hash: '9804925281648575111', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/useDataGridHeaderCell.ts', + hash: '8322177597417145595', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/useDataGridHeaderCellStyles.styles.ts', + hash: '3064467005010167574', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridRow/DataGridRow.test.tsx', + hash: '609493596336427704', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridRow/DataGridRow.tsx', + hash: '2583011202432098234', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridRow/DataGridRow.types.ts', + hash: '11184462291089499466', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridRow/__snapshots__/DataGridRow.test.tsx.snap', + hash: '1090916004093623854', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridRow/index.ts', + hash: '3088124891029267509', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridRow/renderDataGridRow.tsx', + hash: '5595776796766230678', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridRow/useDataGridRow.tsx', + hash: '10140518523773109235', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridRow/useDataGridRowStyles.styles.ts', + hash: '16017903646265286705', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.test.tsx', + hash: '13797254308524947112', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.tsx', + hash: '3499170646948071005', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.types.ts', + hash: '15778410513528664058', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/index.ts', + hash: '4837457285516816283', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/renderDataGridSelectionCell.tsx', + hash: '4778904848491643018', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/useDataGridSelectionCell.ts', + hash: '9424237769629002853', + }, + { + file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/useDataGridSelectionCellStyles.styles.ts', + hash: '14851722426357391505', + }, + { + file: 'packages/react-components/react-table/src/components/Table/Table.test.tsx', + hash: '3988653820926313102', + }, + { file: 'packages/react-components/react-table/src/components/Table/Table.tsx', hash: '2616887241723560373' }, + { + file: 'packages/react-components/react-table/src/components/Table/Table.types.ts', + hash: '1207824533076839058', + }, + { + file: 'packages/react-components/react-table/src/components/Table/__snapshots__/Table.test.tsx.snap', + hash: '12819927518323792222', + }, + { file: 'packages/react-components/react-table/src/components/Table/index.ts', hash: '7246842283080963730' }, + { + file: 'packages/react-components/react-table/src/components/Table/renderTable.tsx', + hash: '8231460164589478020', + }, + { file: 'packages/react-components/react-table/src/components/Table/useTable.ts', hash: '4091732233640072596' }, + { + file: 'packages/react-components/react-table/src/components/Table/useTableContextValues.test.ts', + hash: '17213058547749828900', + }, + { + file: 'packages/react-components/react-table/src/components/Table/useTableContextValues.ts', + hash: '1963700558737794813', + }, + { + file: 'packages/react-components/react-table/src/components/Table/useTableStyles.styles.ts', + hash: '14779006953385619770', + }, + { + file: 'packages/react-components/react-table/src/components/TableBody/TableBody.test.tsx', + hash: '7329165518323718931', + }, + { + file: 'packages/react-components/react-table/src/components/TableBody/TableBody.tsx', + hash: '16817188515472471544', + }, + { + file: 'packages/react-components/react-table/src/components/TableBody/TableBody.types.ts', + hash: '14083323400314851537', + }, + { + file: 'packages/react-components/react-table/src/components/TableBody/__snapshots__/TableBody.test.tsx.snap', + hash: '1975112668078964741', + }, + { file: 'packages/react-components/react-table/src/components/TableBody/index.ts', hash: '10642595759435101538' }, + { + file: 'packages/react-components/react-table/src/components/TableBody/renderTableBody.tsx', + hash: '4826167259779664753', + }, + { + file: 'packages/react-components/react-table/src/components/TableBody/useTableBody.ts', + hash: '9253008564346211435', + }, + { + file: 'packages/react-components/react-table/src/components/TableBody/useTableBodyStyles.styles.ts', + hash: '15817108164807954583', + }, + { + file: 'packages/react-components/react-table/src/components/TableCell/TableCell.test.tsx', + hash: '11051355167652939228', + }, + { + file: 'packages/react-components/react-table/src/components/TableCell/TableCell.tsx', + hash: '11710651907704353877', + }, + { + file: 'packages/react-components/react-table/src/components/TableCell/TableCell.types.ts', + hash: '17804113583782862038', + }, + { + file: 'packages/react-components/react-table/src/components/TableCell/__snapshots__/TableCell.test.tsx.snap', + hash: '6687739069799966419', + }, + { file: 'packages/react-components/react-table/src/components/TableCell/index.ts', hash: '16281915016360298866' }, + { + file: 'packages/react-components/react-table/src/components/TableCell/renderTableCell.tsx', + hash: '2144713445527733389', + }, + { + file: 'packages/react-components/react-table/src/components/TableCell/useTableCell.ts', + hash: '1756265038339941425', + }, + { + file: 'packages/react-components/react-table/src/components/TableCell/useTableCellStyles.styles.ts', + hash: '17128545363356648646', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellActions/TableCellActions.test.tsx', + hash: '12709244819248138161', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellActions/TableCellActions.tsx', + hash: '14339356881426535917', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellActions/TableCellActions.types.ts', + hash: '7023150195642875227', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellActions/__snapshots__/TableCellActions.test.tsx.snap', + hash: '13335438201516937847', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellActions/index.ts', + hash: '6025687967602825335', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellActions/renderTableCellActions.tsx', + hash: '8725034395046660102', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellActions/useTableCellActions.ts', + hash: '551858063680153270', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellActions/useTableCellActionsStyles.styles.ts', + hash: '13342768590814720244', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.test.tsx', + hash: '2653762218990098068', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.tsx', + hash: '593798165276555146', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.types.ts', + hash: '8930913243964287427', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/__snapshots__/TableCellLayout.test.tsx.snap', + hash: '5152227318550539174', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/index.ts', + hash: '11647574449621743593', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/renderTableCellLayout.tsx', + hash: '6392547495725436491', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayout.ts', + hash: '4174329990714482289', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayoutContextValues.ts', + hash: '13285913200028190631', + }, + { + file: 'packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayoutStyles.styles.ts', + hash: '9106906690843979872', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeader/TableHeader.test.tsx', + hash: '2390014384311299291', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeader/TableHeader.tsx', + hash: '4148101233480039052', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeader/TableHeader.types.ts', + hash: '12959063516863293240', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeader/__snapshots__/TableHeader.test.tsx.snap', + hash: '7035183146798587016', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeader/index.ts', + hash: '3410642880769399092', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeader/renderTableHeader.tsx', + hash: '7047894267214818202', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeader/useTableHeader.ts', + hash: '12447444909845573720', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeader/useTableHeaderStyles.styles.ts', + hash: '14320945159865933979', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.test.tsx', + hash: '88312877306148306', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.tsx', + hash: '11824252066886075845', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.types.ts', + hash: '5064822055977353598', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeaderCell/__snapshots__/TableHeaderCell.test.tsx.snap', + hash: '17461620234162290241', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeaderCell/index.ts', + hash: '16326026053823034514', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeaderCell/renderTableHeaderCell.tsx', + hash: '12533290613338772096', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCell.tsx', + hash: '1186488255705582440', + }, + { + file: 'packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCellStyles.styles.ts', + hash: '4722792324071201971', + }, + { + file: 'packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.test.tsx', + hash: '4908009169325787003', + }, + { + file: 'packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.tsx', + hash: '4119029624056477906', + }, + { + file: 'packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.types.ts', + hash: '3788214349953356490', + }, + { + file: 'packages/react-components/react-table/src/components/TableResizeHandle/__snapshots__/TableResizeHandle.test.tsx.snap', + hash: '9257042895276257861', + }, + { + file: 'packages/react-components/react-table/src/components/TableResizeHandle/index.ts', + hash: '7452972912560494075', + }, + { + file: 'packages/react-components/react-table/src/components/TableResizeHandle/renderTableResizeHandle.tsx', + hash: '5219167715943845526', + }, + { + file: 'packages/react-components/react-table/src/components/TableResizeHandle/useTableResizeHandle.ts', + hash: '7328222721425120839', + }, + { + file: 'packages/react-components/react-table/src/components/TableResizeHandle/useTableResizeHandleStyles.styles.ts', + hash: '15733935328878813985', + }, + { + file: 'packages/react-components/react-table/src/components/TableRow/TableRow.test.tsx', + hash: '15478826047233568881', + }, + { + file: 'packages/react-components/react-table/src/components/TableRow/TableRow.tsx', + hash: '18444837132530435350', + }, + { + file: 'packages/react-components/react-table/src/components/TableRow/TableRow.types.ts', + hash: '6367169166660505131', + }, + { + file: 'packages/react-components/react-table/src/components/TableRow/__snapshots__/TableRow.test.tsx.snap', + hash: '15440056760632672248', + }, + { file: 'packages/react-components/react-table/src/components/TableRow/index.ts', hash: '16433222686764991881' }, + { + file: 'packages/react-components/react-table/src/components/TableRow/renderTableRow.tsx', + hash: '9020356206322865233', + }, + { + file: 'packages/react-components/react-table/src/components/TableRow/useTableRow.ts', + hash: '11761709334920900157', + }, + { + file: 'packages/react-components/react-table/src/components/TableRow/useTableRowStyles.styles.ts', + hash: '12531923330452599881', + }, + { + file: 'packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.test.tsx', + hash: '6411551806011869763', + }, + { + file: 'packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.tsx', + hash: '650480750958853', + }, + { + file: 'packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.types.ts', + hash: '18184138947631542698', + }, + { + file: 'packages/react-components/react-table/src/components/TableSelectionCell/__snapshots__/TableSelectionCell.test.tsx.snap', + hash: '4876836364386778508', + }, + { + file: 'packages/react-components/react-table/src/components/TableSelectionCell/index.ts', + hash: '12366029392607972381', + }, + { + file: 'packages/react-components/react-table/src/components/TableSelectionCell/renderTableSelectionCell.tsx', + hash: '10405033063074637043', + }, + { + file: 'packages/react-components/react-table/src/components/TableSelectionCell/useTableSelectionCell.tsx', + hash: '13549839021610253427', + }, + { + file: 'packages/react-components/react-table/src/components/TableSelectionCell/useTableSelectionCellStyles.styles.ts', + hash: '9336811611325446753', + }, + { file: 'packages/react-components/react-table/src/contexts/columnIdContext.ts', hash: '1084340240683719750' }, + { file: 'packages/react-components/react-table/src/contexts/dataGridContext.ts', hash: '5570658827395223292' }, + { file: 'packages/react-components/react-table/src/contexts/rowIdContext.ts', hash: '3534861151135745095' }, + { file: 'packages/react-components/react-table/src/contexts/tableContext.ts', hash: '1391145068294881469' }, + { + file: 'packages/react-components/react-table/src/contexts/tableHeaderContext.ts', + hash: '13631502139309569843', + }, + { file: 'packages/react-components/react-table/src/hooks/createColumn.ts', hash: '1982242325429104491' }, + { file: 'packages/react-components/react-table/src/hooks/index.ts', hash: '13799373635655725354' }, + { file: 'packages/react-components/react-table/src/hooks/types.ts', hash: '6174182288606230308' }, + { file: 'packages/react-components/react-table/src/hooks/useKeyboardResizing.ts', hash: '15626054918149148172' }, + { + file: 'packages/react-components/react-table/src/hooks/useMeasureElement.test.tsx', + hash: '15127064510536374752', + }, + { file: 'packages/react-components/react-table/src/hooks/useMeasureElement.ts', hash: '4021244669807144498' }, + { + file: 'packages/react-components/react-table/src/hooks/useTableColumnResizeMouseHandler.ts', + hash: '15338397319447945983', + }, + { + file: 'packages/react-components/react-table/src/hooks/useTableColumnResizeState.test.ts', + hash: '14299849820910707739', + }, + { + file: 'packages/react-components/react-table/src/hooks/useTableColumnResizeState.ts', + hash: '14235677586849461204', + }, + { + file: 'packages/react-components/react-table/src/hooks/useTableColumnSizing.test.ts', + hash: '5213967468781703495', + }, + { + file: 'packages/react-components/react-table/src/hooks/useTableColumnSizing.tsx', + hash: '12200350387517053981', + }, + { + file: 'packages/react-components/react-table/src/hooks/useTableCompositeNavigation.ts', + hash: '12883916471074441744', + }, + { + file: 'packages/react-components/react-table/src/hooks/useTableFeatures.test.ts', + hash: '14407794722332764337', + }, + { file: 'packages/react-components/react-table/src/hooks/useTableFeatures.ts', hash: '11316047060762564043' }, + { + file: 'packages/react-components/react-table/src/hooks/useTableSelection.test.ts', + hash: '10642268899411474511', + }, + { file: 'packages/react-components/react-table/src/hooks/useTableSelection.ts', hash: '274106747344727539' }, + { file: 'packages/react-components/react-table/src/hooks/useTableSort.test.ts', hash: '4876939199901475944' }, + { file: 'packages/react-components/react-table/src/hooks/useTableSort.ts', hash: '3031703309871912592' }, + { file: 'packages/react-components/react-table/src/index.ts', hash: '15694762333787260772' }, + { file: 'packages/react-components/react-table/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-table/src/testing/mockDataGridContext.ts', + hash: '12345405769834274534', + }, + { file: 'packages/react-components/react-table/src/testing/mockSyntheticEvent.ts', hash: '1212352037375346170' }, + { file: 'packages/react-components/react-table/src/testing/mockTableState.ts', hash: '15042778666285051569' }, + { + file: 'packages/react-components/react-table/src/utils/columnResizeUtils.test.ts', + hash: '6011727881236160373', + }, + { file: 'packages/react-components/react-table/src/utils/columnResizeUtils.ts', hash: '15912676873764422519' }, + { file: 'packages/react-components/react-table/src/utils/isColumnSortable.ts', hash: '17332718086331285738' }, + { + file: 'packages/react-components/react-table/stories/DataGrid/CompositeNavigation.stories.tsx', + hash: '462497658692016730', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/CustomRowId.stories.tsx', + hash: '7200996654339205885', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/DataGridDescription.md', + hash: '14297991401899578735', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/Default.stories.tsx', + hash: '12603562064528492256', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/FocusableElementsInCells.stories.tsx', + hash: '8698941837297046634', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/MultipleSelect.stories.tsx', + hash: '12528499231255362163', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/MultipleSelectControlled.stories.tsx', + hash: '17764972028460656409', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/ResizableColumns.stories.tsx', + hash: '17972472683075739426', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/SelectionAppearance.stories.tsx', + hash: '5103565752129711868', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/SingleSelect.stories.tsx', + hash: '5263004353615079277', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/SingleSelectControlled.stories.tsx', + hash: '10982877708572451543', + }, + { file: 'packages/react-components/react-table/stories/DataGrid/Sort.stories.tsx', hash: '514907417437481165' }, + { + file: 'packages/react-components/react-table/stories/DataGrid/SortControlled.stories.tsx', + hash: '18333722598813021923', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/SubtleSelection.stories.tsx', + hash: '16193231600548811672', + }, + { + file: 'packages/react-components/react-table/stories/DataGrid/Virtualization.stories.tsx', + hash: '12648284986353904171', + }, + { file: 'packages/react-components/react-table/stories/DataGrid/index.stories.tsx', hash: '9938818216767215778' }, + { + file: 'packages/react-components/react-table/stories/Table/CellActions.stories.tsx', + hash: '6452579492109796205', + }, + { + file: 'packages/react-components/react-table/stories/Table/CellNavigation.stories.tsx', + hash: '5784594627376239400', + }, + { + file: 'packages/react-components/react-table/stories/Table/CompositeNavigation.stories.tsx', + hash: '4853594687376691180', + }, + { + file: 'packages/react-components/react-table/stories/Table/DataGrid.stories.tsx', + hash: '10870920636539121573', + }, + { file: 'packages/react-components/react-table/stories/Table/Default.stories.tsx', hash: '12771585741670131315' }, + { + file: 'packages/react-components/react-table/stories/Table/FocusableElements.Cells.stories.tsx', + hash: '4563520350364841246', + }, + { + file: 'packages/react-components/react-table/stories/Table/Memoization.stories.tsx', + hash: '9716844619909358490', + }, + { + file: 'packages/react-components/react-table/stories/Table/MultipleSelect.stories.tsx', + hash: '18256653912049404303', + }, + { + file: 'packages/react-components/react-table/stories/Table/MultipleSelectControlled.stories.tsx', + hash: '17511909197299034459', + }, + { + file: 'packages/react-components/react-table/stories/Table/NonNativeElements.stories.tsx', + hash: '8410279079044763167', + }, + { + file: 'packages/react-components/react-table/stories/Table/PrimaryCell.stories.tsx', + hash: '6210883377837677944', + }, + { + file: 'packages/react-components/react-table/stories/Table/ResizableColumnsControlled.stories.tsx', + hash: '11377008235631273853', + }, + { + file: 'packages/react-components/react-table/stories/Table/ResizableColumnsUncontrolled.stories.tsx', + hash: '10073256218889568076', + }, + { + file: 'packages/react-components/react-table/stories/Table/SelectionWithCellActions.stories.tsx', + hash: '14166585273063843176', + }, + { + file: 'packages/react-components/react-table/stories/Table/SingleSelect.stories.tsx', + hash: '16735239486844118885', + }, + { + file: 'packages/react-components/react-table/stories/Table/SingleSelectControlled.stories.tsx', + hash: '4263285025688012103', + }, + { + file: 'packages/react-components/react-table/stories/Table/SizeExtraSmall.stories.tsx', + hash: '16418257672340977129', + }, + { + file: 'packages/react-components/react-table/stories/Table/SizeSmall.stories.tsx', + hash: '18012367151988365241', + }, + { file: 'packages/react-components/react-table/stories/Table/Sort.stories.tsx', hash: '4414973333139307988' }, + { + file: 'packages/react-components/react-table/stories/Table/SortControlled.stories.tsx', + hash: '1218547722178532512', + }, + { + file: 'packages/react-components/react-table/stories/Table/SubtleSelection.stories.tsx', + hash: '9363051409608050544', + }, + { file: 'packages/react-components/react-table/stories/Table/TableDescription.md', hash: '8803727497508721727' }, + { + file: 'packages/react-components/react-table/stories/Table/Virtualization.stories.tsx', + hash: '11309226498381645330', + }, + { file: 'packages/react-components/react-table/stories/Table/index.stories.tsx', hash: '1915606669720448584' }, + { file: 'packages/react-components/react-table/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-table/tsconfig.json', hash: '17847181103745608939' }, + { file: 'packages/react-components/react-table/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-table/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/scripts-triage-bot': [ + { file: 'scripts/triage-bot/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/triage-bot/README.md', hash: '9335607649677537584' }, + { file: 'scripts/triage-bot/jest.config.js', hash: '10011597394858720856' }, + { file: 'scripts/triage-bot/package.json', hash: '13913251469002073545' }, + { file: 'scripts/triage-bot/project.json', hash: '18400117140775395500' }, + { file: 'scripts/triage-bot/src/index.js', hash: '3622410874074552090' }, + { file: 'scripts/triage-bot/src/triage-bot.js', hash: '17650430027921283627' }, + { file: 'scripts/triage-bot/src/triage-bot.spec.ts', hash: '4833519488384355610' }, + { file: 'scripts/triage-bot/src/types.ts', hash: '1994322224594096886' }, + { file: 'scripts/triage-bot/triage-bot.schema.json', hash: '6056199013007068625' }, + { file: 'scripts/triage-bot/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/triage-bot/tsconfig.lib.json', hash: '3593133700658772030' }, + { file: 'scripts/triage-bot/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/merge-styles': [ + { file: 'packages/merge-styles/.eslintrc.json', hash: '7788135779233596637' }, + { file: 'packages/merge-styles/.npmignore', hash: '47056201363133096' }, + { file: 'packages/merge-styles/CHANGELOG.json', hash: '14519500364564262199' }, + { file: 'packages/merge-styles/CHANGELOG.md', hash: '5079020724245270269' }, + { file: 'packages/merge-styles/LICENSE', hash: '815830957326308777' }, + { file: 'packages/merge-styles/README.md', hash: '16105783888956655297' }, + { file: 'packages/merge-styles/config/api-extractor.json', hash: '10799316696017961032' }, + { file: 'packages/merge-styles/etc/merge-styles.api.md', hash: '4006799045914192092' }, + { file: 'packages/merge-styles/jest.config.js', hash: '3240558433730290797' }, + { file: 'packages/merge-styles/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/merge-styles/package.json', + hash: '6801726133528920040', + deps: [ + '@fluentui/set-version', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'packages/merge-styles/project.json', hash: '7472429389665071083' }, + { file: 'packages/merge-styles/src/DeepPartial.ts', hash: '15403652248930272332' }, + { file: 'packages/merge-styles/src/IKeyframes.ts', hash: '5082581657992946140' }, + { file: 'packages/merge-styles/src/IRawStyle.ts', hash: '9178367776936796482' }, + { file: 'packages/merge-styles/src/IRawStyleBase.ts', hash: '14075360098318767891' }, + { file: 'packages/merge-styles/src/IStyle.ts', hash: '16366386667546584254' }, + { file: 'packages/merge-styles/src/IStyleFunction.ts', hash: '17786864697711385839' }, + { file: 'packages/merge-styles/src/IStyleOptions.ts', hash: '3576511368376128738' }, + { file: 'packages/merge-styles/src/IStyleSet.ts', hash: '12275969819165855980' }, + { file: 'packages/merge-styles/src/ObjectOnly.ts', hash: '7192624357398241626' }, + { file: 'packages/merge-styles/src/StyleOptionsState.ts', hash: '13663652144977743975' }, + { file: 'packages/merge-styles/src/Stylesheet.test.ts', hash: '9000703876191062841' }, + { file: 'packages/merge-styles/src/Stylesheet.ts', hash: '6265891817547056926' }, + { file: 'packages/merge-styles/src/concatStyleSets.test.ts', hash: '17199879701993332183' }, + { file: 'packages/merge-styles/src/concatStyleSets.ts', hash: '6102742474386530601' }, + { file: 'packages/merge-styles/src/concatStyleSetsWithProps.test.ts', hash: '10140930549319677976' }, + { file: 'packages/merge-styles/src/concatStyleSetsWithProps.ts', hash: '17386815918035826575' }, + { file: 'packages/merge-styles/src/extractStyleParts.test.ts', hash: '12818094951126093006' }, + { file: 'packages/merge-styles/src/extractStyleParts.ts', hash: '13216560657869606108' }, + { file: 'packages/merge-styles/src/fontFace.test.ts', hash: '4830155305419350516' }, + { file: 'packages/merge-styles/src/fontFace.ts', hash: '18171437276766485053' }, + { file: 'packages/merge-styles/src/getVendorSettings.ts', hash: '17712460932352389426' }, + { file: 'packages/merge-styles/src/index.ts', hash: '2179480601942243073' }, + { file: 'packages/merge-styles/src/keyframes.test.ts', hash: '16939692635795227731' }, + { file: 'packages/merge-styles/src/keyframes.ts', hash: '15229455629128638112' }, + { file: 'packages/merge-styles/src/mergeCss.test.ts', hash: '2692449794265662204' }, + { file: 'packages/merge-styles/src/mergeCssSets.test.ts', hash: '5716085156824388044' }, + { file: 'packages/merge-styles/src/mergeStyleSets.test.ts', hash: '10196256844054668807' }, + { file: 'packages/merge-styles/src/mergeStyleSets.ts', hash: '2171161145484021112' }, + { file: 'packages/merge-styles/src/mergeStyles.test.ts', hash: '1026104081850829361' }, + { file: 'packages/merge-styles/src/mergeStyles.ts', hash: '17412756440920485348' }, + { file: 'packages/merge-styles/src/server.test.ts', hash: '6400343995946700252' }, + { file: 'packages/merge-styles/src/server.ts', hash: '6363853718485863544' }, + { file: 'packages/merge-styles/src/styleToClassName.test.ts', hash: '7801431564365181732' }, + { file: 'packages/merge-styles/src/styleToClassName.ts', hash: '3054023107822799465' }, + { file: 'packages/merge-styles/src/tokenizeWithParentheses.test.ts', hash: '18391684658944695176' }, + { file: 'packages/merge-styles/src/tokenizeWithParentheses.ts', hash: '17064764508063973069' }, + { file: 'packages/merge-styles/src/transforms/kebabRules.test.ts', hash: '5637365605019891583' }, + { file: 'packages/merge-styles/src/transforms/kebabRules.ts', hash: '7834985428724123977' }, + { file: 'packages/merge-styles/src/transforms/prefixRules.test.ts', hash: '17108740823848277505' }, + { file: 'packages/merge-styles/src/transforms/prefixRules.ts', hash: '10825527420894611070' }, + { file: 'packages/merge-styles/src/transforms/provideUnits.test.ts', hash: '3636386315637903392' }, + { file: 'packages/merge-styles/src/transforms/provideUnits.ts', hash: '8082799170974129277' }, + { file: 'packages/merge-styles/src/transforms/rtlifyRules.test.ts', hash: '339048301821636658' }, + { file: 'packages/merge-styles/src/transforms/rtlifyRules.ts', hash: '5076345400622292378' }, + { file: 'packages/merge-styles/src/version.ts', hash: '1460361919700822627' }, + { file: 'packages/merge-styles/tsconfig.json', hash: '17469839658577306420' }, + { file: 'packages/merge-styles/webpack.config.js', hash: '7491670909379831444' }, + ], + '@fluentui/keyboard-keys': [ + { file: 'packages/react-components/keyboard-keys/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/keyboard-keys/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/keyboard-keys/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/keyboard-keys/CHANGELOG.json', hash: '13375252770582910819' }, + { file: 'packages/react-components/keyboard-keys/CHANGELOG.md', hash: '11434158720079159921' }, + { file: 'packages/react-components/keyboard-keys/LICENSE', hash: '16002335077248403003' }, + { file: 'packages/react-components/keyboard-keys/README.md', hash: '5919627830079932907' }, + { + file: 'packages/react-components/keyboard-keys/bundle-size/MultipleKeyCodes.fixture.js', + hash: '16990105420210242292', + }, + { + file: 'packages/react-components/keyboard-keys/bundle-size/MultipleKeys.fixture.js', + hash: '6478992813196866639', + }, + { + file: 'packages/react-components/keyboard-keys/bundle-size/SingleKey.fixture.js', + hash: '14569573360111858150', + }, + { + file: 'packages/react-components/keyboard-keys/bundle-size/SingleKeyCode.fixture.js', + hash: '4166421080442685952', + }, + { file: 'packages/react-components/keyboard-keys/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/keyboard-keys/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/keyboard-keys/etc/keyboard-keys.api.md', hash: '2343404673575691731' }, + { file: 'packages/react-components/keyboard-keys/jest.config.js', hash: '17965212772199600814' }, + { file: 'packages/react-components/keyboard-keys/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/keyboard-keys/package.json', + hash: '14836732657023890952', + deps: [ + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/react-components/keyboard-keys/project.json', hash: '10127551444731352685' }, + { file: 'packages/react-components/keyboard-keys/src/index.ts', hash: '3130694789980667875' }, + { file: 'packages/react-components/keyboard-keys/src/keyCodes.ts', hash: '12246297791239691352' }, + { file: 'packages/react-components/keyboard-keys/src/keys.ts', hash: '16125329113468597476' }, + { file: 'packages/react-components/keyboard-keys/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/keyboard-keys/tsconfig.lib.json', hash: '14975475306433073951' }, + { file: 'packages/react-components/keyboard-keys/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/theme-designer': [ + { file: 'packages/react-components/theme-designer/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/theme-designer/.eslintrc.json', hash: '8960568516666702720' }, + { + file: 'packages/react-components/theme-designer/.storybook/docs-root-theme-designer.css', + hash: '18108071375275259207', + }, + { file: 'packages/react-components/theme-designer/.storybook/main.js', hash: '8606236827640245693' }, + { file: 'packages/react-components/theme-designer/.storybook/preview.js', hash: '1921063914901244173' }, + { file: 'packages/react-components/theme-designer/.storybook/tsconfig.json', hash: '14109446059604296292' }, + { file: 'packages/react-components/theme-designer/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/theme-designer/CHANGELOG.json', hash: '5851783219770066992' }, + { file: 'packages/react-components/theme-designer/CHANGELOG.md', hash: '8975015774552523747' }, + { file: 'packages/react-components/theme-designer/LICENSE', hash: '10180586615754479660' }, + { file: 'packages/react-components/theme-designer/README.md', hash: '14064362199792243849' }, + { file: 'packages/react-components/theme-designer/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/theme-designer/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/theme-designer/etc/theme-designer.api.md', hash: '11098378957995542872' }, + { file: 'packages/react-components/theme-designer/jest.config.js', hash: '16512775771668900261' }, + { file: 'packages/react-components/theme-designer/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/theme-designer/package.json', + hash: '7658291426595211212', + deps: [ + '@fluentui/react-alert', + '@fluentui/react-components', + '@fluentui/react-context-selector', + 'npm:@fluentui/react-icons', + '@fluentui/react-storybook-addon-export-to-sandbox', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + 'npm:@types/dedent', + 'npm:codesandbox-import-utils', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/theme-designer/project.json', hash: '2501994155968039113' }, + { file: 'packages/react-components/theme-designer/public/favicon.ico', hash: '16917280242094002623' }, + { + file: 'packages/react-components/theme-designer/src/Context/ThemeDesignerContext.tsx', + hash: '6521680253608875060', + }, + { file: 'packages/react-components/theme-designer/src/ThemeDesigner.stories.mdx', hash: '17563249137426555093' }, + { file: 'packages/react-components/theme-designer/src/ThemeDesigner.styles.ts', hash: '10646684073193415474' }, + { file: 'packages/react-components/theme-designer/src/ThemeDesigner.tsx', hash: '6850157977355746733' }, + { file: 'packages/react-components/theme-designer/src/ThemeDesigner.types.ts', hash: '7008675520752455334' }, + { file: 'packages/react-components/theme-designer/src/colors/csswg.ts', hash: '14081639457171883273' }, + { file: 'packages/react-components/theme-designer/src/colors/geometry.ts', hash: '5151745733028687223' }, + { file: 'packages/react-components/theme-designer/src/colors/hueMap.ts', hash: '6840317620183457137' }, + { file: 'packages/react-components/theme-designer/src/colors/index.ts', hash: '10120776492809956055' }, + { file: 'packages/react-components/theme-designer/src/colors/palettes.ts', hash: '594085197204633186' }, + { file: 'packages/react-components/theme-designer/src/colors/templates.ts', hash: '7173519415315531121' }, + { file: 'packages/react-components/theme-designer/src/colors/types.ts', hash: '3696924197174361435' }, + { + file: 'packages/react-components/theme-designer/src/components/ColorTokens/AccessibilityList.tsx', + hash: '13584096774872756219', + }, + { + file: 'packages/react-components/theme-designer/src/components/ColorTokens/AccessiblePairs.ts', + hash: '9980370910954070894', + }, + { + file: 'packages/react-components/theme-designer/src/components/ColorTokens/ColorTokens.stories.tsx', + hash: '17717517716066720300', + }, + { + file: 'packages/react-components/theme-designer/src/components/ColorTokens/ColorTokens.tsx', + hash: '15029148600024713618', + }, + { + file: 'packages/react-components/theme-designer/src/components/ColorTokens/TokenIssueList.tsx', + hash: '456852385357751599', + }, + { + file: 'packages/react-components/theme-designer/src/components/ColorTokens/TokenList.style.ts', + hash: '6110208615250697552', + }, + { + file: 'packages/react-components/theme-designer/src/components/ColorTokens/TokenList.tsx', + hash: '6839783308263373433', + }, + { + file: 'packages/react-components/theme-designer/src/components/ColorTokens/UsageList.ts', + hash: '6471683859253310231', + }, + { + file: 'packages/react-components/theme-designer/src/components/Content/Content.tsx', + hash: '8865181677608404415', + }, + { file: 'packages/react-components/theme-designer/src/components/Demo/Demo.tsx', hash: '9430858355440318210' }, + { + file: 'packages/react-components/theme-designer/src/components/Export/ExportLink.tsx', + hash: '7106033445972881846', + }, + { + file: 'packages/react-components/theme-designer/src/components/Export/ExportPanel.tsx', + hash: '6672747784401972674', + }, + { + file: 'packages/react-components/theme-designer/src/components/Header/Header.tsx', + hash: '1884392546660410312', + }, + { file: 'packages/react-components/theme-designer/src/components/Nav/Nav.tsx', hash: '17160060027347264573' }, + { + file: 'packages/react-components/theme-designer/src/components/Palette/Palette.stories.tsx', + hash: '6708215907448994313', + }, + { + file: 'packages/react-components/theme-designer/src/components/Palette/Palette.tsx', + hash: '4659580268217856921', + }, + { + file: 'packages/react-components/theme-designer/src/components/Sidebar/AccessibilityPanel.tsx', + hash: '6455399193904547699', + }, + { + file: 'packages/react-components/theme-designer/src/components/Sidebar/Form.tsx', + hash: '11931296187612905580', + }, + { + file: 'packages/react-components/theme-designer/src/components/Sidebar/Sidebar.tsx', + hash: '17598468332394862702', + }, + { + file: 'packages/react-components/theme-designer/src/components/TokenBoxes/TokenBoxes.stories.tsx', + hash: '9135371313045620466', + }, + { + file: 'packages/react-components/theme-designer/src/components/TokenBoxes/TokenBoxes.tsx', + hash: '13667538306866313466', + }, + { file: 'packages/react-components/theme-designer/src/index.ts', hash: '13556419056930201248' }, + { file: 'packages/react-components/theme-designer/src/utils/brandColors.ts', hash: '4703220043784343979' }, + { + file: 'packages/react-components/theme-designer/src/utils/getAccessibilityChecker.ts', + hash: '1858552788568779359', + }, + { + file: 'packages/react-components/theme-designer/src/utils/getBrandTokensFromPalette.ts', + hash: '11734162430969398099', + }, + { + file: 'packages/react-components/theme-designer/src/utils/getOverridableTokenBrandColors.ts', + hash: '13942400570012229410', + }, + { file: 'packages/react-components/theme-designer/src/utils/themeList.ts', hash: '16498805653931489221' }, + { file: 'packages/react-components/theme-designer/src/utils/toString.ts', hash: '15697896118709132521' }, + { file: 'packages/react-components/theme-designer/src/utils/useDebounce.ts', hash: '8761248074653183998' }, + { file: 'packages/react-components/theme-designer/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/theme-designer/tsconfig.lib.json', hash: '2330431448937249608' }, + { file: 'packages/react-components/theme-designer/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-18-tests-v8': [ + { file: 'apps/react-18-tests-v8/.eslintrc.json', hash: '273467718057503654' }, + { file: 'apps/react-18-tests-v8/CHANGELOG.json', hash: '5977916475780078531' }, + { file: 'apps/react-18-tests-v8/CHANGELOG.md', hash: '10718461854066933788' }, + { file: 'apps/react-18-tests-v8/README.md', hash: '15862859216428956123' }, + { file: 'apps/react-18-tests-v8/config/tests.js', hash: '14010006175392234982' }, + { file: 'apps/react-18-tests-v8/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'apps/react-18-tests-v8/jest.config.js', hash: '10470340730394489937' }, + { file: 'apps/react-18-tests-v8/just.config.ts', hash: '10393370776333958822' }, + { + file: 'apps/react-18-tests-v8/package.json', + hash: '4505824314366546808', + deps: [ + '@fluentui/react', + '@fluentui/react-hooks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-cypress', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + ], + }, + { file: 'apps/react-18-tests-v8/project.json', hash: '11648713096666160953' }, + { file: 'apps/react-18-tests-v8/src/App.tsx', hash: '13987255915692999850' }, + { + file: 'apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.cy.tsx', + hash: '17770592271590427144', + }, + { + file: 'apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.test.tsx', + hash: '14913890186636114321', + }, + { + file: 'apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.tsx', + hash: '17838905144516352385', + }, + { file: 'apps/react-18-tests-v8/src/components/ContextualMenu/index.ts', hash: '11003213546574535151' }, + { file: 'apps/react-18-tests-v8/src/components/Panel.Basic.Example.tsx', hash: '11941803416852956776' }, + { file: 'apps/react-18-tests-v8/src/components/index.ts', hash: '13495884275277437011' }, + { file: 'apps/react-18-tests-v8/src/index.tsx', hash: '2918296648402810869' }, + { file: 'apps/react-18-tests-v8/tsconfig.app.json', hash: '17704136081794340261' }, + { file: 'apps/react-18-tests-v8/tsconfig.cy.json', hash: '4669440979528425638' }, + { file: 'apps/react-18-tests-v8/tsconfig.json', hash: '12085512686550681295' }, + { file: 'apps/react-18-tests-v8/tsconfig.react-compat-check.json', hash: '5090552958223827867' }, + { file: 'apps/react-18-tests-v8/tsconfig.spec.json', hash: '13287603543641469083' }, + { file: 'apps/react-18-tests-v8/webpack.config.js', hash: '18327882615681333843' }, + ], + '@fluentui/react-utilities': [ + { file: 'packages/react-components/react-utilities/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-utilities/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-utilities/.swcrc', hash: '471348148265161299' }, + { file: 'packages/react-components/react-utilities/CHANGELOG.json', hash: '12606149671536690059' }, + { file: 'packages/react-components/react-utilities/CHANGELOG.md', hash: '5718490295303643193' }, + { file: 'packages/react-components/react-utilities/LICENSE', hash: '4548592527434132508' }, + { file: 'packages/react-components/react-utilities/README.md', hash: '13947731880378270631' }, + { + file: 'packages/react-components/react-utilities/bundle-size/SSRProvider.fixture.js', + hash: '2639532017254723484', + }, + { file: 'packages/react-components/react-utilities/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-utilities/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-utilities/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-utilities/etc/react-utilities.api.md', hash: '841069789972448649' }, + { file: 'packages/react-components/react-utilities/jest.config.js', hash: '13468661421719128629' }, + { file: 'packages/react-components/react-utilities/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-utilities/package.json', + hash: '1280488417604585260', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-shared-contexts', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-components/react-utilities/project.json', hash: '10086645969078851081' }, + { file: 'packages/react-components/react-utilities/src/compose/README.md', hash: '14625676054464334966' }, + { + file: 'packages/react-components/react-utilities/src/compose/assertSlots.test.tsx', + hash: '5114753890814650553', + }, + { file: 'packages/react-components/react-utilities/src/compose/assertSlots.ts', hash: '12263589124078345064' }, + { file: 'packages/react-components/react-utilities/src/compose/constants.ts', hash: '12568670464554309203' }, + { + file: 'packages/react-components/react-utilities/src/compose/deprecated/getSlots.test.tsx', + hash: '2001730957259217194', + }, + { + file: 'packages/react-components/react-utilities/src/compose/deprecated/getSlots.ts', + hash: '1830296453746714796', + }, + { + file: 'packages/react-components/react-utilities/src/compose/deprecated/getSlotsNext.test.tsx', + hash: '15481611158559264587', + }, + { + file: 'packages/react-components/react-utilities/src/compose/deprecated/getSlotsNext.ts', + hash: '17468126332557367034', + }, + { + file: 'packages/react-components/react-utilities/src/compose/deprecated/resolveShorthand.test.tsx', + hash: '12027460737839448450', + }, + { + file: 'packages/react-components/react-utilities/src/compose/deprecated/resolveShorthand.ts', + hash: '4085975625642820386', + }, + { + file: 'packages/react-components/react-utilities/src/compose/getIntrinsicElementProps.test.ts', + hash: '17625783833610049783', + }, + { + file: 'packages/react-components/react-utilities/src/compose/getIntrinsicElementProps.ts', + hash: '9196198849778326580', + }, + { file: 'packages/react-components/react-utilities/src/compose/index.ts', hash: '6238139875353986739' }, + { + file: 'packages/react-components/react-utilities/src/compose/isResolvedShorthand.ts', + hash: '10041723076556072661', + }, + { file: 'packages/react-components/react-utilities/src/compose/isSlot.test.tsx', hash: '1686130142285675914' }, + { file: 'packages/react-components/react-utilities/src/compose/isSlot.ts', hash: '8873396891138973958' }, + { file: 'packages/react-components/react-utilities/src/compose/slot.test.tsx', hash: '6275674688381333524' }, + { file: 'packages/react-components/react-utilities/src/compose/slot.ts', hash: '17764427704923751237' }, + { file: 'packages/react-components/react-utilities/src/compose/types.test.ts', hash: '12006846578958764927' }, + { file: 'packages/react-components/react-utilities/src/compose/types.ts', hash: '6998235074462254421' }, + { file: 'packages/react-components/react-utilities/src/events/index.ts', hash: '5494215381271956158' }, + { + file: 'packages/react-components/react-utilities/src/events/mouseTouchHelpers.test.ts', + hash: '8235155130433892375', + }, + { + file: 'packages/react-components/react-utilities/src/events/mouseTouchHelpers.ts', + hash: '7032968851854609969', + }, + { file: 'packages/react-components/react-utilities/src/hooks/index.ts', hash: '17204401905706147577' }, + { + file: 'packages/react-components/react-utilities/src/hooks/useAnimationFrame.test.ts', + hash: '5036573002543609992', + }, + { file: 'packages/react-components/react-utilities/src/hooks/useAnimationFrame.ts', hash: '46044635345141684' }, + { + file: 'packages/react-components/react-utilities/src/hooks/useBrowserTimer.test.ts', + hash: '14389068346546567828', + }, + { file: 'packages/react-components/react-utilities/src/hooks/useBrowserTimer.ts', hash: '11577709440845443589' }, + { + file: 'packages/react-components/react-utilities/src/hooks/useControllableState.test.ts', + hash: '7501091402152166732', + }, + { + file: 'packages/react-components/react-utilities/src/hooks/useControllableState.ts', + hash: '4183798484252782583', + }, + { + file: 'packages/react-components/react-utilities/src/hooks/useEventCallback.test.ts', + hash: '1424756617434420204', + }, + { file: 'packages/react-components/react-utilities/src/hooks/useEventCallback.ts', hash: '4086500801223235507' }, + { + file: 'packages/react-components/react-utilities/src/hooks/useFirstMount.test.ts', + hash: '15489772157742840375', + }, + { file: 'packages/react-components/react-utilities/src/hooks/useFirstMount.ts', hash: '10062658339272667832' }, + { file: 'packages/react-components/react-utilities/src/hooks/useForceUpdate.ts', hash: '15749428460651352441' }, + { file: 'packages/react-components/react-utilities/src/hooks/useId.test.tsx', hash: '8540968448007643942' }, + { file: 'packages/react-components/react-utilities/src/hooks/useId.ts', hash: '16791315725109884855' }, + { + file: 'packages/react-components/react-utilities/src/hooks/useIsomorphicLayoutEffect.ts', + hash: '12527101582470470210', + }, + { + file: 'packages/react-components/react-utilities/src/hooks/useMergedRefs.test.tsx', + hash: '15625524889530719378', + }, + { file: 'packages/react-components/react-utilities/src/hooks/useMergedRefs.ts', hash: '15582394188849760782' }, + { + file: 'packages/react-components/react-utilities/src/hooks/useOnClickOutside.cy.tsx', + hash: '9729146114040589542', + }, + { + file: 'packages/react-components/react-utilities/src/hooks/useOnClickOutside.test.ts', + hash: '13195861638677596652', + }, + { file: 'packages/react-components/react-utilities/src/hooks/useOnClickOutside.ts', hash: '2917971710023603742' }, + { + file: 'packages/react-components/react-utilities/src/hooks/useOnScrollOutside.cy.tsx', + hash: '111388682322343975', + }, + { + file: 'packages/react-components/react-utilities/src/hooks/useOnScrollOutside.test.ts', + hash: '4403438015055961322', + }, + { + file: 'packages/react-components/react-utilities/src/hooks/useOnScrollOutside.ts', + hash: '16339052801423405307', + }, + { file: 'packages/react-components/react-utilities/src/hooks/usePrevious.test.ts', hash: '11052424330262721985' }, + { file: 'packages/react-components/react-utilities/src/hooks/usePrevious.ts', hash: '7814650654110052238' }, + { + file: 'packages/react-components/react-utilities/src/hooks/useScrollbarWidth.ts', + hash: '18297843172923507130', + }, + { file: 'packages/react-components/react-utilities/src/hooks/useTimeout.test.ts', hash: '6143183876150228738' }, + { file: 'packages/react-components/react-utilities/src/hooks/useTimeout.ts', hash: '551248724631042442' }, + { file: 'packages/react-components/react-utilities/src/index.ts', hash: '10881091974104498336' }, + { file: 'packages/react-components/react-utilities/src/selection/index.ts', hash: '18175758767152219244' }, + { file: 'packages/react-components/react-utilities/src/selection/types.ts', hash: '7956389095795649433' }, + { + file: 'packages/react-components/react-utilities/src/selection/useSelection.test.ts', + hash: '16458769859979828472', + }, + { file: 'packages/react-components/react-utilities/src/selection/useSelection.ts', hash: '804144186603019901' }, + { + file: 'packages/react-components/react-utilities/src/ssr/SSRContext-node.test.tsx', + hash: '17839409682341273470', + }, + { file: 'packages/react-components/react-utilities/src/ssr/SSRContext.test.tsx', hash: '9881450806150617637' }, + { file: 'packages/react-components/react-utilities/src/ssr/SSRContext.tsx', hash: '1113275880901853979' }, + { file: 'packages/react-components/react-utilities/src/ssr/canUseDOM.ts', hash: '9966677476416266386' }, + { file: 'packages/react-components/react-utilities/src/ssr/index.ts', hash: '13577532512706846200' }, + { + file: 'packages/react-components/react-utilities/src/testing/mockSyntheticEvent.ts', + hash: '1212352037375346170', + }, + { + file: 'packages/react-components/react-utilities/src/trigger/applyTriggerPropsToChildren.test.tsx', + hash: '10562372782750022367', + }, + { + file: 'packages/react-components/react-utilities/src/trigger/applyTriggerPropsToChildren.ts', + hash: '7123990353661499142', + }, + { + file: 'packages/react-components/react-utilities/src/trigger/getTriggerChild.test.tsx', + hash: '8599437159744729593', + }, + { + file: 'packages/react-components/react-utilities/src/trigger/getTriggerChild.ts', + hash: '14656456857362872393', + }, + { file: 'packages/react-components/react-utilities/src/trigger/index.ts', hash: '12347105081516068977' }, + { + file: 'packages/react-components/react-utilities/src/trigger/isFluentTrigger.ts', + hash: '14723355846450886312', + }, + { file: 'packages/react-components/react-utilities/src/trigger/types.ts', hash: '14818087122904783134' }, + { file: 'packages/react-components/react-utilities/src/utils/clamp.test.ts', hash: '14460305721269143852' }, + { file: 'packages/react-components/react-utilities/src/utils/clamp.ts', hash: '5651646545287775562' }, + { + file: 'packages/react-components/react-utilities/src/utils/createSetFromIterable.ts', + hash: '5272994368316459991', + }, + { + file: 'packages/react-components/react-utilities/src/utils/getNativeElementProps.test.ts', + hash: '4200849153460230731', + }, + { + file: 'packages/react-components/react-utilities/src/utils/getNativeElementProps.ts', + hash: '11790897451229125905', + }, + { + file: 'packages/react-components/react-utilities/src/utils/getRTLSafeKey.test.ts', + hash: '4315321514077746401', + }, + { file: 'packages/react-components/react-utilities/src/utils/getRTLSafeKey.ts', hash: '10064884271406195450' }, + { + file: 'packages/react-components/react-utilities/src/utils/getReactCallbackName.test.tsx', + hash: '3201101536537757353', + }, + { + file: 'packages/react-components/react-utilities/src/utils/getReactCallbackName.ts', + hash: '6579455818455583984', + }, + { file: 'packages/react-components/react-utilities/src/utils/index.ts', hash: '13403671928297468691' }, + { + file: 'packages/react-components/react-utilities/src/utils/isHTMLElement.test.ts', + hash: '11482981990848453903', + }, + { file: 'packages/react-components/react-utilities/src/utils/isHTMLElement.ts', hash: '1282709590511722740' }, + { + file: 'packages/react-components/react-utilities/src/utils/isInteractiveHTMLElement.test.ts', + hash: '16371310108984842884', + }, + { + file: 'packages/react-components/react-utilities/src/utils/isInteractiveHTMLElement.ts', + hash: '8021585456494828017', + }, + { + file: 'packages/react-components/react-utilities/src/utils/mergeCallbacks.test.ts', + hash: '18114696197479197623', + }, + { file: 'packages/react-components/react-utilities/src/utils/mergeCallbacks.ts', hash: '798883161576461363' }, + { file: 'packages/react-components/react-utilities/src/utils/omit.test.ts', hash: '5161657923836885101' }, + { file: 'packages/react-components/react-utilities/src/utils/omit.ts', hash: '15464314669185068450' }, + { + file: 'packages/react-components/react-utilities/src/utils/priorityQueue.test.ts', + hash: '16760683918500211316', + }, + { file: 'packages/react-components/react-utilities/src/utils/priorityQueue.ts', hash: '17476738038850897309' }, + { file: 'packages/react-components/react-utilities/src/utils/properties.test.ts', hash: '18102240430945997965' }, + { file: 'packages/react-components/react-utilities/src/utils/properties.ts', hash: '11898160952975282576' }, + { + file: 'packages/react-components/react-utilities/src/virtualParent/elementContains.test.ts', + hash: '5170255865647103248', + }, + { + file: 'packages/react-components/react-utilities/src/virtualParent/elementContains.ts', + hash: '8217646841775655084', + }, + { + file: 'packages/react-components/react-utilities/src/virtualParent/getParent.test.ts', + hash: '3751432664303618425', + }, + { file: 'packages/react-components/react-utilities/src/virtualParent/getParent.ts', hash: '963679372623875089' }, + { file: 'packages/react-components/react-utilities/src/virtualParent/index.ts', hash: '4831600202384909779' }, + { + file: 'packages/react-components/react-utilities/src/virtualParent/isVirtualElement.test.ts', + hash: '14328481756165127483', + }, + { + file: 'packages/react-components/react-utilities/src/virtualParent/isVirtualElement.ts', + hash: '13999461821148654425', + }, + { + file: 'packages/react-components/react-utilities/src/virtualParent/setVirtualParent.test.ts', + hash: '15866095696536342231', + }, + { + file: 'packages/react-components/react-utilities/src/virtualParent/setVirtualParent.ts', + hash: '12573458924066224208', + }, + { file: 'packages/react-components/react-utilities/src/virtualParent/types.ts', hash: '6862881665933269116' }, + { file: 'packages/react-components/react-utilities/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-utilities/tsconfig.json', hash: '5596071008249197618' }, + { file: 'packages/react-components/react-utilities/tsconfig.lib.json', hash: '4109592473830538944' }, + { file: 'packages/react-components/react-utilities/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-colorpicker-compat': [ + { file: 'packages/react-components/react-colorpicker-compat/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-colorpicker-compat/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-colorpicker-compat/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-colorpicker-compat/LICENSE', hash: '17896713687333863732' }, + { file: 'packages/react-components/react-colorpicker-compat/README.md', hash: '8828254010565736603' }, + { + file: 'packages/react-components/react-colorpicker-compat/config/api-extractor.json', + hash: '124052868224837692', + }, + { file: 'packages/react-components/react-colorpicker-compat/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-colorpicker-compat/docs/Spec.md', hash: '7692605215066064795' }, + { + file: 'packages/react-components/react-colorpicker-compat/etc/react-colorpicker-compat.api.md', + hash: '8304047180392637752', + }, + { file: 'packages/react-components/react-colorpicker-compat/jest.config.js', hash: '11566748837314507290' }, + { file: 'packages/react-components/react-colorpicker-compat/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-colorpicker-compat/package.json', + hash: '10909466317582711840', + deps: [ + '@fluentui/react-jsx-runtime', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-colorpicker-compat/project.json', hash: '10678425435316637330' }, + { file: 'packages/react-components/react-colorpicker-compat/src/index.ts', hash: '17055841062299011540' }, + { file: 'packages/react-components/react-colorpicker-compat/tsconfig.json', hash: '11066276364833551840' }, + { file: 'packages/react-components/react-colorpicker-compat/tsconfig.lib.json', hash: '14975475306433073951' }, + { file: 'packages/react-components/react-colorpicker-compat/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/react-northstar-styles-renderer': [ + { file: 'packages/fluentui/react-northstar-styles-renderer/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-northstar-styles-renderer/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-northstar-styles-renderer/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-northstar-styles-renderer/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/react-northstar-styles-renderer/package.json', + hash: '13310199486065829792', + deps: [ + 'npm:@babel/runtime', + '@fluentui/styles', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + 'npm:lerna-alias', + 'npm:react', + ], + }, + { file: 'packages/fluentui/react-northstar-styles-renderer/project.json', hash: '8332394439489930408' }, + { file: 'packages/fluentui/react-northstar-styles-renderer/src/index.ts', hash: '17458262484157446193' }, + { file: 'packages/fluentui/react-northstar-styles-renderer/src/noopRenderer.ts', hash: '10378848867356110502' }, + { file: 'packages/fluentui/react-northstar-styles-renderer/src/types.ts', hash: '5323224652889144013' }, + { file: 'packages/fluentui/react-northstar-styles-renderer/tsconfig.json', hash: '2122159932199081123' }, + ], + '@fluentui/a11y-testing': [ + { file: 'packages/a11y-testing/.eslintrc.json', hash: '11018738359270224912' }, + { file: 'packages/a11y-testing/.npmignore', hash: '15779616407447347661' }, + { file: 'packages/a11y-testing/CHANGELOG.json', hash: '15739043855444223084' }, + { file: 'packages/a11y-testing/CHANGELOG.md', hash: '17183189538011835521' }, + { file: 'packages/a11y-testing/LICENSE', hash: '7816564243463356568' }, + { file: 'packages/a11y-testing/README.md', hash: '10607231298984649280' }, + { file: 'packages/a11y-testing/just.config.ts', hash: '2411455081002746933' }, + { + file: 'packages/a11y-testing/package.json', + hash: '10737859425586630111', + deps: [ + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + 'npm:jest', + 'npm:@testing-library/react', + 'npm:@testing-library/user-event', + 'npm:react', + ], + }, + { file: 'packages/a11y-testing/project.json', hash: '15648457560038035197' }, + { file: 'packages/a11y-testing/src/definitions/Button/buttonBehaviorDefinition.ts', hash: '7565738243156893217' }, + { + file: 'packages/a11y-testing/src/definitions/Button/buttonGroupBehaviorDefinition.ts', + hash: '3095800935524043018', + }, + { + file: 'packages/a11y-testing/src/definitions/Button/toggleButtonBehaviorDefinition.ts', + hash: '580307916176779069', + }, + { file: 'packages/a11y-testing/src/definitions/Link/linkBehaviorDefinition.ts', hash: '17397047756957383010' }, + { + file: 'packages/a11y-testing/src/definitions/MenuButton/menuButtonBehaviorDefinition.ts', + hash: '10953865562518239252', + }, + { + file: 'packages/a11y-testing/src/definitions/Pill/pillActionBehaviorDefinition.ts', + hash: '6109436761723475906', + }, + { file: 'packages/a11y-testing/src/definitions/Pill/pillBehaviorDefinition.ts', hash: '4554347345570701865' }, + { + file: 'packages/a11y-testing/src/definitions/Pill/pillGroupBehaviorDefinition.ts', + hash: '5989295955207284539', + }, + { file: 'packages/a11y-testing/src/definitions/Pill/pillIconBehaviorDefinition.ts', hash: '3073001734700112300' }, + { + file: 'packages/a11y-testing/src/definitions/Pill/pillImageBehaviorDefinition.ts', + hash: '12369440037446817587', + }, + { + file: 'packages/a11y-testing/src/definitions/Pill/pillOptionBehaviorDefinition.ts', + hash: '12091950550049802064', + }, + { file: 'packages/a11y-testing/src/definitions/Popup/popupBehaviorDefinition.ts', hash: '7515556976799700459' }, + { file: 'packages/a11y-testing/src/definitions/index.ts', hash: '8697171680261455903' }, + { + file: 'packages/a11y-testing/src/definitions/react-button/buttonAccessibilityBehaviorDefinition.ts', + hash: '7074093598013342483', + }, + { file: 'packages/a11y-testing/src/facades/ComponentTestFacade.tsx', hash: '5617571999278826429' }, + { file: 'packages/a11y-testing/src/facades/index.ts', hash: '8916232850542568642' }, + { file: 'packages/a11y-testing/src/index.ts', hash: '13336121115230139564' }, + { file: 'packages/a11y-testing/src/rules/index.ts', hash: '7218533088751468820' }, + { file: 'packages/a11y-testing/src/rules/rules.tsx', hash: '2997048678189845806' }, + { file: 'packages/a11y-testing/src/types.ts', hash: '17656570443003494391' }, + { file: 'packages/a11y-testing/src/validators/index.ts', hash: '4005811543520166967' }, + { file: 'packages/a11y-testing/src/validators/validate.ts', hash: '777267130200413044' }, + { file: 'packages/a11y-testing/tsconfig.json', hash: '8076373707397502125' }, + ], + '@fluentui/perf': [ + { file: 'packages/fluentui/perf/.eslintrc.json', hash: '12796673075337106714' }, + { file: 'packages/fluentui/perf/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/perf/babel.config.js', hash: '7654395597360391156' }, + { file: 'packages/fluentui/perf/doc/perf.md', hash: '16405507312382777299' }, + { file: 'packages/fluentui/perf/doc/perf_chart.png', hash: '7877526086333983849' }, + { file: 'packages/fluentui/perf/gulp/perf.ts', hash: '18417645318330609886' }, + { file: 'packages/fluentui/perf/gulp/shared.ts', hash: '852922162071245063' }, + { file: 'packages/fluentui/perf/gulp/webpack.config.ts', hash: '11522594695527201750' }, + { file: 'packages/fluentui/perf/gulpfile.ts', hash: '3266338574519543788' }, + { + file: 'packages/fluentui/perf/package.json', + hash: '16720766364830109335', + deps: [ + 'npm:@babel/polyfill', + '@fluentui/docs', + '@fluentui/eslint-plugin', + '@fluentui/react-northstar', + 'npm:lodash', + 'npm:minimatch', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-monorepo', + ], + }, + { file: 'packages/fluentui/perf/project.json', hash: '14841239227301538929' }, + { file: 'packages/fluentui/perf/src/globals.ts', hash: '774283950763954109' }, + { file: 'packages/fluentui/perf/src/index.html', hash: '1997664863642561261' }, + { file: 'packages/fluentui/perf/src/index.tsx', hash: '6151998969720127036' }, + { file: 'packages/fluentui/perf/tsconfig.json', hash: '339684603525678365' }, + { file: 'packages/fluentui/perf/types.ts', hash: '13985186482084305211' }, + ], + '@fluentui/scripts-puppeteer': [ + { file: 'scripts/puppeteer/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/puppeteer/jest.config.js', hash: '10929530115692286437' }, + { file: 'scripts/puppeteer/package.json', hash: '11715990510411273897' }, + { file: 'scripts/puppeteer/project.json', hash: '4445166320068989333' }, + { file: 'scripts/puppeteer/src/index.ts', hash: '764454282084297596' }, + { file: 'scripts/puppeteer/src/types.ts', hash: '957137470538575277' }, + { file: 'scripts/puppeteer/src/utils.spec.ts', hash: '13205245988193183269' }, + { file: 'scripts/puppeteer/src/utils.ts', hash: '17989793353365278853' }, + { file: 'scripts/puppeteer/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/puppeteer/tsconfig.lib.json', hash: '15222053984038389170' }, + { file: 'scripts/puppeteer/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/react-experiments': [ + { file: 'packages/react-experiments/.eslintrc.json', hash: '7788135779233596637' }, + { file: 'packages/react-experiments/.npmignore', hash: '47056201363133096' }, + { file: 'packages/react-experiments/.vscode/settings.json', hash: '16922900037095686213' }, + { file: 'packages/react-experiments/CHANGELOG.json', hash: '1759451528711803273' }, + { file: 'packages/react-experiments/CHANGELOG.md', hash: '841769307207834070' }, + { file: 'packages/react-experiments/LICENSE', hash: '13203729021017389157' }, + { file: 'packages/react-experiments/README.md', hash: '6069065823927244357' }, + { file: 'packages/react-experiments/config/pre-copy.json', hash: '5645154898618432291' }, + { file: 'packages/react-experiments/config/tests.js', hash: '1298251390361832964' }, + { file: 'packages/react-experiments/jest.config.js', hash: '8193037916930093299' }, + { file: 'packages/react-experiments/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-experiments/package.json', + hash: '8173131559828053357', + deps: [ + '@fluentui/react', + '@fluentui/theme', + 'npm:@microsoft/load-themed-styles', + '@fluentui/example-data', + '@fluentui/foundation-legacy', + '@fluentui/font-icons-mdl2', + '@fluentui/merge-styles', + '@fluentui/react-hooks', + '@fluentui/set-version', + '@fluentui/style-utilities', + '@fluentui/utilities', + 'npm:deep-assign', + 'npm:prop-types', + 'npm:tslib', + '@fluentui/common-styles', + '@fluentui/eslint-plugin', + 'npm:@types/deep-assign', + 'npm:@types/prop-types', + 'npm:@types/react-addons-test-utils', + '@fluentui/jest-serializer-merge-styles', + 'npm:react-hooks-testing-library', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + '@fluentui/scripts-webpack', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-experiments/project.json', hash: '3501476537050508852' }, + { file: 'packages/react-experiments/src/Accordion.ts', hash: '16785143114878803654' }, + { file: 'packages/react-experiments/src/Chiclet.ts', hash: '11155256979043085396' }, + { file: 'packages/react-experiments/src/CollapsibleSection.ts', hash: '2758608677691324557' }, + { file: 'packages/react-experiments/src/CommandBar.ts', hash: '6705151224568579037' }, + { file: 'packages/react-experiments/src/FloatingPeopleSuggestions.ts', hash: '15119309918904920431' }, + { file: 'packages/react-experiments/src/FloatingPeopleSuggestionsComposite.ts', hash: '1574102834641737891' }, + { file: 'packages/react-experiments/src/FloatingSuggestions.ts', hash: '4926410936868705646' }, + { file: 'packages/react-experiments/src/FloatingSuggestionsComposite.ts', hash: '2076343655190795668' }, + { file: 'packages/react-experiments/src/FolderCover.ts', hash: '7108040609502246617' }, + { file: 'packages/react-experiments/src/Foundation.ts', hash: '4347195763759381731' }, + { file: 'packages/react-experiments/src/LayoutGroup.ts', hash: '6487040189142004344' }, + { file: 'packages/react-experiments/src/MicroFeedback.ts', hash: '8888494769050870648' }, + { file: 'packages/react-experiments/src/Pagination.ts', hash: '4350794388615723689' }, + { file: 'packages/react-experiments/src/Persona.ts', hash: '11634239554265983330' }, + { file: 'packages/react-experiments/src/PersonaCoin.ts', hash: '8412453628380985510' }, + { file: 'packages/react-experiments/src/SelectedItemsList.ts', hash: '8395059039592633644' }, + { file: 'packages/react-experiments/src/Separator.ts', hash: '4641114773120917684' }, + { file: 'packages/react-experiments/src/Sidebar.ts', hash: '17768333116531200071' }, + { file: 'packages/react-experiments/src/Signals.ts', hash: '620991364519481258' }, + { file: 'packages/react-experiments/src/Slider.ts', hash: '8062765663185726667' }, + { file: 'packages/react-experiments/src/Stack.ts', hash: '7034361302360469020' }, + { file: 'packages/react-experiments/src/StaticList.ts', hash: '7488446108983563702' }, + { file: 'packages/react-experiments/src/Styling.ts', hash: '8123475635573030392' }, + { file: 'packages/react-experiments/src/Text.ts', hash: '298153759206803748' }, + { file: 'packages/react-experiments/src/Tile.ts', hash: '15115386942984335447' }, + { file: 'packages/react-experiments/src/TilesList.ts', hash: '4067127055357787810' }, + { file: 'packages/react-experiments/src/UnifiedPeoplePicker.ts', hash: '3493245017176473579' }, + { file: 'packages/react-experiments/src/UnifiedPicker.ts', hash: '7374717927815807161' }, + { file: 'packages/react-experiments/src/Utilities.ts', hash: '15929919672659535220' }, + { file: 'packages/react-experiments/src/VirtualizedList.ts', hash: '15787698144324878502' }, + { file: 'packages/react-experiments/src/common/TestImages.ts', hash: '7314752036436624417' }, + { file: 'packages/react-experiments/src/components/Accordion/Accordion.styles.ts', hash: '10103728486657545453' }, + { file: 'packages/react-experiments/src/components/Accordion/Accordion.tsx', hash: '10919603374232920421' }, + { file: 'packages/react-experiments/src/components/Accordion/Accordion.types.ts', hash: '1763826350692402116' }, + { file: 'packages/react-experiments/src/components/Accordion/index.ts', hash: '14810765027328618110' }, + { file: 'packages/react-experiments/src/components/BAFAccordion/Accordion.scss', hash: '3159494616127549602' }, + { file: 'packages/react-experiments/src/components/BAFAccordion/Accordion.tsx', hash: '13071939116549721336' }, + { + file: 'packages/react-experiments/src/components/BAFAccordion/Accordion.types.tsx', + hash: '11818567710826420017', + }, + { file: 'packages/react-experiments/src/components/BAFAccordion/index.ts', hash: '17043733982335872409' }, + { file: 'packages/react-experiments/src/components/BAFAccordion/owners.txt', hash: '3476385688937999347' }, + { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.base.tsx', hash: '3409074486319435397' }, + { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.styles.ts', hash: '8569233722529425104' }, + { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.test.tsx', hash: '6008395739054324573' }, + { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.tsx', hash: '13141819538538406114' }, + { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.types.ts', hash: '5622013660578992775' }, + { file: 'packages/react-experiments/src/components/Chiclet/ChicletCard.base.tsx', hash: '16702394850503035254' }, + { file: 'packages/react-experiments/src/components/Chiclet/ChicletCard.styles.ts', hash: '10739227742080388232' }, + { file: 'packages/react-experiments/src/components/Chiclet/ChicletCard.tsx', hash: '7902323050637313004' }, + { file: 'packages/react-experiments/src/components/Chiclet/ChicletCard.types.ts', hash: '5412841689924415351' }, + { + file: 'packages/react-experiments/src/components/Chiclet/ChicletXsmall.base.tsx', + hash: '12511258243374624230', + }, + { + file: 'packages/react-experiments/src/components/Chiclet/ChicletXsmall.styles.tsx', + hash: '11420917528936773262', + }, + { file: 'packages/react-experiments/src/components/Chiclet/ChicletXsmall.tsx', hash: '14249571087042892150' }, + { + file: 'packages/react-experiments/src/components/Chiclet/__snapshots__/Chiclet.test.tsx.snap', + hash: '6081639501010760453', + }, + { file: 'packages/react-experiments/src/components/Chiclet/index.ts', hash: '10160553347801902812' }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.state.tsx', + hash: '18322757302069591719', + }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.styles.ts', + hash: '2779693142844014460', + }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.ts', + hash: '4591584793160304813', + }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.types.ts', + hash: '14444496592959954320', + }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.view.tsx', + hash: '1782191095359759951', + }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.styles.ts', + hash: '3431138696688297563', + }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.ts', + hash: '5820505541536991668', + }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.types.ts', + hash: '13707897512874248717', + }, + { + file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.view.tsx', + hash: '13865182112328305874', + }, + { file: 'packages/react-experiments/src/components/CollapsibleSection/index.ts', hash: '6854421450006391828' }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/FloatingPeopleSuggestions.tsx', + hash: '3757060386559289795', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.scss', + hash: '3905654351229104045', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.tsx', + hash: '5377638749757585082', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/index.ts', + hash: '2813564923569936104', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.scss', + hash: '3604756766474209425', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.tsx', + hash: '381444847938224424', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.types.ts', + hash: '4632979514109731236', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/Suggestions.types.ts', + hash: '7068927902778183292', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.scss', + hash: '8577107595666309036', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.test.tsx', + hash: '15850210107969836877', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.tsx', + hash: '1708624113233746184', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsCore.scss', + hash: '1212577356362130966', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsCore.tsx', + hash: '13870857510612252988', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.styles.ts', + hash: '17338743388339628589', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.tsx', + hash: '11715318481696458315', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.types.ts', + hash: '11160815825282002971', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsStore.ts', + hash: '13386259745322524879', + }, + { file: 'packages/react-experiments/src/components/FloatingSuggestions/index.ts', hash: '17810609914691297881' }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestionItems/SuggestionItemDefault.styles.ts', + hash: '4743105042530766310', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestionItems/SuggestionItemDefault.tsx', + hash: '3453583868207626678', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestions.tsx', + hash: '13050158639049570556', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestions.types.ts', + hash: '12837034505758908897', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.styles.ts', + hash: '16302313942165176658', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.tsx', + hash: '10782913239539786536', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.types.ts', + hash: '11084868562405984032', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsComposite.test.tsx', + hash: '12982544863657252401', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.styles.ts', + hash: '1111839729707920702', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.tsx', + hash: '7254408377977084011', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.types.ts', + hash: '1703025396759223111', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.styles.ts', + hash: '7000086168349821996', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.tsx', + hash: '15765347135995471597', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.types.ts', + hash: '2183956652895868185', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.styles.ts', + hash: '15453606984512324352', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.tsx', + hash: '10271927908577936066', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.types.ts', + hash: '11125748956408054438', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/__snapshots__/FloatingSuggestionsComposite.test.tsx.snap', + hash: '9917759799883970820', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/index.ts', + hash: '3574819925110002578', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/utils/getNextSuggestionIndex.ts', + hash: '11830895391681216780', + }, + { + file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/utils/getPreviousSuggestionIndex.ts', + hash: '8265911307876280394', + }, + { file: 'packages/react-experiments/src/components/FolderCover/FolderCover.scss', hash: '12904864827355527393' }, + { file: 'packages/react-experiments/src/components/FolderCover/FolderCover.tsx', hash: '5241141501904891354' }, + { + file: 'packages/react-experiments/src/components/FolderCover/FolderCover.types.ts', + hash: '15996641639839082729', + }, + { file: 'packages/react-experiments/src/components/FolderCover/index.ts', hash: '1965305132211953917' }, + { + file: 'packages/react-experiments/src/components/FolderCover/initializeFolderCovers.tsx', + hash: '7166539941536670708', + }, + { file: 'packages/react-experiments/src/components/LayoutGroup/LayoutGroup.tsx', hash: '11503592609729761699' }, + { + file: 'packages/react-experiments/src/components/LayoutGroup/LayoutGroup.types.ts', + hash: '11477832012990329444', + }, + { file: 'packages/react-experiments/src/components/LayoutGroup/index.ts', hash: '4937009151180128495' }, + { + file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.state.ts', + hash: '8558097265940582588', + }, + { + file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.styles.ts', + hash: '3664376394785762021', + }, + { + file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.test.tsx', + hash: '16693792913876566657', + }, + { + file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.tsx', + hash: '6201110364847208132', + }, + { + file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.types.ts', + hash: '3034977262470562098', + }, + { + file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.view.tsx', + hash: '8949946573282186190', + }, + { + file: 'packages/react-experiments/src/components/MicroFeedback/__snapshots__/MicroFeedback.test.tsx.snap', + hash: '10058342721573506314', + }, + { file: 'packages/react-experiments/src/components/MicroFeedback/index.ts', hash: '13677606644297986230' }, + { file: 'packages/react-experiments/src/components/Pagination/PageNumber.tsx', hash: '4546005481250467622' }, + { + file: 'packages/react-experiments/src/components/Pagination/PageNumber.types.ts', + hash: '18320997077151981120', + }, + { + file: 'packages/react-experiments/src/components/Pagination/Pagination.base.tsx', + hash: '10087620027863872208', + }, + { + file: 'packages/react-experiments/src/components/Pagination/Pagination.styles.ts', + hash: '12065043136280449004', + }, + { file: 'packages/react-experiments/src/components/Pagination/Pagination.test.tsx', hash: '2308659567326285802' }, + { file: 'packages/react-experiments/src/components/Pagination/Pagination.tsx', hash: '6872288120100005013' }, + { file: 'packages/react-experiments/src/components/Pagination/Pagination.types.ts', hash: '4670107751414484026' }, + { + file: 'packages/react-experiments/src/components/Pagination/__snapshots__/Pagination.test.tsx.snap', + hash: '535135098638587946', + }, + { file: 'packages/react-experiments/src/components/Pagination/index.ts', hash: '17421102762909672330' }, + { file: 'packages/react-experiments/src/components/Persona/Persona.tsx', hash: '7714910874570066235' }, + { file: 'packages/react-experiments/src/components/Persona/Persona.types.ts', hash: '2581738252277925013' }, + { + file: 'packages/react-experiments/src/components/Persona/PersonaText/PersonaText.tsx', + hash: '5859930998899639965', + }, + { file: 'packages/react-experiments/src/components/Persona/PersonaText/index.ts', hash: '12160704872550378359' }, + { + file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.styles.ts', + hash: '486193162841061838', + }, + { + file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.test.tsx', + hash: '11707248106656605624', + }, + { + file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.ts', + hash: '44114845465802009', + }, + { + file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.types.ts', + hash: '9606945673643607753', + }, + { + file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.view.tsx', + hash: '13016462774222819904', + }, + { + file: 'packages/react-experiments/src/components/Persona/Vertical/__snapshots__/VerticalPersona.test.tsx.snap', + hash: '13220328470775192500', + }, + { file: 'packages/react-experiments/src/components/Persona/index.ts', hash: '6348331949361760859' }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.state.ts', + hash: '8710872931461018024', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.styles.ts', + hash: '9772456920698375671', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.test.tsx', + hash: '12048974165692997332', + }, + { file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.ts', hash: '12724479649793425338' }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.types.ts', + hash: '12490952391090838709', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.view.tsx', + hash: '11386862964080294929', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/PersonaCoinImage.tsx', + hash: '381924212602934673', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/PersonaCoinImage.types.ts', + hash: '13914464509117049729', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/index.ts', + hash: '17897665529387283662', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinInitials/PersonaCoinInitials.tsx', + hash: '8356149681486052893', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinSize10/PersonaCoinSize10.tsx', + hash: '17367608678914536633', + }, + { + file: 'packages/react-experiments/src/components/PersonaCoin/__snapshots__/PersonaCoin.test.tsx.snap', + hash: '14084163329842627549', + }, + { file: 'packages/react-experiments/src/components/PersonaCoin/index.ts', hash: '4690765837432319189' }, + { file: 'packages/react-experiments/src/components/PersonaCoin/propHelpers.ts', hash: '11515578808103658372' }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/Items/CopyableItem.tsx', + hash: '4460092286991826468', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/Items/EditableItem.tsx', + hash: '1506153315791396911', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/Items/ItemTrigger.types.ts', + hash: '1066552443382932370', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/Items/ItemWithContextMenu.tsx', + hash: '9212113507745444261', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/Items/TriggerOnContextMenu.tsx', + hash: '1936797453681473708', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/Items/index.ts', + hash: '1847408114707276401', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.scss', + hash: '2123961347839935533', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.tsx', + hash: '11599018992220337350', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.test.tsx', + hash: '10026648953646638887', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.tsx', + hash: '6459558609762136724', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.types.ts', + hash: '2686034838864743834', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.styles.ts', + hash: '16362109281402062667', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.tsx', + hash: '4174472656133855628', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.types.ts', + hash: '10640929694904910998', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.test.tsx', + hash: '5076323846252697640', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.tsx', + hash: '1942004760255062545', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/__snapshots__/SelectedPeopleList.test.tsx.snap', + hash: '13037658191009713151', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/index.ts', + hash: '10546884526866399704', + }, + { + file: 'packages/react-experiments/src/components/SelectedItemsList/__snapshots__/SelectedItemsList.test.tsx.snap', + hash: '15353071673818879597', + }, + { file: 'packages/react-experiments/src/components/SelectedItemsList/index.ts', hash: '11969545535632613866' }, + { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.classNames.tsx', hash: '7010893654002625166' }, + { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.styles.tsx', hash: '13754931327925901039' }, + { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.test.tsx', hash: '14465723933222876442' }, + { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.tsx', hash: '52139508622844580' }, + { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.types.tsx', hash: '331900337538358997' }, + { + file: 'packages/react-experiments/src/components/Sidebar/SidebarButton.styles.tsx', + hash: '4173292561399305330', + }, + { file: 'packages/react-experiments/src/components/Sidebar/SidebarButton.tsx', hash: '4286211183338076407' }, + { file: 'packages/react-experiments/src/components/Sidebar/index.ts', hash: '10615726587843841544' }, + { file: 'packages/react-experiments/src/components/Slider/Slider.base.tsx', hash: '4429192687504958983' }, + { file: 'packages/react-experiments/src/components/Slider/Slider.styles.tsx', hash: '4479449330147508383' }, + { file: 'packages/react-experiments/src/components/Slider/Slider.test.tsx', hash: '4966249706265165218' }, + { file: 'packages/react-experiments/src/components/Slider/Slider.tsx', hash: '10723765216778814719' }, + { file: 'packages/react-experiments/src/components/Slider/Slider.types.ts', hash: '13593910734039395002' }, + { + file: 'packages/react-experiments/src/components/Slider/__snapshots__/Slider.test.tsx.snap', + hash: '6166737303082448600', + }, + { file: 'packages/react-experiments/src/components/Slider/index.ts', hash: '16426302468400422346' }, + { file: 'packages/react-experiments/src/components/StaticList/List.types.ts', hash: '13029505571285717375' }, + { file: 'packages/react-experiments/src/components/StaticList/StaticList.scss', hash: '6418642908294752521' }, + { file: 'packages/react-experiments/src/components/StaticList/StaticList.tsx', hash: '641714830964085194' }, + { + file: 'packages/react-experiments/src/components/StaticList/StaticList.types.ts', + hash: '10427582978882602229', + }, + { file: 'packages/react-experiments/src/components/StaticList/index.ts', hash: '14396733320191333641' }, + { file: 'packages/react-experiments/src/components/Tile/Check.scss', hash: '17140661851251461349' }, + { + file: 'packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.base.tsx', + hash: '13442204835589282229', + }, + { + file: 'packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.styles.ts', + hash: '8193484691228559393', + }, + { + file: 'packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.tsx', + hash: '6580041504660615377', + }, + { + file: 'packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.types.ts', + hash: '4381964922523372138', + }, + { file: 'packages/react-experiments/src/components/Tile/Tile.scss', hash: '7384527406222800300' }, + { file: 'packages/react-experiments/src/components/Tile/Tile.tsx', hash: '18267954738149232245' }, + { file: 'packages/react-experiments/src/components/Tile/Tile.types.ts', hash: '18099294555385488476' }, + { file: 'packages/react-experiments/src/components/Tile/index.ts', hash: '12634420449656108817' }, + { file: 'packages/react-experiments/src/components/TilesList/TilesList.scss', hash: '842071301340357996' }, + { file: 'packages/react-experiments/src/components/TilesList/TilesList.tsx', hash: '10430063901723355839' }, + { file: 'packages/react-experiments/src/components/TilesList/TilesList.types.ts', hash: '17504993610037147225' }, + { file: 'packages/react-experiments/src/components/TilesList/index.ts', hash: '9841529760922503529' }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.test.tsx', + hash: '3517327827280940319', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.tsx', + hash: '14506214779457586241', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.types.ts', + hash: '1543295232261040062', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/__snapshots__/UnifiedPeoplePicker.test.tsx.snap', + hash: '7774749062177847028', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.styles.ts', + hash: '15570590120604449971', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.test.tsx', + hash: '8424483237745143282', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.tsx', + hash: '3366336271139962794', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.types.ts', + hash: '14552322759660156163', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/__snapshots__/UnifiedPicker.test.tsx.snap', + hash: '7297314502332383484', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/hooks/useFloatingSuggestionItems.ts', + hash: '1758471814706513672', + }, + { + file: 'packages/react-experiments/src/components/UnifiedPicker/hooks/useSelectedItems.ts', + hash: '5077487519667132696', + }, + { file: 'packages/react-experiments/src/components/UnifiedPicker/index.ts', hash: '6262690888054952770' }, + { + file: 'packages/react-experiments/src/components/VirtualizedList/VirtualizedList.scss', + hash: '4311027338679150061', + }, + { + file: 'packages/react-experiments/src/components/VirtualizedList/VirtualizedList.test.tsx', + hash: '6172968722546270192', + }, + { + file: 'packages/react-experiments/src/components/VirtualizedList/VirtualizedList.tsx', + hash: '4533817653005411344', + }, + { + file: 'packages/react-experiments/src/components/VirtualizedList/VirtualizedList.types.ts', + hash: '17801838772746123231', + }, + { + file: 'packages/react-experiments/src/components/VirtualizedList/__snapshots__/VirtualizedList.test.tsx.snap', + hash: '14732020310207096293', + }, + { file: 'packages/react-experiments/src/components/VirtualizedList/index.ts', hash: '135447240498174383' }, + { file: 'packages/react-experiments/src/components/fluent/FluentColors.ts', hash: '225500492131065146' }, + { file: 'packages/react-experiments/src/components/fluent/FluentDepths.ts', hash: '6148133275576816574' }, + { file: 'packages/react-experiments/src/components/fluent/FluentMotion.ts', hash: '11714246076652372730' }, + { file: 'packages/react-experiments/src/components/fluent/FluentTheme.ts', hash: '8840513458027493895' }, + { file: 'packages/react-experiments/src/components/fluent/FluentType.ts', hash: '17693899800607942246' }, + { file: 'packages/react-experiments/src/components/signals/Signal.scss', hash: '16352737707440812602' }, + { file: 'packages/react-experiments/src/components/signals/Signal.tsx', hash: '14827070792321820050' }, + { file: 'packages/react-experiments/src/components/signals/SignalField.scss', hash: '14738164499262173795' }, + { file: 'packages/react-experiments/src/components/signals/SignalField.tsx', hash: '18433200084518909301' }, + { file: 'packages/react-experiments/src/components/signals/Signals.Props.ts', hash: '11137791629269371778' }, + { file: 'packages/react-experiments/src/components/signals/Signals.scss', hash: '12630874552248492839' }, + { file: 'packages/react-experiments/src/components/signals/Signals.tsx', hash: '5541756948576717681' }, + { file: 'packages/react-experiments/src/index.ts', hash: '8087115123738644940' }, + { file: 'packages/react-experiments/src/utilities/factoryComponents.tsx', hash: '16120135515651635803' }, + { file: 'packages/react-experiments/src/utilities/factoryComponents.types.tsx', hash: '17345407460455718193' }, + { file: 'packages/react-experiments/src/utilities/scrolling/ScrollContainer.scss', hash: '1448566863525499310' }, + { file: 'packages/react-experiments/src/utilities/scrolling/ScrollContainer.tsx', hash: '9543898172760502245' }, + { + file: 'packages/react-experiments/src/utilities/scrolling/ScrollContainer.types.ts', + hash: '5510579575255177883', + }, + { file: 'packages/react-experiments/src/utilities/scrolling/index.ts', hash: '14000842761119700127' }, + { file: 'packages/react-experiments/src/utilities/textHelpers.ts', hash: '8358896990955050500' }, + { file: 'packages/react-experiments/src/version.ts', hash: '3147508813634178729' }, + { file: 'packages/react-experiments/tsconfig.json', hash: '4921836023195560350' }, + { file: 'packages/react-experiments/webpack.config.js', hash: '13362749979705105070' }, + { file: 'packages/react-experiments/webpack.serve.config.js', hash: '7443825724669908634' }, + ], + '@fluentui/vr-tests-react-components': [ + { file: 'apps/vr-tests-react-components/.eslintrc.json', hash: '17051087815880730676' }, + { file: 'apps/vr-tests-react-components/.storybook/main.js', hash: '16447464207126584132' }, + { file: 'apps/vr-tests-react-components/.storybook/manager.js', hash: '8031267414392898657' }, + { file: 'apps/vr-tests-react-components/.storybook/preview.js', hash: '1405562776238959726' }, + { file: 'apps/vr-tests-react-components/CHANGELOG.json', hash: '8713462158622485954' }, + { file: 'apps/vr-tests-react-components/CHANGELOG.md', hash: '922481796685944490' }, + { file: 'apps/vr-tests-react-components/jest.config.js', hash: '18250610868151833128' }, + { file: 'apps/vr-tests-react-components/just.config.ts', hash: '10393370776333958822' }, + { + file: 'apps/vr-tests-react-components/package.json', + hash: '15467568357846093319', + deps: [ + '@fluentui/react-accordion', + '@fluentui/react-avatar', + '@fluentui/react-badge', + '@fluentui/react-button', + '@fluentui/react-calendar-compat', + '@fluentui/react-card', + '@fluentui/react-checkbox', + '@fluentui/react-combobox', + '@fluentui/react-context-selector', + '@fluentui/react-datepicker-compat', + '@fluentui/react-dialog', + '@fluentui/react-divider', + '@fluentui/react-drawer', + '@fluentui/react-field', + 'npm:@fluentui/react-icons', + '@fluentui/react-image', + '@fluentui/react-infolabel', + '@fluentui/react-input', + '@fluentui/react-label', + '@fluentui/react-link', + '@fluentui/react-menu', + '@fluentui/react-message-bar', + '@fluentui/react-persona', + '@fluentui/react-popover', + '@fluentui/react-portal', + '@fluentui/react-positioning', + '@fluentui/react-progress', + '@fluentui/react-provider', + '@fluentui/react-radio', + '@fluentui/react-search-preview', + '@fluentui/react-select', + '@fluentui/react-shared-contexts', + '@fluentui/react-skeleton', + '@fluentui/react-slider', + '@fluentui/react-spinner', + '@fluentui/react-spinbutton', + '@fluentui/react-storybook-addon', + '@fluentui/react-storybook-addon-export-to-sandbox', + '@fluentui/react-switch', + '@fluentui/react-table', + '@fluentui/react-tabs', + '@fluentui/react-tags', + '@fluentui/react-text', + '@fluentui/react-textarea', + '@fluentui/react-theme', + '@fluentui/react-timepicker-compat-preview', + '@fluentui/react-toast', + '@fluentui/react-tooltip', + '@fluentui/react-toolbar', + '@fluentui/react-tree', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:react', + 'npm:react-dom', + 'npm:tslib', + '@fluentui/react-breadcrumb', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + '@fluentui/scripts-storybook', + ], + }, + { file: 'apps/vr-tests-react-components/project.json', hash: '17568527081165183056' }, + { + file: 'apps/vr-tests-react-components/src/stories/Accordion/Accordion.stories.tsx', + hash: '10802056647365454387', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Accordion/AccordionFocusInteractions.stories.tsx', + hash: '12477522633746407895', + }, + { file: 'apps/vr-tests-react-components/src/stories/Avatar.stories.tsx', hash: '11835834961897487764' }, + { file: 'apps/vr-tests-react-components/src/stories/AvatarGroup.stories.tsx', hash: '4929814886456362496' }, + { + file: 'apps/vr-tests-react-components/src/stories/Badge/BadgeAppearance.stories.tsx', + hash: '10168539343704943738', + }, + { file: 'apps/vr-tests-react-components/src/stories/Badge/BadgeSize.stories.tsx', hash: '16160796655612161127' }, + { file: 'apps/vr-tests-react-components/src/stories/Badge/utils.ts', hash: '6118267633036591097' }, + { + file: 'apps/vr-tests-react-components/src/stories/Breadcrumb/Breadcrumb.stories.tsx', + hash: '17471728733473708203', + }, + { file: 'apps/vr-tests-react-components/src/stories/Breadcrumb/utils.tsx', hash: '8994666879173275795' }, + { file: 'apps/vr-tests-react-components/src/stories/Button/Button.stories.tsx', hash: '8952848022067892547' }, + { + file: 'apps/vr-tests-react-components/src/stories/Button/CompoundButton.stories.tsx', + hash: '5035074194925427883', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Button/CompoundButtonDefault.stories.tsx', + hash: '1305553845183934325', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Button/MenuButton.stories.tsx', + hash: '13965237860398268503', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Button/ToggleButton.stories.tsx', + hash: '893838250947943192', + }, + { file: 'apps/vr-tests-react-components/src/stories/Button/utils.ts', hash: '17518265861498153706' }, + { file: 'apps/vr-tests-react-components/src/stories/Card/Card.stories.tsx', hash: '14477985068019565096' }, + { + file: 'apps/vr-tests-react-components/src/stories/Card/CardInteractive.stories.tsx', + hash: '186550975270387769', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Card/CardSelectable.stories.tsx', + hash: '5785195401617980058', + }, + { file: 'apps/vr-tests-react-components/src/stories/Card/utils.tsx', hash: '5969705096698007032' }, + { file: 'apps/vr-tests-react-components/src/stories/Checkbox.stories.tsx', hash: '14302551104030304517' }, + { file: 'apps/vr-tests-react-components/src/stories/Combobox.stories.tsx', hash: '4653018683490688054' }, + { + file: 'apps/vr-tests-react-components/src/stories/CounterBadge/CounterBadge.stories.tsx', + hash: '239199618520874280', + }, + { file: 'apps/vr-tests-react-components/src/stories/CustomStyleHooks.stories.tsx', hash: '236060052935181185' }, + { file: 'apps/vr-tests-react-components/src/stories/DatePickerCompat.stories.tsx', hash: '6549687002867576038' }, + { file: 'apps/vr-tests-react-components/src/stories/Dialog/Dialog.stories.tsx', hash: '10532256696189809745' }, + { file: 'apps/vr-tests-react-components/src/stories/Divider.stories.tsx', hash: '7482775426741585443' }, + { file: 'apps/vr-tests-react-components/src/stories/Drawer/Drawer.stories.tsx', hash: '5294822480024344223' }, + { file: 'apps/vr-tests-react-components/src/stories/Dropdown.stories.tsx', hash: '5679345717914244801' }, + { file: 'apps/vr-tests-react-components/src/stories/Field.stories.tsx', hash: '2654387542189040184' }, + { file: 'apps/vr-tests-react-components/src/stories/Image/Image.stories.tsx', hash: '9028033951370882415' }, + { file: 'apps/vr-tests-react-components/src/stories/InfoLabel.stories.tsx', hash: '9018757720315450699' }, + { file: 'apps/vr-tests-react-components/src/stories/Input.stories.tsx', hash: '6082880859858442107' }, + { file: 'apps/vr-tests-react-components/src/stories/Label.stories.tsx', hash: '7365811914943309065' }, + { file: 'apps/vr-tests-react-components/src/stories/Link.stories.tsx', hash: '11164254909120924736' }, + { file: 'apps/vr-tests-react-components/src/stories/MakeStyles.stories.tsx', hash: '5374078103145095337' }, + { file: 'apps/vr-tests-react-components/src/stories/Menu/Menu.stories.tsx', hash: '662425745359612659' }, + { + file: 'apps/vr-tests-react-components/src/stories/Menu/NestedMenuSmallViewportFlipped.stories.tsx', + hash: '4207061815563668430', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Menu/NestedMenuSmallViewportStacked.stories.tsx', + hash: '10843562005475523999', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Menu/ScrollableMenuSmallViewport.stories.tsx', + hash: '13072984958963346506', + }, + { file: 'apps/vr-tests-react-components/src/stories/Menu/index.stories.tsx', hash: '1566494951297209959' }, + { + file: 'apps/vr-tests-react-components/src/stories/MessageBar/MessageBar.stories.tsx', + hash: '15938873440241031592', + }, + { file: 'apps/vr-tests-react-components/src/stories/Persona.stories.tsx', hash: '5574790192439785115' }, + { file: 'apps/vr-tests-react-components/src/stories/Popover.stories.tsx', hash: '9052399005531340378' }, + { file: 'apps/vr-tests-react-components/src/stories/Portal.stories.tsx', hash: '1005202949174245424' }, + { file: 'apps/vr-tests-react-components/src/stories/Positioning.stories.tsx', hash: '7715953737126353587' }, + { file: 'apps/vr-tests-react-components/src/stories/PresenceBadge.stories.tsx', hash: '2647256473336266202' }, + { file: 'apps/vr-tests-react-components/src/stories/ProgressBar.stories.tsx', hash: '10031985096183867134' }, + { file: 'apps/vr-tests-react-components/src/stories/Radio.stories.tsx', hash: '9787853735635171255' }, + { file: 'apps/vr-tests-react-components/src/stories/SearchBox.stories.tsx', hash: '6689146726273525192' }, + { file: 'apps/vr-tests-react-components/src/stories/Select.stories.tsx', hash: '13570490118904764464' }, + { + file: 'apps/vr-tests-react-components/src/stories/ShadowDOM/ShadowDOMDefault.stories.tsx', + hash: '5123752633212812486', + }, + { + file: 'apps/vr-tests-react-components/src/stories/ShadowDOM/ShadowDOMPortal.stories.tsx', + hash: '3054045323519028786', + }, + { file: 'apps/vr-tests-react-components/src/stories/ShadowDOM/index.stories.tsx', hash: '14320345630061803079' }, + { file: 'apps/vr-tests-react-components/src/stories/ShadowDOM/utils.tsx', hash: '1966017359067066561' }, + { file: 'apps/vr-tests-react-components/src/stories/Skeleton.stories.tsx', hash: '10611661155375095131' }, + { file: 'apps/vr-tests-react-components/src/stories/Slider.stories.tsx', hash: '7314685389185684835' }, + { file: 'apps/vr-tests-react-components/src/stories/SpinButton.stories.tsx', hash: '9292538058178901686' }, + { file: 'apps/vr-tests-react-components/src/stories/Spinner.stories.tsx', hash: '2744820722201482553' }, + { file: 'apps/vr-tests-react-components/src/stories/Switch.stories.tsx', hash: '14911403922953624770' }, + { file: 'apps/vr-tests-react-components/src/stories/Table.stories.tsx', hash: '1638611668631605166' }, + { file: 'apps/vr-tests-react-components/src/stories/Tabs.stories.tsx', hash: '13601518669064467851' }, + { + file: 'apps/vr-tests-react-components/src/stories/Tag/InteractionTag.stories.tsx', + hash: '4840942032152646191', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Tag/InteractionTagAppearances.stories.tsx', + hash: '8980561851146009031', + }, + { + file: 'apps/vr-tests-react-components/src/stories/Tag/InteractionTagShape.stories.tsx', + hash: '4929897156362970104', + }, + { file: 'apps/vr-tests-react-components/src/stories/Tag/Tag.stories.tsx', hash: '12870879108242600931' }, + { + file: 'apps/vr-tests-react-components/src/stories/Tag/TagAppearances.stories.tsx', + hash: '15571718618318180513', + }, + { file: 'apps/vr-tests-react-components/src/stories/Tag/TagGroup.stories.tsx', hash: '16134648819693825642' }, + { file: 'apps/vr-tests-react-components/src/stories/Tag/TagShape.stories.tsx', hash: '12356360998116909355' }, + { file: 'apps/vr-tests-react-components/src/stories/Text.stories.tsx', hash: '2693658843261750616' }, + { file: 'apps/vr-tests-react-components/src/stories/Textarea.stories.tsx', hash: '10747023707033333684' }, + { file: 'apps/vr-tests-react-components/src/stories/TimePicker.stories.tsx', hash: '16205435768899076152' }, + { file: 'apps/vr-tests-react-components/src/stories/Toast/Toast.stories.tsx', hash: '17283697070771380505' }, + { file: 'apps/vr-tests-react-components/src/stories/Toolbar/Toolbar.stories.tsx', hash: '1049562789492471246' }, + { file: 'apps/vr-tests-react-components/src/stories/Toolbar/utils.ts', hash: '17710412857489277107' }, + { file: 'apps/vr-tests-react-components/src/stories/Tooltip.stories.tsx', hash: '2877402368872042170' }, + { file: 'apps/vr-tests-react-components/src/stories/Tree.stories.tsx', hash: '8798218328353603049' }, + { file: 'apps/vr-tests-react-components/src/utilities/TestWrapperDecorator.tsx', hash: '17367712127918236987' }, + { file: 'apps/vr-tests-react-components/src/utilities/getStoryVariant.ts', hash: '306062868073991727' }, + { file: 'apps/vr-tests-react-components/src/utilities/index.ts', hash: '4163392530867960544' }, + { file: 'apps/vr-tests-react-components/src/utilities/types.ts', hash: '12540806464937045320' }, + { file: 'apps/vr-tests-react-components/src/utilities/utilities.test.tsx', hash: '12678737986393557967' }, + { file: 'apps/vr-tests-react-components/src/utilities/withStoryWrightSteps.tsx', hash: '9632377530298948430' }, + { file: 'apps/vr-tests-react-components/tsconfig.json', hash: '14896982538111972183' }, + ], + '@fluentui/react-checkbox': [ + { file: 'packages/react-components/react-checkbox/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-checkbox/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-checkbox/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-checkbox/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-checkbox/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-checkbox/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-checkbox/CHANGELOG.json', hash: '6251263507773022820' }, + { file: 'packages/react-components/react-checkbox/CHANGELOG.md', hash: '1862977653705488160' }, + { file: 'packages/react-components/react-checkbox/LICENSE', hash: '11993684871533073860' }, + { file: 'packages/react-components/react-checkbox/README.md', hash: '14475892364465331260' }, + { file: 'packages/react-components/react-checkbox/bundle-size/Checkbox.fixture.js', hash: '9856851692934806951' }, + { file: 'packages/react-components/react-checkbox/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-checkbox/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-checkbox/docs/MIGRATION.md', hash: '17821656469887470547' }, + { file: 'packages/react-components/react-checkbox/docs/Spec.md', hash: '800448152257069737' }, + { file: 'packages/react-components/react-checkbox/etc/react-checkbox.api.md', hash: '6742814156489691658' }, + { file: 'packages/react-components/react-checkbox/jest.config.js', hash: '2828201757173184213' }, + { file: 'packages/react-components/react-checkbox/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-checkbox/package.json', + hash: '13472705379965958285', + deps: [ + '@fluentui/react-field', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-label', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-checkbox/project.json', hash: '9606278957344776446' }, + { file: 'packages/react-components/react-checkbox/src/Checkbox.ts', hash: '15174834295790980707' }, + { + file: 'packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.test.tsx', + hash: '8211270012158977067', + }, + { + file: 'packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.tsx', + hash: '15421247335816478745', + }, + { + file: 'packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.types.ts', + hash: '7638085825644002506', + }, + { + file: 'packages/react-components/react-checkbox/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap', + hash: '18216818328841741726', + }, + { + file: 'packages/react-components/react-checkbox/src/components/Checkbox/index.ts', + hash: '15121887018938208362', + }, + { + file: 'packages/react-components/react-checkbox/src/components/Checkbox/renderCheckbox.tsx', + hash: '12658297094559328876', + }, + { + file: 'packages/react-components/react-checkbox/src/components/Checkbox/useCheckbox.tsx', + hash: '17250806306955700270', + }, + { + file: 'packages/react-components/react-checkbox/src/components/Checkbox/useCheckboxStyles.styles.ts', + hash: '1839450190559183146', + }, + { file: 'packages/react-components/react-checkbox/src/index.ts', hash: '15785934890379634251' }, + { file: 'packages/react-components/react-checkbox/src/testing/isConformant.ts', hash: '17159661999478583888' }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxChecked.stories.tsx', + hash: '3038686077884136197', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxCircular.stories.tsx', + hash: '17609452160533925883', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxDefault.stories.tsx', + hash: '1331911594678712826', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxDisabled.stories.tsx', + hash: '10626006350267777410', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxLabelBefore.stories.tsx', + hash: '2830523750214014197', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxLabelWrapping.stories.tsx', + hash: '10579880296711360605', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxLarge.stories.tsx', + hash: '12315598358509648828', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxMixed.stories.tsx', + hash: '16393572027865684906', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxRequired.stories.tsx', + hash: '17304011180749936418', + }, + { + file: 'packages/react-components/react-checkbox/stories/Checkbox/index.stories.tsx', + hash: '13443276241766089166', + }, + { file: 'packages/react-components/react-checkbox/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-checkbox/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-checkbox/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-tooltip': [ + { file: 'packages/react-components/react-tooltip/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-tooltip/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-tooltip/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-tooltip/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-tooltip/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-tooltip/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-tooltip/CHANGELOG.json', hash: '3662493496073081408' }, + { file: 'packages/react-components/react-tooltip/CHANGELOG.md', hash: '10310449083261891923' }, + { file: 'packages/react-components/react-tooltip/LICENSE', hash: '9763231512341770511' }, + { file: 'packages/react-components/react-tooltip/README.md', hash: '661874467406925808' }, + { file: 'packages/react-components/react-tooltip/bundle-size/Tooltip.fixture.js', hash: '9177557631885470146' }, + { file: 'packages/react-components/react-tooltip/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-tooltip/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-tooltip/docs/MIGRATION.md', hash: '5365591817175551380' }, + { file: 'packages/react-components/react-tooltip/docs/Spec.md', hash: '17197430516596177065' }, + { file: 'packages/react-components/react-tooltip/etc/react-tooltip.api.md', hash: '2714968178754266809' }, + { file: 'packages/react-components/react-tooltip/jest.config.js', hash: '17702233081399248314' }, + { file: 'packages/react-components/react-tooltip/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-tooltip/package.json', + hash: '16144738716875989028', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-jsx-runtime', + '@fluentui/react-portal', + '@fluentui/react-positioning', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-tooltip/project.json', hash: '2551932128317709476' }, + { file: 'packages/react-components/react-tooltip/src/Tooltip.ts', hash: '17674670289509594830' }, + { + file: 'packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.test.tsx', + hash: '17679454188098067382', + }, + { + file: 'packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.tsx', + hash: '2076110390038335139', + }, + { + file: 'packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.types.ts', + hash: '7659262091557687785', + }, + { file: 'packages/react-components/react-tooltip/src/components/Tooltip/index.ts', hash: '10782409254965928182' }, + { + file: 'packages/react-components/react-tooltip/src/components/Tooltip/private/constants.ts', + hash: '17507315038679873174', + }, + { + file: 'packages/react-components/react-tooltip/src/components/Tooltip/renderTooltip.tsx', + hash: '10271874667511265520', + }, + { + file: 'packages/react-components/react-tooltip/src/components/Tooltip/useTooltip.tsx', + hash: '8598847911993358157', + }, + { + file: 'packages/react-components/react-tooltip/src/components/Tooltip/useTooltipStyles.styles.ts', + hash: '16095804872310022228', + }, + { file: 'packages/react-components/react-tooltip/src/index.ts', hash: '6245897041394836575' }, + { file: 'packages/react-components/react-tooltip/src/testing/isConformant.ts', hash: '3528474470343364133' }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipControlled.stories.tsx', + hash: '5745568244813610421', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipCustomMount.stories.tsx', + hash: '8324075453347831325', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipDefault.stories.tsx', + hash: '13630401926476137506', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipDescription.md', + hash: '8413835280603585851', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipIcon.stories.tsx', + hash: '6181017139676638802', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipInverted.stories.tsx', + hash: '8768085614823736193', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipPositioning.stories.tsx', + hash: '5481407588906963902', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipRelationshipDescription.stories.tsx', + hash: '4706562087197084277', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipRelationshipLabel.stories.tsx', + hash: '15754488881985482673', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipStyled.stories.tsx', + hash: '16695082406495294835', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipTarget.stories.tsx', + hash: '15587023689407586107', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipWithArrow.stories.tsx', + hash: '13589492126622145976', + }, + { + file: 'packages/react-components/react-tooltip/stories/Tooltip/index.stories.tsx', + hash: '16607203418029566096', + }, + { file: 'packages/react-components/react-tooltip/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-tooltip/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-tooltip/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-tree': [ + { file: 'packages/react-components/react-tree/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-tree/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-tree/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-tree/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-tree/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-tree/.swcrc', hash: '471348148265161299' }, + { file: 'packages/react-components/react-tree/CHANGELOG.json', hash: '14945776354293379806' }, + { file: 'packages/react-components/react-tree/CHANGELOG.md', hash: '8406039216746902252' }, + { file: 'packages/react-components/react-tree/LICENSE', hash: '3873147923064391806' }, + { file: 'packages/react-components/react-tree/README.md', hash: '1655105929125156477' }, + { file: 'packages/react-components/react-tree/bundle-size/FlatTree.fixture.js', hash: '2096294319910126247' }, + { + file: 'packages/react-components/react-tree/bundle-size/PersonaFlatTree.fixture.js', + hash: '2466378024792562687', + }, + { file: 'packages/react-components/react-tree/bundle-size/PersonaTree.fixture.js', hash: '15287090904891878665' }, + { file: 'packages/react-components/react-tree/bundle-size/Tree.fixture.js', hash: '7148247114221090114' }, + { file: 'packages/react-components/react-tree/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-tree/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-tree/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-tree/docs/Spec.md', hash: '13010540724639653030' }, + { file: 'packages/react-components/react-tree/etc/react-tree.api.md', hash: '13860625462824413119' }, + { file: 'packages/react-components/react-tree/jest.config.js', hash: '10708835875569314405' }, + { file: 'packages/react-components/react-tree/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-tree/package.json', + hash: '7402928316943794822', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-aria', + '@fluentui/react-avatar', + '@fluentui/react-button', + '@fluentui/react-checkbox', + '@fluentui/react-context-selector', + 'npm:@fluentui/react-icons', + '@fluentui/react-radio', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + 'npm:@dnd-kit/core', + 'npm:@dnd-kit/sortable', + 'npm:@dnd-kit/utilities', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + '@fluentui/scripts-cypress', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-tree/project.json', hash: '6740901632218515604' }, + { file: 'packages/react-components/react-tree/src/FlatTree.ts', hash: '3072125634594593749' }, + { file: 'packages/react-components/react-tree/src/FlatTreeItem.ts', hash: '15656750125723370276' }, + { file: 'packages/react-components/react-tree/src/Tree.ts', hash: '4993286404603910313' }, + { file: 'packages/react-components/react-tree/src/TreeItem.ts', hash: '5004543986527416872' }, + { file: 'packages/react-components/react-tree/src/TreeItemLayout.ts', hash: '5622771649031762853' }, + { file: 'packages/react-components/react-tree/src/TreeItemPersonaLayout.ts', hash: '11087562497649748862' }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/FlatTree.cy.tsx', + hash: '15277321125093847254', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/FlatTree.test.tsx', + hash: '14643582718113491293', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/FlatTree.tsx', + hash: '11721769760756262032', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/FlatTree.types.ts', + hash: '15765492707089510760', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/__snapshots__/FlatTree.test.tsx.snap', + hash: '8095076814149978457', + }, + { file: 'packages/react-components/react-tree/src/components/FlatTree/index.ts', hash: '18386732580869025361' }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/renderFlatTree.ts', + hash: '16266937452093330039', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/useFlatControllableCheckedItems.ts', + hash: '8460437433223988350', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/useFlatTree.ts', + hash: '516202047807557685', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/useFlatTreeContextValues.ts', + hash: '10385911432056358558', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/useFlatTreeStyles.styles.ts', + hash: '11049922061536000776', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTree/useHeadlessFlatTree.ts', + hash: '1536915137937169328', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTreeItem/FlatTreeItem.tsx', + hash: '18390777847785657350', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTreeItem/FlatTreeItem.types.ts', + hash: '11242388741613448331', + }, + { + file: 'packages/react-components/react-tree/src/components/FlatTreeItem/index.ts', + hash: '6325146452568581988', + }, + { file: 'packages/react-components/react-tree/src/components/Tree/Tree.cy.tsx', hash: '6095631539329784239' }, + { file: 'packages/react-components/react-tree/src/components/Tree/Tree.test.tsx', hash: '11577143859729634817' }, + { file: 'packages/react-components/react-tree/src/components/Tree/Tree.tsx', hash: '17751061759550709708' }, + { file: 'packages/react-components/react-tree/src/components/Tree/Tree.types.ts', hash: '17953901364028168287' }, + { + file: 'packages/react-components/react-tree/src/components/Tree/__snapshots__/Tree.test.tsx.snap', + hash: '1504935046973585286', + }, + { file: 'packages/react-components/react-tree/src/components/Tree/index.ts', hash: '14906481201574349395' }, + { file: 'packages/react-components/react-tree/src/components/Tree/renderTree.tsx', hash: '4415101119287494887' }, + { + file: 'packages/react-components/react-tree/src/components/Tree/useNestedControllableCheckedItems.ts', + hash: '17960401285554147445', + }, + { file: 'packages/react-components/react-tree/src/components/Tree/useTree.ts', hash: '16065649229389296428' }, + { + file: 'packages/react-components/react-tree/src/components/Tree/useTreeContextValues.ts', + hash: '7332326623699850354', + }, + { + file: 'packages/react-components/react-tree/src/components/Tree/useTreeStyles.styles.ts', + hash: '16851585648924973193', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItem/TreeItem.test.tsx', + hash: '8789954357801559131', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItem/TreeItem.tsx', + hash: '16468084185954122243', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItem/TreeItem.types.ts', + hash: '14716955389701026936', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItem/__snapshots__/TreeItem.test.tsx.snap', + hash: '8018539892959985230', + }, + { file: 'packages/react-components/react-tree/src/components/TreeItem/index.ts', hash: '1326136393613796142' }, + { + file: 'packages/react-components/react-tree/src/components/TreeItem/renderTreeItem.tsx', + hash: '423938715411658182', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItem/useTreeItem.tsx', + hash: '2946674587697501147', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItem/useTreeItemContextValues.ts', + hash: '7521332398662164287', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItem/useTreeItemStyles.styles.ts', + hash: '3910268932895175685', + }, + { file: 'packages/react-components/react-tree/src/components/TreeItemChevron.tsx', hash: '13111855959190541713' }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.test.tsx', + hash: '2579116581358045080', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.tsx', + hash: '2849103380227024635', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.types.ts', + hash: '2990369194733272697', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemLayout/__snapshots__/TreeItemLayout.test.tsx.snap', + hash: '9466630829797683724', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemLayout/index.ts', + hash: '17567081473447998944', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemLayout/renderTreeItemLayout.tsx', + hash: '8168067713043998322', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayout.tsx', + hash: '8546937425436191095', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayoutStyles.styles.ts', + hash: '11057546586913473576', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.test.tsx', + hash: '5784701546408248173', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.tsx', + hash: '18041779658234398117', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.ts', + hash: '5850649340938347040', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/__snapshots__/TreeItemPersonaLayout.test.tsx.snap', + hash: '493101854707647726', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/index.ts', + hash: '5706098966977998655', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.tsx', + hash: '11893124970293607637', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.ts', + hash: '17115760138027961283', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.ts', + hash: '12504747604672555491', + }, + { + file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.ts', + hash: '2760083827584951946', + }, + { file: 'packages/react-components/react-tree/src/components/TreeProvider.tsx', hash: '7517422617459581682' }, + { file: 'packages/react-components/react-tree/src/contexts/index.ts', hash: '6882555427867434756' }, + { file: 'packages/react-components/react-tree/src/contexts/subtreeContext.ts', hash: '6249658885115935790' }, + { file: 'packages/react-components/react-tree/src/contexts/treeContext.ts', hash: '4036683755492528965' }, + { file: 'packages/react-components/react-tree/src/contexts/treeItemContext.ts', hash: '11517978604553072645' }, + { + file: 'packages/react-components/react-tree/src/hooks/useControllableOpenItems.ts', + hash: '4816774097134854864', + }, + { file: 'packages/react-components/react-tree/src/hooks/useFlatTreeNavigation.ts', hash: '17983963822301935882' }, + { + file: 'packages/react-components/react-tree/src/hooks/useHTMLElementWalkerRef.ts', + hash: '12602091648031084383', + }, + { file: 'packages/react-components/react-tree/src/hooks/useRootTree.ts', hash: '16041317070023655062' }, + { file: 'packages/react-components/react-tree/src/hooks/useRovingTabIndexes.ts', hash: '16208067110669278387' }, + { file: 'packages/react-components/react-tree/src/hooks/useSubtree.ts', hash: '8213543736847331171' }, + { file: 'packages/react-components/react-tree/src/hooks/useTreeNavigation.ts', hash: '4105758237008898129' }, + { file: 'packages/react-components/react-tree/src/index.ts', hash: '17215199998523638799' }, + { + file: 'packages/react-components/react-tree/src/testing/flattenTreeFromElement.ts', + hash: '17352909156336948309', + }, + { file: 'packages/react-components/react-tree/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { file: 'packages/react-components/react-tree/src/utils/ImmutableMap.ts', hash: '18191754425073445309' }, + { file: 'packages/react-components/react-tree/src/utils/ImmutableSet.ts', hash: '7975523845111866724' }, + { file: 'packages/react-components/react-tree/src/utils/assert.ts', hash: '1469332169996285562' }, + { file: 'packages/react-components/react-tree/src/utils/createCheckedItems.ts', hash: '7113512274716840836' }, + { + file: 'packages/react-components/react-tree/src/utils/createHTMLElementWalker.ts', + hash: '13950261002817970754', + }, + { file: 'packages/react-components/react-tree/src/utils/createHeadlessTree.ts', hash: '15503462296358436766' }, + { file: 'packages/react-components/react-tree/src/utils/createOpenItems.ts', hash: '2544348651417480592' }, + { file: 'packages/react-components/react-tree/src/utils/flattenTree.ts', hash: '4703444536314081832' }, + { + file: 'packages/react-components/react-tree/src/utils/getTreeItemValueFromElement.ts', + hash: '8002251387458635096', + }, + { file: 'packages/react-components/react-tree/src/utils/nextTypeAheadElement.ts', hash: '11291753067468538470' }, + { file: 'packages/react-components/react-tree/src/utils/normalizeOpenItems.ts', hash: '16095895542449977581' }, + { file: 'packages/react-components/react-tree/src/utils/tokens.ts', hash: '3974420961756921691' }, + { file: 'packages/react-components/react-tree/src/utils/treeItemFilter.ts', hash: '12235784334461474461' }, + { file: 'packages/react-components/react-tree/stories/Tree/FlatTree.stories.tsx', hash: '6464304357476423385' }, + { + file: 'packages/react-components/react-tree/stories/Tree/OpenItemControlled.stories.tsx', + hash: '4633474533903741112', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/OpenItemsControlled.stories.tsx', + hash: '14382852307558690931', + }, + { file: 'packages/react-components/react-tree/stories/Tree/TreeA11y.md', hash: '18278713554142398706' }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeActions.stories.tsx', + hash: '12149000182087747702', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeAppearance.stories.tsx', + hash: '4022938655114250405', + }, + { file: 'packages/react-components/react-tree/stories/Tree/TreeAside.stories.tsx', hash: '15498843229827369748' }, + { file: 'packages/react-components/react-tree/stories/Tree/TreeBestPractices.md', hash: '6217951044650240936' }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeCustomizingInteraction.stories.tsx', + hash: '6487662564534500772', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeDefault.stories.tsx', + hash: '3281424809310801489', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeDefaultOpen.stories.tsx', + hash: '13051992569108747955', + }, + { file: 'packages/react-components/react-tree/stories/Tree/TreeDescription.md', hash: '3591680887237708383' }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeDragAndDrop.stories.tsx', + hash: '5557484249944494015', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeExpandIcon.stories.tsx', + hash: '8975769184899329868', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeIconBeforeAndAfter.stories.tsx', + hash: '2974051680275017294', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeInfiniteScrolling.stories.tsx', + hash: '15927831107506523909', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeInlineStylingTreeItemLevel.stories.tsx', + hash: '15669582785010273897', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeLayouts.stories.tsx', + hash: '14629023937799779028', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeLazyLoading.stories.tsx', + hash: '16480494302565356882', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeManipulation.stories.tsx', + hash: '4369546527713118115', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/TreeSelection.stories.tsx', + hash: '3961405183329974459', + }, + { file: 'packages/react-components/react-tree/stories/Tree/TreeSize.stories.tsx', hash: '4652411936099155946' }, + { + file: 'packages/react-components/react-tree/stories/Tree/UseHeadlessFlatTree.stories.tsx', + hash: '15284690713944369839', + }, + { + file: 'packages/react-components/react-tree/stories/Tree/Virtualization.stories.tsx', + hash: '17275731017871637387', + }, + { file: 'packages/react-components/react-tree/stories/Tree/index.stories.tsx', hash: '5752380234511737172' }, + { file: 'packages/react-components/react-tree/stories/Tree/utils/mockFetch.ts', hash: '3306783506830490620' }, + { file: 'packages/react-components/react-tree/stories/Tree/utils/useQuery.ts', hash: '175410983663244781' }, + { file: 'packages/react-components/react-tree/tsconfig.cy.json', hash: '4393960456153312170' }, + { file: 'packages/react-components/react-tree/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-tree/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-tree/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/scripts-prettier': [ + { file: 'scripts/prettier/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/prettier/jest.config.js', hash: '12223295979119876176' }, + { file: 'scripts/prettier/package.json', hash: '5291951655628615430', deps: ['@fluentui/scripts-monorepo'] }, + { file: 'scripts/prettier/project.json', hash: '6167879023111685572' }, + { file: 'scripts/prettier/src/index.d.ts', hash: '14316083377466315843' }, + { file: 'scripts/prettier/src/index.js', hash: '10984052681773998567' }, + { file: 'scripts/prettier/src/prettier-helpers.js', hash: '14195801102266884159' }, + { file: 'scripts/prettier/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/prettier/tsconfig.lib.json', hash: '15222053984038389170' }, + { file: 'scripts/prettier/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/scripts-babel': [ + { file: 'scripts/babel/.eslintrc.json', hash: '3383833998949875450' }, + { file: 'scripts/babel/index.js', hash: '7993737580679407702' }, + { file: 'scripts/babel/jest.config.js', hash: '1277314660710374279' }, + { file: 'scripts/babel/package.json', hash: '14364435620713749886' }, + { file: 'scripts/babel/plugins/index.ts', hash: '483902564153285887' }, + { file: 'scripts/babel/plugins/transform-star-import-plugin.ts', hash: '497207983086485622' }, + { file: 'scripts/babel/plugins/types.ts', hash: '16362335534208576628' }, + { file: 'scripts/babel/preset-v9.js', hash: '18020626006821864392' }, + { file: 'scripts/babel/preset-v9.spec.ts', hash: '1556910749991715657' }, + { file: 'scripts/babel/project.json', hash: '6727545952869869660' }, + { file: 'scripts/babel/register.js', hash: '18183864298469557088' }, + { file: 'scripts/babel/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/babel/tsconfig.lib.json', hash: '3753806828268919288' }, + { file: 'scripts/babel/tsconfig.spec.json', hash: '16242416785763058919' }, + { file: 'scripts/babel/types.ts', hash: '4791608823641193595' }, + ], + '@fluentui/react-datepicker-compat': [ + { file: 'packages/react-components/react-datepicker-compat/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-datepicker-compat/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-datepicker-compat/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-datepicker-compat/.storybook/preview.js', hash: '1791378012295456991' }, + { + file: 'packages/react-components/react-datepicker-compat/.storybook/tsconfig.json', + hash: '14611368028782818158', + }, + { file: 'packages/react-components/react-datepicker-compat/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-datepicker-compat/CHANGELOG.json', hash: '11013446861406926313' }, + { file: 'packages/react-components/react-datepicker-compat/CHANGELOG.md', hash: '12357247949196268869' }, + { file: 'packages/react-components/react-datepicker-compat/LICENSE', hash: '15467235041157898768' }, + { file: 'packages/react-components/react-datepicker-compat/README.md', hash: '14965536454179875946' }, + { + file: 'packages/react-components/react-datepicker-compat/bundle-size/DatePicker.fixture.js', + hash: '5780478783270741987', + }, + { + file: 'packages/react-components/react-datepicker-compat/config/api-extractor.json', + hash: '124052868224837692', + }, + { file: 'packages/react-components/react-datepicker-compat/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-datepicker-compat/cypress.config.ts', hash: '17230281421398791592' }, + { + file: 'packages/react-components/react-datepicker-compat/etc/react-datepicker-compat.api.md', + hash: '6017916360745789326', + }, + { file: 'packages/react-components/react-datepicker-compat/jest.config.js', hash: '15440392279685094633' }, + { file: 'packages/react-components/react-datepicker-compat/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-datepicker-compat/package.json', + hash: '12713229717479939122', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-calendar-compat', + '@fluentui/react-field', + 'npm:@fluentui/react-icons', + '@fluentui/react-input', + '@fluentui/react-jsx-runtime', + '@fluentui/react-popover', + '@fluentui/react-portal', + '@fluentui/react-positioning', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-components/react-datepicker-compat/project.json', hash: '11680857818498676120' }, + { file: 'packages/react-components/react-datepicker-compat/src/DatePicker.ts', hash: '14140387775859161252' }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.cy.tsx', + hash: '12630229637117863596', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.test.tsx', + hash: '12404958269483653272', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.tsx', + hash: '8759052501401237921', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.types.ts', + hash: '8659224020186844831', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap', + hash: '7292979735761155863', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/defaults.ts', + hash: '9663199247101225899', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/index.ts', + hash: '2306196274500634021', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/renderDatePicker.tsx', + hash: '4545229128790594608', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/useDatePicker.tsx', + hash: '8805471839390216809', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/useDatePickerStyles.styles.ts', + hash: '1151934265857114204', + }, + { file: 'packages/react-components/react-datepicker-compat/src/index.ts', hash: '11139978793168257780' }, + { + file: 'packages/react-components/react-datepicker-compat/src/testing/isConformant.ts', + hash: '7325949189279658038', + }, + { + file: 'packages/react-components/react-datepicker-compat/src/utils/usePopupPositioning.ts', + hash: '8552065050899537438', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerBestPractices.md', + hash: '15284497134478716193', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerControlled.stories.tsx', + hash: '17703752551334714090', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerCustomDateFormatting.stories.tsx', + hash: '17923939141629207493', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDateBoundaries.stories.tsx', + hash: '7939700521736332519', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDateRange.stories.tsx', + hash: '6776886943573250862', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDefault.stories.tsx', + hash: '8542138294343046914', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDescription.md', + hash: '1753461532339200045', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDisabled.stories.tsx', + hash: '7534425957894004424', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerErrorHandling.stories.tsx', + hash: '3115559528923035285', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerFirstDayOfTheWeek.stories.tsx', + hash: '2591018952854976305', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerLocalized.stories.tsx', + hash: '11758139077848427607', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerRequired.stories.tsx', + hash: '8512856872562400035', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerTextInput.stories.tsx', + hash: '16850430938666912680', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerWeekNumbers.stories.tsx', + hash: '2856056823419360247', + }, + { + file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/index.stories.tsx', + hash: '8278766610962775166', + }, + { file: 'packages/react-components/react-datepicker-compat/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-datepicker-compat/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-datepicker-compat/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-datepicker-compat/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-theme': [ + { file: 'packages/react-components/react-theme/.babelrc.json', hash: '496283691468190474' }, + { file: 'packages/react-components/react-theme/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-theme/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-theme/.storybook/preview-head.html', hash: '177346033808426115' }, + { file: 'packages/react-components/react-theme/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-theme/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-theme/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-theme/CHANGELOG.json', hash: '15851009324481788504' }, + { file: 'packages/react-components/react-theme/CHANGELOG.md', hash: '8148872566269969725' }, + { file: 'packages/react-components/react-theme/LICENSE', hash: '7790297149303267088' }, + { file: 'packages/react-components/react-theme/README.md', hash: '8110783886660945488' }, + { + file: 'packages/react-components/react-theme/bundle-size/SingleThemeToken.fixture.js', + hash: '48190699545478805', + }, + { + file: 'packages/react-components/react-theme/bundle-size/TeamsAllThemes.fixture.js', + hash: '8896684391654619670', + }, + { + file: 'packages/react-components/react-theme/bundle-size/TeamsLightTheme.fixture.js', + hash: '14215547226107299921', + }, + { file: 'packages/react-components/react-theme/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-theme/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-theme/etc/react-theme.api.md', hash: '1026602756558119011' }, + { file: 'packages/react-components/react-theme/jest.config.js', hash: '10881208247988768850' }, + { file: 'packages/react-components/react-theme/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-theme/package.json', + hash: '8050136086276026658', + deps: [ + '@fluentui/tokens', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + ], + }, + { file: 'packages/react-components/react-theme/project.json', hash: '12372302467798064068' }, + { file: 'packages/react-components/react-theme/src/index.ts', hash: '8707625999909623354' }, + { + file: 'packages/react-components/react-theme/stories/Theme/borderRadii/ThemeBorderRadii.stories.tsx', + hash: '3187948697713321066', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/borderRadii/index.stories.mdx', + hash: '12453961250297731337', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/colors/ColorRamp.stories.tsx', + hash: '16299384491400767513', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/colors/FilterButton.stories.tsx', + hash: '17370458700570599868', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/colors/ThemeColors.stories.tsx', + hash: '1404087490752180885', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/colors/index.stories.mdx', + hash: '12236570761233077569', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/fonts/ThemeFonts.stories.tsx', + hash: '17201499561988764854', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/fonts/index.stories.mdx', + hash: '2798815260444835062', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/motion/ThemeMotion.stories.tsx', + hash: '16846307853033966247', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/motion/index.stories.mdx', + hash: '16078226543713423992', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/shadows/ThemeShadows.stories.tsx', + hash: '6901031965285366839', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/shadows/index.stories.mdx', + hash: '18347467915038705974', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/spacing/ThemeSpacing.stories.tsx', + hash: '12809328850478978466', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/spacing/index.stories.mdx', + hash: '9169587683523609544', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/strokeWidths/ThemeStrokeWidths.stories.tsx', + hash: '1558556278663600963', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/strokeWidths/index.stories.mdx', + hash: '10215274721582502890', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/typography/Composing.stories.tsx', + hash: '11728628513694072539', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/typography/Example.stories.tsx', + hash: '3336989101772861512', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/typography/MixedStyles.stories.tsx', + hash: '10948636943541688820', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/typography/ThemeTypography.stories.tsx', + hash: '2870834578309054765', + }, + { + file: 'packages/react-components/react-theme/stories/Theme/typography/index.stories.mdx', + hash: '2985843863773666943', + }, + { file: 'packages/react-components/react-theme/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-theme/tsconfig.lib.json', hash: '2330431448937249608' }, + { file: 'packages/react-components/react-theme/tsconfig.spec.json', hash: '13916911291935990408' }, + ], + '@fluentui/docs-components': [ + { file: 'packages/fluentui/docs-components/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/docs-components/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/docs-components/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/docs-components/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/docs-components/package.json', + hash: '12299398415052887154', + deps: [ + 'npm:@babel/runtime', + 'npm:copy-to-clipboard', + 'npm:lodash', + 'npm:object.values', + 'npm:prismjs', + 'npm:prop-types', + 'npm:react-ace', + 'npm:react-codesandboxer', + 'npm:react-element-to-jsx-string', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + 'npm:prettier', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/docs-components/project.json', hash: '13469323002647093120' }, + { + file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/CodeSandboxExporter.tsx', + hash: '10775572371902899182', + }, + { + file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/createPackageJson.ts', + hash: '17834717065357338878', + }, + { file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/index.ts', hash: '729372128174666005' }, + { + file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/indexTemplates.ts', + hash: '13123484621875068230', + }, + { file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/types.tsx', hash: '2963536210780409373' }, + { file: 'packages/fluentui/docs-components/src/CodeSnippet/CodeSnippet.tsx', hash: '10184034503240704567' }, + { file: 'packages/fluentui/docs-components/src/CodeSnippet/CodeSnippetLabel.tsx', hash: '4843091425161626165' }, + { file: 'packages/fluentui/docs-components/src/CodeSnippet/formatCode.ts', hash: '13761802560233975725' }, + { file: 'packages/fluentui/docs-components/src/CodeSnippet/types.ts', hash: '9865053077409343897' }, + { file: 'packages/fluentui/docs-components/src/CopyToClipboard.tsx', hash: '3817005176756180732' }, + { file: 'packages/fluentui/docs-components/src/Editor/Editor.tsx', hash: '12794711676852103158' }, + { file: 'packages/fluentui/docs-components/src/index.ts', hash: '17334811117911265474' }, + { file: 'packages/fluentui/docs-components/src/knobs/KnobContexts.ts', hash: '4842163521617597457' }, + { file: 'packages/fluentui/docs-components/src/knobs/KnobInspector.tsx', hash: '18065313350188753080' }, + { file: 'packages/fluentui/docs-components/src/knobs/KnobProvider.tsx', hash: '6785463407886649345' }, + { file: 'packages/fluentui/docs-components/src/knobs/LogInspector.tsx', hash: '15951479911802652570' }, + { file: 'packages/fluentui/docs-components/src/knobs/defaultComponents.tsx', hash: '17505366242981138566' }, + { file: 'packages/fluentui/docs-components/src/knobs/types.ts', hash: '15943354925699053567' }, + { file: 'packages/fluentui/docs-components/src/knobs/useBooleanKnob.ts', hash: '6698715814693094933' }, + { file: 'packages/fluentui/docs-components/src/knobs/useKnob.ts', hash: '10559903722198811306' }, + { file: 'packages/fluentui/docs-components/src/knobs/useKnobValues.ts', hash: '10362124241855310049' }, + { file: 'packages/fluentui/docs-components/src/knobs/useLogKnob.ts', hash: '6515035524717563074' }, + { file: 'packages/fluentui/docs-components/src/knobs/useNumberKnob.ts', hash: '14524322305704285530' }, + { file: 'packages/fluentui/docs-components/src/knobs/useRangeKnob.ts', hash: '13035545945521563789' }, + { file: 'packages/fluentui/docs-components/src/knobs/useSelectKnob.ts', hash: '14829194906409623521' }, + { file: 'packages/fluentui/docs-components/src/knobs/useStringKnob.ts', hash: '8537090047394764283' }, + { file: 'packages/fluentui/docs-components/src/knobs/utils/parseRangeValue.ts', hash: '11201358452441745212' }, + { file: 'packages/fluentui/docs-components/src/renderElementToJSX.ts', hash: '11554022792520913001' }, + { file: 'packages/fluentui/docs-components/tsconfig.json', hash: '3177558348790025290' }, + ], + '@fluentui/babel-preset-storybook-full-source': [ + { + file: 'packages/react-components/babel-preset-storybook-full-source/.babelrc.json', + hash: '8174012058119950495', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/.eslintignore', + hash: '9846005931812453978', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/.eslintrc.json', + hash: '11018738359270224912', + }, + { file: 'packages/react-components/babel-preset-storybook-full-source/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/babel-preset-storybook-full-source/LICENSE', hash: '2851101912028128850' }, + { file: 'packages/react-components/babel-preset-storybook-full-source/README.md', hash: '10822226558355648087' }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/config/api-extractor.json', + hash: '124052868224837692', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/config/tests.js', + hash: '16913843724990866890', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/etc/babel-preset-storybook-full-source.api.md', + hash: '10134344240064969487', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/jest.config.js', + hash: '17998182148295247129', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/just.config.ts', + hash: '4613957333426947832', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/package.json', + hash: '16304265586387765120', + deps: [ + 'npm:@babel/core', + 'npm:@swc/helpers', + 'npm:prettier', + 'npm:pkg-up', + '@fluentui/eslint-plugin', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + ], + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/project.json', + hash: '16617351147562126074', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-inner-assignments-from-exported/code.js', + hash: '12250846775050869646', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-inner-assignments-from-exported/output.js', + hash: '3913454441417757431', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-params-from-not-exported/code.js', + hash: '5377692644416536257', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-params-from-not-exported/output.js', + hash: '5359392563189908938', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/removes-assigns-from-exported/code.js', + hash: '14695982501113684921', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/removes-assigns-from-exported/output.js', + hash: '1765868221018401588', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/add-parameter/code.js', + hash: '6315840616906615', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/add-parameter/output.js', + hash: '15744114046571496255', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/keep-sourcecode-spacing/code.js', + hash: '6397343963531239775', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/keep-sourcecode-spacing/output.js', + hash: '2870614453866614178', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/import-override/code.js', + hash: '8331756490526386489', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/import-override/output.js', + hash: '1104668652453585821', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-declarations/code.js', + hash: '11266463562398618277', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-declarations/output.js', + hash: '12987886010279186167', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-specifiers/code.js', + hash: '5428787723527841401', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-specifiers/output.js', + hash: '16810803813997568777', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/no-import-declarations/code.js', + hash: '17946180769179213796', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/no-import-declarations/output.js', + hash: '17946180769179213796', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/non-fluent-import-declaration/code.js', + hash: '3590937219013626819', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/non-fluent-import-declaration/output.js', + hash: '6032116881122134529', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/code.js', + hash: '11406060193416782004', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/output.js', + hash: '9437463913197939329', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/package.json', + hash: '16793539485026835037', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/single-import-declaration/code.js', + hash: '17372187984601639124', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/single-import-declaration/output.js', + hash: '6432025930017863990', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/fullsource.test.ts', + hash: '5856907194449946095', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/fullsource.ts', + hash: '4310623060008865206', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/index.ts', + hash: '6047420778112851575', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/modifyImports.test.ts', + hash: '2149201365036783550', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/modifyImports.ts', + hash: '10423675854161091140', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/removeStorybookParameters.test.ts', + hash: '2032450309373789045', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/removeStorybookParameters.ts', + hash: '3606776635662219250', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/src/types.ts', + hash: '10005011061873778871', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/tsconfig.json', + hash: '11066276364833551840', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/tsconfig.lib.json', + hash: '6215804205440595574', + }, + { + file: 'packages/react-components/babel-preset-storybook-full-source/tsconfig.spec.json', + hash: '13916911291935990408', + }, + ], + '@fluentui/react-popover': [ + { file: 'packages/react-components/react-popover/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-popover/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-popover/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-popover/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-popover/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-popover/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-popover/CHANGELOG.json', hash: '799414624182040767' }, + { file: 'packages/react-components/react-popover/CHANGELOG.md', hash: '15935155906664144779' }, + { file: 'packages/react-components/react-popover/LICENSE', hash: '13212047852807775160' }, + { file: 'packages/react-components/react-popover/README.md', hash: '13050354636904224629' }, + { file: 'packages/react-components/react-popover/bundle-size/Popover.fixture.js', hash: '5887030192339858914' }, + { file: 'packages/react-components/react-popover/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-popover/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-popover/cypress.config.ts', hash: '17230281421398791592' }, + { file: 'packages/react-components/react-popover/docs/Spec.md', hash: '4609286566686568557' }, + { file: 'packages/react-components/react-popover/etc/react-popover.api.md', hash: '7514615129011558376' }, + { file: 'packages/react-components/react-popover/jest.config.js', hash: '14026599071184978672' }, + { file: 'packages/react-components/react-popover/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-popover/package.json', + hash: '9762499192074740118', + deps: [ + '@fluentui/keyboard-keys', + '@fluentui/react-aria', + '@fluentui/react-context-selector', + '@fluentui/react-portal', + '@fluentui/react-positioning', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + '@fluentui/react-jsx-runtime', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-cypress', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-popover/project.json', hash: '13728026763707518386' }, + { file: 'packages/react-components/react-popover/src/Popover.ts', hash: '82425603334873078' }, + { file: 'packages/react-components/react-popover/src/PopoverSurface.ts', hash: '14221118331298170467' }, + { file: 'packages/react-components/react-popover/src/PopoverTrigger.ts', hash: '5974644824026413780' }, + { + file: 'packages/react-components/react-popover/src/components/Popover/Popover.cy.tsx', + hash: '14911237654227630815', + }, + { + file: 'packages/react-components/react-popover/src/components/Popover/Popover.test.tsx', + hash: '4654989182333163446', + }, + { + file: 'packages/react-components/react-popover/src/components/Popover/Popover.tsx', + hash: '5929512317701067411', + }, + { + file: 'packages/react-components/react-popover/src/components/Popover/Popover.types.ts', + hash: '17729441559883210548', + }, + { + file: 'packages/react-components/react-popover/src/components/Popover/constants.ts', + hash: '4627999313797808057', + }, + { file: 'packages/react-components/react-popover/src/components/Popover/index.ts', hash: '1977828869061472401' }, + { + file: 'packages/react-components/react-popover/src/components/Popover/renderPopover.tsx', + hash: '8998572893306941337', + }, + { + file: 'packages/react-components/react-popover/src/components/Popover/usePopover.ts', + hash: '3450341196926624385', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.test.tsx', + hash: '6823809963025237390', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.tsx', + hash: '18183468277526097917', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.types.ts', + hash: '3484467807402199312', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverSurface/__snapshots__/PopoverSurface.test.tsx.snap', + hash: '8906207879497919239', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverSurface/index.ts', + hash: '11111917236962218660', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverSurface/renderPopoverSurface.tsx', + hash: '331735011709120147', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverSurface/usePopoverSurface.ts', + hash: '13899100915034814530', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverSurface/usePopoverSurfaceStyles.styles.ts', + hash: '12459251168906298722', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.test.tsx', + hash: '8874285659567391752', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.tsx', + hash: '14243495002152923383', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.types.ts', + hash: '10978545043348849880', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverTrigger/__snapshots__/PopoverTrigger.test.tsx.snap', + hash: '7049001353719709106', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverTrigger/index.ts', + hash: '6566947698041733501', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverTrigger/renderPopoverTrigger.tsx', + hash: '12559738220691999133', + }, + { + file: 'packages/react-components/react-popover/src/components/PopoverTrigger/usePopoverTrigger.ts', + hash: '17244988510897269019', + }, + { file: 'packages/react-components/react-popover/src/index.ts', hash: '9032593331933710944' }, + { file: 'packages/react-components/react-popover/src/popoverContext.ts', hash: '10247319476918690150' }, + { file: 'packages/react-components/react-popover/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-popover/src/testing/mockUsePopoverContext.ts', + hash: '17560436447699119942', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverAnchorToCustomTarget.stories.tsx', + hash: '214805130071163403', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverAppearance.stories.tsx', + hash: '1911028944506386880', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverBestPractices.md', + hash: '2732588484685589689', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverControllingOpenAndClose.stories.tsx', + hash: '12207010824761379535', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverCustomTrigger.stories.tsx', + hash: '3517858408299763563', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverDefault.stories.tsx', + hash: '16713073541667462208', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverDescription.md', + hash: '8500557139312334970', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverInternalUpdateContent.stories.tsx', + hash: '16021108580550194296', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverNestedPopovers.stories.tsx', + hash: '4287991275281069452', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverTrappingFocus.stories.tsx', + hash: '14078581443974686242', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverWithArrow.stories.tsx', + hash: '3955407080794549289', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/PopoverWithoutTrigger.stories.tsx', + hash: '12108642192411900216', + }, + { + file: 'packages/react-components/react-popover/stories/Popover/index.stories.tsx', + hash: '9781352630408705313', + }, + { file: 'packages/react-components/react-popover/tsconfig.cy.json', hash: '7215147373970103512' }, + { file: 'packages/react-components/react-popover/tsconfig.json', hash: '5326137440511234645' }, + { file: 'packages/react-components/react-popover/tsconfig.lib.json', hash: '3027287810670149763' }, + { file: 'packages/react-components/react-popover/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-radio': [ + { file: 'packages/react-components/react-radio/.babelrc.json', hash: '18339585439895240691' }, + { file: 'packages/react-components/react-radio/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-components/react-radio/.storybook/main.js', hash: '11617744840349284164' }, + { file: 'packages/react-components/react-radio/.storybook/preview.js', hash: '1791378012295456991' }, + { file: 'packages/react-components/react-radio/.storybook/tsconfig.json', hash: '14611368028782818158' }, + { file: 'packages/react-components/react-radio/.swcrc', hash: '16532409398616988134' }, + { file: 'packages/react-components/react-radio/CHANGELOG.json', hash: '3459686486196441964' }, + { file: 'packages/react-components/react-radio/CHANGELOG.md', hash: '14578999085479219777' }, + { file: 'packages/react-components/react-radio/LICENSE', hash: '9112585887229860601' }, + { file: 'packages/react-components/react-radio/README.md', hash: '7429449480780465656' }, + { file: 'packages/react-components/react-radio/bundle-size/Radio.fixture.js', hash: '6056476279648699462' }, + { file: 'packages/react-components/react-radio/bundle-size/RadioGroup.fixture.js', hash: '2347449671562100332' }, + { file: 'packages/react-components/react-radio/config/api-extractor.json', hash: '124052868224837692' }, + { file: 'packages/react-components/react-radio/config/tests.js', hash: '16913843724990866890' }, + { file: 'packages/react-components/react-radio/docs/Spec.md', hash: '13554510639360837723' }, + { + file: 'packages/react-components/react-radio/etc/images/horizontal-group-stacked.png', + hash: '13781148661598441913', + }, + { file: 'packages/react-components/react-radio/etc/images/horizontal-group.png', hash: '17430229115123999828' }, + { + file: 'packages/react-components/react-radio/etc/images/vertical-group-with-dropdown.png', + hash: '16718633047948489140', + }, + { + file: 'packages/react-components/react-radio/etc/images/vertical-group-with-input.png', + hash: '767002637445042851', + }, + { file: 'packages/react-components/react-radio/etc/images/vertical-group.png', hash: '4914366318572506386' }, + { file: 'packages/react-components/react-radio/etc/react-radio.api.md', hash: '14339882295224824349' }, + { file: 'packages/react-components/react-radio/jest.config.js', hash: '4378835463518598771' }, + { file: 'packages/react-components/react-radio/just.config.ts', hash: '4613957333426947832' }, + { + file: 'packages/react-components/react-radio/package.json', + hash: '12751640571718797407', + deps: [ + '@fluentui/react-field', + 'npm:@fluentui/react-icons', + '@fluentui/react-jsx-runtime', + '@fluentui/react-label', + '@fluentui/react-shared-contexts', + '@fluentui/react-tabster', + '@fluentui/react-theme', + '@fluentui/react-utilities', + 'npm:@griffel/react', + 'npm:@swc/helpers', + '@fluentui/eslint-plugin', + '@fluentui/react-conformance', + '@fluentui/react-conformance-griffel', + '@fluentui/scripts-api-extractor', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + 'npm:scheduler', + ], + }, + { file: 'packages/react-components/react-radio/project.json', hash: '7820595109551665028' }, + { file: 'packages/react-components/react-radio/src/Radio.ts', hash: '7263746132466436601' }, + { file: 'packages/react-components/react-radio/src/RadioGroup.ts', hash: '9616148445474045919' }, + { + file: 'packages/react-components/react-radio/src/components/Radio/Radio.test.tsx', + hash: '6736735414979302828', + }, + { file: 'packages/react-components/react-radio/src/components/Radio/Radio.tsx', hash: '3790282066800805246' }, + { + file: 'packages/react-components/react-radio/src/components/Radio/Radio.types.ts', + hash: '9229799828831420871', + }, + { file: 'packages/react-components/react-radio/src/components/Radio/index.ts', hash: '8479995711248948636' }, + { + file: 'packages/react-components/react-radio/src/components/Radio/renderRadio.tsx', + hash: '12246486103260771246', + }, + { file: 'packages/react-components/react-radio/src/components/Radio/useRadio.tsx', hash: '4422675660519438615' }, + { + file: 'packages/react-components/react-radio/src/components/Radio/useRadioStyles.styles.ts', + hash: '9322792565954029544', + }, + { + file: 'packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.test.tsx', + hash: '1729336792797867060', + }, + { + file: 'packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.tsx', + hash: '13051368676540290025', + }, + { + file: 'packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.types.ts', + hash: '2456202840593717778', + }, + { file: 'packages/react-components/react-radio/src/components/RadioGroup/index.ts', hash: '8969274474740272512' }, + { + file: 'packages/react-components/react-radio/src/components/RadioGroup/renderRadioGroup.tsx', + hash: '4848267084755134712', + }, + { + file: 'packages/react-components/react-radio/src/components/RadioGroup/useRadioGroup.ts', + hash: '1485129830782544789', + }, + { + file: 'packages/react-components/react-radio/src/components/RadioGroup/useRadioGroupStyles.styles.ts', + hash: '9187301613711214224', + }, + { file: 'packages/react-components/react-radio/src/contexts/RadioGroupContext.ts', hash: '10239000936212442133' }, + { file: 'packages/react-components/react-radio/src/contexts/index.ts', hash: '6039445079577715801' }, + { + file: 'packages/react-components/react-radio/src/contexts/useRadioGroupContextValues.ts', + hash: '5680455141558794134', + }, + { file: 'packages/react-components/react-radio/src/index.ts', hash: '8493262146993548233' }, + { file: 'packages/react-components/react-radio/src/testing/isConformant.ts', hash: '7325949189279658038' }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupBestPractices.md', + hash: '11896541066091939987', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupControlledValue.stories.tsx', + hash: '17594916395232449758', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDefault.stories.tsx', + hash: '17660784807463505960', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDefaultValue.stories.tsx', + hash: '17633773687365122976', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDescription.md', + hash: '11915016562314600380', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDisabled.stories.tsx', + hash: '17381303118996967824', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDisabledItem.stories.tsx', + hash: '14317893343810056642', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupHorizontal.stories.tsx', + hash: '12753958700259064575', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupHorizontalStacked.stories.tsx', + hash: '14132521406762046576', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupLabelSubtext.stories.tsx', + hash: '12387472870045441934', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupRequired.stories.tsx', + hash: '13962288512679376395', + }, + { + file: 'packages/react-components/react-radio/stories/RadioGroup/index.stories.tsx', + hash: '1915432931712324752', + }, + { file: 'packages/react-components/react-radio/tsconfig.json', hash: '4314087102028690976' }, + { file: 'packages/react-components/react-radio/tsconfig.lib.json', hash: '5990226506726238656' }, + { file: 'packages/react-components/react-radio/tsconfig.spec.json', hash: '6114153871167405290' }, + ], + '@fluentui/react-icons-mdl2-branded': [ + { file: 'packages/react-icons-mdl2-branded/.eslintrc.json', hash: '11822209983446579696' }, + { file: 'packages/react-icons-mdl2-branded/.npmignore', hash: '7699079327417375383' }, + { file: 'packages/react-icons-mdl2-branded/CHANGELOG.json', hash: '5572846064800558832' }, + { file: 'packages/react-icons-mdl2-branded/CHANGELOG.md', hash: '6004498992866846212' }, + { file: 'packages/react-icons-mdl2-branded/LICENSE', hash: '7874699040565754716' }, + { file: 'packages/react-icons-mdl2-branded/README.md', hash: '6559004903633966452' }, + { file: 'packages/react-icons-mdl2-branded/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-icons-mdl2-branded/package.json', + hash: '4013216088192523680', + deps: [ + '@fluentui/set-version', + '@fluentui/react-icons-mdl2', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:@types/react-dom', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/react-icons-mdl2-branded/project.json', hash: '182356497911993089' }, + { file: 'packages/react-icons-mdl2-branded/src/components/AADLogoIcon.tsx', hash: '286612657429892804' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ATPLogoIcon.tsx', hash: '13784004784877289281' }, + { file: 'packages/react-icons-mdl2-branded/src/components/AdminALogo32Icon.tsx', hash: '13918755500788848136' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminALogoFill32Icon.tsx', + hash: '1271871821797964572', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminALogoInverse32Icon.tsx', + hash: '15572356902705291320', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminCLogoInverse32Icon.tsx', + hash: '8291878645804224665', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminDLogoInverse32Icon.tsx', + hash: '12605925310702167699', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminELogoInverse32Icon.tsx', + hash: '2055064523378402409', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/AdminIcon.tsx', hash: '17249102460938666539' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminLLogoInverse32Icon.tsx', + hash: '5186632936760569047', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminMLogoInverse32Icon.tsx', + hash: '534894712628818082', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminOLogoInverse32Icon.tsx', + hash: '7077310521163798320', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminPLogoInverse32Icon.tsx', + hash: '10023240628776751568', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminSLogoInverse32Icon.tsx', + hash: '16725812218512154502', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AdminYLogoInverse32Icon.tsx', + hash: '10971688238831377884', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/AnalyticsLogoIcon.tsx', hash: '9146491538898029640' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AppIconDefaultAddIcon.tsx', + hash: '3057290352682393613', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/AppIconDefaultIcon.tsx', hash: '16322368519595134458' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AppIconDefaultListIcon.tsx', + hash: '1875525878736528866', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AuthenticatorAppIcon.tsx', + hash: '9035246704413886179', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AzureAPIManagementIcon.tsx', + hash: '16863931877328318762', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AzureDataExplorerIcon.tsx', + hash: '16715482426408220220', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/AzureKeyVaultIcon.tsx', hash: '1876735140795216492' }, + { file: 'packages/react-icons-mdl2-branded/src/components/AzureLogoIcon.tsx', hash: '1157520540581726064' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/AzureServiceEndpointIcon.tsx', + hash: '10791926301689612077', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/BingLogoIcon.tsx', hash: '11095005553524243037' }, + { file: 'packages/react-icons-mdl2-branded/src/components/BookingsLogoIcon.tsx', hash: '16237838276555695215' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/BusinessCenterLogoIcon.tsx', + hash: '1992258361865159624', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/CSharpIcon.tsx', hash: '1218562371043262076' }, + { file: 'packages/react-icons-mdl2-branded/src/components/CSharpLanguageIcon.tsx', hash: '4486900751399342960' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogo16Icon.tsx', + hash: '1306772457103002006', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogo32Icon.tsx', + hash: '13082486700176205468', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoFill16Icon.tsx', + hash: '8096526662570019166', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoFill32Icon.tsx', + hash: '4902069909469199769', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverse16Icon.tsx', + hash: '11289604115372825136', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverse32Icon.tsx', + hash: '9762210137361100029', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverseIcon.tsx', + hash: '5659327487607017490', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/ClassroomLogoIcon.tsx', hash: '2658662134413257154' }, + { file: 'packages/react-icons-mdl2-branded/src/components/CloudAddIcon.tsx', hash: '8823984491201494189' }, + { file: 'packages/react-icons-mdl2-branded/src/components/CloudDownloadIcon.tsx', hash: '11447080274954114683' }, + { file: 'packages/react-icons-mdl2-branded/src/components/CloudEditIcon.tsx', hash: '15998901405605389656' }, + { file: 'packages/react-icons-mdl2-branded/src/components/CloudIcon.tsx', hash: '12803745667366798375' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/CloudImportExportIcon.tsx', + hash: '11520403045238624252', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/CloudLinkIcon.tsx', hash: '4528047515277517448' }, + { file: 'packages/react-icons-mdl2-branded/src/components/CloudUploadIcon.tsx', hash: '12111269655658299111' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoBeckonInnerIcon.tsx', + hash: '11204650693827031651', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoBeckonOuterIcon.tsx', + hash: '1506803459583441120', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoInnerIcon.tsx', + hash: '4993027430341599346', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoOuterIcon.tsx', + hash: '6570916997666699040', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoReadyInnerIcon.tsx', + hash: '5007601663442040819', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoReadyOuterIcon.tsx', + hash: '14586333191546845230', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/D365CoreHRIcon.tsx', hash: '11675479994053164507' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/D365CustomerInsightsIcon.tsx', + hash: '7696962140726350337', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/D365ProjectOperationsIcon.tsx', + hash: '12689837804929752593', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/D365TalentInsightIcon.tsx', + hash: '8722510368816735518', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/D365TalentLearnIcon.tsx', hash: '9505091097402717202' }, + { file: 'packages/react-icons-mdl2-branded/src/components/DefenderTVMIcon.tsx', hash: '4870644410769153894' }, + { file: 'packages/react-icons-mdl2-branded/src/components/DelveAnalyticsIcon.tsx', hash: '5106396823492780885' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/DelveAnalyticsLogoIcon.tsx', + hash: '17437764083205864353', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/DelveLogoFillIcon.tsx', hash: '4378901451898008002' }, + { file: 'packages/react-icons-mdl2-branded/src/components/DelveLogoIcon.tsx', hash: '11889962662708226215' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/DelveLogoInverseIcon.tsx', + hash: '5563017822461835114', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/DocsLogoInverseIcon.tsx', + hash: '17612230936000509677', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/DynamicSMBLogoIcon.tsx', hash: '8650766395468311932' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/Dynamics365LogoIcon.tsx', + hash: '11964817414736042899', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/EaseOfAccessIcon.tsx', hash: '6782831925933246445' }, + { file: 'packages/react-icons-mdl2-branded/src/components/EdgeOldLogoIcon.tsx', hash: '12981348315562520653' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ExcelDocumentIcon.tsx', hash: '1953182811326908426' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ExcelLogo16Icon.tsx', hash: '15451858074289665199' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ExcelLogoIcon.tsx', hash: '4503561444784775358' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ExcelLogoInverse16Icon.tsx', + hash: '10418691375627201464', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ExcelLogoInverseIcon.tsx', + hash: '7408811467511219483', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/ExchangeLogoIcon.tsx', hash: '1190109571660363185' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ExchangeLogoInverseIcon.tsx', + hash: '10929102413050619142', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/FSharpIcon.tsx', hash: '9700048294343458887' }, + { file: 'packages/react-icons-mdl2-branded/src/components/FSharpLanguageIcon.tsx', hash: '12352319661851991875' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricAssetLibraryIcon.tsx', + hash: '6355542684163004314', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricDataConnectionLibraryIcon.tsx', + hash: '5654902665584785444', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricDocLibraryIcon.tsx', + hash: '7635512283992981007', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderConfirmIcon.tsx', + hash: '2211349472694303988', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderFillIcon.tsx', hash: '964294498720132834' }, + { file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderIcon.tsx', hash: '10695342211099874865' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderLinkIcon.tsx', + hash: '10429063494726626085', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderSearchIcon.tsx', + hash: '6667557297700479924', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderUploadIcon.tsx', + hash: '1910850107847332198', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricFormLibraryIcon.tsx', + hash: '393856321422346232', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricFormLibraryMirroredIcon.tsx', + hash: '2107238495815253044', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricMovetoFolderIcon.tsx', + hash: '15441331751229855364', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricNetworkFolderIcon.tsx', + hash: '4937769319823027311', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/FabricNewFolderIcon.tsx', hash: '5011754760717216363' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricOpenFolderHorizontalIcon.tsx', + hash: '16101556240934332161', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricPictureLibraryIcon.tsx', + hash: '7702059312920065229', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricPublicFolderIcon.tsx', + hash: '1406354717120035387', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricReportLibraryIcon.tsx', + hash: '15366135833518195967', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricReportLibraryMirroredIcon.tsx', + hash: '587360560589104239', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricSyncFolderIcon.tsx', + hash: '11849917451986376708', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricTextHighlightCompositeIcon.tsx', + hash: '8764540473589052096', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricTextHighlightIcon.tsx', + hash: '16283610349878347893', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricUnsyncFolderIcon.tsx', + hash: '15422480604060536911', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FabricUserFolderIcon.tsx', + hash: '1192153107196064422', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/FileTypeSolutionIcon.tsx', + hash: '3662559790348026514', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/FluidLogoIcon.tsx', hash: '17370571241108674595' }, + { file: 'packages/react-icons-mdl2-branded/src/components/GallatinLogoIcon.tsx', hash: '395239581866816777' }, + { file: 'packages/react-icons-mdl2-branded/src/components/KaizalaLogoIcon.tsx', hash: '12996616918427120232' }, + { file: 'packages/react-icons-mdl2-branded/src/components/LinkedInLogoIcon.tsx', hash: '12410113133867699448' }, + { file: 'packages/react-icons-mdl2-branded/src/components/LyncLogoIcon.tsx', hash: '12427794773746552395' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/M365InvoicingLogoIcon.tsx', + hash: '6432220689512606158', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/MSNLogoIcon.tsx', hash: '997872328623258600' }, + { file: 'packages/react-icons-mdl2-branded/src/components/MSNVideosIcon.tsx', hash: '3837439073069506492' }, + { file: 'packages/react-icons-mdl2-branded/src/components/MSNVideosSolidIcon.tsx', hash: '6558132186060318074' }, + { file: 'packages/react-icons-mdl2-branded/src/components/MTMLogoIcon.tsx', hash: '1617837189040859513' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftFlowLogoIcon.tsx', + hash: '12738157357695453070', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftStaffhubLogoIcon.tsx', + hash: '11635328036602536226', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoBlueIcon.tsx', + hash: '13131018300687774701', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoGreenIcon.tsx', + hash: '7995428099799207563', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoIcon.tsx', + hash: '17740888294142646264', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/MixerLogoIcon.tsx', hash: '2066196399332209055' }, + { file: 'packages/react-icons-mdl2-branded/src/components/NUIFaceIcon.tsx', hash: '15740059719288959586' }, + { file: 'packages/react-icons-mdl2-branded/src/components/NugetLogoIcon.tsx', hash: '7248304310428830654' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeAddinsLogoIcon.tsx', + hash: '6014758584722489650', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeAssistantLogoIcon.tsx', + hash: '15148982425841752965', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogo16Icon.tsx', + hash: '11563564485285736203', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogo24Icon.tsx', + hash: '5199176739895186676', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoIcon.tsx', + hash: '14251883998842401693', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverse16Icon.tsx', + hash: '16828025945656129995', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverse24Icon.tsx', + hash: '8691064696395649094', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverseIcon.tsx', + hash: '13561091795038698825', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/OfficeLogoIcon.tsx', hash: '18326076488817609104' }, + { file: 'packages/react-icons-mdl2-branded/src/components/OfficeStoreLogoIcon.tsx', hash: '7632809471286021588' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoFillIcon.tsx', + hash: '12326348413282257076', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoIcon.tsx', + hash: '18042148677451131857', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoInverseIcon.tsx', + hash: '9111845006778088774', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfflineOneDriveParachuteDisabledIcon.tsx', + hash: '4569305382823957773', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OfflineOneDriveParachuteIcon.tsx', + hash: '11708134621038314260', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/OneDriveAddIcon.tsx', hash: '1339929739213542352' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OneDriveFileVaultIcon.tsx', + hash: '7691382481774395461', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OneDriveFolder16Icon.tsx', + hash: '15118961307125957626', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/OneDriveLogoIcon.tsx', hash: '15202151660658133990' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OneNoteEduLogoInverseIcon.tsx', + hash: '5073802520265164743', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/OneNoteLogo16Icon.tsx', hash: '8126472621555093392' }, + { file: 'packages/react-icons-mdl2-branded/src/components/OneNoteLogoIcon.tsx', hash: '10168387188200397957' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OneNoteLogoInverse16Icon.tsx', + hash: '4050397123839257559', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OneNoteLogoInverseIcon.tsx', + hash: '15289706149754656126', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/OutlookLogo16Icon.tsx', hash: '7133650664491934421' }, + { file: 'packages/react-icons-mdl2-branded/src/components/OutlookLogoIcon.tsx', hash: '11060465217645778207' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OutlookLogoInverse16Icon.tsx', + hash: '17275945938623363109', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OutlookLogoInverseIcon.tsx', + hash: '14540781013559732269', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/OutlookSpacesBucketIcon.tsx', + hash: '12512134648162524854', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/PlannerLogoIcon.tsx', hash: '13881355230438925573' }, + { file: 'packages/react-icons-mdl2-branded/src/components/PowerApps2LogoIcon.tsx', hash: '9147199073187918517' }, + { file: 'packages/react-icons-mdl2-branded/src/components/PowerAppsIcon.tsx', hash: '15945765988151351445' }, + { file: 'packages/react-icons-mdl2-branded/src/components/PowerAppsLogoIcon.tsx', hash: '4108964653569237085' }, + { file: 'packages/react-icons-mdl2-branded/src/components/PowerBILogo16Icon.tsx', hash: '1705883498391270004' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/PowerBILogoBackplate16Icon.tsx', + hash: '16863750704521208261', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/PowerBILogoIcon.tsx', hash: '11744984325483917702' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/PowerPointDocumentIcon.tsx', + hash: '13413889276743138496', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/PowerPointLogo16Icon.tsx', + hash: '15159308528546989637', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/PowerPointLogoIcon.tsx', hash: '1161549358748291781' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/PowerPointLogoInverse16Icon.tsx', + hash: '14572773921008382391', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/PowerPointLogoInverseIcon.tsx', + hash: '5515315351698523797', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/PowerShell2Icon.tsx', hash: '9607241218249762348' }, + { file: 'packages/react-icons-mdl2-branded/src/components/PowerShellIcon.tsx', hash: '1215366400765232443' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/Project2019DocumentIcon.tsx', + hash: '2947526506141893256', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ProjectCollectionIcon.tsx', + hash: '9137480349369194321', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/ProjectDocumentIcon.tsx', hash: '4824514570525933892' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ProjectLogo16Icon.tsx', hash: '17897242666248559019' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ProjectLogo32Icon.tsx', hash: '17335364980672858735' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ProjectLogoInverseIcon.tsx', + hash: '9639893396035436074', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ProtectionCenterLogo32Icon.tsx', + hash: '5415769882865013432', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/PublisherLogo16Icon.tsx', + hash: '11547496209099992938', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/PublisherLogoIcon.tsx', hash: '12224610314668748743' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/PublisherLogoInverse16Icon.tsx', + hash: '10768589395164248513', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/RecycleBinIcon.tsx', hash: '4431919377309825291' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SchoolDataSyncLogoIcon.tsx', + hash: '7329348036185854951', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SharepointAppIcon16Icon.tsx', + hash: '11913691047292805113', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/SharepointLogoIcon.tsx', hash: '2973253366437178853' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SharepointLogoInverseIcon.tsx', + hash: '547323045296380184', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/ShieldAlertIcon.tsx', hash: '16953362426179349363' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ShieldIcon.tsx', hash: '12222566642242764707' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ShieldSolidIcon.tsx', hash: '5674612406598905196' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleArrowIcon.tsx', + hash: '16212602154023944478', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleCheckIcon.tsx', + hash: '16698736842509718563', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleClockIcon.tsx', + hash: '11187044799816934889', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleMinusIcon.tsx', + hash: '13491166295728586000', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleSlashIcon.tsx', + hash: '12478069904088362976', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogo16Icon.tsx', + hash: '11717893424251261207', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoFill16Icon.tsx', + hash: '8575456796504640227', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoFillIcon.tsx', + hash: '3211676103062894506', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoIcon.tsx', + hash: '3328870468482787133', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/SkypeLogo16Icon.tsx', hash: '4216393599475392793' }, + { file: 'packages/react-icons-mdl2-branded/src/components/SkypeLogoIcon.tsx', hash: '10970989583765084564' }, + { file: 'packages/react-icons-mdl2-branded/src/components/SkypeMessageIcon.tsx', hash: '3891774845871204894' }, + { file: 'packages/react-icons-mdl2-branded/src/components/SkypeSlashIcon.tsx', hash: '15728439011720121890' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/SocialListeningLogoIcon.tsx', + hash: '9734123862450723424', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogo16Icon.tsx', + hash: '7244885805437496064', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogo32Icon.tsx', + hash: '12096858272751002311', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoFill16Icon.tsx', + hash: '387841461450406720', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoFill32Icon.tsx', + hash: '7990858656352105381', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoInverted16Icon.tsx', + hash: '1699636953066137992', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoInverted32Icon.tsx', + hash: '8411199570320499133', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/StickyNotesOutlineAppIconIcon.tsx', + hash: '7508617851836741600', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/StickyNotesSolidAppIconIcon.tsx', + hash: '4519535920540625805', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/StoreLogo16Icon.tsx', hash: '3730154522145728562' }, + { file: 'packages/react-icons-mdl2-branded/src/components/StoreLogoMed20Icon.tsx', hash: '16218634217032109378' }, + { file: 'packages/react-icons-mdl2-branded/src/components/StreamLogoIcon.tsx', hash: '5114054364460018332' }, + { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogo16Icon.tsx', hash: '13142288730916211955' }, + { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogo32Icon.tsx', hash: '7015704915605563198' }, + { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogoFill16Icon.tsx', hash: '5440418177171701369' }, + { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogoFill32Icon.tsx', hash: '9383255395977678826' }, + { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogoInverseIcon.tsx', hash: '1651266669379649298' }, + { file: 'packages/react-icons-mdl2-branded/src/components/TFVCLogoIcon.tsx', hash: '4522981229589531678' }, + { file: 'packages/react-icons-mdl2-branded/src/components/TaskLogoIcon.tsx', hash: '6937125034367876098' }, + { file: 'packages/react-icons-mdl2-branded/src/components/TeamsLogo16Icon.tsx', hash: '4518194404707385484' }, + { file: 'packages/react-icons-mdl2-branded/src/components/TeamsLogoIcon.tsx', hash: '2058189545298767077' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/TeamsLogoInverseIcon.tsx', + hash: '6880701599345693655', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/ToDoLogoBottomIcon.tsx', hash: '2586784011837635459' }, + { file: 'packages/react-icons-mdl2-branded/src/components/ToDoLogoInverseIcon.tsx', hash: '5713704551578775823' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/ToDoLogoOutlineIcon.tsx', + hash: '17289038086286653881', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/ToDoLogoTopIcon.tsx', hash: '5119451226450060347' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/TypeScriptLanguageIcon.tsx', + hash: '4965199824729399882', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/VSTSAltLogo1Icon.tsx', hash: '16122007415797523884' }, + { file: 'packages/react-icons-mdl2-branded/src/components/VSTSAltLogo2Icon.tsx', hash: '14342687992320244536' }, + { file: 'packages/react-icons-mdl2-branded/src/components/VSTSLogoIcon.tsx', hash: '5067263600814696839' }, + { file: 'packages/react-icons-mdl2-branded/src/components/VisioDiagramIcon.tsx', hash: '12955868772798195807' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/VisioDiagramSyncIcon.tsx', + hash: '2684076828907175078', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/VisioDocumentIcon.tsx', hash: '11451545399228857597' }, + { file: 'packages/react-icons-mdl2-branded/src/components/VisioLogo16Icon.tsx', hash: '15699950363884732544' }, + { file: 'packages/react-icons-mdl2-branded/src/components/VisioLogoIcon.tsx', hash: '11277632155737288079' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/VisioLogoInverse16Icon.tsx', + hash: '6579132367741458351', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/VisioLogoInverseIcon.tsx', + hash: '6141482260623012289', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/VisualBasicLanguageIcon.tsx', + hash: '17351361460595550751', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/VisualStudioIDELogo32Icon.tsx', + hash: '3297659863569634452', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/VisualStudioLogoIcon.tsx', + hash: '3921352685862917392', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/VivaEngageIcon.tsx', hash: '15738913926237603580' }, + { file: 'packages/react-icons-mdl2-branded/src/components/WaffleOffice365Icon.tsx', hash: '2252766351274000701' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/WebAppBuilderFragmentCreateIcon.tsx', + hash: '1463616614984543493', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/WebAppBuilderFragmentIcon.tsx', + hash: '14848667160233281856', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/WebAppBuilderModuleIcon.tsx', + hash: '9260469117886312397', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/WebAppBuilderSlotIcon.tsx', hash: '72036574105245107' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/WhiteBoardApp16Icon.tsx', + hash: '15901343271537059202', + }, + { + file: 'packages/react-icons-mdl2-branded/src/components/WhiteBoardApp32Icon.tsx', + hash: '13969726970012006484', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/WindowsLogoIcon.tsx', hash: '3971496456219229417' }, + { file: 'packages/react-icons-mdl2-branded/src/components/WordDocumentIcon.tsx', hash: '9906863102417860978' }, + { file: 'packages/react-icons-mdl2-branded/src/components/WordLogo16Icon.tsx', hash: '13294245168007756326' }, + { file: 'packages/react-icons-mdl2-branded/src/components/WordLogoIcon.tsx', hash: '10758064000164288561' }, + { + file: 'packages/react-icons-mdl2-branded/src/components/WordLogoInverse16Icon.tsx', + hash: '2761116872095713698', + }, + { file: 'packages/react-icons-mdl2-branded/src/components/WordLogoInverseIcon.tsx', hash: '3972220353064318114' }, + { file: 'packages/react-icons-mdl2-branded/src/components/XboxLogoIcon.tsx', hash: '14069322545871919082' }, + { file: 'packages/react-icons-mdl2-branded/src/components/XboxOneConsoleIcon.tsx', hash: '16771077986371339927' }, + { file: 'packages/react-icons-mdl2-branded/src/components/YammerLogoIcon.tsx', hash: '15020404209578345557' }, + { file: 'packages/react-icons-mdl2-branded/src/index.ts', hash: '2586773828929508699' }, + { file: 'packages/react-icons-mdl2-branded/src/version.ts', hash: '1378911257610677358' }, + { file: 'packages/react-icons-mdl2-branded/tsconfig.json', hash: '16918675067402812126' }, + ], + '@fluentui/react-file-type-icons': [ + { file: 'packages/react-file-type-icons/.eslintrc.json', hash: '777445592424795063' }, + { file: 'packages/react-file-type-icons/.npmignore', hash: '47056201363133096' }, + { file: 'packages/react-file-type-icons/CHANGELOG.json', hash: '1048374655728006466' }, + { file: 'packages/react-file-type-icons/CHANGELOG.md', hash: '11341487553535181736' }, + { file: 'packages/react-file-type-icons/LICENSE', hash: '6940075935154849214' }, + { file: 'packages/react-file-type-icons/README.md', hash: '4637521409527549815' }, + { file: 'packages/react-file-type-icons/jest.config.js', hash: '3240558433730290797' }, + { file: 'packages/react-file-type-icons/just.config.ts', hash: '10393370776333958822' }, + { + file: 'packages/react-file-type-icons/package.json', + hash: '2459179631925974315', + deps: [ + '@fluentui/set-version', + '@fluentui/style-utilities', + 'npm:tslib', + '@fluentui/eslint-plugin', + '@fluentui/scripts-jest', + '@fluentui/scripts-tasks', + 'npm:@types/react', + 'npm:react', + ], + }, + { file: 'packages/react-file-type-icons/project.json', hash: '2426325572864020670' }, + { file: 'packages/react-file-type-icons/src/FileIconType.test.ts', hash: '8074533597091093516' }, + { file: 'packages/react-file-type-icons/src/FileIconType.ts', hash: '8669219161781017165' }, + { file: 'packages/react-file-type-icons/src/FileTypeIconMap.ts', hash: '1622694735442508136' }, + { file: 'packages/react-file-type-icons/src/getFileTypeIconAsHTMLString.test.ts', hash: '18012845855654093679' }, + { file: 'packages/react-file-type-icons/src/getFileTypeIconAsHTMLString.ts', hash: '17339860703958407032' }, + { file: 'packages/react-file-type-icons/src/getFileTypeIconAsUrl.test.ts', hash: '18070267997367805681' }, + { file: 'packages/react-file-type-icons/src/getFileTypeIconAsUrl.ts', hash: '12536579509046942436' }, + { file: 'packages/react-file-type-icons/src/getFileTypeIconProps.test.ts', hash: '2641647765184063437' }, + { file: 'packages/react-file-type-icons/src/getFileTypeIconProps.ts', hash: '6769978776431673776' }, + { file: 'packages/react-file-type-icons/src/index.ts', hash: '6043353553269314684' }, + { file: 'packages/react-file-type-icons/src/initializeFileTypeIcons.tsx', hash: '5377391151793324776' }, + { file: 'packages/react-file-type-icons/src/version.ts', hash: '17270333248350866991' }, + { file: 'packages/react-file-type-icons/tsconfig.json', hash: '3737244395638680036' }, + ], + '@fluentui/scripts-tasks': [ + { file: 'scripts/tasks/.eslintrc.json', hash: '6682885118106241118' }, + { file: 'scripts/tasks/jest.config.js', hash: '4708879655841723493' }, + { + file: 'scripts/tasks/package.json', + hash: '1141372761188294099', + deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-utils', '@fluentui/scripts-prettier', 'npm:flamegrill'], + }, + { file: 'scripts/tasks/project.json', hash: '965696958534677795' }, + { file: 'scripts/tasks/src/api-extractor.ts', hash: '9347093659713672189' }, + { file: 'scripts/tasks/src/argv.spec.ts', hash: '10864686402712112244' }, + { file: 'scripts/tasks/src/argv.ts', hash: '9089616204911607118' }, + { file: 'scripts/tasks/src/babel.ts', hash: '15123611823011343405' }, + { file: 'scripts/tasks/src/clean.ts', hash: '15254131685435404356' }, + { file: 'scripts/tasks/src/copy.ts', hash: '7659902067209473182' }, + { file: 'scripts/tasks/src/eslint.ts', hash: '8568875961692972591' }, + { file: 'scripts/tasks/src/generate-api.ts', hash: '9894536861852274383' }, + { file: 'scripts/tasks/src/index.ts', hash: '8224622240191636854' }, + { file: 'scripts/tasks/src/jest.ts', hash: '10455500877410106889' }, + { file: 'scripts/tasks/src/lint-imports.ts', hash: '12249387039371508759' }, + { file: 'scripts/tasks/src/perf-task/env.ts', hash: '12915350541218118666' }, + { file: 'scripts/tasks/src/perf-task/index.ts', hash: '5355819150311401782' }, + { file: 'scripts/tasks/src/perf-task/perf-test.ts', hash: '11772931894476179226' }, + { file: 'scripts/tasks/src/perf-task/settings.ts', hash: '277930756461011304' }, + { file: 'scripts/tasks/src/postprocess-amd.ts', hash: '16748273849080544377' }, + { file: 'scripts/tasks/src/postprocess.ts', hash: '8523540960661454852' }, + { file: 'scripts/tasks/src/presets.ts', hash: '1602287635639050721' }, + { file: 'scripts/tasks/src/prettier.ts', hash: '7736749199691527952' }, + { file: 'scripts/tasks/src/sass.ts', hash: '1665001166635814228' }, + { file: 'scripts/tasks/src/storybook.ts', hash: '6223916877426257565' }, + { file: 'scripts/tasks/src/swc.ts', hash: '9077529349977385172' }, + { file: 'scripts/tasks/src/ts.ts', hash: '6299748037607840284' }, + { file: 'scripts/tasks/src/type-check.ts', hash: '257376398191037736' }, + { file: 'scripts/tasks/src/utils.spec.ts', hash: '5122114332452916234' }, + { file: 'scripts/tasks/src/utils.ts', hash: '12065994095118738331' }, + { file: 'scripts/tasks/src/verify-packaging.ts', hash: '11797726481686014501' }, + { file: 'scripts/tasks/src/webpack.ts', hash: '13272387079461955495' }, + { file: 'scripts/tasks/tsconfig.json', hash: '2808213717553039801' }, + { file: 'scripts/tasks/tsconfig.lib.json', hash: '12941910922159424720' }, + { file: 'scripts/tasks/tsconfig.spec.json', hash: '16242416785763058919' }, + ], + '@fluentui/state': [ + { file: 'packages/fluentui/state/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/state/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/state/README.md', hash: '8309543667100109097' }, + { file: 'packages/fluentui/state/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/state/gulpfile.ts', hash: '11161944235327936712' }, + { + file: 'packages/fluentui/state/package.json', + hash: '5978700995662223330', + deps: [ + 'npm:@babel/runtime', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + 'npm:lerna-alias', + ], + }, + { file: 'packages/fluentui/state/project.json', hash: '13103481987735488037' }, + { file: 'packages/fluentui/state/src/createManager.ts', hash: '7270086196410713232' }, + { file: 'packages/fluentui/state/src/index.ts', hash: '1091673469609146900' }, + { file: 'packages/fluentui/state/src/managers/carouselManager.ts', hash: '16464933274868458393' }, + { file: 'packages/fluentui/state/src/managers/checkboxManager.ts', hash: '4406845810056310598' }, + { file: 'packages/fluentui/state/src/managers/dialogManager.ts', hash: '3282345229108806027' }, + { file: 'packages/fluentui/state/src/managers/sliderManager.ts', hash: '8249114539083994643' }, + { file: 'packages/fluentui/state/src/types.ts', hash: '15073017630940548162' }, + { file: 'packages/fluentui/state/tsconfig.json', hash: '12214264623402812273' }, + ], + '@fluentui/react-component-nesting-registry': [ + { file: 'packages/fluentui/react-component-nesting-registry/.eslintrc.json', hash: '5658833841867159098' }, + { file: 'packages/fluentui/react-component-nesting-registry/.gulp.js', hash: '18274885140889321646' }, + { file: 'packages/fluentui/react-component-nesting-registry/babel.config.js', hash: '3569817794842814983' }, + { file: 'packages/fluentui/react-component-nesting-registry/gulpfile.ts', hash: '11161944235327936712' }, + { file: 'packages/fluentui/react-component-nesting-registry/jest.config.js', hash: '13298147580513423019' }, + { + file: 'packages/fluentui/react-component-nesting-registry/package.json', + hash: '18111405337855078839', + deps: [ + 'npm:@babel/runtime', + 'npm:prop-types', + '@fluentui/eslint-plugin', + '@fluentui/scripts-babel', + '@fluentui/scripts-gulp', + '@fluentui/scripts-jest', + 'npm:lerna-alias', + 'npm:react', + 'npm:react-dom', + ], + }, + { file: 'packages/fluentui/react-component-nesting-registry/project.json', hash: '13374112547541503236' }, + { file: 'packages/fluentui/react-component-nesting-registry/src/NestingAuto.tsx', hash: '7526141950771152923' }, + { file: 'packages/fluentui/react-component-nesting-registry/src/NestingChild.tsx', hash: '4246445019697112634' }, + { + file: 'packages/fluentui/react-component-nesting-registry/src/NestingContext.ts', + hash: '16669676149117498549', + }, + { file: 'packages/fluentui/react-component-nesting-registry/src/NestingRoot.tsx', hash: '9446161289264562444' }, + { file: 'packages/fluentui/react-component-nesting-registry/src/hooks/types.ts', hash: '10645677914917889256' }, + { + file: 'packages/fluentui/react-component-nesting-registry/src/hooks/useNestingAuto.ts', + hash: '15907268444011966955', + }, + { + file: 'packages/fluentui/react-component-nesting-registry/src/hooks/useNestingChild.ts', + hash: '3316617878321338048', + }, + { + file: 'packages/fluentui/react-component-nesting-registry/src/hooks/useNestingRoot.ts', + hash: '6707493236734176145', + }, + { file: 'packages/fluentui/react-component-nesting-registry/src/index.ts', hash: '12115957419553385299' }, + { file: 'packages/fluentui/react-component-nesting-registry/src/types.ts', hash: '7610298870192453020' }, + { + file: 'packages/fluentui/react-component-nesting-registry/src/utils/RefStack.ts', + hash: '15272540730817118615', + }, + { + file: 'packages/fluentui/react-component-nesting-registry/test/NestingAuto-test.tsx', + hash: '3355074948005691137', + }, + { file: 'packages/fluentui/react-component-nesting-registry/tsconfig.json', hash: '12214264623402812273' }, + ], + }, + layout: { appsDir: 'apps', libsDir: 'packages' }, + affected: [], + focus: null, + groupByFolder: false, + exclude: [], +}; +window.taskGraphResponse = { + taskGraphs: { + '@fluentui/react-storybook-addon-export-to-sandbox:build': { + roots: ['@fluentui/babel-preset-storybook-full-source:build'], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:build': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:build', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + '@fluentui/babel-preset-storybook-full-source:build': { + id: '@fluentui/babel-preset-storybook-full-source:build', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-storybook-addon-export-to-sandbox:build': [ + '@fluentui/babel-preset-storybook-full-source:build', + ], + '@fluentui/babel-preset-storybook-full-source:build': [], + }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:clean': { + roots: ['@fluentui/react-storybook-addon-export-to-sandbox:clean'], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:clean': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:clean', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'clean' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:clean': [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:code-style': { + roots: ['@fluentui/react-storybook-addon-export-to-sandbox:code-style'], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:code-style': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:code-style', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'code-style' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:code-style': [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:just': { + roots: ['@fluentui/react-storybook-addon-export-to-sandbox:just'], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:just': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:just', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'just' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:just': [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:lint': { + roots: ['@fluentui/react-storybook-addon-export-to-sandbox:lint'], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:lint': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:lint', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'lint' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:lint': [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:test': { + roots: ['@fluentui/react-storybook-addon-export-to-sandbox:test'], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:test': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:test', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'test' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:test': [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:type-check': { + roots: ['@fluentui/react-storybook-addon-export-to-sandbox:type-check'], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:type-check': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:type-check', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'type-check' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:type-check': [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:generate-api': { + roots: ['@fluentui/react-storybook-addon-export-to-sandbox:generate-api'], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:generate-api': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:generate-api', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:generate-api': [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: {}, + }, + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { + id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ + '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/babel-preset-storybook-full-source:build': { + roots: ['@fluentui/babel-preset-storybook-full-source:build'], + tasks: { + '@fluentui/babel-preset-storybook-full-source:build': { + id: '@fluentui/babel-preset-storybook-full-source:build', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-storybook-full-source:build': [] }, + }, + '@fluentui/babel-preset-storybook-full-source:clean': { + roots: ['@fluentui/babel-preset-storybook-full-source:clean'], + tasks: { + '@fluentui/babel-preset-storybook-full-source:clean': { + id: '@fluentui/babel-preset-storybook-full-source:clean', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'clean' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-storybook-full-source:clean': [] }, + }, + '@fluentui/babel-preset-storybook-full-source:code-style': { + roots: ['@fluentui/babel-preset-storybook-full-source:code-style'], + tasks: { + '@fluentui/babel-preset-storybook-full-source:code-style': { + id: '@fluentui/babel-preset-storybook-full-source:code-style', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'code-style' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-storybook-full-source:code-style': [] }, + }, + '@fluentui/babel-preset-storybook-full-source:just': { + roots: ['@fluentui/babel-preset-storybook-full-source:just'], + tasks: { + '@fluentui/babel-preset-storybook-full-source:just': { + id: '@fluentui/babel-preset-storybook-full-source:just', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'just' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-storybook-full-source:just': [] }, + }, + '@fluentui/babel-preset-storybook-full-source:lint': { + roots: ['@fluentui/babel-preset-storybook-full-source:lint'], + tasks: { + '@fluentui/babel-preset-storybook-full-source:lint': { + id: '@fluentui/babel-preset-storybook-full-source:lint', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'lint' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-storybook-full-source:lint': [] }, + }, + '@fluentui/babel-preset-storybook-full-source:test': { + roots: ['@fluentui/babel-preset-storybook-full-source:test'], + tasks: { + '@fluentui/babel-preset-storybook-full-source:test': { + id: '@fluentui/babel-preset-storybook-full-source:test', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'test' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-storybook-full-source:test': [] }, + }, + '@fluentui/babel-preset-storybook-full-source:type-check': { + roots: ['@fluentui/babel-preset-storybook-full-source:type-check'], + tasks: { + '@fluentui/babel-preset-storybook-full-source:type-check': { + id: '@fluentui/babel-preset-storybook-full-source:type-check', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'type-check' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-storybook-full-source:type-check': [] }, + }, + '@fluentui/babel-preset-storybook-full-source:generate-api': { + roots: ['@fluentui/babel-preset-storybook-full-source:generate-api'], + tasks: { + '@fluentui/babel-preset-storybook-full-source:generate-api': { + id: '@fluentui/babel-preset-storybook-full-source:generate-api', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'generate-api' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-storybook-full-source:generate-api': [] }, + }, + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { + id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-timepicker-compat-preview:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-timepicker-compat-preview:build': { + id: '@fluentui/react-timepicker-compat-preview:build', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-timepicker-compat-preview:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-combobox:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-timepicker-compat-preview:bundle-size': { + roots: ['@fluentui/react-timepicker-compat-preview:bundle-size'], + tasks: { + '@fluentui/react-timepicker-compat-preview:bundle-size': { + id: '@fluentui/react-timepicker-compat-preview:bundle-size', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:bundle-size': [] }, + }, + '@fluentui/react-timepicker-compat-preview:clean': { + roots: ['@fluentui/react-timepicker-compat-preview:clean'], + tasks: { + '@fluentui/react-timepicker-compat-preview:clean': { + id: '@fluentui/react-timepicker-compat-preview:clean', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:clean': [] }, + }, + '@fluentui/react-timepicker-compat-preview:e2e': { + roots: ['@fluentui/react-timepicker-compat-preview:e2e'], + tasks: { + '@fluentui/react-timepicker-compat-preview:e2e': { + id: '@fluentui/react-timepicker-compat-preview:e2e', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'e2e' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:e2e': [] }, + }, + '@fluentui/react-timepicker-compat-preview:e2e:local': { + roots: ['@fluentui/react-timepicker-compat-preview:e2e:local'], + tasks: { + '@fluentui/react-timepicker-compat-preview:e2e:local': { + id: '@fluentui/react-timepicker-compat-preview:e2e:local', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:e2e:local': [] }, + }, + '@fluentui/react-timepicker-compat-preview:generate-api': { + roots: ['@fluentui/react-timepicker-compat-preview:generate-api'], + tasks: { + '@fluentui/react-timepicker-compat-preview:generate-api': { + id: '@fluentui/react-timepicker-compat-preview:generate-api', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:generate-api': [] }, + }, + '@fluentui/react-timepicker-compat-preview:lint': { + roots: ['@fluentui/react-timepicker-compat-preview:lint'], + tasks: { + '@fluentui/react-timepicker-compat-preview:lint': { + id: '@fluentui/react-timepicker-compat-preview:lint', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:lint': [] }, + }, + '@fluentui/react-timepicker-compat-preview:start': { + roots: ['@fluentui/react-timepicker-compat-preview:start'], + tasks: { + '@fluentui/react-timepicker-compat-preview:start': { + id: '@fluentui/react-timepicker-compat-preview:start', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:start': [] }, + }, + '@fluentui/react-timepicker-compat-preview:storybook': { + roots: ['@fluentui/react-timepicker-compat-preview:storybook'], + tasks: { + '@fluentui/react-timepicker-compat-preview:storybook': { + id: '@fluentui/react-timepicker-compat-preview:storybook', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:storybook': [] }, + }, + '@fluentui/react-timepicker-compat-preview:test': { + roots: ['@fluentui/react-timepicker-compat-preview:test'], + tasks: { + '@fluentui/react-timepicker-compat-preview:test': { + id: '@fluentui/react-timepicker-compat-preview:test', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:test': [] }, + }, + '@fluentui/react-timepicker-compat-preview:test-ssr': { + roots: ['@fluentui/react-timepicker-compat-preview:test-ssr'], + tasks: { + '@fluentui/react-timepicker-compat-preview:test-ssr': { + id: '@fluentui/react-timepicker-compat-preview:test-ssr', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:test-ssr': [] }, + }, + '@fluentui/react-timepicker-compat-preview:type-check': { + roots: ['@fluentui/react-timepicker-compat-preview:type-check'], + tasks: { + '@fluentui/react-timepicker-compat-preview:type-check': { + id: '@fluentui/react-timepicker-compat-preview:type-check', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat-preview:type-check': [] }, + }, + '@fluentui/react-timepicker-compat-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-timepicker-compat-preview:nx-release-publish': { + id: '@fluentui/react-timepicker-compat-preview:nx-release-publish', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-timepicker-compat-preview:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-teaching-popover-preview:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-teaching-popover-preview:build': { + id: '@fluentui/react-teaching-popover-preview:build', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-teaching-popover-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-popover:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + }, + }, + '@fluentui/react-teaching-popover-preview:clean': { + roots: ['@fluentui/react-teaching-popover-preview:clean'], + tasks: { + '@fluentui/react-teaching-popover-preview:clean': { + id: '@fluentui/react-teaching-popover-preview:clean', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-teaching-popover-preview:clean': [] }, + }, + '@fluentui/react-teaching-popover-preview:generate-api': { + roots: ['@fluentui/react-teaching-popover-preview:generate-api'], + tasks: { + '@fluentui/react-teaching-popover-preview:generate-api': { + id: '@fluentui/react-teaching-popover-preview:generate-api', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-teaching-popover-preview:generate-api': [] }, + }, + '@fluentui/react-teaching-popover-preview:lint': { + roots: ['@fluentui/react-teaching-popover-preview:lint'], + tasks: { + '@fluentui/react-teaching-popover-preview:lint': { + id: '@fluentui/react-teaching-popover-preview:lint', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-teaching-popover-preview:lint': [] }, + }, + '@fluentui/react-teaching-popover-preview:start': { + roots: ['@fluentui/react-teaching-popover-preview:start'], + tasks: { + '@fluentui/react-teaching-popover-preview:start': { + id: '@fluentui/react-teaching-popover-preview:start', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-teaching-popover-preview:start': [] }, + }, + '@fluentui/react-teaching-popover-preview:storybook': { + roots: ['@fluentui/react-teaching-popover-preview:storybook'], + tasks: { + '@fluentui/react-teaching-popover-preview:storybook': { + id: '@fluentui/react-teaching-popover-preview:storybook', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-teaching-popover-preview:storybook': [] }, + }, + '@fluentui/react-teaching-popover-preview:test': { + roots: ['@fluentui/react-teaching-popover-preview:test'], + tasks: { + '@fluentui/react-teaching-popover-preview:test': { + id: '@fluentui/react-teaching-popover-preview:test', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-teaching-popover-preview:test': [] }, + }, + '@fluentui/react-teaching-popover-preview:test-ssr': { + roots: ['@fluentui/react-teaching-popover-preview:test-ssr'], + tasks: { + '@fluentui/react-teaching-popover-preview:test-ssr': { + id: '@fluentui/react-teaching-popover-preview:test-ssr', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-teaching-popover-preview:test-ssr': [] }, + }, + '@fluentui/react-teaching-popover-preview:type-check': { + roots: ['@fluentui/react-teaching-popover-preview:type-check'], + tasks: { + '@fluentui/react-teaching-popover-preview:type-check': { + id: '@fluentui/react-teaching-popover-preview:type-check', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-teaching-popover-preview:type-check': [] }, + }, + '@fluentui/react-teaching-popover-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-teaching-popover-preview:nx-release-publish': { + id: '@fluentui/react-teaching-popover-preview:nx-release-publish', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-teaching-popover-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/babel-preset-global-context:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], + tasks: { + '@fluentui/babel-preset-global-context:build': { + id: '@fluentui/babel-preset-global-context:build', + target: { project: '@fluentui/babel-preset-global-context', target: 'build' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + '@fluentui/global-context:build': { + id: '@fluentui/global-context:build', + target: { project: '@fluentui/global-context', target: 'build' }, + projectRoot: 'packages/react-components/global-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/babel-preset-global-context:build': ['@fluentui/global-context:build'], + '@fluentui/global-context:build': ['@fluentui/react-context-selector:build', '@fluentui/react-utilities:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + }, + }, + '@fluentui/babel-preset-global-context:clean': { + roots: ['@fluentui/babel-preset-global-context:clean'], + tasks: { + '@fluentui/babel-preset-global-context:clean': { + id: '@fluentui/babel-preset-global-context:clean', + target: { project: '@fluentui/babel-preset-global-context', target: 'clean' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:clean': [] }, + }, + '@fluentui/babel-preset-global-context:code-style': { + roots: ['@fluentui/babel-preset-global-context:code-style'], + tasks: { + '@fluentui/babel-preset-global-context:code-style': { + id: '@fluentui/babel-preset-global-context:code-style', + target: { project: '@fluentui/babel-preset-global-context', target: 'code-style' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:code-style': [] }, + }, + '@fluentui/babel-preset-global-context:pree2e': { + roots: ['@fluentui/babel-preset-global-context:pree2e'], + tasks: { + '@fluentui/babel-preset-global-context:pree2e': { + id: '@fluentui/babel-preset-global-context:pree2e', + target: { project: '@fluentui/babel-preset-global-context', target: 'pree2e' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:pree2e': [] }, + }, + '@fluentui/babel-preset-global-context:e2e': { + roots: ['@fluentui/babel-preset-global-context:e2e'], + tasks: { + '@fluentui/babel-preset-global-context:e2e': { + id: '@fluentui/babel-preset-global-context:e2e', + target: { project: '@fluentui/babel-preset-global-context', target: 'e2e' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:e2e': [] }, + }, + '@fluentui/babel-preset-global-context:e2e:local': { + roots: ['@fluentui/babel-preset-global-context:e2e:local'], + tasks: { + '@fluentui/babel-preset-global-context:e2e:local': { + id: '@fluentui/babel-preset-global-context:e2e:local', + target: { project: '@fluentui/babel-preset-global-context', target: 'e2e:local' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:e2e:local': [] }, + }, + '@fluentui/babel-preset-global-context:just': { + roots: ['@fluentui/babel-preset-global-context:just'], + tasks: { + '@fluentui/babel-preset-global-context:just': { + id: '@fluentui/babel-preset-global-context:just', + target: { project: '@fluentui/babel-preset-global-context', target: 'just' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:just': [] }, + }, + '@fluentui/babel-preset-global-context:lint': { + roots: ['@fluentui/babel-preset-global-context:lint'], + tasks: { + '@fluentui/babel-preset-global-context:lint': { + id: '@fluentui/babel-preset-global-context:lint', + target: { project: '@fluentui/babel-preset-global-context', target: 'lint' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:lint': [] }, + }, + '@fluentui/babel-preset-global-context:test': { + roots: ['@fluentui/babel-preset-global-context:test'], + tasks: { + '@fluentui/babel-preset-global-context:test': { + id: '@fluentui/babel-preset-global-context:test', + target: { project: '@fluentui/babel-preset-global-context', target: 'test' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:test': [] }, + }, + '@fluentui/babel-preset-global-context:type-check': { + roots: ['@fluentui/babel-preset-global-context:type-check'], + tasks: { + '@fluentui/babel-preset-global-context:type-check': { + id: '@fluentui/babel-preset-global-context:type-check', + target: { project: '@fluentui/babel-preset-global-context', target: 'type-check' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:type-check': [] }, + }, + '@fluentui/babel-preset-global-context:generate-api': { + roots: ['@fluentui/babel-preset-global-context:generate-api'], + tasks: { + '@fluentui/babel-preset-global-context:generate-api': { + id: '@fluentui/babel-preset-global-context:generate-api', + target: { project: '@fluentui/babel-preset-global-context', target: 'generate-api' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:generate-api': [] }, + }, + '@fluentui/babel-preset-global-context:test-ssr': { + roots: ['@fluentui/babel-preset-global-context:test-ssr'], + tasks: { + '@fluentui/babel-preset-global-context:test-ssr': { + id: '@fluentui/babel-preset-global-context:test-ssr', + target: { project: '@fluentui/babel-preset-global-context', target: 'test-ssr' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/babel-preset-global-context:test-ssr': [] }, + }, + '@fluentui/babel-preset-global-context:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/babel-preset-global-context:nx-release-publish': { + id: '@fluentui/babel-preset-global-context:nx-release-publish', + target: { project: '@fluentui/babel-preset-global-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/babel-preset-global-context', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/global-context:nx-release-publish': { + id: '@fluentui/global-context:nx-release-publish', + target: { project: '@fluentui/global-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/global-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/babel-preset-global-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/global-context:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/global-context:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-portal-compat-context:build': { + roots: ['@fluentui/react-portal-compat-context:build'], + tasks: { + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:build': [] }, + }, + '@fluentui/react-portal-compat-context:clean': { + roots: ['@fluentui/react-portal-compat-context:clean'], + tasks: { + '@fluentui/react-portal-compat-context:clean': { + id: '@fluentui/react-portal-compat-context:clean', + target: { project: '@fluentui/react-portal-compat-context', target: 'clean' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:clean': [] }, + }, + '@fluentui/react-portal-compat-context:code-style': { + roots: ['@fluentui/react-portal-compat-context:code-style'], + tasks: { + '@fluentui/react-portal-compat-context:code-style': { + id: '@fluentui/react-portal-compat-context:code-style', + target: { project: '@fluentui/react-portal-compat-context', target: 'code-style' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:code-style': [] }, + }, + '@fluentui/react-portal-compat-context:just': { + roots: ['@fluentui/react-portal-compat-context:just'], + tasks: { + '@fluentui/react-portal-compat-context:just': { + id: '@fluentui/react-portal-compat-context:just', + target: { project: '@fluentui/react-portal-compat-context', target: 'just' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:just': [] }, + }, + '@fluentui/react-portal-compat-context:lint': { + roots: ['@fluentui/react-portal-compat-context:lint'], + tasks: { + '@fluentui/react-portal-compat-context:lint': { + id: '@fluentui/react-portal-compat-context:lint', + target: { project: '@fluentui/react-portal-compat-context', target: 'lint' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:lint': [] }, + }, + '@fluentui/react-portal-compat-context:test': { + roots: ['@fluentui/react-portal-compat-context:test'], + tasks: { + '@fluentui/react-portal-compat-context:test': { + id: '@fluentui/react-portal-compat-context:test', + target: { project: '@fluentui/react-portal-compat-context', target: 'test' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:test': [] }, + }, + '@fluentui/react-portal-compat-context:type-check': { + roots: ['@fluentui/react-portal-compat-context:type-check'], + tasks: { + '@fluentui/react-portal-compat-context:type-check': { + id: '@fluentui/react-portal-compat-context:type-check', + target: { project: '@fluentui/react-portal-compat-context', target: 'type-check' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:type-check': [] }, + }, + '@fluentui/react-portal-compat-context:generate-api': { + roots: ['@fluentui/react-portal-compat-context:generate-api'], + tasks: { + '@fluentui/react-portal-compat-context:generate-api': { + id: '@fluentui/react-portal-compat-context:generate-api', + target: { project: '@fluentui/react-portal-compat-context', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:generate-api': [] }, + }, + '@fluentui/react-portal-compat-context:test-ssr': { + roots: ['@fluentui/react-portal-compat-context:test-ssr'], + tasks: { + '@fluentui/react-portal-compat-context:test-ssr': { + id: '@fluentui/react-portal-compat-context:test-ssr', + target: { project: '@fluentui/react-portal-compat-context', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat-context:test-ssr': [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-swatch-picker-preview:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-swatch-picker-preview:build': { + id: '@fluentui/react-swatch-picker-preview:build', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-swatch-picker-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-swatch-picker-preview:clean': { + roots: ['@fluentui/react-swatch-picker-preview:clean'], + tasks: { + '@fluentui/react-swatch-picker-preview:clean': { + id: '@fluentui/react-swatch-picker-preview:clean', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-swatch-picker-preview:clean': [] }, + }, + '@fluentui/react-swatch-picker-preview:generate-api': { + roots: ['@fluentui/react-swatch-picker-preview:generate-api'], + tasks: { + '@fluentui/react-swatch-picker-preview:generate-api': { + id: '@fluentui/react-swatch-picker-preview:generate-api', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-swatch-picker-preview:generate-api': [] }, + }, + '@fluentui/react-swatch-picker-preview:lint': { + roots: ['@fluentui/react-swatch-picker-preview:lint'], + tasks: { + '@fluentui/react-swatch-picker-preview:lint': { + id: '@fluentui/react-swatch-picker-preview:lint', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-swatch-picker-preview:lint': [] }, + }, + '@fluentui/react-swatch-picker-preview:start': { + roots: ['@fluentui/react-swatch-picker-preview:start'], + tasks: { + '@fluentui/react-swatch-picker-preview:start': { + id: '@fluentui/react-swatch-picker-preview:start', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-swatch-picker-preview:start': [] }, + }, + '@fluentui/react-swatch-picker-preview:storybook': { + roots: ['@fluentui/react-swatch-picker-preview:storybook'], + tasks: { + '@fluentui/react-swatch-picker-preview:storybook': { + id: '@fluentui/react-swatch-picker-preview:storybook', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-swatch-picker-preview:storybook': [] }, + }, + '@fluentui/react-swatch-picker-preview:test': { + roots: ['@fluentui/react-swatch-picker-preview:test'], + tasks: { + '@fluentui/react-swatch-picker-preview:test': { + id: '@fluentui/react-swatch-picker-preview:test', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-swatch-picker-preview:test': [] }, + }, + '@fluentui/react-swatch-picker-preview:test-ssr': { + roots: ['@fluentui/react-swatch-picker-preview:test-ssr'], + tasks: { + '@fluentui/react-swatch-picker-preview:test-ssr': { + id: '@fluentui/react-swatch-picker-preview:test-ssr', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-swatch-picker-preview:test-ssr': [] }, + }, + '@fluentui/react-swatch-picker-preview:type-check': { + roots: ['@fluentui/react-swatch-picker-preview:type-check'], + tasks: { + '@fluentui/react-swatch-picker-preview:type-check': { + id: '@fluentui/react-swatch-picker-preview:type-check', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-swatch-picker-preview:type-check': [] }, + }, + '@fluentui/react-swatch-picker-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-swatch-picker-preview:nx-release-publish': { + id: '@fluentui/react-swatch-picker-preview:nx-release-publish', + target: { project: '@fluentui/react-swatch-picker-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-swatch-picker-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-swatch-picker-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-conformance-griffel:build': { + roots: ['@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/react-conformance-griffel:clean': { + roots: ['@fluentui/react-conformance-griffel:clean'], + tasks: { + '@fluentui/react-conformance-griffel:clean': { + id: '@fluentui/react-conformance-griffel:clean', + target: { project: '@fluentui/react-conformance-griffel', target: 'clean' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance-griffel:clean': [] }, + }, + '@fluentui/react-conformance-griffel:code-style': { + roots: ['@fluentui/react-conformance-griffel:code-style'], + tasks: { + '@fluentui/react-conformance-griffel:code-style': { + id: '@fluentui/react-conformance-griffel:code-style', + target: { project: '@fluentui/react-conformance-griffel', target: 'code-style' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance-griffel:code-style': [] }, + }, + '@fluentui/react-conformance-griffel:just': { + roots: ['@fluentui/react-conformance-griffel:just'], + tasks: { + '@fluentui/react-conformance-griffel:just': { + id: '@fluentui/react-conformance-griffel:just', + target: { project: '@fluentui/react-conformance-griffel', target: 'just' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance-griffel:just': [] }, + }, + '@fluentui/react-conformance-griffel:lint': { + roots: ['@fluentui/react-conformance-griffel:lint'], + tasks: { + '@fluentui/react-conformance-griffel:lint': { + id: '@fluentui/react-conformance-griffel:lint', + target: { project: '@fluentui/react-conformance-griffel', target: 'lint' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance-griffel:lint': [] }, + }, + '@fluentui/react-conformance-griffel:test': { + roots: ['@fluentui/react-conformance-griffel:test'], + tasks: { + '@fluentui/react-conformance-griffel:test': { + id: '@fluentui/react-conformance-griffel:test', + target: { project: '@fluentui/react-conformance-griffel', target: 'test' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance-griffel:test': [] }, + }, + '@fluentui/react-conformance-griffel:type-check': { + roots: ['@fluentui/react-conformance-griffel:type-check'], + tasks: { + '@fluentui/react-conformance-griffel:type-check': { + id: '@fluentui/react-conformance-griffel:type-check', + target: { project: '@fluentui/react-conformance-griffel', target: 'type-check' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance-griffel:type-check': [] }, + }, + '@fluentui/react-conformance-griffel:generate-api': { + roots: ['@fluentui/react-conformance-griffel:generate-api'], + tasks: { + '@fluentui/react-conformance-griffel:generate-api': { + id: '@fluentui/react-conformance-griffel:generate-api', + target: { project: '@fluentui/react-conformance-griffel', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance-griffel:generate-api': [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + }, + }, + '@fluentui/react-component-nesting-registry:build': { + roots: ['@fluentui/react-component-nesting-registry:build'], + tasks: { + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-nesting-registry:build': [] }, + }, + '@fluentui/react-component-nesting-registry:clean': { + roots: ['@fluentui/react-component-nesting-registry:clean'], + tasks: { + '@fluentui/react-component-nesting-registry:clean': { + id: '@fluentui/react-component-nesting-registry:clean', + target: { project: '@fluentui/react-component-nesting-registry', target: 'clean' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-nesting-registry:clean': [] }, + }, + '@fluentui/react-component-nesting-registry:lint': { + roots: ['@fluentui/react-component-nesting-registry:lint'], + tasks: { + '@fluentui/react-component-nesting-registry:lint': { + id: '@fluentui/react-component-nesting-registry:lint', + target: { project: '@fluentui/react-component-nesting-registry', target: 'lint' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-nesting-registry:lint': [] }, + }, + '@fluentui/react-component-nesting-registry:lint:fix': { + roots: ['@fluentui/react-component-nesting-registry:lint:fix'], + tasks: { + '@fluentui/react-component-nesting-registry:lint:fix': { + id: '@fluentui/react-component-nesting-registry:lint:fix', + target: { project: '@fluentui/react-component-nesting-registry', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-nesting-registry:lint:fix': [] }, + }, + '@fluentui/react-component-nesting-registry:test': { + roots: ['@fluentui/react-component-nesting-registry:test'], + tasks: { + '@fluentui/react-component-nesting-registry:test': { + id: '@fluentui/react-component-nesting-registry:test', + target: { project: '@fluentui/react-component-nesting-registry', target: 'test' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-nesting-registry:test': [] }, + }, + '@fluentui/react-component-nesting-registry:test:watch': { + roots: ['@fluentui/react-component-nesting-registry:test:watch'], + tasks: { + '@fluentui/react-component-nesting-registry:test:watch': { + id: '@fluentui/react-component-nesting-registry:test:watch', + target: { project: '@fluentui/react-component-nesting-registry', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-nesting-registry:test:watch': [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-northstar-emotion-renderer:build': { + roots: ['@fluentui/styles:build'], + tasks: { + '@fluentui/react-northstar-emotion-renderer:build': { + id: '@fluentui/react-northstar-emotion-renderer:build', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: {}, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar-emotion-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + }, + }, + '@fluentui/react-northstar-emotion-renderer:clean': { + roots: ['@fluentui/react-northstar-emotion-renderer:clean'], + tasks: { + '@fluentui/react-northstar-emotion-renderer:clean': { + id: '@fluentui/react-northstar-emotion-renderer:clean', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'clean' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-emotion-renderer:clean': [] }, + }, + '@fluentui/react-northstar-emotion-renderer:lint': { + roots: ['@fluentui/react-northstar-emotion-renderer:lint'], + tasks: { + '@fluentui/react-northstar-emotion-renderer:lint': { + id: '@fluentui/react-northstar-emotion-renderer:lint', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'lint' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-emotion-renderer:lint': [] }, + }, + '@fluentui/react-northstar-emotion-renderer:lint:fix': { + roots: ['@fluentui/react-northstar-emotion-renderer:lint:fix'], + tasks: { + '@fluentui/react-northstar-emotion-renderer:lint:fix': { + id: '@fluentui/react-northstar-emotion-renderer:lint:fix', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-emotion-renderer:lint:fix': [] }, + }, + '@fluentui/react-northstar-emotion-renderer:test': { + roots: ['@fluentui/react-northstar-emotion-renderer:test'], + tasks: { + '@fluentui/react-northstar-emotion-renderer:test': { + id: '@fluentui/react-northstar-emotion-renderer:test', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'test' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-emotion-renderer:test': [] }, + }, + '@fluentui/react-northstar-emotion-renderer:test:watch': { + roots: ['@fluentui/react-northstar-emotion-renderer:test:watch'], + tasks: { + '@fluentui/react-northstar-emotion-renderer:test:watch': { + id: '@fluentui/react-northstar-emotion-renderer:test:watch', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-emotion-renderer:test:watch': [] }, + }, + '@fluentui/react-northstar-emotion-renderer:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/react-northstar-emotion-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-emotion-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: {}, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar-emotion-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-colorpicker-compat:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-colorpicker-compat:build': { + id: '@fluentui/react-colorpicker-compat:build', + target: { project: '@fluentui/react-colorpicker-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-colorpicker-compat:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-colorpicker-compat:clean': { + roots: ['@fluentui/react-colorpicker-compat:clean'], + tasks: { + '@fluentui/react-colorpicker-compat:clean': { + id: '@fluentui/react-colorpicker-compat:clean', + target: { project: '@fluentui/react-colorpicker-compat', target: 'clean' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-colorpicker-compat:clean': [] }, + }, + '@fluentui/react-colorpicker-compat:code-style': { + roots: ['@fluentui/react-colorpicker-compat:code-style'], + tasks: { + '@fluentui/react-colorpicker-compat:code-style': { + id: '@fluentui/react-colorpicker-compat:code-style', + target: { project: '@fluentui/react-colorpicker-compat', target: 'code-style' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-colorpicker-compat:code-style': [] }, + }, + '@fluentui/react-colorpicker-compat:just': { + roots: ['@fluentui/react-colorpicker-compat:just'], + tasks: { + '@fluentui/react-colorpicker-compat:just': { + id: '@fluentui/react-colorpicker-compat:just', + target: { project: '@fluentui/react-colorpicker-compat', target: 'just' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-colorpicker-compat:just': [] }, + }, + '@fluentui/react-colorpicker-compat:lint': { + roots: ['@fluentui/react-colorpicker-compat:lint'], + tasks: { + '@fluentui/react-colorpicker-compat:lint': { + id: '@fluentui/react-colorpicker-compat:lint', + target: { project: '@fluentui/react-colorpicker-compat', target: 'lint' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-colorpicker-compat:lint': [] }, + }, + '@fluentui/react-colorpicker-compat:test': { + roots: ['@fluentui/react-colorpicker-compat:test'], + tasks: { + '@fluentui/react-colorpicker-compat:test': { + id: '@fluentui/react-colorpicker-compat:test', + target: { project: '@fluentui/react-colorpicker-compat', target: 'test' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-colorpicker-compat:test': [] }, + }, + '@fluentui/react-colorpicker-compat:test-ssr': { + roots: ['@fluentui/react-colorpicker-compat:test-ssr'], + tasks: { + '@fluentui/react-colorpicker-compat:test-ssr': { + id: '@fluentui/react-colorpicker-compat:test-ssr', + target: { project: '@fluentui/react-colorpicker-compat', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-colorpicker-compat:test-ssr': [] }, + }, + '@fluentui/react-colorpicker-compat:type-check': { + roots: ['@fluentui/react-colorpicker-compat:type-check'], + tasks: { + '@fluentui/react-colorpicker-compat:type-check': { + id: '@fluentui/react-colorpicker-compat:type-check', + target: { project: '@fluentui/react-colorpicker-compat', target: 'type-check' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-colorpicker-compat:type-check': [] }, + }, + '@fluentui/react-colorpicker-compat:generate-api': { + roots: ['@fluentui/react-colorpicker-compat:generate-api'], + tasks: { + '@fluentui/react-colorpicker-compat:generate-api': { + id: '@fluentui/react-colorpicker-compat:generate-api', + target: { project: '@fluentui/react-colorpicker-compat', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-colorpicker-compat:generate-api': [] }, + }, + '@fluentui/react-colorpicker-compat:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-colorpicker-compat:nx-release-publish': { + id: '@fluentui/react-colorpicker-compat:nx-release-publish', + target: { project: '@fluentui/react-colorpicker-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-colorpicker-compat', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-colorpicker-compat:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + roots: ['@fluentui/styles:build'], + tasks: { + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: {}, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + }, + }, + '@fluentui/react-northstar-styles-renderer:clean': { + roots: ['@fluentui/react-northstar-styles-renderer:clean'], + tasks: { + '@fluentui/react-northstar-styles-renderer:clean': { + id: '@fluentui/react-northstar-styles-renderer:clean', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'clean' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-styles-renderer:clean': [] }, + }, + '@fluentui/react-northstar-styles-renderer:lint': { + roots: ['@fluentui/react-northstar-styles-renderer:lint'], + tasks: { + '@fluentui/react-northstar-styles-renderer:lint': { + id: '@fluentui/react-northstar-styles-renderer:lint', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'lint' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-styles-renderer:lint': [] }, + }, + '@fluentui/react-northstar-styles-renderer:lint:fix': { + roots: ['@fluentui/react-northstar-styles-renderer:lint:fix'], + tasks: { + '@fluentui/react-northstar-styles-renderer:lint:fix': { + id: '@fluentui/react-northstar-styles-renderer:lint:fix', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-styles-renderer:lint:fix': [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: {}, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-datepicker-compat:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-datepicker-compat:build': { + id: '@fluentui/react-datepicker-compat:build', + target: { project: '@fluentui/react-datepicker-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-calendar-compat:build': { + id: '@fluentui/react-calendar-compat:build', + target: { project: '@fluentui/react-calendar-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-datepicker-compat:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-calendar-compat:build', + '@fluentui/react-field:build', + '@fluentui/react-input:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-popover:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-calendar-compat:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-datepicker-compat:bundle-size': { + roots: ['@fluentui/react-datepicker-compat:bundle-size'], + tasks: { + '@fluentui/react-datepicker-compat:bundle-size': { + id: '@fluentui/react-datepicker-compat:bundle-size', + target: { project: '@fluentui/react-datepicker-compat', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:bundle-size': [] }, + }, + '@fluentui/react-datepicker-compat:clean': { + roots: ['@fluentui/react-datepicker-compat:clean'], + tasks: { + '@fluentui/react-datepicker-compat:clean': { + id: '@fluentui/react-datepicker-compat:clean', + target: { project: '@fluentui/react-datepicker-compat', target: 'clean' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:clean': [] }, + }, + '@fluentui/react-datepicker-compat:code-style': { + roots: ['@fluentui/react-datepicker-compat:code-style'], + tasks: { + '@fluentui/react-datepicker-compat:code-style': { + id: '@fluentui/react-datepicker-compat:code-style', + target: { project: '@fluentui/react-datepicker-compat', target: 'code-style' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:code-style': [] }, + }, + '@fluentui/react-datepicker-compat:e2e': { + roots: ['@fluentui/react-datepicker-compat:e2e'], + tasks: { + '@fluentui/react-datepicker-compat:e2e': { + id: '@fluentui/react-datepicker-compat:e2e', + target: { project: '@fluentui/react-datepicker-compat', target: 'e2e' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:e2e': [] }, + }, + '@fluentui/react-datepicker-compat:e2e:local': { + roots: ['@fluentui/react-datepicker-compat:e2e:local'], + tasks: { + '@fluentui/react-datepicker-compat:e2e:local': { + id: '@fluentui/react-datepicker-compat:e2e:local', + target: { project: '@fluentui/react-datepicker-compat', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:e2e:local': [] }, + }, + '@fluentui/react-datepicker-compat:just': { + roots: ['@fluentui/react-datepicker-compat:just'], + tasks: { + '@fluentui/react-datepicker-compat:just': { + id: '@fluentui/react-datepicker-compat:just', + target: { project: '@fluentui/react-datepicker-compat', target: 'just' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:just': [] }, + }, + '@fluentui/react-datepicker-compat:lint': { + roots: ['@fluentui/react-datepicker-compat:lint'], + tasks: { + '@fluentui/react-datepicker-compat:lint': { + id: '@fluentui/react-datepicker-compat:lint', + target: { project: '@fluentui/react-datepicker-compat', target: 'lint' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:lint': [] }, + }, + '@fluentui/react-datepicker-compat:test': { + roots: ['@fluentui/react-datepicker-compat:test'], + tasks: { + '@fluentui/react-datepicker-compat:test': { + id: '@fluentui/react-datepicker-compat:test', + target: { project: '@fluentui/react-datepicker-compat', target: 'test' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:test': [] }, + }, + '@fluentui/react-datepicker-compat:type-check': { + roots: ['@fluentui/react-datepicker-compat:type-check'], + tasks: { + '@fluentui/react-datepicker-compat:type-check': { + id: '@fluentui/react-datepicker-compat:type-check', + target: { project: '@fluentui/react-datepicker-compat', target: 'type-check' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:type-check': [] }, + }, + '@fluentui/react-datepicker-compat:generate-api': { + roots: ['@fluentui/react-datepicker-compat:generate-api'], + tasks: { + '@fluentui/react-datepicker-compat:generate-api': { + id: '@fluentui/react-datepicker-compat:generate-api', + target: { project: '@fluentui/react-datepicker-compat', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:generate-api': [] }, + }, + '@fluentui/react-datepicker-compat:storybook': { + roots: ['@fluentui/react-datepicker-compat:storybook'], + tasks: { + '@fluentui/react-datepicker-compat:storybook': { + id: '@fluentui/react-datepicker-compat:storybook', + target: { project: '@fluentui/react-datepicker-compat', target: 'storybook' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:storybook': [] }, + }, + '@fluentui/react-datepicker-compat:start': { + roots: ['@fluentui/react-datepicker-compat:start'], + tasks: { + '@fluentui/react-datepicker-compat:start': { + id: '@fluentui/react-datepicker-compat:start', + target: { project: '@fluentui/react-datepicker-compat', target: 'start' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:start': [] }, + }, + '@fluentui/react-datepicker-compat:test-ssr': { + roots: ['@fluentui/react-datepicker-compat:test-ssr'], + tasks: { + '@fluentui/react-datepicker-compat:test-ssr': { + id: '@fluentui/react-datepicker-compat:test-ssr', + target: { project: '@fluentui/react-datepicker-compat', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-datepicker-compat:test-ssr': [] }, + }, + '@fluentui/react-datepicker-compat:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-datepicker-compat:nx-release-publish': { + id: '@fluentui/react-datepicker-compat:nx-release-publish', + target: { project: '@fluentui/react-datepicker-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-calendar-compat:nx-release-publish': { + id: '@fluentui/react-calendar-compat:nx-release-publish', + target: { project: '@fluentui/react-calendar-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-datepicker-compat:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-calendar-compat:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-calendar-compat:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-timepicker-compat:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-timepicker-compat:build': { + id: '@fluentui/react-timepicker-compat:build', + target: { project: '@fluentui/react-timepicker-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-timepicker-compat:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-combobox:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-timepicker-compat:bundle-size': { + roots: ['@fluentui/react-timepicker-compat:bundle-size'], + tasks: { + '@fluentui/react-timepicker-compat:bundle-size': { + id: '@fluentui/react-timepicker-compat:bundle-size', + target: { project: '@fluentui/react-timepicker-compat', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:bundle-size': [] }, + }, + '@fluentui/react-timepicker-compat:clean': { + roots: ['@fluentui/react-timepicker-compat:clean'], + tasks: { + '@fluentui/react-timepicker-compat:clean': { + id: '@fluentui/react-timepicker-compat:clean', + target: { project: '@fluentui/react-timepicker-compat', target: 'clean' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:clean': [] }, + }, + '@fluentui/react-timepicker-compat:e2e': { + roots: ['@fluentui/react-timepicker-compat:e2e'], + tasks: { + '@fluentui/react-timepicker-compat:e2e': { + id: '@fluentui/react-timepicker-compat:e2e', + target: { project: '@fluentui/react-timepicker-compat', target: 'e2e' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:e2e': [] }, + }, + '@fluentui/react-timepicker-compat:e2e:local': { + roots: ['@fluentui/react-timepicker-compat:e2e:local'], + tasks: { + '@fluentui/react-timepicker-compat:e2e:local': { + id: '@fluentui/react-timepicker-compat:e2e:local', + target: { project: '@fluentui/react-timepicker-compat', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:e2e:local': [] }, + }, + '@fluentui/react-timepicker-compat:generate-api': { + roots: ['@fluentui/react-timepicker-compat:generate-api'], + tasks: { + '@fluentui/react-timepicker-compat:generate-api': { + id: '@fluentui/react-timepicker-compat:generate-api', + target: { project: '@fluentui/react-timepicker-compat', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:generate-api': [] }, + }, + '@fluentui/react-timepicker-compat:lint': { + roots: ['@fluentui/react-timepicker-compat:lint'], + tasks: { + '@fluentui/react-timepicker-compat:lint': { + id: '@fluentui/react-timepicker-compat:lint', + target: { project: '@fluentui/react-timepicker-compat', target: 'lint' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:lint': [] }, + }, + '@fluentui/react-timepicker-compat:start': { + roots: ['@fluentui/react-timepicker-compat:start'], + tasks: { + '@fluentui/react-timepicker-compat:start': { + id: '@fluentui/react-timepicker-compat:start', + target: { project: '@fluentui/react-timepicker-compat', target: 'start' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:start': [] }, + }, + '@fluentui/react-timepicker-compat:storybook': { + roots: ['@fluentui/react-timepicker-compat:storybook'], + tasks: { + '@fluentui/react-timepicker-compat:storybook': { + id: '@fluentui/react-timepicker-compat:storybook', + target: { project: '@fluentui/react-timepicker-compat', target: 'storybook' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:storybook': [] }, + }, + '@fluentui/react-timepicker-compat:test': { + roots: ['@fluentui/react-timepicker-compat:test'], + tasks: { + '@fluentui/react-timepicker-compat:test': { + id: '@fluentui/react-timepicker-compat:test', + target: { project: '@fluentui/react-timepicker-compat', target: 'test' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:test': [] }, + }, + '@fluentui/react-timepicker-compat:test-ssr': { + roots: ['@fluentui/react-timepicker-compat:test-ssr'], + tasks: { + '@fluentui/react-timepicker-compat:test-ssr': { + id: '@fluentui/react-timepicker-compat:test-ssr', + target: { project: '@fluentui/react-timepicker-compat', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:test-ssr': [] }, + }, + '@fluentui/react-timepicker-compat:type-check': { + roots: ['@fluentui/react-timepicker-compat:type-check'], + tasks: { + '@fluentui/react-timepicker-compat:type-check': { + id: '@fluentui/react-timepicker-compat:type-check', + target: { project: '@fluentui/react-timepicker-compat', target: 'type-check' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-timepicker-compat:type-check': [] }, + }, + '@fluentui/react-timepicker-compat:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-timepicker-compat:nx-release-publish': { + id: '@fluentui/react-timepicker-compat:nx-release-publish', + target: { project: '@fluentui/react-timepicker-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-timepicker-compat', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-timepicker-compat:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-context-selector:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], + tasks: { + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + }, + }, + '@fluentui/react-context-selector:clean': { + roots: ['@fluentui/react-context-selector:clean'], + tasks: { + '@fluentui/react-context-selector:clean': { + id: '@fluentui/react-context-selector:clean', + target: { project: '@fluentui/react-context-selector', target: 'clean' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-context-selector:clean': [] }, + }, + '@fluentui/react-context-selector:code-style': { + roots: ['@fluentui/react-context-selector:code-style'], + tasks: { + '@fluentui/react-context-selector:code-style': { + id: '@fluentui/react-context-selector:code-style', + target: { project: '@fluentui/react-context-selector', target: 'code-style' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-context-selector:code-style': [] }, + }, + '@fluentui/react-context-selector:just': { + roots: ['@fluentui/react-context-selector:just'], + tasks: { + '@fluentui/react-context-selector:just': { + id: '@fluentui/react-context-selector:just', + target: { project: '@fluentui/react-context-selector', target: 'just' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-context-selector:just': [] }, + }, + '@fluentui/react-context-selector:lint': { + roots: ['@fluentui/react-context-selector:lint'], + tasks: { + '@fluentui/react-context-selector:lint': { + id: '@fluentui/react-context-selector:lint', + target: { project: '@fluentui/react-context-selector', target: 'lint' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-context-selector:lint': [] }, + }, + '@fluentui/react-context-selector:test': { + roots: ['@fluentui/react-context-selector:test'], + tasks: { + '@fluentui/react-context-selector:test': { + id: '@fluentui/react-context-selector:test', + target: { project: '@fluentui/react-context-selector', target: 'test' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-context-selector:test': [] }, + }, + '@fluentui/react-context-selector:type-check': { + roots: ['@fluentui/react-context-selector:type-check'], + tasks: { + '@fluentui/react-context-selector:type-check': { + id: '@fluentui/react-context-selector:type-check', + target: { project: '@fluentui/react-context-selector', target: 'type-check' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-context-selector:type-check': [] }, + }, + '@fluentui/react-context-selector:generate-api': { + roots: ['@fluentui/react-context-selector:generate-api'], + tasks: { + '@fluentui/react-context-selector:generate-api': { + id: '@fluentui/react-context-selector:generate-api', + target: { project: '@fluentui/react-context-selector', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-context-selector:generate-api': [] }, + }, + '@fluentui/react-context-selector:test-ssr': { + roots: ['@fluentui/react-context-selector:test-ssr'], + tasks: { + '@fluentui/react-context-selector:test-ssr': { + id: '@fluentui/react-context-selector:test-ssr', + target: { project: '@fluentui/react-context-selector', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-context-selector:test-ssr': [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: {}, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-component-event-listener:build': { + roots: ['@fluentui/react-component-event-listener:build'], + tasks: { + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-event-listener:build': [] }, + }, + '@fluentui/react-component-event-listener:clean': { + roots: ['@fluentui/react-component-event-listener:clean'], + tasks: { + '@fluentui/react-component-event-listener:clean': { + id: '@fluentui/react-component-event-listener:clean', + target: { project: '@fluentui/react-component-event-listener', target: 'clean' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-event-listener:clean': [] }, + }, + '@fluentui/react-component-event-listener:lint': { + roots: ['@fluentui/react-component-event-listener:lint'], + tasks: { + '@fluentui/react-component-event-listener:lint': { + id: '@fluentui/react-component-event-listener:lint', + target: { project: '@fluentui/react-component-event-listener', target: 'lint' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-event-listener:lint': [] }, + }, + '@fluentui/react-component-event-listener:lint:fix': { + roots: ['@fluentui/react-component-event-listener:lint:fix'], + tasks: { + '@fluentui/react-component-event-listener:lint:fix': { + id: '@fluentui/react-component-event-listener:lint:fix', + target: { project: '@fluentui/react-component-event-listener', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-event-listener:lint:fix': [] }, + }, + '@fluentui/react-component-event-listener:test': { + roots: ['@fluentui/react-component-event-listener:test'], + tasks: { + '@fluentui/react-component-event-listener:test': { + id: '@fluentui/react-component-event-listener:test', + target: { project: '@fluentui/react-component-event-listener', target: 'test' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-event-listener:test': [] }, + }, + '@fluentui/react-component-event-listener:test:watch': { + roots: ['@fluentui/react-component-event-listener:test:watch'], + tasks: { + '@fluentui/react-component-event-listener:test:watch': { + id: '@fluentui/react-component-event-listener:test:watch', + target: { project: '@fluentui/react-component-event-listener', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-event-listener:test:watch': [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + roots: ['@fluentui/styles:build'], + tasks: { + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: {}, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + }, + }, + '@fluentui/react-northstar-fela-renderer:clean': { + roots: ['@fluentui/react-northstar-fela-renderer:clean'], + tasks: { + '@fluentui/react-northstar-fela-renderer:clean': { + id: '@fluentui/react-northstar-fela-renderer:clean', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'clean' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-fela-renderer:clean': [] }, + }, + '@fluentui/react-northstar-fela-renderer:lint': { + roots: ['@fluentui/react-northstar-fela-renderer:lint'], + tasks: { + '@fluentui/react-northstar-fela-renderer:lint': { + id: '@fluentui/react-northstar-fela-renderer:lint', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'lint' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-fela-renderer:lint': [] }, + }, + '@fluentui/react-northstar-fela-renderer:lint:fix': { + roots: ['@fluentui/react-northstar-fela-renderer:lint:fix'], + tasks: { + '@fluentui/react-northstar-fela-renderer:lint:fix': { + id: '@fluentui/react-northstar-fela-renderer:lint:fix', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-fela-renderer:lint:fix': [] }, + }, + '@fluentui/react-northstar-fela-renderer:test': { + roots: ['@fluentui/react-northstar-fela-renderer:test'], + tasks: { + '@fluentui/react-northstar-fela-renderer:test': { + id: '@fluentui/react-northstar-fela-renderer:test', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'test' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-fela-renderer:test': [] }, + }, + '@fluentui/react-northstar-fela-renderer:test:watch': { + roots: ['@fluentui/react-northstar-fela-renderer:test:watch'], + tasks: { + '@fluentui/react-northstar-fela-renderer:test:watch': { + id: '@fluentui/react-northstar-fela-renderer:test:watch', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-fela-renderer:test:watch': [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: {}, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-motions-preview:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-motions-preview:build': { + id: '@fluentui/react-motions-preview:build', + target: { project: '@fluentui/react-motions-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-motions-preview:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-motions-preview:clean': { + roots: ['@fluentui/react-motions-preview:clean'], + tasks: { + '@fluentui/react-motions-preview:clean': { + id: '@fluentui/react-motions-preview:clean', + target: { project: '@fluentui/react-motions-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motions-preview:clean': [] }, + }, + '@fluentui/react-motions-preview:generate-api': { + roots: ['@fluentui/react-motions-preview:generate-api'], + tasks: { + '@fluentui/react-motions-preview:generate-api': { + id: '@fluentui/react-motions-preview:generate-api', + target: { project: '@fluentui/react-motions-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motions-preview:generate-api': [] }, + }, + '@fluentui/react-motions-preview:lint': { + roots: ['@fluentui/react-motions-preview:lint'], + tasks: { + '@fluentui/react-motions-preview:lint': { + id: '@fluentui/react-motions-preview:lint', + target: { project: '@fluentui/react-motions-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motions-preview:lint': [] }, + }, + '@fluentui/react-motions-preview:start': { + roots: ['@fluentui/react-motions-preview:start'], + tasks: { + '@fluentui/react-motions-preview:start': { + id: '@fluentui/react-motions-preview:start', + target: { project: '@fluentui/react-motions-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motions-preview:start': [] }, + }, + '@fluentui/react-motions-preview:storybook': { + roots: ['@fluentui/react-motions-preview:storybook'], + tasks: { + '@fluentui/react-motions-preview:storybook': { + id: '@fluentui/react-motions-preview:storybook', + target: { project: '@fluentui/react-motions-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motions-preview:storybook': [] }, + }, + '@fluentui/react-motions-preview:test': { + roots: ['@fluentui/react-motions-preview:test'], + tasks: { + '@fluentui/react-motions-preview:test': { + id: '@fluentui/react-motions-preview:test', + target: { project: '@fluentui/react-motions-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motions-preview:test': [] }, + }, + '@fluentui/react-motions-preview:test-ssr': { + roots: ['@fluentui/react-motions-preview:test-ssr'], + tasks: { + '@fluentui/react-motions-preview:test-ssr': { + id: '@fluentui/react-motions-preview:test-ssr', + target: { project: '@fluentui/react-motions-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motions-preview:test-ssr': [] }, + }, + '@fluentui/react-motions-preview:type-check': { + roots: ['@fluentui/react-motions-preview:type-check'], + tasks: { + '@fluentui/react-motions-preview:type-check': { + id: '@fluentui/react-motions-preview:type-check', + target: { project: '@fluentui/react-motions-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motions-preview:type-check': [] }, + }, + '@fluentui/react-motions-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-motions-preview:nx-release-publish': { + id: '@fluentui/react-motions-preview:nx-release-publish', + target: { project: '@fluentui/react-motions-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motions-preview', + overrides: {}, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-motions-preview:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-migration-v0-v9:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + '@fluentui/priority-overflow:build', + '@fluentui/accessibility:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + ], + tasks: { + '@fluentui/react-migration-v0-v9:build': { + id: '@fluentui/react-migration-v0-v9:build', + target: { project: '@fluentui/react-migration-v0-v9', target: 'build' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:build': { + id: '@fluentui/react-components:build', + target: { project: '@fluentui/react-components', target: 'build' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:build': { + id: '@fluentui/react-alert:build', + target: { project: '@fluentui/react-alert', target: 'build' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:build': { + id: '@fluentui/react-infobutton:build', + target: { project: '@fluentui/react-infobutton', target: 'build' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:build': { + id: '@fluentui/react-overflow:build', + target: { project: '@fluentui/react-overflow', target: 'build' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:build': { + id: '@fluentui/react-virtualizer:build', + target: { project: '@fluentui/react-virtualizer', target: 'build' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-migration-v0-v9:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-components:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-northstar:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-components:build': [ + '@fluentui/react-accordion:build', + '@fluentui/react-alert:build', + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-button:build', + '@fluentui/react-card:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-combobox:build', + '@fluentui/react-dialog:build', + '@fluentui/react-divider:build', + '@fluentui/react-drawer:build', + '@fluentui/react-field:build', + '@fluentui/react-image:build', + '@fluentui/react-infobutton:build', + '@fluentui/react-infolabel:build', + '@fluentui/react-input:build', + '@fluentui/react-label:build', + '@fluentui/react-link:build', + '@fluentui/react-menu:build', + '@fluentui/react-overflow:build', + '@fluentui/react-persona:build', + '@fluentui/react-portal:build', + '@fluentui/react-popover:build', + '@fluentui/react-positioning:build', + '@fluentui/react-progress:build', + '@fluentui/react-provider:build', + '@fluentui/react-radio:build', + '@fluentui/react-select:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-skeleton:build', + '@fluentui/react-slider:build', + '@fluentui/react-spinbutton:build', + '@fluentui/react-spinner:build', + '@fluentui/react-switch:build', + '@fluentui/react-table:build', + '@fluentui/react-tabs:build', + '@fluentui/react-tabster:build', + '@fluentui/react-tags:build', + '@fluentui/react-textarea:build', + '@fluentui/react-theme:build', + '@fluentui/react-toast:build', + '@fluentui/react-toolbar:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-text:build', + '@fluentui/react-virtualizer:build', + '@fluentui/react-tree:build', + '@fluentui/react-message-bar:build', + '@fluentui/react-breadcrumb:build', + ], + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-alert:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infobutton:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-overflow:build': [ + '@fluentui/priority-overflow:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/priority-overflow:build': [], + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-virtualizer:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-proptypes:build': [], + }, + }, + '@fluentui/react-migration-v0-v9:clean': { + roots: ['@fluentui/react-migration-v0-v9:clean'], + tasks: { + '@fluentui/react-migration-v0-v9:clean': { + id: '@fluentui/react-migration-v0-v9:clean', + target: { project: '@fluentui/react-migration-v0-v9', target: 'clean' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:clean': [] }, + }, + '@fluentui/react-migration-v0-v9:code-style': { + roots: ['@fluentui/react-migration-v0-v9:code-style'], + tasks: { + '@fluentui/react-migration-v0-v9:code-style': { + id: '@fluentui/react-migration-v0-v9:code-style', + target: { project: '@fluentui/react-migration-v0-v9', target: 'code-style' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:code-style': [] }, + }, + '@fluentui/react-migration-v0-v9:just': { + roots: ['@fluentui/react-migration-v0-v9:just'], + tasks: { + '@fluentui/react-migration-v0-v9:just': { + id: '@fluentui/react-migration-v0-v9:just', + target: { project: '@fluentui/react-migration-v0-v9', target: 'just' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:just': [] }, + }, + '@fluentui/react-migration-v0-v9:lint': { + roots: ['@fluentui/react-migration-v0-v9:lint'], + tasks: { + '@fluentui/react-migration-v0-v9:lint': { + id: '@fluentui/react-migration-v0-v9:lint', + target: { project: '@fluentui/react-migration-v0-v9', target: 'lint' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:lint': [] }, + }, + '@fluentui/react-migration-v0-v9:test': { + roots: ['@fluentui/react-migration-v0-v9:test'], + tasks: { + '@fluentui/react-migration-v0-v9:test': { + id: '@fluentui/react-migration-v0-v9:test', + target: { project: '@fluentui/react-migration-v0-v9', target: 'test' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:test': [] }, + }, + '@fluentui/react-migration-v0-v9:type-check': { + roots: ['@fluentui/react-migration-v0-v9:type-check'], + tasks: { + '@fluentui/react-migration-v0-v9:type-check': { + id: '@fluentui/react-migration-v0-v9:type-check', + target: { project: '@fluentui/react-migration-v0-v9', target: 'type-check' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:type-check': [] }, + }, + '@fluentui/react-migration-v0-v9:generate-api': { + roots: ['@fluentui/react-migration-v0-v9:generate-api'], + tasks: { + '@fluentui/react-migration-v0-v9:generate-api': { + id: '@fluentui/react-migration-v0-v9:generate-api', + target: { project: '@fluentui/react-migration-v0-v9', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:generate-api': [] }, + }, + '@fluentui/react-migration-v0-v9:storybook': { + roots: ['@fluentui/react-migration-v0-v9:storybook'], + tasks: { + '@fluentui/react-migration-v0-v9:storybook': { + id: '@fluentui/react-migration-v0-v9:storybook', + target: { project: '@fluentui/react-migration-v0-v9', target: 'storybook' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:storybook': [] }, + }, + '@fluentui/react-migration-v0-v9:start': { + roots: ['@fluentui/react-migration-v0-v9:start'], + tasks: { + '@fluentui/react-migration-v0-v9:start': { + id: '@fluentui/react-migration-v0-v9:start', + target: { project: '@fluentui/react-migration-v0-v9', target: 'start' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v0-v9:start': [] }, + }, + '@fluentui/react-migration-v0-v9:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/react-migration-v0-v9:nx-release-publish': { + id: '@fluentui/react-migration-v0-v9:nx-release-publish', + target: { project: '@fluentui/react-migration-v0-v9', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: {}, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-migration-v0-v9:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-calendar-compat:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-calendar-compat:build': { + id: '@fluentui/react-calendar-compat:build', + target: { project: '@fluentui/react-calendar-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-calendar-compat:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-calendar-compat:bundle-size': { + roots: ['@fluentui/react-calendar-compat:bundle-size'], + tasks: { + '@fluentui/react-calendar-compat:bundle-size': { + id: '@fluentui/react-calendar-compat:bundle-size', + target: { project: '@fluentui/react-calendar-compat', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:bundle-size': [] }, + }, + '@fluentui/react-calendar-compat:clean': { + roots: ['@fluentui/react-calendar-compat:clean'], + tasks: { + '@fluentui/react-calendar-compat:clean': { + id: '@fluentui/react-calendar-compat:clean', + target: { project: '@fluentui/react-calendar-compat', target: 'clean' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:clean': [] }, + }, + '@fluentui/react-calendar-compat:generate-api': { + roots: ['@fluentui/react-calendar-compat:generate-api'], + tasks: { + '@fluentui/react-calendar-compat:generate-api': { + id: '@fluentui/react-calendar-compat:generate-api', + target: { project: '@fluentui/react-calendar-compat', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:generate-api': [] }, + }, + '@fluentui/react-calendar-compat:lint': { + roots: ['@fluentui/react-calendar-compat:lint'], + tasks: { + '@fluentui/react-calendar-compat:lint': { + id: '@fluentui/react-calendar-compat:lint', + target: { project: '@fluentui/react-calendar-compat', target: 'lint' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:lint': [] }, + }, + '@fluentui/react-calendar-compat:start': { + roots: ['@fluentui/react-calendar-compat:start'], + tasks: { + '@fluentui/react-calendar-compat:start': { + id: '@fluentui/react-calendar-compat:start', + target: { project: '@fluentui/react-calendar-compat', target: 'start' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:start': [] }, + }, + '@fluentui/react-calendar-compat:storybook': { + roots: ['@fluentui/react-calendar-compat:storybook'], + tasks: { + '@fluentui/react-calendar-compat:storybook': { + id: '@fluentui/react-calendar-compat:storybook', + target: { project: '@fluentui/react-calendar-compat', target: 'storybook' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:storybook': [] }, + }, + '@fluentui/react-calendar-compat:test': { + roots: ['@fluentui/react-calendar-compat:test'], + tasks: { + '@fluentui/react-calendar-compat:test': { + id: '@fluentui/react-calendar-compat:test', + target: { project: '@fluentui/react-calendar-compat', target: 'test' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:test': [] }, + }, + '@fluentui/react-calendar-compat:test-ssr': { + roots: ['@fluentui/react-calendar-compat:test-ssr'], + tasks: { + '@fluentui/react-calendar-compat:test-ssr': { + id: '@fluentui/react-calendar-compat:test-ssr', + target: { project: '@fluentui/react-calendar-compat', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:test-ssr': [] }, + }, + '@fluentui/react-calendar-compat:type-check': { + roots: ['@fluentui/react-calendar-compat:type-check'], + tasks: { + '@fluentui/react-calendar-compat:type-check': { + id: '@fluentui/react-calendar-compat:type-check', + target: { project: '@fluentui/react-calendar-compat', target: 'type-check' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-calendar-compat:type-check': [] }, + }, + '@fluentui/react-calendar-compat:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-calendar-compat:nx-release-publish': { + id: '@fluentui/react-calendar-compat:nx-release-publish', + target: { project: '@fluentui/react-calendar-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-calendar-compat:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-shared-contexts:build': { + roots: ['@fluentui/tokens:build'], + tasks: { + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + }, + }, + '@fluentui/react-shared-contexts:clean': { + roots: ['@fluentui/react-shared-contexts:clean'], + tasks: { + '@fluentui/react-shared-contexts:clean': { + id: '@fluentui/react-shared-contexts:clean', + target: { project: '@fluentui/react-shared-contexts', target: 'clean' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-shared-contexts:clean': [] }, + }, + '@fluentui/react-shared-contexts:code-style': { + roots: ['@fluentui/react-shared-contexts:code-style'], + tasks: { + '@fluentui/react-shared-contexts:code-style': { + id: '@fluentui/react-shared-contexts:code-style', + target: { project: '@fluentui/react-shared-contexts', target: 'code-style' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-shared-contexts:code-style': [] }, + }, + '@fluentui/react-shared-contexts:just': { + roots: ['@fluentui/react-shared-contexts:just'], + tasks: { + '@fluentui/react-shared-contexts:just': { + id: '@fluentui/react-shared-contexts:just', + target: { project: '@fluentui/react-shared-contexts', target: 'just' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-shared-contexts:just': [] }, + }, + '@fluentui/react-shared-contexts:lint': { + roots: ['@fluentui/react-shared-contexts:lint'], + tasks: { + '@fluentui/react-shared-contexts:lint': { + id: '@fluentui/react-shared-contexts:lint', + target: { project: '@fluentui/react-shared-contexts', target: 'lint' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-shared-contexts:lint': [] }, + }, + '@fluentui/react-shared-contexts:test': { + roots: ['@fluentui/react-shared-contexts:test'], + tasks: { + '@fluentui/react-shared-contexts:test': { + id: '@fluentui/react-shared-contexts:test', + target: { project: '@fluentui/react-shared-contexts', target: 'test' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-shared-contexts:test': [] }, + }, + '@fluentui/react-shared-contexts:type-check': { + roots: ['@fluentui/react-shared-contexts:type-check'], + tasks: { + '@fluentui/react-shared-contexts:type-check': { + id: '@fluentui/react-shared-contexts:type-check', + target: { project: '@fluentui/react-shared-contexts', target: 'type-check' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-shared-contexts:type-check': [] }, + }, + '@fluentui/react-shared-contexts:generate-api': { + roots: ['@fluentui/react-shared-contexts:generate-api'], + tasks: { + '@fluentui/react-shared-contexts:generate-api': { + id: '@fluentui/react-shared-contexts:generate-api', + target: { project: '@fluentui/react-shared-contexts', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-shared-contexts:generate-api': [] }, + }, + '@fluentui/react-shared-contexts:test-ssr': { + roots: ['@fluentui/react-shared-contexts:test-ssr'], + tasks: { + '@fluentui/react-shared-contexts:test-ssr': { + id: '@fluentui/react-shared-contexts:test-ssr', + target: { project: '@fluentui/react-shared-contexts', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-shared-contexts:test-ssr': [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: {}, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-migration-v8-v9:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/a11y-testing:build', + '@fluentui/priority-overflow:build', + ], + tasks: { + '@fluentui/react-migration-v8-v9:build': { + id: '@fluentui/react-migration-v8-v9:build', + target: { project: '@fluentui/react-migration-v8-v9', target: 'build' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + '@fluentui/fluent2-theme:build': { + id: '@fluentui/fluent2-theme:build', + target: { project: '@fluentui/fluent2-theme', target: 'build' }, + projectRoot: 'packages/fluent2-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:build': { + id: '@fluentui/react-components:build', + target: { project: '@fluentui/react-components', target: 'build' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:build': { + id: '@fluentui/react-alert:build', + target: { project: '@fluentui/react-alert', target: 'build' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:build': { + id: '@fluentui/react-infobutton:build', + target: { project: '@fluentui/react-infobutton', target: 'build' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:build': { + id: '@fluentui/react-overflow:build', + target: { project: '@fluentui/react-overflow', target: 'build' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:build': { + id: '@fluentui/react-virtualizer:build', + target: { project: '@fluentui/react-virtualizer', target: 'build' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-migration-v8-v9:build': [ + '@fluentui/fluent2-theme:build', + '@fluentui/react:build', + '@fluentui/react-components:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/fluent2-theme:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/react-components:build': [ + '@fluentui/react-accordion:build', + '@fluentui/react-alert:build', + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-button:build', + '@fluentui/react-card:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-combobox:build', + '@fluentui/react-dialog:build', + '@fluentui/react-divider:build', + '@fluentui/react-drawer:build', + '@fluentui/react-field:build', + '@fluentui/react-image:build', + '@fluentui/react-infobutton:build', + '@fluentui/react-infolabel:build', + '@fluentui/react-input:build', + '@fluentui/react-label:build', + '@fluentui/react-link:build', + '@fluentui/react-menu:build', + '@fluentui/react-overflow:build', + '@fluentui/react-persona:build', + '@fluentui/react-portal:build', + '@fluentui/react-popover:build', + '@fluentui/react-positioning:build', + '@fluentui/react-progress:build', + '@fluentui/react-provider:build', + '@fluentui/react-radio:build', + '@fluentui/react-select:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-skeleton:build', + '@fluentui/react-slider:build', + '@fluentui/react-spinbutton:build', + '@fluentui/react-spinner:build', + '@fluentui/react-switch:build', + '@fluentui/react-table:build', + '@fluentui/react-tabs:build', + '@fluentui/react-tabster:build', + '@fluentui/react-tags:build', + '@fluentui/react-textarea:build', + '@fluentui/react-theme:build', + '@fluentui/react-toast:build', + '@fluentui/react-toolbar:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-text:build', + '@fluentui/react-virtualizer:build', + '@fluentui/react-tree:build', + '@fluentui/react-message-bar:build', + '@fluentui/react-breadcrumb:build', + ], + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-alert:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infobutton:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-overflow:build': [ + '@fluentui/priority-overflow:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/priority-overflow:build': [], + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-virtualizer:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-migration-v8-v9:clean': { + roots: ['@fluentui/react-migration-v8-v9:clean'], + tasks: { + '@fluentui/react-migration-v8-v9:clean': { + id: '@fluentui/react-migration-v8-v9:clean', + target: { project: '@fluentui/react-migration-v8-v9', target: 'clean' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:clean': [] }, + }, + '@fluentui/react-migration-v8-v9:code-style': { + roots: ['@fluentui/react-migration-v8-v9:code-style'], + tasks: { + '@fluentui/react-migration-v8-v9:code-style': { + id: '@fluentui/react-migration-v8-v9:code-style', + target: { project: '@fluentui/react-migration-v8-v9', target: 'code-style' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:code-style': [] }, + }, + '@fluentui/react-migration-v8-v9:just': { + roots: ['@fluentui/react-migration-v8-v9:just'], + tasks: { + '@fluentui/react-migration-v8-v9:just': { + id: '@fluentui/react-migration-v8-v9:just', + target: { project: '@fluentui/react-migration-v8-v9', target: 'just' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:just': [] }, + }, + '@fluentui/react-migration-v8-v9:lint': { + roots: ['@fluentui/react-migration-v8-v9:lint'], + tasks: { + '@fluentui/react-migration-v8-v9:lint': { + id: '@fluentui/react-migration-v8-v9:lint', + target: { project: '@fluentui/react-migration-v8-v9', target: 'lint' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:lint': [] }, + }, + '@fluentui/react-migration-v8-v9:test': { + roots: ['@fluentui/react-migration-v8-v9:test'], + tasks: { + '@fluentui/react-migration-v8-v9:test': { + id: '@fluentui/react-migration-v8-v9:test', + target: { project: '@fluentui/react-migration-v8-v9', target: 'test' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:test': [] }, + }, + '@fluentui/react-migration-v8-v9:type-check': { + roots: ['@fluentui/react-migration-v8-v9:type-check'], + tasks: { + '@fluentui/react-migration-v8-v9:type-check': { + id: '@fluentui/react-migration-v8-v9:type-check', + target: { project: '@fluentui/react-migration-v8-v9', target: 'type-check' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:type-check': [] }, + }, + '@fluentui/react-migration-v8-v9:generate-api': { + roots: ['@fluentui/react-migration-v8-v9:generate-api'], + tasks: { + '@fluentui/react-migration-v8-v9:generate-api': { + id: '@fluentui/react-migration-v8-v9:generate-api', + target: { project: '@fluentui/react-migration-v8-v9', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:generate-api': [] }, + }, + '@fluentui/react-migration-v8-v9:storybook': { + roots: ['@fluentui/react-migration-v8-v9:storybook'], + tasks: { + '@fluentui/react-migration-v8-v9:storybook': { + id: '@fluentui/react-migration-v8-v9:storybook', + target: { project: '@fluentui/react-migration-v8-v9', target: 'storybook' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:storybook': [] }, + }, + '@fluentui/react-migration-v8-v9:start': { + roots: ['@fluentui/react-migration-v8-v9:start'], + tasks: { + '@fluentui/react-migration-v8-v9:start': { + id: '@fluentui/react-migration-v8-v9:start', + target: { project: '@fluentui/react-migration-v8-v9', target: 'start' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-migration-v8-v9:start': [] }, + }, + '@fluentui/react-migration-v8-v9:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-migration-v8-v9:nx-release-publish': { + id: '@fluentui/react-migration-v8-v9:nx-release-publish', + target: { project: '@fluentui/react-migration-v8-v9', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: {}, + }, + '@fluentui/fluent2-theme:nx-release-publish': { + id: '@fluentui/fluent2-theme:nx-release-publish', + target: { project: '@fluentui/fluent2-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/fluent2-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-migration-v8-v9:nx-release-publish': [ + '@fluentui/fluent2-theme:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/fluent2-theme:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-storybook-addon:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-storybook-addon:build': { + id: '@fluentui/react-storybook-addon:build', + target: { project: '@fluentui/react-storybook-addon', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-storybook-addon:build': ['@fluentui/react-theme:build', '@fluentui/react-provider:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-storybook-addon:clean': { + roots: ['@fluentui/react-storybook-addon:clean'], + tasks: { + '@fluentui/react-storybook-addon:clean': { + id: '@fluentui/react-storybook-addon:clean', + target: { project: '@fluentui/react-storybook-addon', target: 'clean' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:clean': [] }, + }, + '@fluentui/react-storybook-addon:code-style': { + roots: ['@fluentui/react-storybook-addon:code-style'], + tasks: { + '@fluentui/react-storybook-addon:code-style': { + id: '@fluentui/react-storybook-addon:code-style', + target: { project: '@fluentui/react-storybook-addon', target: 'code-style' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:code-style': [] }, + }, + '@fluentui/react-storybook-addon:just': { + roots: ['@fluentui/react-storybook-addon:just'], + tasks: { + '@fluentui/react-storybook-addon:just': { + id: '@fluentui/react-storybook-addon:just', + target: { project: '@fluentui/react-storybook-addon', target: 'just' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:just': [] }, + }, + '@fluentui/react-storybook-addon:lint': { + roots: ['@fluentui/react-storybook-addon:lint'], + tasks: { + '@fluentui/react-storybook-addon:lint': { + id: '@fluentui/react-storybook-addon:lint', + target: { project: '@fluentui/react-storybook-addon', target: 'lint' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:lint': [] }, + }, + '@fluentui/react-storybook-addon:start': { + roots: ['@fluentui/react-storybook-addon:start'], + tasks: { + '@fluentui/react-storybook-addon:start': { + id: '@fluentui/react-storybook-addon:start', + target: { project: '@fluentui/react-storybook-addon', target: 'start' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:start': [] }, + }, + '@fluentui/react-storybook-addon:test': { + roots: ['@fluentui/react-storybook-addon:test'], + tasks: { + '@fluentui/react-storybook-addon:test': { + id: '@fluentui/react-storybook-addon:test', + target: { project: '@fluentui/react-storybook-addon', target: 'test' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:test': [] }, + }, + '@fluentui/react-storybook-addon:storybook': { + roots: ['@fluentui/react-storybook-addon:storybook'], + tasks: { + '@fluentui/react-storybook-addon:storybook': { + id: '@fluentui/react-storybook-addon:storybook', + target: { project: '@fluentui/react-storybook-addon', target: 'storybook' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:storybook': [] }, + }, + '@fluentui/react-storybook-addon:type-check': { + roots: ['@fluentui/react-storybook-addon:type-check'], + tasks: { + '@fluentui/react-storybook-addon:type-check': { + id: '@fluentui/react-storybook-addon:type-check', + target: { project: '@fluentui/react-storybook-addon', target: 'type-check' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:type-check': [] }, + }, + '@fluentui/react-storybook-addon:generate-api': { + roots: ['@fluentui/react-storybook-addon:generate-api'], + tasks: { + '@fluentui/react-storybook-addon:generate-api': { + id: '@fluentui/react-storybook-addon:generate-api', + target: { project: '@fluentui/react-storybook-addon', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-storybook-addon:generate-api': [] }, + }, + '@fluentui/react-storybook-addon:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-storybook-addon:nx-release-publish': { + id: '@fluentui/react-storybook-addon:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: {}, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-storybook-addon:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-motion-preview:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-motion-preview:clean': { + roots: ['@fluentui/react-motion-preview:clean'], + tasks: { + '@fluentui/react-motion-preview:clean': { + id: '@fluentui/react-motion-preview:clean', + target: { project: '@fluentui/react-motion-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motion-preview:clean': [] }, + }, + '@fluentui/react-motion-preview:generate-api': { + roots: ['@fluentui/react-motion-preview:generate-api'], + tasks: { + '@fluentui/react-motion-preview:generate-api': { + id: '@fluentui/react-motion-preview:generate-api', + target: { project: '@fluentui/react-motion-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motion-preview:generate-api': [] }, + }, + '@fluentui/react-motion-preview:lint': { + roots: ['@fluentui/react-motion-preview:lint'], + tasks: { + '@fluentui/react-motion-preview:lint': { + id: '@fluentui/react-motion-preview:lint', + target: { project: '@fluentui/react-motion-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motion-preview:lint': [] }, + }, + '@fluentui/react-motion-preview:start': { + roots: ['@fluentui/react-motion-preview:start'], + tasks: { + '@fluentui/react-motion-preview:start': { + id: '@fluentui/react-motion-preview:start', + target: { project: '@fluentui/react-motion-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motion-preview:start': [] }, + }, + '@fluentui/react-motion-preview:storybook': { + roots: ['@fluentui/react-motion-preview:storybook'], + tasks: { + '@fluentui/react-motion-preview:storybook': { + id: '@fluentui/react-motion-preview:storybook', + target: { project: '@fluentui/react-motion-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motion-preview:storybook': [] }, + }, + '@fluentui/react-motion-preview:test': { + roots: ['@fluentui/react-motion-preview:test'], + tasks: { + '@fluentui/react-motion-preview:test': { + id: '@fluentui/react-motion-preview:test', + target: { project: '@fluentui/react-motion-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motion-preview:test': [] }, + }, + '@fluentui/react-motion-preview:test-ssr': { + roots: ['@fluentui/react-motion-preview:test-ssr'], + tasks: { + '@fluentui/react-motion-preview:test-ssr': { + id: '@fluentui/react-motion-preview:test-ssr', + target: { project: '@fluentui/react-motion-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motion-preview:test-ssr': [] }, + }, + '@fluentui/react-motion-preview:type-check': { + roots: ['@fluentui/react-motion-preview:type-check'], + tasks: { + '@fluentui/react-motion-preview:type-check': { + id: '@fluentui/react-motion-preview:type-check', + target: { project: '@fluentui/react-motion-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-motion-preview:type-check': [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-rating-preview:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-rating-preview:build': { + id: '@fluentui/react-rating-preview:build', + target: { project: '@fluentui/react-rating-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-rating-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-rating-preview:clean': { + roots: ['@fluentui/react-rating-preview:clean'], + tasks: { + '@fluentui/react-rating-preview:clean': { + id: '@fluentui/react-rating-preview:clean', + target: { project: '@fluentui/react-rating-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-rating-preview:clean': [] }, + }, + '@fluentui/react-rating-preview:generate-api': { + roots: ['@fluentui/react-rating-preview:generate-api'], + tasks: { + '@fluentui/react-rating-preview:generate-api': { + id: '@fluentui/react-rating-preview:generate-api', + target: { project: '@fluentui/react-rating-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-rating-preview:generate-api': [] }, + }, + '@fluentui/react-rating-preview:lint': { + roots: ['@fluentui/react-rating-preview:lint'], + tasks: { + '@fluentui/react-rating-preview:lint': { + id: '@fluentui/react-rating-preview:lint', + target: { project: '@fluentui/react-rating-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-rating-preview:lint': [] }, + }, + '@fluentui/react-rating-preview:start': { + roots: ['@fluentui/react-rating-preview:start'], + tasks: { + '@fluentui/react-rating-preview:start': { + id: '@fluentui/react-rating-preview:start', + target: { project: '@fluentui/react-rating-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-rating-preview:start': [] }, + }, + '@fluentui/react-rating-preview:storybook': { + roots: ['@fluentui/react-rating-preview:storybook'], + tasks: { + '@fluentui/react-rating-preview:storybook': { + id: '@fluentui/react-rating-preview:storybook', + target: { project: '@fluentui/react-rating-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-rating-preview:storybook': [] }, + }, + '@fluentui/react-rating-preview:test': { + roots: ['@fluentui/react-rating-preview:test'], + tasks: { + '@fluentui/react-rating-preview:test': { + id: '@fluentui/react-rating-preview:test', + target: { project: '@fluentui/react-rating-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-rating-preview:test': [] }, + }, + '@fluentui/react-rating-preview:test-ssr': { + roots: ['@fluentui/react-rating-preview:test-ssr'], + tasks: { + '@fluentui/react-rating-preview:test-ssr': { + id: '@fluentui/react-rating-preview:test-ssr', + target: { project: '@fluentui/react-rating-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-rating-preview:test-ssr': [] }, + }, + '@fluentui/react-rating-preview:type-check': { + roots: ['@fluentui/react-rating-preview:type-check'], + tasks: { + '@fluentui/react-rating-preview:type-check': { + id: '@fluentui/react-rating-preview:type-check', + target: { project: '@fluentui/react-rating-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-rating-preview:type-check': [] }, + }, + '@fluentui/react-rating-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-rating-preview:nx-release-publish': { + id: '@fluentui/react-rating-preview:nx-release-publish', + target: { project: '@fluentui/react-rating-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-rating-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-search-preview:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-search-preview:build': { + id: '@fluentui/react-search-preview:build', + target: { project: '@fluentui/react-search-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-search-preview:build': [ + '@fluentui/react-input:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-search-preview:clean': { + roots: ['@fluentui/react-search-preview:clean'], + tasks: { + '@fluentui/react-search-preview:clean': { + id: '@fluentui/react-search-preview:clean', + target: { project: '@fluentui/react-search-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:clean': [] }, + }, + '@fluentui/react-search-preview:code-style': { + roots: ['@fluentui/react-search-preview:code-style'], + tasks: { + '@fluentui/react-search-preview:code-style': { + id: '@fluentui/react-search-preview:code-style', + target: { project: '@fluentui/react-search-preview', target: 'code-style' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:code-style': [] }, + }, + '@fluentui/react-search-preview:just': { + roots: ['@fluentui/react-search-preview:just'], + tasks: { + '@fluentui/react-search-preview:just': { + id: '@fluentui/react-search-preview:just', + target: { project: '@fluentui/react-search-preview', target: 'just' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:just': [] }, + }, + '@fluentui/react-search-preview:lint': { + roots: ['@fluentui/react-search-preview:lint'], + tasks: { + '@fluentui/react-search-preview:lint': { + id: '@fluentui/react-search-preview:lint', + target: { project: '@fluentui/react-search-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:lint': [] }, + }, + '@fluentui/react-search-preview:test': { + roots: ['@fluentui/react-search-preview:test'], + tasks: { + '@fluentui/react-search-preview:test': { + id: '@fluentui/react-search-preview:test', + target: { project: '@fluentui/react-search-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:test': [] }, + }, + '@fluentui/react-search-preview:test-ssr': { + roots: ['@fluentui/react-search-preview:test-ssr'], + tasks: { + '@fluentui/react-search-preview:test-ssr': { + id: '@fluentui/react-search-preview:test-ssr', + target: { project: '@fluentui/react-search-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:test-ssr': [] }, + }, + '@fluentui/react-search-preview:type-check': { + roots: ['@fluentui/react-search-preview:type-check'], + tasks: { + '@fluentui/react-search-preview:type-check': { + id: '@fluentui/react-search-preview:type-check', + target: { project: '@fluentui/react-search-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:type-check': [] }, + }, + '@fluentui/react-search-preview:generate-api': { + roots: ['@fluentui/react-search-preview:generate-api'], + tasks: { + '@fluentui/react-search-preview:generate-api': { + id: '@fluentui/react-search-preview:generate-api', + target: { project: '@fluentui/react-search-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:generate-api': [] }, + }, + '@fluentui/react-search-preview:storybook': { + roots: ['@fluentui/react-search-preview:storybook'], + tasks: { + '@fluentui/react-search-preview:storybook': { + id: '@fluentui/react-search-preview:storybook', + target: { project: '@fluentui/react-search-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:storybook': [] }, + }, + '@fluentui/react-search-preview:start': { + roots: ['@fluentui/react-search-preview:start'], + tasks: { + '@fluentui/react-search-preview:start': { + id: '@fluentui/react-search-preview:start', + target: { project: '@fluentui/react-search-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-search-preview:start': [] }, + }, + '@fluentui/react-search-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-search-preview:nx-release-publish': { + id: '@fluentui/react-search-preview:nx-release-publish', + target: { project: '@fluentui/react-search-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: {}, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-search-preview:nx-release-publish': [ + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-portal-compat:build': { + roots: [ + '@fluentui/react-portal-compat-context:build', + '@fluentui/tokens:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + '@fluentui/priority-overflow:build', + ], + tasks: { + '@fluentui/react-portal-compat:build': { + id: '@fluentui/react-portal-compat:build', + target: { project: '@fluentui/react-portal-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:build': { + id: '@fluentui/react-components:build', + target: { project: '@fluentui/react-components', target: 'build' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:build': { + id: '@fluentui/react-alert:build', + target: { project: '@fluentui/react-alert', target: 'build' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:build': { + id: '@fluentui/react-infobutton:build', + target: { project: '@fluentui/react-infobutton', target: 'build' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:build': { + id: '@fluentui/react-overflow:build', + target: { project: '@fluentui/react-overflow', target: 'build' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:build': { + id: '@fluentui/react-virtualizer:build', + target: { project: '@fluentui/react-virtualizer', target: 'build' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-portal-compat:build': [ + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-tabster:build', + '@fluentui/react-components:build', + '@fluentui/react-shared-contexts:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-components:build': [ + '@fluentui/react-accordion:build', + '@fluentui/react-alert:build', + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-button:build', + '@fluentui/react-card:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-combobox:build', + '@fluentui/react-dialog:build', + '@fluentui/react-divider:build', + '@fluentui/react-drawer:build', + '@fluentui/react-field:build', + '@fluentui/react-image:build', + '@fluentui/react-infobutton:build', + '@fluentui/react-infolabel:build', + '@fluentui/react-input:build', + '@fluentui/react-label:build', + '@fluentui/react-link:build', + '@fluentui/react-menu:build', + '@fluentui/react-overflow:build', + '@fluentui/react-persona:build', + '@fluentui/react-portal:build', + '@fluentui/react-popover:build', + '@fluentui/react-positioning:build', + '@fluentui/react-progress:build', + '@fluentui/react-provider:build', + '@fluentui/react-radio:build', + '@fluentui/react-select:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-skeleton:build', + '@fluentui/react-slider:build', + '@fluentui/react-spinbutton:build', + '@fluentui/react-spinner:build', + '@fluentui/react-switch:build', + '@fluentui/react-table:build', + '@fluentui/react-tabs:build', + '@fluentui/react-tabster:build', + '@fluentui/react-tags:build', + '@fluentui/react-textarea:build', + '@fluentui/react-theme:build', + '@fluentui/react-toast:build', + '@fluentui/react-toolbar:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-text:build', + '@fluentui/react-virtualizer:build', + '@fluentui/react-tree:build', + '@fluentui/react-message-bar:build', + '@fluentui/react-breadcrumb:build', + ], + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-alert:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infobutton:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-overflow:build': [ + '@fluentui/priority-overflow:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/priority-overflow:build': [], + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-virtualizer:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-portal-compat:bundle-size': { + roots: ['@fluentui/react-portal-compat:bundle-size'], + tasks: { + '@fluentui/react-portal-compat:bundle-size': { + id: '@fluentui/react-portal-compat:bundle-size', + target: { project: '@fluentui/react-portal-compat', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:bundle-size': [] }, + }, + '@fluentui/react-portal-compat:clean': { + roots: ['@fluentui/react-portal-compat:clean'], + tasks: { + '@fluentui/react-portal-compat:clean': { + id: '@fluentui/react-portal-compat:clean', + target: { project: '@fluentui/react-portal-compat', target: 'clean' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:clean': [] }, + }, + '@fluentui/react-portal-compat:code-style': { + roots: ['@fluentui/react-portal-compat:code-style'], + tasks: { + '@fluentui/react-portal-compat:code-style': { + id: '@fluentui/react-portal-compat:code-style', + target: { project: '@fluentui/react-portal-compat', target: 'code-style' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:code-style': [] }, + }, + '@fluentui/react-portal-compat:e2e': { + roots: ['@fluentui/react-portal-compat:e2e'], + tasks: { + '@fluentui/react-portal-compat:e2e': { + id: '@fluentui/react-portal-compat:e2e', + target: { project: '@fluentui/react-portal-compat', target: 'e2e' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:e2e': [] }, + }, + '@fluentui/react-portal-compat:e2e:local': { + roots: ['@fluentui/react-portal-compat:e2e:local'], + tasks: { + '@fluentui/react-portal-compat:e2e:local': { + id: '@fluentui/react-portal-compat:e2e:local', + target: { project: '@fluentui/react-portal-compat', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:e2e:local': [] }, + }, + '@fluentui/react-portal-compat:just': { + roots: ['@fluentui/react-portal-compat:just'], + tasks: { + '@fluentui/react-portal-compat:just': { + id: '@fluentui/react-portal-compat:just', + target: { project: '@fluentui/react-portal-compat', target: 'just' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:just': [] }, + }, + '@fluentui/react-portal-compat:lint': { + roots: ['@fluentui/react-portal-compat:lint'], + tasks: { + '@fluentui/react-portal-compat:lint': { + id: '@fluentui/react-portal-compat:lint', + target: { project: '@fluentui/react-portal-compat', target: 'lint' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:lint': [] }, + }, + '@fluentui/react-portal-compat:test': { + roots: ['@fluentui/react-portal-compat:test'], + tasks: { + '@fluentui/react-portal-compat:test': { + id: '@fluentui/react-portal-compat:test', + target: { project: '@fluentui/react-portal-compat', target: 'test' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:test': [] }, + }, + '@fluentui/react-portal-compat:type-check': { + roots: ['@fluentui/react-portal-compat:type-check'], + tasks: { + '@fluentui/react-portal-compat:type-check': { + id: '@fluentui/react-portal-compat:type-check', + target: { project: '@fluentui/react-portal-compat', target: 'type-check' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:type-check': [] }, + }, + '@fluentui/react-portal-compat:generate-api': { + roots: ['@fluentui/react-portal-compat:generate-api'], + tasks: { + '@fluentui/react-portal-compat:generate-api': { + id: '@fluentui/react-portal-compat:generate-api', + target: { project: '@fluentui/react-portal-compat', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:generate-api': [] }, + }, + '@fluentui/react-portal-compat:test-ssr': { + roots: ['@fluentui/react-portal-compat:test-ssr'], + tasks: { + '@fluentui/react-portal-compat:test-ssr': { + id: '@fluentui/react-portal-compat:test-ssr', + target: { project: '@fluentui/react-portal-compat', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal-compat:test-ssr': [] }, + }, + '@fluentui/react-portal-compat:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-portal-compat:nx-release-publish': { + id: '@fluentui/react-portal-compat:nx-release-publish', + target: { project: '@fluentui/react-portal-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat', + overrides: {}, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-portal-compat:nx-release-publish': [ + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-northstar-prototypes:build': { + roots: [ + '@fluentui/accessibility:build', + '@fluentui/docs-components:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + tasks: { + '@fluentui/react-northstar-prototypes:build': { + id: '@fluentui/react-northstar-prototypes:build', + target: { project: '@fluentui/react-northstar-prototypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: {}, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:build': { + id: '@fluentui/code-sandbox:build', + target: { project: '@fluentui/code-sandbox', target: 'build' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:build': { + id: '@fluentui/docs-components:build', + target: { project: '@fluentui/docs-components', target: 'build' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar-prototypes:build': [ + '@fluentui/accessibility:build', + '@fluentui/code-sandbox:build', + '@fluentui/docs-components:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/code-sandbox:build': ['@fluentui/docs-components:build', '@fluentui/react-northstar:build'], + '@fluentui/docs-components:build': [], + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-proptypes:build': [], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/react-northstar-prototypes:clean': { + roots: ['@fluentui/react-northstar-prototypes:clean'], + tasks: { + '@fluentui/react-northstar-prototypes:clean': { + id: '@fluentui/react-northstar-prototypes:clean', + target: { project: '@fluentui/react-northstar-prototypes', target: 'clean' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-prototypes:clean': [] }, + }, + '@fluentui/react-northstar-prototypes:lint': { + roots: ['@fluentui/react-northstar-prototypes:lint'], + tasks: { + '@fluentui/react-northstar-prototypes:lint': { + id: '@fluentui/react-northstar-prototypes:lint', + target: { project: '@fluentui/react-northstar-prototypes', target: 'lint' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-prototypes:lint': [] }, + }, + '@fluentui/react-northstar-prototypes:lint:fix': { + roots: ['@fluentui/react-northstar-prototypes:lint:fix'], + tasks: { + '@fluentui/react-northstar-prototypes:lint:fix': { + id: '@fluentui/react-northstar-prototypes:lint:fix', + target: { project: '@fluentui/react-northstar-prototypes', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar-prototypes:lint:fix': [] }, + }, + '@fluentui/react-northstar-prototypes:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-northstar-prototypes:nx-release-publish': { + id: '@fluentui/react-northstar-prototypes:nx-release-publish', + target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: {}, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:nx-release-publish': { + id: '@fluentui/code-sandbox:nx-release-publish', + target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:nx-release-publish': { + id: '@fluentui/docs-components:nx-release-publish', + target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar-prototypes:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/code-sandbox:nx-release-publish': [ + '@fluentui/docs-components:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/docs-components:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-list-preview:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-list-preview:build': { + id: '@fluentui/react-list-preview:build', + target: { project: '@fluentui/react-list-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-list-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-list-preview:clean': { + roots: ['@fluentui/react-list-preview:clean'], + tasks: { + '@fluentui/react-list-preview:clean': { + id: '@fluentui/react-list-preview:clean', + target: { project: '@fluentui/react-list-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-list-preview:clean': [] }, + }, + '@fluentui/react-list-preview:generate-api': { + roots: ['@fluentui/react-list-preview:generate-api'], + tasks: { + '@fluentui/react-list-preview:generate-api': { + id: '@fluentui/react-list-preview:generate-api', + target: { project: '@fluentui/react-list-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-list-preview:generate-api': [] }, + }, + '@fluentui/react-list-preview:lint': { + roots: ['@fluentui/react-list-preview:lint'], + tasks: { + '@fluentui/react-list-preview:lint': { + id: '@fluentui/react-list-preview:lint', + target: { project: '@fluentui/react-list-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-list-preview:lint': [] }, + }, + '@fluentui/react-list-preview:start': { + roots: ['@fluentui/react-list-preview:start'], + tasks: { + '@fluentui/react-list-preview:start': { + id: '@fluentui/react-list-preview:start', + target: { project: '@fluentui/react-list-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-list-preview:start': [] }, + }, + '@fluentui/react-list-preview:storybook': { + roots: ['@fluentui/react-list-preview:storybook'], + tasks: { + '@fluentui/react-list-preview:storybook': { + id: '@fluentui/react-list-preview:storybook', + target: { project: '@fluentui/react-list-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-list-preview:storybook': [] }, + }, + '@fluentui/react-list-preview:test': { + roots: ['@fluentui/react-list-preview:test'], + tasks: { + '@fluentui/react-list-preview:test': { + id: '@fluentui/react-list-preview:test', + target: { project: '@fluentui/react-list-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-list-preview:test': [] }, + }, + '@fluentui/react-list-preview:test-ssr': { + roots: ['@fluentui/react-list-preview:test-ssr'], + tasks: { + '@fluentui/react-list-preview:test-ssr': { + id: '@fluentui/react-list-preview:test-ssr', + target: { project: '@fluentui/react-list-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-list-preview:test-ssr': [] }, + }, + '@fluentui/react-list-preview:type-check': { + roots: ['@fluentui/react-list-preview:type-check'], + tasks: { + '@fluentui/react-list-preview:type-check': { + id: '@fluentui/react-list-preview:type-check', + target: { project: '@fluentui/react-list-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-list-preview:type-check': [] }, + }, + '@fluentui/react-list-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-list-preview:nx-release-publish': { + id: '@fluentui/react-list-preview:nx-release-publish', + target: { project: '@fluentui/react-list-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-list-preview', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-list-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/priority-overflow:build': { + roots: ['@fluentui/priority-overflow:build'], + tasks: { + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:build': [] }, + }, + '@fluentui/priority-overflow:bundle-size': { + roots: ['@fluentui/priority-overflow:bundle-size'], + tasks: { + '@fluentui/priority-overflow:bundle-size': { + id: '@fluentui/priority-overflow:bundle-size', + target: { project: '@fluentui/priority-overflow', target: 'bundle-size' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:bundle-size': [] }, + }, + '@fluentui/priority-overflow:clean': { + roots: ['@fluentui/priority-overflow:clean'], + tasks: { + '@fluentui/priority-overflow:clean': { + id: '@fluentui/priority-overflow:clean', + target: { project: '@fluentui/priority-overflow', target: 'clean' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:clean': [] }, + }, + '@fluentui/priority-overflow:code-style': { + roots: ['@fluentui/priority-overflow:code-style'], + tasks: { + '@fluentui/priority-overflow:code-style': { + id: '@fluentui/priority-overflow:code-style', + target: { project: '@fluentui/priority-overflow', target: 'code-style' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:code-style': [] }, + }, + '@fluentui/priority-overflow:just': { + roots: ['@fluentui/priority-overflow:just'], + tasks: { + '@fluentui/priority-overflow:just': { + id: '@fluentui/priority-overflow:just', + target: { project: '@fluentui/priority-overflow', target: 'just' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:just': [] }, + }, + '@fluentui/priority-overflow:lint': { + roots: ['@fluentui/priority-overflow:lint'], + tasks: { + '@fluentui/priority-overflow:lint': { + id: '@fluentui/priority-overflow:lint', + target: { project: '@fluentui/priority-overflow', target: 'lint' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:lint': [] }, + }, + '@fluentui/priority-overflow:test': { + roots: ['@fluentui/priority-overflow:test'], + tasks: { + '@fluentui/priority-overflow:test': { + id: '@fluentui/priority-overflow:test', + target: { project: '@fluentui/priority-overflow', target: 'test' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:test': [] }, + }, + '@fluentui/priority-overflow:type-check': { + roots: ['@fluentui/priority-overflow:type-check'], + tasks: { + '@fluentui/priority-overflow:type-check': { + id: '@fluentui/priority-overflow:type-check', + target: { project: '@fluentui/priority-overflow', target: 'type-check' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:type-check': [] }, + }, + '@fluentui/priority-overflow:generate-api': { + roots: ['@fluentui/priority-overflow:generate-api'], + tasks: { + '@fluentui/priority-overflow:generate-api': { + id: '@fluentui/priority-overflow:generate-api', + target: { project: '@fluentui/priority-overflow', target: 'generate-api' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:generate-api': [] }, + }, + '@fluentui/priority-overflow:test-ssr': { + roots: ['@fluentui/priority-overflow:test-ssr'], + tasks: { + '@fluentui/priority-overflow:test-ssr': { + id: '@fluentui/priority-overflow:test-ssr', + target: { project: '@fluentui/priority-overflow', target: 'test-ssr' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/priority-overflow:test-ssr': [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-nav-preview:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-nav-preview:build': { + id: '@fluentui/react-nav-preview:build', + target: { project: '@fluentui/react-nav-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-nav-preview:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-nav-preview:clean': { + roots: ['@fluentui/react-nav-preview:clean'], + tasks: { + '@fluentui/react-nav-preview:clean': { + id: '@fluentui/react-nav-preview:clean', + target: { project: '@fluentui/react-nav-preview', target: 'clean' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-nav-preview:clean': [] }, + }, + '@fluentui/react-nav-preview:generate-api': { + roots: ['@fluentui/react-nav-preview:generate-api'], + tasks: { + '@fluentui/react-nav-preview:generate-api': { + id: '@fluentui/react-nav-preview:generate-api', + target: { project: '@fluentui/react-nav-preview', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-nav-preview:generate-api': [] }, + }, + '@fluentui/react-nav-preview:lint': { + roots: ['@fluentui/react-nav-preview:lint'], + tasks: { + '@fluentui/react-nav-preview:lint': { + id: '@fluentui/react-nav-preview:lint', + target: { project: '@fluentui/react-nav-preview', target: 'lint' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-nav-preview:lint': [] }, + }, + '@fluentui/react-nav-preview:start': { + roots: ['@fluentui/react-nav-preview:start'], + tasks: { + '@fluentui/react-nav-preview:start': { + id: '@fluentui/react-nav-preview:start', + target: { project: '@fluentui/react-nav-preview', target: 'start' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-nav-preview:start': [] }, + }, + '@fluentui/react-nav-preview:storybook': { + roots: ['@fluentui/react-nav-preview:storybook'], + tasks: { + '@fluentui/react-nav-preview:storybook': { + id: '@fluentui/react-nav-preview:storybook', + target: { project: '@fluentui/react-nav-preview', target: 'storybook' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-nav-preview:storybook': [] }, + }, + '@fluentui/react-nav-preview:test': { + roots: ['@fluentui/react-nav-preview:test'], + tasks: { + '@fluentui/react-nav-preview:test': { + id: '@fluentui/react-nav-preview:test', + target: { project: '@fluentui/react-nav-preview', target: 'test' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-nav-preview:test': [] }, + }, + '@fluentui/react-nav-preview:test-ssr': { + roots: ['@fluentui/react-nav-preview:test-ssr'], + tasks: { + '@fluentui/react-nav-preview:test-ssr': { + id: '@fluentui/react-nav-preview:test-ssr', + target: { project: '@fluentui/react-nav-preview', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-nav-preview:test-ssr': [] }, + }, + '@fluentui/react-nav-preview:type-check': { + roots: ['@fluentui/react-nav-preview:type-check'], + tasks: { + '@fluentui/react-nav-preview:type-check': { + id: '@fluentui/react-nav-preview:type-check', + target: { project: '@fluentui/react-nav-preview', target: 'type-check' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-nav-preview:type-check': [] }, + }, + '@fluentui/react-nav-preview:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-nav-preview:nx-release-publish': { + id: '@fluentui/react-nav-preview:nx-release-publish', + target: { project: '@fluentui/react-nav-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-nav-preview', + overrides: {}, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-nav-preview:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-positioning:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build'], + tasks: { + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + }, + }, + '@fluentui/react-positioning:bundle-size': { + roots: ['@fluentui/react-positioning:bundle-size'], + tasks: { + '@fluentui/react-positioning:bundle-size': { + id: '@fluentui/react-positioning:bundle-size', + target: { project: '@fluentui/react-positioning', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:bundle-size': [] }, + }, + '@fluentui/react-positioning:clean': { + roots: ['@fluentui/react-positioning:clean'], + tasks: { + '@fluentui/react-positioning:clean': { + id: '@fluentui/react-positioning:clean', + target: { project: '@fluentui/react-positioning', target: 'clean' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:clean': [] }, + }, + '@fluentui/react-positioning:code-style': { + roots: ['@fluentui/react-positioning:code-style'], + tasks: { + '@fluentui/react-positioning:code-style': { + id: '@fluentui/react-positioning:code-style', + target: { project: '@fluentui/react-positioning', target: 'code-style' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:code-style': [] }, + }, + '@fluentui/react-positioning:just': { + roots: ['@fluentui/react-positioning:just'], + tasks: { + '@fluentui/react-positioning:just': { + id: '@fluentui/react-positioning:just', + target: { project: '@fluentui/react-positioning', target: 'just' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:just': [] }, + }, + '@fluentui/react-positioning:lint': { + roots: ['@fluentui/react-positioning:lint'], + tasks: { + '@fluentui/react-positioning:lint': { + id: '@fluentui/react-positioning:lint', + target: { project: '@fluentui/react-positioning', target: 'lint' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:lint': [] }, + }, + '@fluentui/react-positioning:test': { + roots: ['@fluentui/react-positioning:test'], + tasks: { + '@fluentui/react-positioning:test': { + id: '@fluentui/react-positioning:test', + target: { project: '@fluentui/react-positioning', target: 'test' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:test': [] }, + }, + '@fluentui/react-positioning:type-check': { + roots: ['@fluentui/react-positioning:type-check'], + tasks: { + '@fluentui/react-positioning:type-check': { + id: '@fluentui/react-positioning:type-check', + target: { project: '@fluentui/react-positioning', target: 'type-check' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:type-check': [] }, + }, + '@fluentui/react-positioning:generate-api': { + roots: ['@fluentui/react-positioning:generate-api'], + tasks: { + '@fluentui/react-positioning:generate-api': { + id: '@fluentui/react-positioning:generate-api', + target: { project: '@fluentui/react-positioning', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:generate-api': [] }, + }, + '@fluentui/react-positioning:test-ssr': { + roots: ['@fluentui/react-positioning:test-ssr'], + tasks: { + '@fluentui/react-positioning:test-ssr': { + id: '@fluentui/react-positioning:test-ssr', + target: { project: '@fluentui/react-positioning', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-positioning:test-ssr': [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: {}, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-virtualizer:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-virtualizer:build': { + id: '@fluentui/react-virtualizer:build', + target: { project: '@fluentui/react-virtualizer', target: 'build' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-virtualizer:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-virtualizer:clean': { + roots: ['@fluentui/react-virtualizer:clean'], + tasks: { + '@fluentui/react-virtualizer:clean': { + id: '@fluentui/react-virtualizer:clean', + target: { project: '@fluentui/react-virtualizer', target: 'clean' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:clean': [] }, + }, + '@fluentui/react-virtualizer:code-style': { + roots: ['@fluentui/react-virtualizer:code-style'], + tasks: { + '@fluentui/react-virtualizer:code-style': { + id: '@fluentui/react-virtualizer:code-style', + target: { project: '@fluentui/react-virtualizer', target: 'code-style' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:code-style': [] }, + }, + '@fluentui/react-virtualizer:just': { + roots: ['@fluentui/react-virtualizer:just'], + tasks: { + '@fluentui/react-virtualizer:just': { + id: '@fluentui/react-virtualizer:just', + target: { project: '@fluentui/react-virtualizer', target: 'just' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:just': [] }, + }, + '@fluentui/react-virtualizer:lint': { + roots: ['@fluentui/react-virtualizer:lint'], + tasks: { + '@fluentui/react-virtualizer:lint': { + id: '@fluentui/react-virtualizer:lint', + target: { project: '@fluentui/react-virtualizer', target: 'lint' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:lint': [] }, + }, + '@fluentui/react-virtualizer:test': { + roots: ['@fluentui/react-virtualizer:test'], + tasks: { + '@fluentui/react-virtualizer:test': { + id: '@fluentui/react-virtualizer:test', + target: { project: '@fluentui/react-virtualizer', target: 'test' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:test': [] }, + }, + '@fluentui/react-virtualizer:storybook': { + roots: ['@fluentui/react-virtualizer:storybook'], + tasks: { + '@fluentui/react-virtualizer:storybook': { + id: '@fluentui/react-virtualizer:storybook', + target: { project: '@fluentui/react-virtualizer', target: 'storybook' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:storybook': [] }, + }, + '@fluentui/react-virtualizer:start': { + roots: ['@fluentui/react-virtualizer:start'], + tasks: { + '@fluentui/react-virtualizer:start': { + id: '@fluentui/react-virtualizer:start', + target: { project: '@fluentui/react-virtualizer', target: 'start' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:start': [] }, + }, + '@fluentui/react-virtualizer:generate-api': { + roots: ['@fluentui/react-virtualizer:generate-api'], + tasks: { + '@fluentui/react-virtualizer:generate-api': { + id: '@fluentui/react-virtualizer:generate-api', + target: { project: '@fluentui/react-virtualizer', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:generate-api': [] }, + }, + '@fluentui/react-virtualizer:type-check': { + roots: ['@fluentui/react-virtualizer:type-check'], + tasks: { + '@fluentui/react-virtualizer:type-check': { + id: '@fluentui/react-virtualizer:type-check', + target: { project: '@fluentui/react-virtualizer', target: 'type-check' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:type-check': [] }, + }, + '@fluentui/react-virtualizer:test-ssr': { + roots: ['@fluentui/react-virtualizer:test-ssr'], + tasks: { + '@fluentui/react-virtualizer:test-ssr': { + id: '@fluentui/react-virtualizer:test-ssr', + target: { project: '@fluentui/react-virtualizer', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-virtualizer:test-ssr': [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-jsx-runtime:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-jsx-runtime:clean': { + roots: ['@fluentui/react-jsx-runtime:clean'], + tasks: { + '@fluentui/react-jsx-runtime:clean': { + id: '@fluentui/react-jsx-runtime:clean', + target: { project: '@fluentui/react-jsx-runtime', target: 'clean' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:clean': [] }, + }, + '@fluentui/react-jsx-runtime:code-style': { + roots: ['@fluentui/react-jsx-runtime:code-style'], + tasks: { + '@fluentui/react-jsx-runtime:code-style': { + id: '@fluentui/react-jsx-runtime:code-style', + target: { project: '@fluentui/react-jsx-runtime', target: 'code-style' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:code-style': [] }, + }, + '@fluentui/react-jsx-runtime:just': { + roots: ['@fluentui/react-jsx-runtime:just'], + tasks: { + '@fluentui/react-jsx-runtime:just': { + id: '@fluentui/react-jsx-runtime:just', + target: { project: '@fluentui/react-jsx-runtime', target: 'just' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:just': [] }, + }, + '@fluentui/react-jsx-runtime:lint': { + roots: ['@fluentui/react-jsx-runtime:lint'], + tasks: { + '@fluentui/react-jsx-runtime:lint': { + id: '@fluentui/react-jsx-runtime:lint', + target: { project: '@fluentui/react-jsx-runtime', target: 'lint' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:lint': [] }, + }, + '@fluentui/react-jsx-runtime:test': { + roots: ['@fluentui/react-jsx-runtime:test'], + tasks: { + '@fluentui/react-jsx-runtime:test': { + id: '@fluentui/react-jsx-runtime:test', + target: { project: '@fluentui/react-jsx-runtime', target: 'test' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:test': [] }, + }, + '@fluentui/react-jsx-runtime:type-check': { + roots: ['@fluentui/react-jsx-runtime:type-check'], + tasks: { + '@fluentui/react-jsx-runtime:type-check': { + id: '@fluentui/react-jsx-runtime:type-check', + target: { project: '@fluentui/react-jsx-runtime', target: 'type-check' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:type-check': [] }, + }, + '@fluentui/react-jsx-runtime:generate-api': { + roots: ['@fluentui/react-jsx-runtime:generate-api'], + tasks: { + '@fluentui/react-jsx-runtime:generate-api': { + id: '@fluentui/react-jsx-runtime:generate-api', + target: { project: '@fluentui/react-jsx-runtime', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:generate-api': [] }, + }, + '@fluentui/react-jsx-runtime:test-ssr': { + roots: ['@fluentui/react-jsx-runtime:test-ssr'], + tasks: { + '@fluentui/react-jsx-runtime:test-ssr': { + id: '@fluentui/react-jsx-runtime:test-ssr', + target: { project: '@fluentui/react-jsx-runtime', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:test-ssr': [] }, + }, + '@fluentui/react-jsx-runtime:bundle-size': { + roots: ['@fluentui/react-jsx-runtime:bundle-size'], + tasks: { + '@fluentui/react-jsx-runtime:bundle-size': { + id: '@fluentui/react-jsx-runtime:bundle-size', + target: { project: '@fluentui/react-jsx-runtime', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-jsx-runtime:bundle-size': [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: {}, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-message-bar:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/a11y-testing:build': [], + }, + }, + '@fluentui/react-message-bar:bundle-size': { + roots: ['@fluentui/react-message-bar:bundle-size'], + tasks: { + '@fluentui/react-message-bar:bundle-size': { + id: '@fluentui/react-message-bar:bundle-size', + target: { project: '@fluentui/react-message-bar', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:bundle-size': [] }, + }, + '@fluentui/react-message-bar:clean': { + roots: ['@fluentui/react-message-bar:clean'], + tasks: { + '@fluentui/react-message-bar:clean': { + id: '@fluentui/react-message-bar:clean', + target: { project: '@fluentui/react-message-bar', target: 'clean' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:clean': [] }, + }, + '@fluentui/react-message-bar:generate-api': { + roots: ['@fluentui/react-message-bar:generate-api'], + tasks: { + '@fluentui/react-message-bar:generate-api': { + id: '@fluentui/react-message-bar:generate-api', + target: { project: '@fluentui/react-message-bar', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:generate-api': [] }, + }, + '@fluentui/react-message-bar:lint': { + roots: ['@fluentui/react-message-bar:lint'], + tasks: { + '@fluentui/react-message-bar:lint': { + id: '@fluentui/react-message-bar:lint', + target: { project: '@fluentui/react-message-bar', target: 'lint' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:lint': [] }, + }, + '@fluentui/react-message-bar:start': { + roots: ['@fluentui/react-message-bar:start'], + tasks: { + '@fluentui/react-message-bar:start': { + id: '@fluentui/react-message-bar:start', + target: { project: '@fluentui/react-message-bar', target: 'start' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:start': [] }, + }, + '@fluentui/react-message-bar:storybook': { + roots: ['@fluentui/react-message-bar:storybook'], + tasks: { + '@fluentui/react-message-bar:storybook': { + id: '@fluentui/react-message-bar:storybook', + target: { project: '@fluentui/react-message-bar', target: 'storybook' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:storybook': [] }, + }, + '@fluentui/react-message-bar:test': { + roots: ['@fluentui/react-message-bar:test'], + tasks: { + '@fluentui/react-message-bar:test': { + id: '@fluentui/react-message-bar:test', + target: { project: '@fluentui/react-message-bar', target: 'test' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:test': [] }, + }, + '@fluentui/react-message-bar:test-ssr': { + roots: ['@fluentui/react-message-bar:test-ssr'], + tasks: { + '@fluentui/react-message-bar:test-ssr': { + id: '@fluentui/react-message-bar:test-ssr', + target: { project: '@fluentui/react-message-bar', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:test-ssr': [] }, + }, + '@fluentui/react-message-bar:type-check': { + roots: ['@fluentui/react-message-bar:type-check'], + tasks: { + '@fluentui/react-message-bar:type-check': { + id: '@fluentui/react-message-bar:type-check', + target: { project: '@fluentui/react-message-bar', target: 'type-check' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-message-bar:type-check': [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: {}, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-infobutton:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-infobutton:build': { + id: '@fluentui/react-infobutton:build', + target: { project: '@fluentui/react-infobutton', target: 'build' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-infobutton:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-infobutton:bundle-size': { + roots: ['@fluentui/react-infobutton:bundle-size'], + tasks: { + '@fluentui/react-infobutton:bundle-size': { + id: '@fluentui/react-infobutton:bundle-size', + target: { project: '@fluentui/react-infobutton', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:bundle-size': [] }, + }, + '@fluentui/react-infobutton:clean': { + roots: ['@fluentui/react-infobutton:clean'], + tasks: { + '@fluentui/react-infobutton:clean': { + id: '@fluentui/react-infobutton:clean', + target: { project: '@fluentui/react-infobutton', target: 'clean' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:clean': [] }, + }, + '@fluentui/react-infobutton:code-style': { + roots: ['@fluentui/react-infobutton:code-style'], + tasks: { + '@fluentui/react-infobutton:code-style': { + id: '@fluentui/react-infobutton:code-style', + target: { project: '@fluentui/react-infobutton', target: 'code-style' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:code-style': [] }, + }, + '@fluentui/react-infobutton:just': { + roots: ['@fluentui/react-infobutton:just'], + tasks: { + '@fluentui/react-infobutton:just': { + id: '@fluentui/react-infobutton:just', + target: { project: '@fluentui/react-infobutton', target: 'just' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:just': [] }, + }, + '@fluentui/react-infobutton:lint': { + roots: ['@fluentui/react-infobutton:lint'], + tasks: { + '@fluentui/react-infobutton:lint': { + id: '@fluentui/react-infobutton:lint', + target: { project: '@fluentui/react-infobutton', target: 'lint' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:lint': [] }, + }, + '@fluentui/react-infobutton:test': { + roots: ['@fluentui/react-infobutton:test'], + tasks: { + '@fluentui/react-infobutton:test': { + id: '@fluentui/react-infobutton:test', + target: { project: '@fluentui/react-infobutton', target: 'test' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:test': [] }, + }, + '@fluentui/react-infobutton:generate-api': { + roots: ['@fluentui/react-infobutton:generate-api'], + tasks: { + '@fluentui/react-infobutton:generate-api': { + id: '@fluentui/react-infobutton:generate-api', + target: { project: '@fluentui/react-infobutton', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:generate-api': [] }, + }, + '@fluentui/react-infobutton:type-check': { + roots: ['@fluentui/react-infobutton:type-check'], + tasks: { + '@fluentui/react-infobutton:type-check': { + id: '@fluentui/react-infobutton:type-check', + target: { project: '@fluentui/react-infobutton', target: 'type-check' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:type-check': [] }, + }, + '@fluentui/react-infobutton:storybook': { + roots: ['@fluentui/react-infobutton:storybook'], + tasks: { + '@fluentui/react-infobutton:storybook': { + id: '@fluentui/react-infobutton:storybook', + target: { project: '@fluentui/react-infobutton', target: 'storybook' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:storybook': [] }, + }, + '@fluentui/react-infobutton:start': { + roots: ['@fluentui/react-infobutton:start'], + tasks: { + '@fluentui/react-infobutton:start': { + id: '@fluentui/react-infobutton:start', + target: { project: '@fluentui/react-infobutton', target: 'start' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:start': [] }, + }, + '@fluentui/react-infobutton:e2e': { + roots: ['@fluentui/react-infobutton:e2e'], + tasks: { + '@fluentui/react-infobutton:e2e': { + id: '@fluentui/react-infobutton:e2e', + target: { project: '@fluentui/react-infobutton', target: 'e2e' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:e2e': [] }, + }, + '@fluentui/react-infobutton:e2e:local': { + roots: ['@fluentui/react-infobutton:e2e:local'], + tasks: { + '@fluentui/react-infobutton:e2e:local': { + id: '@fluentui/react-infobutton:e2e:local', + target: { project: '@fluentui/react-infobutton', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:e2e:local': [] }, + }, + '@fluentui/react-infobutton:test-ssr': { + roots: ['@fluentui/react-infobutton:test-ssr'], + tasks: { + '@fluentui/react-infobutton:test-ssr': { + id: '@fluentui/react-infobutton:test-ssr', + target: { project: '@fluentui/react-infobutton', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infobutton:test-ssr': [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: {}, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-breadcrumb:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-breadcrumb:clean': { + roots: ['@fluentui/react-breadcrumb:clean'], + tasks: { + '@fluentui/react-breadcrumb:clean': { + id: '@fluentui/react-breadcrumb:clean', + target: { project: '@fluentui/react-breadcrumb', target: 'clean' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:clean': [] }, + }, + '@fluentui/react-breadcrumb:code-style': { + roots: ['@fluentui/react-breadcrumb:code-style'], + tasks: { + '@fluentui/react-breadcrumb:code-style': { + id: '@fluentui/react-breadcrumb:code-style', + target: { project: '@fluentui/react-breadcrumb', target: 'code-style' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:code-style': [] }, + }, + '@fluentui/react-breadcrumb:e2e': { + roots: ['@fluentui/react-breadcrumb:e2e'], + tasks: { + '@fluentui/react-breadcrumb:e2e': { + id: '@fluentui/react-breadcrumb:e2e', + target: { project: '@fluentui/react-breadcrumb', target: 'e2e' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:e2e': [] }, + }, + '@fluentui/react-breadcrumb:e2e:local': { + roots: ['@fluentui/react-breadcrumb:e2e:local'], + tasks: { + '@fluentui/react-breadcrumb:e2e:local': { + id: '@fluentui/react-breadcrumb:e2e:local', + target: { project: '@fluentui/react-breadcrumb', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:e2e:local': [] }, + }, + '@fluentui/react-breadcrumb:just': { + roots: ['@fluentui/react-breadcrumb:just'], + tasks: { + '@fluentui/react-breadcrumb:just': { + id: '@fluentui/react-breadcrumb:just', + target: { project: '@fluentui/react-breadcrumb', target: 'just' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:just': [] }, + }, + '@fluentui/react-breadcrumb:lint': { + roots: ['@fluentui/react-breadcrumb:lint'], + tasks: { + '@fluentui/react-breadcrumb:lint': { + id: '@fluentui/react-breadcrumb:lint', + target: { project: '@fluentui/react-breadcrumb', target: 'lint' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:lint': [] }, + }, + '@fluentui/react-breadcrumb:test': { + roots: ['@fluentui/react-breadcrumb:test'], + tasks: { + '@fluentui/react-breadcrumb:test': { + id: '@fluentui/react-breadcrumb:test', + target: { project: '@fluentui/react-breadcrumb', target: 'test' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:test': [] }, + }, + '@fluentui/react-breadcrumb:type-check': { + roots: ['@fluentui/react-breadcrumb:type-check'], + tasks: { + '@fluentui/react-breadcrumb:type-check': { + id: '@fluentui/react-breadcrumb:type-check', + target: { project: '@fluentui/react-breadcrumb', target: 'type-check' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:type-check': [] }, + }, + '@fluentui/react-breadcrumb:generate-api': { + roots: ['@fluentui/react-breadcrumb:generate-api'], + tasks: { + '@fluentui/react-breadcrumb:generate-api': { + id: '@fluentui/react-breadcrumb:generate-api', + target: { project: '@fluentui/react-breadcrumb', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:generate-api': [] }, + }, + '@fluentui/react-breadcrumb:storybook': { + roots: ['@fluentui/react-breadcrumb:storybook'], + tasks: { + '@fluentui/react-breadcrumb:storybook': { + id: '@fluentui/react-breadcrumb:storybook', + target: { project: '@fluentui/react-breadcrumb', target: 'storybook' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:storybook': [] }, + }, + '@fluentui/react-breadcrumb:start': { + roots: ['@fluentui/react-breadcrumb:start'], + tasks: { + '@fluentui/react-breadcrumb:start': { + id: '@fluentui/react-breadcrumb:start', + target: { project: '@fluentui/react-breadcrumb', target: 'start' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:start': [] }, + }, + '@fluentui/react-breadcrumb:test-ssr': { + roots: ['@fluentui/react-breadcrumb:test-ssr'], + tasks: { + '@fluentui/react-breadcrumb:test-ssr': { + id: '@fluentui/react-breadcrumb:test-ssr', + target: { project: '@fluentui/react-breadcrumb', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-breadcrumb:test-ssr': [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: {}, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-spinbutton:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-spinbutton:bundle-size': { + roots: ['@fluentui/react-spinbutton:bundle-size'], + tasks: { + '@fluentui/react-spinbutton:bundle-size': { + id: '@fluentui/react-spinbutton:bundle-size', + target: { project: '@fluentui/react-spinbutton', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:bundle-size': [] }, + }, + '@fluentui/react-spinbutton:clean': { + roots: ['@fluentui/react-spinbutton:clean'], + tasks: { + '@fluentui/react-spinbutton:clean': { + id: '@fluentui/react-spinbutton:clean', + target: { project: '@fluentui/react-spinbutton', target: 'clean' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:clean': [] }, + }, + '@fluentui/react-spinbutton:code-style': { + roots: ['@fluentui/react-spinbutton:code-style'], + tasks: { + '@fluentui/react-spinbutton:code-style': { + id: '@fluentui/react-spinbutton:code-style', + target: { project: '@fluentui/react-spinbutton', target: 'code-style' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:code-style': [] }, + }, + '@fluentui/react-spinbutton:just': { + roots: ['@fluentui/react-spinbutton:just'], + tasks: { + '@fluentui/react-spinbutton:just': { + id: '@fluentui/react-spinbutton:just', + target: { project: '@fluentui/react-spinbutton', target: 'just' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:just': [] }, + }, + '@fluentui/react-spinbutton:lint': { + roots: ['@fluentui/react-spinbutton:lint'], + tasks: { + '@fluentui/react-spinbutton:lint': { + id: '@fluentui/react-spinbutton:lint', + target: { project: '@fluentui/react-spinbutton', target: 'lint' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:lint': [] }, + }, + '@fluentui/react-spinbutton:start': { + roots: ['@fluentui/react-spinbutton:start'], + tasks: { + '@fluentui/react-spinbutton:start': { + id: '@fluentui/react-spinbutton:start', + target: { project: '@fluentui/react-spinbutton', target: 'start' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:start': [] }, + }, + '@fluentui/react-spinbutton:test': { + roots: ['@fluentui/react-spinbutton:test'], + tasks: { + '@fluentui/react-spinbutton:test': { + id: '@fluentui/react-spinbutton:test', + target: { project: '@fluentui/react-spinbutton', target: 'test' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:test': [] }, + }, + '@fluentui/react-spinbutton:storybook': { + roots: ['@fluentui/react-spinbutton:storybook'], + tasks: { + '@fluentui/react-spinbutton:storybook': { + id: '@fluentui/react-spinbutton:storybook', + target: { project: '@fluentui/react-spinbutton', target: 'storybook' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:storybook': [] }, + }, + '@fluentui/react-spinbutton:type-check': { + roots: ['@fluentui/react-spinbutton:type-check'], + tasks: { + '@fluentui/react-spinbutton:type-check': { + id: '@fluentui/react-spinbutton:type-check', + target: { project: '@fluentui/react-spinbutton', target: 'type-check' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:type-check': [] }, + }, + '@fluentui/react-spinbutton:generate-api': { + roots: ['@fluentui/react-spinbutton:generate-api'], + tasks: { + '@fluentui/react-spinbutton:generate-api': { + id: '@fluentui/react-spinbutton:generate-api', + target: { project: '@fluentui/react-spinbutton', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:generate-api': [] }, + }, + '@fluentui/react-spinbutton:test-ssr': { + roots: ['@fluentui/react-spinbutton:test-ssr'], + tasks: { + '@fluentui/react-spinbutton:test-ssr': { + id: '@fluentui/react-spinbutton:test-ssr', + target: { project: '@fluentui/react-spinbutton', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinbutton:test-ssr': [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-components:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + '@fluentui/priority-overflow:build', + ], + tasks: { + '@fluentui/react-components:build': { + id: '@fluentui/react-components:build', + target: { project: '@fluentui/react-components', target: 'build' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:build': { + id: '@fluentui/react-alert:build', + target: { project: '@fluentui/react-alert', target: 'build' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:build': { + id: '@fluentui/react-infobutton:build', + target: { project: '@fluentui/react-infobutton', target: 'build' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:build': { + id: '@fluentui/react-overflow:build', + target: { project: '@fluentui/react-overflow', target: 'build' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:build': { + id: '@fluentui/react-virtualizer:build', + target: { project: '@fluentui/react-virtualizer', target: 'build' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-components:build': [ + '@fluentui/react-accordion:build', + '@fluentui/react-alert:build', + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-button:build', + '@fluentui/react-card:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-combobox:build', + '@fluentui/react-dialog:build', + '@fluentui/react-divider:build', + '@fluentui/react-drawer:build', + '@fluentui/react-field:build', + '@fluentui/react-image:build', + '@fluentui/react-infobutton:build', + '@fluentui/react-infolabel:build', + '@fluentui/react-input:build', + '@fluentui/react-label:build', + '@fluentui/react-link:build', + '@fluentui/react-menu:build', + '@fluentui/react-overflow:build', + '@fluentui/react-persona:build', + '@fluentui/react-portal:build', + '@fluentui/react-popover:build', + '@fluentui/react-positioning:build', + '@fluentui/react-progress:build', + '@fluentui/react-provider:build', + '@fluentui/react-radio:build', + '@fluentui/react-select:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-skeleton:build', + '@fluentui/react-slider:build', + '@fluentui/react-spinbutton:build', + '@fluentui/react-spinner:build', + '@fluentui/react-switch:build', + '@fluentui/react-table:build', + '@fluentui/react-tabs:build', + '@fluentui/react-tabster:build', + '@fluentui/react-tags:build', + '@fluentui/react-textarea:build', + '@fluentui/react-theme:build', + '@fluentui/react-toast:build', + '@fluentui/react-toolbar:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-text:build', + '@fluentui/react-virtualizer:build', + '@fluentui/react-tree:build', + '@fluentui/react-message-bar:build', + '@fluentui/react-breadcrumb:build', + ], + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-alert:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infobutton:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-overflow:build': [ + '@fluentui/priority-overflow:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/priority-overflow:build': [], + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-virtualizer:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-components:bundle-size': { + roots: ['@fluentui/react-components:bundle-size'], + tasks: { + '@fluentui/react-components:bundle-size': { + id: '@fluentui/react-components:bundle-size', + target: { project: '@fluentui/react-components', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:bundle-size': [] }, + }, + '@fluentui/react-components:clean': { + roots: ['@fluentui/react-components:clean'], + tasks: { + '@fluentui/react-components:clean': { + id: '@fluentui/react-components:clean', + target: { project: '@fluentui/react-components', target: 'clean' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:clean': [] }, + }, + '@fluentui/react-components:code-style': { + roots: ['@fluentui/react-components:code-style'], + tasks: { + '@fluentui/react-components:code-style': { + id: '@fluentui/react-components:code-style', + target: { project: '@fluentui/react-components', target: 'code-style' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:code-style': [] }, + }, + '@fluentui/react-components:just': { + roots: ['@fluentui/react-components:just'], + tasks: { + '@fluentui/react-components:just': { + id: '@fluentui/react-components:just', + target: { project: '@fluentui/react-components', target: 'just' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:just': [] }, + }, + '@fluentui/react-components:lint': { + roots: ['@fluentui/react-components:lint'], + tasks: { + '@fluentui/react-components:lint': { + id: '@fluentui/react-components:lint', + target: { project: '@fluentui/react-components', target: 'lint' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:lint': [] }, + }, + '@fluentui/react-components:start': { + roots: ['@fluentui/react-components:start'], + tasks: { + '@fluentui/react-components:start': { + id: '@fluentui/react-components:start', + target: { project: '@fluentui/react-components', target: 'start' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:start': [] }, + }, + '@fluentui/react-components:storybook': { + roots: ['@fluentui/react-components:storybook'], + tasks: { + '@fluentui/react-components:storybook': { + id: '@fluentui/react-components:storybook', + target: { project: '@fluentui/react-components', target: 'storybook' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:storybook': [] }, + }, + '@fluentui/react-components:test': { + roots: ['@fluentui/react-components:test'], + tasks: { + '@fluentui/react-components:test': { + id: '@fluentui/react-components:test', + target: { project: '@fluentui/react-components', target: 'test' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:test': [] }, + }, + '@fluentui/react-components:type-check': { + roots: ['@fluentui/react-components:type-check'], + tasks: { + '@fluentui/react-components:type-check': { + id: '@fluentui/react-components:type-check', + target: { project: '@fluentui/react-components', target: 'type-check' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:type-check': [] }, + }, + '@fluentui/react-components:generate-api': { + roots: ['@fluentui/react-components:generate-api'], + tasks: { + '@fluentui/react-components:generate-api': { + id: '@fluentui/react-components:generate-api', + target: { project: '@fluentui/react-components', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:generate-api': [] }, + }, + '@fluentui/react-components:verify-packaging': { + roots: ['@fluentui/react-components:verify-packaging'], + tasks: { + '@fluentui/react-components:verify-packaging': { + id: '@fluentui/react-components:verify-packaging', + target: { project: '@fluentui/react-components', target: 'verify-packaging' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-components:verify-packaging': [] }, + }, + '@fluentui/react-components:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: {}, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-theme-sass:build': { + roots: ['@fluentui/tokens:build'], + tasks: { + '@fluentui/react-theme-sass:build': { + id: '@fluentui/react-theme-sass:build', + target: { project: '@fluentui/react-theme-sass', target: 'build' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-theme-sass:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + }, + }, + '@fluentui/react-theme-sass:clean': { + roots: ['@fluentui/react-theme-sass:clean'], + tasks: { + '@fluentui/react-theme-sass:clean': { + id: '@fluentui/react-theme-sass:clean', + target: { project: '@fluentui/react-theme-sass', target: 'clean' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme-sass:clean': [] }, + }, + '@fluentui/react-theme-sass:code-style': { + roots: ['@fluentui/react-theme-sass:code-style'], + tasks: { + '@fluentui/react-theme-sass:code-style': { + id: '@fluentui/react-theme-sass:code-style', + target: { project: '@fluentui/react-theme-sass', target: 'code-style' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme-sass:code-style': [] }, + }, + '@fluentui/react-theme-sass:just': { + roots: ['@fluentui/react-theme-sass:just'], + tasks: { + '@fluentui/react-theme-sass:just': { + id: '@fluentui/react-theme-sass:just', + target: { project: '@fluentui/react-theme-sass', target: 'just' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme-sass:just': [] }, + }, + '@fluentui/react-theme-sass:lint': { + roots: ['@fluentui/react-theme-sass:lint'], + tasks: { + '@fluentui/react-theme-sass:lint': { + id: '@fluentui/react-theme-sass:lint', + target: { project: '@fluentui/react-theme-sass', target: 'lint' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme-sass:lint': [] }, + }, + '@fluentui/react-theme-sass:test': { + roots: ['@fluentui/react-theme-sass:test'], + tasks: { + '@fluentui/react-theme-sass:test': { + id: '@fluentui/react-theme-sass:test', + target: { project: '@fluentui/react-theme-sass', target: 'test' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme-sass:test': [] }, + }, + '@fluentui/react-theme-sass:type-check': { + roots: ['@fluentui/react-theme-sass:type-check'], + tasks: { + '@fluentui/react-theme-sass:type-check': { + id: '@fluentui/react-theme-sass:type-check', + target: { project: '@fluentui/react-theme-sass', target: 'type-check' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme-sass:type-check': [] }, + }, + '@fluentui/react-theme-sass:generate-api': { + roots: ['@fluentui/react-theme-sass:generate-api'], + tasks: { + '@fluentui/react-theme-sass:generate-api': { + id: '@fluentui/react-theme-sass:generate-api', + target: { project: '@fluentui/react-theme-sass', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme-sass:generate-api': [] }, + }, + '@fluentui/react-theme-sass:test-ssr': { + roots: ['@fluentui/react-theme-sass:test-ssr'], + tasks: { + '@fluentui/react-theme-sass:test-ssr': { + id: '@fluentui/react-theme-sass:test-ssr', + target: { project: '@fluentui/react-theme-sass', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme-sass:test-ssr': [] }, + }, + '@fluentui/react-theme-sass:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-theme-sass:nx-release-publish': { + id: '@fluentui/react-theme-sass:nx-release-publish', + target: { project: '@fluentui/react-theme-sass', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme-sass', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-theme-sass:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-accordion:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-accordion:bundle-size': { + roots: ['@fluentui/react-accordion:bundle-size'], + tasks: { + '@fluentui/react-accordion:bundle-size': { + id: '@fluentui/react-accordion:bundle-size', + target: { project: '@fluentui/react-accordion', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:bundle-size': [] }, + }, + '@fluentui/react-accordion:clean': { + roots: ['@fluentui/react-accordion:clean'], + tasks: { + '@fluentui/react-accordion:clean': { + id: '@fluentui/react-accordion:clean', + target: { project: '@fluentui/react-accordion', target: 'clean' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:clean': [] }, + }, + '@fluentui/react-accordion:code-style': { + roots: ['@fluentui/react-accordion:code-style'], + tasks: { + '@fluentui/react-accordion:code-style': { + id: '@fluentui/react-accordion:code-style', + target: { project: '@fluentui/react-accordion', target: 'code-style' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:code-style': [] }, + }, + '@fluentui/react-accordion:just': { + roots: ['@fluentui/react-accordion:just'], + tasks: { + '@fluentui/react-accordion:just': { + id: '@fluentui/react-accordion:just', + target: { project: '@fluentui/react-accordion', target: 'just' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:just': [] }, + }, + '@fluentui/react-accordion:lint': { + roots: ['@fluentui/react-accordion:lint'], + tasks: { + '@fluentui/react-accordion:lint': { + id: '@fluentui/react-accordion:lint', + target: { project: '@fluentui/react-accordion', target: 'lint' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:lint': [] }, + }, + '@fluentui/react-accordion:start': { + roots: ['@fluentui/react-accordion:start'], + tasks: { + '@fluentui/react-accordion:start': { + id: '@fluentui/react-accordion:start', + target: { project: '@fluentui/react-accordion', target: 'start' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:start': [] }, + }, + '@fluentui/react-accordion:test': { + roots: ['@fluentui/react-accordion:test'], + tasks: { + '@fluentui/react-accordion:test': { + id: '@fluentui/react-accordion:test', + target: { project: '@fluentui/react-accordion', target: 'test' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:test': [] }, + }, + '@fluentui/react-accordion:storybook': { + roots: ['@fluentui/react-accordion:storybook'], + tasks: { + '@fluentui/react-accordion:storybook': { + id: '@fluentui/react-accordion:storybook', + target: { project: '@fluentui/react-accordion', target: 'storybook' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:storybook': [] }, + }, + '@fluentui/react-accordion:type-check': { + roots: ['@fluentui/react-accordion:type-check'], + tasks: { + '@fluentui/react-accordion:type-check': { + id: '@fluentui/react-accordion:type-check', + target: { project: '@fluentui/react-accordion', target: 'type-check' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:type-check': [] }, + }, + '@fluentui/react-accordion:generate-api': { + roots: ['@fluentui/react-accordion:generate-api'], + tasks: { + '@fluentui/react-accordion:generate-api': { + id: '@fluentui/react-accordion:generate-api', + target: { project: '@fluentui/react-accordion', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:generate-api': [] }, + }, + '@fluentui/react-accordion:test-ssr': { + roots: ['@fluentui/react-accordion:test-ssr'], + tasks: { + '@fluentui/react-accordion:test-ssr': { + id: '@fluentui/react-accordion:test-ssr', + target: { project: '@fluentui/react-accordion', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-accordion:test-ssr': [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: {}, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-utilities:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], + tasks: { + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + }, + }, + '@fluentui/react-utilities:bundle-size': { + roots: ['@fluentui/react-utilities:bundle-size'], + tasks: { + '@fluentui/react-utilities:bundle-size': { + id: '@fluentui/react-utilities:bundle-size', + target: { project: '@fluentui/react-utilities', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:bundle-size': [] }, + }, + '@fluentui/react-utilities:clean': { + roots: ['@fluentui/react-utilities:clean'], + tasks: { + '@fluentui/react-utilities:clean': { + id: '@fluentui/react-utilities:clean', + target: { project: '@fluentui/react-utilities', target: 'clean' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:clean': [] }, + }, + '@fluentui/react-utilities:code-style': { + roots: ['@fluentui/react-utilities:code-style'], + tasks: { + '@fluentui/react-utilities:code-style': { + id: '@fluentui/react-utilities:code-style', + target: { project: '@fluentui/react-utilities', target: 'code-style' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:code-style': [] }, + }, + '@fluentui/react-utilities:just': { + roots: ['@fluentui/react-utilities:just'], + tasks: { + '@fluentui/react-utilities:just': { + id: '@fluentui/react-utilities:just', + target: { project: '@fluentui/react-utilities', target: 'just' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:just': [] }, + }, + '@fluentui/react-utilities:lint': { + roots: ['@fluentui/react-utilities:lint'], + tasks: { + '@fluentui/react-utilities:lint': { + id: '@fluentui/react-utilities:lint', + target: { project: '@fluentui/react-utilities', target: 'lint' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:lint': [] }, + }, + '@fluentui/react-utilities:test': { + roots: ['@fluentui/react-utilities:test'], + tasks: { + '@fluentui/react-utilities:test': { + id: '@fluentui/react-utilities:test', + target: { project: '@fluentui/react-utilities', target: 'test' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:test': [] }, + }, + '@fluentui/react-utilities:type-check': { + roots: ['@fluentui/react-utilities:type-check'], + tasks: { + '@fluentui/react-utilities:type-check': { + id: '@fluentui/react-utilities:type-check', + target: { project: '@fluentui/react-utilities', target: 'type-check' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:type-check': [] }, + }, + '@fluentui/react-utilities:generate-api': { + roots: ['@fluentui/react-utilities:generate-api'], + tasks: { + '@fluentui/react-utilities:generate-api': { + id: '@fluentui/react-utilities:generate-api', + target: { project: '@fluentui/react-utilities', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:generate-api': [] }, + }, + '@fluentui/react-utilities:test-ssr': { + roots: ['@fluentui/react-utilities:test-ssr'], + tasks: { + '@fluentui/react-utilities:test-ssr': { + id: '@fluentui/react-utilities:test-ssr', + target: { project: '@fluentui/react-utilities', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:test-ssr': [] }, + }, + '@fluentui/react-utilities:e2e': { + roots: ['@fluentui/react-utilities:e2e'], + tasks: { + '@fluentui/react-utilities:e2e': { + id: '@fluentui/react-utilities:e2e', + target: { project: '@fluentui/react-utilities', target: 'e2e' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:e2e': [] }, + }, + '@fluentui/react-utilities:e2e:local': { + roots: ['@fluentui/react-utilities:e2e:local'], + tasks: { + '@fluentui/react-utilities:e2e:local': { + id: '@fluentui/react-utilities:e2e:local', + target: { project: '@fluentui/react-utilities', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-utilities:e2e:local': [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-infolabel:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-infolabel:clean': { + roots: ['@fluentui/react-infolabel:clean'], + tasks: { + '@fluentui/react-infolabel:clean': { + id: '@fluentui/react-infolabel:clean', + target: { project: '@fluentui/react-infolabel', target: 'clean' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infolabel:clean': [] }, + }, + '@fluentui/react-infolabel:generate-api': { + roots: ['@fluentui/react-infolabel:generate-api'], + tasks: { + '@fluentui/react-infolabel:generate-api': { + id: '@fluentui/react-infolabel:generate-api', + target: { project: '@fluentui/react-infolabel', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infolabel:generate-api': [] }, + }, + '@fluentui/react-infolabel:lint': { + roots: ['@fluentui/react-infolabel:lint'], + tasks: { + '@fluentui/react-infolabel:lint': { + id: '@fluentui/react-infolabel:lint', + target: { project: '@fluentui/react-infolabel', target: 'lint' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infolabel:lint': [] }, + }, + '@fluentui/react-infolabel:start': { + roots: ['@fluentui/react-infolabel:start'], + tasks: { + '@fluentui/react-infolabel:start': { + id: '@fluentui/react-infolabel:start', + target: { project: '@fluentui/react-infolabel', target: 'start' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infolabel:start': [] }, + }, + '@fluentui/react-infolabel:storybook': { + roots: ['@fluentui/react-infolabel:storybook'], + tasks: { + '@fluentui/react-infolabel:storybook': { + id: '@fluentui/react-infolabel:storybook', + target: { project: '@fluentui/react-infolabel', target: 'storybook' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infolabel:storybook': [] }, + }, + '@fluentui/react-infolabel:test': { + roots: ['@fluentui/react-infolabel:test'], + tasks: { + '@fluentui/react-infolabel:test': { + id: '@fluentui/react-infolabel:test', + target: { project: '@fluentui/react-infolabel', target: 'test' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infolabel:test': [] }, + }, + '@fluentui/react-infolabel:test-ssr': { + roots: ['@fluentui/react-infolabel:test-ssr'], + tasks: { + '@fluentui/react-infolabel:test-ssr': { + id: '@fluentui/react-infolabel:test-ssr', + target: { project: '@fluentui/react-infolabel', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infolabel:test-ssr': [] }, + }, + '@fluentui/react-infolabel:type-check': { + roots: ['@fluentui/react-infolabel:type-check'], + tasks: { + '@fluentui/react-infolabel:type-check': { + id: '@fluentui/react-infolabel:type-check', + target: { project: '@fluentui/react-infolabel', target: 'type-check' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-infolabel:type-check': [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: {}, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-skeleton:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-skeleton:clean': { + roots: ['@fluentui/react-skeleton:clean'], + tasks: { + '@fluentui/react-skeleton:clean': { + id: '@fluentui/react-skeleton:clean', + target: { project: '@fluentui/react-skeleton', target: 'clean' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:clean': [] }, + }, + '@fluentui/react-skeleton:code-style': { + roots: ['@fluentui/react-skeleton:code-style'], + tasks: { + '@fluentui/react-skeleton:code-style': { + id: '@fluentui/react-skeleton:code-style', + target: { project: '@fluentui/react-skeleton', target: 'code-style' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:code-style': [] }, + }, + '@fluentui/react-skeleton:just': { + roots: ['@fluentui/react-skeleton:just'], + tasks: { + '@fluentui/react-skeleton:just': { + id: '@fluentui/react-skeleton:just', + target: { project: '@fluentui/react-skeleton', target: 'just' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:just': [] }, + }, + '@fluentui/react-skeleton:lint': { + roots: ['@fluentui/react-skeleton:lint'], + tasks: { + '@fluentui/react-skeleton:lint': { + id: '@fluentui/react-skeleton:lint', + target: { project: '@fluentui/react-skeleton', target: 'lint' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:lint': [] }, + }, + '@fluentui/react-skeleton:test': { + roots: ['@fluentui/react-skeleton:test'], + tasks: { + '@fluentui/react-skeleton:test': { + id: '@fluentui/react-skeleton:test', + target: { project: '@fluentui/react-skeleton', target: 'test' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:test': [] }, + }, + '@fluentui/react-skeleton:generate-api': { + roots: ['@fluentui/react-skeleton:generate-api'], + tasks: { + '@fluentui/react-skeleton:generate-api': { + id: '@fluentui/react-skeleton:generate-api', + target: { project: '@fluentui/react-skeleton', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:generate-api': [] }, + }, + '@fluentui/react-skeleton:type-check': { + roots: ['@fluentui/react-skeleton:type-check'], + tasks: { + '@fluentui/react-skeleton:type-check': { + id: '@fluentui/react-skeleton:type-check', + target: { project: '@fluentui/react-skeleton', target: 'type-check' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:type-check': [] }, + }, + '@fluentui/react-skeleton:storybook': { + roots: ['@fluentui/react-skeleton:storybook'], + tasks: { + '@fluentui/react-skeleton:storybook': { + id: '@fluentui/react-skeleton:storybook', + target: { project: '@fluentui/react-skeleton', target: 'storybook' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:storybook': [] }, + }, + '@fluentui/react-skeleton:start': { + roots: ['@fluentui/react-skeleton:start'], + tasks: { + '@fluentui/react-skeleton:start': { + id: '@fluentui/react-skeleton:start', + target: { project: '@fluentui/react-skeleton', target: 'start' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:start': [] }, + }, + '@fluentui/react-skeleton:test-ssr': { + roots: ['@fluentui/react-skeleton:test-ssr'], + tasks: { + '@fluentui/react-skeleton:test-ssr': { + id: '@fluentui/react-skeleton:test-ssr', + target: { project: '@fluentui/react-skeleton', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-skeleton:test-ssr': [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-textarea:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-textarea:bundle-size': { + roots: ['@fluentui/react-textarea:bundle-size'], + tasks: { + '@fluentui/react-textarea:bundle-size': { + id: '@fluentui/react-textarea:bundle-size', + target: { project: '@fluentui/react-textarea', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:bundle-size': [] }, + }, + '@fluentui/react-textarea:clean': { + roots: ['@fluentui/react-textarea:clean'], + tasks: { + '@fluentui/react-textarea:clean': { + id: '@fluentui/react-textarea:clean', + target: { project: '@fluentui/react-textarea', target: 'clean' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:clean': [] }, + }, + '@fluentui/react-textarea:code-style': { + roots: ['@fluentui/react-textarea:code-style'], + tasks: { + '@fluentui/react-textarea:code-style': { + id: '@fluentui/react-textarea:code-style', + target: { project: '@fluentui/react-textarea', target: 'code-style' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:code-style': [] }, + }, + '@fluentui/react-textarea:just': { + roots: ['@fluentui/react-textarea:just'], + tasks: { + '@fluentui/react-textarea:just': { + id: '@fluentui/react-textarea:just', + target: { project: '@fluentui/react-textarea', target: 'just' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:just': [] }, + }, + '@fluentui/react-textarea:lint': { + roots: ['@fluentui/react-textarea:lint'], + tasks: { + '@fluentui/react-textarea:lint': { + id: '@fluentui/react-textarea:lint', + target: { project: '@fluentui/react-textarea', target: 'lint' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:lint': [] }, + }, + '@fluentui/react-textarea:start': { + roots: ['@fluentui/react-textarea:start'], + tasks: { + '@fluentui/react-textarea:start': { + id: '@fluentui/react-textarea:start', + target: { project: '@fluentui/react-textarea', target: 'start' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:start': [] }, + }, + '@fluentui/react-textarea:test': { + roots: ['@fluentui/react-textarea:test'], + tasks: { + '@fluentui/react-textarea:test': { + id: '@fluentui/react-textarea:test', + target: { project: '@fluentui/react-textarea', target: 'test' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:test': [] }, + }, + '@fluentui/react-textarea:storybook': { + roots: ['@fluentui/react-textarea:storybook'], + tasks: { + '@fluentui/react-textarea:storybook': { + id: '@fluentui/react-textarea:storybook', + target: { project: '@fluentui/react-textarea', target: 'storybook' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:storybook': [] }, + }, + '@fluentui/react-textarea:type-check': { + roots: ['@fluentui/react-textarea:type-check'], + tasks: { + '@fluentui/react-textarea:type-check': { + id: '@fluentui/react-textarea:type-check', + target: { project: '@fluentui/react-textarea', target: 'type-check' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:type-check': [] }, + }, + '@fluentui/react-textarea:generate-api': { + roots: ['@fluentui/react-textarea:generate-api'], + tasks: { + '@fluentui/react-textarea:generate-api': { + id: '@fluentui/react-textarea:generate-api', + target: { project: '@fluentui/react-textarea', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:generate-api': [] }, + }, + '@fluentui/react-textarea:test-ssr': { + roots: ['@fluentui/react-textarea:test-ssr'], + tasks: { + '@fluentui/react-textarea:test-ssr': { + id: '@fluentui/react-textarea:test-ssr', + target: { project: '@fluentui/react-textarea', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-textarea:test-ssr': [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-checkbox:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-checkbox:bundle-size': { + roots: ['@fluentui/react-checkbox:bundle-size'], + tasks: { + '@fluentui/react-checkbox:bundle-size': { + id: '@fluentui/react-checkbox:bundle-size', + target: { project: '@fluentui/react-checkbox', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:bundle-size': [] }, + }, + '@fluentui/react-checkbox:clean': { + roots: ['@fluentui/react-checkbox:clean'], + tasks: { + '@fluentui/react-checkbox:clean': { + id: '@fluentui/react-checkbox:clean', + target: { project: '@fluentui/react-checkbox', target: 'clean' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:clean': [] }, + }, + '@fluentui/react-checkbox:code-style': { + roots: ['@fluentui/react-checkbox:code-style'], + tasks: { + '@fluentui/react-checkbox:code-style': { + id: '@fluentui/react-checkbox:code-style', + target: { project: '@fluentui/react-checkbox', target: 'code-style' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:code-style': [] }, + }, + '@fluentui/react-checkbox:just': { + roots: ['@fluentui/react-checkbox:just'], + tasks: { + '@fluentui/react-checkbox:just': { + id: '@fluentui/react-checkbox:just', + target: { project: '@fluentui/react-checkbox', target: 'just' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:just': [] }, + }, + '@fluentui/react-checkbox:lint': { + roots: ['@fluentui/react-checkbox:lint'], + tasks: { + '@fluentui/react-checkbox:lint': { + id: '@fluentui/react-checkbox:lint', + target: { project: '@fluentui/react-checkbox', target: 'lint' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:lint': [] }, + }, + '@fluentui/react-checkbox:start': { + roots: ['@fluentui/react-checkbox:start'], + tasks: { + '@fluentui/react-checkbox:start': { + id: '@fluentui/react-checkbox:start', + target: { project: '@fluentui/react-checkbox', target: 'start' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:start': [] }, + }, + '@fluentui/react-checkbox:test': { + roots: ['@fluentui/react-checkbox:test'], + tasks: { + '@fluentui/react-checkbox:test': { + id: '@fluentui/react-checkbox:test', + target: { project: '@fluentui/react-checkbox', target: 'test' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:test': [] }, + }, + '@fluentui/react-checkbox:storybook': { + roots: ['@fluentui/react-checkbox:storybook'], + tasks: { + '@fluentui/react-checkbox:storybook': { + id: '@fluentui/react-checkbox:storybook', + target: { project: '@fluentui/react-checkbox', target: 'storybook' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:storybook': [] }, + }, + '@fluentui/react-checkbox:type-check': { + roots: ['@fluentui/react-checkbox:type-check'], + tasks: { + '@fluentui/react-checkbox:type-check': { + id: '@fluentui/react-checkbox:type-check', + target: { project: '@fluentui/react-checkbox', target: 'type-check' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:type-check': [] }, + }, + '@fluentui/react-checkbox:generate-api': { + roots: ['@fluentui/react-checkbox:generate-api'], + tasks: { + '@fluentui/react-checkbox:generate-api': { + id: '@fluentui/react-checkbox:generate-api', + target: { project: '@fluentui/react-checkbox', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:generate-api': [] }, + }, + '@fluentui/react-checkbox:test-ssr': { + roots: ['@fluentui/react-checkbox:test-ssr'], + tasks: { + '@fluentui/react-checkbox:test-ssr': { + id: '@fluentui/react-checkbox:test-ssr', + target: { project: '@fluentui/react-checkbox', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-checkbox:test-ssr': [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-overflow:build': { + roots: ['@fluentui/priority-overflow:build', '@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], + tasks: { + '@fluentui/react-overflow:build': { + id: '@fluentui/react-overflow:build', + target: { project: '@fluentui/react-overflow', target: 'build' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-overflow:build': [ + '@fluentui/priority-overflow:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/priority-overflow:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + }, + }, + '@fluentui/react-overflow:bundle-size': { + roots: ['@fluentui/react-overflow:bundle-size'], + tasks: { + '@fluentui/react-overflow:bundle-size': { + id: '@fluentui/react-overflow:bundle-size', + target: { project: '@fluentui/react-overflow', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:bundle-size': [] }, + }, + '@fluentui/react-overflow:clean': { + roots: ['@fluentui/react-overflow:clean'], + tasks: { + '@fluentui/react-overflow:clean': { + id: '@fluentui/react-overflow:clean', + target: { project: '@fluentui/react-overflow', target: 'clean' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:clean': [] }, + }, + '@fluentui/react-overflow:code-style': { + roots: ['@fluentui/react-overflow:code-style'], + tasks: { + '@fluentui/react-overflow:code-style': { + id: '@fluentui/react-overflow:code-style', + target: { project: '@fluentui/react-overflow', target: 'code-style' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:code-style': [] }, + }, + '@fluentui/react-overflow:e2e': { + roots: ['@fluentui/react-overflow:e2e'], + tasks: { + '@fluentui/react-overflow:e2e': { + id: '@fluentui/react-overflow:e2e', + target: { project: '@fluentui/react-overflow', target: 'e2e' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:e2e': [] }, + }, + '@fluentui/react-overflow:e2e:local': { + roots: ['@fluentui/react-overflow:e2e:local'], + tasks: { + '@fluentui/react-overflow:e2e:local': { + id: '@fluentui/react-overflow:e2e:local', + target: { project: '@fluentui/react-overflow', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:e2e:local': [] }, + }, + '@fluentui/react-overflow:just': { + roots: ['@fluentui/react-overflow:just'], + tasks: { + '@fluentui/react-overflow:just': { + id: '@fluentui/react-overflow:just', + target: { project: '@fluentui/react-overflow', target: 'just' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:just': [] }, + }, + '@fluentui/react-overflow:lint': { + roots: ['@fluentui/react-overflow:lint'], + tasks: { + '@fluentui/react-overflow:lint': { + id: '@fluentui/react-overflow:lint', + target: { project: '@fluentui/react-overflow', target: 'lint' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:lint': [] }, + }, + '@fluentui/react-overflow:start': { + roots: ['@fluentui/react-overflow:start'], + tasks: { + '@fluentui/react-overflow:start': { + id: '@fluentui/react-overflow:start', + target: { project: '@fluentui/react-overflow', target: 'start' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:start': [] }, + }, + '@fluentui/react-overflow:test': { + roots: ['@fluentui/react-overflow:test'], + tasks: { + '@fluentui/react-overflow:test': { + id: '@fluentui/react-overflow:test', + target: { project: '@fluentui/react-overflow', target: 'test' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:test': [] }, + }, + '@fluentui/react-overflow:storybook': { + roots: ['@fluentui/react-overflow:storybook'], + tasks: { + '@fluentui/react-overflow:storybook': { + id: '@fluentui/react-overflow:storybook', + target: { project: '@fluentui/react-overflow', target: 'storybook' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:storybook': [] }, + }, + '@fluentui/react-overflow:type-check': { + roots: ['@fluentui/react-overflow:type-check'], + tasks: { + '@fluentui/react-overflow:type-check': { + id: '@fluentui/react-overflow:type-check', + target: { project: '@fluentui/react-overflow', target: 'type-check' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:type-check': [] }, + }, + '@fluentui/react-overflow:generate-api': { + roots: ['@fluentui/react-overflow:generate-api'], + tasks: { + '@fluentui/react-overflow:generate-api': { + id: '@fluentui/react-overflow:generate-api', + target: { project: '@fluentui/react-overflow', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:generate-api': [] }, + }, + '@fluentui/react-overflow:test-ssr': { + roots: ['@fluentui/react-overflow:test-ssr'], + tasks: { + '@fluentui/react-overflow:test-ssr': { + id: '@fluentui/react-overflow:test-ssr', + target: { project: '@fluentui/react-overflow', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-overflow:test-ssr': [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: {}, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/global-context:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], + tasks: { + '@fluentui/global-context:build': { + id: '@fluentui/global-context:build', + target: { project: '@fluentui/global-context', target: 'build' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/global-context:build': ['@fluentui/react-context-selector:build', '@fluentui/react-utilities:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + }, + }, + '@fluentui/global-context:bundle-size': { + roots: ['@fluentui/global-context:bundle-size'], + tasks: { + '@fluentui/global-context:bundle-size': { + id: '@fluentui/global-context:bundle-size', + target: { project: '@fluentui/global-context', target: 'bundle-size' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:bundle-size': [] }, + }, + '@fluentui/global-context:clean': { + roots: ['@fluentui/global-context:clean'], + tasks: { + '@fluentui/global-context:clean': { + id: '@fluentui/global-context:clean', + target: { project: '@fluentui/global-context', target: 'clean' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:clean': [] }, + }, + '@fluentui/global-context:code-style': { + roots: ['@fluentui/global-context:code-style'], + tasks: { + '@fluentui/global-context:code-style': { + id: '@fluentui/global-context:code-style', + target: { project: '@fluentui/global-context', target: 'code-style' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:code-style': [] }, + }, + '@fluentui/global-context:e2e': { + roots: ['@fluentui/global-context:e2e'], + tasks: { + '@fluentui/global-context:e2e': { + id: '@fluentui/global-context:e2e', + target: { project: '@fluentui/global-context', target: 'e2e' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:e2e': [] }, + }, + '@fluentui/global-context:e2e:local': { + roots: ['@fluentui/global-context:e2e:local'], + tasks: { + '@fluentui/global-context:e2e:local': { + id: '@fluentui/global-context:e2e:local', + target: { project: '@fluentui/global-context', target: 'e2e:local' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:e2e:local': [] }, + }, + '@fluentui/global-context:just': { + roots: ['@fluentui/global-context:just'], + tasks: { + '@fluentui/global-context:just': { + id: '@fluentui/global-context:just', + target: { project: '@fluentui/global-context', target: 'just' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:just': [] }, + }, + '@fluentui/global-context:lint': { + roots: ['@fluentui/global-context:lint'], + tasks: { + '@fluentui/global-context:lint': { + id: '@fluentui/global-context:lint', + target: { project: '@fluentui/global-context', target: 'lint' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:lint': [] }, + }, + '@fluentui/global-context:test': { + roots: ['@fluentui/global-context:test'], + tasks: { + '@fluentui/global-context:test': { + id: '@fluentui/global-context:test', + target: { project: '@fluentui/global-context', target: 'test' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:test': [] }, + }, + '@fluentui/global-context:type-check': { + roots: ['@fluentui/global-context:type-check'], + tasks: { + '@fluentui/global-context:type-check': { + id: '@fluentui/global-context:type-check', + target: { project: '@fluentui/global-context', target: 'type-check' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:type-check': [] }, + }, + '@fluentui/global-context:generate-api': { + roots: ['@fluentui/global-context:generate-api'], + tasks: { + '@fluentui/global-context:generate-api': { + id: '@fluentui/global-context:generate-api', + target: { project: '@fluentui/global-context', target: 'generate-api' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:generate-api': [] }, + }, + '@fluentui/global-context:test-ssr': { + roots: ['@fluentui/global-context:test-ssr'], + tasks: { + '@fluentui/global-context:test-ssr': { + id: '@fluentui/global-context:test-ssr', + target: { project: '@fluentui/global-context', target: 'test-ssr' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + }, + dependencies: { '@fluentui/global-context:test-ssr': [] }, + }, + '@fluentui/global-context:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/global-context:nx-release-publish': { + id: '@fluentui/global-context:nx-release-publish', + target: { project: '@fluentui/global-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/global-context', + overrides: {}, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/global-context:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-provider:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-provider:bundle-size': { + roots: ['@fluentui/react-provider:bundle-size'], + tasks: { + '@fluentui/react-provider:bundle-size': { + id: '@fluentui/react-provider:bundle-size', + target: { project: '@fluentui/react-provider', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:bundle-size': [] }, + }, + '@fluentui/react-provider:test': { + roots: ['@fluentui/react-provider:test'], + tasks: { + '@fluentui/react-provider:test': { + id: '@fluentui/react-provider:test', + target: { project: '@fluentui/react-provider', target: 'test' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:test': [] }, + }, + '@fluentui/react-provider:clean': { + roots: ['@fluentui/react-provider:clean'], + tasks: { + '@fluentui/react-provider:clean': { + id: '@fluentui/react-provider:clean', + target: { project: '@fluentui/react-provider', target: 'clean' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:clean': [] }, + }, + '@fluentui/react-provider:code-style': { + roots: ['@fluentui/react-provider:code-style'], + tasks: { + '@fluentui/react-provider:code-style': { + id: '@fluentui/react-provider:code-style', + target: { project: '@fluentui/react-provider', target: 'code-style' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:code-style': [] }, + }, + '@fluentui/react-provider:just': { + roots: ['@fluentui/react-provider:just'], + tasks: { + '@fluentui/react-provider:just': { + id: '@fluentui/react-provider:just', + target: { project: '@fluentui/react-provider', target: 'just' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:just': [] }, + }, + '@fluentui/react-provider:lint': { + roots: ['@fluentui/react-provider:lint'], + tasks: { + '@fluentui/react-provider:lint': { + id: '@fluentui/react-provider:lint', + target: { project: '@fluentui/react-provider', target: 'lint' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:lint': [] }, + }, + '@fluentui/react-provider:storybook': { + roots: ['@fluentui/react-provider:storybook'], + tasks: { + '@fluentui/react-provider:storybook': { + id: '@fluentui/react-provider:storybook', + target: { project: '@fluentui/react-provider', target: 'storybook' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:storybook': [] }, + }, + '@fluentui/react-provider:start': { + roots: ['@fluentui/react-provider:start'], + tasks: { + '@fluentui/react-provider:start': { + id: '@fluentui/react-provider:start', + target: { project: '@fluentui/react-provider', target: 'start' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:start': [] }, + }, + '@fluentui/react-provider:type-check': { + roots: ['@fluentui/react-provider:type-check'], + tasks: { + '@fluentui/react-provider:type-check': { + id: '@fluentui/react-provider:type-check', + target: { project: '@fluentui/react-provider', target: 'type-check' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:type-check': [] }, + }, + '@fluentui/react-provider:generate-api': { + roots: ['@fluentui/react-provider:generate-api'], + tasks: { + '@fluentui/react-provider:generate-api': { + id: '@fluentui/react-provider:generate-api', + target: { project: '@fluentui/react-provider', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:generate-api': [] }, + }, + '@fluentui/react-provider:test-ssr': { + roots: ['@fluentui/react-provider:test-ssr'], + tasks: { + '@fluentui/react-provider:test-ssr': { + id: '@fluentui/react-provider:test-ssr', + target: { project: '@fluentui/react-provider', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-provider:test-ssr': [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: {}, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-progress:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-progress:bundle-size': { + roots: ['@fluentui/react-progress:bundle-size'], + tasks: { + '@fluentui/react-progress:bundle-size': { + id: '@fluentui/react-progress:bundle-size', + target: { project: '@fluentui/react-progress', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:bundle-size': [] }, + }, + '@fluentui/react-progress:clean': { + roots: ['@fluentui/react-progress:clean'], + tasks: { + '@fluentui/react-progress:clean': { + id: '@fluentui/react-progress:clean', + target: { project: '@fluentui/react-progress', target: 'clean' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:clean': [] }, + }, + '@fluentui/react-progress:code-style': { + roots: ['@fluentui/react-progress:code-style'], + tasks: { + '@fluentui/react-progress:code-style': { + id: '@fluentui/react-progress:code-style', + target: { project: '@fluentui/react-progress', target: 'code-style' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:code-style': [] }, + }, + '@fluentui/react-progress:just': { + roots: ['@fluentui/react-progress:just'], + tasks: { + '@fluentui/react-progress:just': { + id: '@fluentui/react-progress:just', + target: { project: '@fluentui/react-progress', target: 'just' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:just': [] }, + }, + '@fluentui/react-progress:lint': { + roots: ['@fluentui/react-progress:lint'], + tasks: { + '@fluentui/react-progress:lint': { + id: '@fluentui/react-progress:lint', + target: { project: '@fluentui/react-progress', target: 'lint' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:lint': [] }, + }, + '@fluentui/react-progress:test': { + roots: ['@fluentui/react-progress:test'], + tasks: { + '@fluentui/react-progress:test': { + id: '@fluentui/react-progress:test', + target: { project: '@fluentui/react-progress', target: 'test' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:test': [] }, + }, + '@fluentui/react-progress:type-check': { + roots: ['@fluentui/react-progress:type-check'], + tasks: { + '@fluentui/react-progress:type-check': { + id: '@fluentui/react-progress:type-check', + target: { project: '@fluentui/react-progress', target: 'type-check' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:type-check': [] }, + }, + '@fluentui/react-progress:storybook': { + roots: ['@fluentui/react-progress:storybook'], + tasks: { + '@fluentui/react-progress:storybook': { + id: '@fluentui/react-progress:storybook', + target: { project: '@fluentui/react-progress', target: 'storybook' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:storybook': [] }, + }, + '@fluentui/react-progress:start': { + roots: ['@fluentui/react-progress:start'], + tasks: { + '@fluentui/react-progress:start': { + id: '@fluentui/react-progress:start', + target: { project: '@fluentui/react-progress', target: 'start' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:start': [] }, + }, + '@fluentui/react-progress:generate-api': { + roots: ['@fluentui/react-progress:generate-api'], + tasks: { + '@fluentui/react-progress:generate-api': { + id: '@fluentui/react-progress:generate-api', + target: { project: '@fluentui/react-progress', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:generate-api': [] }, + }, + '@fluentui/react-progress:test-ssr': { + roots: ['@fluentui/react-progress:test-ssr'], + tasks: { + '@fluentui/react-progress:test-ssr': { + id: '@fluentui/react-progress:test-ssr', + target: { project: '@fluentui/react-progress', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-progress:test-ssr': [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-combobox:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-combobox:bundle-size': { + roots: ['@fluentui/react-combobox:bundle-size'], + tasks: { + '@fluentui/react-combobox:bundle-size': { + id: '@fluentui/react-combobox:bundle-size', + target: { project: '@fluentui/react-combobox', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:bundle-size': [] }, + }, + '@fluentui/react-combobox:clean': { + roots: ['@fluentui/react-combobox:clean'], + tasks: { + '@fluentui/react-combobox:clean': { + id: '@fluentui/react-combobox:clean', + target: { project: '@fluentui/react-combobox', target: 'clean' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:clean': [] }, + }, + '@fluentui/react-combobox:code-style': { + roots: ['@fluentui/react-combobox:code-style'], + tasks: { + '@fluentui/react-combobox:code-style': { + id: '@fluentui/react-combobox:code-style', + target: { project: '@fluentui/react-combobox', target: 'code-style' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:code-style': [] }, + }, + '@fluentui/react-combobox:just': { + roots: ['@fluentui/react-combobox:just'], + tasks: { + '@fluentui/react-combobox:just': { + id: '@fluentui/react-combobox:just', + target: { project: '@fluentui/react-combobox', target: 'just' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:just': [] }, + }, + '@fluentui/react-combobox:lint': { + roots: ['@fluentui/react-combobox:lint'], + tasks: { + '@fluentui/react-combobox:lint': { + id: '@fluentui/react-combobox:lint', + target: { project: '@fluentui/react-combobox', target: 'lint' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:lint': [] }, + }, + '@fluentui/react-combobox:start': { + roots: ['@fluentui/react-combobox:start'], + tasks: { + '@fluentui/react-combobox:start': { + id: '@fluentui/react-combobox:start', + target: { project: '@fluentui/react-combobox', target: 'start' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:start': [] }, + }, + '@fluentui/react-combobox:test': { + roots: ['@fluentui/react-combobox:test'], + tasks: { + '@fluentui/react-combobox:test': { + id: '@fluentui/react-combobox:test', + target: { project: '@fluentui/react-combobox', target: 'test' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:test': [] }, + }, + '@fluentui/react-combobox:storybook': { + roots: ['@fluentui/react-combobox:storybook'], + tasks: { + '@fluentui/react-combobox:storybook': { + id: '@fluentui/react-combobox:storybook', + target: { project: '@fluentui/react-combobox', target: 'storybook' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:storybook': [] }, + }, + '@fluentui/react-combobox:type-check': { + roots: ['@fluentui/react-combobox:type-check'], + tasks: { + '@fluentui/react-combobox:type-check': { + id: '@fluentui/react-combobox:type-check', + target: { project: '@fluentui/react-combobox', target: 'type-check' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:type-check': [] }, + }, + '@fluentui/react-combobox:generate-api': { + roots: ['@fluentui/react-combobox:generate-api'], + tasks: { + '@fluentui/react-combobox:generate-api': { + id: '@fluentui/react-combobox:generate-api', + target: { project: '@fluentui/react-combobox', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:generate-api': [] }, + }, + '@fluentui/react-combobox:test-ssr': { + roots: ['@fluentui/react-combobox:test-ssr'], + tasks: { + '@fluentui/react-combobox:test-ssr': { + id: '@fluentui/react-combobox:test-ssr', + target: { project: '@fluentui/react-combobox', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-combobox:test-ssr': [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/theme-designer:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + '@fluentui/priority-overflow:build', + '@fluentui/babel-preset-storybook-full-source:build', + ], + tasks: { + '@fluentui/theme-designer:build': { + id: '@fluentui/theme-designer:build', + target: { project: '@fluentui/theme-designer', target: 'build' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + '@fluentui/react-alert:build': { + id: '@fluentui/react-alert:build', + target: { project: '@fluentui/react-alert', target: 'build' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:build': { + id: '@fluentui/react-components:build', + target: { project: '@fluentui/react-components', target: 'build' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:build': { + id: '@fluentui/react-infobutton:build', + target: { project: '@fluentui/react-infobutton', target: 'build' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:build': { + id: '@fluentui/react-overflow:build', + target: { project: '@fluentui/react-overflow', target: 'build' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:build': { + id: '@fluentui/react-virtualizer:build', + target: { project: '@fluentui/react-virtualizer', target: 'build' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:build': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:build', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/babel-preset-storybook-full-source:build': { + id: '@fluentui/babel-preset-storybook-full-source:build', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/theme-designer:build': [ + '@fluentui/react-alert:build', + '@fluentui/react-components:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-storybook-addon-export-to-sandbox:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-alert:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-components:build': [ + '@fluentui/react-accordion:build', + '@fluentui/react-alert:build', + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-button:build', + '@fluentui/react-card:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-combobox:build', + '@fluentui/react-dialog:build', + '@fluentui/react-divider:build', + '@fluentui/react-drawer:build', + '@fluentui/react-field:build', + '@fluentui/react-image:build', + '@fluentui/react-infobutton:build', + '@fluentui/react-infolabel:build', + '@fluentui/react-input:build', + '@fluentui/react-label:build', + '@fluentui/react-link:build', + '@fluentui/react-menu:build', + '@fluentui/react-overflow:build', + '@fluentui/react-persona:build', + '@fluentui/react-portal:build', + '@fluentui/react-popover:build', + '@fluentui/react-positioning:build', + '@fluentui/react-progress:build', + '@fluentui/react-provider:build', + '@fluentui/react-radio:build', + '@fluentui/react-select:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-skeleton:build', + '@fluentui/react-slider:build', + '@fluentui/react-spinbutton:build', + '@fluentui/react-spinner:build', + '@fluentui/react-switch:build', + '@fluentui/react-table:build', + '@fluentui/react-tabs:build', + '@fluentui/react-tabster:build', + '@fluentui/react-tags:build', + '@fluentui/react-textarea:build', + '@fluentui/react-theme:build', + '@fluentui/react-toast:build', + '@fluentui/react-toolbar:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-text:build', + '@fluentui/react-virtualizer:build', + '@fluentui/react-tree:build', + '@fluentui/react-message-bar:build', + '@fluentui/react-breadcrumb:build', + ], + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infobutton:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-overflow:build': [ + '@fluentui/priority-overflow:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/priority-overflow:build': [], + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-virtualizer:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-storybook-addon-export-to-sandbox:build': [ + '@fluentui/babel-preset-storybook-full-source:build', + ], + '@fluentui/babel-preset-storybook-full-source:build': [], + }, + }, + '@fluentui/theme-designer:build-storybook': { + roots: ['@fluentui/theme-designer:build-storybook'], + tasks: { + '@fluentui/theme-designer:build-storybook': { + id: '@fluentui/theme-designer:build-storybook', + target: { project: '@fluentui/theme-designer', target: 'build-storybook' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:build-storybook': [] }, + }, + '@fluentui/theme-designer:clean': { + roots: ['@fluentui/theme-designer:clean'], + tasks: { + '@fluentui/theme-designer:clean': { + id: '@fluentui/theme-designer:clean', + target: { project: '@fluentui/theme-designer', target: 'clean' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:clean': [] }, + }, + '@fluentui/theme-designer:code-style': { + roots: ['@fluentui/theme-designer:code-style'], + tasks: { + '@fluentui/theme-designer:code-style': { + id: '@fluentui/theme-designer:code-style', + target: { project: '@fluentui/theme-designer', target: 'code-style' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:code-style': [] }, + }, + '@fluentui/theme-designer:just': { + roots: ['@fluentui/theme-designer:just'], + tasks: { + '@fluentui/theme-designer:just': { + id: '@fluentui/theme-designer:just', + target: { project: '@fluentui/theme-designer', target: 'just' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:just': [] }, + }, + '@fluentui/theme-designer:lint': { + roots: ['@fluentui/theme-designer:lint'], + tasks: { + '@fluentui/theme-designer:lint': { + id: '@fluentui/theme-designer:lint', + target: { project: '@fluentui/theme-designer', target: 'lint' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:lint': [] }, + }, + '@fluentui/theme-designer:start': { + roots: ['@fluentui/theme-designer:start'], + tasks: { + '@fluentui/theme-designer:start': { + id: '@fluentui/theme-designer:start', + target: { project: '@fluentui/theme-designer', target: 'start' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:start': [] }, + }, + '@fluentui/theme-designer:test': { + roots: ['@fluentui/theme-designer:test'], + tasks: { + '@fluentui/theme-designer:test': { + id: '@fluentui/theme-designer:test', + target: { project: '@fluentui/theme-designer', target: 'test' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:test': [] }, + }, + '@fluentui/theme-designer:storybook': { + roots: ['@fluentui/theme-designer:storybook'], + tasks: { + '@fluentui/theme-designer:storybook': { + id: '@fluentui/theme-designer:storybook', + target: { project: '@fluentui/theme-designer', target: 'storybook' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:storybook': [] }, + }, + '@fluentui/theme-designer:type-check': { + roots: ['@fluentui/theme-designer:type-check'], + tasks: { + '@fluentui/theme-designer:type-check': { + id: '@fluentui/theme-designer:type-check', + target: { project: '@fluentui/theme-designer', target: 'type-check' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:type-check': [] }, + }, + '@fluentui/theme-designer:generate-api': { + roots: ['@fluentui/theme-designer:generate-api'], + tasks: { + '@fluentui/theme-designer:generate-api': { + id: '@fluentui/theme-designer:generate-api', + target: { project: '@fluentui/theme-designer', target: 'generate-api' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:generate-api': [] }, + }, + '@fluentui/theme-designer:test-ssr': { + roots: ['@fluentui/theme-designer:test-ssr'], + tasks: { + '@fluentui/theme-designer:test-ssr': { + id: '@fluentui/theme-designer:test-ssr', + target: { project: '@fluentui/theme-designer', target: 'test-ssr' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-designer:test-ssr': [] }, + }, + '@fluentui/theme-designer:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/theme-designer:nx-release-publish': { + id: '@fluentui/theme-designer:nx-release-publish', + target: { project: '@fluentui/theme-designer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: {}, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { + id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/theme-designer:nx-release-publish': [ + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ + '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-tooltip:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-tooltip:bundle-size': { + roots: ['@fluentui/react-tooltip:bundle-size'], + tasks: { + '@fluentui/react-tooltip:bundle-size': { + id: '@fluentui/react-tooltip:bundle-size', + target: { project: '@fluentui/react-tooltip', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:bundle-size': [] }, + }, + '@fluentui/react-tooltip:clean': { + roots: ['@fluentui/react-tooltip:clean'], + tasks: { + '@fluentui/react-tooltip:clean': { + id: '@fluentui/react-tooltip:clean', + target: { project: '@fluentui/react-tooltip', target: 'clean' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:clean': [] }, + }, + '@fluentui/react-tooltip:code-style': { + roots: ['@fluentui/react-tooltip:code-style'], + tasks: { + '@fluentui/react-tooltip:code-style': { + id: '@fluentui/react-tooltip:code-style', + target: { project: '@fluentui/react-tooltip', target: 'code-style' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:code-style': [] }, + }, + '@fluentui/react-tooltip:just': { + roots: ['@fluentui/react-tooltip:just'], + tasks: { + '@fluentui/react-tooltip:just': { + id: '@fluentui/react-tooltip:just', + target: { project: '@fluentui/react-tooltip', target: 'just' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:just': [] }, + }, + '@fluentui/react-tooltip:lint': { + roots: ['@fluentui/react-tooltip:lint'], + tasks: { + '@fluentui/react-tooltip:lint': { + id: '@fluentui/react-tooltip:lint', + target: { project: '@fluentui/react-tooltip', target: 'lint' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:lint': [] }, + }, + '@fluentui/react-tooltip:start': { + roots: ['@fluentui/react-tooltip:start'], + tasks: { + '@fluentui/react-tooltip:start': { + id: '@fluentui/react-tooltip:start', + target: { project: '@fluentui/react-tooltip', target: 'start' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:start': [] }, + }, + '@fluentui/react-tooltip:test': { + roots: ['@fluentui/react-tooltip:test'], + tasks: { + '@fluentui/react-tooltip:test': { + id: '@fluentui/react-tooltip:test', + target: { project: '@fluentui/react-tooltip', target: 'test' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:test': [] }, + }, + '@fluentui/react-tooltip:storybook': { + roots: ['@fluentui/react-tooltip:storybook'], + tasks: { + '@fluentui/react-tooltip:storybook': { + id: '@fluentui/react-tooltip:storybook', + target: { project: '@fluentui/react-tooltip', target: 'storybook' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:storybook': [] }, + }, + '@fluentui/react-tooltip:type-check': { + roots: ['@fluentui/react-tooltip:type-check'], + tasks: { + '@fluentui/react-tooltip:type-check': { + id: '@fluentui/react-tooltip:type-check', + target: { project: '@fluentui/react-tooltip', target: 'type-check' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:type-check': [] }, + }, + '@fluentui/react-tooltip:generate-api': { + roots: ['@fluentui/react-tooltip:generate-api'], + tasks: { + '@fluentui/react-tooltip:generate-api': { + id: '@fluentui/react-tooltip:generate-api', + target: { project: '@fluentui/react-tooltip', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:generate-api': [] }, + }, + '@fluentui/react-tooltip:test-ssr': { + roots: ['@fluentui/react-tooltip:test-ssr'], + tasks: { + '@fluentui/react-tooltip:test-ssr': { + id: '@fluentui/react-tooltip:test-ssr', + target: { project: '@fluentui/react-tooltip', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tooltip:test-ssr': [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/keyboard-keys:build': { + roots: ['@fluentui/keyboard-keys:build'], + tasks: { + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:build': [] }, + }, + '@fluentui/keyboard-keys:clean': { + roots: ['@fluentui/keyboard-keys:clean'], + tasks: { + '@fluentui/keyboard-keys:clean': { + id: '@fluentui/keyboard-keys:clean', + target: { project: '@fluentui/keyboard-keys', target: 'clean' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:clean': [] }, + }, + '@fluentui/keyboard-keys:code-style': { + roots: ['@fluentui/keyboard-keys:code-style'], + tasks: { + '@fluentui/keyboard-keys:code-style': { + id: '@fluentui/keyboard-keys:code-style', + target: { project: '@fluentui/keyboard-keys', target: 'code-style' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:code-style': [] }, + }, + '@fluentui/keyboard-keys:just': { + roots: ['@fluentui/keyboard-keys:just'], + tasks: { + '@fluentui/keyboard-keys:just': { + id: '@fluentui/keyboard-keys:just', + target: { project: '@fluentui/keyboard-keys', target: 'just' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:just': [] }, + }, + '@fluentui/keyboard-keys:lint': { + roots: ['@fluentui/keyboard-keys:lint'], + tasks: { + '@fluentui/keyboard-keys:lint': { + id: '@fluentui/keyboard-keys:lint', + target: { project: '@fluentui/keyboard-keys', target: 'lint' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:lint': [] }, + }, + '@fluentui/keyboard-keys:test': { + roots: ['@fluentui/keyboard-keys:test'], + tasks: { + '@fluentui/keyboard-keys:test': { + id: '@fluentui/keyboard-keys:test', + target: { project: '@fluentui/keyboard-keys', target: 'test' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:test': [] }, + }, + '@fluentui/keyboard-keys:type-check': { + roots: ['@fluentui/keyboard-keys:type-check'], + tasks: { + '@fluentui/keyboard-keys:type-check': { + id: '@fluentui/keyboard-keys:type-check', + target: { project: '@fluentui/keyboard-keys', target: 'type-check' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:type-check': [] }, + }, + '@fluentui/keyboard-keys:generate-api': { + roots: ['@fluentui/keyboard-keys:generate-api'], + tasks: { + '@fluentui/keyboard-keys:generate-api': { + id: '@fluentui/keyboard-keys:generate-api', + target: { project: '@fluentui/keyboard-keys', target: 'generate-api' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:generate-api': [] }, + }, + '@fluentui/keyboard-keys:test-ssr': { + roots: ['@fluentui/keyboard-keys:test-ssr'], + tasks: { + '@fluentui/keyboard-keys:test-ssr': { + id: '@fluentui/keyboard-keys:test-ssr', + target: { project: '@fluentui/keyboard-keys', target: 'test-ssr' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-keys:test-ssr': [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-toolbar:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-toolbar:clean': { + roots: ['@fluentui/react-toolbar:clean'], + tasks: { + '@fluentui/react-toolbar:clean': { + id: '@fluentui/react-toolbar:clean', + target: { project: '@fluentui/react-toolbar', target: 'clean' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:clean': [] }, + }, + '@fluentui/react-toolbar:code-style': { + roots: ['@fluentui/react-toolbar:code-style'], + tasks: { + '@fluentui/react-toolbar:code-style': { + id: '@fluentui/react-toolbar:code-style', + target: { project: '@fluentui/react-toolbar', target: 'code-style' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:code-style': [] }, + }, + '@fluentui/react-toolbar:e2e': { + roots: ['@fluentui/react-toolbar:e2e'], + tasks: { + '@fluentui/react-toolbar:e2e': { + id: '@fluentui/react-toolbar:e2e', + target: { project: '@fluentui/react-toolbar', target: 'e2e' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:e2e': [] }, + }, + '@fluentui/react-toolbar:e2e:local': { + roots: ['@fluentui/react-toolbar:e2e:local'], + tasks: { + '@fluentui/react-toolbar:e2e:local': { + id: '@fluentui/react-toolbar:e2e:local', + target: { project: '@fluentui/react-toolbar', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:e2e:local': [] }, + }, + '@fluentui/react-toolbar:just': { + roots: ['@fluentui/react-toolbar:just'], + tasks: { + '@fluentui/react-toolbar:just': { + id: '@fluentui/react-toolbar:just', + target: { project: '@fluentui/react-toolbar', target: 'just' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:just': [] }, + }, + '@fluentui/react-toolbar:lint': { + roots: ['@fluentui/react-toolbar:lint'], + tasks: { + '@fluentui/react-toolbar:lint': { + id: '@fluentui/react-toolbar:lint', + target: { project: '@fluentui/react-toolbar', target: 'lint' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:lint': [] }, + }, + '@fluentui/react-toolbar:start': { + roots: ['@fluentui/react-toolbar:start'], + tasks: { + '@fluentui/react-toolbar:start': { + id: '@fluentui/react-toolbar:start', + target: { project: '@fluentui/react-toolbar', target: 'start' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:start': [] }, + }, + '@fluentui/react-toolbar:test': { + roots: ['@fluentui/react-toolbar:test'], + tasks: { + '@fluentui/react-toolbar:test': { + id: '@fluentui/react-toolbar:test', + target: { project: '@fluentui/react-toolbar', target: 'test' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:test': [] }, + }, + '@fluentui/react-toolbar:storybook': { + roots: ['@fluentui/react-toolbar:storybook'], + tasks: { + '@fluentui/react-toolbar:storybook': { + id: '@fluentui/react-toolbar:storybook', + target: { project: '@fluentui/react-toolbar', target: 'storybook' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:storybook': [] }, + }, + '@fluentui/react-toolbar:type-check': { + roots: ['@fluentui/react-toolbar:type-check'], + tasks: { + '@fluentui/react-toolbar:type-check': { + id: '@fluentui/react-toolbar:type-check', + target: { project: '@fluentui/react-toolbar', target: 'type-check' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:type-check': [] }, + }, + '@fluentui/react-toolbar:generate-api': { + roots: ['@fluentui/react-toolbar:generate-api'], + tasks: { + '@fluentui/react-toolbar:generate-api': { + id: '@fluentui/react-toolbar:generate-api', + target: { project: '@fluentui/react-toolbar', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:generate-api': [] }, + }, + '@fluentui/react-toolbar:test-ssr': { + roots: ['@fluentui/react-toolbar:test-ssr'], + tasks: { + '@fluentui/react-toolbar:test-ssr': { + id: '@fluentui/react-toolbar:test-ssr', + target: { project: '@fluentui/react-toolbar', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toolbar:test-ssr': [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: {}, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-popover:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-popover:bundle-size': { + roots: ['@fluentui/react-popover:bundle-size'], + tasks: { + '@fluentui/react-popover:bundle-size': { + id: '@fluentui/react-popover:bundle-size', + target: { project: '@fluentui/react-popover', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:bundle-size': [] }, + }, + '@fluentui/react-popover:clean': { + roots: ['@fluentui/react-popover:clean'], + tasks: { + '@fluentui/react-popover:clean': { + id: '@fluentui/react-popover:clean', + target: { project: '@fluentui/react-popover', target: 'clean' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:clean': [] }, + }, + '@fluentui/react-popover:code-style': { + roots: ['@fluentui/react-popover:code-style'], + tasks: { + '@fluentui/react-popover:code-style': { + id: '@fluentui/react-popover:code-style', + target: { project: '@fluentui/react-popover', target: 'code-style' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:code-style': [] }, + }, + '@fluentui/react-popover:just': { + roots: ['@fluentui/react-popover:just'], + tasks: { + '@fluentui/react-popover:just': { + id: '@fluentui/react-popover:just', + target: { project: '@fluentui/react-popover', target: 'just' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:just': [] }, + }, + '@fluentui/react-popover:lint': { + roots: ['@fluentui/react-popover:lint'], + tasks: { + '@fluentui/react-popover:lint': { + id: '@fluentui/react-popover:lint', + target: { project: '@fluentui/react-popover', target: 'lint' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:lint': [] }, + }, + '@fluentui/react-popover:start': { + roots: ['@fluentui/react-popover:start'], + tasks: { + '@fluentui/react-popover:start': { + id: '@fluentui/react-popover:start', + target: { project: '@fluentui/react-popover', target: 'start' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:start': [] }, + }, + '@fluentui/react-popover:e2e': { + roots: ['@fluentui/react-popover:e2e'], + tasks: { + '@fluentui/react-popover:e2e': { + id: '@fluentui/react-popover:e2e', + target: { project: '@fluentui/react-popover', target: 'e2e' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:e2e': [] }, + }, + '@fluentui/react-popover:e2e:local': { + roots: ['@fluentui/react-popover:e2e:local'], + tasks: { + '@fluentui/react-popover:e2e:local': { + id: '@fluentui/react-popover:e2e:local', + target: { project: '@fluentui/react-popover', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:e2e:local': [] }, + }, + '@fluentui/react-popover:storybook': { + roots: ['@fluentui/react-popover:storybook'], + tasks: { + '@fluentui/react-popover:storybook': { + id: '@fluentui/react-popover:storybook', + target: { project: '@fluentui/react-popover', target: 'storybook' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:storybook': [] }, + }, + '@fluentui/react-popover:test': { + roots: ['@fluentui/react-popover:test'], + tasks: { + '@fluentui/react-popover:test': { + id: '@fluentui/react-popover:test', + target: { project: '@fluentui/react-popover', target: 'test' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:test': [] }, + }, + '@fluentui/react-popover:type-check': { + roots: ['@fluentui/react-popover:type-check'], + tasks: { + '@fluentui/react-popover:type-check': { + id: '@fluentui/react-popover:type-check', + target: { project: '@fluentui/react-popover', target: 'type-check' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:type-check': [] }, + }, + '@fluentui/react-popover:generate-api': { + roots: ['@fluentui/react-popover:generate-api'], + tasks: { + '@fluentui/react-popover:generate-api': { + id: '@fluentui/react-popover:generate-api', + target: { project: '@fluentui/react-popover', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:generate-api': [] }, + }, + '@fluentui/react-popover:test-ssr': { + roots: ['@fluentui/react-popover:test-ssr'], + tasks: { + '@fluentui/react-popover:test-ssr': { + id: '@fluentui/react-popover:test-ssr', + target: { project: '@fluentui/react-popover', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-popover:test-ssr': [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-icons-northstar:build': { + roots: [ + '@fluentui/accessibility:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + ], + tasks: { + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: {}, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + }, + }, + '@fluentui/react-icons-northstar:clean': { + roots: ['@fluentui/react-icons-northstar:clean'], + tasks: { + '@fluentui/react-icons-northstar:clean': { + id: '@fluentui/react-icons-northstar:clean', + target: { project: '@fluentui/react-icons-northstar', target: 'clean' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-northstar:clean': [] }, + }, + '@fluentui/react-icons-northstar:lint': { + roots: ['@fluentui/react-icons-northstar:lint'], + tasks: { + '@fluentui/react-icons-northstar:lint': { + id: '@fluentui/react-icons-northstar:lint', + target: { project: '@fluentui/react-icons-northstar', target: 'lint' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-northstar:lint': [] }, + }, + '@fluentui/react-icons-northstar:lint:fix': { + roots: ['@fluentui/react-icons-northstar:lint:fix'], + tasks: { + '@fluentui/react-icons-northstar:lint:fix': { + id: '@fluentui/react-icons-northstar:lint:fix', + target: { project: '@fluentui/react-icons-northstar', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-northstar:lint:fix': [] }, + }, + '@fluentui/react-icons-northstar:test': { + roots: ['@fluentui/react-icons-northstar:test'], + tasks: { + '@fluentui/react-icons-northstar:test': { + id: '@fluentui/react-icons-northstar:test', + target: { project: '@fluentui/react-icons-northstar', target: 'test' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-northstar:test': [] }, + }, + '@fluentui/react-icons-northstar:test:watch': { + roots: ['@fluentui/react-icons-northstar:test:watch'], + tasks: { + '@fluentui/react-icons-northstar:test:watch': { + id: '@fluentui/react-icons-northstar:test:watch', + target: { project: '@fluentui/react-icons-northstar', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-northstar:test:watch': [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: {}, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + }, + }, + '@fluentui/react-divider:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-divider:bundle-size': { + roots: ['@fluentui/react-divider:bundle-size'], + tasks: { + '@fluentui/react-divider:bundle-size': { + id: '@fluentui/react-divider:bundle-size', + target: { project: '@fluentui/react-divider', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:bundle-size': [] }, + }, + '@fluentui/react-divider:clean': { + roots: ['@fluentui/react-divider:clean'], + tasks: { + '@fluentui/react-divider:clean': { + id: '@fluentui/react-divider:clean', + target: { project: '@fluentui/react-divider', target: 'clean' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:clean': [] }, + }, + '@fluentui/react-divider:code-style': { + roots: ['@fluentui/react-divider:code-style'], + tasks: { + '@fluentui/react-divider:code-style': { + id: '@fluentui/react-divider:code-style', + target: { project: '@fluentui/react-divider', target: 'code-style' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:code-style': [] }, + }, + '@fluentui/react-divider:just': { + roots: ['@fluentui/react-divider:just'], + tasks: { + '@fluentui/react-divider:just': { + id: '@fluentui/react-divider:just', + target: { project: '@fluentui/react-divider', target: 'just' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:just': [] }, + }, + '@fluentui/react-divider:lint': { + roots: ['@fluentui/react-divider:lint'], + tasks: { + '@fluentui/react-divider:lint': { + id: '@fluentui/react-divider:lint', + target: { project: '@fluentui/react-divider', target: 'lint' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:lint': [] }, + }, + '@fluentui/react-divider:start': { + roots: ['@fluentui/react-divider:start'], + tasks: { + '@fluentui/react-divider:start': { + id: '@fluentui/react-divider:start', + target: { project: '@fluentui/react-divider', target: 'start' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:start': [] }, + }, + '@fluentui/react-divider:test': { + roots: ['@fluentui/react-divider:test'], + tasks: { + '@fluentui/react-divider:test': { + id: '@fluentui/react-divider:test', + target: { project: '@fluentui/react-divider', target: 'test' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:test': [] }, + }, + '@fluentui/react-divider:storybook': { + roots: ['@fluentui/react-divider:storybook'], + tasks: { + '@fluentui/react-divider:storybook': { + id: '@fluentui/react-divider:storybook', + target: { project: '@fluentui/react-divider', target: 'storybook' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:storybook': [] }, + }, + '@fluentui/react-divider:type-check': { + roots: ['@fluentui/react-divider:type-check'], + tasks: { + '@fluentui/react-divider:type-check': { + id: '@fluentui/react-divider:type-check', + target: { project: '@fluentui/react-divider', target: 'type-check' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:type-check': [] }, + }, + '@fluentui/react-divider:generate-api': { + roots: ['@fluentui/react-divider:generate-api'], + tasks: { + '@fluentui/react-divider:generate-api': { + id: '@fluentui/react-divider:generate-api', + target: { project: '@fluentui/react-divider', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:generate-api': [] }, + }, + '@fluentui/react-divider:test-ssr': { + roots: ['@fluentui/react-divider:test-ssr'], + tasks: { + '@fluentui/react-divider:test-ssr': { + id: '@fluentui/react-divider:test-ssr', + target: { project: '@fluentui/react-divider', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-divider:test-ssr': [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-tabster:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build'], + tasks: { + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + }, + }, + '@fluentui/react-tabster:clean': { + roots: ['@fluentui/react-tabster:clean'], + tasks: { + '@fluentui/react-tabster:clean': { + id: '@fluentui/react-tabster:clean', + target: { project: '@fluentui/react-tabster', target: 'clean' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:clean': [] }, + }, + '@fluentui/react-tabster:code-style': { + roots: ['@fluentui/react-tabster:code-style'], + tasks: { + '@fluentui/react-tabster:code-style': { + id: '@fluentui/react-tabster:code-style', + target: { project: '@fluentui/react-tabster', target: 'code-style' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:code-style': [] }, + }, + '@fluentui/react-tabster:e2e': { + roots: ['@fluentui/react-tabster:e2e'], + tasks: { + '@fluentui/react-tabster:e2e': { + id: '@fluentui/react-tabster:e2e', + target: { project: '@fluentui/react-tabster', target: 'e2e' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:e2e': [] }, + }, + '@fluentui/react-tabster:e2e:local': { + roots: ['@fluentui/react-tabster:e2e:local'], + tasks: { + '@fluentui/react-tabster:e2e:local': { + id: '@fluentui/react-tabster:e2e:local', + target: { project: '@fluentui/react-tabster', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:e2e:local': [] }, + }, + '@fluentui/react-tabster:just': { + roots: ['@fluentui/react-tabster:just'], + tasks: { + '@fluentui/react-tabster:just': { + id: '@fluentui/react-tabster:just', + target: { project: '@fluentui/react-tabster', target: 'just' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:just': [] }, + }, + '@fluentui/react-tabster:lint': { + roots: ['@fluentui/react-tabster:lint'], + tasks: { + '@fluentui/react-tabster:lint': { + id: '@fluentui/react-tabster:lint', + target: { project: '@fluentui/react-tabster', target: 'lint' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:lint': [] }, + }, + '@fluentui/react-tabster:test': { + roots: ['@fluentui/react-tabster:test'], + tasks: { + '@fluentui/react-tabster:test': { + id: '@fluentui/react-tabster:test', + target: { project: '@fluentui/react-tabster', target: 'test' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:test': [] }, + }, + '@fluentui/react-tabster:type-check': { + roots: ['@fluentui/react-tabster:type-check'], + tasks: { + '@fluentui/react-tabster:type-check': { + id: '@fluentui/react-tabster:type-check', + target: { project: '@fluentui/react-tabster', target: 'type-check' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:type-check': [] }, + }, + '@fluentui/react-tabster:generate-api': { + roots: ['@fluentui/react-tabster:generate-api'], + tasks: { + '@fluentui/react-tabster:generate-api': { + id: '@fluentui/react-tabster:generate-api', + target: { project: '@fluentui/react-tabster', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:generate-api': [] }, + }, + '@fluentui/react-tabster:test-ssr': { + roots: ['@fluentui/react-tabster:test-ssr'], + tasks: { + '@fluentui/react-tabster:test-ssr': { + id: '@fluentui/react-tabster:test-ssr', + target: { project: '@fluentui/react-tabster', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabster:test-ssr': [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: {}, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-persona:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-persona:bundle-size': { + roots: ['@fluentui/react-persona:bundle-size'], + tasks: { + '@fluentui/react-persona:bundle-size': { + id: '@fluentui/react-persona:bundle-size', + target: { project: '@fluentui/react-persona', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:bundle-size': [] }, + }, + '@fluentui/react-persona:clean': { + roots: ['@fluentui/react-persona:clean'], + tasks: { + '@fluentui/react-persona:clean': { + id: '@fluentui/react-persona:clean', + target: { project: '@fluentui/react-persona', target: 'clean' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:clean': [] }, + }, + '@fluentui/react-persona:code-style': { + roots: ['@fluentui/react-persona:code-style'], + tasks: { + '@fluentui/react-persona:code-style': { + id: '@fluentui/react-persona:code-style', + target: { project: '@fluentui/react-persona', target: 'code-style' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:code-style': [] }, + }, + '@fluentui/react-persona:just': { + roots: ['@fluentui/react-persona:just'], + tasks: { + '@fluentui/react-persona:just': { + id: '@fluentui/react-persona:just', + target: { project: '@fluentui/react-persona', target: 'just' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:just': [] }, + }, + '@fluentui/react-persona:lint': { + roots: ['@fluentui/react-persona:lint'], + tasks: { + '@fluentui/react-persona:lint': { + id: '@fluentui/react-persona:lint', + target: { project: '@fluentui/react-persona', target: 'lint' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:lint': [] }, + }, + '@fluentui/react-persona:test': { + roots: ['@fluentui/react-persona:test'], + tasks: { + '@fluentui/react-persona:test': { + id: '@fluentui/react-persona:test', + target: { project: '@fluentui/react-persona', target: 'test' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:test': [] }, + }, + '@fluentui/react-persona:type-check': { + roots: ['@fluentui/react-persona:type-check'], + tasks: { + '@fluentui/react-persona:type-check': { + id: '@fluentui/react-persona:type-check', + target: { project: '@fluentui/react-persona', target: 'type-check' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:type-check': [] }, + }, + '@fluentui/react-persona:storybook': { + roots: ['@fluentui/react-persona:storybook'], + tasks: { + '@fluentui/react-persona:storybook': { + id: '@fluentui/react-persona:storybook', + target: { project: '@fluentui/react-persona', target: 'storybook' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:storybook': [] }, + }, + '@fluentui/react-persona:start': { + roots: ['@fluentui/react-persona:start'], + tasks: { + '@fluentui/react-persona:start': { + id: '@fluentui/react-persona:start', + target: { project: '@fluentui/react-persona', target: 'start' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:start': [] }, + }, + '@fluentui/react-persona:generate-api': { + roots: ['@fluentui/react-persona:generate-api'], + tasks: { + '@fluentui/react-persona:generate-api': { + id: '@fluentui/react-persona:generate-api', + target: { project: '@fluentui/react-persona', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:generate-api': [] }, + }, + '@fluentui/react-persona:test-ssr': { + roots: ['@fluentui/react-persona:test-ssr'], + tasks: { + '@fluentui/react-persona:test-ssr': { + id: '@fluentui/react-persona:test-ssr', + target: { project: '@fluentui/react-persona', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-persona:test-ssr': [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: {}, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-spinner:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-spinner:bundle-size': { + roots: ['@fluentui/react-spinner:bundle-size'], + tasks: { + '@fluentui/react-spinner:bundle-size': { + id: '@fluentui/react-spinner:bundle-size', + target: { project: '@fluentui/react-spinner', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:bundle-size': [] }, + }, + '@fluentui/react-spinner:clean': { + roots: ['@fluentui/react-spinner:clean'], + tasks: { + '@fluentui/react-spinner:clean': { + id: '@fluentui/react-spinner:clean', + target: { project: '@fluentui/react-spinner', target: 'clean' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:clean': [] }, + }, + '@fluentui/react-spinner:code-style': { + roots: ['@fluentui/react-spinner:code-style'], + tasks: { + '@fluentui/react-spinner:code-style': { + id: '@fluentui/react-spinner:code-style', + target: { project: '@fluentui/react-spinner', target: 'code-style' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:code-style': [] }, + }, + '@fluentui/react-spinner:just': { + roots: ['@fluentui/react-spinner:just'], + tasks: { + '@fluentui/react-spinner:just': { + id: '@fluentui/react-spinner:just', + target: { project: '@fluentui/react-spinner', target: 'just' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:just': [] }, + }, + '@fluentui/react-spinner:lint': { + roots: ['@fluentui/react-spinner:lint'], + tasks: { + '@fluentui/react-spinner:lint': { + id: '@fluentui/react-spinner:lint', + target: { project: '@fluentui/react-spinner', target: 'lint' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:lint': [] }, + }, + '@fluentui/react-spinner:start': { + roots: ['@fluentui/react-spinner:start'], + tasks: { + '@fluentui/react-spinner:start': { + id: '@fluentui/react-spinner:start', + target: { project: '@fluentui/react-spinner', target: 'start' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:start': [] }, + }, + '@fluentui/react-spinner:test': { + roots: ['@fluentui/react-spinner:test'], + tasks: { + '@fluentui/react-spinner:test': { + id: '@fluentui/react-spinner:test', + target: { project: '@fluentui/react-spinner', target: 'test' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:test': [] }, + }, + '@fluentui/react-spinner:storybook': { + roots: ['@fluentui/react-spinner:storybook'], + tasks: { + '@fluentui/react-spinner:storybook': { + id: '@fluentui/react-spinner:storybook', + target: { project: '@fluentui/react-spinner', target: 'storybook' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:storybook': [] }, + }, + '@fluentui/react-spinner:type-check': { + roots: ['@fluentui/react-spinner:type-check'], + tasks: { + '@fluentui/react-spinner:type-check': { + id: '@fluentui/react-spinner:type-check', + target: { project: '@fluentui/react-spinner', target: 'type-check' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:type-check': [] }, + }, + '@fluentui/react-spinner:generate-api': { + roots: ['@fluentui/react-spinner:generate-api'], + tasks: { + '@fluentui/react-spinner:generate-api': { + id: '@fluentui/react-spinner:generate-api', + target: { project: '@fluentui/react-spinner', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:generate-api': [] }, + }, + '@fluentui/react-spinner:test-ssr': { + roots: ['@fluentui/react-spinner:test-ssr'], + tasks: { + '@fluentui/react-spinner:test-ssr': { + id: '@fluentui/react-spinner:test-ssr', + target: { project: '@fluentui/react-spinner', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-spinner:test-ssr': [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-drawer:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-drawer:clean': { + roots: ['@fluentui/react-drawer:clean'], + tasks: { + '@fluentui/react-drawer:clean': { + id: '@fluentui/react-drawer:clean', + target: { project: '@fluentui/react-drawer', target: 'clean' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:clean': [] }, + }, + '@fluentui/react-drawer:code-style': { + roots: ['@fluentui/react-drawer:code-style'], + tasks: { + '@fluentui/react-drawer:code-style': { + id: '@fluentui/react-drawer:code-style', + target: { project: '@fluentui/react-drawer', target: 'code-style' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:code-style': [] }, + }, + '@fluentui/react-drawer:e2e': { + roots: ['@fluentui/react-drawer:e2e'], + tasks: { + '@fluentui/react-drawer:e2e': { + id: '@fluentui/react-drawer:e2e', + target: { project: '@fluentui/react-drawer', target: 'e2e' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:e2e': [] }, + }, + '@fluentui/react-drawer:e2e:local': { + roots: ['@fluentui/react-drawer:e2e:local'], + tasks: { + '@fluentui/react-drawer:e2e:local': { + id: '@fluentui/react-drawer:e2e:local', + target: { project: '@fluentui/react-drawer', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:e2e:local': [] }, + }, + '@fluentui/react-drawer:just': { + roots: ['@fluentui/react-drawer:just'], + tasks: { + '@fluentui/react-drawer:just': { + id: '@fluentui/react-drawer:just', + target: { project: '@fluentui/react-drawer', target: 'just' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:just': [] }, + }, + '@fluentui/react-drawer:lint': { + roots: ['@fluentui/react-drawer:lint'], + tasks: { + '@fluentui/react-drawer:lint': { + id: '@fluentui/react-drawer:lint', + target: { project: '@fluentui/react-drawer', target: 'lint' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:lint': [] }, + }, + '@fluentui/react-drawer:test': { + roots: ['@fluentui/react-drawer:test'], + tasks: { + '@fluentui/react-drawer:test': { + id: '@fluentui/react-drawer:test', + target: { project: '@fluentui/react-drawer', target: 'test' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:test': [] }, + }, + '@fluentui/react-drawer:type-check': { + roots: ['@fluentui/react-drawer:type-check'], + tasks: { + '@fluentui/react-drawer:type-check': { + id: '@fluentui/react-drawer:type-check', + target: { project: '@fluentui/react-drawer', target: 'type-check' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:type-check': [] }, + }, + '@fluentui/react-drawer:generate-api': { + roots: ['@fluentui/react-drawer:generate-api'], + tasks: { + '@fluentui/react-drawer:generate-api': { + id: '@fluentui/react-drawer:generate-api', + target: { project: '@fluentui/react-drawer', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:generate-api': [] }, + }, + '@fluentui/react-drawer:storybook': { + roots: ['@fluentui/react-drawer:storybook'], + tasks: { + '@fluentui/react-drawer:storybook': { + id: '@fluentui/react-drawer:storybook', + target: { project: '@fluentui/react-drawer', target: 'storybook' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:storybook': [] }, + }, + '@fluentui/react-drawer:start': { + roots: ['@fluentui/react-drawer:start'], + tasks: { + '@fluentui/react-drawer:start': { + id: '@fluentui/react-drawer:start', + target: { project: '@fluentui/react-drawer', target: 'start' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:start': [] }, + }, + '@fluentui/react-drawer:test-ssr': { + roots: ['@fluentui/react-drawer:test-ssr'], + tasks: { + '@fluentui/react-drawer:test-ssr': { + id: '@fluentui/react-drawer:test-ssr', + target: { project: '@fluentui/react-drawer', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-drawer:test-ssr': [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: {}, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-button:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/a11y-testing:build': [], + }, + }, + '@fluentui/react-button:bundle-size': { + roots: ['@fluentui/react-button:bundle-size'], + tasks: { + '@fluentui/react-button:bundle-size': { + id: '@fluentui/react-button:bundle-size', + target: { project: '@fluentui/react-button', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:bundle-size': [] }, + }, + '@fluentui/react-button:clean': { + roots: ['@fluentui/react-button:clean'], + tasks: { + '@fluentui/react-button:clean': { + id: '@fluentui/react-button:clean', + target: { project: '@fluentui/react-button', target: 'clean' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:clean': [] }, + }, + '@fluentui/react-button:code-style': { + roots: ['@fluentui/react-button:code-style'], + tasks: { + '@fluentui/react-button:code-style': { + id: '@fluentui/react-button:code-style', + target: { project: '@fluentui/react-button', target: 'code-style' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:code-style': [] }, + }, + '@fluentui/react-button:just': { + roots: ['@fluentui/react-button:just'], + tasks: { + '@fluentui/react-button:just': { + id: '@fluentui/react-button:just', + target: { project: '@fluentui/react-button', target: 'just' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:just': [] }, + }, + '@fluentui/react-button:lint': { + roots: ['@fluentui/react-button:lint'], + tasks: { + '@fluentui/react-button:lint': { + id: '@fluentui/react-button:lint', + target: { project: '@fluentui/react-button', target: 'lint' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:lint': [] }, + }, + '@fluentui/react-button:start': { + roots: ['@fluentui/react-button:start'], + tasks: { + '@fluentui/react-button:start': { + id: '@fluentui/react-button:start', + target: { project: '@fluentui/react-button', target: 'start' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:start': [] }, + }, + '@fluentui/react-button:test': { + roots: ['@fluentui/react-button:test'], + tasks: { + '@fluentui/react-button:test': { + id: '@fluentui/react-button:test', + target: { project: '@fluentui/react-button', target: 'test' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:test': [] }, + }, + '@fluentui/react-button:storybook': { + roots: ['@fluentui/react-button:storybook'], + tasks: { + '@fluentui/react-button:storybook': { + id: '@fluentui/react-button:storybook', + target: { project: '@fluentui/react-button', target: 'storybook' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:storybook': [] }, + }, + '@fluentui/react-button:type-check': { + roots: ['@fluentui/react-button:type-check'], + tasks: { + '@fluentui/react-button:type-check': { + id: '@fluentui/react-button:type-check', + target: { project: '@fluentui/react-button', target: 'type-check' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:type-check': [] }, + }, + '@fluentui/react-button:generate-api': { + roots: ['@fluentui/react-button:generate-api'], + tasks: { + '@fluentui/react-button:generate-api': { + id: '@fluentui/react-button:generate-api', + target: { project: '@fluentui/react-button', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:generate-api': [] }, + }, + '@fluentui/react-button:test-ssr': { + roots: ['@fluentui/react-button:test-ssr'], + tasks: { + '@fluentui/react-button:test-ssr': { + id: '@fluentui/react-button:test-ssr', + target: { project: '@fluentui/react-button', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-button:test-ssr': [] }, + }, + '@fluentui/react-button:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-slider:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-slider:bundle-size': { + roots: ['@fluentui/react-slider:bundle-size'], + tasks: { + '@fluentui/react-slider:bundle-size': { + id: '@fluentui/react-slider:bundle-size', + target: { project: '@fluentui/react-slider', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:bundle-size': [] }, + }, + '@fluentui/react-slider:clean': { + roots: ['@fluentui/react-slider:clean'], + tasks: { + '@fluentui/react-slider:clean': { + id: '@fluentui/react-slider:clean', + target: { project: '@fluentui/react-slider', target: 'clean' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:clean': [] }, + }, + '@fluentui/react-slider:code-style': { + roots: ['@fluentui/react-slider:code-style'], + tasks: { + '@fluentui/react-slider:code-style': { + id: '@fluentui/react-slider:code-style', + target: { project: '@fluentui/react-slider', target: 'code-style' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:code-style': [] }, + }, + '@fluentui/react-slider:just': { + roots: ['@fluentui/react-slider:just'], + tasks: { + '@fluentui/react-slider:just': { + id: '@fluentui/react-slider:just', + target: { project: '@fluentui/react-slider', target: 'just' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:just': [] }, + }, + '@fluentui/react-slider:lint': { + roots: ['@fluentui/react-slider:lint'], + tasks: { + '@fluentui/react-slider:lint': { + id: '@fluentui/react-slider:lint', + target: { project: '@fluentui/react-slider', target: 'lint' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:lint': [] }, + }, + '@fluentui/react-slider:start': { + roots: ['@fluentui/react-slider:start'], + tasks: { + '@fluentui/react-slider:start': { + id: '@fluentui/react-slider:start', + target: { project: '@fluentui/react-slider', target: 'start' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:start': [] }, + }, + '@fluentui/react-slider:test': { + roots: ['@fluentui/react-slider:test'], + tasks: { + '@fluentui/react-slider:test': { + id: '@fluentui/react-slider:test', + target: { project: '@fluentui/react-slider', target: 'test' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:test': [] }, + }, + '@fluentui/react-slider:storybook': { + roots: ['@fluentui/react-slider:storybook'], + tasks: { + '@fluentui/react-slider:storybook': { + id: '@fluentui/react-slider:storybook', + target: { project: '@fluentui/react-slider', target: 'storybook' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:storybook': [] }, + }, + '@fluentui/react-slider:type-check': { + roots: ['@fluentui/react-slider:type-check'], + tasks: { + '@fluentui/react-slider:type-check': { + id: '@fluentui/react-slider:type-check', + target: { project: '@fluentui/react-slider', target: 'type-check' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:type-check': [] }, + }, + '@fluentui/react-slider:generate-api': { + roots: ['@fluentui/react-slider:generate-api'], + tasks: { + '@fluentui/react-slider:generate-api': { + id: '@fluentui/react-slider:generate-api', + target: { project: '@fluentui/react-slider', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:generate-api': [] }, + }, + '@fluentui/react-slider:test-ssr': { + roots: ['@fluentui/react-slider:test-ssr'], + tasks: { + '@fluentui/react-slider:test-ssr': { + id: '@fluentui/react-slider:test-ssr', + target: { project: '@fluentui/react-slider', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-slider:test-ssr': [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-select:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-select:bundle-size': { + roots: ['@fluentui/react-select:bundle-size'], + tasks: { + '@fluentui/react-select:bundle-size': { + id: '@fluentui/react-select:bundle-size', + target: { project: '@fluentui/react-select', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:bundle-size': [] }, + }, + '@fluentui/react-select:clean': { + roots: ['@fluentui/react-select:clean'], + tasks: { + '@fluentui/react-select:clean': { + id: '@fluentui/react-select:clean', + target: { project: '@fluentui/react-select', target: 'clean' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:clean': [] }, + }, + '@fluentui/react-select:code-style': { + roots: ['@fluentui/react-select:code-style'], + tasks: { + '@fluentui/react-select:code-style': { + id: '@fluentui/react-select:code-style', + target: { project: '@fluentui/react-select', target: 'code-style' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:code-style': [] }, + }, + '@fluentui/react-select:just': { + roots: ['@fluentui/react-select:just'], + tasks: { + '@fluentui/react-select:just': { + id: '@fluentui/react-select:just', + target: { project: '@fluentui/react-select', target: 'just' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:just': [] }, + }, + '@fluentui/react-select:lint': { + roots: ['@fluentui/react-select:lint'], + tasks: { + '@fluentui/react-select:lint': { + id: '@fluentui/react-select:lint', + target: { project: '@fluentui/react-select', target: 'lint' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:lint': [] }, + }, + '@fluentui/react-select:start': { + roots: ['@fluentui/react-select:start'], + tasks: { + '@fluentui/react-select:start': { + id: '@fluentui/react-select:start', + target: { project: '@fluentui/react-select', target: 'start' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:start': [] }, + }, + '@fluentui/react-select:test': { + roots: ['@fluentui/react-select:test'], + tasks: { + '@fluentui/react-select:test': { + id: '@fluentui/react-select:test', + target: { project: '@fluentui/react-select', target: 'test' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:test': [] }, + }, + '@fluentui/react-select:storybook': { + roots: ['@fluentui/react-select:storybook'], + tasks: { + '@fluentui/react-select:storybook': { + id: '@fluentui/react-select:storybook', + target: { project: '@fluentui/react-select', target: 'storybook' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:storybook': [] }, + }, + '@fluentui/react-select:type-check': { + roots: ['@fluentui/react-select:type-check'], + tasks: { + '@fluentui/react-select:type-check': { + id: '@fluentui/react-select:type-check', + target: { project: '@fluentui/react-select', target: 'type-check' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:type-check': [] }, + }, + '@fluentui/react-select:generate-api': { + roots: ['@fluentui/react-select:generate-api'], + tasks: { + '@fluentui/react-select:generate-api': { + id: '@fluentui/react-select:generate-api', + target: { project: '@fluentui/react-select', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:generate-api': [] }, + }, + '@fluentui/react-select:test-ssr': { + roots: ['@fluentui/react-select:test-ssr'], + tasks: { + '@fluentui/react-select:test-ssr': { + id: '@fluentui/react-select:test-ssr', + target: { project: '@fluentui/react-select', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-select:test-ssr': [] }, + }, + '@fluentui/react-select:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-switch:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-switch:bundle-size': { + roots: ['@fluentui/react-switch:bundle-size'], + tasks: { + '@fluentui/react-switch:bundle-size': { + id: '@fluentui/react-switch:bundle-size', + target: { project: '@fluentui/react-switch', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:bundle-size': [] }, + }, + '@fluentui/react-switch:clean': { + roots: ['@fluentui/react-switch:clean'], + tasks: { + '@fluentui/react-switch:clean': { + id: '@fluentui/react-switch:clean', + target: { project: '@fluentui/react-switch', target: 'clean' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:clean': [] }, + }, + '@fluentui/react-switch:code-style': { + roots: ['@fluentui/react-switch:code-style'], + tasks: { + '@fluentui/react-switch:code-style': { + id: '@fluentui/react-switch:code-style', + target: { project: '@fluentui/react-switch', target: 'code-style' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:code-style': [] }, + }, + '@fluentui/react-switch:just': { + roots: ['@fluentui/react-switch:just'], + tasks: { + '@fluentui/react-switch:just': { + id: '@fluentui/react-switch:just', + target: { project: '@fluentui/react-switch', target: 'just' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:just': [] }, + }, + '@fluentui/react-switch:lint': { + roots: ['@fluentui/react-switch:lint'], + tasks: { + '@fluentui/react-switch:lint': { + id: '@fluentui/react-switch:lint', + target: { project: '@fluentui/react-switch', target: 'lint' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:lint': [] }, + }, + '@fluentui/react-switch:start': { + roots: ['@fluentui/react-switch:start'], + tasks: { + '@fluentui/react-switch:start': { + id: '@fluentui/react-switch:start', + target: { project: '@fluentui/react-switch', target: 'start' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:start': [] }, + }, + '@fluentui/react-switch:test': { + roots: ['@fluentui/react-switch:test'], + tasks: { + '@fluentui/react-switch:test': { + id: '@fluentui/react-switch:test', + target: { project: '@fluentui/react-switch', target: 'test' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:test': [] }, + }, + '@fluentui/react-switch:storybook': { + roots: ['@fluentui/react-switch:storybook'], + tasks: { + '@fluentui/react-switch:storybook': { + id: '@fluentui/react-switch:storybook', + target: { project: '@fluentui/react-switch', target: 'storybook' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:storybook': [] }, + }, + '@fluentui/react-switch:type-check': { + roots: ['@fluentui/react-switch:type-check'], + tasks: { + '@fluentui/react-switch:type-check': { + id: '@fluentui/react-switch:type-check', + target: { project: '@fluentui/react-switch', target: 'type-check' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:type-check': [] }, + }, + '@fluentui/react-switch:generate-api': { + roots: ['@fluentui/react-switch:generate-api'], + tasks: { + '@fluentui/react-switch:generate-api': { + id: '@fluentui/react-switch:generate-api', + target: { project: '@fluentui/react-switch', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:generate-api': [] }, + }, + '@fluentui/react-switch:test-ssr': { + roots: ['@fluentui/react-switch:test-ssr'], + tasks: { + '@fluentui/react-switch:test-ssr': { + id: '@fluentui/react-switch:test-ssr', + target: { project: '@fluentui/react-switch', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-switch:test-ssr': [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-dialog:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + }, + }, + '@fluentui/react-dialog:clean': { + roots: ['@fluentui/react-dialog:clean'], + tasks: { + '@fluentui/react-dialog:clean': { + id: '@fluentui/react-dialog:clean', + target: { project: '@fluentui/react-dialog', target: 'clean' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:clean': [] }, + }, + '@fluentui/react-dialog:code-style': { + roots: ['@fluentui/react-dialog:code-style'], + tasks: { + '@fluentui/react-dialog:code-style': { + id: '@fluentui/react-dialog:code-style', + target: { project: '@fluentui/react-dialog', target: 'code-style' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:code-style': [] }, + }, + '@fluentui/react-dialog:bundle-size': { + roots: ['@fluentui/react-dialog:bundle-size'], + tasks: { + '@fluentui/react-dialog:bundle-size': { + id: '@fluentui/react-dialog:bundle-size', + target: { project: '@fluentui/react-dialog', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:bundle-size': [] }, + }, + '@fluentui/react-dialog:just': { + roots: ['@fluentui/react-dialog:just'], + tasks: { + '@fluentui/react-dialog:just': { + id: '@fluentui/react-dialog:just', + target: { project: '@fluentui/react-dialog', target: 'just' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:just': [] }, + }, + '@fluentui/react-dialog:lint': { + roots: ['@fluentui/react-dialog:lint'], + tasks: { + '@fluentui/react-dialog:lint': { + id: '@fluentui/react-dialog:lint', + target: { project: '@fluentui/react-dialog', target: 'lint' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:lint': [] }, + }, + '@fluentui/react-dialog:start': { + roots: ['@fluentui/react-dialog:start'], + tasks: { + '@fluentui/react-dialog:start': { + id: '@fluentui/react-dialog:start', + target: { project: '@fluentui/react-dialog', target: 'start' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:start': [] }, + }, + '@fluentui/react-dialog:test': { + roots: ['@fluentui/react-dialog:test'], + tasks: { + '@fluentui/react-dialog:test': { + id: '@fluentui/react-dialog:test', + target: { project: '@fluentui/react-dialog', target: 'test' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:test': [] }, + }, + '@fluentui/react-dialog:e2e': { + roots: ['@fluentui/react-dialog:e2e'], + tasks: { + '@fluentui/react-dialog:e2e': { + id: '@fluentui/react-dialog:e2e', + target: { project: '@fluentui/react-dialog', target: 'e2e' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:e2e': [] }, + }, + '@fluentui/react-dialog:e2e:local': { + roots: ['@fluentui/react-dialog:e2e:local'], + tasks: { + '@fluentui/react-dialog:e2e:local': { + id: '@fluentui/react-dialog:e2e:local', + target: { project: '@fluentui/react-dialog', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:e2e:local': [] }, + }, + '@fluentui/react-dialog:storybook': { + roots: ['@fluentui/react-dialog:storybook'], + tasks: { + '@fluentui/react-dialog:storybook': { + id: '@fluentui/react-dialog:storybook', + target: { project: '@fluentui/react-dialog', target: 'storybook' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:storybook': [] }, + }, + '@fluentui/react-dialog:type-check': { + roots: ['@fluentui/react-dialog:type-check'], + tasks: { + '@fluentui/react-dialog:type-check': { + id: '@fluentui/react-dialog:type-check', + target: { project: '@fluentui/react-dialog', target: 'type-check' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:type-check': [] }, + }, + '@fluentui/react-dialog:generate-api': { + roots: ['@fluentui/react-dialog:generate-api'], + tasks: { + '@fluentui/react-dialog:generate-api': { + id: '@fluentui/react-dialog:generate-api', + target: { project: '@fluentui/react-dialog', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:generate-api': [] }, + }, + '@fluentui/react-dialog:test-ssr': { + roots: ['@fluentui/react-dialog:test-ssr'], + tasks: { + '@fluentui/react-dialog:test-ssr': { + id: '@fluentui/react-dialog:test-ssr', + target: { project: '@fluentui/react-dialog', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-dialog:test-ssr': [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: {}, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-avatar:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-avatar:bundle-size': { + roots: ['@fluentui/react-avatar:bundle-size'], + tasks: { + '@fluentui/react-avatar:bundle-size': { + id: '@fluentui/react-avatar:bundle-size', + target: { project: '@fluentui/react-avatar', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:bundle-size': [] }, + }, + '@fluentui/react-avatar:clean': { + roots: ['@fluentui/react-avatar:clean'], + tasks: { + '@fluentui/react-avatar:clean': { + id: '@fluentui/react-avatar:clean', + target: { project: '@fluentui/react-avatar', target: 'clean' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:clean': [] }, + }, + '@fluentui/react-avatar:code-style': { + roots: ['@fluentui/react-avatar:code-style'], + tasks: { + '@fluentui/react-avatar:code-style': { + id: '@fluentui/react-avatar:code-style', + target: { project: '@fluentui/react-avatar', target: 'code-style' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:code-style': [] }, + }, + '@fluentui/react-avatar:just': { + roots: ['@fluentui/react-avatar:just'], + tasks: { + '@fluentui/react-avatar:just': { + id: '@fluentui/react-avatar:just', + target: { project: '@fluentui/react-avatar', target: 'just' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:just': [] }, + }, + '@fluentui/react-avatar:lint': { + roots: ['@fluentui/react-avatar:lint'], + tasks: { + '@fluentui/react-avatar:lint': { + id: '@fluentui/react-avatar:lint', + target: { project: '@fluentui/react-avatar', target: 'lint' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:lint': [] }, + }, + '@fluentui/react-avatar:start': { + roots: ['@fluentui/react-avatar:start'], + tasks: { + '@fluentui/react-avatar:start': { + id: '@fluentui/react-avatar:start', + target: { project: '@fluentui/react-avatar', target: 'start' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:start': [] }, + }, + '@fluentui/react-avatar:e2e': { + roots: ['@fluentui/react-avatar:e2e'], + tasks: { + '@fluentui/react-avatar:e2e': { + id: '@fluentui/react-avatar:e2e', + target: { project: '@fluentui/react-avatar', target: 'e2e' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:e2e': [] }, + }, + '@fluentui/react-avatar:e2e:local': { + roots: ['@fluentui/react-avatar:e2e:local'], + tasks: { + '@fluentui/react-avatar:e2e:local': { + id: '@fluentui/react-avatar:e2e:local', + target: { project: '@fluentui/react-avatar', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:e2e:local': [] }, + }, + '@fluentui/react-avatar:test': { + roots: ['@fluentui/react-avatar:test'], + tasks: { + '@fluentui/react-avatar:test': { + id: '@fluentui/react-avatar:test', + target: { project: '@fluentui/react-avatar', target: 'test' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:test': [] }, + }, + '@fluentui/react-avatar:storybook': { + roots: ['@fluentui/react-avatar:storybook'], + tasks: { + '@fluentui/react-avatar:storybook': { + id: '@fluentui/react-avatar:storybook', + target: { project: '@fluentui/react-avatar', target: 'storybook' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:storybook': [] }, + }, + '@fluentui/react-avatar:type-check': { + roots: ['@fluentui/react-avatar:type-check'], + tasks: { + '@fluentui/react-avatar:type-check': { + id: '@fluentui/react-avatar:type-check', + target: { project: '@fluentui/react-avatar', target: 'type-check' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:type-check': [] }, + }, + '@fluentui/react-avatar:generate-api': { + roots: ['@fluentui/react-avatar:generate-api'], + tasks: { + '@fluentui/react-avatar:generate-api': { + id: '@fluentui/react-avatar:generate-api', + target: { project: '@fluentui/react-avatar', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:generate-api': [] }, + }, + '@fluentui/react-avatar:test-ssr': { + roots: ['@fluentui/react-avatar:test-ssr'], + tasks: { + '@fluentui/react-avatar:test-ssr': { + id: '@fluentui/react-avatar:test-ssr', + target: { project: '@fluentui/react-avatar', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-avatar:test-ssr': [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: {}, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-portal:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/react-portal:bundle-size': { + roots: ['@fluentui/react-portal:bundle-size'], + tasks: { + '@fluentui/react-portal:bundle-size': { + id: '@fluentui/react-portal:bundle-size', + target: { project: '@fluentui/react-portal', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:bundle-size': [] }, + }, + '@fluentui/react-portal:clean': { + roots: ['@fluentui/react-portal:clean'], + tasks: { + '@fluentui/react-portal:clean': { + id: '@fluentui/react-portal:clean', + target: { project: '@fluentui/react-portal', target: 'clean' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:clean': [] }, + }, + '@fluentui/react-portal:code-style': { + roots: ['@fluentui/react-portal:code-style'], + tasks: { + '@fluentui/react-portal:code-style': { + id: '@fluentui/react-portal:code-style', + target: { project: '@fluentui/react-portal', target: 'code-style' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:code-style': [] }, + }, + '@fluentui/react-portal:just': { + roots: ['@fluentui/react-portal:just'], + tasks: { + '@fluentui/react-portal:just': { + id: '@fluentui/react-portal:just', + target: { project: '@fluentui/react-portal', target: 'just' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:just': [] }, + }, + '@fluentui/react-portal:lint': { + roots: ['@fluentui/react-portal:lint'], + tasks: { + '@fluentui/react-portal:lint': { + id: '@fluentui/react-portal:lint', + target: { project: '@fluentui/react-portal', target: 'lint' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:lint': [] }, + }, + '@fluentui/react-portal:start': { + roots: ['@fluentui/react-portal:start'], + tasks: { + '@fluentui/react-portal:start': { + id: '@fluentui/react-portal:start', + target: { project: '@fluentui/react-portal', target: 'start' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:start': [] }, + }, + '@fluentui/react-portal:test': { + roots: ['@fluentui/react-portal:test'], + tasks: { + '@fluentui/react-portal:test': { + id: '@fluentui/react-portal:test', + target: { project: '@fluentui/react-portal', target: 'test' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:test': [] }, + }, + '@fluentui/react-portal:storybook': { + roots: ['@fluentui/react-portal:storybook'], + tasks: { + '@fluentui/react-portal:storybook': { + id: '@fluentui/react-portal:storybook', + target: { project: '@fluentui/react-portal', target: 'storybook' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:storybook': [] }, + }, + '@fluentui/react-portal:type-check': { + roots: ['@fluentui/react-portal:type-check'], + tasks: { + '@fluentui/react-portal:type-check': { + id: '@fluentui/react-portal:type-check', + target: { project: '@fluentui/react-portal', target: 'type-check' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:type-check': [] }, + }, + '@fluentui/react-portal:generate-api': { + roots: ['@fluentui/react-portal:generate-api'], + tasks: { + '@fluentui/react-portal:generate-api': { + id: '@fluentui/react-portal:generate-api', + target: { project: '@fluentui/react-portal', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:generate-api': [] }, + }, + '@fluentui/react-portal:test-ssr': { + roots: ['@fluentui/react-portal:test-ssr'], + tasks: { + '@fluentui/react-portal:test-ssr': { + id: '@fluentui/react-portal:test-ssr', + target: { project: '@fluentui/react-portal', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-portal:test-ssr': [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: {}, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-table:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-table:bundle-size': { + roots: ['@fluentui/react-table:bundle-size'], + tasks: { + '@fluentui/react-table:bundle-size': { + id: '@fluentui/react-table:bundle-size', + target: { project: '@fluentui/react-table', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:bundle-size': [] }, + }, + '@fluentui/react-table:clean': { + roots: ['@fluentui/react-table:clean'], + tasks: { + '@fluentui/react-table:clean': { + id: '@fluentui/react-table:clean', + target: { project: '@fluentui/react-table', target: 'clean' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:clean': [] }, + }, + '@fluentui/react-table:code-style': { + roots: ['@fluentui/react-table:code-style'], + tasks: { + '@fluentui/react-table:code-style': { + id: '@fluentui/react-table:code-style', + target: { project: '@fluentui/react-table', target: 'code-style' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:code-style': [] }, + }, + '@fluentui/react-table:e2e': { + roots: ['@fluentui/react-table:e2e'], + tasks: { + '@fluentui/react-table:e2e': { + id: '@fluentui/react-table:e2e', + target: { project: '@fluentui/react-table', target: 'e2e' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:e2e': [] }, + }, + '@fluentui/react-table:e2e:local': { + roots: ['@fluentui/react-table:e2e:local'], + tasks: { + '@fluentui/react-table:e2e:local': { + id: '@fluentui/react-table:e2e:local', + target: { project: '@fluentui/react-table', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:e2e:local': [] }, + }, + '@fluentui/react-table:just': { + roots: ['@fluentui/react-table:just'], + tasks: { + '@fluentui/react-table:just': { + id: '@fluentui/react-table:just', + target: { project: '@fluentui/react-table', target: 'just' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:just': [] }, + }, + '@fluentui/react-table:lint': { + roots: ['@fluentui/react-table:lint'], + tasks: { + '@fluentui/react-table:lint': { + id: '@fluentui/react-table:lint', + target: { project: '@fluentui/react-table', target: 'lint' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:lint': [] }, + }, + '@fluentui/react-table:test': { + roots: ['@fluentui/react-table:test'], + tasks: { + '@fluentui/react-table:test': { + id: '@fluentui/react-table:test', + target: { project: '@fluentui/react-table', target: 'test' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:test': [] }, + }, + '@fluentui/react-table:type-check': { + roots: ['@fluentui/react-table:type-check'], + tasks: { + '@fluentui/react-table:type-check': { + id: '@fluentui/react-table:type-check', + target: { project: '@fluentui/react-table', target: 'type-check' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:type-check': [] }, + }, + '@fluentui/react-table:storybook': { + roots: ['@fluentui/react-table:storybook'], + tasks: { + '@fluentui/react-table:storybook': { + id: '@fluentui/react-table:storybook', + target: { project: '@fluentui/react-table', target: 'storybook' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:storybook': [] }, + }, + '@fluentui/react-table:start': { + roots: ['@fluentui/react-table:start'], + tasks: { + '@fluentui/react-table:start': { + id: '@fluentui/react-table:start', + target: { project: '@fluentui/react-table', target: 'start' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:start': [] }, + }, + '@fluentui/react-table:generate-api': { + roots: ['@fluentui/react-table:generate-api'], + tasks: { + '@fluentui/react-table:generate-api': { + id: '@fluentui/react-table:generate-api', + target: { project: '@fluentui/react-table', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:generate-api': [] }, + }, + '@fluentui/react-table:test-ssr': { + roots: ['@fluentui/react-table:test-ssr'], + tasks: { + '@fluentui/react-table:test-ssr': { + id: '@fluentui/react-table:test-ssr', + target: { project: '@fluentui/react-table', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-table:test-ssr': [] }, + }, + '@fluentui/react-table:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-badge:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-badge:bundle-size': { + roots: ['@fluentui/react-badge:bundle-size'], + tasks: { + '@fluentui/react-badge:bundle-size': { + id: '@fluentui/react-badge:bundle-size', + target: { project: '@fluentui/react-badge', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:bundle-size': [] }, + }, + '@fluentui/react-badge:clean': { + roots: ['@fluentui/react-badge:clean'], + tasks: { + '@fluentui/react-badge:clean': { + id: '@fluentui/react-badge:clean', + target: { project: '@fluentui/react-badge', target: 'clean' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:clean': [] }, + }, + '@fluentui/react-badge:code-style': { + roots: ['@fluentui/react-badge:code-style'], + tasks: { + '@fluentui/react-badge:code-style': { + id: '@fluentui/react-badge:code-style', + target: { project: '@fluentui/react-badge', target: 'code-style' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:code-style': [] }, + }, + '@fluentui/react-badge:just': { + roots: ['@fluentui/react-badge:just'], + tasks: { + '@fluentui/react-badge:just': { + id: '@fluentui/react-badge:just', + target: { project: '@fluentui/react-badge', target: 'just' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:just': [] }, + }, + '@fluentui/react-badge:lint': { + roots: ['@fluentui/react-badge:lint'], + tasks: { + '@fluentui/react-badge:lint': { + id: '@fluentui/react-badge:lint', + target: { project: '@fluentui/react-badge', target: 'lint' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:lint': [] }, + }, + '@fluentui/react-badge:start': { + roots: ['@fluentui/react-badge:start'], + tasks: { + '@fluentui/react-badge:start': { + id: '@fluentui/react-badge:start', + target: { project: '@fluentui/react-badge', target: 'start' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:start': [] }, + }, + '@fluentui/react-badge:test': { + roots: ['@fluentui/react-badge:test'], + tasks: { + '@fluentui/react-badge:test': { + id: '@fluentui/react-badge:test', + target: { project: '@fluentui/react-badge', target: 'test' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:test': [] }, + }, + '@fluentui/react-badge:storybook': { + roots: ['@fluentui/react-badge:storybook'], + tasks: { + '@fluentui/react-badge:storybook': { + id: '@fluentui/react-badge:storybook', + target: { project: '@fluentui/react-badge', target: 'storybook' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:storybook': [] }, + }, + '@fluentui/react-badge:type-check': { + roots: ['@fluentui/react-badge:type-check'], + tasks: { + '@fluentui/react-badge:type-check': { + id: '@fluentui/react-badge:type-check', + target: { project: '@fluentui/react-badge', target: 'type-check' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:type-check': [] }, + }, + '@fluentui/react-badge:generate-api': { + roots: ['@fluentui/react-badge:generate-api'], + tasks: { + '@fluentui/react-badge:generate-api': { + id: '@fluentui/react-badge:generate-api', + target: { project: '@fluentui/react-badge', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:generate-api': [] }, + }, + '@fluentui/react-badge:test-ssr': { + roots: ['@fluentui/react-badge:test-ssr'], + tasks: { + '@fluentui/react-badge:test-ssr': { + id: '@fluentui/react-badge:test-ssr', + target: { project: '@fluentui/react-badge', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-badge:test-ssr': [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: {}, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/perf-test-northstar:type-check': { + roots: ['@fluentui/perf-test-northstar:type-check'], + tasks: { + '@fluentui/perf-test-northstar:type-check': { + id: '@fluentui/perf-test-northstar:type-check', + target: { project: '@fluentui/perf-test-northstar', target: 'type-check' }, + projectRoot: 'packages/fluentui/perf-test-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-northstar:type-check': [] }, + }, + '@fluentui/perf-test-northstar:bundle': { + roots: ['@fluentui/perf-test-northstar:bundle'], + tasks: { + '@fluentui/perf-test-northstar:bundle': { + id: '@fluentui/perf-test-northstar:bundle', + target: { project: '@fluentui/perf-test-northstar', target: 'bundle' }, + projectRoot: 'packages/fluentui/perf-test-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-northstar:bundle': [] }, + }, + '@fluentui/perf-test-northstar:clean': { + roots: ['@fluentui/perf-test-northstar:clean'], + tasks: { + '@fluentui/perf-test-northstar:clean': { + id: '@fluentui/perf-test-northstar:clean', + target: { project: '@fluentui/perf-test-northstar', target: 'clean' }, + projectRoot: 'packages/fluentui/perf-test-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-northstar:clean': [] }, + }, + '@fluentui/perf-test-northstar:test': { + roots: ['@fluentui/perf-test-northstar:test'], + tasks: { + '@fluentui/perf-test-northstar:test': { + id: '@fluentui/perf-test-northstar:test', + target: { project: '@fluentui/perf-test-northstar', target: 'test' }, + projectRoot: 'packages/fluentui/perf-test-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-northstar:test': [] }, + }, + '@fluentui/perf-test-northstar:perf:test': { + roots: ['@fluentui/perf-test-northstar:perf:test'], + tasks: { + '@fluentui/perf-test-northstar:perf:test': { + id: '@fluentui/perf-test-northstar:perf:test', + target: { project: '@fluentui/perf-test-northstar', target: 'perf:test' }, + projectRoot: 'packages/fluentui/perf-test-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-northstar:perf:test': [] }, + }, + '@fluentui/perf-test-northstar:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/digest:nx-release-publish', + ], + tasks: { + '@fluentui/perf-test-northstar:nx-release-publish': { + id: '@fluentui/perf-test-northstar:nx-release-publish', + target: { project: '@fluentui/perf-test-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/perf-test-northstar', + overrides: {}, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-prototypes:nx-release-publish': { + id: '@fluentui/react-northstar-prototypes:nx-release-publish', + target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:nx-release-publish': { + id: '@fluentui/code-sandbox:nx-release-publish', + target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:nx-release-publish': { + id: '@fluentui/docs-components:nx-release-publish', + target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/digest:nx-release-publish': { + id: '@fluentui/digest:nx-release-publish', + target: { project: '@fluentui/digest', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/digest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/perf-test-northstar:nx-release-publish': [ + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/react-northstar-prototypes:nx-release-publish', + '@fluentui/digest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-northstar-prototypes:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/code-sandbox:nx-release-publish': [ + '@fluentui/docs-components:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/docs-components:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/digest:nx-release-publish': [], + }, + }, + '@fluentui/react-field:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-field:bundle-size': { + roots: ['@fluentui/react-field:bundle-size'], + tasks: { + '@fluentui/react-field:bundle-size': { + id: '@fluentui/react-field:bundle-size', + target: { project: '@fluentui/react-field', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:bundle-size': [] }, + }, + '@fluentui/react-field:clean': { + roots: ['@fluentui/react-field:clean'], + tasks: { + '@fluentui/react-field:clean': { + id: '@fluentui/react-field:clean', + target: { project: '@fluentui/react-field', target: 'clean' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:clean': [] }, + }, + '@fluentui/react-field:code-style': { + roots: ['@fluentui/react-field:code-style'], + tasks: { + '@fluentui/react-field:code-style': { + id: '@fluentui/react-field:code-style', + target: { project: '@fluentui/react-field', target: 'code-style' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:code-style': [] }, + }, + '@fluentui/react-field:just': { + roots: ['@fluentui/react-field:just'], + tasks: { + '@fluentui/react-field:just': { + id: '@fluentui/react-field:just', + target: { project: '@fluentui/react-field', target: 'just' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:just': [] }, + }, + '@fluentui/react-field:lint': { + roots: ['@fluentui/react-field:lint'], + tasks: { + '@fluentui/react-field:lint': { + id: '@fluentui/react-field:lint', + target: { project: '@fluentui/react-field', target: 'lint' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:lint': [] }, + }, + '@fluentui/react-field:start': { + roots: ['@fluentui/react-field:start'], + tasks: { + '@fluentui/react-field:start': { + id: '@fluentui/react-field:start', + target: { project: '@fluentui/react-field', target: 'start' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:start': [] }, + }, + '@fluentui/react-field:storybook': { + roots: ['@fluentui/react-field:storybook'], + tasks: { + '@fluentui/react-field:storybook': { + id: '@fluentui/react-field:storybook', + target: { project: '@fluentui/react-field', target: 'storybook' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:storybook': [] }, + }, + '@fluentui/react-field:test': { + roots: ['@fluentui/react-field:test'], + tasks: { + '@fluentui/react-field:test': { + id: '@fluentui/react-field:test', + target: { project: '@fluentui/react-field', target: 'test' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:test': [] }, + }, + '@fluentui/react-field:type-check': { + roots: ['@fluentui/react-field:type-check'], + tasks: { + '@fluentui/react-field:type-check': { + id: '@fluentui/react-field:type-check', + target: { project: '@fluentui/react-field', target: 'type-check' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:type-check': [] }, + }, + '@fluentui/react-field:generate-api': { + roots: ['@fluentui/react-field:generate-api'], + tasks: { + '@fluentui/react-field:generate-api': { + id: '@fluentui/react-field:generate-api', + target: { project: '@fluentui/react-field', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:generate-api': [] }, + }, + '@fluentui/react-field:test-ssr': { + roots: ['@fluentui/react-field:test-ssr'], + tasks: { + '@fluentui/react-field:test-ssr': { + id: '@fluentui/react-field:test-ssr', + target: { project: '@fluentui/react-field', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-field:test-ssr': [] }, + }, + '@fluentui/react-field:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: {}, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-theme:build': { + roots: ['@fluentui/tokens:build'], + tasks: { + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { '@fluentui/react-theme:build': ['@fluentui/tokens:build'], '@fluentui/tokens:build': [] }, + }, + '@fluentui/react-theme:bundle-size': { + roots: ['@fluentui/react-theme:bundle-size'], + tasks: { + '@fluentui/react-theme:bundle-size': { + id: '@fluentui/react-theme:bundle-size', + target: { project: '@fluentui/react-theme', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:bundle-size': [] }, + }, + '@fluentui/react-theme:clean': { + roots: ['@fluentui/react-theme:clean'], + tasks: { + '@fluentui/react-theme:clean': { + id: '@fluentui/react-theme:clean', + target: { project: '@fluentui/react-theme', target: 'clean' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:clean': [] }, + }, + '@fluentui/react-theme:code-style': { + roots: ['@fluentui/react-theme:code-style'], + tasks: { + '@fluentui/react-theme:code-style': { + id: '@fluentui/react-theme:code-style', + target: { project: '@fluentui/react-theme', target: 'code-style' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:code-style': [] }, + }, + '@fluentui/react-theme:just': { + roots: ['@fluentui/react-theme:just'], + tasks: { + '@fluentui/react-theme:just': { + id: '@fluentui/react-theme:just', + target: { project: '@fluentui/react-theme', target: 'just' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:just': [] }, + }, + '@fluentui/react-theme:lint': { + roots: ['@fluentui/react-theme:lint'], + tasks: { + '@fluentui/react-theme:lint': { + id: '@fluentui/react-theme:lint', + target: { project: '@fluentui/react-theme', target: 'lint' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:lint': [] }, + }, + '@fluentui/react-theme:start': { + roots: ['@fluentui/react-theme:start'], + tasks: { + '@fluentui/react-theme:start': { + id: '@fluentui/react-theme:start', + target: { project: '@fluentui/react-theme', target: 'start' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:start': [] }, + }, + '@fluentui/react-theme:storybook': { + roots: ['@fluentui/react-theme:storybook'], + tasks: { + '@fluentui/react-theme:storybook': { + id: '@fluentui/react-theme:storybook', + target: { project: '@fluentui/react-theme', target: 'storybook' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:storybook': [] }, + }, + '@fluentui/react-theme:test': { + roots: ['@fluentui/react-theme:test'], + tasks: { + '@fluentui/react-theme:test': { + id: '@fluentui/react-theme:test', + target: { project: '@fluentui/react-theme', target: 'test' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:test': [] }, + }, + '@fluentui/react-theme:type-check': { + roots: ['@fluentui/react-theme:type-check'], + tasks: { + '@fluentui/react-theme:type-check': { + id: '@fluentui/react-theme:type-check', + target: { project: '@fluentui/react-theme', target: 'type-check' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:type-check': [] }, + }, + '@fluentui/react-theme:generate-api': { + roots: ['@fluentui/react-theme:generate-api'], + tasks: { + '@fluentui/react-theme:generate-api': { + id: '@fluentui/react-theme:generate-api', + target: { project: '@fluentui/react-theme', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-theme:generate-api': [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: {}, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-alert:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-alert:build': { + id: '@fluentui/react-alert:build', + target: { project: '@fluentui/react-alert', target: 'build' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-alert:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + }, + }, + '@fluentui/react-alert:bundle-size': { + roots: ['@fluentui/react-alert:bundle-size'], + tasks: { + '@fluentui/react-alert:bundle-size': { + id: '@fluentui/react-alert:bundle-size', + target: { project: '@fluentui/react-alert', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:bundle-size': [] }, + }, + '@fluentui/react-alert:clean': { + roots: ['@fluentui/react-alert:clean'], + tasks: { + '@fluentui/react-alert:clean': { + id: '@fluentui/react-alert:clean', + target: { project: '@fluentui/react-alert', target: 'clean' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:clean': [] }, + }, + '@fluentui/react-alert:code-style': { + roots: ['@fluentui/react-alert:code-style'], + tasks: { + '@fluentui/react-alert:code-style': { + id: '@fluentui/react-alert:code-style', + target: { project: '@fluentui/react-alert', target: 'code-style' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:code-style': [] }, + }, + '@fluentui/react-alert:just': { + roots: ['@fluentui/react-alert:just'], + tasks: { + '@fluentui/react-alert:just': { + id: '@fluentui/react-alert:just', + target: { project: '@fluentui/react-alert', target: 'just' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:just': [] }, + }, + '@fluentui/react-alert:lint': { + roots: ['@fluentui/react-alert:lint'], + tasks: { + '@fluentui/react-alert:lint': { + id: '@fluentui/react-alert:lint', + target: { project: '@fluentui/react-alert', target: 'lint' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:lint': [] }, + }, + '@fluentui/react-alert:start': { + roots: ['@fluentui/react-alert:start'], + tasks: { + '@fluentui/react-alert:start': { + id: '@fluentui/react-alert:start', + target: { project: '@fluentui/react-alert', target: 'start' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:start': [] }, + }, + '@fluentui/react-alert:test': { + roots: ['@fluentui/react-alert:test'], + tasks: { + '@fluentui/react-alert:test': { + id: '@fluentui/react-alert:test', + target: { project: '@fluentui/react-alert', target: 'test' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:test': [] }, + }, + '@fluentui/react-alert:storybook': { + roots: ['@fluentui/react-alert:storybook'], + tasks: { + '@fluentui/react-alert:storybook': { + id: '@fluentui/react-alert:storybook', + target: { project: '@fluentui/react-alert', target: 'storybook' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:storybook': [] }, + }, + '@fluentui/react-alert:type-check': { + roots: ['@fluentui/react-alert:type-check'], + tasks: { + '@fluentui/react-alert:type-check': { + id: '@fluentui/react-alert:type-check', + target: { project: '@fluentui/react-alert', target: 'type-check' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:type-check': [] }, + }, + '@fluentui/react-alert:generate-api': { + roots: ['@fluentui/react-alert:generate-api'], + tasks: { + '@fluentui/react-alert:generate-api': { + id: '@fluentui/react-alert:generate-api', + target: { project: '@fluentui/react-alert', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:generate-api': [] }, + }, + '@fluentui/react-alert:test-ssr': { + roots: ['@fluentui/react-alert:test-ssr'], + tasks: { + '@fluentui/react-alert:test-ssr': { + id: '@fluentui/react-alert:test-ssr', + target: { project: '@fluentui/react-alert', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-alert:test-ssr': [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: {}, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-label:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-label:bundle-size': { + roots: ['@fluentui/react-label:bundle-size'], + tasks: { + '@fluentui/react-label:bundle-size': { + id: '@fluentui/react-label:bundle-size', + target: { project: '@fluentui/react-label', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:bundle-size': [] }, + }, + '@fluentui/react-label:clean': { + roots: ['@fluentui/react-label:clean'], + tasks: { + '@fluentui/react-label:clean': { + id: '@fluentui/react-label:clean', + target: { project: '@fluentui/react-label', target: 'clean' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:clean': [] }, + }, + '@fluentui/react-label:code-style': { + roots: ['@fluentui/react-label:code-style'], + tasks: { + '@fluentui/react-label:code-style': { + id: '@fluentui/react-label:code-style', + target: { project: '@fluentui/react-label', target: 'code-style' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:code-style': [] }, + }, + '@fluentui/react-label:just': { + roots: ['@fluentui/react-label:just'], + tasks: { + '@fluentui/react-label:just': { + id: '@fluentui/react-label:just', + target: { project: '@fluentui/react-label', target: 'just' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:just': [] }, + }, + '@fluentui/react-label:lint': { + roots: ['@fluentui/react-label:lint'], + tasks: { + '@fluentui/react-label:lint': { + id: '@fluentui/react-label:lint', + target: { project: '@fluentui/react-label', target: 'lint' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:lint': [] }, + }, + '@fluentui/react-label:start': { + roots: ['@fluentui/react-label:start'], + tasks: { + '@fluentui/react-label:start': { + id: '@fluentui/react-label:start', + target: { project: '@fluentui/react-label', target: 'start' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:start': [] }, + }, + '@fluentui/react-label:test': { + roots: ['@fluentui/react-label:test'], + tasks: { + '@fluentui/react-label:test': { + id: '@fluentui/react-label:test', + target: { project: '@fluentui/react-label', target: 'test' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:test': [] }, + }, + '@fluentui/react-label:storybook': { + roots: ['@fluentui/react-label:storybook'], + tasks: { + '@fluentui/react-label:storybook': { + id: '@fluentui/react-label:storybook', + target: { project: '@fluentui/react-label', target: 'storybook' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:storybook': [] }, + }, + '@fluentui/react-label:type-check': { + roots: ['@fluentui/react-label:type-check'], + tasks: { + '@fluentui/react-label:type-check': { + id: '@fluentui/react-label:type-check', + target: { project: '@fluentui/react-label', target: 'type-check' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:type-check': [] }, + }, + '@fluentui/react-label:generate-api': { + roots: ['@fluentui/react-label:generate-api'], + tasks: { + '@fluentui/react-label:generate-api': { + id: '@fluentui/react-label:generate-api', + target: { project: '@fluentui/react-label', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:generate-api': [] }, + }, + '@fluentui/react-label:test-ssr': { + roots: ['@fluentui/react-label:test-ssr'], + tasks: { + '@fluentui/react-label:test-ssr': { + id: '@fluentui/react-label:test-ssr', + target: { project: '@fluentui/react-label', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-label:test-ssr': [] }, + }, + '@fluentui/react-label:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: {}, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-toast:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-toast:bundle-size': { + roots: ['@fluentui/react-toast:bundle-size'], + tasks: { + '@fluentui/react-toast:bundle-size': { + id: '@fluentui/react-toast:bundle-size', + target: { project: '@fluentui/react-toast', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:bundle-size': [] }, + }, + '@fluentui/react-toast:clean': { + roots: ['@fluentui/react-toast:clean'], + tasks: { + '@fluentui/react-toast:clean': { + id: '@fluentui/react-toast:clean', + target: { project: '@fluentui/react-toast', target: 'clean' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:clean': [] }, + }, + '@fluentui/react-toast:code-style': { + roots: ['@fluentui/react-toast:code-style'], + tasks: { + '@fluentui/react-toast:code-style': { + id: '@fluentui/react-toast:code-style', + target: { project: '@fluentui/react-toast', target: 'code-style' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:code-style': [] }, + }, + '@fluentui/react-toast:just': { + roots: ['@fluentui/react-toast:just'], + tasks: { + '@fluentui/react-toast:just': { + id: '@fluentui/react-toast:just', + target: { project: '@fluentui/react-toast', target: 'just' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:just': [] }, + }, + '@fluentui/react-toast:lint': { + roots: ['@fluentui/react-toast:lint'], + tasks: { + '@fluentui/react-toast:lint': { + id: '@fluentui/react-toast:lint', + target: { project: '@fluentui/react-toast', target: 'lint' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:lint': [] }, + }, + '@fluentui/react-toast:test': { + roots: ['@fluentui/react-toast:test'], + tasks: { + '@fluentui/react-toast:test': { + id: '@fluentui/react-toast:test', + target: { project: '@fluentui/react-toast', target: 'test' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:test': [] }, + }, + '@fluentui/react-toast:test-ssr': { + roots: ['@fluentui/react-toast:test-ssr'], + tasks: { + '@fluentui/react-toast:test-ssr': { + id: '@fluentui/react-toast:test-ssr', + target: { project: '@fluentui/react-toast', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:test-ssr': [] }, + }, + '@fluentui/react-toast:type-check': { + roots: ['@fluentui/react-toast:type-check'], + tasks: { + '@fluentui/react-toast:type-check': { + id: '@fluentui/react-toast:type-check', + target: { project: '@fluentui/react-toast', target: 'type-check' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:type-check': [] }, + }, + '@fluentui/react-toast:generate-api': { + roots: ['@fluentui/react-toast:generate-api'], + tasks: { + '@fluentui/react-toast:generate-api': { + id: '@fluentui/react-toast:generate-api', + target: { project: '@fluentui/react-toast', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:generate-api': [] }, + }, + '@fluentui/react-toast:storybook': { + roots: ['@fluentui/react-toast:storybook'], + tasks: { + '@fluentui/react-toast:storybook': { + id: '@fluentui/react-toast:storybook', + target: { project: '@fluentui/react-toast', target: 'storybook' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:storybook': [] }, + }, + '@fluentui/react-toast:start': { + roots: ['@fluentui/react-toast:start'], + tasks: { + '@fluentui/react-toast:start': { + id: '@fluentui/react-toast:start', + target: { project: '@fluentui/react-toast', target: 'start' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:start': [] }, + }, + '@fluentui/react-toast:e2e': { + roots: ['@fluentui/react-toast:e2e'], + tasks: { + '@fluentui/react-toast:e2e': { + id: '@fluentui/react-toast:e2e', + target: { project: '@fluentui/react-toast', target: 'e2e' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:e2e': [] }, + }, + '@fluentui/react-toast:e2e:local': { + roots: ['@fluentui/react-toast:e2e:local'], + tasks: { + '@fluentui/react-toast:e2e:local': { + id: '@fluentui/react-toast:e2e:local', + target: { project: '@fluentui/react-toast', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-toast:e2e:local': [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-input:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-input:bundle-size': { + roots: ['@fluentui/react-input:bundle-size'], + tasks: { + '@fluentui/react-input:bundle-size': { + id: '@fluentui/react-input:bundle-size', + target: { project: '@fluentui/react-input', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:bundle-size': [] }, + }, + '@fluentui/react-input:clean': { + roots: ['@fluentui/react-input:clean'], + tasks: { + '@fluentui/react-input:clean': { + id: '@fluentui/react-input:clean', + target: { project: '@fluentui/react-input', target: 'clean' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:clean': [] }, + }, + '@fluentui/react-input:code-style': { + roots: ['@fluentui/react-input:code-style'], + tasks: { + '@fluentui/react-input:code-style': { + id: '@fluentui/react-input:code-style', + target: { project: '@fluentui/react-input', target: 'code-style' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:code-style': [] }, + }, + '@fluentui/react-input:just': { + roots: ['@fluentui/react-input:just'], + tasks: { + '@fluentui/react-input:just': { + id: '@fluentui/react-input:just', + target: { project: '@fluentui/react-input', target: 'just' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:just': [] }, + }, + '@fluentui/react-input:lint': { + roots: ['@fluentui/react-input:lint'], + tasks: { + '@fluentui/react-input:lint': { + id: '@fluentui/react-input:lint', + target: { project: '@fluentui/react-input', target: 'lint' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:lint': [] }, + }, + '@fluentui/react-input:start': { + roots: ['@fluentui/react-input:start'], + tasks: { + '@fluentui/react-input:start': { + id: '@fluentui/react-input:start', + target: { project: '@fluentui/react-input', target: 'start' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:start': [] }, + }, + '@fluentui/react-input:test': { + roots: ['@fluentui/react-input:test'], + tasks: { + '@fluentui/react-input:test': { + id: '@fluentui/react-input:test', + target: { project: '@fluentui/react-input', target: 'test' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:test': [] }, + }, + '@fluentui/react-input:storybook': { + roots: ['@fluentui/react-input:storybook'], + tasks: { + '@fluentui/react-input:storybook': { + id: '@fluentui/react-input:storybook', + target: { project: '@fluentui/react-input', target: 'storybook' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:storybook': [] }, + }, + '@fluentui/react-input:type-check': { + roots: ['@fluentui/react-input:type-check'], + tasks: { + '@fluentui/react-input:type-check': { + id: '@fluentui/react-input:type-check', + target: { project: '@fluentui/react-input', target: 'type-check' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:type-check': [] }, + }, + '@fluentui/react-input:generate-api': { + roots: ['@fluentui/react-input:generate-api'], + tasks: { + '@fluentui/react-input:generate-api': { + id: '@fluentui/react-input:generate-api', + target: { project: '@fluentui/react-input', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:generate-api': [] }, + }, + '@fluentui/react-input:test-ssr': { + roots: ['@fluentui/react-input:test-ssr'], + tasks: { + '@fluentui/react-input:test-ssr': { + id: '@fluentui/react-input:test-ssr', + target: { project: '@fluentui/react-input', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-input:test-ssr': [] }, + }, + '@fluentui/react-input:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-image:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-image:bundle-size': { + roots: ['@fluentui/react-image:bundle-size'], + tasks: { + '@fluentui/react-image:bundle-size': { + id: '@fluentui/react-image:bundle-size', + target: { project: '@fluentui/react-image', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:bundle-size': [] }, + }, + '@fluentui/react-image:clean': { + roots: ['@fluentui/react-image:clean'], + tasks: { + '@fluentui/react-image:clean': { + id: '@fluentui/react-image:clean', + target: { project: '@fluentui/react-image', target: 'clean' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:clean': [] }, + }, + '@fluentui/react-image:code-style': { + roots: ['@fluentui/react-image:code-style'], + tasks: { + '@fluentui/react-image:code-style': { + id: '@fluentui/react-image:code-style', + target: { project: '@fluentui/react-image', target: 'code-style' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:code-style': [] }, + }, + '@fluentui/react-image:just': { + roots: ['@fluentui/react-image:just'], + tasks: { + '@fluentui/react-image:just': { + id: '@fluentui/react-image:just', + target: { project: '@fluentui/react-image', target: 'just' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:just': [] }, + }, + '@fluentui/react-image:lint': { + roots: ['@fluentui/react-image:lint'], + tasks: { + '@fluentui/react-image:lint': { + id: '@fluentui/react-image:lint', + target: { project: '@fluentui/react-image', target: 'lint' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:lint': [] }, + }, + '@fluentui/react-image:start': { + roots: ['@fluentui/react-image:start'], + tasks: { + '@fluentui/react-image:start': { + id: '@fluentui/react-image:start', + target: { project: '@fluentui/react-image', target: 'start' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:start': [] }, + }, + '@fluentui/react-image:test': { + roots: ['@fluentui/react-image:test'], + tasks: { + '@fluentui/react-image:test': { + id: '@fluentui/react-image:test', + target: { project: '@fluentui/react-image', target: 'test' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:test': [] }, + }, + '@fluentui/react-image:storybook': { + roots: ['@fluentui/react-image:storybook'], + tasks: { + '@fluentui/react-image:storybook': { + id: '@fluentui/react-image:storybook', + target: { project: '@fluentui/react-image', target: 'storybook' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:storybook': [] }, + }, + '@fluentui/react-image:type-check': { + roots: ['@fluentui/react-image:type-check'], + tasks: { + '@fluentui/react-image:type-check': { + id: '@fluentui/react-image:type-check', + target: { project: '@fluentui/react-image', target: 'type-check' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:type-check': [] }, + }, + '@fluentui/react-image:generate-api': { + roots: ['@fluentui/react-image:generate-api'], + tasks: { + '@fluentui/react-image:generate-api': { + id: '@fluentui/react-image:generate-api', + target: { project: '@fluentui/react-image', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:generate-api': [] }, + }, + '@fluentui/react-image:test-ssr': { + roots: ['@fluentui/react-image:test-ssr'], + tasks: { + '@fluentui/react-image:test-ssr': { + id: '@fluentui/react-image:test-ssr', + target: { project: '@fluentui/react-image', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-image:test-ssr': [] }, + }, + '@fluentui/react-image:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: {}, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-component-ref:build': { + roots: ['@fluentui/react-component-ref:build'], + tasks: { + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-ref:build': [] }, + }, + '@fluentui/react-component-ref:build:info': { + roots: ['@fluentui/react-component-ref:build:info'], + tasks: { + '@fluentui/react-component-ref:build:info': { + id: '@fluentui/react-component-ref:build:info', + target: { project: '@fluentui/react-component-ref', target: 'build:info' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-ref:build:info': [] }, + }, + '@fluentui/react-component-ref:clean': { + roots: ['@fluentui/react-component-ref:clean'], + tasks: { + '@fluentui/react-component-ref:clean': { + id: '@fluentui/react-component-ref:clean', + target: { project: '@fluentui/react-component-ref', target: 'clean' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-ref:clean': [] }, + }, + '@fluentui/react-component-ref:lint': { + roots: ['@fluentui/react-component-ref:lint'], + tasks: { + '@fluentui/react-component-ref:lint': { + id: '@fluentui/react-component-ref:lint', + target: { project: '@fluentui/react-component-ref', target: 'lint' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-ref:lint': [] }, + }, + '@fluentui/react-component-ref:lint:fix': { + roots: ['@fluentui/react-component-ref:lint:fix'], + tasks: { + '@fluentui/react-component-ref:lint:fix': { + id: '@fluentui/react-component-ref:lint:fix', + target: { project: '@fluentui/react-component-ref', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-ref:lint:fix': [] }, + }, + '@fluentui/react-component-ref:test': { + roots: ['@fluentui/react-component-ref:test'], + tasks: { + '@fluentui/react-component-ref:test': { + id: '@fluentui/react-component-ref:test', + target: { project: '@fluentui/react-component-ref', target: 'test' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-ref:test': [] }, + }, + '@fluentui/react-component-ref:test:watch': { + roots: ['@fluentui/react-component-ref:test:watch'], + tasks: { + '@fluentui/react-component-ref:test:watch': { + id: '@fluentui/react-component-ref:test:watch', + target: { project: '@fluentui/react-component-ref', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-component-ref:test:watch': [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + roots: ['@fluentui/set-version:build'], + tasks: { + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: {}, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + }, + }, + '@fluentui/jest-serializer-merge-styles:lint': { + roots: ['@fluentui/jest-serializer-merge-styles:lint'], + tasks: { + '@fluentui/jest-serializer-merge-styles:lint': { + id: '@fluentui/jest-serializer-merge-styles:lint', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'lint' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/jest-serializer-merge-styles:lint': [] }, + }, + '@fluentui/jest-serializer-merge-styles:test': { + roots: ['@fluentui/jest-serializer-merge-styles:test'], + tasks: { + '@fluentui/jest-serializer-merge-styles:test': { + id: '@fluentui/jest-serializer-merge-styles:test', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'test' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/jest-serializer-merge-styles:test': [] }, + }, + '@fluentui/jest-serializer-merge-styles:just': { + roots: ['@fluentui/jest-serializer-merge-styles:just'], + tasks: { + '@fluentui/jest-serializer-merge-styles:just': { + id: '@fluentui/jest-serializer-merge-styles:just', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'just' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/jest-serializer-merge-styles:just': [] }, + }, + '@fluentui/jest-serializer-merge-styles:clean': { + roots: ['@fluentui/jest-serializer-merge-styles:clean'], + tasks: { + '@fluentui/jest-serializer-merge-styles:clean': { + id: '@fluentui/jest-serializer-merge-styles:clean', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'clean' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/jest-serializer-merge-styles:clean': [] }, + }, + '@fluentui/jest-serializer-merge-styles:code-style': { + roots: ['@fluentui/jest-serializer-merge-styles:code-style'], + tasks: { + '@fluentui/jest-serializer-merge-styles:code-style': { + id: '@fluentui/jest-serializer-merge-styles:code-style', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'code-style' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/jest-serializer-merge-styles:code-style': [] }, + }, + '@fluentui/jest-serializer-merge-styles:start-test': { + roots: ['@fluentui/jest-serializer-merge-styles:start-test'], + tasks: { + '@fluentui/jest-serializer-merge-styles:start-test': { + id: '@fluentui/jest-serializer-merge-styles:start-test', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'start-test' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/jest-serializer-merge-styles:start-test': [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: {}, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-radio:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-radio:bundle-size': { + roots: ['@fluentui/react-radio:bundle-size'], + tasks: { + '@fluentui/react-radio:bundle-size': { + id: '@fluentui/react-radio:bundle-size', + target: { project: '@fluentui/react-radio', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:bundle-size': [] }, + }, + '@fluentui/react-radio:clean': { + roots: ['@fluentui/react-radio:clean'], + tasks: { + '@fluentui/react-radio:clean': { + id: '@fluentui/react-radio:clean', + target: { project: '@fluentui/react-radio', target: 'clean' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:clean': [] }, + }, + '@fluentui/react-radio:code-style': { + roots: ['@fluentui/react-radio:code-style'], + tasks: { + '@fluentui/react-radio:code-style': { + id: '@fluentui/react-radio:code-style', + target: { project: '@fluentui/react-radio', target: 'code-style' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:code-style': [] }, + }, + '@fluentui/react-radio:just': { + roots: ['@fluentui/react-radio:just'], + tasks: { + '@fluentui/react-radio:just': { + id: '@fluentui/react-radio:just', + target: { project: '@fluentui/react-radio', target: 'just' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:just': [] }, + }, + '@fluentui/react-radio:lint': { + roots: ['@fluentui/react-radio:lint'], + tasks: { + '@fluentui/react-radio:lint': { + id: '@fluentui/react-radio:lint', + target: { project: '@fluentui/react-radio', target: 'lint' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:lint': [] }, + }, + '@fluentui/react-radio:start': { + roots: ['@fluentui/react-radio:start'], + tasks: { + '@fluentui/react-radio:start': { + id: '@fluentui/react-radio:start', + target: { project: '@fluentui/react-radio', target: 'start' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:start': [] }, + }, + '@fluentui/react-radio:test': { + roots: ['@fluentui/react-radio:test'], + tasks: { + '@fluentui/react-radio:test': { + id: '@fluentui/react-radio:test', + target: { project: '@fluentui/react-radio', target: 'test' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:test': [] }, + }, + '@fluentui/react-radio:storybook': { + roots: ['@fluentui/react-radio:storybook'], + tasks: { + '@fluentui/react-radio:storybook': { + id: '@fluentui/react-radio:storybook', + target: { project: '@fluentui/react-radio', target: 'storybook' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:storybook': [] }, + }, + '@fluentui/react-radio:type-check': { + roots: ['@fluentui/react-radio:type-check'], + tasks: { + '@fluentui/react-radio:type-check': { + id: '@fluentui/react-radio:type-check', + target: { project: '@fluentui/react-radio', target: 'type-check' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:type-check': [] }, + }, + '@fluentui/react-radio:generate-api': { + roots: ['@fluentui/react-radio:generate-api'], + tasks: { + '@fluentui/react-radio:generate-api': { + id: '@fluentui/react-radio:generate-api', + target: { project: '@fluentui/react-radio', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:generate-api': [] }, + }, + '@fluentui/react-radio:test-ssr': { + roots: ['@fluentui/react-radio:test-ssr'], + tasks: { + '@fluentui/react-radio:test-ssr': { + id: '@fluentui/react-radio:test-ssr', + target: { project: '@fluentui/react-radio', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-radio:test-ssr': [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: {}, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/react-text:build': { + roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-text:bundle-size': { + roots: ['@fluentui/react-text:bundle-size'], + tasks: { + '@fluentui/react-text:bundle-size': { + id: '@fluentui/react-text:bundle-size', + target: { project: '@fluentui/react-text', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:bundle-size': [] }, + }, + '@fluentui/react-text:clean': { + roots: ['@fluentui/react-text:clean'], + tasks: { + '@fluentui/react-text:clean': { + id: '@fluentui/react-text:clean', + target: { project: '@fluentui/react-text', target: 'clean' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:clean': [] }, + }, + '@fluentui/react-text:code-style': { + roots: ['@fluentui/react-text:code-style'], + tasks: { + '@fluentui/react-text:code-style': { + id: '@fluentui/react-text:code-style', + target: { project: '@fluentui/react-text', target: 'code-style' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:code-style': [] }, + }, + '@fluentui/react-text:just': { + roots: ['@fluentui/react-text:just'], + tasks: { + '@fluentui/react-text:just': { + id: '@fluentui/react-text:just', + target: { project: '@fluentui/react-text', target: 'just' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:just': [] }, + }, + '@fluentui/react-text:lint': { + roots: ['@fluentui/react-text:lint'], + tasks: { + '@fluentui/react-text:lint': { + id: '@fluentui/react-text:lint', + target: { project: '@fluentui/react-text', target: 'lint' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:lint': [] }, + }, + '@fluentui/react-text:start': { + roots: ['@fluentui/react-text:start'], + tasks: { + '@fluentui/react-text:start': { + id: '@fluentui/react-text:start', + target: { project: '@fluentui/react-text', target: 'start' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:start': [] }, + }, + '@fluentui/react-text:test': { + roots: ['@fluentui/react-text:test'], + tasks: { + '@fluentui/react-text:test': { + id: '@fluentui/react-text:test', + target: { project: '@fluentui/react-text', target: 'test' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:test': [] }, + }, + '@fluentui/react-text:storybook': { + roots: ['@fluentui/react-text:storybook'], + tasks: { + '@fluentui/react-text:storybook': { + id: '@fluentui/react-text:storybook', + target: { project: '@fluentui/react-text', target: 'storybook' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:storybook': [] }, + }, + '@fluentui/react-text:type-check': { + roots: ['@fluentui/react-text:type-check'], + tasks: { + '@fluentui/react-text:type-check': { + id: '@fluentui/react-text:type-check', + target: { project: '@fluentui/react-text', target: 'type-check' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:type-check': [] }, + }, + '@fluentui/react-text:generate-api': { + roots: ['@fluentui/react-text:generate-api'], + tasks: { + '@fluentui/react-text:generate-api': { + id: '@fluentui/react-text:generate-api', + target: { project: '@fluentui/react-text', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:generate-api': [] }, + }, + '@fluentui/react-text:test-ssr': { + roots: ['@fluentui/react-text:test-ssr'], + tasks: { + '@fluentui/react-text:test-ssr': { + id: '@fluentui/react-text:test-ssr', + target: { project: '@fluentui/react-text', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:test-ssr': [] }, + }, + '@fluentui/react-text:verify-packaging': { + roots: ['@fluentui/react-text:verify-packaging'], + tasks: { + '@fluentui/react-text:verify-packaging': { + id: '@fluentui/react-text:verify-packaging', + target: { project: '@fluentui/react-text', target: 'verify-packaging' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-text:verify-packaging': [] }, + }, + '@fluentui/react-text:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: {}, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-menu:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + }, + }, + '@fluentui/react-menu:bundle-size': { + roots: ['@fluentui/react-menu:bundle-size'], + tasks: { + '@fluentui/react-menu:bundle-size': { + id: '@fluentui/react-menu:bundle-size', + target: { project: '@fluentui/react-menu', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:bundle-size': [] }, + }, + '@fluentui/react-menu:clean': { + roots: ['@fluentui/react-menu:clean'], + tasks: { + '@fluentui/react-menu:clean': { + id: '@fluentui/react-menu:clean', + target: { project: '@fluentui/react-menu', target: 'clean' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:clean': [] }, + }, + '@fluentui/react-menu:code-style': { + roots: ['@fluentui/react-menu:code-style'], + tasks: { + '@fluentui/react-menu:code-style': { + id: '@fluentui/react-menu:code-style', + target: { project: '@fluentui/react-menu', target: 'code-style' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:code-style': [] }, + }, + '@fluentui/react-menu:e2e': { + roots: ['@fluentui/react-menu:e2e'], + tasks: { + '@fluentui/react-menu:e2e': { + id: '@fluentui/react-menu:e2e', + target: { project: '@fluentui/react-menu', target: 'e2e' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:e2e': [] }, + }, + '@fluentui/react-menu:e2e:local': { + roots: ['@fluentui/react-menu:e2e:local'], + tasks: { + '@fluentui/react-menu:e2e:local': { + id: '@fluentui/react-menu:e2e:local', + target: { project: '@fluentui/react-menu', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:e2e:local': [] }, + }, + '@fluentui/react-menu:just': { + roots: ['@fluentui/react-menu:just'], + tasks: { + '@fluentui/react-menu:just': { + id: '@fluentui/react-menu:just', + target: { project: '@fluentui/react-menu', target: 'just' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:just': [] }, + }, + '@fluentui/react-menu:lint': { + roots: ['@fluentui/react-menu:lint'], + tasks: { + '@fluentui/react-menu:lint': { + id: '@fluentui/react-menu:lint', + target: { project: '@fluentui/react-menu', target: 'lint' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:lint': [] }, + }, + '@fluentui/react-menu:start': { + roots: ['@fluentui/react-menu:start'], + tasks: { + '@fluentui/react-menu:start': { + id: '@fluentui/react-menu:start', + target: { project: '@fluentui/react-menu', target: 'start' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:start': [] }, + }, + '@fluentui/react-menu:storybook': { + roots: ['@fluentui/react-menu:storybook'], + tasks: { + '@fluentui/react-menu:storybook': { + id: '@fluentui/react-menu:storybook', + target: { project: '@fluentui/react-menu', target: 'storybook' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:storybook': [] }, + }, + '@fluentui/react-menu:test': { + roots: ['@fluentui/react-menu:test'], + tasks: { + '@fluentui/react-menu:test': { + id: '@fluentui/react-menu:test', + target: { project: '@fluentui/react-menu', target: 'test' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:test': [] }, + }, + '@fluentui/react-menu:type-check': { + roots: ['@fluentui/react-menu:type-check'], + tasks: { + '@fluentui/react-menu:type-check': { + id: '@fluentui/react-menu:type-check', + target: { project: '@fluentui/react-menu', target: 'type-check' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:type-check': [] }, + }, + '@fluentui/react-menu:generate-api': { + roots: ['@fluentui/react-menu:generate-api'], + tasks: { + '@fluentui/react-menu:generate-api': { + id: '@fluentui/react-menu:generate-api', + target: { project: '@fluentui/react-menu', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:generate-api': [] }, + }, + '@fluentui/react-menu:test-ssr': { + roots: ['@fluentui/react-menu:test-ssr'], + tasks: { + '@fluentui/react-menu:test-ssr': { + id: '@fluentui/react-menu:test-ssr', + target: { project: '@fluentui/react-menu', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-menu:test-ssr': [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-aria:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/react-aria:clean': { + roots: ['@fluentui/react-aria:clean'], + tasks: { + '@fluentui/react-aria:clean': { + id: '@fluentui/react-aria:clean', + target: { project: '@fluentui/react-aria', target: 'clean' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:clean': [] }, + }, + '@fluentui/react-aria:code-style': { + roots: ['@fluentui/react-aria:code-style'], + tasks: { + '@fluentui/react-aria:code-style': { + id: '@fluentui/react-aria:code-style', + target: { project: '@fluentui/react-aria', target: 'code-style' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:code-style': [] }, + }, + '@fluentui/react-aria:just': { + roots: ['@fluentui/react-aria:just'], + tasks: { + '@fluentui/react-aria:just': { + id: '@fluentui/react-aria:just', + target: { project: '@fluentui/react-aria', target: 'just' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:just': [] }, + }, + '@fluentui/react-aria:lint': { + roots: ['@fluentui/react-aria:lint'], + tasks: { + '@fluentui/react-aria:lint': { + id: '@fluentui/react-aria:lint', + target: { project: '@fluentui/react-aria', target: 'lint' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:lint': [] }, + }, + '@fluentui/react-aria:start': { + roots: ['@fluentui/react-aria:start'], + tasks: { + '@fluentui/react-aria:start': { + id: '@fluentui/react-aria:start', + target: { project: '@fluentui/react-aria', target: 'start' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:start': [] }, + }, + '@fluentui/react-aria:test': { + roots: ['@fluentui/react-aria:test'], + tasks: { + '@fluentui/react-aria:test': { + id: '@fluentui/react-aria:test', + target: { project: '@fluentui/react-aria', target: 'test' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:test': [] }, + }, + '@fluentui/react-aria:storybook': { + roots: ['@fluentui/react-aria:storybook'], + tasks: { + '@fluentui/react-aria:storybook': { + id: '@fluentui/react-aria:storybook', + target: { project: '@fluentui/react-aria', target: 'storybook' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:storybook': [] }, + }, + '@fluentui/react-aria:type-check': { + roots: ['@fluentui/react-aria:type-check'], + tasks: { + '@fluentui/react-aria:type-check': { + id: '@fluentui/react-aria:type-check', + target: { project: '@fluentui/react-aria', target: 'type-check' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:type-check': [] }, + }, + '@fluentui/react-aria:generate-api': { + roots: ['@fluentui/react-aria:generate-api'], + tasks: { + '@fluentui/react-aria:generate-api': { + id: '@fluentui/react-aria:generate-api', + target: { project: '@fluentui/react-aria', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:generate-api': [] }, + }, + '@fluentui/react-aria:test-ssr': { + roots: ['@fluentui/react-aria:test-ssr'], + tasks: { + '@fluentui/react-aria:test-ssr': { + id: '@fluentui/react-aria:test-ssr', + target: { project: '@fluentui/react-aria', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-aria:test-ssr': [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-tree:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-tree:clean': { + roots: ['@fluentui/react-tree:clean'], + tasks: { + '@fluentui/react-tree:clean': { + id: '@fluentui/react-tree:clean', + target: { project: '@fluentui/react-tree', target: 'clean' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:clean': [] }, + }, + '@fluentui/react-tree:generate-api': { + roots: ['@fluentui/react-tree:generate-api'], + tasks: { + '@fluentui/react-tree:generate-api': { + id: '@fluentui/react-tree:generate-api', + target: { project: '@fluentui/react-tree', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:generate-api': [] }, + }, + '@fluentui/react-tree:lint': { + roots: ['@fluentui/react-tree:lint'], + tasks: { + '@fluentui/react-tree:lint': { + id: '@fluentui/react-tree:lint', + target: { project: '@fluentui/react-tree', target: 'lint' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:lint': [] }, + }, + '@fluentui/react-tree:start': { + roots: ['@fluentui/react-tree:start'], + tasks: { + '@fluentui/react-tree:start': { + id: '@fluentui/react-tree:start', + target: { project: '@fluentui/react-tree', target: 'start' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:start': [] }, + }, + '@fluentui/react-tree:storybook': { + roots: ['@fluentui/react-tree:storybook'], + tasks: { + '@fluentui/react-tree:storybook': { + id: '@fluentui/react-tree:storybook', + target: { project: '@fluentui/react-tree', target: 'storybook' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:storybook': [] }, + }, + '@fluentui/react-tree:test': { + roots: ['@fluentui/react-tree:test'], + tasks: { + '@fluentui/react-tree:test': { + id: '@fluentui/react-tree:test', + target: { project: '@fluentui/react-tree', target: 'test' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:test': [] }, + }, + '@fluentui/react-tree:test-ssr': { + roots: ['@fluentui/react-tree:test-ssr'], + tasks: { + '@fluentui/react-tree:test-ssr': { + id: '@fluentui/react-tree:test-ssr', + target: { project: '@fluentui/react-tree', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:test-ssr': [] }, + }, + '@fluentui/react-tree:type-check': { + roots: ['@fluentui/react-tree:type-check'], + tasks: { + '@fluentui/react-tree:type-check': { + id: '@fluentui/react-tree:type-check', + target: { project: '@fluentui/react-tree', target: 'type-check' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:type-check': [] }, + }, + '@fluentui/react-tree:e2e': { + roots: ['@fluentui/react-tree:e2e'], + tasks: { + '@fluentui/react-tree:e2e': { + id: '@fluentui/react-tree:e2e', + target: { project: '@fluentui/react-tree', target: 'e2e' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:e2e': [] }, + }, + '@fluentui/react-tree:e2e:local': { + roots: ['@fluentui/react-tree:e2e:local'], + tasks: { + '@fluentui/react-tree:e2e:local': { + id: '@fluentui/react-tree:e2e:local', + target: { project: '@fluentui/react-tree', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tree:e2e:local': [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/ability-attributes:build': { + roots: ['@fluentui/ability-attributes:build'], + tasks: { + '@fluentui/ability-attributes:build': { + id: '@fluentui/ability-attributes:build', + target: { project: '@fluentui/ability-attributes', target: 'build' }, + projectRoot: 'packages/fluentui/ability-attributes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ability-attributes:build': [] }, + }, + '@fluentui/ability-attributes:clean': { + roots: ['@fluentui/ability-attributes:clean'], + tasks: { + '@fluentui/ability-attributes:clean': { + id: '@fluentui/ability-attributes:clean', + target: { project: '@fluentui/ability-attributes', target: 'clean' }, + projectRoot: 'packages/fluentui/ability-attributes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ability-attributes:clean': [] }, + }, + '@fluentui/ability-attributes:schema': { + roots: ['@fluentui/ability-attributes:schema'], + tasks: { + '@fluentui/ability-attributes:schema': { + id: '@fluentui/ability-attributes:schema', + target: { project: '@fluentui/ability-attributes', target: 'schema' }, + projectRoot: 'packages/fluentui/ability-attributes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ability-attributes:schema': [] }, + }, + '@fluentui/ability-attributes:nx-release-publish': { + roots: [ + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/ability-attributes:nx-release-publish': { + id: '@fluentui/ability-attributes:nx-release-publish', + target: { project: '@fluentui/ability-attributes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/ability-attributes', + overrides: {}, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/ability-attributes:nx-release-publish': [ + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + }, + }, + '@fluentui/react-tags:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/react-tags:bundle-size': { + roots: ['@fluentui/react-tags:bundle-size'], + tasks: { + '@fluentui/react-tags:bundle-size': { + id: '@fluentui/react-tags:bundle-size', + target: { project: '@fluentui/react-tags', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:bundle-size': [] }, + }, + '@fluentui/react-tags:clean': { + roots: ['@fluentui/react-tags:clean'], + tasks: { + '@fluentui/react-tags:clean': { + id: '@fluentui/react-tags:clean', + target: { project: '@fluentui/react-tags', target: 'clean' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:clean': [] }, + }, + '@fluentui/react-tags:code-style': { + roots: ['@fluentui/react-tags:code-style'], + tasks: { + '@fluentui/react-tags:code-style': { + id: '@fluentui/react-tags:code-style', + target: { project: '@fluentui/react-tags', target: 'code-style' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:code-style': [] }, + }, + '@fluentui/react-tags:just': { + roots: ['@fluentui/react-tags:just'], + tasks: { + '@fluentui/react-tags:just': { + id: '@fluentui/react-tags:just', + target: { project: '@fluentui/react-tags', target: 'just' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:just': [] }, + }, + '@fluentui/react-tags:lint': { + roots: ['@fluentui/react-tags:lint'], + tasks: { + '@fluentui/react-tags:lint': { + id: '@fluentui/react-tags:lint', + target: { project: '@fluentui/react-tags', target: 'lint' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:lint': [] }, + }, + '@fluentui/react-tags:test': { + roots: ['@fluentui/react-tags:test'], + tasks: { + '@fluentui/react-tags:test': { + id: '@fluentui/react-tags:test', + target: { project: '@fluentui/react-tags', target: 'test' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:test': [] }, + }, + '@fluentui/react-tags:e2e': { + roots: ['@fluentui/react-tags:e2e'], + tasks: { + '@fluentui/react-tags:e2e': { + id: '@fluentui/react-tags:e2e', + target: { project: '@fluentui/react-tags', target: 'e2e' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:e2e': [] }, + }, + '@fluentui/react-tags:e2e:local': { + roots: ['@fluentui/react-tags:e2e:local'], + tasks: { + '@fluentui/react-tags:e2e:local': { + id: '@fluentui/react-tags:e2e:local', + target: { project: '@fluentui/react-tags', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:e2e:local': [] }, + }, + '@fluentui/react-tags:type-check': { + roots: ['@fluentui/react-tags:type-check'], + tasks: { + '@fluentui/react-tags:type-check': { + id: '@fluentui/react-tags:type-check', + target: { project: '@fluentui/react-tags', target: 'type-check' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:type-check': [] }, + }, + '@fluentui/react-tags:generate-api': { + roots: ['@fluentui/react-tags:generate-api'], + tasks: { + '@fluentui/react-tags:generate-api': { + id: '@fluentui/react-tags:generate-api', + target: { project: '@fluentui/react-tags', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:generate-api': [] }, + }, + '@fluentui/react-tags:storybook': { + roots: ['@fluentui/react-tags:storybook'], + tasks: { + '@fluentui/react-tags:storybook': { + id: '@fluentui/react-tags:storybook', + target: { project: '@fluentui/react-tags', target: 'storybook' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:storybook': [] }, + }, + '@fluentui/react-tags:start': { + roots: ['@fluentui/react-tags:start'], + tasks: { + '@fluentui/react-tags:start': { + id: '@fluentui/react-tags:start', + target: { project: '@fluentui/react-tags', target: 'start' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:start': [] }, + }, + '@fluentui/react-tags:test-ssr': { + roots: ['@fluentui/react-tags:test-ssr'], + tasks: { + '@fluentui/react-tags:test-ssr': { + id: '@fluentui/react-tags:test-ssr', + target: { project: '@fluentui/react-tags', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tags:test-ssr': [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-tabs:build': { + roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + }, + }, + '@fluentui/react-tabs:clean': { + roots: ['@fluentui/react-tabs:clean'], + tasks: { + '@fluentui/react-tabs:clean': { + id: '@fluentui/react-tabs:clean', + target: { project: '@fluentui/react-tabs', target: 'clean' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:clean': [] }, + }, + '@fluentui/react-tabs:code-style': { + roots: ['@fluentui/react-tabs:code-style'], + tasks: { + '@fluentui/react-tabs:code-style': { + id: '@fluentui/react-tabs:code-style', + target: { project: '@fluentui/react-tabs', target: 'code-style' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:code-style': [] }, + }, + '@fluentui/react-tabs:just': { + roots: ['@fluentui/react-tabs:just'], + tasks: { + '@fluentui/react-tabs:just': { + id: '@fluentui/react-tabs:just', + target: { project: '@fluentui/react-tabs', target: 'just' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:just': [] }, + }, + '@fluentui/react-tabs:lint': { + roots: ['@fluentui/react-tabs:lint'], + tasks: { + '@fluentui/react-tabs:lint': { + id: '@fluentui/react-tabs:lint', + target: { project: '@fluentui/react-tabs', target: 'lint' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:lint': [] }, + }, + '@fluentui/react-tabs:start': { + roots: ['@fluentui/react-tabs:start'], + tasks: { + '@fluentui/react-tabs:start': { + id: '@fluentui/react-tabs:start', + target: { project: '@fluentui/react-tabs', target: 'start' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:start': [] }, + }, + '@fluentui/react-tabs:test': { + roots: ['@fluentui/react-tabs:test'], + tasks: { + '@fluentui/react-tabs:test': { + id: '@fluentui/react-tabs:test', + target: { project: '@fluentui/react-tabs', target: 'test' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:test': [] }, + }, + '@fluentui/react-tabs:storybook': { + roots: ['@fluentui/react-tabs:storybook'], + tasks: { + '@fluentui/react-tabs:storybook': { + id: '@fluentui/react-tabs:storybook', + target: { project: '@fluentui/react-tabs', target: 'storybook' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:storybook': [] }, + }, + '@fluentui/react-tabs:type-check': { + roots: ['@fluentui/react-tabs:type-check'], + tasks: { + '@fluentui/react-tabs:type-check': { + id: '@fluentui/react-tabs:type-check', + target: { project: '@fluentui/react-tabs', target: 'type-check' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:type-check': [] }, + }, + '@fluentui/react-tabs:generate-api': { + roots: ['@fluentui/react-tabs:generate-api'], + tasks: { + '@fluentui/react-tabs:generate-api': { + id: '@fluentui/react-tabs:generate-api', + target: { project: '@fluentui/react-tabs', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:generate-api': [] }, + }, + '@fluentui/react-tabs:test-ssr': { + roots: ['@fluentui/react-tabs:test-ssr'], + tasks: { + '@fluentui/react-tabs:test-ssr': { + id: '@fluentui/react-tabs:test-ssr', + target: { project: '@fluentui/react-tabs', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-tabs:test-ssr': [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: {}, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/ts-minbar-test-react-components:type-check': { + roots: ['@fluentui/ts-minbar-test-react-components:type-check'], + tasks: { + '@fluentui/ts-minbar-test-react-components:type-check': { + id: '@fluentui/ts-minbar-test-react-components:type-check', + target: { project: '@fluentui/ts-minbar-test-react-components', target: 'type-check' }, + projectRoot: 'apps/ts-minbar-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ts-minbar-test-react-components:type-check': [] }, + }, + '@fluentui/ts-minbar-test-react-components:test': { + roots: ['@fluentui/ts-minbar-test-react-components:test'], + tasks: { + '@fluentui/ts-minbar-test-react-components:test': { + id: '@fluentui/ts-minbar-test-react-components:test', + target: { project: '@fluentui/ts-minbar-test-react-components', target: 'test' }, + projectRoot: 'apps/ts-minbar-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ts-minbar-test-react-components:test': [] }, + }, + '@fluentui/ts-minbar-test-react-components:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/ts-minbar-test-react-components:nx-release-publish': { + id: '@fluentui/ts-minbar-test-react-components:nx-release-publish', + target: { project: '@fluentui/ts-minbar-test-react-components', target: 'nx-release-publish' }, + projectRoot: 'apps/ts-minbar-test-react-components', + overrides: {}, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/ts-minbar-test-react-components:nx-release-publish': [ + '@fluentui/react-components:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + }, + }, + '@fluentui/react-link:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/a11y-testing:build': [], + }, + }, + '@fluentui/react-link:bundle-size': { + roots: ['@fluentui/react-link:bundle-size'], + tasks: { + '@fluentui/react-link:bundle-size': { + id: '@fluentui/react-link:bundle-size', + target: { project: '@fluentui/react-link', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:bundle-size': [] }, + }, + '@fluentui/react-link:clean': { + roots: ['@fluentui/react-link:clean'], + tasks: { + '@fluentui/react-link:clean': { + id: '@fluentui/react-link:clean', + target: { project: '@fluentui/react-link', target: 'clean' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:clean': [] }, + }, + '@fluentui/react-link:code-style': { + roots: ['@fluentui/react-link:code-style'], + tasks: { + '@fluentui/react-link:code-style': { + id: '@fluentui/react-link:code-style', + target: { project: '@fluentui/react-link', target: 'code-style' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:code-style': [] }, + }, + '@fluentui/react-link:just': { + roots: ['@fluentui/react-link:just'], + tasks: { + '@fluentui/react-link:just': { + id: '@fluentui/react-link:just', + target: { project: '@fluentui/react-link', target: 'just' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:just': [] }, + }, + '@fluentui/react-link:lint': { + roots: ['@fluentui/react-link:lint'], + tasks: { + '@fluentui/react-link:lint': { + id: '@fluentui/react-link:lint', + target: { project: '@fluentui/react-link', target: 'lint' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:lint': [] }, + }, + '@fluentui/react-link:start': { + roots: ['@fluentui/react-link:start'], + tasks: { + '@fluentui/react-link:start': { + id: '@fluentui/react-link:start', + target: { project: '@fluentui/react-link', target: 'start' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:start': [] }, + }, + '@fluentui/react-link:test': { + roots: ['@fluentui/react-link:test'], + tasks: { + '@fluentui/react-link:test': { + id: '@fluentui/react-link:test', + target: { project: '@fluentui/react-link', target: 'test' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:test': [] }, + }, + '@fluentui/react-link:storybook': { + roots: ['@fluentui/react-link:storybook'], + tasks: { + '@fluentui/react-link:storybook': { + id: '@fluentui/react-link:storybook', + target: { project: '@fluentui/react-link', target: 'storybook' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:storybook': [] }, + }, + '@fluentui/react-link:type-check': { + roots: ['@fluentui/react-link:type-check'], + tasks: { + '@fluentui/react-link:type-check': { + id: '@fluentui/react-link:type-check', + target: { project: '@fluentui/react-link', target: 'type-check' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:type-check': [] }, + }, + '@fluentui/react-link:generate-api': { + roots: ['@fluentui/react-link:generate-api'], + tasks: { + '@fluentui/react-link:generate-api': { + id: '@fluentui/react-link:generate-api', + target: { project: '@fluentui/react-link', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:generate-api': [] }, + }, + '@fluentui/react-link:test-ssr': { + roots: ['@fluentui/react-link:test-ssr'], + tasks: { + '@fluentui/react-link:test-ssr': { + id: '@fluentui/react-link:test-ssr', + target: { project: '@fluentui/react-link', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-link:test-ssr': [] }, + }, + '@fluentui/react-link:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-card:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + ], + tasks: { + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/a11y-testing:build': [], + }, + }, + '@fluentui/react-card:bundle-size': { + roots: ['@fluentui/react-card:bundle-size'], + tasks: { + '@fluentui/react-card:bundle-size': { + id: '@fluentui/react-card:bundle-size', + target: { project: '@fluentui/react-card', target: 'bundle-size' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:bundle-size': [] }, + }, + '@fluentui/react-card:clean': { + roots: ['@fluentui/react-card:clean'], + tasks: { + '@fluentui/react-card:clean': { + id: '@fluentui/react-card:clean', + target: { project: '@fluentui/react-card', target: 'clean' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:clean': [] }, + }, + '@fluentui/react-card:code-style': { + roots: ['@fluentui/react-card:code-style'], + tasks: { + '@fluentui/react-card:code-style': { + id: '@fluentui/react-card:code-style', + target: { project: '@fluentui/react-card', target: 'code-style' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:code-style': [] }, + }, + '@fluentui/react-card:e2e': { + roots: ['@fluentui/react-card:e2e'], + tasks: { + '@fluentui/react-card:e2e': { + id: '@fluentui/react-card:e2e', + target: { project: '@fluentui/react-card', target: 'e2e' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:e2e': [] }, + }, + '@fluentui/react-card:e2e:local': { + roots: ['@fluentui/react-card:e2e:local'], + tasks: { + '@fluentui/react-card:e2e:local': { + id: '@fluentui/react-card:e2e:local', + target: { project: '@fluentui/react-card', target: 'e2e:local' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:e2e:local': [] }, + }, + '@fluentui/react-card:just': { + roots: ['@fluentui/react-card:just'], + tasks: { + '@fluentui/react-card:just': { + id: '@fluentui/react-card:just', + target: { project: '@fluentui/react-card', target: 'just' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:just': [] }, + }, + '@fluentui/react-card:lint': { + roots: ['@fluentui/react-card:lint'], + tasks: { + '@fluentui/react-card:lint': { + id: '@fluentui/react-card:lint', + target: { project: '@fluentui/react-card', target: 'lint' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:lint': [] }, + }, + '@fluentui/react-card:start': { + roots: ['@fluentui/react-card:start'], + tasks: { + '@fluentui/react-card:start': { + id: '@fluentui/react-card:start', + target: { project: '@fluentui/react-card', target: 'start' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:start': [] }, + }, + '@fluentui/react-card:test': { + roots: ['@fluentui/react-card:test'], + tasks: { + '@fluentui/react-card:test': { + id: '@fluentui/react-card:test', + target: { project: '@fluentui/react-card', target: 'test' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:test': [] }, + }, + '@fluentui/react-card:storybook': { + roots: ['@fluentui/react-card:storybook'], + tasks: { + '@fluentui/react-card:storybook': { + id: '@fluentui/react-card:storybook', + target: { project: '@fluentui/react-card', target: 'storybook' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:storybook': [] }, + }, + '@fluentui/react-card:type-check': { + roots: ['@fluentui/react-card:type-check'], + tasks: { + '@fluentui/react-card:type-check': { + id: '@fluentui/react-card:type-check', + target: { project: '@fluentui/react-card', target: 'type-check' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:type-check': [] }, + }, + '@fluentui/react-card:generate-api': { + roots: ['@fluentui/react-card:generate-api'], + tasks: { + '@fluentui/react-card:generate-api': { + id: '@fluentui/react-card:generate-api', + target: { project: '@fluentui/react-card', target: 'generate-api' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:generate-api': [] }, + }, + '@fluentui/react-card:test-ssr': { + roots: ['@fluentui/react-card:test-ssr'], + tasks: { + '@fluentui/react-card:test-ssr': { + id: '@fluentui/react-card:test-ssr', + target: { project: '@fluentui/react-card', target: 'test-ssr' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-card:test-ssr': [] }, + }, + '@fluentui/react-card:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: {}, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/docs-components:build': { + roots: ['@fluentui/docs-components:build'], + tasks: { + '@fluentui/docs-components:build': { + id: '@fluentui/docs-components:build', + target: { project: '@fluentui/docs-components', target: 'build' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs-components:build': [] }, + }, + '@fluentui/docs-components:clean': { + roots: ['@fluentui/docs-components:clean'], + tasks: { + '@fluentui/docs-components:clean': { + id: '@fluentui/docs-components:clean', + target: { project: '@fluentui/docs-components', target: 'clean' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs-components:clean': [] }, + }, + '@fluentui/docs-components:lint': { + roots: ['@fluentui/docs-components:lint'], + tasks: { + '@fluentui/docs-components:lint': { + id: '@fluentui/docs-components:lint', + target: { project: '@fluentui/docs-components', target: 'lint' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs-components:lint': [] }, + }, + '@fluentui/docs-components:lint:fix': { + roots: ['@fluentui/docs-components:lint:fix'], + tasks: { + '@fluentui/docs-components:lint:fix': { + id: '@fluentui/docs-components:lint:fix', + target: { project: '@fluentui/docs-components', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs-components:lint:fix': [] }, + }, + '@fluentui/docs-components:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/docs-components:nx-release-publish': { + id: '@fluentui/docs-components:nx-release-publish', + target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/docs-components:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + }, + }, + '@fluentui/react-icons-mdl2-branded:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/react-icons-mdl2-branded:build': { + id: '@fluentui/react-icons-mdl2-branded:build', + target: { project: '@fluentui/react-icons-mdl2-branded', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2-branded', + overrides: {}, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:build': { + id: '@fluentui/react-icons-mdl2:build', + target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:build': { + id: '@fluentui/react-icon-provider:build', + target: { project: '@fluentui/react-icon-provider', target: 'build' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-icons-mdl2-branded:build': ['@fluentui/set-version:build', '@fluentui/react-icons-mdl2:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-icons-mdl2:build': [ + '@fluentui/react-icon-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/react-icons-mdl2-branded:clean': { + roots: ['@fluentui/react-icons-mdl2-branded:clean'], + tasks: { + '@fluentui/react-icons-mdl2-branded:clean': { + id: '@fluentui/react-icons-mdl2-branded:clean', + target: { project: '@fluentui/react-icons-mdl2-branded', target: 'clean' }, + projectRoot: 'packages/react-icons-mdl2-branded', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2-branded:clean': [] }, + }, + '@fluentui/react-icons-mdl2-branded:code-style': { + roots: ['@fluentui/react-icons-mdl2-branded:code-style'], + tasks: { + '@fluentui/react-icons-mdl2-branded:code-style': { + id: '@fluentui/react-icons-mdl2-branded:code-style', + target: { project: '@fluentui/react-icons-mdl2-branded', target: 'code-style' }, + projectRoot: 'packages/react-icons-mdl2-branded', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2-branded:code-style': [] }, + }, + '@fluentui/react-icons-mdl2-branded:just': { + roots: ['@fluentui/react-icons-mdl2-branded:just'], + tasks: { + '@fluentui/react-icons-mdl2-branded:just': { + id: '@fluentui/react-icons-mdl2-branded:just', + target: { project: '@fluentui/react-icons-mdl2-branded', target: 'just' }, + projectRoot: 'packages/react-icons-mdl2-branded', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2-branded:just': [] }, + }, + '@fluentui/react-icons-mdl2-branded:lint': { + roots: ['@fluentui/react-icons-mdl2-branded:lint'], + tasks: { + '@fluentui/react-icons-mdl2-branded:lint': { + id: '@fluentui/react-icons-mdl2-branded:lint', + target: { project: '@fluentui/react-icons-mdl2-branded', target: 'lint' }, + projectRoot: 'packages/react-icons-mdl2-branded', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2-branded:lint': [] }, + }, + '@fluentui/react-icons-mdl2-branded:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-icons-mdl2-branded:nx-release-publish': { + id: '@fluentui/react-icons-mdl2-branded:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2-branded', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2-branded', + overrides: {}, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:nx-release-publish': { + id: '@fluentui/react-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:nx-release-publish': { + id: '@fluentui/react-icon-provider:nx-release-publish', + target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-icons-mdl2-branded:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/react-icons-mdl2:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-icons-mdl2:nx-release-publish': [ + '@fluentui/react-icon-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icon-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-docsite-components:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/monaco-editor:build', + ], + tasks: { + '@fluentui/react-docsite-components:build': { + id: '@fluentui/react-docsite-components:build', + target: { project: '@fluentui/react-docsite-components', target: 'build' }, + projectRoot: 'packages/react-docsite-components', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:build': { + id: '@fluentui/public-docsite-setup:build', + target: { project: '@fluentui/public-docsite-setup', target: 'build' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:build': { + id: '@fluentui/react-monaco-editor:build', + target: { project: '@fluentui/react-monaco-editor', target: 'build' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:build': { + id: '@fluentui/monaco-editor:build', + target: { project: '@fluentui/monaco-editor', target: 'build' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-docsite-components:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/common-styles:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/public-docsite-setup:build': [], + '@fluentui/react-monaco-editor:build': [ + '@fluentui/react:build', + '@fluentui/example-data:build', + '@fluentui/monaco-editor:build', + '@fluentui/react-hooks:build', + '@fluentui/react-charting:build', + ], + '@fluentui/monaco-editor:build': [], + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + }, + }, + '@fluentui/react-docsite-components:clean': { + roots: ['@fluentui/react-docsite-components:clean'], + tasks: { + '@fluentui/react-docsite-components:clean': { + id: '@fluentui/react-docsite-components:clean', + target: { project: '@fluentui/react-docsite-components', target: 'clean' }, + projectRoot: 'packages/react-docsite-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-docsite-components:clean': [] }, + }, + '@fluentui/react-docsite-components:code-style': { + roots: ['@fluentui/react-docsite-components:code-style'], + tasks: { + '@fluentui/react-docsite-components:code-style': { + id: '@fluentui/react-docsite-components:code-style', + target: { project: '@fluentui/react-docsite-components', target: 'code-style' }, + projectRoot: 'packages/react-docsite-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-docsite-components:code-style': [] }, + }, + '@fluentui/react-docsite-components:just': { + roots: ['@fluentui/react-docsite-components:just'], + tasks: { + '@fluentui/react-docsite-components:just': { + id: '@fluentui/react-docsite-components:just', + target: { project: '@fluentui/react-docsite-components', target: 'just' }, + projectRoot: 'packages/react-docsite-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-docsite-components:just': [] }, + }, + '@fluentui/react-docsite-components:lint': { + roots: ['@fluentui/react-docsite-components:lint'], + tasks: { + '@fluentui/react-docsite-components:lint': { + id: '@fluentui/react-docsite-components:lint', + target: { project: '@fluentui/react-docsite-components', target: 'lint' }, + projectRoot: 'packages/react-docsite-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-docsite-components:lint': [] }, + }, + '@fluentui/react-docsite-components:start': { + roots: ['@fluentui/react-docsite-components:start'], + tasks: { + '@fluentui/react-docsite-components:start': { + id: '@fluentui/react-docsite-components:start', + target: { project: '@fluentui/react-docsite-components', target: 'start' }, + projectRoot: 'packages/react-docsite-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-docsite-components:start': [] }, + }, + '@fluentui/react-docsite-components:test': { + roots: ['@fluentui/react-docsite-components:test'], + tasks: { + '@fluentui/react-docsite-components:test': { + id: '@fluentui/react-docsite-components:test', + target: { project: '@fluentui/react-docsite-components', target: 'test' }, + projectRoot: 'packages/react-docsite-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-docsite-components:test': [] }, + }, + '@fluentui/react-docsite-components:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-docsite-components:nx-release-publish': { + id: '@fluentui/react-docsite-components:nx-release-publish', + target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-docsite-components', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:nx-release-publish': { + id: '@fluentui/public-docsite-setup:nx-release-publish', + target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:nx-release-publish': { + id: '@fluentui/react-monaco-editor:nx-release-publish', + target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:nx-release-publish': { + id: '@fluentui/monaco-editor:nx-release-publish', + target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-docsite-components:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/public-docsite-setup:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/public-docsite-setup:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-monaco-editor:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/monaco-editor:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/monaco-editor:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + }, + }, + '@fluentui/react-proptypes:build': { + roots: ['@fluentui/react-proptypes:build'], + tasks: { + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-proptypes:build': [] }, + }, + '@fluentui/react-proptypes:clean': { + roots: ['@fluentui/react-proptypes:clean'], + tasks: { + '@fluentui/react-proptypes:clean': { + id: '@fluentui/react-proptypes:clean', + target: { project: '@fluentui/react-proptypes', target: 'clean' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-proptypes:clean': [] }, + }, + '@fluentui/react-proptypes:lint': { + roots: ['@fluentui/react-proptypes:lint'], + tasks: { + '@fluentui/react-proptypes:lint': { + id: '@fluentui/react-proptypes:lint', + target: { project: '@fluentui/react-proptypes', target: 'lint' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-proptypes:lint': [] }, + }, + '@fluentui/react-proptypes:lint:fix': { + roots: ['@fluentui/react-proptypes:lint:fix'], + tasks: { + '@fluentui/react-proptypes:lint:fix': { + id: '@fluentui/react-proptypes:lint:fix', + target: { project: '@fluentui/react-proptypes', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-proptypes:lint:fix': [] }, + }, + '@fluentui/react-proptypes:test': { + roots: ['@fluentui/react-proptypes:test'], + tasks: { + '@fluentui/react-proptypes:test': { + id: '@fluentui/react-proptypes:test', + target: { project: '@fluentui/react-proptypes', target: 'test' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-proptypes:test': [] }, + }, + '@fluentui/react-proptypes:test:watch': { + roots: ['@fluentui/react-proptypes:test:watch'], + tasks: { + '@fluentui/react-proptypes:test:watch': { + id: '@fluentui/react-proptypes:test:watch', + target: { project: '@fluentui/react-proptypes', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-proptypes:test:watch': [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/react-telemetry:build': { + roots: [ + '@fluentui/accessibility:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + ], + tasks: { + '@fluentui/react-telemetry:build': { + id: '@fluentui/react-telemetry:build', + target: { project: '@fluentui/react-telemetry', target: 'build' }, + projectRoot: 'packages/fluentui/react-telemetry', + overrides: {}, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-telemetry:build': [ + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + ], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + }, + }, + '@fluentui/react-telemetry:clean': { + roots: ['@fluentui/react-telemetry:clean'], + tasks: { + '@fluentui/react-telemetry:clean': { + id: '@fluentui/react-telemetry:clean', + target: { project: '@fluentui/react-telemetry', target: 'clean' }, + projectRoot: 'packages/fluentui/react-telemetry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-telemetry:clean': [] }, + }, + '@fluentui/react-telemetry:lint': { + roots: ['@fluentui/react-telemetry:lint'], + tasks: { + '@fluentui/react-telemetry:lint': { + id: '@fluentui/react-telemetry:lint', + target: { project: '@fluentui/react-telemetry', target: 'lint' }, + projectRoot: 'packages/fluentui/react-telemetry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-telemetry:lint': [] }, + }, + '@fluentui/react-telemetry:lint:fix': { + roots: ['@fluentui/react-telemetry:lint:fix'], + tasks: { + '@fluentui/react-telemetry:lint:fix': { + id: '@fluentui/react-telemetry:lint:fix', + target: { project: '@fluentui/react-telemetry', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-telemetry', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-telemetry:lint:fix': [] }, + }, + '@fluentui/react-telemetry:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-telemetry:nx-release-publish': { + id: '@fluentui/react-telemetry:nx-release-publish', + target: { project: '@fluentui/react-telemetry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-telemetry', + overrides: {}, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-telemetry:nx-release-publish': [ + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + }, + }, + '@fluentui/react-northstar:build': { + roots: [ + '@fluentui/accessibility:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + tasks: { + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-proptypes:build': [], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/react-northstar:build:info': { + roots: ['@fluentui/react-northstar:build:info'], + tasks: { + '@fluentui/react-northstar:build:info': { + id: '@fluentui/react-northstar:build:info', + target: { project: '@fluentui/react-northstar', target: 'build:info' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar:build:info': [] }, + }, + '@fluentui/react-northstar:bundle-size-auditor': { + roots: ['@fluentui/react-northstar:bundle-size-auditor'], + tasks: { + '@fluentui/react-northstar:bundle-size-auditor': { + id: '@fluentui/react-northstar:bundle-size-auditor', + target: { project: '@fluentui/react-northstar', target: 'bundle-size-auditor' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar:bundle-size-auditor': [] }, + }, + '@fluentui/react-northstar:clean': { + roots: ['@fluentui/react-northstar:clean'], + tasks: { + '@fluentui/react-northstar:clean': { + id: '@fluentui/react-northstar:clean', + target: { project: '@fluentui/react-northstar', target: 'clean' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar:clean': [] }, + }, + '@fluentui/react-northstar:lint': { + roots: ['@fluentui/react-northstar:lint'], + tasks: { + '@fluentui/react-northstar:lint': { + id: '@fluentui/react-northstar:lint', + target: { project: '@fluentui/react-northstar', target: 'lint' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar:lint': [] }, + }, + '@fluentui/react-northstar:lint:fix': { + roots: ['@fluentui/react-northstar:lint:fix'], + tasks: { + '@fluentui/react-northstar:lint:fix': { + id: '@fluentui/react-northstar:lint:fix', + target: { project: '@fluentui/react-northstar', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar:lint:fix': [] }, + }, + '@fluentui/react-northstar:test': { + roots: ['@fluentui/react-northstar:test'], + tasks: { + '@fluentui/react-northstar:test': { + id: '@fluentui/react-northstar:test', + target: { project: '@fluentui/react-northstar', target: 'test' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar:test': [] }, + }, + '@fluentui/react-northstar:test:watch': { + roots: ['@fluentui/react-northstar:test:watch'], + tasks: { + '@fluentui/react-northstar:test:watch': { + id: '@fluentui/react-northstar:test:watch', + target: { project: '@fluentui/react-northstar', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-northstar:test:watch': [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: {}, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-bindings:build': { + roots: [ + '@fluentui/accessibility:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + ], + tasks: { + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: {}, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + }, + }, + '@fluentui/react-bindings:build:info': { + roots: ['@fluentui/react-bindings:build:info'], + tasks: { + '@fluentui/react-bindings:build:info': { + id: '@fluentui/react-bindings:build:info', + target: { project: '@fluentui/react-bindings', target: 'build:info' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-bindings:build:info': [] }, + }, + '@fluentui/react-bindings:clean': { + roots: ['@fluentui/react-bindings:clean'], + tasks: { + '@fluentui/react-bindings:clean': { + id: '@fluentui/react-bindings:clean', + target: { project: '@fluentui/react-bindings', target: 'clean' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-bindings:clean': [] }, + }, + '@fluentui/react-bindings:lint': { + roots: ['@fluentui/react-bindings:lint'], + tasks: { + '@fluentui/react-bindings:lint': { + id: '@fluentui/react-bindings:lint', + target: { project: '@fluentui/react-bindings', target: 'lint' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-bindings:lint': [] }, + }, + '@fluentui/react-bindings:lint:fix': { + roots: ['@fluentui/react-bindings:lint:fix'], + tasks: { + '@fluentui/react-bindings:lint:fix': { + id: '@fluentui/react-bindings:lint:fix', + target: { project: '@fluentui/react-bindings', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-bindings:lint:fix': [] }, + }, + '@fluentui/react-bindings:test': { + roots: ['@fluentui/react-bindings:test'], + tasks: { + '@fluentui/react-bindings:test': { + id: '@fluentui/react-bindings:test', + target: { project: '@fluentui/react-bindings', target: 'test' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-bindings:test': [] }, + }, + '@fluentui/react-bindings:test:watch': { + roots: ['@fluentui/react-bindings:test:watch'], + tasks: { + '@fluentui/react-bindings:test:watch': { + id: '@fluentui/react-bindings:test:watch', + target: { project: '@fluentui/react-bindings', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-bindings:test:watch': [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: {}, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + }, + }, + '@fluentui/circulars-test:test': { + roots: ['@fluentui/circulars-test:test'], + tasks: { + '@fluentui/circulars-test:test': { + id: '@fluentui/circulars-test:test', + target: { project: '@fluentui/circulars-test', target: 'test' }, + projectRoot: 'packages/fluentui/circulars-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/circulars-test:test': [] }, + }, + '@fluentui/circulars-test:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/circulars-test:nx-release-publish': { + id: '@fluentui/circulars-test:nx-release-publish', + target: { project: '@fluentui/circulars-test', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/circulars-test', + overrides: {}, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/circulars-test:nx-release-publish': [ + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/accessibility:build': { + roots: ['@fluentui/accessibility:build'], + tasks: { + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: {}, + }, + }, + dependencies: { '@fluentui/accessibility:build': [] }, + }, + '@fluentui/accessibility:clean': { + roots: ['@fluentui/accessibility:clean'], + tasks: { + '@fluentui/accessibility:clean': { + id: '@fluentui/accessibility:clean', + target: { project: '@fluentui/accessibility', target: 'clean' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: {}, + }, + }, + dependencies: { '@fluentui/accessibility:clean': [] }, + }, + '@fluentui/accessibility:lint': { + roots: ['@fluentui/accessibility:lint'], + tasks: { + '@fluentui/accessibility:lint': { + id: '@fluentui/accessibility:lint', + target: { project: '@fluentui/accessibility', target: 'lint' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: {}, + }, + }, + dependencies: { '@fluentui/accessibility:lint': [] }, + }, + '@fluentui/accessibility:lint:fix': { + roots: ['@fluentui/accessibility:lint:fix'], + tasks: { + '@fluentui/accessibility:lint:fix': { + id: '@fluentui/accessibility:lint:fix', + target: { project: '@fluentui/accessibility', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: {}, + }, + }, + dependencies: { '@fluentui/accessibility:lint:fix': [] }, + }, + '@fluentui/accessibility:test': { + roots: ['@fluentui/accessibility:test'], + tasks: { + '@fluentui/accessibility:test': { + id: '@fluentui/accessibility:test', + target: { project: '@fluentui/accessibility', target: 'test' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: {}, + }, + }, + dependencies: { '@fluentui/accessibility:test': [] }, + }, + '@fluentui/accessibility:test:watch': { + roots: ['@fluentui/accessibility:test:watch'], + tasks: { + '@fluentui/accessibility:test:watch': { + id: '@fluentui/accessibility:test:watch', + target: { project: '@fluentui/accessibility', target: 'test:watch' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: {}, + }, + }, + dependencies: { '@fluentui/accessibility:test:watch': [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/local-sandbox:build:withdependencies': { + roots: ['@fluentui/local-sandbox:build:withdependencies'], + tasks: { + '@fluentui/local-sandbox:build:withdependencies': { + id: '@fluentui/local-sandbox:build:withdependencies', + target: { project: '@fluentui/local-sandbox', target: 'build:withdependencies' }, + projectRoot: 'packages/fluentui/local-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/local-sandbox:build:withdependencies': [] }, + }, + '@fluentui/local-sandbox:build': { + roots: [ + '@fluentui/accessibility:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + tasks: { + '@fluentui/local-sandbox:build': { + id: '@fluentui/local-sandbox:build', + target: { project: '@fluentui/local-sandbox', target: 'build' }, + projectRoot: 'packages/fluentui/local-sandbox', + overrides: {}, + }, + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/local-sandbox:build': ['@fluentui/react-northstar:build'], + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-proptypes:build': [], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/local-sandbox:build:production': { + roots: ['@fluentui/local-sandbox:build:production'], + tasks: { + '@fluentui/local-sandbox:build:production': { + id: '@fluentui/local-sandbox:build:production', + target: { project: '@fluentui/local-sandbox', target: 'build:production' }, + projectRoot: 'packages/fluentui/local-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/local-sandbox:build:production': [] }, + }, + '@fluentui/local-sandbox:serve': { + roots: ['@fluentui/local-sandbox:serve'], + tasks: { + '@fluentui/local-sandbox:serve': { + id: '@fluentui/local-sandbox:serve', + target: { project: '@fluentui/local-sandbox', target: 'serve' }, + projectRoot: 'packages/fluentui/local-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/local-sandbox:serve': [] }, + }, + '@fluentui/local-sandbox:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/local-sandbox:nx-release-publish': { + id: '@fluentui/local-sandbox:nx-release-publish', + target: { project: '@fluentui/local-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/local-sandbox', + overrides: {}, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/local-sandbox:nx-release-publish': [ + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/perf-test-react-components:bundle': { + roots: ['@fluentui/perf-test-react-components:bundle'], + tasks: { + '@fluentui/perf-test-react-components:bundle': { + id: '@fluentui/perf-test-react-components:bundle', + target: { project: '@fluentui/perf-test-react-components', target: 'bundle' }, + projectRoot: 'apps/perf-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-react-components:bundle': [] }, + }, + '@fluentui/perf-test-react-components:lint': { + roots: ['@fluentui/perf-test-react-components:lint'], + tasks: { + '@fluentui/perf-test-react-components:lint': { + id: '@fluentui/perf-test-react-components:lint', + target: { project: '@fluentui/perf-test-react-components', target: 'lint' }, + projectRoot: 'apps/perf-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-react-components:lint': [] }, + }, + '@fluentui/perf-test-react-components:just': { + roots: ['@fluentui/perf-test-react-components:just'], + tasks: { + '@fluentui/perf-test-react-components:just': { + id: '@fluentui/perf-test-react-components:just', + target: { project: '@fluentui/perf-test-react-components', target: 'just' }, + projectRoot: 'apps/perf-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-react-components:just': [] }, + }, + '@fluentui/perf-test-react-components:clean': { + roots: ['@fluentui/perf-test-react-components:clean'], + tasks: { + '@fluentui/perf-test-react-components:clean': { + id: '@fluentui/perf-test-react-components:clean', + target: { project: '@fluentui/perf-test-react-components', target: 'clean' }, + projectRoot: 'apps/perf-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-react-components:clean': [] }, + }, + '@fluentui/perf-test-react-components:code-style': { + roots: ['@fluentui/perf-test-react-components:code-style'], + tasks: { + '@fluentui/perf-test-react-components:code-style': { + id: '@fluentui/perf-test-react-components:code-style', + target: { project: '@fluentui/perf-test-react-components', target: 'code-style' }, + projectRoot: 'apps/perf-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-react-components:code-style': [] }, + }, + '@fluentui/perf-test-react-components:type-check': { + roots: ['@fluentui/perf-test-react-components:type-check'], + tasks: { + '@fluentui/perf-test-react-components:type-check': { + id: '@fluentui/perf-test-react-components:type-check', + target: { project: '@fluentui/perf-test-react-components', target: 'type-check' }, + projectRoot: 'apps/perf-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-react-components:type-check': [] }, + }, + '@fluentui/perf-test-react-components:test:perf': { + roots: ['@fluentui/perf-test-react-components:test:perf'], + tasks: { + '@fluentui/perf-test-react-components:test:perf': { + id: '@fluentui/perf-test-react-components:test:perf', + target: { project: '@fluentui/perf-test-react-components', target: 'test:perf' }, + projectRoot: 'apps/perf-test-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test-react-components:test:perf': [] }, + }, + '@fluentui/perf-test-react-components:nx-release-publish': { + roots: [ + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/perf-test-react-components:nx-release-publish': { + id: '@fluentui/perf-test-react-components:nx-release-publish', + target: { project: '@fluentui/perf-test-react-components', target: 'nx-release-publish' }, + projectRoot: 'apps/perf-test-react-components', + overrides: {}, + }, + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': { + id: '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', + target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'nx-release-publish' }, + projectRoot: 'scripts/perf-test-flamegrill', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/perf-test-react-components:nx-release-publish': [ + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': [], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-builder:build': { + roots: [ + '@fluentui/accessibility:build', + '@fluentui/docs-components:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + tasks: { + '@fluentui/react-builder:build': { + id: '@fluentui/react-builder:build', + target: { project: '@fluentui/react-builder', target: 'build' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: {}, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:build': { + id: '@fluentui/code-sandbox:build', + target: { project: '@fluentui/code-sandbox', target: 'build' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:build': { + id: '@fluentui/docs-components:build', + target: { project: '@fluentui/docs-components', target: 'build' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-builder:build': [ + '@fluentui/accessibility:build', + '@fluentui/code-sandbox:build', + '@fluentui/docs-components:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/code-sandbox:build': ['@fluentui/docs-components:build', '@fluentui/react-northstar:build'], + '@fluentui/docs-components:build': [], + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-proptypes:build': [], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/react-builder:clean': { + roots: ['@fluentui/react-builder:clean'], + tasks: { + '@fluentui/react-builder:clean': { + id: '@fluentui/react-builder:clean', + target: { project: '@fluentui/react-builder', target: 'clean' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-builder:clean': [] }, + }, + '@fluentui/react-builder:lint': { + roots: ['@fluentui/react-builder:lint'], + tasks: { + '@fluentui/react-builder:lint': { + id: '@fluentui/react-builder:lint', + target: { project: '@fluentui/react-builder', target: 'lint' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-builder:lint': [] }, + }, + '@fluentui/react-builder:lint:fix': { + roots: ['@fluentui/react-builder:lint:fix'], + tasks: { + '@fluentui/react-builder:lint:fix': { + id: '@fluentui/react-builder:lint:fix', + target: { project: '@fluentui/react-builder', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-builder:lint:fix': [] }, + }, + '@fluentui/react-builder:test': { + roots: ['@fluentui/react-builder:test'], + tasks: { + '@fluentui/react-builder:test': { + id: '@fluentui/react-builder:test', + target: { project: '@fluentui/react-builder', target: 'test' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-builder:test': [] }, + }, + '@fluentui/react-builder:test:watch': { + roots: ['@fluentui/react-builder:test:watch'], + tasks: { + '@fluentui/react-builder:test:watch': { + id: '@fluentui/react-builder:test:watch', + target: { project: '@fluentui/react-builder', target: 'test:watch' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-builder:test:watch': [] }, + }, + '@fluentui/react-builder:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-builder:nx-release-publish': { + id: '@fluentui/react-builder:nx-release-publish', + target: { project: '@fluentui/react-builder', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: {}, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:nx-release-publish': { + id: '@fluentui/code-sandbox:nx-release-publish', + target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:nx-release-publish': { + id: '@fluentui/docs-components:nx-release-publish', + target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-builder:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/code-sandbox:nx-release-publish': [ + '@fluentui/docs-components:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/docs-components:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/projects-test:build': { + roots: [ + '@fluentui/accessibility:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + tasks: { + '@fluentui/projects-test:build': { + id: '@fluentui/projects-test:build', + target: { project: '@fluentui/projects-test', target: 'build' }, + projectRoot: 'packages/fluentui/projects-test', + overrides: {}, + }, + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/projects-test:build': ['@fluentui/react-northstar:build'], + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-proptypes:build': [], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/projects-test:lint': { + roots: ['@fluentui/projects-test:lint'], + tasks: { + '@fluentui/projects-test:lint': { + id: '@fluentui/projects-test:lint', + target: { project: '@fluentui/projects-test', target: 'lint' }, + projectRoot: 'packages/fluentui/projects-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/projects-test:lint': [] }, + }, + '@fluentui/projects-test:lint:fix': { + roots: ['@fluentui/projects-test:lint:fix'], + tasks: { + '@fluentui/projects-test:lint:fix': { + id: '@fluentui/projects-test:lint:fix', + target: { project: '@fluentui/projects-test', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/projects-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/projects-test:lint:fix': [] }, + }, + '@fluentui/projects-test:test': { + roots: ['@fluentui/projects-test:test'], + tasks: { + '@fluentui/projects-test:test': { + id: '@fluentui/projects-test:test', + target: { project: '@fluentui/projects-test', target: 'test' }, + projectRoot: 'packages/fluentui/projects-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/projects-test:test': [] }, + }, + '@fluentui/projects-test:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/projects-test:nx-release-publish': { + id: '@fluentui/projects-test:nx-release-publish', + target: { project: '@fluentui/projects-test', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/projects-test', + overrides: {}, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/projects-test:nx-release-publish': [ + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-file-type-icons:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/react-file-type-icons:build': { + id: '@fluentui/react-file-type-icons:build', + target: { project: '@fluentui/react-file-type-icons', target: 'build' }, + projectRoot: 'packages/react-file-type-icons', + overrides: {}, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/react-file-type-icons:clean': { + roots: ['@fluentui/react-file-type-icons:clean'], + tasks: { + '@fluentui/react-file-type-icons:clean': { + id: '@fluentui/react-file-type-icons:clean', + target: { project: '@fluentui/react-file-type-icons', target: 'clean' }, + projectRoot: 'packages/react-file-type-icons', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-file-type-icons:clean': [] }, + }, + '@fluentui/react-file-type-icons:code-style': { + roots: ['@fluentui/react-file-type-icons:code-style'], + tasks: { + '@fluentui/react-file-type-icons:code-style': { + id: '@fluentui/react-file-type-icons:code-style', + target: { project: '@fluentui/react-file-type-icons', target: 'code-style' }, + projectRoot: 'packages/react-file-type-icons', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-file-type-icons:code-style': [] }, + }, + '@fluentui/react-file-type-icons:just': { + roots: ['@fluentui/react-file-type-icons:just'], + tasks: { + '@fluentui/react-file-type-icons:just': { + id: '@fluentui/react-file-type-icons:just', + target: { project: '@fluentui/react-file-type-icons', target: 'just' }, + projectRoot: 'packages/react-file-type-icons', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-file-type-icons:just': [] }, + }, + '@fluentui/react-file-type-icons:lint': { + roots: ['@fluentui/react-file-type-icons:lint'], + tasks: { + '@fluentui/react-file-type-icons:lint': { + id: '@fluentui/react-file-type-icons:lint', + target: { project: '@fluentui/react-file-type-icons', target: 'lint' }, + projectRoot: 'packages/react-file-type-icons', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-file-type-icons:lint': [] }, + }, + '@fluentui/react-file-type-icons:test': { + roots: ['@fluentui/react-file-type-icons:test'], + tasks: { + '@fluentui/react-file-type-icons:test': { + id: '@fluentui/react-file-type-icons:test', + target: { project: '@fluentui/react-file-type-icons', target: 'test' }, + projectRoot: 'packages/react-file-type-icons', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-file-type-icons:test': [] }, + }, + '@fluentui/react-file-type-icons:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-file-type-icons:nx-release-publish': { + id: '@fluentui/react-file-type-icons:nx-release-publish', + target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, + projectRoot: 'packages/react-file-type-icons', + overrides: {}, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-file-type-icons:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/vr-tests-react-components:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + '@fluentui/babel-preset-storybook-full-source:build', + ], + tasks: { + '@fluentui/vr-tests-react-components:build': { + id: '@fluentui/vr-tests-react-components:build', + target: { project: '@fluentui/vr-tests-react-components', target: 'build' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-calendar-compat:build': { + id: '@fluentui/react-calendar-compat:build', + target: { project: '@fluentui/react-calendar-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-datepicker-compat:build': { + id: '@fluentui/react-datepicker-compat:build', + target: { project: '@fluentui/react-datepicker-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-search-preview:build': { + id: '@fluentui/react-search-preview:build', + target: { project: '@fluentui/react-search-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon:build': { + id: '@fluentui/react-storybook-addon:build', + target: { project: '@fluentui/react-storybook-addon', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:build': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:build', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/babel-preset-storybook-full-source:build': { + id: '@fluentui/babel-preset-storybook-full-source:build', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-timepicker-compat-preview:build': { + id: '@fluentui/react-timepicker-compat-preview:build', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/vr-tests-react-components:build': [ + '@fluentui/react-accordion:build', + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-button:build', + '@fluentui/react-calendar-compat:build', + '@fluentui/react-card:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-combobox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-datepicker-compat:build', + '@fluentui/react-dialog:build', + '@fluentui/react-divider:build', + '@fluentui/react-drawer:build', + '@fluentui/react-field:build', + '@fluentui/react-image:build', + '@fluentui/react-infolabel:build', + '@fluentui/react-input:build', + '@fluentui/react-label:build', + '@fluentui/react-link:build', + '@fluentui/react-menu:build', + '@fluentui/react-message-bar:build', + '@fluentui/react-persona:build', + '@fluentui/react-popover:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-progress:build', + '@fluentui/react-provider:build', + '@fluentui/react-radio:build', + '@fluentui/react-search-preview:build', + '@fluentui/react-select:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-skeleton:build', + '@fluentui/react-slider:build', + '@fluentui/react-spinner:build', + '@fluentui/react-spinbutton:build', + '@fluentui/react-storybook-addon:build', + '@fluentui/react-storybook-addon-export-to-sandbox:build', + '@fluentui/react-switch:build', + '@fluentui/react-table:build', + '@fluentui/react-tabs:build', + '@fluentui/react-tags:build', + '@fluentui/react-text:build', + '@fluentui/react-textarea:build', + '@fluentui/react-theme:build', + '@fluentui/react-timepicker-compat-preview:build', + '@fluentui/react-toast:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-toolbar:build', + '@fluentui/react-tree:build', + '@fluentui/react-utilities:build', + '@fluentui/react-breadcrumb:build', + ], + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-calendar-compat:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-datepicker-compat:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-calendar-compat:build', + '@fluentui/react-field:build', + '@fluentui/react-input:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-popover:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-search-preview:build': [ + '@fluentui/react-input:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-storybook-addon:build': ['@fluentui/react-theme:build', '@fluentui/react-provider:build'], + '@fluentui/react-storybook-addon-export-to-sandbox:build': [ + '@fluentui/babel-preset-storybook-full-source:build', + ], + '@fluentui/babel-preset-storybook-full-source:build': [], + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-timepicker-compat-preview:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-combobox:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/vr-tests-react-components:clean': { + roots: ['@fluentui/vr-tests-react-components:clean'], + tasks: { + '@fluentui/vr-tests-react-components:clean': { + id: '@fluentui/vr-tests-react-components:clean', + target: { project: '@fluentui/vr-tests-react-components', target: 'clean' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests-react-components:clean': [] }, + }, + '@fluentui/vr-tests-react-components:format': { + roots: ['@fluentui/vr-tests-react-components:format'], + tasks: { + '@fluentui/vr-tests-react-components:format': { + id: '@fluentui/vr-tests-react-components:format', + target: { project: '@fluentui/vr-tests-react-components', target: 'format' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests-react-components:format': [] }, + }, + '@fluentui/vr-tests-react-components:lint': { + roots: ['@fluentui/vr-tests-react-components:lint'], + tasks: { + '@fluentui/vr-tests-react-components:lint': { + id: '@fluentui/vr-tests-react-components:lint', + target: { project: '@fluentui/vr-tests-react-components', target: 'lint' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests-react-components:lint': [] }, + }, + '@fluentui/vr-tests-react-components:start': { + roots: ['@fluentui/vr-tests-react-components:start'], + tasks: { + '@fluentui/vr-tests-react-components:start': { + id: '@fluentui/vr-tests-react-components:start', + target: { project: '@fluentui/vr-tests-react-components', target: 'start' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests-react-components:start': [] }, + }, + '@fluentui/vr-tests-react-components:test': { + roots: ['@fluentui/vr-tests-react-components:test'], + tasks: { + '@fluentui/vr-tests-react-components:test': { + id: '@fluentui/vr-tests-react-components:test', + target: { project: '@fluentui/vr-tests-react-components', target: 'test' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests-react-components:test': [] }, + }, + '@fluentui/vr-tests-react-components:type-check': { + roots: ['@fluentui/vr-tests-react-components:type-check'], + tasks: { + '@fluentui/vr-tests-react-components:type-check': { + id: '@fluentui/vr-tests-react-components:type-check', + target: { project: '@fluentui/vr-tests-react-components', target: 'type-check' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests-react-components:type-check': [] }, + }, + '@fluentui/vr-tests-react-components:vr:build': { + roots: ['@fluentui/vr-tests-react-components:vr:build'], + tasks: { + '@fluentui/vr-tests-react-components:vr:build': { + id: '@fluentui/vr-tests-react-components:vr:build', + target: { project: '@fluentui/vr-tests-react-components', target: 'vr:build' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests-react-components:vr:build': [] }, + }, + '@fluentui/vr-tests-react-components:vr:test': { + roots: ['@fluentui/vr-tests-react-components:vr:test'], + tasks: { + '@fluentui/vr-tests-react-components:vr:test': { + id: '@fluentui/vr-tests-react-components:vr:test', + target: { project: '@fluentui/vr-tests-react-components', target: 'vr:test' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests-react-components:vr:test': [] }, + }, + '@fluentui/vr-tests-react-components:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/vr-tests-react-components:nx-release-publish': { + id: '@fluentui/vr-tests-react-components:nx-release-publish', + target: { project: '@fluentui/vr-tests-react-components', target: 'nx-release-publish' }, + projectRoot: 'apps/vr-tests-react-components', + overrides: {}, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-calendar-compat:nx-release-publish': { + id: '@fluentui/react-calendar-compat:nx-release-publish', + target: { project: '@fluentui/react-calendar-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-datepicker-compat:nx-release-publish': { + id: '@fluentui/react-datepicker-compat:nx-release-publish', + target: { project: '@fluentui/react-datepicker-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-search-preview:nx-release-publish': { + id: '@fluentui/react-search-preview:nx-release-publish', + target: { project: '@fluentui/react-search-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon:nx-release-publish': { + id: '@fluentui/react-storybook-addon:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { + id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-timepicker-compat-preview:nx-release-publish': { + id: '@fluentui/react-timepicker-compat-preview:nx-release-publish', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/vr-tests-react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-calendar-compat:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-datepicker-compat:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-search-preview:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-storybook-addon:nx-release-publish', + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-timepicker-compat-preview:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-calendar-compat:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-datepicker-compat:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-calendar-compat:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-search-preview:nx-release-publish': [ + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-storybook-addon:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ + '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-timepicker-compat-preview:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-window-provider:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/set-version:build': [], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/react-window-provider:clean': { + roots: ['@fluentui/react-window-provider:clean'], + tasks: { + '@fluentui/react-window-provider:clean': { + id: '@fluentui/react-window-provider:clean', + target: { project: '@fluentui/react-window-provider', target: 'clean' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-window-provider:clean': [] }, + }, + '@fluentui/react-window-provider:code-style': { + roots: ['@fluentui/react-window-provider:code-style'], + tasks: { + '@fluentui/react-window-provider:code-style': { + id: '@fluentui/react-window-provider:code-style', + target: { project: '@fluentui/react-window-provider', target: 'code-style' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-window-provider:code-style': [] }, + }, + '@fluentui/react-window-provider:just': { + roots: ['@fluentui/react-window-provider:just'], + tasks: { + '@fluentui/react-window-provider:just': { + id: '@fluentui/react-window-provider:just', + target: { project: '@fluentui/react-window-provider', target: 'just' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-window-provider:just': [] }, + }, + '@fluentui/react-window-provider:lint': { + roots: ['@fluentui/react-window-provider:lint'], + tasks: { + '@fluentui/react-window-provider:lint': { + id: '@fluentui/react-window-provider:lint', + target: { project: '@fluentui/react-window-provider', target: 'lint' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-window-provider:lint': [] }, + }, + '@fluentui/react-window-provider:start-test': { + roots: ['@fluentui/react-window-provider:start-test'], + tasks: { + '@fluentui/react-window-provider:start-test': { + id: '@fluentui/react-window-provider:start-test', + target: { project: '@fluentui/react-window-provider', target: 'start-test' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-window-provider:start-test': [] }, + }, + '@fluentui/react-window-provider:test': { + roots: ['@fluentui/react-window-provider:test'], + tasks: { + '@fluentui/react-window-provider:test': { + id: '@fluentui/react-window-provider:test', + target: { project: '@fluentui/react-window-provider', target: 'test' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-window-provider:test': [] }, + }, + '@fluentui/react-window-provider:update-snapshots': { + roots: ['@fluentui/react-window-provider:update-snapshots'], + tasks: { + '@fluentui/react-window-provider:update-snapshots': { + id: '@fluentui/react-window-provider:update-snapshots', + target: { project: '@fluentui/react-window-provider', target: 'update-snapshots' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-window-provider:update-snapshots': [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: {}, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + }, + }, + '@fluentui/code-sandbox:build': { + roots: [ + '@fluentui/docs-components:build', + '@fluentui/accessibility:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + tasks: { + '@fluentui/code-sandbox:build': { + id: '@fluentui/code-sandbox:build', + target: { project: '@fluentui/code-sandbox', target: 'build' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: {}, + }, + '@fluentui/docs-components:build': { + id: '@fluentui/docs-components:build', + target: { project: '@fluentui/docs-components', target: 'build' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/code-sandbox:build': ['@fluentui/docs-components:build', '@fluentui/react-northstar:build'], + '@fluentui/docs-components:build': [], + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-proptypes:build': [], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/code-sandbox:clean': { + roots: ['@fluentui/code-sandbox:clean'], + tasks: { + '@fluentui/code-sandbox:clean': { + id: '@fluentui/code-sandbox:clean', + target: { project: '@fluentui/code-sandbox', target: 'clean' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/code-sandbox:clean': [] }, + }, + '@fluentui/code-sandbox:lint': { + roots: ['@fluentui/code-sandbox:lint'], + tasks: { + '@fluentui/code-sandbox:lint': { + id: '@fluentui/code-sandbox:lint', + target: { project: '@fluentui/code-sandbox', target: 'lint' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/code-sandbox:lint': [] }, + }, + '@fluentui/code-sandbox:lint:fix': { + roots: ['@fluentui/code-sandbox:lint:fix'], + tasks: { + '@fluentui/code-sandbox:lint:fix': { + id: '@fluentui/code-sandbox:lint:fix', + target: { project: '@fluentui/code-sandbox', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: {}, + }, + }, + dependencies: { '@fluentui/code-sandbox:lint:fix': [] }, + }, + '@fluentui/code-sandbox:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/code-sandbox:nx-release-publish': { + id: '@fluentui/code-sandbox:nx-release-publish', + target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: {}, + }, + '@fluentui/docs-components:nx-release-publish': { + id: '@fluentui/docs-components:nx-release-publish', + target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/code-sandbox:nx-release-publish': [ + '@fluentui/docs-components:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/docs-components:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/public-docsite-setup:build': { + roots: ['@fluentui/public-docsite-setup:build'], + tasks: { + '@fluentui/public-docsite-setup:build': { + id: '@fluentui/public-docsite-setup:build', + target: { project: '@fluentui/public-docsite-setup', target: 'build' }, + projectRoot: 'packages/public-docsite-setup', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-setup:build': [] }, + }, + '@fluentui/public-docsite-setup:clean': { + roots: ['@fluentui/public-docsite-setup:clean'], + tasks: { + '@fluentui/public-docsite-setup:clean': { + id: '@fluentui/public-docsite-setup:clean', + target: { project: '@fluentui/public-docsite-setup', target: 'clean' }, + projectRoot: 'packages/public-docsite-setup', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-setup:clean': [] }, + }, + '@fluentui/public-docsite-setup:code-style': { + roots: ['@fluentui/public-docsite-setup:code-style'], + tasks: { + '@fluentui/public-docsite-setup:code-style': { + id: '@fluentui/public-docsite-setup:code-style', + target: { project: '@fluentui/public-docsite-setup', target: 'code-style' }, + projectRoot: 'packages/public-docsite-setup', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-setup:code-style': [] }, + }, + '@fluentui/public-docsite-setup:just': { + roots: ['@fluentui/public-docsite-setup:just'], + tasks: { + '@fluentui/public-docsite-setup:just': { + id: '@fluentui/public-docsite-setup:just', + target: { project: '@fluentui/public-docsite-setup', target: 'just' }, + projectRoot: 'packages/public-docsite-setup', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-setup:just': [] }, + }, + '@fluentui/public-docsite-setup:lint': { + roots: ['@fluentui/public-docsite-setup:lint'], + tasks: { + '@fluentui/public-docsite-setup:lint': { + id: '@fluentui/public-docsite-setup:lint', + target: { project: '@fluentui/public-docsite-setup', target: 'lint' }, + projectRoot: 'packages/public-docsite-setup', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-setup:lint': [] }, + }, + '@fluentui/public-docsite-setup:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/public-docsite-setup:nx-release-publish': { + id: '@fluentui/public-docsite-setup:nx-release-publish', + target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, + projectRoot: 'packages/public-docsite-setup', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/public-docsite-setup:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/recipes-react-components:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/a11y-testing:build', + '@fluentui/priority-overflow:build', + '@fluentui/babel-preset-storybook-full-source:build', + ], + tasks: { + '@fluentui/recipes-react-components:build': { + id: '@fluentui/recipes-react-components:build', + target: { project: '@fluentui/recipes-react-components', target: 'build' }, + projectRoot: 'apps/recipes-react-components', + overrides: {}, + }, + '@fluentui/react-components:build': { + id: '@fluentui/react-components:build', + target: { project: '@fluentui/react-components', target: 'build' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:build': { + id: '@fluentui/react-alert:build', + target: { project: '@fluentui/react-alert', target: 'build' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:build': { + id: '@fluentui/react-infobutton:build', + target: { project: '@fluentui/react-infobutton', target: 'build' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:build': { + id: '@fluentui/react-overflow:build', + target: { project: '@fluentui/react-overflow', target: 'build' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:build': { + id: '@fluentui/react-virtualizer:build', + target: { project: '@fluentui/react-virtualizer', target: 'build' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon:build': { + id: '@fluentui/react-storybook-addon:build', + target: { project: '@fluentui/react-storybook-addon', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:build': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:build', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/babel-preset-storybook-full-source:build': { + id: '@fluentui/babel-preset-storybook-full-source:build', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/recipes-react-components:build': [ + '@fluentui/react-components:build', + '@fluentui/react-theme:build', + '@fluentui/react-provider:build', + '@fluentui/react-storybook-addon:build', + '@fluentui/react-storybook-addon-export-to-sandbox:build', + ], + '@fluentui/react-components:build': [ + '@fluentui/react-accordion:build', + '@fluentui/react-alert:build', + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-button:build', + '@fluentui/react-card:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-combobox:build', + '@fluentui/react-dialog:build', + '@fluentui/react-divider:build', + '@fluentui/react-drawer:build', + '@fluentui/react-field:build', + '@fluentui/react-image:build', + '@fluentui/react-infobutton:build', + '@fluentui/react-infolabel:build', + '@fluentui/react-input:build', + '@fluentui/react-label:build', + '@fluentui/react-link:build', + '@fluentui/react-menu:build', + '@fluentui/react-overflow:build', + '@fluentui/react-persona:build', + '@fluentui/react-portal:build', + '@fluentui/react-popover:build', + '@fluentui/react-positioning:build', + '@fluentui/react-progress:build', + '@fluentui/react-provider:build', + '@fluentui/react-radio:build', + '@fluentui/react-select:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-skeleton:build', + '@fluentui/react-slider:build', + '@fluentui/react-spinbutton:build', + '@fluentui/react-spinner:build', + '@fluentui/react-switch:build', + '@fluentui/react-table:build', + '@fluentui/react-tabs:build', + '@fluentui/react-tabster:build', + '@fluentui/react-tags:build', + '@fluentui/react-textarea:build', + '@fluentui/react-theme:build', + '@fluentui/react-toast:build', + '@fluentui/react-toolbar:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-text:build', + '@fluentui/react-virtualizer:build', + '@fluentui/react-tree:build', + '@fluentui/react-message-bar:build', + '@fluentui/react-breadcrumb:build', + ], + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-conformance:build': [], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-alert:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infobutton:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-overflow:build': [ + '@fluentui/priority-overflow:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/priority-overflow:build': [], + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-virtualizer:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-storybook-addon:build': ['@fluentui/react-theme:build', '@fluentui/react-provider:build'], + '@fluentui/react-storybook-addon-export-to-sandbox:build': [ + '@fluentui/babel-preset-storybook-full-source:build', + ], + '@fluentui/babel-preset-storybook-full-source:build': [], + }, + }, + '@fluentui/recipes-react-components:clean': { + roots: ['@fluentui/recipes-react-components:clean'], + tasks: { + '@fluentui/recipes-react-components:clean': { + id: '@fluentui/recipes-react-components:clean', + target: { project: '@fluentui/recipes-react-components', target: 'clean' }, + projectRoot: 'apps/recipes-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/recipes-react-components:clean': [] }, + }, + '@fluentui/recipes-react-components:format': { + roots: ['@fluentui/recipes-react-components:format'], + tasks: { + '@fluentui/recipes-react-components:format': { + id: '@fluentui/recipes-react-components:format', + target: { project: '@fluentui/recipes-react-components', target: 'format' }, + projectRoot: 'apps/recipes-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/recipes-react-components:format': [] }, + }, + '@fluentui/recipes-react-components:lint': { + roots: ['@fluentui/recipes-react-components:lint'], + tasks: { + '@fluentui/recipes-react-components:lint': { + id: '@fluentui/recipes-react-components:lint', + target: { project: '@fluentui/recipes-react-components', target: 'lint' }, + projectRoot: 'apps/recipes-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/recipes-react-components:lint': [] }, + }, + '@fluentui/recipes-react-components:start': { + roots: ['@fluentui/recipes-react-components:start'], + tasks: { + '@fluentui/recipes-react-components:start': { + id: '@fluentui/recipes-react-components:start', + target: { project: '@fluentui/recipes-react-components', target: 'start' }, + projectRoot: 'apps/recipes-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/recipes-react-components:start': [] }, + }, + '@fluentui/recipes-react-components:type-check': { + roots: ['@fluentui/recipes-react-components:type-check'], + tasks: { + '@fluentui/recipes-react-components:type-check': { + id: '@fluentui/recipes-react-components:type-check', + target: { project: '@fluentui/recipes-react-components', target: 'type-check' }, + projectRoot: 'apps/recipes-react-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/recipes-react-components:type-check': [] }, + }, + '@fluentui/recipes-react-components:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/recipes-react-components:nx-release-publish': { + id: '@fluentui/recipes-react-components:nx-release-publish', + target: { project: '@fluentui/recipes-react-components', target: 'nx-release-publish' }, + projectRoot: 'apps/recipes-react-components', + overrides: {}, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon:nx-release-publish': { + id: '@fluentui/react-storybook-addon:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { + id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/recipes-react-components:nx-release-publish': [ + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-storybook-addon:nx-release-publish', + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-storybook-addon:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ + '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/public-docsite-resources:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/monaco-editor:build', + '@fluentui/api-docs:build', + ], + tasks: { + '@fluentui/public-docsite-resources:build': { + id: '@fluentui/public-docsite-resources:build', + target: { project: '@fluentui/public-docsite-resources', target: 'build' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-examples:build': { + id: '@fluentui/react-examples:build', + target: { project: '@fluentui/react-examples', target: 'build' }, + projectRoot: 'packages/react-examples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:build': { + id: '@fluentui/azure-themes:build', + target: { project: '@fluentui/azure-themes', target: 'build' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-cards:build': { + id: '@fluentui/react-cards:build', + target: { project: '@fluentui/react-cards', target: 'build' }, + projectRoot: 'packages/react-cards', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:build': { + id: '@fluentui/react-docsite-components:build', + target: { project: '@fluentui/react-docsite-components', target: 'build' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:build': { + id: '@fluentui/public-docsite-setup:build', + target: { project: '@fluentui/public-docsite-setup', target: 'build' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:build': { + id: '@fluentui/react-monaco-editor:build', + target: { project: '@fluentui/react-monaco-editor', target: 'build' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:build': { + id: '@fluentui/monaco-editor:build', + target: { project: '@fluentui/monaco-editor', target: 'build' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:build': { + id: '@fluentui/react-experiments:build', + target: { project: '@fluentui/react-experiments', target: 'build' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-file-type-icons:build': { + id: '@fluentui/react-file-type-icons:build', + target: { project: '@fluentui/react-file-type-icons', target: 'build' }, + projectRoot: 'packages/react-file-type-icons', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:build': { + id: '@fluentui/react-icons-mdl2:build', + target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:build': { + id: '@fluentui/react-icon-provider:build', + target: { project: '@fluentui/react-icon-provider', target: 'build' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:build': { + id: '@fluentui/storybook:build', + target: { project: '@fluentui/storybook', target: 'build' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/api-docs:build': { + id: '@fluentui/api-docs:build', + target: { project: '@fluentui/api-docs', target: 'build' }, + projectRoot: 'packages/api-docs', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/public-docsite-resources:build': [ + '@fluentui/react:build', + '@fluentui/react-charting:build', + '@fluentui/react-examples:build', + '@fluentui/azure-themes:build', + '@fluentui/react-docsite-components:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/set-version:build', + '@fluentui/theme-samples:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/api-docs:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + '@fluentui/react-examples:build': [ + '@fluentui/azure-themes:build', + '@fluentui/date-time-utilities:build', + '@fluentui/dom-utilities:build', + '@fluentui/example-data:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/foundation-legacy:build', + '@fluentui/merge-styles:build', + '@fluentui/react:build', + '@fluentui/react-cards:build', + '@fluentui/react-charting:build', + '@fluentui/react-docsite-components:build', + '@fluentui/react-experiments:build', + '@fluentui/react-file-type-icons:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-icons-mdl2:build', + '@fluentui/scheme-utilities:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/theme-samples:build', + '@fluentui/utilities:build', + '@fluentui/storybook:build', + ], + '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react-cards:build': [ + '@fluentui/react:build', + '@fluentui/foundation-legacy:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-docsite-components:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/common-styles:build', + ], + '@fluentui/public-docsite-setup:build': [], + '@fluentui/react-monaco-editor:build': [ + '@fluentui/react:build', + '@fluentui/example-data:build', + '@fluentui/monaco-editor:build', + '@fluentui/react-hooks:build', + '@fluentui/react-charting:build', + ], + '@fluentui/monaco-editor:build': [], + '@fluentui/react-experiments:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/react-icons-mdl2:build': [ + '@fluentui/react-icon-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/storybook:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/azure-themes:build', + '@fluentui/theme-samples:build', + ], + '@fluentui/api-docs:build': [], + }, + }, + '@fluentui/public-docsite-resources:bundle': { + roots: ['@fluentui/public-docsite-resources:bundle'], + tasks: { + '@fluentui/public-docsite-resources:bundle': { + id: '@fluentui/public-docsite-resources:bundle', + target: { project: '@fluentui/public-docsite-resources', target: 'bundle' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-resources:bundle': [] }, + }, + '@fluentui/public-docsite-resources:lint': { + roots: ['@fluentui/public-docsite-resources:lint'], + tasks: { + '@fluentui/public-docsite-resources:lint': { + id: '@fluentui/public-docsite-resources:lint', + target: { project: '@fluentui/public-docsite-resources', target: 'lint' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-resources:lint': [] }, + }, + '@fluentui/public-docsite-resources:just': { + roots: ['@fluentui/public-docsite-resources:just'], + tasks: { + '@fluentui/public-docsite-resources:just': { + id: '@fluentui/public-docsite-resources:just', + target: { project: '@fluentui/public-docsite-resources', target: 'just' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-resources:just': [] }, + }, + '@fluentui/public-docsite-resources:clean': { + roots: ['@fluentui/public-docsite-resources:clean'], + tasks: { + '@fluentui/public-docsite-resources:clean': { + id: '@fluentui/public-docsite-resources:clean', + target: { project: '@fluentui/public-docsite-resources', target: 'clean' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-resources:clean': [] }, + }, + '@fluentui/public-docsite-resources:code-style': { + roots: ['@fluentui/public-docsite-resources:code-style'], + tasks: { + '@fluentui/public-docsite-resources:code-style': { + id: '@fluentui/public-docsite-resources:code-style', + target: { project: '@fluentui/public-docsite-resources', target: 'code-style' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-resources:code-style': [] }, + }, + '@fluentui/public-docsite-resources:start': { + roots: ['@fluentui/public-docsite-resources:start'], + tasks: { + '@fluentui/public-docsite-resources:start': { + id: '@fluentui/public-docsite-resources:start', + target: { project: '@fluentui/public-docsite-resources', target: 'start' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-resources:start': [] }, + }, + '@fluentui/public-docsite-resources:update-snapshots': { + roots: ['@fluentui/public-docsite-resources:update-snapshots'], + tasks: { + '@fluentui/public-docsite-resources:update-snapshots': { + id: '@fluentui/public-docsite-resources:update-snapshots', + target: { project: '@fluentui/public-docsite-resources', target: 'update-snapshots' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-resources:update-snapshots': [] }, + }, + '@fluentui/public-docsite-resources:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/public-docsite-resources:nx-release-publish': { + id: '@fluentui/public-docsite-resources:nx-release-publish', + target: { project: '@fluentui/public-docsite-resources', target: 'nx-release-publish' }, + projectRoot: 'apps/public-docsite-resources', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-examples:nx-release-publish': { + id: '@fluentui/react-examples:nx-release-publish', + target: { project: '@fluentui/react-examples', target: 'nx-release-publish' }, + projectRoot: 'packages/react-examples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:nx-release-publish': { + id: '@fluentui/azure-themes:nx-release-publish', + target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-cards:nx-release-publish': { + id: '@fluentui/react-cards:nx-release-publish', + target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, + projectRoot: 'packages/react-cards', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:nx-release-publish': { + id: '@fluentui/react-docsite-components:nx-release-publish', + target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:nx-release-publish': { + id: '@fluentui/public-docsite-setup:nx-release-publish', + target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:nx-release-publish': { + id: '@fluentui/react-monaco-editor:nx-release-publish', + target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:nx-release-publish': { + id: '@fluentui/monaco-editor:nx-release-publish', + target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:nx-release-publish': { + id: '@fluentui/react-experiments:nx-release-publish', + target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-file-type-icons:nx-release-publish': { + id: '@fluentui/react-file-type-icons:nx-release-publish', + target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, + projectRoot: 'packages/react-file-type-icons', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:nx-release-publish': { + id: '@fluentui/react-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:nx-release-publish': { + id: '@fluentui/react-icon-provider:nx-release-publish', + target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:nx-release-publish': { + id: '@fluentui/storybook:nx-release-publish', + target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/api-docs:nx-release-publish': { + id: '@fluentui/api-docs:nx-release-publish', + target: { project: '@fluentui/api-docs', target: 'nx-release-publish' }, + projectRoot: 'packages/api-docs', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/public-docsite-resources:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/react-examples:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/api-docs:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-examples:nx-release-publish': [ + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-cards:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/react-experiments:nx-release-publish', + '@fluentui/react-file-type-icons:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-icons-mdl2:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/storybook:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/azure-themes:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-cards:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-docsite-components:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/public-docsite-setup:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/public-docsite-setup:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-monaco-editor:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/monaco-editor:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/monaco-editor:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-experiments:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-file-type-icons:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-icons-mdl2:nx-release-publish': [ + '@fluentui/react-icon-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icon-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/storybook:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/api-docs:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/scripts-update-release-notes:format': { + roots: ['@fluentui/scripts-update-release-notes:format'], + tasks: { + '@fluentui/scripts-update-release-notes:format': { + id: '@fluentui/scripts-update-release-notes:format', + target: { project: '@fluentui/scripts-update-release-notes', target: 'format' }, + projectRoot: 'scripts/update-release-notes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-update-release-notes:format': [] }, + }, + '@fluentui/scripts-update-release-notes:format:check': { + roots: ['@fluentui/scripts-update-release-notes:format:check'], + tasks: { + '@fluentui/scripts-update-release-notes:format:check': { + id: '@fluentui/scripts-update-release-notes:format:check', + target: { project: '@fluentui/scripts-update-release-notes', target: 'format:check' }, + projectRoot: 'scripts/update-release-notes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-update-release-notes:format:check': [] }, + }, + '@fluentui/scripts-update-release-notes:lint': { + roots: ['@fluentui/scripts-update-release-notes:lint'], + tasks: { + '@fluentui/scripts-update-release-notes:lint': { + id: '@fluentui/scripts-update-release-notes:lint', + target: { project: '@fluentui/scripts-update-release-notes', target: 'lint' }, + projectRoot: 'scripts/update-release-notes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-update-release-notes:lint': [] }, + }, + '@fluentui/scripts-update-release-notes:test': { + roots: ['@fluentui/scripts-update-release-notes:test'], + tasks: { + '@fluentui/scripts-update-release-notes:test': { + id: '@fluentui/scripts-update-release-notes:test', + target: { project: '@fluentui/scripts-update-release-notes', target: 'test' }, + projectRoot: 'scripts/update-release-notes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-update-release-notes:test': [] }, + }, + '@fluentui/scripts-update-release-notes:type-check': { + roots: ['@fluentui/scripts-update-release-notes:type-check'], + tasks: { + '@fluentui/scripts-update-release-notes:type-check': { + id: '@fluentui/scripts-update-release-notes:type-check', + target: { project: '@fluentui/scripts-update-release-notes', target: 'type-check' }, + projectRoot: 'scripts/update-release-notes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-update-release-notes:type-check': [] }, + }, + '@fluentui/scripts-update-release-notes:nx-release-publish': { + roots: ['@fluentui/scripts-github:nx-release-publish'], + tasks: { + '@fluentui/scripts-update-release-notes:nx-release-publish': { + id: '@fluentui/scripts-update-release-notes:nx-release-publish', + target: { project: '@fluentui/scripts-update-release-notes', target: 'nx-release-publish' }, + projectRoot: 'scripts/update-release-notes', + overrides: {}, + }, + '@fluentui/scripts-github:nx-release-publish': { + id: '@fluentui/scripts-github:nx-release-publish', + target: { project: '@fluentui/scripts-github', target: 'nx-release-publish' }, + projectRoot: 'scripts/github', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-update-release-notes:nx-release-publish': ['@fluentui/scripts-github:nx-release-publish'], + '@fluentui/scripts-github:nx-release-publish': [], + }, + }, + '@fluentui/react-monaco-editor:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/monaco-editor:build', + ], + tasks: { + '@fluentui/react-monaco-editor:build': { + id: '@fluentui/react-monaco-editor:build', + target: { project: '@fluentui/react-monaco-editor', target: 'build' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:build': { + id: '@fluentui/monaco-editor:build', + target: { project: '@fluentui/monaco-editor', target: 'build' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-monaco-editor:build': [ + '@fluentui/react:build', + '@fluentui/example-data:build', + '@fluentui/monaco-editor:build', + '@fluentui/react-hooks:build', + '@fluentui/react-charting:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/monaco-editor:build': [], + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + }, + }, + '@fluentui/react-monaco-editor:bundle': { + roots: ['@fluentui/react-monaco-editor:bundle'], + tasks: { + '@fluentui/react-monaco-editor:bundle': { + id: '@fluentui/react-monaco-editor:bundle', + target: { project: '@fluentui/react-monaco-editor', target: 'bundle' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:bundle': [] }, + }, + '@fluentui/react-monaco-editor:lint': { + roots: ['@fluentui/react-monaco-editor:lint'], + tasks: { + '@fluentui/react-monaco-editor:lint': { + id: '@fluentui/react-monaco-editor:lint', + target: { project: '@fluentui/react-monaco-editor', target: 'lint' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:lint': [] }, + }, + '@fluentui/react-monaco-editor:test': { + roots: ['@fluentui/react-monaco-editor:test'], + tasks: { + '@fluentui/react-monaco-editor:test': { + id: '@fluentui/react-monaco-editor:test', + target: { project: '@fluentui/react-monaco-editor', target: 'test' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:test': [] }, + }, + '@fluentui/react-monaco-editor:clean': { + roots: ['@fluentui/react-monaco-editor:clean'], + tasks: { + '@fluentui/react-monaco-editor:clean': { + id: '@fluentui/react-monaco-editor:clean', + target: { project: '@fluentui/react-monaco-editor', target: 'clean' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:clean': [] }, + }, + '@fluentui/react-monaco-editor:code-style': { + roots: ['@fluentui/react-monaco-editor:code-style'], + tasks: { + '@fluentui/react-monaco-editor:code-style': { + id: '@fluentui/react-monaco-editor:code-style', + target: { project: '@fluentui/react-monaco-editor', target: 'code-style' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:code-style': [] }, + }, + '@fluentui/react-monaco-editor:start': { + roots: ['@fluentui/react-monaco-editor:start'], + tasks: { + '@fluentui/react-monaco-editor:start': { + id: '@fluentui/react-monaco-editor:start', + target: { project: '@fluentui/react-monaco-editor', target: 'start' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:start': [] }, + }, + '@fluentui/react-monaco-editor:start-test': { + roots: ['@fluentui/react-monaco-editor:start-test'], + tasks: { + '@fluentui/react-monaco-editor:start-test': { + id: '@fluentui/react-monaco-editor:start-test', + target: { project: '@fluentui/react-monaco-editor', target: 'start-test' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:start-test': [] }, + }, + '@fluentui/react-monaco-editor:update-snapshots': { + roots: ['@fluentui/react-monaco-editor:update-snapshots'], + tasks: { + '@fluentui/react-monaco-editor:update-snapshots': { + id: '@fluentui/react-monaco-editor:update-snapshots', + target: { project: '@fluentui/react-monaco-editor', target: 'update-snapshots' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:update-snapshots': [] }, + }, + '@fluentui/react-monaco-editor:just': { + roots: ['@fluentui/react-monaco-editor:just'], + tasks: { + '@fluentui/react-monaco-editor:just': { + id: '@fluentui/react-monaco-editor:just', + target: { project: '@fluentui/react-monaco-editor', target: 'just' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-monaco-editor:just': [] }, + }, + '@fluentui/react-monaco-editor:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-monaco-editor:nx-release-publish': { + id: '@fluentui/react-monaco-editor:nx-release-publish', + target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/react-monaco-editor', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:nx-release-publish': { + id: '@fluentui/monaco-editor:nx-release-publish', + target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-monaco-editor:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/monaco-editor:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/monaco-editor:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + }, + }, + '@fluentui/react-icon-provider:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/react-icon-provider:build': { + id: '@fluentui/react-icon-provider:build', + target: { project: '@fluentui/react-icon-provider', target: 'build' }, + projectRoot: 'packages/react-icon-provider', + overrides: {}, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/react-icon-provider:bundle': { + roots: ['@fluentui/react-icon-provider:bundle'], + tasks: { + '@fluentui/react-icon-provider:bundle': { + id: '@fluentui/react-icon-provider:bundle', + target: { project: '@fluentui/react-icon-provider', target: 'bundle' }, + projectRoot: 'packages/react-icon-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icon-provider:bundle': [] }, + }, + '@fluentui/react-icon-provider:clean': { + roots: ['@fluentui/react-icon-provider:clean'], + tasks: { + '@fluentui/react-icon-provider:clean': { + id: '@fluentui/react-icon-provider:clean', + target: { project: '@fluentui/react-icon-provider', target: 'clean' }, + projectRoot: 'packages/react-icon-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icon-provider:clean': [] }, + }, + '@fluentui/react-icon-provider:code-style': { + roots: ['@fluentui/react-icon-provider:code-style'], + tasks: { + '@fluentui/react-icon-provider:code-style': { + id: '@fluentui/react-icon-provider:code-style', + target: { project: '@fluentui/react-icon-provider', target: 'code-style' }, + projectRoot: 'packages/react-icon-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icon-provider:code-style': [] }, + }, + '@fluentui/react-icon-provider:just': { + roots: ['@fluentui/react-icon-provider:just'], + tasks: { + '@fluentui/react-icon-provider:just': { + id: '@fluentui/react-icon-provider:just', + target: { project: '@fluentui/react-icon-provider', target: 'just' }, + projectRoot: 'packages/react-icon-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icon-provider:just': [] }, + }, + '@fluentui/react-icon-provider:lint': { + roots: ['@fluentui/react-icon-provider:lint'], + tasks: { + '@fluentui/react-icon-provider:lint': { + id: '@fluentui/react-icon-provider:lint', + target: { project: '@fluentui/react-icon-provider', target: 'lint' }, + projectRoot: 'packages/react-icon-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icon-provider:lint': [] }, + }, + '@fluentui/react-icon-provider:test': { + roots: ['@fluentui/react-icon-provider:test'], + tasks: { + '@fluentui/react-icon-provider:test': { + id: '@fluentui/react-icon-provider:test', + target: { project: '@fluentui/react-icon-provider', target: 'test' }, + projectRoot: 'packages/react-icon-provider', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icon-provider:test': [] }, + }, + '@fluentui/react-icon-provider:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-icon-provider:nx-release-publish': { + id: '@fluentui/react-icon-provider:nx-release-publish', + target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icon-provider', + overrides: {}, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-icon-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/scripts-perf-test-flamegrill:format': { + roots: ['@fluentui/scripts-perf-test-flamegrill:format'], + tasks: { + '@fluentui/scripts-perf-test-flamegrill:format': { + id: '@fluentui/scripts-perf-test-flamegrill:format', + target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'format' }, + projectRoot: 'scripts/perf-test-flamegrill', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-perf-test-flamegrill:format': [] }, + }, + '@fluentui/scripts-perf-test-flamegrill:format:check': { + roots: ['@fluentui/scripts-perf-test-flamegrill:format:check'], + tasks: { + '@fluentui/scripts-perf-test-flamegrill:format:check': { + id: '@fluentui/scripts-perf-test-flamegrill:format:check', + target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'format:check' }, + projectRoot: 'scripts/perf-test-flamegrill', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-perf-test-flamegrill:format:check': [] }, + }, + '@fluentui/scripts-perf-test-flamegrill:lint': { + roots: ['@fluentui/scripts-perf-test-flamegrill:lint'], + tasks: { + '@fluentui/scripts-perf-test-flamegrill:lint': { + id: '@fluentui/scripts-perf-test-flamegrill:lint', + target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'lint' }, + projectRoot: 'scripts/perf-test-flamegrill', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-perf-test-flamegrill:lint': [] }, + }, + '@fluentui/scripts-perf-test-flamegrill:test': { + roots: ['@fluentui/scripts-perf-test-flamegrill:test'], + tasks: { + '@fluentui/scripts-perf-test-flamegrill:test': { + id: '@fluentui/scripts-perf-test-flamegrill:test', + target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'test' }, + projectRoot: 'scripts/perf-test-flamegrill', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-perf-test-flamegrill:test': [] }, + }, + '@fluentui/scripts-perf-test-flamegrill:type-check': { + roots: ['@fluentui/scripts-perf-test-flamegrill:type-check'], + tasks: { + '@fluentui/scripts-perf-test-flamegrill:type-check': { + id: '@fluentui/scripts-perf-test-flamegrill:type-check', + target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'type-check' }, + projectRoot: 'scripts/perf-test-flamegrill', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-perf-test-flamegrill:type-check': [] }, + }, + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': { + roots: ['@fluentui/scripts-perf-test-flamegrill:nx-release-publish'], + tasks: { + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': { + id: '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', + target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'nx-release-publish' }, + projectRoot: 'scripts/perf-test-flamegrill', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': [] }, + }, + '@fluentui/date-time-utilities:build': { + roots: ['@fluentui/set-version:build'], + tasks: { + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: {}, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + }, + }, + '@fluentui/date-time-utilities:test': { + roots: ['@fluentui/date-time-utilities:test'], + tasks: { + '@fluentui/date-time-utilities:test': { + id: '@fluentui/date-time-utilities:test', + target: { project: '@fluentui/date-time-utilities', target: 'test' }, + projectRoot: 'packages/date-time-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/date-time-utilities:test': [] }, + }, + '@fluentui/date-time-utilities:just': { + roots: ['@fluentui/date-time-utilities:just'], + tasks: { + '@fluentui/date-time-utilities:just': { + id: '@fluentui/date-time-utilities:just', + target: { project: '@fluentui/date-time-utilities', target: 'just' }, + projectRoot: 'packages/date-time-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/date-time-utilities:just': [] }, + }, + '@fluentui/date-time-utilities:code-style': { + roots: ['@fluentui/date-time-utilities:code-style'], + tasks: { + '@fluentui/date-time-utilities:code-style': { + id: '@fluentui/date-time-utilities:code-style', + target: { project: '@fluentui/date-time-utilities', target: 'code-style' }, + projectRoot: 'packages/date-time-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/date-time-utilities:code-style': [] }, + }, + '@fluentui/date-time-utilities:clean': { + roots: ['@fluentui/date-time-utilities:clean'], + tasks: { + '@fluentui/date-time-utilities:clean': { + id: '@fluentui/date-time-utilities:clean', + target: { project: '@fluentui/date-time-utilities', target: 'clean' }, + projectRoot: 'packages/date-time-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/date-time-utilities:clean': [] }, + }, + '@fluentui/date-time-utilities:start-test': { + roots: ['@fluentui/date-time-utilities:start-test'], + tasks: { + '@fluentui/date-time-utilities:start-test': { + id: '@fluentui/date-time-utilities:start-test', + target: { project: '@fluentui/date-time-utilities', target: 'start-test' }, + projectRoot: 'packages/date-time-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/date-time-utilities:start-test': [] }, + }, + '@fluentui/date-time-utilities:lint': { + roots: ['@fluentui/date-time-utilities:lint'], + tasks: { + '@fluentui/date-time-utilities:lint': { + id: '@fluentui/date-time-utilities:lint', + target: { project: '@fluentui/date-time-utilities', target: 'lint' }, + projectRoot: 'packages/date-time-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/date-time-utilities:lint': [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: {}, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/scripts-bundle-size-auditor:format': { + roots: ['@fluentui/scripts-bundle-size-auditor:format'], + tasks: { + '@fluentui/scripts-bundle-size-auditor:format': { + id: '@fluentui/scripts-bundle-size-auditor:format', + target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'format' }, + projectRoot: 'scripts/bundle-size-auditor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-bundle-size-auditor:format': [] }, + }, + '@fluentui/scripts-bundle-size-auditor:format:check': { + roots: ['@fluentui/scripts-bundle-size-auditor:format:check'], + tasks: { + '@fluentui/scripts-bundle-size-auditor:format:check': { + id: '@fluentui/scripts-bundle-size-auditor:format:check', + target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'format:check' }, + projectRoot: 'scripts/bundle-size-auditor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-bundle-size-auditor:format:check': [] }, + }, + '@fluentui/scripts-bundle-size-auditor:lint': { + roots: ['@fluentui/scripts-bundle-size-auditor:lint'], + tasks: { + '@fluentui/scripts-bundle-size-auditor:lint': { + id: '@fluentui/scripts-bundle-size-auditor:lint', + target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'lint' }, + projectRoot: 'scripts/bundle-size-auditor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-bundle-size-auditor:lint': [] }, + }, + '@fluentui/scripts-bundle-size-auditor:test': { + roots: ['@fluentui/scripts-bundle-size-auditor:test'], + tasks: { + '@fluentui/scripts-bundle-size-auditor:test': { + id: '@fluentui/scripts-bundle-size-auditor:test', + target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'test' }, + projectRoot: 'scripts/bundle-size-auditor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-bundle-size-auditor:test': [] }, + }, + '@fluentui/scripts-bundle-size-auditor:type-check': { + roots: ['@fluentui/scripts-bundle-size-auditor:type-check'], + tasks: { + '@fluentui/scripts-bundle-size-auditor:type-check': { + id: '@fluentui/scripts-bundle-size-auditor:type-check', + target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'type-check' }, + projectRoot: 'scripts/bundle-size-auditor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-bundle-size-auditor:type-check': [] }, + }, + '@fluentui/scripts-bundle-size-auditor:nx-release-publish': { + roots: ['@fluentui/scripts-bundle-size-auditor:nx-release-publish'], + tasks: { + '@fluentui/scripts-bundle-size-auditor:nx-release-publish': { + id: '@fluentui/scripts-bundle-size-auditor:nx-release-publish', + target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'nx-release-publish' }, + projectRoot: 'scripts/bundle-size-auditor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-bundle-size-auditor:nx-release-publish': [] }, + }, + '@fluentui/react-experiments:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/react-experiments:build': { + id: '@fluentui/react-experiments:build', + target: { project: '@fluentui/react-experiments', target: 'build' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-experiments:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + }, + }, + '@fluentui/react-experiments:bundle': { + roots: ['@fluentui/react-experiments:bundle'], + tasks: { + '@fluentui/react-experiments:bundle': { + id: '@fluentui/react-experiments:bundle', + target: { project: '@fluentui/react-experiments', target: 'bundle' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:bundle': [] }, + }, + '@fluentui/react-experiments:lint': { + roots: ['@fluentui/react-experiments:lint'], + tasks: { + '@fluentui/react-experiments:lint': { + id: '@fluentui/react-experiments:lint', + target: { project: '@fluentui/react-experiments', target: 'lint' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:lint': [] }, + }, + '@fluentui/react-experiments:test': { + roots: ['@fluentui/react-experiments:test'], + tasks: { + '@fluentui/react-experiments:test': { + id: '@fluentui/react-experiments:test', + target: { project: '@fluentui/react-experiments', target: 'test' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:test': [] }, + }, + '@fluentui/react-experiments:just': { + roots: ['@fluentui/react-experiments:just'], + tasks: { + '@fluentui/react-experiments:just': { + id: '@fluentui/react-experiments:just', + target: { project: '@fluentui/react-experiments', target: 'just' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:just': [] }, + }, + '@fluentui/react-experiments:clean': { + roots: ['@fluentui/react-experiments:clean'], + tasks: { + '@fluentui/react-experiments:clean': { + id: '@fluentui/react-experiments:clean', + target: { project: '@fluentui/react-experiments', target: 'clean' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:clean': [] }, + }, + '@fluentui/react-experiments:code-style': { + roots: ['@fluentui/react-experiments:code-style'], + tasks: { + '@fluentui/react-experiments:code-style': { + id: '@fluentui/react-experiments:code-style', + target: { project: '@fluentui/react-experiments', target: 'code-style' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:code-style': [] }, + }, + '@fluentui/react-experiments:start': { + roots: ['@fluentui/react-experiments:start'], + tasks: { + '@fluentui/react-experiments:start': { + id: '@fluentui/react-experiments:start', + target: { project: '@fluentui/react-experiments', target: 'start' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:start': [] }, + }, + '@fluentui/react-experiments:start:legacy': { + roots: ['@fluentui/react-experiments:start:legacy'], + tasks: { + '@fluentui/react-experiments:start:legacy': { + id: '@fluentui/react-experiments:start:legacy', + target: { project: '@fluentui/react-experiments', target: 'start:legacy' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:start:legacy': [] }, + }, + '@fluentui/react-experiments:start-test': { + roots: ['@fluentui/react-experiments:start-test'], + tasks: { + '@fluentui/react-experiments:start-test': { + id: '@fluentui/react-experiments:start-test', + target: { project: '@fluentui/react-experiments', target: 'start-test' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:start-test': [] }, + }, + '@fluentui/react-experiments:update-snapshots': { + roots: ['@fluentui/react-experiments:update-snapshots'], + tasks: { + '@fluentui/react-experiments:update-snapshots': { + id: '@fluentui/react-experiments:update-snapshots', + target: { project: '@fluentui/react-experiments', target: 'update-snapshots' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-experiments:update-snapshots': [] }, + }, + '@fluentui/react-experiments:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-experiments:nx-release-publish': { + id: '@fluentui/react-experiments:nx-release-publish', + target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, + projectRoot: 'packages/react-experiments', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-experiments:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/webpack-utilities:build': { + roots: ['@fluentui/webpack-utilities:build'], + tasks: { + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/webpack-utilities:build': [] }, + }, + '@fluentui/webpack-utilities:clean': { + roots: ['@fluentui/webpack-utilities:clean'], + tasks: { + '@fluentui/webpack-utilities:clean': { + id: '@fluentui/webpack-utilities:clean', + target: { project: '@fluentui/webpack-utilities', target: 'clean' }, + projectRoot: 'packages/webpack-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/webpack-utilities:clean': [] }, + }, + '@fluentui/webpack-utilities:code-style': { + roots: ['@fluentui/webpack-utilities:code-style'], + tasks: { + '@fluentui/webpack-utilities:code-style': { + id: '@fluentui/webpack-utilities:code-style', + target: { project: '@fluentui/webpack-utilities', target: 'code-style' }, + projectRoot: 'packages/webpack-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/webpack-utilities:code-style': [] }, + }, + '@fluentui/webpack-utilities:just': { + roots: ['@fluentui/webpack-utilities:just'], + tasks: { + '@fluentui/webpack-utilities:just': { + id: '@fluentui/webpack-utilities:just', + target: { project: '@fluentui/webpack-utilities', target: 'just' }, + projectRoot: 'packages/webpack-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/webpack-utilities:just': [] }, + }, + '@fluentui/webpack-utilities:lint': { + roots: ['@fluentui/webpack-utilities:lint'], + tasks: { + '@fluentui/webpack-utilities:lint': { + id: '@fluentui/webpack-utilities:lint', + target: { project: '@fluentui/webpack-utilities', target: 'lint' }, + projectRoot: 'packages/webpack-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/webpack-utilities:lint': [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-conformance:build': { + roots: ['@fluentui/react-conformance:build'], + tasks: { + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance:build': [] }, + }, + '@fluentui/react-conformance:clean': { + roots: ['@fluentui/react-conformance:clean'], + tasks: { + '@fluentui/react-conformance:clean': { + id: '@fluentui/react-conformance:clean', + target: { project: '@fluentui/react-conformance', target: 'clean' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance:clean': [] }, + }, + '@fluentui/react-conformance:code-style': { + roots: ['@fluentui/react-conformance:code-style'], + tasks: { + '@fluentui/react-conformance:code-style': { + id: '@fluentui/react-conformance:code-style', + target: { project: '@fluentui/react-conformance', target: 'code-style' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance:code-style': [] }, + }, + '@fluentui/react-conformance:just': { + roots: ['@fluentui/react-conformance:just'], + tasks: { + '@fluentui/react-conformance:just': { + id: '@fluentui/react-conformance:just', + target: { project: '@fluentui/react-conformance', target: 'just' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance:just': [] }, + }, + '@fluentui/react-conformance:test': { + roots: ['@fluentui/react-conformance:test'], + tasks: { + '@fluentui/react-conformance:test': { + id: '@fluentui/react-conformance:test', + target: { project: '@fluentui/react-conformance', target: 'test' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance:test': [] }, + }, + '@fluentui/react-conformance:lint': { + roots: ['@fluentui/react-conformance:lint'], + tasks: { + '@fluentui/react-conformance:lint': { + id: '@fluentui/react-conformance:lint', + target: { project: '@fluentui/react-conformance', target: 'lint' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance:lint': [] }, + }, + '@fluentui/react-conformance:generate-api': { + roots: ['@fluentui/react-conformance:generate-api'], + tasks: { + '@fluentui/react-conformance:generate-api': { + id: '@fluentui/react-conformance:generate-api', + target: { project: '@fluentui/react-conformance', target: 'generate-api' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance:generate-api': [] }, + }, + '@fluentui/react-conformance:type-check': { + roots: ['@fluentui/react-conformance:type-check'], + tasks: { + '@fluentui/react-conformance:type-check': { + id: '@fluentui/react-conformance:type-check', + target: { project: '@fluentui/react-conformance', target: 'type-check' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-conformance:type-check': [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/foundation-legacy:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/foundation-legacy:bundle': { + roots: ['@fluentui/foundation-legacy:bundle'], + tasks: { + '@fluentui/foundation-legacy:bundle': { + id: '@fluentui/foundation-legacy:bundle', + target: { project: '@fluentui/foundation-legacy', target: 'bundle' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + }, + dependencies: { '@fluentui/foundation-legacy:bundle': [] }, + }, + '@fluentui/foundation-legacy:clean': { + roots: ['@fluentui/foundation-legacy:clean'], + tasks: { + '@fluentui/foundation-legacy:clean': { + id: '@fluentui/foundation-legacy:clean', + target: { project: '@fluentui/foundation-legacy', target: 'clean' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + }, + dependencies: { '@fluentui/foundation-legacy:clean': [] }, + }, + '@fluentui/foundation-legacy:code-style': { + roots: ['@fluentui/foundation-legacy:code-style'], + tasks: { + '@fluentui/foundation-legacy:code-style': { + id: '@fluentui/foundation-legacy:code-style', + target: { project: '@fluentui/foundation-legacy', target: 'code-style' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + }, + dependencies: { '@fluentui/foundation-legacy:code-style': [] }, + }, + '@fluentui/foundation-legacy:just': { + roots: ['@fluentui/foundation-legacy:just'], + tasks: { + '@fluentui/foundation-legacy:just': { + id: '@fluentui/foundation-legacy:just', + target: { project: '@fluentui/foundation-legacy', target: 'just' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + }, + dependencies: { '@fluentui/foundation-legacy:just': [] }, + }, + '@fluentui/foundation-legacy:lint': { + roots: ['@fluentui/foundation-legacy:lint'], + tasks: { + '@fluentui/foundation-legacy:lint': { + id: '@fluentui/foundation-legacy:lint', + target: { project: '@fluentui/foundation-legacy', target: 'lint' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + }, + dependencies: { '@fluentui/foundation-legacy:lint': [] }, + }, + '@fluentui/foundation-legacy:start-test': { + roots: ['@fluentui/foundation-legacy:start-test'], + tasks: { + '@fluentui/foundation-legacy:start-test': { + id: '@fluentui/foundation-legacy:start-test', + target: { project: '@fluentui/foundation-legacy', target: 'start-test' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + }, + dependencies: { '@fluentui/foundation-legacy:start-test': [] }, + }, + '@fluentui/foundation-legacy:test': { + roots: ['@fluentui/foundation-legacy:test'], + tasks: { + '@fluentui/foundation-legacy:test': { + id: '@fluentui/foundation-legacy:test', + target: { project: '@fluentui/foundation-legacy', target: 'test' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + }, + dependencies: { '@fluentui/foundation-legacy:test': [] }, + }, + '@fluentui/foundation-legacy:update-snapshots': { + roots: ['@fluentui/foundation-legacy:update-snapshots'], + tasks: { + '@fluentui/foundation-legacy:update-snapshots': { + id: '@fluentui/foundation-legacy:update-snapshots', + target: { project: '@fluentui/foundation-legacy', target: 'update-snapshots' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + }, + dependencies: { '@fluentui/foundation-legacy:update-snapshots': [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: {}, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/scheme-utilities:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: {}, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/scheme-utilities:bundle': { + roots: ['@fluentui/scheme-utilities:bundle'], + tasks: { + '@fluentui/scheme-utilities:bundle': { + id: '@fluentui/scheme-utilities:bundle', + target: { project: '@fluentui/scheme-utilities', target: 'bundle' }, + projectRoot: 'packages/scheme-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scheme-utilities:bundle': [] }, + }, + '@fluentui/scheme-utilities:lint': { + roots: ['@fluentui/scheme-utilities:lint'], + tasks: { + '@fluentui/scheme-utilities:lint': { + id: '@fluentui/scheme-utilities:lint', + target: { project: '@fluentui/scheme-utilities', target: 'lint' }, + projectRoot: 'packages/scheme-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scheme-utilities:lint': [] }, + }, + '@fluentui/scheme-utilities:just': { + roots: ['@fluentui/scheme-utilities:just'], + tasks: { + '@fluentui/scheme-utilities:just': { + id: '@fluentui/scheme-utilities:just', + target: { project: '@fluentui/scheme-utilities', target: 'just' }, + projectRoot: 'packages/scheme-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scheme-utilities:just': [] }, + }, + '@fluentui/scheme-utilities:clean': { + roots: ['@fluentui/scheme-utilities:clean'], + tasks: { + '@fluentui/scheme-utilities:clean': { + id: '@fluentui/scheme-utilities:clean', + target: { project: '@fluentui/scheme-utilities', target: 'clean' }, + projectRoot: 'packages/scheme-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scheme-utilities:clean': [] }, + }, + '@fluentui/scheme-utilities:code-style': { + roots: ['@fluentui/scheme-utilities:code-style'], + tasks: { + '@fluentui/scheme-utilities:code-style': { + id: '@fluentui/scheme-utilities:code-style', + target: { project: '@fluentui/scheme-utilities', target: 'code-style' }, + projectRoot: 'packages/scheme-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scheme-utilities:code-style': [] }, + }, + '@fluentui/scheme-utilities:start-test': { + roots: ['@fluentui/scheme-utilities:start-test'], + tasks: { + '@fluentui/scheme-utilities:start-test': { + id: '@fluentui/scheme-utilities:start-test', + target: { project: '@fluentui/scheme-utilities', target: 'start-test' }, + projectRoot: 'packages/scheme-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scheme-utilities:start-test': [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: {}, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/ts-minbar-test-react:type-check': { + roots: ['@fluentui/ts-minbar-test-react:type-check'], + tasks: { + '@fluentui/ts-minbar-test-react:type-check': { + id: '@fluentui/ts-minbar-test-react:type-check', + target: { project: '@fluentui/ts-minbar-test-react', target: 'type-check' }, + projectRoot: 'apps/ts-minbar-test-react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ts-minbar-test-react:type-check': [] }, + }, + '@fluentui/ts-minbar-test-react:test': { + roots: ['@fluentui/ts-minbar-test-react:test'], + tasks: { + '@fluentui/ts-minbar-test-react:test': { + id: '@fluentui/ts-minbar-test-react:test', + target: { project: '@fluentui/ts-minbar-test-react', target: 'test' }, + projectRoot: 'apps/ts-minbar-test-react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ts-minbar-test-react:test': [] }, + }, + '@fluentui/ts-minbar-test-react:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/ts-minbar-test-react:nx-release-publish': { + id: '@fluentui/ts-minbar-test-react:nx-release-publish', + target: { project: '@fluentui/ts-minbar-test-react', target: 'nx-release-publish' }, + projectRoot: 'apps/ts-minbar-test-react', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/ts-minbar-test-react:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + }, + }, + '@fluentui/react-icons-mdl2:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/react-icons-mdl2:build': { + id: '@fluentui/react-icons-mdl2:build', + target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + '@fluentui/react-icon-provider:build': { + id: '@fluentui/react-icon-provider:build', + target: { project: '@fluentui/react-icon-provider', target: 'build' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-icons-mdl2:build': [ + '@fluentui/react-icon-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/react-icons-mdl2:bundle': { + roots: ['@fluentui/react-icons-mdl2:bundle'], + tasks: { + '@fluentui/react-icons-mdl2:bundle': { + id: '@fluentui/react-icons-mdl2:bundle', + target: { project: '@fluentui/react-icons-mdl2', target: 'bundle' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2:bundle': [] }, + }, + '@fluentui/react-icons-mdl2:clean': { + roots: ['@fluentui/react-icons-mdl2:clean'], + tasks: { + '@fluentui/react-icons-mdl2:clean': { + id: '@fluentui/react-icons-mdl2:clean', + target: { project: '@fluentui/react-icons-mdl2', target: 'clean' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2:clean': [] }, + }, + '@fluentui/react-icons-mdl2:code-style': { + roots: ['@fluentui/react-icons-mdl2:code-style'], + tasks: { + '@fluentui/react-icons-mdl2:code-style': { + id: '@fluentui/react-icons-mdl2:code-style', + target: { project: '@fluentui/react-icons-mdl2', target: 'code-style' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2:code-style': [] }, + }, + '@fluentui/react-icons-mdl2:just': { + roots: ['@fluentui/react-icons-mdl2:just'], + tasks: { + '@fluentui/react-icons-mdl2:just': { + id: '@fluentui/react-icons-mdl2:just', + target: { project: '@fluentui/react-icons-mdl2', target: 'just' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2:just': [] }, + }, + '@fluentui/react-icons-mdl2:lint': { + roots: ['@fluentui/react-icons-mdl2:lint'], + tasks: { + '@fluentui/react-icons-mdl2:lint': { + id: '@fluentui/react-icons-mdl2:lint', + target: { project: '@fluentui/react-icons-mdl2', target: 'lint' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2:lint': [] }, + }, + '@fluentui/react-icons-mdl2:start-test': { + roots: ['@fluentui/react-icons-mdl2:start-test'], + tasks: { + '@fluentui/react-icons-mdl2:start-test': { + id: '@fluentui/react-icons-mdl2:start-test', + target: { project: '@fluentui/react-icons-mdl2', target: 'start-test' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2:start-test': [] }, + }, + '@fluentui/react-icons-mdl2:test': { + roots: ['@fluentui/react-icons-mdl2:test'], + tasks: { + '@fluentui/react-icons-mdl2:test': { + id: '@fluentui/react-icons-mdl2:test', + target: { project: '@fluentui/react-icons-mdl2', target: 'test' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2:test': [] }, + }, + '@fluentui/react-icons-mdl2:update-snapshots': { + roots: ['@fluentui/react-icons-mdl2:update-snapshots'], + tasks: { + '@fluentui/react-icons-mdl2:update-snapshots': { + id: '@fluentui/react-icons-mdl2:update-snapshots', + target: { project: '@fluentui/react-icons-mdl2', target: 'update-snapshots' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-icons-mdl2:update-snapshots': [] }, + }, + '@fluentui/react-icons-mdl2:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-icons-mdl2:nx-release-publish': { + id: '@fluentui/react-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: {}, + }, + '@fluentui/react-icon-provider:nx-release-publish': { + id: '@fluentui/react-icon-provider:nx-release-publish', + target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-icons-mdl2:nx-release-publish': [ + '@fluentui/react-icon-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icon-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-date-time:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/react-date-time:build': { + id: '@fluentui/react-date-time:build', + target: { project: '@fluentui/react-date-time', target: 'build' }, + projectRoot: 'packages/react-date-time', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-date-time:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + }, + }, + '@fluentui/react-date-time:bundle': { + roots: ['@fluentui/react-date-time:bundle'], + tasks: { + '@fluentui/react-date-time:bundle': { + id: '@fluentui/react-date-time:bundle', + target: { project: '@fluentui/react-date-time', target: 'bundle' }, + projectRoot: 'packages/react-date-time', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-date-time:bundle': [] }, + }, + '@fluentui/react-date-time:lint': { + roots: ['@fluentui/react-date-time:lint'], + tasks: { + '@fluentui/react-date-time:lint': { + id: '@fluentui/react-date-time:lint', + target: { project: '@fluentui/react-date-time', target: 'lint' }, + projectRoot: 'packages/react-date-time', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-date-time:lint': [] }, + }, + '@fluentui/react-date-time:just': { + roots: ['@fluentui/react-date-time:just'], + tasks: { + '@fluentui/react-date-time:just': { + id: '@fluentui/react-date-time:just', + target: { project: '@fluentui/react-date-time', target: 'just' }, + projectRoot: 'packages/react-date-time', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-date-time:just': [] }, + }, + '@fluentui/react-date-time:clean': { + roots: ['@fluentui/react-date-time:clean'], + tasks: { + '@fluentui/react-date-time:clean': { + id: '@fluentui/react-date-time:clean', + target: { project: '@fluentui/react-date-time', target: 'clean' }, + projectRoot: 'packages/react-date-time', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-date-time:clean': [] }, + }, + '@fluentui/react-date-time:code-style': { + roots: ['@fluentui/react-date-time:code-style'], + tasks: { + '@fluentui/react-date-time:code-style': { + id: '@fluentui/react-date-time:code-style', + target: { project: '@fluentui/react-date-time', target: 'code-style' }, + projectRoot: 'packages/react-date-time', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-date-time:code-style': [] }, + }, + '@fluentui/react-date-time:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-date-time:nx-release-publish': { + id: '@fluentui/react-date-time:nx-release-publish', + target: { project: '@fluentui/react-date-time', target: 'nx-release-publish' }, + projectRoot: 'packages/react-date-time', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-date-time:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/scripts-fluentui-publish:format': { + roots: ['@fluentui/scripts-fluentui-publish:format'], + tasks: { + '@fluentui/scripts-fluentui-publish:format': { + id: '@fluentui/scripts-fluentui-publish:format', + target: { project: '@fluentui/scripts-fluentui-publish', target: 'format' }, + projectRoot: 'scripts/fluentui-publish', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-fluentui-publish:format': [] }, + }, + '@fluentui/scripts-fluentui-publish:format:check': { + roots: ['@fluentui/scripts-fluentui-publish:format:check'], + tasks: { + '@fluentui/scripts-fluentui-publish:format:check': { + id: '@fluentui/scripts-fluentui-publish:format:check', + target: { project: '@fluentui/scripts-fluentui-publish', target: 'format:check' }, + projectRoot: 'scripts/fluentui-publish', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-fluentui-publish:format:check': [] }, + }, + '@fluentui/scripts-fluentui-publish:lint': { + roots: ['@fluentui/scripts-fluentui-publish:lint'], + tasks: { + '@fluentui/scripts-fluentui-publish:lint': { + id: '@fluentui/scripts-fluentui-publish:lint', + target: { project: '@fluentui/scripts-fluentui-publish', target: 'lint' }, + projectRoot: 'scripts/fluentui-publish', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-fluentui-publish:lint': [] }, + }, + '@fluentui/scripts-fluentui-publish:test': { + roots: ['@fluentui/scripts-fluentui-publish:test'], + tasks: { + '@fluentui/scripts-fluentui-publish:test': { + id: '@fluentui/scripts-fluentui-publish:test', + target: { project: '@fluentui/scripts-fluentui-publish', target: 'test' }, + projectRoot: 'scripts/fluentui-publish', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-fluentui-publish:test': [] }, + }, + '@fluentui/scripts-fluentui-publish:type-check': { + roots: ['@fluentui/scripts-fluentui-publish:type-check'], + tasks: { + '@fluentui/scripts-fluentui-publish:type-check': { + id: '@fluentui/scripts-fluentui-publish:type-check', + target: { project: '@fluentui/scripts-fluentui-publish', target: 'type-check' }, + projectRoot: 'scripts/fluentui-publish', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-fluentui-publish:type-check': [] }, + }, + '@fluentui/scripts-fluentui-publish:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-fluentui-publish:nx-release-publish': { + id: '@fluentui/scripts-fluentui-publish:nx-release-publish', + target: { project: '@fluentui/scripts-fluentui-publish', target: 'nx-release-publish' }, + projectRoot: 'scripts/fluentui-publish', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-fluentui-publish:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + }, + }, + '@fluentui/style-utilities:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/style-utilities:clean': { + roots: ['@fluentui/style-utilities:clean'], + tasks: { + '@fluentui/style-utilities:clean': { + id: '@fluentui/style-utilities:clean', + target: { project: '@fluentui/style-utilities', target: 'clean' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/style-utilities:clean': [] }, + }, + '@fluentui/style-utilities:code-style': { + roots: ['@fluentui/style-utilities:code-style'], + tasks: { + '@fluentui/style-utilities:code-style': { + id: '@fluentui/style-utilities:code-style', + target: { project: '@fluentui/style-utilities', target: 'code-style' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/style-utilities:code-style': [] }, + }, + '@fluentui/style-utilities:just': { + roots: ['@fluentui/style-utilities:just'], + tasks: { + '@fluentui/style-utilities:just': { + id: '@fluentui/style-utilities:just', + target: { project: '@fluentui/style-utilities', target: 'just' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/style-utilities:just': [] }, + }, + '@fluentui/style-utilities:lint': { + roots: ['@fluentui/style-utilities:lint'], + tasks: { + '@fluentui/style-utilities:lint': { + id: '@fluentui/style-utilities:lint', + target: { project: '@fluentui/style-utilities', target: 'lint' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/style-utilities:lint': [] }, + }, + '@fluentui/style-utilities:start-test': { + roots: ['@fluentui/style-utilities:start-test'], + tasks: { + '@fluentui/style-utilities:start-test': { + id: '@fluentui/style-utilities:start-test', + target: { project: '@fluentui/style-utilities', target: 'start-test' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/style-utilities:start-test': [] }, + }, + '@fluentui/style-utilities:test': { + roots: ['@fluentui/style-utilities:test'], + tasks: { + '@fluentui/style-utilities:test': { + id: '@fluentui/style-utilities:test', + target: { project: '@fluentui/style-utilities', target: 'test' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/style-utilities:test': [] }, + }, + '@fluentui/style-utilities:update-snapshots': { + roots: ['@fluentui/style-utilities:update-snapshots'], + tasks: { + '@fluentui/style-utilities:update-snapshots': { + id: '@fluentui/style-utilities:update-snapshots', + target: { project: '@fluentui/style-utilities', target: 'update-snapshots' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/style-utilities:update-snapshots': [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: {}, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/digest:build': { + roots: ['@fluentui/digest:build'], + tasks: { + '@fluentui/digest:build': { + id: '@fluentui/digest:build', + target: { project: '@fluentui/digest', target: 'build' }, + projectRoot: 'packages/fluentui/digest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/digest:build': [] }, + }, + '@fluentui/digest:clean': { + roots: ['@fluentui/digest:clean'], + tasks: { + '@fluentui/digest:clean': { + id: '@fluentui/digest:clean', + target: { project: '@fluentui/digest', target: 'clean' }, + projectRoot: 'packages/fluentui/digest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/digest:clean': [] }, + }, + '@fluentui/digest:test': { + roots: ['@fluentui/digest:test'], + tasks: { + '@fluentui/digest:test': { + id: '@fluentui/digest:test', + target: { project: '@fluentui/digest', target: 'test' }, + projectRoot: 'packages/fluentui/digest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/digest:test': [] }, + }, + '@fluentui/digest:nx-release-publish': { + roots: ['@fluentui/digest:nx-release-publish'], + tasks: { + '@fluentui/digest:nx-release-publish': { + id: '@fluentui/digest:nx-release-publish', + target: { project: '@fluentui/digest', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/digest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/digest:nx-release-publish': [] }, + }, + '@fluentui/styles:build': { + roots: ['@fluentui/styles:build'], + tasks: { + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/styles:build': [] }, + }, + '@fluentui/styles:clean': { + roots: ['@fluentui/styles:clean'], + tasks: { + '@fluentui/styles:clean': { + id: '@fluentui/styles:clean', + target: { project: '@fluentui/styles', target: 'clean' }, + projectRoot: 'packages/fluentui/styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/styles:clean': [] }, + }, + '@fluentui/styles:lint': { + roots: ['@fluentui/styles:lint'], + tasks: { + '@fluentui/styles:lint': { + id: '@fluentui/styles:lint', + target: { project: '@fluentui/styles', target: 'lint' }, + projectRoot: 'packages/fluentui/styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/styles:lint': [] }, + }, + '@fluentui/styles:lint:fix': { + roots: ['@fluentui/styles:lint:fix'], + tasks: { + '@fluentui/styles:lint:fix': { + id: '@fluentui/styles:lint:fix', + target: { project: '@fluentui/styles', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/styles:lint:fix': [] }, + }, + '@fluentui/styles:test': { + roots: ['@fluentui/styles:test'], + tasks: { + '@fluentui/styles:test': { + id: '@fluentui/styles:test', + target: { project: '@fluentui/styles', target: 'test' }, + projectRoot: 'packages/fluentui/styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/styles:test': [] }, + }, + '@fluentui/styles:test:watch': { + roots: ['@fluentui/styles:test:watch'], + tasks: { + '@fluentui/styles:test:watch': { + id: '@fluentui/styles:test:watch', + target: { project: '@fluentui/styles', target: 'test:watch' }, + projectRoot: 'packages/fluentui/styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/styles:test:watch': [] }, + }, + '@fluentui/styles:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/font-icons-mdl2:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: {}, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/font-icons-mdl2:clean': { + roots: ['@fluentui/font-icons-mdl2:clean'], + tasks: { + '@fluentui/font-icons-mdl2:clean': { + id: '@fluentui/font-icons-mdl2:clean', + target: { project: '@fluentui/font-icons-mdl2', target: 'clean' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/font-icons-mdl2:clean': [] }, + }, + '@fluentui/font-icons-mdl2:code-style': { + roots: ['@fluentui/font-icons-mdl2:code-style'], + tasks: { + '@fluentui/font-icons-mdl2:code-style': { + id: '@fluentui/font-icons-mdl2:code-style', + target: { project: '@fluentui/font-icons-mdl2', target: 'code-style' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/font-icons-mdl2:code-style': [] }, + }, + '@fluentui/font-icons-mdl2:just': { + roots: ['@fluentui/font-icons-mdl2:just'], + tasks: { + '@fluentui/font-icons-mdl2:just': { + id: '@fluentui/font-icons-mdl2:just', + target: { project: '@fluentui/font-icons-mdl2', target: 'just' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/font-icons-mdl2:just': [] }, + }, + '@fluentui/font-icons-mdl2:lint': { + roots: ['@fluentui/font-icons-mdl2:lint'], + tasks: { + '@fluentui/font-icons-mdl2:lint': { + id: '@fluentui/font-icons-mdl2:lint', + target: { project: '@fluentui/font-icons-mdl2', target: 'lint' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/font-icons-mdl2:lint': [] }, + }, + '@fluentui/font-icons-mdl2:test': { + roots: ['@fluentui/font-icons-mdl2:test'], + tasks: { + '@fluentui/font-icons-mdl2:test': { + id: '@fluentui/font-icons-mdl2:test', + target: { project: '@fluentui/font-icons-mdl2', target: 'test' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: {}, + }, + }, + dependencies: { '@fluentui/font-icons-mdl2:test': [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: {}, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/web-components:clean': { + roots: ['@fluentui/web-components:clean'], + tasks: { + '@fluentui/web-components:clean': { + id: '@fluentui/web-components:clean', + target: { project: '@fluentui/web-components', target: 'clean' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:clean': [] }, + }, + '@fluentui/web-components:doc': { + roots: ['@fluentui/web-components:doc'], + tasks: { + '@fluentui/web-components:doc': { + id: '@fluentui/web-components:doc', + target: { project: '@fluentui/web-components', target: 'doc' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:doc': [] }, + }, + '@fluentui/web-components:doc:ci': { + roots: ['@fluentui/web-components:doc:ci'], + tasks: { + '@fluentui/web-components:doc:ci': { + id: '@fluentui/web-components:doc:ci', + target: { project: '@fluentui/web-components', target: 'doc:ci' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:doc:ci': [] }, + }, + '@fluentui/web-components:build': { + roots: ['@fluentui/web-components:build'], + tasks: { + '@fluentui/web-components:build': { + id: '@fluentui/web-components:build', + target: { project: '@fluentui/web-components', target: 'build' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:build': [] }, + }, + '@fluentui/web-components:dev': { + roots: ['@fluentui/web-components:dev'], + tasks: { + '@fluentui/web-components:dev': { + id: '@fluentui/web-components:dev', + target: { project: '@fluentui/web-components', target: 'dev' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:dev': [] }, + }, + '@fluentui/web-components:tdd': { + roots: ['@fluentui/web-components:tdd'], + tasks: { + '@fluentui/web-components:tdd': { + id: '@fluentui/web-components:tdd', + target: { project: '@fluentui/web-components', target: 'tdd' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:tdd': [] }, + }, + '@fluentui/web-components:prepare': { + roots: ['@fluentui/web-components:prepare'], + tasks: { + '@fluentui/web-components:prepare': { + id: '@fluentui/web-components:prepare', + target: { project: '@fluentui/web-components', target: 'prepare' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:prepare': [] }, + }, + '@fluentui/web-components:lint': { + roots: ['@fluentui/web-components:lint'], + tasks: { + '@fluentui/web-components:lint': { + id: '@fluentui/web-components:lint', + target: { project: '@fluentui/web-components', target: 'lint' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:lint': [] }, + }, + '@fluentui/web-components:lint:fix': { + roots: ['@fluentui/web-components:lint:fix'], + tasks: { + '@fluentui/web-components:lint:fix': { + id: '@fluentui/web-components:lint:fix', + target: { project: '@fluentui/web-components', target: 'lint:fix' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:lint:fix': [] }, + }, + '@fluentui/web-components:format': { + roots: ['@fluentui/web-components:format'], + tasks: { + '@fluentui/web-components:format': { + id: '@fluentui/web-components:format', + target: { project: '@fluentui/web-components', target: 'format' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:format': [] }, + }, + '@fluentui/web-components:format:check': { + roots: ['@fluentui/web-components:format:check'], + tasks: { + '@fluentui/web-components:format:check': { + id: '@fluentui/web-components:format:check', + target: { project: '@fluentui/web-components', target: 'format:check' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:format:check': [] }, + }, + '@fluentui/web-components:code-style': { + roots: ['@fluentui/web-components:code-style'], + tasks: { + '@fluentui/web-components:code-style': { + id: '@fluentui/web-components:code-style', + target: { project: '@fluentui/web-components', target: 'code-style' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:code-style': [] }, + }, + '@fluentui/web-components:start': { + roots: ['@fluentui/web-components:start'], + tasks: { + '@fluentui/web-components:start': { + id: '@fluentui/web-components:start', + target: { project: '@fluentui/web-components', target: 'start' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:start': [] }, + }, + '@fluentui/web-components:start-storybook': { + roots: ['@fluentui/web-components:start-storybook'], + tasks: { + '@fluentui/web-components:start-storybook': { + id: '@fluentui/web-components:start-storybook', + target: { project: '@fluentui/web-components', target: 'start-storybook' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:start-storybook': [] }, + }, + '@fluentui/web-components:build-storybook': { + roots: ['@fluentui/web-components:build-storybook'], + tasks: { + '@fluentui/web-components:build-storybook': { + id: '@fluentui/web-components:build-storybook', + target: { project: '@fluentui/web-components', target: 'build-storybook' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:build-storybook': [] }, + }, + '@fluentui/web-components:test': { + roots: ['@fluentui/web-components:test'], + tasks: { + '@fluentui/web-components:test': { + id: '@fluentui/web-components:test', + target: { project: '@fluentui/web-components', target: 'test' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test': [] }, + }, + '@fluentui/web-components:test-node': { + roots: ['@fluentui/web-components:test-node'], + tasks: { + '@fluentui/web-components:test-node': { + id: '@fluentui/web-components:test-node', + target: { project: '@fluentui/web-components', target: 'test-node' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-node': [] }, + }, + '@fluentui/web-components:test-node:verbose': { + roots: ['@fluentui/web-components:test-node:verbose'], + tasks: { + '@fluentui/web-components:test-node:verbose': { + id: '@fluentui/web-components:test-node:verbose', + target: { project: '@fluentui/web-components', target: 'test-node:verbose' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-node:verbose': [] }, + }, + '@fluentui/web-components:test-chrome': { + roots: ['@fluentui/web-components:test-chrome'], + tasks: { + '@fluentui/web-components:test-chrome': { + id: '@fluentui/web-components:test-chrome', + target: { project: '@fluentui/web-components', target: 'test-chrome' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-chrome': [] }, + }, + '@fluentui/web-components:test-chrome:verbose': { + roots: ['@fluentui/web-components:test-chrome:verbose'], + tasks: { + '@fluentui/web-components:test-chrome:verbose': { + id: '@fluentui/web-components:test-chrome:verbose', + target: { project: '@fluentui/web-components', target: 'test-chrome:verbose' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-chrome:verbose': [] }, + }, + '@fluentui/web-components:test-chrome:watch': { + roots: ['@fluentui/web-components:test-chrome:watch'], + tasks: { + '@fluentui/web-components:test-chrome:watch': { + id: '@fluentui/web-components:test-chrome:watch', + target: { project: '@fluentui/web-components', target: 'test-chrome:watch' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-chrome:watch': [] }, + }, + '@fluentui/web-components:test-chrome:debugger': { + roots: ['@fluentui/web-components:test-chrome:debugger'], + tasks: { + '@fluentui/web-components:test-chrome:debugger': { + id: '@fluentui/web-components:test-chrome:debugger', + target: { project: '@fluentui/web-components', target: 'test-chrome:debugger' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-chrome:debugger': [] }, + }, + '@fluentui/web-components:test-chrome:verbose:watch': { + roots: ['@fluentui/web-components:test-chrome:verbose:watch'], + tasks: { + '@fluentui/web-components:test-chrome:verbose:watch': { + id: '@fluentui/web-components:test-chrome:verbose:watch', + target: { project: '@fluentui/web-components', target: 'test-chrome:verbose:watch' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-chrome:verbose:watch': [] }, + }, + '@fluentui/web-components:test-chrome:verbose:debugger': { + roots: ['@fluentui/web-components:test-chrome:verbose:debugger'], + tasks: { + '@fluentui/web-components:test-chrome:verbose:debugger': { + id: '@fluentui/web-components:test-chrome:verbose:debugger', + target: { project: '@fluentui/web-components', target: 'test-chrome:verbose:debugger' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-chrome:verbose:debugger': [] }, + }, + '@fluentui/web-components:test-firefox': { + roots: ['@fluentui/web-components:test-firefox'], + tasks: { + '@fluentui/web-components:test-firefox': { + id: '@fluentui/web-components:test-firefox', + target: { project: '@fluentui/web-components', target: 'test-firefox' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-firefox': [] }, + }, + '@fluentui/web-components:test-firefox:verbose': { + roots: ['@fluentui/web-components:test-firefox:verbose'], + tasks: { + '@fluentui/web-components:test-firefox:verbose': { + id: '@fluentui/web-components:test-firefox:verbose', + target: { project: '@fluentui/web-components', target: 'test-firefox:verbose' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:test-firefox:verbose': [] }, + }, + '@fluentui/web-components:nx-release-publish': { + roots: ['@fluentui/web-components:nx-release-publish'], + tasks: { + '@fluentui/web-components:nx-release-publish': { + id: '@fluentui/web-components:nx-release-publish', + target: { project: '@fluentui/web-components', target: 'nx-release-publish' }, + projectRoot: 'packages/web-components', + overrides: {}, + }, + }, + dependencies: { '@fluentui/web-components:nx-release-publish': [] }, + }, + '@fluentui/react-charting:build': { + roots: [ + '@fluentui/keyboard-key:build', + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + }, + }, + '@fluentui/react-charting:bundle': { + roots: ['@fluentui/react-charting:bundle'], + tasks: { + '@fluentui/react-charting:bundle': { + id: '@fluentui/react-charting:bundle', + target: { project: '@fluentui/react-charting', target: 'bundle' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:bundle': [] }, + }, + '@fluentui/react-charting:lint': { + roots: ['@fluentui/react-charting:lint'], + tasks: { + '@fluentui/react-charting:lint': { + id: '@fluentui/react-charting:lint', + target: { project: '@fluentui/react-charting', target: 'lint' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:lint': [] }, + }, + '@fluentui/react-charting:test': { + roots: ['@fluentui/react-charting:test'], + tasks: { + '@fluentui/react-charting:test': { + id: '@fluentui/react-charting:test', + target: { project: '@fluentui/react-charting', target: 'test' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:test': [] }, + }, + '@fluentui/react-charting:just': { + roots: ['@fluentui/react-charting:just'], + tasks: { + '@fluentui/react-charting:just': { + id: '@fluentui/react-charting:just', + target: { project: '@fluentui/react-charting', target: 'just' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:just': [] }, + }, + '@fluentui/react-charting:clean': { + roots: ['@fluentui/react-charting:clean'], + tasks: { + '@fluentui/react-charting:clean': { + id: '@fluentui/react-charting:clean', + target: { project: '@fluentui/react-charting', target: 'clean' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:clean': [] }, + }, + '@fluentui/react-charting:codepen': { + roots: ['@fluentui/react-charting:codepen'], + tasks: { + '@fluentui/react-charting:codepen': { + id: '@fluentui/react-charting:codepen', + target: { project: '@fluentui/react-charting', target: 'codepen' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:codepen': [] }, + }, + '@fluentui/react-charting:code-style': { + roots: ['@fluentui/react-charting:code-style'], + tasks: { + '@fluentui/react-charting:code-style': { + id: '@fluentui/react-charting:code-style', + target: { project: '@fluentui/react-charting', target: 'code-style' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:code-style': [] }, + }, + '@fluentui/react-charting:start': { + roots: ['@fluentui/react-charting:start'], + tasks: { + '@fluentui/react-charting:start': { + id: '@fluentui/react-charting:start', + target: { project: '@fluentui/react-charting', target: 'start' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:start': [] }, + }, + '@fluentui/react-charting:start:legacy': { + roots: ['@fluentui/react-charting:start:legacy'], + tasks: { + '@fluentui/react-charting:start:legacy': { + id: '@fluentui/react-charting:start:legacy', + target: { project: '@fluentui/react-charting', target: 'start:legacy' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:start:legacy': [] }, + }, + '@fluentui/react-charting:start-test': { + roots: ['@fluentui/react-charting:start-test'], + tasks: { + '@fluentui/react-charting:start-test': { + id: '@fluentui/react-charting:start-test', + target: { project: '@fluentui/react-charting', target: 'start-test' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:start-test': [] }, + }, + '@fluentui/react-charting:update-snapshots': { + roots: ['@fluentui/react-charting:update-snapshots'], + tasks: { + '@fluentui/react-charting:update-snapshots': { + id: '@fluentui/react-charting:update-snapshots', + target: { project: '@fluentui/react-charting', target: 'update-snapshots' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-charting:update-snapshots': [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: {}, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + }, + }, + '@fluentui/react-examples:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/monaco-editor:build', + ], + tasks: { + '@fluentui/react-examples:build': { + id: '@fluentui/react-examples:build', + target: { project: '@fluentui/react-examples', target: 'build' }, + projectRoot: 'packages/react-examples', + overrides: {}, + }, + '@fluentui/azure-themes:build': { + id: '@fluentui/azure-themes:build', + target: { project: '@fluentui/azure-themes', target: 'build' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-cards:build': { + id: '@fluentui/react-cards:build', + target: { project: '@fluentui/react-cards', target: 'build' }, + projectRoot: 'packages/react-cards', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:build': { + id: '@fluentui/react-docsite-components:build', + target: { project: '@fluentui/react-docsite-components', target: 'build' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:build': { + id: '@fluentui/public-docsite-setup:build', + target: { project: '@fluentui/public-docsite-setup', target: 'build' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:build': { + id: '@fluentui/react-monaco-editor:build', + target: { project: '@fluentui/react-monaco-editor', target: 'build' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:build': { + id: '@fluentui/monaco-editor:build', + target: { project: '@fluentui/monaco-editor', target: 'build' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:build': { + id: '@fluentui/react-experiments:build', + target: { project: '@fluentui/react-experiments', target: 'build' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-file-type-icons:build': { + id: '@fluentui/react-file-type-icons:build', + target: { project: '@fluentui/react-file-type-icons', target: 'build' }, + projectRoot: 'packages/react-file-type-icons', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:build': { + id: '@fluentui/react-icons-mdl2:build', + target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:build': { + id: '@fluentui/react-icon-provider:build', + target: { project: '@fluentui/react-icon-provider', target: 'build' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:build': { + id: '@fluentui/storybook:build', + target: { project: '@fluentui/storybook', target: 'build' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-examples:build': [ + '@fluentui/azure-themes:build', + '@fluentui/date-time-utilities:build', + '@fluentui/dom-utilities:build', + '@fluentui/example-data:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/foundation-legacy:build', + '@fluentui/merge-styles:build', + '@fluentui/react:build', + '@fluentui/react-cards:build', + '@fluentui/react-charting:build', + '@fluentui/react-docsite-components:build', + '@fluentui/react-experiments:build', + '@fluentui/react-file-type-icons:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-icons-mdl2:build', + '@fluentui/scheme-utilities:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/theme-samples:build', + '@fluentui/utilities:build', + '@fluentui/storybook:build', + ], + '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/react-cards:build': [ + '@fluentui/react:build', + '@fluentui/foundation-legacy:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + '@fluentui/react-docsite-components:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/common-styles:build', + ], + '@fluentui/public-docsite-setup:build': [], + '@fluentui/react-monaco-editor:build': [ + '@fluentui/react:build', + '@fluentui/example-data:build', + '@fluentui/monaco-editor:build', + '@fluentui/react-hooks:build', + '@fluentui/react-charting:build', + ], + '@fluentui/monaco-editor:build': [], + '@fluentui/react-experiments:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/react-icons-mdl2:build': [ + '@fluentui/react-icon-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/storybook:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/azure-themes:build', + '@fluentui/theme-samples:build', + ], + }, + }, + '@fluentui/react-examples:clean': { + roots: ['@fluentui/react-examples:clean'], + tasks: { + '@fluentui/react-examples:clean': { + id: '@fluentui/react-examples:clean', + target: { project: '@fluentui/react-examples', target: 'clean' }, + projectRoot: 'packages/react-examples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-examples:clean': [] }, + }, + '@fluentui/react-examples:code-style': { + roots: ['@fluentui/react-examples:code-style'], + tasks: { + '@fluentui/react-examples:code-style': { + id: '@fluentui/react-examples:code-style', + target: { project: '@fluentui/react-examples', target: 'code-style' }, + projectRoot: 'packages/react-examples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-examples:code-style': [] }, + }, + '@fluentui/react-examples:just': { + roots: ['@fluentui/react-examples:just'], + tasks: { + '@fluentui/react-examples:just': { + id: '@fluentui/react-examples:just', + target: { project: '@fluentui/react-examples', target: 'just' }, + projectRoot: 'packages/react-examples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-examples:just': [] }, + }, + '@fluentui/react-examples:lint': { + roots: ['@fluentui/react-examples:lint'], + tasks: { + '@fluentui/react-examples:lint': { + id: '@fluentui/react-examples:lint', + target: { project: '@fluentui/react-examples', target: 'lint' }, + projectRoot: 'packages/react-examples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-examples:lint': [] }, + }, + '@fluentui/react-examples:e2e': { + roots: ['@fluentui/react-examples:e2e'], + tasks: { + '@fluentui/react-examples:e2e': { + id: '@fluentui/react-examples:e2e', + target: { project: '@fluentui/react-examples', target: 'e2e' }, + projectRoot: 'packages/react-examples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-examples:e2e': [] }, + }, + '@fluentui/react-examples:e2e:local': { + roots: ['@fluentui/react-examples:e2e:local'], + tasks: { + '@fluentui/react-examples:e2e:local': { + id: '@fluentui/react-examples:e2e:local', + target: { project: '@fluentui/react-examples', target: 'e2e:local' }, + projectRoot: 'packages/react-examples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-examples:e2e:local': [] }, + }, + '@fluentui/react-examples:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-examples:nx-release-publish': { + id: '@fluentui/react-examples:nx-release-publish', + target: { project: '@fluentui/react-examples', target: 'nx-release-publish' }, + projectRoot: 'packages/react-examples', + overrides: {}, + }, + '@fluentui/azure-themes:nx-release-publish': { + id: '@fluentui/azure-themes:nx-release-publish', + target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-cards:nx-release-publish': { + id: '@fluentui/react-cards:nx-release-publish', + target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, + projectRoot: 'packages/react-cards', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:nx-release-publish': { + id: '@fluentui/react-docsite-components:nx-release-publish', + target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:nx-release-publish': { + id: '@fluentui/public-docsite-setup:nx-release-publish', + target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:nx-release-publish': { + id: '@fluentui/react-monaco-editor:nx-release-publish', + target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:nx-release-publish': { + id: '@fluentui/monaco-editor:nx-release-publish', + target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:nx-release-publish': { + id: '@fluentui/react-experiments:nx-release-publish', + target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-file-type-icons:nx-release-publish': { + id: '@fluentui/react-file-type-icons:nx-release-publish', + target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, + projectRoot: 'packages/react-file-type-icons', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:nx-release-publish': { + id: '@fluentui/react-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:nx-release-publish': { + id: '@fluentui/react-icon-provider:nx-release-publish', + target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:nx-release-publish': { + id: '@fluentui/storybook:nx-release-publish', + target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-examples:nx-release-publish': [ + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-cards:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/react-experiments:nx-release-publish', + '@fluentui/react-file-type-icons:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-icons-mdl2:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/storybook:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/azure-themes:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-cards:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-docsite-components:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/public-docsite-setup:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/public-docsite-setup:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-monaco-editor:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/monaco-editor:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/monaco-editor:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-experiments:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-file-type-icons:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-icons-mdl2:nx-release-publish': [ + '@fluentui/react-icon-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icon-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/storybook:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/test-utilities:build': { + roots: ['@fluentui/test-utilities:build'], + tasks: { + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/test-utilities:build': [] }, + }, + '@fluentui/test-utilities:clean': { + roots: ['@fluentui/test-utilities:clean'], + tasks: { + '@fluentui/test-utilities:clean': { + id: '@fluentui/test-utilities:clean', + target: { project: '@fluentui/test-utilities', target: 'clean' }, + projectRoot: 'packages/test-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/test-utilities:clean': [] }, + }, + '@fluentui/test-utilities:code-style': { + roots: ['@fluentui/test-utilities:code-style'], + tasks: { + '@fluentui/test-utilities:code-style': { + id: '@fluentui/test-utilities:code-style', + target: { project: '@fluentui/test-utilities', target: 'code-style' }, + projectRoot: 'packages/test-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/test-utilities:code-style': [] }, + }, + '@fluentui/test-utilities:just': { + roots: ['@fluentui/test-utilities:just'], + tasks: { + '@fluentui/test-utilities:just': { + id: '@fluentui/test-utilities:just', + target: { project: '@fluentui/test-utilities', target: 'just' }, + projectRoot: 'packages/test-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/test-utilities:just': [] }, + }, + '@fluentui/test-utilities:lint': { + roots: ['@fluentui/test-utilities:lint'], + tasks: { + '@fluentui/test-utilities:lint': { + id: '@fluentui/test-utilities:lint', + target: { project: '@fluentui/test-utilities', target: 'lint' }, + projectRoot: 'packages/test-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/test-utilities:lint': [] }, + }, + '@fluentui/test-utilities:start-test': { + roots: ['@fluentui/test-utilities:start-test'], + tasks: { + '@fluentui/test-utilities:start-test': { + id: '@fluentui/test-utilities:start-test', + target: { project: '@fluentui/test-utilities', target: 'start-test' }, + projectRoot: 'packages/test-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/test-utilities:start-test': [] }, + }, + '@fluentui/test-utilities:test': { + roots: ['@fluentui/test-utilities:test'], + tasks: { + '@fluentui/test-utilities:test': { + id: '@fluentui/test-utilities:test', + target: { project: '@fluentui/test-utilities', target: 'test' }, + projectRoot: 'packages/test-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/test-utilities:test': [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-package-manager:format': { + roots: ['@fluentui/scripts-package-manager:format'], + tasks: { + '@fluentui/scripts-package-manager:format': { + id: '@fluentui/scripts-package-manager:format', + target: { project: '@fluentui/scripts-package-manager', target: 'format' }, + projectRoot: 'scripts/package-manager', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-package-manager:format': [] }, + }, + '@fluentui/scripts-package-manager:format:check': { + roots: ['@fluentui/scripts-package-manager:format:check'], + tasks: { + '@fluentui/scripts-package-manager:format:check': { + id: '@fluentui/scripts-package-manager:format:check', + target: { project: '@fluentui/scripts-package-manager', target: 'format:check' }, + projectRoot: 'scripts/package-manager', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-package-manager:format:check': [] }, + }, + '@fluentui/scripts-package-manager:lint': { + roots: ['@fluentui/scripts-package-manager:lint'], + tasks: { + '@fluentui/scripts-package-manager:lint': { + id: '@fluentui/scripts-package-manager:lint', + target: { project: '@fluentui/scripts-package-manager', target: 'lint' }, + projectRoot: 'scripts/package-manager', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-package-manager:lint': [] }, + }, + '@fluentui/scripts-package-manager:test': { + roots: ['@fluentui/scripts-package-manager:test'], + tasks: { + '@fluentui/scripts-package-manager:test': { + id: '@fluentui/scripts-package-manager:test', + target: { project: '@fluentui/scripts-package-manager', target: 'test' }, + projectRoot: 'scripts/package-manager', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-package-manager:test': [] }, + }, + '@fluentui/scripts-package-manager:type-check': { + roots: ['@fluentui/scripts-package-manager:type-check'], + tasks: { + '@fluentui/scripts-package-manager:type-check': { + id: '@fluentui/scripts-package-manager:type-check', + target: { project: '@fluentui/scripts-package-manager', target: 'type-check' }, + projectRoot: 'scripts/package-manager', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-package-manager:type-check': [] }, + }, + '@fluentui/scripts-package-manager:nx-release-publish': { + roots: ['@fluentui/scripts-package-manager:nx-release-publish'], + tasks: { + '@fluentui/scripts-package-manager:nx-release-publish': { + id: '@fluentui/scripts-package-manager:nx-release-publish', + target: { project: '@fluentui/scripts-package-manager', target: 'nx-release-publish' }, + projectRoot: 'scripts/package-manager', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-package-manager:nx-release-publish': [] }, + }, + '@fluentui/state:build': { + roots: ['@fluentui/state:build'], + tasks: { + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: {}, + }, + }, + dependencies: { '@fluentui/state:build': [] }, + }, + '@fluentui/state:clean': { + roots: ['@fluentui/state:clean'], + tasks: { + '@fluentui/state:clean': { + id: '@fluentui/state:clean', + target: { project: '@fluentui/state', target: 'clean' }, + projectRoot: 'packages/fluentui/state', + overrides: {}, + }, + }, + dependencies: { '@fluentui/state:clean': [] }, + }, + '@fluentui/state:lint': { + roots: ['@fluentui/state:lint'], + tasks: { + '@fluentui/state:lint': { + id: '@fluentui/state:lint', + target: { project: '@fluentui/state', target: 'lint' }, + projectRoot: 'packages/fluentui/state', + overrides: {}, + }, + }, + dependencies: { '@fluentui/state:lint': [] }, + }, + '@fluentui/state:lint:fix': { + roots: ['@fluentui/state:lint:fix'], + tasks: { + '@fluentui/state:lint:fix': { + id: '@fluentui/state:lint:fix', + target: { project: '@fluentui/state', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/state', + overrides: {}, + }, + }, + dependencies: { '@fluentui/state:lint:fix': [] }, + }, + '@fluentui/state:test:watch': { + roots: ['@fluentui/state:test:watch'], + tasks: { + '@fluentui/state:test:watch': { + id: '@fluentui/state:test:watch', + target: { project: '@fluentui/state', target: 'test:watch' }, + projectRoot: 'packages/fluentui/state', + overrides: {}, + }, + }, + dependencies: { '@fluentui/state:test:watch': [] }, + }, + '@fluentui/state:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + }, + }, + '@fluentui/common-styles:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: {}, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/common-styles:clean': { + roots: ['@fluentui/common-styles:clean'], + tasks: { + '@fluentui/common-styles:clean': { + id: '@fluentui/common-styles:clean', + target: { project: '@fluentui/common-styles', target: 'clean' }, + projectRoot: 'packages/common-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/common-styles:clean': [] }, + }, + '@fluentui/common-styles:code-style': { + roots: ['@fluentui/common-styles:code-style'], + tasks: { + '@fluentui/common-styles:code-style': { + id: '@fluentui/common-styles:code-style', + target: { project: '@fluentui/common-styles', target: 'code-style' }, + projectRoot: 'packages/common-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/common-styles:code-style': [] }, + }, + '@fluentui/common-styles:just': { + roots: ['@fluentui/common-styles:just'], + tasks: { + '@fluentui/common-styles:just': { + id: '@fluentui/common-styles:just', + target: { project: '@fluentui/common-styles', target: 'just' }, + projectRoot: 'packages/common-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/common-styles:just': [] }, + }, + '@fluentui/common-styles:update-sass-theme-files': { + roots: ['@fluentui/common-styles:update-sass-theme-files'], + tasks: { + '@fluentui/common-styles:update-sass-theme-files': { + id: '@fluentui/common-styles:update-sass-theme-files', + target: { project: '@fluentui/common-styles', target: 'update-sass-theme-files' }, + projectRoot: 'packages/common-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/common-styles:update-sass-theme-files': [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: {}, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/theme-samples:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + }, + }, + '@fluentui/theme-samples:bundle': { + roots: ['@fluentui/theme-samples:bundle'], + tasks: { + '@fluentui/theme-samples:bundle': { + id: '@fluentui/theme-samples:bundle', + target: { project: '@fluentui/theme-samples', target: 'bundle' }, + projectRoot: 'packages/theme-samples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-samples:bundle': [] }, + }, + '@fluentui/theme-samples:lint': { + roots: ['@fluentui/theme-samples:lint'], + tasks: { + '@fluentui/theme-samples:lint': { + id: '@fluentui/theme-samples:lint', + target: { project: '@fluentui/theme-samples', target: 'lint' }, + projectRoot: 'packages/theme-samples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-samples:lint': [] }, + }, + '@fluentui/theme-samples:just': { + roots: ['@fluentui/theme-samples:just'], + tasks: { + '@fluentui/theme-samples:just': { + id: '@fluentui/theme-samples:just', + target: { project: '@fluentui/theme-samples', target: 'just' }, + projectRoot: 'packages/theme-samples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-samples:just': [] }, + }, + '@fluentui/theme-samples:code-style': { + roots: ['@fluentui/theme-samples:code-style'], + tasks: { + '@fluentui/theme-samples:code-style': { + id: '@fluentui/theme-samples:code-style', + target: { project: '@fluentui/theme-samples', target: 'code-style' }, + projectRoot: 'packages/theme-samples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-samples:code-style': [] }, + }, + '@fluentui/theme-samples:clean': { + roots: ['@fluentui/theme-samples:clean'], + tasks: { + '@fluentui/theme-samples:clean': { + id: '@fluentui/theme-samples:clean', + target: { project: '@fluentui/theme-samples', target: 'clean' }, + projectRoot: 'packages/theme-samples', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme-samples:clean': [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + }, + }, + '@fluentui/eslint-plugin:lint': { + roots: ['@fluentui/eslint-plugin:lint'], + tasks: { + '@fluentui/eslint-plugin:lint': { + id: '@fluentui/eslint-plugin:lint', + target: { project: '@fluentui/eslint-plugin', target: 'lint' }, + projectRoot: 'packages/eslint-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/eslint-plugin:lint': [] }, + }, + '@fluentui/eslint-plugin:test': { + roots: ['@fluentui/eslint-plugin:test'], + tasks: { + '@fluentui/eslint-plugin:test': { + id: '@fluentui/eslint-plugin:test', + target: { project: '@fluentui/eslint-plugin', target: 'test' }, + projectRoot: 'packages/eslint-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/eslint-plugin:test': [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish'], + tasks: { + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/eslint-plugin:nx-release-publish': [] }, + }, + '@fluentui/perf:perf:test': { + roots: ['@fluentui/perf:perf:test'], + tasks: { + '@fluentui/perf:perf:test': { + id: '@fluentui/perf:perf:test', + target: { project: '@fluentui/perf', target: 'perf:test' }, + projectRoot: 'packages/fluentui/perf', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf:perf:test': [] }, + }, + '@fluentui/perf:perf:test:debug': { + roots: ['@fluentui/perf:perf:test:debug'], + tasks: { + '@fluentui/perf:perf:test:debug': { + id: '@fluentui/perf:perf:test:debug', + target: { project: '@fluentui/perf', target: 'perf:test:debug' }, + projectRoot: 'packages/fluentui/perf', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf:perf:test:debug': [] }, + }, + '@fluentui/perf:lint': { + roots: ['@fluentui/perf:lint'], + tasks: { + '@fluentui/perf:lint': { + id: '@fluentui/perf:lint', + target: { project: '@fluentui/perf', target: 'lint' }, + projectRoot: 'packages/fluentui/perf', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf:lint': [] }, + }, + '@fluentui/perf:lint:fix': { + roots: ['@fluentui/perf:lint:fix'], + tasks: { + '@fluentui/perf:lint:fix': { + id: '@fluentui/perf:lint:fix', + target: { project: '@fluentui/perf', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/perf', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf:lint:fix': [] }, + }, + '@fluentui/perf:type-check': { + roots: ['@fluentui/perf:type-check'], + tasks: { + '@fluentui/perf:type-check': { + id: '@fluentui/perf:type-check', + target: { project: '@fluentui/perf', target: 'type-check' }, + projectRoot: 'packages/fluentui/perf', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf:type-check': [] }, + }, + '@fluentui/perf:nx-release-publish': { + roots: [ + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/perf:nx-release-publish': { + id: '@fluentui/perf:nx-release-publish', + target: { project: '@fluentui/perf', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/perf', + overrides: {}, + }, + '@fluentui/docs:nx-release-publish': { + id: '@fluentui/docs:nx-release-publish', + target: { project: '@fluentui/docs', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/ability-attributes:nx-release-publish': { + id: '@fluentui/ability-attributes:nx-release-publish', + target: { project: '@fluentui/ability-attributes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/ability-attributes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:nx-release-publish': { + id: '@fluentui/code-sandbox:nx-release-publish', + target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:nx-release-publish': { + id: '@fluentui/docs-components:nx-release-publish', + target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-builder:nx-release-publish': { + id: '@fluentui/react-builder:nx-release-publish', + target: { project: '@fluentui/react-builder', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-emotion-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-emotion-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-prototypes:nx-release-publish': { + id: '@fluentui/react-northstar-prototypes:nx-release-publish', + target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-telemetry:nx-release-publish': { + id: '@fluentui/react-telemetry:nx-release-publish', + target: { project: '@fluentui/react-telemetry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-telemetry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/perf:nx-release-publish': [ + '@fluentui/docs:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/docs:nx-release-publish': [ + '@fluentui/ability-attributes:nx-release-publish', + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-builder:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/react-northstar-emotion-renderer:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-prototypes:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-telemetry:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/ability-attributes:nx-release-publish': [ + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/code-sandbox:nx-release-publish': [ + '@fluentui/docs-components:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/docs-components:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-builder:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-emotion-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-prototypes:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-telemetry:nx-release-publish': [ + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/docs:build': { + roots: [ + '@fluentui/ability-attributes:build', + '@fluentui/accessibility:build', + '@fluentui/docs-components:build', + '@fluentui/set-version:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + tasks: { + '@fluentui/docs:build': { + id: '@fluentui/docs:build', + target: { project: '@fluentui/docs', target: 'build' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + '@fluentui/ability-attributes:build': { + id: '@fluentui/ability-attributes:build', + target: { project: '@fluentui/ability-attributes', target: 'build' }, + projectRoot: 'packages/fluentui/ability-attributes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:build': { + id: '@fluentui/code-sandbox:build', + target: { project: '@fluentui/code-sandbox', target: 'build' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:build': { + id: '@fluentui/docs-components:build', + target: { project: '@fluentui/docs-components', target: 'build' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-builder:build': { + id: '@fluentui/react-builder:build', + target: { project: '@fluentui/react-builder', target: 'build' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-emotion-renderer:build': { + id: '@fluentui/react-northstar-emotion-renderer:build', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-prototypes:build': { + id: '@fluentui/react-northstar-prototypes:build', + target: { project: '@fluentui/react-northstar-prototypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-telemetry:build': { + id: '@fluentui/react-telemetry:build', + target: { project: '@fluentui/react-telemetry', target: 'build' }, + projectRoot: 'packages/fluentui/react-telemetry', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/docs:build': [ + '@fluentui/ability-attributes:build', + '@fluentui/accessibility:build', + '@fluentui/code-sandbox:build', + '@fluentui/docs-components:build', + '@fluentui/react-bindings:build', + '@fluentui/react-builder:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar:build', + '@fluentui/react-northstar-emotion-renderer:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-prototypes:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-telemetry:build', + '@fluentui/styles:build', + ], + '@fluentui/ability-attributes:build': [], + '@fluentui/accessibility:build': [], + '@fluentui/code-sandbox:build': ['@fluentui/docs-components:build', '@fluentui/react-northstar:build'], + '@fluentui/docs-components:build': [], + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/react-proptypes:build': [], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-builder:build': [ + '@fluentui/accessibility:build', + '@fluentui/code-sandbox:build', + '@fluentui/docs-components:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar:build', + ], + '@fluentui/react-northstar-emotion-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-prototypes:build': [ + '@fluentui/accessibility:build', + '@fluentui/code-sandbox:build', + '@fluentui/docs-components:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar:build', + ], + '@fluentui/react-telemetry:build': [ + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + ], + }, + }, + '@fluentui/docs:prebuild:storybook': { + roots: ['@fluentui/docs:prebuild:storybook'], + tasks: { + '@fluentui/docs:prebuild:storybook': { + id: '@fluentui/docs:prebuild:storybook', + target: { project: '@fluentui/docs', target: 'prebuild:storybook' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:prebuild:storybook': [] }, + }, + '@fluentui/docs:build:storybook': { + roots: ['@fluentui/docs:build:storybook'], + tasks: { + '@fluentui/docs:build:storybook': { + id: '@fluentui/docs:build:storybook', + target: { project: '@fluentui/docs', target: 'build:storybook' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:build:storybook': [] }, + }, + '@fluentui/docs:lint': { + roots: ['@fluentui/docs:lint'], + tasks: { + '@fluentui/docs:lint': { + id: '@fluentui/docs:lint', + target: { project: '@fluentui/docs', target: 'lint' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:lint': [] }, + }, + '@fluentui/docs:lint:fix': { + roots: ['@fluentui/docs:lint:fix'], + tasks: { + '@fluentui/docs:lint:fix': { + id: '@fluentui/docs:lint:fix', + target: { project: '@fluentui/docs', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:lint:fix': [] }, + }, + '@fluentui/docs:start': { + roots: ['@fluentui/docs:start'], + tasks: { + '@fluentui/docs:start': { + id: '@fluentui/docs:start', + target: { project: '@fluentui/docs', target: 'start' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:start': [] }, + }, + '@fluentui/docs:start:profile': { + roots: ['@fluentui/docs:start:profile'], + tasks: { + '@fluentui/docs:start:profile': { + id: '@fluentui/docs:start:profile', + target: { project: '@fluentui/docs', target: 'start:profile' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:start:profile': [] }, + }, + '@fluentui/docs:prestart:storybook': { + roots: ['@fluentui/docs:prestart:storybook'], + tasks: { + '@fluentui/docs:prestart:storybook': { + id: '@fluentui/docs:prestart:storybook', + target: { project: '@fluentui/docs', target: 'prestart:storybook' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:prestart:storybook': [] }, + }, + '@fluentui/docs:start:storybook': { + roots: ['@fluentui/docs:start:storybook'], + tasks: { + '@fluentui/docs:start:storybook': { + id: '@fluentui/docs:start:storybook', + target: { project: '@fluentui/docs', target: 'start:storybook' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:start:storybook': [] }, + }, + '@fluentui/docs:vr:build': { + roots: ['@fluentui/docs:vr:build'], + tasks: { + '@fluentui/docs:vr:build': { + id: '@fluentui/docs:vr:build', + target: { project: '@fluentui/docs', target: 'vr:build' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:vr:build': [] }, + }, + '@fluentui/docs:vr:test': { + roots: ['@fluentui/docs:vr:test'], + tasks: { + '@fluentui/docs:vr:test': { + id: '@fluentui/docs:vr:test', + target: { project: '@fluentui/docs', target: 'vr:test' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/docs:vr:test': [] }, + }, + '@fluentui/docs:nx-release-publish': { + roots: [ + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/docs:nx-release-publish': { + id: '@fluentui/docs:nx-release-publish', + target: { project: '@fluentui/docs', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs', + overrides: {}, + }, + '@fluentui/ability-attributes:nx-release-publish': { + id: '@fluentui/ability-attributes:nx-release-publish', + target: { project: '@fluentui/ability-attributes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/ability-attributes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:nx-release-publish': { + id: '@fluentui/code-sandbox:nx-release-publish', + target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:nx-release-publish': { + id: '@fluentui/docs-components:nx-release-publish', + target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-builder:nx-release-publish': { + id: '@fluentui/react-builder:nx-release-publish', + target: { project: '@fluentui/react-builder', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-builder', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-emotion-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-emotion-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-prototypes:nx-release-publish': { + id: '@fluentui/react-northstar-prototypes:nx-release-publish', + target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-telemetry:nx-release-publish': { + id: '@fluentui/react-telemetry:nx-release-publish', + target: { project: '@fluentui/react-telemetry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-telemetry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/docs:nx-release-publish': [ + '@fluentui/ability-attributes:nx-release-publish', + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-builder:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/react-northstar-emotion-renderer:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-prototypes:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-telemetry:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/ability-attributes:nx-release-publish': [ + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/code-sandbox:nx-release-publish': [ + '@fluentui/docs-components:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/docs-components:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-builder:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-emotion-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-prototypes:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-telemetry:nx-release-publish': [ + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/monaco-editor:build': { + roots: ['@fluentui/monaco-editor:build'], + tasks: { + '@fluentui/monaco-editor:build': { + id: '@fluentui/monaco-editor:build', + target: { project: '@fluentui/monaco-editor', target: 'build' }, + projectRoot: 'packages/monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/monaco-editor:build': [] }, + }, + '@fluentui/monaco-editor:clean': { + roots: ['@fluentui/monaco-editor:clean'], + tasks: { + '@fluentui/monaco-editor:clean': { + id: '@fluentui/monaco-editor:clean', + target: { project: '@fluentui/monaco-editor', target: 'clean' }, + projectRoot: 'packages/monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/monaco-editor:clean': [] }, + }, + '@fluentui/monaco-editor:lint': { + roots: ['@fluentui/monaco-editor:lint'], + tasks: { + '@fluentui/monaco-editor:lint': { + id: '@fluentui/monaco-editor:lint', + target: { project: '@fluentui/monaco-editor', target: 'lint' }, + projectRoot: 'packages/monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/monaco-editor:lint': [] }, + }, + '@fluentui/monaco-editor:just': { + roots: ['@fluentui/monaco-editor:just'], + tasks: { + '@fluentui/monaco-editor:just': { + id: '@fluentui/monaco-editor:just', + target: { project: '@fluentui/monaco-editor', target: 'just' }, + projectRoot: 'packages/monaco-editor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/monaco-editor:just': [] }, + }, + '@fluentui/monaco-editor:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/monaco-editor:nx-release-publish': { + id: '@fluentui/monaco-editor:nx-release-publish', + target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/monaco-editor', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/monaco-editor:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/dom-utilities:build': { + roots: ['@fluentui/set-version:build'], + tasks: { + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: {}, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + }, + }, + '@fluentui/dom-utilities:clean': { + roots: ['@fluentui/dom-utilities:clean'], + tasks: { + '@fluentui/dom-utilities:clean': { + id: '@fluentui/dom-utilities:clean', + target: { project: '@fluentui/dom-utilities', target: 'clean' }, + projectRoot: 'packages/dom-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/dom-utilities:clean': [] }, + }, + '@fluentui/dom-utilities:code-style': { + roots: ['@fluentui/dom-utilities:code-style'], + tasks: { + '@fluentui/dom-utilities:code-style': { + id: '@fluentui/dom-utilities:code-style', + target: { project: '@fluentui/dom-utilities', target: 'code-style' }, + projectRoot: 'packages/dom-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/dom-utilities:code-style': [] }, + }, + '@fluentui/dom-utilities:just': { + roots: ['@fluentui/dom-utilities:just'], + tasks: { + '@fluentui/dom-utilities:just': { + id: '@fluentui/dom-utilities:just', + target: { project: '@fluentui/dom-utilities', target: 'just' }, + projectRoot: 'packages/dom-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/dom-utilities:just': [] }, + }, + '@fluentui/dom-utilities:lint': { + roots: ['@fluentui/dom-utilities:lint'], + tasks: { + '@fluentui/dom-utilities:lint': { + id: '@fluentui/dom-utilities:lint', + target: { project: '@fluentui/dom-utilities', target: 'lint' }, + projectRoot: 'packages/dom-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/dom-utilities:lint': [] }, + }, + '@fluentui/dom-utilities:start-test': { + roots: ['@fluentui/dom-utilities:start-test'], + tasks: { + '@fluentui/dom-utilities:start-test': { + id: '@fluentui/dom-utilities:start-test', + target: { project: '@fluentui/dom-utilities', target: 'start-test' }, + projectRoot: 'packages/dom-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/dom-utilities:start-test': [] }, + }, + '@fluentui/dom-utilities:test': { + roots: ['@fluentui/dom-utilities:test'], + tasks: { + '@fluentui/dom-utilities:test': { + id: '@fluentui/dom-utilities:test', + target: { project: '@fluentui/dom-utilities', target: 'test' }, + projectRoot: 'packages/dom-utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/dom-utilities:test': [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: {}, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/public-docsite-v9:build': { + roots: [ + '@fluentui/keyboard-keys:build', + '@fluentui/tokens:build', + '@fluentui/react-conformance:build', + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/priority-overflow:build', + '@fluentui/accessibility:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/styles:build', + '@fluentui/state:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-proptypes:build', + '@fluentui/babel-preset-storybook-full-source:build', + ], + tasks: { + '@fluentui/public-docsite-v9:build': { + id: '@fluentui/public-docsite-v9:build', + target: { project: '@fluentui/public-docsite-v9', target: 'build' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + '@fluentui/react-calendar-compat:build': { + id: '@fluentui/react-calendar-compat:build', + target: { project: '@fluentui/react-calendar-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:build': { + id: '@fluentui/keyboard-keys:build', + target: { project: '@fluentui/keyboard-keys', target: 'build' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:build': { + id: '@fluentui/react-jsx-runtime:build', + target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:build': { + id: '@fluentui/react-utilities:build', + target: { project: '@fluentui/react-utilities', target: 'build' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:build': { + id: '@fluentui/react-shared-contexts:build', + target: { project: '@fluentui/react-shared-contexts', target: 'build' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:build': { + id: '@fluentui/react-theme:build', + target: { project: '@fluentui/react-theme', target: 'build' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:build': { + id: '@fluentui/react-conformance-griffel:build', + target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:build': { + id: '@fluentui/react-tabster:build', + target: { project: '@fluentui/react-tabster', target: 'build' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-datepicker-compat:build': { + id: '@fluentui/react-datepicker-compat:build', + target: { project: '@fluentui/react-datepicker-compat', target: 'build' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:build': { + id: '@fluentui/react-field:build', + target: { project: '@fluentui/react-field', target: 'build' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:build': { + id: '@fluentui/react-context-selector:build', + target: { project: '@fluentui/react-context-selector', target: 'build' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:build': { + id: '@fluentui/react-label:build', + target: { project: '@fluentui/react-label', target: 'build' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:build': { + id: '@fluentui/react-input:build', + target: { project: '@fluentui/react-input', target: 'build' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:build': { + id: '@fluentui/react-text:build', + target: { project: '@fluentui/react-text', target: 'build' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:build': { + id: '@fluentui/react-popover:build', + target: { project: '@fluentui/react-popover', target: 'build' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:build': { + id: '@fluentui/react-aria:build', + target: { project: '@fluentui/react-aria', target: 'build' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:build': { + id: '@fluentui/react-portal:build', + target: { project: '@fluentui/react-portal', target: 'build' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:build': { + id: '@fluentui/react-positioning:build', + target: { project: '@fluentui/react-positioning', target: 'build' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-migration-v8-v9:build': { + id: '@fluentui/react-migration-v8-v9:build', + target: { project: '@fluentui/react-migration-v8-v9', target: 'build' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/fluent2-theme:build': { + id: '@fluentui/fluent2-theme:build', + target: { project: '@fluentui/fluent2-theme', target: 'build' }, + projectRoot: 'packages/fluent2-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:build': { + id: '@fluentui/react-components:build', + target: { project: '@fluentui/react-components', target: 'build' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:build': { + id: '@fluentui/react-accordion:build', + target: { project: '@fluentui/react-accordion', target: 'build' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:build': { + id: '@fluentui/react-alert:build', + target: { project: '@fluentui/react-alert', target: 'build' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:build': { + id: '@fluentui/react-avatar:build', + target: { project: '@fluentui/react-avatar', target: 'build' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:build': { + id: '@fluentui/react-badge:build', + target: { project: '@fluentui/react-badge', target: 'build' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:build': { + id: '@fluentui/react-tooltip:build', + target: { project: '@fluentui/react-tooltip', target: 'build' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:build': { + id: '@fluentui/react-button:build', + target: { project: '@fluentui/react-button', target: 'build' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:build': { + id: '@fluentui/react-card:build', + target: { project: '@fluentui/react-card', target: 'build' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:build': { + id: '@fluentui/react-checkbox:build', + target: { project: '@fluentui/react-checkbox', target: 'build' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:build': { + id: '@fluentui/react-combobox:build', + target: { project: '@fluentui/react-combobox', target: 'build' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:build': { + id: '@fluentui/react-dialog:build', + target: { project: '@fluentui/react-dialog', target: 'build' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:build': { + id: '@fluentui/react-divider:build', + target: { project: '@fluentui/react-divider', target: 'build' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:build': { + id: '@fluentui/react-drawer:build', + target: { project: '@fluentui/react-drawer', target: 'build' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:build': { + id: '@fluentui/react-motion-preview:build', + target: { project: '@fluentui/react-motion-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:build': { + id: '@fluentui/react-image:build', + target: { project: '@fluentui/react-image', target: 'build' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:build': { + id: '@fluentui/react-infobutton:build', + target: { project: '@fluentui/react-infobutton', target: 'build' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:build': { + id: '@fluentui/react-infolabel:build', + target: { project: '@fluentui/react-infolabel', target: 'build' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:build': { + id: '@fluentui/react-link:build', + target: { project: '@fluentui/react-link', target: 'build' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:build': { + id: '@fluentui/react-menu:build', + target: { project: '@fluentui/react-menu', target: 'build' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:build': { + id: '@fluentui/react-overflow:build', + target: { project: '@fluentui/react-overflow', target: 'build' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:build': { + id: '@fluentui/priority-overflow:build', + target: { project: '@fluentui/priority-overflow', target: 'build' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:build': { + id: '@fluentui/react-persona:build', + target: { project: '@fluentui/react-persona', target: 'build' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:build': { + id: '@fluentui/react-progress:build', + target: { project: '@fluentui/react-progress', target: 'build' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:build': { + id: '@fluentui/react-provider:build', + target: { project: '@fluentui/react-provider', target: 'build' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:build': { + id: '@fluentui/react-radio:build', + target: { project: '@fluentui/react-radio', target: 'build' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:build': { + id: '@fluentui/react-select:build', + target: { project: '@fluentui/react-select', target: 'build' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:build': { + id: '@fluentui/react-skeleton:build', + target: { project: '@fluentui/react-skeleton', target: 'build' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:build': { + id: '@fluentui/react-slider:build', + target: { project: '@fluentui/react-slider', target: 'build' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:build': { + id: '@fluentui/react-spinbutton:build', + target: { project: '@fluentui/react-spinbutton', target: 'build' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:build': { + id: '@fluentui/react-spinner:build', + target: { project: '@fluentui/react-spinner', target: 'build' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:build': { + id: '@fluentui/react-switch:build', + target: { project: '@fluentui/react-switch', target: 'build' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:build': { + id: '@fluentui/react-table:build', + target: { project: '@fluentui/react-table', target: 'build' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:build': { + id: '@fluentui/react-tabs:build', + target: { project: '@fluentui/react-tabs', target: 'build' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:build': { + id: '@fluentui/react-tags:build', + target: { project: '@fluentui/react-tags', target: 'build' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:build': { + id: '@fluentui/react-textarea:build', + target: { project: '@fluentui/react-textarea', target: 'build' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:build': { + id: '@fluentui/react-toast:build', + target: { project: '@fluentui/react-toast', target: 'build' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:build': { + id: '@fluentui/react-toolbar:build', + target: { project: '@fluentui/react-toolbar', target: 'build' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:build': { + id: '@fluentui/react-virtualizer:build', + target: { project: '@fluentui/react-virtualizer', target: 'build' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:build': { + id: '@fluentui/react-tree:build', + target: { project: '@fluentui/react-tree', target: 'build' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:build': { + id: '@fluentui/react-message-bar:build', + target: { project: '@fluentui/react-message-bar', target: 'build' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:build': { + id: '@fluentui/react-breadcrumb:build', + target: { project: '@fluentui/react-breadcrumb', target: 'build' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-migration-v0-v9:build': { + id: '@fluentui/react-migration-v0-v9:build', + target: { project: '@fluentui/react-migration-v0-v9', target: 'build' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:build': { + id: '@fluentui/react-northstar:build', + target: { project: '@fluentui/react-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:build': { + id: '@fluentui/accessibility:build', + target: { project: '@fluentui/accessibility', target: 'build' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:build': { + id: '@fluentui/react-bindings:build', + target: { project: '@fluentui/react-bindings', target: 'build' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:build': { + id: '@fluentui/react-component-event-listener:build', + target: { project: '@fluentui/react-component-event-listener', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:build': { + id: '@fluentui/react-component-ref:build', + target: { project: '@fluentui/react-component-ref', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:build': { + id: '@fluentui/react-northstar-fela-renderer:build', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:build': { + id: '@fluentui/react-northstar-styles-renderer:build', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:build': { + id: '@fluentui/styles:build', + target: { project: '@fluentui/styles', target: 'build' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:build': { + id: '@fluentui/state:build', + target: { project: '@fluentui/state', target: 'build' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:build': { + id: '@fluentui/react-component-nesting-registry:build', + target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:build': { + id: '@fluentui/react-icons-northstar:build', + target: { project: '@fluentui/react-icons-northstar', target: 'build' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:build': { + id: '@fluentui/react-proptypes:build', + target: { project: '@fluentui/react-proptypes', target: 'build' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon:build': { + id: '@fluentui/react-storybook-addon:build', + target: { project: '@fluentui/react-storybook-addon', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:build': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:build', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/babel-preset-storybook-full-source:build': { + id: '@fluentui/babel-preset-storybook-full-source:build', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-designer:build': { + id: '@fluentui/theme-designer:build', + target: { project: '@fluentui/theme-designer', target: 'build' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-rating-preview:build': { + id: '@fluentui/react-rating-preview:build', + target: { project: '@fluentui/react-rating-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-search-preview:build': { + id: '@fluentui/react-search-preview:build', + target: { project: '@fluentui/react-search-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-teaching-popover-preview:build': { + id: '@fluentui/react-teaching-popover-preview:build', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-timepicker-compat-preview:build': { + id: '@fluentui/react-timepicker-compat-preview:build', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'build' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/public-docsite-v9:build': [ + '@fluentui/react-calendar-compat:build', + '@fluentui/react-datepicker-compat:build', + '@fluentui/react-migration-v8-v9:build', + '@fluentui/react-migration-v0-v9:build', + '@fluentui/react:build', + '@fluentui/react-northstar:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-components:build', + '@fluentui/react-storybook-addon:build', + '@fluentui/react-storybook-addon-export-to-sandbox:build', + '@fluentui/theme-designer:build', + '@fluentui/react-rating-preview:build', + '@fluentui/react-search-preview:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-teaching-popover-preview:build', + '@fluentui/react-timepicker-compat-preview:build', + ], + '@fluentui/react-calendar-compat:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/keyboard-keys:build': [], + '@fluentui/react-jsx-runtime:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], + '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], + '@fluentui/react-theme:build': ['@fluentui/tokens:build'], + '@fluentui/tokens:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], + '@fluentui/react-tabster:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-datepicker-compat:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-calendar-compat:build', + '@fluentui/react-field:build', + '@fluentui/react-input:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-popover:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-field:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], + '@fluentui/react-label:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-input:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-text:build', + ], + '@fluentui/react-text:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-popover:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-aria:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-portal:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/react-positioning:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-migration-v8-v9:build': [ + '@fluentui/fluent2-theme:build', + '@fluentui/react:build', + '@fluentui/react-components:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/fluent2-theme:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/react-components:build': [ + '@fluentui/react-accordion:build', + '@fluentui/react-alert:build', + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-button:build', + '@fluentui/react-card:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-combobox:build', + '@fluentui/react-dialog:build', + '@fluentui/react-divider:build', + '@fluentui/react-drawer:build', + '@fluentui/react-field:build', + '@fluentui/react-image:build', + '@fluentui/react-infobutton:build', + '@fluentui/react-infolabel:build', + '@fluentui/react-input:build', + '@fluentui/react-label:build', + '@fluentui/react-link:build', + '@fluentui/react-menu:build', + '@fluentui/react-overflow:build', + '@fluentui/react-persona:build', + '@fluentui/react-portal:build', + '@fluentui/react-popover:build', + '@fluentui/react-positioning:build', + '@fluentui/react-progress:build', + '@fluentui/react-provider:build', + '@fluentui/react-radio:build', + '@fluentui/react-select:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-skeleton:build', + '@fluentui/react-slider:build', + '@fluentui/react-spinbutton:build', + '@fluentui/react-spinner:build', + '@fluentui/react-switch:build', + '@fluentui/react-table:build', + '@fluentui/react-tabs:build', + '@fluentui/react-tabster:build', + '@fluentui/react-tags:build', + '@fluentui/react-textarea:build', + '@fluentui/react-theme:build', + '@fluentui/react-toast:build', + '@fluentui/react-toolbar:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-text:build', + '@fluentui/react-virtualizer:build', + '@fluentui/react-tree:build', + '@fluentui/react-message-bar:build', + '@fluentui/react-breadcrumb:build', + ], + '@fluentui/react-accordion:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-alert:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-avatar:build': [ + '@fluentui/react-badge:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-popover:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-tooltip:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-badge:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tooltip:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-button:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/a11y-testing:build': [], + '@fluentui/react-card:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-conformance:build', + '@fluentui/react-button:build', + ], + '@fluentui/react-checkbox:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-combobox:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-dialog:build': [ + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/keyboard-keys:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-aria:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-portal:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-divider:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-drawer:build': [ + '@fluentui/react-dialog:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-motion-preview:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-motion-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-image:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infobutton:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-infolabel:build': [ + '@fluentui/react-label:build', + '@fluentui/react-popover:build', + '@fluentui/react-tabster:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-link:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-menu:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-portal:build', + '@fluentui/react-positioning:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-overflow:build': [ + '@fluentui/priority-overflow:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/priority-overflow:build': [], + '@fluentui/react-persona:build': [ + '@fluentui/react-avatar:build', + '@fluentui/react-badge:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-progress:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-provider:build': [ + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-radio:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-select:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-skeleton:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-slider:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinbutton:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + '@fluentui/react-label:build', + ], + '@fluentui/react-spinner:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-switch:build': [ + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-label:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-table:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tabs:build': [ + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tags:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-textarea:build': [ + '@fluentui/react-field:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toast:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-portal:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-toolbar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-divider:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-virtualizer:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-tree:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-aria:build', + '@fluentui/react-avatar:build', + '@fluentui/react-button:build', + '@fluentui/react-checkbox:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-radio:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-message-bar:build': [ + '@fluentui/react-button:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-breadcrumb:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-button:build', + '@fluentui/react-link:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-migration-v0-v9:build': [ + '@fluentui/react-aria:build', + '@fluentui/react-components:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-northstar:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-tabster:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-bindings:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-nesting-registry:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-icons-northstar:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-proptypes:build', + '@fluentui/state:build', + '@fluentui/styles:build', + '@fluentui/a11y-testing:build', + '@fluentui/react-conformance:build', + ], + '@fluentui/accessibility:build': [], + '@fluentui/react-bindings:build': [ + '@fluentui/accessibility:build', + '@fluentui/dom-utilities:build', + '@fluentui/react-component-event-listener:build', + '@fluentui/react-component-ref:build', + '@fluentui/react-northstar-fela-renderer:build', + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/state:build', + '@fluentui/styles:build', + ], + '@fluentui/react-component-event-listener:build': [], + '@fluentui/react-component-ref:build': [], + '@fluentui/react-northstar-fela-renderer:build': [ + '@fluentui/react-northstar-styles-renderer:build', + '@fluentui/styles:build', + ], + '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], + '@fluentui/styles:build': [], + '@fluentui/state:build': [], + '@fluentui/react-component-nesting-registry:build': [], + '@fluentui/react-icons-northstar:build': [ + '@fluentui/accessibility:build', + '@fluentui/react-bindings:build', + '@fluentui/styles:build', + ], + '@fluentui/react-proptypes:build': [], + '@fluentui/react-storybook-addon:build': ['@fluentui/react-theme:build', '@fluentui/react-provider:build'], + '@fluentui/react-storybook-addon-export-to-sandbox:build': [ + '@fluentui/babel-preset-storybook-full-source:build', + ], + '@fluentui/babel-preset-storybook-full-source:build': [], + '@fluentui/theme-designer:build': [ + '@fluentui/react-alert:build', + '@fluentui/react-components:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-storybook-addon-export-to-sandbox:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + ], + '@fluentui/react-rating-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-tabster:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-search-preview:build': [ + '@fluentui/react-input:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-teaching-popover-preview:build': [ + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-popover:build', + '@fluentui/react-button:build', + '@fluentui/react-tabster:build', + '@fluentui/react-aria:build', + '@fluentui/react-context-selector:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + '@fluentui/react-timepicker-compat-preview:build': [ + '@fluentui/keyboard-keys:build', + '@fluentui/react-combobox:build', + '@fluentui/react-field:build', + '@fluentui/react-jsx-runtime:build', + '@fluentui/react-shared-contexts:build', + '@fluentui/react-theme:build', + '@fluentui/react-utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/react-conformance-griffel:build', + ], + }, + }, + '@fluentui/public-docsite-v9:build-storybook': { + roots: ['@fluentui/public-docsite-v9:build-storybook'], + tasks: { + '@fluentui/public-docsite-v9:build-storybook': { + id: '@fluentui/public-docsite-v9:build-storybook', + target: { project: '@fluentui/public-docsite-v9', target: 'build-storybook' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:build-storybook': [] }, + }, + '@fluentui/public-docsite-v9:chromatic:branch': { + roots: ['@fluentui/public-docsite-v9:chromatic:branch'], + tasks: { + '@fluentui/public-docsite-v9:chromatic:branch': { + id: '@fluentui/public-docsite-v9:chromatic:branch', + target: { project: '@fluentui/public-docsite-v9', target: 'chromatic:branch' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:chromatic:branch': [] }, + }, + '@fluentui/public-docsite-v9:chromatic': { + roots: ['@fluentui/public-docsite-v9:chromatic'], + tasks: { + '@fluentui/public-docsite-v9:chromatic': { + id: '@fluentui/public-docsite-v9:chromatic', + target: { project: '@fluentui/public-docsite-v9', target: 'chromatic' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:chromatic': [] }, + }, + '@fluentui/public-docsite-v9:clean': { + roots: ['@fluentui/public-docsite-v9:clean'], + tasks: { + '@fluentui/public-docsite-v9:clean': { + id: '@fluentui/public-docsite-v9:clean', + target: { project: '@fluentui/public-docsite-v9', target: 'clean' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:clean': [] }, + }, + '@fluentui/public-docsite-v9:code-style': { + roots: ['@fluentui/public-docsite-v9:code-style'], + tasks: { + '@fluentui/public-docsite-v9:code-style': { + id: '@fluentui/public-docsite-v9:code-style', + target: { project: '@fluentui/public-docsite-v9', target: 'code-style' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:code-style': [] }, + }, + '@fluentui/public-docsite-v9:just': { + roots: ['@fluentui/public-docsite-v9:just'], + tasks: { + '@fluentui/public-docsite-v9:just': { + id: '@fluentui/public-docsite-v9:just', + target: { project: '@fluentui/public-docsite-v9', target: 'just' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:just': [] }, + }, + '@fluentui/public-docsite-v9:lint': { + roots: ['@fluentui/public-docsite-v9:lint'], + tasks: { + '@fluentui/public-docsite-v9:lint': { + id: '@fluentui/public-docsite-v9:lint', + target: { project: '@fluentui/public-docsite-v9', target: 'lint' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:lint': [] }, + }, + '@fluentui/public-docsite-v9:type-check': { + roots: ['@fluentui/public-docsite-v9:type-check'], + tasks: { + '@fluentui/public-docsite-v9:type-check': { + id: '@fluentui/public-docsite-v9:type-check', + target: { project: '@fluentui/public-docsite-v9', target: 'type-check' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:type-check': [] }, + }, + '@fluentui/public-docsite-v9:start': { + roots: ['@fluentui/public-docsite-v9:start'], + tasks: { + '@fluentui/public-docsite-v9:start': { + id: '@fluentui/public-docsite-v9:start', + target: { project: '@fluentui/public-docsite-v9', target: 'start' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:start': [] }, + }, + '@fluentui/public-docsite-v9:storybook': { + roots: ['@fluentui/public-docsite-v9:storybook'], + tasks: { + '@fluentui/public-docsite-v9:storybook': { + id: '@fluentui/public-docsite-v9:storybook', + target: { project: '@fluentui/public-docsite-v9', target: 'storybook' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:storybook': [] }, + }, + '@fluentui/public-docsite-v9:storybook:docs': { + roots: ['@fluentui/public-docsite-v9:storybook:docs'], + tasks: { + '@fluentui/public-docsite-v9:storybook:docs': { + id: '@fluentui/public-docsite-v9:storybook:docs', + target: { project: '@fluentui/public-docsite-v9', target: 'storybook:docs' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite-v9:storybook:docs': [] }, + }, + '@fluentui/public-docsite-v9:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/public-docsite-v9:nx-release-publish': { + id: '@fluentui/public-docsite-v9:nx-release-publish', + target: { project: '@fluentui/public-docsite-v9', target: 'nx-release-publish' }, + projectRoot: 'apps/public-docsite-v9', + overrides: {}, + }, + '@fluentui/react-calendar-compat:nx-release-publish': { + id: '@fluentui/react-calendar-compat:nx-release-publish', + target: { project: '@fluentui/react-calendar-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-calendar-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-datepicker-compat:nx-release-publish': { + id: '@fluentui/react-datepicker-compat:nx-release-publish', + target: { project: '@fluentui/react-datepicker-compat', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-datepicker-compat', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-migration-v8-v9:nx-release-publish': { + id: '@fluentui/react-migration-v8-v9:nx-release-publish', + target: { project: '@fluentui/react-migration-v8-v9', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-migration-v8-v9', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/fluent2-theme:nx-release-publish': { + id: '@fluentui/fluent2-theme:nx-release-publish', + target: { project: '@fluentui/fluent2-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/fluent2-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-migration-v0-v9:nx-release-publish': { + id: '@fluentui/react-migration-v0-v9:nx-release-publish', + target: { project: '@fluentui/react-migration-v0-v9', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-migration-v0-v9', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon:nx-release-publish': { + id: '@fluentui/react-storybook-addon:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { + id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { + id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/babel-preset-storybook-full-source', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-designer:nx-release-publish': { + id: '@fluentui/theme-designer:nx-release-publish', + target: { project: '@fluentui/theme-designer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/theme-designer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-rating-preview:nx-release-publish': { + id: '@fluentui/react-rating-preview:nx-release-publish', + target: { project: '@fluentui/react-rating-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-rating-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-search-preview:nx-release-publish': { + id: '@fluentui/react-search-preview:nx-release-publish', + target: { project: '@fluentui/react-search-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-search-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-teaching-popover-preview:nx-release-publish': { + id: '@fluentui/react-teaching-popover-preview:nx-release-publish', + target: { project: '@fluentui/react-teaching-popover-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-teaching-popover-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-timepicker-compat-preview:nx-release-publish': { + id: '@fluentui/react-timepicker-compat-preview:nx-release-publish', + target: { project: '@fluentui/react-timepicker-compat-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-timepicker-compat-preview', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/public-docsite-v9:nx-release-publish': [ + '@fluentui/react-calendar-compat:nx-release-publish', + '@fluentui/react-datepicker-compat:nx-release-publish', + '@fluentui/react-migration-v8-v9:nx-release-publish', + '@fluentui/react-migration-v0-v9:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-storybook-addon:nx-release-publish', + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + '@fluentui/theme-designer:nx-release-publish', + '@fluentui/react-rating-preview:nx-release-publish', + '@fluentui/react-search-preview:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-teaching-popover-preview:nx-release-publish', + '@fluentui/react-timepicker-compat-preview:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-calendar-compat:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-datepicker-compat:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-calendar-compat:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-migration-v8-v9:nx-release-publish': [ + '@fluentui/fluent2-theme:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/fluent2-theme:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-migration-v0-v9:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-storybook-addon:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ + '@fluentui/babel-preset-storybook-full-source:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme-designer:nx-release-publish': [ + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-rating-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-search-preview:nx-release-publish': [ + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-teaching-popover-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-timepicker-compat-preview:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/workspace-plugin:test': { + roots: ['@fluentui/workspace-plugin:test'], + tasks: { + '@fluentui/workspace-plugin:test': { + id: '@fluentui/workspace-plugin:test', + target: { project: '@fluentui/workspace-plugin', target: 'test' }, + projectRoot: 'tools/workspace-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/workspace-plugin:test': [] }, + }, + '@fluentui/workspace-plugin:test:ci': { + roots: ['@fluentui/workspace-plugin:test:ci'], + tasks: { + '@fluentui/workspace-plugin:test:ci': { + id: '@fluentui/workspace-plugin:test:ci', + target: { project: '@fluentui/workspace-plugin', target: 'test', configuration: 'ci' }, + projectRoot: 'tools/workspace-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/workspace-plugin:test:ci': [] }, + }, + '@fluentui/workspace-plugin:type-check': { + roots: ['@fluentui/workspace-plugin:type-check'], + tasks: { + '@fluentui/workspace-plugin:type-check': { + id: '@fluentui/workspace-plugin:type-check', + target: { project: '@fluentui/workspace-plugin', target: 'type-check' }, + projectRoot: 'tools/workspace-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/workspace-plugin:type-check': [] }, + }, + '@fluentui/workspace-plugin:lint': { + roots: ['@fluentui/workspace-plugin:lint'], + tasks: { + '@fluentui/workspace-plugin:lint': { + id: '@fluentui/workspace-plugin:lint', + target: { project: '@fluentui/workspace-plugin', target: 'lint' }, + projectRoot: 'tools/workspace-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/workspace-plugin:lint': [] }, + }, + '@fluentui/workspace-plugin:nx-release-publish': { + roots: ['@fluentui/workspace-plugin:nx-release-publish'], + tasks: { + '@fluentui/workspace-plugin:nx-release-publish': { + id: '@fluentui/workspace-plugin:nx-release-publish', + target: { project: '@fluentui/workspace-plugin', target: 'nx-release-publish' }, + projectRoot: 'tools/workspace-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/workspace-plugin:nx-release-publish': [] }, + }, + '@fluentui/workspace-plugin:build': { + roots: ['@fluentui/workspace-plugin:build'], + tasks: { + '@fluentui/workspace-plugin:build': { + id: '@fluentui/workspace-plugin:build', + target: { project: '@fluentui/workspace-plugin', target: 'build' }, + projectRoot: 'tools/workspace-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/workspace-plugin:build': [] }, + }, + '@fluentui/workspace-plugin:lint-old': { + roots: ['@fluentui/workspace-plugin:lint-old'], + tasks: { + '@fluentui/workspace-plugin:lint-old': { + id: '@fluentui/workspace-plugin:lint-old', + target: { project: '@fluentui/workspace-plugin', target: 'lint-old' }, + projectRoot: 'tools/workspace-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/workspace-plugin:lint-old': [] }, + }, + '@fluentui/workspace-plugin:check-graph': { + roots: ['@fluentui/workspace-plugin:check-graph'], + tasks: { + '@fluentui/workspace-plugin:check-graph': { + id: '@fluentui/workspace-plugin:check-graph', + target: { project: '@fluentui/workspace-plugin', target: 'check-graph' }, + projectRoot: 'tools/workspace-plugin', + overrides: {}, + }, + }, + dependencies: { '@fluentui/workspace-plugin:check-graph': [] }, + }, + '@fluentui/fluent2-theme:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/fluent2-theme:build': { + id: '@fluentui/fluent2-theme:build', + target: { project: '@fluentui/fluent2-theme', target: 'build' }, + projectRoot: 'packages/fluent2-theme', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/fluent2-theme:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + }, + }, + '@fluentui/fluent2-theme:bundle': { + roots: ['@fluentui/fluent2-theme:bundle'], + tasks: { + '@fluentui/fluent2-theme:bundle': { + id: '@fluentui/fluent2-theme:bundle', + target: { project: '@fluentui/fluent2-theme', target: 'bundle' }, + projectRoot: 'packages/fluent2-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/fluent2-theme:bundle': [] }, + }, + '@fluentui/fluent2-theme:lint': { + roots: ['@fluentui/fluent2-theme:lint'], + tasks: { + '@fluentui/fluent2-theme:lint': { + id: '@fluentui/fluent2-theme:lint', + target: { project: '@fluentui/fluent2-theme', target: 'lint' }, + projectRoot: 'packages/fluent2-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/fluent2-theme:lint': [] }, + }, + '@fluentui/fluent2-theme:just': { + roots: ['@fluentui/fluent2-theme:just'], + tasks: { + '@fluentui/fluent2-theme:just': { + id: '@fluentui/fluent2-theme:just', + target: { project: '@fluentui/fluent2-theme', target: 'just' }, + projectRoot: 'packages/fluent2-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/fluent2-theme:just': [] }, + }, + '@fluentui/fluent2-theme:code-style': { + roots: ['@fluentui/fluent2-theme:code-style'], + tasks: { + '@fluentui/fluent2-theme:code-style': { + id: '@fluentui/fluent2-theme:code-style', + target: { project: '@fluentui/fluent2-theme', target: 'code-style' }, + projectRoot: 'packages/fluent2-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/fluent2-theme:code-style': [] }, + }, + '@fluentui/fluent2-theme:clean': { + roots: ['@fluentui/fluent2-theme:clean'], + tasks: { + '@fluentui/fluent2-theme:clean': { + id: '@fluentui/fluent2-theme:clean', + target: { project: '@fluentui/fluent2-theme', target: 'clean' }, + projectRoot: 'packages/fluent2-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/fluent2-theme:clean': [] }, + }, + '@fluentui/fluent2-theme:start': { + roots: ['@fluentui/fluent2-theme:start'], + tasks: { + '@fluentui/fluent2-theme:start': { + id: '@fluentui/fluent2-theme:start', + target: { project: '@fluentui/fluent2-theme', target: 'start' }, + projectRoot: 'packages/fluent2-theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/fluent2-theme:start': [] }, + }, + '@fluentui/fluent2-theme:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/fluent2-theme:nx-release-publish': { + id: '@fluentui/fluent2-theme:nx-release-publish', + target: { project: '@fluentui/fluent2-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/fluent2-theme', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/fluent2-theme:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-18-tests-v9:type-check': { + roots: ['@fluentui/react-18-tests-v9:type-check'], + tasks: { + '@fluentui/react-18-tests-v9:type-check': { + id: '@fluentui/react-18-tests-v9:type-check', + target: { project: '@fluentui/react-18-tests-v9', target: 'type-check' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v9:type-check': [] }, + }, + '@fluentui/react-18-tests-v9:lint': { + roots: ['@fluentui/react-18-tests-v9:lint'], + tasks: { + '@fluentui/react-18-tests-v9:lint': { + id: '@fluentui/react-18-tests-v9:lint', + target: { project: '@fluentui/react-18-tests-v9', target: 'lint' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v9:lint': [] }, + }, + '@fluentui/react-18-tests-v9:test': { + roots: ['@fluentui/react-18-tests-v9:test'], + tasks: { + '@fluentui/react-18-tests-v9:test': { + id: '@fluentui/react-18-tests-v9:test', + target: { project: '@fluentui/react-18-tests-v9', target: 'test' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v9:test': [] }, + }, + '@fluentui/react-18-tests-v9:format': { + roots: ['@fluentui/react-18-tests-v9:format'], + tasks: { + '@fluentui/react-18-tests-v9:format': { + id: '@fluentui/react-18-tests-v9:format', + target: { project: '@fluentui/react-18-tests-v9', target: 'format' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v9:format': [] }, + }, + '@fluentui/react-18-tests-v9:format:check': { + roots: ['@fluentui/react-18-tests-v9:format:check'], + tasks: { + '@fluentui/react-18-tests-v9:format:check': { + id: '@fluentui/react-18-tests-v9:format:check', + target: { project: '@fluentui/react-18-tests-v9', target: 'format:check' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v9:format:check': [] }, + }, + '@fluentui/react-18-tests-v9:start': { + roots: ['@fluentui/react-18-tests-v9:start'], + tasks: { + '@fluentui/react-18-tests-v9:start': { + id: '@fluentui/react-18-tests-v9:start', + target: { project: '@fluentui/react-18-tests-v9', target: 'start' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v9:start': [] }, + }, + '@fluentui/react-18-tests-v9:e2e:local': { + roots: ['@fluentui/react-18-tests-v9:e2e:local'], + tasks: { + '@fluentui/react-18-tests-v9:e2e:local': { + id: '@fluentui/react-18-tests-v9:e2e:local', + target: { project: '@fluentui/react-18-tests-v9', target: 'e2e:local' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v9:e2e:local': [] }, + }, + '@fluentui/react-18-tests-v9:e2e': { + roots: ['@fluentui/react-18-tests-v9:e2e'], + tasks: { + '@fluentui/react-18-tests-v9:e2e': { + id: '@fluentui/react-18-tests-v9:e2e', + target: { project: '@fluentui/react-18-tests-v9', target: 'e2e' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v9:e2e': [] }, + }, + '@fluentui/react-18-tests-v9:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-18-tests-v9:nx-release-publish': { + id: '@fluentui/react-18-tests-v9:nx-release-publish', + target: { project: '@fluentui/react-18-tests-v9', target: 'nx-release-publish' }, + projectRoot: 'apps/react-18-tests-v9', + overrides: {}, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-18-tests-v9:nx-release-publish': [ + '@fluentui/react-components:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-18-tests-v8:type-check': { + roots: ['@fluentui/react-18-tests-v8:type-check'], + tasks: { + '@fluentui/react-18-tests-v8:type-check': { + id: '@fluentui/react-18-tests-v8:type-check', + target: { project: '@fluentui/react-18-tests-v8', target: 'type-check' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v8:type-check': [] }, + }, + '@fluentui/react-18-tests-v8:format': { + roots: ['@fluentui/react-18-tests-v8:format'], + tasks: { + '@fluentui/react-18-tests-v8:format': { + id: '@fluentui/react-18-tests-v8:format', + target: { project: '@fluentui/react-18-tests-v8', target: 'format' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v8:format': [] }, + }, + '@fluentui/react-18-tests-v8:format:check': { + roots: ['@fluentui/react-18-tests-v8:format:check'], + tasks: { + '@fluentui/react-18-tests-v8:format:check': { + id: '@fluentui/react-18-tests-v8:format:check', + target: { project: '@fluentui/react-18-tests-v8', target: 'format:check' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v8:format:check': [] }, + }, + '@fluentui/react-18-tests-v8:e2e': { + roots: ['@fluentui/react-18-tests-v8:e2e'], + tasks: { + '@fluentui/react-18-tests-v8:e2e': { + id: '@fluentui/react-18-tests-v8:e2e', + target: { project: '@fluentui/react-18-tests-v8', target: 'e2e' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v8:e2e': [] }, + }, + '@fluentui/react-18-tests-v8:e2e:local': { + roots: ['@fluentui/react-18-tests-v8:e2e:local'], + tasks: { + '@fluentui/react-18-tests-v8:e2e:local': { + id: '@fluentui/react-18-tests-v8:e2e:local', + target: { project: '@fluentui/react-18-tests-v8', target: 'e2e:local' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v8:e2e:local': [] }, + }, + '@fluentui/react-18-tests-v8:lint': { + roots: ['@fluentui/react-18-tests-v8:lint'], + tasks: { + '@fluentui/react-18-tests-v8:lint': { + id: '@fluentui/react-18-tests-v8:lint', + target: { project: '@fluentui/react-18-tests-v8', target: 'lint' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v8:lint': [] }, + }, + '@fluentui/react-18-tests-v8:test': { + roots: ['@fluentui/react-18-tests-v8:test'], + tasks: { + '@fluentui/react-18-tests-v8:test': { + id: '@fluentui/react-18-tests-v8:test', + target: { project: '@fluentui/react-18-tests-v8', target: 'test' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v8:test': [] }, + }, + '@fluentui/react-18-tests-v8:start': { + roots: ['@fluentui/react-18-tests-v8:start'], + tasks: { + '@fluentui/react-18-tests-v8:start': { + id: '@fluentui/react-18-tests-v8:start', + target: { project: '@fluentui/react-18-tests-v8', target: 'start' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-18-tests-v8:start': [] }, + }, + '@fluentui/react-18-tests-v8:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/react-18-tests-v8:nx-release-publish': { + id: '@fluentui/react-18-tests-v8:nx-release-publish', + target: { project: '@fluentui/react-18-tests-v8', target: 'nx-release-publish' }, + projectRoot: 'apps/react-18-tests-v8', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-18-tests-v8:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + }, + }, + '@fluentui/azure-themes:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/azure-themes:build': { + id: '@fluentui/azure-themes:build', + target: { project: '@fluentui/azure-themes', target: 'build' }, + projectRoot: 'packages/azure-themes', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + }, + }, + '@fluentui/azure-themes:bundle': { + roots: ['@fluentui/azure-themes:bundle'], + tasks: { + '@fluentui/azure-themes:bundle': { + id: '@fluentui/azure-themes:bundle', + target: { project: '@fluentui/azure-themes', target: 'bundle' }, + projectRoot: 'packages/azure-themes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/azure-themes:bundle': [] }, + }, + '@fluentui/azure-themes:lint': { + roots: ['@fluentui/azure-themes:lint'], + tasks: { + '@fluentui/azure-themes:lint': { + id: '@fluentui/azure-themes:lint', + target: { project: '@fluentui/azure-themes', target: 'lint' }, + projectRoot: 'packages/azure-themes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/azure-themes:lint': [] }, + }, + '@fluentui/azure-themes:just': { + roots: ['@fluentui/azure-themes:just'], + tasks: { + '@fluentui/azure-themes:just': { + id: '@fluentui/azure-themes:just', + target: { project: '@fluentui/azure-themes', target: 'just' }, + projectRoot: 'packages/azure-themes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/azure-themes:just': [] }, + }, + '@fluentui/azure-themes:code-style': { + roots: ['@fluentui/azure-themes:code-style'], + tasks: { + '@fluentui/azure-themes:code-style': { + id: '@fluentui/azure-themes:code-style', + target: { project: '@fluentui/azure-themes', target: 'code-style' }, + projectRoot: 'packages/azure-themes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/azure-themes:code-style': [] }, + }, + '@fluentui/azure-themes:clean': { + roots: ['@fluentui/azure-themes:clean'], + tasks: { + '@fluentui/azure-themes:clean': { + id: '@fluentui/azure-themes:clean', + target: { project: '@fluentui/azure-themes', target: 'clean' }, + projectRoot: 'packages/azure-themes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/azure-themes:clean': [] }, + }, + '@fluentui/azure-themes:start': { + roots: ['@fluentui/azure-themes:start'], + tasks: { + '@fluentui/azure-themes:start': { + id: '@fluentui/azure-themes:start', + target: { project: '@fluentui/azure-themes', target: 'start' }, + projectRoot: 'packages/azure-themes', + overrides: {}, + }, + }, + dependencies: { '@fluentui/azure-themes:start': [] }, + }, + '@fluentui/azure-themes:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/azure-themes:nx-release-publish': { + id: '@fluentui/azure-themes:nx-release-publish', + target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, + projectRoot: 'packages/azure-themes', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/azure-themes:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/e2e:serve': { + roots: ['@fluentui/e2e:serve'], + tasks: { + '@fluentui/e2e:serve': { + id: '@fluentui/e2e:serve', + target: { project: '@fluentui/e2e', target: 'serve' }, + projectRoot: 'packages/fluentui/e2e', + overrides: {}, + }, + }, + dependencies: { '@fluentui/e2e:serve': [] }, + }, + '@fluentui/e2e:e2e': { + roots: ['@fluentui/e2e:e2e'], + tasks: { + '@fluentui/e2e:e2e': { + id: '@fluentui/e2e:e2e', + target: { project: '@fluentui/e2e', target: 'e2e' }, + projectRoot: 'packages/fluentui/e2e', + overrides: {}, + }, + }, + dependencies: { '@fluentui/e2e:e2e': [] }, + }, + '@fluentui/e2e:e2e:local': { + roots: ['@fluentui/e2e:e2e:local'], + tasks: { + '@fluentui/e2e:e2e:local': { + id: '@fluentui/e2e:e2e:local', + target: { project: '@fluentui/e2e', target: 'e2e:local' }, + projectRoot: 'packages/fluentui/e2e', + overrides: {}, + }, + }, + dependencies: { '@fluentui/e2e:e2e:local': [] }, + }, + '@fluentui/e2e:lint': { + roots: ['@fluentui/e2e:lint'], + tasks: { + '@fluentui/e2e:lint': { + id: '@fluentui/e2e:lint', + target: { project: '@fluentui/e2e', target: 'lint' }, + projectRoot: 'packages/fluentui/e2e', + overrides: {}, + }, + }, + dependencies: { '@fluentui/e2e:lint': [] }, + }, + '@fluentui/e2e:lint:fix': { + roots: ['@fluentui/e2e:lint:fix'], + tasks: { + '@fluentui/e2e:lint:fix': { + id: '@fluentui/e2e:lint:fix', + target: { project: '@fluentui/e2e', target: 'lint:fix' }, + projectRoot: 'packages/fluentui/e2e', + overrides: {}, + }, + }, + dependencies: { '@fluentui/e2e:lint:fix': [] }, + }, + '@fluentui/e2e:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/e2e:nx-release-publish': { + id: '@fluentui/e2e:nx-release-publish', + target: { project: '@fluentui/e2e', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/e2e', + overrides: {}, + }, + '@fluentui/accessibility:nx-release-publish': { + id: '@fluentui/accessibility:nx-release-publish', + target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/accessibility', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-northstar:nx-release-publish': { + id: '@fluentui/react-icons-northstar:nx-release-publish', + target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-icons-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-bindings:nx-release-publish': { + id: '@fluentui/react-bindings:nx-release-publish', + target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-bindings', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-event-listener:nx-release-publish': { + id: '@fluentui/react-component-event-listener:nx-release-publish', + target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-event-listener', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-ref:nx-release-publish': { + id: '@fluentui/react-component-ref:nx-release-publish', + target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-ref', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-fela-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-fela-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-styles-renderer:nx-release-publish': { + id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', + target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-styles-renderer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/styles:nx-release-publish': { + id: '@fluentui/styles:nx-release-publish', + target: { project: '@fluentui/styles', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/state:nx-release-publish': { + id: '@fluentui/state:nx-release-publish', + target: { project: '@fluentui/state', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/state', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar:nx-release-publish': { + id: '@fluentui/react-northstar:nx-release-publish', + target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-component-nesting-registry:nx-release-publish': { + id: '@fluentui/react-component-nesting-registry:nx-release-publish', + target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-component-nesting-registry', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-proptypes:nx-release-publish': { + id: '@fluentui/react-proptypes:nx-release-publish', + target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-proptypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-northstar-prototypes:nx-release-publish': { + id: '@fluentui/react-northstar-prototypes:nx-release-publish', + target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/react-northstar-prototypes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/code-sandbox:nx-release-publish': { + id: '@fluentui/code-sandbox:nx-release-publish', + target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/code-sandbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/docs-components:nx-release-publish': { + id: '@fluentui/docs-components:nx-release-publish', + target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, + projectRoot: 'packages/fluentui/docs-components', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/e2e:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/react-northstar-prototypes:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/accessibility:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-icons-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-bindings:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-northstar-fela-renderer:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-event-listener:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-ref:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ + '@fluentui/styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/styles:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/state:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/react-northstar:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-nesting-registry:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar-styles-renderer:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-proptypes:nx-release-publish', + '@fluentui/state:nx-release-publish', + '@fluentui/styles:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-component-nesting-registry:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/react-proptypes:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-northstar-prototypes:nx-release-publish': [ + '@fluentui/accessibility:nx-release-publish', + '@fluentui/code-sandbox:nx-release-publish', + '@fluentui/docs-components:nx-release-publish', + '@fluentui/react-bindings:nx-release-publish', + '@fluentui/react-component-event-listener:nx-release-publish', + '@fluentui/react-component-ref:nx-release-publish', + '@fluentui/react-icons-northstar:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/code-sandbox:nx-release-publish': [ + '@fluentui/docs-components:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-northstar:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + '@fluentui/docs-components:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-gulp:nx-release-publish', + ], + }, + }, + '@fluentui/theming-designer:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/monaco-editor:build', + ], + tasks: { + '@fluentui/theming-designer:build': { + id: '@fluentui/theming-designer:build', + target: { project: '@fluentui/theming-designer', target: 'build' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:build': { + id: '@fluentui/react-docsite-components:build', + target: { project: '@fluentui/react-docsite-components', target: 'build' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:build': { + id: '@fluentui/public-docsite-setup:build', + target: { project: '@fluentui/public-docsite-setup', target: 'build' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:build': { + id: '@fluentui/react-monaco-editor:build', + target: { project: '@fluentui/react-monaco-editor', target: 'build' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:build': { + id: '@fluentui/monaco-editor:build', + target: { project: '@fluentui/monaco-editor', target: 'build' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/theming-designer:build': [ + '@fluentui/react:build', + '@fluentui/merge-styles:build', + '@fluentui/react-docsite-components:build', + '@fluentui/foundation-legacy:build', + '@fluentui/scheme-utilities:build', + '@fluentui/set-version:build', + '@fluentui/font-icons-mdl2:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/react-docsite-components:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/common-styles:build', + ], + '@fluentui/public-docsite-setup:build': [], + '@fluentui/react-monaco-editor:build': [ + '@fluentui/react:build', + '@fluentui/example-data:build', + '@fluentui/monaco-editor:build', + '@fluentui/react-hooks:build', + '@fluentui/react-charting:build', + ], + '@fluentui/monaco-editor:build': [], + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + }, + }, + '@fluentui/theming-designer:bundle': { + roots: ['@fluentui/theming-designer:bundle'], + tasks: { + '@fluentui/theming-designer:bundle': { + id: '@fluentui/theming-designer:bundle', + target: { project: '@fluentui/theming-designer', target: 'bundle' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theming-designer:bundle': [] }, + }, + '@fluentui/theming-designer:lint': { + roots: ['@fluentui/theming-designer:lint'], + tasks: { + '@fluentui/theming-designer:lint': { + id: '@fluentui/theming-designer:lint', + target: { project: '@fluentui/theming-designer', target: 'lint' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theming-designer:lint': [] }, + }, + '@fluentui/theming-designer:test': { + roots: ['@fluentui/theming-designer:test'], + tasks: { + '@fluentui/theming-designer:test': { + id: '@fluentui/theming-designer:test', + target: { project: '@fluentui/theming-designer', target: 'test' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theming-designer:test': [] }, + }, + '@fluentui/theming-designer:just': { + roots: ['@fluentui/theming-designer:just'], + tasks: { + '@fluentui/theming-designer:just': { + id: '@fluentui/theming-designer:just', + target: { project: '@fluentui/theming-designer', target: 'just' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theming-designer:just': [] }, + }, + '@fluentui/theming-designer:clean': { + roots: ['@fluentui/theming-designer:clean'], + tasks: { + '@fluentui/theming-designer:clean': { + id: '@fluentui/theming-designer:clean', + target: { project: '@fluentui/theming-designer', target: 'clean' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theming-designer:clean': [] }, + }, + '@fluentui/theming-designer:code-style': { + roots: ['@fluentui/theming-designer:code-style'], + tasks: { + '@fluentui/theming-designer:code-style': { + id: '@fluentui/theming-designer:code-style', + target: { project: '@fluentui/theming-designer', target: 'code-style' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theming-designer:code-style': [] }, + }, + '@fluentui/theming-designer:start': { + roots: ['@fluentui/theming-designer:start'], + tasks: { + '@fluentui/theming-designer:start': { + id: '@fluentui/theming-designer:start', + target: { project: '@fluentui/theming-designer', target: 'start' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theming-designer:start': [] }, + }, + '@fluentui/theming-designer:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/theming-designer:nx-release-publish': { + id: '@fluentui/theming-designer:nx-release-publish', + target: { project: '@fluentui/theming-designer', target: 'nx-release-publish' }, + projectRoot: 'apps/theming-designer', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:nx-release-publish': { + id: '@fluentui/react-docsite-components:nx-release-publish', + target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:nx-release-publish': { + id: '@fluentui/public-docsite-setup:nx-release-publish', + target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:nx-release-publish': { + id: '@fluentui/react-monaco-editor:nx-release-publish', + target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:nx-release-publish': { + id: '@fluentui/monaco-editor:nx-release-publish', + target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/theming-designer:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-docsite-components:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/public-docsite-setup:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/public-docsite-setup:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-monaco-editor:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/monaco-editor:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/monaco-editor:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + }, + }, + '@fluentui/merge-styles:build': { + roots: ['@fluentui/set-version:build'], + tasks: { + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + }, + }, + '@fluentui/merge-styles:bundle': { + roots: ['@fluentui/merge-styles:bundle'], + tasks: { + '@fluentui/merge-styles:bundle': { + id: '@fluentui/merge-styles:bundle', + target: { project: '@fluentui/merge-styles', target: 'bundle' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/merge-styles:bundle': [] }, + }, + '@fluentui/merge-styles:lint': { + roots: ['@fluentui/merge-styles:lint'], + tasks: { + '@fluentui/merge-styles:lint': { + id: '@fluentui/merge-styles:lint', + target: { project: '@fluentui/merge-styles', target: 'lint' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/merge-styles:lint': [] }, + }, + '@fluentui/merge-styles:test': { + roots: ['@fluentui/merge-styles:test'], + tasks: { + '@fluentui/merge-styles:test': { + id: '@fluentui/merge-styles:test', + target: { project: '@fluentui/merge-styles', target: 'test' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/merge-styles:test': [] }, + }, + '@fluentui/merge-styles:just': { + roots: ['@fluentui/merge-styles:just'], + tasks: { + '@fluentui/merge-styles:just': { + id: '@fluentui/merge-styles:just', + target: { project: '@fluentui/merge-styles', target: 'just' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/merge-styles:just': [] }, + }, + '@fluentui/merge-styles:clean': { + roots: ['@fluentui/merge-styles:clean'], + tasks: { + '@fluentui/merge-styles:clean': { + id: '@fluentui/merge-styles:clean', + target: { project: '@fluentui/merge-styles', target: 'clean' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/merge-styles:clean': [] }, + }, + '@fluentui/merge-styles:code-style': { + roots: ['@fluentui/merge-styles:code-style'], + tasks: { + '@fluentui/merge-styles:code-style': { + id: '@fluentui/merge-styles:code-style', + target: { project: '@fluentui/merge-styles', target: 'code-style' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/merge-styles:code-style': [] }, + }, + '@fluentui/merge-styles:start-test': { + roots: ['@fluentui/merge-styles:start-test'], + tasks: { + '@fluentui/merge-styles:start-test': { + id: '@fluentui/merge-styles:start-test', + target: { project: '@fluentui/merge-styles', target: 'start-test' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + }, + dependencies: { '@fluentui/merge-styles:start-test': [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: {}, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/keyboard-key:build': { + roots: ['@fluentui/keyboard-key:build'], + tasks: { + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-key:build': [] }, + }, + '@fluentui/keyboard-key:clean': { + roots: ['@fluentui/keyboard-key:clean'], + tasks: { + '@fluentui/keyboard-key:clean': { + id: '@fluentui/keyboard-key:clean', + target: { project: '@fluentui/keyboard-key', target: 'clean' }, + projectRoot: 'packages/keyboard-key', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-key:clean': [] }, + }, + '@fluentui/keyboard-key:code-style': { + roots: ['@fluentui/keyboard-key:code-style'], + tasks: { + '@fluentui/keyboard-key:code-style': { + id: '@fluentui/keyboard-key:code-style', + target: { project: '@fluentui/keyboard-key', target: 'code-style' }, + projectRoot: 'packages/keyboard-key', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-key:code-style': [] }, + }, + '@fluentui/keyboard-key:just': { + roots: ['@fluentui/keyboard-key:just'], + tasks: { + '@fluentui/keyboard-key:just': { + id: '@fluentui/keyboard-key:just', + target: { project: '@fluentui/keyboard-key', target: 'just' }, + projectRoot: 'packages/keyboard-key', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-key:just': [] }, + }, + '@fluentui/keyboard-key:lint': { + roots: ['@fluentui/keyboard-key:lint'], + tasks: { + '@fluentui/keyboard-key:lint': { + id: '@fluentui/keyboard-key:lint', + target: { project: '@fluentui/keyboard-key', target: 'lint' }, + projectRoot: 'packages/keyboard-key', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-key:lint': [] }, + }, + '@fluentui/keyboard-key:start-test': { + roots: ['@fluentui/keyboard-key:start-test'], + tasks: { + '@fluentui/keyboard-key:start-test': { + id: '@fluentui/keyboard-key:start-test', + target: { project: '@fluentui/keyboard-key', target: 'start-test' }, + projectRoot: 'packages/keyboard-key', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-key:start-test': [] }, + }, + '@fluentui/keyboard-key:test': { + roots: ['@fluentui/keyboard-key:test'], + tasks: { + '@fluentui/keyboard-key:test': { + id: '@fluentui/keyboard-key:test', + target: { project: '@fluentui/keyboard-key', target: 'test' }, + projectRoot: 'packages/keyboard-key', + overrides: {}, + }, + }, + dependencies: { '@fluentui/keyboard-key:test': [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-api-extractor:format': { + roots: ['@fluentui/scripts-api-extractor:format'], + tasks: { + '@fluentui/scripts-api-extractor:format': { + id: '@fluentui/scripts-api-extractor:format', + target: { project: '@fluentui/scripts-api-extractor', target: 'format' }, + projectRoot: 'scripts/api-extractor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-api-extractor:format': [] }, + }, + '@fluentui/scripts-api-extractor:format:check': { + roots: ['@fluentui/scripts-api-extractor:format:check'], + tasks: { + '@fluentui/scripts-api-extractor:format:check': { + id: '@fluentui/scripts-api-extractor:format:check', + target: { project: '@fluentui/scripts-api-extractor', target: 'format:check' }, + projectRoot: 'scripts/api-extractor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-api-extractor:format:check': [] }, + }, + '@fluentui/scripts-api-extractor:lint': { + roots: ['@fluentui/scripts-api-extractor:lint'], + tasks: { + '@fluentui/scripts-api-extractor:lint': { + id: '@fluentui/scripts-api-extractor:lint', + target: { project: '@fluentui/scripts-api-extractor', target: 'lint' }, + projectRoot: 'scripts/api-extractor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-api-extractor:lint': [] }, + }, + '@fluentui/scripts-api-extractor:test': { + roots: ['@fluentui/scripts-api-extractor:test'], + tasks: { + '@fluentui/scripts-api-extractor:test': { + id: '@fluentui/scripts-api-extractor:test', + target: { project: '@fluentui/scripts-api-extractor', target: 'test' }, + projectRoot: 'scripts/api-extractor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-api-extractor:test': [] }, + }, + '@fluentui/scripts-api-extractor:type-check': { + roots: ['@fluentui/scripts-api-extractor:type-check'], + tasks: { + '@fluentui/scripts-api-extractor:type-check': { + id: '@fluentui/scripts-api-extractor:type-check', + target: { project: '@fluentui/scripts-api-extractor', target: 'type-check' }, + projectRoot: 'scripts/api-extractor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-api-extractor:type-check': [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + roots: ['@fluentui/scripts-api-extractor:nx-release-publish'], + tasks: { + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-api-extractor:nx-release-publish': [] }, + }, + '@fluentui/cra-template:lint': { + roots: ['@fluentui/cra-template:lint'], + tasks: { + '@fluentui/cra-template:lint': { + id: '@fluentui/cra-template:lint', + target: { project: '@fluentui/cra-template', target: 'lint' }, + projectRoot: 'packages/cra-template', + overrides: {}, + }, + }, + dependencies: { '@fluentui/cra-template:lint': [] }, + }, + '@fluentui/cra-template:test': { + roots: ['@fluentui/cra-template:test'], + tasks: { + '@fluentui/cra-template:test': { + id: '@fluentui/cra-template:test', + target: { project: '@fluentui/cra-template', target: 'test' }, + projectRoot: 'packages/cra-template', + overrides: {}, + }, + }, + dependencies: { '@fluentui/cra-template:test': [] }, + }, + '@fluentui/cra-template:type-check': { + roots: ['@fluentui/cra-template:type-check'], + tasks: { + '@fluentui/cra-template:type-check': { + id: '@fluentui/cra-template:type-check', + target: { project: '@fluentui/cra-template', target: 'type-check' }, + projectRoot: 'packages/cra-template', + overrides: {}, + }, + }, + dependencies: { '@fluentui/cra-template:type-check': [] }, + }, + '@fluentui/cra-template:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + ], + tasks: { + '@fluentui/cra-template:nx-release-publish': { + id: '@fluentui/cra-template:nx-release-publish', + target: { project: '@fluentui/cra-template', target: 'nx-release-publish' }, + projectRoot: 'packages/cra-template', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/cra-template:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + }, + }, + '@fluentui/example-data:build': { + roots: ['@fluentui/example-data:build'], + tasks: { + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: {}, + }, + }, + dependencies: { '@fluentui/example-data:build': [] }, + }, + '@fluentui/example-data:bundle': { + roots: ['@fluentui/example-data:bundle'], + tasks: { + '@fluentui/example-data:bundle': { + id: '@fluentui/example-data:bundle', + target: { project: '@fluentui/example-data', target: 'bundle' }, + projectRoot: 'packages/example-data', + overrides: {}, + }, + }, + dependencies: { '@fluentui/example-data:bundle': [] }, + }, + '@fluentui/example-data:lint': { + roots: ['@fluentui/example-data:lint'], + tasks: { + '@fluentui/example-data:lint': { + id: '@fluentui/example-data:lint', + target: { project: '@fluentui/example-data', target: 'lint' }, + projectRoot: 'packages/example-data', + overrides: {}, + }, + }, + dependencies: { '@fluentui/example-data:lint': [] }, + }, + '@fluentui/example-data:test': { + roots: ['@fluentui/example-data:test'], + tasks: { + '@fluentui/example-data:test': { + id: '@fluentui/example-data:test', + target: { project: '@fluentui/example-data', target: 'test' }, + projectRoot: 'packages/example-data', + overrides: {}, + }, + }, + dependencies: { '@fluentui/example-data:test': [] }, + }, + '@fluentui/example-data:clean': { + roots: ['@fluentui/example-data:clean'], + tasks: { + '@fluentui/example-data:clean': { + id: '@fluentui/example-data:clean', + target: { project: '@fluentui/example-data', target: 'clean' }, + projectRoot: 'packages/example-data', + overrides: {}, + }, + }, + dependencies: { '@fluentui/example-data:clean': [] }, + }, + '@fluentui/example-data:code-style': { + roots: ['@fluentui/example-data:code-style'], + tasks: { + '@fluentui/example-data:code-style': { + id: '@fluentui/example-data:code-style', + target: { project: '@fluentui/example-data', target: 'code-style' }, + projectRoot: 'packages/example-data', + overrides: {}, + }, + }, + dependencies: { '@fluentui/example-data:code-style': [] }, + }, + '@fluentui/example-data:just': { + roots: ['@fluentui/example-data:just'], + tasks: { + '@fluentui/example-data:just': { + id: '@fluentui/example-data:just', + target: { project: '@fluentui/example-data', target: 'just' }, + projectRoot: 'packages/example-data', + overrides: {}, + }, + }, + dependencies: { '@fluentui/example-data:just': [] }, + }, + '@fluentui/example-data:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + }, + }, + '@fluentui/a11y-testing:build': { + roots: ['@fluentui/a11y-testing:build'], + tasks: { + '@fluentui/a11y-testing:build': { + id: '@fluentui/a11y-testing:build', + target: { project: '@fluentui/a11y-testing', target: 'build' }, + projectRoot: 'packages/a11y-testing', + overrides: {}, + }, + }, + dependencies: { '@fluentui/a11y-testing:build': [] }, + }, + '@fluentui/a11y-testing:clean': { + roots: ['@fluentui/a11y-testing:clean'], + tasks: { + '@fluentui/a11y-testing:clean': { + id: '@fluentui/a11y-testing:clean', + target: { project: '@fluentui/a11y-testing', target: 'clean' }, + projectRoot: 'packages/a11y-testing', + overrides: {}, + }, + }, + dependencies: { '@fluentui/a11y-testing:clean': [] }, + }, + '@fluentui/a11y-testing:code-style': { + roots: ['@fluentui/a11y-testing:code-style'], + tasks: { + '@fluentui/a11y-testing:code-style': { + id: '@fluentui/a11y-testing:code-style', + target: { project: '@fluentui/a11y-testing', target: 'code-style' }, + projectRoot: 'packages/a11y-testing', + overrides: {}, + }, + }, + dependencies: { '@fluentui/a11y-testing:code-style': [] }, + }, + '@fluentui/a11y-testing:just': { + roots: ['@fluentui/a11y-testing:just'], + tasks: { + '@fluentui/a11y-testing:just': { + id: '@fluentui/a11y-testing:just', + target: { project: '@fluentui/a11y-testing', target: 'just' }, + projectRoot: 'packages/a11y-testing', + overrides: {}, + }, + }, + dependencies: { '@fluentui/a11y-testing:just': [] }, + }, + '@fluentui/a11y-testing:lint': { + roots: ['@fluentui/a11y-testing:lint'], + tasks: { + '@fluentui/a11y-testing:lint': { + id: '@fluentui/a11y-testing:lint', + target: { project: '@fluentui/a11y-testing', target: 'lint' }, + projectRoot: 'packages/a11y-testing', + overrides: {}, + }, + }, + dependencies: { '@fluentui/a11y-testing:lint': [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-projects-test:format': { + roots: ['@fluentui/scripts-projects-test:format'], + tasks: { + '@fluentui/scripts-projects-test:format': { + id: '@fluentui/scripts-projects-test:format', + target: { project: '@fluentui/scripts-projects-test', target: 'format' }, + projectRoot: 'scripts/projects-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-projects-test:format': [] }, + }, + '@fluentui/scripts-projects-test:format:check': { + roots: ['@fluentui/scripts-projects-test:format:check'], + tasks: { + '@fluentui/scripts-projects-test:format:check': { + id: '@fluentui/scripts-projects-test:format:check', + target: { project: '@fluentui/scripts-projects-test', target: 'format:check' }, + projectRoot: 'scripts/projects-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-projects-test:format:check': [] }, + }, + '@fluentui/scripts-projects-test:lint': { + roots: ['@fluentui/scripts-projects-test:lint'], + tasks: { + '@fluentui/scripts-projects-test:lint': { + id: '@fluentui/scripts-projects-test:lint', + target: { project: '@fluentui/scripts-projects-test', target: 'lint' }, + projectRoot: 'scripts/projects-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-projects-test:lint': [] }, + }, + '@fluentui/scripts-projects-test:test': { + roots: ['@fluentui/scripts-projects-test:test'], + tasks: { + '@fluentui/scripts-projects-test:test': { + id: '@fluentui/scripts-projects-test:test', + target: { project: '@fluentui/scripts-projects-test', target: 'test' }, + projectRoot: 'scripts/projects-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-projects-test:test': [] }, + }, + '@fluentui/scripts-projects-test:type-check': { + roots: ['@fluentui/scripts-projects-test:type-check'], + tasks: { + '@fluentui/scripts-projects-test:type-check': { + id: '@fluentui/scripts-projects-test:type-check', + target: { project: '@fluentui/scripts-projects-test', target: 'type-check' }, + projectRoot: 'scripts/projects-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-projects-test:type-check': [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish', '@fluentui/scripts-puppeteer:nx-release-publish'], + tasks: { + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: {}, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + }, + }, + '@fluentui/set-version:build': { + roots: ['@fluentui/set-version:build'], + tasks: { + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: {}, + }, + }, + dependencies: { '@fluentui/set-version:build': [] }, + }, + '@fluentui/set-version:code-style': { + roots: ['@fluentui/set-version:code-style'], + tasks: { + '@fluentui/set-version:code-style': { + id: '@fluentui/set-version:code-style', + target: { project: '@fluentui/set-version', target: 'code-style' }, + projectRoot: 'packages/set-version', + overrides: {}, + }, + }, + dependencies: { '@fluentui/set-version:code-style': [] }, + }, + '@fluentui/set-version:just': { + roots: ['@fluentui/set-version:just'], + tasks: { + '@fluentui/set-version:just': { + id: '@fluentui/set-version:just', + target: { project: '@fluentui/set-version', target: 'just' }, + projectRoot: 'packages/set-version', + overrides: {}, + }, + }, + dependencies: { '@fluentui/set-version:just': [] }, + }, + '@fluentui/set-version:lint': { + roots: ['@fluentui/set-version:lint'], + tasks: { + '@fluentui/set-version:lint': { + id: '@fluentui/set-version:lint', + target: { project: '@fluentui/set-version', target: 'lint' }, + projectRoot: 'packages/set-version', + overrides: {}, + }, + }, + dependencies: { '@fluentui/set-version:lint': [] }, + }, + '@fluentui/set-version:test': { + roots: ['@fluentui/set-version:test'], + tasks: { + '@fluentui/set-version:test': { + id: '@fluentui/set-version:test', + target: { project: '@fluentui/set-version', target: 'test' }, + projectRoot: 'packages/set-version', + overrides: {}, + }, + }, + dependencies: { '@fluentui/set-version:test': [] }, + }, + '@fluentui/set-version:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/react-hooks:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/set-version:build': [], + '@fluentui/test-utilities:build': [], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + }, + }, + '@fluentui/react-hooks:bundle': { + roots: ['@fluentui/react-hooks:bundle'], + tasks: { + '@fluentui/react-hooks:bundle': { + id: '@fluentui/react-hooks:bundle', + target: { project: '@fluentui/react-hooks', target: 'bundle' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-hooks:bundle': [] }, + }, + '@fluentui/react-hooks:lint': { + roots: ['@fluentui/react-hooks:lint'], + tasks: { + '@fluentui/react-hooks:lint': { + id: '@fluentui/react-hooks:lint', + target: { project: '@fluentui/react-hooks', target: 'lint' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-hooks:lint': [] }, + }, + '@fluentui/react-hooks:test': { + roots: ['@fluentui/react-hooks:test'], + tasks: { + '@fluentui/react-hooks:test': { + id: '@fluentui/react-hooks:test', + target: { project: '@fluentui/react-hooks', target: 'test' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-hooks:test': [] }, + }, + '@fluentui/react-hooks:clean': { + roots: ['@fluentui/react-hooks:clean'], + tasks: { + '@fluentui/react-hooks:clean': { + id: '@fluentui/react-hooks:clean', + target: { project: '@fluentui/react-hooks', target: 'clean' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-hooks:clean': [] }, + }, + '@fluentui/react-hooks:code-style': { + roots: ['@fluentui/react-hooks:code-style'], + tasks: { + '@fluentui/react-hooks:code-style': { + id: '@fluentui/react-hooks:code-style', + target: { project: '@fluentui/react-hooks', target: 'code-style' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-hooks:code-style': [] }, + }, + '@fluentui/react-hooks:start-test': { + roots: ['@fluentui/react-hooks:start-test'], + tasks: { + '@fluentui/react-hooks:start-test': { + id: '@fluentui/react-hooks:start-test', + target: { project: '@fluentui/react-hooks', target: 'start-test' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-hooks:start-test': [] }, + }, + '@fluentui/react-hooks:just': { + roots: ['@fluentui/react-hooks:just'], + tasks: { + '@fluentui/react-hooks:just': { + id: '@fluentui/react-hooks:just', + target: { project: '@fluentui/react-hooks', target: 'just' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-hooks:just': [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: {}, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-cards:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/react-cards:build': { + id: '@fluentui/react-cards:build', + target: { project: '@fluentui/react-cards', target: 'build' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-cards:build': [ + '@fluentui/react:build', + '@fluentui/foundation-legacy:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + }, + }, + '@fluentui/react-cards:bundle': { + roots: ['@fluentui/react-cards:bundle'], + tasks: { + '@fluentui/react-cards:bundle': { + id: '@fluentui/react-cards:bundle', + target: { project: '@fluentui/react-cards', target: 'bundle' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:bundle': [] }, + }, + '@fluentui/react-cards:lint': { + roots: ['@fluentui/react-cards:lint'], + tasks: { + '@fluentui/react-cards:lint': { + id: '@fluentui/react-cards:lint', + target: { project: '@fluentui/react-cards', target: 'lint' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:lint': [] }, + }, + '@fluentui/react-cards:test': { + roots: ['@fluentui/react-cards:test'], + tasks: { + '@fluentui/react-cards:test': { + id: '@fluentui/react-cards:test', + target: { project: '@fluentui/react-cards', target: 'test' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:test': [] }, + }, + '@fluentui/react-cards:just': { + roots: ['@fluentui/react-cards:just'], + tasks: { + '@fluentui/react-cards:just': { + id: '@fluentui/react-cards:just', + target: { project: '@fluentui/react-cards', target: 'just' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:just': [] }, + }, + '@fluentui/react-cards:clean': { + roots: ['@fluentui/react-cards:clean'], + tasks: { + '@fluentui/react-cards:clean': { + id: '@fluentui/react-cards:clean', + target: { project: '@fluentui/react-cards', target: 'clean' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:clean': [] }, + }, + '@fluentui/react-cards:code-style': { + roots: ['@fluentui/react-cards:code-style'], + tasks: { + '@fluentui/react-cards:code-style': { + id: '@fluentui/react-cards:code-style', + target: { project: '@fluentui/react-cards', target: 'code-style' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:code-style': [] }, + }, + '@fluentui/react-cards:start': { + roots: ['@fluentui/react-cards:start'], + tasks: { + '@fluentui/react-cards:start': { + id: '@fluentui/react-cards:start', + target: { project: '@fluentui/react-cards', target: 'start' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:start': [] }, + }, + '@fluentui/react-cards:start-test': { + roots: ['@fluentui/react-cards:start-test'], + tasks: { + '@fluentui/react-cards:start-test': { + id: '@fluentui/react-cards:start-test', + target: { project: '@fluentui/react-cards', target: 'start-test' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:start-test': [] }, + }, + '@fluentui/react-cards:update-snapshots': { + roots: ['@fluentui/react-cards:update-snapshots'], + tasks: { + '@fluentui/react-cards:update-snapshots': { + id: '@fluentui/react-cards:update-snapshots', + target: { project: '@fluentui/react-cards', target: 'update-snapshots' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-cards:update-snapshots': [] }, + }, + '@fluentui/react-cards:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react-cards:nx-release-publish': { + id: '@fluentui/react-cards:nx-release-publish', + target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, + projectRoot: 'packages/react-cards', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-cards:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/react-focus:build': { + roots: [ + '@fluentui/keyboard-key:build', + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/react-conformance:build', + ], + tasks: { + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/react-conformance:build': [], + }, + }, + '@fluentui/react-focus:bundle': { + roots: ['@fluentui/react-focus:bundle'], + tasks: { + '@fluentui/react-focus:bundle': { + id: '@fluentui/react-focus:bundle', + target: { project: '@fluentui/react-focus', target: 'bundle' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:bundle': [] }, + }, + '@fluentui/react-focus:clean': { + roots: ['@fluentui/react-focus:clean'], + tasks: { + '@fluentui/react-focus:clean': { + id: '@fluentui/react-focus:clean', + target: { project: '@fluentui/react-focus', target: 'clean' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:clean': [] }, + }, + '@fluentui/react-focus:code-style': { + roots: ['@fluentui/react-focus:code-style'], + tasks: { + '@fluentui/react-focus:code-style': { + id: '@fluentui/react-focus:code-style', + target: { project: '@fluentui/react-focus', target: 'code-style' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:code-style': [] }, + }, + '@fluentui/react-focus:just': { + roots: ['@fluentui/react-focus:just'], + tasks: { + '@fluentui/react-focus:just': { + id: '@fluentui/react-focus:just', + target: { project: '@fluentui/react-focus', target: 'just' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:just': [] }, + }, + '@fluentui/react-focus:lint': { + roots: ['@fluentui/react-focus:lint'], + tasks: { + '@fluentui/react-focus:lint': { + id: '@fluentui/react-focus:lint', + target: { project: '@fluentui/react-focus', target: 'lint' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:lint': [] }, + }, + '@fluentui/react-focus:start': { + roots: ['@fluentui/react-focus:start'], + tasks: { + '@fluentui/react-focus:start': { + id: '@fluentui/react-focus:start', + target: { project: '@fluentui/react-focus', target: 'start' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:start': [] }, + }, + '@fluentui/react-focus:start-test': { + roots: ['@fluentui/react-focus:start-test'], + tasks: { + '@fluentui/react-focus:start-test': { + id: '@fluentui/react-focus:start-test', + target: { project: '@fluentui/react-focus', target: 'start-test' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:start-test': [] }, + }, + '@fluentui/react-focus:test': { + roots: ['@fluentui/react-focus:test'], + tasks: { + '@fluentui/react-focus:test': { + id: '@fluentui/react-focus:test', + target: { project: '@fluentui/react-focus', target: 'test' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:test': [] }, + }, + '@fluentui/react-focus:update-snapshots': { + roots: ['@fluentui/react-focus:update-snapshots'], + tasks: { + '@fluentui/react-focus:update-snapshots': { + id: '@fluentui/react-focus:update-snapshots', + target: { project: '@fluentui/react-focus', target: 'update-snapshots' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react-focus:update-snapshots': [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: {}, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/scripts-lint-staged:format': { + roots: ['@fluentui/scripts-lint-staged:format'], + tasks: { + '@fluentui/scripts-lint-staged:format': { + id: '@fluentui/scripts-lint-staged:format', + target: { project: '@fluentui/scripts-lint-staged', target: 'format' }, + projectRoot: 'scripts/lint-staged', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-lint-staged:format': [] }, + }, + '@fluentui/scripts-lint-staged:format:check': { + roots: ['@fluentui/scripts-lint-staged:format:check'], + tasks: { + '@fluentui/scripts-lint-staged:format:check': { + id: '@fluentui/scripts-lint-staged:format:check', + target: { project: '@fluentui/scripts-lint-staged', target: 'format:check' }, + projectRoot: 'scripts/lint-staged', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-lint-staged:format:check': [] }, + }, + '@fluentui/scripts-lint-staged:lint': { + roots: ['@fluentui/scripts-lint-staged:lint'], + tasks: { + '@fluentui/scripts-lint-staged:lint': { + id: '@fluentui/scripts-lint-staged:lint', + target: { project: '@fluentui/scripts-lint-staged', target: 'lint' }, + projectRoot: 'scripts/lint-staged', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-lint-staged:lint': [] }, + }, + '@fluentui/scripts-lint-staged:test': { + roots: ['@fluentui/scripts-lint-staged:test'], + tasks: { + '@fluentui/scripts-lint-staged:test': { + id: '@fluentui/scripts-lint-staged:test', + target: { project: '@fluentui/scripts-lint-staged', target: 'test' }, + projectRoot: 'scripts/lint-staged', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-lint-staged:test': [] }, + }, + '@fluentui/scripts-lint-staged:type-check': { + roots: ['@fluentui/scripts-lint-staged:type-check'], + tasks: { + '@fluentui/scripts-lint-staged:type-check': { + id: '@fluentui/scripts-lint-staged:type-check', + target: { project: '@fluentui/scripts-lint-staged', target: 'type-check' }, + projectRoot: 'scripts/lint-staged', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-lint-staged:type-check': [] }, + }, + '@fluentui/scripts-lint-staged:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-lint-staged:nx-release-publish': { + id: '@fluentui/scripts-lint-staged:nx-release-publish', + target: { project: '@fluentui/scripts-lint-staged', target: 'nx-release-publish' }, + projectRoot: 'scripts/lint-staged', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-lint-staged:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + }, + }, + '@fluentui/pr-deploy-site:clean': { + roots: ['@fluentui/pr-deploy-site:clean'], + tasks: { + '@fluentui/pr-deploy-site:clean': { + id: '@fluentui/pr-deploy-site:clean', + target: { project: '@fluentui/pr-deploy-site', target: 'clean' }, + projectRoot: 'apps/pr-deploy-site', + overrides: {}, + }, + }, + dependencies: { '@fluentui/pr-deploy-site:clean': [] }, + }, + '@fluentui/pr-deploy-site:generate:site': { + roots: ['@fluentui/pr-deploy-site:generate:site'], + tasks: { + '@fluentui/pr-deploy-site:generate:site': { + id: '@fluentui/pr-deploy-site:generate:site', + target: { project: '@fluentui/pr-deploy-site', target: 'generate:site' }, + projectRoot: 'apps/pr-deploy-site', + overrides: {}, + }, + }, + dependencies: { '@fluentui/pr-deploy-site:generate:site': [] }, + }, + '@fluentui/pr-deploy-site:lint': { + roots: ['@fluentui/pr-deploy-site:lint'], + tasks: { + '@fluentui/pr-deploy-site:lint': { + id: '@fluentui/pr-deploy-site:lint', + target: { project: '@fluentui/pr-deploy-site', target: 'lint' }, + projectRoot: 'apps/pr-deploy-site', + overrides: {}, + }, + }, + dependencies: { '@fluentui/pr-deploy-site:lint': [] }, + }, + '@fluentui/pr-deploy-site:type-check': { + roots: ['@fluentui/pr-deploy-site:type-check'], + tasks: { + '@fluentui/pr-deploy-site:type-check': { + id: '@fluentui/pr-deploy-site:type-check', + target: { project: '@fluentui/pr-deploy-site', target: 'type-check' }, + projectRoot: 'apps/pr-deploy-site', + overrides: {}, + }, + }, + dependencies: { '@fluentui/pr-deploy-site:type-check': [] }, + }, + '@fluentui/pr-deploy-site:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/pr-deploy-site:nx-release-publish': { + id: '@fluentui/pr-deploy-site:nx-release-publish', + target: { project: '@fluentui/pr-deploy-site', target: 'nx-release-publish' }, + projectRoot: 'apps/pr-deploy-site', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/pr-deploy-site:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/public-docsite:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/monaco-editor:build', + '@fluentui/api-docs:build', + ], + tasks: { + '@fluentui/public-docsite:build': { + id: '@fluentui/public-docsite:build', + target: { project: '@fluentui/public-docsite', target: 'build' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-resources:build': { + id: '@fluentui/public-docsite-resources:build', + target: { project: '@fluentui/public-docsite-resources', target: 'build' }, + projectRoot: 'apps/public-docsite-resources', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-examples:build': { + id: '@fluentui/react-examples:build', + target: { project: '@fluentui/react-examples', target: 'build' }, + projectRoot: 'packages/react-examples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:build': { + id: '@fluentui/azure-themes:build', + target: { project: '@fluentui/azure-themes', target: 'build' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-cards:build': { + id: '@fluentui/react-cards:build', + target: { project: '@fluentui/react-cards', target: 'build' }, + projectRoot: 'packages/react-cards', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:build': { + id: '@fluentui/react-docsite-components:build', + target: { project: '@fluentui/react-docsite-components', target: 'build' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:build': { + id: '@fluentui/public-docsite-setup:build', + target: { project: '@fluentui/public-docsite-setup', target: 'build' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:build': { + id: '@fluentui/react-monaco-editor:build', + target: { project: '@fluentui/react-monaco-editor', target: 'build' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:build': { + id: '@fluentui/monaco-editor:build', + target: { project: '@fluentui/monaco-editor', target: 'build' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:build': { + id: '@fluentui/react-experiments:build', + target: { project: '@fluentui/react-experiments', target: 'build' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-file-type-icons:build': { + id: '@fluentui/react-file-type-icons:build', + target: { project: '@fluentui/react-file-type-icons', target: 'build' }, + projectRoot: 'packages/react-file-type-icons', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:build': { + id: '@fluentui/react-icons-mdl2:build', + target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:build': { + id: '@fluentui/react-icon-provider:build', + target: { project: '@fluentui/react-icon-provider', target: 'build' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:build': { + id: '@fluentui/storybook:build', + target: { project: '@fluentui/storybook', target: 'build' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/api-docs:build': { + id: '@fluentui/api-docs:build', + target: { project: '@fluentui/api-docs', target: 'build' }, + projectRoot: 'packages/api-docs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/fluent2-theme:build': { + id: '@fluentui/fluent2-theme:build', + target: { project: '@fluentui/fluent2-theme', target: 'build' }, + projectRoot: 'packages/fluent2-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2-branded:build': { + id: '@fluentui/react-icons-mdl2-branded:build', + target: { project: '@fluentui/react-icons-mdl2-branded', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2-branded', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/public-docsite:build': [ + '@fluentui/font-icons-mdl2:build', + '@fluentui/public-docsite-resources:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/react:build', + '@fluentui/react-docsite-components:build', + '@fluentui/react-examples:build', + '@fluentui/react-experiments:build', + '@fluentui/fluent2-theme:build', + '@fluentui/react-file-type-icons:build', + '@fluentui/react-icons-mdl2:build', + '@fluentui/react-icons-mdl2-branded:build', + '@fluentui/set-version:build', + '@fluentui/theme:build', + '@fluentui/theme-samples:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/react-monaco-editor:build', + ], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/public-docsite-resources:build': [ + '@fluentui/react:build', + '@fluentui/react-charting:build', + '@fluentui/react-examples:build', + '@fluentui/azure-themes:build', + '@fluentui/react-docsite-components:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/set-version:build', + '@fluentui/theme-samples:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/api-docs:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + '@fluentui/react-examples:build': [ + '@fluentui/azure-themes:build', + '@fluentui/date-time-utilities:build', + '@fluentui/dom-utilities:build', + '@fluentui/example-data:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/foundation-legacy:build', + '@fluentui/merge-styles:build', + '@fluentui/react:build', + '@fluentui/react-cards:build', + '@fluentui/react-charting:build', + '@fluentui/react-docsite-components:build', + '@fluentui/react-experiments:build', + '@fluentui/react-file-type-icons:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-icons-mdl2:build', + '@fluentui/scheme-utilities:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/theme-samples:build', + '@fluentui/utilities:build', + '@fluentui/storybook:build', + ], + '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react-cards:build': [ + '@fluentui/react:build', + '@fluentui/foundation-legacy:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-docsite-components:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/common-styles:build', + ], + '@fluentui/public-docsite-setup:build': [], + '@fluentui/react-monaco-editor:build': [ + '@fluentui/react:build', + '@fluentui/example-data:build', + '@fluentui/monaco-editor:build', + '@fluentui/react-hooks:build', + '@fluentui/react-charting:build', + ], + '@fluentui/monaco-editor:build': [], + '@fluentui/react-experiments:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/react-icons-mdl2:build': [ + '@fluentui/react-icon-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/storybook:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/azure-themes:build', + '@fluentui/theme-samples:build', + ], + '@fluentui/api-docs:build': [], + '@fluentui/fluent2-theme:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react-icons-mdl2-branded:build': ['@fluentui/set-version:build', '@fluentui/react-icons-mdl2:build'], + }, + }, + '@fluentui/public-docsite:bundle': { + roots: ['@fluentui/public-docsite:bundle'], + tasks: { + '@fluentui/public-docsite:bundle': { + id: '@fluentui/public-docsite:bundle', + target: { project: '@fluentui/public-docsite', target: 'bundle' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite:bundle': [] }, + }, + '@fluentui/public-docsite:lint': { + roots: ['@fluentui/public-docsite:lint'], + tasks: { + '@fluentui/public-docsite:lint': { + id: '@fluentui/public-docsite:lint', + target: { project: '@fluentui/public-docsite', target: 'lint' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite:lint': [] }, + }, + '@fluentui/public-docsite:test': { + roots: ['@fluentui/public-docsite:test'], + tasks: { + '@fluentui/public-docsite:test': { + id: '@fluentui/public-docsite:test', + target: { project: '@fluentui/public-docsite', target: 'test' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite:test': [] }, + }, + '@fluentui/public-docsite:just': { + roots: ['@fluentui/public-docsite:just'], + tasks: { + '@fluentui/public-docsite:just': { + id: '@fluentui/public-docsite:just', + target: { project: '@fluentui/public-docsite', target: 'just' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite:just': [] }, + }, + '@fluentui/public-docsite:clean': { + roots: ['@fluentui/public-docsite:clean'], + tasks: { + '@fluentui/public-docsite:clean': { + id: '@fluentui/public-docsite:clean', + target: { project: '@fluentui/public-docsite', target: 'clean' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite:clean': [] }, + }, + '@fluentui/public-docsite:code-style': { + roots: ['@fluentui/public-docsite:code-style'], + tasks: { + '@fluentui/public-docsite:code-style': { + id: '@fluentui/public-docsite:code-style', + target: { project: '@fluentui/public-docsite', target: 'code-style' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite:code-style': [] }, + }, + '@fluentui/public-docsite:start': { + roots: ['@fluentui/public-docsite:start'], + tasks: { + '@fluentui/public-docsite:start': { + id: '@fluentui/public-docsite:start', + target: { project: '@fluentui/public-docsite', target: 'start' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + }, + dependencies: { '@fluentui/public-docsite:start': [] }, + }, + '@fluentui/public-docsite:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/public-docsite:nx-release-publish': { + id: '@fluentui/public-docsite:nx-release-publish', + target: { project: '@fluentui/public-docsite', target: 'nx-release-publish' }, + projectRoot: 'apps/public-docsite', + overrides: {}, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-resources:nx-release-publish': { + id: '@fluentui/public-docsite-resources:nx-release-publish', + target: { project: '@fluentui/public-docsite-resources', target: 'nx-release-publish' }, + projectRoot: 'apps/public-docsite-resources', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-examples:nx-release-publish': { + id: '@fluentui/react-examples:nx-release-publish', + target: { project: '@fluentui/react-examples', target: 'nx-release-publish' }, + projectRoot: 'packages/react-examples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:nx-release-publish': { + id: '@fluentui/azure-themes:nx-release-publish', + target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-cards:nx-release-publish': { + id: '@fluentui/react-cards:nx-release-publish', + target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, + projectRoot: 'packages/react-cards', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:nx-release-publish': { + id: '@fluentui/react-docsite-components:nx-release-publish', + target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:nx-release-publish': { + id: '@fluentui/public-docsite-setup:nx-release-publish', + target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:nx-release-publish': { + id: '@fluentui/react-monaco-editor:nx-release-publish', + target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:nx-release-publish': { + id: '@fluentui/monaco-editor:nx-release-publish', + target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:nx-release-publish': { + id: '@fluentui/react-experiments:nx-release-publish', + target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-file-type-icons:nx-release-publish': { + id: '@fluentui/react-file-type-icons:nx-release-publish', + target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, + projectRoot: 'packages/react-file-type-icons', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:nx-release-publish': { + id: '@fluentui/react-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:nx-release-publish': { + id: '@fluentui/react-icon-provider:nx-release-publish', + target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:nx-release-publish': { + id: '@fluentui/storybook:nx-release-publish', + target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/api-docs:nx-release-publish': { + id: '@fluentui/api-docs:nx-release-publish', + target: { project: '@fluentui/api-docs', target: 'nx-release-publish' }, + projectRoot: 'packages/api-docs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/fluent2-theme:nx-release-publish': { + id: '@fluentui/fluent2-theme:nx-release-publish', + target: { project: '@fluentui/fluent2-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/fluent2-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2-branded:nx-release-publish': { + id: '@fluentui/react-icons-mdl2-branded:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2-branded', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2-branded', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/public-docsite:nx-release-publish': [ + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/public-docsite-resources:nx-release-publish', + '@fluentui/public-docsite-setup:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/react-examples:nx-release-publish', + '@fluentui/react-experiments:nx-release-publish', + '@fluentui/fluent2-theme:nx-release-publish', + '@fluentui/react-file-type-icons:nx-release-publish', + '@fluentui/react-icons-mdl2:nx-release-publish', + '@fluentui/react-icons-mdl2-branded:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/public-docsite-resources:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/react-examples:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/api-docs:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-examples:nx-release-publish': [ + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-cards:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/react-experiments:nx-release-publish', + '@fluentui/react-file-type-icons:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-icons-mdl2:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/storybook:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/azure-themes:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-cards:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-docsite-components:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/public-docsite-setup:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/public-docsite-setup:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-monaco-editor:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/monaco-editor:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/monaco-editor:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-experiments:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-file-type-icons:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-icons-mdl2:nx-release-publish': [ + '@fluentui/react-icon-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icon-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/storybook:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/api-docs:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/fluent2-theme:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icons-mdl2-branded:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/react-icons-mdl2:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/utilities:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/utilities:clean': { + roots: ['@fluentui/utilities:clean'], + tasks: { + '@fluentui/utilities:clean': { + id: '@fluentui/utilities:clean', + target: { project: '@fluentui/utilities', target: 'clean' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/utilities:clean': [] }, + }, + '@fluentui/utilities:code-style': { + roots: ['@fluentui/utilities:code-style'], + tasks: { + '@fluentui/utilities:code-style': { + id: '@fluentui/utilities:code-style', + target: { project: '@fluentui/utilities', target: 'code-style' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/utilities:code-style': [] }, + }, + '@fluentui/utilities:just': { + roots: ['@fluentui/utilities:just'], + tasks: { + '@fluentui/utilities:just': { + id: '@fluentui/utilities:just', + target: { project: '@fluentui/utilities', target: 'just' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/utilities:just': [] }, + }, + '@fluentui/utilities:lint': { + roots: ['@fluentui/utilities:lint'], + tasks: { + '@fluentui/utilities:lint': { + id: '@fluentui/utilities:lint', + target: { project: '@fluentui/utilities', target: 'lint' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/utilities:lint': [] }, + }, + '@fluentui/utilities:start-test': { + roots: ['@fluentui/utilities:start-test'], + tasks: { + '@fluentui/utilities:start-test': { + id: '@fluentui/utilities:start-test', + target: { project: '@fluentui/utilities', target: 'start-test' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/utilities:start-test': [] }, + }, + '@fluentui/utilities:test': { + roots: ['@fluentui/utilities:test'], + tasks: { + '@fluentui/utilities:test': { + id: '@fluentui/utilities:test', + target: { project: '@fluentui/utilities', target: 'test' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/utilities:test': [] }, + }, + '@fluentui/utilities:update-snapshots': { + roots: ['@fluentui/utilities:update-snapshots'], + tasks: { + '@fluentui/utilities:update-snapshots': { + id: '@fluentui/utilities:update-snapshots', + target: { project: '@fluentui/utilities', target: 'update-snapshots' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/utilities:update-snapshots': [] }, + }, + '@fluentui/utilities:verify-packaging': { + roots: ['@fluentui/utilities:verify-packaging'], + tasks: { + '@fluentui/utilities:verify-packaging': { + id: '@fluentui/utilities:verify-packaging', + target: { project: '@fluentui/utilities', target: 'verify-packaging' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + }, + dependencies: { '@fluentui/utilities:verify-packaging': [] }, + }, + '@fluentui/utilities:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: {}, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/scripts-triage-bot:format': { + roots: ['@fluentui/scripts-triage-bot:format'], + tasks: { + '@fluentui/scripts-triage-bot:format': { + id: '@fluentui/scripts-triage-bot:format', + target: { project: '@fluentui/scripts-triage-bot', target: 'format' }, + projectRoot: 'scripts/triage-bot', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-triage-bot:format': [] }, + }, + '@fluentui/scripts-triage-bot:format:check': { + roots: ['@fluentui/scripts-triage-bot:format:check'], + tasks: { + '@fluentui/scripts-triage-bot:format:check': { + id: '@fluentui/scripts-triage-bot:format:check', + target: { project: '@fluentui/scripts-triage-bot', target: 'format:check' }, + projectRoot: 'scripts/triage-bot', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-triage-bot:format:check': [] }, + }, + '@fluentui/scripts-triage-bot:lint': { + roots: ['@fluentui/scripts-triage-bot:lint'], + tasks: { + '@fluentui/scripts-triage-bot:lint': { + id: '@fluentui/scripts-triage-bot:lint', + target: { project: '@fluentui/scripts-triage-bot', target: 'lint' }, + projectRoot: 'scripts/triage-bot', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-triage-bot:lint': [] }, + }, + '@fluentui/scripts-triage-bot:test': { + roots: ['@fluentui/scripts-triage-bot:test'], + tasks: { + '@fluentui/scripts-triage-bot:test': { + id: '@fluentui/scripts-triage-bot:test', + target: { project: '@fluentui/scripts-triage-bot', target: 'test' }, + projectRoot: 'scripts/triage-bot', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-triage-bot:test': [] }, + }, + '@fluentui/scripts-triage-bot:type-check': { + roots: ['@fluentui/scripts-triage-bot:type-check'], + tasks: { + '@fluentui/scripts-triage-bot:type-check': { + id: '@fluentui/scripts-triage-bot:type-check', + target: { project: '@fluentui/scripts-triage-bot', target: 'type-check' }, + projectRoot: 'scripts/triage-bot', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-triage-bot:type-check': [] }, + }, + '@fluentui/scripts-triage-bot:nx-release-publish': { + roots: ['@fluentui/scripts-triage-bot:nx-release-publish'], + tasks: { + '@fluentui/scripts-triage-bot:nx-release-publish': { + id: '@fluentui/scripts-triage-bot:nx-release-publish', + target: { project: '@fluentui/scripts-triage-bot', target: 'nx-release-publish' }, + projectRoot: 'scripts/triage-bot', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-triage-bot:nx-release-publish': [] }, + }, + '@fluentui/storybook:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/storybook:build': { + id: '@fluentui/storybook:build', + target: { project: '@fluentui/storybook', target: 'build' }, + projectRoot: 'packages/storybook', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:build': { + id: '@fluentui/azure-themes:build', + target: { project: '@fluentui/azure-themes', target: 'build' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/storybook:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/azure-themes:build', + '@fluentui/theme-samples:build', + ], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + }, + }, + '@fluentui/storybook:clean': { + roots: ['@fluentui/storybook:clean'], + tasks: { + '@fluentui/storybook:clean': { + id: '@fluentui/storybook:clean', + target: { project: '@fluentui/storybook', target: 'clean' }, + projectRoot: 'packages/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/storybook:clean': [] }, + }, + '@fluentui/storybook:code-style': { + roots: ['@fluentui/storybook:code-style'], + tasks: { + '@fluentui/storybook:code-style': { + id: '@fluentui/storybook:code-style', + target: { project: '@fluentui/storybook', target: 'code-style' }, + projectRoot: 'packages/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/storybook:code-style': [] }, + }, + '@fluentui/storybook:just': { + roots: ['@fluentui/storybook:just'], + tasks: { + '@fluentui/storybook:just': { + id: '@fluentui/storybook:just', + target: { project: '@fluentui/storybook', target: 'just' }, + projectRoot: 'packages/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/storybook:just': [] }, + }, + '@fluentui/storybook:lint': { + roots: ['@fluentui/storybook:lint'], + tasks: { + '@fluentui/storybook:lint': { + id: '@fluentui/storybook:lint', + target: { project: '@fluentui/storybook', target: 'lint' }, + projectRoot: 'packages/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/storybook:lint': [] }, + }, + '@fluentui/storybook:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/storybook:nx-release-publish': { + id: '@fluentui/storybook:nx-release-publish', + target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, + projectRoot: 'packages/storybook', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:nx-release-publish': { + id: '@fluentui/azure-themes:nx-release-publish', + target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/storybook:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/azure-themes:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + }, + }, + '@fluentui/scripts-generators:format': { + roots: ['@fluentui/scripts-generators:format'], + tasks: { + '@fluentui/scripts-generators:format': { + id: '@fluentui/scripts-generators:format', + target: { project: '@fluentui/scripts-generators', target: 'format' }, + projectRoot: 'scripts/generators', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-generators:format': [] }, + }, + '@fluentui/scripts-generators:format:check': { + roots: ['@fluentui/scripts-generators:format:check'], + tasks: { + '@fluentui/scripts-generators:format:check': { + id: '@fluentui/scripts-generators:format:check', + target: { project: '@fluentui/scripts-generators', target: 'format:check' }, + projectRoot: 'scripts/generators', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-generators:format:check': [] }, + }, + '@fluentui/scripts-generators:lint': { + roots: ['@fluentui/scripts-generators:lint'], + tasks: { + '@fluentui/scripts-generators:lint': { + id: '@fluentui/scripts-generators:lint', + target: { project: '@fluentui/scripts-generators', target: 'lint' }, + projectRoot: 'scripts/generators', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-generators:lint': [] }, + }, + '@fluentui/scripts-generators:test': { + roots: ['@fluentui/scripts-generators:test'], + tasks: { + '@fluentui/scripts-generators:test': { + id: '@fluentui/scripts-generators:test', + target: { project: '@fluentui/scripts-generators', target: 'test' }, + projectRoot: 'scripts/generators', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-generators:test': [] }, + }, + '@fluentui/scripts-generators:type-check': { + roots: ['@fluentui/scripts-generators:type-check'], + tasks: { + '@fluentui/scripts-generators:type-check': { + id: '@fluentui/scripts-generators:type-check', + target: { project: '@fluentui/scripts-generators', target: 'type-check' }, + projectRoot: 'scripts/generators', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-generators:type-check': [] }, + }, + '@fluentui/scripts-generators:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish', '@fluentui/scripts-puppeteer:nx-release-publish'], + tasks: { + '@fluentui/scripts-generators:nx-release-publish': { + id: '@fluentui/scripts-generators:nx-release-publish', + target: { project: '@fluentui/scripts-generators', target: 'nx-release-publish' }, + projectRoot: 'scripts/generators', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-generators:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + }, + }, + '@fluentui/scripts-beachball:format': { + roots: ['@fluentui/scripts-beachball:format'], + tasks: { + '@fluentui/scripts-beachball:format': { + id: '@fluentui/scripts-beachball:format', + target: { project: '@fluentui/scripts-beachball', target: 'format' }, + projectRoot: 'scripts/beachball', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-beachball:format': [] }, + }, + '@fluentui/scripts-beachball:format:check': { + roots: ['@fluentui/scripts-beachball:format:check'], + tasks: { + '@fluentui/scripts-beachball:format:check': { + id: '@fluentui/scripts-beachball:format:check', + target: { project: '@fluentui/scripts-beachball', target: 'format:check' }, + projectRoot: 'scripts/beachball', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-beachball:format:check': [] }, + }, + '@fluentui/scripts-beachball:lint': { + roots: ['@fluentui/scripts-beachball:lint'], + tasks: { + '@fluentui/scripts-beachball:lint': { + id: '@fluentui/scripts-beachball:lint', + target: { project: '@fluentui/scripts-beachball', target: 'lint' }, + projectRoot: 'scripts/beachball', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-beachball:lint': [] }, + }, + '@fluentui/scripts-beachball:test': { + roots: ['@fluentui/scripts-beachball:test'], + tasks: { + '@fluentui/scripts-beachball:test': { + id: '@fluentui/scripts-beachball:test', + target: { project: '@fluentui/scripts-beachball', target: 'test' }, + projectRoot: 'scripts/beachball', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-beachball:test': [] }, + }, + '@fluentui/scripts-beachball:type-check': { + roots: ['@fluentui/scripts-beachball:type-check'], + tasks: { + '@fluentui/scripts-beachball:type-check': { + id: '@fluentui/scripts-beachball:type-check', + target: { project: '@fluentui/scripts-beachball', target: 'type-check' }, + projectRoot: 'scripts/beachball', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-beachball:type-check': [] }, + }, + '@fluentui/scripts-beachball:nx-release-publish': { + roots: [ + '@fluentui/scripts-github:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-ts-node:nx-release-publish', + ], + tasks: { + '@fluentui/scripts-beachball:nx-release-publish': { + id: '@fluentui/scripts-beachball:nx-release-publish', + target: { project: '@fluentui/scripts-beachball', target: 'nx-release-publish' }, + projectRoot: 'scripts/beachball', + overrides: {}, + }, + '@fluentui/scripts-github:nx-release-publish': { + id: '@fluentui/scripts-github:nx-release-publish', + target: { project: '@fluentui/scripts-github', target: 'nx-release-publish' }, + projectRoot: 'scripts/github', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-ts-node:nx-release-publish': { + id: '@fluentui/scripts-ts-node:nx-release-publish', + target: { project: '@fluentui/scripts-ts-node', target: 'nx-release-publish' }, + projectRoot: 'scripts/ts-node', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-beachball:nx-release-publish': [ + '@fluentui/scripts-github:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-ts-node:nx-release-publish', + ], + '@fluentui/scripts-github:nx-release-publish': [], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-ts-node:nx-release-publish': [], + }, + }, + '@fluentui/scripts-storybook:format': { + roots: ['@fluentui/scripts-storybook:format'], + tasks: { + '@fluentui/scripts-storybook:format': { + id: '@fluentui/scripts-storybook:format', + target: { project: '@fluentui/scripts-storybook', target: 'format' }, + projectRoot: 'scripts/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-storybook:format': [] }, + }, + '@fluentui/scripts-storybook:format:check': { + roots: ['@fluentui/scripts-storybook:format:check'], + tasks: { + '@fluentui/scripts-storybook:format:check': { + id: '@fluentui/scripts-storybook:format:check', + target: { project: '@fluentui/scripts-storybook', target: 'format:check' }, + projectRoot: 'scripts/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-storybook:format:check': [] }, + }, + '@fluentui/scripts-storybook:lint': { + roots: ['@fluentui/scripts-storybook:lint'], + tasks: { + '@fluentui/scripts-storybook:lint': { + id: '@fluentui/scripts-storybook:lint', + target: { project: '@fluentui/scripts-storybook', target: 'lint' }, + projectRoot: 'scripts/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-storybook:lint': [] }, + }, + '@fluentui/scripts-storybook:test': { + roots: ['@fluentui/scripts-storybook:test'], + tasks: { + '@fluentui/scripts-storybook:test': { + id: '@fluentui/scripts-storybook:test', + target: { project: '@fluentui/scripts-storybook', target: 'test' }, + projectRoot: 'scripts/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-storybook:test': [] }, + }, + '@fluentui/scripts-storybook:type-check': { + roots: ['@fluentui/scripts-storybook:type-check'], + tasks: { + '@fluentui/scripts-storybook:type-check': { + id: '@fluentui/scripts-storybook:type-check', + target: { project: '@fluentui/scripts-storybook', target: 'type-check' }, + projectRoot: 'scripts/storybook', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-storybook:type-check': [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + }, + }, + '@fluentui/codemods:build': { + roots: ['@fluentui/codemods:build'], + tasks: { + '@fluentui/codemods:build': { + id: '@fluentui/codemods:build', + target: { project: '@fluentui/codemods', target: 'build' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + }, + dependencies: { '@fluentui/codemods:build': [] }, + }, + '@fluentui/codemods:clean': { + roots: ['@fluentui/codemods:clean'], + tasks: { + '@fluentui/codemods:clean': { + id: '@fluentui/codemods:clean', + target: { project: '@fluentui/codemods', target: 'clean' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + }, + dependencies: { '@fluentui/codemods:clean': [] }, + }, + '@fluentui/codemods:code-style': { + roots: ['@fluentui/codemods:code-style'], + tasks: { + '@fluentui/codemods:code-style': { + id: '@fluentui/codemods:code-style', + target: { project: '@fluentui/codemods', target: 'code-style' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + }, + dependencies: { '@fluentui/codemods:code-style': [] }, + }, + '@fluentui/codemods:just': { + roots: ['@fluentui/codemods:just'], + tasks: { + '@fluentui/codemods:just': { + id: '@fluentui/codemods:just', + target: { project: '@fluentui/codemods', target: 'just' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + }, + dependencies: { '@fluentui/codemods:just': [] }, + }, + '@fluentui/codemods:lint': { + roots: ['@fluentui/codemods:lint'], + tasks: { + '@fluentui/codemods:lint': { + id: '@fluentui/codemods:lint', + target: { project: '@fluentui/codemods', target: 'lint' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + }, + dependencies: { '@fluentui/codemods:lint': [] }, + }, + '@fluentui/codemods:start-test': { + roots: ['@fluentui/codemods:start-test'], + tasks: { + '@fluentui/codemods:start-test': { + id: '@fluentui/codemods:start-test', + target: { project: '@fluentui/codemods', target: 'start-test' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + }, + dependencies: { '@fluentui/codemods:start-test': [] }, + }, + '@fluentui/codemods:test': { + roots: ['@fluentui/codemods:test'], + tasks: { + '@fluentui/codemods:test': { + id: '@fluentui/codemods:test', + target: { project: '@fluentui/codemods', target: 'test' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + }, + dependencies: { '@fluentui/codemods:test': [] }, + }, + '@fluentui/codemods:update-snapshots': { + roots: ['@fluentui/codemods:update-snapshots'], + tasks: { + '@fluentui/codemods:update-snapshots': { + id: '@fluentui/codemods:update-snapshots', + target: { project: '@fluentui/codemods', target: 'update-snapshots' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + }, + dependencies: { '@fluentui/codemods:update-snapshots': [] }, + }, + '@fluentui/codemods:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/codemods:nx-release-publish': { + id: '@fluentui/codemods:nx-release-publish', + target: { project: '@fluentui/codemods', target: 'nx-release-publish' }, + projectRoot: 'packages/codemods', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/codemods:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/ssr-tests-v9:clean': { + roots: ['@fluentui/ssr-tests-v9:clean'], + tasks: { + '@fluentui/ssr-tests-v9:clean': { + id: '@fluentui/ssr-tests-v9:clean', + target: { project: '@fluentui/ssr-tests-v9', target: 'clean' }, + projectRoot: 'apps/ssr-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests-v9:clean': [] }, + }, + '@fluentui/ssr-tests-v9:code-style': { + roots: ['@fluentui/ssr-tests-v9:code-style'], + tasks: { + '@fluentui/ssr-tests-v9:code-style': { + id: '@fluentui/ssr-tests-v9:code-style', + target: { project: '@fluentui/ssr-tests-v9', target: 'code-style' }, + projectRoot: 'apps/ssr-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests-v9:code-style': [] }, + }, + '@fluentui/ssr-tests-v9:lint': { + roots: ['@fluentui/ssr-tests-v9:lint'], + tasks: { + '@fluentui/ssr-tests-v9:lint': { + id: '@fluentui/ssr-tests-v9:lint', + target: { project: '@fluentui/ssr-tests-v9', target: 'lint' }, + projectRoot: 'apps/ssr-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests-v9:lint': [] }, + }, + '@fluentui/ssr-tests-v9:storybook': { + roots: ['@fluentui/ssr-tests-v9:storybook'], + tasks: { + '@fluentui/ssr-tests-v9:storybook': { + id: '@fluentui/ssr-tests-v9:storybook', + target: { project: '@fluentui/ssr-tests-v9', target: 'storybook' }, + projectRoot: 'apps/ssr-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests-v9:storybook': [] }, + }, + '@fluentui/ssr-tests-v9:test': { + roots: ['@fluentui/ssr-tests-v9:test'], + tasks: { + '@fluentui/ssr-tests-v9:test': { + id: '@fluentui/ssr-tests-v9:test', + target: { project: '@fluentui/ssr-tests-v9', target: 'test' }, + projectRoot: 'apps/ssr-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests-v9:test': [] }, + }, + '@fluentui/ssr-tests-v9:type-check': { + roots: ['@fluentui/ssr-tests-v9:type-check'], + tasks: { + '@fluentui/ssr-tests-v9:type-check': { + id: '@fluentui/ssr-tests-v9:type-check', + target: { project: '@fluentui/ssr-tests-v9', target: 'type-check' }, + projectRoot: 'apps/ssr-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests-v9:type-check': [] }, + }, + '@fluentui/ssr-tests-v9:test-ssr': { + roots: ['@fluentui/ssr-tests-v9:test-ssr'], + tasks: { + '@fluentui/ssr-tests-v9:test-ssr': { + id: '@fluentui/ssr-tests-v9:test-ssr', + target: { project: '@fluentui/ssr-tests-v9', target: 'test-ssr' }, + projectRoot: 'apps/ssr-tests-v9', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests-v9:test-ssr': [] }, + }, + '@fluentui/ssr-tests-v9:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/ssr-tests-v9:nx-release-publish': { + id: '@fluentui/ssr-tests-v9:nx-release-publish', + target: { project: '@fluentui/ssr-tests-v9', target: 'nx-release-publish' }, + projectRoot: 'apps/ssr-tests-v9', + overrides: {}, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/ssr-tests-v9:nx-release-publish': [ + '@fluentui/react-components:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/api-docs:build': { + roots: ['@fluentui/api-docs:build'], + tasks: { + '@fluentui/api-docs:build': { + id: '@fluentui/api-docs:build', + target: { project: '@fluentui/api-docs', target: 'build' }, + projectRoot: 'packages/api-docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/api-docs:build': [] }, + }, + '@fluentui/api-docs:clean': { + roots: ['@fluentui/api-docs:clean'], + tasks: { + '@fluentui/api-docs:clean': { + id: '@fluentui/api-docs:clean', + target: { project: '@fluentui/api-docs', target: 'clean' }, + projectRoot: 'packages/api-docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/api-docs:clean': [] }, + }, + '@fluentui/api-docs:just': { + roots: ['@fluentui/api-docs:just'], + tasks: { + '@fluentui/api-docs:just': { + id: '@fluentui/api-docs:just', + target: { project: '@fluentui/api-docs', target: 'just' }, + projectRoot: 'packages/api-docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/api-docs:just': [] }, + }, + '@fluentui/api-docs:lint': { + roots: ['@fluentui/api-docs:lint'], + tasks: { + '@fluentui/api-docs:lint': { + id: '@fluentui/api-docs:lint', + target: { project: '@fluentui/api-docs', target: 'lint' }, + projectRoot: 'packages/api-docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/api-docs:lint': [] }, + }, + '@fluentui/api-docs:test': { + roots: ['@fluentui/api-docs:test'], + tasks: { + '@fluentui/api-docs:test': { + id: '@fluentui/api-docs:test', + target: { project: '@fluentui/api-docs', target: 'test' }, + projectRoot: 'packages/api-docs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/api-docs:test': [] }, + }, + '@fluentui/api-docs:nx-release-publish': { + roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/api-docs:nx-release-publish': { + id: '@fluentui/api-docs:nx-release-publish', + target: { project: '@fluentui/api-docs', target: 'nx-release-publish' }, + projectRoot: 'packages/api-docs', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/api-docs:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-executors:format': { + roots: ['@fluentui/scripts-executors:format'], + tasks: { + '@fluentui/scripts-executors:format': { + id: '@fluentui/scripts-executors:format', + target: { project: '@fluentui/scripts-executors', target: 'format' }, + projectRoot: 'scripts/executors', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-executors:format': [] }, + }, + '@fluentui/scripts-executors:format:check': { + roots: ['@fluentui/scripts-executors:format:check'], + tasks: { + '@fluentui/scripts-executors:format:check': { + id: '@fluentui/scripts-executors:format:check', + target: { project: '@fluentui/scripts-executors', target: 'format:check' }, + projectRoot: 'scripts/executors', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-executors:format:check': [] }, + }, + '@fluentui/scripts-executors:lint': { + roots: ['@fluentui/scripts-executors:lint'], + tasks: { + '@fluentui/scripts-executors:lint': { + id: '@fluentui/scripts-executors:lint', + target: { project: '@fluentui/scripts-executors', target: 'lint' }, + projectRoot: 'scripts/executors', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-executors:lint': [] }, + }, + '@fluentui/scripts-executors:test': { + roots: ['@fluentui/scripts-executors:test'], + tasks: { + '@fluentui/scripts-executors:test': { + id: '@fluentui/scripts-executors:test', + target: { project: '@fluentui/scripts-executors', target: 'test' }, + projectRoot: 'scripts/executors', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-executors:test': [] }, + }, + '@fluentui/scripts-executors:type-check': { + roots: ['@fluentui/scripts-executors:type-check'], + tasks: { + '@fluentui/scripts-executors:type-check': { + id: '@fluentui/scripts-executors:type-check', + target: { project: '@fluentui/scripts-executors', target: 'type-check' }, + projectRoot: 'scripts/executors', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-executors:type-check': [] }, + }, + '@fluentui/scripts-executors:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-executors:nx-release-publish': { + id: '@fluentui/scripts-executors:nx-release-publish', + target: { project: '@fluentui/scripts-executors', target: 'nx-release-publish' }, + projectRoot: 'scripts/executors', + overrides: {}, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-executors:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-puppeteer:format': { + roots: ['@fluentui/scripts-puppeteer:format'], + tasks: { + '@fluentui/scripts-puppeteer:format': { + id: '@fluentui/scripts-puppeteer:format', + target: { project: '@fluentui/scripts-puppeteer', target: 'format' }, + projectRoot: 'scripts/puppeteer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-puppeteer:format': [] }, + }, + '@fluentui/scripts-puppeteer:format:check': { + roots: ['@fluentui/scripts-puppeteer:format:check'], + tasks: { + '@fluentui/scripts-puppeteer:format:check': { + id: '@fluentui/scripts-puppeteer:format:check', + target: { project: '@fluentui/scripts-puppeteer', target: 'format:check' }, + projectRoot: 'scripts/puppeteer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-puppeteer:format:check': [] }, + }, + '@fluentui/scripts-puppeteer:lint': { + roots: ['@fluentui/scripts-puppeteer:lint'], + tasks: { + '@fluentui/scripts-puppeteer:lint': { + id: '@fluentui/scripts-puppeteer:lint', + target: { project: '@fluentui/scripts-puppeteer', target: 'lint' }, + projectRoot: 'scripts/puppeteer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-puppeteer:lint': [] }, + }, + '@fluentui/scripts-puppeteer:test': { + roots: ['@fluentui/scripts-puppeteer:test'], + tasks: { + '@fluentui/scripts-puppeteer:test': { + id: '@fluentui/scripts-puppeteer:test', + target: { project: '@fluentui/scripts-puppeteer', target: 'test' }, + projectRoot: 'scripts/puppeteer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-puppeteer:test': [] }, + }, + '@fluentui/scripts-puppeteer:type-check': { + roots: ['@fluentui/scripts-puppeteer:type-check'], + tasks: { + '@fluentui/scripts-puppeteer:type-check': { + id: '@fluentui/scripts-puppeteer:type-check', + target: { project: '@fluentui/scripts-puppeteer', target: 'type-check' }, + projectRoot: 'scripts/puppeteer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-puppeteer:type-check': [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + roots: ['@fluentui/scripts-puppeteer:nx-release-publish'], + tasks: { + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-puppeteer:nx-release-publish': [] }, + }, + '@fluentui/scripts-prettier:format': { + roots: ['@fluentui/scripts-prettier:format'], + tasks: { + '@fluentui/scripts-prettier:format': { + id: '@fluentui/scripts-prettier:format', + target: { project: '@fluentui/scripts-prettier', target: 'format' }, + projectRoot: 'scripts/prettier', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-prettier:format': [] }, + }, + '@fluentui/scripts-prettier:format:check': { + roots: ['@fluentui/scripts-prettier:format:check'], + tasks: { + '@fluentui/scripts-prettier:format:check': { + id: '@fluentui/scripts-prettier:format:check', + target: { project: '@fluentui/scripts-prettier', target: 'format:check' }, + projectRoot: 'scripts/prettier', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-prettier:format:check': [] }, + }, + '@fluentui/scripts-prettier:lint': { + roots: ['@fluentui/scripts-prettier:lint'], + tasks: { + '@fluentui/scripts-prettier:lint': { + id: '@fluentui/scripts-prettier:lint', + target: { project: '@fluentui/scripts-prettier', target: 'lint' }, + projectRoot: 'scripts/prettier', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-prettier:lint': [] }, + }, + '@fluentui/scripts-prettier:test': { + roots: ['@fluentui/scripts-prettier:test'], + tasks: { + '@fluentui/scripts-prettier:test': { + id: '@fluentui/scripts-prettier:test', + target: { project: '@fluentui/scripts-prettier', target: 'test' }, + projectRoot: 'scripts/prettier', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-prettier:test': [] }, + }, + '@fluentui/scripts-prettier:type-check': { + roots: ['@fluentui/scripts-prettier:type-check'], + tasks: { + '@fluentui/scripts-prettier:type-check': { + id: '@fluentui/scripts-prettier:type-check', + target: { project: '@fluentui/scripts-prettier', target: 'type-check' }, + projectRoot: 'scripts/prettier', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-prettier:type-check': [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + }, + }, + '@fluentui/scripts-dangerjs:format': { + roots: ['@fluentui/scripts-dangerjs:format'], + tasks: { + '@fluentui/scripts-dangerjs:format': { + id: '@fluentui/scripts-dangerjs:format', + target: { project: '@fluentui/scripts-dangerjs', target: 'format' }, + projectRoot: 'scripts/dangerjs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-dangerjs:format': [] }, + }, + '@fluentui/scripts-dangerjs:format:check': { + roots: ['@fluentui/scripts-dangerjs:format:check'], + tasks: { + '@fluentui/scripts-dangerjs:format:check': { + id: '@fluentui/scripts-dangerjs:format:check', + target: { project: '@fluentui/scripts-dangerjs', target: 'format:check' }, + projectRoot: 'scripts/dangerjs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-dangerjs:format:check': [] }, + }, + '@fluentui/scripts-dangerjs:lint': { + roots: ['@fluentui/scripts-dangerjs:lint'], + tasks: { + '@fluentui/scripts-dangerjs:lint': { + id: '@fluentui/scripts-dangerjs:lint', + target: { project: '@fluentui/scripts-dangerjs', target: 'lint' }, + projectRoot: 'scripts/dangerjs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-dangerjs:lint': [] }, + }, + '@fluentui/scripts-dangerjs:test': { + roots: ['@fluentui/scripts-dangerjs:test'], + tasks: { + '@fluentui/scripts-dangerjs:test': { + id: '@fluentui/scripts-dangerjs:test', + target: { project: '@fluentui/scripts-dangerjs', target: 'test' }, + projectRoot: 'scripts/dangerjs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-dangerjs:test': [] }, + }, + '@fluentui/scripts-dangerjs:type-check': { + roots: ['@fluentui/scripts-dangerjs:type-check'], + tasks: { + '@fluentui/scripts-dangerjs:type-check': { + id: '@fluentui/scripts-dangerjs:type-check', + target: { project: '@fluentui/scripts-dangerjs', target: 'type-check' }, + projectRoot: 'scripts/dangerjs', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-dangerjs:type-check': [] }, + }, + '@fluentui/scripts-dangerjs:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-dangerjs:nx-release-publish': { + id: '@fluentui/scripts-dangerjs:nx-release-publish', + target: { project: '@fluentui/scripts-dangerjs', target: 'nx-release-publish' }, + projectRoot: 'scripts/dangerjs', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-dangerjs:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + }, + }, + '@fluentui/scripts-test-ssr:format': { + roots: ['@fluentui/scripts-test-ssr:format'], + tasks: { + '@fluentui/scripts-test-ssr:format': { + id: '@fluentui/scripts-test-ssr:format', + target: { project: '@fluentui/scripts-test-ssr', target: 'format' }, + projectRoot: 'scripts/test-ssr', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-test-ssr:format': [] }, + }, + '@fluentui/scripts-test-ssr:format:check': { + roots: ['@fluentui/scripts-test-ssr:format:check'], + tasks: { + '@fluentui/scripts-test-ssr:format:check': { + id: '@fluentui/scripts-test-ssr:format:check', + target: { project: '@fluentui/scripts-test-ssr', target: 'format:check' }, + projectRoot: 'scripts/test-ssr', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-test-ssr:format:check': [] }, + }, + '@fluentui/scripts-test-ssr:lint': { + roots: ['@fluentui/scripts-test-ssr:lint'], + tasks: { + '@fluentui/scripts-test-ssr:lint': { + id: '@fluentui/scripts-test-ssr:lint', + target: { project: '@fluentui/scripts-test-ssr', target: 'lint' }, + projectRoot: 'scripts/test-ssr', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-test-ssr:lint': [] }, + }, + '@fluentui/scripts-test-ssr:test': { + roots: ['@fluentui/scripts-test-ssr:test'], + tasks: { + '@fluentui/scripts-test-ssr:test': { + id: '@fluentui/scripts-test-ssr:test', + target: { project: '@fluentui/scripts-test-ssr', target: 'test' }, + projectRoot: 'scripts/test-ssr', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-test-ssr:test': [] }, + }, + '@fluentui/scripts-test-ssr:type-check': { + roots: ['@fluentui/scripts-test-ssr:type-check'], + tasks: { + '@fluentui/scripts-test-ssr:type-check': { + id: '@fluentui/scripts-test-ssr:type-check', + target: { project: '@fluentui/scripts-test-ssr', target: 'type-check' }, + projectRoot: 'scripts/test-ssr', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-test-ssr:type-check': [] }, + }, + '@fluentui/scripts-test-ssr:nx-release-publish': { + roots: ['@fluentui/scripts-puppeteer:nx-release-publish', '@fluentui/scripts-ts-node:nx-release-publish'], + tasks: { + '@fluentui/scripts-test-ssr:nx-release-publish': { + id: '@fluentui/scripts-test-ssr:nx-release-publish', + target: { project: '@fluentui/scripts-test-ssr', target: 'nx-release-publish' }, + projectRoot: 'scripts/test-ssr', + overrides: {}, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-ts-node:nx-release-publish': { + id: '@fluentui/scripts-ts-node:nx-release-publish', + target: { project: '@fluentui/scripts-ts-node', target: 'nx-release-publish' }, + projectRoot: 'scripts/ts-node', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-test-ssr:nx-release-publish': [ + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-ts-node:nx-release-publish', + ], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-ts-node:nx-release-publish': [], + }, + }, + '@fluentui/scripts-monorepo:format': { + roots: ['@fluentui/scripts-monorepo:format'], + tasks: { + '@fluentui/scripts-monorepo:format': { + id: '@fluentui/scripts-monorepo:format', + target: { project: '@fluentui/scripts-monorepo', target: 'format' }, + projectRoot: 'scripts/monorepo', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-monorepo:format': [] }, + }, + '@fluentui/scripts-monorepo:format:check': { + roots: ['@fluentui/scripts-monorepo:format:check'], + tasks: { + '@fluentui/scripts-monorepo:format:check': { + id: '@fluentui/scripts-monorepo:format:check', + target: { project: '@fluentui/scripts-monorepo', target: 'format:check' }, + projectRoot: 'scripts/monorepo', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-monorepo:format:check': [] }, + }, + '@fluentui/scripts-monorepo:lint': { + roots: ['@fluentui/scripts-monorepo:lint'], + tasks: { + '@fluentui/scripts-monorepo:lint': { + id: '@fluentui/scripts-monorepo:lint', + target: { project: '@fluentui/scripts-monorepo', target: 'lint' }, + projectRoot: 'scripts/monorepo', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-monorepo:lint': [] }, + }, + '@fluentui/scripts-monorepo:test': { + roots: ['@fluentui/scripts-monorepo:test'], + tasks: { + '@fluentui/scripts-monorepo:test': { + id: '@fluentui/scripts-monorepo:test', + target: { project: '@fluentui/scripts-monorepo', target: 'test' }, + projectRoot: 'scripts/monorepo', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-monorepo:test': [] }, + }, + '@fluentui/scripts-monorepo:type-check': { + roots: ['@fluentui/scripts-monorepo:type-check'], + tasks: { + '@fluentui/scripts-monorepo:type-check': { + id: '@fluentui/scripts-monorepo:type-check', + target: { project: '@fluentui/scripts-monorepo', target: 'type-check' }, + projectRoot: 'scripts/monorepo', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-monorepo:type-check': [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: {}, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + }, + }, + '@fluentui/stress-test:stress-test': { + roots: ['@fluentui/stress-test:stress-test'], + tasks: { + '@fluentui/stress-test:stress-test': { + id: '@fluentui/stress-test:stress-test', + target: { project: '@fluentui/stress-test', target: 'stress-test' }, + projectRoot: 'apps/stress-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/stress-test:stress-test': [] }, + }, + '@fluentui/stress-test:type-check': { + roots: ['@fluentui/stress-test:type-check'], + tasks: { + '@fluentui/stress-test:type-check': { + id: '@fluentui/stress-test:type-check', + target: { project: '@fluentui/stress-test', target: 'type-check' }, + projectRoot: 'apps/stress-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/stress-test:type-check': [] }, + }, + '@fluentui/stress-test:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/web-components:nx-release-publish', + ], + tasks: { + '@fluentui/stress-test:nx-release-publish': { + id: '@fluentui/stress-test:nx-release-publish', + target: { project: '@fluentui/stress-test', target: 'nx-release-publish' }, + projectRoot: 'apps/stress-test', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-components:nx-release-publish': { + id: '@fluentui/react-components:nx-release-publish', + target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-accordion:nx-release-publish': { + id: '@fluentui/react-accordion:nx-release-publish', + target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-accordion', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-aria:nx-release-publish': { + id: '@fluentui/react-aria:nx-release-publish', + target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-aria', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-keys:nx-release-publish': { + id: '@fluentui/keyboard-keys:nx-release-publish', + target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/keyboard-keys', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-shared-contexts:nx-release-publish': { + id: '@fluentui/react-shared-contexts:nx-release-publish', + target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-shared-contexts', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-theme:nx-release-publish': { + id: '@fluentui/react-theme:nx-release-publish', + target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-utilities:nx-release-publish': { + id: '@fluentui/react-utilities:nx-release-publish', + target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-context-selector:nx-release-publish': { + id: '@fluentui/react-context-selector:nx-release-publish', + target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-context-selector', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-jsx-runtime:nx-release-publish': { + id: '@fluentui/react-jsx-runtime:nx-release-publish', + target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-jsx-runtime', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance-griffel:nx-release-publish': { + id: '@fluentui/react-conformance-griffel:nx-release-publish', + target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-conformance-griffel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabster:nx-release-publish': { + id: '@fluentui/react-tabster:nx-release-publish', + target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabster', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-alert:nx-release-publish': { + id: '@fluentui/react-alert:nx-release-publish', + target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-alert', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-avatar:nx-release-publish': { + id: '@fluentui/react-avatar:nx-release-publish', + target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-avatar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-badge:nx-release-publish': { + id: '@fluentui/react-badge:nx-release-publish', + target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-badge', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-popover:nx-release-publish': { + id: '@fluentui/react-popover:nx-release-publish', + target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-popover', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal:nx-release-publish': { + id: '@fluentui/react-portal:nx-release-publish', + target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-positioning:nx-release-publish': { + id: '@fluentui/react-positioning:nx-release-publish', + target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-positioning', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tooltip:nx-release-publish': { + id: '@fluentui/react-tooltip:nx-release-publish', + target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tooltip', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-button:nx-release-publish': { + id: '@fluentui/react-button:nx-release-publish', + target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-button', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/a11y-testing:nx-release-publish': { + id: '@fluentui/a11y-testing:nx-release-publish', + target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, + projectRoot: 'packages/a11y-testing', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-card:nx-release-publish': { + id: '@fluentui/react-card:nx-release-publish', + target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-card', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-checkbox:nx-release-publish': { + id: '@fluentui/react-checkbox:nx-release-publish', + target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-checkbox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-field:nx-release-publish': { + id: '@fluentui/react-field:nx-release-publish', + target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-field', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-label:nx-release-publish': { + id: '@fluentui/react-label:nx-release-publish', + target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-label', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-combobox:nx-release-publish': { + id: '@fluentui/react-combobox:nx-release-publish', + target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-combobox', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-dialog:nx-release-publish': { + id: '@fluentui/react-dialog:nx-release-publish', + target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-dialog', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-divider:nx-release-publish': { + id: '@fluentui/react-divider:nx-release-publish', + target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-divider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-drawer:nx-release-publish': { + id: '@fluentui/react-drawer:nx-release-publish', + target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-drawer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-motion-preview:nx-release-publish': { + id: '@fluentui/react-motion-preview:nx-release-publish', + target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-motion-preview', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-image:nx-release-publish': { + id: '@fluentui/react-image:nx-release-publish', + target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-image', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infobutton:nx-release-publish': { + id: '@fluentui/react-infobutton:nx-release-publish', + target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infobutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-infolabel:nx-release-publish': { + id: '@fluentui/react-infolabel:nx-release-publish', + target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-infolabel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-input:nx-release-publish': { + id: '@fluentui/react-input:nx-release-publish', + target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-input', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-text:nx-release-publish': { + id: '@fluentui/react-text:nx-release-publish', + target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-text', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-link:nx-release-publish': { + id: '@fluentui/react-link:nx-release-publish', + target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-link', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-menu:nx-release-publish': { + id: '@fluentui/react-menu:nx-release-publish', + target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-menu', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-overflow:nx-release-publish': { + id: '@fluentui/react-overflow:nx-release-publish', + target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/priority-overflow:nx-release-publish': { + id: '@fluentui/priority-overflow:nx-release-publish', + target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/priority-overflow', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-persona:nx-release-publish': { + id: '@fluentui/react-persona:nx-release-publish', + target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-persona', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-progress:nx-release-publish': { + id: '@fluentui/react-progress:nx-release-publish', + target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-progress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-provider:nx-release-publish': { + id: '@fluentui/react-provider:nx-release-publish', + target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-radio:nx-release-publish': { + id: '@fluentui/react-radio:nx-release-publish', + target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-radio', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-select:nx-release-publish': { + id: '@fluentui/react-select:nx-release-publish', + target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-select', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-skeleton:nx-release-publish': { + id: '@fluentui/react-skeleton:nx-release-publish', + target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-skeleton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-slider:nx-release-publish': { + id: '@fluentui/react-slider:nx-release-publish', + target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-slider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinbutton:nx-release-publish': { + id: '@fluentui/react-spinbutton:nx-release-publish', + target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinbutton', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-spinner:nx-release-publish': { + id: '@fluentui/react-spinner:nx-release-publish', + target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-spinner', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-switch:nx-release-publish': { + id: '@fluentui/react-switch:nx-release-publish', + target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-switch', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-table:nx-release-publish': { + id: '@fluentui/react-table:nx-release-publish', + target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-table', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tabs:nx-release-publish': { + id: '@fluentui/react-tabs:nx-release-publish', + target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tabs', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tags:nx-release-publish': { + id: '@fluentui/react-tags:nx-release-publish', + target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tags', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-textarea:nx-release-publish': { + id: '@fluentui/react-textarea:nx-release-publish', + target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-textarea', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toast:nx-release-publish': { + id: '@fluentui/react-toast:nx-release-publish', + target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toast', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-toolbar:nx-release-publish': { + id: '@fluentui/react-toolbar:nx-release-publish', + target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-toolbar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-virtualizer:nx-release-publish': { + id: '@fluentui/react-virtualizer:nx-release-publish', + target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-virtualizer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-tree:nx-release-publish': { + id: '@fluentui/react-tree:nx-release-publish', + target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-tree', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-message-bar:nx-release-publish': { + id: '@fluentui/react-message-bar:nx-release-publish', + target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-message-bar', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-breadcrumb:nx-release-publish': { + id: '@fluentui/react-breadcrumb:nx-release-publish', + target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-breadcrumb', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/web-components:nx-release-publish': { + id: '@fluentui/web-components:nx-release-publish', + target: { project: '@fluentui/web-components', target: 'nx-release-publish' }, + projectRoot: 'packages/web-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/stress-test:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/react-components:nx-release-publish', + '@fluentui/web-components:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-components:nx-release-publish': [ + '@fluentui/react-accordion:nx-release-publish', + '@fluentui/react-alert:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-card:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-combobox:nx-release-publish', + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-drawer:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-image:nx-release-publish', + '@fluentui/react-infobutton:nx-release-publish', + '@fluentui/react-infolabel:nx-release-publish', + '@fluentui/react-input:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-menu:nx-release-publish', + '@fluentui/react-overflow:nx-release-publish', + '@fluentui/react-persona:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-progress:nx-release-publish', + '@fluentui/react-provider:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-select:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-skeleton:nx-release-publish', + '@fluentui/react-slider:nx-release-publish', + '@fluentui/react-spinbutton:nx-release-publish', + '@fluentui/react-spinner:nx-release-publish', + '@fluentui/react-switch:nx-release-publish', + '@fluentui/react-table:nx-release-publish', + '@fluentui/react-tabs:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-tags:nx-release-publish', + '@fluentui/react-textarea:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-toast:nx-release-publish', + '@fluentui/react-toolbar:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/react-virtualizer:nx-release-publish', + '@fluentui/react-tree:nx-release-publish', + '@fluentui/react-message-bar:nx-release-publish', + '@fluentui/react-breadcrumb:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-accordion:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-aria:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/keyboard-keys:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-shared-contexts:nx-release-publish': [ + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-theme:nx-release-publish': [ + '@fluentui/tokens:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-utilities:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-context-selector:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-jsx-runtime:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance-griffel:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabster:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/react-alert:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-avatar:nx-release-publish': [ + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-tooltip:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-badge:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-popover:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-positioning:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tooltip:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-button:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/a11y-testing:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-card:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-checkbox:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-field:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-label:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-combobox:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-dialog:nx-release-publish': [ + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-divider:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-drawer:nx-release-publish': [ + '@fluentui/react-dialog:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-motion-preview:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-motion-preview:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-image:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infobutton:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-infolabel:nx-release-publish': [ + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-popover:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-input:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-text:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-text:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-link:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/a11y-testing:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-menu:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-positioning:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-overflow:nx-release-publish': [ + '@fluentui/priority-overflow:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/priority-overflow:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-persona:nx-release-publish': [ + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-badge:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-progress:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-provider:nx-release-publish': [ + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-radio:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-select:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-skeleton:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-slider:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinbutton:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-spinner:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-switch:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-label:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-table:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tabs:nx-release-publish': [ + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tags:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-textarea:nx-release-publish': [ + '@fluentui/react-field:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toast:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-portal:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-toolbar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-divider:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-virtualizer:nx-release-publish': [ + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-tree:nx-release-publish': [ + '@fluentui/keyboard-keys:nx-release-publish', + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-avatar:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-checkbox:nx-release-publish', + '@fluentui/react-context-selector:nx-release-publish', + '@fluentui/react-radio:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + '@fluentui/react-message-bar:nx-release-publish': [ + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-breadcrumb:nx-release-publish': [ + '@fluentui/react-aria:nx-release-publish', + '@fluentui/react-button:nx-release-publish', + '@fluentui/react-link:nx-release-publish', + '@fluentui/react-shared-contexts:nx-release-publish', + '@fluentui/react-tabster:nx-release-publish', + '@fluentui/react-theme:nx-release-publish', + '@fluentui/react-utilities:nx-release-publish', + '@fluentui/react-jsx-runtime:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/react-conformance-griffel:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/web-components:nx-release-publish': [], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-cypress:format': { + roots: ['@fluentui/scripts-cypress:format'], + tasks: { + '@fluentui/scripts-cypress:format': { + id: '@fluentui/scripts-cypress:format', + target: { project: '@fluentui/scripts-cypress', target: 'format' }, + projectRoot: 'scripts/cypress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-cypress:format': [] }, + }, + '@fluentui/scripts-cypress:format:check': { + roots: ['@fluentui/scripts-cypress:format:check'], + tasks: { + '@fluentui/scripts-cypress:format:check': { + id: '@fluentui/scripts-cypress:format:check', + target: { project: '@fluentui/scripts-cypress', target: 'format:check' }, + projectRoot: 'scripts/cypress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-cypress:format:check': [] }, + }, + '@fluentui/scripts-cypress:lint': { + roots: ['@fluentui/scripts-cypress:lint'], + tasks: { + '@fluentui/scripts-cypress:lint': { + id: '@fluentui/scripts-cypress:lint', + target: { project: '@fluentui/scripts-cypress', target: 'lint' }, + projectRoot: 'scripts/cypress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-cypress:lint': [] }, + }, + '@fluentui/scripts-cypress:test': { + roots: ['@fluentui/scripts-cypress:test'], + tasks: { + '@fluentui/scripts-cypress:test': { + id: '@fluentui/scripts-cypress:test', + target: { project: '@fluentui/scripts-cypress', target: 'test' }, + projectRoot: 'scripts/cypress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-cypress:test': [] }, + }, + '@fluentui/scripts-cypress:type-check': { + roots: ['@fluentui/scripts-cypress:type-check'], + tasks: { + '@fluentui/scripts-cypress:type-check': { + id: '@fluentui/scripts-cypress:type-check', + target: { project: '@fluentui/scripts-cypress', target: 'type-check' }, + projectRoot: 'scripts/cypress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-cypress:type-check': [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + roots: ['@fluentui/scripts-cypress:nx-release-publish'], + tasks: { + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-cypress:nx-release-publish': [] }, + }, + '@fluentui/scripts-webpack:format': { + roots: ['@fluentui/scripts-webpack:format'], + tasks: { + '@fluentui/scripts-webpack:format': { + id: '@fluentui/scripts-webpack:format', + target: { project: '@fluentui/scripts-webpack', target: 'format' }, + projectRoot: 'scripts/webpack', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-webpack:format': [] }, + }, + '@fluentui/scripts-webpack:format:check': { + roots: ['@fluentui/scripts-webpack:format:check'], + tasks: { + '@fluentui/scripts-webpack:format:check': { + id: '@fluentui/scripts-webpack:format:check', + target: { project: '@fluentui/scripts-webpack', target: 'format:check' }, + projectRoot: 'scripts/webpack', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-webpack:format:check': [] }, + }, + '@fluentui/scripts-webpack:lint': { + roots: ['@fluentui/scripts-webpack:lint'], + tasks: { + '@fluentui/scripts-webpack:lint': { + id: '@fluentui/scripts-webpack:lint', + target: { project: '@fluentui/scripts-webpack', target: 'lint' }, + projectRoot: 'scripts/webpack', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-webpack:lint': [] }, + }, + '@fluentui/scripts-webpack:test': { + roots: ['@fluentui/scripts-webpack:test'], + tasks: { + '@fluentui/scripts-webpack:test': { + id: '@fluentui/scripts-webpack:test', + target: { project: '@fluentui/scripts-webpack', target: 'test' }, + projectRoot: 'scripts/webpack', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-webpack:test': [] }, + }, + '@fluentui/scripts-webpack:type-check': { + roots: ['@fluentui/scripts-webpack:type-check'], + tasks: { + '@fluentui/scripts-webpack:type-check': { + id: '@fluentui/scripts-webpack:type-check', + target: { project: '@fluentui/scripts-webpack', target: 'type-check' }, + projectRoot: 'scripts/webpack', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-webpack:type-check': [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + }, + }, + '@fluentui/tokens:build': { + roots: ['@fluentui/tokens:build'], + tasks: { + '@fluentui/tokens:build': { + id: '@fluentui/tokens:build', + target: { project: '@fluentui/tokens', target: 'build' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:build': [] }, + }, + '@fluentui/tokens:clean': { + roots: ['@fluentui/tokens:clean'], + tasks: { + '@fluentui/tokens:clean': { + id: '@fluentui/tokens:clean', + target: { project: '@fluentui/tokens', target: 'clean' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:clean': [] }, + }, + '@fluentui/tokens:code-style': { + roots: ['@fluentui/tokens:code-style'], + tasks: { + '@fluentui/tokens:code-style': { + id: '@fluentui/tokens:code-style', + target: { project: '@fluentui/tokens', target: 'code-style' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:code-style': [] }, + }, + '@fluentui/tokens:just': { + roots: ['@fluentui/tokens:just'], + tasks: { + '@fluentui/tokens:just': { + id: '@fluentui/tokens:just', + target: { project: '@fluentui/tokens', target: 'just' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:just': [] }, + }, + '@fluentui/tokens:lint': { + roots: ['@fluentui/tokens:lint'], + tasks: { + '@fluentui/tokens:lint': { + id: '@fluentui/tokens:lint', + target: { project: '@fluentui/tokens', target: 'lint' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:lint': [] }, + }, + '@fluentui/tokens:test': { + roots: ['@fluentui/tokens:test'], + tasks: { + '@fluentui/tokens:test': { + id: '@fluentui/tokens:test', + target: { project: '@fluentui/tokens', target: 'test' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:test': [] }, + }, + '@fluentui/tokens:token-pipeline': { + roots: ['@fluentui/tokens:token-pipeline'], + tasks: { + '@fluentui/tokens:token-pipeline': { + id: '@fluentui/tokens:token-pipeline', + target: { project: '@fluentui/tokens', target: 'token-pipeline' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:token-pipeline': [] }, + }, + '@fluentui/tokens:type-check': { + roots: ['@fluentui/tokens:type-check'], + tasks: { + '@fluentui/tokens:type-check': { + id: '@fluentui/tokens:type-check', + target: { project: '@fluentui/tokens', target: 'type-check' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:type-check': [] }, + }, + '@fluentui/tokens:generate-api': { + roots: ['@fluentui/tokens:generate-api'], + tasks: { + '@fluentui/tokens:generate-api': { + id: '@fluentui/tokens:generate-api', + target: { project: '@fluentui/tokens', target: 'generate-api' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + }, + dependencies: { '@fluentui/tokens:generate-api': [] }, + }, + '@fluentui/tokens:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/tokens:nx-release-publish': { + id: '@fluentui/tokens:nx-release-publish', + target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, + projectRoot: 'packages/tokens', + overrides: {}, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/tokens:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-ts-node:format': { + roots: ['@fluentui/scripts-ts-node:format'], + tasks: { + '@fluentui/scripts-ts-node:format': { + id: '@fluentui/scripts-ts-node:format', + target: { project: '@fluentui/scripts-ts-node', target: 'format' }, + projectRoot: 'scripts/ts-node', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-ts-node:format': [] }, + }, + '@fluentui/scripts-ts-node:format:check': { + roots: ['@fluentui/scripts-ts-node:format:check'], + tasks: { + '@fluentui/scripts-ts-node:format:check': { + id: '@fluentui/scripts-ts-node:format:check', + target: { project: '@fluentui/scripts-ts-node', target: 'format:check' }, + projectRoot: 'scripts/ts-node', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-ts-node:format:check': [] }, + }, + '@fluentui/scripts-ts-node:lint': { + roots: ['@fluentui/scripts-ts-node:lint'], + tasks: { + '@fluentui/scripts-ts-node:lint': { + id: '@fluentui/scripts-ts-node:lint', + target: { project: '@fluentui/scripts-ts-node', target: 'lint' }, + projectRoot: 'scripts/ts-node', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-ts-node:lint': [] }, + }, + '@fluentui/scripts-ts-node:test': { + roots: ['@fluentui/scripts-ts-node:test'], + tasks: { + '@fluentui/scripts-ts-node:test': { + id: '@fluentui/scripts-ts-node:test', + target: { project: '@fluentui/scripts-ts-node', target: 'test' }, + projectRoot: 'scripts/ts-node', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-ts-node:test': [] }, + }, + '@fluentui/scripts-ts-node:type-check': { + roots: ['@fluentui/scripts-ts-node:type-check'], + tasks: { + '@fluentui/scripts-ts-node:type-check': { + id: '@fluentui/scripts-ts-node:type-check', + target: { project: '@fluentui/scripts-ts-node', target: 'type-check' }, + projectRoot: 'scripts/ts-node', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-ts-node:type-check': [] }, + }, + '@fluentui/scripts-ts-node:nx-release-publish': { + roots: ['@fluentui/scripts-ts-node:nx-release-publish'], + tasks: { + '@fluentui/scripts-ts-node:nx-release-publish': { + id: '@fluentui/scripts-ts-node:nx-release-publish', + target: { project: '@fluentui/scripts-ts-node', target: 'nx-release-publish' }, + projectRoot: 'scripts/ts-node', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-ts-node:nx-release-publish': [] }, + }, + '@fluentui/perf-test:bundle': { + roots: ['@fluentui/perf-test:bundle'], + tasks: { + '@fluentui/perf-test:bundle': { + id: '@fluentui/perf-test:bundle', + target: { project: '@fluentui/perf-test', target: 'bundle' }, + projectRoot: 'apps/perf-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test:bundle': [] }, + }, + '@fluentui/perf-test:lint': { + roots: ['@fluentui/perf-test:lint'], + tasks: { + '@fluentui/perf-test:lint': { + id: '@fluentui/perf-test:lint', + target: { project: '@fluentui/perf-test', target: 'lint' }, + projectRoot: 'apps/perf-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test:lint': [] }, + }, + '@fluentui/perf-test:just': { + roots: ['@fluentui/perf-test:just'], + tasks: { + '@fluentui/perf-test:just': { + id: '@fluentui/perf-test:just', + target: { project: '@fluentui/perf-test', target: 'just' }, + projectRoot: 'apps/perf-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test:just': [] }, + }, + '@fluentui/perf-test:clean': { + roots: ['@fluentui/perf-test:clean'], + tasks: { + '@fluentui/perf-test:clean': { + id: '@fluentui/perf-test:clean', + target: { project: '@fluentui/perf-test', target: 'clean' }, + projectRoot: 'apps/perf-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test:clean': [] }, + }, + '@fluentui/perf-test:code-style': { + roots: ['@fluentui/perf-test:code-style'], + tasks: { + '@fluentui/perf-test:code-style': { + id: '@fluentui/perf-test:code-style', + target: { project: '@fluentui/perf-test', target: 'code-style' }, + projectRoot: 'apps/perf-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test:code-style': [] }, + }, + '@fluentui/perf-test:type-check': { + roots: ['@fluentui/perf-test:type-check'], + tasks: { + '@fluentui/perf-test:type-check': { + id: '@fluentui/perf-test:type-check', + target: { project: '@fluentui/perf-test', target: 'type-check' }, + projectRoot: 'apps/perf-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test:type-check': [] }, + }, + '@fluentui/perf-test:test:perf': { + roots: ['@fluentui/perf-test:test:perf'], + tasks: { + '@fluentui/perf-test:test:perf': { + id: '@fluentui/perf-test:test:perf', + target: { project: '@fluentui/perf-test', target: 'test:perf' }, + projectRoot: 'apps/perf-test', + overrides: {}, + }, + }, + dependencies: { '@fluentui/perf-test:test:perf': [] }, + }, + '@fluentui/perf-test:nx-release-publish': { + roots: [ + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/perf-test:nx-release-publish': { + id: '@fluentui/perf-test:nx-release-publish', + target: { project: '@fluentui/perf-test', target: 'nx-release-publish' }, + projectRoot: 'apps/perf-test', + overrides: {}, + }, + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': { + id: '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', + target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'nx-release-publish' }, + projectRoot: 'scripts/perf-test-flamegrill', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/perf-test:nx-release-publish': [ + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + ], + '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': [], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/theme:build': { + roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + tasks: { + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + }, + }, + '@fluentui/theme:clean': { + roots: ['@fluentui/theme:clean'], + tasks: { + '@fluentui/theme:clean': { + id: '@fluentui/theme:clean', + target: { project: '@fluentui/theme', target: 'clean' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme:clean': [] }, + }, + '@fluentui/theme:code-style': { + roots: ['@fluentui/theme:code-style'], + tasks: { + '@fluentui/theme:code-style': { + id: '@fluentui/theme:code-style', + target: { project: '@fluentui/theme', target: 'code-style' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme:code-style': [] }, + }, + '@fluentui/theme:just': { + roots: ['@fluentui/theme:just'], + tasks: { + '@fluentui/theme:just': { + id: '@fluentui/theme:just', + target: { project: '@fluentui/theme', target: 'just' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme:just': [] }, + }, + '@fluentui/theme:lint': { + roots: ['@fluentui/theme:lint'], + tasks: { + '@fluentui/theme:lint': { + id: '@fluentui/theme:lint', + target: { project: '@fluentui/theme', target: 'lint' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme:lint': [] }, + }, + '@fluentui/theme:test': { + roots: ['@fluentui/theme:test'], + tasks: { + '@fluentui/theme:test': { + id: '@fluentui/theme:test', + target: { project: '@fluentui/theme', target: 'test' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme:test': [] }, + }, + '@fluentui/theme:start-test': { + roots: ['@fluentui/theme:start-test'], + tasks: { + '@fluentui/theme:start-test': { + id: '@fluentui/theme:start-test', + target: { project: '@fluentui/theme', target: 'start-test' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme:start-test': [] }, + }, + '@fluentui/theme:update-snapshots': { + roots: ['@fluentui/theme:update-snapshots'], + tasks: { + '@fluentui/theme:update-snapshots': { + id: '@fluentui/theme:update-snapshots', + target: { project: '@fluentui/theme', target: 'update-snapshots' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + }, + dependencies: { '@fluentui/theme:update-snapshots': [] }, + }, + '@fluentui/theme:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: {}, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/scripts-github:format': { + roots: ['@fluentui/scripts-github:format'], + tasks: { + '@fluentui/scripts-github:format': { + id: '@fluentui/scripts-github:format', + target: { project: '@fluentui/scripts-github', target: 'format' }, + projectRoot: 'scripts/github', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-github:format': [] }, + }, + '@fluentui/scripts-github:format:check': { + roots: ['@fluentui/scripts-github:format:check'], + tasks: { + '@fluentui/scripts-github:format:check': { + id: '@fluentui/scripts-github:format:check', + target: { project: '@fluentui/scripts-github', target: 'format:check' }, + projectRoot: 'scripts/github', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-github:format:check': [] }, + }, + '@fluentui/scripts-github:lint': { + roots: ['@fluentui/scripts-github:lint'], + tasks: { + '@fluentui/scripts-github:lint': { + id: '@fluentui/scripts-github:lint', + target: { project: '@fluentui/scripts-github', target: 'lint' }, + projectRoot: 'scripts/github', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-github:lint': [] }, + }, + '@fluentui/scripts-github:test': { + roots: ['@fluentui/scripts-github:test'], + tasks: { + '@fluentui/scripts-github:test': { + id: '@fluentui/scripts-github:test', + target: { project: '@fluentui/scripts-github', target: 'test' }, + projectRoot: 'scripts/github', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-github:test': [] }, + }, + '@fluentui/scripts-github:type-check': { + roots: ['@fluentui/scripts-github:type-check'], + tasks: { + '@fluentui/scripts-github:type-check': { + id: '@fluentui/scripts-github:type-check', + target: { project: '@fluentui/scripts-github', target: 'type-check' }, + projectRoot: 'scripts/github', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-github:type-check': [] }, + }, + '@fluentui/scripts-github:nx-release-publish': { + roots: ['@fluentui/scripts-github:nx-release-publish'], + tasks: { + '@fluentui/scripts-github:nx-release-publish': { + id: '@fluentui/scripts-github:nx-release-publish', + target: { project: '@fluentui/scripts-github', target: 'nx-release-publish' }, + projectRoot: 'scripts/github', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-github:nx-release-publish': [] }, + }, + '@fluentui/react:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: {}, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + }, + }, + '@fluentui/react:bundle': { + roots: ['@fluentui/react:bundle'], + tasks: { + '@fluentui/react:bundle': { + id: '@fluentui/react:bundle', + target: { project: '@fluentui/react', target: 'bundle' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:bundle': [] }, + }, + '@fluentui/react:bundle-size-auditor': { + roots: ['@fluentui/react:bundle-size-auditor'], + tasks: { + '@fluentui/react:bundle-size-auditor': { + id: '@fluentui/react:bundle-size-auditor', + target: { project: '@fluentui/react', target: 'bundle-size-auditor' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:bundle-size-auditor': [] }, + }, + '@fluentui/react:build-storybook': { + roots: ['@fluentui/react:build-storybook'], + tasks: { + '@fluentui/react:build-storybook': { + id: '@fluentui/react:build-storybook', + target: { project: '@fluentui/react', target: 'build-storybook' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:build-storybook': [] }, + }, + '@fluentui/react:clean': { + roots: ['@fluentui/react:clean'], + tasks: { + '@fluentui/react:clean': { + id: '@fluentui/react:clean', + target: { project: '@fluentui/react', target: 'clean' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:clean': [] }, + }, + '@fluentui/react:code-style': { + roots: ['@fluentui/react:code-style'], + tasks: { + '@fluentui/react:code-style': { + id: '@fluentui/react:code-style', + target: { project: '@fluentui/react', target: 'code-style' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:code-style': [] }, + }, + '@fluentui/react:codepen': { + roots: ['@fluentui/react:codepen'], + tasks: { + '@fluentui/react:codepen': { + id: '@fluentui/react:codepen', + target: { project: '@fluentui/react', target: 'codepen' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:codepen': [] }, + }, + '@fluentui/react:e2e': { + roots: ['@fluentui/react:e2e'], + tasks: { + '@fluentui/react:e2e': { + id: '@fluentui/react:e2e', + target: { project: '@fluentui/react', target: 'e2e' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:e2e': [] }, + }, + '@fluentui/react:e2e:local': { + roots: ['@fluentui/react:e2e:local'], + tasks: { + '@fluentui/react:e2e:local': { + id: '@fluentui/react:e2e:local', + target: { project: '@fluentui/react', target: 'e2e:local' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:e2e:local': [] }, + }, + '@fluentui/react:just': { + roots: ['@fluentui/react:just'], + tasks: { + '@fluentui/react:just': { + id: '@fluentui/react:just', + target: { project: '@fluentui/react', target: 'just' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:just': [] }, + }, + '@fluentui/react:lint': { + roots: ['@fluentui/react:lint'], + tasks: { + '@fluentui/react:lint': { + id: '@fluentui/react:lint', + target: { project: '@fluentui/react', target: 'lint' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:lint': [] }, + }, + '@fluentui/react:start': { + roots: ['@fluentui/react:start'], + tasks: { + '@fluentui/react:start': { + id: '@fluentui/react:start', + target: { project: '@fluentui/react', target: 'start' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:start': [] }, + }, + '@fluentui/react:start:legacy': { + roots: ['@fluentui/react:start:legacy'], + tasks: { + '@fluentui/react:start:legacy': { + id: '@fluentui/react:start:legacy', + target: { project: '@fluentui/react', target: 'start:legacy' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:start:legacy': [] }, + }, + '@fluentui/react:start-test': { + roots: ['@fluentui/react:start-test'], + tasks: { + '@fluentui/react:start-test': { + id: '@fluentui/react:start-test', + target: { project: '@fluentui/react', target: 'start-test' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:start-test': [] }, + }, + '@fluentui/react:test': { + roots: ['@fluentui/react:test'], + tasks: { + '@fluentui/react:test': { + id: '@fluentui/react:test', + target: { project: '@fluentui/react', target: 'test' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:test': [] }, + }, + '@fluentui/react:update-snapshots': { + roots: ['@fluentui/react:update-snapshots'], + tasks: { + '@fluentui/react:update-snapshots': { + id: '@fluentui/react:update-snapshots', + target: { project: '@fluentui/react', target: 'update-snapshots' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:update-snapshots': [] }, + }, + '@fluentui/react:mf': { + roots: ['@fluentui/react:mf'], + tasks: { + '@fluentui/react:mf': { + id: '@fluentui/react:mf', + target: { project: '@fluentui/react', target: 'mf' }, + projectRoot: 'packages/react', + overrides: {}, + }, + }, + dependencies: { '@fluentui/react:mf': [] }, + }, + '@fluentui/react:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + ], + tasks: { + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: {}, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/ssr-tests:build': { + roots: [ + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/example-data:build', + '@fluentui/webpack-utilities:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/monaco-editor:build', + '@fluentui/api-docs:build', + ], + tasks: { + '@fluentui/ssr-tests:build': { + id: '@fluentui/ssr-tests:build', + target: { project: '@fluentui/ssr-tests', target: 'build' }, + projectRoot: 'apps/ssr-tests', + overrides: {}, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-resources:build': { + id: '@fluentui/public-docsite-resources:build', + target: { project: '@fluentui/public-docsite-resources', target: 'build' }, + projectRoot: 'apps/public-docsite-resources', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-examples:build': { + id: '@fluentui/react-examples:build', + target: { project: '@fluentui/react-examples', target: 'build' }, + projectRoot: 'packages/react-examples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:build': { + id: '@fluentui/azure-themes:build', + target: { project: '@fluentui/azure-themes', target: 'build' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-cards:build': { + id: '@fluentui/react-cards:build', + target: { project: '@fluentui/react-cards', target: 'build' }, + projectRoot: 'packages/react-cards', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:build': { + id: '@fluentui/react-docsite-components:build', + target: { project: '@fluentui/react-docsite-components', target: 'build' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:build': { + id: '@fluentui/public-docsite-setup:build', + target: { project: '@fluentui/public-docsite-setup', target: 'build' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:build': { + id: '@fluentui/react-monaco-editor:build', + target: { project: '@fluentui/react-monaco-editor', target: 'build' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:build': { + id: '@fluentui/monaco-editor:build', + target: { project: '@fluentui/monaco-editor', target: 'build' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:build': { + id: '@fluentui/react-experiments:build', + target: { project: '@fluentui/react-experiments', target: 'build' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-file-type-icons:build': { + id: '@fluentui/react-file-type-icons:build', + target: { project: '@fluentui/react-file-type-icons', target: 'build' }, + projectRoot: 'packages/react-file-type-icons', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:build': { + id: '@fluentui/react-icons-mdl2:build', + target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:build': { + id: '@fluentui/react-icon-provider:build', + target: { project: '@fluentui/react-icon-provider', target: 'build' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:build': { + id: '@fluentui/storybook:build', + target: { project: '@fluentui/storybook', target: 'build' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/api-docs:build': { + id: '@fluentui/api-docs:build', + target: { project: '@fluentui/api-docs', target: 'build' }, + projectRoot: 'packages/api-docs', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/ssr-tests:build': ['@fluentui/react:build', '@fluentui/public-docsite-resources:build'], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/set-version:build': [], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/example-data:build': [], + '@fluentui/webpack-utilities:build': [], + '@fluentui/public-docsite-resources:build': [ + '@fluentui/react:build', + '@fluentui/react-charting:build', + '@fluentui/react-examples:build', + '@fluentui/azure-themes:build', + '@fluentui/react-docsite-components:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/set-version:build', + '@fluentui/theme-samples:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/api-docs:build', + ], + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + '@fluentui/react-examples:build': [ + '@fluentui/azure-themes:build', + '@fluentui/date-time-utilities:build', + '@fluentui/dom-utilities:build', + '@fluentui/example-data:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/foundation-legacy:build', + '@fluentui/merge-styles:build', + '@fluentui/react:build', + '@fluentui/react-cards:build', + '@fluentui/react-charting:build', + '@fluentui/react-docsite-components:build', + '@fluentui/react-experiments:build', + '@fluentui/react-file-type-icons:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-icons-mdl2:build', + '@fluentui/scheme-utilities:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/theme-samples:build', + '@fluentui/utilities:build', + '@fluentui/storybook:build', + ], + '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/react-cards:build': [ + '@fluentui/react:build', + '@fluentui/foundation-legacy:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-docsite-components:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/public-docsite-setup:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/react-monaco-editor:build', + '@fluentui/common-styles:build', + ], + '@fluentui/public-docsite-setup:build': [], + '@fluentui/react-monaco-editor:build': [ + '@fluentui/react:build', + '@fluentui/example-data:build', + '@fluentui/monaco-editor:build', + '@fluentui/react-hooks:build', + '@fluentui/react-charting:build', + ], + '@fluentui/monaco-editor:build': [], + '@fluentui/react-experiments:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/react-icons-mdl2:build': [ + '@fluentui/react-icon-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/storybook:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/azure-themes:build', + '@fluentui/theme-samples:build', + ], + '@fluentui/api-docs:build': [], + }, + }, + '@fluentui/ssr-tests:bundle': { + roots: ['@fluentui/ssr-tests:bundle'], + tasks: { + '@fluentui/ssr-tests:bundle': { + id: '@fluentui/ssr-tests:bundle', + target: { project: '@fluentui/ssr-tests', target: 'bundle' }, + projectRoot: 'apps/ssr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests:bundle': [] }, + }, + '@fluentui/ssr-tests:test': { + roots: ['@fluentui/ssr-tests:test'], + tasks: { + '@fluentui/ssr-tests:test': { + id: '@fluentui/ssr-tests:test', + target: { project: '@fluentui/ssr-tests', target: 'test' }, + projectRoot: 'apps/ssr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests:test': [] }, + }, + '@fluentui/ssr-tests:code-style': { + roots: ['@fluentui/ssr-tests:code-style'], + tasks: { + '@fluentui/ssr-tests:code-style': { + id: '@fluentui/ssr-tests:code-style', + target: { project: '@fluentui/ssr-tests', target: 'code-style' }, + projectRoot: 'apps/ssr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests:code-style': [] }, + }, + '@fluentui/ssr-tests:clean': { + roots: ['@fluentui/ssr-tests:clean'], + tasks: { + '@fluentui/ssr-tests:clean': { + id: '@fluentui/ssr-tests:clean', + target: { project: '@fluentui/ssr-tests', target: 'clean' }, + projectRoot: 'apps/ssr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests:clean': [] }, + }, + '@fluentui/ssr-tests:just': { + roots: ['@fluentui/ssr-tests:just'], + tasks: { + '@fluentui/ssr-tests:just': { + id: '@fluentui/ssr-tests:just', + target: { project: '@fluentui/ssr-tests', target: 'just' }, + projectRoot: 'apps/ssr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/ssr-tests:just': [] }, + }, + '@fluentui/ssr-tests:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + ], + tasks: { + '@fluentui/ssr-tests:nx-release-publish': { + id: '@fluentui/ssr-tests:nx-release-publish', + target: { project: '@fluentui/ssr-tests', target: 'nx-release-publish' }, + projectRoot: 'apps/ssr-tests', + overrides: {}, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-resources:nx-release-publish': { + id: '@fluentui/public-docsite-resources:nx-release-publish', + target: { project: '@fluentui/public-docsite-resources', target: 'nx-release-publish' }, + projectRoot: 'apps/public-docsite-resources', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-examples:nx-release-publish': { + id: '@fluentui/react-examples:nx-release-publish', + target: { project: '@fluentui/react-examples', target: 'nx-release-publish' }, + projectRoot: 'packages/react-examples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:nx-release-publish': { + id: '@fluentui/azure-themes:nx-release-publish', + target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-cards:nx-release-publish': { + id: '@fluentui/react-cards:nx-release-publish', + target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, + projectRoot: 'packages/react-cards', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-docsite-components:nx-release-publish': { + id: '@fluentui/react-docsite-components:nx-release-publish', + target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, + projectRoot: 'packages/react-docsite-components', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/public-docsite-setup:nx-release-publish': { + id: '@fluentui/public-docsite-setup:nx-release-publish', + target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, + projectRoot: 'packages/public-docsite-setup', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-monaco-editor:nx-release-publish': { + id: '@fluentui/react-monaco-editor:nx-release-publish', + target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/react-monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/monaco-editor:nx-release-publish': { + id: '@fluentui/monaco-editor:nx-release-publish', + target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, + projectRoot: 'packages/monaco-editor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:nx-release-publish': { + id: '@fluentui/react-experiments:nx-release-publish', + target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-file-type-icons:nx-release-publish': { + id: '@fluentui/react-file-type-icons:nx-release-publish', + target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, + projectRoot: 'packages/react-file-type-icons', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:nx-release-publish': { + id: '@fluentui/react-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:nx-release-publish': { + id: '@fluentui/react-icon-provider:nx-release-publish', + target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:nx-release-publish': { + id: '@fluentui/storybook:nx-release-publish', + target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-cypress:nx-release-publish': { + id: '@fluentui/scripts-cypress:nx-release-publish', + target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, + projectRoot: 'scripts/cypress', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/api-docs:nx-release-publish': { + id: '@fluentui/api-docs:nx-release-publish', + target: { project: '@fluentui/api-docs', target: 'nx-release-publish' }, + projectRoot: 'packages/api-docs', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/ssr-tests:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/public-docsite-resources:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/public-docsite-resources:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/react-examples:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/api-docs:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-examples:nx-release-publish': [ + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-cards:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/react-docsite-components:nx-release-publish', + '@fluentui/react-experiments:nx-release-publish', + '@fluentui/react-file-type-icons:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-icons-mdl2:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/storybook:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + '@fluentui/scripts-cypress:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/azure-themes:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-cards:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-docsite-components:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/public-docsite-setup:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/react-monaco-editor:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/public-docsite-setup:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-monaco-editor:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/monaco-editor:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/monaco-editor:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-experiments:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-file-type-icons:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-icons-mdl2:nx-release-publish': [ + '@fluentui/react-icon-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icon-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/storybook:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/scripts-cypress:nx-release-publish': [], + '@fluentui/api-docs:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + }, + }, + '@fluentui/vr-tests:build': { + roots: [ + '@fluentui/example-data:build', + '@fluentui/set-version:build', + '@fluentui/test-utilities:build', + '@fluentui/keyboard-key:build', + '@fluentui/react-conformance:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/webpack-utilities:build', + ], + tasks: { + '@fluentui/vr-tests:build': { + id: '@fluentui/vr-tests:build', + target: { project: '@fluentui/vr-tests', target: 'build' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + '@fluentui/example-data:build': { + id: '@fluentui/example-data:build', + target: { project: '@fluentui/example-data', target: 'build' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:build': { + id: '@fluentui/font-icons-mdl2:build', + target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:build': { + id: '@fluentui/set-version:build', + target: { project: '@fluentui/set-version', target: 'build' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:build': { + id: '@fluentui/style-utilities:build', + target: { project: '@fluentui/style-utilities', target: 'build' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:build': { + id: '@fluentui/theme:build', + target: { project: '@fluentui/theme', target: 'build' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:build': { + id: '@fluentui/merge-styles:build', + target: { project: '@fluentui/merge-styles', target: 'build' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:build': { + id: '@fluentui/utilities:build', + target: { project: '@fluentui/utilities', target: 'build' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:build': { + id: '@fluentui/dom-utilities:build', + target: { project: '@fluentui/dom-utilities', target: 'build' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:build': { + id: '@fluentui/jest-serializer-merge-styles:build', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:build': { + id: '@fluentui/test-utilities:build', + target: { project: '@fluentui/test-utilities', target: 'build' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:build': { + id: '@fluentui/react:build', + target: { project: '@fluentui/react', target: 'build' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:build': { + id: '@fluentui/date-time-utilities:build', + target: { project: '@fluentui/date-time-utilities', target: 'build' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:build': { + id: '@fluentui/foundation-legacy:build', + target: { project: '@fluentui/foundation-legacy', target: 'build' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:build': { + id: '@fluentui/react-focus:build', + target: { project: '@fluentui/react-focus', target: 'build' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:build': { + id: '@fluentui/keyboard-key:build', + target: { project: '@fluentui/keyboard-key', target: 'build' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:build': { + id: '@fluentui/react-conformance:build', + target: { project: '@fluentui/react-conformance', target: 'build' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:build': { + id: '@fluentui/react-hooks:build', + target: { project: '@fluentui/react-hooks', target: 'build' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:build': { + id: '@fluentui/react-window-provider:build', + target: { project: '@fluentui/react-window-provider', target: 'build' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:build': { + id: '@fluentui/react-portal-compat-context:build', + target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:build': { + id: '@fluentui/common-styles:build', + target: { project: '@fluentui/common-styles', target: 'build' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:build': { + id: '@fluentui/webpack-utilities:build', + target: { project: '@fluentui/webpack-utilities', target: 'build' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:build': { + id: '@fluentui/react-experiments:build', + target: { project: '@fluentui/react-experiments', target: 'build' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:build': { + id: '@fluentui/react-icons-mdl2:build', + target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:build': { + id: '@fluentui/react-icon-provider:build', + target: { project: '@fluentui/react-icon-provider', target: 'build' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:build': { + id: '@fluentui/storybook:build', + target: { project: '@fluentui/storybook', target: 'build' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:build': { + id: '@fluentui/azure-themes:build', + target: { project: '@fluentui/azure-themes', target: 'build' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:build': { + id: '@fluentui/theme-samples:build', + target: { project: '@fluentui/theme-samples', target: 'build' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:build': { + id: '@fluentui/scheme-utilities:build', + target: { project: '@fluentui/scheme-utilities', target: 'build' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:build': { + id: '@fluentui/react-charting:build', + target: { project: '@fluentui/react-charting', target: 'build' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/vr-tests:build': [ + '@fluentui/example-data:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/react:build', + '@fluentui/react-experiments:build', + '@fluentui/react-hooks:build', + '@fluentui/react-icons-mdl2:build', + '@fluentui/storybook:build', + '@fluentui/react-charting:build', + ], + '@fluentui/example-data:build': [], + '@fluentui/font-icons-mdl2:build': [ + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + ], + '@fluentui/set-version:build': [], + '@fluentui/style-utilities:build': [ + '@fluentui/theme:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/theme:build': [ + '@fluentui/merge-styles:build', + '@fluentui/utilities:build', + '@fluentui/set-version:build', + ], + '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], + '@fluentui/utilities:build': [ + '@fluentui/dom-utilities:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], + '@fluentui/test-utilities:build': [], + '@fluentui/react:build': [ + '@fluentui/date-time-utilities:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-focus:build', + '@fluentui/react-hooks:build', + '@fluentui/react-portal-compat-context:build', + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/theme:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/example-data:build', + '@fluentui/jest-serializer-merge-styles:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/webpack-utilities:build', + ], + '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], + '@fluentui/foundation-legacy:build': [ + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-focus:build': [ + '@fluentui/keyboard-key:build', + '@fluentui/merge-styles:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/react-conformance:build', + '@fluentui/test-utilities:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/keyboard-key:build': [], + '@fluentui/react-conformance:build': [], + '@fluentui/react-hooks:build': [ + '@fluentui/react-window-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + '@fluentui/test-utilities:build', + ], + '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], + '@fluentui/react-portal-compat-context:build': [], + '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], + '@fluentui/webpack-utilities:build': [], + '@fluentui/react-experiments:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/example-data:build', + '@fluentui/foundation-legacy:build', + '@fluentui/font-icons-mdl2:build', + '@fluentui/merge-styles:build', + '@fluentui/react-hooks:build', + '@fluentui/set-version:build', + '@fluentui/style-utilities:build', + '@fluentui/utilities:build', + '@fluentui/common-styles:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + '@fluentui/react-icons-mdl2:build': [ + '@fluentui/react-icon-provider:build', + '@fluentui/set-version:build', + '@fluentui/utilities:build', + ], + '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], + '@fluentui/storybook:build': [ + '@fluentui/react:build', + '@fluentui/theme:build', + '@fluentui/azure-themes:build', + '@fluentui/theme-samples:build', + ], + '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], + '@fluentui/theme-samples:build': [ + '@fluentui/react:build', + '@fluentui/set-version:build', + '@fluentui/scheme-utilities:build', + ], + '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], + '@fluentui/react-charting:build': [ + '@fluentui/react-focus:build', + '@fluentui/theme-samples:build', + '@fluentui/set-version:build', + '@fluentui/react:build', + '@fluentui/jest-serializer-merge-styles:build', + ], + }, + }, + '@fluentui/vr-tests:clean': { + roots: ['@fluentui/vr-tests:clean'], + tasks: { + '@fluentui/vr-tests:clean': { + id: '@fluentui/vr-tests:clean', + target: { project: '@fluentui/vr-tests', target: 'clean' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests:clean': [] }, + }, + '@fluentui/vr-tests:code-style': { + roots: ['@fluentui/vr-tests:code-style'], + tasks: { + '@fluentui/vr-tests:code-style': { + id: '@fluentui/vr-tests:code-style', + target: { project: '@fluentui/vr-tests', target: 'code-style' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests:code-style': [] }, + }, + '@fluentui/vr-tests:just': { + roots: ['@fluentui/vr-tests:just'], + tasks: { + '@fluentui/vr-tests:just': { + id: '@fluentui/vr-tests:just', + target: { project: '@fluentui/vr-tests', target: 'just' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests:just': [] }, + }, + '@fluentui/vr-tests:lint': { + roots: ['@fluentui/vr-tests:lint'], + tasks: { + '@fluentui/vr-tests:lint': { + id: '@fluentui/vr-tests:lint', + target: { project: '@fluentui/vr-tests', target: 'lint' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests:lint': [] }, + }, + '@fluentui/vr-tests:start': { + roots: ['@fluentui/vr-tests:start'], + tasks: { + '@fluentui/vr-tests:start': { + id: '@fluentui/vr-tests:start', + target: { project: '@fluentui/vr-tests', target: 'start' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests:start': [] }, + }, + '@fluentui/vr-tests:type-check': { + roots: ['@fluentui/vr-tests:type-check'], + tasks: { + '@fluentui/vr-tests:type-check': { + id: '@fluentui/vr-tests:type-check', + target: { project: '@fluentui/vr-tests', target: 'type-check' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests:type-check': [] }, + }, + '@fluentui/vr-tests:vr:build': { + roots: ['@fluentui/vr-tests:vr:build'], + tasks: { + '@fluentui/vr-tests:vr:build': { + id: '@fluentui/vr-tests:vr:build', + target: { project: '@fluentui/vr-tests', target: 'vr:build' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests:vr:build': [] }, + }, + '@fluentui/vr-tests:vr:test': { + roots: ['@fluentui/vr-tests:vr:test'], + tasks: { + '@fluentui/vr-tests:vr:test': { + id: '@fluentui/vr-tests:vr:test', + target: { project: '@fluentui/vr-tests', target: 'vr:test' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + }, + dependencies: { '@fluentui/vr-tests:vr:test': [] }, + }, + '@fluentui/vr-tests:nx-release-publish': { + roots: [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + tasks: { + '@fluentui/vr-tests:nx-release-publish': { + id: '@fluentui/vr-tests:nx-release-publish', + target: { project: '@fluentui/vr-tests', target: 'nx-release-publish' }, + projectRoot: 'apps/vr-tests', + overrides: {}, + }, + '@fluentui/example-data:nx-release-publish': { + id: '@fluentui/example-data:nx-release-publish', + target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, + projectRoot: 'packages/example-data', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/eslint-plugin:nx-release-publish': { + id: '@fluentui/eslint-plugin:nx-release-publish', + target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, + projectRoot: 'packages/eslint-plugin', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-api-extractor:nx-release-publish': { + id: '@fluentui/scripts-api-extractor:nx-release-publish', + target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, + projectRoot: 'scripts/api-extractor', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-webpack:nx-release-publish': { + id: '@fluentui/scripts-webpack:nx-release-publish', + target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, + projectRoot: 'scripts/webpack', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/font-icons-mdl2:nx-release-publish': { + id: '@fluentui/font-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/font-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/set-version:nx-release-publish': { + id: '@fluentui/set-version:nx-release-publish', + target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, + projectRoot: 'packages/set-version', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/style-utilities:nx-release-publish': { + id: '@fluentui/style-utilities:nx-release-publish', + target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/style-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme:nx-release-publish': { + id: '@fluentui/theme:nx-release-publish', + target: { project: '@fluentui/theme', target: 'nx-release-publish' }, + projectRoot: 'packages/theme', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/merge-styles:nx-release-publish': { + id: '@fluentui/merge-styles:nx-release-publish', + target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/utilities:nx-release-publish': { + id: '@fluentui/utilities:nx-release-publish', + target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/dom-utilities:nx-release-publish': { + id: '@fluentui/dom-utilities:nx-release-publish', + target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/dom-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/jest-serializer-merge-styles:nx-release-publish': { + id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', + target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/jest-serializer-merge-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/test-utilities:nx-release-publish': { + id: '@fluentui/test-utilities:nx-release-publish', + target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/test-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react:nx-release-publish': { + id: '@fluentui/react:nx-release-publish', + target: { project: '@fluentui/react', target: 'nx-release-publish' }, + projectRoot: 'packages/react', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/date-time-utilities:nx-release-publish': { + id: '@fluentui/date-time-utilities:nx-release-publish', + target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/date-time-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/foundation-legacy:nx-release-publish': { + id: '@fluentui/foundation-legacy:nx-release-publish', + target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, + projectRoot: 'packages/foundation-legacy', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-focus:nx-release-publish': { + id: '@fluentui/react-focus:nx-release-publish', + target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, + projectRoot: 'packages/react-focus', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/keyboard-key:nx-release-publish': { + id: '@fluentui/keyboard-key:nx-release-publish', + target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, + projectRoot: 'packages/keyboard-key', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-conformance:nx-release-publish': { + id: '@fluentui/react-conformance:nx-release-publish', + target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, + projectRoot: 'packages/react-conformance', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-hooks:nx-release-publish': { + id: '@fluentui/react-hooks:nx-release-publish', + target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, + projectRoot: 'packages/react-hooks', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-window-provider:nx-release-publish': { + id: '@fluentui/react-window-provider:nx-release-publish', + target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-window-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-portal-compat-context:nx-release-publish': { + id: '@fluentui/react-portal-compat-context:nx-release-publish', + target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, + projectRoot: 'packages/react-components/react-portal-compat-context', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/common-styles:nx-release-publish': { + id: '@fluentui/common-styles:nx-release-publish', + target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, + projectRoot: 'packages/common-styles', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/webpack-utilities:nx-release-publish': { + id: '@fluentui/webpack-utilities:nx-release-publish', + target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/webpack-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-experiments:nx-release-publish': { + id: '@fluentui/react-experiments:nx-release-publish', + target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, + projectRoot: 'packages/react-experiments', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icons-mdl2:nx-release-publish': { + id: '@fluentui/react-icons-mdl2:nx-release-publish', + target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icons-mdl2', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-icon-provider:nx-release-publish': { + id: '@fluentui/react-icon-provider:nx-release-publish', + target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, + projectRoot: 'packages/react-icon-provider', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/storybook:nx-release-publish': { + id: '@fluentui/storybook:nx-release-publish', + target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, + projectRoot: 'packages/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/azure-themes:nx-release-publish': { + id: '@fluentui/azure-themes:nx-release-publish', + target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, + projectRoot: 'packages/azure-themes', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/theme-samples:nx-release-publish': { + id: '@fluentui/theme-samples:nx-release-publish', + target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, + projectRoot: 'packages/theme-samples', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scheme-utilities:nx-release-publish': { + id: '@fluentui/scheme-utilities:nx-release-publish', + target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, + projectRoot: 'packages/scheme-utilities', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/react-charting:nx-release-publish': { + id: '@fluentui/react-charting:nx-release-publish', + target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, + projectRoot: 'packages/react-charting', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-storybook:nx-release-publish': { + id: '@fluentui/scripts-storybook:nx-release-publish', + target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, + projectRoot: 'scripts/storybook', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/vr-tests:nx-release-publish': [ + '@fluentui/example-data:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/react-experiments:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-icons-mdl2:nx-release-publish', + '@fluentui/storybook:nx-release-publish', + '@fluentui/react-charting:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-storybook:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/example-data:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/eslint-plugin:nx-release-publish': [], + '@fluentui/scripts-api-extractor:nx-release-publish': [], + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-webpack:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/font-icons-mdl2:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/set-version:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/style-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/theme:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/merge-styles:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/utilities:nx-release-publish': [ + '@fluentui/dom-utilities:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/dom-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/test-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react:nx-release-publish': [ + '@fluentui/date-time-utilities:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-focus:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/react-portal-compat-context:nx-release-publish', + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/webpack-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/date-time-utilities:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/foundation-legacy:nx-release-publish': [ + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-focus:nx-release-publish': [ + '@fluentui/keyboard-key:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react-conformance:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/keyboard-key:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-conformance:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-hooks:nx-release-publish': [ + '@fluentui/react-window-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-window-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/test-utilities:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-portal-compat-context:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/common-styles:nx-release-publish': [ + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/webpack-utilities:nx-release-publish': [ + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/react-experiments:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/example-data:nx-release-publish', + '@fluentui/foundation-legacy:nx-release-publish', + '@fluentui/font-icons-mdl2:nx-release-publish', + '@fluentui/merge-styles:nx-release-publish', + '@fluentui/react-hooks:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/common-styles:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icons-mdl2:nx-release-publish': [ + '@fluentui/react-icon-provider:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-icon-provider:nx-release-publish': [ + '@fluentui/set-version:nx-release-publish', + '@fluentui/style-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/storybook:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/theme:nx-release-publish', + '@fluentui/azure-themes:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + ], + '@fluentui/azure-themes:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/theme-samples:nx-release-publish': [ + '@fluentui/react:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/scheme-utilities:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scheme-utilities:nx-release-publish': [ + '@fluentui/theme:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/react-charting:nx-release-publish': [ + '@fluentui/react-focus:nx-release-publish', + '@fluentui/theme-samples:nx-release-publish', + '@fluentui/set-version:nx-release-publish', + '@fluentui/eslint-plugin:nx-release-publish', + '@fluentui/react:nx-release-publish', + '@fluentui/jest-serializer-merge-styles:nx-release-publish', + '@fluentui/scripts-api-extractor:nx-release-publish', + '@fluentui/scripts-jest:nx-release-publish', + '@fluentui/scripts-tasks:nx-release-publish', + '@fluentui/scripts-webpack:nx-release-publish', + ], + '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-utils:format': { + roots: ['@fluentui/scripts-utils:format'], + tasks: { + '@fluentui/scripts-utils:format': { + id: '@fluentui/scripts-utils:format', + target: { project: '@fluentui/scripts-utils', target: 'format' }, + projectRoot: 'scripts/utils', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-utils:format': [] }, + }, + '@fluentui/scripts-utils:format:check': { + roots: ['@fluentui/scripts-utils:format:check'], + tasks: { + '@fluentui/scripts-utils:format:check': { + id: '@fluentui/scripts-utils:format:check', + target: { project: '@fluentui/scripts-utils', target: 'format:check' }, + projectRoot: 'scripts/utils', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-utils:format:check': [] }, + }, + '@fluentui/scripts-utils:lint': { + roots: ['@fluentui/scripts-utils:lint'], + tasks: { + '@fluentui/scripts-utils:lint': { + id: '@fluentui/scripts-utils:lint', + target: { project: '@fluentui/scripts-utils', target: 'lint' }, + projectRoot: 'scripts/utils', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-utils:lint': [] }, + }, + '@fluentui/scripts-utils:test': { + roots: ['@fluentui/scripts-utils:test'], + tasks: { + '@fluentui/scripts-utils:test': { + id: '@fluentui/scripts-utils:test', + target: { project: '@fluentui/scripts-utils', target: 'test' }, + projectRoot: 'scripts/utils', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-utils:test': [] }, + }, + '@fluentui/scripts-utils:type-check': { + roots: ['@fluentui/scripts-utils:type-check'], + tasks: { + '@fluentui/scripts-utils:type-check': { + id: '@fluentui/scripts-utils:type-check', + target: { project: '@fluentui/scripts-utils', target: 'type-check' }, + projectRoot: 'scripts/utils', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-utils:type-check': [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-utils:nx-release-publish': [] }, + }, + '@fluentui/scripts-tasks:format': { + roots: ['@fluentui/scripts-tasks:format'], + tasks: { + '@fluentui/scripts-tasks:format': { + id: '@fluentui/scripts-tasks:format', + target: { project: '@fluentui/scripts-tasks', target: 'format' }, + projectRoot: 'scripts/tasks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-tasks:format': [] }, + }, + '@fluentui/scripts-tasks:format:check': { + roots: ['@fluentui/scripts-tasks:format:check'], + tasks: { + '@fluentui/scripts-tasks:format:check': { + id: '@fluentui/scripts-tasks:format:check', + target: { project: '@fluentui/scripts-tasks', target: 'format:check' }, + projectRoot: 'scripts/tasks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-tasks:format:check': [] }, + }, + '@fluentui/scripts-tasks:lint': { + roots: ['@fluentui/scripts-tasks:lint'], + tasks: { + '@fluentui/scripts-tasks:lint': { + id: '@fluentui/scripts-tasks:lint', + target: { project: '@fluentui/scripts-tasks', target: 'lint' }, + projectRoot: 'scripts/tasks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-tasks:lint': [] }, + }, + '@fluentui/scripts-tasks:test': { + roots: ['@fluentui/scripts-tasks:test'], + tasks: { + '@fluentui/scripts-tasks:test': { + id: '@fluentui/scripts-tasks:test', + target: { project: '@fluentui/scripts-tasks', target: 'test' }, + projectRoot: 'scripts/tasks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-tasks:test': [] }, + }, + '@fluentui/scripts-tasks:type-check': { + roots: ['@fluentui/scripts-tasks:type-check'], + tasks: { + '@fluentui/scripts-tasks:type-check': { + id: '@fluentui/scripts-tasks:type-check', + target: { project: '@fluentui/scripts-tasks', target: 'type-check' }, + projectRoot: 'scripts/tasks', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-tasks:type-check': [] }, + }, + '@fluentui/scripts-tasks:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-tasks:nx-release-publish': { + id: '@fluentui/scripts-tasks:nx-release-publish', + target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, + projectRoot: 'scripts/tasks', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-tasks:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + }, + }, + '@fluentui/scripts-babel:format': { + roots: ['@fluentui/scripts-babel:format'], + tasks: { + '@fluentui/scripts-babel:format': { + id: '@fluentui/scripts-babel:format', + target: { project: '@fluentui/scripts-babel', target: 'format' }, + projectRoot: 'scripts/babel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-babel:format': [] }, + }, + '@fluentui/scripts-babel:format:check': { + roots: ['@fluentui/scripts-babel:format:check'], + tasks: { + '@fluentui/scripts-babel:format:check': { + id: '@fluentui/scripts-babel:format:check', + target: { project: '@fluentui/scripts-babel', target: 'format:check' }, + projectRoot: 'scripts/babel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-babel:format:check': [] }, + }, + '@fluentui/scripts-babel:lint': { + roots: ['@fluentui/scripts-babel:lint'], + tasks: { + '@fluentui/scripts-babel:lint': { + id: '@fluentui/scripts-babel:lint', + target: { project: '@fluentui/scripts-babel', target: 'lint' }, + projectRoot: 'scripts/babel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-babel:lint': [] }, + }, + '@fluentui/scripts-babel:test': { + roots: ['@fluentui/scripts-babel:test'], + tasks: { + '@fluentui/scripts-babel:test': { + id: '@fluentui/scripts-babel:test', + target: { project: '@fluentui/scripts-babel', target: 'test' }, + projectRoot: 'scripts/babel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-babel:test': [] }, + }, + '@fluentui/scripts-babel:type-check': { + roots: ['@fluentui/scripts-babel:type-check'], + tasks: { + '@fluentui/scripts-babel:type-check': { + id: '@fluentui/scripts-babel:type-check', + target: { project: '@fluentui/scripts-babel', target: 'type-check' }, + projectRoot: 'scripts/babel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-babel:type-check': [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + roots: ['@fluentui/scripts-babel:nx-release-publish'], + tasks: { + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-babel:nx-release-publish': [] }, + }, + '@fluentui/scripts-jest:format': { + roots: ['@fluentui/scripts-jest:format'], + tasks: { + '@fluentui/scripts-jest:format': { + id: '@fluentui/scripts-jest:format', + target: { project: '@fluentui/scripts-jest', target: 'format' }, + projectRoot: 'scripts/jest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-jest:format': [] }, + }, + '@fluentui/scripts-jest:format:check': { + roots: ['@fluentui/scripts-jest:format:check'], + tasks: { + '@fluentui/scripts-jest:format:check': { + id: '@fluentui/scripts-jest:format:check', + target: { project: '@fluentui/scripts-jest', target: 'format:check' }, + projectRoot: 'scripts/jest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-jest:format:check': [] }, + }, + '@fluentui/scripts-jest:lint': { + roots: ['@fluentui/scripts-jest:lint'], + tasks: { + '@fluentui/scripts-jest:lint': { + id: '@fluentui/scripts-jest:lint', + target: { project: '@fluentui/scripts-jest', target: 'lint' }, + projectRoot: 'scripts/jest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-jest:lint': [] }, + }, + '@fluentui/scripts-jest:test': { + roots: ['@fluentui/scripts-jest:test'], + tasks: { + '@fluentui/scripts-jest:test': { + id: '@fluentui/scripts-jest:test', + target: { project: '@fluentui/scripts-jest', target: 'test' }, + projectRoot: 'scripts/jest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-jest:test': [] }, + }, + '@fluentui/scripts-jest:type-check': { + roots: ['@fluentui/scripts-jest:type-check'], + tasks: { + '@fluentui/scripts-jest:type-check': { + id: '@fluentui/scripts-jest:type-check', + target: { project: '@fluentui/scripts-jest', target: 'type-check' }, + projectRoot: 'scripts/jest', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-jest:type-check': [] }, + }, + '@fluentui/scripts-jest:nx-release-publish': { + roots: ['@fluentui/scripts-utils:nx-release-publish'], + tasks: { + '@fluentui/scripts-jest:nx-release-publish': { + id: '@fluentui/scripts-jest:nx-release-publish', + target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, + projectRoot: 'scripts/jest', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-jest:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + }, + }, + '@fluentui/scripts-gulp:format': { + roots: ['@fluentui/scripts-gulp:format'], + tasks: { + '@fluentui/scripts-gulp:format': { + id: '@fluentui/scripts-gulp:format', + target: { project: '@fluentui/scripts-gulp', target: 'format' }, + projectRoot: 'scripts/gulp', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-gulp:format': [] }, + }, + '@fluentui/scripts-gulp:format:check': { + roots: ['@fluentui/scripts-gulp:format:check'], + tasks: { + '@fluentui/scripts-gulp:format:check': { + id: '@fluentui/scripts-gulp:format:check', + target: { project: '@fluentui/scripts-gulp', target: 'format:check' }, + projectRoot: 'scripts/gulp', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-gulp:format:check': [] }, + }, + '@fluentui/scripts-gulp:lint': { + roots: ['@fluentui/scripts-gulp:lint'], + tasks: { + '@fluentui/scripts-gulp:lint': { + id: '@fluentui/scripts-gulp:lint', + target: { project: '@fluentui/scripts-gulp', target: 'lint' }, + projectRoot: 'scripts/gulp', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-gulp:lint': [] }, + }, + '@fluentui/scripts-gulp:test': { + roots: ['@fluentui/scripts-gulp:test'], + tasks: { + '@fluentui/scripts-gulp:test': { + id: '@fluentui/scripts-gulp:test', + target: { project: '@fluentui/scripts-gulp', target: 'test' }, + projectRoot: 'scripts/gulp', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-gulp:test': [] }, + }, + '@fluentui/scripts-gulp:type-check': { + roots: ['@fluentui/scripts-gulp:type-check'], + tasks: { + '@fluentui/scripts-gulp:type-check': { + id: '@fluentui/scripts-gulp:type-check', + target: { project: '@fluentui/scripts-gulp', target: 'type-check' }, + projectRoot: 'scripts/gulp', + overrides: {}, + }, + }, + dependencies: { '@fluentui/scripts-gulp:type-check': [] }, + }, + '@fluentui/scripts-gulp:nx-release-publish': { + roots: [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + ], + tasks: { + '@fluentui/scripts-gulp:nx-release-publish': { + id: '@fluentui/scripts-gulp:nx-release-publish', + target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, + projectRoot: 'scripts/gulp', + overrides: {}, + }, + '@fluentui/scripts-monorepo:nx-release-publish': { + id: '@fluentui/scripts-monorepo:nx-release-publish', + target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, + projectRoot: 'scripts/monorepo', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-utils:nx-release-publish': { + id: '@fluentui/scripts-utils:nx-release-publish', + target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, + projectRoot: 'scripts/utils', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-prettier:nx-release-publish': { + id: '@fluentui/scripts-prettier:nx-release-publish', + target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, + projectRoot: 'scripts/prettier', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-puppeteer:nx-release-publish': { + id: '@fluentui/scripts-puppeteer:nx-release-publish', + target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, + projectRoot: 'scripts/puppeteer', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-babel:nx-release-publish': { + id: '@fluentui/scripts-babel:nx-release-publish', + target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, + projectRoot: 'scripts/babel', + overrides: { __overrides_unparsed__: [] }, + }, + '@fluentui/scripts-projects-test:nx-release-publish': { + id: '@fluentui/scripts-projects-test:nx-release-publish', + target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, + projectRoot: 'scripts/projects-test', + overrides: { __overrides_unparsed__: [] }, + }, + }, + dependencies: { + '@fluentui/scripts-gulp:nx-release-publish': [ + '@fluentui/scripts-monorepo:nx-release-publish', + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-prettier:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-babel:nx-release-publish', + '@fluentui/scripts-projects-test:nx-release-publish', + ], + '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], + '@fluentui/scripts-utils:nx-release-publish': [], + '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], + '@fluentui/scripts-puppeteer:nx-release-publish': [], + '@fluentui/scripts-babel:nx-release-publish': [], + '@fluentui/scripts-projects-test:nx-release-publish': [ + '@fluentui/scripts-utils:nx-release-publish', + '@fluentui/scripts-puppeteer:nx-release-publish', + '@fluentui/scripts-monorepo:nx-release-publish', + ], + }, + }, + '@fluentui/typings:type-check': { + roots: ['@fluentui/typings:type-check'], + tasks: { + '@fluentui/typings:type-check': { + id: '@fluentui/typings:type-check', + target: { project: '@fluentui/typings', target: 'type-check' }, + projectRoot: 'typings', + overrides: {}, + }, + }, + dependencies: { '@fluentui/typings:type-check': [] }, + }, + '@fluentui/typings:nx-release-publish': { + roots: ['@fluentui/typings:nx-release-publish'], + tasks: { + '@fluentui/typings:nx-release-publish': { + id: '@fluentui/typings:nx-release-publish', + target: { project: '@fluentui/typings', target: 'nx-release-publish' }, + projectRoot: 'typings', + overrides: {}, + }, + }, + dependencies: { '@fluentui/typings:nx-release-publish': [] }, + }, + }, + errors: {}, +}; diff --git a/.nx/cache/nx-console-project-graph/static/favicon.ico b/.nx/cache/nx-console-project-graph/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..317ebcb2336e0833a22dddf0ab287849f26fda57 GIT binary patch literal 15086 zcmeI332;U^%p|z7g|#(P)qFEA@4f!_@qOK2 z_lJl}!lhL!VT_U|uN7%8B2iKH??xhDa;*`g{yjTFWHvXn;2s{4R7kH|pKGdy(7z!K zgftM+Ku7~24TLlh(!g)gz|foI94G^t2^IO$uvX$3(OR0<_5L2sB)lMAMy|+`xodJ{ z_Uh_1m)~h?a;2W{dmhM;u!YGo=)OdmId_B<%^V^{ovI@y`7^g1_V9G}*f# zNzAtvou}I!W1#{M^@ROc(BZ! z+F!!_aR&Px3_reO(EW+TwlW~tv*2zr?iP7(d~a~yA|@*a89IUke+c472NXM0wiX{- zl`UrZC^1XYyf%1u)-Y)jj9;MZ!SLfd2Hl?o|80Su%Z?To_=^g_Jt0oa#CT*tjx>BI z16wec&AOWNK<#i0Qd=1O$fymLRoUR*%;h@*@v7}wApDl^w*h}!sYq%kw+DKDY)@&A z@9$ULEB3qkR#85`lb8#WZw=@})#kQig9oqy^I$dj&k4jU&^2(M3q{n1AKeGUKPFbr z1^<)aH;VsG@J|B&l>UtU#Ejv3GIqERzYgL@UOAWtW<{p#zy`WyJgpCy8$c_e%wYJL zyGHRRx38)HyjU3y{-4z6)pzb>&Q1pR)B&u01F-|&Gx4EZWK$nkUkOI|(D4UHOXg_- zw{OBf!oWQUn)Pe(=f=nt=zkmdjpO^o8ZZ9o_|4tW1ni+Un9iCW47*-ut$KQOww!;u z`0q)$s6IZO!~9$e_P9X!hqLxu`fpcL|2f^I5d4*a@Dq28;@2271v_N+5HqYZ>x;&O z05*7JT)mUe&%S0@UD)@&8SmQrMtsDfZT;fkdA!r(S=}Oz>iP)w=W508=Rc#nNn7ym z1;42c|8($ALY8#a({%1#IXbWn9-Y|0eDY$_L&j{63?{?AH{);EzcqfydD$@-B`Y3<%IIj7S7rK_N}je^=dEk%JQ4c z!tBdTPE3Tse;oYF>cnrapWq*o)m47X1`~6@(!Y29#>-#8zm&LXrXa(3=7Z)ElaQqj z-#0JJy3Fi(C#Rx(`=VXtJ63E2_bZGCz+QRa{W0e2(m3sI?LOcUBx)~^YCqZ{XEPX)C>G>U4tfqeH8L(3|pQR*zbL1 zT9e~4Tb5p9_G}$y4t`i*4t_Mr9QYvL9C&Ah*}t`q*}S+VYh0M6GxTTSXI)hMpMpIq zD1ImYqJLzbj0}~EpE-aH#VCH_udYEW#`P2zYmi&xSPs_{n6tBj=MY|-XrA;SGA_>y zGtU$?HXm$gYj*!N)_nQ59%lQdXtQZS3*#PC-{iB_sm+ytD*7j`D*k(P&IH2GHT}Eh z5697eQECVIGQAUe#eU2I!yI&%0CP#>%6MWV z@zS!p@+Y1i1b^QuuEF*13CuB zu69dve5k7&Wgb+^s|UB08Dr3u`h@yM0NTj4h7MnHo-4@xmyr7(*4$rpPwsCDZ@2be zRz9V^GnV;;?^Lk%ynzq&K(Aix`mWmW`^152Hoy$CTYVehpD-S1-W^#k#{0^L`V6CN+E z!w+xte;2vu4AmVNEFUOBmrBL>6MK@!O2*N|2=d|Y;oN&A&qv=qKn73lDD zI(+oJAdgv>Yr}8(&@ZuAZE%XUXmX(U!N+Z_sjL<1vjy1R+1IeHt`79fnYdOL{$ci7 z%3f0A*;Zt@ED&Gjm|OFTYBDe%bbo*xXAQsFz+Q`fVBH!N2)kaxN8P$c>sp~QXnv>b zwq=W3&Mtmih7xkR$YA)1Yi?avHNR6C99!u6fh=cL|KQ&PwF!n@ud^n(HNIImHD!h87!i*t?G|p0o+eelJ?B@A64_9%SBhNaJ64EvKgD&%LjLCYnNfc; znj?%*p@*?dq#NqcQFmmX($wms@CSAr9#>hUR^=I+=0B)vvGX%T&#h$kmX*s=^M2E!@N9#m?LhMvz}YB+kd zG~mbP|D(;{s_#;hsKK9lbVK&Lo734x7SIFJ9V_}2$@q?zm^7?*XH94w5Qae{7zOMUF z^?%F%)c1Y)Q?Iy?I>knw*8gYW#ok|2gdS=YYZLiD=CW|Nj;n^x!=S#iJ#`~Ld79+xXpVmUK^B(xO_vO!btA9y7w3L3-0j-y4 z?M-V{%z;JI`bk7yFDcP}OcCd*{Q9S5$iGA7*E1@tfkyjAi!;wP^O71cZ^Ep)qrQ)N z#wqw0_HS;T7x3y|`P==i3hEwK%|>fZ)c&@kgKO1~5<5xBSk?iZV?KI6&i72H6S9A* z=U(*e)EqEs?Oc04)V-~K5AUmh|62H4*`UAtItO$O(q5?6jj+K^oD!04r=6#dsxp?~}{`?&sXn#q2 zGuY~7>O2=!u@@Kfu7q=W*4egu@qPMRM>(eyYyaIE<|j%d=iWNdGsx%c!902v#ngNg z@#U-O_4xN$s_9?(`{>{>7~-6FgWpBpqXb`Ydc3OFL#&I}Irse9F_8R@4zSS*Y*o*B zXL?6*Aw!AfkNCgcr#*yj&p3ZDe2y>v$>FUdKIy_2N~}6AbHc7gA3`6$g@1o|dE>vz z4pl(j9;kyMsjaw}lO?(?Xg%4k!5%^t#@5n=WVc&JRa+XT$~#@rldvN3S1rEpU$;XgxVny7mki3 z-Hh|jUCHrUXuLr!)`w>wgO0N%KTB-1di>cj(x3Bav`7v z3G7EIbU$z>`Nad7Rk_&OT-W{;qg)-GXV-aJT#(ozdmnA~Rq3GQ_3mby(>q6Ocb-RgTUhTN)))x>m&eD;$J5Bg zo&DhY36Yg=J=$Z>t}RJ>o|@hAcwWzN#r(WJ52^g$lh^!63@hh+dR$&_dEGu&^CR*< z!oFqSqO@>xZ*nC2oiOd0eS*F^IL~W-rsrO`J`ej{=ou_q^_(<$&-3f^J z&L^MSYWIe{&pYq&9eGaArA~*kA { + 'use strict'; + var r = n(33286), + o = function () { + return ( + (o = + Object.assign || + function (e) { + for (var t, n = 1, r = arguments.length; n < r; n++) + for (var o in (t = arguments[n])) Object.prototype.hasOwnProperty.call(t, o) && (e[o] = t[o]); + return e; + }), + o.apply(this, arguments) + ); + }; + var i = n(26916), + a = n(14487), + s = n(93884), + l = n(92185), + c = n(4329), + u = n.n(c); + function d(e) { + return 'function' == typeof e ? e() : e; + } + function f(e, t) { + try { + return JSON.stringify(e, t); + } catch (x) { + return u()(e, t); + } + } + function h(e, t, n) { + var r, + i, + a = {}; + try { + for ( + var s = (function (e) { + var t = 'function' == typeof Symbol && Symbol.iterator, + n = t && e[t], + r = 0; + if (n) return n.call(e); + if (e && 'number' == typeof e.length) + return { + next: function () { + return e && r >= e.length && (e = void 0), { value: e && e[r++], done: !e }; + }, + }; + throw new TypeError(t ? 'Object is not iterable.' : 'Symbol.iterator is not defined.'); + })(t), + l = s.next(); + !l.done; + l = s.next() + ) { + var c = l.value; + a[c] = e[c]; + } + } catch (d) { + r = { error: d }; + } finally { + try { + l && !l.done && (i = s.return) && i.call(s); + } finally { + if (r) throw r.error; + } + } + var u = JSON.parse(f(a, n)); + return f(o(o({}, e), u)); + } + function p(e, t) { + e.machine, e.configuration, e.history; + var n = (function (e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && 'function' == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) + t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + })(e, ['machine', 'configuration', 'history']); + return h(n, ['context', 'event', '_event'], t); + } + function v(e, t) { + return h(e.definition, ['context'], t); + } + var g = new Map(); + var m = { + url: 'https://stately.ai/viz?inspect', + iframe: function () { + return document.querySelector('iframe[data-xstate]'); + }, + devTools: function () { + var e, + t, + n = + ((e = new Set()), + (t = new Set()), + { + services: e, + register: function (n) { + e.add(n), + g.set(n.sessionId, n), + t.forEach(function (e) { + return e(n); + }), + n.onStop(function () { + e.delete(n), g.delete(n.sessionId); + }); + }, + unregister: function (t) { + e.delete(t), g.delete(t.sessionId); + }, + onRegister: function (n) { + return ( + t.add(n), + e.forEach(function (e) { + return n(e); + }), + { + unsubscribe: function () { + t.delete(n); + }, + } + ); + }, + }); + return (globalThis.__xstate__ = n), n; + }, + serialize: void 0, + }, + y = new Set(); + n(78062), n(3346), n(70769), n(19658); + function b(e) { + return e.split('-')[1]; + } + function x(e) { + return 'y' === e ? 'height' : 'width'; + } + function w(e) { + return e.split('-')[0]; + } + function E(e) { + return ['top', 'bottom'].includes(w(e)) ? 'x' : 'y'; + } + function k(e, t, n) { + let { reference: r, floating: o } = e; + const i = r.x + r.width / 2 - o.width / 2, + a = r.y + r.height / 2 - o.height / 2, + s = E(t), + l = x(s), + c = r[l] / 2 - o[l] / 2, + u = 'x' === s; + let d; + switch (w(t)) { + case 'top': + d = { x: i, y: r.y - o.height }; + break; + case 'bottom': + d = { x: i, y: r.y + r.height }; + break; + case 'right': + d = { x: r.x + r.width, y: a }; + break; + case 'left': + d = { x: r.x - o.width, y: a }; + break; + default: + d = { x: r.x, y: r.y }; + } + switch (b(t)) { + case 'start': + d[s] -= c * (n && u ? -1 : 1); + break; + case 'end': + d[s] += c * (n && u ? -1 : 1); + } + return d; + } + const _ = async (e, t, n) => { + const { placement: r = 'bottom', strategy: o = 'absolute', middleware: i = [], platform: a } = n, + s = i.filter(Boolean), + l = await (null == a.isRTL ? void 0 : a.isRTL(t)); + let c = await a.getElementRects({ reference: e, floating: t, strategy: o }), + { x: u, y: d } = k(c, r, l), + f = r, + h = {}, + p = 0; + for (let v = 0; v < s.length; v++) { + const { name: n, fn: i } = s[v], + { + x: g, + y: m, + data: y, + reset: b, + } = await i({ + x: u, + y: d, + initialPlacement: r, + placement: f, + strategy: o, + middlewareData: h, + rects: c, + platform: a, + elements: { reference: e, floating: t }, + }); + (u = null != g ? g : u), + (d = null != m ? m : d), + (h = { ...h, [n]: { ...h[n], ...y } }), + b && + p <= 50 && + (p++, + 'object' == typeof b && + (b.placement && (f = b.placement), + b.rects && + (c = !0 === b.rects ? await a.getElementRects({ reference: e, floating: t, strategy: o }) : b.rects), + ({ x: u, y: d } = k(c, f, l))), + (v = -1)); + } + return { x: u, y: d, placement: f, strategy: o, middlewareData: h }; + }; + function S(e) { + return 'number' != typeof e + ? (function (e) { + return { top: 0, right: 0, bottom: 0, left: 0, ...e }; + })(e) + : { top: e, right: e, bottom: e, left: e }; + } + function P(e) { + return { ...e, top: e.y, left: e.x, right: e.x + e.width, bottom: e.y + e.height }; + } + async function C(e, t) { + var n; + void 0 === t && (t = {}); + const { x: r, y: o, platform: i, rects: a, elements: s, strategy: l } = e, + { + boundary: c = 'clippingAncestors', + rootBoundary: u = 'viewport', + elementContext: d = 'floating', + altBoundary: f = !1, + padding: h = 0, + } = t, + p = S(h), + v = s[f ? ('floating' === d ? 'reference' : 'floating') : d], + g = P( + await i.getClippingRect({ + element: + null == (n = await (null == i.isElement ? void 0 : i.isElement(v))) || n + ? v + : v.contextElement || + (await (null == i.getDocumentElement ? void 0 : i.getDocumentElement(s.floating))), + boundary: c, + rootBoundary: u, + strategy: l, + }), + ), + m = 'floating' === d ? { ...a.floating, x: r, y: o } : a.reference, + y = await (null == i.getOffsetParent ? void 0 : i.getOffsetParent(s.floating)), + b = ((await (null == i.isElement ? void 0 : i.isElement(y))) && + (await (null == i.getScale ? void 0 : i.getScale(y)))) || { x: 1, y: 1 }, + x = P( + i.convertOffsetParentRelativeRectToViewportRelativeRect + ? await i.convertOffsetParentRelativeRectToViewportRelativeRect({ rect: m, offsetParent: y, strategy: l }) + : m, + ); + return { + top: (g.top - x.top + p.top) / b.y, + bottom: (x.bottom - g.bottom + p.bottom) / b.y, + left: (g.left - x.left + p.left) / b.x, + right: (x.right - g.right + p.right) / b.x, + }; + } + const j = Math.min, + T = Math.max; + function D(e, t, n) { + return T(e, j(t, n)); + } + const N = e => ({ + name: 'arrow', + options: e, + async fn(t) { + const { element: n, padding: r = 0 } = e || {}, + { x: o, y: i, placement: a, rects: s, platform: l } = t; + if (null == n) return {}; + const c = S(r), + u = { x: o, y: i }, + d = E(a), + f = x(d), + h = await l.getDimensions(n), + p = 'y' === d ? 'top' : 'left', + v = 'y' === d ? 'bottom' : 'right', + g = s.reference[f] + s.reference[d] - u[d] - s.floating[f], + m = u[d] - s.reference[d], + y = await (null == l.getOffsetParent ? void 0 : l.getOffsetParent(n)); + let w = y ? ('y' === d ? y.clientHeight || 0 : y.clientWidth || 0) : 0; + 0 === w && (w = s.floating[f]); + const k = g / 2 - m / 2, + _ = c[p], + P = w - h[f] - c[v], + C = w / 2 - h[f] / 2 + k, + j = D(_, C, P), + T = null != b(a) && C != j && s.reference[f] / 2 - (C < _ ? c[p] : c[v]) - h[f] / 2 < 0; + return { [d]: u[d] - (T ? (C < _ ? _ - C : P - C) : 0), data: { [d]: j, centerOffset: C - j } }; + }, + }), + M = ['top', 'right', 'bottom', 'left'], + O = + (M.reduce((e, t) => e.concat(t, t + '-start', t + '-end'), []), + { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }); + function A(e) { + return e.replace(/left|right|bottom|top/g, e => O[e]); + } + function R(e, t, n) { + void 0 === n && (n = !1); + const r = b(e), + o = E(e), + i = x(o); + let a = 'x' === o ? (r === (n ? 'end' : 'start') ? 'right' : 'left') : 'start' === r ? 'bottom' : 'top'; + return t.reference[i] > t.floating[i] && (a = A(a)), { main: a, cross: A(a) }; + } + const L = { start: 'end', end: 'start' }; + function I(e) { + return e.replace(/start|end/g, e => L[e]); + } + const B = function (e) { + return ( + void 0 === e && (e = {}), + { + name: 'flip', + options: e, + async fn(t) { + var n; + const { placement: r, middlewareData: o, rects: i, initialPlacement: a, platform: s, elements: l } = t, + { + mainAxis: c = !0, + crossAxis: u = !0, + fallbackPlacements: d, + fallbackStrategy: f = 'bestFit', + fallbackAxisSideDirection: h = 'none', + flipAlignment: p = !0, + ...v + } = e, + g = w(r), + m = w(a) === a, + y = await (null == s.isRTL ? void 0 : s.isRTL(l.floating)), + x = + d || + (m || !p + ? [A(a)] + : (function (e) { + const t = A(e); + return [I(e), t, I(t)]; + })(a)); + d || + 'none' === h || + x.push( + ...(function (e, t, n, r) { + const o = b(e); + let i = (function (e, t, n) { + const r = ['left', 'right'], + o = ['right', 'left'], + i = ['top', 'bottom'], + a = ['bottom', 'top']; + switch (e) { + case 'top': + case 'bottom': + return n ? (t ? o : r) : t ? r : o; + case 'left': + case 'right': + return t ? i : a; + default: + return []; + } + })(w(e), 'start' === n, r); + return o && ((i = i.map(e => e + '-' + o)), t && (i = i.concat(i.map(I)))), i; + })(a, p, h, y), + ); + const E = [a, ...x], + k = await C(t, v), + _ = []; + let S = (null == (n = o.flip) ? void 0 : n.overflows) || []; + if ((c && _.push(k[g]), u)) { + const { main: e, cross: t } = R(r, i, y); + _.push(k[e], k[t]); + } + if (((S = [...S, { placement: r, overflows: _ }]), !_.every(e => e <= 0))) { + var P, j; + const e = ((null == (P = o.flip) ? void 0 : P.index) || 0) + 1, + t = E[e]; + if (t) return { data: { index: e, overflows: S }, reset: { placement: t } }; + let n = + null == (j = S.filter(e => e.overflows[0] <= 0).sort((e, t) => e.overflows[1] - t.overflows[1])[0]) + ? void 0 + : j.placement; + if (!n) + switch (f) { + case 'bestFit': { + var T; + const e = + null == + (T = S.map(e => [e.placement, e.overflows.filter(e => e > 0).reduce((e, t) => e + t, 0)]).sort( + (e, t) => e[1] - t[1], + )[0]) + ? void 0 + : T[0]; + e && (n = e); + break; + } + case 'initialPlacement': + n = a; + } + if (r !== n) return { reset: { placement: n } }; + } + return {}; + }, + } + ); + }; + const F = function (e) { + return ( + void 0 === e && (e = 0), + { + name: 'offset', + options: e, + async fn(t) { + const { x: n, y: r } = t, + o = await (async function (e, t) { + const { placement: n, platform: r, elements: o } = e, + i = await (null == r.isRTL ? void 0 : r.isRTL(o.floating)), + a = w(n), + s = b(n), + l = 'x' === E(n), + c = ['left', 'top'].includes(a) ? -1 : 1, + u = i && l ? -1 : 1, + d = 'function' == typeof t ? t(e) : t; + let { + mainAxis: f, + crossAxis: h, + alignmentAxis: p, + } = 'number' == typeof d + ? { mainAxis: d, crossAxis: 0, alignmentAxis: null } + : { mainAxis: 0, crossAxis: 0, alignmentAxis: null, ...d }; + return ( + s && 'number' == typeof p && (h = 'end' === s ? -1 * p : p), + l ? { x: h * u, y: f * c } : { x: f * c, y: h * u } + ); + })(t, e); + return { x: n + o.x, y: r + o.y, data: o }; + }, + } + ); + }; + function z(e) { + return 'x' === e ? 'y' : 'x'; + } + const V = function (e) { + return ( + void 0 === e && (e = {}), + { + name: 'shift', + options: e, + async fn(t) { + const { x: n, y: r, placement: o } = t, + { + mainAxis: i = !0, + crossAxis: a = !1, + limiter: s = { + fn: e => { + let { x: t, y: n } = e; + return { x: t, y: n }; + }, + }, + ...l + } = e, + c = { x: n, y: r }, + u = await C(t, l), + d = E(w(o)), + f = z(d); + let h = c[d], + p = c[f]; + if (i) { + const e = 'y' === d ? 'bottom' : 'right'; + h = D(h + u['y' === d ? 'top' : 'left'], h, h - u[e]); + } + if (a) { + const e = 'y' === f ? 'bottom' : 'right'; + p = D(p + u['y' === f ? 'top' : 'left'], p, p - u[e]); + } + const v = s.fn({ ...t, [d]: h, [f]: p }); + return { ...v, data: { x: v.x - n, y: v.y - r } }; + }, + } + ); + }; + function G(e) { + var t; + return (null == (t = e.ownerDocument) ? void 0 : t.defaultView) || window; + } + function H(e) { + return G(e).getComputedStyle(e); + } + const W = Math.min, + U = Math.max, + q = Math.round; + function Y(e) { + const t = H(e); + let n = parseFloat(t.width), + r = parseFloat(t.height); + const o = e.offsetWidth, + i = e.offsetHeight, + a = q(n) !== o || q(r) !== i; + return a && ((n = o), (r = i)), { width: n, height: r, fallback: a }; + } + function X(e) { + return J(e) ? (e.nodeName || '').toLowerCase() : ''; + } + let $; + function K() { + if ($) return $; + const e = navigator.userAgentData; + return e && Array.isArray(e.brands) + ? (($ = e.brands.map(e => e.brand + '/' + e.version).join(' ')), $) + : navigator.userAgent; + } + function Z(e) { + return e instanceof G(e).HTMLElement; + } + function Q(e) { + return e instanceof G(e).Element; + } + function J(e) { + return e instanceof G(e).Node; + } + function ee(e) { + return 'undefined' != typeof ShadowRoot && (e instanceof G(e).ShadowRoot || e instanceof ShadowRoot); + } + function te(e) { + const { overflow: t, overflowX: n, overflowY: r, display: o } = H(e); + return /auto|scroll|overlay|hidden|clip/.test(t + r + n) && !['inline', 'contents'].includes(o); + } + function ne(e) { + return ['table', 'td', 'th'].includes(X(e)); + } + function re(e) { + const t = /firefox/i.test(K()), + n = H(e), + r = n.backdropFilter || n.WebkitBackdropFilter; + return ( + 'none' !== n.transform || + 'none' !== n.perspective || + (!!r && 'none' !== r) || + (t && 'filter' === n.willChange) || + (t && !!n.filter && 'none' !== n.filter) || + ['transform', 'perspective'].some(e => n.willChange.includes(e)) || + ['paint', 'layout', 'strict', 'content'].some(e => { + const t = n.contain; + return null != t && t.includes(e); + }) + ); + } + function oe() { + return /^((?!chrome|android).)*safari/i.test(K()); + } + function ie(e) { + return ['html', 'body', '#document'].includes(X(e)); + } + function ae(e) { + return Q(e) ? e : e.contextElement; + } + const se = { x: 1, y: 1 }; + function le(e) { + const t = ae(e); + if (!Z(t)) return se; + const n = t.getBoundingClientRect(), + { width: r, height: o, fallback: i } = Y(t); + let a = (i ? q(n.width) : n.width) / r, + s = (i ? q(n.height) : n.height) / o; + return (a && Number.isFinite(a)) || (a = 1), (s && Number.isFinite(s)) || (s = 1), { x: a, y: s }; + } + function ce(e, t, n, r) { + var o, i; + void 0 === t && (t = !1), void 0 === n && (n = !1); + const a = e.getBoundingClientRect(), + s = ae(e); + let l = se; + t && (r ? Q(r) && (l = le(r)) : (l = le(e))); + const c = s ? G(s) : window, + u = oe() && n; + let d = (a.left + ((u && (null == (o = c.visualViewport) ? void 0 : o.offsetLeft)) || 0)) / l.x, + f = (a.top + ((u && (null == (i = c.visualViewport) ? void 0 : i.offsetTop)) || 0)) / l.y, + h = a.width / l.x, + p = a.height / l.y; + if (s) { + const e = G(s), + t = r && Q(r) ? G(r) : r; + let n = e.frameElement; + for (; n && r && t !== e; ) { + const e = le(n), + t = n.getBoundingClientRect(), + r = getComputedStyle(n); + (t.x += (n.clientLeft + parseFloat(r.paddingLeft)) * e.x), + (t.y += (n.clientTop + parseFloat(r.paddingTop)) * e.y), + (d *= e.x), + (f *= e.y), + (h *= e.x), + (p *= e.y), + (d += t.x), + (f += t.y), + (n = G(n).frameElement); + } + } + return { width: h, height: p, top: f, right: d + h, bottom: f + p, left: d, x: d, y: f }; + } + function ue(e) { + return ((J(e) ? e.ownerDocument : e.document) || window.document).documentElement; + } + function de(e) { + return Q(e) + ? { scrollLeft: e.scrollLeft, scrollTop: e.scrollTop } + : { scrollLeft: e.pageXOffset, scrollTop: e.pageYOffset }; + } + function fe(e) { + return ce(ue(e)).left + de(e).scrollLeft; + } + function he(e) { + if ('html' === X(e)) return e; + const t = e.assignedSlot || e.parentNode || (ee(e) && e.host) || ue(e); + return ee(t) ? t.host : t; + } + function pe(e) { + const t = he(e); + return ie(t) ? t.ownerDocument.body : Z(t) && te(t) ? t : pe(t); + } + function ve(e, t) { + var n; + void 0 === t && (t = []); + const r = pe(e), + o = r === (null == (n = e.ownerDocument) ? void 0 : n.body), + i = G(r); + return o ? t.concat(i, i.visualViewport || [], te(r) ? r : []) : t.concat(r, ve(r)); + } + function ge(e, t, n) { + let r; + if ('viewport' === t) + r = (function (e, t) { + const n = G(e), + r = ue(e), + o = n.visualViewport; + let i = r.clientWidth, + a = r.clientHeight, + s = 0, + l = 0; + if (o) { + (i = o.width), (a = o.height); + const e = oe(); + (!e || (e && 'fixed' === t)) && ((s = o.offsetLeft), (l = o.offsetTop)); + } + return { width: i, height: a, x: s, y: l }; + })(e, n); + else if ('document' === t) + r = (function (e) { + const t = ue(e), + n = de(e), + r = e.ownerDocument.body, + o = U(t.scrollWidth, t.clientWidth, r.scrollWidth, r.clientWidth), + i = U(t.scrollHeight, t.clientHeight, r.scrollHeight, r.clientHeight); + let a = -n.scrollLeft + fe(e); + const s = -n.scrollTop; + return ( + 'rtl' === H(r).direction && (a += U(t.clientWidth, r.clientWidth) - o), + { width: o, height: i, x: a, y: s } + ); + })(ue(e)); + else if (Q(t)) + r = (function (e, t) { + const n = ce(e, !0, 'fixed' === t), + r = n.top + e.clientTop, + o = n.left + e.clientLeft, + i = Z(e) ? le(e) : { x: 1, y: 1 }; + return { width: e.clientWidth * i.x, height: e.clientHeight * i.y, x: o * i.x, y: r * i.y }; + })(t, n); + else { + const n = { ...t }; + if (oe()) { + var o, i; + const t = G(e); + (n.x -= (null == (o = t.visualViewport) ? void 0 : o.offsetLeft) || 0), + (n.y -= (null == (i = t.visualViewport) ? void 0 : i.offsetTop) || 0); + } + r = n; + } + return P(r); + } + function me(e, t) { + return Z(e) && 'fixed' !== H(e).position ? (t ? t(e) : e.offsetParent) : null; + } + function ye(e, t) { + const n = G(e); + let r = me(e, t); + for (; r && ne(r) && 'static' === H(r).position; ) r = me(r, t); + return r && ('html' === X(r) || ('body' === X(r) && 'static' === H(r).position && !re(r))) + ? n + : r || + (function (e) { + let t = he(e); + for (; Z(t) && !ie(t); ) { + if (re(t)) return t; + t = he(t); + } + return null; + })(e) || + n; + } + function be(e, t, n) { + const r = Z(t), + o = ue(t), + i = ce(e, !0, 'fixed' === n, t); + let a = { scrollLeft: 0, scrollTop: 0 }; + const s = { x: 0, y: 0 }; + if (r || (!r && 'fixed' !== n)) + if ((('body' !== X(t) || te(o)) && (a = de(t)), Z(t))) { + const e = ce(t, !0); + (s.x = e.x + t.clientLeft), (s.y = e.y + t.clientTop); + } else o && (s.x = fe(o)); + return { x: i.left + a.scrollLeft - s.x, y: i.top + a.scrollTop - s.y, width: i.width, height: i.height }; + } + const xe = { + getClippingRect: function (e) { + let { element: t, boundary: n, rootBoundary: r, strategy: o } = e; + const i = + 'clippingAncestors' === n + ? (function (e, t) { + const n = t.get(e); + if (n) return n; + let r = ve(e).filter(e => Q(e) && 'body' !== X(e)), + o = null; + const i = 'fixed' === H(e).position; + let a = i ? he(e) : e; + for (; Q(a) && !ie(a); ) { + const e = H(a), + t = re(a); + 'fixed' === e.position + ? (o = null) + : ( + i + ? t || o + : t || 'static' !== e.position || !o || !['absolute', 'fixed'].includes(o.position) + ) + ? (o = e) + : (r = r.filter(e => e !== a)), + (a = he(a)); + } + return t.set(e, r), r; + })(t, this._c) + : [].concat(n), + a = [...i, r], + s = a[0], + l = a.reduce((e, n) => { + const r = ge(t, n, o); + return ( + (e.top = U(r.top, e.top)), + (e.right = W(r.right, e.right)), + (e.bottom = W(r.bottom, e.bottom)), + (e.left = U(r.left, e.left)), + e + ); + }, ge(t, s, o)); + return { width: l.right - l.left, height: l.bottom - l.top, x: l.left, y: l.top }; + }, + convertOffsetParentRelativeRectToViewportRelativeRect: function (e) { + let { rect: t, offsetParent: n, strategy: r } = e; + const o = Z(n), + i = ue(n); + if (n === i) return t; + let a = { scrollLeft: 0, scrollTop: 0 }, + s = { x: 1, y: 1 }; + const l = { x: 0, y: 0 }; + if ((o || (!o && 'fixed' !== r)) && (('body' !== X(n) || te(i)) && (a = de(n)), Z(n))) { + const e = ce(n); + (s = le(n)), (l.x = e.x + n.clientLeft), (l.y = e.y + n.clientTop); + } + return { + width: t.width * s.x, + height: t.height * s.y, + x: t.x * s.x - a.scrollLeft * s.x + l.x, + y: t.y * s.y - a.scrollTop * s.y + l.y, + }; + }, + isElement: Q, + getDimensions: function (e) { + return Z(e) ? Y(e) : e.getBoundingClientRect(); + }, + getOffsetParent: ye, + getDocumentElement: ue, + getScale: le, + async getElementRects(e) { + let { reference: t, floating: n, strategy: r } = e; + const o = this.getOffsetParent || ye, + i = this.getDimensions; + return { reference: be(t, await o(n), r), floating: { x: 0, y: 0, ...(await i(n)) } }; + }, + getClientRects: e => Array.from(e.getClientRects()), + isRTL: e => 'rtl' === H(e).direction, + }; + function we(e, t, n, r) { + void 0 === r && (r = {}); + const { ancestorScroll: o = !0, ancestorResize: i = !0, elementResize: a = !0, animationFrame: s = !1 } = r, + l = o && !s, + c = l || i ? [...(Q(e) ? ve(e) : e.contextElement ? ve(e.contextElement) : []), ...ve(t)] : []; + c.forEach(e => { + l && e.addEventListener('scroll', n, { passive: !0 }), i && e.addEventListener('resize', n); + }); + let u, + d = null; + if (a) { + let r = !0; + (d = new ResizeObserver(() => { + r || n(), (r = !1); + })), + Q(e) && !s && d.observe(e), + Q(e) || !e.contextElement || s || d.observe(e.contextElement), + d.observe(t); + } + let f = s ? ce(e) : null; + return ( + s && + (function t() { + const r = ce(e); + !f || (r.x === f.x && r.y === f.y && r.width === f.width && r.height === f.height) || n(), + (f = r), + (u = requestAnimationFrame(t)); + })(), + n(), + () => { + var e; + c.forEach(e => { + l && e.removeEventListener('scroll', n), i && e.removeEventListener('resize', n); + }), + null == (e = d) || e.disconnect(), + (d = null), + s && cancelAnimationFrame(u); + } + ); + } + const Ee = (e, t, n) => { + const r = new Map(), + o = { platform: xe, ...n }, + i = { ...o.platform, _c: r }; + return _(e, t, { ...o, platform: i }); + }, + ke = e => { + const { element: t, padding: n } = e; + return { + name: 'arrow', + options: e, + fn(e) { + return ( + (r = t), + Object.prototype.hasOwnProperty.call(r, 'current') + ? null != t.current + ? N({ element: t.current, padding: n }).fn(e) + : {} + : t + ? N({ element: t, padding: n }).fn(e) + : {} + ); + var r; + }, + }; + }; + var _e = 'undefined' != typeof document ? r.useLayoutEffect : r.useEffect; + function Se(e, t) { + if (e === t) return !0; + if (typeof e != typeof t) return !1; + if ('function' == typeof e && e.toString() === t.toString()) return !0; + let n, r, o; + if (e && t && 'object' == typeof e) { + if (Array.isArray(e)) { + if (((n = e.length), n != t.length)) return !1; + for (r = n; 0 != r--; ) if (!Se(e[r], t[r])) return !1; + return !0; + } + if (((o = Object.keys(e)), (n = o.length), n !== Object.keys(t).length)) return !1; + for (r = n; 0 != r--; ) if (!Object.prototype.hasOwnProperty.call(t, o[r])) return !1; + for (r = n; 0 != r--; ) { + const n = o[r]; + if (('_owner' !== n || !e.$$typeof) && !Se(e[n], t[n])) return !1; + } + return !0; + } + return e != e && t != t; + } + function Pe(e) { + const t = r.useRef(e); + return ( + _e(() => { + t.current = e; + }), + t + ); + } + var Ce = 'undefined' != typeof document ? r.useLayoutEffect : r.useEffect; + let je = !1, + Te = 0; + const De = () => 'floating-ui-' + Te++; + const Ne = + r['useId'.toString()] || + function () { + const [e, t] = r.useState(() => (je ? De() : void 0)); + return ( + Ce(() => { + null == e && t(De()); + }, []), + r.useEffect(() => { + je || (je = !0); + }, []), + e + ); + }; + function Me() { + const e = new Map(); + return { + emit(t, n) { + var r; + null == (r = e.get(t)) || r.forEach(e => e(n)); + }, + on(t, n) { + e.set(t, [...(e.get(t) || []), n]); + }, + off(t, n) { + e.set( + t, + (e.get(t) || []).filter(e => e !== n), + ); + }, + }; + } + const Oe = r.createContext(null), + Ae = r.createContext(null), + Re = () => { + var e; + return (null == (e = r.useContext(Oe)) ? void 0 : e.id) || null; + }, + Le = () => r.useContext(Ae); + function Ie(e) { + return (null == e ? void 0 : e.ownerDocument) || document; + } + function Be() { + const e = navigator.userAgentData; + return null != e && e.platform ? e.platform : navigator.platform; + } + function Fe() { + const e = navigator.userAgentData; + return e && Array.isArray(e.brands) + ? e.brands + .map(e => { + let { brand: t, version: n } = e; + return t + '/' + n; + }) + .join(' ') + : navigator.userAgent; + } + function ze(e) { + return Ie(e).defaultView || window; + } + function Ve(e) { + return !!e && e instanceof ze(e).Element; + } + function Ge(e) { + return !!e && e instanceof ze(e).HTMLElement; + } + function He(e) { + if (0 === e.mozInputSource && e.isTrusted) return !0; + const t = /Android/i; + return (t.test(Be()) || t.test(Fe())) && e.pointerType + ? 'click' === e.type && 1 === e.buttons + : 0 === e.detail && !e.pointerType; + } + function We(e) { + return ( + (0 === e.width && 0 === e.height) || + (1 === e.width && 1 === e.height && 0 === e.pressure && 0 === e.detail && 'mouse' !== e.pointerType) || + (e.width < 1 && e.height < 1 && 0 === e.pressure && 0 === e.detail) + ); + } + function Ue(e, t) { + const n = ['mouse', 'pen']; + return t || n.push('', void 0), n.includes(e); + } + function qe(e) { + const t = (0, r.useRef)(e); + return ( + Ce(() => { + t.current = e; + }), + t + ); + } + const Ye = 'data-floating-ui-safe-polygon'; + function Xe(e, t, n) { + return n && !Ue(n) ? 0 : 'number' == typeof e ? e : null == e ? void 0 : e[t]; + } + const $e = function (e, t) { + let { + enabled: n = !0, + delay: o = 0, + handleClose: i = null, + mouseOnly: a = !1, + restMs: s = 0, + move: l = !0, + } = void 0 === t ? {} : t; + const { + open: c, + onOpenChange: u, + dataRef: d, + events: f, + elements: { domReference: h, floating: p }, + refs: v, + } = e, + g = Le(), + m = Re(), + y = qe(i), + b = qe(o), + x = r.useRef(), + w = r.useRef(), + E = r.useRef(), + k = r.useRef(), + _ = r.useRef(!0), + S = r.useRef(!1), + P = r.useRef(() => {}), + C = r.useCallback(() => { + var e; + const t = null == (e = d.current.openEvent) ? void 0 : e.type; + return (null == t ? void 0 : t.includes('mouse')) && 'mousedown' !== t; + }, [d]); + r.useEffect(() => { + if (n) + return ( + f.on('dismiss', e), + () => { + f.off('dismiss', e); + } + ); + function e() { + clearTimeout(w.current), clearTimeout(k.current), (_.current = !0); + } + }, [n, f]), + r.useEffect(() => { + if (!n || !y.current || !c) return; + function e() { + C() && u(!1); + } + const t = Ie(p).documentElement; + return ( + t.addEventListener('mouseleave', e), + () => { + t.removeEventListener('mouseleave', e); + } + ); + }, [p, c, u, n, y, d, C]); + const j = r.useCallback( + function (e) { + void 0 === e && (e = !0); + const t = Xe(b.current, 'close', x.current); + t && !E.current + ? (clearTimeout(w.current), (w.current = setTimeout(() => u(!1), t))) + : e && (clearTimeout(w.current), u(!1)); + }, + [b, u], + ), + T = r.useCallback(() => { + P.current(), (E.current = void 0); + }, []), + D = r.useCallback(() => { + if (S.current) { + const e = Ie(v.floating.current).body; + (e.style.pointerEvents = ''), e.removeAttribute(Ye), (S.current = !1); + } + }, [v]); + return ( + r.useEffect(() => { + if (n && Ve(h)) { + const e = h; + return ( + c && e.addEventListener('mouseleave', i), + null == p || p.addEventListener('mouseleave', i), + l && e.addEventListener('mousemove', r, { once: !0 }), + e.addEventListener('mouseenter', r), + e.addEventListener('mouseleave', o), + () => { + c && e.removeEventListener('mouseleave', i), + null == p || p.removeEventListener('mouseleave', i), + l && e.removeEventListener('mousemove', r), + e.removeEventListener('mouseenter', r), + e.removeEventListener('mouseleave', o); + } + ); + } + function t() { + return !!d.current.openEvent && ['click', 'mousedown'].includes(d.current.openEvent.type); + } + function r(e) { + if ( + (clearTimeout(w.current), + (_.current = !1), + (a && !Ue(x.current)) || (s > 0 && 0 === Xe(b.current, 'open'))) + ) + return; + d.current.openEvent = e; + const t = Xe(b.current, 'open', x.current); + t + ? (w.current = setTimeout(() => { + u(!0); + }, t)) + : u(!0); + } + function o(n) { + if (t()) return; + P.current(); + const r = Ie(p); + if ((clearTimeout(k.current), y.current)) { + c || clearTimeout(w.current), + (E.current = y.current({ + ...e, + tree: g, + x: n.clientX, + y: n.clientY, + onClose() { + D(), T(), j(); + }, + })); + const t = E.current; + return ( + r.addEventListener('mousemove', t), + void (P.current = () => { + r.removeEventListener('mousemove', t); + }) + ); + } + j(); + } + function i(n) { + t() || + null == y.current || + y.current({ + ...e, + tree: g, + x: n.clientX, + y: n.clientY, + onClose() { + D(), T(), j(); + }, + })(n); + } + }, [h, p, n, e, a, s, l, j, T, D, u, c, g, b, y, d]), + Ce(() => { + var e; + if (n && c && null != (e = y.current) && e.__options.blockPointerEvents && C()) { + const e = Ie(p).body; + if ((e.setAttribute(Ye, ''), (e.style.pointerEvents = 'none'), (S.current = !0), Ve(h) && p)) { + var t, r; + const e = h, + n = + null == g || null == (t = g.nodesRef.current.find(e => e.id === m)) || null == (r = t.context) + ? void 0 + : r.elements.floating; + return ( + n && (n.style.pointerEvents = ''), + (e.style.pointerEvents = 'auto'), + (p.style.pointerEvents = 'auto'), + () => { + (e.style.pointerEvents = ''), (p.style.pointerEvents = ''); + } + ); + } + } + }, [n, c, m, p, h, g, y, d, C]), + Ce(() => { + c || ((x.current = void 0), T(), D()); + }, [c, T, D]), + r.useEffect( + () => () => { + T(), clearTimeout(w.current), clearTimeout(k.current), D(); + }, + [n, T, D], + ), + r.useMemo(() => { + if (!n) return {}; + function e(e) { + x.current = e.pointerType; + } + return { + reference: { + onPointerDown: e, + onPointerEnter: e, + onMouseMove() { + c || + 0 === s || + (clearTimeout(k.current), + (k.current = setTimeout(() => { + _.current || u(!0); + }, s))); + }, + }, + floating: { + onMouseEnter() { + clearTimeout(w.current); + }, + onMouseLeave() { + f.emit('dismiss', { type: 'mouseLeave', data: { returnFocus: !1 } }), j(!1); + }, + }, + }; + }, [f, n, s, c, u, j]) + ); + }; + function Ke(e, t) { + let n = + e.filter(e => { + var n; + return e.parentId === t && (null == (n = e.context) ? void 0 : n.open); + }) || [], + r = n; + for (; r.length; ) + (r = + e.filter(e => { + var t; + return null == (t = r) + ? void 0 + : t.some(t => { + var n; + return e.parentId === t.id && (null == (n = e.context) ? void 0 : n.open); + }); + }) || []), + (n = n.concat(r)); + return n; + } + function Ze(e) { + return 'composedPath' in e ? e.composedPath()[0] : e.target; + } + const Qe = + "input:not([type='hidden']):not([disabled]),[contenteditable]:not([contenteditable='false']),textarea:not([disabled])"; + function Je(e) { + return Ge(e) && e.matches(Qe); + } + const et = r['useInsertionEffect'.toString()] || (e => e()); + function tt(e) { + const t = r.useRef(() => { + 0; + }); + return ( + et(() => { + t.current = e; + }), + r.useCallback(function () { + for (var e = arguments.length, n = new Array(e), r = 0; r < e; r++) n[r] = arguments[r]; + return null == t.current ? void 0 : t.current(...n); + }, []) + ); + } + function nt(e) { + return Ge(e.target) && 'BUTTON' === e.target.tagName; + } + function rt(e) { + return Je(e); + } + const ot = function (e, t) { + let { + open: n, + onOpenChange: o, + dataRef: i, + elements: { domReference: a }, + } = e, + { + enabled: s = !0, + event: l = 'click', + toggle: c = !0, + ignoreMouse: u = !1, + keyboardHandlers: d = !0, + } = void 0 === t ? {} : t; + const f = r.useRef(); + return r.useMemo( + () => + s + ? { + reference: { + onPointerDown(e) { + f.current = e.pointerType; + }, + onMouseDown(e) { + 0 === e.button && + ((Ue(f.current, !0) && u) || + ('click' !== l && + (n + ? !c || (i.current.openEvent && 'mousedown' !== i.current.openEvent.type) || o(!1) + : (e.preventDefault(), o(!0)), + (i.current.openEvent = e.nativeEvent)))); + }, + onClick(e) { + i.current.__syncReturnFocus || + ('mousedown' === l && f.current + ? (f.current = void 0) + : (Ue(f.current, !0) && u) || + (n ? !c || (i.current.openEvent && 'click' !== i.current.openEvent.type) || o(!1) : o(!0), + (i.current.openEvent = e.nativeEvent))); + }, + onKeyDown(e) { + (f.current = void 0), + d && + (nt(e) || + (' ' !== e.key || rt(a) || e.preventDefault(), + 'Enter' === e.key && (n ? c && o(!1) : o(!0)))); + }, + onKeyUp(e) { + d && (nt(e) || rt(a) || (' ' === e.key && (n ? c && o(!1) : o(!0)))); + }, + }, + } + : {}, + [s, i, l, u, d, a, c, n, o], + ); + }; + function it(e, t) { + if (null == t) return !1; + if ('composedPath' in e) return e.composedPath().includes(t); + const n = e; + return null != n.target && t.contains(n.target); + } + const at = { pointerdown: 'onPointerDown', mousedown: 'onMouseDown', click: 'onClick' }, + st = { pointerdown: 'onPointerDownCapture', mousedown: 'onMouseDownCapture', click: 'onClickCapture' }, + lt = function (e, t) { + let { + open: n, + onOpenChange: o, + events: i, + nodeId: a, + elements: { reference: s, domReference: l, floating: c }, + dataRef: u, + } = e, + { + enabled: d = !0, + escapeKey: f = !0, + outsidePress: h = !0, + outsidePressEvent: p = 'pointerdown', + referencePress: v = !1, + referencePressEvent: g = 'pointerdown', + ancestorScroll: m = !1, + bubbles: y = !0, + } = void 0 === t ? {} : t; + const b = Le(), + x = null != Re(), + w = tt('function' == typeof h ? h : () => !1), + E = 'function' == typeof h ? w : h, + k = r.useRef(!1), + { escapeKeyBubbles: _, outsidePressBubbles: S } = (function (e) { + var t, n; + return ( + void 0 === e && (e = !0), + { + escapeKeyBubbles: 'boolean' == typeof e ? e : null == (t = e.escapeKey) || t, + outsidePressBubbles: 'boolean' == typeof e ? e : null == (n = e.outsidePress) || n, + } + ); + })(y); + return ( + r.useEffect(() => { + if (!n || !d) return; + function e(e) { + if ('Escape' === e.key) { + const e = b ? Ke(b.nodesRef.current, a) : []; + if (e.length > 0) { + let t = !0; + if ( + (e.forEach(e => { + var n; + null == (n = e.context) || !n.open || e.context.dataRef.current.__escapeKeyBubbles || (t = !1); + }), + !t) + ) + return; + } + i.emit('dismiss', { type: 'escapeKey', data: { returnFocus: { preventScroll: !1 } } }), o(!1); + } + } + function t(e) { + const t = k.current; + if (((k.current = !1), t)) return; + if ('function' == typeof E && !E(e)) return; + const n = Ze(e); + if (Ge(n) && c) { + const t = c.ownerDocument.defaultView || window, + r = n.scrollWidth > n.clientWidth, + o = n.scrollHeight > n.clientHeight; + let i = o && e.offsetX > n.clientWidth; + if (o) { + 'rtl' === t.getComputedStyle(n).direction && (i = e.offsetX <= n.offsetWidth - n.clientWidth); + } + if (i || (r && e.offsetY > n.clientHeight)) return; + } + const r = + b && + Ke(b.nodesRef.current, a).some(t => { + var n; + return it(e, null == (n = t.context) ? void 0 : n.elements.floating); + }); + if (it(e, c) || it(e, l) || r) return; + const s = b ? Ke(b.nodesRef.current, a) : []; + if (s.length > 0) { + let e = !0; + if ( + (s.forEach(t => { + var n; + null == (n = t.context) || !n.open || t.context.dataRef.current.__outsidePressBubbles || (e = !1); + }), + !e) + ) + return; + } + i.emit('dismiss', { + type: 'outsidePress', + data: { returnFocus: x ? { preventScroll: !0 } : He(e) || We(e) }, + }), + o(!1); + } + function r() { + o(!1); + } + (u.current.__escapeKeyBubbles = _), (u.current.__outsidePressBubbles = S); + const h = Ie(c); + f && h.addEventListener('keydown', e), E && h.addEventListener(p, t); + let v = []; + return ( + m && + (Ve(l) && (v = ve(l)), + Ve(c) && (v = v.concat(ve(c))), + !Ve(s) && s && s.contextElement && (v = v.concat(ve(s.contextElement)))), + (v = v.filter(e => { + var t; + return e !== (null == (t = h.defaultView) ? void 0 : t.visualViewport); + })), + v.forEach(e => { + e.addEventListener('scroll', r, { passive: !0 }); + }), + () => { + f && h.removeEventListener('keydown', e), + E && h.removeEventListener(p, t), + v.forEach(e => { + e.removeEventListener('scroll', r); + }); + } + ); + }, [u, c, l, s, f, E, p, i, b, a, n, o, m, d, _, S, x]), + r.useEffect(() => { + k.current = !1; + }, [E, p]), + r.useMemo( + () => + d + ? { + reference: { + [at[g]]: () => { + v && (i.emit('dismiss', { type: 'referencePress', data: { returnFocus: !1 } }), o(!1)); + }, + }, + floating: { + [st[p]]: () => { + k.current = !0; + }, + }, + } + : {}, + [d, i, v, p, g, o], + ) + ); + }; + const ct = function (e, t) { + let { open: n } = e, + { enabled: o = !0, role: i = 'dialog' } = void 0 === t ? {} : t; + const a = Ne(), + s = Ne(); + return r.useMemo(() => { + const e = { id: a, role: i }; + return o + ? 'tooltip' === i + ? { reference: { 'aria-describedby': n ? a : void 0 }, floating: e } + : { + reference: { + 'aria-expanded': n ? 'true' : 'false', + 'aria-haspopup': 'alertdialog' === i ? 'dialog' : i, + 'aria-controls': n ? a : void 0, + ...('listbox' === i && { role: 'combobox' }), + ...('menu' === i && { id: s }), + }, + floating: { ...e, ...('menu' === i && { 'aria-labelledby': s }) }, + } + : {}; + }, [o, i, n, a, s]); + }; + function ut(e) { + void 0 === e && (e = {}); + const { open: t = !1, onOpenChange: n, nodeId: o } = e, + i = (function (e) { + void 0 === e && (e = {}); + const { + placement: t = 'bottom', + strategy: n = 'absolute', + middleware: o = [], + platform: i, + whileElementsMounted: a, + open: s, + } = e, + [l, c] = r.useState({ + x: null, + y: null, + strategy: n, + placement: t, + middlewareData: {}, + isPositioned: !1, + }), + [u, d] = r.useState(o); + Se(u, o) || d(o); + const f = r.useRef(null), + h = r.useRef(null), + p = r.useRef(l), + v = Pe(a), + g = Pe(i), + [m, y] = r.useState(null), + [b, x] = r.useState(null), + w = r.useCallback(e => { + f.current !== e && ((f.current = e), y(e)); + }, []), + E = r.useCallback(e => { + h.current !== e && ((h.current = e), x(e)); + }, []), + k = r.useCallback(() => { + if (!f.current || !h.current) return; + const e = { placement: t, strategy: n, middleware: u }; + g.current && (e.platform = g.current), + Ee(f.current, h.current, e).then(e => { + const t = { ...e, isPositioned: !0 }; + _.current && + !Se(p.current, t) && + ((p.current = t), + r.flushSync(() => { + c(t); + })); + }); + }, [u, t, n, g]); + _e(() => { + !1 === s && + p.current.isPositioned && + ((p.current.isPositioned = !1), c(e => ({ ...e, isPositioned: !1 }))); + }, [s]); + const _ = r.useRef(!1); + _e( + () => ( + (_.current = !0), + () => { + _.current = !1; + } + ), + [], + ), + _e(() => { + if (m && b) { + if (v.current) return v.current(m, b, k); + k(); + } + }, [m, b, k, v]); + const S = r.useMemo(() => ({ reference: f, floating: h, setReference: w, setFloating: E }), [w, E]), + P = r.useMemo(() => ({ reference: m, floating: b }), [m, b]); + return r.useMemo( + () => ({ ...l, update: k, refs: S, elements: P, reference: w, floating: E }), + [l, k, S, P, w, E], + ); + })(e), + a = Le(), + s = r.useRef(null), + l = r.useRef({}), + c = r.useState(() => Me())[0], + [u, d] = r.useState(null), + f = r.useCallback( + e => { + const t = Ve(e) ? { getBoundingClientRect: () => e.getBoundingClientRect(), contextElement: e } : e; + i.refs.setReference(t); + }, + [i.refs], + ), + h = r.useCallback( + e => { + (Ve(e) || null === e) && ((s.current = e), d(e)), + (Ve(i.refs.reference.current) || null === i.refs.reference.current || (null !== e && !Ve(e))) && + i.refs.setReference(e); + }, + [i.refs], + ), + p = r.useMemo( + () => ({ ...i.refs, setReference: h, setPositionReference: f, domReference: s }), + [i.refs, h, f], + ), + v = r.useMemo(() => ({ ...i.elements, domReference: u }), [i.elements, u]), + g = tt(n), + m = r.useMemo( + () => ({ ...i, refs: p, elements: v, dataRef: l, nodeId: o, events: c, open: t, onOpenChange: g }), + [i, o, c, t, g, p, v], + ); + return ( + Ce(() => { + const e = null == a ? void 0 : a.nodesRef.current.find(e => e.id === o); + e && (e.context = m); + }), + r.useMemo(() => ({ ...i, context: m, refs: p, reference: h, positionReference: f }), [i, p, m, h, f]) + ); + } + function dt(e, t, n) { + const r = new Map(); + return { + ...('floating' === n && { tabIndex: -1 }), + ...e, + ...t + .map(e => (e ? e[n] : null)) + .concat(e) + .reduce( + (e, t) => + t + ? (Object.entries(t).forEach(t => { + let [n, o] = t; + var i; + 0 === n.indexOf('on') + ? (r.has(n) || r.set(n, []), + 'function' == typeof o && + (null == (i = r.get(n)) || i.push(o), + (e[n] = function () { + for (var e, t = arguments.length, o = new Array(t), i = 0; i < t; i++) + o[i] = arguments[i]; + null == (e = r.get(n)) || e.forEach(e => e(...o)); + }))) + : (e[n] = o); + }), + e) + : e, + {}, + ), + }; + } + const ft = function (e) { + void 0 === e && (e = []); + const t = e, + n = r.useCallback(t => dt(t, e, 'reference'), t), + o = r.useCallback(t => dt(t, e, 'floating'), t), + i = r.useCallback( + t => dt(t, e, 'item'), + e.map(e => (null == e ? void 0 : e.item)), + ); + return r.useMemo(() => ({ getReferenceProps: n, getFloatingProps: o, getItemProps: i }), [n, o, i]); + }; + var ht = n(75644), + pt = 0; + function vt(e, t, n, r, o) { + var i, + a, + s = {}; + for (a in t) 'ref' == a ? (i = t[a]) : (s[a] = t[a]); + var l = { + type: e, + props: s, + key: n, + ref: i, + __k: null, + __: null, + __b: 0, + __e: null, + __d: void 0, + __c: null, + __h: null, + constructor: void 0, + __v: --pt, + __source: r, + __self: o, + }; + if ('function' == typeof e && (i = e.defaultProps)) for (a in i) void 0 === s[a] && (s[a] = i[a]); + return ht.YM.vnode && ht.YM.vnode(l), l; + } + function gt({ + children: e, + open: t = !1, + content: n, + placement: o = 'top', + reference: i, + openAction: a = 'click', + strategy: s = 'absolute', + }) { + const [l, c] = (0, r.useState)(t), + u = (0, r.useRef)(null), + { + x: d, + y: f, + refs: h, + strategy: p, + placement: v, + middlewareData: { arrow: { x: g, y: m } = {} }, + context: y, + } = ut({ + placement: o, + whileElementsMounted: 'fixed' === s ? we : void 0, + open: l, + onOpenChange: c, + strategy: s, + middleware: [F(6), B(), V({ padding: 6 }), ke({ element: u })], + }), + b = { top: 'bottom', right: 'left', bottom: 'top', left: 'right' }[v.split('-')[0]] || 'bottom'; + (0, r.useLayoutEffect)(() => { + i && h.setReference(i); + }, [h, i]); + const x = ot(y, { enabled: 'click' === a }), + w = lt(y, { enabled: 'click' === a, referencePress: !1, outsidePress: !0, outsidePressEvent: 'mousedown' }), + E = $e(y, { enabled: 'hover' === a }), + k = ct(y, { role: 'tooltip' }), + { getReferenceProps: _, getFloatingProps: S } = ft([x, E, w, k]), + P = Object.assign({ ref: h.setReference }, _()); + return vt(ht.HY, { + children: [ + !i && e ? (0, r.cloneElement)(e, P) : e, + l + ? vt( + 'div', + Object.assign( + { + ref: h.setFloating, + style: { position: p, top: null != f ? f : 0, left: null != d ? d : 0, width: 'max-content' }, + className: 'z-10 min-w-[250px] rounded-md border border-slate-500', + }, + S(), + { + children: [ + vt('div', { + style: { + left: null != g ? `${g}px` : '', + top: null != m ? `${m}px` : '', + right: '', + bottom: '', + [b]: '-4px', + }, + className: 'absolute -z-10 h-4 w-4 rotate-45 bg-slate-500', + ref: u, + }), + vt('div', { + className: 'select-text rounded-md bg-white p-3 dark:bg-slate-900 dark:text-slate-400', + children: n, + }), + ], + }, + ), + ) + : null, + ], + }); + } + n(47306); + const mt = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M12 3c2.755 0 5.455.232 8.083.678.533.09.917.556.917 1.096v1.044a2.25 2.25 0 01-.659 1.591l-5.432 5.432a2.25 2.25 0 00-.659 1.591v2.927a2.25 2.25 0 01-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 00-.659-1.591L3.659 7.409A2.25 2.25 0 013 5.818V4.774c0-.54.384-1.006.917-1.096A48.32 48.32 0 0112 3z', + }), + ); + }); + const yt = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M12 9.75L14.25 12m0 0l2.25 2.25M14.25 12l2.25-2.25M14.25 12L12 14.25m-2.58 4.92l-6.375-6.375a1.125 1.125 0 010-1.59L9.42 4.83c.211-.211.498-.33.796-.33H19.5a2.25 2.25 0 012.25 2.25v10.5a2.25 2.25 0 01-2.25 2.25h-9.284c-.298 0-.585-.119-.796-.33z', + }), + ); + }); + function bt({ initialText: e, placeholderText: t, resetTextFilter: n, updateTextFilter: o }) { + const [i, a] = (0, r.useState)(null != e ? e : ''), + [s, l] = (function (e, t) { + const [n, o] = (0, r.useState)(e); + return ( + (0, r.useEffect)(() => { + const n = setTimeout(() => { + o(e); + }, t); + return () => { + clearTimeout(n); + }; + }, [e, t]), + [n, o] + ); + })(i, 500); + function c(e) { + '' === e ? (a(''), l(''), n()) : a(e); + } + return ( + (0, r.useEffect)(() => { + '' !== s && o(s); + }, [s, o]), + vt('form', { + className: 'group relative flex rounded-md shadow-sm', + onSubmit: e => e.preventDefault(), + children: [ + vt('span', { + className: + 'inline-flex items-center rounded-l-md border border-r-0 border-slate-300 bg-slate-50 p-2 dark:border-slate-900 dark:bg-slate-800', + children: vt(mt, { className: 'h-4 w-4' }), + }), + vt('input', { + type: 'text', + className: + 'block w-full flex-1 rounded-none rounded-r-md border border-slate-300 bg-white p-1.5 font-light text-slate-400 placeholder:font-light placeholder:text-slate-400 dark:border-slate-900 dark:bg-slate-800 dark:text-white dark:hover:bg-slate-700', + placeholder: t, + 'data-cy': 'textFilterInput', + name: 'filter', + value: i, + onKeyUp: function (e) { + 'Enter' === e.key && c(e.currentTarget.value); + }, + onChange: e => c(e.currentTarget.value), + }), + i.length > 0 + ? vt('button', { + 'data-cy': 'textFilterReset', + type: 'reset', + onClick: function () { + a(''), l(''), n(); + }, + className: + 'absolute top-1 right-1 inline-block rounded-md bg-slate-50 p-1 text-slate-400 dark:bg-slate-800', + children: vt(yt, { className: 'h-5 w-5' }), + }) + : null, + ], + }) + ); + } + function xt(e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + i = Object.keys(e); + for (r = 0; r < i.length; r++) (n = i[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + } + const wt = ['className', 'children']; + function Et(e) { + let { className: t, children: n } = e, + r = xt(e, wt); + return vt( + 'span', + Object.assign( + { + className: `${t} inline-block rounded-md bg-slate-300 p-2 font-sans text-xs font-semibold uppercase leading-4 tracking-wide text-slate-700`, + }, + r, + { children: n }, + ), + ); + } + const kt = ['className', 'children']; + function _t(e) { + const { className: t, children: n } = e, + r = xt(e, kt); + return vt( + 'select', + Object.assign( + { + className: `form-select flex items-center rounded-md rounded-md border border-slate-300 bg-white pl-4 pr-8 py-2 text-sm font-medium text-slate-700 shadow-sm hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700 ${t}`, + }, + r, + { children: n }, + ), + ); + } + function St({ type: e, source: t, target: n, fileDependencies: r, description: o, fileClickCallback: i }) { + return vt('div', { + className: 'text-sm text-slate-700 dark:text-slate-400', + children: [ + vt('h4', { + className: 'implicit' !== e ? 'mb-3' : '', + children: [ + vt(Et, { className: 'mr-3', children: null != e ? e : 'unknown' }), + vt('span', { className: 'font-mono', children: [t, ' \u2192 ', n] }), + ], + }), + o ? vt('p', { children: o }) : null, + 'implicit' !== e && (null == r ? void 0 : r.length) > 0 + ? vt('div', { + className: 'overflow-hidden rounded-md border border-slate-200 dark:border-slate-800', + children: [ + vt('div', { + className: + 'bg-slate-50 px-4 py-2 text-xs font-medium uppercase text-slate-500 dark:bg-slate-800 dark:text-slate-400', + children: vt('span', { children: 'Files' }), + }), + vt('ul', { + className: 'max-h-[300px] divide-y divide-slate-200 overflow-auto dark:divide-slate-800', + children: r.map(e => + vt( + 'li', + { + className: + 'whitespace-nowrap px-4 py-2 text-sm font-medium text-slate-800 dark:text-slate-300 ' + + (void 0 !== i ? 'hover:underline hover:cursor-pointer' : ''), + onClick: void 0 !== i ? () => i(e.fileName) : () => {}, + children: vt('span', { className: 'block truncate font-normal', children: e.fileName }), + }, + e.fileName, + ), + ), + }), + ], + }) + : null, + ], + }); + } + const Pt = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L10.582 16.07a4.5 4.5 0 01-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 011.13-1.897l8.932-8.931zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0115.75 21H5.25A2.25 2.25 0 013 18.75V8.25A2.25 2.25 0 015.25 6H10', + }), + ); + }); + function Ct({ type: e, id: t, tags: n, children: r, description: o, openConfigCallback: i }) { + return vt('div', { + className: 'text-sm text-slate-700 dark:text-slate-400', + children: [ + vt('h4', { + className: 'flex justify-between items-center gap-4', + children: [ + vt('div', { + className: 'flex items-center', + children: [ + vt(Et, { className: 'mr-3', children: e }), + vt('span', { className: 'font-mono', children: t }), + ], + }), + i + ? vt('button', { + className: + ' flex items-center rounded-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', + title: 'Edit project.json in editor', + onClick: i, + children: vt(Pt, { className: 'h-5 w-5' }), + }) + : void 0, + ], + }), + n.length > 0 + ? vt('p', { + className: 'my-2', + children: [vt('strong', { children: 'tags' }), vt('br', {}), n.join(', ')], + }) + : null, + o ? vt('p', { className: 'mt-4', children: o }) : null, + r, + ], + }); + } + const jt = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.348a1.125 1.125 0 010 1.971l-11.54 6.347a1.125 1.125 0 01-1.667-.985V5.653z', + }), + ); + }); + function Tt({ id: e, executor: t, description: n, runTaskCallback: r }) { + return vt('div', { + className: 'text-sm text-slate-700 dark:text-slate-400', + children: [ + vt('h4', { + className: 'flex justify-between items-center gap-4', + children: [ + vt('div', { + className: 'flex items-center', + children: [ + vt(Et, { className: 'mr-3', children: t }), + vt('span', { className: 'font-mono', children: e }), + ], + }), + r + ? vt('button', { + className: + ' flex items-center rounded-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', + title: 'Run Task', + onClick: r, + children: vt(jt, { className: 'h-5 w-5' }), + }) + : void 0, + ], + }), + vt('h4', {}), + n ? vt('p', { className: 'mt-4', children: n }) : null, + ], + }); + } + function Dt() { + return ( + (Dt = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Dt.apply(this, arguments) + ); + } + var Nt; + !(function (e) { + (e.Pop = 'POP'), (e.Push = 'PUSH'), (e.Replace = 'REPLACE'); + })(Nt || (Nt = {})); + const Mt = 'popstate'; + function Ot(e, t) { + if (!1 === e || null == e) throw new Error(t); + } + function At(e, t) { + if (!e) { + 'undefined' != typeof console && console.warn(t); + try { + throw new Error(t); + } catch (x) {} + } + } + function Rt(e, t) { + return { usr: e.state, key: e.key, idx: t }; + } + function Lt(e, t, n, r) { + return ( + void 0 === n && (n = null), + Dt( + { pathname: 'string' == typeof e ? e : e.pathname, search: '', hash: '' }, + 'string' == typeof t ? Bt(t) : t, + { state: n, key: (t && t.key) || r || Math.random().toString(36).substr(2, 8) }, + ) + ); + } + function It(e) { + let { pathname: t = '/', search: n = '', hash: r = '' } = e; + return ( + n && '?' !== n && (t += '?' === n.charAt(0) ? n : '?' + n), + r && '#' !== r && (t += '#' === r.charAt(0) ? r : '#' + r), + t + ); + } + function Bt(e) { + let t = {}; + if (e) { + let n = e.indexOf('#'); + n >= 0 && ((t.hash = e.substr(n)), (e = e.substr(0, n))); + let r = e.indexOf('?'); + r >= 0 && ((t.search = e.substr(r)), (e = e.substr(0, r))), e && (t.pathname = e); + } + return t; + } + function Ft(e, t, n, r) { + void 0 === r && (r = {}); + let { window: o = document.defaultView, v5Compat: i = !1 } = r, + a = o.history, + s = Nt.Pop, + l = null, + c = u(); + function u() { + return (a.state || { idx: null }).idx; + } + function d() { + s = Nt.Pop; + let e = u(), + t = null == e ? null : e - c; + (c = e), l && l({ action: s, location: h.location, delta: t }); + } + function f(e) { + let t = 'null' !== o.location.origin ? o.location.origin : o.location.href, + n = 'string' == typeof e ? e : It(e); + return Ot(t, 'No window.location.(origin|href) available to create URL for href: ' + n), new URL(n, t); + } + null == c && ((c = 0), a.replaceState(Dt({}, a.state, { idx: c }), '')); + let h = { + get action() { + return s; + }, + get location() { + return e(o, a); + }, + listen(e) { + if (l) throw new Error('A history only accepts one active listener'); + return ( + o.addEventListener(Mt, d), + (l = e), + () => { + o.removeEventListener(Mt, d), (l = null); + } + ); + }, + createHref: e => t(o, e), + createURL: f, + encodeLocation(e) { + let t = f(e); + return { pathname: t.pathname, search: t.search, hash: t.hash }; + }, + push: function (e, t) { + s = Nt.Push; + let r = Lt(h.location, e, t); + n && n(r, e), (c = u() + 1); + let d = Rt(r, c), + f = h.createHref(r); + try { + a.pushState(d, '', f); + } catch (p) { + o.location.assign(f); + } + i && l && l({ action: s, location: h.location, delta: 1 }); + }, + replace: function (e, t) { + s = Nt.Replace; + let r = Lt(h.location, e, t); + n && n(r, e), (c = u()); + let o = Rt(r, c), + d = h.createHref(r); + a.replaceState(o, '', d), i && l && l({ action: s, location: h.location, delta: 0 }); + }, + go: e => a.go(e), + }; + return h; + } + var zt; + !(function (e) { + (e.data = 'data'), (e.deferred = 'deferred'), (e.redirect = 'redirect'), (e.error = 'error'); + })(zt || (zt = {})); + const Vt = new Set(['lazy', 'caseSensitive', 'path', 'id', 'index', 'children']); + function Gt(e, t, n, r) { + return ( + void 0 === n && (n = []), + void 0 === r && (r = {}), + e.map((e, o) => { + let i = [...n, o], + a = 'string' == typeof e.id ? e.id : i.join('-'); + if ( + (Ot(!0 !== e.index || !e.children, 'Cannot specify children on an index route'), + Ot( + !r[a], + 'Found a route id collision on id "' + + a + + '". Route id\'s must be globally unique within Data Router usages', + ), + (function (e) { + return !0 === e.index; + })(e)) + ) { + let n = Dt({}, e, t(e), { id: a }); + return (r[a] = n), n; + } + { + let n = Dt({}, e, t(e), { id: a, children: void 0 }); + return (r[a] = n), e.children && (n.children = Gt(e.children, t, i, r)), n; + } + }) + ); + } + function Ht(e, t, n) { + void 0 === n && (n = '/'); + let r = rn(('string' == typeof t ? Bt(t) : t).pathname || '/', n); + if (null == r) return null; + let o = Wt(e); + !(function (e) { + e.sort((e, t) => + e.score !== t.score + ? t.score - e.score + : (function (e, t) { + let n = e.length === t.length && e.slice(0, -1).every((e, n) => e === t[n]); + return n ? e[e.length - 1] - t[t.length - 1] : 0; + })( + e.routesMeta.map(e => e.childrenIndex), + t.routesMeta.map(e => e.childrenIndex), + ), + ); + })(o); + let i = null; + for (let a = 0; null == i && a < o.length; ++a) i = en(o[a], nn(r)); + return i; + } + function Wt(e, t, n, r) { + void 0 === t && (t = []), void 0 === n && (n = []), void 0 === r && (r = ''); + let o = (e, o, i) => { + let a = { + relativePath: void 0 === i ? e.path || '' : i, + caseSensitive: !0 === e.caseSensitive, + childrenIndex: o, + route: e, + }; + a.relativePath.startsWith('/') && + (Ot( + a.relativePath.startsWith(r), + 'Absolute route path "' + + a.relativePath + + '" nested under path "' + + r + + '" is not valid. An absolute child route path must start with the combined path of all its parent routes.', + ), + (a.relativePath = a.relativePath.slice(r.length))); + let s = ln([r, a.relativePath]), + l = n.concat(a); + e.children && + e.children.length > 0 && + (Ot( + !0 !== e.index, + 'Index routes must not have child routes. Please remove all child routes from route path "' + s + '".', + ), + Wt(e.children, t, l, s)), + (null != e.path || e.index) && t.push({ path: s, score: Jt(s, e.index), routesMeta: l }); + }; + return ( + e.forEach((e, t) => { + var n; + if ('' !== e.path && null != (n = e.path) && n.includes('?')) for (let r of Ut(e.path)) o(e, t, r); + else o(e, t); + }), + t + ); + } + function Ut(e) { + let t = e.split('/'); + if (0 === t.length) return []; + let [n, ...r] = t, + o = n.endsWith('?'), + i = n.replace(/\?$/, ''); + if (0 === r.length) return o ? [i, ''] : [i]; + let a = Ut(r.join('/')), + s = []; + return ( + s.push(...a.map(e => ('' === e ? i : [i, e].join('/')))), + o && s.push(...a), + s.map(t => (e.startsWith('/') && '' === t ? '/' : t)) + ); + } + const qt = /^:\w+$/, + Yt = 3, + Xt = 2, + $t = 1, + Kt = 10, + Zt = -2, + Qt = e => '*' === e; + function Jt(e, t) { + let n = e.split('/'), + r = n.length; + return ( + n.some(Qt) && (r += Zt), + t && (r += Xt), + n.filter(e => !Qt(e)).reduce((e, t) => e + (qt.test(t) ? Yt : '' === t ? $t : Kt), r) + ); + } + function en(e, t) { + let { routesMeta: n } = e, + r = {}, + o = '/', + i = []; + for (let a = 0; a < n.length; ++a) { + let e = n[a], + s = a === n.length - 1, + l = '/' === o ? t : t.slice(o.length) || '/', + c = tn({ path: e.relativePath, caseSensitive: e.caseSensitive, end: s }, l); + if (!c) return null; + Object.assign(r, c.params); + let u = e.route; + i.push({ params: r, pathname: ln([o, c.pathname]), pathnameBase: cn(ln([o, c.pathnameBase])), route: u }), + '/' !== c.pathnameBase && (o = ln([o, c.pathnameBase])); + } + return i; + } + function tn(e, t) { + 'string' == typeof e && (e = { path: e, caseSensitive: !1, end: !0 }); + let [n, r] = (function (e, t, n) { + void 0 === t && (t = !1); + void 0 === n && (n = !0); + At( + '*' === e || !e.endsWith('*') || e.endsWith('/*'), + 'Route path "' + + e + + '" will be treated as if it were "' + + e.replace(/\*$/, '/*') + + '" because the `*` character must always follow a `/` in the pattern. To get rid of this warning, please change the route path to "' + + e.replace(/\*$/, '/*') + + '".', + ); + let r = [], + o = + '^' + + e + .replace(/\/*\*?$/, '') + .replace(/^\/*/, '/') + .replace(/[\\.*+^$?{}|()[\]]/g, '\\$&') + .replace(/\/:(\w+)/g, (e, t) => (r.push(t), '/([^\\/]+)')); + e.endsWith('*') + ? (r.push('*'), (o += '*' === e || '/*' === e ? '(.*)$' : '(?:\\/(.+)|\\/*)$')) + : n + ? (o += '\\/*$') + : '' !== e && '/' !== e && (o += '(?:(?=\\/|$))'); + let i = new RegExp(o, t ? void 0 : 'i'); + return [i, r]; + })(e.path, e.caseSensitive, e.end), + o = t.match(n); + if (!o) return null; + let i = o[0], + a = i.replace(/(.)\/+$/, '$1'), + s = o.slice(1), + l = r.reduce((e, t, n) => { + if ('*' === t) { + let e = s[n] || ''; + a = i.slice(0, i.length - e.length).replace(/(.)\/+$/, '$1'); + } + return ( + (e[t] = (function (e, t) { + try { + return decodeURIComponent(e); + } catch (n) { + return ( + At( + !1, + 'The value for the URL param "' + + t + + '" will not be decoded because the string "' + + e + + '" is a malformed URL segment. This is probably due to a bad percent encoding (' + + n + + ').', + ), + e + ); + } + })(s[n] || '', t)), + e + ); + }, {}); + return { params: l, pathname: i, pathnameBase: a, pattern: e }; + } + function nn(e) { + try { + return decodeURI(e); + } catch (t) { + return ( + At( + !1, + 'The URL path "' + + e + + '" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent encoding (' + + t + + ').', + ), + e + ); + } + } + function rn(e, t) { + if ('/' === t) return e; + if (!e.toLowerCase().startsWith(t.toLowerCase())) return null; + let n = t.endsWith('/') ? t.length - 1 : t.length, + r = e.charAt(n); + return r && '/' !== r ? null : e.slice(n) || '/'; + } + function on(e, t, n, r) { + return ( + "Cannot include a '" + + e + + "' character in a manually specified `to." + + t + + '` field [' + + JSON.stringify(r) + + ']. Please separate it out to the `to.' + + n + + '` field. Alternatively you may provide the full path as a string in and the router will parse it for you.' + ); + } + function an(e) { + return e.filter((e, t) => 0 === t || (e.route.path && e.route.path.length > 0)); + } + function sn(e, t, n, r) { + let o; + void 0 === r && (r = !1), + 'string' == typeof e + ? (o = Bt(e)) + : ((o = Dt({}, e)), + Ot(!o.pathname || !o.pathname.includes('?'), on('?', 'pathname', 'search', o)), + Ot(!o.pathname || !o.pathname.includes('#'), on('#', 'pathname', 'hash', o)), + Ot(!o.search || !o.search.includes('#'), on('#', 'search', 'hash', o))); + let i, + a = '' === e || '' === o.pathname, + s = a ? '/' : o.pathname; + if (r || null == s) i = n; + else { + let e = t.length - 1; + if (s.startsWith('..')) { + let t = s.split('/'); + for (; '..' === t[0]; ) t.shift(), (e -= 1); + o.pathname = t.join('/'); + } + i = e >= 0 ? t[e] : '/'; + } + let l = (function (e, t) { + void 0 === t && (t = '/'); + let { pathname: n, search: r = '', hash: o = '' } = 'string' == typeof e ? Bt(e) : e, + i = n + ? n.startsWith('/') + ? n + : (function (e, t) { + let n = t.replace(/\/+$/, '').split('/'); + return ( + e.split('/').forEach(e => { + '..' === e ? n.length > 1 && n.pop() : '.' !== e && n.push(e); + }), + n.length > 1 ? n.join('/') : '/' + ); + })(n, t) + : t; + return { pathname: i, search: un(r), hash: dn(o) }; + })(o, i), + c = s && '/' !== s && s.endsWith('/'), + u = (a || '.' === s) && n.endsWith('/'); + return l.pathname.endsWith('/') || (!c && !u) || (l.pathname += '/'), l; + } + const ln = e => e.join('/').replace(/\/\/+/g, '/'), + cn = e => e.replace(/\/+$/, '').replace(/^\/*/, '/'), + un = e => (e && '?' !== e ? (e.startsWith('?') ? e : '?' + e) : ''), + dn = e => (e && '#' !== e ? (e.startsWith('#') ? e : '#' + e) : ''); + Error; + const fn = function (e, t) { + void 0 === t && (t = 302); + let n = t; + 'number' == typeof n ? (n = { status: n }) : void 0 === n.status && (n.status = 302); + let r = new Headers(n.headers); + return r.set('Location', e), new Response(null, Dt({}, n, { headers: r })); + }; + class ErrorResponse { + constructor(e, t, n, r) { + void 0 === r && (r = !1), + (this.status = e), + (this.statusText = t || ''), + (this.internal = r), + n instanceof Error ? ((this.data = n.toString()), (this.error = n)) : (this.data = n); + } + } + function hn(e) { + return ( + null != e && + 'number' == typeof e.status && + 'string' == typeof e.statusText && + 'boolean' == typeof e.internal && + 'data' in e + ); + } + const pn = ['post', 'put', 'patch', 'delete'], + vn = new Set(pn), + gn = ['get', ...pn], + mn = new Set(gn), + yn = new Set([301, 302, 303, 307, 308]), + bn = new Set([307, 308]), + xn = { + state: 'idle', + location: void 0, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + }, + wn = { + state: 'idle', + data: void 0, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + }, + En = { state: 'unblocked', proceed: void 0, reset: void 0, location: void 0 }, + kn = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i, + _n = 'undefined' != typeof window && void 0 !== window.document && void 0 !== window.document.createElement, + Sn = !_n, + Pn = e => ({ hasErrorBoundary: Boolean(e.hasErrorBoundary) }); + function Cn(e) { + let t; + if ( + (Ot(e.routes.length > 0, 'You must provide a non-empty routes array to createRouter'), e.mapRouteProperties) + ) + t = e.mapRouteProperties; + else if (e.detectErrorBoundary) { + let n = e.detectErrorBoundary; + t = e => ({ hasErrorBoundary: n(e) }); + } else t = Pn; + let n, + r = {}, + o = Gt(e.routes, t, void 0, r), + i = e.basename || '/', + a = Dt({ v7_normalizeFormMethod: !1, v7_prependBasename: !1 }, e.future), + s = null, + l = new Set(), + c = null, + u = null, + d = null, + f = null != e.hydrationData, + h = Ht(o, e.history.location, i), + p = null; + if (null == h) { + let t = Hn(404, { pathname: e.history.location.pathname }), + { matches: n, route: r } = Gn(o); + (h = n), (p = { [r.id]: t }); + } + let v, + g, + m = !(h.some(e => e.route.lazy) || (h.some(e => e.route.loader) && null == e.hydrationData)), + y = { + historyAction: e.history.action, + location: e.history.location, + matches: h, + initialized: m, + navigation: xn, + restoreScrollPosition: null == e.hydrationData && null, + preventScrollReset: !1, + revalidation: 'idle', + loaderData: (e.hydrationData && e.hydrationData.loaderData) || {}, + actionData: (e.hydrationData && e.hydrationData.actionData) || null, + errors: (e.hydrationData && e.hydrationData.errors) || p, + fetchers: new Map(), + blockers: new Map(), + }, + b = Nt.Pop, + x = !1, + w = !1, + E = !1, + k = [], + _ = [], + S = new Map(), + P = 0, + C = -1, + j = new Map(), + T = new Set(), + D = new Map(), + N = new Map(), + M = new Map(), + O = !1; + function A(e) { + (y = Dt({}, y, e)), l.forEach(e => e(y)); + } + function R(t, r) { + var i, a; + let s, + l = + null != y.actionData && + null != y.navigation.formMethod && + Zn(y.navigation.formMethod) && + 'loading' === y.navigation.state && + !0 !== (null == (i = t.state) ? void 0 : i._isRedirect); + s = r.actionData ? (Object.keys(r.actionData).length > 0 ? r.actionData : null) : l ? y.actionData : null; + let c = r.loaderData ? zn(y.loaderData, r.loaderData, r.matches || [], r.errors) : y.loaderData; + for (let [e] of M) Y(e); + let u = + !0 === x || + (null != y.navigation.formMethod && + Zn(y.navigation.formMethod) && + !0 !== (null == (a = t.state) ? void 0 : a._isRedirect)); + n && ((o = n), (n = void 0)), + A( + Dt({}, r, { + actionData: s, + loaderData: c, + historyAction: b, + location: t, + initialized: !0, + navigation: xn, + revalidation: 'idle', + restoreScrollPosition: Z(t, r.matches || y.matches), + preventScrollReset: u, + blockers: new Map(y.blockers), + }), + ), + w || + b === Nt.Pop || + (b === Nt.Push ? e.history.push(t, t.state) : b === Nt.Replace && e.history.replace(t, t.state)), + (b = Nt.Pop), + (x = !1), + (w = !1), + (E = !1), + (k = []), + (_ = []); + } + async function L(a, s, l) { + g && g.abort(), + (g = null), + (b = a), + (w = !0 === (l && l.startUninterruptedRevalidation)), + (function (e, t) { + if (c && u && d) { + let n = t.map(e => tr(e, y.loaderData)), + r = u(e, n) || e.key; + c[r] = d(); + } + })(y.location, y.matches), + (x = !0 === (l && l.preventScrollReset)); + let f = n || o, + h = l && l.overrideNavigation, + p = Ht(f, s, i); + if (!p) { + let e = Hn(404, { pathname: s.pathname }), + { matches: t, route: n } = Gn(f); + return K(), void R(s, { matches: t, loaderData: {}, errors: { [n.id]: e } }); + } + if ( + y.initialized && + (function (e, t) { + if (e.pathname !== t.pathname || e.search !== t.search) return !1; + if ('' === e.hash) return '' !== t.hash; + if (e.hash === t.hash) return !0; + if ('' !== t.hash) return !0; + return !1; + })(y.location, s) && + !(l && l.submission && Zn(l.submission.formMethod)) + ) + return void R(s, { matches: p }); + g = new AbortController(); + let v, + m, + j = Ln(e.history, s, g.signal, l && l.submission); + if (l && l.pendingError) m = { [Vn(p).route.id]: l.pendingError }; + else if (l && l.submission && Zn(l.submission.formMethod)) { + let e = await (async function (e, n, o, a, s) { + z(); + let l, + c = Dt({ state: 'submitting', location: n }, o); + A({ navigation: c }); + let u = nr(a, n); + if (u.route.action || u.route.lazy) { + if (((l = await Rn('action', e, u, a, r, t, i)), e.signal.aborted)) return { shortCircuited: !0 }; + } else + l = { type: zt.error, error: Hn(405, { method: e.method, pathname: n.pathname, routeId: u.route.id }) }; + if (Xn(l)) { + let e; + return ( + (e = s && null != s.replace ? s.replace : l.location === y.location.pathname + y.location.search), + await B(y, l, { submission: o, replace: e }), + { shortCircuited: !0 } + ); + } + if (Yn(l)) { + let e = Vn(a, u.route.id); + return ( + !0 !== (s && s.replace) && (b = Nt.Push), + { pendingActionData: {}, pendingActionError: { [e.route.id]: l.error } } + ); + } + if (qn(l)) throw Hn(400, { type: 'defer-action' }); + return { pendingActionData: { [u.route.id]: l.data } }; + })(j, s, l.submission, p, { replace: l.replace }); + if (e.shortCircuited) return; + (v = e.pendingActionData), + (m = e.pendingActionError), + (h = Dt({ state: 'loading', location: s }, l.submission)), + (j = new Request(j.url, { signal: j.signal })); + } + let { + shortCircuited: T, + loaderData: M, + errors: O, + } = await (async function (t, r, a, s, l, c, u, d, f) { + let h = s; + if (!h) { + h = Dt( + { + state: 'loading', + location: r, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + }, + l, + ); + } + let p = + l || c + ? l || c + : h.formMethod && h.formAction && h.formData && h.formEncType + ? { + formMethod: h.formMethod, + formAction: h.formAction, + formData: h.formData, + formEncType: h.formEncType, + } + : void 0, + v = n || o, + [m, b] = Nn(e.history, y, a, p, r, E, k, _, D, v, i, d, f); + if ( + (K(e => !(a && a.some(t => t.route.id === e)) || (m && m.some(t => t.route.id === e))), + 0 === m.length && 0 === b.length) + ) { + let e = U(); + return ( + R( + r, + Dt( + { matches: a, loaderData: {}, errors: f || null }, + d ? { actionData: d } : {}, + e ? { fetchers: new Map(y.fetchers) } : {}, + ), + ), + { shortCircuited: !0 } + ); + } + if (!w) { + b.forEach(e => { + let t = y.fetchers.get(e.key), + n = { + state: 'loading', + data: t && t.data, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + ' _hasFetcherDoneAnything ': !0, + }; + y.fetchers.set(e.key, n); + }); + let e = d || y.actionData; + A( + Dt( + { navigation: h }, + e ? (0 === Object.keys(e).length ? { actionData: null } : { actionData: e }) : {}, + b.length > 0 ? { fetchers: new Map(y.fetchers) } : {}, + ), + ); + } + (C = ++P), + b.forEach(e => { + e.controller && S.set(e.key, e.controller); + }); + let x = () => b.forEach(e => H(e.key)); + g && g.signal.addEventListener('abort', x); + let { results: j, loaderResults: T, fetcherResults: M } = await F(y.matches, a, m, b, t); + if (t.signal.aborted) return { shortCircuited: !0 }; + g && g.signal.removeEventListener('abort', x); + b.forEach(e => S.delete(e.key)); + let O = Wn(j); + if (O) return await B(y, O, { replace: u }), { shortCircuited: !0 }; + let { loaderData: L, errors: I } = Fn(y, a, m, T, f, b, M, N); + N.forEach((e, t) => { + e.subscribe(n => { + (n || e.done) && N.delete(t); + }); + }); + let z = U(), + V = q(C), + G = z || V || b.length > 0; + return Dt({ loaderData: L, errors: I }, G ? { fetchers: new Map(y.fetchers) } : {}); + })(j, s, p, h, l && l.submission, l && l.fetcherSubmission, l && l.replace, v, m); + T || ((g = null), R(s, Dt({ matches: p }, v ? { actionData: v } : {}, { loaderData: M, errors: O }))); + } + function I(e) { + return y.fetchers.get(e) || wn; + } + async function B(t, n, r) { + var o; + let { submission: a, replace: s, isFetchActionRedirect: l } = void 0 === r ? {} : r; + n.revalidate && (E = !0); + let c = Lt(t.location, n.location, Dt({ _isRedirect: !0 }, l ? { _isFetchActionRedirect: !0 } : {})); + if ( + (Ot(c, 'Expected a location on the redirect navigation'), + kn.test(n.location) && _n && void 0 !== (null == (o = window) ? void 0 : o.location)) + ) { + let t = e.history.createURL(n.location), + r = null == rn(t.pathname, i); + if (window.location.origin !== t.origin || r) + return void (s ? window.location.replace(n.location) : window.location.assign(n.location)); + } + g = null; + let u = !0 === s ? Nt.Replace : Nt.Push, + { formMethod: d, formAction: f, formEncType: h, formData: p } = t.navigation; + !a && d && f && p && h && (a = { formMethod: d, formAction: f, formEncType: h, formData: p }), + bn.has(n.status) && a && Zn(a.formMethod) + ? await L(u, c, { submission: Dt({}, a, { formAction: n.location }), preventScrollReset: x }) + : l + ? await L(u, c, { + overrideNavigation: { + state: 'loading', + location: c, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + }, + fetcherSubmission: a, + preventScrollReset: x, + }) + : await L(u, c, { + overrideNavigation: { + state: 'loading', + location: c, + formMethod: a ? a.formMethod : void 0, + formAction: a ? a.formAction : void 0, + formEncType: a ? a.formEncType : void 0, + formData: a ? a.formData : void 0, + }, + preventScrollReset: x, + }); + } + async function F(n, o, a, s, l) { + let c = await Promise.all([ + ...a.map(e => Rn('loader', l, e, o, r, t, i)), + ...s.map(n => { + if (n.matches && n.match && n.controller) + return Rn('loader', Ln(e.history, n.path, n.controller.signal), n.match, n.matches, r, t, i); + return { type: zt.error, error: Hn(404, { pathname: n.path }) }; + }), + ]), + u = c.slice(0, a.length), + d = c.slice(a.length); + return ( + await Promise.all([ + Qn( + n, + a, + u, + u.map(() => l.signal), + !1, + y.loaderData, + ), + Qn( + n, + s.map(e => e.match), + d, + s.map(e => (e.controller ? e.controller.signal : null)), + !0, + ), + ]), + { results: c, loaderResults: u, fetcherResults: d } + ); + } + function z() { + (E = !0), + k.push(...K()), + D.forEach((e, t) => { + S.has(t) && (_.push(t), H(t)); + }); + } + function V(e, t, n) { + let r = Vn(y.matches, t); + G(e), A({ errors: { [r.route.id]: n }, fetchers: new Map(y.fetchers) }); + } + function G(e) { + S.has(e) && H(e), D.delete(e), j.delete(e), T.delete(e), y.fetchers.delete(e); + } + function H(e) { + let t = S.get(e); + Ot(t, 'Expected fetch controller: ' + e), t.abort(), S.delete(e); + } + function W(e) { + for (let t of e) { + let e = { + state: 'idle', + data: I(t).data, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + ' _hasFetcherDoneAnything ': !0, + }; + y.fetchers.set(t, e); + } + } + function U() { + let e = [], + t = !1; + for (let n of T) { + let r = y.fetchers.get(n); + Ot(r, 'Expected fetcher: ' + n), 'loading' === r.state && (T.delete(n), e.push(n), (t = !0)); + } + return W(e), t; + } + function q(e) { + let t = []; + for (let [n, r] of j) + if (r < e) { + let e = y.fetchers.get(n); + Ot(e, 'Expected fetcher: ' + n), 'loading' === e.state && (H(n), j.delete(n), t.push(n)); + } + return W(t), t.length > 0; + } + function Y(e) { + y.blockers.delete(e), M.delete(e); + } + function X(e, t) { + let n = y.blockers.get(e) || En; + Ot( + ('unblocked' === n.state && 'blocked' === t.state) || + ('blocked' === n.state && 'blocked' === t.state) || + ('blocked' === n.state && 'proceeding' === t.state) || + ('blocked' === n.state && 'unblocked' === t.state) || + ('proceeding' === n.state && 'unblocked' === t.state), + 'Invalid blocker state transition: ' + n.state + ' -> ' + t.state, + ), + y.blockers.set(e, t), + A({ blockers: new Map(y.blockers) }); + } + function $(e) { + let { currentLocation: t, nextLocation: n, historyAction: r } = e; + if (0 === M.size) return; + M.size > 1 && At(!1, 'A router only supports one blocker at a time'); + let o = Array.from(M.entries()), + [i, a] = o[o.length - 1], + s = y.blockers.get(i); + return s && 'proceeding' === s.state + ? void 0 + : a({ currentLocation: t, nextLocation: n, historyAction: r }) + ? i + : void 0; + } + function K(e) { + let t = []; + return ( + N.forEach((n, r) => { + (e && !e(r)) || (n.cancel(), t.push(r), N.delete(r)); + }), + t + ); + } + function Z(e, t) { + if (c && u && d) { + let n = t.map(e => tr(e, y.loaderData)), + r = u(e, n) || e.key, + o = c[r]; + if ('number' == typeof o) return o; + } + return null; + } + return ( + (v = { + get basename() { + return i; + }, + get state() { + return y; + }, + get routes() { + return o; + }, + initialize: function () { + return ( + (s = e.history.listen(t => { + let { action: n, location: r, delta: o } = t; + if (O) return void (O = !1); + At( + 0 === M.size || null != o, + 'You are trying to use a blocker on a POP navigation to a location that was not created by @remix-run/router. This will fail silently in production. This can happen if you are navigating outside the router via `window.history.pushState`/`window.location.hash` instead of using router navigation APIs. This can also happen if you are using createHashRouter and the user manually changes the URL.', + ); + let i = $({ currentLocation: y.location, nextLocation: r, historyAction: n }); + return i && null != o + ? ((O = !0), + e.history.go(-1 * o), + void X(i, { + state: 'blocked', + location: r, + proceed() { + X(i, { state: 'proceeding', proceed: void 0, reset: void 0, location: r }), e.history.go(o); + }, + reset() { + Y(i), A({ blockers: new Map(v.state.blockers) }); + }, + })) + : L(n, r); + })), + y.initialized || L(Nt.Pop, y.location), + v + ); + }, + subscribe: function (e) { + return l.add(e), () => l.delete(e); + }, + enableScrollRestoration: function (e, t, n) { + if (((c = e), (d = t), (u = n || (e => e.key)), !f && y.navigation === xn)) { + f = !0; + let e = Z(y.location, y.matches); + null != e && A({ restoreScrollPosition: e }); + } + return () => { + (c = null), (d = null), (u = null); + }; + }, + navigate: async function t(n, r) { + if ('number' == typeof n) return void e.history.go(n); + let o = jn( + y.location, + y.matches, + i, + a.v7_prependBasename, + n, + null == r ? void 0 : r.fromRouteId, + null == r ? void 0 : r.relative, + ), + { path: s, submission: l, error: c } = Tn(a.v7_normalizeFormMethod, !1, o, r), + u = y.location, + d = Lt(y.location, s, r && r.state); + d = Dt({}, d, e.history.encodeLocation(d)); + let f = r && null != r.replace ? r.replace : void 0, + h = Nt.Push; + !0 === f + ? (h = Nt.Replace) + : !1 === f || + (null != l && + Zn(l.formMethod) && + l.formAction === y.location.pathname + y.location.search && + (h = Nt.Replace)); + let p = r && 'preventScrollReset' in r ? !0 === r.preventScrollReset : void 0, + v = $({ currentLocation: u, nextLocation: d, historyAction: h }); + if (!v) + return await L(h, d, { + submission: l, + pendingError: c, + preventScrollReset: p, + replace: r && r.replace, + }); + X(v, { + state: 'blocked', + location: d, + proceed() { + X(v, { state: 'proceeding', proceed: void 0, reset: void 0, location: d }), t(n, r); + }, + reset() { + Y(v), A({ blockers: new Map(y.blockers) }); + }, + }); + }, + fetch: function (s, l, c, u) { + if (Sn) + throw new Error( + "router.fetch() was called during the server render, but it shouldn't be. You are likely calling a useFetcher() method in the body of your component. Try moving it to a useEffect or a callback.", + ); + S.has(s) && H(s); + let d = n || o, + f = jn(y.location, y.matches, i, a.v7_prependBasename, c, l, null == u ? void 0 : u.relative), + h = Ht(d, f, i); + if (!h) return void V(s, l, Hn(404, { pathname: f })); + let { path: p, submission: v } = Tn(a.v7_normalizeFormMethod, !0, f, u), + m = nr(h, p); + (x = !0 === (u && u.preventScrollReset)), + v && Zn(v.formMethod) + ? (async function (a, s, l, c, u, d) { + if ((z(), D.delete(a), !c.route.action && !c.route.lazy)) { + let e = Hn(405, { method: d.formMethod, pathname: l, routeId: s }); + return void V(a, s, e); + } + let f = y.fetchers.get(a), + h = Dt({ state: 'submitting' }, d, { data: f && f.data, ' _hasFetcherDoneAnything ': !0 }); + y.fetchers.set(a, h), A({ fetchers: new Map(y.fetchers) }); + let p = new AbortController(), + v = Ln(e.history, l, p.signal, d); + S.set(a, p); + let m = await Rn('action', v, c, u, r, t, i); + if (v.signal.aborted) return void (S.get(a) === p && S.delete(a)); + if (Xn(m)) { + S.delete(a), T.add(a); + let e = Dt({ state: 'loading' }, d, { data: void 0, ' _hasFetcherDoneAnything ': !0 }); + return ( + y.fetchers.set(a, e), + A({ fetchers: new Map(y.fetchers) }), + B(y, m, { submission: d, isFetchActionRedirect: !0 }) + ); + } + if (Yn(m)) return void V(a, s, m.error); + if (qn(m)) throw Hn(400, { type: 'defer-action' }); + let x = y.navigation.location || y.location, + w = Ln(e.history, x, p.signal), + M = n || o, + O = 'idle' !== y.navigation.state ? Ht(M, y.navigation.location, i) : y.matches; + Ot(O, "Didn't find any matches after fetcher action"); + let L = ++P; + j.set(a, L); + let I = Dt({ state: 'loading', data: m.data }, d, { ' _hasFetcherDoneAnything ': !0 }); + y.fetchers.set(a, I); + let [G, W] = Nn(e.history, y, O, d, x, E, k, _, D, M, i, { [c.route.id]: m.data }, void 0); + W.filter(e => e.key !== a).forEach(e => { + let t = e.key, + n = y.fetchers.get(t), + r = { + state: 'loading', + data: n && n.data, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + ' _hasFetcherDoneAnything ': !0, + }; + y.fetchers.set(t, r), e.controller && S.set(t, e.controller); + }), + A({ fetchers: new Map(y.fetchers) }); + let U = () => W.forEach(e => H(e.key)); + p.signal.addEventListener('abort', U); + let { results: Y, loaderResults: X, fetcherResults: $ } = await F(y.matches, O, G, W, w); + if (p.signal.aborted) return; + p.signal.removeEventListener('abort', U), + j.delete(a), + S.delete(a), + W.forEach(e => S.delete(e.key)); + let K = Wn(Y); + if (K) return B(y, K); + let { loaderData: Z, errors: Q } = Fn(y, y.matches, G, X, void 0, W, $, N), + J = { + state: 'idle', + data: m.data, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + ' _hasFetcherDoneAnything ': !0, + }; + y.fetchers.set(a, J); + let ee = q(L); + 'loading' === y.navigation.state && L > C + ? (Ot(b, 'Expected pending action'), + g && g.abort(), + R(y.navigation.location, { + matches: O, + loaderData: Z, + errors: Q, + fetchers: new Map(y.fetchers), + })) + : (A( + Dt( + { errors: Q, loaderData: zn(y.loaderData, Z, O, Q) }, + ee ? { fetchers: new Map(y.fetchers) } : {}, + ), + ), + (E = !1)); + })(s, l, p, m, h, v) + : (D.set(s, { routeId: l, path: p }), + (async function (n, o, a, s, l, c) { + let u = y.fetchers.get(n), + d = Dt( + { + state: 'loading', + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + }, + c, + { data: u && u.data, ' _hasFetcherDoneAnything ': !0 }, + ); + y.fetchers.set(n, d), A({ fetchers: new Map(y.fetchers) }); + let f = new AbortController(), + h = Ln(e.history, a, f.signal); + S.set(n, f); + let p = await Rn('loader', h, s, l, r, t, i); + qn(p) && (p = (await Jn(p, h.signal, !0)) || p); + S.get(n) === f && S.delete(n); + if (h.signal.aborted) return; + if (Xn(p)) return T.add(n), void (await B(y, p)); + if (Yn(p)) { + let e = Vn(y.matches, o); + return ( + y.fetchers.delete(n), + void A({ fetchers: new Map(y.fetchers), errors: { [e.route.id]: p.error } }) + ); + } + Ot(!qn(p), 'Unhandled fetcher deferred data'); + let v = { + state: 'idle', + data: p.data, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + ' _hasFetcherDoneAnything ': !0, + }; + y.fetchers.set(n, v), A({ fetchers: new Map(y.fetchers) }); + })(s, l, p, m, h, v)); + }, + revalidate: function () { + z(), + A({ revalidation: 'loading' }), + 'submitting' !== y.navigation.state && + ('idle' !== y.navigation.state + ? L(b || y.historyAction, y.navigation.location, { overrideNavigation: y.navigation }) + : L(y.historyAction, y.location, { startUninterruptedRevalidation: !0 })); + }, + createHref: t => e.history.createHref(t), + encodeLocation: t => e.history.encodeLocation(t), + getFetcher: I, + deleteFetcher: G, + dispose: function () { + s && s(), + l.clear(), + g && g.abort(), + y.fetchers.forEach((e, t) => G(t)), + y.blockers.forEach((e, t) => Y(t)); + }, + getBlocker: function (e, t) { + let n = y.blockers.get(e) || En; + return M.get(e) !== t && M.set(e, t), n; + }, + deleteBlocker: Y, + _internalFetchControllers: S, + _internalActiveDeferreds: N, + _internalSetRoutes: function (e) { + (r = {}), (n = Gt(e, t, void 0, r)); + }, + }), + v + ); + } + Symbol('deferred'); + function jn(e, t, n, r, o, i, a) { + let s, l; + if (null != i && 'path' !== a) { + s = []; + for (let e of t) + if ((s.push(e), e.route.id === i)) { + l = e; + break; + } + } else (s = t), (l = t[t.length - 1]); + let c = sn( + o || '.', + an(s).map(e => e.pathnameBase), + rn(e.pathname, n) || e.pathname, + 'path' === a, + ); + return ( + null == o && ((c.search = e.search), (c.hash = e.hash)), + (null != o && '' !== o && '.' !== o) || + !l || + !l.route.index || + er(c.search) || + (c.search = c.search ? c.search.replace(/^\?/, '?index&') : '?index'), + r && '/' !== n && (c.pathname = '/' === c.pathname ? n : ln([n, c.pathname])), + It(c) + ); + } + function Tn(e, t, n, r) { + if ( + !r || + !(function (e) { + return null != e && 'formData' in e; + })(r) + ) + return { path: n }; + if (r.formMethod && !Kn(r.formMethod)) return { path: n, error: Hn(405, { method: r.formMethod }) }; + let o; + if (r.formData) { + let t = r.formMethod || 'get'; + if ( + ((o = { + formMethod: e ? t.toUpperCase() : t.toLowerCase(), + formAction: Un(n), + formEncType: (r && r.formEncType) || 'application/x-www-form-urlencoded', + formData: r.formData, + }), + Zn(o.formMethod)) + ) + return { path: n, submission: o }; + } + let i = Bt(n), + a = In(r.formData); + return ( + t && i.search && er(i.search) && a.append('index', ''), (i.search = '?' + a), { path: It(i), submission: o } + ); + } + function Dn(e, t) { + let n = e; + if (t) { + let r = e.findIndex(e => e.route.id === t); + r >= 0 && (n = e.slice(0, r)); + } + return n; + } + function Nn(e, t, n, r, o, i, a, s, l, c, u, d, f) { + let h = f ? Object.values(f)[0] : d ? Object.values(d)[0] : void 0, + p = e.createURL(t.location), + v = e.createURL(o), + g = f ? Object.keys(f)[0] : void 0, + m = Dn(n, g).filter((e, n) => { + if (e.route.lazy) return !0; + if (null == e.route.loader) return !1; + if ( + (function (e, t, n) { + let r = !t || n.route.id !== t.route.id, + o = void 0 === e[n.route.id]; + return r || o; + })(t.loaderData, t.matches[n], e) || + a.some(t => t === e.route.id) + ) + return !0; + let o = t.matches[n], + s = e; + return On( + e, + Dt({ currentUrl: p, currentParams: o.params, nextUrl: v, nextParams: s.params }, r, { + actionResult: h, + defaultShouldRevalidate: + i || p.pathname + p.search === v.pathname + v.search || p.search !== v.search || Mn(o, s), + }), + ); + }), + y = []; + return ( + l.forEach((e, o) => { + if (!n.some(t => t.route.id === e.routeId)) return; + let a = Ht(c, e.path, u); + if (!a) + return void y.push({ + key: o, + routeId: e.routeId, + path: e.path, + matches: null, + match: null, + controller: null, + }); + let l = nr(a, e.path); + (s.includes(o) || + On( + l, + Dt( + { + currentUrl: p, + currentParams: t.matches[t.matches.length - 1].params, + nextUrl: v, + nextParams: n[n.length - 1].params, + }, + r, + { actionResult: h, defaultShouldRevalidate: i }, + ), + )) && + y.push({ + key: o, + routeId: e.routeId, + path: e.path, + matches: a, + match: l, + controller: new AbortController(), + }); + }), + [m, y] + ); + } + function Mn(e, t) { + let n = e.route.path; + return e.pathname !== t.pathname || (null != n && n.endsWith('*') && e.params['*'] !== t.params['*']); + } + function On(e, t) { + if (e.route.shouldRevalidate) { + let n = e.route.shouldRevalidate(t); + if ('boolean' == typeof n) return n; + } + return t.defaultShouldRevalidate; + } + async function An(e, t, n) { + if (!e.lazy) return; + let r = await e.lazy(); + if (!e.lazy) return; + let o = n[e.id]; + Ot(o, 'No route found in manifest'); + let i = {}; + for (let a in r) { + let e = void 0 !== o[a] && 'hasErrorBoundary' !== a; + At( + !e, + 'Route "' + + o.id + + '" has a static property "' + + a + + '" defined but its lazy function is also returning a value for this property. The lazy route property "' + + a + + '" will be ignored.', + ), + e || Vt.has(a) || (i[a] = r[a]); + } + Object.assign(o, i), Object.assign(o, Dt({}, t(o), { lazy: void 0 })); + } + async function Rn(e, t, n, r, o, i, a, s, l, c) { + let u, d, f; + void 0 === s && (s = !1), void 0 === l && (l = !1); + let h = e => { + let r, + o = new Promise((e, t) => (r = t)); + return ( + (f = () => r()), + t.signal.addEventListener('abort', f), + Promise.race([e({ request: t, params: n.params, context: c }), o]) + ); + }; + try { + let r = n.route[e]; + if (n.route.lazy) + if (r) { + d = (await Promise.all([h(r), An(n.route, i, o)]))[0]; + } else { + if ((await An(n.route, i, o), (r = n.route[e]), !r)) { + if ('action' === e) { + let e = new URL(t.url), + r = e.pathname + e.search; + throw Hn(405, { method: t.method, pathname: r, routeId: n.route.id }); + } + return { type: zt.data, data: void 0 }; + } + d = await h(r); + } + else { + if (!r) { + let e = new URL(t.url); + throw Hn(404, { pathname: e.pathname + e.search }); + } + d = await h(r); + } + Ot( + void 0 !== d, + 'You defined ' + + ('action' === e ? 'an action' : 'a loader') + + ' for route "' + + n.route.id + + '" but didn\'t return anything from your `' + + e + + '` function. Please return a value or `null`.', + ); + } catch (x) { + (u = zt.error), (d = x); + } finally { + f && t.signal.removeEventListener('abort', f); + } + if ($n(d)) { + let e, + o = d.status; + if (yn.has(o)) { + let e = d.headers.get('Location'); + if ((Ot(e, 'Redirects returned/thrown from loaders/actions must have a Location header'), kn.test(e))) { + if (!s) { + let n = new URL(t.url), + r = e.startsWith('//') ? new URL(n.protocol + e) : new URL(e), + o = null != rn(r.pathname, a); + r.origin === n.origin && o && (e = r.pathname + r.search + r.hash); + } + } else e = jn(new URL(t.url), r.slice(0, r.indexOf(n) + 1), a, !0, e); + if (s) throw (d.headers.set('Location', e), d); + return { + type: zt.redirect, + status: o, + location: e, + revalidate: null !== d.headers.get('X-Remix-Revalidate'), + }; + } + if (l) throw { type: u || zt.data, response: d }; + let i = d.headers.get('Content-Type'); + return ( + (e = i && /\bapplication\/json\b/.test(i) ? await d.json() : await d.text()), + u === zt.error + ? { type: u, error: new ErrorResponse(o, d.statusText, e), headers: d.headers } + : { type: zt.data, data: e, statusCode: d.status, headers: d.headers } + ); + } + return u === zt.error + ? { type: u, error: d } + : (function (e) { + let t = e; + return ( + t && + 'object' == typeof t && + 'object' == typeof t.data && + 'function' == typeof t.subscribe && + 'function' == typeof t.cancel && + 'function' == typeof t.resolveData + ); + })(d) + ? { + type: zt.deferred, + deferredData: d, + statusCode: null == (p = d.init) ? void 0 : p.status, + headers: (null == (v = d.init) ? void 0 : v.headers) && new Headers(d.init.headers), + } + : { type: zt.data, data: d }; + var p, v; + } + function Ln(e, t, n, r) { + let o = e.createURL(Un(t)).toString(), + i = { signal: n }; + if (r && Zn(r.formMethod)) { + let { formMethod: e, formEncType: t, formData: n } = r; + (i.method = e.toUpperCase()), (i.body = 'application/x-www-form-urlencoded' === t ? In(n) : n); + } + return new Request(o, i); + } + function In(e) { + let t = new URLSearchParams(); + for (let [n, r] of e.entries()) t.append(n, r instanceof File ? r.name : r); + return t; + } + function Bn(e, t, n, r, o) { + let i, + a = {}, + s = null, + l = !1, + c = {}; + return ( + n.forEach((n, u) => { + let d = t[u].route.id; + if ((Ot(!Xn(n), 'Cannot handle redirect results in processLoaderData'), Yn(n))) { + let t = Vn(e, d), + o = n.error; + r && ((o = Object.values(r)[0]), (r = void 0)), + (s = s || {}), + null == s[t.route.id] && (s[t.route.id] = o), + (a[d] = void 0), + l || ((l = !0), (i = hn(n.error) ? n.error.status : 500)), + n.headers && (c[d] = n.headers); + } else + qn(n) ? (o.set(d, n.deferredData), (a[d] = n.deferredData.data)) : (a[d] = n.data), + null == n.statusCode || 200 === n.statusCode || l || (i = n.statusCode), + n.headers && (c[d] = n.headers); + }), + r && ((s = r), (a[Object.keys(r)[0]] = void 0)), + { loaderData: a, errors: s, statusCode: i || 200, loaderHeaders: c } + ); + } + function Fn(e, t, n, r, o, i, a, s) { + let { loaderData: l, errors: c } = Bn(t, n, r, o, s); + for (let u = 0; u < i.length; u++) { + let { key: t, match: n, controller: r } = i[u]; + Ot(void 0 !== a && void 0 !== a[u], 'Did not find corresponding fetcher result'); + let o = a[u]; + if (!r || !r.signal.aborted) + if (Yn(o)) { + let r = Vn(e.matches, null == n ? void 0 : n.route.id); + (c && c[r.route.id]) || (c = Dt({}, c, { [r.route.id]: o.error })), e.fetchers.delete(t); + } else if (Xn(o)) Ot(!1, 'Unhandled fetcher revalidation redirect'); + else if (qn(o)) Ot(!1, 'Unhandled fetcher deferred data'); + else { + let n = { + state: 'idle', + data: o.data, + formMethod: void 0, + formAction: void 0, + formEncType: void 0, + formData: void 0, + ' _hasFetcherDoneAnything ': !0, + }; + e.fetchers.set(t, n); + } + } + return { loaderData: l, errors: c }; + } + function zn(e, t, n, r) { + let o = Dt({}, t); + for (let i of n) { + let n = i.route.id; + if ( + (t.hasOwnProperty(n) + ? void 0 !== t[n] && (o[n] = t[n]) + : void 0 !== e[n] && i.route.loader && (o[n] = e[n]), + r && r.hasOwnProperty(n)) + ) + break; + } + return o; + } + function Vn(e, t) { + let n = t ? e.slice(0, e.findIndex(e => e.route.id === t) + 1) : [...e]; + return n.reverse().find(e => !0 === e.route.hasErrorBoundary) || e[0]; + } + function Gn(e) { + let t = e.find(e => e.index || !e.path || '/' === e.path) || { id: '__shim-error-route__' }; + return { matches: [{ params: {}, pathname: '', pathnameBase: '', route: t }], route: t }; + } + function Hn(e, t) { + let { pathname: n, routeId: r, method: o, type: i } = void 0 === t ? {} : t, + a = 'Unknown Server Error', + s = 'Unknown @remix-run/router error'; + return ( + 400 === e + ? ((a = 'Bad Request'), + o && n && r + ? (s = + 'You made a ' + + o + + ' request to "' + + n + + '" but did not provide a `loader` for route "' + + r + + '", so there is no way to handle the request.') + : 'defer-action' === i && (s = 'defer() is not supported in actions')) + : 403 === e + ? ((a = 'Forbidden'), (s = 'Route "' + r + '" does not match URL "' + n + '"')) + : 404 === e + ? ((a = 'Not Found'), (s = 'No route matches URL "' + n + '"')) + : 405 === e && + ((a = 'Method Not Allowed'), + o && n && r + ? (s = + 'You made a ' + + o.toUpperCase() + + ' request to "' + + n + + '" but did not provide an `action` for route "' + + r + + '", so there is no way to handle the request.') + : o && (s = 'Invalid request method "' + o.toUpperCase() + '"')), + new ErrorResponse(e || 500, a, new Error(s), !0) + ); + } + function Wn(e) { + for (let t = e.length - 1; t >= 0; t--) { + let n = e[t]; + if (Xn(n)) return n; + } + } + function Un(e) { + return It(Dt({}, 'string' == typeof e ? Bt(e) : e, { hash: '' })); + } + function qn(e) { + return e.type === zt.deferred; + } + function Yn(e) { + return e.type === zt.error; + } + function Xn(e) { + return (e && e.type) === zt.redirect; + } + function $n(e) { + return ( + null != e && + 'number' == typeof e.status && + 'string' == typeof e.statusText && + 'object' == typeof e.headers && + void 0 !== e.body + ); + } + function Kn(e) { + return mn.has(e.toLowerCase()); + } + function Zn(e) { + return vn.has(e.toLowerCase()); + } + async function Qn(e, t, n, r, o, i) { + for (let a = 0; a < n.length; a++) { + let s = n[a], + l = t[a]; + if (!l) continue; + let c = e.find(e => e.route.id === l.route.id), + u = null != c && !Mn(c, l) && void 0 !== (i && i[l.route.id]); + if (qn(s) && (o || u)) { + let e = r[a]; + Ot(e, 'Expected an AbortSignal for revalidating fetcher deferred result'), + await Jn(s, e, o).then(e => { + e && (n[a] = e || n[a]); + }); + } + } + } + async function Jn(e, t, n) { + if ((void 0 === n && (n = !1), !(await e.deferredData.resolveData(t)))) { + if (n) + try { + return { type: zt.data, data: e.deferredData.unwrappedData }; + } catch (x) { + return { type: zt.error, error: x }; + } + return { type: zt.data, data: e.deferredData.data }; + } + } + function er(e) { + return new URLSearchParams(e).getAll('index').some(e => '' === e); + } + function tr(e, t) { + let { route: n, pathname: r, params: o } = e; + return { id: n.id, pathname: r, params: o, data: t[n.id], handle: n.handle }; + } + function nr(e, t) { + let n = 'string' == typeof t ? Bt(t).search : t.search; + if (e[e.length - 1].route.index && er(n || '')) return e[e.length - 1]; + let r = an(e); + return r[r.length - 1]; + } + function rr() { + return ( + (rr = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + rr.apply(this, arguments) + ); + } + const or = r.createContext(null); + const ir = r.createContext(null); + const ar = r.createContext(null); + const sr = r.createContext(null); + const lr = r.createContext({ outlet: null, matches: [], isDataRoute: !1 }); + const cr = r.createContext(null); + function ur() { + return null != r.useContext(sr); + } + function dr() { + return ur() || Ot(!1), r.useContext(sr).location; + } + function fr(e) { + r.useContext(ar).static || r.useLayoutEffect(e); + } + function hr() { + let { isDataRoute: e } = r.useContext(lr); + return e + ? (function () { + let { router: e } = _r(Er.UseNavigateStable), + t = Pr(kr.UseNavigateStable), + n = r.useRef(!1); + fr(() => { + n.current = !0; + }); + let o = r.useCallback( + function (r, o) { + void 0 === o && (o = {}), + n.current && ('number' == typeof r ? e.navigate(r) : e.navigate(r, rr({ fromRouteId: t }, o))); + }, + [e, t], + ); + return o; + })() + : (function () { + ur() || Ot(!1); + let e = r.useContext(or), + { basename: t, navigator: n } = r.useContext(ar), + { matches: o } = r.useContext(lr), + { pathname: i } = dr(), + a = JSON.stringify(an(o).map(e => e.pathnameBase)), + s = r.useRef(!1); + return ( + fr(() => { + s.current = !0; + }), + r.useCallback( + function (r, o) { + if ((void 0 === o && (o = {}), !s.current)) return; + if ('number' == typeof r) return void n.go(r); + let l = sn(r, JSON.parse(a), i, 'path' === o.relative); + null == e && '/' !== t && (l.pathname = '/' === l.pathname ? t : ln([t, l.pathname])), + (o.replace ? n.replace : n.push)(l, o.state, o); + }, + [t, n, a, i, e], + ) + ); + })(); + } + const pr = r.createContext(null); + function vr() { + let { matches: e } = r.useContext(lr), + t = e[e.length - 1]; + return t ? t.params : {}; + } + function gr(e, t) { + let { relative: n } = void 0 === t ? {} : t, + { matches: o } = r.useContext(lr), + { pathname: i } = dr(), + a = JSON.stringify(an(o).map(e => e.pathnameBase)); + return r.useMemo(() => sn(e, JSON.parse(a), i, 'path' === n), [e, a, i, n]); + } + function mr(e, t, n) { + ur() || Ot(!1); + let { navigator: o } = r.useContext(ar), + { matches: i } = r.useContext(lr), + a = i[i.length - 1], + s = a ? a.params : {}, + l = (a && a.pathname, a ? a.pathnameBase : '/'); + a && a.route; + let c, + u = dr(); + if (t) { + var d; + let e = 'string' == typeof t ? Bt(t) : t; + '/' === l || (null == (d = e.pathname) ? void 0 : d.startsWith(l)) || Ot(!1), (c = e); + } else c = u; + let f = c.pathname || '/', + h = Ht(e, { pathname: '/' === l ? f : f.slice(l.length) || '/' }); + let p = wr( + h && + h.map(e => + Object.assign({}, e, { + params: Object.assign({}, s, e.params), + pathname: ln([l, o.encodeLocation ? o.encodeLocation(e.pathname).pathname : e.pathname]), + pathnameBase: + '/' === e.pathnameBase + ? l + : ln([l, o.encodeLocation ? o.encodeLocation(e.pathnameBase).pathname : e.pathnameBase]), + }), + ), + i, + n, + ); + return t && p + ? r.createElement( + sr.Provider, + { + value: { + location: rr({ pathname: '/', search: '', hash: '', state: null, key: 'default' }, c), + navigationType: Nt.Pop, + }, + }, + p, + ) + : p; + } + function yr() { + let e = jr(), + t = hn(e) ? e.status + ' ' + e.statusText : e instanceof Error ? e.message : JSON.stringify(e), + n = e instanceof Error ? e.stack : null, + o = 'rgba(200,200,200, 0.5)', + i = { padding: '0.5rem', backgroundColor: o }; + return r.createElement( + r.Fragment, + null, + r.createElement('h2', null, 'Unexpected Application Error!'), + r.createElement('h3', { style: { fontStyle: 'italic' } }, t), + n ? r.createElement('pre', { style: i }, n) : null, + null, + ); + } + const br = r.createElement(yr, null); + class RenderErrorBoundary extends r.Component { + constructor(e) { + super(e), (this.state = { location: e.location, revalidation: e.revalidation, error: e.error }); + } + static getDerivedStateFromError(e) { + return { error: e }; + } + static getDerivedStateFromProps(e, t) { + return t.location !== e.location || ('idle' !== t.revalidation && 'idle' === e.revalidation) + ? { error: e.error, location: e.location, revalidation: e.revalidation } + : { error: e.error || t.error, location: t.location, revalidation: e.revalidation || t.revalidation }; + } + componentDidCatch(e, t) { + console.error('React Router caught the following error during render', e, t); + } + render() { + return this.state.error + ? r.createElement( + lr.Provider, + { value: this.props.routeContext }, + r.createElement(cr.Provider, { value: this.state.error, children: this.props.component }), + ) + : this.props.children; + } + } + function xr(e) { + let { routeContext: t, match: n, children: o } = e, + i = r.useContext(or); + return ( + i && + i.static && + i.staticContext && + (n.route.errorElement || n.route.ErrorBoundary) && + (i.staticContext._deepestRenderedBoundaryId = n.route.id), + r.createElement(lr.Provider, { value: t }, o) + ); + } + function wr(e, t, n) { + var o; + if ((void 0 === t && (t = []), void 0 === n && (n = null), null == e)) { + var i; + if (null == (i = n) || !i.errors) return null; + e = n.matches; + } + let a = e, + s = null == (o = n) ? void 0 : o.errors; + if (null != s) { + let e = a.findIndex(e => e.route.id && (null == s ? void 0 : s[e.route.id])); + e >= 0 || Ot(!1), (a = a.slice(0, Math.min(a.length, e + 1))); + } + return a.reduceRight((e, o, i) => { + let l = o.route.id ? (null == s ? void 0 : s[o.route.id]) : null, + c = null; + n && (c = o.route.errorElement || br); + let u = t.concat(a.slice(0, i + 1)), + d = () => { + let t; + return ( + (t = l + ? c + : o.route.Component + ? r.createElement(o.route.Component, null) + : o.route.element + ? o.route.element + : e), + r.createElement(xr, { + match: o, + routeContext: { outlet: e, matches: u, isDataRoute: null != n }, + children: t, + }) + ); + }; + return n && (o.route.ErrorBoundary || o.route.errorElement || 0 === i) + ? r.createElement(RenderErrorBoundary, { + location: n.location, + revalidation: n.revalidation, + component: c, + error: l, + children: d(), + routeContext: { outlet: null, matches: u, isDataRoute: !0 }, + }) + : d(); + }, null); + } + var Er, kr; + function _r(e) { + let t = r.useContext(or); + return t || Ot(!1), t; + } + function Sr(e) { + let t = r.useContext(ir); + return t || Ot(!1), t; + } + function Pr(e) { + let t = (function (e) { + let t = r.useContext(lr); + return t || Ot(!1), t; + })(), + n = t.matches[t.matches.length - 1]; + return n.route.id || Ot(!1), n.route.id; + } + function Cr(e) { + return Sr(kr.UseRouteLoaderData).loaderData[e]; + } + function jr() { + var e; + let t = r.useContext(cr), + n = Sr(kr.UseRouteError), + o = Pr(kr.UseRouteError); + return t || (null == (e = n.errors) ? void 0 : e[o]); + } + !(function (e) { + (e.UseBlocker = 'useBlocker'), (e.UseRevalidator = 'useRevalidator'), (e.UseNavigateStable = 'useNavigate'); + })(Er || (Er = {})), + (function (e) { + (e.UseBlocker = 'useBlocker'), + (e.UseLoaderData = 'useLoaderData'), + (e.UseActionData = 'useActionData'), + (e.UseRouteError = 'useRouteError'), + (e.UseNavigation = 'useNavigation'), + (e.UseRouteLoaderData = 'useRouteLoaderData'), + (e.UseMatches = 'useMatches'), + (e.UseRevalidator = 'useRevalidator'), + (e.UseNavigateStable = 'useNavigate'), + (e.UseRouteId = 'useRouteId'); + })(kr || (kr = {})); + function Tr(e) { + let { fallbackElement: t, router: n } = e, + [o, i] = r.useState(n.state); + r.useLayoutEffect(() => n.subscribe(i), [n, i]); + let a = r.useMemo( + () => ({ + createHref: n.createHref, + encodeLocation: n.encodeLocation, + go: e => n.navigate(e), + push: (e, t, r) => + n.navigate(e, { state: t, preventScrollReset: null == r ? void 0 : r.preventScrollReset }), + replace: (e, t, r) => + n.navigate(e, { replace: !0, state: t, preventScrollReset: null == r ? void 0 : r.preventScrollReset }), + }), + [n], + ), + s = n.basename || '/', + l = r.useMemo(() => ({ router: n, navigator: a, static: !1, basename: s }), [n, a, s]); + return r.createElement( + r.Fragment, + null, + r.createElement( + or.Provider, + { value: l }, + r.createElement( + ir.Provider, + { value: o }, + r.createElement( + Mr, + { + basename: n.basename, + location: n.state.location, + navigationType: n.state.historyAction, + navigator: a, + }, + n.state.initialized ? r.createElement(Dr, { routes: n.routes, state: o }) : t, + ), + ), + ), + null, + ); + } + function Dr(e) { + let { routes: t, state: n } = e; + return mr(t, void 0, n); + } + function Nr(e) { + return (function (e) { + let t = r.useContext(lr).outlet; + return t ? r.createElement(pr.Provider, { value: e }, t) : t; + })(e.context); + } + function Mr(e) { + let { + basename: t = '/', + children: n = null, + location: o, + navigationType: i = Nt.Pop, + navigator: a, + static: s = !1, + } = e; + ur() && Ot(!1); + let l = t.replace(/^\/*/, '/'), + c = r.useMemo(() => ({ basename: l, navigator: a, static: s }), [l, a, s]); + 'string' == typeof o && (o = Bt(o)); + let { pathname: u = '/', search: d = '', hash: f = '', state: h = null, key: p = 'default' } = o, + v = r.useMemo(() => { + let e = rn(u, l); + return null == e + ? null + : { location: { pathname: e, search: d, hash: f, state: h, key: p }, navigationType: i }; + }, [l, u, d, f, h, p, i]); + return null == v + ? null + : r.createElement(ar.Provider, { value: c }, r.createElement(sr.Provider, { children: n, value: v })); + } + var Or; + !(function (e) { + (e[(e.pending = 0)] = 'pending'), (e[(e.success = 1)] = 'success'), (e[(e.error = 2)] = 'error'); + })(Or || (Or = {})); + new Promise(() => {}); + r.Component; + function Ar(e) { + let t = { hasErrorBoundary: null != e.ErrorBoundary || null != e.errorElement }; + return ( + e.Component && Object.assign(t, { element: r.createElement(e.Component), Component: void 0 }), + e.ErrorBoundary && + Object.assign(t, { errorElement: r.createElement(e.ErrorBoundary), ErrorBoundary: void 0 }), + t + ); + } + function Rr() { + return ( + (Rr = Object.assign + ? Object.assign.bind() + : function (e) { + for (var t = 1; t < arguments.length; t++) { + var n = arguments[t]; + for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); + } + return e; + }), + Rr.apply(this, arguments) + ); + } + function Lr(e, t) { + if (null == e) return {}; + var n, + r, + o = {}, + i = Object.keys(e); + for (r = 0; r < i.length; r++) (n = i[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); + return o; + } + function Ir(e) { + return ( + void 0 === e && (e = ''), + new URLSearchParams( + 'string' == typeof e || Array.isArray(e) || e instanceof URLSearchParams + ? e + : Object.keys(e).reduce((t, n) => { + let r = e[n]; + return t.concat(Array.isArray(r) ? r.map(e => [n, e]) : [[n, r]]); + }, []), + ) + ); + } + const Br = ['onClick', 'relative', 'reloadDocument', 'replace', 'state', 'target', 'to', 'preventScrollReset']; + function Fr(e, t) { + return Cn({ + basename: null == t ? void 0 : t.basename, + future: Rr({}, null == t ? void 0 : t.future, { v7_prependBasename: !0 }), + history: + ((n = { window: null == t ? void 0 : t.window }), + void 0 === n && (n = {}), + Ft( + function (e, t) { + let { pathname: n, search: r, hash: o } = e.location; + return Lt( + '', + { pathname: n, search: r, hash: o }, + (t.state && t.state.usr) || null, + (t.state && t.state.key) || 'default', + ); + }, + function (e, t) { + return 'string' == typeof t ? t : It(t); + }, + null, + n, + )), + hydrationData: (null == t ? void 0 : t.hydrationData) || Vr(), + routes: e, + mapRouteProperties: Ar, + }).initialize(); + var n; + } + function zr(e, t) { + return Cn({ + basename: null == t ? void 0 : t.basename, + future: Rr({}, null == t ? void 0 : t.future, { v7_prependBasename: !0 }), + history: + ((n = { window: null == t ? void 0 : t.window }), + void 0 === n && (n = {}), + Ft( + function (e, t) { + let { pathname: n = '/', search: r = '', hash: o = '' } = Bt(e.location.hash.substr(1)); + return Lt( + '', + { pathname: n, search: r, hash: o }, + (t.state && t.state.usr) || null, + (t.state && t.state.key) || 'default', + ); + }, + function (e, t) { + let n = e.document.querySelector('base'), + r = ''; + if (n && n.getAttribute('href')) { + let t = e.location.href, + n = t.indexOf('#'); + r = -1 === n ? t : t.slice(0, n); + } + return r + '#' + ('string' == typeof t ? t : It(t)); + }, + function (e, t) { + At( + '/' === e.pathname.charAt(0), + 'relative pathnames are not supported in hash history.push(' + JSON.stringify(t) + ')', + ); + }, + n, + )), + hydrationData: (null == t ? void 0 : t.hydrationData) || Vr(), + routes: e, + mapRouteProperties: Ar, + }).initialize(); + var n; + } + function Vr() { + var e; + let t = null == (e = window) ? void 0 : e.__staticRouterHydrationData; + return t && t.errors && (t = Rr({}, t, { errors: Gr(t.errors) })), t; + } + function Gr(e) { + if (!e) return null; + let t = Object.entries(e), + n = {}; + for (let [r, o] of t) + if (o && 'RouteErrorResponse' === o.__type) + n[r] = new ErrorResponse(o.status, o.statusText, o.data, !0 === o.internal); + else if (o && 'Error' === o.__type) { + let e = new Error(o.message); + (e.stack = ''), (n[r] = e); + } else n[r] = o; + return n; + } + const Hr = 'undefined' != typeof window && void 0 !== window.document && void 0 !== window.document.createElement, + Wr = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i, + Ur = r.forwardRef(function (e, t) { + let n, + { + onClick: o, + relative: i, + reloadDocument: a, + replace: s, + state: l, + target: c, + to: u, + preventScrollReset: d, + } = e, + f = Lr(e, Br), + { basename: h } = r.useContext(ar), + p = !1; + if ('string' == typeof u && Wr.test(u) && ((n = u), Hr)) + try { + let e = new URL(window.location.href), + t = u.startsWith('//') ? new URL(e.protocol + u) : new URL(u), + n = rn(t.pathname, h); + t.origin === e.origin && null != n ? (u = n + t.search + t.hash) : (p = !0); + } catch (x) {} + let v = (function (e, t) { + let { relative: n } = void 0 === t ? {} : t; + ur() || Ot(!1); + let { basename: o, navigator: i } = r.useContext(ar), + { hash: a, pathname: s, search: l } = gr(e, { relative: n }), + c = s; + return '/' !== o && (c = '/' === s ? o : ln([o, s])), i.createHref({ pathname: c, search: l, hash: a }); + })(u, { relative: i }), + g = (function (e, t) { + let { target: n, replace: o, state: i, preventScrollReset: a, relative: s } = void 0 === t ? {} : t, + l = hr(), + c = dr(), + u = gr(e, { relative: s }); + return r.useCallback( + t => { + if ( + (function (e, t) { + return !( + 0 !== e.button || + (t && '_self' !== t) || + (function (e) { + return !!(e.metaKey || e.altKey || e.ctrlKey || e.shiftKey); + })(e) + ); + })(t, n) + ) { + t.preventDefault(); + let n = void 0 !== o ? o : It(c) === It(u); + l(e, { replace: n, state: i, preventScrollReset: a, relative: s }); + } + }, + [c, l, u, o, i, n, e, a, s], + ); + })(u, { replace: s, state: l, target: c, preventScrollReset: d, relative: i }); + return r.createElement( + 'a', + Rr({}, f, { + href: n || v, + onClick: + p || a + ? o + : function (e) { + o && o(e), e.defaultPrevented || g(e); + }, + ref: t, + target: c, + }), + ); + }); + var qr, Yr; + function Xr(e) { + let t = r.useRef(Ir(e)), + n = r.useRef(!1), + o = dr(), + i = r.useMemo( + () => + (function (e, t) { + let n = Ir(e); + if (t) + for (let r of t.keys()) + n.has(r) || + t.getAll(r).forEach(e => { + n.append(r, e); + }); + return n; + })(o.search, n.current ? null : t.current), + [o.search], + ), + a = hr(), + s = r.useCallback( + (e, t) => { + const r = Ir('function' == typeof e ? e(i) : e); + (n.current = !0), a('?' + r, t); + }, + [a, i], + ); + return [i, s]; + } + (function (e) { + (e.UseScrollRestoration = 'useScrollRestoration'), + (e.UseSubmitImpl = 'useSubmitImpl'), + (e.UseFetcher = 'useFetcher'); + })(qr || (qr = {})), + (function (e) { + (e.UseFetchers = 'useFetchers'), (e.UseScrollRestoration = 'useScrollRestoration'); + })(Yr || (Yr = {})); + const $r = ['className', 'children'], + Kr = ['to', 'className', 'children'], + Zr = + 'inline-flex justify-center rounded-md border border-slate-300 bg-slate-50 py-2 px-4 mt-2 text-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700'; + function Qr(e) { + let { className: t, children: n } = e, + r = xt(e, $r); + return vt('button', Object.assign({ className: `${Zr} ${t}` }, r, { children: n })); + } + function Jr(e) { + let { to: t, className: n, children: r } = e, + o = xt(e, Kr); + return vt(Ur, Object.assign({ className: `${Zr} ${n}`, to: t }, o, { children: r })); + } + class tooltip_service_GraphTooltipService { + constructor(e) { + (this.subscribers = new Set()), + (this.currentTooltip = void 0), + e.listen(t => { + switch (t.type) { + case 'GraphRegenerated': + case 'BackgroundClick': + this.hideAll(); + break; + case 'ProjectNodeClick': + const n = + 'nx-console' === e.renderMode + ? () => e.broadcast({ type: 'ProjectOpenConfigClick', projectName: t.data.id }) + : void 0; + this.openProjectNodeToolTip(t.ref, { + id: t.data.id, + tags: t.data.tags, + type: t.data.type, + description: t.data.description, + openConfigCallback: n, + }); + break; + case 'TaskNodeClick': + const r = + 'nx-console' === e.renderMode + ? () => e.broadcast({ type: 'RunTaskClick', taskId: t.data.id }) + : void 0; + this.openTaskNodeTooltip(t.ref, Object.assign({}, t.data, { runTaskCallback: r })); + break; + case 'EdgeClick': + const o = + 'nx-console' === e.renderMode + ? n => e.broadcast({ type: 'FileLinkClick', sourceRoot: t.data.sourceRoot, file: n }) + : void 0; + this.openEdgeToolTip(t.ref, { + type: t.data.type, + target: t.data.target, + source: t.data.source, + fileDependencies: t.data.fileDependencies, + fileClickCallback: o, + }); + } + }); + } + openProjectNodeToolTip(e, t) { + (this.currentTooltip = { type: 'projectNode', ref: e, props: t }), this.broadcastChange(); + } + openTaskNodeTooltip(e, t) { + (this.currentTooltip = { type: 'taskNode', ref: e, props: t }), this.broadcastChange(); + } + openEdgeToolTip(e, t) { + (this.currentTooltip = { type: 'projectEdge', ref: e, props: t }), this.broadcastChange(); + } + broadcastChange() { + this.subscribers.forEach(e => e(this.currentTooltip)); + } + subscribe(e) { + return ( + this.subscribers.add(e), + () => { + this.subscribers.delete(e); + } + ); + } + hideAll() { + (this.currentTooltip = null), this.broadcastChange(); + } + } + var eo = n(57228); + function to() { + return (0, r.useRef)(no()).current; + } + function no() { + return { + exclude: window.exclude, + watch: window.watch, + localMode: window.localMode, + projectGraphResponse: window.projectGraphResponse, + environment: window.environment, + appConfig: Object.assign({}, window.appConfig, { + showExperimentalFeatures: + 'true' === localStorage.getItem('showExperimentalFeatures') || window.appConfig.showExperimentalFeatures, + }), + useXstateInspect: window.useXstateInspect, + }; + } + let ro; + function oo() { + const e = no(); + return ( + ro || + (ro = new eo.GraphService( + 'cytoscape-graph', + fo('dark', 'light'), + 'nx-console' === e.environment ? 'nx-console' : void 0, + )), + ro + ); + } + const io = document.documentElement, + ao = 'nx-dep-graph-theme'; + let so; + function lo(e) { + const t = e.matches ? 'dark' : 'light'; + co(t), (so = t); + } + function co(e) { + 'dark' === e + ? (io.classList.add('dark'), io.classList.remove('light')) + : (io.classList.add('light'), io.classList.remove('dark')); + } + function uo(e) { + if (!('matchMedia' in window)) return; + const t = window.matchMedia('(prefers-color-scheme: dark)'); + if ('system' !== e) t.removeEventListener('change', lo), co(e), (so = e); + else { + const e = t.matches ? 'dark' : 'light'; + t.addEventListener('change', lo), co(e), (so = e); + } + localStorage.setItem(ao, e), (oo().theme = so); + } + function fo(e, t) { + return 'dark' === so ? e : t; + } + const ho = 'nx-dep-graph-rankdir'; + let po; + function vo(e) { + (po = e), localStorage.setItem(ho, e), (oo().rankDir = po); + } + const go = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z', + }), + ); + }); + const mo = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M11.25 9l-3 3m0 0l3 3m-3-3h7.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z', + }), + ); + }); + const yo = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3', + }), + ); + }); + var bo = n(87608), + xo = n.n(bo); + const wo = (0, r.memo)(function ({ + projects: e, + selectedProject: t, + selectedProjectChange: n, + lastPerfReport: r, + }) { + return vt('div', { + 'data-cy': 'debugger-panel', + className: + 'flex-column flex w-auto items-center items-center justify-items-center justify-items-center gap-4 border-b border-slate-900/10 bg-slate-50 p-4 transition-all dark:border-slate-300/10 dark:bg-transparent', + children: [ + vt('h4', { className: 'dark:text-sidebar-title-dark mr-4 text-lg font-normal', children: 'Debugger' }), + vt(_t, { + 'data-cy': 'project-select', + defaultValue: t, + onChange: e => n(e.currentTarget.value), + children: e.map(e => vt('option', { value: e.id, children: e.label }, e.id)), + }), + vt('p', { + className: 'text-sm', + children: [ + 'Last render took ', + r.renderTime, + 'ms:', + ' ', + vt('b', { className: 'text-medium font-mono', children: [r.numNodes, ' nodes'] }), + ' ', + '|', + ' ', + vt('b', { className: 'text-medium font-mono', children: [r.numEdges, ' edges'] }), + '.', + ], + }), + ], + }); + }); + function Eo(e, t, ...n) { + if (e in t) { + let r = t[e]; + return 'function' == typeof r ? r(...n) : r; + } + let r = new Error( + `Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t) + .map(e => `"${e}"`) + .join(', ')}.`, + ); + throw (Error.captureStackTrace && Error.captureStackTrace(r, Eo), r); + } + var ko = (e => ( + (e[(e.None = 0)] = 'None'), (e[(e.RenderStrategy = 1)] = 'RenderStrategy'), (e[(e.Static = 2)] = 'Static'), e + ))(ko || {}), + _o = (e => ((e[(e.Unmount = 0)] = 'Unmount'), (e[(e.Hidden = 1)] = 'Hidden'), e))(_o || {}); + function So({ ourProps: e, theirProps: t, slot: n, defaultTag: r, features: o, visible: i = !0, name: a }) { + let s = Co(t, e); + if (i) return Po(s, n, r, a); + let l = null != o ? o : 0; + if (2 & l) { + let { static: e = !1, ...t } = s; + if (e) return Po(t, n, r, a); + } + if (1 & l) { + let { unmount: e = !0, ...t } = s; + return Eo(e ? 0 : 1, { + 0: () => null, + 1: () => Po({ ...t, hidden: !0, style: { display: 'none' } }, n, r, a), + }); + } + return Po(s, n, r, a); + } + function Po(e, t = {}, n, o) { + let { as: i = n, children: a, refName: s = 'ref', ...l } = Do(e, ['unmount', 'static']), + c = void 0 !== e.ref ? { [s]: e.ref } : {}, + u = 'function' == typeof a ? a(t) : a; + l.className && 'function' == typeof l.className && (l.className = l.className(t)); + let d = {}; + if (t) { + let e = !1, + n = []; + for (let [r, o] of Object.entries(t)) 'boolean' == typeof o && (e = !0), !0 === o && n.push(r); + e && (d['data-headlessui-state'] = n.join(' ')); + } + if (i === r.Fragment && Object.keys(To(l)).length > 0) { + if (!(0, r.isValidElement)(u) || (Array.isArray(u) && u.length > 1)) + throw new Error( + [ + 'Passing props on "Fragment"!', + '', + `The current component <${o} /> is rendering a "Fragment".`, + 'However we need to passthrough the following props:', + Object.keys(l) + .map(e => ` - ${e}`) + .join('\n'), + '', + 'You can apply a few solutions:', + [ + 'Add an `as="..."` prop, to ensure that we render an actual element instead of a "Fragment".', + 'Render a single element as the child so that we can forward the props onto that element.', + ] + .map(e => ` - ${e}`) + .join('\n'), + ].join('\n'), + ); + return (0, r.cloneElement)( + u, + Object.assign( + {}, + Co(u.props, To(Do(l, ['ref']))), + d, + c, + (function (...e) { + return { + ref: e.every(e => null == e) + ? void 0 + : t => { + for (let n of e) null != n && ('function' == typeof n ? n(t) : (n.current = t)); + }, + }; + })(u.ref, c.ref), + ), + ); + } + return (0, r.createElement)( + i, + Object.assign({}, Do(l, ['ref']), i !== r.Fragment && c, i !== r.Fragment && d), + u, + ); + } + function Co(...e) { + if (0 === e.length) return {}; + if (1 === e.length) return e[0]; + let t = {}, + n = {}; + for (let r of e) + for (let e in r) + e.startsWith('on') && 'function' == typeof r[e] + ? (null != n[e] || (n[e] = []), n[e].push(r[e])) + : (t[e] = r[e]); + if (t.disabled || t['aria-disabled']) + return Object.assign(t, Object.fromEntries(Object.keys(n).map(e => [e, void 0]))); + for (let r in n) + Object.assign(t, { + [r](e, ...t) { + let o = n[r]; + for (let n of o) { + if ((e instanceof Event || (null == e ? void 0 : e.nativeEvent) instanceof Event) && e.defaultPrevented) + return; + n(e, ...t); + } + }, + }); + return t; + } + function jo(e) { + var t; + return Object.assign((0, r.forwardRef)(e), { displayName: null != (t = e.displayName) ? t : e.name }); + } + function To(e) { + let t = Object.assign({}, e); + for (let n in t) void 0 === t[n] && delete t[n]; + return t; + } + function Do(e, t = []) { + let n = Object.assign({}, e); + for (let r of t) r in n && delete n[r]; + return n; + } + function No() { + let e = [], + t = [], + n = { + enqueue(e) { + t.push(e); + }, + addEventListener: (e, t, r, o) => ( + e.addEventListener(t, r, o), n.add(() => e.removeEventListener(t, r, o)) + ), + requestAnimationFrame(...e) { + let t = requestAnimationFrame(...e); + return n.add(() => cancelAnimationFrame(t)); + }, + nextFrame: (...e) => n.requestAnimationFrame(() => n.requestAnimationFrame(...e)), + setTimeout(...e) { + let t = setTimeout(...e); + return n.add(() => clearTimeout(t)); + }, + microTask(...e) { + let t = { current: !0 }; + return ( + (function (e) { + 'function' == typeof queueMicrotask + ? queueMicrotask(e) + : Promise.resolve() + .then(e) + .catch(e => + setTimeout(() => { + throw e; + }), + ); + })(() => { + t.current && e[0](); + }), + n.add(() => { + t.current = !1; + }) + ); + }, + add: t => ( + e.push(t), + () => { + let n = e.indexOf(t); + if (n >= 0) { + let [t] = e.splice(n, 1); + t(); + } + } + ), + dispose() { + for (let t of e.splice(0)) t(); + }, + async workQueue() { + for (let e of t.splice(0)) await e(); + }, + }; + return n; + } + function Mo() { + let [e] = (0, r.useState)(No); + return (0, r.useEffect)(() => () => e.dispose(), [e]), e; + } + const Oo = 'undefined' == typeof window || 'undefined' == typeof document; + let Ao = Oo ? r.useEffect : r.useLayoutEffect; + function Ro(e) { + let t = (0, r.useRef)(e); + return ( + Ao(() => { + t.current = e; + }, [e]), + t + ); + } + let Lo = function (e) { + let t = Ro(e); + return r.default.useCallback((...e) => t.current(...e), [t]); + }, + Io = Symbol(); + function Bo(...e) { + let t = (0, r.useRef)(e); + (0, r.useEffect)(() => { + t.current = e; + }, [e]); + let n = Lo(e => { + for (let n of t.current) null != n && ('function' == typeof n ? n(e) : (n.current = e)); + }); + return e.every(e => null == e || (null == e ? void 0 : e[Io])) ? void 0 : n; + } + let Fo = { serverHandoffComplete: !1 }; + function zo() { + let [e, t] = (0, r.useState)(Fo.serverHandoffComplete); + return ( + (0, r.useEffect)(() => { + !0 !== e && t(!0); + }, [e]), + (0, r.useEffect)(() => { + !1 === Fo.serverHandoffComplete && (Fo.serverHandoffComplete = !0); + }, []), + e + ); + } + var Vo; + let Go = 0; + function Ho() { + return ++Go; + } + let Wo = + null != (Vo = r.default.useId) + ? Vo + : function () { + let e = zo(), + [t, n] = r.default.useState(e ? Ho : null); + return ( + Ao(() => { + null === t && n(Ho()); + }, [t]), + null != t ? '' + t : void 0 + ); + }; + var Uo = (e => ( + (e.Space = ' '), + (e.Enter = 'Enter'), + (e.Escape = 'Escape'), + (e.Backspace = 'Backspace'), + (e.Delete = 'Delete'), + (e.ArrowLeft = 'ArrowLeft'), + (e.ArrowUp = 'ArrowUp'), + (e.ArrowRight = 'ArrowRight'), + (e.ArrowDown = 'ArrowDown'), + (e.Home = 'Home'), + (e.End = 'End'), + (e.PageUp = 'PageUp'), + (e.PageDown = 'PageDown'), + (e.Tab = 'Tab'), + e + ))(Uo || {}); + var qo = (e => ( + (e[(e.First = 0)] = 'First'), + (e[(e.Previous = 1)] = 'Previous'), + (e[(e.Next = 2)] = 'Next'), + (e[(e.Last = 3)] = 'Last'), + (e[(e.Specific = 4)] = 'Specific'), + (e[(e.Nothing = 5)] = 'Nothing'), + e + ))(qo || {}); + function Yo(e, t) { + let n = t.resolveItems(); + if (n.length <= 0) return null; + let r = t.resolveActiveIndex(), + o = null != r ? r : -1, + i = (() => { + switch (e.focus) { + case 0: + return n.findIndex(e => !t.resolveDisabled(e)); + case 1: { + let e = n + .slice() + .reverse() + .findIndex((e, n, r) => !(-1 !== o && r.length - n - 1 >= o) && !t.resolveDisabled(e)); + return -1 === e ? e : n.length - 1 - e; + } + case 2: + return n.findIndex((e, n) => !(n <= o) && !t.resolveDisabled(e)); + case 3: { + let e = n + .slice() + .reverse() + .findIndex(e => !t.resolveDisabled(e)); + return -1 === e ? e : n.length - 1 - e; + } + case 4: + return n.findIndex(n => t.resolveId(n) === e.id); + case 5: + return null; + default: + !(function (e) { + throw new Error('Unexpected object: ' + e); + })(e); + } + })(); + return -1 === i ? r : i; + } + function Xo(e) { + let t = e.parentElement, + n = null; + for (; t && !(t instanceof HTMLFieldSetElement); ) + t instanceof HTMLLegendElement && (n = t), (t = t.parentElement); + let r = '' === (null == t ? void 0 : t.getAttribute('disabled')); + return ( + (!r || + !(function (e) { + if (!e) return !1; + let t = e.previousElementSibling; + for (; null !== t; ) { + if (t instanceof HTMLLegendElement) return !1; + t = t.previousElementSibling; + } + return !0; + })(n)) && + r + ); + } + function $o(e) { + return Oo + ? null + : e instanceof Node + ? e.ownerDocument + : null != e && e.hasOwnProperty('current') && e.current instanceof Node + ? e.current.ownerDocument + : document; + } + let Ko = [ + '[contentEditable=true]', + '[tabindex]', + 'a[href]', + 'area[href]', + 'button:not([disabled])', + 'iframe', + 'input:not([disabled])', + 'select:not([disabled])', + 'textarea:not([disabled])', + ] + .map(e => `${e}:not([tabindex='-1'])`) + .join(','); + var Zo = (e => ( + (e[(e.First = 1)] = 'First'), + (e[(e.Previous = 2)] = 'Previous'), + (e[(e.Next = 4)] = 'Next'), + (e[(e.Last = 8)] = 'Last'), + (e[(e.WrapAround = 16)] = 'WrapAround'), + (e[(e.NoScroll = 32)] = 'NoScroll'), + e + ))(Zo || {}), + Qo = (e => ( + (e[(e.Error = 0)] = 'Error'), + (e[(e.Overflow = 1)] = 'Overflow'), + (e[(e.Success = 2)] = 'Success'), + (e[(e.Underflow = 3)] = 'Underflow'), + e + ))(Qo || {}), + Jo = (e => ((e[(e.Previous = -1)] = 'Previous'), (e[(e.Next = 1)] = 'Next'), e))(Jo || {}); + function ei(e = document.body) { + return null == e ? [] : Array.from(e.querySelectorAll(Ko)); + } + var ti = (e => ((e[(e.Strict = 0)] = 'Strict'), (e[(e.Loose = 1)] = 'Loose'), e))(ti || {}); + function ni(e, t = 0) { + var n; + return ( + e !== (null == (n = $o(e)) ? void 0 : n.body) && + Eo(t, { + 0: () => e.matches(Ko), + 1() { + let t = e; + for (; null !== t; ) { + if (t.matches(Ko)) return !0; + t = t.parentElement; + } + return !1; + }, + }) + ); + } + function ri(e) { + let t = $o(e); + No().nextFrame(() => { + t && + !ni(t.activeElement, 0) && + (function (e) { + null == e || e.focus({ preventScroll: !0 }); + })(e); + }); + } + let oi = ['textarea', 'input'].join(','); + function ii(e, t = e => e) { + return e.slice().sort((e, n) => { + let r = t(e), + o = t(n); + if (null === r || null === o) return 0; + let i = r.compareDocumentPosition(o); + return i & Node.DOCUMENT_POSITION_FOLLOWING ? -1 : i & Node.DOCUMENT_POSITION_PRECEDING ? 1 : 0; + }); + } + function ai(e, t) { + return (function (e, t, n = !0, r = null) { + let o = Array.isArray(e) ? (e.length > 0 ? e[0].ownerDocument : document) : e.ownerDocument, + i = Array.isArray(e) ? (n ? ii(e) : e) : ei(e); + r = null != r ? r : o.activeElement; + let a, + s = (() => { + if (5 & t) return 1; + if (10 & t) return -1; + throw new Error('Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last'); + })(), + l = (() => { + if (1 & t) return 0; + if (2 & t) return Math.max(0, i.indexOf(r)) - 1; + if (4 & t) return Math.max(0, i.indexOf(r)) + 1; + if (8 & t) return i.length - 1; + throw new Error('Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last'); + })(), + c = 32 & t ? { preventScroll: !0 } : {}, + u = 0, + d = i.length; + do { + if (u >= d || u + d <= 0) return 0; + let e = l + u; + if (16 & t) e = (e + d) % d; + else { + if (e < 0) return 3; + if (e >= d) return 1; + } + (a = i[e]), null == a || a.focus(c), (u += s); + } while (a !== o.activeElement); + return ( + 6 & t && + (function (e) { + var t, n; + return null != (n = null == (t = null == e ? void 0 : e.matches) ? void 0 : t.call(e, oi)) && n; + })(a) && + a.select(), + a.hasAttribute('tabindex') || a.setAttribute('tabindex', '0'), + 2 + ); + })(ei(), t, !0, e); + } + function si(e, t, n) { + let o = Ro(t); + (0, r.useEffect)(() => { + function t(e) { + o.current(e); + } + return document.addEventListener(e, t, n), () => document.removeEventListener(e, t, n); + }, [e, n]); + } + let li = (0, r.createContext)(null); + li.displayName = 'OpenClosedContext'; + var ci = (e => ((e[(e.Open = 0)] = 'Open'), (e[(e.Closed = 1)] = 'Closed'), e))(ci || {}); + function ui() { + return (0, r.useContext)(li); + } + function di({ value: e, children: t }) { + return r.default.createElement(li.Provider, { value: e }, t); + } + function fi(e) { + var t; + if (e.type) return e.type; + let n = null != (t = e.as) ? t : 'button'; + return 'string' == typeof n && 'button' === n.toLowerCase() ? 'button' : void 0; + } + function hi(e, t) { + let [n, o] = (0, r.useState)(() => fi(e)); + return ( + Ao(() => { + o(fi(e)); + }, [e.type, e.as]), + Ao(() => { + n || + !t.current || + (t.current instanceof HTMLButtonElement && !t.current.hasAttribute('type') && o('button')); + }, [n, t]), + n + ); + } + var pi = (e => ((e[(e.Open = 0)] = 'Open'), (e[(e.Closed = 1)] = 'Closed'), e))(pi || {}), + vi = (e => ((e[(e.Pointer = 0)] = 'Pointer'), (e[(e.Other = 1)] = 'Other'), e))(vi || {}), + gi = (e => ( + (e[(e.OpenMenu = 0)] = 'OpenMenu'), + (e[(e.CloseMenu = 1)] = 'CloseMenu'), + (e[(e.GoToItem = 2)] = 'GoToItem'), + (e[(e.Search = 3)] = 'Search'), + (e[(e.ClearSearch = 4)] = 'ClearSearch'), + (e[(e.RegisterItem = 5)] = 'RegisterItem'), + (e[(e.UnregisterItem = 6)] = 'UnregisterItem'), + e + ))(gi || {}); + function mi(e, t = e => e) { + let n = null !== e.activeItemIndex ? e.items[e.activeItemIndex] : null, + r = ii(t(e.items.slice()), e => e.dataRef.current.domRef.current), + o = n ? r.indexOf(n) : null; + return -1 === o && (o = null), { items: r, activeItemIndex: o }; + } + let yi = { + 1: e => (1 === e.menuState ? e : { ...e, activeItemIndex: null, menuState: 1 }), + 0: e => (0 === e.menuState ? e : { ...e, menuState: 0 }), + 2: (e, t) => { + var n; + let r = mi(e), + o = Yo(t, { + resolveItems: () => r.items, + resolveActiveIndex: () => r.activeItemIndex, + resolveId: e => e.id, + resolveDisabled: e => e.dataRef.current.disabled, + }); + return { + ...e, + ...r, + searchQuery: '', + activeItemIndex: o, + activationTrigger: null != (n = t.trigger) ? n : 1, + }; + }, + 3: (e, t) => { + let n = '' !== e.searchQuery ? 0 : 1, + r = e.searchQuery + t.value.toLowerCase(), + o = ( + null !== e.activeItemIndex + ? e.items.slice(e.activeItemIndex + n).concat(e.items.slice(0, e.activeItemIndex + n)) + : e.items + ).find(e => { + var t; + return ( + (null == (t = e.dataRef.current.textValue) ? void 0 : t.startsWith(r)) && !e.dataRef.current.disabled + ); + }), + i = o ? e.items.indexOf(o) : -1; + return -1 === i || i === e.activeItemIndex + ? { ...e, searchQuery: r } + : { ...e, searchQuery: r, activeItemIndex: i, activationTrigger: 1 }; + }, + 4: e => ('' === e.searchQuery ? e : { ...e, searchQuery: '', searchActiveItemIndex: null }), + 5: (e, t) => { + let n = mi(e, e => [...e, { id: t.id, dataRef: t.dataRef }]); + return { ...e, ...n }; + }, + 6: (e, t) => { + let n = mi(e, e => { + let n = e.findIndex(e => e.id === t.id); + return -1 !== n && e.splice(n, 1), e; + }); + return { ...e, ...n, activationTrigger: 1 }; + }, + }, + bi = (0, r.createContext)(null); + function xi(e) { + let t = (0, r.useContext)(bi); + if (null === t) { + let t = new Error(`<${e} /> is missing a parent component.`); + throw (Error.captureStackTrace && Error.captureStackTrace(t, xi), t); + } + return t; + } + function wi(e, t) { + return Eo(t.type, yi, e, t); + } + bi.displayName = 'MenuContext'; + let Ei = r.Fragment, + ki = jo(function (e, t) { + let n = (0, r.useReducer)(wi, { + menuState: 1, + buttonRef: (0, r.createRef)(), + itemsRef: (0, r.createRef)(), + items: [], + searchQuery: '', + activeItemIndex: null, + activationTrigger: 1, + }), + [{ menuState: o, itemsRef: i, buttonRef: a }, s] = n, + l = Bo(t); + !(function (e, t, n = !0) { + let o = (0, r.useRef)(!1); + function i(n, r) { + if (!o.current || n.defaultPrevented) return; + let i = (function e(t) { + return 'function' == typeof t ? e(t()) : Array.isArray(t) || t instanceof Set ? t : [t]; + })(e), + a = r(n); + if (null !== a && a.ownerDocument.documentElement.contains(a)) { + for (let e of i) { + if (null === e) continue; + let t = e instanceof HTMLElement ? e : e.current; + if (null != t && t.contains(a)) return; + } + return !ni(a, ti.Loose) && -1 !== a.tabIndex && n.preventDefault(), t(n, a); + } + } + (0, r.useEffect)(() => { + requestAnimationFrame(() => { + o.current = n; + }); + }, [n]); + let a = (0, r.useRef)(null); + si( + 'mousedown', + e => { + var t, n; + o.current && + (a.current = + (null == (n = null == (t = e.composedPath) ? void 0 : t.call(e)) ? void 0 : n[0]) || e.target); + }, + !0, + ), + si( + 'click', + e => { + !a.current || (i(e, () => a.current), (a.current = null)); + }, + !0, + ), + si( + 'blur', + e => + i(e, () => + window.document.activeElement instanceof HTMLIFrameElement ? window.document.activeElement : null, + ), + !0, + ); + })( + [a, i], + (e, t) => { + var n; + s({ type: 1 }), ni(t, ti.Loose) || (e.preventDefault(), null == (n = a.current) || n.focus()); + }, + 0 === o, + ); + let c = (0, r.useMemo)(() => ({ open: 0 === o }), [o]), + u = e, + d = { ref: l }; + return r.default.createElement( + bi.Provider, + { value: n }, + r.default.createElement( + di, + { value: Eo(o, { 0: ci.Open, 1: ci.Closed }) }, + So({ ourProps: d, theirProps: u, slot: c, defaultTag: Ei, name: 'Menu' }), + ), + ); + }), + _i = jo(function (e, t) { + var n; + let [o, i] = xi('Menu.Button'), + a = Bo(o.buttonRef, t), + s = `headlessui-menu-button-${Wo()}`, + l = Mo(), + c = Lo(e => { + switch (e.key) { + case Uo.Space: + case Uo.Enter: + case Uo.ArrowDown: + e.preventDefault(), + e.stopPropagation(), + i({ type: 0 }), + l.nextFrame(() => i({ type: 2, focus: qo.First })); + break; + case Uo.ArrowUp: + e.preventDefault(), + e.stopPropagation(), + i({ type: 0 }), + l.nextFrame(() => i({ type: 2, focus: qo.Last })); + } + }), + u = Lo(e => { + if (e.key === Uo.Space) e.preventDefault(); + }), + d = Lo(t => { + if (Xo(t.currentTarget)) return t.preventDefault(); + e.disabled || + (0 === o.menuState + ? (i({ type: 1 }), + l.nextFrame(() => { + var e; + return null == (e = o.buttonRef.current) ? void 0 : e.focus({ preventScroll: !0 }); + })) + : (t.preventDefault(), i({ type: 0 }))); + }), + f = (0, r.useMemo)(() => ({ open: 0 === o.menuState }), [o]), + h = e; + return So({ + ourProps: { + ref: a, + id: s, + type: hi(e, o.buttonRef), + 'aria-haspopup': !0, + 'aria-controls': null == (n = o.itemsRef.current) ? void 0 : n.id, + 'aria-expanded': e.disabled ? void 0 : 0 === o.menuState, + onKeyDown: c, + onKeyUp: u, + onClick: d, + }, + theirProps: h, + slot: f, + defaultTag: 'button', + name: 'Menu.Button', + }); + }), + Si = ko.RenderStrategy | ko.Static, + Pi = jo(function (e, t) { + var n, o; + let [i, a] = xi('Menu.Items'), + s = Bo(i.itemsRef, t), + l = (function (...e) { + return (0, r.useMemo)(() => $o(...e), [...e]); + })(i.itemsRef), + c = `headlessui-menu-items-${Wo()}`, + u = Mo(), + d = ui(), + f = null !== d ? d === ci.Open : 0 === i.menuState; + (0, r.useEffect)(() => { + let e = i.itemsRef.current; + !e || (0 === i.menuState && e !== (null == l ? void 0 : l.activeElement) && e.focus({ preventScroll: !0 })); + }, [i.menuState, i.itemsRef, l]), + (function ({ container: e, accept: t, walk: n, enabled: o = !0 }) { + let i = (0, r.useRef)(t), + a = (0, r.useRef)(n); + (0, r.useEffect)(() => { + (i.current = t), (a.current = n); + }, [t, n]), + Ao(() => { + if (!e || !o) return; + let t = $o(e); + if (!t) return; + let n = i.current, + r = a.current, + s = Object.assign(e => n(e), { acceptNode: n }), + l = t.createTreeWalker(e, NodeFilter.SHOW_ELEMENT, s, !1); + for (; l.nextNode(); ) r(l.currentNode); + }, [e, o, i, a]); + })({ + container: i.itemsRef.current, + enabled: 0 === i.menuState, + accept: e => + 'menuitem' === e.getAttribute('role') + ? NodeFilter.FILTER_REJECT + : e.hasAttribute('role') + ? NodeFilter.FILTER_SKIP + : NodeFilter.FILTER_ACCEPT, + walk(e) { + e.setAttribute('role', 'none'); + }, + }); + let h = Lo(e => { + var t, n; + switch ((u.dispose(), e.key)) { + case Uo.Space: + if ('' !== i.searchQuery) + return e.preventDefault(), e.stopPropagation(), a({ type: 3, value: e.key }); + case Uo.Enter: + if ((e.preventDefault(), e.stopPropagation(), a({ type: 1 }), null !== i.activeItemIndex)) { + let { dataRef: e } = i.items[i.activeItemIndex]; + null == (n = null == (t = e.current) ? void 0 : t.domRef.current) || n.click(); + } + ri(i.buttonRef.current); + break; + case Uo.ArrowDown: + return e.preventDefault(), e.stopPropagation(), a({ type: 2, focus: qo.Next }); + case Uo.ArrowUp: + return e.preventDefault(), e.stopPropagation(), a({ type: 2, focus: qo.Previous }); + case Uo.Home: + case Uo.PageUp: + return e.preventDefault(), e.stopPropagation(), a({ type: 2, focus: qo.First }); + case Uo.End: + case Uo.PageDown: + return e.preventDefault(), e.stopPropagation(), a({ type: 2, focus: qo.Last }); + case Uo.Escape: + e.preventDefault(), + e.stopPropagation(), + a({ type: 1 }), + No().nextFrame(() => { + var e; + return null == (e = i.buttonRef.current) ? void 0 : e.focus({ preventScroll: !0 }); + }); + break; + case Uo.Tab: + e.preventDefault(), + e.stopPropagation(), + a({ type: 1 }), + No().nextFrame(() => { + ai(i.buttonRef.current, e.shiftKey ? Zo.Previous : Zo.Next); + }); + break; + default: + 1 === e.key.length && (a({ type: 3, value: e.key }), u.setTimeout(() => a({ type: 4 }), 350)); + } + }), + p = Lo(e => { + if (e.key === Uo.Space) e.preventDefault(); + }), + v = (0, r.useMemo)(() => ({ open: 0 === i.menuState }), [i]), + g = e; + return So({ + ourProps: { + 'aria-activedescendant': + null === i.activeItemIndex || null == (n = i.items[i.activeItemIndex]) ? void 0 : n.id, + 'aria-labelledby': null == (o = i.buttonRef.current) ? void 0 : o.id, + id: c, + onKeyDown: h, + onKeyUp: p, + role: 'menu', + tabIndex: 0, + ref: s, + }, + theirProps: g, + slot: v, + defaultTag: 'div', + features: Si, + visible: f, + name: 'Menu.Items', + }); + }), + Ci = r.Fragment, + ji = jo(function (e, t) { + let { disabled: n = !1, ...o } = e, + [i, a] = xi('Menu.Item'), + s = `headlessui-menu-item-${Wo()}`, + l = null !== i.activeItemIndex && i.items[i.activeItemIndex].id === s, + c = (0, r.useRef)(null), + u = Bo(t, c); + Ao(() => { + if (0 !== i.menuState || !l || 0 === i.activationTrigger) return; + let e = No(); + return ( + e.requestAnimationFrame(() => { + var e, t; + null == (t = null == (e = c.current) ? void 0 : e.scrollIntoView) || t.call(e, { block: 'nearest' }); + }), + e.dispose + ); + }, [c, l, i.menuState, i.activationTrigger, i.activeItemIndex]); + let d = (0, r.useRef)({ disabled: n, domRef: c }); + Ao(() => { + d.current.disabled = n; + }, [d, n]), + Ao(() => { + var e, t; + d.current.textValue = + null == (t = null == (e = c.current) ? void 0 : e.textContent) ? void 0 : t.toLowerCase(); + }, [d, c]), + Ao(() => (a({ type: 5, id: s, dataRef: d }), () => a({ type: 6, id: s })), [d, s]); + let f = Lo(e => { + if (n) return e.preventDefault(); + a({ type: 1 }), ri(i.buttonRef.current); + }), + h = Lo(() => { + if (n) return a({ type: 2, focus: qo.Nothing }); + a({ type: 2, focus: qo.Specific, id: s }); + }), + p = Lo(() => { + n || l || a({ type: 2, focus: qo.Specific, id: s, trigger: 0 }); + }), + v = Lo(() => { + n || !l || a({ type: 2, focus: qo.Nothing }); + }), + g = (0, r.useMemo)(() => ({ active: l, disabled: n }), [l, n]); + return So({ + ourProps: { + id: s, + ref: u, + role: 'menuitem', + tabIndex: !0 === n ? void 0 : -1, + 'aria-disabled': !0 === n || void 0, + disabled: void 0, + onClick: f, + onFocus: h, + onPointerMove: p, + onMouseMove: p, + onPointerLeave: v, + onMouseLeave: v, + }, + theirProps: o, + slot: g, + defaultTag: Ci, + name: 'Menu.Item', + }); + }), + Ti = Object.assign(ki, { Button: _i, Items: Pi, Item: ji }); + function Di() { + let e = (0, r.useRef)(!1); + return ( + Ao( + () => ( + (e.current = !0), + () => { + e.current = !1; + } + ), + [], + ), + e + ); + } + function Ni(e, ...t) { + e && t.length > 0 && e.classList.add(...t); + } + function Mi(e, ...t) { + e && t.length > 0 && e.classList.remove(...t); + } + var Oi = (e => ((e.Ended = 'ended'), (e.Cancelled = 'cancelled'), e))(Oi || {}); + function Ai(e, t, n, r) { + let o = n ? 'enter' : 'leave', + i = No(), + a = + void 0 !== r + ? (function (e) { + let t = { called: !1 }; + return (...n) => { + if (!t.called) return (t.called = !0), e(...n); + }; + })(r) + : () => {}; + 'enter' === o && (e.removeAttribute('hidden'), (e.style.display = '')); + let s = Eo(o, { enter: () => t.enter, leave: () => t.leave }), + l = Eo(o, { enter: () => t.enterTo, leave: () => t.leaveTo }), + c = Eo(o, { enter: () => t.enterFrom, leave: () => t.leaveFrom }); + return ( + Mi(e, ...t.enter, ...t.enterTo, ...t.enterFrom, ...t.leave, ...t.leaveFrom, ...t.leaveTo, ...t.entered), + Ni(e, ...s, ...c), + i.nextFrame(() => { + Mi(e, ...c), + Ni(e, ...l), + (function (e, t) { + let n = No(); + if (!e) return n.dispose; + let { transitionDuration: r, transitionDelay: o } = getComputedStyle(e), + [i, a] = [r, o].map(e => { + let [t = 0] = e + .split(',') + .filter(Boolean) + .map(e => (e.includes('ms') ? parseFloat(e) : 1e3 * parseFloat(e))) + .sort((e, t) => t - e); + return t; + }); + if (i + a !== 0) { + let r = []; + r.push( + n.addEventListener(e, 'transitionrun', o => { + o.target === o.currentTarget && + (r.splice(0).forEach(e => e()), + r.push( + n.addEventListener(e, 'transitionend', e => { + e.target === e.currentTarget && (t('ended'), r.splice(0).forEach(e => e())); + }), + n.addEventListener(e, 'transitioncancel', e => { + e.target === e.currentTarget && (t('cancelled'), r.splice(0).forEach(e => e())); + }), + )); + }), + ); + } else t('ended'); + n.add(() => t('cancelled')), n.dispose; + })(e, n => ('ended' === n && (Mi(e, ...s), Ni(e, ...t.entered)), a(n))); + }), + i.dispose + ); + } + function Ri(e = '') { + return e.split(' ').filter(e => e.trim().length > 1); + } + let Li = (0, r.createContext)(null); + Li.displayName = 'TransitionContext'; + var Ii = (e => ((e.Visible = 'visible'), (e.Hidden = 'hidden'), e))(Ii || {}); + let Bi = (0, r.createContext)(null); + function Fi(e) { + return 'children' in e + ? Fi(e.children) + : e.current.filter(({ el: e }) => null !== e.current).filter(({ state: e }) => 'visible' === e).length > 0; + } + function zi(e, t) { + let n = Ro(e), + o = (0, r.useRef)([]), + i = Di(), + a = Mo(), + s = Lo((e, t = _o.Hidden) => { + let r = o.current.findIndex(({ el: t }) => t === e); + -1 !== r && + (Eo(t, { + [_o.Unmount]() { + o.current.splice(r, 1); + }, + [_o.Hidden]() { + o.current[r].state = 'hidden'; + }, + }), + a.microTask(() => { + var e; + !Fi(o) && i.current && (null == (e = n.current) || e.call(n)); + })); + }), + l = Lo(e => { + let t = o.current.find(({ el: t }) => t === e); + return ( + t ? 'visible' !== t.state && (t.state = 'visible') : o.current.push({ el: e, state: 'visible' }), + () => s(e, _o.Unmount) + ); + }), + c = (0, r.useRef)([]), + u = (0, r.useRef)(Promise.resolve()), + d = (0, r.useRef)({ enter: [], leave: [], idle: [] }), + f = Lo((e, n, r) => { + c.current.splice(0), + t && (t.chains.current[n] = t.chains.current[n].filter(([t]) => t !== e)), + null == t || + t.chains.current[n].push([ + e, + new Promise(e => { + c.current.push(e); + }), + ]), + null == t || + t.chains.current[n].push([ + e, + new Promise(e => { + Promise.all(d.current[n].map(([e, t]) => t)).then(() => e()); + }), + ]), + 'enter' === n + ? (u.current = u.current.then(() => (null == t ? void 0 : t.wait.current)).then(() => r(n))) + : r(n); + }), + h = Lo((e, t, n) => { + Promise.all(d.current[t].splice(0).map(([e, t]) => t)) + .then(() => { + var e; + null == (e = c.current.shift()) || e(); + }) + .then(() => n(t)); + }); + return (0, r.useMemo)( + () => ({ children: o, register: l, unregister: s, onStart: f, onStop: h, wait: u, chains: d }), + [l, s, o, f, h, d, u], + ); + } + function Vi() {} + Bi.displayName = 'NestingContext'; + let Gi = ['beforeEnter', 'afterEnter', 'beforeLeave', 'afterLeave']; + function Hi(e) { + var t; + let n = {}; + for (let r of Gi) n[r] = null != (t = e[r]) ? t : Vi; + return n; + } + let Wi = ko.RenderStrategy, + Ui = jo(function (e, t) { + let { + beforeEnter: n, + afterEnter: o, + beforeLeave: i, + afterLeave: a, + enter: s, + enterFrom: l, + enterTo: c, + entered: u, + leave: d, + leaveFrom: f, + leaveTo: h, + ...p + } = e, + v = (0, r.useRef)(null), + g = Bo(v, t), + m = p.unmount ? _o.Unmount : _o.Hidden, + { + show: y, + appear: b, + initial: x, + } = (function () { + let e = (0, r.useContext)(Li); + if (null === e) + throw new Error( + 'A is used but it is missing a parent or .', + ); + return e; + })(), + [w, E] = (0, r.useState)(y ? 'visible' : 'hidden'), + k = (function () { + let e = (0, r.useContext)(Bi); + if (null === e) + throw new Error( + 'A is used but it is missing a parent or .', + ); + return e; + })(), + { register: _, unregister: S } = k, + P = (0, r.useRef)(null); + (0, r.useEffect)(() => _(v), [_, v]), + (0, r.useEffect)(() => { + if (m === _o.Hidden && v.current) + return y && 'visible' !== w ? void E('visible') : Eo(w, { hidden: () => S(v), visible: () => _(v) }); + }, [w, v, _, S, y, m]); + let C = Ro({ + enter: Ri(s), + enterFrom: Ri(l), + enterTo: Ri(c), + entered: Ri(u), + leave: Ri(d), + leaveFrom: Ri(f), + leaveTo: Ri(h), + }), + j = (function (e) { + let t = (0, r.useRef)(Hi(e)); + return ( + (0, r.useEffect)(() => { + t.current = Hi(e); + }, [e]), + t + ); + })({ beforeEnter: n, afterEnter: o, beforeLeave: i, afterLeave: a }), + T = zo(); + (0, r.useEffect)(() => { + if (T && 'visible' === w && null === v.current) + throw new Error('Did you forget to passthrough the `ref` to the actual DOM node?'); + }, [v, w, T]); + let D = x && !b, + N = !T || D || P.current === y ? 'idle' : y ? 'enter' : 'leave', + M = Lo(e => + Eo(e, { enter: () => j.current.beforeEnter(), leave: () => j.current.beforeLeave(), idle: () => {} }), + ), + O = Lo(e => + Eo(e, { enter: () => j.current.afterEnter(), leave: () => j.current.afterLeave(), idle: () => {} }), + ), + A = zi(() => { + E('hidden'), S(v); + }, k); + (function ({ container: e, direction: t, classes: n, onStart: r, onStop: o }) { + let i = Di(), + a = Mo(), + s = Ro(t); + Ao(() => { + let t = No(); + a.add(t.dispose); + let l = e.current; + if (l && 'idle' !== s.current && i.current) + return ( + t.dispose(), + r.current(s.current), + t.add( + Ai(l, n.current, 'enter' === s.current, e => { + t.dispose(), + Eo(e, { + [Oi.Ended]() { + o.current(s.current); + }, + [Oi.Cancelled]: () => {}, + }); + }), + ), + t.dispose + ); + }, [t]); + })({ + container: v, + classes: C, + direction: N, + onStart: Ro(e => { + A.onStart(v, e, M); + }), + onStop: Ro(e => { + A.onStop(v, e, O), 'leave' === e && !Fi(A) && (E('hidden'), S(v)); + }), + }), + (0, r.useEffect)(() => { + !D || (m === _o.Hidden ? (P.current = null) : (P.current = y)); + }, [y, D, w]); + let R = p, + L = { ref: g }; + return r.default.createElement( + Bi.Provider, + { value: A }, + r.default.createElement( + di, + { value: Eo(w, { visible: ci.Open, hidden: ci.Closed }) }, + So({ + ourProps: L, + theirProps: R, + defaultTag: 'div', + features: Wi, + visible: 'visible' === w, + name: 'Transition.Child', + }), + ), + ); + }), + qi = jo(function (e, t) { + let { show: n, appear: o = !1, unmount: i, ...a } = e, + s = (0, r.useRef)(null), + l = Bo(s, t); + zo(); + let c = ui(); + if ((void 0 === n && null !== c && (n = Eo(c, { [ci.Open]: !0, [ci.Closed]: !1 })), ![!0, !1].includes(n))) + throw new Error('A is used but it is missing a `show={true | false}` prop.'); + let [u, d] = (0, r.useState)(n ? 'visible' : 'hidden'), + f = zi(() => { + d('hidden'); + }), + [h, p] = (0, r.useState)(!0), + v = (0, r.useRef)([n]); + Ao(() => { + !1 !== h && v.current[v.current.length - 1] !== n && (v.current.push(n), p(!1)); + }, [v, n]); + let g = (0, r.useMemo)(() => ({ show: n, appear: o, initial: h }), [n, o, h]); + (0, r.useEffect)(() => { + if (n) d('visible'); + else if (Fi(f)) { + let e = s.current; + if (!e) return; + let t = e.getBoundingClientRect(); + 0 === t.x && 0 === t.y && 0 === t.width && 0 === t.height && d('hidden'); + } else d('hidden'); + }, [n, f]); + let m = { unmount: i }; + return r.default.createElement( + Bi.Provider, + { value: f }, + r.default.createElement( + Li.Provider, + { value: g }, + So({ + ourProps: { ...m, as: r.Fragment, children: r.default.createElement(Ui, { ref: l, ...m, ...a }) }, + theirProps: {}, + defaultTag: r.Fragment, + features: Wi, + visible: 'visible' === u, + name: 'Transition', + }), + ), + ); + }), + Yi = jo(function (e, t) { + let n = null !== (0, r.useContext)(Li), + o = null !== ui(); + return r.default.createElement( + r.default.Fragment, + null, + !n && o ? r.default.createElement(qi, { ref: t, ...e }) : r.default.createElement(Ui, { ref: t, ...e }), + ); + }), + Xi = Object.assign(qi, { Child: Yi, Root: qi }); + const $i = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25', + }), + ); + }); + const Ki = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z', + }), + ); + }); + const Zi = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z', + }), + ); + }); + function Qi() { + const [e, t] = (0, r.useState)(localStorage.getItem(ao) || 'system'); + return ( + (0, r.useEffect)(() => { + uo(e); + }, [e]), + vt(Ti, { + as: 'div', + className: 'relative inline-block text-left', + children: [ + vt('div', { + children: vt(Ti.Button, { + className: + 'inline-flex w-full justify-center rounded-md p-2 text-sm font-medium focus:outline-none focus-visible:ring-2 focus-visible:ring-white focus-visible:ring-opacity-75 dark:text-sky-500', + 'data-cy': 'theme-open-modal-button', + children: [ + vt('span', { className: 'sr-only', children: 'Theme switcher' }), + 'system' === e && vt($i, { className: 'h-4 w-4', 'aria-hidden': 'true' }), + 'light' === e && vt(Ki, { className: 'h-4 w-4', 'aria-hidden': 'true' }), + 'dark' === e && vt(Zi, { className: 'h-4 w-4', 'aria-hidden': 'true' }), + ], + }), + }), + vt(Xi, { + as: r.Fragment, + enter: 'transition ease-out duration-100', + enterFrom: 'transform opacity-0 scale-95', + enterTo: 'transform opacity-100 scale-100', + leave: 'transition ease-in duration-75', + leaveFrom: 'transform opacity-100 scale-100', + leaveTo: 'transform opacity-0 scale-95', + children: vt(Ti.Items, { + className: + 'absolute right-0 z-50 mt-2 w-36 origin-top-right rounded-md bg-white text-slate-500 shadow-lg ring-1 ring-slate-900/10 ring-opacity-5 focus:outline-none dark:bg-slate-800 dark:text-slate-400 dark:ring-0', + children: vt('div', { + className: 'px-1 py-1', + children: [ + vt(Ti.Item, { + children: ({ active: n }) => + vt('button', { + 'data-cy': 'system-theme-button', + className: xo()( + 'system' === e ? 'text-blue-500 dark:text-sky-500' : '', + n ? 'bg-slate-50 dark:bg-slate-600/30' : '', + 'group flex w-full items-center rounded-md px-2 py-2 text-sm', + ), + onClick: () => t('system'), + children: [vt($i, { className: 'mr-2 h-4 w-4', 'aria-hidden': 'true' }), 'System'], + }), + }), + vt(Ti.Item, { + children: ({ active: n }) => + vt('button', { + 'data-cy': 'light-theme-button', + className: xo()( + 'light' === e ? 'text-blue-500 dark:text-sky-500' : '', + n ? 'bg-slate-50 dark:bg-slate-600/30' : '', + 'group flex w-full items-center rounded-md px-2 py-2 text-sm', + ), + onClick: () => t('light'), + children: [vt(Ki, { className: 'mr-2 h-4 w-4', 'aria-hidden': 'true' }), 'Light'], + }), + }), + vt(Ti.Item, { + children: ({ active: n }) => + vt('button', { + 'data-cy': 'dark-theme-button', + className: xo()( + 'dark' === e ? 'text-blue-500 dark:text-sky-500' : '', + n ? 'bg-slate-50 dark:bg-slate-600/30' : '', + 'group flex w-full items-center rounded-md px-2 py-2 text-sm', + ), + onClick: () => t('dark'), + children: [vt(Zi, { className: 'mr-2 h-4 w-4', 'aria-hidden': 'true' }), 'Dark'], + }), + }), + ], + }), + }), + }), + ], + }) + ); + } + const Ji = () => { + const [e, t] = (0, r.useState)(), + [n, o] = (0, r.useState)(), + i = dr(); + if (i.pathname === e) return n; + t(i.pathname); + const a = Ht(Ss(), i).at(-1), + { environment: s } = no(); + let l; + return ( + (l = + 'dev' === s + ? { workspace: a.pathname.split('/')[1], currentPath: `/${a.pathname.split('/').slice(2).join('/')}` } + : { workspace: 'local', currentPath: a.pathname }), + o(l), + l + ); + }; + function ea(e) { + return to().appConfig.showExperimentalFeatures + ? r.Children.map(e.children, e => (0, r.cloneElement)(e, { 'data-cy': 'experimental-feature' })) + : null; + } + const ta = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M3 7.5L7.5 3m0 0L12 7.5M7.5 3v13.5m13.5 0L16.5 21m0 0L12 16.5m4.5 4.5V7.5', + }), + ); + }); + const na = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M7.5 21L3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5', + }), + ); + }); + function ra() { + const [e, t] = (0, r.useState)(localStorage.getItem(ho) || 'TB'); + return ( + (0, r.useEffect)(() => { + vo(e); + }, [e]), + vt('div', { + className: 'relative inline-block text-left', + children: vt('button', { + className: + 'inline-flex w-full justify-center rounded-md p-2 text-sm font-medium focus:outline-none focus-visible:ring-2 focus-visible:ring-white focus-visible:ring-opacity-75 dark:text-sky-500', + 'data-cy': 'rankdir-change-button', + children: [ + vt('span', { className: 'sr-only', children: 'Graph layout direction switcher' }), + 'TB' === e && + vt('button', { + title: 'Set graph direction to left-to-right', + 'data-cy': 'lr-rankdir-button', + onClick: () => t('LR'), + children: vt(ta, { className: 'h-4 w-4', 'aria-hidden': 'true' }), + }), + 'LR' === e && + vt('button', { + title: 'Set graph direction to top-to-bottom', + 'data-cy': 'tb-rankdir-button', + onClick: () => t('TB'), + children: vt(na, { className: 'h-4 w-4', 'aria-hidden': 'true' }), + }), + ], + }), + }) + ); + } + var oa = n(53536); + const ia = { + on: { + updateGraph: { + target: 'customSelected', + actions: [ + (0, oa.f0)((e, t) => { + const n = e.projects.map(e => e.name), + r = t.projects.map(e => e.name).filter(e => !n.includes(e)); + e.selectedProjects = [...e.selectedProjects, ...r]; + }), + 'setGraph', + (0, l.send)( + (e, t) => ({ + type: 'notifyGraphUpdateGraph', + projects: e.projects, + dependencies: e.dependencies, + fileMap: e.fileMap, + affectedProjects: e.affectedProjects, + workspaceLayout: e.workspaceLayout, + groupByFolder: e.groupByFolder, + selectedProjects: e.selectedProjects, + }), + { to: e => e.graphActor }, + ), + ], + }, + }, + }, + aa = { + entry: [ + (0, oa.f0)((e, t) => { + 'focusProject' === t.type && (e.focusedProject = t.projectName); + }), + 'notifyGraphFocusProject', + ], + exit: [ + (0, oa.f0)(e => { + e.focusedProject = null; + }), + ], + on: { + incrementSearchDepth: { actions: ['incrementSearchDepth', 'notifyGraphFocusProject'] }, + decrementSearchDepth: { actions: ['decrementSearchDepth', 'notifyGraphFocusProject'] }, + setSearchDepthEnabled: { actions: ['setSearchDepthEnabled', 'notifyGraphFocusProject'] }, + setSearchDepth: { actions: ['setSearchDepth', 'notifyGraphFocusProject'] }, + unfocusProject: { target: 'unselected' }, + updateGraph: { + actions: [ + 'setGraph', + (0, l.send)( + (e, t) => ({ + type: 'notifyGraphUpdateGraph', + projects: e.projects, + dependencies: e.dependencies, + fileMap: e.fileMap, + affectedProjects: e.affectedProjects, + workspaceLayout: e.workspaceLayout, + groupByFolder: e.groupByFolder, + selectedProjects: e.selectedProjects, + }), + { to: e => e.graphActor }, + ), + 'notifyGraphFocusProject', + ], + }, + }, + }, + sa = (e, t) => { + const n = oo(); + t(t => { + const { selectedProjectNames: r, perfReport: o } = n.handleProjectEvent(t); + e({ type: 'setSelectedProjectsFromGraph', selectedProjectNames: r, perfReport: o }); + }); + }, + la = { + entry: [ + (0, oa.f0)((e, t) => { + 'filterByText' === t.type && (e.textFilter = t.search); + }), + 'notifyGraphFilterProjectsByText', + ], + on: { + clearTextFilter: { + target: 'unselected', + actions: (0, oa.f0)(e => { + (e.includePath = !1), (e.textFilter = ''); + }), + }, + setIncludeProjectsByPath: { actions: ['setIncludeProjectsByPath', 'notifyGraphFilterProjectsByText'] }, + incrementSearchDepth: { actions: ['incrementSearchDepth', 'notifyGraphFilterProjectsByText'] }, + decrementSearchDepth: { actions: ['decrementSearchDepth', 'notifyGraphFilterProjectsByText'] }, + setSearchDepthEnabled: { actions: ['setSearchDepthEnabled', 'notifyGraphFilterProjectsByText'] }, + updateGraph: { + actions: [ + 'setGraph', + (0, l.send)( + (e, t) => ({ + type: 'notifyGraphUpdateGraph', + projects: e.projects, + dependencies: e.dependencies, + fileMap: e.fileMap, + affectedProjects: e.affectedProjects, + workspaceLayout: e.workspaceLayout, + groupByFolder: e.groupByFolder, + selectedProjects: e.selectedProjects, + }), + { to: e => e.graphActor }, + ), + 'notifyGraphFilterProjectsByText', + ], + }, + }, + }, + ca = { + entry: [ + (0, oa.f0)((e, t) => { + 'setTracingStart' === t.type + ? (e.tracing.start = t.projectName) + : 'setTracingEnd' === t.type && (e.tracing.end = t.projectName); + }), + 'notifyGraphTracing', + ], + exit: [ + (0, oa.f0)((e, t) => { + 'setTracingStart' !== t.type && + 'setTracingEnd' !== t.type && + ((e.tracing.start = null), (e.tracing.end = null)); + }), + ], + on: { + clearTraceStart: { + actions: [ + (0, oa.f0)(e => { + e.tracing.start = null; + }), + 'notifyGraphTracing', + ], + }, + clearTraceEnd: { + actions: [ + (0, oa.f0)(e => { + e.tracing.end = null; + }), + 'notifyGraphTracing', + ], + }, + }, + }, + ua = { + entry: ['notifyGraphHideAllProjects'], + on: { + updateGraph: { + target: 'customSelected', + actions: [ + (0, oa.f0)((e, t) => { + const n = e.projects.map(e => e.name), + r = t.projects.map(e => e.name).filter(e => !n.includes(e)); + e.selectedProjects = [...e.selectedProjects, ...r]; + }), + 'setGraph', + (0, l.send)( + (e, t) => ({ + type: 'notifyGraphUpdateGraph', + projects: e.projects, + dependencies: e.dependencies, + fileMap: e.fileMap, + affectedProjects: e.affectedProjects, + workspaceLayout: e.workspaceLayout, + groupByFolder: e.groupByFolder, + selectedProjects: e.selectedProjects, + }), + { to: e => e.graphActor }, + ), + ], + }, + }, + }, + da = (0, s.C)( + { + predictableActionArguments: !0, + id: 'project-graph', + initial: 'idle', + context: { + projects: [], + dependencies: {}, + affectedProjects: [], + selectedProjects: [], + focusedProject: null, + textFilter: '', + includePath: !1, + searchDepth: 1, + searchDepthEnabled: !0, + groupByFolder: !1, + collapseEdges: !1, + workspaceLayout: { libsDir: '', appsDir: '' }, + fileMap: {}, + graphActor: null, + lastPerfReport: { numEdges: 0, numNodes: 0, renderTime: 0 }, + tracing: { start: null, end: null, algorithm: 'shortest' }, + }, + states: { idle: {}, unselected: ua, customSelected: ia, focused: aa, textFiltered: la, tracing: ca }, + on: { + setProjects: { + target: 'unselected', + actions: [ + 'setGraph', + (0, l.send)( + (e, t) => ({ + type: 'notifyGraphInitGraph', + projects: e.projects, + dependencies: e.dependencies, + fileMap: e.fileMap, + affectedProjects: e.affectedProjects, + workspaceLayout: e.workspaceLayout, + groupByFolder: e.groupByFolder, + collapseEdges: e.collapseEdges, + }), + { to: e => e.graphActor }, + ), + ], + }, + setSelectedProjectsFromGraph: { + actions: [ + (0, oa.f0)((e, t) => { + (e.selectedProjects = t.selectedProjectNames), (e.lastPerfReport = t.perfReport); + }), + ], + }, + selectProject: { target: 'customSelected', actions: ['notifyGraphShowProjects'] }, + selectProjects: { target: 'customSelected', actions: ['notifyGraphShowProjects'] }, + selectAll: { target: 'customSelected', actions: ['notifyGraphShowAllProjects'] }, + selectAffected: { target: 'customSelected', actions: ['notifyGraphShowAffectedProjects'] }, + deselectProject: [ + { target: 'unselected', cond: 'deselectLastProject' }, + { target: 'customSelected', actions: ['notifyGraphHideProjects'] }, + ], + deselectProjects: [ + { target: 'unselected', cond: 'deselectLastProject' }, + { target: 'customSelected', actions: ['notifyGraphHideProjects'] }, + ], + deselectAll: { target: 'unselected' }, + focusProject: { target: 'focused' }, + setTracingStart: { target: 'tracing' }, + setTracingEnd: { target: 'tracing' }, + setCollapseEdges: { + actions: [ + 'setCollapseEdges', + (0, l.send)( + (e, t) => ({ + type: 'notifyGraphUpdateGraph', + projects: e.projects, + dependencies: e.dependencies, + affectedProjects: e.affectedProjects, + fileMap: e.fileMap, + workspaceLayout: e.workspaceLayout, + groupByFolder: e.groupByFolder, + collapseEdges: e.collapseEdges, + selectedProjects: e.selectedProjects, + }), + { to: e => e.graphActor }, + ), + ], + }, + setGroupByFolder: { + actions: [ + 'setGroupByFolder', + (0, l.send)( + (e, t) => ({ + type: 'notifyGraphUpdateGraph', + projects: e.projects, + dependencies: e.dependencies, + affectedProjects: e.affectedProjects, + fileMap: e.fileMap, + workspaceLayout: e.workspaceLayout, + groupByFolder: e.groupByFolder, + collapseEdges: e.collapseEdges, + selectedProjects: e.selectedProjects, + }), + { to: e => e.graphActor }, + ), + ], + }, + setIncludeProjectsByPath: { + actions: [ + (0, oa.f0)((e, t) => { + e.includePath = t.includeProjectsByPath; + }), + ], + }, + incrementSearchDepth: { actions: ['incrementSearchDepth'] }, + decrementSearchDepth: { actions: ['decrementSearchDepth'] }, + setSearchDepthEnabled: { actions: ['setSearchDepthEnabled'] }, + setSearchDepth: { actions: ['setSearchDepth'] }, + setTracingAlgorithm: { + actions: [ + (0, oa.f0)((e, t) => { + e.tracing.algorithm = t.algorithm; + }), + 'notifyGraphTracing', + ], + }, + filterByText: { target: 'textFiltered' }, + }, + }, + { + guards: { deselectLastProject: e => e.selectedProjects.length <= 1 }, + actions: { + setGroupByFolder: (0, oa.f0)((e, t) => { + 'setGroupByFolder' === t.type && (e.groupByFolder = t.groupByFolder); + }), + setCollapseEdges: (0, oa.f0)((e, t) => { + 'setCollapseEdges' === t.type && (e.collapseEdges = t.collapseEdges); + }), + incrementSearchDepth: (0, oa.f0)(e => { + (e.searchDepthEnabled = !0), (e.searchDepth = e.searchDepth + 1); + }), + decrementSearchDepth: (0, oa.f0)(e => { + (e.searchDepthEnabled = !0), (e.searchDepth = e.searchDepth > 1 ? e.searchDepth - 1 : 1); + }), + setSearchDepth: (0, oa.f0)((e, t) => { + 'setSearchDepth' === t.type && + ((e.searchDepthEnabled = !0), (e.searchDepth = t.searchDepth > 1 ? t.searchDepth : 1)); + }), + setSearchDepthEnabled: (0, oa.f0)((e, t) => { + 'setSearchDepthEnabled' === t.type && (e.searchDepthEnabled = t.searchDepthEnabled); + }), + setIncludeProjectsByPath: (0, oa.f0)((e, t) => { + 'setIncludeProjectsByPath' === t.type && (e.includePath = t.includeProjectsByPath); + }), + setGraph: (0, oa.f0)((e, t) => { + ('setProjects' !== t.type && 'updateGraph' !== t.type) || + ((e.projects = t.projects), + (e.dependencies = t.dependencies), + (e.fileMap = t.fileMap), + (e.graphActor = (0, i.Cs)(sa, 'graphActor')), + 'setProjects' === t.type && + ((e.workspaceLayout = t.workspaceLayout), (e.affectedProjects = t.affectedProjects))); + }), + notifyGraphTracing: (0, l.send)( + (e, t) => ({ + type: 'notifyGraphTracing', + start: e.tracing.start, + end: e.tracing.end, + algorithm: e.tracing.algorithm, + }), + { to: e => e.graphActor }, + ), + notifyGraphShowProjects: (0, l.send)( + (e, t) => { + if ('selectProject' === t.type || 'selectProjects' === t.type) + return 'selectProject' === t.type + ? { type: 'notifyGraphShowProjects', projectNames: [t.projectName] } + : { type: 'notifyGraphShowProjects', projectNames: t.projectNames }; + }, + { to: e => e.graphActor }, + ), + notifyGraphHideProjects: (0, l.send)( + (e, t) => { + if ('deselectProject' === t.type || 'deselectProjects' === t.type) + return 'deselectProject' === t.type + ? { type: 'notifyGraphHideProjects', projectNames: [t.projectName] } + : { type: 'notifyGraphHideProjects', projectNames: t.projectNames }; + }, + { to: e => e.graphActor }, + ), + notifyGraphShowAllProjects: (0, l.send)((e, t) => ({ type: 'notifyGraphShowAllProjects' }), { + to: e => e.graphActor, + }), + notifyGraphHideAllProjects: (0, l.send)((e, t) => ({ type: 'notifyGraphHideAllProjects' }), { + to: e => e.graphActor, + }), + notifyGraphShowAffectedProjects: (0, l.send)( + { type: 'notifyGraphShowAffectedProjects' }, + { to: e => e.graphActor }, + ), + notifyGraphFocusProject: (0, l.send)( + (e, t) => ({ + type: 'notifyGraphFocusProject', + projectName: e.focusedProject, + searchDepth: e.searchDepthEnabled ? e.searchDepth : -1, + }), + { to: e => e.graphActor }, + ), + notifyGraphFilterProjectsByText: (0, l.send)( + (e, t) => ({ + type: 'notifyGraphFilterProjectsByText', + search: e.textFilter, + includeProjectsByPath: e.includePath, + searchDepth: e.searchDepthEnabled ? e.searchDepth : -1, + }), + { to: e => e.graphActor }, + ), + }, + }, + ); + let fa, + ha = (0, i.kJ)(da, { devTools: !!window.useXstateInspect }); + function pa() { + return ha.status === i.TM.NotStarted && ha.start(), ha; + } + var va = n(83576); + const ga = () => { + const { environment: e } = no(), + { selectedWorkspaceId: t } = vr(), + [n] = Xr(); + return (r, o) => { + let i = ''; + return 'object' == typeof r + ? ((i = 'dev' === e ? `/${t}${r.pathname}` : r.pathname), + Object.assign({}, r, { pathname: i, search: r.search ? r.search.toString() : o ? n.toString() : '' })) + : 'string' == typeof r + ? ((i = 'dev' === e ? `/${t}${r}` : r), { pathname: i, search: o ? n.toString() : '' }) + : void 0; + }; + }; + function ma(e, t) { + const n = e + .replace(t, '') + .split('/') + .filter(e => '' !== e); + return n.pop(), n; + } + function ya(e, t) { + return t.filter(t => t.type === e).sort((e, t) => e.name.localeCompare(t.name)); + } + function ba(e, t) { + let n = {}; + return ( + e.forEach(e => { + const r = 'app' === e.type || 'e2e' === e.type ? t.appsDir : t.libsDir, + o = ma(e.data.root, r).join('/'); + n.hasOwnProperty(o) || (n[o] = []), n[o].push(e); + }), + n + ); + } + function xa(e, t, n) { + return n ? `${e}:${t}:${n}` : `${e}:${t}`; + } + const wa = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + fill: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + fillRule: 'evenodd', + d: 'M11.54 22.351l.07.04.028.016a.76.76 0 00.723 0l.028-.015.071-.041a16.975 16.975 0 001.144-.742 19.58 19.58 0 002.683-2.282c1.944-1.99 3.963-4.98 3.963-8.827a8.25 8.25 0 00-16.5 0c0 3.846 2.02 6.837 3.963 8.827a19.58 19.58 0 002.682 2.282 16.975 16.975 0 001.145.742zM12 13.5a3 3 0 100-6 3 3 0 000 6z', + clipRule: 'evenodd', + }), + ); + }); + const Ea = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + fill: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + fillRule: 'evenodd', + d: 'M3 2.25a.75.75 0 01.75.75v.54l1.838-.46a9.75 9.75 0 016.725.738l.108.054a8.25 8.25 0 005.58.652l3.109-.732a.75.75 0 01.917.81 47.784 47.784 0 00.005 10.337.75.75 0 01-.574.812l-3.114.733a9.75 9.75 0 01-6.594-.77l-.108-.054a8.25 8.25 0 00-5.69-.625l-2.202.55V21a.75.75 0 01-1.5 0V3A.75.75 0 013 2.25z', + clipRule: 'evenodd', + }), + ); + }); + function ka({ id: e }) { + const t = pa(), + { start: n, end: r, algorithm: o } = t.getSnapshot().context.tracing, + i = ga(), + a = hr(), + s = encodeURIComponent(e); + return vt('div', { + className: 'grid grid-cols-3 gap-4', + children: [ + vt(Jr, { to: i(`/projects/${s}`, !0), children: 'Focus' }), + vt(Qr, { + onClick: function () { + t.send({ type: 'deselectProject', projectName: e }), a(i('/projects', !0)); + }, + children: 'Exclude', + }), + vt( + Qr, + n + ? { + className: 'flex flex-row items-center', + onClick: function () { + a(i(`/projects/trace/${encodeURIComponent(n)}/${s}`, !0)); + }, + children: [vt(Ea, { className: 'mr-2 h-5 w-5 text-slate-500' }), 'End'], + } + : { + className: 'flex flex-row items-center', + onClick: function () { + a(i(`/projects/trace/${s}`, !0)); + }, + children: [vt(wa, { className: 'mr-2 h-5 w-5 text-slate-500' }), 'Start'], + }, + ), + ], + }); + } + const _a = (function () { + if (!fa) { + const e = oo(); + fa = new tooltip_service_GraphTooltipService(e); + } + return fa; + })(); + function Sa() { + const e = (0, va.useSyncExternalStore)( + e => _a.subscribe(e), + () => _a.currentTooltip, + ); + let t; + if (e) + switch (e.type) { + case 'projectNode': + t = vt(Ct, Object.assign({}, e.props, { children: vt(ka, Object.assign({}, e.props)) })); + break; + case 'projectEdge': + t = vt(St, Object.assign({}, e.props)); + break; + case 'taskNode': + t = vt(Tt, Object.assign({}, e.props)); + } + return t ? vt(gt, { content: t, open: !0, reference: e.ref, placement: 'top', openAction: 'manual' }) : null; + } + function Pa() { + const e = pa(), + t = oo(), + n = (0, va.useSyncExternalStore)( + e => t.listen(e), + () => t.lastPerformanceReport, + ), + r = 0 !== n.numNodes, + o = to(), + i = to(), + a = hr(), + s = Ji(), + { selectedWorkspaceId: l, selectedTaskId: c } = vr(), + u = s.currentPath, + d = u.startsWith('/tasks') ? '/tasks' : '/projects'; + return vt(ht.HY, { + children: [ + vt('div', { + className: + ('nx-console' === i.environment + ? 'absolute top-5 left-5 z-50 bg-white' + : 'relative flex h-full overflow-y-scroll') + + ' w-72 flex-col pb-10 shadow-lg ring-1 ring-slate-900/10 ring-opacity-10 transition-all dark:ring-slate-300/10', + id: 'sidebar', + children: [ + 'nx-console' !== i.environment + ? vt(ht.HY, { + children: [ + vt('div', { + className: + 'border-b border-slate-900/10 text-slate-700 dark:border-slate-300/10 dark:bg-transparent dark:text-slate-400', + children: vt('div', { + className: 'mx-4 my-2 flex items-center justify-between', + children: [ + vt('svg', { + className: 'h-10 w-auto text-slate-900 dark:text-white', + viewBox: '0 0 24 24', + fill: 'currentColor', + xmlns: 'http://www.w3.org/2000/svg', + children: [ + vt('title', { children: 'Nx' }), + vt('path', { + d: 'M11.987 14.138l-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998 3.044 4.759zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833h3.645zm5.634 4.134a2.061 2.061 0 0 0-1.969 1.336 1.963 1.963 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88zm3.39 1.061c-.375-.13-.8-.277-1.109-.681-.06-.08-.116-.17-.176-.265a2.143 2.143 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.482 2.482 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.723.723 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.364 5.364 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596zm.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74z', + }), + ], + }), + vt(_t, { + 'data-cy': 'route-select', + defaultValue: u.startsWith('/projects') ? '/projects' : '/tasks', + onChange: t => { + e.send('deselectAll'), + 'dev' === o.environment + ? a(`/${encodeURIComponent(s.workspace)}${t.currentTarget.value}`) + : a(`${t.currentTarget.value}`); + }, + children: [ + { route: '/projects', label: 'Projects' }, + { route: '/tasks', label: 'Tasks' }, + ].map(e => vt('option', { value: e.route, children: e.label }, e.label)), + }), + vt(ea, { children: vt(ra, {}) }), + vt(Qi, {}), + ], + }), + }), + vt('a', { + id: 'help', + className: ' mt-3 flex cursor-pointer items-center px-4 text-xs hover:underline ', + href: 'https://nx.dev/structure/dependency-graph', + rel: 'noreferrer', + target: '_blank', + children: [vt(go, { className: 'mr-2 h-4 w-4' }), 'Analyse and visualize your workspace.'], + }), + ], + }) + : null, + vt(Nr, {}), + ], + }), + vt('div', { + id: 'main-content', + className: 'flex-grow overflow-hidden transition-all', + children: [ + o.appConfig.showDebugger + ? vt(wo, { + projects: o.appConfig.workspaces, + selectedProject: l, + lastPerfReport: n, + selectedProjectChange: function (e) { + a(`/${encodeURIComponent(e)}${d}`); + }, + }) + : null, + r + ? null + : vt('div', { + 'data-cy': 'no-tasks-selected', + className: 'flex h-full w-full items-center justify-center text-slate-700 dark:text-slate-400', + children: [ + vt(mo, { className: 'mr-4 h-6 w-6' }), + vt('h4', { + children: [ + 'Please select a', + ' ', + u.startsWith('/tasks') ? 'task' : 'project', + ' in the sidebar.', + ], + }), + ], + }), + vt('div', { + className: 'h-full w-full', + children: [ + vt('div', { className: 'h-full w-full cursor-pointer', id: 'cytoscape-graph' }), + vt(Sa, {}), + vt(gt, { + openAction: 'hover', + content: 'Download Graph as PNG', + placement: 'left', + children: vt('button', { + type: 'button', + className: xo()( + r ? '' : 'invisible opacity-0', + 'fixed bottom-4 right-4 z-50 block h-16 w-16 transform rounded-full bg-blue-500 text-white shadow-sm transition duration-300 dark:bg-sky-500', + ), + 'data-cy': 'downloadImageButton', + onClick: function () { + const e = oo().getImage(); + let t = document.createElement('a'); + (t.href = e), + (t.download = 'graph.png'), + t.dispatchEvent(new MouseEvent('click', { bubbles: !0, cancelable: !0, view: window })); + }, + children: vt(yo, { className: 'absolute top-1/2 left-1/2 -mt-3 -ml-3 h-6 w-6' }), + }), + }), + ], + }), + ], + }), + ], + }); + } + var Ca = n(52014); + function ja(e) { + return 'state' in e; + } + var Ta = function (e, t) { + return e === t; + }, + Da = function (e, t) { + if ('state' in (o = e) && 'machine' in o) { + if (0 === e.status && t.current) return t.current; + var n = 0 !== (r = e).status ? r.state : r.machine.initialState; + return (t.current = 0 === e.status ? n : null), n; + } + var r, o; + return ja(e) ? e.state : void 0; + }; + function Na(e) { + return (function (e, t, n, o) { + void 0 === n && (n = Ta); + var i = (0, r.useRef)(null), + a = (0, r.useCallback)( + function (t) { + return e.subscribe(t).unsubscribe; + }, + [e], + ), + s = (0, r.useCallback)( + function () { + return o ? o(e) : Da(e, i); + }, + [e, o], + ); + return (0, Ca.useSyncExternalStoreWithSelector)(a, s, s, t, n); + })(pa(), e); + } + const Ma = e => e.context.projects, + Oa = e => e.context.workspaceLayout, + Aa = e => e.context.selectedProjects, + Ra = e => e.context.focusedProject, + La = e => ({ searchDepth: e.context.searchDepth, searchDepthEnabled: e.context.searchDepthEnabled }), + Ia = e => e.context.includePath, + Ba = e => e.context.groupByFolder, + Fa = e => e.context.collapseEdges, + za = e => e.context.textFilter, + Va = e => e.context.affectedProjects.length > 0, + Ga = e => e.context.tracing, + Ha = (0, r.memo)(({ collapseEdges: e, collapseEdgesChanged: t }) => + vt('div', { + className: 'px-4', + children: vt('div', { + className: 'flex items-start', + children: [ + vt('div', { + className: 'flex h-5 items-center', + children: vt('input', { + id: 'collapseEdges', + name: 'collapseEdges', + value: 'collapseEdges', + type: 'checkbox', + className: 'h-4 w-4 accent-purple-500', + onChange: e => t(e.target.checked), + checked: e, + }), + }), + vt('div', { + className: 'ml-3 text-sm', + children: [ + vt('label', { + htmlFor: 'collapseEdges', + className: 'cursor-pointer font-medium text-slate-600 dark:text-slate-400', + children: 'Collapse edges', + }), + vt('p', { + className: 'text-slate-400 dark:text-slate-500', + children: 'Display edges between groups rather than libraries', + }), + ], + }), + ], + }), + }), + ); + const Wa = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M12.75 15l3-3m0 0l-3-3m3 3h-7.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z', + }), + ); + }); + const Ua = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z', + }), + ); + }), + qa = (0, r.memo)(({ focusedLabel: e, resetFocus: t }) => + vt('div', { + className: 'mt-10 px-4', + children: vt('div', { + className: + 'group relative flex cursor-pointer items-center overflow-hidden rounded-md border border-slate-200 bg-blue-500 p-2 text-slate-50 shadow-sm dark:border-slate-700 dark:bg-sky-500', + 'data-cy': 'unfocusButton', + onClick: () => t(), + children: [ + vt('p', { + className: 'truncate transition duration-200 ease-in-out group-hover:opacity-60', + children: [ + vt(Wa, { className: '-mt-1 mr-1 inline h-6 w-6' }), + vt('span', { id: 'focused-project-name', children: ['Focused on ', e] }), + ], + }), + vt('div', { + className: + 'absolute right-2 flex translate-x-32 items-center rounded-md bg-white pl-2 text-sm font-medium text-slate-700 shadow-sm ring-1 ring-slate-500 transition-all duration-200 ease-in-out group-hover:translate-x-0 dark:bg-slate-800 dark:text-slate-300', + children: [ + 'Reset', + vt('span', { className: 'rounded-md p-1', children: vt(Ua, { className: 'h-5 w-5' }) }), + ], + }), + ], + }), + }), + ), + Ya = (0, r.memo)(({ checked: e, checkChanged: t, label: n, description: r, name: o }) => + vt('div', { + className: 'mt-8 px-4', + children: vt('div', { + className: 'flex items-start', + children: [ + vt('div', { + className: 'flex h-5 items-center', + children: vt('input', { + id: o, + name: o, + value: o, + type: 'checkbox', + className: 'h-4 w-4 accent-blue-500 dark:accent-sky-500', + onChange: e => t(e.target.checked), + checked: e, + }), + }), + vt('div', { + className: 'ml-3 text-sm', + children: [ + vt('label', { + htmlFor: o, + className: 'cursor-pointer font-medium text-slate-600 dark:text-slate-400', + children: n, + }), + vt('p', { className: 'text-slate-400 dark:text-slate-500', children: r }), + ], + }), + ], + }), + }), + ), + Xa = ({ groupByFolder: e, groupByFolderChanged: t }) => + vt(Ya, { + checked: e, + checkChanged: t, + name: 'groupByFolder', + label: 'Group by folder', + description: 'Visually arrange libraries by folders.', + }); + const $a = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m5.231 13.481L15 17.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v16.5c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9zm3.75 11.625a2.625 2.625 0 11-5.25 0 2.625 2.625 0 015.25 0z', + }), + ); + }); + const Ka = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M15 10.5a3 3 0 11-6 0 3 3 0 016 0z', + }), + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z', + }), + ); + }); + const Za = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M3 3v1.5M3 21v-6m0 0l2.77-.693a9 9 0 016.208.682l.108.054a9 9 0 006.086.71l3.114-.732a48.524 48.524 0 01-.005-10.499l-3.11.732a9 9 0 01-6.085-.711l-.108-.054a9 9 0 00-6.208-.682L3 4.5M3 15V4.5', + }), + ); + }); + const Qa = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M2.036 12.322a1.012 1.012 0 010-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178z', + }), + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M15 12a3 3 0 11-6 0 3 3 0 016 0z', + }), + ); + }); + function Ja(e, t, n) { + let r = {}; + return ( + e.forEach(e => { + const o = 'app' === e.type || 'e2e' === e.type ? n.appsDir : n.libsDir, + i = ma(e.data.root, o).join('/'); + r.hasOwnProperty(i) || (r[i] = []), r[i].push({ projectGraphNode: e, isSelected: t.includes(e.name) }); + }), + r + ); + } + function es({ project: e, tracingInfo: t }) { + const n = pa(), + r = hr(), + o = ga(); + function i(e, t) { + t ? n.send({ type: 'deselectProject', projectName: e }) : n.send({ type: 'selectProject', projectName: e }), + r(o('/projects', !0)); + } + return vt('li', { + className: + 'relative block cursor-default select-none py-1 pl-2 pr-6 text-xs text-slate-600 dark:text-slate-400', + children: [ + vt('div', { + className: 'flex items-center', + children: [ + vt(Ur, { + 'data-cy': `focus-button-${e.projectGraphNode.name}`, + className: + 'mr-1 flex items-center rounded-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 ring-slate-200 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', + title: 'Focus on this library', + to: o(`/projects/${encodeURIComponent(e.projectGraphNode.name)}`, !0), + children: vt($a, { className: 'h-5 w-5' }), + }), + vt(ea, { + children: vt('span', { + className: 'relative z-0 inline-flex rounded-md shadow-sm', + children: [ + vt('button', { + type: 'button', + title: 'Start Trace', + onClick: () => { + return ( + (t = e.projectGraphNode.name), void n.send({ type: 'setTracingStart', projectName: t }) + ); + var t; + }, + className: + (t.start === e.projectGraphNode.name + ? 'ring-blue-500 dark:ring-sky-500' + : 'ring-slate-200 dark:ring-slate-600') + + ' flex items-center rounded-l-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', + children: vt(Ka, { className: 'h-5 w-5' }), + }), + vt('button', { + type: 'button', + title: 'End Trace', + onClick: () => { + return (t = e.projectGraphNode.name), void n.send({ type: 'setTracingEnd', projectName: t }); + var t; + }, + className: + (t.end === e.projectGraphNode.name + ? 'ring-blue-500 dark:ring-sky-500' + : 'ring-slate-200 dark:ring-slate-600') + + ' flex items-center rounded-r-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', + children: vt(Za, { className: 'h-5 w-5' }), + }), + ], + }), + }), + vt('label', { + className: + 'ml-2 block w-full cursor-pointer truncate rounded-md p-2 font-mono font-normal transition hover:bg-slate-50 hover:dark:bg-slate-700', + 'data-project': e.projectGraphNode.name, + title: e.projectGraphNode.name, + 'data-active': e.isSelected.toString(), + onClick: () => i(e.projectGraphNode.name, e.isSelected), + children: e.projectGraphNode.name, + }), + ], + }), + e.isSelected + ? vt('span', { + title: 'This library is visible', + className: + 'absolute inset-y-0 right-0 flex cursor-pointer items-center text-blue-500 dark:text-sky-500', + onClick: () => i(e.projectGraphNode.name, e.isSelected), + children: vt(Qa, { className: 'h-5 w-5' }), + }) + : null, + ], + }); + } + function ts({ headerText: e = '', projects: t, tracingInfo: n }) { + const r = pa(); + let o = [...t]; + o.sort((e, t) => e.projectGraphNode.name.localeCompare(t.projectGraphNode.name)); + const i = t.every(e => e.isSelected); + return vt(ht.HY, { + children: [ + '' !== e + ? vt('div', { + className: 'relative mt-4 flex justify-between py-2 text-slate-800 dark:text-slate-200', + children: [ + vt('h3', { + className: 'cursor-text text-sm font-semibold uppercase tracking-wide lg:text-xs', + children: e, + }), + vt('span', { + title: i ? `Hide all ${e} projects` : `Show all ${e} projects`, + className: + 'absolute inset-y-0 right-0 flex cursor-pointer items-center text-sm font-semibold uppercase tracking-wide lg:text-xs', + 'data-cy': `toggle-folder-visibility-button-${e}`, + onClick: () => + (function (e) { + const n = t.map(e => e.projectGraphNode.name); + e + ? r.send({ type: 'deselectProjects', projectNames: n }) + : r.send({ type: 'selectProjects', projectNames: n }); + })(i), + children: vt(Qa, { className: 'h-5 w-5' }), + }), + ], + }) + : null, + vt('ul', { + className: 'mt-2 -ml-3', + children: o.map(e => vt(es, { project: e, tracingInfo: n }, e.projectGraphNode.name)), + }), + ], + }); + } + function ns() { + const e = Na(Ga), + t = Na(Ma), + n = Na(Oa), + r = Na(Aa), + o = ya('app', t), + i = ya('lib', t), + a = ya('e2e', t), + s = Ja(o, r, n), + l = Ja(i, r, n), + c = Ja(a, r, n), + u = Object.keys(s).sort(), + d = Object.keys(l).sort(), + f = Object.keys(c).sort(); + return vt('div', { + id: 'project-lists', + className: 'mt-8 border-t border-slate-400/10 px-4', + children: [ + vt('h2', { + className: + 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', + children: 'app projects', + }), + u.map(t => vt(ts, { headerText: t, projects: s[t], tracingInfo: e }, 'app-' + t)), + vt('h2', { + className: + 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', + children: 'e2e projects', + }), + f.map(t => vt(ts, { headerText: t, projects: c[t], tracingInfo: e }, 'e2e-' + t)), + vt('h2', { + className: + 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', + children: 'lib projects', + }), + d.map(t => vt(ts, { headerText: t, projects: l[t], tracingInfo: e }, 'lib-' + t)), + ], + }); + } + const rs = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { strokeLinecap: 'round', strokeLinejoin: 'round', d: 'M19.5 12h-15' }), + ); + }); + const os = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { strokeLinecap: 'round', strokeLinejoin: 'round', d: 'M12 4.5v15m7.5-7.5h-15' }), + ); + }), + is = (0, r.memo)( + ({ + searchDepth: e, + searchDepthEnabled: t, + searchDepthFilterEnabledChange: n, + decrementDepthFilter: r, + incrementDepthFilter: o, + }) => + vt('div', { + className: 'mt-4 px-4', + children: [ + vt('div', { + className: 'mt-4 flex items-start', + children: [ + vt('div', { + className: 'flex h-5 items-center', + children: vt('input', { + id: 'depthFilter', + name: 'depthFilter', + value: 'depthFilterActivated', + type: 'checkbox', + className: 'h-4 w-4 accent-blue-500 dark:accent-sky-500', + checked: t, + onChange: e => n(e.target.checked), + }), + }), + vt('div', { + className: 'ml-3 text-sm', + children: [ + vt('label', { + htmlFor: 'depthFilter', + className: 'cursor-pointer font-medium text-slate-600 dark:text-slate-400', + children: 'Activate proximity', + }), + vt('p', { + className: 'text-slate-400 dark:text-slate-500', + children: 'Explore connected libraries step by step.', + }), + ], + }), + ], + }), + vt('div', { + className: 'mt-3 px-10', + children: vt('div', { + className: 'flex rounded-md shadow-sm', + children: [ + vt('button', { + 'data-cy': 'decrement-depth-filter', + title: 'Remove ancestor level', + className: + 'inline-flex items-center rounded-l-md border border-slate-300 bg-slate-50 py-2 px-4 text-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', + onClick: r, + children: vt(rs, { className: 'h-4 w-4' }), + }), + vt('span', { + id: 'depthFilterValue', + 'data-cy': 'depth-value', + className: + 'block w-full flex-1 rounded-none border-t border-b border-slate-300 bg-white p-1.5 text-center font-mono dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', + children: e, + }), + vt('button', { + 'data-cy': 'increment-depth-filter', + title: 'Add ancestor level', + className: + 'inline-flex items-center rounded-r-md border border-slate-300 bg-slate-50 py-2 px-4 text-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', + onClick: o, + children: vt(os, { className: 'h-4 w-4' }), + }), + ], + }), + }), + ], + }), + ); + const as = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M3.75 13.5l10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75z', + }), + ); + }); + const ss = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M3.98 8.223A10.477 10.477 0 001.934 12C3.226 16.338 7.244 19.5 12 19.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.45 10.45 0 0112 4.5c4.756 0 8.773 3.162 10.065 7.498a10.523 10.523 0 01-4.293 5.774M6.228 6.228L3 3m3.228 3.228l3.65 3.65m7.894 7.894L21 21m-3.228-3.228l-3.65-3.65m0 0a3 3 0 10-4.243-4.243m4.242 4.242L9.88 9.88', + }), + ); + }), + ls = (0, r.memo)(({ showAll: e, hideAll: t, showAffected: n, hasAffected: r, label: o }) => + vt('div', { + className: 'mt-8 px-4', + children: [ + vt('button', { + onClick: e, + type: 'button', + className: + 'flex w-full items-center rounded-md border border-slate-300 bg-white px-4 py-2 text-sm font-medium text-slate-700 shadow-sm hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', + 'data-cy': 'selectAllButton', + children: [vt(Qa, { className: '-ml-1 mr-2 h-5 w-5 text-slate-400' }), 'Show all ', o], + }), + r + ? vt('button', { + onClick: n, + type: 'button', + className: + 'mt-3 flex w-full items-center rounded-md border border-pink-500 bg-pink-400 px-4 py-2 text-sm font-medium text-white shadow-sm hover:bg-pink-500 dark:border-fuchsia-800 dark:bg-fuchsia-700 dark:text-white hover:dark:bg-fuchsia-600', + 'data-cy': 'affectedButton', + children: [vt(as, { className: '-ml-1 mr-2 h-5 w-5 text-white' }), 'Show affected ', o], + }) + : null, + vt('button', { + onClick: t, + type: 'button', + className: + 'mt-3 flex w-full items-center rounded-md border border-slate-300 bg-white px-4 py-2 text-sm font-medium text-slate-700 shadow-sm hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', + 'data-cy': 'deselectAllButton', + children: [vt(ss, { className: '-ml-1 mr-2 h-5 w-5 text-slate-500' }), 'Hide all ', o], + }), + ], + }), + ); + function cs({ + textFilter: e, + resetTextFilter: t, + updateTextFilter: n, + toggleIncludeLibsInPathChange: r, + includePath: o, + }) { + return vt('div', { + children: [ + vt('div', { + className: 'mt-10 px-4', + children: vt(bt, { + resetTextFilter: t, + updateTextFilter: n, + initialText: '', + placeholderText: 'lib name, other lib name', + }), + }), + vt('div', { + className: 'mt-4 px-4', + children: vt('div', { + className: 'flex items-start', + children: [ + vt('div', { + className: 'flex h-5 items-center', + children: vt('input', { + disabled: 0 === e.length, + id: 'includeInPath', + name: 'textFilterCheckbox', + type: 'checkbox', + value: 'includeInPath', + className: 'h-4 w-4 accent-blue-500 dark:accent-sky-500', + checked: o, + onChange: r, + }), + }), + vt('div', { + className: 'ml-3 text-sm', + children: [ + vt('label', { + htmlFor: 'includeInPath', + className: 'cursor-pointer font-medium text-slate-600 dark:text-slate-400', + children: 'Include related libraries', + }), + vt('p', { + className: 'text-slate-400 dark:text-slate-500', + children: 'Show libraries that are related to your search.', + }), + ], + }), + ], + }), + }), + ], + }); + } + const us = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M12 6.75a.75.75 0 110-1.5.75.75 0 010 1.5zM12 12.75a.75.75 0 110-1.5.75.75 0 010 1.5zM12 18.75a.75.75 0 110-1.5.75.75 0 010 1.5z', + }), + ); + }), + ds = (0, r.memo)(({ start: e, end: t, algorithm: n, setAlgorithm: r, resetStart: o, resetEnd: i }) => + vt('div', { + className: 'mt-10 px-4', + children: vt('div', { + className: 'transition duration-200 ease-in-out group-hover:opacity-60', + children: [ + vt('h3', { + className: + 'cursor-text pb-2 text-sm font-semibold uppercase tracking-wide text-slate-800 dark:text-slate-200 lg:text-xs', + children: 'Tracing Path', + }), + vt('div', { + className: + 'mb-3 flex cursor-pointer flex-row rounded-md border text-center text-xs dark:border-slate-600', + children: [ + vt('button', { + onClick: () => r('shortest'), + className: + ('shortest' === n + ? 'border-blue-500 dark:border-sky-500' + : 'border-slate-300 dark:border-slate-600') + + ' flex-1 rounded-l-md border bg-slate-50 py-2 px-4 text-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', + children: vt('span', { children: 'Shortest' }), + }), + vt('button', { + onClick: () => r('all'), + className: + ('all' === n + ? 'border-blue-500 dark:border-sky-500' + : 'border-slate-300 dark:border-slate-600') + + ' flex-1 rounded-r-md border bg-slate-50 py-2 px-4 text-slate-500 hover:bg-slate-100 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', + children: vt('span', { children: 'All' }), + }), + ], + }), + vt('div', { + className: 'flex flex-row items-center truncate ', + children: [ + vt(Ka, { className: 'mr-2 h-5 w-5 text-slate-500 dark:text-slate-400' }), + e + ? vt('div', { + className: 'group relative flex-1 cursor-pointer flex-col items-center overflow-hidden', + 'data-cy': 'resetTraceButton', + onClick: o, + children: [ + vt('div', { + className: + 'flex-1 truncate rounded-md border border-slate-200 bg-blue-500 p-2 text-slate-50 shadow-sm transition duration-200 ease-in-out group-hover:opacity-60 dark:border-slate-700 dark:bg-sky-500', + children: vt('span', { children: e }), + }), + vt('div', { + className: + 'absolute top-2 right-2 flex translate-x-32 items-center rounded-md bg-white pl-2 text-sm font-medium text-slate-700 shadow-sm ring-1 ring-slate-500 transition-all transition duration-200 ease-in-out group-hover:translate-x-0 dark:bg-slate-800 dark:text-slate-300 dark:ring-slate-700', + children: [ + 'Reset', + vt('span', { className: 'rounded-md p-1', children: vt(Ua, { className: 'h-5 w-5' }) }), + ], + }), + ], + }) + : vt('p', { className: 'text-sm text-slate-500', children: 'Select start project' }), + ], + }), + vt('div', { children: vt(us, { className: 'h-5 w-5 text-slate-500 dark:text-slate-400' }) }), + vt('div', { + className: 'flex flex-row items-center truncate ', + children: [ + vt(Za, { className: 'mr-2 h-5 w-5 text-slate-500 dark:text-slate-400' }), + t + ? vt('div', { + className: ' group relative flex-1 cursor-pointer flex-col items-center overflow-hidden ', + 'data-cy': 'resetTraceButton', + onClick: i, + children: [ + vt('div', { + className: + 'flex-1 truncate rounded-md border border-slate-200 bg-blue-500 p-2 text-slate-50 shadow-sm transition duration-200 ease-in-out group-hover:opacity-60 dark:border-slate-700 dark:bg-sky-500', + children: vt('span', { children: t }), + }), + vt('div', { + className: + 'absolute top-2 right-2 flex translate-x-32 items-center rounded-md bg-white pl-2 text-sm font-medium text-slate-700 shadow-sm ring-1 ring-slate-500 transition-all transition duration-200 ease-in-out group-hover:translate-x-0 dark:bg-slate-800 dark:text-slate-300 dark:ring-slate-700', + children: [ + 'Reset', + vt('span', { className: 'rounded-md p-1', children: vt(Ua, { className: 'h-5 w-5' }) }), + ], + }), + ], + }) + : vt('p', { className: 'text-sm text-slate-500', children: 'Select end project' }), + ], + }), + ], + }), + }), + ); + class FetchProjectGraphService { + async getHash() { + const e = new Request('currentHash', { mode: 'no-cors' }); + return (await fetch(e)).json(); + } + async getProjectGraph(e) { + const t = new Request(e, { mode: 'no-cors' }); + return (await fetch(t)).json(); + } + async getTaskGraph(e) { + const t = new Request(e, { mode: 'no-cors' }); + return (await fetch(t)).json(); + } + } + class LocalProjectGraphService { + async getHash() { + return new Promise(e => e('some-hash')); + } + async getProjectGraph(e) { + return new Promise(e => e(window.projectGraphResponse)); + } + async getTaskGraph(e) { + return new Promise(e => e(window.taskGraphResponse)); + } + } + class MockProjectGraphService { + constructor(e = 5e3) { + (this.projectGraphsResponse = { + hash: '79054025255fb1a26e4bc422aef54eb4', + layout: { appsDir: 'apps', libsDir: 'libs' }, + projects: [ + { name: 'existing-app-1', type: 'app', data: { root: 'apps/app1', tags: [] } }, + { name: 'existing-lib-1', type: 'lib', data: { root: 'libs/lib1', tags: [] } }, + ], + dependencies: { + 'existing-app-1': [{ source: 'existing-app-1', target: 'existing-lib-1', type: 'static' }], + 'existing-lib-1': [], + }, + fileMap: { + 'existing-app-1': [ + { file: 'some/file.ts', hash: 'ecccd8481d2e5eae0e59928be1bc4c2d071729d7', deps: ['existing-lib-1'] }, + ], + 'exiting-lib-1': [], + }, + affected: [], + focus: null, + exclude: [], + groupByFolder: !1, + }), + (this.taskGraphsResponse = { taskGraphs: {}, errors: {} }), + setInterval(() => this.updateResponse(), e); + } + async getHash() { + return new Promise(e => e(this.projectGraphsResponse.hash)); + } + getProjectGraph(e) { + return new Promise(e => e(this.projectGraphsResponse)); + } + getTaskGraph(e) { + return new Promise(e => e(this.taskGraphsResponse)); + } + createNewProject() { + const e = Math.random() > 0.25 ? 'lib' : 'app', + t = `${e}-${this.projectGraphsResponse.projects.length + 1}`; + return { name: t, type: e, data: { root: 'app' === e ? `apps/${t}` : `libs/${t}`, tags: [] } }; + } + updateResponse() { + const e = this.createNewProject(), + t = this.projectGraphsResponse.projects.filter(e => 'lib' === e.type), + n = t[Math.floor(Math.random() * t.length)], + r = [{ source: e.name, target: n.name, type: 'static' }]; + this.projectGraphsResponse = Object.assign({}, this.projectGraphsResponse, { + projects: [...this.projectGraphsResponse.projects, e], + dependencies: Object.assign({}, this.projectGraphsResponse.dependencies, { [e.name]: r }), + }); + } + } + let fs; + function hs() { + return ( + void 0 === fs && + ('dev' === window.environment + ? (fs = new FetchProjectGraphService()) + : 'watch' === window.environment + ? (fs = new MockProjectGraphService()) + : ('release' !== window.environment && 'nx-console' !== window.environment) || + (fs = 'build' === window.localMode ? new LocalProjectGraphService() : new FetchProjectGraphService())), + fs + ); + } + function ps() { + const e = to(), + t = pa(), + n = Na(Ra), + o = Na(La), + i = Na(Ia), + a = Na(za), + s = Na(Va), + l = Na(Ba), + c = Na(Fa), + u = t.getSnapshot().matches('tracing'), + d = Na(Ga), + f = hs(), + h = vr(), + p = Ji(), + [v, g] = Xr(), + m = Cr('selectedWorkspace'), + y = vr(), + b = hr(), + x = ga(); + (0, r.useEffect)(() => { + t.send({ + type: 'setProjects', + projects: m.projects, + dependencies: m.dependencies, + fileMap: m.fileMap, + affectedProjects: m.affected, + workspaceLayout: m.layout, + }); + }, [m]), + (0, r.useEffect)(() => { + switch (p.currentPath) { + case '/projects/all': + t.send({ type: 'selectAll' }); + break; + case '/projects/affected': + t.send({ type: 'selectAffected' }); + } + }, [p]), + (0, r.useEffect)(() => { + h.focusedProject && t.send({ type: 'focusProject', projectName: h.focusedProject }), + h.startTrace && t.send({ type: 'setTracingStart', projectName: h.startTrace }), + h.endTrace && t.send({ type: 'setTracingEnd', projectName: h.endTrace }); + }, [h]), + (0, r.useEffect)(() => { + if ( + (v.has('groupByFolder') && !1 === l + ? t.send({ type: 'setGroupByFolder', groupByFolder: !0 }) + : v.has('groupByFolder') || !0 !== l || t.send({ type: 'setGroupByFolder', groupByFolder: !1 }), + v.has('collapseEdges') && !1 === c + ? t.send({ type: 'setCollapseEdges', collapseEdges: !0 }) + : v.has('collapseEdges') || !0 !== c || t.send({ type: 'setCollapseEdges', collapseEdges: !1 }), + v.has('searchDepth')) + ) { + const e = parseInt(v.get('searchDepth'), 10); + 0 === e && !1 !== o.searchDepthEnabled + ? t.send({ type: 'setSearchDepthEnabled', searchDepthEnabled: !1 }) + : 0 !== e && t.send({ type: 'setSearchDepth', searchDepth: e }); + } else + (!1 !== o.searchDepthEnabled && 1 === o.searchDepth) || + (t.send({ type: 'setSearchDepthEnabled', searchDepthEnabled: !0 }), + t.send({ type: 'setSearchDepth', searchDepth: 1 })); + if (v.has('traceAlgorithm')) { + const e = v.get('traceAlgorithm'); + ('shortest' !== e && 'all' !== e) || t.send({ type: 'setTracingAlgorithm', algorithm: e }); + } else 'shortest' !== d.algorithm && t.send({ type: 'setTracingAlgorithm', algorithm: 'shortest' }); + }, [v]), + ((e, t, n) => { + const o = (0, r.useRef)(() => {}); + (0, r.useEffect)(() => { + n && (o.current = e); + }, [e, n]), + (0, r.useEffect)(() => { + if (n && null !== t) { + let e = setInterval(() => { + o.current(); + }, t); + return () => clearInterval(e); + } + }, [t, n]); + })( + () => { + var n; + const r = null != (n = y.selectedWorkspaceId) ? n : e.appConfig.defaultWorkspaceId, + o = e.appConfig.workspaces.find(e => e.id === r); + (async () => { + const e = await f.getProjectGraph(o.projectGraphUrl); + t.send({ type: 'updateGraph', projects: e.projects, dependencies: e.dependencies, fileMap: e.fileMap }); + })(); + }, + 5e3, + e.watch, + ); + const w = (0, r.useCallback)( + e => { + t.send({ type: 'filterByText', search: e }), b(x('/projects', !0)); + }, + [t], + ); + return vt(ht.HY, { + children: [ + n + ? vt(qa, { + focusedLabel: n, + resetFocus: function () { + t.send({ type: 'unfocusProject' }), b(x('/projects', !0)); + }, + }) + : null, + u + ? vt(ds, { + start: d.start, + end: d.end, + algorithm: d.algorithm, + setAlgorithm: function (e) { + g(t => (t.set('traceAlgorithm', e), t)); + }, + resetStart: function () { + t.send({ type: 'clearTraceStart' }), b(x('/projects', !0)); + }, + resetEnd: function () { + t.send({ type: 'clearTraceEnd' }), b(x('/projects', !0)); + }, + }) + : null, + vt(cs, { + includePath: i, + resetTextFilter: function () { + t.send({ type: 'clearTextFilter' }); + }, + textFilter: a, + toggleIncludeLibsInPathChange: function () { + t.send({ type: 'setIncludeProjectsByPath', includeProjectsByPath: !i }); + }, + updateTextFilter: w, + }), + vt('div', { + children: [ + vt(ls, { + hideAll: function () { + t.send({ type: 'deselectAll' }), b(x('/projects', !0)); + }, + showAll: function () { + b(x('/projects/all', !0)); + }, + showAffected: function () { + b(x('/projects/affected', !0)); + }, + hasAffected: s, + label: 'projects', + }), + vt(Xa, { + groupByFolder: l, + groupByFolderChanged: function (e) { + g(t => (e ? t.set('groupByFolder', 'true') : t.delete('groupByFolder'), t)); + }, + }), + vt(is, { + searchDepth: o.searchDepth, + searchDepthEnabled: o.searchDepthEnabled, + searchDepthFilterEnabledChange: function (e) { + g( + t => ( + e && o.searchDepth > 1 + ? t.set('searchDepth', o.searchDepth.toString()) + : e && 1 === o.searchDepth + ? t.delete('searchDepth') + : t.set('searchDepth', '0'), + t + ), + ); + }, + incrementDepthFilter: function () { + const e = o.searchDepth + 1; + g(t => (1 === e ? t.delete('searchDepth') : t.set('searchDepth', e.toString()), t)); + }, + decrementDepthFilter: function () { + const e = 1 === o.searchDepth ? 1 : o.searchDepth - 1; + g(t => (1 === e ? t.delete('searchDepth') : t.set('searchDepth', e.toString()), t)); + }, + }), + vt(ea, { + children: vt('div', { + className: + 'mx-4 mt-4 rounded-lg border-2 border-dashed border-purple-500 p-4 shadow-lg dark:border-purple-600 dark:bg-[#0B1221]', + children: [ + vt('h3', { + className: + 'cursor-text px-4 py-2 text-sm font-semibold uppercase tracking-wide text-slate-800 dark:text-slate-200 lg:text-xs', + children: 'Experimental Features', + }), + vt(Ha, { + collapseEdges: c, + collapseEdgesChanged: function (e) { + g(t => (e ? t.set('collapseEdges', 'true') : t.delete('collapseEdges'), t)); + }, + }), + ], + }), + }), + ], + }), + 'nx-console' !== e.environment ? vt(ns, {}) : null, + ], + }); + } + const vs = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { + return r.createElement( + 'svg', + Object.assign( + { + xmlns: 'http://www.w3.org/2000/svg', + fill: 'none', + viewBox: '0 0 24 24', + strokeWidth: 1.5, + stroke: 'currentColor', + 'aria-hidden': 'true', + ref: o, + 'aria-labelledby': t, + }, + n, + ), + e ? r.createElement('title', { id: t }, e) : null, + r.createElement('path', { + strokeLinecap: 'round', + strokeLinejoin: 'round', + d: 'M12 9v3.75m9-.75a9 9 0 11-18 0 9 9 0 0118 0zm-9 3.75h.008v.008H12v-.008z', + }), + ); + }), + gs = ({ error: e }) => + vt(ht.HY, { + children: [ + vt('h2', { + className: 'text-lg font-light text-slate-400 dark:text-slate-500', + children: 'There was a problem calculating the task graph for this task', + }), + vt('p', { children: e }), + ], + }); + function ms({ project: e, toggleTask: t }) { + return vt('li', { + className: + 'relative block cursor-default select-none pb-0 pl-2 pr-6 text-xs text-slate-600 dark:text-slate-400', + children: [ + vt('div', { + className: 'flex items-center', + children: vt('label', { + className: + 'block w-full cursor-pointer truncate rounded-md p-2 font-mono font-normal transition hover:bg-slate-50 hover:dark:bg-slate-700', + 'data-project': e.projectGraphNode.name, + title: e.projectGraphNode.name, + 'data-active': e.isSelected.toString(), + onClick: () => (e.error ? null : t(e.projectGraphNode.name)), + children: e.projectGraphNode.name, + }), + }), + e.error + ? vt(gt, { + content: vt(gs, { error: e.error }), + openAction: 'click', + strategy: 'fixed', + children: vt('span', { + className: + 'absolute inset-y-0 right-0 flex cursor-pointer items-center text-blue-500 dark:text-sky-500', + children: vt(vs, { + className: 'h-5 w-5 text-yellow-500 dark:text-yellow-400', + 'aria-hidden': 'true', + }), + }), + }) + : null, + e.isSelected + ? vt('span', { + title: 'This task is visible', + className: + 'absolute inset-y-0 right-0 flex cursor-pointer items-center text-blue-500 dark:text-sky-500', + onClick: () => t(e.projectGraphNode.name), + children: vt(Qa, { className: 'h-5 w-5' }), + }) + : null, + ], + }); + } + function ys({ headerText: e = '', projects: t, toggleTask: n }) { + let r = [...t]; + return ( + r.sort((e, t) => e.projectGraphNode.name.localeCompare(t.projectGraphNode.name)), + vt(ht.HY, { + children: [ + '' !== e + ? vt('h3', { + className: + 'mt-4 cursor-text py-2 text-sm font-semibold uppercase tracking-wide text-slate-800 dark:text-slate-200 lg:text-xs', + children: e, + }) + : null, + vt('ul', { + className: 'mt-2 -ml-3', + children: r.map(e => vt(ms, { project: e, toggleTask: n }, e.projectGraphNode.name)), + }), + ], + }) + ); + } + function bs(e, t, n, r) { + var o; + const i = xa(e.name, n); + return { + projectGraphNode: e, + isSelected: t.includes(e.name), + error: null != (o = null == r ? void 0 : r[i]) ? o : null, + }; + } + function xs({ + projects: e, + workspaceLayout: t, + selectedTarget: n, + selectedProjects: r, + toggleProject: o, + children: i, + errors: a, + }) { + const s = e + .filter(e => { + var t; + return null == (t = e.data.targets) ? void 0 : t.hasOwnProperty(n); + }) + .sort((e, t) => e.name.localeCompare(t.name)), + l = ya('app', s), + c = ya('lib', s), + u = ya('e2e', s), + d = ba(l, t), + f = ba(c, t), + h = ba(u, t), + p = Object.keys(d).sort(), + v = Object.keys(f).sort(), + g = Object.keys(h).sort(); + return vt('div', { + id: 'project-lists', + className: 'mt-8 border-t border-slate-400/10 px-4', + children: [ + i, + vt('h2', { + className: + 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', + children: 'app projects', + }), + p.map(e => vt(ys, { headerText: e, projects: d[e].map(e => bs(e, r, n, a)), toggleTask: o }, 'app-' + e)), + vt('h2', { + className: + 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', + children: 'e2e projects', + }), + g.map(e => vt(ys, { headerText: e, projects: h[e].map(e => bs(e, r, n, a)), toggleTask: o }, 'e2e-' + e)), + vt('h2', { + className: + 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', + children: 'lib projects', + }), + v.map(e => vt(ys, { headerText: e, projects: f[e].map(e => bs(e, r, n, a)), toggleTask: o }, 'lib-' + e)), + ], + }); + } + function ws() { + var e; + const t = oo(), + n = hr(), + o = vr(), + i = ga(), + [a, s] = Xr(), + l = 'true' === a.get('groupByProject'), + c = Cr('selectedWorkspace'), + u = c.layout, + d = Cr('selectedTarget'), + { taskGraphs: f, errors: h } = d; + let { projects: p, targets: v } = c; + const g = null != (e = o.selectedTarget) ? e : v[0], + m = Ji().currentPath === `/tasks/${g}/all`, + y = p.filter(e => { + var t; + return ( + (null == (t = e.data.targets) ? void 0 : t.hasOwnProperty(g)) && + !(null != h && h.hasOwnProperty(xa(e.name, g))) + ); + }), + b = (0, r.useMemo)(() => { + var e, t; + return m + ? y.map(({ name: e }) => e) + : null != (e = null == (t = a.get('projects')) ? void 0 : t.split(' ')) + ? e + : []; + }, [y, a, m]); + function x() { + a.delete('projects'), n(i({ pathname: `/tasks/${encodeURIComponent(g)}`, search: a.toString() }, !1)); + } + return ( + (0, r.useEffect)(() => { + t.handleTaskEvent({ type: 'notifyTaskGraphSetProjects', projects: c.projects, taskGraphs: f }); + }, [c]), + (0, r.useEffect)(() => { + l + ? t.handleTaskEvent({ type: 'setGroupByProject', groupByProject: !0 }) + : t.handleTaskEvent({ type: 'setGroupByProject', groupByProject: !1 }); + }, [a]), + (0, r.useEffect)(() => { + t.handleTaskEvent({ type: 'notifyTaskGraphSetTasks', taskIds: b.map(e => xa(e, g)) }); + }, [t, b, g]), + vt(ht.HY, { + children: [ + vt(ls, { + showAll: () => ( + a.delete('projects'), + void n(i({ pathname: `/tasks/${encodeURIComponent(g)}/all`, search: a.toString() }, !1)) + ), + hideAll: () => x(), + showAffected: () => {}, + hasAffected: !1, + label: 'tasks', + }), + vt(Ya, { + checked: l, + checkChanged: function (e) { + s(t => (e ? t.set('groupByProject', 'true') : t.delete('groupByProject'), t), { relative: 'path' }); + }, + name: 'groupByProject', + label: 'Group by project', + description: 'Visually arrange tasks by project.', + }), + vt(xs, { + projects: p, + selectedProjects: b, + workspaceLayout: u, + selectedTarget: g, + toggleProject: function (e) { + b.includes(e) + ? (function (e) { + const t = b.filter(t => t !== e); + 0 === t.length ? a.delete('projects') : a.set('projects', t.join(' ')); + n(i({ pathname: `/tasks/${encodeURIComponent(g)}`, search: a.toString() }, !1)); + })(e) + : (function (e) { + const t = [...b, e], + r = t.length === y.length; + r ? a.delete('projects') : a.set('projects', t.join(' ')); + n( + i( + { + pathname: r ? `/tasks/${encodeURIComponent(g)}/all` : `/tasks/${encodeURIComponent(g)}`, + search: a.toString(), + }, + !1, + ), + ); + })(e); + }, + errors: h, + children: [ + vt('label', { + htmlFor: 'selectedTarget', + className: 'my-2 block text-sm font-medium text-gray-700', + children: 'Target Name', + }), + vt(_t, { + id: 'selectedTarget', + className: 'w-full', + 'data-cy': 'selected-target-dropdown', + defaultValue: g, + onChange: e => { + var t; + (t = e.currentTarget.value) !== g && + (x(), + o.selectedTarget + ? n({ pathname: `../${encodeURIComponent(t)}`, search: a.toString() }) + : n({ pathname: `${encodeURIComponent(t)}`, search: a.toString() })); + }, + children: v.map(e => vt('option', { value: e, children: e }, e)), + }), + ], + }), + ], + }) + ); + } + function Es() { + let e = jr(); + return ( + console.error(e), + vt('div', { + className: 'mt-8 px-4', + children: [ + vt('h2', { + className: + 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', + children: 'Error', + }), + vt('p', { children: 'There was a problem loading your task graph.' }), + ], + }) + ); + } + const { appConfig: ks } = no(), + _s = hs(); + function Ss() { + return 'dev' === no().environment ? js : Ts; + } + const Ps = async e => { + const t = ks.workspaces.find(t => t.id === e), + n = await _s.getProjectGraph(t.projectGraphUrl), + r = new Set(); + n.projects.forEach(e => { + var t; + Object.keys(null != (t = e.data.targets) ? t : {}).forEach(e => { + r.add(e); + }); + }); + const o = Array.from(r).sort((e, t) => e.localeCompare(t)); + return Object.assign({}, n, { targets: o }); + }, + Cs = [ + { + path: 'projects', + children: [ + { index: !0, element: vt(ps, {}) }, + { path: 'all', element: vt(ps, {}) }, + { path: 'affected', element: vt(ps, {}) }, + { path: ':focusedProject', element: vt(ps, {}) }, + { path: 'trace/:startTrace', element: vt(ps, {}) }, + { path: 'trace/:startTrace/:endTrace', element: vt(ps, {}) }, + ], + }, + { + loader: async ({ request: e, params: t }) => { + var n; + return (async e => { + const t = ks.workspaces.find(t => t.id === e); + return await _s.getTaskGraph(t.taskGraphUrl); + })(null != (n = t.selectedWorkspaceId) ? n : ks.defaultWorkspaceId); + }, + path: 'tasks', + id: 'selectedTarget', + errorElement: vt(Es, {}), + shouldRevalidate: ({ currentParams: e, nextParams: t }) => + !e.selectedWorkspaceId || e.selectedWorkspaceId !== t.selectedWorkspaceId, + children: [ + { index: !0, element: vt(ws, {}) }, + { path: ':selectedTarget', element: vt(ws, {}), children: [{ path: 'all', element: vt(ws, {}) }] }, + ], + }, + ], + js = [ + { + path: '/', + children: [ + { + index: !0, + loader: async ({ request: e, params: t }) => { + const { search: n } = new URL(e.url); + return fn(`/${ks.defaultWorkspaceId}/projects${n}`); + }, + }, + { + path: ':selectedWorkspaceId', + id: 'selectedWorkspace', + element: vt(Pa, {}), + shouldRevalidate: ({ currentParams: e, nextParams: t }) => + e.selectedWorkspaceId !== t.selectedWorkspaceId, + loader: async ({ request: e, params: t }) => { + var n; + const r = null != (n = t.selectedWorkspaceId) ? n : ks.defaultWorkspaceId; + return Ps(r); + }, + children: Cs, + }, + ], + }, + ], + Ts = [ + { + path: '/', + id: 'selectedWorkspace', + loader: async ({ request: e, params: t }) => { + const n = ks.defaultWorkspaceId; + return Ps(n); + }, + shouldRevalidate: () => !1, + element: vt(Pa, {}), + children: [ + { + index: !0, + loader: ({ request: e }) => { + const { search: t } = new URL(e.url); + return fn(`/projects${t}`); + }, + }, + ...Cs, + ], + }, + ]; + let Ds; + function Ns() { + if (!Ds) { + let e = Fr; + 'build' === no().localMode && (e = zr), (Ds = e(Ss())); + } + return Ds; + } + var Ms; + function Os() { + return vt(Tr, { router: Ns() }); + } + uo(null != (Ms = localStorage.getItem(ao)) ? Ms : 'system'), + (function () { + var e; + vo(null != (e = localStorage.getItem(ho)) ? e : 'TB'); + })(); + !0 === window.useXstateInspect && + (function (e) { + var t = (function (e) { + var t = o(o({}, m), e); + return o(o({}, t), { url: new URL(t.url), iframe: d(t.iframe), devTools: d(t.devTools) }); + })(e), + n = t.iframe, + r = t.url, + c = t.devTools; + if (null !== n) { + var u, + h, + g = (function (e, t) { + void 0 === e && (e = globalThis.__xstate__); + var n = new Map(), + r = e.onRegister(function (e) { + n.set(e.sessionId, e); + }); + return (0, s.C)({ + initial: 'pendingConnection', + context: { client: void 0 }, + states: { + pendingConnection: {}, + connected: { + on: { + 'service.state': { + actions: function (e, t) { + return e.client.send(t); + }, + }, + 'service.event': { + actions: function (e, t) { + return e.client.send(t); + }, + }, + 'service.register': { + actions: function (e, t) { + return e.client.send(t); + }, + }, + 'service.stop': { + actions: function (e, t) { + return e.client.send(t); + }, + }, + 'xstate.event': { + actions: function (e, t) { + var r = t.event, + o = JSON.parse(r), + i = n.get(o.origin); + null == i || i.send(o); + }, + }, + unload: { + actions: function (e) { + e.client.send({ type: 'xstate.disconnect' }); + }, + }, + disconnect: 'disconnected', + }, + }, + disconnected: { + entry: function () { + r.unsubscribe(); + }, + type: 'final', + }, + }, + on: { + 'xstate.inspecting': { + target: '.connected', + actions: [ + (0, l.assign)({ + client: function (e, t) { + return t.client; + }, + }), + function (n) { + e.services.forEach(function (e) { + var r; + null === (r = n.client) || + void 0 === r || + r.send({ + type: 'service.register', + machine: v(e.machine, null == t ? void 0 : t.serialize), + state: p(e.state || e.initialState, null == t ? void 0 : t.serialize), + sessionId: e.sessionId, + }); + }); + }, + ], + }, + }, + }); + })(c, e), + b = (0, i.kJ)(g).start(), + x = new Set(), + w = b.subscribe(function (e) { + x.forEach(function (t) { + return t.next(e); + }); + }), + E = function (e) { + if ('object' == typeof e.data && null !== e.data && 'type' in e.data) { + n && !u && (u = n.contentWindow), + h || + (h = { + send: function (e) { + u.postMessage(e, r.origin); + }, + }); + var t = o(o({}, e.data), { client: h }); + b.send(t); + } + }; + window.addEventListener('message', E), + window.addEventListener('unload', function () { + b.send({ type: 'unload' }); + }); + var k = function (t) { + return f(t, null == e ? void 0 : e.serialize); + }; + return ( + c.onRegister(function (t) { + var n, + r = t.state || t.initialState; + if ( + (b.send({ + type: 'service.register', + machine: v(t.machine, null == e ? void 0 : e.serialize), + state: p(r, null == e ? void 0 : e.serialize), + sessionId: t.sessionId, + id: t.id, + parent: null === (n = t.parent) || void 0 === n ? void 0 : n.sessionId, + }), + b.send({ type: 'service.event', event: k(r._event), sessionId: t.sessionId }), + !y.has(t)) + ) { + y.add(t); + var o = t.send.bind(t); + t.send = function (e, n) { + return ( + b.send({ type: 'service.event', event: k((0, a.g5)((0, a._v)(e, n))), sessionId: t.sessionId }), + o(e, n) + ); + }; + } + t.subscribe(function (n) { + void 0 !== n && + b.send({ + type: 'service.state', + state: p(n, null == e ? void 0 : e.serialize), + sessionId: t.sessionId, + }); + }), + t.onStop(function () { + b.send({ type: 'service.stop', sessionId: t.sessionId }); + }); + }), + n + ? (n.addEventListener('load', function () { + u = n.contentWindow; + }), + n.setAttribute('src', String(r))) + : (u = window.open(String(r), 'xstateinspector')), + { + send: function (e) { + b.send(e); + }, + subscribe: function (e, t, n) { + var r = (0, a.zM)(e, t, n); + return ( + x.add(r), + r.next(b.state), + { + unsubscribe: function () { + x.delete(r); + }, + } + ); + }, + disconnect: function () { + b.send('disconnect'), window.removeEventListener('message', E), w.unsubscribe(); + }, + } + ); + } + console.warn( + 'No suitable element.', + ); + })({ url: 'https://stately.ai/viz?inspect', iframe: !1 }), + (window.externalApi = new (class ExternalApi { + get depGraphService() { + return this.projectGraphService; + } + constructor() { + (this._projectGraphService = pa()), + (this._graphIsReady = new Promise(e => { + this._projectGraphService.subscribe(t => { + t.matches('idle') || e(); + }); + })), + (this.router = Ns()), + (this.graphService = oo()), + (this.projectGraphService = { + send: e => { + this.handleLegacyProjectGraphEvent(e); + }, + }), + (this.fileClickCallbackListeners = []), + (this.openProjectConfigCallbackListeners = []), + (this.runTaskCallbackListeners = []), + this.graphService.listen(e => { + if ('FileLinkClick' === e.type) { + const t = `${e.sourceRoot}/${e.file}`; + this.fileClickCallbackListeners.forEach(e => e(t)); + } + 'ProjectOpenConfigClick' === e.type && + this.openProjectConfigCallbackListeners.forEach(t => t(e.projectName)), + 'RunTaskClick' === e.type && this.runTaskCallbackListeners.forEach(t => t(e.taskId)); + }); + } + focusProject(e) { + this.router.navigate(`/projects/${encodeURIComponent(e)}`); + } + selectAllProjects() { + this.router.navigate('/projects/all'); + } + enableExperimentalFeatures() { + localStorage.setItem('showExperimentalFeatures', 'true'), (window.appConfig.showExperimentalFeatures = !0); + } + disableExperimentalFeatures() { + localStorage.setItem('showExperimentalFeatures', 'false'), (window.appConfig.showExperimentalFeatures = !1); + } + registerFileClickCallback(e) { + this.fileClickCallbackListeners.push(e); + } + registerOpenProjectConfigCallback(e) { + this.openProjectConfigCallbackListeners.push(e); + } + registerRunTaskCallback(e) { + this.runTaskCallbackListeners.push(e); + } + handleLegacyProjectGraphEvent(e) { + switch (e.type) { + case 'focusProject': + this.focusProject(e.projectName); + break; + case 'selectAll': + this.selectAllProjects(); + break; + default: + this._graphIsReady.then(() => this._projectGraphService.send(e)); + } + } + })()); + const As = document.getElementById('app'); + window.appConfig + ? (0, ht.sY)(vt(r.StrictMode, { children: vt(Os, {}) }), As) + : (0, ht.sY)( + vt('p', { + children: [ + 'No environment could be found. Please run', + ' ', + vt('pre', { children: 'npx nx run graph-client:generate-dev-environment-js' }), + '.', + ], + }), + As, + ); + }, + 57228: (e, t, n) => { + 'use strict'; + n.r(t), n.d(t, { GraphService: () => GraphService }); + n(78062), n(3346), n(9883), n(71867); + var r = n(50413), + o = n.n(r), + i = n(46457), + a = n.n(i), + s = n(68420), + l = n.n(s); + n(75715), n(19658), n(29); + let c = (function (e) { + return ( + (e.blue_500 = 'hsla(217, 91%, 60%, 1)'), + (e.blue_600 = 'hsla(221, 83%, 53%, 1)'), + (e.sky_500 = 'hsla(199, 89%, 48%, 1)'), + (e.sky_600 = 'hsla(200, 98%, 39%, 1)'), + (e.pink_400 = 'hsla(329, 86%, 70%, 1)'), + (e.pink_500 = 'hsla(330, 81%, 60%, 1)'), + (e.fuchsia_500 = 'hsla(292, 84%, 61%, 1)'), + (e.fuchsia_600 = 'hsla(293, 69%, 49%, 1)'), + (e.fuchsia_700 = 'hsla(295, 72%, 40%, 1)'), + (e.fuchsia_800 = 'hsla(295, 70%, 33%, 1)'), + (e.slate_50 = 'hsla(210, 40%, 98%, 1)'), + (e.slate_100 = 'hsla(210, 40%, 96%, 1)'), + (e.slate_200 = 'hsla(214, 32%, 91%, 1)'), + (e.slate_300 = 'hsla(213, 27%, 84%, 1)'), + (e.slate_400 = 'hsla(213, 27%, 84%, 1)'), + (e.slate_500 = 'hsla(215, 16%, 47%, 1)'), + (e.slate_600 = 'hsla(215, 19%, 35%, 1)'), + (e.slate_700 = 'hsla(215, 25%, 27%, 1)'), + (e.slate_800 = 'hsla(217, 33%, 17%, 1)'), + (e.white = '#fff'), + e + ); + })({}); + const u = 'NX_GRAPH_DARK_MODE'; + function d(e, t, n) { + return (function (e) { + return !0 === e.scratch(u); + })(e) + ? t + : n; + } + const f = [ + { + selector: 'edge', + style: { + width: '1px', + 'line-color': e => d(e, c.slate_400, c.slate_500), + 'text-outline-color': e => d(e, c.slate_400, c.slate_500), + 'text-outline-width': '0px', + color: e => d(e, c.slate_400, c.slate_500), + 'curve-style': 'unbundled-bezier', + 'target-arrow-shape': 'triangle', + 'target-arrow-fill': 'filled', + 'target-arrow-color': e => d(e, c.slate_400, c.slate_500), + }, + }, + { + selector: 'edge.affected', + style: { + 'line-color': e => d(e, c.fuchsia_500, c.pink_500), + 'target-arrow-color': e => d(e, c.fuchsia_500, c.pink_500), + 'curve-style': 'unbundled-bezier', + }, + }, + { + selector: 'edge.implicit', + style: { + label: 'implicit', + 'font-size': '16px', + 'curve-style': 'unbundled-bezier', + 'text-rotation': 'autorotate', + }, + }, + { + selector: 'edge.dynamic', + style: { 'line-dash-pattern': [5, 5], 'line-style': 'dashed', 'curve-style': 'unbundled-bezier' }, + }, + { selector: 'edge.transparent', style: { opacity: 0.2 } }, + ]; + const h = new (class LabelWidthCalculator { + constructor() { + (this.cache = new Map()), (this.ctx = void 0); + } + calculateWidth(e) { + this.ctx || (this.ctx = document.createElement('canvas').getContext('2d')); + const t = e.data('id'), + n = e.style('font-style'), + r = e.style('font-size'), + o = e.style('font-family'), + i = e.style('font-weight'); + this.ctx.font = n + ' ' + i + ' ' + r + ' ' + o; + const a = this.cache.get(t); + if (a) return a; + { + const n = this.ctx.measureText(e.data('id')).width; + return this.cache.set(t, n), n; + } + } + })(), + p = [ + { + selector: 'node', + style: { + 'font-size': '32px', + 'font-family': 'system-ui, "Helvetica Neue", sans-serif', + backgroundColor: e => d(e, c.slate_600, c.slate_200), + 'border-style': 'solid', + 'border-color': e => d(e, c.slate_700, c.slate_300), + 'border-width': '1px', + 'text-halign': 'center', + 'text-valign': 'center', + 'padding-left': '16px', + color: e => d(e, c.slate_200, c.slate_600), + label: 'data(id)', + width: e => h.calculateWidth(e), + 'transition-property': 'background-color, border-color, line-color, target-arrow-color', + 'transition-duration': 250, + 'transition-timing-function': 'ease-out', + shape: 'round-rectangle', + }, + }, + { + selector: 'node.focused', + style: { + color: c.white, + 'border-color': e => d(e, c.slate_700, c.slate_200), + backgroundColor: e => d(e, c.sky_500, c.blue_500), + width: e => h.calculateWidth(e), + }, + }, + { + selector: 'node.affected', + style: { + color: c.white, + 'border-color': e => d(e, c.fuchsia_800, c.pink_500), + backgroundColor: e => d(e, c.fuchsia_700, c.pink_400), + }, + }, + { + selector: 'node.parentNode', + style: { + 'background-opacity': e => d(e, 0.5, 0.8), + backgroundColor: e => d(e, c.slate_700, c.slate_50), + 'border-color': e => d(e, c.slate_500, c.slate_400), + 'border-style': 'dashed', + 'border-width': 2, + label: 'data(label)', + 'text-halign': 'center', + 'text-valign': 'top', + 'font-weight': 'bold', + 'font-size': '48px', + }, + }, + { + selector: 'node.highlight', + style: { + color: c.white, + 'border-color': e => d(e, c.sky_600, c.blue_600), + backgroundColor: e => d(e, c.sky_500, c.blue_500), + }, + }, + { selector: 'node.transparent:childless', style: { opacity: 0.5 } }, + { + selector: 'node.transparent:parent', + style: { 'text-opacity': 0.5, 'background-opacity': 0.25, 'border-opacity': 0.5 }, + }, + { selector: 'node.taskNode', style: { label: 'data(label)' } }, + ], + v = { + name: 'dagre', + nodeDimensionsIncludeLabels: !0, + rankSep: 75, + rankDir: 'TB', + edgeSep: 50, + ranker: 'network-simplex', + }; + class RenderGraph { + constructor(e, t, n, r = 'TB') { + (this.container = e), + (this.renderMode = n), + (this.cy = void 0), + (this.collapseEdges = !1), + (this._theme = void 0), + (this._rankDir = 'TB'), + (this.listeners = new Map()), + (this._theme = t), + (this._rankDir = r); + } + set theme(e) { + (this._theme = e), this.render(); + } + set rankDir(e) { + (this._rankDir = e), this.render(); + } + get activeContainer() { + return 'string' == typeof this.container ? document.getElementById(this.container) : this.container; + } + broadcast(e) { + this.listeners.forEach(t => t(e)); + } + listen(e) { + const t = this.listeners.size + 1; + return ( + this.listeners.set(t, e), + () => { + this.listeners.delete(t); + } + ); + } + setElements(e) { + let t; + this.cy && ((t = this.cy.nodes('.focused').first().id()), this.cy.destroy(), delete this.cy), + (this.cy = o()({ + headless: null === this.activeContainer, + container: this.activeContainer, + boxSelectionEnabled: !1, + style: [...p, ...f], + panningEnabled: !0, + userZoomingEnabled: 'nx-docs' !== this.renderMode, + })), + this.cy.add(e), + t && this.cy.$id(t).addClass('focused'), + this.cy.on('zoom pan', () => { + this.broadcast({ type: 'GraphRegenerated' }); + }), + this.listenForProjectNodeClicks(), + this.listenForEdgeNodeClicks(), + this.listenForProjectNodeHovers(), + this.listenForTaskNodeClicks(), + this.listenForEmptyClicks(); + } + render() { + var e, t, n, r; + if (this.cy) { + const e = this.cy.elements().sort((e, t) => e.id().localeCompare(t.id())); + e.layout(Object.assign({}, v, { rankDir: this._rankDir })).run(), + this.collapseEdges && + (this.cy.remove(this.cy.edges()), + e.edges().forEach(e => { + const t = e.source(), + n = e.target(); + if (t.parent().first().id() === n.parent().first().id()) this.cy.add(e); + else { + let r, o; + const i = e.connectedNodes().commonAncestors(); + let a, s; + if ( + (i.length > 0 + ? ((r = t.ancestors().filter(e => !i.contains(e))), + (o = n.ancestors().filter(e => !i.contains(e)))) + : ((r = t.ancestors()), (o = n.ancestors())), + r.length > 0 && 0 === o.length + ? ((a = r.last().id()), (s = n.id())) + : o.length > 0 && 0 === r.length + ? ((a = t.id()), (s = o.last().id())) + : ((a = r.last().id()), (s = o.last().id())), + void 0 !== a && void 0 !== s) + ) { + const e = `${a}|${s}`; + if (0 === this.cy.$id(e).length) { + const t = { group: 'edges', data: { id: e, source: a, target: s } }; + this.cy.add(t); + } + } else + console.log(`Couldn't figure out how to draw edge ${e.id()}`), + console.log( + 'source ancestors', + r.map(e => e.id()), + ), + console.log( + 'target ancestors', + o.map(e => e.id()), + ); + } + })), + 'nx-console' === this.renderMode + ? this.cy.fit(this.cy.elements(), 175).center().resize().panBy({ x: 150, y: 0 }) + : this.cy.fit(this.cy.elements(), 25).center().resize(), + this.cy.scratch(u, 'dark' === this._theme), + this.cy.elements().scratch(u, 'dark' === this._theme), + this.cy.mount(this.activeContainer); + } + return { + numNodes: null != (e = null == (t = this.cy) ? void 0 : t.nodes().length) ? e : 0, + numEdges: null != (n = null == (r = this.cy) ? void 0 : r.edges().length) ? n : 0, + }; + } + listenForProjectNodeClicks() { + this.cy.$('node.projectNode').on('click', e => { + const t = e.target; + let n = t.popperRef(); + this.broadcast({ + type: 'ProjectNodeClick', + ref: n, + id: t.id(), + data: { id: t.id(), type: t.data('type'), tags: t.data('tags'), description: t.data('description') }, + }); + }); + } + listenForTaskNodeClicks() { + this.cy.$('node.taskNode').on('click', e => { + const t = e.target; + let n = t.popperRef(); + this.broadcast({ + type: 'TaskNodeClick', + ref: n, + id: t.id(), + data: { + id: t.id(), + label: t.data('label'), + executor: t.data('executor'), + description: t.data('description'), + }, + }); + }); + } + listenForEdgeNodeClicks() { + this.cy.$('edge.projectEdge').on('click', e => { + var t; + const n = e.target; + let r = n.popperRef(); + this.broadcast({ + type: 'EdgeClick', + ref: r, + id: n.id(), + data: { + id: n.id(), + type: n.data('type'), + source: n.source().id(), + target: n.target().id(), + sourceRoot: n.source().data('root'), + fileDependencies: + (null == (t = n.source().data('files')) + ? void 0 + : t + .filter(e => e.deps && e.deps.find(e => ('string' == typeof e ? e : e[0]) === n.target().id())) + .map(e => ({ + fileName: e.file.replace(`${n.source().data('root')}/`, ''), + target: n.target().id(), + }))) || [], + }, + }); + }); + } + listenForProjectNodeHovers() { + this.cy.on('mouseover', e => { + const t = e.target; + t.isNode && + t.isNode() && + !t.isParent() && + (this.cy.elements().difference(t.outgoers().union(t.incomers())).not(t).addClass('transparent'), + t.addClass('highlight').outgoers().union(t.incomers()).addClass('highlight')); + }), + this.cy.on('mouseout', e => { + const t = e.target; + t.isNode && + t.isNode() && + !t.isParent() && + (this.cy.elements().removeClass('transparent'), + t.removeClass('highlight').outgoers().union(t.incomers()).removeClass('highlight')); + }); + } + listenForEmptyClicks() { + this.cy.on('click', e => { + e.target === this.cy && this.broadcast({ type: 'BackgroundClick' }); + }); + } + getImage() { + const e = d(this.cy, '#0F172A', '#FFFFFF'); + return this.cy.png({ bg: e, full: !0 }); + } + setFocussedElement(e) { + this.cy.$id(e).addClass('focused'); + } + clearFocussedElement() { + var e; + null == (e = this.cy) || e.nodes('.focused').removeClass('focused'); + } + getCurrentlyShownProjectIds() { + var e, t; + return null != (e = null == (t = this.cy) ? void 0 : t.nodes().map(e => e.data('id'))) ? e : []; + } + } + n(94841), n(9944), n(47306); + class ProjectNode { + constructor(e, t, n) { + (this.fileMap = e), (this.project = t), (this.workspaceRoot = n), (this.affected = !1), (this.focused = !1); + } + getCytoscapeNodeDef(e) { + return { + group: 'nodes', + data: this.getData(e), + classes: this.getClasses(), + selectable: !1, + grabbable: !1, + pannable: !0, + }; + } + getData(e) { + return { + id: this.project.name, + type: this.project.type, + tags: this.project.data.tags, + parent: e && this.project.data.hasOwnProperty('root') ? this.getParentId() : null, + files: (this.fileMap || {})[this.project.data.name] || [], + root: this.project.data.root, + description: this.project.data.description, + }; + } + getClasses() { + let e = `projectNode ${this.project.type}`; + return this.affected && (e += ' affected'), e; + } + getParentId() { + const e = this.getAncestors(); + return e.length > 0 ? e[e.length - 1].id : null; + } + getAncestors() { + if (!this.project.data.root) return []; + return (function (e, t) { + const n = e + .replace(t, '') + .split('/') + .filter(e => '' !== e); + return n.pop(), n; + })(this.project.data.root, this.workspaceRoot).map((e, t, n) => { + const r = [...n].slice(0, t + 1).join('/'); + return { label: r, id: `dir-${r}`, parentId: t > 0 ? `dir-${[...n].slice(0, t).join('/')}` : null }; + }); + } + } + class ProjectEdge { + constructor(e) { + (this.dep = e), (this.affected = !1); + } + getCytoscapeNodeDef() { + var e; + let t; + return ( + (t = { + group: 'edges', + classes: 'projectEdge', + data: { + id: `${this.dep.source}|${this.dep.target}`, + source: this.dep.source, + target: this.dep.target, + type: this.dep.type, + }, + }), + (t.classes += null != (e = ` ${this.dep.type}`) ? e : ''), + this.affected && (t.classes += ' affected'), + t + ); + } + } + class ParentNode { + constructor(e) { + this.config = e; + } + getCytoscapeNodeDef() { + return { + group: 'nodes', + classes: 'parentNode', + data: { id: this.config.id, parent: this.config.parentId, label: this.config.label, type: 'dir' }, + selectable: !1, + grabbable: !1, + pannable: !0, + }; + } + } + class ProjectTraversalGraph { + constructor() { + this.cy = void 0; + } + setShownProjects(e) { + let t = this.cy.collection(); + e.forEach(e => { + t = t.union(this.cy.$id(e)); + }); + const n = t.ancestors(), + r = t.union(n), + o = r.edgesTo(r); + return r.union(o); + } + showProjects(e, t) { + let n = this.cy.collection(); + e.forEach(e => { + n = n.union(this.cy.$id(e)); + }), + t.forEach(e => { + n = n.union(this.cy.$id(e)); + }); + const r = n.ancestors(), + o = n.union(r), + i = o.edgesTo(o); + return o.union(i); + } + hideProjects(e, t) { + let n = this.cy.collection(); + t.forEach(e => { + n = n.union(this.cy.$id(e)); + }); + let r = this.cy.collection(); + e.forEach(e => { + r = r.union(this.cy.$id(e)); + }); + const o = n.difference(r).difference(r.ancestors()), + i = o.ancestors(); + let a = o.union(i); + const s = a.edgesTo(a); + return a.union(s); + } + showAffectedProjects() { + const e = this.cy.nodes('.affected'), + t = e.ancestors(), + n = e.union(t), + r = n.edgesTo(n); + return n.union(r); + } + focusProject(e, t = 1) { + const n = this.cy.$id(e), + r = this.includeProjectsByDepth(n, t), + o = n.union(r), + i = o.ancestors(), + a = o.union(i), + s = a.edgesTo(a); + return a.union(s); + } + showAllProjects() { + return this.cy.elements(); + } + hideAllProjects() { + return this.cy.collection(); + } + filterProjectsByText(e, t, n = -1) { + if ('' === e) return this.cy.collection(); + { + const r = e.split(','); + let o = this.cy.nodes().filter(e => r.findIndex(t => e.id().includes(t)) > -1); + t && (o = o.union(this.includeProjectsByDepth(o, n))), (o = o.union(o.ancestors())); + const i = o.edgesTo(o); + return o.union(i); + } + } + traceProjects(e, t) { + const n = this.cy + .elements() + .dijkstra({ root: `[id = "${e}"]`, directed: !0 }) + .pathTo(this.cy.$(`[id = "${t}"]`)); + return n.union(n.ancestors()); + } + traceAllProjects(e, t) { + const n = [[this.cy.$id(e).nodes().first()]], + r = []; + let o = 0; + for (; n.length > 0 && o <= 1e3; ) { + const e = n.pop(), + i = e[e.length - 1].outgoers('node'); + i.length > 0 && + i.forEach(o => { + const i = [...e, o]; + o.id() === t ? r.push(i) : n.push(i); + }), + o++; + } + o >= 1e3 && console.log('failsafe triggered!'); + let i = this.cy.collection(); + return ( + r.forEach(e => { + for (let t = 0; t < e.length; t++) { + i = i.union(e[t]); + const n = t + 1; + n < e.length && (i = i.union(e[t].edgesTo(e[n]))); + } + }), + i.union(i.ancestors()) + ); + } + includeProjectsByDepth(e, t = -1) { + let n, r; + if (-1 === t) n = e.predecessors(); + else { + n = e.incomers(); + for (let e = 1; e < t; e++) n = n.union(n.incomers()); + } + if (-1 === t) r = e.successors(); + else { + r = e.outgoers(); + for (let e = 1; e < t; e++) r = r.union(r.outgoers()); + } + return e.union(n).union(r); + } + initGraph(e, t, n, r, o, i, a) { + this.generateCytoscapeLayout(e, t, n, r, o, i); + } + generateCytoscapeLayout(e, t, n, r, i, a) { + const s = this.createElements(e, t, n, r, i, a); + this.cy = o()({ headless: !0, elements: [...s], boxSelectionEnabled: !1 }); + } + createElements(e, t, n, r, o, i) { + let a = []; + const s = t.map(e => e.name), + l = [], + c = [], + u = {}; + t.forEach(t => { + const a = 'app' === t.type || 'e2e' === t.type ? r.appsDir : r.libsDir, + d = new ProjectNode(e, t, a); + if ( + ((d.affected = i.includes(t.name)), + l.push(d), + o[t.name].forEach(e => { + if (s.includes(e.target)) { + const t = new ProjectEdge(e); + c.push(t); + } + }), + n) + ) { + d.getAncestors().forEach(e => (u[e.id] = e)); + } + }); + const d = l.map(e => e.getCytoscapeNodeDef(n)), + f = c.map(e => e.getCytoscapeNodeDef()); + if (((a = d.concat(f)), n)) { + a = Object.keys(u) + .map(e => new ParentNode(u[e]).getCytoscapeNodeDef()) + .concat(a); + } + return a; + } + } + class TaskNode { + constructor(e, t) { + (this.task = e), (this.project = t); + } + getCytoscapeNodeDef(e) { + return { + group: 'nodes', + classes: 'taskNode', + data: this.getData(e), + selectable: !1, + grabbable: !1, + pannable: !0, + }; + } + getData(e) { + const t = e ? this.task.id.split(':').slice(1).join(':') : this.task.id; + return { + id: this.task.id, + label: t, + executor: this.project.data.targets[this.task.target.target].executor, + parent: e ? this.task.target.project : null, + description: this.project.data.description, + }; + } + } + class TaskEdge { + constructor(e, t) { + (this.source = e), (this.target = t); + } + getCytoscapeNodeDef() { + let e; + return ( + (e = { + group: 'edges', + data: { id: `${this.source}|${this.target}`, source: this.source, target: this.target }, + }), + e + ); + } + } + class TaskTraversalGraph { + constructor() { + (this.projects = []), + (this.taskGraphs = {}), + (this.cy = void 0), + (this.groupByProject = !1), + (this.selectedTasks = new Set()); + } + setProjects(e, t) { + this.selectedTasks.clear(), (this.projects = e), (this.taskGraphs = t); + } + setGroupByProject(e) { + return ( + (this.groupByProject = e), + this.selectedTasks.size > 0 + ? this.createElements(Array.from(this.selectedTasks), e) + : (this.cy = o()({ headless: !0, elements: [] })), + this.cy.elements() + ); + } + setTasks(e) { + let t = !1; + this.selectedTasks.forEach(n => { + e.includes(n) || (this.selectedTasks.delete(n), (t = !0)); + }); + for (const n of e) this.selectedTasks.has(n) || (this.selectedTasks.add(n), (t = !0)); + return t && this.createElements(Array.from(this.selectedTasks), this.groupByProject), this.cy.elements(); + } + selectTask(e) { + return ( + e.forEach(e => { + this.selectedTasks.add(e); + }), + this.createElements(Array.from(this.selectedTasks), this.groupByProject), + this.cy.elements() + ); + } + deselectTask(e) { + return ( + e.forEach(e => { + this.selectedTasks.delete(e); + }), + this.createElements(Array.from(this.selectedTasks), this.groupByProject), + this.cy.elements() + ); + } + createElements(e, t) { + const n = []; + e.forEach(e => { + const r = this.taskGraphs[e]; + if (void 0 === r) throw new Error(`Could not find task graph for ${e}`); + const o = {}; + for (let i in r.tasks) { + const e = r.tasks[i], + a = this.projects.find(t => t.name === e.target.project); + if (void 0 === a) throw new Error(`Could not find project ${a.name}`); + n.push(new TaskNode(r.tasks[i], a)), t && (o[a.name] = { id: a.name, parentId: null, label: a.name }); + } + for (let t in o) n.push(new ParentNode(o[t])); + for (let t in r.dependencies) r.dependencies[t].forEach(e => n.push(new TaskEdge(t, e))); + }), + (this.cy = o()({ headless: !0, elements: n.map(e => e.getCytoscapeNodeDef(t)), boxSelectionEnabled: !1 })); + } + } + class GraphService { + constructor(e, t, n, o = 'TB') { + (this.renderMode = n), + (this.projectTraversalGraph = void 0), + (this.taskTraversalGraph = void 0), + (this.renderGraph = void 0), + (this.lastPerformanceReport = { numEdges: 0, numNodes: 0, renderTime: 0 }), + (this.listeners = new Map()), + (0, r.use)(a()), + (0, r.use)(l()), + (this.renderGraph = new RenderGraph(e, t, n, o)), + this.renderGraph.listen(e => this.broadcast(e)), + (this.projectTraversalGraph = new ProjectTraversalGraph()), + (this.taskTraversalGraph = new TaskTraversalGraph()); + } + set theme(e) { + this.renderGraph.theme = e; + } + set rankDir(e) { + this.renderGraph.rankDir = e; + } + listen(e) { + const t = this.listeners.size + 1; + return ( + this.listeners.set(t, e), + () => { + this.listeners.delete(t); + } + ); + } + broadcast(e) { + this.listeners.forEach(t => t(e)); + } + handleProjectEvent(e) { + const t = Date.now(); + let n; + switch (('notifyGraphUpdateGraph' !== e.type && this.renderGraph.clearFocussedElement(), e.type)) { + case 'notifyGraphInitGraph': + (this.renderGraph.collapseEdges = e.collapseEdges), + this.broadcast({ type: 'GraphRegenerated' }), + this.projectTraversalGraph.initGraph( + e.fileMap, + e.projects, + e.groupByFolder, + e.workspaceLayout, + e.dependencies, + e.affectedProjects, + e.collapseEdges, + ); + break; + case 'notifyGraphUpdateGraph': + (this.renderGraph.collapseEdges = e.collapseEdges), + this.broadcast({ type: 'GraphRegenerated' }), + this.projectTraversalGraph.initGraph( + e.fileMap, + e.projects, + e.groupByFolder, + e.workspaceLayout, + e.dependencies, + e.affectedProjects, + e.collapseEdges, + ), + (n = this.projectTraversalGraph.setShownProjects( + e.selectedProjects.length > 0 ? e.selectedProjects : this.renderGraph.getCurrentlyShownProjectIds(), + )); + break; + case 'notifyGraphFocusProject': + n = this.projectTraversalGraph.focusProject(e.projectName, e.searchDepth); + break; + case 'notifyGraphFilterProjectsByText': + n = this.projectTraversalGraph.filterProjectsByText(e.search, e.includeProjectsByPath, e.searchDepth); + break; + case 'notifyGraphShowProjects': + n = this.projectTraversalGraph.showProjects( + e.projectNames, + this.renderGraph.getCurrentlyShownProjectIds(), + ); + break; + case 'notifyGraphHideProjects': + n = this.projectTraversalGraph.hideProjects( + e.projectNames, + this.renderGraph.getCurrentlyShownProjectIds(), + ); + break; + case 'notifyGraphShowAllProjects': + n = this.projectTraversalGraph.showAllProjects(); + break; + case 'notifyGraphHideAllProjects': + n = this.projectTraversalGraph.hideAllProjects(); + break; + case 'notifyGraphShowAffectedProjects': + n = this.projectTraversalGraph.showAffectedProjects(); + break; + case 'notifyGraphTracing': + e.start && + e.end && + (n = + 'shortest' === e.algorithm + ? this.projectTraversalGraph.traceProjects(e.start, e.end) + : this.projectTraversalGraph.traceAllProjects(e.start, e.end)); + } + let r = [], + o = { numEdges: 0, numNodes: 0, renderTime: 0 }; + if (this.renderGraph) + if (n) { + var i; + this.renderGraph.setElements(n), + 'notifyGraphFocusProject' === e.type && this.renderGraph.setFocussedElement(e.projectName); + const { numEdges: a, numNodes: s } = this.renderGraph.render(); + r = (null != (i = n.nodes('[type!="dir"]')) ? i : []).map(e => e.id()); + o = { renderTime: Date.now() - t, numNodes: s, numEdges: a }; + } else { + const { numEdges: e, numNodes: n } = this.renderGraph.render(); + this.renderGraph.getCurrentlyShownProjectIds(); + o = { renderTime: Date.now() - t, numNodes: n, numEdges: e }; + } + return ( + (this.lastPerformanceReport = o), + this.broadcast({ type: 'GraphRegenerated' }), + { selectedProjectNames: r, perfReport: o } + ); + } + handleTaskEvent(e) { + const t = Date.now(); + let n; + switch ((this.broadcast({ type: 'GraphRegenerated' }), e.type)) { + case 'notifyTaskGraphSetProjects': + this.taskTraversalGraph.setProjects(e.projects, e.taskGraphs); + break; + case 'notifyTaskGraphSetTasks': + n = this.taskTraversalGraph.setTasks(e.taskIds); + break; + case 'notifyTaskGraphTasksSelected': + n = this.taskTraversalGraph.selectTask(e.taskIds); + break; + case 'notifyTaskGraphTasksDeselected': + n = this.taskTraversalGraph.deselectTask(e.taskIds); + break; + case 'setGroupByProject': + n = this.taskTraversalGraph.setGroupByProject(e.groupByProject); + } + let r = [], + o = { numEdges: 0, numNodes: 0, renderTime: 0 }; + if (this.renderGraph && n) { + var i; + this.renderGraph.setElements(n); + const { numEdges: e, numNodes: a } = this.renderGraph.render(); + r = (null != (i = n.nodes('[type!="dir"]')) ? i : []).map(e => e.id()); + o = { renderTime: Date.now() - t, numNodes: a, numEdges: e }; + } + return ( + (this.lastPerformanceReport = o), + this.broadcast({ type: 'GraphRegenerated' }), + { selectedProjectNames: r, perfReport: o } + ); + } + getImage() { + return this.renderGraph.getImage(); + } + } + }, + 1020: (e, t, n) => { + 'use strict'; + n.r(t), + n.d(t, { + afterMain: () => E, + afterRead: () => b, + afterWrite: () => S, + applyStyles: () => M, + arrow: () => Q, + auto: () => s, + basePlacements: () => l, + beforeMain: () => x, + beforeRead: () => m, + beforeWrite: () => k, + bottom: () => o, + clippingParents: () => d, + computeStyles: () => ne, + createPopper: () => Me, + createPopperBase: () => Ne, + createPopperLite: () => Oe, + detectOverflow: () => ye, + end: () => u, + eventListeners: () => oe, + flip: () => be, + hide: () => Ee, + left: () => a, + main: () => w, + modifierPhases: () => P, + offset: () => ke, + placements: () => g, + popper: () => h, + popperGenerator: () => De, + popperOffsets: () => _e, + preventOverflow: () => Se, + read: () => y, + reference: () => p, + right: () => i, + start: () => c, + top: () => r, + variationPlacements: () => v, + viewport: () => f, + write: () => _, + }); + var r = 'top', + o = 'bottom', + i = 'right', + a = 'left', + s = 'auto', + l = [r, o, i, a], + c = 'start', + u = 'end', + d = 'clippingParents', + f = 'viewport', + h = 'popper', + p = 'reference', + v = l.reduce(function (e, t) { + return e.concat([t + '-' + c, t + '-' + u]); + }, []), + g = [].concat(l, [s]).reduce(function (e, t) { + return e.concat([t, t + '-' + c, t + '-' + u]); + }, []), + m = 'beforeRead', + y = 'read', + b = 'afterRead', + x = 'beforeMain', + w = 'main', + E = 'afterMain', + k = 'beforeWrite', + _ = 'write', + S = 'afterWrite', + P = [m, y, b, x, w, E, k, _, S]; + function C(e) { + return e ? (e.nodeName || '').toLowerCase() : null; + } + function j(e) { + if (null == e) return window; + if ('[object Window]' !== e.toString()) { + var t = e.ownerDocument; + return (t && t.defaultView) || window; + } + return e; + } + function T(e) { + return e instanceof j(e).Element || e instanceof Element; + } + function D(e) { + return e instanceof j(e).HTMLElement || e instanceof HTMLElement; + } + function N(e) { + return 'undefined' != typeof ShadowRoot && (e instanceof j(e).ShadowRoot || e instanceof ShadowRoot); + } + const M = { + name: 'applyStyles', + enabled: !0, + phase: 'write', + fn: function (e) { + var t = e.state; + Object.keys(t.elements).forEach(function (e) { + var n = t.styles[e] || {}, + r = t.attributes[e] || {}, + o = t.elements[e]; + D(o) && + C(o) && + (Object.assign(o.style, n), + Object.keys(r).forEach(function (e) { + var t = r[e]; + !1 === t ? o.removeAttribute(e) : o.setAttribute(e, !0 === t ? '' : t); + })); + }); + }, + effect: function (e) { + var t = e.state, + n = { + popper: { position: t.options.strategy, left: '0', top: '0', margin: '0' }, + arrow: { position: 'absolute' }, + reference: {}, + }; + return ( + Object.assign(t.elements.popper.style, n.popper), + (t.styles = n), + t.elements.arrow && Object.assign(t.elements.arrow.style, n.arrow), + function () { + Object.keys(t.elements).forEach(function (e) { + var r = t.elements[e], + o = t.attributes[e] || {}, + i = Object.keys(t.styles.hasOwnProperty(e) ? t.styles[e] : n[e]).reduce(function (e, t) { + return (e[t] = ''), e; + }, {}); + D(r) && + C(r) && + (Object.assign(r.style, i), + Object.keys(o).forEach(function (e) { + r.removeAttribute(e); + })); + }); + } + ); + }, + requires: ['computeStyles'], + }; + function O(e) { + return e.split('-')[0]; + } + var A = Math.max, + R = Math.min, + L = Math.round; + function I() { + var e = navigator.userAgentData; + return null != e && e.brands + ? e.brands + .map(function (e) { + return e.brand + '/' + e.version; + }) + .join(' ') + : navigator.userAgent; + } + function B() { + return !/^((?!chrome|android).)*safari/i.test(I()); + } + function F(e, t, n) { + void 0 === t && (t = !1), void 0 === n && (n = !1); + var r = e.getBoundingClientRect(), + o = 1, + i = 1; + t && + D(e) && + ((o = (e.offsetWidth > 0 && L(r.width) / e.offsetWidth) || 1), + (i = (e.offsetHeight > 0 && L(r.height) / e.offsetHeight) || 1)); + var a = (T(e) ? j(e) : window).visualViewport, + s = !B() && n, + l = (r.left + (s && a ? a.offsetLeft : 0)) / o, + c = (r.top + (s && a ? a.offsetTop : 0)) / i, + u = r.width / o, + d = r.height / i; + return { width: u, height: d, top: c, right: l + u, bottom: c + d, left: l, x: l, y: c }; + } + function z(e) { + var t = F(e), + n = e.offsetWidth, + r = e.offsetHeight; + return ( + Math.abs(t.width - n) <= 1 && (n = t.width), + Math.abs(t.height - r) <= 1 && (r = t.height), + { x: e.offsetLeft, y: e.offsetTop, width: n, height: r } + ); + } + function V(e, t) { + var n = t.getRootNode && t.getRootNode(); + if (e.contains(t)) return !0; + if (n && N(n)) { + var r = t; + do { + if (r && e.isSameNode(r)) return !0; + r = r.parentNode || r.host; + } while (r); + } + return !1; + } + function G(e) { + return j(e).getComputedStyle(e); + } + function H(e) { + return ['table', 'td', 'th'].indexOf(C(e)) >= 0; + } + function W(e) { + return ((T(e) ? e.ownerDocument : e.document) || window.document).documentElement; + } + function U(e) { + return 'html' === C(e) ? e : e.assignedSlot || e.parentNode || (N(e) ? e.host : null) || W(e); + } + function q(e) { + return D(e) && 'fixed' !== G(e).position ? e.offsetParent : null; + } + function Y(e) { + for (var t = j(e), n = q(e); n && H(n) && 'static' === G(n).position; ) n = q(n); + return n && ('html' === C(n) || ('body' === C(n) && 'static' === G(n).position)) + ? t + : n || + (function (e) { + var t = /firefox/i.test(I()); + if (/Trident/i.test(I()) && D(e) && 'fixed' === G(e).position) return null; + var n = U(e); + for (N(n) && (n = n.host); D(n) && ['html', 'body'].indexOf(C(n)) < 0; ) { + var r = G(n); + if ( + 'none' !== r.transform || + 'none' !== r.perspective || + 'paint' === r.contain || + -1 !== ['transform', 'perspective'].indexOf(r.willChange) || + (t && 'filter' === r.willChange) || + (t && r.filter && 'none' !== r.filter) + ) + return n; + n = n.parentNode; + } + return null; + })(e) || + t; + } + function X(e) { + return ['top', 'bottom'].indexOf(e) >= 0 ? 'x' : 'y'; + } + function $(e, t, n) { + return A(e, R(t, n)); + } + function K(e) { + return Object.assign({}, { top: 0, right: 0, bottom: 0, left: 0 }, e); + } + function Z(e, t) { + return t.reduce(function (t, n) { + return (t[n] = e), t; + }, {}); + } + const Q = { + name: 'arrow', + enabled: !0, + phase: 'main', + fn: function (e) { + var t, + n = e.state, + s = e.name, + c = e.options, + u = n.elements.arrow, + d = n.modifiersData.popperOffsets, + f = O(n.placement), + h = X(f), + p = [a, i].indexOf(f) >= 0 ? 'height' : 'width'; + if (u && d) { + var v = (function (e, t) { + return K( + 'number' != + typeof (e = 'function' == typeof e ? e(Object.assign({}, t.rects, { placement: t.placement })) : e) + ? e + : Z(e, l), + ); + })(c.padding, n), + g = z(u), + m = 'y' === h ? r : a, + y = 'y' === h ? o : i, + b = n.rects.reference[p] + n.rects.reference[h] - d[h] - n.rects.popper[p], + x = d[h] - n.rects.reference[h], + w = Y(u), + E = w ? ('y' === h ? w.clientHeight || 0 : w.clientWidth || 0) : 0, + k = b / 2 - x / 2, + _ = v[m], + S = E - g[p] - v[y], + P = E / 2 - g[p] / 2 + k, + C = $(_, P, S), + j = h; + n.modifiersData[s] = (((t = {})[j] = C), (t.centerOffset = C - P), t); + } + }, + effect: function (e) { + var t = e.state, + n = e.options.element, + r = void 0 === n ? '[data-popper-arrow]' : n; + null != r && + ('string' != typeof r || (r = t.elements.popper.querySelector(r))) && + V(t.elements.popper, r) && + (t.elements.arrow = r); + }, + requires: ['popperOffsets'], + requiresIfExists: ['preventOverflow'], + }; + function J(e) { + return e.split('-')[1]; + } + var ee = { top: 'auto', right: 'auto', bottom: 'auto', left: 'auto' }; + function te(e) { + var t, + n = e.popper, + s = e.popperRect, + l = e.placement, + c = e.variation, + d = e.offsets, + f = e.position, + h = e.gpuAcceleration, + p = e.adaptive, + v = e.roundOffsets, + g = e.isFixed, + m = d.x, + y = void 0 === m ? 0 : m, + b = d.y, + x = void 0 === b ? 0 : b, + w = 'function' == typeof v ? v({ x: y, y: x }) : { x: y, y: x }; + (y = w.x), (x = w.y); + var E = d.hasOwnProperty('x'), + k = d.hasOwnProperty('y'), + _ = a, + S = r, + P = window; + if (p) { + var C = Y(n), + T = 'clientHeight', + D = 'clientWidth'; + if ( + (C === j(n) && + 'static' !== G((C = W(n))).position && + 'absolute' === f && + ((T = 'scrollHeight'), (D = 'scrollWidth')), + l === r || ((l === a || l === i) && c === u)) + ) + (S = o), + (x -= (g && C === P && P.visualViewport ? P.visualViewport.height : C[T]) - s.height), + (x *= h ? 1 : -1); + if (l === a || ((l === r || l === o) && c === u)) + (_ = i), + (y -= (g && C === P && P.visualViewport ? P.visualViewport.width : C[D]) - s.width), + (y *= h ? 1 : -1); + } + var N, + M = Object.assign({ position: f }, p && ee), + O = + !0 === v + ? (function (e) { + var t = e.x, + n = e.y, + r = window.devicePixelRatio || 1; + return { x: L(t * r) / r || 0, y: L(n * r) / r || 0 }; + })({ x: y, y: x }) + : { x: y, y: x }; + return ( + (y = O.x), + (x = O.y), + h + ? Object.assign( + {}, + M, + (((N = {})[S] = k ? '0' : ''), + (N[_] = E ? '0' : ''), + (N.transform = + (P.devicePixelRatio || 1) <= 1 + ? 'translate(' + y + 'px, ' + x + 'px)' + : 'translate3d(' + y + 'px, ' + x + 'px, 0)'), + N), + ) + : Object.assign( + {}, + M, + (((t = {})[S] = k ? x + 'px' : ''), (t[_] = E ? y + 'px' : ''), (t.transform = ''), t), + ) + ); + } + const ne = { + name: 'computeStyles', + enabled: !0, + phase: 'beforeWrite', + fn: function (e) { + var t = e.state, + n = e.options, + r = n.gpuAcceleration, + o = void 0 === r || r, + i = n.adaptive, + a = void 0 === i || i, + s = n.roundOffsets, + l = void 0 === s || s, + c = { + placement: O(t.placement), + variation: J(t.placement), + popper: t.elements.popper, + popperRect: t.rects.popper, + gpuAcceleration: o, + isFixed: 'fixed' === t.options.strategy, + }; + null != t.modifiersData.popperOffsets && + (t.styles.popper = Object.assign( + {}, + t.styles.popper, + te( + Object.assign({}, c, { + offsets: t.modifiersData.popperOffsets, + position: t.options.strategy, + adaptive: a, + roundOffsets: l, + }), + ), + )), + null != t.modifiersData.arrow && + (t.styles.arrow = Object.assign( + {}, + t.styles.arrow, + te( + Object.assign({}, c, { + offsets: t.modifiersData.arrow, + position: 'absolute', + adaptive: !1, + roundOffsets: l, + }), + ), + )), + (t.attributes.popper = Object.assign({}, t.attributes.popper, { 'data-popper-placement': t.placement })); + }, + data: {}, + }; + var re = { passive: !0 }; + const oe = { + name: 'eventListeners', + enabled: !0, + phase: 'write', + fn: function () {}, + effect: function (e) { + var t = e.state, + n = e.instance, + r = e.options, + o = r.scroll, + i = void 0 === o || o, + a = r.resize, + s = void 0 === a || a, + l = j(t.elements.popper), + c = [].concat(t.scrollParents.reference, t.scrollParents.popper); + return ( + i && + c.forEach(function (e) { + e.addEventListener('scroll', n.update, re); + }), + s && l.addEventListener('resize', n.update, re), + function () { + i && + c.forEach(function (e) { + e.removeEventListener('scroll', n.update, re); + }), + s && l.removeEventListener('resize', n.update, re); + } + ); + }, + data: {}, + }; + var ie = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }; + function ae(e) { + return e.replace(/left|right|bottom|top/g, function (e) { + return ie[e]; + }); + } + var se = { start: 'end', end: 'start' }; + function le(e) { + return e.replace(/start|end/g, function (e) { + return se[e]; + }); + } + function ce(e) { + var t = j(e); + return { scrollLeft: t.pageXOffset, scrollTop: t.pageYOffset }; + } + function ue(e) { + return F(W(e)).left + ce(e).scrollLeft; + } + function de(e) { + var t = G(e), + n = t.overflow, + r = t.overflowX, + o = t.overflowY; + return /auto|scroll|overlay|hidden/.test(n + o + r); + } + function fe(e) { + return ['html', 'body', '#document'].indexOf(C(e)) >= 0 ? e.ownerDocument.body : D(e) && de(e) ? e : fe(U(e)); + } + function he(e, t) { + var n; + void 0 === t && (t = []); + var r = fe(e), + o = r === (null == (n = e.ownerDocument) ? void 0 : n.body), + i = j(r), + a = o ? [i].concat(i.visualViewport || [], de(r) ? r : []) : r, + s = t.concat(a); + return o ? s : s.concat(he(U(a))); + } + function pe(e) { + return Object.assign({}, e, { left: e.x, top: e.y, right: e.x + e.width, bottom: e.y + e.height }); + } + function ve(e, t, n) { + return t === f + ? pe( + (function (e, t) { + var n = j(e), + r = W(e), + o = n.visualViewport, + i = r.clientWidth, + a = r.clientHeight, + s = 0, + l = 0; + if (o) { + (i = o.width), (a = o.height); + var c = B(); + (c || (!c && 'fixed' === t)) && ((s = o.offsetLeft), (l = o.offsetTop)); + } + return { width: i, height: a, x: s + ue(e), y: l }; + })(e, n), + ) + : T(t) + ? (function (e, t) { + var n = F(e, !1, 'fixed' === t); + return ( + (n.top = n.top + e.clientTop), + (n.left = n.left + e.clientLeft), + (n.bottom = n.top + e.clientHeight), + (n.right = n.left + e.clientWidth), + (n.width = e.clientWidth), + (n.height = e.clientHeight), + (n.x = n.left), + (n.y = n.top), + n + ); + })(t, n) + : pe( + (function (e) { + var t, + n = W(e), + r = ce(e), + o = null == (t = e.ownerDocument) ? void 0 : t.body, + i = A(n.scrollWidth, n.clientWidth, o ? o.scrollWidth : 0, o ? o.clientWidth : 0), + a = A(n.scrollHeight, n.clientHeight, o ? o.scrollHeight : 0, o ? o.clientHeight : 0), + s = -r.scrollLeft + ue(e), + l = -r.scrollTop; + return ( + 'rtl' === G(o || n).direction && (s += A(n.clientWidth, o ? o.clientWidth : 0) - i), + { width: i, height: a, x: s, y: l } + ); + })(W(e)), + ); + } + function ge(e, t, n, r) { + var o = + 'clippingParents' === t + ? (function (e) { + var t = he(U(e)), + n = ['absolute', 'fixed'].indexOf(G(e).position) >= 0 && D(e) ? Y(e) : e; + return T(n) + ? t.filter(function (e) { + return T(e) && V(e, n) && 'body' !== C(e); + }) + : []; + })(e) + : [].concat(t), + i = [].concat(o, [n]), + a = i[0], + s = i.reduce(function (t, n) { + var o = ve(e, n, r); + return ( + (t.top = A(o.top, t.top)), + (t.right = R(o.right, t.right)), + (t.bottom = R(o.bottom, t.bottom)), + (t.left = A(o.left, t.left)), + t + ); + }, ve(e, a, r)); + return (s.width = s.right - s.left), (s.height = s.bottom - s.top), (s.x = s.left), (s.y = s.top), s; + } + function me(e) { + var t, + n = e.reference, + s = e.element, + l = e.placement, + d = l ? O(l) : null, + f = l ? J(l) : null, + h = n.x + n.width / 2 - s.width / 2, + p = n.y + n.height / 2 - s.height / 2; + switch (d) { + case r: + t = { x: h, y: n.y - s.height }; + break; + case o: + t = { x: h, y: n.y + n.height }; + break; + case i: + t = { x: n.x + n.width, y: p }; + break; + case a: + t = { x: n.x - s.width, y: p }; + break; + default: + t = { x: n.x, y: n.y }; + } + var v = d ? X(d) : null; + if (null != v) { + var g = 'y' === v ? 'height' : 'width'; + switch (f) { + case c: + t[v] = t[v] - (n[g] / 2 - s[g] / 2); + break; + case u: + t[v] = t[v] + (n[g] / 2 - s[g] / 2); + } + } + return t; + } + function ye(e, t) { + void 0 === t && (t = {}); + var n = t, + a = n.placement, + s = void 0 === a ? e.placement : a, + c = n.strategy, + u = void 0 === c ? e.strategy : c, + v = n.boundary, + g = void 0 === v ? d : v, + m = n.rootBoundary, + y = void 0 === m ? f : m, + b = n.elementContext, + x = void 0 === b ? h : b, + w = n.altBoundary, + E = void 0 !== w && w, + k = n.padding, + _ = void 0 === k ? 0 : k, + S = K('number' != typeof _ ? _ : Z(_, l)), + P = x === h ? p : h, + C = e.rects.popper, + j = e.elements[E ? P : x], + D = ge(T(j) ? j : j.contextElement || W(e.elements.popper), g, y, u), + N = F(e.elements.reference), + M = me({ reference: N, element: C, strategy: 'absolute', placement: s }), + O = pe(Object.assign({}, C, M)), + A = x === h ? O : N, + R = { + top: D.top - A.top + S.top, + bottom: A.bottom - D.bottom + S.bottom, + left: D.left - A.left + S.left, + right: A.right - D.right + S.right, + }, + L = e.modifiersData.offset; + if (x === h && L) { + var I = L[s]; + Object.keys(R).forEach(function (e) { + var t = [i, o].indexOf(e) >= 0 ? 1 : -1, + n = [r, o].indexOf(e) >= 0 ? 'y' : 'x'; + R[e] += I[n] * t; + }); + } + return R; + } + const be = { + name: 'flip', + enabled: !0, + phase: 'main', + fn: function (e) { + var t = e.state, + n = e.options, + u = e.name; + if (!t.modifiersData[u]._skip) { + for ( + var d = n.mainAxis, + f = void 0 === d || d, + h = n.altAxis, + p = void 0 === h || h, + m = n.fallbackPlacements, + y = n.padding, + b = n.boundary, + x = n.rootBoundary, + w = n.altBoundary, + E = n.flipVariations, + k = void 0 === E || E, + _ = n.allowedAutoPlacements, + S = t.options.placement, + P = O(S), + C = + m || + (P === S || !k + ? [ae(S)] + : (function (e) { + if (O(e) === s) return []; + var t = ae(e); + return [le(e), t, le(t)]; + })(S)), + j = [S].concat(C).reduce(function (e, n) { + return e.concat( + O(n) === s + ? (function (e, t) { + void 0 === t && (t = {}); + var n = t, + r = n.placement, + o = n.boundary, + i = n.rootBoundary, + a = n.padding, + s = n.flipVariations, + c = n.allowedAutoPlacements, + u = void 0 === c ? g : c, + d = J(r), + f = d + ? s + ? v + : v.filter(function (e) { + return J(e) === d; + }) + : l, + h = f.filter(function (e) { + return u.indexOf(e) >= 0; + }); + 0 === h.length && (h = f); + var p = h.reduce(function (t, n) { + return (t[n] = ye(e, { placement: n, boundary: o, rootBoundary: i, padding: a })[O(n)]), t; + }, {}); + return Object.keys(p).sort(function (e, t) { + return p[e] - p[t]; + }); + })(t, { + placement: n, + boundary: b, + rootBoundary: x, + padding: y, + flipVariations: k, + allowedAutoPlacements: _, + }) + : n, + ); + }, []), + T = t.rects.reference, + D = t.rects.popper, + N = new Map(), + M = !0, + A = j[0], + R = 0; + R < j.length; + R++ + ) { + var L = j[R], + I = O(L), + B = J(L) === c, + F = [r, o].indexOf(I) >= 0, + z = F ? 'width' : 'height', + V = ye(t, { placement: L, boundary: b, rootBoundary: x, altBoundary: w, padding: y }), + G = F ? (B ? i : a) : B ? o : r; + T[z] > D[z] && (G = ae(G)); + var H = ae(G), + W = []; + if ( + (f && W.push(V[I] <= 0), + p && W.push(V[G] <= 0, V[H] <= 0), + W.every(function (e) { + return e; + })) + ) { + (A = L), (M = !1); + break; + } + N.set(L, W); + } + if (M) + for ( + var U = function (e) { + var t = j.find(function (t) { + var n = N.get(t); + if (n) + return n.slice(0, e).every(function (e) { + return e; + }); + }); + if (t) return (A = t), 'break'; + }, + q = k ? 3 : 1; + q > 0; + q-- + ) { + if ('break' === U(q)) break; + } + t.placement !== A && ((t.modifiersData[u]._skip = !0), (t.placement = A), (t.reset = !0)); + } + }, + requiresIfExists: ['offset'], + data: { _skip: !1 }, + }; + function xe(e, t, n) { + return ( + void 0 === n && (n = { x: 0, y: 0 }), + { + top: e.top - t.height - n.y, + right: e.right - t.width + n.x, + bottom: e.bottom - t.height + n.y, + left: e.left - t.width - n.x, + } + ); + } + function we(e) { + return [r, i, o, a].some(function (t) { + return e[t] >= 0; + }); + } + const Ee = { + name: 'hide', + enabled: !0, + phase: 'main', + requiresIfExists: ['preventOverflow'], + fn: function (e) { + var t = e.state, + n = e.name, + r = t.rects.reference, + o = t.rects.popper, + i = t.modifiersData.preventOverflow, + a = ye(t, { elementContext: 'reference' }), + s = ye(t, { altBoundary: !0 }), + l = xe(a, r), + c = xe(s, o, i), + u = we(l), + d = we(c); + (t.modifiersData[n] = { + referenceClippingOffsets: l, + popperEscapeOffsets: c, + isReferenceHidden: u, + hasPopperEscaped: d, + }), + (t.attributes.popper = Object.assign({}, t.attributes.popper, { + 'data-popper-reference-hidden': u, + 'data-popper-escaped': d, + })); + }, + }; + const ke = { + name: 'offset', + enabled: !0, + phase: 'main', + requires: ['popperOffsets'], + fn: function (e) { + var t = e.state, + n = e.options, + o = e.name, + s = n.offset, + l = void 0 === s ? [0, 0] : s, + c = g.reduce(function (e, n) { + return ( + (e[n] = (function (e, t, n) { + var o = O(e), + s = [a, r].indexOf(o) >= 0 ? -1 : 1, + l = 'function' == typeof n ? n(Object.assign({}, t, { placement: e })) : n, + c = l[0], + u = l[1]; + return (c = c || 0), (u = (u || 0) * s), [a, i].indexOf(o) >= 0 ? { x: u, y: c } : { x: c, y: u }; + })(n, t.rects, l)), + e + ); + }, {}), + u = c[t.placement], + d = u.x, + f = u.y; + null != t.modifiersData.popperOffsets && + ((t.modifiersData.popperOffsets.x += d), (t.modifiersData.popperOffsets.y += f)), + (t.modifiersData[o] = c); + }, + }; + const _e = { + name: 'popperOffsets', + enabled: !0, + phase: 'read', + fn: function (e) { + var t = e.state, + n = e.name; + t.modifiersData[n] = me({ + reference: t.rects.reference, + element: t.rects.popper, + strategy: 'absolute', + placement: t.placement, + }); + }, + data: {}, + }; + const Se = { + name: 'preventOverflow', + enabled: !0, + phase: 'main', + fn: function (e) { + var t = e.state, + n = e.options, + s = e.name, + l = n.mainAxis, + u = void 0 === l || l, + d = n.altAxis, + f = void 0 !== d && d, + h = n.boundary, + p = n.rootBoundary, + v = n.altBoundary, + g = n.padding, + m = n.tether, + y = void 0 === m || m, + b = n.tetherOffset, + x = void 0 === b ? 0 : b, + w = ye(t, { boundary: h, rootBoundary: p, padding: g, altBoundary: v }), + E = O(t.placement), + k = J(t.placement), + _ = !k, + S = X(E), + P = 'x' === S ? 'y' : 'x', + C = t.modifiersData.popperOffsets, + j = t.rects.reference, + T = t.rects.popper, + D = 'function' == typeof x ? x(Object.assign({}, t.rects, { placement: t.placement })) : x, + N = 'number' == typeof D ? { mainAxis: D, altAxis: D } : Object.assign({ mainAxis: 0, altAxis: 0 }, D), + M = t.modifiersData.offset ? t.modifiersData.offset[t.placement] : null, + L = { x: 0, y: 0 }; + if (C) { + if (u) { + var I, + B = 'y' === S ? r : a, + F = 'y' === S ? o : i, + V = 'y' === S ? 'height' : 'width', + G = C[S], + H = G + w[B], + W = G - w[F], + U = y ? -T[V] / 2 : 0, + q = k === c ? j[V] : T[V], + K = k === c ? -T[V] : -j[V], + Z = t.elements.arrow, + Q = y && Z ? z(Z) : { width: 0, height: 0 }, + ee = t.modifiersData['arrow#persistent'] + ? t.modifiersData['arrow#persistent'].padding + : { top: 0, right: 0, bottom: 0, left: 0 }, + te = ee[B], + ne = ee[F], + re = $(0, j[V], Q[V]), + oe = _ ? j[V] / 2 - U - re - te - N.mainAxis : q - re - te - N.mainAxis, + ie = _ ? -j[V] / 2 + U + re + ne + N.mainAxis : K + re + ne + N.mainAxis, + ae = t.elements.arrow && Y(t.elements.arrow), + se = ae ? ('y' === S ? ae.clientTop || 0 : ae.clientLeft || 0) : 0, + le = null != (I = null == M ? void 0 : M[S]) ? I : 0, + ce = G + ie - le, + ue = $(y ? R(H, G + oe - le - se) : H, G, y ? A(W, ce) : W); + (C[S] = ue), (L[S] = ue - G); + } + if (f) { + var de, + fe = 'x' === S ? r : a, + he = 'x' === S ? o : i, + pe = C[P], + ve = 'y' === P ? 'height' : 'width', + ge = pe + w[fe], + me = pe - w[he], + be = -1 !== [r, a].indexOf(E), + xe = null != (de = null == M ? void 0 : M[P]) ? de : 0, + we = be ? ge : pe - j[ve] - T[ve] - xe + N.altAxis, + Ee = be ? pe + j[ve] + T[ve] - xe - N.altAxis : me, + ke = + y && be + ? (function (e, t, n) { + var r = $(e, t, n); + return r > n ? n : r; + })(we, pe, Ee) + : $(y ? we : ge, pe, y ? Ee : me); + (C[P] = ke), (L[P] = ke - pe); + } + t.modifiersData[s] = L; + } + }, + requiresIfExists: ['offset'], + }; + function Pe(e, t, n) { + void 0 === n && (n = !1); + var r, + o, + i = D(t), + a = + D(t) && + (function (e) { + var t = e.getBoundingClientRect(), + n = L(t.width) / e.offsetWidth || 1, + r = L(t.height) / e.offsetHeight || 1; + return 1 !== n || 1 !== r; + })(t), + s = W(t), + l = F(e, a, n), + c = { scrollLeft: 0, scrollTop: 0 }, + u = { x: 0, y: 0 }; + return ( + (i || (!i && !n)) && + (('body' !== C(t) || de(s)) && + (c = (r = t) !== j(r) && D(r) ? { scrollLeft: (o = r).scrollLeft, scrollTop: o.scrollTop } : ce(r)), + D(t) ? (((u = F(t, !0)).x += t.clientLeft), (u.y += t.clientTop)) : s && (u.x = ue(s))), + { x: l.left + c.scrollLeft - u.x, y: l.top + c.scrollTop - u.y, width: l.width, height: l.height } + ); + } + function Ce(e) { + var t = new Map(), + n = new Set(), + r = []; + function o(e) { + n.add(e.name), + [].concat(e.requires || [], e.requiresIfExists || []).forEach(function (e) { + if (!n.has(e)) { + var r = t.get(e); + r && o(r); + } + }), + r.push(e); + } + return ( + e.forEach(function (e) { + t.set(e.name, e); + }), + e.forEach(function (e) { + n.has(e.name) || o(e); + }), + r + ); + } + var je = { placement: 'bottom', modifiers: [], strategy: 'absolute' }; + function Te() { + for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++) t[n] = arguments[n]; + return !t.some(function (e) { + return !(e && 'function' == typeof e.getBoundingClientRect); + }); + } + function De(e) { + void 0 === e && (e = {}); + var t = e, + n = t.defaultModifiers, + r = void 0 === n ? [] : n, + o = t.defaultOptions, + i = void 0 === o ? je : o; + return function (e, t, n) { + void 0 === n && (n = i); + var o, + a, + s = { + placement: 'bottom', + orderedModifiers: [], + options: Object.assign({}, je, i), + modifiersData: {}, + elements: { reference: e, popper: t }, + attributes: {}, + styles: {}, + }, + l = [], + c = !1, + u = { + state: s, + setOptions: function (n) { + var o = 'function' == typeof n ? n(s.options) : n; + d(), + (s.options = Object.assign({}, i, s.options, o)), + (s.scrollParents = { + reference: T(e) ? he(e) : e.contextElement ? he(e.contextElement) : [], + popper: he(t), + }); + var a = (function (e) { + var t = Ce(e); + return P.reduce(function (e, n) { + return e.concat( + t.filter(function (e) { + return e.phase === n; + }), + ); + }, []); + })( + (function (e) { + var t = e.reduce(function (e, t) { + var n = e[t.name]; + return ( + (e[t.name] = n + ? Object.assign({}, n, t, { + options: Object.assign({}, n.options, t.options), + data: Object.assign({}, n.data, t.data), + }) + : t), + e + ); + }, {}); + return Object.keys(t).map(function (e) { + return t[e]; + }); + })([].concat(r, s.options.modifiers)), + ); + return ( + (s.orderedModifiers = a.filter(function (e) { + return e.enabled; + })), + s.orderedModifiers.forEach(function (e) { + var t = e.name, + n = e.options, + r = void 0 === n ? {} : n, + o = e.effect; + if ('function' == typeof o) { + var i = o({ state: s, name: t, instance: u, options: r }), + a = function () {}; + l.push(i || a); + } + }), + u.update() + ); + }, + forceUpdate: function () { + if (!c) { + var e = s.elements, + t = e.reference, + n = e.popper; + if (Te(t, n)) { + (s.rects = { reference: Pe(t, Y(n), 'fixed' === s.options.strategy), popper: z(n) }), + (s.reset = !1), + (s.placement = s.options.placement), + s.orderedModifiers.forEach(function (e) { + return (s.modifiersData[e.name] = Object.assign({}, e.data)); + }); + for (var r = 0; r < s.orderedModifiers.length; r++) + if (!0 !== s.reset) { + var o = s.orderedModifiers[r], + i = o.fn, + a = o.options, + l = void 0 === a ? {} : a, + d = o.name; + 'function' == typeof i && (s = i({ state: s, options: l, name: d, instance: u }) || s); + } else (s.reset = !1), (r = -1); + } + } + }, + update: + ((o = function () { + return new Promise(function (e) { + u.forceUpdate(), e(s); + }); + }), + function () { + return ( + a || + (a = new Promise(function (e) { + Promise.resolve().then(function () { + (a = void 0), e(o()); + }); + })), + a + ); + }), + destroy: function () { + d(), (c = !0); + }, + }; + if (!Te(e, t)) return u; + function d() { + l.forEach(function (e) { + return e(); + }), + (l = []); + } + return ( + u.setOptions(n).then(function (e) { + !c && n.onFirstUpdate && n.onFirstUpdate(e); + }), + u + ); + }; + } + var Ne = De(), + Me = De({ defaultModifiers: [oe, _e, ne, M, ke, be, Se, Q, Ee] }), + Oe = De({ defaultModifiers: [oe, _e, ne, M] }); + }, + 53536: (e, t, n) => { + 'use strict'; + t.f0 = void 0; + var r = n(92185), + o = n(77667); + function i(e) { + return (0, r.assign)(function (t, n, r) { + return (0, o.produce)(t, function (t) { + e(t, n, r); + }); + }); + } + t.f0 = i; + }, + 87608: (e, t) => { + var n; + !(function () { + 'use strict'; + var r = {}.hasOwnProperty; + function o() { + for (var e = [], t = 0; t < arguments.length; t++) { + var n = arguments[t]; + if (n) { + var i = typeof n; + if ('string' === i || 'number' === i) e.push(n); + else if (Array.isArray(n)) { + if (n.length) { + var a = o.apply(null, n); + a && e.push(a); + } + } else if ('object' === i) { + if (n.toString !== Object.prototype.toString && !n.toString.toString().includes('[native code]')) { + e.push(n.toString()); + continue; + } + for (var s in n) r.call(n, s) && n[s] && e.push(s); + } + } + } + return e.join(' '); + } + e.exports + ? ((o.default = o), (e.exports = o)) + : void 0 === + (n = function () { + return o; + }.apply(t, [])) || (e.exports = n); + })(); + }, + 70481: (e, t, n) => { + var r = n(88807), + o = n(48427), + i = TypeError; + e.exports = function (e) { + if (r(e)) return e; + throw i(o(e) + ' is not a function'); + }; + }, + 12420: (e, t, n) => { + var r = n(41758), + o = n(48427), + i = TypeError; + e.exports = function (e) { + if (r(e)) return e; + throw i(o(e) + ' is not a constructor'); + }; + }, + 5946: (e, t, n) => { + var r = n(88807), + o = String, + i = TypeError; + e.exports = function (e) { + if ('object' == typeof e || r(e)) return e; + throw i("Can't set " + o(e) + ' as a prototype'); + }; + }, + 63288: (e, t, n) => { + var r = n(96982), + o = n(56042), + i = n(90189).f, + a = r('unscopables'), + s = Array.prototype; + null == s[a] && i(s, a, { configurable: !0, value: o(null) }), + (e.exports = function (e) { + s[a][e] = !0; + }); + }, + 95158: (e, t, n) => { + 'use strict'; + var r = n(33100).charAt; + e.exports = function (e, t, n) { + return t + (n ? r(e, t).length : 1); + }; + }, + 65712: (e, t, n) => { + var r = n(13521), + o = TypeError; + e.exports = function (e, t) { + if (r(t, e)) return e; + throw o('Incorrect invocation'); + }; + }, + 71843: (e, t, n) => { + var r = n(21188), + o = String, + i = TypeError; + e.exports = function (e) { + if (r(e)) return e; + throw i(o(e) + ' is not an object'); + }; + }, + 17222: (e, t, n) => { + var r = n(30529), + o = n(90069), + i = n(40406), + a = function (e) { + return function (t, n, a) { + var s, + l = r(t), + c = i(l), + u = o(a, c); + if (e && n != n) { + for (; c > u; ) if ((s = l[u++]) != s) return !0; + } else for (; c > u; u++) if ((e || u in l) && l[u] === n) return e || u || 0; + return !e && -1; + }; + }; + e.exports = { includes: a(!0), indexOf: a(!1) }; + }, + 4789: (e, t, n) => { + 'use strict'; + var r = n(82229); + e.exports = function (e, t) { + var n = [][e]; + return ( + !!n && + r(function () { + n.call( + null, + t || + function () { + return 1; + }, + 1, + ); + }) + ); + }; + }, + 89625: (e, t, n) => { + var r = n(90069), + o = n(40406), + i = n(82519), + a = Array, + s = Math.max; + e.exports = function (e, t, n) { + for (var l = o(e), c = r(t, l), u = r(void 0 === n ? l : n, l), d = a(s(u - c, 0)), f = 0; c < u; c++, f++) + i(d, f, e[c]); + return (d.length = f), d; + }; + }, + 96784: (e, t, n) => { + var r = n(41765); + e.exports = r([].slice); + }, + 42771: (e, t, n) => { + var r = n(89625), + o = Math.floor, + i = function (e, t) { + var n = e.length, + l = o(n / 2); + return n < 8 ? a(e, t) : s(e, i(r(e, 0, l), t), i(r(e, l), t), t); + }, + a = function (e, t) { + for (var n, r, o = e.length, i = 1; i < o; ) { + for (r = i, n = e[i]; r && t(e[r - 1], n) > 0; ) e[r] = e[--r]; + r !== i++ && (e[r] = n); + } + return e; + }, + s = function (e, t, n, r) { + for (var o = t.length, i = n.length, a = 0, s = 0; a < o || s < i; ) + e[a + s] = a < o && s < i ? (r(t[a], n[s]) <= 0 ? t[a++] : n[s++]) : a < o ? t[a++] : n[s++]; + return e; + }; + e.exports = i; + }, + 3800: (e, t, n) => { + var r = n(96982)('iterator'), + o = !1; + try { + var i = 0, + a = { + next: function () { + return { done: !!i++ }; + }, + return: function () { + o = !0; + }, + }; + (a[r] = function () { + return this; + }), + Array.from(a, function () { + throw 2; + }); + } catch (s) {} + e.exports = function (e, t) { + if (!t && !o) return !1; + var n = !1; + try { + var i = {}; + (i[r] = function () { + return { + next: function () { + return { done: (n = !0) }; + }, + }; + }), + e(i); + } catch (s) {} + return n; + }; + }, + 29682: (e, t, n) => { + var r = n(24126), + o = r({}.toString), + i = r(''.slice); + e.exports = function (e) { + return i(o(e), 8, -1); + }; + }, + 765: (e, t, n) => { + var r = n(50089), + o = n(88807), + i = n(29682), + a = n(96982)('toStringTag'), + s = Object, + l = + 'Arguments' == + i( + (function () { + return arguments; + })(), + ); + e.exports = r + ? i + : function (e) { + var t, n, r; + return void 0 === e + ? 'Undefined' + : null === e + ? 'Null' + : 'string' == + typeof (n = (function (e, t) { + try { + return e[t]; + } catch (n) {} + })((t = s(e)), a)) + ? n + : l + ? i(t) + : 'Object' == (r = i(t)) && o(t.callee) + ? 'Arguments' + : r; + }; + }, + 12283: (e, t, n) => { + var r = n(91854), + o = n(72929), + i = n(68098), + a = n(90189); + e.exports = function (e, t, n) { + for (var s = o(t), l = a.f, c = i.f, u = 0; u < s.length; u++) { + var d = s[u]; + r(e, d) || (n && r(n, d)) || l(e, d, c(t, d)); + } + }; + }, + 59981: (e, t, n) => { + var r = n(96982)('match'); + e.exports = function (e) { + var t = /./; + try { + '/./'[e](t); + } catch (n) { + try { + return (t[r] = !1), '/./'[e](t); + } catch (o) {} + } + return !1; + }; + }, + 80093: (e, t, n) => { + var r = n(82229); + e.exports = !r(function () { + function e() {} + return (e.prototype.constructor = null), Object.getPrototypeOf(new e()) !== e.prototype; + }); + }, + 74903: e => { + e.exports = function (e, t) { + return { value: e, done: t }; + }; + }, + 7001: (e, t, n) => { + var r = n(95417), + o = n(90189), + i = n(413); + e.exports = r + ? function (e, t, n) { + return o.f(e, t, i(1, n)); + } + : function (e, t, n) { + return (e[t] = n), e; + }; + }, + 413: e => { + e.exports = function (e, t) { + return { enumerable: !(1 & e), configurable: !(2 & e), writable: !(4 & e), value: t }; + }; + }, + 82519: (e, t, n) => { + 'use strict'; + var r = n(37712), + o = n(90189), + i = n(413); + e.exports = function (e, t, n) { + var a = r(t); + a in e ? o.f(e, a, i(0, n)) : (e[a] = n); + }; + }, + 29379: (e, t, n) => { + var r = n(88807), + o = n(90189), + i = n(93450), + a = n(26139); + e.exports = function (e, t, n, s) { + s || (s = {}); + var l = s.enumerable, + c = void 0 !== s.name ? s.name : t; + if ((r(n) && i(n, c, s), s.global)) l ? (e[t] = n) : a(t, n); + else { + try { + s.unsafe ? e[t] && (l = !0) : delete e[t]; + } catch (u) {} + l + ? (e[t] = n) + : o.f(e, t, { value: n, enumerable: !1, configurable: !s.nonConfigurable, writable: !s.nonWritable }); + } + return e; + }; + }, + 26139: (e, t, n) => { + var r = n(70412), + o = Object.defineProperty; + e.exports = function (e, t) { + try { + o(r, e, { value: t, configurable: !0, writable: !0 }); + } catch (n) { + r[e] = t; + } + return t; + }; + }, + 7351: (e, t, n) => { + 'use strict'; + var r = n(48427), + o = TypeError; + e.exports = function (e, t) { + if (!delete e[t]) throw o('Cannot delete property ' + r(t) + ' of ' + r(e)); + }; + }, + 95417: (e, t, n) => { + var r = n(82229); + e.exports = !r(function () { + return ( + 7 != + Object.defineProperty({}, 1, { + get: function () { + return 7; + }, + })[1] + ); + }); + }, + 89338: e => { + var t = 'object' == typeof document && document.all, + n = void 0 === t && void 0 !== t; + e.exports = { all: t, IS_HTMLDDA: n }; + }, + 36254: (e, t, n) => { + var r = n(70412), + o = n(21188), + i = r.document, + a = o(i) && o(i.createElement); + e.exports = function (e) { + return a ? i.createElement(e) : {}; + }; + }, + 42706: e => { + e.exports = { + CSSRuleList: 0, + CSSStyleDeclaration: 0, + CSSValueList: 0, + ClientRectList: 0, + DOMRectList: 0, + DOMStringList: 0, + DOMTokenList: 1, + DataTransferItemList: 0, + FileList: 0, + HTMLAllCollection: 0, + HTMLCollection: 0, + HTMLFormElement: 0, + HTMLSelectElement: 0, + MediaList: 0, + MimeTypeArray: 0, + NamedNodeMap: 0, + NodeList: 1, + PaintRequestList: 0, + Plugin: 0, + PluginArray: 0, + SVGLengthList: 0, + SVGNumberList: 0, + SVGPathSegList: 0, + SVGPointList: 0, + SVGStringList: 0, + SVGTransformList: 0, + SourceBufferList: 0, + StyleSheetList: 0, + TextTrackCueList: 0, + TextTrackList: 0, + TouchList: 0, + }; + }, + 92076: (e, t, n) => { + var r = n(36254)('span').classList, + o = r && r.constructor && r.constructor.prototype; + e.exports = o === Object.prototype ? void 0 : o; + }, + 89443: (e, t, n) => { + var r = n(86378).match(/firefox\/(\d+)/i); + e.exports = !!r && +r[1]; + }, + 18573: (e, t, n) => { + var r = n(27158), + o = n(84543); + e.exports = !r && !o && 'object' == typeof window && 'object' == typeof document; + }, + 27158: e => { + e.exports = 'object' == typeof Deno && Deno && 'object' == typeof Deno.version; + }, + 17608: (e, t, n) => { + var r = n(86378); + e.exports = /MSIE|Trident/.test(r); + }, + 44500: (e, t, n) => { + var r = n(86378), + o = n(70412); + e.exports = /ipad|iphone|ipod/i.test(r) && void 0 !== o.Pebble; + }, + 3148: (e, t, n) => { + var r = n(86378); + e.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(r); + }, + 84543: (e, t, n) => { + var r = n(29682), + o = n(70412); + e.exports = 'process' == r(o.process); + }, + 32415: (e, t, n) => { + var r = n(86378); + e.exports = /web0s(?!.*chrome)/i.test(r); + }, + 86378: (e, t, n) => { + var r = n(52228); + e.exports = r('navigator', 'userAgent') || ''; + }, + 44905: (e, t, n) => { + var r, + o, + i = n(70412), + a = n(86378), + s = i.process, + l = i.Deno, + c = (s && s.versions) || (l && l.version), + u = c && c.v8; + u && (o = (r = u.split('.'))[0] > 0 && r[0] < 4 ? 1 : +(r[0] + r[1])), + !o && a && (!(r = a.match(/Edge\/(\d+)/)) || r[1] >= 74) && (r = a.match(/Chrome\/(\d+)/)) && (o = +r[1]), + (e.exports = o); + }, + 58452: (e, t, n) => { + var r = n(86378).match(/AppleWebKit\/(\d+)\./); + e.exports = !!r && +r[1]; + }, + 96410: e => { + e.exports = [ + 'constructor', + 'hasOwnProperty', + 'isPrototypeOf', + 'propertyIsEnumerable', + 'toLocaleString', + 'toString', + 'valueOf', + ]; + }, + 72698: (e, t, n) => { + var r = n(70412), + o = n(68098).f, + i = n(7001), + a = n(29379), + s = n(26139), + l = n(12283), + c = n(76777); + e.exports = function (e, t) { + var n, + u, + d, + f, + h, + p = e.target, + v = e.global, + g = e.stat; + if ((n = v ? r : g ? r[p] || s(p, {}) : (r[p] || {}).prototype)) + for (u in t) { + if ( + ((f = t[u]), + (d = e.dontCallGetSet ? (h = o(n, u)) && h.value : n[u]), + !c(v ? u : p + (g ? '.' : '#') + u, e.forced) && void 0 !== d) + ) { + if (typeof f == typeof d) continue; + l(f, d); + } + (e.sham || (d && d.sham)) && i(f, 'sham', !0), a(n, u, f, e); + } + }; + }, + 82229: e => { + e.exports = function (e) { + try { + return !!e(); + } catch (t) { + return !0; + } + }; + }, + 11323: (e, t, n) => { + 'use strict'; + n(9883); + var r = n(41765), + o = n(29379), + i = n(38157), + a = n(82229), + s = n(96982), + l = n(7001), + c = s('species'), + u = RegExp.prototype; + e.exports = function (e, t, n, d) { + var f = s(e), + h = !a(function () { + var t = {}; + return ( + (t[f] = function () { + return 7; + }), + 7 != ''[e](t) + ); + }), + p = + h && + !a(function () { + var t = !1, + n = /a/; + return ( + 'split' === e && + (((n = {}).constructor = {}), + (n.constructor[c] = function () { + return n; + }), + (n.flags = ''), + (n[f] = /./[f])), + (n.exec = function () { + return (t = !0), null; + }), + n[f](''), + !t + ); + }); + if (!h || !p || n) { + var v = r(/./[f]), + g = t(f, ''[e], function (e, t, n, o, a) { + var s = r(e), + l = t.exec; + return l === i || l === u.exec + ? h && !a + ? { done: !0, value: v(t, n, o) } + : { done: !0, value: s(n, t, o) } + : { done: !1 }; + }); + o(String.prototype, e, g[0]), o(u, f, g[1]); + } + d && l(u[f], 'sham', !0); + }; + }, + 90675: (e, t, n) => { + var r = n(43524), + o = Function.prototype, + i = o.apply, + a = o.call; + e.exports = + ('object' == typeof Reflect && Reflect.apply) || + (r + ? a.bind(i) + : function () { + return a.apply(i, arguments); + }); + }, + 7365: (e, t, n) => { + var r = n(41765), + o = n(70481), + i = n(43524), + a = r(r.bind); + e.exports = function (e, t) { + return ( + o(e), + void 0 === t + ? e + : i + ? a(e, t) + : function () { + return e.apply(t, arguments); + } + ); + }; + }, + 43524: (e, t, n) => { + var r = n(82229); + e.exports = !r(function () { + var e = function () {}.bind(); + return 'function' != typeof e || e.hasOwnProperty('prototype'); + }); + }, + 41924: (e, t, n) => { + var r = n(43524), + o = Function.prototype.call; + e.exports = r + ? o.bind(o) + : function () { + return o.apply(o, arguments); + }; + }, + 56815: (e, t, n) => { + var r = n(95417), + o = n(91854), + i = Function.prototype, + a = r && Object.getOwnPropertyDescriptor, + s = o(i, 'name'), + l = s && 'something' === function () {}.name, + c = s && (!r || (r && a(i, 'name').configurable)); + e.exports = { EXISTS: s, PROPER: l, CONFIGURABLE: c }; + }, + 24126: (e, t, n) => { + var r = n(43524), + o = Function.prototype, + i = o.call, + a = r && o.bind.bind(i, i); + e.exports = r + ? a + : function (e) { + return function () { + return i.apply(e, arguments); + }; + }; + }, + 41765: (e, t, n) => { + var r = n(29682), + o = n(24126); + e.exports = function (e) { + if ('Function' === r(e)) return o(e); + }; + }, + 52228: (e, t, n) => { + var r = n(70412), + o = n(88807); + e.exports = function (e, t) { + return arguments.length < 2 ? ((n = r[e]), o(n) ? n : void 0) : r[e] && r[e][t]; + var n; + }; + }, + 63412: (e, t, n) => { + var r = n(765), + o = n(89423), + i = n(39989), + a = n(72429), + s = n(96982)('iterator'); + e.exports = function (e) { + if (!i(e)) return o(e, s) || o(e, '@@iterator') || a[r(e)]; + }; + }, + 28338: (e, t, n) => { + var r = n(41924), + o = n(70481), + i = n(71843), + a = n(48427), + s = n(63412), + l = TypeError; + e.exports = function (e, t) { + var n = arguments.length < 2 ? s(e) : t; + if (o(n)) return i(r(n, e)); + throw l(a(e) + ' is not iterable'); + }; + }, + 89423: (e, t, n) => { + var r = n(70481), + o = n(39989); + e.exports = function (e, t) { + var n = e[t]; + return o(n) ? void 0 : r(n); + }; + }, + 80556: (e, t, n) => { + var r = n(41765), + o = n(90663), + i = Math.floor, + a = r(''.charAt), + s = r(''.replace), + l = r(''.slice), + c = /\$([$&'`]|\d{1,2}|<[^>]*>)/g, + u = /\$([$&'`]|\d{1,2})/g; + e.exports = function (e, t, n, r, d, f) { + var h = n + e.length, + p = r.length, + v = u; + return ( + void 0 !== d && ((d = o(d)), (v = c)), + s(f, v, function (o, s) { + var c; + switch (a(s, 0)) { + case '$': + return '$'; + case '&': + return e; + case '`': + return l(t, 0, n); + case "'": + return l(t, h); + case '<': + c = d[l(s, 1, -1)]; + break; + default: + var u = +s; + if (0 === u) return o; + if (u > p) { + var f = i(u / 10); + return 0 === f ? o : f <= p ? (void 0 === r[f - 1] ? a(s, 1) : r[f - 1] + a(s, 1)) : o; + } + c = r[u - 1]; + } + return void 0 === c ? '' : c; + }) + ); + }; + }, + 70412: (e, t, n) => { + var r = function (e) { + return e && e.Math == Math && e; + }; + e.exports = + r('object' == typeof globalThis && globalThis) || + r('object' == typeof window && window) || + r('object' == typeof self && self) || + r('object' == typeof n.g && n.g) || + (function () { + return this; + })() || + Function('return this')(); + }, + 91854: (e, t, n) => { + var r = n(41765), + o = n(90663), + i = r({}.hasOwnProperty); + e.exports = + Object.hasOwn || + function (e, t) { + return i(o(e), t); + }; + }, + 64690: e => { + e.exports = {}; + }, + 19630: (e, t, n) => { + var r = n(70412); + e.exports = function (e, t) { + var n = r.console; + n && n.error && (1 == arguments.length ? n.error(e) : n.error(e, t)); + }; + }, + 95439: (e, t, n) => { + var r = n(52228); + e.exports = r('document', 'documentElement'); + }, + 94469: (e, t, n) => { + var r = n(95417), + o = n(82229), + i = n(36254); + e.exports = + !r && + !o(function () { + return ( + 7 != + Object.defineProperty(i('div'), 'a', { + get: function () { + return 7; + }, + }).a + ); + }); + }, + 21197: (e, t, n) => { + var r = n(41765), + o = n(82229), + i = n(29682), + a = Object, + s = r(''.split); + e.exports = o(function () { + return !a('z').propertyIsEnumerable(0); + }) + ? function (e) { + return 'String' == i(e) ? s(e, '') : a(e); + } + : a; + }, + 60227: (e, t, n) => { + var r = n(41765), + o = n(88807), + i = n(81502), + a = r(Function.toString); + o(i.inspectSource) || + (i.inspectSource = function (e) { + return a(e); + }), + (e.exports = i.inspectSource); + }, + 887: (e, t, n) => { + var r, + o, + i, + a = n(17023), + s = n(70412), + l = n(21188), + c = n(7001), + u = n(91854), + d = n(81502), + f = n(5350), + h = n(64690), + p = 'Object already initialized', + v = s.TypeError, + g = s.WeakMap; + if (a || d.state) { + var m = d.state || (d.state = new g()); + (m.get = m.get), + (m.has = m.has), + (m.set = m.set), + (r = function (e, t) { + if (m.has(e)) throw v(p); + return (t.facade = e), m.set(e, t), t; + }), + (o = function (e) { + return m.get(e) || {}; + }), + (i = function (e) { + return m.has(e); + }); + } else { + var y = f('state'); + (h[y] = !0), + (r = function (e, t) { + if (u(e, y)) throw v(p); + return (t.facade = e), c(e, y, t), t; + }), + (o = function (e) { + return u(e, y) ? e[y] : {}; + }), + (i = function (e) { + return u(e, y); + }); + } + e.exports = { + set: r, + get: o, + has: i, + enforce: function (e) { + return i(e) ? o(e) : r(e, {}); + }, + getterFor: function (e) { + return function (t) { + var n; + if (!l(t) || (n = o(t)).type !== e) throw v('Incompatible receiver, ' + e + ' required'); + return n; + }; + }, + }; + }, + 46196: (e, t, n) => { + var r = n(96982), + o = n(72429), + i = r('iterator'), + a = Array.prototype; + e.exports = function (e) { + return void 0 !== e && (o.Array === e || a[i] === e); + }; + }, + 88807: (e, t, n) => { + var r = n(89338), + o = r.all; + e.exports = r.IS_HTMLDDA + ? function (e) { + return 'function' == typeof e || e === o; + } + : function (e) { + return 'function' == typeof e; + }; + }, + 41758: (e, t, n) => { + var r = n(41765), + o = n(82229), + i = n(88807), + a = n(765), + s = n(52228), + l = n(60227), + c = function () {}, + u = [], + d = s('Reflect', 'construct'), + f = /^\s*(?:class|function)\b/, + h = r(f.exec), + p = !f.exec(c), + v = function (e) { + if (!i(e)) return !1; + try { + return d(c, u, e), !0; + } catch (t) { + return !1; + } + }, + g = function (e) { + if (!i(e)) return !1; + switch (a(e)) { + case 'AsyncFunction': + case 'GeneratorFunction': + case 'AsyncGeneratorFunction': + return !1; + } + try { + return p || !!h(f, l(e)); + } catch (t) { + return !0; + } + }; + (g.sham = !0), + (e.exports = + !d || + o(function () { + var e; + return ( + v(v.call) || + !v(Object) || + !v(function () { + e = !0; + }) || + e + ); + }) + ? g + : v); + }, + 76777: (e, t, n) => { + var r = n(82229), + o = n(88807), + i = /#|\.prototype\./, + a = function (e, t) { + var n = l[s(e)]; + return n == u || (n != c && (o(t) ? r(t) : !!t)); + }, + s = (a.normalize = function (e) { + return String(e).replace(i, '.').toLowerCase(); + }), + l = (a.data = {}), + c = (a.NATIVE = 'N'), + u = (a.POLYFILL = 'P'); + e.exports = a; + }, + 39989: e => { + e.exports = function (e) { + return null == e; + }; + }, + 21188: (e, t, n) => { + var r = n(88807), + o = n(89338), + i = o.all; + e.exports = o.IS_HTMLDDA + ? function (e) { + return 'object' == typeof e ? null !== e : r(e) || e === i; + } + : function (e) { + return 'object' == typeof e ? null !== e : r(e); + }; + }, + 8588: e => { + e.exports = !1; + }, + 16372: (e, t, n) => { + var r = n(21188), + o = n(29682), + i = n(96982)('match'); + e.exports = function (e) { + var t; + return r(e) && (void 0 !== (t = e[i]) ? !!t : 'RegExp' == o(e)); + }; + }, + 29844: (e, t, n) => { + var r = n(52228), + o = n(88807), + i = n(13521), + a = n(39696), + s = Object; + e.exports = a + ? function (e) { + return 'symbol' == typeof e; + } + : function (e) { + var t = r('Symbol'); + return o(t) && i(t.prototype, s(e)); + }; + }, + 98102: (e, t, n) => { + var r = n(7365), + o = n(41924), + i = n(71843), + a = n(48427), + s = n(46196), + l = n(40406), + c = n(13521), + u = n(28338), + d = n(63412), + f = n(4593), + h = TypeError, + p = function (e, t) { + (this.stopped = e), (this.result = t); + }, + v = p.prototype; + e.exports = function (e, t, n) { + var g, + m, + y, + b, + x, + w, + E, + k = n && n.that, + _ = !(!n || !n.AS_ENTRIES), + S = !(!n || !n.IS_RECORD), + P = !(!n || !n.IS_ITERATOR), + C = !(!n || !n.INTERRUPTED), + j = r(t, k), + T = function (e) { + return g && f(g, 'normal', e), new p(!0, e); + }, + D = function (e) { + return _ ? (i(e), C ? j(e[0], e[1], T) : j(e[0], e[1])) : C ? j(e, T) : j(e); + }; + if (S) g = e.iterator; + else if (P) g = e; + else { + if (!(m = d(e))) throw h(a(e) + ' is not iterable'); + if (s(m)) { + for (y = 0, b = l(e); b > y; y++) if ((x = D(e[y])) && c(v, x)) return x; + return new p(!1); + } + g = u(e, m); + } + for (w = S ? e.next : g.next; !(E = o(w, g)).done; ) { + try { + x = D(E.value); + } catch (N) { + f(g, 'throw', N); + } + if ('object' == typeof x && x && c(v, x)) return x; + } + return new p(!1); + }; + }, + 4593: (e, t, n) => { + var r = n(41924), + o = n(71843), + i = n(89423); + e.exports = function (e, t, n) { + var a, s; + o(e); + try { + if (!(a = i(e, 'return'))) { + if ('throw' === t) throw n; + return n; + } + a = r(a, e); + } catch (l) { + (s = !0), (a = l); + } + if ('throw' === t) throw n; + if (s) throw a; + return o(a), n; + }; + }, + 57015: (e, t, n) => { + 'use strict'; + var r = n(56194).IteratorPrototype, + o = n(56042), + i = n(413), + a = n(43803), + s = n(72429), + l = function () { + return this; + }; + e.exports = function (e, t, n, c) { + var u = t + ' Iterator'; + return (e.prototype = o(r, { next: i(+!c, n) })), a(e, u, !1, !0), (s[u] = l), e; + }; + }, + 61666: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(41924), + i = n(8588), + a = n(56815), + s = n(88807), + l = n(57015), + c = n(62421), + u = n(71083), + d = n(43803), + f = n(7001), + h = n(29379), + p = n(96982), + v = n(72429), + g = n(56194), + m = a.PROPER, + y = a.CONFIGURABLE, + b = g.IteratorPrototype, + x = g.BUGGY_SAFARI_ITERATORS, + w = p('iterator'), + E = 'keys', + k = 'values', + _ = 'entries', + S = function () { + return this; + }; + e.exports = function (e, t, n, a, p, g, P) { + l(n, t, a); + var C, + j, + T, + D = function (e) { + if (e === p && R) return R; + if (!x && e in O) return O[e]; + switch (e) { + case E: + case k: + case _: + return function () { + return new n(this, e); + }; + } + return function () { + return new n(this); + }; + }, + N = t + ' Iterator', + M = !1, + O = e.prototype, + A = O[w] || O['@@iterator'] || (p && O[p]), + R = (!x && A) || D(p), + L = ('Array' == t && O.entries) || A; + if ( + (L && + (C = c(L.call(new e()))) !== Object.prototype && + C.next && + (i || c(C) === b || (u ? u(C, b) : s(C[w]) || h(C, w, S)), d(C, N, !0, !0), i && (v[N] = S)), + m && + p == k && + A && + A.name !== k && + (!i && y + ? f(O, 'name', k) + : ((M = !0), + (R = function () { + return o(A, this); + }))), + p) + ) + if (((j = { values: D(k), keys: g ? R : D(E), entries: D(_) }), P)) + for (T in j) (x || M || !(T in O)) && h(O, T, j[T]); + else r({ target: t, proto: !0, forced: x || M }, j); + return (i && !P) || O[w] === R || h(O, w, R, { name: p }), (v[t] = R), j; + }; + }, + 56194: (e, t, n) => { + 'use strict'; + var r, + o, + i, + a = n(82229), + s = n(88807), + l = n(21188), + c = n(56042), + u = n(62421), + d = n(29379), + f = n(96982), + h = n(8588), + p = f('iterator'), + v = !1; + [].keys && ('next' in (i = [].keys()) ? (o = u(u(i))) !== Object.prototype && (r = o) : (v = !0)), + !l(r) || + a(function () { + var e = {}; + return r[p].call(e) !== e; + }) + ? (r = {}) + : h && (r = c(r)), + s(r[p]) || + d(r, p, function () { + return this; + }), + (e.exports = { IteratorPrototype: r, BUGGY_SAFARI_ITERATORS: v }); + }, + 72429: e => { + e.exports = {}; + }, + 40406: (e, t, n) => { + var r = n(25664); + e.exports = function (e) { + return r(e.length); + }; + }, + 93450: (e, t, n) => { + var r = n(82229), + o = n(88807), + i = n(91854), + a = n(95417), + s = n(56815).CONFIGURABLE, + l = n(60227), + c = n(887), + u = c.enforce, + d = c.get, + f = Object.defineProperty, + h = + a && + !r(function () { + return 8 !== f(function () {}, 'length', { value: 8 }).length; + }), + p = String(String).split('String'), + v = (e.exports = function (e, t, n) { + 'Symbol(' === String(t).slice(0, 7) && (t = '[' + String(t).replace(/^Symbol\(([^)]*)\)/, '$1') + ']'), + n && n.getter && (t = 'get ' + t), + n && n.setter && (t = 'set ' + t), + (!i(e, 'name') || (s && e.name !== t)) && (a ? f(e, 'name', { value: t, configurable: !0 }) : (e.name = t)), + h && n && i(n, 'arity') && e.length !== n.arity && f(e, 'length', { value: n.arity }); + try { + n && i(n, 'constructor') && n.constructor + ? a && f(e, 'prototype', { writable: !1 }) + : e.prototype && (e.prototype = void 0); + } catch (o) {} + var r = u(e); + return i(r, 'source') || (r.source = p.join('string' == typeof t ? t : '')), e; + }); + Function.prototype.toString = v(function () { + return (o(this) && d(this).source) || l(this); + }, 'toString'); + }, + 99958: e => { + var t = Math.ceil, + n = Math.floor; + e.exports = + Math.trunc || + function (e) { + var r = +e; + return (r > 0 ? n : t)(r); + }; + }, + 49514: (e, t, n) => { + var r, + o, + i, + a, + s, + l, + c, + u, + d = n(70412), + f = n(7365), + h = n(68098).f, + p = n(1017).set, + v = n(3148), + g = n(44500), + m = n(32415), + y = n(84543), + b = d.MutationObserver || d.WebKitMutationObserver, + x = d.document, + w = d.process, + E = d.Promise, + k = h(d, 'queueMicrotask'), + _ = k && k.value; + _ || + ((r = function () { + var e, t; + for (y && (e = w.domain) && e.exit(); o; ) { + (t = o.fn), (o = o.next); + try { + t(); + } catch (n) { + throw (o ? a() : (i = void 0), n); + } + } + (i = void 0), e && e.enter(); + }), + v || y || m || !b || !x + ? !g && E && E.resolve + ? (((c = E.resolve(void 0)).constructor = E), + (u = f(c.then, c)), + (a = function () { + u(r); + })) + : y + ? (a = function () { + w.nextTick(r); + }) + : ((p = f(p, d)), + (a = function () { + p(r); + })) + : ((s = !0), + (l = x.createTextNode('')), + new b(r).observe(l, { characterData: !0 }), + (a = function () { + l.data = s = !s; + }))), + (e.exports = + _ || + function (e) { + var t = { fn: e, next: void 0 }; + i && (i.next = t), o || ((o = t), a()), (i = t); + }); + }, + 92473: (e, t, n) => { + 'use strict'; + var r = n(70481), + o = TypeError, + i = function (e) { + var t, n; + (this.promise = new e(function (e, r) { + if (void 0 !== t || void 0 !== n) throw o('Bad Promise constructor'); + (t = e), (n = r); + })), + (this.resolve = r(t)), + (this.reject = r(n)); + }; + e.exports.f = function (e) { + return new i(e); + }; + }, + 47082: (e, t, n) => { + var r = n(16372), + o = TypeError; + e.exports = function (e) { + if (r(e)) throw o("The method doesn't accept regular expressions"); + return e; + }; + }, + 94382: (e, t, n) => { + 'use strict'; + var r = n(95417), + o = n(41765), + i = n(41924), + a = n(82229), + s = n(46615), + l = n(97399), + c = n(99706), + u = n(90663), + d = n(21197), + f = Object.assign, + h = Object.defineProperty, + p = o([].concat); + e.exports = + !f || + a(function () { + if ( + r && + 1 !== + f( + { b: 1 }, + f( + h({}, 'a', { + enumerable: !0, + get: function () { + h(this, 'b', { value: 3, enumerable: !1 }); + }, + }), + { b: 2 }, + ), + ).b + ) + return !0; + var e = {}, + t = {}, + n = Symbol(), + o = 'abcdefghijklmnopqrst'; + return ( + (e[n] = 7), + o.split('').forEach(function (e) { + t[e] = e; + }), + 7 != f({}, e)[n] || s(f({}, t)).join('') != o + ); + }) + ? function (e, t) { + for (var n = u(e), o = arguments.length, a = 1, f = l.f, h = c.f; o > a; ) + for (var v, g = d(arguments[a++]), m = f ? p(s(g), f(g)) : s(g), y = m.length, b = 0; y > b; ) + (v = m[b++]), (r && !i(h, g, v)) || (n[v] = g[v]); + return n; + } + : f; + }, + 56042: (e, t, n) => { + var r, + o = n(71843), + i = n(13687), + a = n(96410), + s = n(64690), + l = n(95439), + c = n(36254), + u = n(5350), + d = 'prototype', + f = 'script', + h = u('IE_PROTO'), + p = function () {}, + v = function (e) { + return '<' + f + '>' + e + ''; + }, + g = function (e) { + e.write(v('')), e.close(); + var t = e.parentWindow.Object; + return (e = null), t; + }, + m = function () { + try { + r = new ActiveXObject('htmlfile'); + } catch (i) {} + var e, t, n; + m = + 'undefined' != typeof document + ? document.domain && r + ? g(r) + : ((t = c('iframe')), + (n = 'java' + f + ':'), + (t.style.display = 'none'), + l.appendChild(t), + (t.src = String(n)), + (e = t.contentWindow.document).open(), + e.write(v('document.F=Object')), + e.close(), + e.F) + : g(r); + for (var o = a.length; o--; ) delete m[d][a[o]]; + return m(); + }; + (s[h] = !0), + (e.exports = + Object.create || + function (e, t) { + var n; + return ( + null !== e ? ((p[d] = o(e)), (n = new p()), (p[d] = null), (n[h] = e)) : (n = m()), + void 0 === t ? n : i.f(n, t) + ); + }); + }, + 13687: (e, t, n) => { + var r = n(95417), + o = n(5989), + i = n(90189), + a = n(71843), + s = n(30529), + l = n(46615); + t.f = + r && !o + ? Object.defineProperties + : function (e, t) { + a(e); + for (var n, r = s(t), o = l(t), c = o.length, u = 0; c > u; ) i.f(e, (n = o[u++]), r[n]); + return e; + }; + }, + 90189: (e, t, n) => { + var r = n(95417), + o = n(94469), + i = n(5989), + a = n(71843), + s = n(37712), + l = TypeError, + c = Object.defineProperty, + u = Object.getOwnPropertyDescriptor, + d = 'enumerable', + f = 'configurable', + h = 'writable'; + t.f = r + ? i + ? function (e, t, n) { + if ( + (a(e), (t = s(t)), a(n), 'function' == typeof e && 'prototype' === t && 'value' in n && h in n && !n[h]) + ) { + var r = u(e, t); + r && + r[h] && + ((e[t] = n.value), + (n = { configurable: f in n ? n[f] : r[f], enumerable: d in n ? n[d] : r[d], writable: !1 })); + } + return c(e, t, n); + } + : c + : function (e, t, n) { + if ((a(e), (t = s(t)), a(n), o)) + try { + return c(e, t, n); + } catch (r) {} + if ('get' in n || 'set' in n) throw l('Accessors not supported'); + return 'value' in n && (e[t] = n.value), e; + }; + }, + 68098: (e, t, n) => { + var r = n(95417), + o = n(41924), + i = n(99706), + a = n(413), + s = n(30529), + l = n(37712), + c = n(91854), + u = n(94469), + d = Object.getOwnPropertyDescriptor; + t.f = r + ? d + : function (e, t) { + if (((e = s(e)), (t = l(t)), u)) + try { + return d(e, t); + } catch (n) {} + if (c(e, t)) return a(!o(i.f, e, t), e[t]); + }; + }, + 58206: (e, t, n) => { + var r = n(28715), + o = n(96410).concat('length', 'prototype'); + t.f = + Object.getOwnPropertyNames || + function (e) { + return r(e, o); + }; + }, + 97399: (e, t) => { + t.f = Object.getOwnPropertySymbols; + }, + 62421: (e, t, n) => { + var r = n(91854), + o = n(88807), + i = n(90663), + a = n(5350), + s = n(80093), + l = a('IE_PROTO'), + c = Object, + u = c.prototype; + e.exports = s + ? c.getPrototypeOf + : function (e) { + var t = i(e); + if (r(t, l)) return t[l]; + var n = t.constructor; + return o(n) && t instanceof n ? n.prototype : t instanceof c ? u : null; + }; + }, + 13521: (e, t, n) => { + var r = n(41765); + e.exports = r({}.isPrototypeOf); + }, + 28715: (e, t, n) => { + var r = n(41765), + o = n(91854), + i = n(30529), + a = n(17222).indexOf, + s = n(64690), + l = r([].push); + e.exports = function (e, t) { + var n, + r = i(e), + c = 0, + u = []; + for (n in r) !o(s, n) && o(r, n) && l(u, n); + for (; t.length > c; ) o(r, (n = t[c++])) && (~a(u, n) || l(u, n)); + return u; + }; + }, + 46615: (e, t, n) => { + var r = n(28715), + o = n(96410); + e.exports = + Object.keys || + function (e) { + return r(e, o); + }; + }, + 99706: (e, t) => { + 'use strict'; + var n = {}.propertyIsEnumerable, + r = Object.getOwnPropertyDescriptor, + o = r && !n.call({ 1: 2 }, 1); + t.f = o + ? function (e) { + var t = r(this, e); + return !!t && t.enumerable; + } + : n; + }, + 71083: (e, t, n) => { + var r = n(41765), + o = n(71843), + i = n(5946); + e.exports = + Object.setPrototypeOf || + ('__proto__' in {} + ? (function () { + var e, + t = !1, + n = {}; + try { + (e = r(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set))(n, []), + (t = n instanceof Array); + } catch (a) {} + return function (n, r) { + return o(n), i(r), t ? e(n, r) : (n.__proto__ = r), n; + }; + })() + : void 0); + }, + 56976: (e, t, n) => { + var r = n(41924), + o = n(88807), + i = n(21188), + a = TypeError; + e.exports = function (e, t) { + var n, s; + if ('string' === t && o((n = e.toString)) && !i((s = r(n, e)))) return s; + if (o((n = e.valueOf)) && !i((s = r(n, e)))) return s; + if ('string' !== t && o((n = e.toString)) && !i((s = r(n, e)))) return s; + throw a("Can't convert object to primitive value"); + }; + }, + 72929: (e, t, n) => { + var r = n(52228), + o = n(41765), + i = n(58206), + a = n(97399), + s = n(71843), + l = o([].concat); + e.exports = + r('Reflect', 'ownKeys') || + function (e) { + var t = i.f(s(e)), + n = a.f; + return n ? l(t, n(e)) : t; + }; + }, + 30668: e => { + e.exports = function (e) { + try { + return { error: !1, value: e() }; + } catch (t) { + return { error: !0, value: t }; + } + }; + }, + 27743: (e, t, n) => { + var r = n(70412), + o = n(15461), + i = n(88807), + a = n(76777), + s = n(60227), + l = n(96982), + c = n(18573), + u = n(27158), + d = n(8588), + f = n(44905), + h = o && o.prototype, + p = l('species'), + v = !1, + g = i(r.PromiseRejectionEvent), + m = a('Promise', function () { + var e = s(o), + t = e !== String(o); + if (!t && 66 === f) return !0; + if (d && (!h.catch || !h.finally)) return !0; + if (!f || f < 51 || !/native code/.test(e)) { + var n = new o(function (e) { + e(1); + }), + r = function (e) { + e( + function () {}, + function () {}, + ); + }; + if ((((n.constructor = {})[p] = r), !(v = n.then(function () {}) instanceof r))) return !0; + } + return !t && (c || u) && !g; + }); + e.exports = { CONSTRUCTOR: m, REJECTION_EVENT: g, SUBCLASSING: v }; + }, + 15461: (e, t, n) => { + var r = n(70412); + e.exports = r.Promise; + }, + 88149: (e, t, n) => { + var r = n(71843), + o = n(21188), + i = n(92473); + e.exports = function (e, t) { + if ((r(e), o(t) && t.constructor === e)) return t; + var n = i.f(e); + return (0, n.resolve)(t), n.promise; + }; + }, + 20769: (e, t, n) => { + var r = n(15461), + o = n(3800), + i = n(27743).CONSTRUCTOR; + e.exports = + i || + !o(function (e) { + r.all(e).then(void 0, function () {}); + }); + }, + 69323: e => { + var t = function () { + (this.head = null), (this.tail = null); + }; + (t.prototype = { + add: function (e) { + var t = { item: e, next: null }; + this.head ? (this.tail.next = t) : (this.head = t), (this.tail = t); + }, + get: function () { + var e = this.head; + if (e) return (this.head = e.next), this.tail === e && (this.tail = null), e.item; + }, + }), + (e.exports = t); + }, + 12134: (e, t, n) => { + var r = n(41924), + o = n(71843), + i = n(88807), + a = n(29682), + s = n(38157), + l = TypeError; + e.exports = function (e, t) { + var n = e.exec; + if (i(n)) { + var c = r(n, e, t); + return null !== c && o(c), c; + } + if ('RegExp' === a(e)) return r(s, e, t); + throw l('RegExp#exec called on incompatible receiver'); + }; + }, + 38157: (e, t, n) => { + 'use strict'; + var r, + o, + i = n(41924), + a = n(41765), + s = n(98170), + l = n(88103), + c = n(48756), + u = n(39215), + d = n(56042), + f = n(887).get, + h = n(60054), + p = n(77084), + v = u('native-string-replace', String.prototype.replace), + g = RegExp.prototype.exec, + m = g, + y = a(''.charAt), + b = a(''.indexOf), + x = a(''.replace), + w = a(''.slice), + E = ((o = /b*/g), i(g, (r = /a/), 'a'), i(g, o, 'a'), 0 !== r.lastIndex || 0 !== o.lastIndex), + k = c.BROKEN_CARET, + _ = void 0 !== /()??/.exec('')[1]; + (E || _ || k || h || p) && + (m = function (e) { + var t, + n, + r, + o, + a, + c, + u, + h = this, + p = f(h), + S = s(e), + P = p.raw; + if (P) return (P.lastIndex = h.lastIndex), (t = i(m, P, S)), (h.lastIndex = P.lastIndex), t; + var C = p.groups, + j = k && h.sticky, + T = i(l, h), + D = h.source, + N = 0, + M = S; + if ( + (j && + ((T = x(T, 'y', '')), + -1 === b(T, 'g') && (T += 'g'), + (M = w(S, h.lastIndex)), + h.lastIndex > 0 && + (!h.multiline || (h.multiline && '\n' !== y(S, h.lastIndex - 1))) && + ((D = '(?: ' + D + ')'), (M = ' ' + M), N++), + (n = new RegExp('^(?:' + D + ')', T))), + _ && (n = new RegExp('^' + D + '$(?!\\s)', T)), + E && (r = h.lastIndex), + (o = i(g, j ? n : h, M)), + j + ? o + ? ((o.input = w(o.input, N)), + (o[0] = w(o[0], N)), + (o.index = h.lastIndex), + (h.lastIndex += o[0].length)) + : (h.lastIndex = 0) + : E && o && (h.lastIndex = h.global ? o.index + o[0].length : r), + _ && + o && + o.length > 1 && + i(v, o[0], n, function () { + for (a = 1; a < arguments.length - 2; a++) void 0 === arguments[a] && (o[a] = void 0); + }), + o && C) + ) + for (o.groups = c = d(null), a = 0; a < C.length; a++) c[(u = C[a])[0]] = o[u[1]]; + return o; + }), + (e.exports = m); + }, + 88103: (e, t, n) => { + 'use strict'; + var r = n(71843); + e.exports = function () { + var e = r(this), + t = ''; + return ( + e.hasIndices && (t += 'd'), + e.global && (t += 'g'), + e.ignoreCase && (t += 'i'), + e.multiline && (t += 'm'), + e.dotAll && (t += 's'), + e.unicode && (t += 'u'), + e.unicodeSets && (t += 'v'), + e.sticky && (t += 'y'), + t + ); + }; + }, + 48756: (e, t, n) => { + var r = n(82229), + o = n(70412).RegExp, + i = r(function () { + var e = o('a', 'y'); + return (e.lastIndex = 2), null != e.exec('abcd'); + }), + a = + i || + r(function () { + return !o('a', 'y').sticky; + }), + s = + i || + r(function () { + var e = o('^r', 'gy'); + return (e.lastIndex = 2), null != e.exec('str'); + }); + e.exports = { BROKEN_CARET: s, MISSED_STICKY: a, UNSUPPORTED_Y: i }; + }, + 60054: (e, t, n) => { + var r = n(82229), + o = n(70412).RegExp; + e.exports = r(function () { + var e = o('.', 's'); + return !(e.dotAll && e.exec('\n') && 's' === e.flags); + }); + }, + 77084: (e, t, n) => { + var r = n(82229), + o = n(70412).RegExp; + e.exports = r(function () { + var e = o('(?b)', 'g'); + return 'b' !== e.exec('b').groups.a || 'bc' !== 'b'.replace(e, '$c'); + }); + }, + 20774: (e, t, n) => { + var r = n(39989), + o = TypeError; + e.exports = function (e) { + if (r(e)) throw o("Can't call method on " + e); + return e; + }; + }, + 53411: e => { + e.exports = + Object.is || + function (e, t) { + return e === t ? 0 !== e || 1 / e == 1 / t : e != e && t != t; + }; + }, + 35787: (e, t, n) => { + 'use strict'; + var r = n(52228), + o = n(90189), + i = n(96982), + a = n(95417), + s = i('species'); + e.exports = function (e) { + var t = r(e), + n = o.f; + a && + t && + !t[s] && + n(t, s, { + configurable: !0, + get: function () { + return this; + }, + }); + }; + }, + 43803: (e, t, n) => { + var r = n(90189).f, + o = n(91854), + i = n(96982)('toStringTag'); + e.exports = function (e, t, n) { + e && !n && (e = e.prototype), e && !o(e, i) && r(e, i, { configurable: !0, value: t }); + }; + }, + 5350: (e, t, n) => { + var r = n(39215), + o = n(34436), + i = r('keys'); + e.exports = function (e) { + return i[e] || (i[e] = o(e)); + }; + }, + 81502: (e, t, n) => { + var r = n(70412), + o = n(26139), + i = '__core-js_shared__', + a = r[i] || o(i, {}); + e.exports = a; + }, + 39215: (e, t, n) => { + var r = n(8588), + o = n(81502); + (e.exports = function (e, t) { + return o[e] || (o[e] = void 0 !== t ? t : {}); + })('versions', []).push({ + version: '3.26.0', + mode: r ? 'pure' : 'global', + copyright: '\xa9 2014-2022 Denis Pushkarev (zloirock.ru)', + license: 'https://github.com/zloirock/core-js/blob/v3.26.0/LICENSE', + source: 'https://github.com/zloirock/core-js', + }); + }, + 23913: (e, t, n) => { + var r = n(71843), + o = n(12420), + i = n(39989), + a = n(96982)('species'); + e.exports = function (e, t) { + var n, + s = r(e).constructor; + return void 0 === s || i((n = r(s)[a])) ? t : o(n); + }; + }, + 33100: (e, t, n) => { + var r = n(41765), + o = n(32048), + i = n(98170), + a = n(20774), + s = r(''.charAt), + l = r(''.charCodeAt), + c = r(''.slice), + u = function (e) { + return function (t, n) { + var r, + u, + d = i(a(t)), + f = o(n), + h = d.length; + return f < 0 || f >= h + ? e + ? '' + : void 0 + : (r = l(d, f)) < 55296 || r > 56319 || f + 1 === h || (u = l(d, f + 1)) < 56320 || u > 57343 + ? e + ? s(d, f) + : r + : e + ? c(d, f, f + 2) + : u - 56320 + ((r - 55296) << 10) + 65536; + }; + }; + e.exports = { codeAt: u(!1), charAt: u(!0) }; + }, + 9770: (e, t, n) => { + var r = n(44905), + o = n(82229); + e.exports = + !!Object.getOwnPropertySymbols && + !o(function () { + var e = Symbol(); + return !String(e) || !(Object(e) instanceof Symbol) || (!Symbol.sham && r && r < 41); + }); + }, + 1017: (e, t, n) => { + var r, + o, + i, + a, + s = n(70412), + l = n(90675), + c = n(7365), + u = n(88807), + d = n(91854), + f = n(82229), + h = n(95439), + p = n(96784), + v = n(36254), + g = n(58453), + m = n(3148), + y = n(84543), + b = s.setImmediate, + x = s.clearImmediate, + w = s.process, + E = s.Dispatch, + k = s.Function, + _ = s.MessageChannel, + S = s.String, + P = 0, + C = {}, + j = 'onreadystatechange'; + try { + r = s.location; + } catch (O) {} + var T = function (e) { + if (d(C, e)) { + var t = C[e]; + delete C[e], t(); + } + }, + D = function (e) { + return function () { + T(e); + }; + }, + N = function (e) { + T(e.data); + }, + M = function (e) { + s.postMessage(S(e), r.protocol + '//' + r.host); + }; + (b && x) || + ((b = function (e) { + g(arguments.length, 1); + var t = u(e) ? e : k(e), + n = p(arguments, 1); + return ( + (C[++P] = function () { + l(t, void 0, n); + }), + o(P), + P + ); + }), + (x = function (e) { + delete C[e]; + }), + y + ? (o = function (e) { + w.nextTick(D(e)); + }) + : E && E.now + ? (o = function (e) { + E.now(D(e)); + }) + : _ && !m + ? ((a = (i = new _()).port2), (i.port1.onmessage = N), (o = c(a.postMessage, a))) + : s.addEventListener && u(s.postMessage) && !s.importScripts && r && 'file:' !== r.protocol && !f(M) + ? ((o = M), s.addEventListener('message', N, !1)) + : (o = + j in v('script') + ? function (e) { + h.appendChild(v('script'))[j] = function () { + h.removeChild(this), T(e); + }; + } + : function (e) { + setTimeout(D(e), 0); + })), + (e.exports = { set: b, clear: x }); + }, + 90069: (e, t, n) => { + var r = n(32048), + o = Math.max, + i = Math.min; + e.exports = function (e, t) { + var n = r(e); + return n < 0 ? o(n + t, 0) : i(n, t); + }; + }, + 30529: (e, t, n) => { + var r = n(21197), + o = n(20774); + e.exports = function (e) { + return r(o(e)); + }; + }, + 32048: (e, t, n) => { + var r = n(99958); + e.exports = function (e) { + var t = +e; + return t != t || 0 === t ? 0 : r(t); + }; + }, + 25664: (e, t, n) => { + var r = n(32048), + o = Math.min; + e.exports = function (e) { + return e > 0 ? o(r(e), 9007199254740991) : 0; + }; + }, + 90663: (e, t, n) => { + var r = n(20774), + o = Object; + e.exports = function (e) { + return o(r(e)); + }; + }, + 5368: (e, t, n) => { + var r = n(41924), + o = n(21188), + i = n(29844), + a = n(89423), + s = n(56976), + l = n(96982), + c = TypeError, + u = l('toPrimitive'); + e.exports = function (e, t) { + if (!o(e) || i(e)) return e; + var n, + l = a(e, u); + if (l) { + if ((void 0 === t && (t = 'default'), (n = r(l, e, t)), !o(n) || i(n))) return n; + throw c("Can't convert object to primitive value"); + } + return void 0 === t && (t = 'number'), s(e, t); + }; + }, + 37712: (e, t, n) => { + var r = n(5368), + o = n(29844); + e.exports = function (e) { + var t = r(e, 'string'); + return o(t) ? t : t + ''; + }; + }, + 50089: (e, t, n) => { + var r = {}; + (r[n(96982)('toStringTag')] = 'z'), (e.exports = '[object z]' === String(r)); + }, + 98170: (e, t, n) => { + var r = n(765), + o = String; + e.exports = function (e) { + if ('Symbol' === r(e)) throw TypeError('Cannot convert a Symbol value to a string'); + return o(e); + }; + }, + 48427: e => { + var t = String; + e.exports = function (e) { + try { + return t(e); + } catch (n) { + return 'Object'; + } + }; + }, + 34436: (e, t, n) => { + var r = n(41765), + o = 0, + i = Math.random(), + a = r((1).toString); + e.exports = function (e) { + return 'Symbol(' + (void 0 === e ? '' : e) + ')_' + a(++o + i, 36); + }; + }, + 39696: (e, t, n) => { + var r = n(9770); + e.exports = r && !Symbol.sham && 'symbol' == typeof Symbol.iterator; + }, + 5989: (e, t, n) => { + var r = n(95417), + o = n(82229); + e.exports = + r && + o(function () { + return 42 != Object.defineProperty(function () {}, 'prototype', { value: 42, writable: !1 }).prototype; + }); + }, + 58453: e => { + var t = TypeError; + e.exports = function (e, n) { + if (e < n) throw t('Not enough arguments'); + return e; + }; + }, + 17023: (e, t, n) => { + var r = n(70412), + o = n(88807), + i = r.WeakMap; + e.exports = o(i) && /native code/.test(String(i)); + }, + 96982: (e, t, n) => { + var r = n(70412), + o = n(39215), + i = n(91854), + a = n(34436), + s = n(9770), + l = n(39696), + c = o('wks'), + u = r.Symbol, + d = u && u.for, + f = l ? u : (u && u.withoutSetter) || a; + e.exports = function (e) { + if (!i(c, e) || (!s && 'string' != typeof c[e])) { + var t = 'Symbol.' + e; + s && i(u, e) ? (c[e] = u[e]) : (c[e] = l && d ? d(t) : f(t)); + } + return c[e]; + }; + }, + 94841: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(17222).includes, + i = n(82229), + a = n(63288); + r( + { + target: 'Array', + proto: !0, + forced: i(function () { + return !Array(1).includes(); + }), + }, + { + includes: function (e) { + return o(this, e, arguments.length > 1 ? arguments[1] : void 0); + }, + }, + ), + a('includes'); + }, + 78062: (e, t, n) => { + 'use strict'; + var r = n(30529), + o = n(63288), + i = n(72429), + a = n(887), + s = n(90189).f, + l = n(61666), + c = n(74903), + u = n(8588), + d = n(95417), + f = 'Array Iterator', + h = a.set, + p = a.getterFor(f); + e.exports = l( + Array, + 'Array', + function (e, t) { + h(this, { type: f, target: r(e), index: 0, kind: t }); + }, + function () { + var e = p(this), + t = e.target, + n = e.kind, + r = e.index++; + return !t || r >= t.length + ? ((e.target = void 0), c(void 0, !0)) + : c('keys' == n ? r : 'values' == n ? t[r] : [r, t[r]], !1); + }, + 'values', + ); + var v = (i.Arguments = i.Array); + if ((o('keys'), o('values'), o('entries'), !u && d && 'values' !== v.name)) + try { + s(v, 'name', { value: 'values' }); + } catch (g) {} + }, + 75715: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(41765), + i = n(70481), + a = n(90663), + s = n(40406), + l = n(7351), + c = n(98170), + u = n(82229), + d = n(42771), + f = n(4789), + h = n(89443), + p = n(17608), + v = n(44905), + g = n(58452), + m = [], + y = o(m.sort), + b = o(m.push), + x = u(function () { + m.sort(void 0); + }), + w = u(function () { + m.sort(null); + }), + E = f('sort'), + k = !u(function () { + if (v) return v < 70; + if (!(h && h > 3)) { + if (p) return !0; + if (g) return g < 603; + var e, + t, + n, + r, + o = ''; + for (e = 65; e < 76; e++) { + switch (((t = String.fromCharCode(e)), e)) { + case 66: + case 69: + case 70: + case 72: + n = 3; + break; + case 68: + case 71: + n = 4; + break; + default: + n = 2; + } + for (r = 0; r < 47; r++) m.push({ k: t + r, v: n }); + } + for ( + m.sort(function (e, t) { + return t.v - e.v; + }), + r = 0; + r < m.length; + r++ + ) + (t = m[r].k.charAt(0)), o.charAt(o.length - 1) !== t && (o += t); + return 'DGBEFHACIJK' !== o; + } + }); + r( + { target: 'Array', proto: !0, forced: x || !w || !E || !k }, + { + sort: function (e) { + void 0 !== e && i(e); + var t = a(this); + if (k) return void 0 === e ? y(t) : y(t, e); + var n, + r, + o = [], + u = s(t); + for (r = 0; r < u; r++) r in t && b(o, t[r]); + for ( + d( + o, + (function (e) { + return function (t, n) { + return void 0 === n ? -1 : void 0 === t ? 1 : void 0 !== e ? +e(t, n) || 0 : c(t) > c(n) ? 1 : -1; + }; + })(e), + ), + n = s(o), + r = 0; + r < n; + + ) + t[r] = o[r++]; + for (; r < u; ) l(t, r++); + return t; + }, + }, + ); + }, + 19658: (e, t, n) => { + var r = n(72698), + o = n(94382); + r({ target: 'Object', stat: !0, arity: 2, forced: Object.assign !== o }, { assign: o }); + }, + 58628: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(41924), + i = n(70481), + a = n(92473), + s = n(30668), + l = n(98102); + r( + { target: 'Promise', stat: !0, forced: n(20769) }, + { + all: function (e) { + var t = this, + n = a.f(t), + r = n.resolve, + c = n.reject, + u = s(function () { + var n = i(t.resolve), + a = [], + s = 0, + u = 1; + l(e, function (e) { + var i = s++, + l = !1; + u++, + o(n, t, e).then(function (e) { + l || ((l = !0), (a[i] = e), --u || r(a)); + }, c); + }), + --u || r(a); + }); + return u.error && c(u.value), n.promise; + }, + }, + ); + }, + 60562: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(8588), + i = n(27743).CONSTRUCTOR, + a = n(15461), + s = n(52228), + l = n(88807), + c = n(29379), + u = a && a.prototype; + if ( + (r( + { target: 'Promise', proto: !0, forced: i, real: !0 }, + { + catch: function (e) { + return this.then(void 0, e); + }, + }, + ), + !o && l(a)) + ) { + var d = s('Promise').prototype.catch; + u.catch !== d && c(u, 'catch', d, { unsafe: !0 }); + } + }, + 67726: (e, t, n) => { + 'use strict'; + var r, + o, + i, + a = n(72698), + s = n(8588), + l = n(84543), + c = n(70412), + u = n(41924), + d = n(29379), + f = n(71083), + h = n(43803), + p = n(35787), + v = n(70481), + g = n(88807), + m = n(21188), + y = n(65712), + b = n(23913), + x = n(1017).set, + w = n(49514), + E = n(19630), + k = n(30668), + _ = n(69323), + S = n(887), + P = n(15461), + C = n(27743), + j = n(92473), + T = 'Promise', + D = C.CONSTRUCTOR, + N = C.REJECTION_EVENT, + M = C.SUBCLASSING, + O = S.getterFor(T), + A = S.set, + R = P && P.prototype, + L = P, + I = R, + B = c.TypeError, + F = c.document, + z = c.process, + V = j.f, + G = V, + H = !!(F && F.createEvent && c.dispatchEvent), + W = 'unhandledrejection', + U = function (e) { + var t; + return !(!m(e) || !g((t = e.then))) && t; + }, + q = function (e, t) { + var n, + r, + o, + i = t.value, + a = 1 == t.state, + s = a ? e.ok : e.fail, + l = e.resolve, + c = e.reject, + d = e.domain; + try { + s + ? (a || (2 === t.rejection && Z(t), (t.rejection = 1)), + !0 === s ? (n = i) : (d && d.enter(), (n = s(i)), d && (d.exit(), (o = !0))), + n === e.promise ? c(B('Promise-chain cycle')) : (r = U(n)) ? u(r, n, l, c) : l(n)) + : c(i); + } catch (f) { + d && !o && d.exit(), c(f); + } + }, + Y = function (e, t) { + e.notified || + ((e.notified = !0), + w(function () { + for (var n, r = e.reactions; (n = r.get()); ) q(n, e); + (e.notified = !1), t && !e.rejection && $(e); + })); + }, + X = function (e, t, n) { + var r, o; + H + ? (((r = F.createEvent('Event')).promise = t), (r.reason = n), r.initEvent(e, !1, !0), c.dispatchEvent(r)) + : (r = { promise: t, reason: n }), + !N && (o = c['on' + e]) ? o(r) : e === W && E('Unhandled promise rejection', n); + }, + $ = function (e) { + u(x, c, function () { + var t, + n = e.facade, + r = e.value; + if ( + K(e) && + ((t = k(function () { + l ? z.emit('unhandledRejection', r, n) : X(W, n, r); + })), + (e.rejection = l || K(e) ? 2 : 1), + t.error) + ) + throw t.value; + }); + }, + K = function (e) { + return 1 !== e.rejection && !e.parent; + }, + Z = function (e) { + u(x, c, function () { + var t = e.facade; + l ? z.emit('rejectionHandled', t) : X('rejectionhandled', t, e.value); + }); + }, + Q = function (e, t, n) { + return function (r) { + e(t, r, n); + }; + }, + J = function (e, t, n) { + e.done || ((e.done = !0), n && (e = n), (e.value = t), (e.state = 2), Y(e, !0)); + }, + ee = function (e, t, n) { + if (!e.done) { + (e.done = !0), n && (e = n); + try { + if (e.facade === t) throw B("Promise can't be resolved itself"); + var r = U(t); + r + ? w(function () { + var n = { done: !1 }; + try { + u(r, t, Q(ee, n, e), Q(J, n, e)); + } catch (o) { + J(n, o, e); + } + }) + : ((e.value = t), (e.state = 1), Y(e, !1)); + } catch (o) { + J({ done: !1 }, o, e); + } + } + }; + if ( + D && + ((I = (L = function (e) { + y(this, I), v(e), u(r, this); + var t = O(this); + try { + e(Q(ee, t), Q(J, t)); + } catch (n) { + J(t, n); + } + }).prototype), + ((r = function (e) { + A(this, { + type: T, + done: !1, + notified: !1, + parent: !1, + reactions: new _(), + rejection: !1, + state: 0, + value: void 0, + }); + }).prototype = d(I, 'then', function (e, t) { + var n = O(this), + r = V(b(this, L)); + return ( + (n.parent = !0), + (r.ok = !g(e) || e), + (r.fail = g(t) && t), + (r.domain = l ? z.domain : void 0), + 0 == n.state + ? n.reactions.add(r) + : w(function () { + q(r, n); + }), + r.promise + ); + })), + (o = function () { + var e = new r(), + t = O(e); + (this.promise = e), (this.resolve = Q(ee, t)), (this.reject = Q(J, t)); + }), + (j.f = V = + function (e) { + return e === L || undefined === e ? new o(e) : G(e); + }), + !s && g(P) && R !== Object.prototype) + ) { + (i = R.then), + M || + d( + R, + 'then', + function (e, t) { + var n = this; + return new L(function (e, t) { + u(i, n, e, t); + }).then(e, t); + }, + { unsafe: !0 }, + ); + try { + delete R.constructor; + } catch (te) {} + f && f(R, I); + } + a({ global: !0, constructor: !0, wrap: !0, forced: D }, { Promise: L }), h(L, T, !1, !0), p(T); + }, + 70769: (e, t, n) => { + n(67726), n(58628), n(60562), n(9439), n(49081), n(98669); + }, + 9439: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(41924), + i = n(70481), + a = n(92473), + s = n(30668), + l = n(98102); + r( + { target: 'Promise', stat: !0, forced: n(20769) }, + { + race: function (e) { + var t = this, + n = a.f(t), + r = n.reject, + c = s(function () { + var a = i(t.resolve); + l(e, function (e) { + o(a, t, e).then(n.resolve, r); + }); + }); + return c.error && r(c.value), n.promise; + }, + }, + ); + }, + 49081: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(41924), + i = n(92473); + r( + { target: 'Promise', stat: !0, forced: n(27743).CONSTRUCTOR }, + { + reject: function (e) { + var t = i.f(this); + return o(t.reject, void 0, e), t.promise; + }, + }, + ); + }, + 98669: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(52228), + i = n(8588), + a = n(15461), + s = n(27743).CONSTRUCTOR, + l = n(88149), + c = o('Promise'), + u = i && !s; + r( + { target: 'Promise', stat: !0, forced: i || s }, + { + resolve: function (e) { + return l(u && this === c ? a : this, e); + }, + }, + ); + }, + 9883: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(38157); + r({ target: 'RegExp', proto: !0, forced: /./.exec !== o }, { exec: o }); + }, + 9944: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(41765), + i = n(47082), + a = n(20774), + s = n(98170), + l = n(59981), + c = o(''.indexOf); + r( + { target: 'String', proto: !0, forced: !l('includes') }, + { + includes: function (e) { + return !!~c(s(a(this)), s(i(e)), arguments.length > 1 ? arguments[1] : void 0); + }, + }, + ); + }, + 29: (e, t, n) => { + 'use strict'; + var r = n(90675), + o = n(41924), + i = n(41765), + a = n(11323), + s = n(82229), + l = n(71843), + c = n(88807), + u = n(39989), + d = n(32048), + f = n(25664), + h = n(98170), + p = n(20774), + v = n(95158), + g = n(89423), + m = n(80556), + y = n(12134), + b = n(96982)('replace'), + x = Math.max, + w = Math.min, + E = i([].concat), + k = i([].push), + _ = i(''.indexOf), + S = i(''.slice), + P = '$0' === 'a'.replace(/./, '$0'), + C = !!/./[b] && '' === /./[b]('a', '$0'); + a( + 'replace', + function (e, t, n) { + var i = C ? '$' : '$0'; + return [ + function (e, n) { + var r = p(this), + i = u(e) ? void 0 : g(e, b); + return i ? o(i, e, r, n) : o(t, h(r), e, n); + }, + function (e, o) { + var a = l(this), + s = h(e); + if ('string' == typeof o && -1 === _(o, i) && -1 === _(o, '$<')) { + var u = n(t, a, s, o); + if (u.done) return u.value; + } + var p = c(o); + p || (o = h(o)); + var g = a.global; + if (g) { + var b = a.unicode; + a.lastIndex = 0; + } + for (var P = []; ; ) { + var C = y(a, s); + if (null === C) break; + if ((k(P, C), !g)) break; + '' === h(C[0]) && (a.lastIndex = v(s, f(a.lastIndex), b)); + } + for (var j, T = '', D = 0, N = 0; N < P.length; N++) { + for (var M = h((C = P[N])[0]), O = x(w(d(C.index), s.length), 0), A = [], R = 1; R < C.length; R++) + k(A, void 0 === (j = C[R]) ? j : String(j)); + var L = C.groups; + if (p) { + var I = E([M], A, O, s); + void 0 !== L && k(I, L); + var B = h(r(o, void 0, I)); + } else B = m(M, s, O, A, L, o); + O >= D && ((T += S(s, D, O) + B), (D = O + M.length)); + } + return T + S(s, D); + }, + ]; + }, + !!s(function () { + var e = /./; + return ( + (e.exec = function () { + var e = []; + return (e.groups = { a: '7' }), e; + }), + '7' !== ''.replace(e, '$') + ); + }) || + !P || + C, + ); + }, + 71867: (e, t, n) => { + 'use strict'; + var r = n(41924), + o = n(11323), + i = n(71843), + a = n(39989), + s = n(20774), + l = n(53411), + c = n(98170), + u = n(89423), + d = n(12134); + o('search', function (e, t, n) { + return [ + function (t) { + var n = s(this), + o = a(t) ? void 0 : u(t, e); + return o ? r(o, t, n) : new RegExp(t)[e](c(n)); + }, + function (e) { + var r = i(this), + o = c(e), + a = n(t, r, o); + if (a.done) return a.value; + var s = r.lastIndex; + l(s, 0) || (r.lastIndex = 0); + var u = d(r, o); + return l(r.lastIndex, s) || (r.lastIndex = s), null === u ? -1 : u.index; + }, + ]; + }); + }, + 47306: (e, t, n) => { + 'use strict'; + var r = n(72698), + o = n(95417), + i = n(70412), + a = n(41765), + s = n(91854), + l = n(88807), + c = n(13521), + u = n(98170), + d = n(90189).f, + f = n(12283), + h = i.Symbol, + p = h && h.prototype; + if (o && l(h) && (!('description' in p) || void 0 !== h().description)) { + var v = {}, + g = function () { + var e = arguments.length < 1 || void 0 === arguments[0] ? void 0 : u(arguments[0]), + t = c(p, this) ? new h(e) : void 0 === e ? h() : h(e); + return '' === e && (v[t] = !0), t; + }; + f(g, h), (g.prototype = p), (p.constructor = g); + var m = 'Symbol(test)' == String(h('test')), + y = a(p.valueOf), + b = a(p.toString), + x = /^Symbol\((.*)\)[^)]+$/, + w = a(''.replace), + E = a(''.slice); + d(p, 'description', { + configurable: !0, + get: function () { + var e = y(this); + if (s(v, e)) return ''; + var t = b(e), + n = m ? E(t, 7, -1) : w(t, x, '$1'); + return '' === n ? void 0 : n; + }, + }), + r({ global: !0, constructor: !0, forced: !0 }, { Symbol: g }); + } + }, + 3346: (e, t, n) => { + var r = n(70412), + o = n(42706), + i = n(92076), + a = n(78062), + s = n(7001), + l = n(96982), + c = l('iterator'), + u = l('toStringTag'), + d = a.values, + f = function (e, t) { + if (e) { + if (e[c] !== d) + try { + s(e, c, d); + } catch (r) { + e[c] = d; + } + if ((e[u] || s(e, u, t), o[t])) + for (var n in a) + if (e[n] !== a[n]) + try { + s(e, n, a[n]); + } catch (r) { + e[n] = a[n]; + } + } + }; + for (var h in o) f(r[h] && r[h].prototype, h); + f(i, 'DOMTokenList'); + }, + 46457: function (e, t, n) { + var r; + (r = function (e) { + return (function (e) { + var t = {}; + function n(r) { + if (t[r]) return t[r].exports; + var o = (t[r] = { i: r, l: !1, exports: {} }); + return e[r].call(o.exports, o, o.exports, n), (o.l = !0), o.exports; + } + return ( + (n.m = e), + (n.c = t), + (n.d = function (e, t, r) { + n.o(e, t) || Object.defineProperty(e, t, { enumerable: !0, get: r }); + }), + (n.r = function (e) { + 'undefined' != typeof Symbol && + Symbol.toStringTag && + Object.defineProperty(e, Symbol.toStringTag, { value: 'Module' }), + Object.defineProperty(e, '__esModule', { value: !0 }); + }), + (n.t = function (e, t) { + if ((1 & t && (e = n(e)), 8 & t)) return e; + if (4 & t && 'object' == typeof e && e && e.__esModule) return e; + var r = Object.create(null); + if ( + (n.r(r), + Object.defineProperty(r, 'default', { enumerable: !0, value: e }), + 2 & t && 'string' != typeof e) + ) + for (var o in e) + n.d( + r, + o, + function (t) { + return e[t]; + }.bind(null, o), + ); + return r; + }), + (n.n = function (e) { + var t = + e && e.__esModule + ? function () { + return e.default; + } + : function () { + return e; + }; + return n.d(t, 'a', t), t; + }), + (n.o = function (e, t) { + return Object.prototype.hasOwnProperty.call(e, t); + }), + (n.p = ''), + n((n.s = 0)) + ); + })([ + function (e, t, n) { + var r = n(1), + o = function (e) { + e && e('layout', 'dagre', r); + }; + 'undefined' != typeof cytoscape && o(cytoscape), (e.exports = o); + }, + function (e, t, n) { + function r(e) { + return ( + (r = + 'function' == typeof Symbol && 'symbol' == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && 'function' == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype + ? 'symbol' + : typeof e; + }), + r(e) + ); + } + var o = n(2), + i = n(3), + a = n(4); + function s(e) { + this.options = i({}, o, e); + } + (s.prototype.run = function () { + var e = this.options, + t = e.cy, + n = e.eles, + o = function (e, t) { + return 'function' == typeof t ? t.apply(e, [e]) : t; + }, + i = e.boundingBox || { x1: 0, y1: 0, w: t.width(), h: t.height() }; + void 0 === i.x2 && (i.x2 = i.x1 + i.w), + void 0 === i.w && (i.w = i.x2 - i.x1), + void 0 === i.y2 && (i.y2 = i.y1 + i.h), + void 0 === i.h && (i.h = i.y2 - i.y1); + var s = new a.graphlib.Graph({ multigraph: !0, compound: !0 }), + l = {}, + c = function (e, t) { + null != t && (l[e] = t); + }; + c('nodesep', e.nodeSep), + c('edgesep', e.edgeSep), + c('ranksep', e.rankSep), + c('rankdir', e.rankDir), + c('align', e.align), + c('ranker', e.ranker), + c('acyclicer', e.acyclicer), + s.setGraph(l), + s.setDefaultEdgeLabel(function () { + return {}; + }), + s.setDefaultNodeLabel(function () { + return {}; + }); + for (var u = n.nodes(), d = 0; d < u.length; d++) { + var f = u[d], + h = f.layoutDimensions(e); + s.setNode(f.id(), { width: h.w, height: h.h, name: f.id() }); + } + for (var p = 0; p < u.length; p++) { + var v = u[p]; + v.isChild() && s.setParent(v.id(), v.parent().id()); + } + for ( + var g = n.edges().stdFilter(function (e) { + return !e.source().isParent() && !e.target().isParent(); + }), + m = 0; + m < g.length; + m++ + ) { + var y = g[m]; + s.setEdge( + y.source().id(), + y.target().id(), + { minlen: o(y, e.minLen), weight: o(y, e.edgeWeight), name: y.id() }, + y.id(), + ); + } + a.layout(s); + for (var b, x = s.nodes(), w = 0; w < x.length; w++) { + var E = x[w], + k = s.node(E); + t.getElementById(E).scratch().dagre = k; + } + return ( + e.boundingBox + ? ((b = { x1: 1 / 0, x2: -1 / 0, y1: 1 / 0, y2: -1 / 0 }), + u.forEach(function (e) { + var t = e.scratch().dagre; + (b.x1 = Math.min(b.x1, t.x)), + (b.x2 = Math.max(b.x2, t.x)), + (b.y1 = Math.min(b.y1, t.y)), + (b.y2 = Math.max(b.y2, t.y)); + }), + (b.w = b.x2 - b.x1), + (b.h = b.y2 - b.y1)) + : (b = i), + u.layoutPositions(this, e, function (t) { + var n = (t = 'object' === r(t) ? t : this).scratch().dagre; + return (function (t) { + if (e.boundingBox) { + var n = 0 === b.w ? 0 : (t.x - b.x1) / b.w, + r = 0 === b.h ? 0 : (t.y - b.y1) / b.h; + return { x: i.x1 + n * i.w, y: i.y1 + r * i.h }; + } + return t; + })({ x: n.x, y: n.y }); + }), + this + ); + }), + (e.exports = s); + }, + function (e, t) { + var n = { + nodeSep: void 0, + edgeSep: void 0, + rankSep: void 0, + rankDir: void 0, + align: void 0, + ranker: void 0, + minLen: function (e) { + return 1; + }, + edgeWeight: function (e) { + return 1; + }, + fit: !0, + padding: 30, + spacingFactor: void 0, + nodeDimensionsIncludeLabels: !1, + animate: !1, + animateFilter: function (e, t) { + return !0; + }, + animationDuration: 500, + animationEasing: void 0, + boundingBox: void 0, + transform: function (e, t) { + return t; + }, + ready: function () {}, + stop: function () {}, + }; + e.exports = n; + }, + function (e, t) { + e.exports = + null != Object.assign + ? Object.assign.bind(Object) + : function (e) { + for (var t = arguments.length, n = new Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++) + n[r - 1] = arguments[r]; + return ( + n.forEach(function (t) { + Object.keys(t).forEach(function (n) { + return (e[n] = t[n]); + }); + }), + e + ); + }; + }, + function (t, n) { + t.exports = e; + }, + ]); + }), + (e.exports = r(n(15439))); + }, + 68420: function (e, t, n) { + var r; + (r = function (e) { + return (function (e) { + var t = {}; + function n(r) { + if (t[r]) return t[r].exports; + var o = (t[r] = { i: r, l: !1, exports: {} }); + return e[r].call(o.exports, o, o.exports, n), (o.l = !0), o.exports; + } + return ( + (n.m = e), + (n.c = t), + (n.i = function (e) { + return e; + }), + (n.d = function (e, t, r) { + n.o(e, t) || Object.defineProperty(e, t, { configurable: !1, enumerable: !0, get: r }); + }), + (n.n = function (e) { + var t = + e && e.__esModule + ? function () { + return e.default; + } + : function () { + return e; + }; + return n.d(t, 'a', t), t; + }), + (n.o = function (e, t) { + return Object.prototype.hasOwnProperty.call(e, t); + }), + (n.p = ''), + n((n.s = 7)) + ); + })([ + function (e, t, n) { + 'use strict'; + e.exports = + null != Object.assign + ? Object.assign.bind(Object) + : function (e) { + for (var t = arguments.length, n = Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++) + n[r - 1] = arguments[r]; + return ( + n.forEach(function (t) { + null != t && + Object.keys(t).forEach(function (n) { + return (e[n] = t[n]); + }); + }), + e + ); + }; + }, + function (e, t, n) { + 'use strict'; + var r = n(5).getBoundingBox; + e.exports = { + getRef: function (e, t) { + return { + getBoundingClientRect: function () { + return r(e, t); + }, + }; + }, + }; + }, + function (e, t, n) { + 'use strict'; + var r = n(0), + o = n(1).getRef, + i = n(6).getContent, + a = {}, + s = n(8).createPopper; + e.exports = { + getPopper: function (e, t) { + var n = o(e, t), + l = i(e, t.content), + c = r({}, a, t.popper); + return s(n, l, c); + }, + }; + }, + function (e, t, n) { + 'use strict'; + var r = n(0), + o = n(2).getPopper, + i = n(1).getRef; + function a(e, t) { + var n = function (e) { + return e.isNode() ? { w: e.renderedWidth(), h: e.renderedHeight() } : { w: 3, h: 3 }; + }, + o = e.cy(), + i = { + renderedDimensions: n, + renderedPosition: function (e) { + return e.isNode() + ? (function (e, t) { + var n = e.renderedPosition(), + r = t(e), + o = r.w / 2, + i = r.h / 2; + return { x: n.x - o, y: n.y - i }; + })(e, n) + : (function (e) { + var t = e.midpoint(), + n = e.cy().pan(), + r = e.cy().zoom(); + return { x: t.x * r + n.x, y: t.y * r + n.y }; + })(e); + }, + popper: {}, + cy: o, + }; + return r({}, i, t); + } + function s(e) { + e.length > 1 && + (console.warn('Popper.js Extension should only be used on one element.'), + console.warn('Ignoring all subsequent elements')); + } + e.exports = { + popper: function (e) { + return s(this), o(this[0], a(this[0], e)); + }, + popperRef: function (e) { + return s(this), i(this[0], a(this[0], e)); + }, + }; + }, + function (e, t, n) { + 'use strict'; + var r = n(0), + o = n(2).getPopper, + i = n(1).getRef; + function a(e, t) { + return r( + {}, + { + boundingBox: { top: 0, left: 0, right: 0, bottom: 0, w: 3, h: 3 }, + renderedDimensions: function () { + return { w: 3, h: 3 }; + }, + renderedPosition: function () { + return { x: 0, y: 0 }; + }, + popper: {}, + cy: e, + }, + t, + ); + } + e.exports = { + popper: function (e) { + return o(this, a(this, e)); + }, + popperRef: function (e) { + return i(this, a(this, e)); + }, + }; + }, + function (e, t, n) { + 'use strict'; + e.exports = { + getBoundingBox: function (e, t) { + var n = t.renderedPosition, + r = t.cy, + o = t.renderedDimensions, + i = r.container().getBoundingClientRect(), + a = o(e), + s = n(e); + return { + top: s.y + i.top, + left: s.x + i.left, + right: s.x + a.w + i.left, + bottom: s.y + a.h + i.top, + width: a.w, + height: a.h, + }; + }, + }; + }, + function (e, t, n) { + 'use strict'; + e.exports = { + getContent: function (e, t) { + var n = null; + if ('function' != typeof t) { + if (t instanceof HTMLElement) return t; + throw new Error("Can not create popper from 'target' with unknown type"); + } + if (null === (n = t(e))) throw new Error("No 'target' specified to create popper"); + return n; + }, + }; + }, + function (e, t, n) { + 'use strict'; + var r = n(4), + o = n(3), + i = function (e) { + e && + (e('core', 'popper', r.popper), + e('collection', 'popper', o.popper), + e('core', 'popperRef', r.popperRef), + e('collection', 'popperRef', o.popperRef)); + }; + 'undefined' != typeof cytoscape && i(cytoscape), (e.exports = i); + }, + function (t, n) { + t.exports = e; + }, + ]); + }), + (e.exports = r(n(1020))); + }, + 50413: (e, t, n) => { + 'use strict'; + var r = n(77837), + o = n(97597), + i = n(13546), + a = n(26226), + s = n(59430); + function l(e) { + return e && 'object' == typeof e && 'default' in e ? e : { default: e }; + } + var c = l(r), + u = l(o), + d = l(i), + f = l(a), + h = l(s); + function p(e) { + return ( + (p = + 'function' == typeof Symbol && 'symbol' == typeof Symbol.iterator + ? function (e) { + return typeof e; + } + : function (e) { + return e && 'function' == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype + ? 'symbol' + : typeof e; + }), + p(e) + ); + } + function v(e, t) { + if (!(e instanceof t)) throw new TypeError('Cannot call a class as a function'); + } + function g(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + (r.enumerable = r.enumerable || !1), + (r.configurable = !0), + 'value' in r && (r.writable = !0), + Object.defineProperty(e, r.key, r); + } + } + function m(e, t, n) { + return t && g(e.prototype, t), n && g(e, n), Object.defineProperty(e, 'prototype', { writable: !1 }), e; + } + function y(e, t, n) { + return ( + t in e + ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) + : (e[t] = n), + e + ); + } + function b(e, t) { + return ( + (function (e) { + if (Array.isArray(e)) return e; + })(e) || + (function (e, t) { + var n = null == e ? null : ('undefined' != typeof Symbol && e[Symbol.iterator]) || e['@@iterator']; + if (null == n) return; + var r, + o, + i = [], + a = !0, + s = !1; + try { + for (n = n.call(e); !(a = (r = n.next()).done) && (i.push(r.value), !t || i.length !== t); a = !0); + } catch (l) { + (s = !0), (o = l); + } finally { + try { + a || null == n.return || n.return(); + } finally { + if (s) throw o; + } + } + return i; + })(e, t) || + (function (e, t) { + if (!e) return; + if ('string' == typeof e) return x(e, t); + var n = Object.prototype.toString.call(e).slice(8, -1); + 'Object' === n && e.constructor && (n = e.constructor.name); + if ('Map' === n || 'Set' === n) return Array.from(e); + if ('Arguments' === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return x(e, t); + })(e, t) || + (function () { + throw new TypeError( + 'Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.', + ); + })() + ); + } + function x(e, t) { + (null == t || t > e.length) && (t = e.length); + for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; + return r; + } + var w = 'undefined' == typeof window ? null : window, + E = w ? w.navigator : null; + w && w.document; + var k = p(''), + _ = p({}), + S = p(function () {}), + P = 'undefined' == typeof HTMLElement ? 'undefined' : p(HTMLElement), + C = function (e) { + return e && e.instanceString && T(e.instanceString) ? e.instanceString() : null; + }, + j = function (e) { + return null != e && p(e) == k; + }, + T = function (e) { + return null != e && p(e) === S; + }, + D = function (e) { + return !A(e) && (Array.isArray ? Array.isArray(e) : null != e && e instanceof Array); + }, + N = function (e) { + return null != e && p(e) === _ && !D(e) && e.constructor === Object; + }, + M = function (e) { + return null != e && p(e) === p(1) && !isNaN(e); + }, + O = function (e) { + return 'undefined' === P ? void 0 : null != e && e instanceof HTMLElement; + }, + A = function (e) { + return R(e) || L(e); + }, + R = function (e) { + return 'collection' === C(e) && e._private.single; + }, + L = function (e) { + return 'collection' === C(e) && !e._private.single; + }, + I = function (e) { + return 'core' === C(e); + }, + B = function (e) { + return 'stylesheet' === C(e); + }, + F = function (e) { + return null == e || !('' !== e && !e.match(/^\s+$/)); + }, + z = function (e) { + return ( + (function (e) { + return null != e && p(e) === _; + })(e) && T(e.then) + ); + }, + V = function (e, t) { + t || + (t = function () { + if (1 === arguments.length) return arguments[0]; + if (0 === arguments.length) return 'undefined'; + for (var e = [], t = 0; t < arguments.length; t++) e.push(arguments[t]); + return e.join('$'); + }); + var n = function n() { + var r, + o = arguments, + i = t.apply(this, o), + a = n.cache; + return (r = a[i]) || (r = a[i] = e.apply(this, o)), r; + }; + return (n.cache = {}), n; + }, + G = V(function (e) { + return e.replace(/([A-Z])/g, function (e) { + return '-' + e.toLowerCase(); + }); + }), + H = V(function (e) { + return e.replace(/(-\w)/g, function (e) { + return e[1].toUpperCase(); + }); + }), + W = V( + function (e, t) { + return e + t[0].toUpperCase() + t.substring(1); + }, + function (e, t) { + return e + '$' + t; + }, + ), + U = function (e) { + return F(e) ? e : e.charAt(0).toUpperCase() + e.substring(1); + }, + q = '(?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))', + Y = 'rgb[a]?\\((' + q + '[%]?)\\s*,\\s*(' + q + '[%]?)\\s*,\\s*(' + q + '[%]?)(?:\\s*,\\s*(' + q + '))?\\)', + X = + 'rgb[a]?\\((?:' + + q + + '[%]?)\\s*,\\s*(?:' + + q + + '[%]?)\\s*,\\s*(?:' + + q + + '[%]?)(?:\\s*,\\s*(?:' + + q + + '))?\\)', + $ = 'hsl[a]?\\((' + q + ')\\s*,\\s*(' + q + '[%])\\s*,\\s*(' + q + '[%])(?:\\s*,\\s*(' + q + '))?\\)', + K = 'hsl[a]?\\((?:' + q + ')\\s*,\\s*(?:' + q + '[%])\\s*,\\s*(?:' + q + '[%])(?:\\s*,\\s*(?:' + q + '))?\\)', + Z = function (e, t) { + return e < t ? -1 : e > t ? 1 : 0; + }, + Q = + null != Object.assign + ? Object.assign.bind(Object) + : function (e) { + for (var t = arguments, n = 1; n < t.length; n++) { + var r = t[n]; + if (null != r) + for (var o = Object.keys(r), i = 0; i < o.length; i++) { + var a = o[i]; + e[a] = r[a]; + } + } + return e; + }, + J = function (e) { + return ( + (D(e) ? e : null) || + (function (e) { + return ee[e.toLowerCase()]; + })(e) || + (function (e) { + if ((4 === e.length || 7 === e.length) && '#' === e[0]) { + var t, + n, + r, + o = 16; + return ( + 4 === e.length + ? ((t = parseInt(e[1] + e[1], o)), (n = parseInt(e[2] + e[2], o)), (r = parseInt(e[3] + e[3], o))) + : ((t = parseInt(e[1] + e[2], o)), (n = parseInt(e[3] + e[4], o)), (r = parseInt(e[5] + e[6], o))), + [t, n, r] + ); + } + })(e) || + (function (e) { + var t, + n = new RegExp('^' + Y + '$').exec(e); + if (n) { + t = []; + for (var r = [], o = 1; o <= 3; o++) { + var i = n[o]; + if ( + ('%' === i[i.length - 1] && (r[o] = !0), + (i = parseFloat(i)), + r[o] && (i = (i / 100) * 255), + i < 0 || i > 255) + ) + return; + t.push(Math.floor(i)); + } + var a = r[1] || r[2] || r[3], + s = r[1] && r[2] && r[3]; + if (a && !s) return; + var l = n[4]; + if (void 0 !== l) { + if ((l = parseFloat(l)) < 0 || l > 1) return; + t.push(l); + } + } + return t; + })(e) || + (function (e) { + var t, n, r, o, i, a, s, l; + function c(e, t, n) { + return ( + n < 0 && (n += 1), + n > 1 && (n -= 1), + n < 1 / 6 ? e + 6 * (t - e) * n : n < 0.5 ? t : n < 2 / 3 ? e + (t - e) * (2 / 3 - n) * 6 : e + ); + } + var u = new RegExp('^' + $ + '$').exec(e); + if (u) { + if ( + ((n = parseInt(u[1])) < 0 ? (n = (360 - ((-1 * n) % 360)) % 360) : n > 360 && (n %= 360), + (n /= 360), + (r = parseFloat(u[2])) < 0 || r > 100) + ) + return; + if (((r /= 100), (o = parseFloat(u[3])) < 0 || o > 100)) return; + if (((o /= 100), void 0 !== (i = u[4]) && ((i = parseFloat(i)) < 0 || i > 1))) return; + if (0 === r) a = s = l = Math.round(255 * o); + else { + var d = o < 0.5 ? o * (1 + r) : o + r - o * r, + f = 2 * o - d; + (a = Math.round(255 * c(f, d, n + 1 / 3))), + (s = Math.round(255 * c(f, d, n))), + (l = Math.round(255 * c(f, d, n - 1 / 3))); + } + t = [a, s, l, i]; + } + return t; + })(e) + ); + }, + ee = { + transparent: [0, 0, 0, 0], + aliceblue: [240, 248, 255], + antiquewhite: [250, 235, 215], + aqua: [0, 255, 255], + aquamarine: [127, 255, 212], + azure: [240, 255, 255], + beige: [245, 245, 220], + bisque: [255, 228, 196], + black: [0, 0, 0], + blanchedalmond: [255, 235, 205], + blue: [0, 0, 255], + blueviolet: [138, 43, 226], + brown: [165, 42, 42], + burlywood: [222, 184, 135], + cadetblue: [95, 158, 160], + chartreuse: [127, 255, 0], + chocolate: [210, 105, 30], + coral: [255, 127, 80], + cornflowerblue: [100, 149, 237], + cornsilk: [255, 248, 220], + crimson: [220, 20, 60], + cyan: [0, 255, 255], + darkblue: [0, 0, 139], + darkcyan: [0, 139, 139], + darkgoldenrod: [184, 134, 11], + darkgray: [169, 169, 169], + darkgreen: [0, 100, 0], + darkgrey: [169, 169, 169], + darkkhaki: [189, 183, 107], + darkmagenta: [139, 0, 139], + darkolivegreen: [85, 107, 47], + darkorange: [255, 140, 0], + darkorchid: [153, 50, 204], + darkred: [139, 0, 0], + darksalmon: [233, 150, 122], + darkseagreen: [143, 188, 143], + darkslateblue: [72, 61, 139], + darkslategray: [47, 79, 79], + darkslategrey: [47, 79, 79], + darkturquoise: [0, 206, 209], + darkviolet: [148, 0, 211], + deeppink: [255, 20, 147], + deepskyblue: [0, 191, 255], + dimgray: [105, 105, 105], + dimgrey: [105, 105, 105], + dodgerblue: [30, 144, 255], + firebrick: [178, 34, 34], + floralwhite: [255, 250, 240], + forestgreen: [34, 139, 34], + fuchsia: [255, 0, 255], + gainsboro: [220, 220, 220], + ghostwhite: [248, 248, 255], + gold: [255, 215, 0], + goldenrod: [218, 165, 32], + gray: [128, 128, 128], + grey: [128, 128, 128], + green: [0, 128, 0], + greenyellow: [173, 255, 47], + honeydew: [240, 255, 240], + hotpink: [255, 105, 180], + indianred: [205, 92, 92], + indigo: [75, 0, 130], + ivory: [255, 255, 240], + khaki: [240, 230, 140], + lavender: [230, 230, 250], + lavenderblush: [255, 240, 245], + lawngreen: [124, 252, 0], + lemonchiffon: [255, 250, 205], + lightblue: [173, 216, 230], + lightcoral: [240, 128, 128], + lightcyan: [224, 255, 255], + lightgoldenrodyellow: [250, 250, 210], + lightgray: [211, 211, 211], + lightgreen: [144, 238, 144], + lightgrey: [211, 211, 211], + lightpink: [255, 182, 193], + lightsalmon: [255, 160, 122], + lightseagreen: [32, 178, 170], + lightskyblue: [135, 206, 250], + lightslategray: [119, 136, 153], + lightslategrey: [119, 136, 153], + lightsteelblue: [176, 196, 222], + lightyellow: [255, 255, 224], + lime: [0, 255, 0], + limegreen: [50, 205, 50], + linen: [250, 240, 230], + magenta: [255, 0, 255], + maroon: [128, 0, 0], + mediumaquamarine: [102, 205, 170], + mediumblue: [0, 0, 205], + mediumorchid: [186, 85, 211], + mediumpurple: [147, 112, 219], + mediumseagreen: [60, 179, 113], + mediumslateblue: [123, 104, 238], + mediumspringgreen: [0, 250, 154], + mediumturquoise: [72, 209, 204], + mediumvioletred: [199, 21, 133], + midnightblue: [25, 25, 112], + mintcream: [245, 255, 250], + mistyrose: [255, 228, 225], + moccasin: [255, 228, 181], + navajowhite: [255, 222, 173], + navy: [0, 0, 128], + oldlace: [253, 245, 230], + olive: [128, 128, 0], + olivedrab: [107, 142, 35], + orange: [255, 165, 0], + orangered: [255, 69, 0], + orchid: [218, 112, 214], + palegoldenrod: [238, 232, 170], + palegreen: [152, 251, 152], + paleturquoise: [175, 238, 238], + palevioletred: [219, 112, 147], + papayawhip: [255, 239, 213], + peachpuff: [255, 218, 185], + peru: [205, 133, 63], + pink: [255, 192, 203], + plum: [221, 160, 221], + powderblue: [176, 224, 230], + purple: [128, 0, 128], + red: [255, 0, 0], + rosybrown: [188, 143, 143], + royalblue: [65, 105, 225], + saddlebrown: [139, 69, 19], + salmon: [250, 128, 114], + sandybrown: [244, 164, 96], + seagreen: [46, 139, 87], + seashell: [255, 245, 238], + sienna: [160, 82, 45], + silver: [192, 192, 192], + skyblue: [135, 206, 235], + slateblue: [106, 90, 205], + slategray: [112, 128, 144], + slategrey: [112, 128, 144], + snow: [255, 250, 250], + springgreen: [0, 255, 127], + steelblue: [70, 130, 180], + tan: [210, 180, 140], + teal: [0, 128, 128], + thistle: [216, 191, 216], + tomato: [255, 99, 71], + turquoise: [64, 224, 208], + violet: [238, 130, 238], + wheat: [245, 222, 179], + white: [255, 255, 255], + whitesmoke: [245, 245, 245], + yellow: [255, 255, 0], + yellowgreen: [154, 205, 50], + }, + te = function (e) { + for (var t = e.map, n = e.keys, r = n.length, o = 0; o < r; o++) { + var i = n[o]; + if (N(i)) throw Error('Tried to set map with object key'); + o < n.length - 1 ? (null == t[i] && (t[i] = {}), (t = t[i])) : (t[i] = e.value); + } + }, + ne = function (e) { + for (var t = e.map, n = e.keys, r = n.length, o = 0; o < r; o++) { + var i = n[o]; + if (N(i)) throw Error('Tried to get map with object key'); + if (null == (t = t[i])) return t; + } + return t; + }, + re = w ? w.performance : null, + oe = + re && re.now + ? function () { + return re.now(); + } + : function () { + return Date.now(); + }, + ie = (function () { + if (w) { + if (w.requestAnimationFrame) + return function (e) { + w.requestAnimationFrame(e); + }; + if (w.mozRequestAnimationFrame) + return function (e) { + w.mozRequestAnimationFrame(e); + }; + if (w.webkitRequestAnimationFrame) + return function (e) { + w.webkitRequestAnimationFrame(e); + }; + if (w.msRequestAnimationFrame) + return function (e) { + w.msRequestAnimationFrame(e); + }; + } + return function (e) { + e && + setTimeout(function () { + e(oe()); + }, 1e3 / 60); + }; + })(), + ae = function (e) { + return ie(e); + }, + se = oe, + le = 9261, + ce = 5381, + ue = function (e) { + for (var t, n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : le; !(t = e.next()).done; ) + n = (65599 * n + t.value) | 0; + return n; + }, + de = function (e) { + return (65599 * (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : le) + e) | 0; + }, + fe = function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : ce; + return ((t << 5) + t + e) | 0; + }, + he = function (e) { + return 2097152 * e[0] + e[1]; + }, + pe = function (e, t) { + return [de(e[0], t[0]), fe(e[1], t[1])]; + }, + ve = function (e, t) { + var n = { value: 0, done: !1 }, + r = 0, + o = e.length; + return ue( + { + next: function () { + return r < o ? (n.value = e.charCodeAt(r++)) : (n.done = !0), n; + }, + }, + t, + ); + }, + ge = function () { + return me(arguments); + }, + me = function (e) { + for (var t, n = 0; n < e.length; n++) { + var r = e[n]; + t = 0 === n ? ve(r) : ve(r, t); + } + return t; + }, + ye = !0, + be = null != console.warn, + xe = null != console.trace, + we = Number.MAX_SAFE_INTEGER || 9007199254740991, + Ee = function () { + return !0; + }, + ke = function () { + return !1; + }, + _e = function () { + return 0; + }, + Se = function () {}, + Pe = function (e) { + throw new Error(e); + }, + Ce = function (e) { + if (void 0 === e) return ye; + ye = !!e; + }, + je = function (e) { + Ce() && (be ? console.warn(e) : (console.log(e), xe && console.trace())); + }, + Te = function (e) { + return null == e + ? e + : D(e) + ? e.slice() + : N(e) + ? (function (e) { + return Q({}, e); + })(e) + : e; + }, + De = function (e, t) { + for ( + t = e = ''; + e++ < 36; + t += (51 * e) & 52 ? (15 ^ e ? 8 ^ (Math.random() * (20 ^ e ? 16 : 4)) : 4).toString(16) : '-' + ); + return t; + }, + Ne = {}, + Me = function () { + return Ne; + }, + Oe = function (e) { + var t = Object.keys(e); + return function (n) { + for (var r = {}, o = 0; o < t.length; o++) { + var i = t[o], + a = null == n ? void 0 : n[i]; + r[i] = void 0 === a ? e[i] : a; + } + return r; + }; + }, + Ae = function (e, t, n) { + for (var r = e.length - 1; r >= 0 && (e[r] !== t || (e.splice(r, 1), !n)); r--); + }, + Re = function (e) { + e.splice(0, e.length); + }, + Le = function (e, t, n) { + return n && (t = W(n, t)), e[t]; + }, + Ie = function (e, t, n, r) { + n && (t = W(n, t)), (e[t] = r); + }, + Be = + 'undefined' != typeof Map + ? Map + : (function () { + function e() { + v(this, e), (this._obj = {}); + } + return ( + m(e, [ + { + key: 'set', + value: function (e, t) { + return (this._obj[e] = t), this; + }, + }, + { + key: 'delete', + value: function (e) { + return (this._obj[e] = void 0), this; + }, + }, + { + key: 'clear', + value: function () { + this._obj = {}; + }, + }, + { + key: 'has', + value: function (e) { + return void 0 !== this._obj[e]; + }, + }, + { + key: 'get', + value: function (e) { + return this._obj[e]; + }, + }, + ]), + e + ); + })(), + Fe = (function () { + function e(t) { + if ((v(this, e), (this._obj = Object.create(null)), (this.size = 0), null != t)) { + var n; + n = null != t.instanceString && t.instanceString() === this.instanceString() ? t.toArray() : t; + for (var r = 0; r < n.length; r++) this.add(n[r]); + } + } + return ( + m(e, [ + { + key: 'instanceString', + value: function () { + return 'set'; + }, + }, + { + key: 'add', + value: function (e) { + var t = this._obj; + 1 !== t[e] && ((t[e] = 1), this.size++); + }, + }, + { + key: 'delete', + value: function (e) { + var t = this._obj; + 1 === t[e] && ((t[e] = 0), this.size--); + }, + }, + { + key: 'clear', + value: function () { + this._obj = Object.create(null); + }, + }, + { + key: 'has', + value: function (e) { + return 1 === this._obj[e]; + }, + }, + { + key: 'toArray', + value: function () { + var e = this; + return Object.keys(this._obj).filter(function (t) { + return e.has(t); + }); + }, + }, + { + key: 'forEach', + value: function (e, t) { + return this.toArray().forEach(e, t); + }, + }, + ]), + e + ); + })(), + ze = 'undefined' !== ('undefined' == typeof Set ? 'undefined' : p(Set)) ? Set : Fe, + Ve = function (e, t) { + var n = !(arguments.length > 2 && void 0 !== arguments[2]) || arguments[2]; + if (void 0 !== e && void 0 !== t && I(e)) { + var r = t.group; + if ( + (null == r && (r = t.data && null != t.data.source && null != t.data.target ? 'edges' : 'nodes'), + 'nodes' === r || 'edges' === r) + ) { + (this.length = 1), (this[0] = this); + var o = (this._private = { + cy: e, + single: !0, + data: t.data || {}, + position: t.position || { x: 0, y: 0 }, + autoWidth: void 0, + autoHeight: void 0, + autoPadding: void 0, + compoundBoundsClean: !1, + listeners: [], + group: r, + style: {}, + rstyle: {}, + styleCxts: [], + styleKeys: {}, + removed: !0, + selected: !!t.selected, + selectable: void 0 === t.selectable || !!t.selectable, + locked: !!t.locked, + grabbed: !1, + grabbable: void 0 === t.grabbable || !!t.grabbable, + pannable: void 0 === t.pannable ? 'edges' === r : !!t.pannable, + active: !1, + classes: new ze(), + animation: { current: [], queue: [] }, + rscratch: {}, + scratch: t.scratch || {}, + edges: [], + children: [], + parent: t.parent && t.parent.isNode() ? t.parent : null, + traversalCache: {}, + backgrounding: !1, + bbCache: null, + bbCacheShift: { x: 0, y: 0 }, + bodyBounds: null, + overlayBounds: null, + labelBounds: { all: null, source: null, target: null, main: null }, + arrowBounds: { source: null, target: null, 'mid-source': null, 'mid-target': null }, + }); + if ( + (null == o.position.x && (o.position.x = 0), + null == o.position.y && (o.position.y = 0), + t.renderedPosition) + ) { + var i = t.renderedPosition, + a = e.pan(), + s = e.zoom(); + o.position = { x: (i.x - a.x) / s, y: (i.y - a.y) / s }; + } + var l = []; + D(t.classes) ? (l = t.classes) : j(t.classes) && (l = t.classes.split(/\s+/)); + for (var c = 0, u = l.length; c < u; c++) { + var d = l[c]; + d && '' !== d && o.classes.add(d); + } + this.createEmitter(); + var f = t.style || t.css; + f && + (je( + 'Setting a `style` bypass at element creation should be done only when absolutely necessary. Try to use the stylesheet instead.', + ), + this.style(f)), + (void 0 === n || n) && this.restore(); + } else Pe('An element must be of type `nodes` or `edges`; you specified `' + r + '`'); + } else Pe('An element must have a core reference and parameters set'); + }, + Ge = function (e) { + return ( + (e = { bfs: e.bfs || !e.dfs, dfs: e.dfs || !e.bfs }), + function (t, n, r) { + var o; + N(t) && !A(t) && ((t = (o = t).roots || o.root), (n = o.visit), (r = o.directed)), + (r = 2 !== arguments.length || T(n) ? r : n), + (n = T(n) ? n : function () {}); + for ( + var i, + a = this._private.cy, + s = (t = j(t) ? this.filter(t) : t), + l = [], + c = [], + u = {}, + d = {}, + f = {}, + h = 0, + p = this.byGroup(), + v = p.nodes, + g = p.edges, + m = 0; + m < s.length; + m++ + ) { + var y = s[m], + b = y.id(); + y.isNode() && (l.unshift(y), e.bfs && ((f[b] = !0), c.push(y)), (d[b] = 0)); + } + for ( + var x = function () { + var t = e.bfs ? l.shift() : l.pop(), + o = t.id(); + if (e.dfs) { + if (f[o]) return 'continue'; + (f[o] = !0), c.push(t); + } + var a, + s = d[o], + p = u[o], + m = null != p ? p.source() : null, + y = null != p ? p.target() : null, + b = null == p ? void 0 : t.same(m) ? y[0] : m[0]; + if (!0 === (a = n(t, p, b, h++, s))) return (i = t), 'break'; + if (!1 === a) return 'break'; + for ( + var x = t.connectedEdges().filter(function (e) { + return (!r || e.source().same(t)) && g.has(e); + }), + w = 0; + w < x.length; + w++ + ) { + var E = x[w], + k = E.connectedNodes().filter(function (e) { + return !e.same(t) && v.has(e); + }), + _ = k.id(); + 0 === k.length || + f[_] || + ((k = k[0]), l.push(k), e.bfs && ((f[_] = !0), c.push(k)), (u[_] = E), (d[_] = d[o] + 1)); + } + }; + 0 !== l.length; + + ) { + var w = x(); + if ('continue' !== w && 'break' === w) break; + } + for (var E = a.collection(), k = 0; k < c.length; k++) { + var _ = c[k], + S = u[_.id()]; + null != S && E.push(S), E.push(_); + } + return { path: a.collection(E), found: a.collection(i) }; + } + ); + }, + He = { breadthFirstSearch: Ge({ bfs: !0 }), depthFirstSearch: Ge({ dfs: !0 }) }; + (He.bfs = He.breadthFirstSearch), (He.dfs = He.depthFirstSearch); + var We = Oe({ + root: null, + weight: function (e) { + return 1; + }, + directed: !1, + }), + Ue = { + dijkstra: function (e) { + if (!N(e)) { + var t = arguments; + e = { root: t[0], weight: t[1], directed: t[2] }; + } + var n = We(e), + r = n.root, + o = n.weight, + i = n.directed, + a = this, + s = o, + l = j(r) ? this.filter(r)[0] : r[0], + c = {}, + d = {}, + f = {}, + h = this.byGroup(), + p = h.nodes, + v = h.edges; + v.unmergeBy(function (e) { + return e.isLoop(); + }); + for ( + var g = function (e) { + return c[e.id()]; + }, + m = function (e, t) { + (c[e.id()] = t), y.updateItem(e); + }, + y = new u.default(function (e, t) { + return g(e) - g(t); + }), + b = 0; + b < p.length; + b++ + ) { + var x = p[b]; + (c[x.id()] = x.same(l) ? 0 : 1 / 0), y.push(x); + } + for ( + var w = function (e, t) { + for (var n, r = (i ? e.edgesTo(t) : e.edgesWith(t)).intersect(v), o = 1 / 0, a = 0; a < r.length; a++) { + var l = r[a], + c = s(l); + (c < o || !n) && ((o = c), (n = l)); + } + return { edge: n, dist: o }; + }; + y.size() > 0; + + ) { + var E = y.pop(), + k = g(E), + _ = E.id(); + if (((f[_] = k), k !== 1 / 0)) + for (var S = E.neighborhood().intersect(p), P = 0; P < S.length; P++) { + var C = S[P], + T = C.id(), + D = w(E, C), + M = k + D.dist; + M < g(C) && (m(C, M), (d[T] = { node: E, edge: D.edge })); + } + } + return { + distanceTo: function (e) { + var t = j(e) ? p.filter(e)[0] : e[0]; + return f[t.id()]; + }, + pathTo: function (e) { + var t = j(e) ? p.filter(e)[0] : e[0], + n = [], + r = t, + o = r.id(); + if (t.length > 0) + for (n.unshift(t); d[o]; ) { + var i = d[o]; + n.unshift(i.edge), n.unshift(i.node), (o = (r = i.node).id()); + } + return a.spawn(n); + }, + }; + }, + }, + qe = { + kruskal: function (e) { + e = + e || + function (e) { + return 1; + }; + for ( + var t = this.byGroup(), + n = t.nodes, + r = t.edges, + o = n.length, + i = new Array(o), + a = n, + s = function (e) { + for (var t = 0; t < i.length; t++) { + if (i[t].has(e)) return t; + } + }, + l = 0; + l < o; + l++ + ) + i[l] = this.spawn(n[l]); + for ( + var c = r.sort(function (t, n) { + return e(t) - e(n); + }), + u = 0; + u < c.length; + u++ + ) { + var d = c[u], + f = d.source()[0], + h = d.target()[0], + p = s(f), + v = s(h), + g = i[p], + m = i[v]; + p !== v && (a.merge(d), g.merge(m), i.splice(v, 1)); + } + return a; + }, + }, + Ye = Oe({ + root: null, + goal: null, + weight: function (e) { + return 1; + }, + heuristic: function (e) { + return 0; + }, + directed: !1, + }), + Xe = { + aStar: function (e) { + var t = this.cy(), + n = Ye(e), + r = n.root, + o = n.goal, + i = n.heuristic, + a = n.directed, + s = n.weight; + (r = t.collection(r)[0]), (o = t.collection(o)[0]); + var l, + c, + d = r.id(), + f = o.id(), + h = {}, + p = {}, + v = {}, + g = new u.default(function (e, t) { + return p[e.id()] - p[t.id()]; + }), + m = new ze(), + y = {}, + b = {}, + x = function (e, t) { + g.push(e), m.add(t); + }; + x(r, d), (h[d] = 0), (p[d] = i(r)); + for (var w, E = 0; g.size() > 0; ) { + if (((l = g.pop()), (c = l.id()), m.delete(c), E++, c === f)) { + for (var k = [], _ = o, S = f, P = b[S]; k.unshift(_), null != P && k.unshift(P), null != (_ = y[S]); ) + P = b[(S = _.id())]; + return { found: !0, distance: h[c], path: this.spawn(k), steps: E }; + } + v[c] = !0; + for (var C = l._private.edges, j = 0; j < C.length; j++) { + var T = C[j]; + if (this.hasElementWithId(T.id()) && (!a || T.data('source') === c)) { + var D = T.source(), + N = T.target(), + M = D.id() !== c ? D : N, + O = M.id(); + if (this.hasElementWithId(O) && !v[O]) { + var A = h[c] + s(T); + (w = O), + m.has(w) + ? A < h[O] && ((h[O] = A), (p[O] = A + i(M)), (y[O] = l), (b[O] = T)) + : ((h[O] = A), (p[O] = A + i(M)), x(M, O), (y[O] = l), (b[O] = T)); + } + } + } + } + return { found: !1, distance: void 0, path: void 0, steps: E }; + }, + }, + $e = Oe({ + weight: function (e) { + return 1; + }, + directed: !1, + }), + Ke = { + floydWarshall: function (e) { + for ( + var t = this.cy(), + n = $e(e), + r = n.weight, + o = n.directed, + i = r, + a = this.byGroup(), + s = a.nodes, + l = a.edges, + c = s.length, + u = c * c, + d = function (e) { + return s.indexOf(e); + }, + f = function (e) { + return s[e]; + }, + h = new Array(u), + p = 0; + p < u; + p++ + ) { + var v = p % c, + g = (p - v) / c; + h[p] = g === v ? 0 : 1 / 0; + } + for (var m = new Array(u), y = new Array(u), b = 0; b < l.length; b++) { + var x = l[b], + w = x.source()[0], + E = x.target()[0]; + if (w !== E) { + var k = d(w), + _ = d(E), + S = k * c + _, + P = i(x); + if ((h[S] > P && ((h[S] = P), (m[S] = _), (y[S] = x)), !o)) { + var C = _ * c + k; + !o && h[C] > P && ((h[C] = P), (m[C] = k), (y[C] = x)); + } + } + } + for (var T = 0; T < c; T++) + for (var D = 0; D < c; D++) + for (var N = D * c + T, M = 0; M < c; M++) { + var O = D * c + M, + A = T * c + M; + h[N] + h[A] < h[O] && ((h[O] = h[N] + h[A]), (m[O] = m[N])); + } + var R = function (e) { + return d( + (function (e) { + return (j(e) ? t.filter(e) : e)[0]; + })(e), + ); + }, + L = { + distance: function (e, t) { + var n = R(e), + r = R(t); + return h[n * c + r]; + }, + path: function (e, n) { + var r = R(e), + o = R(n), + i = f(r); + if (r === o) return i.collection(); + if (null == m[r * c + o]) return t.collection(); + var a, + s = t.collection(), + l = r; + for (s.merge(i); r !== o; ) + (l = r), (r = m[r * c + o]), (a = y[l * c + r]), s.merge(a), s.merge(f(r)); + return s; + }, + }; + return L; + }, + }, + Ze = Oe({ + weight: function (e) { + return 1; + }, + directed: !1, + root: null, + }), + Qe = { + bellmanFord: function (e) { + var t = this, + n = Ze(e), + r = n.weight, + o = n.directed, + i = n.root, + a = r, + s = this, + l = this.cy(), + c = this.byGroup(), + u = c.edges, + d = c.nodes, + f = d.length, + h = new Be(), + p = !1, + v = []; + (i = l.collection(i)[0]), + u.unmergeBy(function (e) { + return e.isLoop(); + }); + for ( + var g = u.length, + m = function (e) { + var t = h.get(e.id()); + return t || ((t = {}), h.set(e.id(), t)), t; + }, + y = function (e) { + return (j(e) ? l.$(e) : e)[0]; + }, + b = 0; + b < f; + b++ + ) { + var x = d[b], + w = m(x); + x.same(i) ? (w.dist = 0) : (w.dist = 1 / 0), (w.pred = null), (w.edge = null); + } + for ( + var E = !1, + k = function (e, t, n, r, o, i) { + var a = r.dist + i; + a < o.dist && !n.same(r.edge) && ((o.dist = a), (o.pred = e), (o.edge = n), (E = !0)); + }, + _ = 1; + _ < f; + _++ + ) { + E = !1; + for (var S = 0; S < g; S++) { + var P = u[S], + C = P.source(), + T = P.target(), + D = a(P), + N = m(C), + M = m(T); + k(C, 0, P, N, M, D), o || k(T, 0, P, M, N, D); + } + if (!E) break; + } + if (E) + for (var O = [], A = 0; A < g; A++) { + var R = u[A], + L = R.source(), + I = R.target(), + B = a(R), + F = m(L).dist, + z = m(I).dist; + if (F + B < z || (!o && z + B < F)) { + if ( + (p || (je('Graph contains a negative weight cycle for Bellman-Ford'), (p = !0)), + !1 === e.findNegativeWeightCycles) + ) + break; + var V = []; + F + B < z && V.push(L), !o && z + B < F && V.push(I); + for (var G = V.length, H = 0; H < G; H++) { + var W = V[H], + U = [W]; + U.push(m(W).edge); + for (var q = m(W).pred; -1 === U.indexOf(q); ) U.push(q), U.push(m(q).edge), (q = m(q).pred); + for (var Y = (U = U.slice(U.indexOf(q)))[0].id(), X = 0, $ = 2; $ < U.length; $ += 2) + U[$].id() < Y && ((Y = U[$].id()), (X = $)); + (U = U.slice(X).concat(U.slice(0, X))).push(U[0]); + var K = U.map(function (e) { + return e.id(); + }).join(','); + -1 === O.indexOf(K) && (v.push(s.spawn(U)), O.push(K)); + } + } + } + return { + distanceTo: function (e) { + return m(y(e)).dist; + }, + pathTo: function (e) { + for (var n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : i, r = [], o = y(e); ; ) { + if (null == o) return t.spawn(); + var a = m(o), + l = a.edge, + c = a.pred; + if ((r.unshift(o[0]), o.same(n) && r.length > 0)) break; + null != l && r.unshift(l), (o = c); + } + return s.spawn(r); + }, + hasNegativeWeightCycle: p, + negativeWeightCycles: v, + }; + }, + }, + Je = Math.sqrt(2), + et = function (e, t, n) { + 0 === n.length && Pe('Karger-Stein must be run on a connected (sub)graph'); + for (var r = n[e], o = r[1], i = r[2], a = t[o], s = t[i], l = n, c = l.length - 1; c >= 0; c--) { + var u = l[c], + d = u[1], + f = u[2]; + ((t[d] === a && t[f] === s) || (t[d] === s && t[f] === a)) && l.splice(c, 1); + } + for (var h = 0; h < l.length; h++) { + var p = l[h]; + p[1] === s ? ((l[h] = p.slice()), (l[h][1] = a)) : p[2] === s && ((l[h] = p.slice()), (l[h][2] = a)); + } + for (var v = 0; v < t.length; v++) t[v] === s && (t[v] = a); + return l; + }, + tt = function (e, t, n, r) { + for (; n > r; ) { + var o = Math.floor(Math.random() * t.length); + (t = et(o, e, t)), n--; + } + return t; + }, + nt = { + kargerStein: function () { + var e = this, + t = this.byGroup(), + n = t.nodes, + r = t.edges; + r.unmergeBy(function (e) { + return e.isLoop(); + }); + var o = n.length, + i = r.length, + a = Math.ceil(Math.pow(Math.log(o) / Math.LN2, 2)), + s = Math.floor(o / Je); + if (!(o < 2)) { + for (var l = [], c = 0; c < i; c++) { + var u = r[c]; + l.push([c, n.indexOf(u.source()), n.indexOf(u.target())]); + } + for ( + var d = 1 / 0, + f = [], + h = new Array(o), + p = new Array(o), + v = new Array(o), + g = function (e, t) { + for (var n = 0; n < o; n++) t[n] = e[n]; + }, + m = 0; + m <= a; + m++ + ) { + for (var y = 0; y < o; y++) p[y] = y; + var b = tt(p, l.slice(), o, s), + x = b.slice(); + g(p, v); + var w = tt(p, b, s, 2), + E = tt(v, x, s, 2); + w.length <= E.length && w.length < d + ? ((d = w.length), (f = w), g(p, h)) + : E.length <= w.length && E.length < d && ((d = E.length), (f = E), g(v, h)); + } + for ( + var k = this.spawn( + f.map(function (e) { + return r[e[0]]; + }), + ), + _ = this.spawn(), + S = this.spawn(), + P = h[0], + C = 0; + C < h.length; + C++ + ) { + var j = h[C], + T = n[C]; + j === P ? _.merge(T) : S.merge(T); + } + var D = function (t) { + var n = e.spawn(); + return ( + t.forEach(function (t) { + n.merge(t), + t.connectedEdges().forEach(function (t) { + e.contains(t) && !k.contains(t) && n.merge(t); + }); + }), + n + ); + }, + N = [D(_), D(S)]; + return { cut: k, components: N, partition1: _, partition2: S }; + } + Pe('At least 2 nodes are required for Karger-Stein algorithm'); + }, + }, + rt = function (e, t, n) { + return { x: e.x * t + n.x, y: e.y * t + n.y }; + }, + ot = function (e, t, n) { + return { x: (e.x - n.x) / t, y: (e.y - n.y) / t }; + }, + it = function (e) { + return { x: e[0], y: e[1] }; + }, + at = function (e, t) { + return Math.atan2(t, e) - Math.PI / 2; + }, + st = + Math.log2 || + function (e) { + return Math.log(e) / Math.log(2); + }, + lt = function (e) { + return e > 0 ? 1 : e < 0 ? -1 : 0; + }, + ct = function (e, t) { + return Math.sqrt(ut(e, t)); + }, + ut = function (e, t) { + var n = t.x - e.x, + r = t.y - e.y; + return n * n + r * r; + }, + dt = function (e) { + for (var t = e.length, n = 0, r = 0; r < t; r++) n += e[r]; + for (var o = 0; o < t; o++) e[o] = e[o] / n; + return e; + }, + ft = function (e, t, n, r) { + return (1 - r) * (1 - r) * e + 2 * (1 - r) * r * t + r * r * n; + }, + ht = function (e, t, n, r) { + return { x: ft(e.x, t.x, n.x, r), y: ft(e.y, t.y, n.y, r) }; + }, + pt = function (e, t, n) { + return Math.max(e, Math.min(n, t)); + }, + vt = function (e) { + if (null == e) return { x1: 1 / 0, y1: 1 / 0, x2: -1 / 0, y2: -1 / 0, w: 0, h: 0 }; + if (null != e.x1 && null != e.y1) { + if (null != e.x2 && null != e.y2 && e.x2 >= e.x1 && e.y2 >= e.y1) + return { x1: e.x1, y1: e.y1, x2: e.x2, y2: e.y2, w: e.x2 - e.x1, h: e.y2 - e.y1 }; + if (null != e.w && null != e.h && e.w >= 0 && e.h >= 0) + return { x1: e.x1, y1: e.y1, x2: e.x1 + e.w, y2: e.y1 + e.h, w: e.w, h: e.h }; + } + }, + gt = function (e, t, n) { + (e.x1 = Math.min(e.x1, t)), + (e.x2 = Math.max(e.x2, t)), + (e.w = e.x2 - e.x1), + (e.y1 = Math.min(e.y1, n)), + (e.y2 = Math.max(e.y2, n)), + (e.h = e.y2 - e.y1); + }, + mt = function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0; + return (e.x1 -= t), (e.x2 += t), (e.y1 -= t), (e.y2 += t), (e.w = e.x2 - e.x1), (e.h = e.y2 - e.y1), e; + }, + yt = function (e) { + var t, + n, + r, + o, + i = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : [0]; + if (1 === i.length) t = n = r = o = i[0]; + else if (2 === i.length) (t = r = i[0]), (o = n = i[1]); + else if (4 === i.length) { + var a = b(i, 4); + (t = a[0]), (n = a[1]), (r = a[2]), (o = a[3]); + } + return (e.x1 -= o), (e.x2 += n), (e.y1 -= t), (e.y2 += r), (e.w = e.x2 - e.x1), (e.h = e.y2 - e.y1), e; + }, + bt = function (e, t) { + (e.x1 = t.x1), (e.y1 = t.y1), (e.x2 = t.x2), (e.y2 = t.y2), (e.w = e.x2 - e.x1), (e.h = e.y2 - e.y1); + }, + xt = function (e, t) { + return ( + !(e.x1 > t.x2) && + !(t.x1 > e.x2) && + !(e.x2 < t.x1) && + !(t.x2 < e.x1) && + !(e.y2 < t.y1) && + !(t.y2 < e.y1) && + !(e.y1 > t.y2) && + !(t.y1 > e.y2) + ); + }, + wt = function (e, t, n) { + return e.x1 <= t && t <= e.x2 && e.y1 <= n && n <= e.y2; + }, + Et = function (e, t) { + return wt(e, t.x1, t.y1) && wt(e, t.x2, t.y2); + }, + kt = function (e, t, n, r, o, i, a) { + var s, + l = Vt(o, i), + c = o / 2, + u = i / 2, + d = r - u - a; + if ((s = Rt(e, t, n, r, n - c + l - a, d, n + c - l + a, d, !1)).length > 0) return s; + var f = n + c + a; + if ((s = Rt(e, t, n, r, f, r - u + l - a, f, r + u - l + a, !1)).length > 0) return s; + var h = r + u + a; + if ((s = Rt(e, t, n, r, n - c + l - a, h, n + c - l + a, h, !1)).length > 0) return s; + var p, + v = n - c - a; + if ((s = Rt(e, t, n, r, v, r - u + l - a, v, r + u - l + a, !1)).length > 0) return s; + var g = n - c + l, + m = r - u + l; + if ((p = Ot(e, t, n, r, g, m, l + a)).length > 0 && p[0] <= g && p[1] <= m) return [p[0], p[1]]; + var y = n + c - l, + b = r - u + l; + if ((p = Ot(e, t, n, r, y, b, l + a)).length > 0 && p[0] >= y && p[1] <= b) return [p[0], p[1]]; + var x = n + c - l, + w = r + u - l; + if ((p = Ot(e, t, n, r, x, w, l + a)).length > 0 && p[0] >= x && p[1] >= w) return [p[0], p[1]]; + var E = n - c + l, + k = r + u - l; + return (p = Ot(e, t, n, r, E, k, l + a)).length > 0 && p[0] <= E && p[1] >= k ? [p[0], p[1]] : []; + }, + _t = function (e, t, n, r, o, i, a) { + var s = a, + l = Math.min(n, o), + c = Math.max(n, o), + u = Math.min(r, i), + d = Math.max(r, i); + return l - s <= e && e <= c + s && u - s <= t && t <= d + s; + }, + St = function (e, t, n, r, o, i, a, s, l) { + var c = Math.min(n, a, o) - l, + u = Math.max(n, a, o) + l, + d = Math.min(r, s, i) - l, + f = Math.max(r, s, i) + l; + return !(e < c || e > u || t < d || t > f); + }, + Pt = function (e, t, n, r, o, i, a, s) { + var l = []; + !(function (e, t, n, r, o) { + var i, a, s, l, c, u, d, f; + 0 === e && (e = 1e-5), + (s = -27 * (r /= e) + (t /= e) * (9 * (n /= e) - t * t * 2)), + (i = (a = (3 * n - t * t) / 9) * a * a + (s /= 54) * s), + (o[1] = 0), + (d = t / 3), + i > 0 + ? ((c = (c = s + Math.sqrt(i)) < 0 ? -Math.pow(-c, 1 / 3) : Math.pow(c, 1 / 3)), + (u = (u = s - Math.sqrt(i)) < 0 ? -Math.pow(-u, 1 / 3) : Math.pow(u, 1 / 3)), + (o[0] = -d + c + u), + (d += (c + u) / 2), + (o[4] = o[2] = -d), + (d = (Math.sqrt(3) * (-u + c)) / 2), + (o[3] = d), + (o[5] = -d)) + : ((o[5] = o[3] = 0), + 0 === i + ? ((f = s < 0 ? -Math.pow(-s, 1 / 3) : Math.pow(s, 1 / 3)), + (o[0] = 2 * f - d), + (o[4] = o[2] = -(f + d))) + : ((l = (a = -a) * a * a), + (l = Math.acos(s / Math.sqrt(l))), + (f = 2 * Math.sqrt(a)), + (o[0] = -d + f * Math.cos(l / 3)), + (o[2] = -d + f * Math.cos((l + 2 * Math.PI) / 3)), + (o[4] = -d + f * Math.cos((l + 4 * Math.PI) / 3)))); + })( + 1 * n * n - + 4 * n * o + + 2 * n * a + + 4 * o * o - + 4 * o * a + + a * a + + r * r - + 4 * r * i + + 2 * r * s + + 4 * i * i - + 4 * i * s + + s * s, + 9 * n * o - + 3 * n * n - + 3 * n * a - + 6 * o * o + + 3 * o * a + + 9 * r * i - + 3 * r * r - + 3 * r * s - + 6 * i * i + + 3 * i * s, + 3 * n * n - + 6 * n * o + + n * a - + n * e + + 2 * o * o + + 2 * o * e - + a * e + + 3 * r * r - + 6 * r * i + + r * s - + r * t + + 2 * i * i + + 2 * i * t - + s * t, + 1 * n * o - n * n + n * e - o * e + r * i - r * r + r * t - i * t, + l, + ); + for (var c = [], u = 0; u < 6; u += 2) Math.abs(l[u + 1]) < 1e-7 && l[u] >= 0 && l[u] <= 1 && c.push(l[u]); + c.push(1), c.push(0); + for (var d, f, h, p = -1, v = 0; v < c.length; v++) + (d = Math.pow(1 - c[v], 2) * n + 2 * (1 - c[v]) * c[v] * o + c[v] * c[v] * a), + (f = Math.pow(1 - c[v], 2) * r + 2 * (1 - c[v]) * c[v] * i + c[v] * c[v] * s), + (h = Math.pow(d - e, 2) + Math.pow(f - t, 2)), + p >= 0 ? h < p && (p = h) : (p = h); + return p; + }, + Ct = function (e, t, n, r, o, i) { + var a = [e - n, t - r], + s = [o - n, i - r], + l = s[0] * s[0] + s[1] * s[1], + c = a[0] * a[0] + a[1] * a[1], + u = a[0] * s[0] + a[1] * s[1], + d = (u * u) / l; + return u < 0 ? c : d > l ? (e - o) * (e - o) + (t - i) * (t - i) : c - d; + }, + jt = function (e, t, n) { + for (var r, o, i, a, s = 0, l = 0; l < n.length / 2; l++) + if ( + ((r = n[2 * l]), + (o = n[2 * l + 1]), + l + 1 < n.length / 2 + ? ((i = n[2 * (l + 1)]), (a = n[2 * (l + 1) + 1])) + : ((i = n[2 * (l + 1 - n.length / 2)]), (a = n[2 * (l + 1 - n.length / 2) + 1])), + r == e && i == e) + ); + else { + if (!((r >= e && e >= i) || (r <= e && e <= i))) continue; + ((e - r) / (i - r)) * (a - o) + o > t && s++; + } + return s % 2 != 0; + }, + Tt = function (e, t, n, r, o, i, a, s, l) { + var c, + u = new Array(n.length); + null != s[0] + ? ((c = Math.atan(s[1] / s[0])), s[0] < 0 ? (c += Math.PI / 2) : (c = -c - Math.PI / 2)) + : (c = s); + for (var d, f = Math.cos(-c), h = Math.sin(-c), p = 0; p < u.length / 2; p++) + (u[2 * p] = (i / 2) * (n[2 * p] * f - n[2 * p + 1] * h)), + (u[2 * p + 1] = (a / 2) * (n[2 * p + 1] * f + n[2 * p] * h)), + (u[2 * p] += r), + (u[2 * p + 1] += o); + if (l > 0) { + var v = Nt(u, -l); + d = Dt(v); + } else d = u; + return jt(e, t, d); + }, + Dt = function (e) { + for (var t, n, r, o, i, a, s, l, c = new Array(e.length / 2), u = 0; u < e.length / 4; u++) { + (t = e[4 * u]), + (n = e[4 * u + 1]), + (r = e[4 * u + 2]), + (o = e[4 * u + 3]), + u < e.length / 4 - 1 + ? ((i = e[4 * (u + 1)]), (a = e[4 * (u + 1) + 1]), (s = e[4 * (u + 1) + 2]), (l = e[4 * (u + 1) + 3])) + : ((i = e[0]), (a = e[1]), (s = e[2]), (l = e[3])); + var d = Rt(t, n, r, o, i, a, s, l, !0); + (c[2 * u] = d[0]), (c[2 * u + 1] = d[1]); + } + return c; + }, + Nt = function (e, t) { + for (var n, r, o, i, a = new Array(2 * e.length), s = 0; s < e.length / 2; s++) { + (n = e[2 * s]), + (r = e[2 * s + 1]), + s < e.length / 2 - 1 ? ((o = e[2 * (s + 1)]), (i = e[2 * (s + 1) + 1])) : ((o = e[0]), (i = e[1])); + var l = i - r, + c = -(o - n), + u = Math.sqrt(l * l + c * c), + d = l / u, + f = c / u; + (a[4 * s] = n + d * t), (a[4 * s + 1] = r + f * t), (a[4 * s + 2] = o + d * t), (a[4 * s + 3] = i + f * t); + } + return a; + }, + Mt = function (e, t, n, r, o, i, a) { + return (e -= o), (t -= i), (e /= n / 2 + a) * e + (t /= r / 2 + a) * t <= 1; + }, + Ot = function (e, t, n, r, o, i, a) { + var s = [n - e, r - t], + l = [e - o, t - i], + c = s[0] * s[0] + s[1] * s[1], + u = 2 * (l[0] * s[0] + l[1] * s[1]), + d = u * u - 4 * c * (l[0] * l[0] + l[1] * l[1] - a * a); + if (d < 0) return []; + var f = (-u + Math.sqrt(d)) / (2 * c), + h = (-u - Math.sqrt(d)) / (2 * c), + p = Math.min(f, h), + v = Math.max(f, h), + g = []; + if ((p >= 0 && p <= 1 && g.push(p), v >= 0 && v <= 1 && g.push(v), 0 === g.length)) return []; + var m = g[0] * s[0] + e, + y = g[0] * s[1] + t; + return g.length > 1 ? (g[0] == g[1] ? [m, y] : [m, y, g[1] * s[0] + e, g[1] * s[1] + t]) : [m, y]; + }, + At = function (e, t, n) { + return (t <= e && e <= n) || (n <= e && e <= t) ? e : (e <= t && t <= n) || (n <= t && t <= e) ? t : n; + }, + Rt = function (e, t, n, r, o, i, a, s, l) { + var c = e - o, + u = n - e, + d = a - o, + f = t - i, + h = r - t, + p = s - i, + v = d * f - p * c, + g = u * f - h * c, + m = p * u - d * h; + if (0 !== m) { + var y = v / m, + b = g / m, + x = -0.001; + return (x <= y && y <= 1.001 && x <= b && b <= 1.001) || l ? [e + y * u, t + y * h] : []; + } + return 0 === v || 0 === g + ? At(e, n, a) === a + ? [a, s] + : At(e, n, o) === o + ? [o, i] + : At(o, a, n) === n + ? [n, r] + : [] + : []; + }, + Lt = function (e, t, n, r, o, i, a, s) { + var l, + c, + u, + d, + f, + h, + p = [], + v = new Array(n.length), + g = !0; + if ((null == i && (g = !1), g)) { + for (var m = 0; m < v.length / 2; m++) (v[2 * m] = n[2 * m] * i + r), (v[2 * m + 1] = n[2 * m + 1] * a + o); + if (s > 0) { + var y = Nt(v, -s); + c = Dt(y); + } else c = v; + } else c = n; + for (var b = 0; b < c.length / 2; b++) + (u = c[2 * b]), + (d = c[2 * b + 1]), + b < c.length / 2 - 1 ? ((f = c[2 * (b + 1)]), (h = c[2 * (b + 1) + 1])) : ((f = c[0]), (h = c[1])), + 0 !== (l = Rt(e, t, r, o, u, d, f, h)).length && p.push(l[0], l[1]); + return p; + }, + It = function (e, t, n) { + var r = [e[0] - t[0], e[1] - t[1]], + o = Math.sqrt(r[0] * r[0] + r[1] * r[1]), + i = (o - n) / o; + return i < 0 && (i = 1e-5), [t[0] + i * r[0], t[1] + i * r[1]]; + }, + Bt = function (e, t) { + var n = zt(e, t); + return (n = Ft(n)); + }, + Ft = function (e) { + for (var t, n, r = e.length / 2, o = 1 / 0, i = 1 / 0, a = -1 / 0, s = -1 / 0, l = 0; l < r; l++) + (t = e[2 * l]), + (n = e[2 * l + 1]), + (o = Math.min(o, t)), + (a = Math.max(a, t)), + (i = Math.min(i, n)), + (s = Math.max(s, n)); + for (var c = 2 / (a - o), u = 2 / (s - i), d = 0; d < r; d++) + (t = e[2 * d] = e[2 * d] * c), + (n = e[2 * d + 1] = e[2 * d + 1] * u), + (o = Math.min(o, t)), + (a = Math.max(a, t)), + (i = Math.min(i, n)), + (s = Math.max(s, n)); + if (i < -1) for (var f = 0; f < r; f++) n = e[2 * f + 1] = e[2 * f + 1] + (-1 - i); + return e; + }, + zt = function (e, t) { + var n = (1 / e) * 2 * Math.PI, + r = e % 2 == 0 ? Math.PI / 2 + n / 2 : Math.PI / 2; + r += t; + for (var o, i = new Array(2 * e), a = 0; a < e; a++) + (o = a * n + r), (i[2 * a] = Math.cos(o)), (i[2 * a + 1] = Math.sin(-o)); + return i; + }, + Vt = function (e, t) { + return Math.min(e / 4, t / 4, 8); + }, + Gt = function (e, t) { + return Math.min(e / 10, t / 10, 8); + }, + Ht = function (e, t) { + return { heightOffset: Math.min(15, 0.05 * t), widthOffset: Math.min(100, 0.25 * e), ctrlPtOffsetPct: 0.05 }; + }, + Wt = Oe({ + dampingFactor: 0.8, + precision: 1e-6, + iterations: 200, + weight: function (e) { + return 1; + }, + }), + Ut = { + pageRank: function (e) { + for ( + var t = Wt(e), + n = t.dampingFactor, + r = t.precision, + o = t.iterations, + i = t.weight, + a = this._private.cy, + s = this.byGroup(), + l = s.nodes, + c = s.edges, + u = l.length, + d = u * u, + f = c.length, + h = new Array(d), + p = new Array(u), + v = (1 - n) / u, + g = 0; + g < u; + g++ + ) { + for (var m = 0; m < u; m++) { + h[g * u + m] = 0; + } + p[g] = 0; + } + for (var y = 0; y < f; y++) { + var b = c[y], + x = b.data('source'), + w = b.data('target'); + if (x !== w) { + var E = l.indexOfId(x), + k = l.indexOfId(w), + _ = i(b); + (h[k * u + E] += _), (p[E] += _); + } + } + for (var S = 1 / u + v, P = 0; P < u; P++) + if (0 === p[P]) + for (var C = 0; C < u; C++) { + h[C * u + P] = S; + } + else + for (var j = 0; j < u; j++) { + var T = j * u + P; + h[T] = h[T] / p[P] + v; + } + for (var D, N = new Array(u), M = new Array(u), O = 0; O < u; O++) N[O] = 1; + for (var A = 0; A < o; A++) { + for (var R = 0; R < u; R++) M[R] = 0; + for (var L = 0; L < u; L++) + for (var I = 0; I < u; I++) { + var B = L * u + I; + M[L] += h[B] * N[I]; + } + dt(M), (D = N), (N = M), (M = D); + for (var F = 0, z = 0; z < u; z++) { + var V = D[z] - N[z]; + F += V * V; + } + if (F < r) break; + } + return { + rank: function (e) { + return (e = a.collection(e)[0]), N[l.indexOf(e)]; + }, + }; + }, + }, + qt = Oe({ + root: null, + weight: function (e) { + return 1; + }, + directed: !1, + alpha: 0, + }), + Yt = { + degreeCentralityNormalized: function (e) { + e = qt(e); + var t = this.cy(), + n = this.nodes(), + r = n.length; + if (e.directed) { + for (var o = {}, i = {}, a = 0, s = 0, l = 0; l < r; l++) { + var c = n[l], + u = c.id(); + e.root = c; + var d = this.degreeCentrality(e); + a < d.indegree && (a = d.indegree), + s < d.outdegree && (s = d.outdegree), + (o[u] = d.indegree), + (i[u] = d.outdegree); + } + return { + indegree: function (e) { + return 0 == a ? 0 : (j(e) && (e = t.filter(e)), o[e.id()] / a); + }, + outdegree: function (e) { + return 0 === s ? 0 : (j(e) && (e = t.filter(e)), i[e.id()] / s); + }, + }; + } + for (var f = {}, h = 0, p = 0; p < r; p++) { + var v = n[p]; + e.root = v; + var g = this.degreeCentrality(e); + h < g.degree && (h = g.degree), (f[v.id()] = g.degree); + } + return { + degree: function (e) { + return 0 === h ? 0 : (j(e) && (e = t.filter(e)), f[e.id()] / h); + }, + }; + }, + degreeCentrality: function (e) { + e = qt(e); + var t = this.cy(), + n = this, + r = e, + o = r.root, + i = r.weight, + a = r.directed, + s = r.alpha; + if (((o = t.collection(o)[0]), a)) { + for ( + var l = o.connectedEdges(), + c = l.filter(function (e) { + return e.target().same(o) && n.has(e); + }), + u = l.filter(function (e) { + return e.source().same(o) && n.has(e); + }), + d = c.length, + f = u.length, + h = 0, + p = 0, + v = 0; + v < c.length; + v++ + ) + h += i(c[v]); + for (var g = 0; g < u.length; g++) p += i(u[g]); + return { indegree: Math.pow(d, 1 - s) * Math.pow(h, s), outdegree: Math.pow(f, 1 - s) * Math.pow(p, s) }; + } + for (var m = o.connectedEdges().intersection(n), y = m.length, b = 0, x = 0; x < m.length; x++) + b += i(m[x]); + return { degree: Math.pow(y, 1 - s) * Math.pow(b, s) }; + }, + }; + (Yt.dc = Yt.degreeCentrality), (Yt.dcn = Yt.degreeCentralityNormalised = Yt.degreeCentralityNormalized); + var Xt = Oe({ + harmonic: !0, + weight: function () { + return 1; + }, + directed: !1, + root: null, + }), + $t = { + closenessCentralityNormalized: function (e) { + for ( + var t = Xt(e), + n = t.harmonic, + r = t.weight, + o = t.directed, + i = this.cy(), + a = {}, + s = 0, + l = this.nodes(), + c = this.floydWarshall({ weight: r, directed: o }), + u = 0; + u < l.length; + u++ + ) { + for (var d = 0, f = l[u], h = 0; h < l.length; h++) + if (u !== h) { + var p = c.distance(f, l[h]); + d += n ? 1 / p : p; + } + n || (d = 1 / d), s < d && (s = d), (a[f.id()] = d); + } + return { + closeness: function (e) { + return 0 == s ? 0 : ((e = j(e) ? i.filter(e)[0].id() : e.id()), a[e] / s); + }, + }; + }, + closenessCentrality: function (e) { + var t = Xt(e), + n = t.root, + r = t.weight, + o = t.directed, + i = t.harmonic; + n = this.filter(n)[0]; + for ( + var a = this.dijkstra({ root: n, weight: r, directed: o }), s = 0, l = this.nodes(), c = 0; + c < l.length; + c++ + ) { + var u = l[c]; + if (!u.same(n)) { + var d = a.distanceTo(u); + s += i ? 1 / d : d; + } + } + return i ? s : 1 / s; + }, + }; + ($t.cc = $t.closenessCentrality), ($t.ccn = $t.closenessCentralityNormalised = $t.closenessCentralityNormalized); + var Kt = Oe({ weight: null, directed: !1 }), + Zt = { + betweennessCentrality: function (e) { + for ( + var t = Kt(e), + n = t.directed, + r = t.weight, + o = null != r, + i = this.cy(), + a = this.nodes(), + s = {}, + l = {}, + c = 0, + d = function (e, t) { + (l[e] = t), t > c && (c = t); + }, + f = function (e) { + return l[e]; + }, + h = 0; + h < a.length; + h++ + ) { + var p = a[h], + v = p.id(); + (s[v] = n ? p.outgoers().nodes() : p.openNeighborhood().nodes()), d(v, 0); + } + for ( + var g = function (e) { + for ( + var t = a[e].id(), + n = [], + l = {}, + c = {}, + h = {}, + p = new u.default(function (e, t) { + return h[e] - h[t]; + }), + v = 0; + v < a.length; + v++ + ) { + var g = a[v].id(); + (l[g] = []), (c[g] = 0), (h[g] = 1 / 0); + } + for (c[t] = 1, h[t] = 0, p.push(t); !p.empty(); ) { + var m = p.pop(); + if ((n.push(m), o)) + for (var y = 0; y < s[m].length; y++) { + var b = s[m][y], + x = i.getElementById(m), + w = void 0; + w = x.edgesTo(b).length > 0 ? x.edgesTo(b)[0] : b.edgesTo(x)[0]; + var E = r(w); + (b = b.id()), + h[b] > h[m] + E && + ((h[b] = h[m] + E), + p.nodes.indexOf(b) < 0 ? p.push(b) : p.updateItem(b), + (c[b] = 0), + (l[b] = [])), + h[b] == h[m] + E && ((c[b] = c[b] + c[m]), l[b].push(m)); + } + else + for (var k = 0; k < s[m].length; k++) { + var _ = s[m][k].id(); + h[_] == 1 / 0 && (p.push(_), (h[_] = h[m] + 1)), + h[_] == h[m] + 1 && ((c[_] = c[_] + c[m]), l[_].push(m)); + } + } + for (var S = {}, P = 0; P < a.length; P++) S[a[P].id()] = 0; + for (; n.length > 0; ) { + for (var C = n.pop(), j = 0; j < l[C].length; j++) { + var T = l[C][j]; + S[T] = S[T] + (c[T] / c[C]) * (1 + S[C]); + } + C != a[e].id() && d(C, f(C) + S[C]); + } + }, + m = 0; + m < a.length; + m++ + ) + g(m); + var y = { + betweenness: function (e) { + var t = i.collection(e).id(); + return f(t); + }, + betweennessNormalized: function (e) { + if (0 == c) return 0; + var t = i.collection(e).id(); + return f(t) / c; + }, + }; + return (y.betweennessNormalised = y.betweennessNormalized), y; + }, + }; + Zt.bc = Zt.betweennessCentrality; + var Qt = Oe({ + expandFactor: 2, + inflateFactor: 2, + multFactor: 1, + maxIterations: 20, + attributes: [ + function (e) { + return 1; + }, + ], + }), + Jt = function (e, t) { + for (var n = 0, r = 0; r < t.length; r++) n += t[r](e); + return n; + }, + en = function (e, t) { + for (var n, r = 0; r < t; r++) { + n = 0; + for (var o = 0; o < t; o++) n += e[o * t + r]; + for (var i = 0; i < t; i++) e[i * t + r] = e[i * t + r] / n; + } + }, + tn = function (e, t, n) { + for (var r = new Array(n * n), o = 0; o < n; o++) { + for (var i = 0; i < n; i++) r[o * n + i] = 0; + for (var a = 0; a < n; a++) for (var s = 0; s < n; s++) r[o * n + s] += e[o * n + a] * t[a * n + s]; + } + return r; + }, + nn = function (e, t, n) { + for (var r = e.slice(0), o = 1; o < n; o++) e = tn(e, r, t); + return e; + }, + rn = function (e, t, n) { + for (var r = new Array(t * t), o = 0; o < t * t; o++) r[o] = Math.pow(e[o], n); + return en(r, t), r; + }, + on = function (e, t, n, r) { + for (var o = 0; o < n; o++) { + if ( + Math.round(e[o] * Math.pow(10, r)) / Math.pow(10, r) !== + Math.round(t[o] * Math.pow(10, r)) / Math.pow(10, r) + ) + return !1; + } + return !0; + }, + an = function (e, t) { + for (var n = 0; n < e.length; n++) if (!t[n] || e[n].id() !== t[n].id()) return !1; + return !0; + }, + sn = function (e) { + for ( + var t = this.nodes(), + n = this.edges(), + r = this.cy(), + o = (function (e) { + return Qt(e); + })(e), + i = {}, + a = 0; + a < t.length; + a++ + ) + i[t[a].id()] = a; + for (var s, l = t.length, c = l * l, u = new Array(c), d = 0; d < c; d++) u[d] = 0; + for (var f = 0; f < n.length; f++) { + var h = n[f], + p = i[h.source().id()], + v = i[h.target().id()], + g = Jt(h, o.attributes); + (u[p * l + v] += g), (u[v * l + p] += g); + } + !(function (e, t, n) { + for (var r = 0; r < t; r++) e[r * t + r] = n; + })(u, l, o.multFactor), + en(u, l); + for (var m = !0, y = 0; m && y < o.maxIterations; ) + (m = !1), (s = nn(u, l, o.expandFactor)), (u = rn(s, l, o.inflateFactor)), on(u, s, c, 4) || (m = !0), y++; + var b = (function (e, t, n, r) { + for (var o = [], i = 0; i < t; i++) { + for (var a = [], s = 0; s < t; s++) Math.round(1e3 * e[i * t + s]) / 1e3 > 0 && a.push(n[s]); + 0 !== a.length && o.push(r.collection(a)); + } + return o; + })(u, l, t, r); + return ( + (b = (function (e) { + for (var t = 0; t < e.length; t++) + for (var n = 0; n < e.length; n++) t != n && an(e[t], e[n]) && e.splice(n, 1); + return e; + })(b)), + b + ); + }, + ln = { markovClustering: sn, mcl: sn }, + cn = function (e) { + return e; + }, + un = function (e, t) { + return Math.abs(t - e); + }, + dn = function (e, t, n) { + return e + un(t, n); + }, + fn = function (e, t, n) { + return e + Math.pow(n - t, 2); + }, + hn = function (e) { + return Math.sqrt(e); + }, + pn = function (e, t, n) { + return Math.max(e, un(t, n)); + }, + vn = function (e, t, n, r, o) { + for (var i = arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : cn, a = r, s = 0; s < e; s++) + a = o(a, t(s), n(s)); + return i(a); + }, + gn = { + euclidean: function (e, t, n) { + return e >= 2 ? vn(e, t, n, 0, fn, hn) : vn(e, t, n, 0, dn); + }, + squaredEuclidean: function (e, t, n) { + return vn(e, t, n, 0, fn); + }, + manhattan: function (e, t, n) { + return vn(e, t, n, 0, dn); + }, + max: function (e, t, n) { + return vn(e, t, n, -1 / 0, pn); + }, + }; + function mn(e, t, n, r, o, i) { + var a; + return (a = T(e) ? e : gn[e] || gn.euclidean), 0 === t && T(e) ? a(o, i) : a(t, n, r, o, i); + } + (gn['squared-euclidean'] = gn.squaredEuclidean), (gn.squaredeuclidean = gn.squaredEuclidean); + var yn = Oe({ + k: 2, + m: 2, + sensitivityThreshold: 1e-4, + distance: 'euclidean', + maxIterations: 10, + attributes: [], + testMode: !1, + testCentroids: null, + }), + bn = function (e) { + return yn(e); + }, + xn = function (e, t, n, r, o) { + var i = + 'kMedoids' !== o + ? function (e) { + return n[e]; + } + : function (e) { + return r[e](n); + }, + a = n, + s = t; + return mn( + e, + r.length, + i, + function (e) { + return r[e](t); + }, + a, + s, + ); + }, + wn = function (e, t, n) { + for (var r = n.length, o = new Array(r), i = new Array(r), a = new Array(t), s = null, l = 0; l < r; l++) + (o[l] = e.min(n[l]).value), (i[l] = e.max(n[l]).value); + for (var c = 0; c < t; c++) { + s = []; + for (var u = 0; u < r; u++) s[u] = Math.random() * (i[u] - o[u]) + o[u]; + a[c] = s; + } + return a; + }, + En = function (e, t, n, r, o) { + for (var i = 1 / 0, a = 0, s = 0; s < t.length; s++) { + var l = xn(n, e, t[s], r, o); + l < i && ((i = l), (a = s)); + } + return a; + }, + kn = function (e, t, n) { + for (var r = [], o = null, i = 0; i < t.length; i++) n[(o = t[i]).id()] === e && r.push(o); + return r; + }, + _n = function (e, t, n) { + for (var r = 0; r < e.length; r++) + for (var o = 0; o < e[r].length; o++) { + if (Math.abs(e[r][o] - t[r][o]) > n) return !1; + } + return !0; + }, + Sn = function (e, t, n) { + for (var r = 0; r < n; r++) if (e === t[r]) return !0; + return !1; + }, + Pn = function (e, t) { + var n = new Array(t); + if (e.length < 50) + for (var r = 0; r < t; r++) { + for (var o = e[Math.floor(Math.random() * e.length)]; Sn(o, n, r); ) + o = e[Math.floor(Math.random() * e.length)]; + n[r] = o; + } + else for (var i = 0; i < t; i++) n[i] = e[Math.floor(Math.random() * e.length)]; + return n; + }, + Cn = function (e, t, n) { + for (var r = 0, o = 0; o < t.length; o++) r += xn('manhattan', t[o], e, n, 'kMedoids'); + return r; + }, + jn = function (e, t, n, r, o) { + for (var i, a, s = 0; s < t.length; s++) for (var l = 0; l < e.length; l++) r[s][l] = Math.pow(n[s][l], o.m); + for (var c = 0; c < e.length; c++) + for (var u = 0; u < o.attributes.length; u++) { + (i = 0), (a = 0); + for (var d = 0; d < t.length; d++) (i += r[d][c] * o.attributes[u](t[d])), (a += r[d][c]); + e[c][u] = i / a; + } + }, + Tn = function (e, t, n, r, o) { + for (var i = 0; i < e.length; i++) t[i] = e[i].slice(); + for (var a, s, l, c = 2 / (o.m - 1), u = 0; u < n.length; u++) + for (var d = 0; d < r.length; d++) { + a = 0; + for (var f = 0; f < n.length; f++) + (s = xn(o.distance, r[d], n[u], o.attributes, 'cmeans')), + (l = xn(o.distance, r[d], n[f], o.attributes, 'cmeans')), + (a += Math.pow(s / l, c)); + e[d][u] = 1 / a; + } + }, + Dn = function (e) { + var t, + n, + r, + o, + i, + a = this.cy(), + s = this.nodes(), + l = bn(e); + o = new Array(s.length); + for (var c = 0; c < s.length; c++) o[c] = new Array(l.k); + r = new Array(s.length); + for (var u = 0; u < s.length; u++) r[u] = new Array(l.k); + for (var d = 0; d < s.length; d++) { + for (var f = 0, h = 0; h < l.k; h++) (r[d][h] = Math.random()), (f += r[d][h]); + for (var p = 0; p < l.k; p++) r[d][p] = r[d][p] / f; + } + n = new Array(l.k); + for (var v = 0; v < l.k; v++) n[v] = new Array(l.attributes.length); + i = new Array(s.length); + for (var g = 0; g < s.length; g++) i[g] = new Array(l.k); + for (var m = !0, y = 0; m && y < l.maxIterations; ) + (m = !1), jn(n, s, r, i, l), Tn(r, o, n, s, l), _n(r, o, l.sensitivityThreshold) || (m = !0), y++; + return ( + (t = (function (e, t, n, r) { + for (var o, i, a = new Array(n.k), s = 0; s < a.length; s++) a[s] = []; + for (var l = 0; l < t.length; l++) { + (o = -1 / 0), (i = -1); + for (var c = 0; c < t[0].length; c++) t[l][c] > o && ((o = t[l][c]), (i = c)); + a[i].push(e[l]); + } + for (var u = 0; u < a.length; u++) a[u] = r.collection(a[u]); + return a; + })(s, r, l, a)), + { clusters: t, degreeOfMembership: r } + ); + }, + Nn = { + kMeans: function (e) { + var t, + n = this.cy(), + r = this.nodes(), + o = null, + i = bn(e), + a = new Array(i.k), + s = {}; + i.testMode + ? 'number' == typeof i.testCentroids + ? (i.testCentroids, (t = wn(r, i.k, i.attributes))) + : (t = 'object' === p(i.testCentroids) ? i.testCentroids : wn(r, i.k, i.attributes)) + : (t = wn(r, i.k, i.attributes)); + for (var l, c, u, d = !0, f = 0; d && f < i.maxIterations; ) { + for (var h = 0; h < r.length; h++) s[(o = r[h]).id()] = En(o, t, i.distance, i.attributes, 'kMeans'); + d = !1; + for (var v = 0; v < i.k; v++) { + var g = kn(v, r, s); + if (0 !== g.length) { + for (var m = i.attributes.length, y = t[v], b = new Array(m), x = new Array(m), w = 0; w < m; w++) { + x[w] = 0; + for (var E = 0; E < g.length; E++) (o = g[E]), (x[w] += i.attributes[w](o)); + (b[w] = x[w] / g.length), + (l = b[w]), + (c = y[w]), + (u = i.sensitivityThreshold), + Math.abs(c - l) <= u || (d = !0); + } + (t[v] = b), (a[v] = n.collection(g)); + } + } + f++; + } + return a; + }, + kMedoids: function (e) { + var t, + n, + r = this.cy(), + o = this.nodes(), + i = null, + a = bn(e), + s = new Array(a.k), + l = {}, + c = new Array(a.k); + a.testMode + ? 'number' == typeof a.testCentroids || + (t = 'object' === p(a.testCentroids) ? a.testCentroids : Pn(o, a.k)) + : (t = Pn(o, a.k)); + for (var u = !0, d = 0; u && d < a.maxIterations; ) { + for (var f = 0; f < o.length; f++) l[(i = o[f]).id()] = En(i, t, a.distance, a.attributes, 'kMedoids'); + u = !1; + for (var h = 0; h < t.length; h++) { + var v = kn(h, o, l); + if (0 !== v.length) { + c[h] = Cn(t[h], v, a.attributes); + for (var g = 0; g < v.length; g++) + (n = Cn(v[g], v, a.attributes)) < c[h] && ((c[h] = n), (t[h] = v[g]), (u = !0)); + s[h] = r.collection(v); + } + } + d++; + } + return s; + }, + fuzzyCMeans: Dn, + fcm: Dn, + }, + Mn = Oe({ + distance: 'euclidean', + linkage: 'min', + mode: 'threshold', + threshold: 1 / 0, + addDendrogram: !1, + dendrogramDepth: 0, + attributes: [], + }), + On = { single: 'min', complete: 'max' }, + An = function (e, t, n, r, o) { + for ( + var i, + a = 0, + s = 1 / 0, + l = o.attributes, + c = function (e, t) { + return mn( + o.distance, + l.length, + function (t) { + return l[t](e); + }, + function (e) { + return l[e](t); + }, + e, + t, + ); + }, + u = 0; + u < e.length; + u++ + ) { + var d = e[u].key, + f = n[d][r[d]]; + f < s && ((a = d), (s = f)); + } + if (('threshold' === o.mode && s >= o.threshold) || ('dendrogram' === o.mode && 1 === e.length)) return !1; + var h, + p = t[a], + v = t[r[a]]; + (h = + 'dendrogram' === o.mode + ? { left: p, right: v, key: p.key } + : { value: p.value.concat(v.value), key: p.key }), + (e[p.index] = h), + e.splice(v.index, 1), + (t[p.key] = h); + for (var g = 0; g < e.length; g++) { + var m = e[g]; + p.key === m.key + ? (i = 1 / 0) + : 'min' === o.linkage + ? ((i = n[p.key][m.key]), n[p.key][m.key] > n[v.key][m.key] && (i = n[v.key][m.key])) + : 'max' === o.linkage + ? ((i = n[p.key][m.key]), n[p.key][m.key] < n[v.key][m.key] && (i = n[v.key][m.key])) + : (i = + 'mean' === o.linkage + ? (n[p.key][m.key] * p.size + n[v.key][m.key] * v.size) / (p.size + v.size) + : 'dendrogram' === o.mode + ? c(m.value, p.value) + : c(m.value[0], p.value[0])), + (n[p.key][m.key] = n[m.key][p.key] = i); + } + for (var y = 0; y < e.length; y++) { + var b = e[y].key; + if (r[b] === p.key || r[b] === v.key) { + for (var x = b, w = 0; w < e.length; w++) { + var E = e[w].key; + n[b][E] < n[b][x] && (x = E); + } + r[b] = x; + } + e[y].index = y; + } + return (p.key = v.key = p.index = v.index = null), !0; + }, + Rn = function e(t, n, r) { + t && (t.value ? n.push(t.value) : (t.left && e(t.left, n), t.right && e(t.right, n))); + }, + Ln = function e(t, n) { + if (!t) return ''; + if (t.left && t.right) { + var r = e(t.left, n), + o = e(t.right, n), + i = n.add({ group: 'nodes', data: { id: r + ',' + o } }); + return ( + n.add({ group: 'edges', data: { source: r, target: i.id() } }), + n.add({ group: 'edges', data: { source: o, target: i.id() } }), + i.id() + ); + } + return t.value ? t.value.id() : void 0; + }, + In = function e(t, n, r) { + if (!t) return []; + var o = [], + i = [], + a = []; + return 0 === n + ? (t.left && Rn(t.left, o), t.right && Rn(t.right, i), (a = o.concat(i)), [r.collection(a)]) + : 1 === n + ? t.value + ? [r.collection(t.value)] + : (t.left && Rn(t.left, o), t.right && Rn(t.right, i), [r.collection(o), r.collection(i)]) + : t.value + ? [r.collection(t.value)] + : (t.left && (o = e(t.left, n - 1, r)), t.right && (i = e(t.right, n - 1, r)), o.concat(i)); + }, + Bn = function (e) { + for ( + var t = this.cy(), + n = this.nodes(), + r = (function (e) { + var t = Mn(e), + n = On[t.linkage]; + return null != n && (t.linkage = n), t; + })(e), + o = r.attributes, + i = function (e, t) { + return mn( + r.distance, + o.length, + function (t) { + return o[t](e); + }, + function (e) { + return o[e](t); + }, + e, + t, + ); + }, + a = [], + s = [], + l = [], + c = [], + u = 0; + u < n.length; + u++ + ) { + var d = { value: 'dendrogram' === r.mode ? n[u] : [n[u]], key: u, index: u }; + (a[u] = d), (c[u] = d), (s[u] = []), (l[u] = 0); + } + for (var f = 0; f < a.length; f++) + for (var h = 0; h <= f; h++) { + var p = void 0; + (p = + 'dendrogram' === r.mode + ? f === h + ? 1 / 0 + : i(a[f].value, a[h].value) + : f === h + ? 1 / 0 + : i(a[f].value[0], a[h].value[0])), + (s[f][h] = p), + (s[h][f] = p), + p < s[f][l[f]] && (l[f] = h); + } + for (var v, g = An(a, c, s, l, r); g; ) g = An(a, c, s, l, r); + return ( + 'dendrogram' === r.mode + ? ((v = In(a[0], r.dendrogramDepth, t)), r.addDendrogram && Ln(a[0], t)) + : ((v = new Array(a.length)), + a.forEach(function (e, n) { + (e.key = e.index = null), (v[n] = t.collection(e.value)); + })), + v + ); + }, + Fn = { hierarchicalClustering: Bn, hca: Bn }, + zn = Oe({ + distance: 'euclidean', + preference: 'median', + damping: 0.8, + maxIterations: 1e3, + minIterations: 100, + attributes: [], + }), + Vn = function (e, t, n, r) { + var o = function (e, t) { + return r[t](e); + }; + return -mn( + e, + r.length, + function (e) { + return o(t, e); + }, + function (e) { + return o(n, e); + }, + t, + n, + ); + }, + Gn = function (e, t) { + var n = null; + return ( + (n = + 'median' === t + ? (function (e) { + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, + n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : e.length, + r = !(arguments.length > 4 && void 0 !== arguments[4]) || arguments[4], + o = !(arguments.length > 5 && void 0 !== arguments[5]) || arguments[5]; + arguments.length > 3 && void 0 !== arguments[3] && !arguments[3] + ? (n < e.length && e.splice(n, e.length - n), t > 0 && e.splice(0, t)) + : (e = e.slice(t, n)); + for (var i = 0, a = e.length - 1; a >= 0; a--) { + var s = e[a]; + o ? isFinite(s) || ((e[a] = -1 / 0), i++) : e.splice(a, 1); + } + r && + e.sort(function (e, t) { + return e - t; + }); + var l = e.length, + c = Math.floor(l / 2); + return l % 2 != 0 ? e[c + 1 + i] : (e[c - 1 + i] + e[c + i]) / 2; + })(e) + : 'mean' === t + ? (function (e) { + for ( + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, + n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : e.length, + r = 0, + o = 0, + i = t; + i < n; + i++ + ) { + var a = e[i]; + isFinite(a) && ((r += a), o++); + } + return r / o; + })(e) + : 'min' === t + ? (function (e) { + for ( + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, + n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : e.length, + r = 1 / 0, + o = t; + o < n; + o++ + ) { + var i = e[o]; + isFinite(i) && (r = Math.min(i, r)); + } + return r; + })(e) + : 'max' === t + ? (function (e) { + for ( + var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, + n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : e.length, + r = -1 / 0, + o = t; + o < n; + o++ + ) { + var i = e[o]; + isFinite(i) && (r = Math.max(i, r)); + } + return r; + })(e) + : t), + n + ); + }, + Hn = function (e, t, n) { + for (var r = [], o = 0; o < e; o++) { + for (var i = -1, a = -1 / 0, s = 0; s < n.length; s++) { + var l = n[s]; + t[o * e + l] > a && ((i = l), (a = t[o * e + l])); + } + i > 0 && r.push(i); + } + for (var c = 0; c < n.length; c++) r[n[c]] = n[c]; + return r; + }, + Wn = function (e) { + for ( + var t, + n, + r, + o, + i, + a, + s = this.cy(), + l = this.nodes(), + c = (function (e) { + var t = e.damping, + n = e.preference; + (0.5 <= t && t < 1) || Pe('Damping must range on [0.5, 1). Got: '.concat(t)); + var r = ['median', 'mean', 'min', 'max']; + return ( + r.some(function (e) { + return e === n; + }) || + M(n) || + Pe( + 'Preference must be one of [' + .concat( + r + .map(function (e) { + return "'".concat(e, "'"); + }) + .join(', '), + '] or a number. Got: ', + ) + .concat(n), + ), + zn(e) + ); + })(e), + u = {}, + d = 0; + d < l.length; + d++ + ) + u[l[d].id()] = d; + (n = (t = l.length) * t), (r = new Array(n)); + for (var f = 0; f < n; f++) r[f] = -1 / 0; + for (var h = 0; h < t; h++) + for (var p = 0; p < t; p++) h !== p && (r[h * t + p] = Vn(c.distance, l[h], l[p], c.attributes)); + o = Gn(r, c.preference); + for (var v = 0; v < t; v++) r[v * t + v] = o; + i = new Array(n); + for (var g = 0; g < n; g++) i[g] = 0; + a = new Array(n); + for (var m = 0; m < n; m++) a[m] = 0; + for (var y = new Array(t), b = new Array(t), x = new Array(t), w = 0; w < t; w++) + (y[w] = 0), (b[w] = 0), (x[w] = 0); + for (var E, k = new Array(t * c.minIterations), _ = 0; _ < k.length; _++) k[_] = 0; + for (E = 0; E < c.maxIterations; E++) { + for (var S = 0; S < t; S++) { + for (var P = -1 / 0, C = -1 / 0, j = -1, T = 0, D = 0; D < t; D++) + (y[D] = i[S * t + D]), + (T = a[S * t + D] + r[S * t + D]) >= P ? ((C = P), (P = T), (j = D)) : T > C && (C = T); + for (var N = 0; N < t; N++) i[S * t + N] = (1 - c.damping) * (r[S * t + N] - P) + c.damping * y[N]; + i[S * t + j] = (1 - c.damping) * (r[S * t + j] - C) + c.damping * y[j]; + } + for (var O = 0; O < t; O++) { + for (var A = 0, R = 0; R < t; R++) (y[R] = a[R * t + O]), (b[R] = Math.max(0, i[R * t + O])), (A += b[R]); + (A -= b[O]), (b[O] = i[O * t + O]), (A += b[O]); + for (var L = 0; L < t; L++) a[L * t + O] = (1 - c.damping) * Math.min(0, A - b[L]) + c.damping * y[L]; + a[O * t + O] = (1 - c.damping) * (A - b[O]) + c.damping * y[O]; + } + for (var I = 0, B = 0; B < t; B++) { + var F = a[B * t + B] + i[B * t + B] > 0 ? 1 : 0; + (k[(E % c.minIterations) * t + B] = F), (I += F); + } + if (I > 0 && (E >= c.minIterations - 1 || E == c.maxIterations - 1)) { + for (var z = 0, V = 0; V < t; V++) { + x[V] = 0; + for (var G = 0; G < c.minIterations; G++) x[V] += k[G * t + V]; + (0 !== x[V] && x[V] !== c.minIterations) || z++; + } + if (z === t) break; + } + } + for ( + var H = (function (e, t, n) { + for (var r = [], o = 0; o < e; o++) t[o * e + o] + n[o * e + o] > 0 && r.push(o); + return r; + })(t, i, a), + W = (function (e, t, n) { + for (var r = Hn(e, t, n), o = 0; o < n.length; o++) { + for (var i = [], a = 0; a < r.length; a++) r[a] === n[o] && i.push(a); + for (var s = -1, l = -1 / 0, c = 0; c < i.length; c++) { + for (var u = 0, d = 0; d < i.length; d++) u += t[i[d] * e + i[c]]; + u > l && ((s = c), (l = u)); + } + n[o] = i[s]; + } + return Hn(e, t, n); + })(t, r, H), + U = {}, + q = 0; + q < H.length; + q++ + ) + U[H[q]] = []; + for (var Y = 0; Y < l.length; Y++) { + var X = W[u[l[Y].id()]]; + null != X && U[X].push(l[Y]); + } + for (var $ = new Array(H.length), K = 0; K < H.length; K++) $[K] = s.collection(U[H[K]]); + return $; + }, + Un = { affinityPropagation: Wn, ap: Wn }, + qn = Oe({ root: void 0, directed: !1 }), + Yn = function () { + var e = this, + t = {}, + n = 0, + r = 0, + o = [], + i = [], + a = {}, + s = function s(l, c, u) { + l === u && (r += 1), (t[c] = { id: n, low: n++, cutVertex: !1 }); + var d, + f, + h, + p, + v = e.getElementById(c).connectedEdges().intersection(e); + 0 === v.size() + ? o.push(e.spawn(e.getElementById(c))) + : v.forEach(function (n) { + (d = n.source().id()), + (f = n.target().id()), + (h = d === c ? f : d) !== u && + ((p = n.id()), + a[p] || ((a[p] = !0), i.push({ x: c, y: h, edge: n })), + h in t + ? (t[c].low = Math.min(t[c].low, t[h].id)) + : (s(l, h, c), + (t[c].low = Math.min(t[c].low, t[h].low)), + t[c].id <= t[h].low && + ((t[c].cutVertex = !0), + (function (n, r) { + for (var a = i.length - 1, s = [], l = e.spawn(); i[a].x != n || i[a].y != r; ) + s.push(i.pop().edge), a--; + s.push(i.pop().edge), + s.forEach(function (n) { + var r = n.connectedNodes().intersection(e); + l.merge(n), + r.forEach(function (n) { + var r = n.id(), + o = n.connectedEdges().intersection(e); + l.merge(n), + t[r].cutVertex + ? l.merge( + o.filter(function (e) { + return e.isLoop(); + }), + ) + : l.merge(o); + }); + }), + o.push(l); + })(c, h)))); + }); + }; + e.forEach(function (e) { + if (e.isNode()) { + var n = e.id(); + n in t || ((r = 0), s(n, n), (t[n].cutVertex = r > 1)); + } + }); + var l = Object.keys(t) + .filter(function (e) { + return t[e].cutVertex; + }) + .map(function (t) { + return e.getElementById(t); + }); + return { cut: e.spawn(l), components: o }; + }, + Xn = function () { + var e = this, + t = {}, + n = 0, + r = [], + o = [], + i = e.spawn(e), + a = function a(s) { + if ( + (o.push(s), + (t[s] = { index: n, low: n++, explored: !1 }), + e + .getElementById(s) + .connectedEdges() + .intersection(e) + .forEach(function (e) { + var n = e.target().id(); + n !== s && (n in t || a(n), t[n].explored || (t[s].low = Math.min(t[s].low, t[n].low))); + }), + t[s].index === t[s].low) + ) { + for (var l = e.spawn(); ; ) { + var c = o.pop(); + if ((l.merge(e.getElementById(c)), (t[c].low = t[s].index), (t[c].explored = !0), c === s)) break; + } + var u = l.edgesWith(l), + d = l.merge(u); + r.push(d), (i = i.difference(d)); + } + }; + return ( + e.forEach(function (e) { + if (e.isNode()) { + var n = e.id(); + n in t || a(n); + } + }), + { cut: i, components: r } + ); + }, + $n = {}; + [ + He, + Ue, + qe, + Xe, + Ke, + Qe, + nt, + Ut, + Yt, + $t, + Zt, + ln, + Nn, + Fn, + Un, + { + hierholzer: function (e) { + if (!N(e)) { + var t = arguments; + e = { root: t[0], directed: t[1] }; + } + var n, + r, + o, + i = qn(e), + a = i.root, + s = i.directed, + l = this, + c = !1; + a && (o = j(a) ? this.filter(a)[0].id() : a[0].id()); + var u = {}, + d = {}; + s + ? l.forEach(function (e) { + var t = e.id(); + if (e.isNode()) { + var o = e.indegree(!0), + i = e.outdegree(!0), + a = o - i, + s = i - o; + 1 == a + ? n + ? (c = !0) + : (n = t) + : 1 == s + ? r + ? (c = !0) + : (r = t) + : (s > 1 || a > 1) && (c = !0), + (u[t] = []), + e.outgoers().forEach(function (e) { + e.isEdge() && u[t].push(e.id()); + }); + } else d[t] = [void 0, e.target().id()]; + }) + : l.forEach(function (e) { + var t = e.id(); + e.isNode() + ? (e.degree(!0) % 2 && (n ? (r ? (c = !0) : (r = t)) : (n = t)), + (u[t] = []), + e.connectedEdges().forEach(function (e) { + return u[t].push(e.id()); + })) + : (d[t] = [e.source().id(), e.target().id()]); + }); + var f = { found: !1, trail: void 0 }; + if (c) return f; + if (r && n) + if (s) { + if (o && r != o) return f; + o = r; + } else { + if (o && r != o && n != o) return f; + o || (o = r); + } + else o || (o = l[0].id()); + var h = function (e) { + for (var t, n, r, o = e, i = [e]; u[o].length; ) + (t = u[o].shift()), + (n = d[t][0]), + o != (r = d[t][1]) + ? ((u[r] = u[r].filter(function (e) { + return e != t; + })), + (o = r)) + : s || + o == n || + ((u[n] = u[n].filter(function (e) { + return e != t; + })), + (o = n)), + i.unshift(t), + i.unshift(o); + return i; + }, + p = [], + v = []; + for (v = h(o); 1 != v.length; ) + 0 == u[v[0]].length + ? (p.unshift(l.getElementById(v.shift())), p.unshift(l.getElementById(v.shift()))) + : (v = h(v.shift()).concat(v)); + for (var g in (p.unshift(l.getElementById(v.shift())), u)) if (u[g].length) return f; + return (f.found = !0), (f.trail = this.spawn(p, !0)), f; + }, + }, + { hopcroftTarjanBiconnected: Yn, htbc: Yn, htb: Yn, hopcroftTarjanBiconnectedComponents: Yn }, + { tarjanStronglyConnected: Xn, tsc: Xn, tscc: Xn, tarjanStronglyConnectedComponents: Xn }, + ].forEach(function (e) { + Q($n, e); + }); + var Kn = function e(t) { + if (!(this instanceof e)) return new e(t); + (this.id = 'Thenable/1.0.7'), + (this.state = 0), + (this.fulfillValue = void 0), + (this.rejectReason = void 0), + (this.onFulfilled = []), + (this.onRejected = []), + (this.proxy = { then: this.then.bind(this) }), + 'function' == typeof t && t.call(this, this.fulfill.bind(this), this.reject.bind(this)); + }; + Kn.prototype = { + fulfill: function (e) { + return Zn(this, 1, 'fulfillValue', e); + }, + reject: function (e) { + return Zn(this, 2, 'rejectReason', e); + }, + then: function (e, t) { + var n = this, + r = new Kn(); + return n.onFulfilled.push(er(e, r, 'fulfill')), n.onRejected.push(er(t, r, 'reject')), Qn(n), r.proxy; + }, + }; + var Zn = function (e, t, n, r) { + return 0 === e.state && ((e.state = t), (e[n] = r), Qn(e)), e; + }, + Qn = function (e) { + 1 === e.state ? Jn(e, 'onFulfilled', e.fulfillValue) : 2 === e.state && Jn(e, 'onRejected', e.rejectReason); + }, + Jn = function (e, t, n) { + if (0 !== e[t].length) { + var r = e[t]; + e[t] = []; + var o = function () { + for (var e = 0; e < r.length; e++) r[e](n); + }; + 'function' == typeof setImmediate ? setImmediate(o) : setTimeout(o, 0); + } + }, + er = function (e, t, n) { + return function (r) { + if ('function' != typeof e) t[n].call(t, r); + else { + var o; + try { + o = e(r); + } catch (i) { + return void t.reject(i); + } + tr(t, o); + } + }; + }, + tr = function e(t, n) { + if (t !== n && t.proxy !== n) { + var r; + if (('object' === p(n) && null !== n) || 'function' == typeof n) + try { + r = n.then; + } catch (i) { + return void t.reject(i); + } + if ('function' != typeof r) t.fulfill(n); + else { + var o = !1; + try { + r.call( + n, + function (r) { + o || ((o = !0), r === n ? t.reject(new TypeError('circular thenable chain')) : e(t, r)); + }, + function (e) { + o || ((o = !0), t.reject(e)); + }, + ); + } catch (i) { + o || t.reject(i); + } + } + } else t.reject(new TypeError('cannot resolve promise with itself')); + }; + (Kn.all = function (e) { + return new Kn(function (t, n) { + for ( + var r = new Array(e.length), + o = 0, + i = function (n, i) { + (r[n] = i), ++o === e.length && t(r); + }, + a = 0; + a < e.length; + a++ + ) + !(function (t) { + var r = e[t]; + null != r && null != r.then + ? r.then( + function (e) { + i(t, e); + }, + function (e) { + n(e); + }, + ) + : i(t, r); + })(a); + }); + }), + (Kn.resolve = function (e) { + return new Kn(function (t, n) { + t(e); + }); + }), + (Kn.reject = function (e) { + return new Kn(function (t, n) { + n(e); + }); + }); + var nr = 'undefined' != typeof Promise ? Promise : Kn, + rr = function (e, t, n) { + var r = I(e), + o = !r, + i = (this._private = Q({ duration: 1e3 }, t, n)); + if ( + ((i.target = e), + (i.style = i.style || i.css), + (i.started = !1), + (i.playing = !1), + (i.hooked = !1), + (i.applying = !1), + (i.progress = 0), + (i.completes = []), + (i.frames = []), + i.complete && T(i.complete) && i.completes.push(i.complete), + o) + ) { + var a = e.position(); + (i.startPosition = i.startPosition || { x: a.x, y: a.y }), + (i.startStyle = i.startStyle || e.cy().style().getAnimationStartStyle(e, i.style)); + } + if (r) { + var s = e.pan(); + (i.startPan = { x: s.x, y: s.y }), (i.startZoom = e.zoom()); + } + (this.length = 1), (this[0] = this); + }, + or = rr.prototype; + Q(or, { + instanceString: function () { + return 'animation'; + }, + hook: function () { + var e = this._private; + if (!e.hooked) { + var t = e.target._private.animation; + (e.queue ? t.queue : t.current).push(this), + A(e.target) && e.target.cy().addToAnimationPool(e.target), + (e.hooked = !0); + } + return this; + }, + play: function () { + var e = this._private; + return ( + 1 === e.progress && (e.progress = 0), + (e.playing = !0), + (e.started = !1), + (e.stopped = !1), + this.hook(), + this + ); + }, + playing: function () { + return this._private.playing; + }, + apply: function () { + var e = this._private; + return (e.applying = !0), (e.started = !1), (e.stopped = !1), this.hook(), this; + }, + applying: function () { + return this._private.applying; + }, + pause: function () { + var e = this._private; + return (e.playing = !1), (e.started = !1), this; + }, + stop: function () { + var e = this._private; + return (e.playing = !1), (e.started = !1), (e.stopped = !0), this; + }, + rewind: function () { + return this.progress(0); + }, + fastforward: function () { + return this.progress(1); + }, + time: function (e) { + var t = this._private; + return void 0 === e ? t.progress * t.duration : this.progress(e / t.duration); + }, + progress: function (e) { + var t = this._private, + n = t.playing; + return void 0 === e + ? t.progress + : (n && this.pause(), (t.progress = e), (t.started = !1), n && this.play(), this); + }, + completed: function () { + return 1 === this._private.progress; + }, + reverse: function () { + var e = this._private, + t = e.playing; + t && this.pause(), (e.progress = 1 - e.progress), (e.started = !1); + var n = function (t, n) { + var r = e[t]; + null != r && ((e[t] = e[n]), (e[n] = r)); + }; + if ((n('zoom', 'startZoom'), n('pan', 'startPan'), n('position', 'startPosition'), e.style)) + for (var r = 0; r < e.style.length; r++) { + var o = e.style[r], + i = o.name, + a = e.startStyle[i]; + (e.startStyle[i] = o), (e.style[r] = a); + } + return t && this.play(), this; + }, + promise: function (e) { + var t, + n = this._private; + if ('frame' === e) t = n.frames; + else t = n.completes; + return new nr(function (e, n) { + t.push(function () { + e(); + }); + }); + }, + }), + (or.complete = or.completed), + (or.run = or.play), + (or.running = or.playing); + var ir = { + animated: function () { + return function () { + var e = this, + t = void 0 !== e.length ? e : [e]; + if (!(this._private.cy || this).styleEnabled()) return !1; + var n = t[0]; + return n ? n._private.animation.current.length > 0 : void 0; + }; + }, + clearQueue: function () { + return function () { + var e = this, + t = void 0 !== e.length ? e : [e]; + if (!(this._private.cy || this).styleEnabled()) return this; + for (var n = 0; n < t.length; n++) { + t[n]._private.animation.queue = []; + } + return this; + }; + }, + delay: function () { + return function (e, t) { + return (this._private.cy || this).styleEnabled() + ? this.animate({ delay: e, duration: e, complete: t }) + : this; + }; + }, + delayAnimation: function () { + return function (e, t) { + return (this._private.cy || this).styleEnabled() + ? this.animation({ delay: e, duration: e, complete: t }) + : this; + }; + }, + animation: function () { + return function (e, t) { + var n = this, + r = void 0 !== n.length, + o = r ? n : [n], + i = this._private.cy || this, + a = !r, + s = !a; + if (!i.styleEnabled()) return this; + var l = i.style(); + if (((e = Q({}, e, t)), 0 === Object.keys(e).length)) return new rr(o[0], e); + switch ((void 0 === e.duration && (e.duration = 400), e.duration)) { + case 'slow': + e.duration = 600; + break; + case 'fast': + e.duration = 200; + } + if ( + (s && ((e.style = l.getPropsList(e.style || e.css)), (e.css = void 0)), s && null != e.renderedPosition) + ) { + var c = e.renderedPosition, + u = i.pan(), + d = i.zoom(); + e.position = ot(c, d, u); + } + if (a && null != e.panBy) { + var f = e.panBy, + h = i.pan(); + e.pan = { x: h.x + f.x, y: h.y + f.y }; + } + var p = e.center || e.centre; + if (a && null != p) { + var v = i.getCenterPan(p.eles, e.zoom); + null != v && (e.pan = v); + } + if (a && null != e.fit) { + var g = e.fit, + m = i.getFitViewport(g.eles || g.boundingBox, g.padding); + null != m && ((e.pan = m.pan), (e.zoom = m.zoom)); + } + if (a && N(e.zoom)) { + var y = i.getZoomedViewport(e.zoom); + null != y ? (y.zoomed && (e.zoom = y.zoom), y.panned && (e.pan = y.pan)) : (e.zoom = null); + } + return new rr(o[0], e); + }; + }, + animate: function () { + return function (e, t) { + var n = this, + r = void 0 !== n.length ? n : [n]; + if (!(this._private.cy || this).styleEnabled()) return this; + t && (e = Q({}, e, t)); + for (var o = 0; o < r.length; o++) { + var i = r[o], + a = i.animated() && (void 0 === e.queue || e.queue); + i.animation(e, a ? { queue: !0 } : void 0).play(); + } + return this; + }; + }, + stop: function () { + return function (e, t) { + var n = this, + r = void 0 !== n.length ? n : [n], + o = this._private.cy || this; + if (!o.styleEnabled()) return this; + for (var i = 0; i < r.length; i++) { + for (var a = r[i]._private, s = a.animation.current, l = 0; l < s.length; l++) { + var c = s[l]._private; + t && (c.duration = 0); + } + e && (a.animation.queue = []), t || (a.animation.current = []); + } + return o.notify('draw'), this; + }; + }, + }, + ar = { + data: function (e) { + return ( + (e = Q( + {}, + { + field: 'data', + bindingEvent: 'data', + allowBinding: !1, + allowSetting: !1, + allowGetting: !1, + settingEvent: 'data', + settingTriggersEvent: !1, + triggerFnName: 'trigger', + immutableKeys: {}, + updateStyle: !1, + beforeGet: function (e) {}, + beforeSet: function (e, t) {}, + onSet: function (e) {}, + canSet: function (e) { + return !0; + }, + }, + e, + )), + function (t, n) { + var r = e, + o = this, + i = void 0 !== o.length, + a = i ? o : [o], + s = i ? o[0] : o; + if (j(t)) { + var l, + c = -1 !== t.indexOf('.') && h.default(t); + if (r.allowGetting && void 0 === n) + return ( + s && + (r.beforeGet(s), + (l = + c && void 0 === s._private[r.field][t] + ? d.default(s._private[r.field], c) + : s._private[r.field][t])), + l + ); + if (r.allowSetting && void 0 !== n && !r.immutableKeys[t]) { + var u = y({}, t, n); + r.beforeSet(o, u); + for (var p = 0, v = a.length; p < v; p++) { + var g = a[p]; + r.canSet(g) && + (c && void 0 === s._private[r.field][t] + ? f.default(g._private[r.field], c, n) + : (g._private[r.field][t] = n)); + } + r.updateStyle && o.updateStyle(), + r.onSet(o), + r.settingTriggersEvent && o[r.triggerFnName](r.settingEvent); + } + } else if (r.allowSetting && N(t)) { + var m, + b, + x = t, + w = Object.keys(x); + r.beforeSet(o, x); + for (var E = 0; E < w.length; E++) { + if (((b = x[(m = w[E])]), !r.immutableKeys[m])) + for (var k = 0; k < a.length; k++) { + var _ = a[k]; + r.canSet(_) && (_._private[r.field][m] = b); + } + } + r.updateStyle && o.updateStyle(), + r.onSet(o), + r.settingTriggersEvent && o[r.triggerFnName](r.settingEvent); + } else if (r.allowBinding && T(t)) { + var S = t; + o.on(r.bindingEvent, S); + } else if (r.allowGetting && void 0 === t) { + var P; + return s && (r.beforeGet(s), (P = s._private[r.field])), P; + } + return o; + } + ); + }, + removeData: function (e) { + return ( + (e = Q( + {}, + { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: !1, immutableKeys: {} }, + e, + )), + function (t) { + var n = e, + r = this, + o = void 0 !== r.length ? r : [r]; + if (j(t)) { + for (var i = t.split(/\s+/), a = i.length, s = 0; s < a; s++) { + var l = i[s]; + if (!F(l)) + if (!n.immutableKeys[l]) + for (var c = 0, u = o.length; c < u; c++) o[c]._private[n.field][l] = void 0; + } + n.triggerEvent && r[n.triggerFnName](n.event); + } else if (void 0 === t) { + for (var d = 0, f = o.length; d < f; d++) + for (var h = o[d]._private[n.field], p = Object.keys(h), v = 0; v < p.length; v++) { + var g = p[v]; + !n.immutableKeys[g] && (h[g] = void 0); + } + n.triggerEvent && r[n.triggerFnName](n.event); + } + return r; + } + ); + }, + }, + sr = { + eventAliasesOn: function (e) { + var t = e; + (t.addListener = t.listen = t.bind = t.on), + (t.unlisten = t.unbind = t.off = t.removeListener), + (t.trigger = t.emit), + (t.pon = t.promiseOn = + function (e, t) { + var n = this, + r = Array.prototype.slice.call(arguments, 0); + return new nr(function (e, t) { + var o = r.concat([ + function (t) { + n.off.apply(n, i), e(t); + }, + ]), + i = o.concat([]); + n.on.apply(n, o); + }); + }); + }, + }, + lr = {}; + [ir, ar, sr].forEach(function (e) { + Q(lr, e); + }); + var cr = { + animate: lr.animate(), + animation: lr.animation(), + animated: lr.animated(), + clearQueue: lr.clearQueue(), + delay: lr.delay(), + delayAnimation: lr.delayAnimation(), + stop: lr.stop(), + }, + ur = { + classes: function (e) { + var t = this; + if (void 0 === e) { + var n = []; + return ( + t[0]._private.classes.forEach(function (e) { + return n.push(e); + }), + n + ); + } + D(e) || (e = (e || '').match(/\S+/g) || []); + for (var r = [], o = new ze(e), i = 0; i < t.length; i++) { + for (var a = t[i], s = a._private, l = s.classes, c = !1, u = 0; u < e.length; u++) { + var d = e[u]; + if (!l.has(d)) { + c = !0; + break; + } + } + c || (c = l.size !== e.length), c && ((s.classes = o), r.push(a)); + } + return r.length > 0 && this.spawn(r).updateStyle().emit('class'), t; + }, + addClass: function (e) { + return this.toggleClass(e, !0); + }, + hasClass: function (e) { + var t = this[0]; + return null != t && t._private.classes.has(e); + }, + toggleClass: function (e, t) { + D(e) || (e = e.match(/\S+/g) || []); + for (var n = this, r = void 0 === t, o = [], i = 0, a = n.length; i < a; i++) + for (var s = n[i], l = s._private.classes, c = !1, u = 0; u < e.length; u++) { + var d = e[u], + f = l.has(d), + h = !1; + t || (r && !f) ? (l.add(d), (h = !0)) : (!t || (r && f)) && (l.delete(d), (h = !0)), + !c && h && (o.push(s), (c = !0)); + } + return o.length > 0 && this.spawn(o).updateStyle().emit('class'), n; + }, + removeClass: function (e) { + return this.toggleClass(e, !1); + }, + flashClass: function (e, t) { + var n = this; + if (null == t) t = 250; + else if (0 === t) return n; + return ( + n.addClass(e), + setTimeout(function () { + n.removeClass(e); + }, t), + n + ); + }, + }; + ur.className = ur.classNames = ur.classes; + var dr = { + metaChar: '[\\!\\"\\#\\$\\%\\&\\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]', + comparatorOp: '=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=', + boolOp: '\\?|\\!|\\^', + string: '"(?:\\\\"|[^"])*"|\'(?:\\\\\'|[^\'])*\'', + number: q, + meta: 'degree|indegree|outdegree', + separator: '\\s*,\\s*', + descendant: '\\s+', + child: '\\s+>\\s+', + subject: '\\$', + group: 'node|edge|\\*', + directedEdge: '\\s+->\\s+', + undirectedEdge: '\\s+<->\\s+', + }; + (dr.variable = '(?:[\\w-.]|(?:\\\\' + dr.metaChar + '))+'), + (dr.className = '(?:[\\w-]|(?:\\\\' + dr.metaChar + '))+'), + (dr.value = dr.string + '|' + dr.number), + (dr.id = dr.variable), + (function () { + var e, t, n; + for (e = dr.comparatorOp.split('|'), n = 0; n < e.length; n++) (t = e[n]), (dr.comparatorOp += '|@' + t); + for (e = dr.comparatorOp.split('|'), n = 0; n < e.length; n++) + (t = e[n]).indexOf('!') >= 0 || ('=' !== t && (dr.comparatorOp += '|\\!' + t)); + })(); + var fr = 0, + hr = 1, + pr = 2, + vr = 3, + gr = 4, + mr = 5, + yr = 6, + br = 7, + xr = 8, + wr = 9, + Er = 10, + kr = 11, + _r = 12, + Sr = 13, + Pr = 14, + Cr = 15, + jr = 16, + Tr = 17, + Dr = 18, + Nr = 19, + Mr = 20, + Or = [ + { + selector: ':selected', + matches: function (e) { + return e.selected(); + }, + }, + { + selector: ':unselected', + matches: function (e) { + return !e.selected(); + }, + }, + { + selector: ':selectable', + matches: function (e) { + return e.selectable(); + }, + }, + { + selector: ':unselectable', + matches: function (e) { + return !e.selectable(); + }, + }, + { + selector: ':locked', + matches: function (e) { + return e.locked(); + }, + }, + { + selector: ':unlocked', + matches: function (e) { + return !e.locked(); + }, + }, + { + selector: ':visible', + matches: function (e) { + return e.visible(); + }, + }, + { + selector: ':hidden', + matches: function (e) { + return !e.visible(); + }, + }, + { + selector: ':transparent', + matches: function (e) { + return e.transparent(); + }, + }, + { + selector: ':grabbed', + matches: function (e) { + return e.grabbed(); + }, + }, + { + selector: ':free', + matches: function (e) { + return !e.grabbed(); + }, + }, + { + selector: ':removed', + matches: function (e) { + return e.removed(); + }, + }, + { + selector: ':inside', + matches: function (e) { + return !e.removed(); + }, + }, + { + selector: ':grabbable', + matches: function (e) { + return e.grabbable(); + }, + }, + { + selector: ':ungrabbable', + matches: function (e) { + return !e.grabbable(); + }, + }, + { + selector: ':animated', + matches: function (e) { + return e.animated(); + }, + }, + { + selector: ':unanimated', + matches: function (e) { + return !e.animated(); + }, + }, + { + selector: ':parent', + matches: function (e) { + return e.isParent(); + }, + }, + { + selector: ':childless', + matches: function (e) { + return e.isChildless(); + }, + }, + { + selector: ':child', + matches: function (e) { + return e.isChild(); + }, + }, + { + selector: ':orphan', + matches: function (e) { + return e.isOrphan(); + }, + }, + { + selector: ':nonorphan', + matches: function (e) { + return e.isChild(); + }, + }, + { + selector: ':compound', + matches: function (e) { + return e.isNode() ? e.isParent() : e.source().isParent() || e.target().isParent(); + }, + }, + { + selector: ':loop', + matches: function (e) { + return e.isLoop(); + }, + }, + { + selector: ':simple', + matches: function (e) { + return e.isSimple(); + }, + }, + { + selector: ':active', + matches: function (e) { + return e.active(); + }, + }, + { + selector: ':inactive', + matches: function (e) { + return !e.active(); + }, + }, + { + selector: ':backgrounding', + matches: function (e) { + return e.backgrounding(); + }, + }, + { + selector: ':nonbackgrounding', + matches: function (e) { + return !e.backgrounding(); + }, + }, + ].sort(function (e, t) { + return (function (e, t) { + return -1 * Z(e, t); + })(e.selector, t.selector); + }), + Ar = (function () { + for (var e, t = {}, n = 0; n < Or.length; n++) t[(e = Or[n]).selector] = e.matches; + return t; + })(), + Rr = + '(' + + Or.map(function (e) { + return e.selector; + }).join('|') + + ')', + Lr = function (e) { + return e.replace(new RegExp('\\\\(' + dr.metaChar + ')', 'g'), function (e, t) { + return t; + }); + }, + Ir = function (e, t, n) { + e[e.length - 1] = n; + }, + Br = [ + { + name: 'group', + query: !0, + regex: '(' + dr.group + ')', + populate: function (e, t, n) { + var r = b(n, 1)[0]; + t.checks.push({ type: fr, value: '*' === r ? r : r + 's' }); + }, + }, + { + name: 'state', + query: !0, + regex: Rr, + populate: function (e, t, n) { + var r = b(n, 1)[0]; + t.checks.push({ type: br, value: r }); + }, + }, + { + name: 'id', + query: !0, + regex: '\\#(' + dr.id + ')', + populate: function (e, t, n) { + var r = b(n, 1)[0]; + t.checks.push({ type: xr, value: Lr(r) }); + }, + }, + { + name: 'className', + query: !0, + regex: '\\.(' + dr.className + ')', + populate: function (e, t, n) { + var r = b(n, 1)[0]; + t.checks.push({ type: wr, value: Lr(r) }); + }, + }, + { + name: 'dataExists', + query: !0, + regex: '\\[\\s*(' + dr.variable + ')\\s*\\]', + populate: function (e, t, n) { + var r = b(n, 1)[0]; + t.checks.push({ type: gr, field: Lr(r) }); + }, + }, + { + name: 'dataCompare', + query: !0, + regex: '\\[\\s*(' + dr.variable + ')\\s*(' + dr.comparatorOp + ')\\s*(' + dr.value + ')\\s*\\]', + populate: function (e, t, n) { + var r = b(n, 3), + o = r[0], + i = r[1], + a = r[2]; + (a = null != new RegExp('^' + dr.string + '$').exec(a) ? a.substring(1, a.length - 1) : parseFloat(a)), + t.checks.push({ type: vr, field: Lr(o), operator: i, value: a }); + }, + }, + { + name: 'dataBool', + query: !0, + regex: '\\[\\s*(' + dr.boolOp + ')\\s*(' + dr.variable + ')\\s*\\]', + populate: function (e, t, n) { + var r = b(n, 2), + o = r[0], + i = r[1]; + t.checks.push({ type: mr, field: Lr(i), operator: o }); + }, + }, + { + name: 'metaCompare', + query: !0, + regex: '\\[\\[\\s*(' + dr.meta + ')\\s*(' + dr.comparatorOp + ')\\s*(' + dr.number + ')\\s*\\]\\]', + populate: function (e, t, n) { + var r = b(n, 3), + o = r[0], + i = r[1], + a = r[2]; + t.checks.push({ type: yr, field: Lr(o), operator: i, value: parseFloat(a) }); + }, + }, + { + name: 'nextQuery', + separator: !0, + regex: dr.separator, + populate: function (e, t) { + var n = e.currentSubject, + r = e.edgeCount, + o = e.compoundCount, + i = e[e.length - 1]; + return ( + null != n && ((i.subject = n), (e.currentSubject = null)), + (i.edgeCount = r), + (i.compoundCount = o), + (e.edgeCount = 0), + (e.compoundCount = 0), + (e[e.length++] = { checks: [] }) + ); + }, + }, + { + name: 'directedEdge', + separator: !0, + regex: dr.directedEdge, + populate: function (e, t) { + if (null == e.currentSubject) { + var n = { checks: [] }, + r = t, + o = { checks: [] }; + return n.checks.push({ type: kr, source: r, target: o }), Ir(e, 0, n), e.edgeCount++, o; + } + var i = { checks: [] }, + a = t, + s = { checks: [] }; + return i.checks.push({ type: _r, source: a, target: s }), Ir(e, 0, i), e.edgeCount++, s; + }, + }, + { + name: 'undirectedEdge', + separator: !0, + regex: dr.undirectedEdge, + populate: function (e, t) { + if (null == e.currentSubject) { + var n = { checks: [] }, + r = t, + o = { checks: [] }; + return n.checks.push({ type: Er, nodes: [r, o] }), Ir(e, 0, n), e.edgeCount++, o; + } + var i = { checks: [] }, + a = t, + s = { checks: [] }; + return i.checks.push({ type: Pr, node: a, neighbor: s }), Ir(e, 0, i), s; + }, + }, + { + name: 'child', + separator: !0, + regex: dr.child, + populate: function (e, t) { + if (null == e.currentSubject) { + var n = { checks: [] }, + r = { checks: [] }, + o = e[e.length - 1]; + return n.checks.push({ type: Cr, parent: o, child: r }), Ir(e, 0, n), e.compoundCount++, r; + } + if (e.currentSubject === t) { + var i = { checks: [] }, + a = e[e.length - 1], + s = { checks: [] }, + l = { checks: [] }, + c = { checks: [] }, + u = { checks: [] }; + return ( + i.checks.push({ type: Nr, left: a, right: s, subject: l }), + (l.checks = t.checks), + (t.checks = [{ type: Mr }]), + u.checks.push({ type: Mr }), + s.checks.push({ type: Tr, parent: u, child: c }), + Ir(e, 0, i), + (e.currentSubject = l), + e.compoundCount++, + c + ); + } + var d = { checks: [] }, + f = { checks: [] }, + h = [{ type: Tr, parent: d, child: f }]; + return (d.checks = t.checks), (t.checks = h), e.compoundCount++, f; + }, + }, + { + name: 'descendant', + separator: !0, + regex: dr.descendant, + populate: function (e, t) { + if (null == e.currentSubject) { + var n = { checks: [] }, + r = { checks: [] }, + o = e[e.length - 1]; + return n.checks.push({ type: jr, ancestor: o, descendant: r }), Ir(e, 0, n), e.compoundCount++, r; + } + if (e.currentSubject === t) { + var i = { checks: [] }, + a = e[e.length - 1], + s = { checks: [] }, + l = { checks: [] }, + c = { checks: [] }, + u = { checks: [] }; + return ( + i.checks.push({ type: Nr, left: a, right: s, subject: l }), + (l.checks = t.checks), + (t.checks = [{ type: Mr }]), + u.checks.push({ type: Mr }), + s.checks.push({ type: Dr, ancestor: u, descendant: c }), + Ir(e, 0, i), + (e.currentSubject = l), + e.compoundCount++, + c + ); + } + var d = { checks: [] }, + f = { checks: [] }, + h = [{ type: Dr, ancestor: d, descendant: f }]; + return (d.checks = t.checks), (t.checks = h), e.compoundCount++, f; + }, + }, + { + name: 'subject', + modifier: !0, + regex: dr.subject, + populate: function (e, t) { + if (null != e.currentSubject && e.currentSubject !== t) + return je('Redefinition of subject in selector `' + e.toString() + '`'), !1; + e.currentSubject = t; + var n = e[e.length - 1].checks[0], + r = null == n ? null : n.type; + r === kr + ? (n.type = Sr) + : r === Er && ((n.type = Pr), (n.node = n.nodes[1]), (n.neighbor = n.nodes[0]), (n.nodes = null)); + }, + }, + ]; + Br.forEach(function (e) { + return (e.regexObj = new RegExp('^' + e.regex)); + }); + var Fr = function (e) { + for (var t, n, r, o = 0; o < Br.length; o++) { + var i = Br[o], + a = i.name, + s = e.match(i.regexObj); + if (null != s) { + (n = s), (t = i), (r = a); + var l = s[0]; + e = e.substring(l.length); + break; + } + } + return { expr: t, match: n, name: r, remaining: e }; + }, + zr = { + parse: function (e) { + var t = this, + n = (t.inputText = e), + r = (t[0] = { checks: [] }); + for ( + t.length = 1, + n = (function (e) { + var t = e.match(/^\s+/); + if (t) { + var n = t[0]; + e = e.substring(n.length); + } + return e; + })(n); + ; + + ) { + var o = Fr(n); + if (null == o.expr) return je('The selector `' + e + '`is invalid'), !1; + var i = o.match.slice(1), + a = o.expr.populate(t, r, i); + if (!1 === a) return !1; + if ((null != a && (r = a), (n = o.remaining).match(/^\s*$/))) break; + } + var s = t[t.length - 1]; + null != t.currentSubject && (s.subject = t.currentSubject), + (s.edgeCount = t.edgeCount), + (s.compoundCount = t.compoundCount); + for (var l = 0; l < t.length; l++) { + var c = t[l]; + if (c.compoundCount > 0 && c.edgeCount > 0) + return ( + je( + 'The selector `' + e + '` is invalid because it uses both a compound selector and an edge selector', + ), + !1 + ); + if (c.edgeCount > 1) + return je('The selector `' + e + '` is invalid because it uses multiple edge selectors'), !1; + 1 === c.edgeCount && + je( + 'The selector `' + + e + + '` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.', + ); + } + return !0; + }, + toString: function () { + if (null != this.toStringCache) return this.toStringCache; + for ( + var e = function (e) { + return e ?? ''; + }, + t = function (t) { + return j(t) ? '"' + t + '"' : e(t); + }, + n = function (e) { + return ' ' + e + ' '; + }, + r = function (r, i) { + var a = r.type, + s = r.value; + switch (a) { + case fr: + var l = e(s); + return l.substring(0, l.length - 1); + case vr: + var c = r.field, + u = r.operator; + return '[' + c + n(e(u)) + t(s) + ']'; + case mr: + var d = r.operator, + f = r.field; + return '[' + e(d) + f + ']'; + case gr: + return '[' + r.field + ']'; + case yr: + var h = r.operator; + return '[[' + r.field + n(e(h)) + t(s) + ']]'; + case br: + return s; + case xr: + return '#' + s; + case wr: + return '.' + s; + case Tr: + case Cr: + return o(r.parent, i) + n('>') + o(r.child, i); + case Dr: + case jr: + return o(r.ancestor, i) + ' ' + o(r.descendant, i); + case Nr: + var p = o(r.left, i), + v = o(r.subject, i), + g = o(r.right, i); + return p + (p.length > 0 ? ' ' : '') + v + g; + case Mr: + return ''; + } + }, + o = function (e, t) { + return e.checks.reduce(function (n, o, i) { + return n + (t === e && 0 === i ? '$' : '') + r(o, t); + }, ''); + }, + i = '', + a = 0; + a < this.length; + a++ + ) { + var s = this[a]; + (i += o(s, s.subject)), this.length > 1 && a < this.length - 1 && (i += ', '); + } + return (this.toStringCache = i), i; + }, + }, + Vr = function (e, t, n) { + var r, + o, + i, + a = j(e), + s = M(e), + l = j(n), + c = !1, + u = !1, + d = !1; + switch ( + (t.indexOf('!') >= 0 && ((t = t.replace('!', '')), (u = !0)), + t.indexOf('@') >= 0 && ((t = t.replace('@', '')), (c = !0)), + (a || l || c) && ((o = a || s ? '' + e : ''), (i = '' + n)), + c && ((e = o = o.toLowerCase()), (n = i = i.toLowerCase())), + t) + ) { + case '*=': + r = o.indexOf(i) >= 0; + break; + case '$=': + r = o.indexOf(i, o.length - i.length) >= 0; + break; + case '^=': + r = 0 === o.indexOf(i); + break; + case '=': + r = e === n; + break; + case '>': + (d = !0), (r = e > n); + break; + case '>=': + (d = !0), (r = e >= n); + break; + case '<': + (d = !0), (r = e < n); + break; + case '<=': + (d = !0), (r = e <= n); + break; + default: + r = !1; + } + return !u || (null == e && d) || (r = !r), r; + }, + Gr = function (e, t) { + return e.data(t); + }, + Hr = [], + Wr = function (e, t) { + return e.checks.every(function (e) { + return Hr[e.type](e, t); + }); + }; + (Hr[fr] = function (e, t) { + var n = e.value; + return '*' === n || n === t.group(); + }), + (Hr[br] = function (e, t) { + return (function (e, t) { + return Ar[e](t); + })(e.value, t); + }), + (Hr[xr] = function (e, t) { + var n = e.value; + return t.id() === n; + }), + (Hr[wr] = function (e, t) { + var n = e.value; + return t.hasClass(n); + }), + (Hr[yr] = function (e, t) { + var n = e.field, + r = e.operator, + o = e.value; + return Vr( + (function (e, t) { + return e[t](); + })(t, n), + r, + o, + ); + }), + (Hr[vr] = function (e, t) { + var n = e.field, + r = e.operator, + o = e.value; + return Vr(Gr(t, n), r, o); + }), + (Hr[mr] = function (e, t) { + var n = e.field, + r = e.operator; + return (function (e, t) { + switch (t) { + case '?': + return !!e; + case '!': + return !e; + case '^': + return void 0 === e; + } + })(Gr(t, n), r); + }), + (Hr[gr] = function (e, t) { + var n = e.field; + return e.operator, void 0 !== Gr(t, n); + }), + (Hr[Er] = function (e, t) { + var n = e.nodes[0], + r = e.nodes[1], + o = t.source(), + i = t.target(); + return (Wr(n, o) && Wr(r, i)) || (Wr(r, o) && Wr(n, i)); + }), + (Hr[Pr] = function (e, t) { + return ( + Wr(e.node, t) && + t.neighborhood().some(function (t) { + return t.isNode() && Wr(e.neighbor, t); + }) + ); + }), + (Hr[kr] = function (e, t) { + return Wr(e.source, t.source()) && Wr(e.target, t.target()); + }), + (Hr[_r] = function (e, t) { + return ( + Wr(e.source, t) && + t.outgoers().some(function (t) { + return t.isNode() && Wr(e.target, t); + }) + ); + }), + (Hr[Sr] = function (e, t) { + return ( + Wr(e.target, t) && + t.incomers().some(function (t) { + return t.isNode() && Wr(e.source, t); + }) + ); + }), + (Hr[Cr] = function (e, t) { + return Wr(e.child, t) && Wr(e.parent, t.parent()); + }), + (Hr[Tr] = function (e, t) { + return ( + Wr(e.parent, t) && + t.children().some(function (t) { + return Wr(e.child, t); + }) + ); + }), + (Hr[jr] = function (e, t) { + return ( + Wr(e.descendant, t) && + t.ancestors().some(function (t) { + return Wr(e.ancestor, t); + }) + ); + }), + (Hr[Dr] = function (e, t) { + return ( + Wr(e.ancestor, t) && + t.descendants().some(function (t) { + return Wr(e.descendant, t); + }) + ); + }), + (Hr[Nr] = function (e, t) { + return Wr(e.subject, t) && Wr(e.left, t) && Wr(e.right, t); + }), + (Hr[Mr] = function () { + return !0; + }), + (Hr[hr] = function (e, t) { + return e.value.has(t); + }), + (Hr[pr] = function (e, t) { + return (0, e.value)(t); + }); + var Ur = { + matches: function (e) { + for (var t = 0; t < this.length; t++) { + var n = this[t]; + if (Wr(n, e)) return !0; + } + return !1; + }, + filter: function (e) { + var t = this; + if (1 === t.length && 1 === t[0].checks.length && t[0].checks[0].type === xr) + return e.getElementById(t[0].checks[0].value).collection(); + var n = function (e) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + if (Wr(r, e)) return !0; + } + return !1; + }; + return ( + null == t.text() && + (n = function () { + return !0; + }), + e.filter(n) + ); + }, + }, + qr = function (e) { + (this.inputText = e), + (this.currentSubject = null), + (this.compoundCount = 0), + (this.edgeCount = 0), + (this.length = 0), + null == e || + (j(e) && e.match(/^\s*$/)) || + (A(e) + ? this.addQuery({ checks: [{ type: hr, value: e.collection() }] }) + : T(e) + ? this.addQuery({ checks: [{ type: pr, value: e }] }) + : j(e) + ? this.parse(e) || (this.invalid = !0) + : Pe('A selector must be created from a string; found ')); + }, + Yr = qr.prototype; + [zr, Ur].forEach(function (e) { + return Q(Yr, e); + }), + (Yr.text = function () { + return this.inputText; + }), + (Yr.size = function () { + return this.length; + }), + (Yr.eq = function (e) { + return this[e]; + }), + (Yr.sameText = function (e) { + return !this.invalid && !e.invalid && this.text() === e.text(); + }), + (Yr.addQuery = function (e) { + this[this.length++] = e; + }), + (Yr.selector = Yr.toString); + var Xr = { + allAre: function (e) { + var t = new qr(e); + return this.every(function (e) { + return t.matches(e); + }); + }, + is: function (e) { + var t = new qr(e); + return this.some(function (e) { + return t.matches(e); + }); + }, + some: function (e, t) { + for (var n = 0; n < this.length; n++) { + if (t ? e.apply(t, [this[n], n, this]) : e(this[n], n, this)) return !0; + } + return !1; + }, + every: function (e, t) { + for (var n = 0; n < this.length; n++) { + if (!(t ? e.apply(t, [this[n], n, this]) : e(this[n], n, this))) return !1; + } + return !0; + }, + same: function (e) { + if (this === e) return !0; + e = this.cy().collection(e); + var t = this.length; + return ( + t === e.length && + (1 === t + ? this[0] === e[0] + : this.every(function (t) { + return e.hasElementWithId(t.id()); + })) + ); + }, + anySame: function (e) { + return ( + (e = this.cy().collection(e)), + this.some(function (t) { + return e.hasElementWithId(t.id()); + }) + ); + }, + allAreNeighbors: function (e) { + e = this.cy().collection(e); + var t = this.neighborhood(); + return e.every(function (e) { + return t.hasElementWithId(e.id()); + }); + }, + contains: function (e) { + e = this.cy().collection(e); + var t = this; + return e.every(function (e) { + return t.hasElementWithId(e.id()); + }); + }, + }; + (Xr.allAreNeighbours = Xr.allAreNeighbors), (Xr.has = Xr.contains), (Xr.equal = Xr.equals = Xr.same); + var $r, + Kr, + Zr = function (e, t) { + return function (n, r, o, i) { + var a, + s = n, + l = this; + if ((null == s ? (a = '') : A(s) && 1 === s.length && (a = s.id()), 1 === l.length && a)) { + var c = l[0]._private, + u = (c.traversalCache = c.traversalCache || {}), + d = (u[t] = u[t] || []), + f = ve(a), + h = d[f]; + return h || (d[f] = e.call(l, n, r, o, i)); + } + return e.call(l, n, r, o, i); + }; + }, + Qr = { + parent: function (e) { + var t = []; + if (1 === this.length) { + var n = this[0]._private.parent; + if (n) return n; + } + for (var r = 0; r < this.length; r++) { + var o = this[r]._private.parent; + o && t.push(o); + } + return this.spawn(t, !0).filter(e); + }, + parents: function (e) { + for (var t = [], n = this.parent(); n.nonempty(); ) { + for (var r = 0; r < n.length; r++) { + var o = n[r]; + t.push(o); + } + n = n.parent(); + } + return this.spawn(t, !0).filter(e); + }, + commonAncestors: function (e) { + for (var t, n = 0; n < this.length; n++) { + var r = this[n].parents(); + t = (t = t || r).intersect(r); + } + return t.filter(e); + }, + orphans: function (e) { + return this.stdFilter(function (e) { + return e.isOrphan(); + }).filter(e); + }, + nonorphans: function (e) { + return this.stdFilter(function (e) { + return e.isChild(); + }).filter(e); + }, + children: Zr(function (e) { + for (var t = [], n = 0; n < this.length; n++) + for (var r = this[n]._private.children, o = 0; o < r.length; o++) t.push(r[o]); + return this.spawn(t, !0).filter(e); + }, 'children'), + siblings: function (e) { + return this.parent().children().not(this).filter(e); + }, + isParent: function () { + var e = this[0]; + if (e) return e.isNode() && 0 !== e._private.children.length; + }, + isChildless: function () { + var e = this[0]; + if (e) return e.isNode() && 0 === e._private.children.length; + }, + isChild: function () { + var e = this[0]; + if (e) return e.isNode() && null != e._private.parent; + }, + isOrphan: function () { + var e = this[0]; + if (e) return e.isNode() && null == e._private.parent; + }, + descendants: function (e) { + var t = []; + return ( + (function e(n) { + for (var r = 0; r < n.length; r++) { + var o = n[r]; + t.push(o), o.children().nonempty() && e(o.children()); + } + })(this.children()), + this.spawn(t, !0).filter(e) + ); + }, + }; + function Jr(e, t, n, r) { + for (var o = [], i = new ze(), a = e.cy().hasCompoundNodes(), s = 0; s < e.length; s++) { + var l = e[s]; + n ? o.push(l) : a && r(o, i, l); + } + for (; o.length > 0; ) { + var c = o.shift(); + t(c), i.add(c.id()), a && r(o, i, c); + } + return e; + } + function eo(e, t, n) { + if (n.isParent()) + for (var r = n._private.children, o = 0; o < r.length; o++) { + var i = r[o]; + t.has(i.id()) || e.push(i); + } + } + function to(e, t, n) { + if (n.isChild()) { + var r = n._private.parent; + t.has(r.id()) || e.push(r); + } + } + function no(e, t, n) { + to(e, t, n), eo(e, t, n); + } + (Qr.forEachDown = function (e) { + return Jr(this, e, !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], eo); + }), + (Qr.forEachUp = function (e) { + return Jr(this, e, !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], to); + }), + (Qr.forEachUpAndDown = function (e) { + return Jr(this, e, !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], no); + }), + (Qr.ancestors = Qr.parents), + (($r = Kr = + { + data: lr.data({ + field: 'data', + bindingEvent: 'data', + allowBinding: !0, + allowSetting: !0, + settingEvent: 'data', + settingTriggersEvent: !0, + triggerFnName: 'trigger', + allowGetting: !0, + immutableKeys: { id: !0, source: !0, target: !0, parent: !0 }, + updateStyle: !0, + }), + removeData: lr.removeData({ + field: 'data', + event: 'data', + triggerFnName: 'trigger', + triggerEvent: !0, + immutableKeys: { id: !0, source: !0, target: !0, parent: !0 }, + updateStyle: !0, + }), + scratch: lr.data({ + field: 'scratch', + bindingEvent: 'scratch', + allowBinding: !0, + allowSetting: !0, + settingEvent: 'scratch', + settingTriggersEvent: !0, + triggerFnName: 'trigger', + allowGetting: !0, + updateStyle: !0, + }), + removeScratch: lr.removeData({ + field: 'scratch', + event: 'scratch', + triggerFnName: 'trigger', + triggerEvent: !0, + updateStyle: !0, + }), + rscratch: lr.data({ + field: 'rscratch', + allowBinding: !1, + allowSetting: !0, + settingTriggersEvent: !1, + allowGetting: !0, + }), + removeRscratch: lr.removeData({ field: 'rscratch', triggerEvent: !1 }), + id: function () { + var e = this[0]; + if (e) return e._private.data.id; + }, + }).attr = $r.data), + ($r.removeAttr = $r.removeData); + var ro, + oo, + io = Kr, + ao = {}; + function so(e) { + return function (t) { + var n = this; + if ((void 0 === t && (t = !0), 0 !== n.length && n.isNode() && !n.removed())) { + for (var r = 0, o = n[0], i = o._private.edges, a = 0; a < i.length; a++) { + var s = i[a]; + (!t && s.isLoop()) || (r += e(o, s)); + } + return r; + } + }; + } + function lo(e, t) { + return function (n) { + for (var r, o = this.nodes(), i = 0; i < o.length; i++) { + var a = o[i][e](n); + void 0 === a || (void 0 !== r && !t(a, r)) || (r = a); + } + return r; + }; + } + Q(ao, { + degree: so(function (e, t) { + return t.source().same(t.target()) ? 2 : 1; + }), + indegree: so(function (e, t) { + return t.target().same(e) ? 1 : 0; + }), + outdegree: so(function (e, t) { + return t.source().same(e) ? 1 : 0; + }), + }), + Q(ao, { + minDegree: lo('degree', function (e, t) { + return e < t; + }), + maxDegree: lo('degree', function (e, t) { + return e > t; + }), + minIndegree: lo('indegree', function (e, t) { + return e < t; + }), + maxIndegree: lo('indegree', function (e, t) { + return e > t; + }), + minOutdegree: lo('outdegree', function (e, t) { + return e < t; + }), + maxOutdegree: lo('outdegree', function (e, t) { + return e > t; + }), + }), + Q(ao, { + totalDegree: function (e) { + for (var t = 0, n = this.nodes(), r = 0; r < n.length; r++) t += n[r].degree(e); + return t; + }, + }); + var co = function (e, t, n) { + for (var r = 0; r < e.length; r++) { + var o = e[r]; + if (!o.locked()) { + var i = o._private.position, + a = { x: null != t.x ? t.x - i.x : 0, y: null != t.y ? t.y - i.y : 0 }; + !o.isParent() || (0 === a.x && 0 === a.y) || o.children().shift(a, n), o.dirtyBoundingBoxCache(); + } + } + }, + uo = { + field: 'position', + bindingEvent: 'position', + allowBinding: !0, + allowSetting: !0, + settingEvent: 'position', + settingTriggersEvent: !0, + triggerFnName: 'emitAndNotify', + allowGetting: !0, + validKeys: ['x', 'y'], + beforeGet: function (e) { + e.updateCompoundBounds(); + }, + beforeSet: function (e, t) { + co(e, t, !1); + }, + onSet: function (e) { + e.dirtyCompoundBoundsCache(); + }, + canSet: function (e) { + return !e.locked(); + }, + }; + (ro = oo = + { + position: lr.data(uo), + silentPosition: lr.data( + Q({}, uo, { + allowBinding: !1, + allowSetting: !0, + settingTriggersEvent: !1, + allowGetting: !1, + beforeSet: function (e, t) { + co(e, t, !0); + }, + onSet: function (e) { + e.dirtyCompoundBoundsCache(); + }, + }), + ), + positions: function (e, t) { + if (N(e)) t ? this.silentPosition(e) : this.position(e); + else if (T(e)) { + var n = e, + r = this.cy(); + r.startBatch(); + for (var o = 0; o < this.length; o++) { + var i, + a = this[o]; + (i = n(a, o)) && (t ? a.silentPosition(i) : a.position(i)); + } + r.endBatch(); + } + return this; + }, + silentPositions: function (e) { + return this.positions(e, !0); + }, + shift: function (e, t, n) { + var r; + if ( + (N(e) + ? ((r = { x: M(e.x) ? e.x : 0, y: M(e.y) ? e.y : 0 }), (n = t)) + : j(e) && M(t) && ((r = { x: 0, y: 0 })[e] = t), + null != r) + ) { + var o = this.cy(); + o.startBatch(); + for (var i = 0; i < this.length; i++) { + var a = this[i]; + if (!(o.hasCompoundNodes() && a.isChild() && a.ancestors().anySame(this))) { + var s = a.position(), + l = { x: s.x + r.x, y: s.y + r.y }; + n ? a.silentPosition(l) : a.position(l); + } + } + o.endBatch(); + } + return this; + }, + silentShift: function (e, t) { + return N(e) ? this.shift(e, !0) : j(e) && M(t) && this.shift(e, t, !0), this; + }, + renderedPosition: function (e, t) { + var n = this[0], + r = this.cy(), + o = r.zoom(), + i = r.pan(), + a = N(e) ? e : void 0, + s = void 0 !== a || (void 0 !== t && j(e)); + if (n && n.isNode()) { + if (!s) { + var l = n.position(); + return (a = rt(l, o, i)), void 0 === e ? a : a[e]; + } + for (var c = 0; c < this.length; c++) { + var u = this[c]; + void 0 !== t ? u.position(e, (t - i[e]) / o) : void 0 !== a && u.position(ot(a, o, i)); + } + } else if (!s) return; + return this; + }, + relativePosition: function (e, t) { + var n = this[0], + r = this.cy(), + o = N(e) ? e : void 0, + i = void 0 !== o || (void 0 !== t && j(e)), + a = r.hasCompoundNodes(); + if (n && n.isNode()) { + if (!i) { + var s = n.position(), + l = a ? n.parent() : null, + c = l && l.length > 0, + u = c; + c && (l = l[0]); + var d = u ? l.position() : { x: 0, y: 0 }; + return (o = { x: s.x - d.x, y: s.y - d.y }), void 0 === e ? o : o[e]; + } + for (var f = 0; f < this.length; f++) { + var h = this[f], + p = a ? h.parent() : null, + v = p && p.length > 0, + g = v; + v && (p = p[0]); + var m = g ? p.position() : { x: 0, y: 0 }; + void 0 !== t ? h.position(e, t + m[e]) : void 0 !== o && h.position({ x: o.x + m.x, y: o.y + m.y }); + } + } else if (!i) return; + return this; + }, + }), + (ro.modelPosition = ro.point = ro.position), + (ro.modelPositions = ro.points = ro.positions), + (ro.renderedPoint = ro.renderedPosition), + (ro.relativePoint = ro.relativePosition); + var fo, + ho, + po = oo; + (fo = ho = {}), + (ho.renderedBoundingBox = function (e) { + var t = this.boundingBox(e), + n = this.cy(), + r = n.zoom(), + o = n.pan(), + i = t.x1 * r + o.x, + a = t.x2 * r + o.x, + s = t.y1 * r + o.y, + l = t.y2 * r + o.y; + return { x1: i, x2: a, y1: s, y2: l, w: a - i, h: l - s }; + }), + (ho.dirtyCompoundBoundsCache = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] && arguments[0], + t = this.cy(); + return t.styleEnabled() && t.hasCompoundNodes() + ? (this.forEachUp(function (t) { + if (t.isParent()) { + var n = t._private; + (n.compoundBoundsClean = !1), (n.bbCache = null), e || t.emitAndNotify('bounds'); + } + }), + this) + : this; + }), + (ho.updateCompoundBounds = function () { + var e = arguments.length > 0 && void 0 !== arguments[0] && arguments[0], + t = this.cy(); + if (!t.styleEnabled() || !t.hasCompoundNodes()) return this; + if (!e && t.batching()) return this; + function n(e) { + if (e.isParent()) { + var t = e._private, + n = e.children(), + r = 'include' === e.pstyle('compound-sizing-wrt-labels').value, + o = { + width: { + val: e.pstyle('min-width').pfValue, + left: e.pstyle('min-width-bias-left'), + right: e.pstyle('min-width-bias-right'), + }, + height: { + val: e.pstyle('min-height').pfValue, + top: e.pstyle('min-height-bias-top'), + bottom: e.pstyle('min-height-bias-bottom'), + }, + }, + i = n.boundingBox({ includeLabels: r, includeOverlays: !1, useCache: !1 }), + a = t.position; + (0 !== i.w && 0 !== i.h) || + (((i = { w: e.pstyle('width').pfValue, h: e.pstyle('height').pfValue }).x1 = a.x - i.w / 2), + (i.x2 = a.x + i.w / 2), + (i.y1 = a.y - i.h / 2), + (i.y2 = a.y + i.h / 2)); + var s = o.width.left.value; + 'px' === o.width.left.units && o.width.val > 0 && (s = (100 * s) / o.width.val); + var l = o.width.right.value; + 'px' === o.width.right.units && o.width.val > 0 && (l = (100 * l) / o.width.val); + var c = o.height.top.value; + 'px' === o.height.top.units && o.height.val > 0 && (c = (100 * c) / o.height.val); + var u = o.height.bottom.value; + 'px' === o.height.bottom.units && o.height.val > 0 && (u = (100 * u) / o.height.val); + var d = m(o.width.val - i.w, s, l), + f = d.biasDiff, + h = d.biasComplementDiff, + p = m(o.height.val - i.h, c, u), + v = p.biasDiff, + g = p.biasComplementDiff; + (t.autoPadding = (function (e, t, n, r) { + if ('%' !== n.units) return 'px' === n.units ? n.pfValue : 0; + switch (r) { + case 'width': + return e > 0 ? n.pfValue * e : 0; + case 'height': + return t > 0 ? n.pfValue * t : 0; + case 'average': + return e > 0 && t > 0 ? (n.pfValue * (e + t)) / 2 : 0; + case 'min': + return e > 0 && t > 0 ? (e > t ? n.pfValue * t : n.pfValue * e) : 0; + case 'max': + return e > 0 && t > 0 ? (e > t ? n.pfValue * e : n.pfValue * t) : 0; + default: + return 0; + } + })(i.w, i.h, e.pstyle('padding'), e.pstyle('padding-relative-to').value)), + (t.autoWidth = Math.max(i.w, o.width.val)), + (a.x = (-f + i.x1 + i.x2 + h) / 2), + (t.autoHeight = Math.max(i.h, o.height.val)), + (a.y = (-v + i.y1 + i.y2 + g) / 2); + } + function m(e, t, n) { + var r = 0, + o = 0, + i = t + n; + return e > 0 && i > 0 && ((r = (t / i) * e), (o = (n / i) * e)), { biasDiff: r, biasComplementDiff: o }; + } + } + for (var r = 0; r < this.length; r++) { + var o = this[r], + i = o._private; + (i.compoundBoundsClean && !e) || (n(o), t.batching() || (i.compoundBoundsClean = !0)); + } + return this; + }); + var vo = function (e) { + return e === 1 / 0 || e === -1 / 0 ? 0 : e; + }, + go = function (e, t, n, r, o) { + r - t != 0 && + o - n != 0 && + null != t && + null != n && + null != r && + null != o && + ((e.x1 = t < e.x1 ? t : e.x1), + (e.x2 = r > e.x2 ? r : e.x2), + (e.y1 = n < e.y1 ? n : e.y1), + (e.y2 = o > e.y2 ? o : e.y2), + (e.w = e.x2 - e.x1), + (e.h = e.y2 - e.y1)); + }, + mo = function (e, t) { + return null == t ? e : go(e, t.x1, t.y1, t.x2, t.y2); + }, + yo = function (e, t, n) { + return Le(e, t, n); + }, + bo = function (e, t, n) { + if (!t.cy().headless()) { + var r, + o, + i = t._private, + a = i.rstyle, + s = a.arrowWidth / 2; + if ('none' !== t.pstyle(n + '-arrow-shape').value) { + 'source' === n + ? ((r = a.srcX), (o = a.srcY)) + : 'target' === n + ? ((r = a.tgtX), (o = a.tgtY)) + : ((r = a.midX), (o = a.midY)); + var l = (i.arrowBounds = i.arrowBounds || {}), + c = (l[n] = l[n] || {}); + (c.x1 = r - s), + (c.y1 = o - s), + (c.x2 = r + s), + (c.y2 = o + s), + (c.w = c.x2 - c.x1), + (c.h = c.y2 - c.y1), + mt(c, 1), + go(e, c.x1, c.y1, c.x2, c.y2); + } + } + }, + xo = function (e, t, n) { + if (!t.cy().headless()) { + var r; + r = n ? n + '-' : ''; + var o = t._private, + i = o.rstyle; + if (t.pstyle(r + 'label').strValue) { + var a, + s, + l, + c, + u = t.pstyle('text-halign'), + d = t.pstyle('text-valign'), + f = yo(i, 'labelWidth', n), + h = yo(i, 'labelHeight', n), + p = yo(i, 'labelX', n), + v = yo(i, 'labelY', n), + g = t.pstyle(r + 'text-margin-x').pfValue, + m = t.pstyle(r + 'text-margin-y').pfValue, + y = t.isEdge(), + b = t.pstyle(r + 'text-rotation'), + x = t.pstyle('text-outline-width').pfValue, + w = t.pstyle('text-border-width').pfValue / 2, + E = t.pstyle('text-background-padding').pfValue, + k = h, + _ = f, + S = _ / 2, + P = k / 2; + if (y) (a = p - S), (s = p + S), (l = v - P), (c = v + P); + else { + switch (u.value) { + case 'left': + (a = p - _), (s = p); + break; + case 'center': + (a = p - S), (s = p + S); + break; + case 'right': + (a = p), (s = p + _); + } + switch (d.value) { + case 'top': + (l = v - k), (c = v); + break; + case 'center': + (l = v - P), (c = v + P); + break; + case 'bottom': + (l = v), (c = v + k); + } + } + (a += g - Math.max(x, w) - E - 2), + (s += g + Math.max(x, w) + E + 2), + (l += m - Math.max(x, w) - E - 2), + (c += m + Math.max(x, w) + E + 2); + var C = n || 'main', + j = o.labelBounds, + T = (j[C] = j[C] || {}); + (T.x1 = a), (T.y1 = l), (T.x2 = s), (T.y2 = c), (T.w = s - a), (T.h = c - l); + var D = y && 'autorotate' === b.strValue, + N = null != b.pfValue && 0 !== b.pfValue; + if (D || N) { + var M = D ? yo(o.rstyle, 'labelAngle', n) : b.pfValue, + O = Math.cos(M), + A = Math.sin(M), + R = (a + s) / 2, + L = (l + c) / 2; + if (!y) { + switch (u.value) { + case 'left': + R = s; + break; + case 'right': + R = a; + } + switch (d.value) { + case 'top': + L = c; + break; + case 'bottom': + L = l; + } + } + var I = function (e, t) { + return { x: (e -= R) * O - (t -= L) * A + R, y: e * A + t * O + L }; + }, + B = I(a, l), + F = I(a, c), + z = I(s, l), + V = I(s, c); + (a = Math.min(B.x, F.x, z.x, V.x)), + (s = Math.max(B.x, F.x, z.x, V.x)), + (l = Math.min(B.y, F.y, z.y, V.y)), + (c = Math.max(B.y, F.y, z.y, V.y)); + } + var G = C + 'Rot', + H = (j[G] = j[G] || {}); + (H.x1 = a), + (H.y1 = l), + (H.x2 = s), + (H.y2 = c), + (H.w = s - a), + (H.h = c - l), + go(e, a, l, s, c), + go(o.labelBounds.all, a, l, s, c); + } + return e; + } + }, + wo = function (e) { + var t = 0, + n = function (e) { + return (e ? 1 : 0) << t++; + }, + r = 0; + return ( + (r += n(e.incudeNodes)), + (r += n(e.includeEdges)), + (r += n(e.includeLabels)), + (r += n(e.includeMainLabels)), + (r += n(e.includeSourceLabels)), + (r += n(e.includeTargetLabels)), + (r += n(e.includeOverlays)) + ); + }, + Eo = function (e) { + if (e.isEdge()) { + var t = e.source().position(), + n = e.target().position(), + r = function (e) { + return Math.round(e); + }; + return (function (e, t) { + var n = { value: 0, done: !1 }, + r = 0, + o = e.length; + return ue( + { + next: function () { + return r < o ? (n.value = e[r++]) : (n.done = !0), n; + }, + }, + t, + ); + })([r(t.x), r(t.y), r(n.x), r(n.y)]); + } + return 0; + }, + ko = function (e, t) { + var n, + r = e._private, + o = e.isEdge(), + i = (null == t ? So : wo(t)) === So, + a = Eo(e), + s = r.bbCachePosKey === a, + l = t.useCache && s, + c = function (e) { + return null == e._private.bbCache || e._private.styleDirty; + }; + if ( + (!l || c(e) || (o && c(e.source())) || c(e.target()) + ? (s || e.recalculateRenderedStyle(l), + (n = (function (e, t) { + var n, + r, + o, + i, + a, + s, + l, + c = e._private.cy, + u = c.styleEnabled(), + d = c.headless(), + f = vt(), + h = e._private, + p = e.isNode(), + v = e.isEdge(), + g = h.rstyle, + m = p && u ? e.pstyle('bounds-expansion').pfValue : [0], + y = function (e) { + return 'none' !== e.pstyle('display').value; + }, + b = !u || (y(e) && (!v || (y(e.source()) && y(e.target())))); + if (b) { + var x = 0; + u && + t.includeOverlays && + 0 !== e.pstyle('overlay-opacity').value && + (x = e.pstyle('overlay-padding').value); + var w = 0; + u && + t.includeUnderlays && + 0 !== e.pstyle('underlay-opacity').value && + (w = e.pstyle('underlay-padding').value); + var E = Math.max(x, w), + k = 0; + if ((u && (k = e.pstyle('width').pfValue / 2), p && t.includeNodes)) { + var _ = e.position(); + (a = _.x), (s = _.y); + var S = e.outerWidth() / 2, + P = e.outerHeight() / 2; + go(f, (n = a - S), (o = s - P), (r = a + S), (i = s + P)); + } else if (v && t.includeEdges) + if (u && !d) { + var C = e.pstyle('curve-style').strValue; + if ( + ((n = Math.min(g.srcX, g.midX, g.tgtX)), + (r = Math.max(g.srcX, g.midX, g.tgtX)), + (o = Math.min(g.srcY, g.midY, g.tgtY)), + (i = Math.max(g.srcY, g.midY, g.tgtY)), + go(f, (n -= k), (o -= k), (r += k), (i += k)), + 'haystack' === C) + ) { + var j = g.haystackPts; + if (j && 2 === j.length) { + if (((n = j[0].x), (o = j[0].y), n > (r = j[1].x))) { + var T = n; + (n = r), (r = T); + } + if (o > (i = j[1].y)) { + var D = o; + (o = i), (i = D); + } + go(f, n - k, o - k, r + k, i + k); + } + } else if ('bezier' === C || 'unbundled-bezier' === C || 'segments' === C || 'taxi' === C) { + var N; + switch (C) { + case 'bezier': + case 'unbundled-bezier': + N = g.bezierPts; + break; + case 'segments': + case 'taxi': + N = g.linePts; + } + if (null != N) + for (var M = 0; M < N.length; M++) { + var O = N[M]; + (n = O.x - k), (r = O.x + k), (o = O.y - k), (i = O.y + k), go(f, n, o, r, i); + } + } + } else { + var A = e.source().position(), + R = e.target().position(); + if ((n = A.x) > (r = R.x)) { + var L = n; + (n = r), (r = L); + } + if ((o = A.y) > (i = R.y)) { + var I = o; + (o = i), (i = I); + } + go(f, (n -= k), (o -= k), (r += k), (i += k)); + } + if ( + (u && + t.includeEdges && + v && + (bo(f, e, 'mid-source'), bo(f, e, 'mid-target'), bo(f, e, 'source'), bo(f, e, 'target')), + u && 'yes' === e.pstyle('ghost').value) + ) { + var B = e.pstyle('ghost-offset-x').pfValue, + F = e.pstyle('ghost-offset-y').pfValue; + go(f, f.x1 + B, f.y1 + F, f.x2 + B, f.y2 + F); + } + var z = (h.bodyBounds = h.bodyBounds || {}); + bt(z, f), + yt(z, m), + mt(z, 1), + u && ((n = f.x1), (r = f.x2), (o = f.y1), (i = f.y2), go(f, n - E, o - E, r + E, i + E)); + var V = (h.overlayBounds = h.overlayBounds || {}); + bt(V, f), yt(V, m), mt(V, 1); + var G = (h.labelBounds = h.labelBounds || {}); + null != G.all + ? (((l = G.all).x1 = 1 / 0), + (l.y1 = 1 / 0), + (l.x2 = -1 / 0), + (l.y2 = -1 / 0), + (l.w = 0), + (l.h = 0)) + : (G.all = vt()), + u && + t.includeLabels && + (t.includeMainLabels && xo(f, e, null), + v && + (t.includeSourceLabels && xo(f, e, 'source'), t.includeTargetLabels && xo(f, e, 'target'))); + } + return ( + (f.x1 = vo(f.x1)), + (f.y1 = vo(f.y1)), + (f.x2 = vo(f.x2)), + (f.y2 = vo(f.y2)), + (f.w = vo(f.x2 - f.x1)), + (f.h = vo(f.y2 - f.y1)), + f.w > 0 && f.h > 0 && b && (yt(f, m), mt(f, 1)), + f + ); + })(e, _o)), + (r.bbCache = n), + (r.bbCachePosKey = a)) + : (n = r.bbCache), + !i) + ) { + var u = e.isNode(); + (n = vt()), + ((t.includeNodes && u) || (t.includeEdges && !u)) && + (t.includeOverlays ? mo(n, r.overlayBounds) : mo(n, r.bodyBounds)), + t.includeLabels && + (t.includeMainLabels && (!o || (t.includeSourceLabels && t.includeTargetLabels)) + ? mo(n, r.labelBounds.all) + : (t.includeMainLabels && mo(n, r.labelBounds.mainRot), + t.includeSourceLabels && mo(n, r.labelBounds.sourceRot), + t.includeTargetLabels && mo(n, r.labelBounds.targetRot))), + (n.w = n.x2 - n.x1), + (n.h = n.y2 - n.y1); + } + return n; + }, + _o = { + includeNodes: !0, + includeEdges: !0, + includeLabels: !0, + includeMainLabels: !0, + includeSourceLabels: !0, + includeTargetLabels: !0, + includeOverlays: !0, + includeUnderlays: !0, + useCache: !0, + }, + So = wo(_o), + Po = Oe(_o); + (ho.boundingBox = function (e) { + var t; + if ( + 1 !== this.length || + null == this[0]._private.bbCache || + this[0]._private.styleDirty || + (void 0 !== e && void 0 !== e.useCache && !0 !== e.useCache) + ) { + t = vt(); + var n = Po((e = e || _o)), + r = this; + if (r.cy().styleEnabled()) + for (var o = 0; o < r.length; o++) { + var i = r[o], + a = i._private, + s = Eo(i), + l = a.bbCachePosKey === s, + c = n.useCache && l && !a.styleDirty; + i.recalculateRenderedStyle(c); + } + this.updateCompoundBounds(!e.useCache); + for (var u = 0; u < r.length; u++) { + var d = r[u]; + mo(t, ko(d, n)); + } + } else (e = void 0 === e ? _o : Po(e)), (t = ko(this[0], e)); + return ( + (t.x1 = vo(t.x1)), + (t.y1 = vo(t.y1)), + (t.x2 = vo(t.x2)), + (t.y2 = vo(t.y2)), + (t.w = vo(t.x2 - t.x1)), + (t.h = vo(t.y2 - t.y1)), + t + ); + }), + (ho.dirtyBoundingBoxCache = function () { + for (var e = 0; e < this.length; e++) { + var t = this[e]._private; + (t.bbCache = null), + (t.bbCachePosKey = null), + (t.bodyBounds = null), + (t.overlayBounds = null), + (t.labelBounds.all = null), + (t.labelBounds.source = null), + (t.labelBounds.target = null), + (t.labelBounds.main = null), + (t.labelBounds.sourceRot = null), + (t.labelBounds.targetRot = null), + (t.labelBounds.mainRot = null), + (t.arrowBounds.source = null), + (t.arrowBounds.target = null), + (t.arrowBounds['mid-source'] = null), + (t.arrowBounds['mid-target'] = null); + } + return this.emitAndNotify('bounds'), this; + }), + (ho.boundingBoxAt = function (e) { + var t = this.nodes(), + n = this.cy(), + r = n.hasCompoundNodes(), + o = n.collection(); + if ( + (r && + ((o = t.filter(function (e) { + return e.isParent(); + })), + (t = t.not(o))), + N(e)) + ) { + var i = e; + e = function () { + return i; + }; + } + n.startBatch(), + t + .forEach(function (t, n) { + return (t._private.bbAtOldPos = e(t, n)); + }) + .silentPositions(e), + r && (o.dirtyCompoundBoundsCache(), o.dirtyBoundingBoxCache(), o.updateCompoundBounds(!0)); + var a = (function (e) { + return { x1: e.x1, x2: e.x2, w: e.w, y1: e.y1, y2: e.y2, h: e.h }; + })(this.boundingBox({ useCache: !1 })); + return ( + t.silentPositions(function (e) { + return e._private.bbAtOldPos; + }), + r && (o.dirtyCompoundBoundsCache(), o.dirtyBoundingBoxCache(), o.updateCompoundBounds(!0)), + n.endBatch(), + a + ); + }), + (fo.boundingbox = fo.bb = fo.boundingBox), + (fo.renderedBoundingbox = fo.renderedBoundingBox); + var Co, + jo, + To = ho; + Co = jo = {}; + var Do = function (e) { + (e.uppercaseName = U(e.name)), + (e.autoName = 'auto' + e.uppercaseName), + (e.labelName = 'label' + e.uppercaseName), + (e.outerName = 'outer' + e.uppercaseName), + (e.uppercaseOuterName = U(e.outerName)), + (Co[e.name] = function () { + var t = this[0], + n = t._private, + r = n.cy._private.styleEnabled; + if (t) { + if (r) { + if (t.isParent()) return t.updateCompoundBounds(), n[e.autoName] || 0; + var o = t.pstyle(e.name); + return 'label' === o.strValue ? (t.recalculateRenderedStyle(), n.rstyle[e.labelName] || 0) : o.pfValue; + } + return 1; + } + }), + (Co['outer' + e.uppercaseName] = function () { + var t = this[0], + n = t._private.cy._private.styleEnabled; + if (t) return n ? t[e.name]() + t.pstyle('border-width').pfValue + 2 * t.padding() : 1; + }), + (Co['rendered' + e.uppercaseName] = function () { + var t = this[0]; + if (t) return t[e.name]() * this.cy().zoom(); + }), + (Co['rendered' + e.uppercaseOuterName] = function () { + var t = this[0]; + if (t) return t[e.outerName]() * this.cy().zoom(); + }); + }; + Do({ name: 'width' }), + Do({ name: 'height' }), + (jo.padding = function () { + var e = this[0], + t = e._private; + return e.isParent() + ? (e.updateCompoundBounds(), void 0 !== t.autoPadding ? t.autoPadding : e.pstyle('padding').pfValue) + : e.pstyle('padding').pfValue; + }), + (jo.paddedHeight = function () { + var e = this[0]; + return e.height() + 2 * e.padding(); + }), + (jo.paddedWidth = function () { + var e = this[0]; + return e.width() + 2 * e.padding(); + }); + var No = jo, + Mo = { + controlPoints: { + get: function (e) { + return e.renderer().getControlPoints(e); + }, + mult: !0, + }, + segmentPoints: { + get: function (e) { + return e.renderer().getSegmentPoints(e); + }, + mult: !0, + }, + sourceEndpoint: { + get: function (e) { + return e.renderer().getSourceEndpoint(e); + }, + }, + targetEndpoint: { + get: function (e) { + return e.renderer().getTargetEndpoint(e); + }, + }, + midpoint: { + get: function (e) { + return e.renderer().getEdgeMidpoint(e); + }, + }, + }, + Oo = Object.keys(Mo).reduce(function (e, t) { + var n = Mo[t], + r = (function (e) { + return 'rendered' + e[0].toUpperCase() + e.substr(1); + })(t); + return ( + (e[t] = function () { + return (function (e, t) { + if (e.isEdge()) return t(e); + })(this, n.get); + }), + n.mult + ? (e[r] = function () { + return (function (e, t) { + if (e.isEdge()) { + var n = e.cy(), + r = n.pan(), + o = n.zoom(); + return t(e).map(function (e) { + return rt(e, o, r); + }); + } + })(this, n.get); + }) + : (e[r] = function () { + return (function (e, t) { + if (e.isEdge()) { + var n = e.cy(); + return rt(t(e), n.zoom(), n.pan()); + } + })(this, n.get); + }), + e + ); + }, {}), + Ao = Q({}, po, To, No, Oo), + Ro = function (e, t) { + this.recycle(e, t); + }; + function Lo() { + return !1; + } + function Io() { + return !0; + } + Ro.prototype = { + instanceString: function () { + return 'event'; + }, + recycle: function (e, t) { + if ( + ((this.isImmediatePropagationStopped = this.isPropagationStopped = this.isDefaultPrevented = Lo), + null != e && e.preventDefault + ? ((this.type = e.type), (this.isDefaultPrevented = e.defaultPrevented ? Io : Lo)) + : null != e && e.type + ? (t = e) + : (this.type = e), + null != t && + ((this.originalEvent = t.originalEvent), + (this.type = null != t.type ? t.type : this.type), + (this.cy = t.cy), + (this.target = t.target), + (this.position = t.position), + (this.renderedPosition = t.renderedPosition), + (this.namespace = t.namespace), + (this.layout = t.layout)), + null != this.cy && null != this.position && null == this.renderedPosition) + ) { + var n = this.position, + r = this.cy.zoom(), + o = this.cy.pan(); + this.renderedPosition = { x: n.x * r + o.x, y: n.y * r + o.y }; + } + this.timeStamp = (e && e.timeStamp) || Date.now(); + }, + preventDefault: function () { + this.isDefaultPrevented = Io; + var e = this.originalEvent; + e && e.preventDefault && e.preventDefault(); + }, + stopPropagation: function () { + this.isPropagationStopped = Io; + var e = this.originalEvent; + e && e.stopPropagation && e.stopPropagation(); + }, + stopImmediatePropagation: function () { + (this.isImmediatePropagationStopped = Io), this.stopPropagation(); + }, + isDefaultPrevented: Lo, + isPropagationStopped: Lo, + isImmediatePropagationStopped: Lo, + }; + var Bo = /^([^.]+)(\.(?:[^.]+))?$/, + Fo = { + qualifierCompare: function (e, t) { + return e === t; + }, + eventMatches: function () { + return !0; + }, + addEventFields: function () {}, + callbackContext: function (e) { + return e; + }, + beforeEmit: function () {}, + afterEmit: function () {}, + bubble: function () { + return !1; + }, + parent: function () { + return null; + }, + context: null, + }, + zo = Object.keys(Fo), + Vo = {}; + function Go() { + for ( + var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : Vo, + t = arguments.length > 1 ? arguments[1] : void 0, + n = 0; + n < zo.length; + n++ + ) { + var r = zo[n]; + this[r] = e[r] || Fo[r]; + } + (this.context = t || this.context), (this.listeners = []), (this.emitting = 0); + } + var Ho = Go.prototype, + Wo = function (e, t, n, r, o, i, a) { + T(r) && ((o = r), (r = null)), a && (i = null == i ? a : Q({}, i, a)); + for (var s = D(n) ? n : n.split(/\s+/), l = 0; l < s.length; l++) { + var c = s[l]; + if (!F(c)) { + var u = c.match(Bo); + if (u) if (!1 === t(e, c, u[1], u[2] ? u[2] : null, r, o, i)) break; + } + } + }, + Uo = function (e, t) { + return e.addEventFields(e.context, t), new Ro(t.type, t); + }, + qo = function (e, t, n) { + if ('event' !== C(n)) + if (N(n)) t(e, Uo(e, n)); + else + for (var r = D(n) ? n : n.split(/\s+/), o = 0; o < r.length; o++) { + var i = r[o]; + if (!F(i)) { + var a = i.match(Bo); + if (a) { + var s = a[1], + l = a[2] ? a[2] : null; + t(e, Uo(e, { type: s, namespace: l, target: e.context })); + } + } + } + else t(e, n); + }; + (Ho.on = Ho.addListener = + function (e, t, n, r, o) { + return ( + Wo( + this, + function (e, t, n, r, o, i, a) { + T(i) && e.listeners.push({ event: t, callback: i, type: n, namespace: r, qualifier: o, conf: a }); + }, + e, + t, + n, + r, + o, + ), + this + ); + }), + (Ho.one = function (e, t, n, r) { + return this.on(e, t, n, r, { one: !0 }); + }), + (Ho.removeListener = Ho.off = + function (e, t, n, r) { + var o = this; + 0 !== this.emitting && (this.listeners = this.listeners.slice()); + for ( + var i = this.listeners, + a = function (a) { + var s = i[a]; + Wo( + o, + function (t, n, r, o, l, c) { + if ( + (s.type === r || '*' === e) && + ((!o && '.*' !== s.namespace) || s.namespace === o) && + (!l || t.qualifierCompare(s.qualifier, l)) && + (!c || s.callback === c) + ) + return i.splice(a, 1), !1; + }, + e, + t, + n, + r, + ); + }, + s = i.length - 1; + s >= 0; + s-- + ) + a(s); + return this; + }), + (Ho.removeAllListeners = function () { + return this.removeListener('*'); + }), + (Ho.emit = Ho.trigger = + function (e, t, n) { + var r = this.listeners, + o = r.length; + return ( + this.emitting++, + D(t) || (t = [t]), + qo( + this, + function (e, i) { + null != n && + ((r = [{ event: i.event, type: i.type, namespace: i.namespace, callback: n }]), (o = r.length)); + for ( + var a = function (n) { + var o = r[n]; + if ( + o.type === i.type && + (!o.namespace || o.namespace === i.namespace || '.*' === o.namespace) && + e.eventMatches(e.context, o, i) + ) { + var a = [i]; + null != t && + (function (e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + e.push(r); + } + })(a, t), + e.beforeEmit(e.context, o, i), + o.conf && + o.conf.one && + (e.listeners = e.listeners.filter(function (e) { + return e !== o; + })); + var s = e.callbackContext(e.context, o, i), + l = o.callback.apply(s, a); + e.afterEmit(e.context, o, i), !1 === l && (i.stopPropagation(), i.preventDefault()); + } + }, + s = 0; + s < o; + s++ + ) + a(s); + e.bubble(e.context) && !i.isPropagationStopped() && e.parent(e.context).emit(i, t); + }, + e, + ), + this.emitting--, + this + ); + }); + var Yo = { + qualifierCompare: function (e, t) { + return null == e || null == t ? null == e && null == t : e.sameText(t); + }, + eventMatches: function (e, t, n) { + var r = t.qualifier; + return null == r || (e !== n.target && R(n.target) && r.matches(n.target)); + }, + addEventFields: function (e, t) { + (t.cy = e.cy()), (t.target = e); + }, + callbackContext: function (e, t, n) { + return null != t.qualifier ? n.target : e; + }, + beforeEmit: function (e, t) { + t.conf && t.conf.once && t.conf.onceCollection.removeListener(t.event, t.qualifier, t.callback); + }, + bubble: function () { + return !0; + }, + parent: function (e) { + return e.isChild() ? e.parent() : e.cy(); + }, + }, + Xo = function (e) { + return j(e) ? new qr(e) : e; + }, + $o = { + createEmitter: function () { + for (var e = 0; e < this.length; e++) { + var t = this[e], + n = t._private; + n.emitter || (n.emitter = new Go(Yo, t)); + } + return this; + }, + emitter: function () { + return this._private.emitter; + }, + on: function (e, t, n) { + for (var r = Xo(t), o = 0; o < this.length; o++) { + this[o].emitter().on(e, r, n); + } + return this; + }, + removeListener: function (e, t, n) { + for (var r = Xo(t), o = 0; o < this.length; o++) { + this[o].emitter().removeListener(e, r, n); + } + return this; + }, + removeAllListeners: function () { + for (var e = 0; e < this.length; e++) { + this[e].emitter().removeAllListeners(); + } + return this; + }, + one: function (e, t, n) { + for (var r = Xo(t), o = 0; o < this.length; o++) { + this[o].emitter().one(e, r, n); + } + return this; + }, + once: function (e, t, n) { + for (var r = Xo(t), o = 0; o < this.length; o++) { + this[o].emitter().on(e, r, n, { once: !0, onceCollection: this }); + } + }, + emit: function (e, t) { + for (var n = 0; n < this.length; n++) { + this[n].emitter().emit(e, t); + } + return this; + }, + emitAndNotify: function (e, t) { + if (0 !== this.length) return this.cy().notify(e, this), this.emit(e, t), this; + }, + }; + lr.eventAliasesOn($o); + var Ko = { + nodes: function (e) { + return this.filter(function (e) { + return e.isNode(); + }).filter(e); + }, + edges: function (e) { + return this.filter(function (e) { + return e.isEdge(); + }).filter(e); + }, + byGroup: function () { + for (var e = this.spawn(), t = this.spawn(), n = 0; n < this.length; n++) { + var r = this[n]; + r.isNode() ? e.push(r) : t.push(r); + } + return { nodes: e, edges: t }; + }, + filter: function (e, t) { + if (void 0 === e) return this; + if (j(e) || A(e)) return new qr(e).filter(this); + if (T(e)) { + for (var n = this.spawn(), r = this, o = 0; o < r.length; o++) { + var i = r[o]; + (t ? e.apply(t, [i, o, r]) : e(i, o, r)) && n.push(i); + } + return n; + } + return this.spawn(); + }, + not: function (e) { + if (e) { + j(e) && (e = this.filter(e)); + for (var t = this.spawn(), n = 0; n < this.length; n++) { + var r = this[n]; + e.has(r) || t.push(r); + } + return t; + } + return this; + }, + absoluteComplement: function () { + return this.cy().mutableElements().not(this); + }, + intersect: function (e) { + if (j(e)) { + var t = e; + return this.filter(t); + } + for ( + var n = this.spawn(), r = e, o = this.length < e.length, i = o ? this : r, a = o ? r : this, s = 0; + s < i.length; + s++ + ) { + var l = i[s]; + a.has(l) && n.push(l); + } + return n; + }, + xor: function (e) { + var t = this._private.cy; + j(e) && (e = t.$(e)); + var n = this.spawn(), + r = e, + o = function (e, t) { + for (var r = 0; r < e.length; r++) { + var o = e[r], + i = o._private.data.id; + t.hasElementWithId(i) || n.push(o); + } + }; + return o(this, r), o(r, this), n; + }, + diff: function (e) { + var t = this._private.cy; + j(e) && (e = t.$(e)); + var n = this.spawn(), + r = this.spawn(), + o = this.spawn(), + i = e, + a = function (e, t, n) { + for (var r = 0; r < e.length; r++) { + var i = e[r], + a = i._private.data.id; + t.hasElementWithId(a) ? o.merge(i) : n.push(i); + } + }; + return a(this, i, n), a(i, this, r), { left: n, right: r, both: o }; + }, + add: function (e) { + var t = this._private.cy; + if (!e) return this; + if (j(e)) { + var n = e; + e = t.mutableElements().filter(n); + } + for (var r = this.spawnSelf(), o = 0; o < e.length; o++) { + var i = e[o], + a = !this.has(i); + a && r.push(i); + } + return r; + }, + merge: function (e) { + var t = this._private, + n = t.cy; + if (!e) return this; + if (e && j(e)) { + var r = e; + e = n.mutableElements().filter(r); + } + for (var o = t.map, i = 0; i < e.length; i++) { + var a = e[i], + s = a._private.data.id; + if (!o.has(s)) { + var l = this.length++; + (this[l] = a), o.set(s, { ele: a, index: l }); + } + } + return this; + }, + unmergeAt: function (e) { + var t = this[e].id(), + n = this._private.map; + (this[e] = void 0), n.delete(t); + var r = e === this.length - 1; + if (this.length > 1 && !r) { + var o = this.length - 1, + i = this[o], + a = i._private.data.id; + (this[o] = void 0), (this[e] = i), n.set(a, { ele: i, index: e }); + } + return this.length--, this; + }, + unmergeOne: function (e) { + e = e[0]; + var t = this._private, + n = e._private.data.id, + r = t.map.get(n); + if (!r) return this; + var o = r.index; + return this.unmergeAt(o), this; + }, + unmerge: function (e) { + var t = this._private.cy; + if (!e) return this; + if (e && j(e)) { + var n = e; + e = t.mutableElements().filter(n); + } + for (var r = 0; r < e.length; r++) this.unmergeOne(e[r]); + return this; + }, + unmergeBy: function (e) { + for (var t = this.length - 1; t >= 0; t--) { + e(this[t]) && this.unmergeAt(t); + } + return this; + }, + map: function (e, t) { + for (var n = [], r = this, o = 0; o < r.length; o++) { + var i = r[o], + a = t ? e.apply(t, [i, o, r]) : e(i, o, r); + n.push(a); + } + return n; + }, + reduce: function (e, t) { + for (var n = t, r = this, o = 0; o < r.length; o++) n = e(n, r[o], o, r); + return n; + }, + max: function (e, t) { + for (var n, r = -1 / 0, o = this, i = 0; i < o.length; i++) { + var a = o[i], + s = t ? e.apply(t, [a, i, o]) : e(a, i, o); + s > r && ((r = s), (n = a)); + } + return { value: r, ele: n }; + }, + min: function (e, t) { + for (var n, r = 1 / 0, o = this, i = 0; i < o.length; i++) { + var a = o[i], + s = t ? e.apply(t, [a, i, o]) : e(a, i, o); + s < r && ((r = s), (n = a)); + } + return { value: r, ele: n }; + }, + }, + Zo = Ko; + (Zo.u = Zo['|'] = Zo['+'] = Zo.union = Zo.or = Zo.add), + (Zo['\\'] = Zo['!'] = Zo['-'] = Zo.difference = Zo.relativeComplement = Zo.subtract = Zo.not), + (Zo.n = Zo['&'] = Zo['.'] = Zo.and = Zo.intersection = Zo.intersect), + (Zo['^'] = Zo['(+)'] = Zo['(-)'] = Zo.symmetricDifference = Zo.symdiff = Zo.xor), + (Zo.fnFilter = Zo.filterFn = Zo.stdFilter = Zo.filter), + (Zo.complement = Zo.abscomp = Zo.absoluteComplement); + var Qo = function (e, t) { + var n = e.cy().hasCompoundNodes(); + function r(e) { + var t = e.pstyle('z-compound-depth'); + return 'auto' === t.value ? (n ? e.zDepth() : 0) : 'bottom' === t.value ? -1 : 'top' === t.value ? we : 0; + } + var o = r(e) - r(t); + if (0 !== o) return o; + function i(e) { + return 'auto' === e.pstyle('z-index-compare').value && e.isNode() ? 1 : 0; + } + var a = i(e) - i(t); + if (0 !== a) return a; + var s = e.pstyle('z-index').value - t.pstyle('z-index').value; + return 0 !== s ? s : e.poolIndex() - t.poolIndex(); + }, + Jo = { + forEach: function (e, t) { + if (T(e)) + for (var n = this.length, r = 0; r < n; r++) { + var o = this[r]; + if (!1 === (t ? e.apply(t, [o, r, this]) : e(o, r, this))) break; + } + return this; + }, + toArray: function () { + for (var e = [], t = 0; t < this.length; t++) e.push(this[t]); + return e; + }, + slice: function (e, t) { + var n = [], + r = this.length; + null == t && (t = r), null == e && (e = 0), e < 0 && (e = r + e), t < 0 && (t = r + t); + for (var o = e; o >= 0 && o < t && o < r; o++) n.push(this[o]); + return this.spawn(n); + }, + size: function () { + return this.length; + }, + eq: function (e) { + return this[e] || this.spawn(); + }, + first: function () { + return this[0] || this.spawn(); + }, + last: function () { + return this[this.length - 1] || this.spawn(); + }, + empty: function () { + return 0 === this.length; + }, + nonempty: function () { + return !this.empty(); + }, + sort: function (e) { + if (!T(e)) return this; + var t = this.toArray().sort(e); + return this.spawn(t); + }, + sortByZIndex: function () { + return this.sort(Qo); + }, + zDepth: function () { + var e = this[0]; + if (e) { + var t = e._private; + if ('nodes' === t.group) { + var n = t.data.parent ? e.parents().size() : 0; + return e.isParent() ? n : we - 1; + } + var r = t.source, + o = t.target, + i = r.zDepth(), + a = o.zDepth(); + return Math.max(i, a, 0); + } + }, + }; + Jo.each = Jo.forEach; + var ei; + (ei = 'undefined'), + ('undefined' == typeof Symbol ? 'undefined' : p(Symbol)) != ei && + p(Symbol.iterator) != ei && + (Jo[Symbol.iterator] = function () { + var e = this, + t = { value: void 0, done: !1 }, + n = 0, + r = this.length; + return y( + { + next: function () { + return n < r ? (t.value = e[n++]) : ((t.value = void 0), (t.done = !0)), t; + }, + }, + Symbol.iterator, + function () { + return this; + }, + ); + }); + var ti = Oe({ nodeDimensionsIncludeLabels: !1 }), + ni = { + layoutDimensions: function (e) { + var t; + if (((e = ti(e)), this.takesUpSpace())) + if (e.nodeDimensionsIncludeLabels) { + var n = this.boundingBox(); + t = { w: n.w, h: n.h }; + } else t = { w: this.outerWidth(), h: this.outerHeight() }; + else t = { w: 0, h: 0 }; + return (0 !== t.w && 0 !== t.h) || (t.w = t.h = 1), t; + }, + layoutPositions: function (e, t, n) { + var r = this.nodes().filter(function (e) { + return !e.isParent(); + }), + o = this.cy(), + i = t.eles, + a = function (e) { + return e.id(); + }, + s = V(n, a); + e.emit({ type: 'layoutstart', layout: e }), (e.animations = []); + var l = t.spacingFactor && 1 !== t.spacingFactor, + c = (function () { + if (!l) return null; + for (var e = vt(), t = 0; t < r.length; t++) { + var n = r[t], + o = s(n, t); + gt(e, o.x, o.y); + } + return e; + })(), + u = V(function (e, n) { + var r = s(e, n); + l && + (r = (function (e, t, n) { + var r = t.x1 + t.w / 2, + o = t.y1 + t.h / 2; + return { x: r + (n.x - r) * e, y: o + (n.y - o) * e }; + })(Math.abs(t.spacingFactor), c, r)); + return null != t.transform && (r = t.transform(e, r)), r; + }, a); + if (t.animate) { + for (var d = 0; d < r.length; d++) { + var f = r[d], + h = u(f, d); + if (null == t.animateFilter || t.animateFilter(f, d)) { + var p = f.animation({ position: h, duration: t.animationDuration, easing: t.animationEasing }); + e.animations.push(p); + } else f.position(h); + } + if (t.fit) { + var v = o.animation({ + fit: { boundingBox: i.boundingBoxAt(u), padding: t.padding }, + duration: t.animationDuration, + easing: t.animationEasing, + }); + e.animations.push(v); + } else if (void 0 !== t.zoom && void 0 !== t.pan) { + var g = o.animation({ + zoom: t.zoom, + pan: t.pan, + duration: t.animationDuration, + easing: t.animationEasing, + }); + e.animations.push(g); + } + e.animations.forEach(function (e) { + return e.play(); + }), + e.one('layoutready', t.ready), + e.emit({ type: 'layoutready', layout: e }), + nr + .all( + e.animations.map(function (e) { + return e.promise(); + }), + ) + .then(function () { + e.one('layoutstop', t.stop), e.emit({ type: 'layoutstop', layout: e }); + }); + } else + r.positions(u), + t.fit && o.fit(t.eles, t.padding), + null != t.zoom && o.zoom(t.zoom), + t.pan && o.pan(t.pan), + e.one('layoutready', t.ready), + e.emit({ type: 'layoutready', layout: e }), + e.one('layoutstop', t.stop), + e.emit({ type: 'layoutstop', layout: e }); + return this; + }, + layout: function (e) { + return this.cy().makeLayout(Q({}, e, { eles: this })); + }, + }; + function ri(e, t, n) { + var r, + o = n._private, + i = (o.styleCache = o.styleCache || []); + return null != (r = i[e]) ? r : (r = i[e] = t(n)); + } + function oi(e, t) { + return ( + (e = ve(e)), + function (n) { + return ri(e, t, n); + } + ); + } + function ii(e, t) { + e = ve(e); + var n = function (e) { + return t.call(e); + }; + return function () { + var t = this[0]; + if (t) return ri(e, n, t); + }; + } + ni.createLayout = ni.makeLayout = ni.layout; + var ai = { + recalculateRenderedStyle: function (e) { + var t = this.cy(), + n = t.renderer(), + r = t.styleEnabled(); + return n && r && n.recalculateRenderedStyle(this, e), this; + }, + dirtyStyleCache: function () { + var e, + t = this.cy(), + n = function (e) { + return (e._private.styleCache = null); + }; + t.hasCompoundNodes() + ? ((e = this.spawnSelf().merge(this.descendants()).merge(this.parents())).merge(e.connectedEdges()), + e.forEach(n)) + : this.forEach(function (e) { + n(e), e.connectedEdges().forEach(n); + }); + return this; + }, + updateStyle: function (e) { + var t = this._private.cy; + if (!t.styleEnabled()) return this; + if (t.batching()) return t._private.batchStyleEles.merge(this), this; + var n = this; + (e = !(!e && void 0 !== e)), + t.hasCompoundNodes() && (n = this.spawnSelf().merge(this.descendants()).merge(this.parents())); + var r = n; + return ( + e ? r.emitAndNotify('style') : r.emit('style'), + n.forEach(function (e) { + return (e._private.styleDirty = !0); + }), + this + ); + }, + cleanStyle: function () { + var e = this.cy(); + if (e.styleEnabled()) + for (var t = 0; t < this.length; t++) { + var n = this[t]; + n._private.styleDirty && ((n._private.styleDirty = !1), e.style().apply(n)); + } + }, + parsedStyle: function (e) { + var t = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], + n = this[0], + r = n.cy(); + if (r.styleEnabled() && n) { + this.cleanStyle(); + var o = n._private.style[e]; + return null != o ? o : t ? r.style().getDefaultProperty(e) : null; + } + }, + numericStyle: function (e) { + var t = this[0]; + if (t.cy().styleEnabled() && t) { + var n = t.pstyle(e); + return void 0 !== n.pfValue ? n.pfValue : n.value; + } + }, + numericStyleUnits: function (e) { + var t = this[0]; + if (t.cy().styleEnabled()) return t ? t.pstyle(e).units : void 0; + }, + renderedStyle: function (e) { + var t = this.cy(); + if (!t.styleEnabled()) return this; + var n = this[0]; + return n ? t.style().getRenderedStyle(n, e) : void 0; + }, + style: function (e, t) { + var n = this.cy(); + if (!n.styleEnabled()) return this; + var r = n.style(); + if (N(e)) { + var o = e; + r.applyBypass(this, o, false), this.emitAndNotify('style'); + } else if (j(e)) { + if (void 0 === t) { + var i = this[0]; + return i ? r.getStylePropertyValue(i, e) : void 0; + } + r.applyBypass(this, e, t, false), this.emitAndNotify('style'); + } else if (void 0 === e) { + var a = this[0]; + return a ? r.getRawStyle(a) : void 0; + } + return this; + }, + removeStyle: function (e) { + var t = this.cy(); + if (!t.styleEnabled()) return this; + var n = t.style(), + r = this; + if (void 0 === e) + for (var o = 0; o < r.length; o++) { + var i = r[o]; + n.removeAllBypasses(i, false); + } + else { + e = e.split(/\s+/); + for (var a = 0; a < r.length; a++) { + var s = r[a]; + n.removeBypasses(s, e, false); + } + } + return this.emitAndNotify('style'), this; + }, + show: function () { + return this.css('display', 'element'), this; + }, + hide: function () { + return this.css('display', 'none'), this; + }, + effectiveOpacity: function () { + var e = this.cy(); + if (!e.styleEnabled()) return 1; + var t = e.hasCompoundNodes(), + n = this[0]; + if (n) { + var r = n._private, + o = n.pstyle('opacity').value; + if (!t) return o; + var i = r.data.parent ? n.parents() : null; + if (i) + for (var a = 0; a < i.length; a++) { + o *= i[a].pstyle('opacity').value; + } + return o; + } + }, + transparent: function () { + if (!this.cy().styleEnabled()) return !1; + var e = this[0], + t = e.cy().hasCompoundNodes(); + return e ? (t ? 0 === e.effectiveOpacity() : 0 === e.pstyle('opacity').value) : void 0; + }, + backgrounding: function () { + return !!this.cy().styleEnabled() && !!this[0]._private.backgrounding; + }, + }; + function si(e, t) { + var n = e._private.data.parent ? e.parents() : null; + if (n) + for (var r = 0; r < n.length; r++) { + if (!t(n[r])) return !1; + } + return !0; + } + function li(e) { + var t = e.ok, + n = e.edgeOkViaNode || e.ok, + r = e.parentOk || e.ok; + return function () { + var e = this.cy(); + if (!e.styleEnabled()) return !0; + var o = this[0], + i = e.hasCompoundNodes(); + if (o) { + var a = o._private; + if (!t(o)) return !1; + if (o.isNode()) return !i || si(o, r); + var s = a.source, + l = a.target; + return n(s) && (!i || si(s, n)) && (s === l || (n(l) && (!i || si(l, n)))); + } + }; + } + var ci = oi('eleTakesUpSpace', function (e) { + return 'element' === e.pstyle('display').value && 0 !== e.width() && (!e.isNode() || 0 !== e.height()); + }); + ai.takesUpSpace = ii('takesUpSpace', li({ ok: ci })); + var ui = oi('eleInteractive', function (e) { + return 'yes' === e.pstyle('events').value && 'visible' === e.pstyle('visibility').value && ci(e); + }), + di = oi('parentInteractive', function (e) { + return 'visible' === e.pstyle('visibility').value && ci(e); + }); + (ai.interactive = ii('interactive', li({ ok: ui, parentOk: di, edgeOkViaNode: ci }))), + (ai.noninteractive = function () { + var e = this[0]; + if (e) return !e.interactive(); + }); + var fi = oi('eleVisible', function (e) { + return 'visible' === e.pstyle('visibility').value && 0 !== e.pstyle('opacity').pfValue && ci(e); + }), + hi = ci; + (ai.visible = ii('visible', li({ ok: fi, edgeOkViaNode: hi }))), + (ai.hidden = function () { + var e = this[0]; + if (e) return !e.visible(); + }), + (ai.isBundledBezier = ii('isBundledBezier', function () { + return ( + !!this.cy().styleEnabled() && + !this.removed() && + 'bezier' === this.pstyle('curve-style').value && + this.takesUpSpace() + ); + })), + (ai.bypass = ai.css = ai.style), + (ai.renderedCss = ai.renderedStyle), + (ai.removeBypass = ai.removeCss = ai.removeStyle), + (ai.pstyle = ai.parsedStyle); + var pi = {}; + function vi(e) { + return function () { + var t = arguments, + n = []; + if (2 === t.length) { + var r = t[0], + o = t[1]; + this.on(e.event, r, o); + } else if (1 === t.length && T(t[0])) { + var i = t[0]; + this.on(e.event, i); + } else if (0 === t.length || (1 === t.length && D(t[0]))) { + for (var a = 1 === t.length ? t[0] : null, s = 0; s < this.length; s++) { + var l = this[s], + c = !e.ableField || l._private[e.ableField], + u = l._private[e.field] != e.value; + if (e.overrideAble) { + var d = e.overrideAble(l); + if (void 0 !== d && ((c = d), !d)) return this; + } + c && ((l._private[e.field] = e.value), u && n.push(l)); + } + var f = this.spawn(n); + f.updateStyle(), f.emit(e.event), a && f.emit(a); + } + return this; + }; + } + function gi(e) { + (pi[e.field] = function () { + var t = this[0]; + if (t) { + if (e.overrideField) { + var n = e.overrideField(t); + if (void 0 !== n) return n; + } + return t._private[e.field]; + } + }), + (pi[e.on] = vi({ + event: e.on, + field: e.field, + ableField: e.ableField, + overrideAble: e.overrideAble, + value: !0, + })), + (pi[e.off] = vi({ + event: e.off, + field: e.field, + ableField: e.ableField, + overrideAble: e.overrideAble, + value: !1, + })); + } + gi({ + field: 'locked', + overrideField: function (e) { + return !!e.cy().autolock() || void 0; + }, + on: 'lock', + off: 'unlock', + }), + gi({ + field: 'grabbable', + overrideField: function (e) { + return !e.cy().autoungrabify() && !e.pannable() && void 0; + }, + on: 'grabify', + off: 'ungrabify', + }), + gi({ + field: 'selected', + ableField: 'selectable', + overrideAble: function (e) { + return !e.cy().autounselectify() && void 0; + }, + on: 'select', + off: 'unselect', + }), + gi({ + field: 'selectable', + overrideField: function (e) { + return !e.cy().autounselectify() && void 0; + }, + on: 'selectify', + off: 'unselectify', + }), + (pi.deselect = pi.unselect), + (pi.grabbed = function () { + var e = this[0]; + if (e) return e._private.grabbed; + }), + gi({ field: 'active', on: 'activate', off: 'unactivate' }), + gi({ field: 'pannable', on: 'panify', off: 'unpanify' }), + (pi.inactive = function () { + var e = this[0]; + if (e) return !e._private.active; + }); + var mi = {}, + yi = function (e) { + return function (t) { + for (var n = [], r = 0; r < this.length; r++) { + var o = this[r]; + if (o.isNode()) { + for (var i = !1, a = o.connectedEdges(), s = 0; s < a.length; s++) { + var l = a[s], + c = l.source(), + u = l.target(); + if ((e.noIncomingEdges && u === o && c !== o) || (e.noOutgoingEdges && c === o && u !== o)) { + i = !0; + break; + } + } + i || n.push(o); + } + } + return this.spawn(n, !0).filter(t); + }; + }, + bi = function (e) { + return function (t) { + for (var n = [], r = 0; r < this.length; r++) { + var o = this[r]; + if (o.isNode()) + for (var i = o.connectedEdges(), a = 0; a < i.length; a++) { + var s = i[a], + l = s.source(), + c = s.target(); + e.outgoing && l === o ? (n.push(s), n.push(c)) : e.incoming && c === o && (n.push(s), n.push(l)); + } + } + return this.spawn(n, !0).filter(t); + }; + }, + xi = function (e) { + return function (t) { + for (var n = this, r = [], o = {}; ; ) { + var i = e.outgoing ? n.outgoers() : n.incomers(); + if (0 === i.length) break; + for (var a = !1, s = 0; s < i.length; s++) { + var l = i[s], + c = l.id(); + o[c] || ((o[c] = !0), r.push(l), (a = !0)); + } + if (!a) break; + n = i; + } + return this.spawn(r, !0).filter(t); + }; + }; + function wi(e) { + return function (t) { + for (var n = [], r = 0; r < this.length; r++) { + var o = this[r]._private[e.attr]; + o && n.push(o); + } + return this.spawn(n, !0).filter(t); + }; + } + function Ei(e) { + return function (t) { + var n = [], + r = this._private.cy, + o = e || {}; + j(t) && (t = r.$(t)); + for (var i = 0; i < t.length; i++) + for (var a = t[i]._private.edges, s = 0; s < a.length; s++) { + var l = a[s], + c = l._private.data, + u = this.hasElementWithId(c.source) && t.hasElementWithId(c.target), + d = t.hasElementWithId(c.source) && this.hasElementWithId(c.target); + if (u || d) { + if (o.thisIsSrc || o.thisIsTgt) { + if (o.thisIsSrc && !u) continue; + if (o.thisIsTgt && !d) continue; + } + n.push(l); + } + } + return this.spawn(n, !0); + }; + } + function ki(e) { + return ( + (e = Q({}, { codirected: !1 }, e)), + function (t) { + for (var n = [], r = this.edges(), o = e, i = 0; i < r.length; i++) + for ( + var a = r[i]._private, + s = a.source, + l = s._private.data.id, + c = a.data.target, + u = s._private.edges, + d = 0; + d < u.length; + d++ + ) { + var f = u[d], + h = f._private.data, + p = h.target, + v = h.source, + g = p === c && v === l, + m = l === p && c === v; + ((o.codirected && g) || (!o.codirected && (g || m))) && n.push(f); + } + return this.spawn(n, !0).filter(t); + } + ); + } + (mi.clearTraversalCache = function () { + for (var e = 0; e < this.length; e++) this[e]._private.traversalCache = null; + }), + Q(mi, { + roots: yi({ noIncomingEdges: !0 }), + leaves: yi({ noOutgoingEdges: !0 }), + outgoers: Zr(bi({ outgoing: !0 }), 'outgoers'), + successors: xi({ outgoing: !0 }), + incomers: Zr(bi({ incoming: !0 }), 'incomers'), + predecessors: xi({ incoming: !0 }), + }), + Q(mi, { + neighborhood: Zr(function (e) { + for (var t = [], n = this.nodes(), r = 0; r < n.length; r++) + for (var o = n[r], i = o.connectedEdges(), a = 0; a < i.length; a++) { + var s = i[a], + l = s.source(), + c = s.target(), + u = o === l ? c : l; + u.length > 0 && t.push(u[0]), t.push(s[0]); + } + return this.spawn(t, !0).filter(e); + }, 'neighborhood'), + closedNeighborhood: function (e) { + return this.neighborhood().add(this).filter(e); + }, + openNeighborhood: function (e) { + return this.neighborhood(e); + }, + }), + (mi.neighbourhood = mi.neighborhood), + (mi.closedNeighbourhood = mi.closedNeighborhood), + (mi.openNeighbourhood = mi.openNeighborhood), + Q(mi, { + source: Zr(function (e) { + var t, + n = this[0]; + return n && (t = n._private.source || n.cy().collection()), t && e ? t.filter(e) : t; + }, 'source'), + target: Zr(function (e) { + var t, + n = this[0]; + return n && (t = n._private.target || n.cy().collection()), t && e ? t.filter(e) : t; + }, 'target'), + sources: wi({ attr: 'source' }), + targets: wi({ attr: 'target' }), + }), + Q(mi, { edgesWith: Zr(Ei(), 'edgesWith'), edgesTo: Zr(Ei({ thisIsSrc: !0 }), 'edgesTo') }), + Q(mi, { + connectedEdges: Zr(function (e) { + for (var t = [], n = 0; n < this.length; n++) { + var r = this[n]; + if (r.isNode()) + for (var o = r._private.edges, i = 0; i < o.length; i++) { + var a = o[i]; + t.push(a); + } + } + return this.spawn(t, !0).filter(e); + }, 'connectedEdges'), + connectedNodes: Zr(function (e) { + for (var t = [], n = 0; n < this.length; n++) { + var r = this[n]; + r.isEdge() && (t.push(r.source()[0]), t.push(r.target()[0])); + } + return this.spawn(t, !0).filter(e); + }, 'connectedNodes'), + parallelEdges: Zr(ki(), 'parallelEdges'), + codirectedEdges: Zr(ki({ codirected: !0 }), 'codirectedEdges'), + }), + Q(mi, { + components: function (e) { + var t = this, + n = t.cy(), + r = n.collection(), + o = null == e ? t.nodes() : e.nodes(), + i = []; + null != e && o.empty() && (o = e.sources()); + var a = function (e, t) { + r.merge(e), o.unmerge(e), t.merge(e); + }; + if (o.empty()) return t.spawn(); + var s = function () { + var e = n.collection(); + i.push(e); + var r = o[0]; + a(r, e), + t.bfs({ + directed: !1, + roots: r, + visit: function (t) { + return a(t, e); + }, + }), + e.forEach(function (n) { + n.connectedEdges().forEach(function (n) { + t.has(n) && e.has(n.source()) && e.has(n.target()) && e.merge(n); + }); + }); + }; + do { + s(); + } while (o.length > 0); + return i; + }, + component: function () { + var e = this[0]; + return e.cy().mutableElements().components(e)[0]; + }, + }), + (mi.componentsOf = mi.components); + var _i = function (e, t) { + var n = arguments.length > 2 && void 0 !== arguments[2] && arguments[2], + r = arguments.length > 3 && void 0 !== arguments[3] && arguments[3]; + if (void 0 !== e) { + var o = new Be(), + i = !1; + if (t) { + if (t.length > 0 && N(t[0]) && !R(t[0])) { + i = !0; + for (var a = [], s = new ze(), l = 0, c = t.length; l < c; l++) { + var u = t[l]; + null == u.data && (u.data = {}); + var d = u.data; + if (null == d.id) d.id = De(); + else if (e.hasElementWithId(d.id) || s.has(d.id)) continue; + var f = new Ve(e, u, !1); + a.push(f), s.add(d.id); + } + t = a; + } + } else t = []; + this.length = 0; + for (var h = 0, p = t.length; h < p; h++) { + var v = t[h][0]; + if (null != v) { + var g = v._private.data.id; + (n && o.has(g)) || + (n && o.set(g, { index: this.length, ele: v }), (this[this.length] = v), this.length++); + } + } + (this._private = { + eles: this, + cy: e, + get map() { + return null == this.lazyMap && this.rebuildMap(), this.lazyMap; + }, + set map(e) { + this.lazyMap = e; + }, + rebuildMap: function () { + for (var e = (this.lazyMap = new Be()), t = this.eles, n = 0; n < t.length; n++) { + var r = t[n]; + e.set(r.id(), { index: n, ele: r }); + } + }, + }), + n && (this._private.map = o), + i && !r && this.restore(); + } else Pe('A collection must have a reference to the core'); + }, + Si = (Ve.prototype = _i.prototype = Object.create(Array.prototype)); + (Si.instanceString = function () { + return 'collection'; + }), + (Si.spawn = function (e, t) { + return new _i(this.cy(), e, t); + }), + (Si.spawnSelf = function () { + return this.spawn(this); + }), + (Si.cy = function () { + return this._private.cy; + }), + (Si.renderer = function () { + return this._private.cy.renderer(); + }), + (Si.element = function () { + return this[0]; + }), + (Si.collection = function () { + return L(this) ? this : new _i(this._private.cy, [this]); + }), + (Si.unique = function () { + return new _i(this._private.cy, this, !0); + }), + (Si.hasElementWithId = function (e) { + return (e = '' + e), this._private.map.has(e); + }), + (Si.getElementById = function (e) { + e = '' + e; + var t = this._private.cy, + n = this._private.map.get(e); + return n ? n.ele : new _i(t); + }), + (Si.$id = Si.getElementById), + (Si.poolIndex = function () { + var e = this._private.cy._private.elements, + t = this[0]._private.data.id; + return e._private.map.get(t).index; + }), + (Si.indexOf = function (e) { + var t = e[0]._private.data.id; + return this._private.map.get(t).index; + }), + (Si.indexOfId = function (e) { + return (e = '' + e), this._private.map.get(e).index; + }), + (Si.json = function (e) { + var t = this.element(), + n = this.cy(); + if (null == t && e) return this; + if (null != t) { + var r = t._private; + if (N(e)) { + if ((n.startBatch(), e.data)) { + t.data(e.data); + var o = r.data; + if (t.isEdge()) { + var i = !1, + a = {}, + s = e.data.source, + l = e.data.target; + null != s && s != o.source && ((a.source = '' + s), (i = !0)), + null != l && l != o.target && ((a.target = '' + l), (i = !0)), + i && (t = t.move(a)); + } else { + var c = 'parent' in e.data, + u = e.data.parent; + !c || + (null == u && null == o.parent) || + u == o.parent || + (void 0 === u && (u = null), null != u && (u = '' + u), (t = t.move({ parent: u }))); + } + } + e.position && t.position(e.position); + var d = function (n, o, i) { + var a = e[n]; + null != a && a !== r[n] && (a ? t[o]() : t[i]()); + }; + return ( + d('removed', 'remove', 'restore'), + d('selected', 'select', 'unselect'), + d('selectable', 'selectify', 'unselectify'), + d('locked', 'lock', 'unlock'), + d('grabbable', 'grabify', 'ungrabify'), + d('pannable', 'panify', 'unpanify'), + null != e.classes && t.classes(e.classes), + n.endBatch(), + this + ); + } + if (void 0 === e) { + var f = { + data: Te(r.data), + position: Te(r.position), + group: r.group, + removed: r.removed, + selected: r.selected, + selectable: r.selectable, + locked: r.locked, + grabbable: r.grabbable, + pannable: r.pannable, + classes: (null, ''), + }, + h = 0; + return ( + r.classes.forEach(function (e) { + return (f.classes += 0 == h++ ? e : ' ' + e); + }), + f + ); + } + } + }), + (Si.jsons = function () { + for (var e = [], t = 0; t < this.length; t++) { + var n = this[t].json(); + e.push(n); + } + return e; + }), + (Si.clone = function () { + for (var e = this.cy(), t = [], n = 0; n < this.length; n++) { + var r = this[n].json(), + o = new Ve(e, r, !1); + t.push(o); + } + return new _i(e, t); + }), + (Si.copy = Si.clone), + (Si.restore = function () { + for ( + var e, + t, + n = !(arguments.length > 0 && void 0 !== arguments[0]) || arguments[0], + r = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], + o = this, + i = o.cy(), + a = i._private, + s = [], + l = [], + c = 0, + u = o.length; + c < u; + c++ + ) { + var d = o[c]; + (r && !d.removed()) || (d.isNode() ? s.push(d) : l.push(d)); + } + e = s.concat(l); + var f = function () { + e.splice(t, 1), t--; + }; + for (t = 0; t < e.length; t++) { + var h = e[t], + p = h._private, + v = p.data; + if ((h.clearTraversalCache(), r || p.removed)) + if (void 0 === v.id) v.id = De(); + else if (M(v.id)) v.id = '' + v.id; + else { + if (F(v.id) || !j(v.id)) { + Pe('Can not create element with invalid string ID `' + v.id + '`'), f(); + continue; + } + if (i.hasElementWithId(v.id)) { + Pe('Can not create second element with ID `' + v.id + '`'), f(); + continue; + } + } + else; + var g = v.id; + if (h.isNode()) { + var m = p.position; + null == m.x && (m.x = 0), null == m.y && (m.y = 0); + } + if (h.isEdge()) { + for (var y = h, b = ['source', 'target'], x = b.length, w = !1, E = 0; E < x; E++) { + var k = b[E], + _ = v[k]; + M(_) && (_ = v[k] = '' + v[k]), + null == _ || '' === _ + ? (Pe('Can not create edge `' + g + '` with unspecified ' + k), (w = !0)) + : i.hasElementWithId(_) || + (Pe('Can not create edge `' + g + '` with nonexistant ' + k + ' `' + _ + '`'), (w = !0)); + } + if (w) { + f(); + continue; + } + var S = i.getElementById(v.source), + P = i.getElementById(v.target); + S.same(P) ? S._private.edges.push(y) : (S._private.edges.push(y), P._private.edges.push(y)), + (y._private.source = S), + (y._private.target = P); + } + (p.map = new Be()), p.map.set(g, { ele: h, index: 0 }), (p.removed = !1), r && i.addToPool(h); + } + for (var C = 0; C < s.length; C++) { + var T = s[C], + D = T._private.data; + M(D.parent) && (D.parent = '' + D.parent); + var N = D.parent; + if (null != N || T._private.parent) { + var O = T._private.parent ? i.collection().merge(T._private.parent) : i.getElementById(N); + if (O.empty()) D.parent = void 0; + else if (O[0].removed()) + je('Node added with missing parent, reference to parent removed'), + (D.parent = void 0), + (T._private.parent = null); + else { + for (var A = !1, R = O; !R.empty(); ) { + if (T.same(R)) { + (A = !0), (D.parent = void 0); + break; + } + R = R.parent(); + } + A || (O[0]._private.children.push(T), (T._private.parent = O[0]), (a.hasCompoundNodes = !0)); + } + } + } + if (e.length > 0) { + for (var L = e.length === o.length ? o : new _i(i, e), I = 0; I < L.length; I++) { + var B = L[I]; + B.isNode() || + (B.parallelEdges().clearTraversalCache(), + B.source().clearTraversalCache(), + B.target().clearTraversalCache()); + } + (a.hasCompoundNodes ? i.collection().merge(L).merge(L.connectedNodes()).merge(L.parent()) : L) + .dirtyCompoundBoundsCache() + .dirtyBoundingBoxCache() + .updateStyle(n), + n ? L.emitAndNotify('add') : r && L.emit('add'); + } + return o; + }), + (Si.removed = function () { + var e = this[0]; + return e && e._private.removed; + }), + (Si.inside = function () { + var e = this[0]; + return e && !e._private.removed; + }), + (Si.remove = function () { + var e = !(arguments.length > 0 && void 0 !== arguments[0]) || arguments[0], + t = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], + n = this, + r = [], + o = {}, + i = n._private.cy; + function a(e) { + var n = o[e.id()]; + (t && e.removed()) || + n || + ((o[e.id()] = !0), + e.isNode() + ? (r.push(e), + (function (e) { + for (var t = e._private.edges, n = 0; n < t.length; n++) a(t[n]); + })(e), + (function (e) { + for (var t = e._private.children, n = 0; n < t.length; n++) a(t[n]); + })(e)) + : r.unshift(e)); + } + for (var s = 0, l = n.length; s < l; s++) { + a(n[s]); + } + function c(e, t) { + var n = e._private.edges; + Ae(n, t), e.clearTraversalCache(); + } + function u(e) { + e.clearTraversalCache(); + } + var d = []; + function f(e, t) { + t = t[0]; + var n = (e = e[0])._private.children, + r = e.id(); + Ae(n, t), (t._private.parent = null), d.ids[r] || ((d.ids[r] = !0), d.push(e)); + } + (d.ids = {}), n.dirtyCompoundBoundsCache(), t && i.removeFromPool(r); + for (var h = 0; h < r.length; h++) { + var p = r[h]; + if (p.isEdge()) { + var v = p.source()[0], + g = p.target()[0]; + c(v, p), c(g, p); + for (var m = p.parallelEdges(), y = 0; y < m.length; y++) { + var b = m[y]; + u(b), b.isBundledBezier() && b.dirtyBoundingBoxCache(); + } + } else { + var x = p.parent(); + 0 !== x.length && f(x, p); + } + t && (p._private.removed = !0); + } + var w = i._private.elements; + i._private.hasCompoundNodes = !1; + for (var E = 0; E < w.length; E++) { + if (w[E].isParent()) { + i._private.hasCompoundNodes = !0; + break; + } + } + var k = new _i(this.cy(), r); + k.size() > 0 && (e ? k.emitAndNotify('remove') : t && k.emit('remove')); + for (var _ = 0; _ < d.length; _++) { + var S = d[_]; + (t && S.removed()) || S.updateStyle(); + } + return k; + }), + (Si.move = function (e) { + var t = this._private.cy, + n = this, + r = !1, + o = !1, + i = function (e) { + return null == e ? e : '' + e; + }; + if (void 0 !== e.source || void 0 !== e.target) { + var a = i(e.source), + s = i(e.target), + l = null != a && t.hasElementWithId(a), + c = null != s && t.hasElementWithId(s); + (l || c) && + (t.batch(function () { + n.remove(r, o), n.emitAndNotify('moveout'); + for (var e = 0; e < n.length; e++) { + var t = n[e], + i = t._private.data; + t.isEdge() && (l && (i.source = a), c && (i.target = s)); + } + n.restore(r, o); + }), + n.emitAndNotify('move')); + } else if (void 0 !== e.parent) { + var u = i(e.parent); + if (null === u || t.hasElementWithId(u)) { + var d = null === u ? void 0 : u; + t.batch(function () { + var e = n.remove(r, o); + e.emitAndNotify('moveout'); + for (var t = 0; t < n.length; t++) { + var i = n[t], + a = i._private.data; + i.isNode() && (a.parent = d); + } + e.restore(r, o); + }), + n.emitAndNotify('move'); + } + } + return this; + }), + [ + $n, + cr, + ur, + Xr, + Qr, + io, + ao, + Ao, + $o, + Ko, + { + isNode: function () { + return 'nodes' === this.group(); + }, + isEdge: function () { + return 'edges' === this.group(); + }, + isLoop: function () { + return this.isEdge() && this.source()[0] === this.target()[0]; + }, + isSimple: function () { + return this.isEdge() && this.source()[0] !== this.target()[0]; + }, + group: function () { + var e = this[0]; + if (e) return e._private.group; + }, + }, + Jo, + ni, + ai, + pi, + mi, + ].forEach(function (e) { + Q(Si, e); + }); + var Pi = { + add: function (e) { + var t, + n = this; + if (A(e)) { + var r = e; + if (r._private.cy === n) t = r.restore(); + else { + for (var o = [], i = 0; i < r.length; i++) { + var a = r[i]; + o.push(a.json()); + } + t = new _i(n, o); + } + } else if (D(e)) { + t = new _i(n, e); + } else if (N(e) && (D(e.nodes) || D(e.edges))) { + for (var s = e, l = [], c = ['nodes', 'edges'], u = 0, d = c.length; u < d; u++) { + var f = c[u], + h = s[f]; + if (D(h)) + for (var p = 0, v = h.length; p < v; p++) { + var g = Q({ group: f }, h[p]); + l.push(g); + } + } + t = new _i(n, l); + } else { + t = new Ve(n, e).collection(); + } + return t; + }, + remove: function (e) { + if (A(e)); + else if (j(e)) { + var t = e; + e = this.$(t); + } + return e.remove(); + }, + }; + function Ci(e, t, n, r) { + var o = 4, + i = 1e-7, + a = 10, + s = 11, + l = 1 / (s - 1), + c = 'undefined' != typeof Float32Array; + if (4 !== arguments.length) return !1; + for (var u = 0; u < 4; ++u) + if ('number' != typeof arguments[u] || isNaN(arguments[u]) || !isFinite(arguments[u])) return !1; + (e = Math.min(e, 1)), (n = Math.min(n, 1)), (e = Math.max(e, 0)), (n = Math.max(n, 0)); + var d = c ? new Float32Array(s) : new Array(s); + function f(e, t) { + return 1 - 3 * t + 3 * e; + } + function h(e, t) { + return 3 * t - 6 * e; + } + function p(e) { + return 3 * e; + } + function v(e, t, n) { + return ((f(t, n) * e + h(t, n)) * e + p(t)) * e; + } + function g(e, t, n) { + return 3 * f(t, n) * e * e + 2 * h(t, n) * e + p(t); + } + function m(t) { + for (var r = 0, c = 1, u = s - 1; c !== u && d[c] <= t; ++c) r += l; + --c; + var f = r + ((t - d[c]) / (d[c + 1] - d[c])) * l, + h = g(f, e, n); + return h >= 0.001 + ? (function (t, r) { + for (var i = 0; i < o; ++i) { + var a = g(r, e, n); + if (0 === a) return r; + r -= (v(r, e, n) - t) / a; + } + return r; + })(t, f) + : 0 === h + ? f + : (function (t, r, o) { + var s, + l, + c = 0; + do { + (s = v((l = r + (o - r) / 2), e, n) - t) > 0 ? (o = l) : (r = l); + } while (Math.abs(s) > i && ++c < a); + return l; + })(t, r, r + l); + } + var y = !1; + function b() { + (y = !0), + (e === t && n === r) || + (function () { + for (var t = 0; t < s; ++t) d[t] = v(t * l, e, n); + })(); + } + var x = function (o) { + return y || b(), e === t && n === r ? o : 0 === o ? 0 : 1 === o ? 1 : v(m(o), t, r); + }; + x.getControlPoints = function () { + return [ + { x: e, y: t }, + { x: n, y: r }, + ]; + }; + var w = 'generateBezier(' + [e, t, n, r] + ')'; + return ( + (x.toString = function () { + return w; + }), + x + ); + } + var ji = (function () { + function e(e) { + return -e.tension * e.x - e.friction * e.v; + } + function t(t, n, r) { + var o = { x: t.x + r.dx * n, v: t.v + r.dv * n, tension: t.tension, friction: t.friction }; + return { dx: o.v, dv: e(o) }; + } + function n(n, r) { + var o = { dx: n.v, dv: e(n) }, + i = t(n, 0.5 * r, o), + a = t(n, 0.5 * r, i), + s = t(n, r, a), + l = (1 / 6) * (o.dx + 2 * (i.dx + a.dx) + s.dx), + c = (1 / 6) * (o.dv + 2 * (i.dv + a.dv) + s.dv); + return (n.x = n.x + l * r), (n.v = n.v + c * r), n; + } + return function e(t, r, o) { + var i, + a, + s, + l = { x: -1, v: 0, tension: null, friction: null }, + c = [0], + u = 0, + d = 1e-4; + for ( + t = parseFloat(t) || 500, + r = parseFloat(r) || 20, + o = o || null, + l.tension = t, + l.friction = r, + a = (i = null !== o) ? ((u = e(t, r)) / o) * 0.016 : 0.016; + (s = n(s || l, a)), c.push(1 + s.x), (u += 16), Math.abs(s.x) > d && Math.abs(s.v) > d; + + ); + return i + ? function (e) { + return c[(e * (c.length - 1)) | 0]; + } + : u; + }; + })(), + Ti = function (e, t, n, r) { + var o = Ci(e, t, n, r); + return function (e, t, n) { + return e + (t - e) * o(n); + }; + }, + Di = { + linear: function (e, t, n) { + return e + (t - e) * n; + }, + ease: Ti(0.25, 0.1, 0.25, 1), + 'ease-in': Ti(0.42, 0, 1, 1), + 'ease-out': Ti(0, 0, 0.58, 1), + 'ease-in-out': Ti(0.42, 0, 0.58, 1), + 'ease-in-sine': Ti(0.47, 0, 0.745, 0.715), + 'ease-out-sine': Ti(0.39, 0.575, 0.565, 1), + 'ease-in-out-sine': Ti(0.445, 0.05, 0.55, 0.95), + 'ease-in-quad': Ti(0.55, 0.085, 0.68, 0.53), + 'ease-out-quad': Ti(0.25, 0.46, 0.45, 0.94), + 'ease-in-out-quad': Ti(0.455, 0.03, 0.515, 0.955), + 'ease-in-cubic': Ti(0.55, 0.055, 0.675, 0.19), + 'ease-out-cubic': Ti(0.215, 0.61, 0.355, 1), + 'ease-in-out-cubic': Ti(0.645, 0.045, 0.355, 1), + 'ease-in-quart': Ti(0.895, 0.03, 0.685, 0.22), + 'ease-out-quart': Ti(0.165, 0.84, 0.44, 1), + 'ease-in-out-quart': Ti(0.77, 0, 0.175, 1), + 'ease-in-quint': Ti(0.755, 0.05, 0.855, 0.06), + 'ease-out-quint': Ti(0.23, 1, 0.32, 1), + 'ease-in-out-quint': Ti(0.86, 0, 0.07, 1), + 'ease-in-expo': Ti(0.95, 0.05, 0.795, 0.035), + 'ease-out-expo': Ti(0.19, 1, 0.22, 1), + 'ease-in-out-expo': Ti(1, 0, 0, 1), + 'ease-in-circ': Ti(0.6, 0.04, 0.98, 0.335), + 'ease-out-circ': Ti(0.075, 0.82, 0.165, 1), + 'ease-in-out-circ': Ti(0.785, 0.135, 0.15, 0.86), + spring: function (e, t, n) { + if (0 === n) return Di.linear; + var r = ji(e, t, n); + return function (e, t, n) { + return e + (t - e) * r(n); + }; + }, + 'cubic-bezier': Ti, + }; + function Ni(e, t, n, r, o) { + if (1 === r) return n; + if (t === n) return n; + var i = o(t, n, r); + return ( + null == e || + ((e.roundValue || e.color) && (i = Math.round(i)), + void 0 !== e.min && (i = Math.max(i, e.min)), + void 0 !== e.max && (i = Math.min(i, e.max))), + i + ); + } + function Mi(e, t) { + return null != e.pfValue || null != e.value + ? null == e.pfValue || (null != t && '%' === t.type.units) + ? e.value + : e.pfValue + : e; + } + function Oi(e, t, n, r, o) { + var i = null != o ? o.type : null; + n < 0 ? (n = 0) : n > 1 && (n = 1); + var a = Mi(e, o), + s = Mi(t, o); + if (M(a) && M(s)) return Ni(i, a, s, n, r); + if (D(a) && D(s)) { + for (var l = [], c = 0; c < s.length; c++) { + var u = a[c], + d = s[c]; + if (null != u && null != d) { + var f = Ni(i, u, d, n, r); + l.push(f); + } else l.push(d); + } + return l; + } + } + function Ai(e, t, n, r) { + var o = !r, + i = e._private, + a = t._private, + s = a.easing, + l = a.startTime, + c = (r ? e : e.cy()).style(); + if (!a.easingImpl) + if (null == s) a.easingImpl = Di.linear; + else { + var u, d, f; + if (j(s)) u = c.parse('transition-timing-function', s).value; + else u = s; + j(u) + ? ((d = u), (f = [])) + : ((d = u[1]), + (f = u.slice(2).map(function (e) { + return +e; + }))), + f.length > 0 + ? ('spring' === d && f.push(a.duration), (a.easingImpl = Di[d].apply(null, f))) + : (a.easingImpl = Di[d]); + } + var h, + p = a.easingImpl; + if ( + ((h = 0 === a.duration ? 1 : (n - l) / a.duration), + a.applying && (h = a.progress), + h < 0 ? (h = 0) : h > 1 && (h = 1), + null == a.delay) + ) { + var v = a.startPosition, + g = a.position; + if (g && o && !e.locked()) { + var m = {}; + Ri(v.x, g.x) && (m.x = Oi(v.x, g.x, h, p)), Ri(v.y, g.y) && (m.y = Oi(v.y, g.y, h, p)), e.position(m); + } + var y = a.startPan, + b = a.pan, + x = i.pan, + w = null != b && r; + w && (Ri(y.x, b.x) && (x.x = Oi(y.x, b.x, h, p)), Ri(y.y, b.y) && (x.y = Oi(y.y, b.y, h, p)), e.emit('pan')); + var E = a.startZoom, + k = a.zoom, + _ = null != k && r; + _ && (Ri(E, k) && (i.zoom = pt(i.minZoom, Oi(E, k, h, p), i.maxZoom)), e.emit('zoom')), + (w || _) && e.emit('viewport'); + var S = a.style; + if (S && S.length > 0 && o) { + for (var P = 0; P < S.length; P++) { + var C = S[P], + T = C.name, + D = C, + N = a.startStyle[T], + M = Oi(N, D, h, p, c.properties[N.name]); + c.overrideBypass(e, T, M); + } + e.emit('style'); + } + } + return (a.progress = h), h; + } + function Ri(e, t) { + return null != e && null != t && (!(!M(e) || !M(t)) || !(!e || !t)); + } + function Li(e, t, n, r) { + var o = t._private; + (o.started = !0), (o.startTime = n - o.progress * o.duration); + } + function Ii(e, t) { + var n = t._private.aniEles, + r = []; + function o(t, n) { + var o = t._private, + i = o.animation.current, + a = o.animation.queue, + s = !1; + if (0 === i.length) { + var l = a.shift(); + l && i.push(l); + } + for ( + var c = function (e) { + for (var t = e.length - 1; t >= 0; t--) { + (0, e[t])(); + } + e.splice(0, e.length); + }, + u = i.length - 1; + u >= 0; + u-- + ) { + var d = i[u], + f = d._private; + f.stopped + ? (i.splice(u, 1), (f.hooked = !1), (f.playing = !1), (f.started = !1), c(f.frames)) + : (f.playing || f.applying) && + (f.playing && f.applying && (f.applying = !1), + f.started || Li(0, d, e), + Ai(t, d, e, n), + f.applying && (f.applying = !1), + c(f.frames), + null != f.step && f.step(e), + d.completed() && (i.splice(u, 1), (f.hooked = !1), (f.playing = !1), (f.started = !1), c(f.completes)), + (s = !0)); + } + return n || 0 !== i.length || 0 !== a.length || r.push(t), s; + } + for (var i = !1, a = 0; a < n.length; a++) { + var s = o(n[a]); + i = i || s; + } + var l = o(t, !0); + (i || l) && (n.length > 0 ? t.notify('draw', n) : t.notify('draw')), n.unmerge(r), t.emit('step'); + } + var Bi = { + animate: lr.animate(), + animation: lr.animation(), + animated: lr.animated(), + clearQueue: lr.clearQueue(), + delay: lr.delay(), + delayAnimation: lr.delayAnimation(), + stop: lr.stop(), + addToAnimationPool: function (e) { + this.styleEnabled() && this._private.aniEles.merge(e); + }, + stopAnimationLoop: function () { + this._private.animationsRunning = !1; + }, + startAnimationLoop: function () { + var e = this; + if (((e._private.animationsRunning = !0), e.styleEnabled())) { + var t = e.renderer(); + t && t.beforeRender + ? t.beforeRender(function (t, n) { + Ii(n, e); + }, t.beforeRenderPriorities.animations) + : (function t() { + e._private.animationsRunning && + ae(function (n) { + Ii(n, e), t(); + }); + })(); + } + }, + }, + Fi = { + qualifierCompare: function (e, t) { + return null == e || null == t ? null == e && null == t : e.sameText(t); + }, + eventMatches: function (e, t, n) { + var r = t.qualifier; + return null == r || (e !== n.target && R(n.target) && r.matches(n.target)); + }, + addEventFields: function (e, t) { + (t.cy = e), (t.target = e); + }, + callbackContext: function (e, t, n) { + return null != t.qualifier ? n.target : e; + }, + }, + zi = function (e) { + return j(e) ? new qr(e) : e; + }, + Vi = { + createEmitter: function () { + var e = this._private; + return e.emitter || (e.emitter = new Go(Fi, this)), this; + }, + emitter: function () { + return this._private.emitter; + }, + on: function (e, t, n) { + return this.emitter().on(e, zi(t), n), this; + }, + removeListener: function (e, t, n) { + return this.emitter().removeListener(e, zi(t), n), this; + }, + removeAllListeners: function () { + return this.emitter().removeAllListeners(), this; + }, + one: function (e, t, n) { + return this.emitter().one(e, zi(t), n), this; + }, + once: function (e, t, n) { + return this.emitter().one(e, zi(t), n), this; + }, + emit: function (e, t) { + return this.emitter().emit(e, t), this; + }, + emitAndNotify: function (e, t) { + return this.emit(e), this.notify(e, t), this; + }, + }; + lr.eventAliasesOn(Vi); + var Gi = { + png: function (e) { + return (e = e || {}), this._private.renderer.png(e); + }, + jpg: function (e) { + var t = this._private.renderer; + return ((e = e || {}).bg = e.bg || '#fff'), t.jpg(e); + }, + }; + Gi.jpeg = Gi.jpg; + var Hi = { + layout: function (e) { + var t = this; + if (null != e) + if (null != e.name) { + var n = e.name, + r = t.extension('layout', n); + if (null != r) { + var o; + o = j(e.eles) ? t.$(e.eles) : null != e.eles ? e.eles : t.$(); + var i = new r(Q({}, e, { cy: t, eles: o })); + return i; + } + Pe('No such layout `' + n + '` found. Did you forget to import it and `cytoscape.use()` it?'); + } else Pe('A `name` must be specified to make a layout'); + else Pe('Layout options must be specified to make a layout'); + }, + }; + Hi.createLayout = Hi.makeLayout = Hi.layout; + var Wi = { + notify: function (e, t) { + var n = this._private; + if (this.batching()) { + n.batchNotifications = n.batchNotifications || {}; + var r = (n.batchNotifications[e] = n.batchNotifications[e] || this.collection()); + null != t && r.merge(t); + } else if (n.notificationsEnabled) { + var o = this.renderer(); + !this.destroyed() && o && o.notify(e, t); + } + }, + notifications: function (e) { + var t = this._private; + return void 0 === e ? t.notificationsEnabled : ((t.notificationsEnabled = !!e), this); + }, + noNotifications: function (e) { + this.notifications(!1), e(), this.notifications(!0); + }, + batching: function () { + return this._private.batchCount > 0; + }, + startBatch: function () { + var e = this._private; + return ( + null == e.batchCount && (e.batchCount = 0), + 0 === e.batchCount && ((e.batchStyleEles = this.collection()), (e.batchNotifications = {})), + e.batchCount++, + this + ); + }, + endBatch: function () { + var e = this._private; + if (0 === e.batchCount) return this; + if ((e.batchCount--, 0 === e.batchCount)) { + e.batchStyleEles.updateStyle(); + var t = this.renderer(); + Object.keys(e.batchNotifications).forEach(function (n) { + var r = e.batchNotifications[n]; + r.empty() ? t.notify(n) : t.notify(n, r); + }); + } + return this; + }, + batch: function (e) { + return this.startBatch(), e(), this.endBatch(), this; + }, + batchData: function (e) { + var t = this; + return this.batch(function () { + for (var n = Object.keys(e), r = 0; r < n.length; r++) { + var o = n[r], + i = e[o]; + t.getElementById(o).data(i); + } + }); + }, + }, + Ui = Oe({ + hideEdgesOnViewport: !1, + textureOnViewport: !1, + motionBlur: !1, + motionBlurOpacity: 0.05, + pixelRatio: void 0, + desktopTapThreshold: 4, + touchTapThreshold: 8, + wheelSensitivity: 1, + debug: !1, + showFps: !1, + }), + qi = { + renderTo: function (e, t, n, r) { + return this._private.renderer.renderTo(e, t, n, r), this; + }, + renderer: function () { + return this._private.renderer; + }, + forceRender: function () { + return this.notify('draw'), this; + }, + resize: function () { + return this.invalidateSize(), this.emitAndNotify('resize'), this; + }, + initRenderer: function (e) { + var t = this, + n = t.extension('renderer', e.name); + if (null != n) { + void 0 !== e.wheelSensitivity && + je( + 'You have set a custom wheel sensitivity. This will make your app zoom unnaturally when using mainstream mice. You should change this value from the default only if you can guarantee that all your users will use the same hardware and OS configuration as your current machine.', + ); + var r = Ui(e); + (r.cy = t), (t._private.renderer = new n(r)), this.notify('init'); + } else + Pe( + 'Can not initialise: No such renderer `'.concat( + e.name, + '` found. Did you forget to import it and `cytoscape.use()` it?', + ), + ); + }, + destroyRenderer: function () { + var e = this; + e.notify('destroy'); + var t = e.container(); + if (t) for (t._cyreg = null; t.childNodes.length > 0; ) t.removeChild(t.childNodes[0]); + (e._private.renderer = null), + e.mutableElements().forEach(function (e) { + var t = e._private; + (t.rscratch = {}), (t.rstyle = {}), (t.animation.current = []), (t.animation.queue = []); + }); + }, + onRender: function (e) { + return this.on('render', e); + }, + offRender: function (e) { + return this.off('render', e); + }, + }; + qi.invalidateDimensions = qi.resize; + var Yi = { + collection: function (e, t) { + return j(e) + ? this.$(e) + : A(e) + ? e.collection() + : D(e) + ? (t || (t = {}), new _i(this, e, t.unique, t.removed)) + : new _i(this); + }, + nodes: function (e) { + var t = this.$(function (e) { + return e.isNode(); + }); + return e ? t.filter(e) : t; + }, + edges: function (e) { + var t = this.$(function (e) { + return e.isEdge(); + }); + return e ? t.filter(e) : t; + }, + $: function (e) { + var t = this._private.elements; + return e ? t.filter(e) : t.spawnSelf(); + }, + mutableElements: function () { + return this._private.elements; + }, + }; + Yi.elements = Yi.filter = Yi.$; + var Xi = {}, + $i = 't'; + (Xi.apply = function (e) { + for (var t = this, n = t._private.cy.collection(), r = 0; r < e.length; r++) { + var o = e[r], + i = t.getContextMeta(o); + if (!i.empty) { + var a = t.getContextStyle(i), + s = t.applyContextStyle(i, a, o); + o._private.appliedInitStyle ? t.updateTransitions(o, s.diffProps) : (o._private.appliedInitStyle = !0), + t.updateStyleHints(o) && n.push(o); + } + } + return n; + }), + (Xi.getPropertiesDiff = function (e, t) { + var n = this, + r = (n._private.propDiffs = n._private.propDiffs || {}), + o = e + '-' + t, + i = r[o]; + if (i) return i; + for (var a = [], s = {}, l = 0; l < n.length; l++) { + var c = n[l], + u = e[l] === $i, + d = t[l] === $i, + f = u !== d, + h = c.mappedProperties.length > 0; + if (f || (d && h)) { + var p = void 0; + (f && h) || f ? (p = c.properties) : h && (p = c.mappedProperties); + for (var v = 0; v < p.length; v++) { + for (var g = p[v], m = g.name, y = !1, b = l + 1; b < n.length; b++) { + var x = n[b]; + if (t[b] === $i && (y = null != x.properties[g.name])) break; + } + s[m] || y || ((s[m] = !0), a.push(m)); + } + } + } + return (r[o] = a), a; + }), + (Xi.getContextMeta = function (e) { + for (var t, n = this, r = '', o = e._private.styleCxtKey || '', i = 0; i < n.length; i++) { + var a = n[i]; + r += a.selector && a.selector.matches(e) ? $i : 'f'; + } + return ( + (t = n.getPropertiesDiff(o, r)), + (e._private.styleCxtKey = r), + { key: r, diffPropNames: t, empty: 0 === t.length } + ); + }), + (Xi.getContextStyle = function (e) { + var t = e.key, + n = (this._private.contextStyles = this._private.contextStyles || {}); + if (n[t]) return n[t]; + for (var r = { _private: { key: t } }, o = 0; o < this.length; o++) { + var i = this[o]; + if (t[o] === $i) + for (var a = 0; a < i.properties.length; a++) { + var s = i.properties[a]; + r[s.name] = s; + } + } + return (n[t] = r), r; + }), + (Xi.applyContextStyle = function (e, t, n) { + for (var r = e.diffPropNames, o = {}, i = this.types, a = 0; a < r.length; a++) { + var s = r[a], + l = t[s], + c = n.pstyle(s); + if (!l) { + if (!c) continue; + l = c.bypass ? { name: s, deleteBypassed: !0 } : { name: s, delete: !0 }; + } + if (c !== l) { + if (l.mapped === i.fn && null != c && null != c.mapping && c.mapping.value === l.value) { + var u = c.mapping; + if ((u.fnValue = l.value(n)) === u.prevFnValue) continue; + } + var d = (o[s] = { prev: c }); + this.applyParsedProperty(n, l), + (d.next = n.pstyle(s)), + d.next && d.next.bypass && (d.next = d.next.bypassed); + } + } + return { diffProps: o }; + }), + (Xi.updateStyleHints = function (e) { + var t = e._private, + n = this, + r = n.propertyGroupNames, + o = n.propertyGroupKeys, + i = function (e, t, r) { + return n.getPropertiesHash(e, t, r); + }, + a = t.styleKey; + if (e.removed()) return !1; + var s = 'nodes' === t.group, + l = e._private.style; + r = Object.keys(l); + for (var c = 0; c < o.length; c++) { + var u = o[c]; + t.styleKeys[u] = [le, ce]; + } + for ( + var d, + f = function (e, n) { + return (t.styleKeys[n][0] = de(e, t.styleKeys[n][0])); + }, + h = function (e, n) { + return (t.styleKeys[n][1] = fe(e, t.styleKeys[n][1])); + }, + p = function (e, t) { + f(e, t), h(e, t); + }, + v = function (e, t) { + for (var n = 0; n < e.length; n++) { + var r = e.charCodeAt(n); + f(r, t), h(r, t); + } + }, + g = 0; + g < r.length; + g++ + ) { + var m = r[g], + y = l[m]; + if (null != y) { + var b = this.properties[m], + x = b.type, + w = b.groupKey, + E = void 0; + null != b.hashOverride ? (E = b.hashOverride(e, y)) : null != y.pfValue && (E = y.pfValue); + var k = null == b.enums ? y.value : null, + _ = null != E, + S = _ || null != k, + P = y.units; + if (x.number && S && !x.multiple) + p(-128 < (d = _ ? E : k) && d < 128 && Math.floor(d) !== d ? 2e9 - ((1024 * d) | 0) : d, w), + _ || null == P || v(P, w); + else v(y.strValue, w); + } + } + for (var C, j, T = [le, ce], D = 0; D < o.length; D++) { + var N = o[D], + M = t.styleKeys[N]; + (T[0] = de(M[0], T[0])), (T[1] = fe(M[1], T[1])); + } + t.styleKey = ((C = T[0]), (j = T[1]), 2097152 * C + j); + var O = t.styleKeys; + t.labelDimsKey = he(O.labelDimensions); + var A = i(e, ['label'], O.labelDimensions); + if (((t.labelKey = he(A)), (t.labelStyleKey = he(pe(O.commonLabel, A))), !s)) { + var R = i(e, ['source-label'], O.labelDimensions); + (t.sourceLabelKey = he(R)), (t.sourceLabelStyleKey = he(pe(O.commonLabel, R))); + var L = i(e, ['target-label'], O.labelDimensions); + (t.targetLabelKey = he(L)), (t.targetLabelStyleKey = he(pe(O.commonLabel, L))); + } + if (s) { + var I = t.styleKeys, + B = I.nodeBody, + F = I.nodeBorder, + z = I.backgroundImage, + V = I.compound, + G = I.pie, + H = [B, F, z, V, G] + .filter(function (e) { + return null != e; + }) + .reduce(pe, [le, ce]); + (t.nodeKey = he(H)), (t.hasPie = null != G && G[0] !== le && G[1] !== ce); + } + return a !== t.styleKey; + }), + (Xi.clearStyleHints = function (e) { + var t = e._private; + (t.styleCxtKey = ''), + (t.styleKeys = {}), + (t.styleKey = null), + (t.labelKey = null), + (t.labelStyleKey = null), + (t.sourceLabelKey = null), + (t.sourceLabelStyleKey = null), + (t.targetLabelKey = null), + (t.targetLabelStyleKey = null), + (t.nodeKey = null), + (t.hasPie = null); + }), + (Xi.applyParsedProperty = function (e, t) { + var n, + r = this, + o = t, + i = e._private.style, + a = r.types, + s = r.properties[o.name].type, + l = o.bypass, + c = i[o.name], + u = c && c.bypass, + d = e._private, + f = 'mapping', + h = function (e) { + return null == e ? null : null != e.pfValue ? e.pfValue : e.value; + }, + p = function () { + var t = h(c), + n = h(o); + r.checkTriggers(e, o.name, t, n); + }; + if ( + (o && + 'pie' === o.name.substr(0, 3) && + je('The pie style properties are deprecated. Create charts using background images instead.'), + 'curve-style' === t.name && + e.isEdge() && + (('bezier' !== t.value && e.isLoop()) || + ('haystack' === t.value && (e.source().isParent() || e.target().isParent()))) && + (o = t = this.parse(t.name, 'bezier', l)), + o.delete) + ) + return (i[o.name] = void 0), p(), !0; + if (o.deleteBypassed) return c ? !!c.bypass && ((c.bypassed = void 0), p(), !0) : (p(), !0); + if (o.deleteBypass) return c ? !!c.bypass && ((i[o.name] = c.bypassed), p(), !0) : (p(), !0); + var v = function () { + je( + 'Do not assign mappings to elements without corresponding data (i.e. ele `' + + e.id() + + '` has no mapping for property `' + + o.name + + '` with data field `' + + o.field + + '`); try a `[' + + o.field + + ']` selector to limit scope to elements with `' + + o.field + + '` defined', + ); + }; + switch (o.mapped) { + case a.mapData: + for (var g, m = o.field.split('.'), y = d.data, b = 0; b < m.length && y; b++) { + y = y[m[b]]; + } + if (null == y) return v(), !1; + if (!M(y)) + return ( + je( + 'Do not use continuous mappers without specifying numeric data (i.e. `' + + o.field + + ': ' + + y + + '` for `' + + e.id() + + '` is non-numeric)', + ), + !1 + ); + var x = o.fieldMax - o.fieldMin; + if (((g = 0 === x ? 0 : (y - o.fieldMin) / x) < 0 ? (g = 0) : g > 1 && (g = 1), s.color)) { + var w = o.valueMin[0], + E = o.valueMax[0], + k = o.valueMin[1], + _ = o.valueMax[1], + S = o.valueMin[2], + P = o.valueMax[2], + C = null == o.valueMin[3] ? 1 : o.valueMin[3], + j = null == o.valueMax[3] ? 1 : o.valueMax[3], + T = [ + Math.round(w + (E - w) * g), + Math.round(k + (_ - k) * g), + Math.round(S + (P - S) * g), + Math.round(C + (j - C) * g), + ]; + n = { + bypass: o.bypass, + name: o.name, + value: T, + strValue: 'rgb(' + T[0] + ', ' + T[1] + ', ' + T[2] + ')', + }; + } else { + if (!s.number) return !1; + var D = o.valueMin + (o.valueMax - o.valueMin) * g; + n = this.parse(o.name, D, o.bypass, f); + } + if (!n) return v(), !1; + (n.mapping = o), (o = n); + break; + case a.data: + for (var N = o.field.split('.'), O = d.data, A = 0; A < N.length && O; A++) { + O = O[N[A]]; + } + if ((null != O && (n = this.parse(o.name, O, o.bypass, f)), !n)) return v(), !1; + (n.mapping = o), (o = n); + break; + case a.fn: + var R = o.value, + L = null != o.fnValue ? o.fnValue : R(e); + if (((o.prevFnValue = L), null == L)) + return ( + je( + 'Custom function mappers may not return null (i.e. `' + + o.name + + '` for ele `' + + e.id() + + '` is null)', + ), + !1 + ); + if (!(n = this.parse(o.name, L, o.bypass, f))) + return ( + je( + 'Custom function mappers may not return invalid values for the property type (i.e. `' + + o.name + + '` for ele `' + + e.id() + + '` is invalid)', + ), + !1 + ); + (n.mapping = Te(o)), (o = n); + break; + case void 0: + break; + default: + return !1; + } + return ( + l ? ((o.bypassed = u ? c.bypassed : c), (i[o.name] = o)) : u ? (c.bypassed = o) : (i[o.name] = o), p(), !0 + ); + }), + (Xi.cleanElements = function (e, t) { + for (var n = 0; n < e.length; n++) { + var r = e[n]; + if ((this.clearStyleHints(r), r.dirtyCompoundBoundsCache(), r.dirtyBoundingBoxCache(), t)) + for (var o = r._private.style, i = Object.keys(o), a = 0; a < i.length; a++) { + var s = i[a], + l = o[s]; + null != l && (l.bypass ? (l.bypassed = null) : (o[s] = null)); + } + else r._private.style = {}; + } + }), + (Xi.update = function () { + this._private.cy.mutableElements().updateStyle(); + }), + (Xi.updateTransitions = function (e, t) { + var n = this, + r = e._private, + o = e.pstyle('transition-property').value, + i = e.pstyle('transition-duration').pfValue, + a = e.pstyle('transition-delay').pfValue; + if (o.length > 0 && i > 0) { + for (var s = {}, l = !1, c = 0; c < o.length; c++) { + var u = o[c], + d = e.pstyle(u), + f = t[u]; + if (f) { + var h = f.prev, + p = null != f.next ? f.next : d, + v = !1, + g = void 0, + m = 1e-6; + h && + (M(h.pfValue) && M(p.pfValue) + ? ((v = p.pfValue - h.pfValue), (g = h.pfValue + m * v)) + : M(h.value) && M(p.value) + ? ((v = p.value - h.value), (g = h.value + m * v)) + : D(h.value) && + D(p.value) && + ((v = h.value[0] !== p.value[0] || h.value[1] !== p.value[1] || h.value[2] !== p.value[2]), + (g = h.strValue)), + v && ((s[u] = p.strValue), this.applyBypass(e, u, g), (l = !0))); + } + } + if (!l) return; + (r.transitioning = !0), + new nr(function (t) { + a > 0 ? e.delayAnimation(a).play().promise().then(t) : t(); + }) + .then(function () { + return e + .animation({ + style: s, + duration: i, + easing: e.pstyle('transition-timing-function').value, + queue: !1, + }) + .play() + .promise(); + }) + .then(function () { + n.removeBypasses(e, o), e.emitAndNotify('style'), (r.transitioning = !1); + }); + } else r.transitioning && (this.removeBypasses(e, o), e.emitAndNotify('style'), (r.transitioning = !1)); + }), + (Xi.checkTrigger = function (e, t, n, r, o, i) { + var a = this.properties[t], + s = o(a); + null != s && s(n, r) && i(a); + }), + (Xi.checkZOrderTrigger = function (e, t, n, r) { + var o = this; + this.checkTrigger( + e, + t, + n, + r, + function (e) { + return e.triggersZOrder; + }, + function () { + o._private.cy.notify('zorder', e); + }, + ); + }), + (Xi.checkBoundsTrigger = function (e, t, n, r) { + this.checkTrigger( + e, + t, + n, + r, + function (e) { + return e.triggersBounds; + }, + function (o) { + e.dirtyCompoundBoundsCache(), + e.dirtyBoundingBoxCache(), + !o.triggersBoundsOfParallelBeziers || + (('curve-style' !== t || ('bezier' !== n && 'bezier' !== r)) && + ('display' !== t || ('none' !== n && 'none' !== r))) || + e.parallelEdges().forEach(function (e) { + e.isBundledBezier() && e.dirtyBoundingBoxCache(); + }); + }, + ); + }), + (Xi.checkTriggers = function (e, t, n, r) { + e.dirtyStyleCache(), this.checkZOrderTrigger(e, t, n, r), this.checkBoundsTrigger(e, t, n, r); + }); + var Ki = { + applyBypass: function (e, t, n, r) { + var o = []; + if ('*' === t || '**' === t) { + if (void 0 !== n) + for (var i = 0; i < this.properties.length; i++) { + var a = this.properties[i].name, + s = this.parse(a, n, !0); + s && o.push(s); + } + } else if (j(t)) { + var l = this.parse(t, n, !0); + l && o.push(l); + } else { + if (!N(t)) return !1; + var c = t; + r = n; + for (var u = Object.keys(c), d = 0; d < u.length; d++) { + var f = u[d], + h = c[f]; + if ((void 0 === h && (h = c[H(f)]), void 0 !== h)) { + var p = this.parse(f, h, !0); + p && o.push(p); + } + } + } + if (0 === o.length) return !1; + for (var v = !1, g = 0; g < e.length; g++) { + for (var m = e[g], y = {}, b = void 0, x = 0; x < o.length; x++) { + var w = o[x]; + if (r) { + var E = m.pstyle(w.name); + b = y[w.name] = { prev: E }; + } + (v = this.applyParsedProperty(m, Te(w)) || v), r && (b.next = m.pstyle(w.name)); + } + v && this.updateStyleHints(m), r && this.updateTransitions(m, y, true); + } + return v; + }, + overrideBypass: function (e, t, n) { + t = G(t); + for (var r = 0; r < e.length; r++) { + var o = e[r], + i = o._private.style[t], + a = this.properties[t].type, + s = a.color, + l = a.mutiple, + c = i ? (null != i.pfValue ? i.pfValue : i.value) : null; + i && i.bypass + ? ((i.value = n), + null != i.pfValue && (i.pfValue = n), + (i.strValue = s ? 'rgb(' + n.join(',') + ')' : l ? n.join(' ') : '' + n), + this.updateStyleHints(o)) + : this.applyBypass(o, t, n), + this.checkTriggers(o, t, c, n); + } + }, + removeAllBypasses: function (e, t) { + return this.removeBypasses(e, this.propertyNames, t); + }, + removeBypasses: function (e, t, n) { + for (var r = 0; r < e.length; r++) { + for (var o = e[r], i = {}, a = 0; a < t.length; a++) { + var s = t[a], + l = this.properties[s], + c = o.pstyle(l.name); + if (c && c.bypass) { + var u = this.parse(s, '', !0), + d = (i[l.name] = { prev: c }); + this.applyParsedProperty(o, u), (d.next = o.pstyle(l.name)); + } + } + this.updateStyleHints(o), n && this.updateTransitions(o, i, true); + } + }, + }, + Zi = { + getEmSizeInPixels: function () { + var e = this.containerCss('font-size'); + return null != e ? parseFloat(e) : 1; + }, + containerCss: function (e) { + var t = this._private.cy.container(); + if (w && t && w.getComputedStyle) return w.getComputedStyle(t).getPropertyValue(e); + }, + }, + Qi = { + getRenderedStyle: function (e, t) { + return t ? this.getStylePropertyValue(e, t, !0) : this.getRawStyle(e, !0); + }, + getRawStyle: function (e, t) { + var n = this; + if ((e = e[0])) { + for (var r = {}, o = 0; o < n.properties.length; o++) { + var i = n.properties[o], + a = n.getStylePropertyValue(e, i.name, t); + null != a && ((r[i.name] = a), (r[H(i.name)] = a)); + } + return r; + } + }, + getIndexedStyle: function (e, t, n, r) { + var o = e.pstyle(t)[n][r]; + return null != o ? o : e.cy().style().getDefaultProperty(t)[n][0]; + }, + getStylePropertyValue: function (e, t, n) { + if ((e = e[0])) { + var r = this.properties[t]; + r.alias && (r = r.pointsTo); + var o = r.type, + i = e.pstyle(r.name); + if (i) { + var a = i.value, + s = i.units, + l = i.strValue; + if (n && o.number && null != a && M(a)) { + var c = e.cy().zoom(), + u = function (e) { + return e * c; + }, + d = function (e, t) { + return u(e) + t; + }, + f = D(a); + return ( + f + ? s.every(function (e) { + return null != e; + }) + : null != s + ) + ? f + ? a + .map(function (e, t) { + return d(e, s[t]); + }) + .join(' ') + : d(a, s) + : f + ? a + .map(function (e) { + return j(e) ? e : '' + u(e); + }) + .join(' ') + : '' + u(a); + } + if (null != l) return l; + } + return null; + } + }, + getAnimationStartStyle: function (e, t) { + for (var n = {}, r = 0; r < t.length; r++) { + var o = t[r].name, + i = e.pstyle(o); + void 0 !== i && (i = N(i) ? this.parse(o, i.strValue) : this.parse(o, i)), i && (n[o] = i); + } + return n; + }, + getPropsList: function (e) { + var t = [], + n = e, + r = this.properties; + if (n) + for (var o = Object.keys(n), i = 0; i < o.length; i++) { + var a = o[i], + s = n[a], + l = r[a] || r[G(a)], + c = this.parse(l.name, s); + c && t.push(c); + } + return t; + }, + getNonDefaultPropertiesHash: function (e, t, n) { + var r, + o, + i, + a, + s, + l, + c = n.slice(); + for (s = 0; s < t.length; s++) + if (((r = t[s]), null != (o = e.pstyle(r, !1)))) + if (null != o.pfValue) (c[0] = de(a, c[0])), (c[1] = fe(a, c[1])); + else + for (i = o.strValue, l = 0; l < i.length; l++) + (a = i.charCodeAt(l)), (c[0] = de(a, c[0])), (c[1] = fe(a, c[1])); + return c; + }, + }; + Qi.getPropertiesHash = Qi.getNonDefaultPropertiesHash; + var Ji = { + appendFromJson: function (e) { + for (var t = this, n = 0; n < e.length; n++) { + var r = e[n], + o = r.selector, + i = r.style || r.css, + a = Object.keys(i); + t.selector(o); + for (var s = 0; s < a.length; s++) { + var l = a[s], + c = i[l]; + t.css(l, c); + } + } + return t; + }, + fromJson: function (e) { + var t = this; + return t.resetToDefault(), t.appendFromJson(e), t; + }, + json: function () { + for (var e = [], t = this.defaultLength; t < this.length; t++) { + for (var n = this[t], r = n.selector, o = n.properties, i = {}, a = 0; a < o.length; a++) { + var s = o[a]; + i[s.name] = s.strValue; + } + e.push({ selector: r ? r.toString() : 'core', style: i }); + } + return e; + }, + }, + ea = { + appendFromString: function (e) { + var t, + n, + r, + o = this, + i = '' + e; + function a() { + i = i.length > t.length ? i.substr(t.length) : ''; + } + function s() { + n = n.length > r.length ? n.substr(r.length) : ''; + } + for (i = i.replace(/[/][*](\s|.)+?[*][/]/g, ''); ; ) { + if (i.match(/^\s*$/)) break; + var l = i.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/); + if (!l) { + je( + 'Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: ' + + i, + ); + break; + } + t = l[0]; + var c = l[1]; + if ('core' !== c) + if (new qr(c).invalid) { + je('Skipping parsing of block: Invalid selector found in string stylesheet: ' + c), a(); + continue; + } + var u = l[2], + d = !1; + n = u; + for (var f = []; ; ) { + if (n.match(/^\s*$/)) break; + var h = n.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/); + if (!h) { + je( + 'Skipping parsing of block: Invalid formatting of style property and value definitions found in:' + + u, + ), + (d = !0); + break; + } + r = h[0]; + var p = h[1], + v = h[2]; + if (this.properties[p]) + o.parse(p, v) + ? (f.push({ name: p, val: v }), s()) + : (je('Skipping property: Invalid property definition in: ' + r), s()); + else je('Skipping property: Invalid property name in: ' + r), s(); + } + if (d) { + a(); + break; + } + o.selector(c); + for (var g = 0; g < f.length; g++) { + var m = f[g]; + o.css(m.name, m.val); + } + a(); + } + return o; + }, + fromString: function (e) { + var t = this; + return t.resetToDefault(), t.appendFromString(e), t; + }, + }, + ta = {}; + !(function () { + var e = q, + t = X, + n = K, + r = function (e) { + return '^' + e + '\\s*\\(\\s*([\\w\\.]+)\\s*\\)$'; + }, + o = function (r) { + var o = e + '|\\w+|' + t + '|' + n + '|\\#[0-9a-fA-F]{3}|\\#[0-9a-fA-F]{6}'; + return ( + '^' + + r + + '\\s*\\(([\\w\\.]+)\\s*\\,\\s*(' + + e + + ')\\s*\\,\\s*(' + + e + + ')\\s*,\\s*(' + + o + + ')\\s*\\,\\s*(' + + o + + ')\\)$' + ); + }, + i = ['^url\\s*\\(\\s*[\'"]?(.+?)[\'"]?\\s*\\)$', '^(none)$', '^(.+)$']; + ta.types = { + time: { number: !0, min: 0, units: 's|ms', implicitUnits: 'ms' }, + percent: { number: !0, min: 0, max: 100, units: '%', implicitUnits: '%' }, + percentages: { number: !0, min: 0, max: 100, units: '%', implicitUnits: '%', multiple: !0 }, + zeroOneNumber: { number: !0, min: 0, max: 1, unitless: !0 }, + zeroOneNumbers: { number: !0, min: 0, max: 1, unitless: !0, multiple: !0 }, + nOneOneNumber: { number: !0, min: -1, max: 1, unitless: !0 }, + nonNegativeInt: { number: !0, min: 0, integer: !0, unitless: !0 }, + position: { enums: ['parent', 'origin'] }, + nodeSize: { number: !0, min: 0, enums: ['label'] }, + number: { number: !0, unitless: !0 }, + numbers: { number: !0, unitless: !0, multiple: !0 }, + positiveNumber: { number: !0, unitless: !0, min: 0, strictMin: !0 }, + size: { number: !0, min: 0 }, + bidirectionalSize: { number: !0 }, + bidirectionalSizeMaybePercent: { number: !0, allowPercent: !0 }, + bidirectionalSizes: { number: !0, multiple: !0 }, + sizeMaybePercent: { number: !0, min: 0, allowPercent: !0 }, + axisDirection: { enums: ['horizontal', 'leftward', 'rightward', 'vertical', 'upward', 'downward', 'auto'] }, + paddingRelativeTo: { enums: ['width', 'height', 'average', 'min', 'max'] }, + bgWH: { number: !0, min: 0, allowPercent: !0, enums: ['auto'], multiple: !0 }, + bgPos: { number: !0, allowPercent: !0, multiple: !0 }, + bgRelativeTo: { enums: ['inner', 'include-padding'], multiple: !0 }, + bgRepeat: { enums: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'], multiple: !0 }, + bgFit: { enums: ['none', 'contain', 'cover'], multiple: !0 }, + bgCrossOrigin: { enums: ['anonymous', 'use-credentials'], multiple: !0 }, + bgClip: { enums: ['none', 'node'], multiple: !0 }, + bgContainment: { enums: ['inside', 'over'], multiple: !0 }, + color: { color: !0 }, + colors: { color: !0, multiple: !0 }, + fill: { enums: ['solid', 'linear-gradient', 'radial-gradient'] }, + bool: { enums: ['yes', 'no'] }, + bools: { enums: ['yes', 'no'], multiple: !0 }, + lineStyle: { enums: ['solid', 'dotted', 'dashed'] }, + lineCap: { enums: ['butt', 'round', 'square'] }, + borderStyle: { enums: ['solid', 'dotted', 'dashed', 'double'] }, + curveStyle: { + enums: ['bezier', 'unbundled-bezier', 'haystack', 'segments', 'straight', 'straight-triangle', 'taxi'], + }, + fontFamily: { regex: '^([\\w- \\"]+(?:\\s*,\\s*[\\w- \\"]+)*)$' }, + fontStyle: { enums: ['italic', 'normal', 'oblique'] }, + fontWeight: { + enums: [ + 'normal', + 'bold', + 'bolder', + 'lighter', + '100', + '200', + '300', + '400', + '500', + '600', + '800', + '900', + 100, + 200, + 300, + 400, + 500, + 600, + 700, + 800, + 900, + ], + }, + textDecoration: { enums: ['none', 'underline', 'overline', 'line-through'] }, + textTransform: { enums: ['none', 'uppercase', 'lowercase'] }, + textWrap: { enums: ['none', 'wrap', 'ellipsis'] }, + textOverflowWrap: { enums: ['whitespace', 'anywhere'] }, + textBackgroundShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle'] }, + nodeShape: { + enums: [ + 'rectangle', + 'roundrectangle', + 'round-rectangle', + 'cutrectangle', + 'cut-rectangle', + 'bottomroundrectangle', + 'bottom-round-rectangle', + 'barrel', + 'ellipse', + 'triangle', + 'round-triangle', + 'square', + 'pentagon', + 'round-pentagon', + 'hexagon', + 'round-hexagon', + 'concavehexagon', + 'concave-hexagon', + 'heptagon', + 'round-heptagon', + 'octagon', + 'round-octagon', + 'tag', + 'round-tag', + 'star', + 'diamond', + 'round-diamond', + 'vee', + 'rhomboid', + 'polygon', + ], + }, + overlayShape: { enums: ['roundrectangle', 'round-rectangle', 'ellipse'] }, + compoundIncludeLabels: { enums: ['include', 'exclude'] }, + arrowShape: { + enums: [ + 'tee', + 'triangle', + 'triangle-tee', + 'circle-triangle', + 'triangle-cross', + 'triangle-backcurve', + 'vee', + 'square', + 'circle', + 'diamond', + 'chevron', + 'none', + ], + }, + arrowFill: { enums: ['filled', 'hollow'] }, + display: { enums: ['element', 'none'] }, + visibility: { enums: ['hidden', 'visible'] }, + zCompoundDepth: { enums: ['bottom', 'orphan', 'auto', 'top'] }, + zIndexCompare: { enums: ['auto', 'manual'] }, + valign: { enums: ['top', 'center', 'bottom'] }, + halign: { enums: ['left', 'center', 'right'] }, + justification: { enums: ['left', 'center', 'right', 'auto'] }, + text: { string: !0 }, + data: { mapping: !0, regex: r('data') }, + layoutData: { mapping: !0, regex: r('layoutData') }, + scratch: { mapping: !0, regex: r('scratch') }, + mapData: { mapping: !0, regex: o('mapData') }, + mapLayoutData: { mapping: !0, regex: o('mapLayoutData') }, + mapScratch: { mapping: !0, regex: o('mapScratch') }, + fn: { mapping: !0, fn: !0 }, + url: { regexes: i, singleRegexMatchValue: !0 }, + urls: { regexes: i, singleRegexMatchValue: !0, multiple: !0 }, + propList: { propList: !0 }, + angle: { number: !0, units: 'deg|rad', implicitUnits: 'rad' }, + textRotation: { number: !0, units: 'deg|rad', implicitUnits: 'rad', enums: ['none', 'autorotate'] }, + polygonPointList: { number: !0, multiple: !0, evenMultiple: !0, min: -1, max: 1, unitless: !0 }, + edgeDistances: { enums: ['intersection', 'node-position'] }, + edgeEndpoint: { + number: !0, + multiple: !0, + units: '%|px|em|deg|rad', + implicitUnits: 'px', + enums: [ + 'inside-to-node', + 'outside-to-node', + 'outside-to-node-or-label', + 'outside-to-line', + 'outside-to-line-or-label', + ], + singleEnum: !0, + validate: function (e, t) { + switch (e.length) { + case 2: + return 'deg' !== t[0] && 'rad' !== t[0] && 'deg' !== t[1] && 'rad' !== t[1]; + case 1: + return j(e[0]) || 'deg' === t[0] || 'rad' === t[0]; + default: + return !1; + } + }, + }, + easing: { + regexes: [ + '^(spring)\\s*\\(\\s*(' + e + ')\\s*,\\s*(' + e + ')\\s*\\)$', + '^(cubic-bezier)\\s*\\(\\s*(' + + e + + ')\\s*,\\s*(' + + e + + ')\\s*,\\s*(' + + e + + ')\\s*,\\s*(' + + e + + ')\\s*\\)$', + ], + enums: [ + 'linear', + 'ease', + 'ease-in', + 'ease-out', + 'ease-in-out', + 'ease-in-sine', + 'ease-out-sine', + 'ease-in-out-sine', + 'ease-in-quad', + 'ease-out-quad', + 'ease-in-out-quad', + 'ease-in-cubic', + 'ease-out-cubic', + 'ease-in-out-cubic', + 'ease-in-quart', + 'ease-out-quart', + 'ease-in-out-quart', + 'ease-in-quint', + 'ease-out-quint', + 'ease-in-out-quint', + 'ease-in-expo', + 'ease-out-expo', + 'ease-in-out-expo', + 'ease-in-circ', + 'ease-out-circ', + 'ease-in-out-circ', + ], + }, + gradientDirection: { + enums: [ + 'to-bottom', + 'to-top', + 'to-left', + 'to-right', + 'to-bottom-right', + 'to-bottom-left', + 'to-top-right', + 'to-top-left', + 'to-right-bottom', + 'to-left-bottom', + 'to-right-top', + 'to-left-top', + ], + }, + boundsExpansion: { + number: !0, + multiple: !0, + min: 0, + validate: function (e) { + var t = e.length; + return 1 === t || 2 === t || 4 === t; + }, + }, + }; + var a = { + zeroNonZero: function (e, t) { + return ((null == e || null == t) && e !== t) || (0 == e && 0 != t) || (0 != e && 0 == t); + }, + any: function (e, t) { + return e != t; + }, + emptyNonEmpty: function (e, t) { + var n = F(e), + r = F(t); + return (n && !r) || (!n && r); + }, + }, + s = ta.types, + l = [ + { name: 'label', type: s.text, triggersBounds: a.any, triggersZOrder: a.emptyNonEmpty }, + { name: 'text-rotation', type: s.textRotation, triggersBounds: a.any }, + { name: 'text-margin-x', type: s.bidirectionalSize, triggersBounds: a.any }, + { name: 'text-margin-y', type: s.bidirectionalSize, triggersBounds: a.any }, + ], + c = [ + { name: 'source-label', type: s.text, triggersBounds: a.any }, + { name: 'source-text-rotation', type: s.textRotation, triggersBounds: a.any }, + { name: 'source-text-margin-x', type: s.bidirectionalSize, triggersBounds: a.any }, + { name: 'source-text-margin-y', type: s.bidirectionalSize, triggersBounds: a.any }, + { name: 'source-text-offset', type: s.size, triggersBounds: a.any }, + ], + u = [ + { name: 'target-label', type: s.text, triggersBounds: a.any }, + { name: 'target-text-rotation', type: s.textRotation, triggersBounds: a.any }, + { name: 'target-text-margin-x', type: s.bidirectionalSize, triggersBounds: a.any }, + { name: 'target-text-margin-y', type: s.bidirectionalSize, triggersBounds: a.any }, + { name: 'target-text-offset', type: s.size, triggersBounds: a.any }, + ], + d = [ + { name: 'font-family', type: s.fontFamily, triggersBounds: a.any }, + { name: 'font-style', type: s.fontStyle, triggersBounds: a.any }, + { name: 'font-weight', type: s.fontWeight, triggersBounds: a.any }, + { name: 'font-size', type: s.size, triggersBounds: a.any }, + { name: 'text-transform', type: s.textTransform, triggersBounds: a.any }, + { name: 'text-wrap', type: s.textWrap, triggersBounds: a.any }, + { name: 'text-overflow-wrap', type: s.textOverflowWrap, triggersBounds: a.any }, + { name: 'text-max-width', type: s.size, triggersBounds: a.any }, + { name: 'text-outline-width', type: s.size, triggersBounds: a.any }, + { name: 'line-height', type: s.positiveNumber, triggersBounds: a.any }, + ], + f = [ + { name: 'text-valign', type: s.valign, triggersBounds: a.any }, + { name: 'text-halign', type: s.halign, triggersBounds: a.any }, + { name: 'color', type: s.color }, + { name: 'text-outline-color', type: s.color }, + { name: 'text-outline-opacity', type: s.zeroOneNumber }, + { name: 'text-background-color', type: s.color }, + { name: 'text-background-opacity', type: s.zeroOneNumber }, + { name: 'text-background-padding', type: s.size, triggersBounds: a.any }, + { name: 'text-border-opacity', type: s.zeroOneNumber }, + { name: 'text-border-color', type: s.color }, + { name: 'text-border-width', type: s.size, triggersBounds: a.any }, + { name: 'text-border-style', type: s.borderStyle, triggersBounds: a.any }, + { name: 'text-background-shape', type: s.textBackgroundShape, triggersBounds: a.any }, + { name: 'text-justification', type: s.justification }, + ], + h = [ + { name: 'events', type: s.bool }, + { name: 'text-events', type: s.bool }, + ], + p = [ + { + name: 'display', + type: s.display, + triggersZOrder: a.any, + triggersBounds: a.any, + triggersBoundsOfParallelBeziers: !0, + }, + { name: 'visibility', type: s.visibility, triggersZOrder: a.any }, + { name: 'opacity', type: s.zeroOneNumber, triggersZOrder: a.zeroNonZero }, + { name: 'text-opacity', type: s.zeroOneNumber }, + { name: 'min-zoomed-font-size', type: s.size }, + { name: 'z-compound-depth', type: s.zCompoundDepth, triggersZOrder: a.any }, + { name: 'z-index-compare', type: s.zIndexCompare, triggersZOrder: a.any }, + { name: 'z-index', type: s.nonNegativeInt, triggersZOrder: a.any }, + ], + v = [ + { name: 'overlay-padding', type: s.size, triggersBounds: a.any }, + { name: 'overlay-color', type: s.color }, + { name: 'overlay-opacity', type: s.zeroOneNumber, triggersBounds: a.zeroNonZero }, + { name: 'overlay-shape', type: s.overlayShape, triggersBounds: a.any }, + ], + g = [ + { name: 'underlay-padding', type: s.size, triggersBounds: a.any }, + { name: 'underlay-color', type: s.color }, + { name: 'underlay-opacity', type: s.zeroOneNumber, triggersBounds: a.zeroNonZero }, + { name: 'underlay-shape', type: s.overlayShape, triggersBounds: a.any }, + ], + m = [ + { name: 'transition-property', type: s.propList }, + { name: 'transition-duration', type: s.time }, + { name: 'transition-delay', type: s.time }, + { name: 'transition-timing-function', type: s.easing }, + ], + y = function (e, t) { + return 'label' === t.value ? -e.poolIndex() : t.pfValue; + }, + b = [ + { name: 'height', type: s.nodeSize, triggersBounds: a.any, hashOverride: y }, + { name: 'width', type: s.nodeSize, triggersBounds: a.any, hashOverride: y }, + { name: 'shape', type: s.nodeShape, triggersBounds: a.any }, + { name: 'shape-polygon-points', type: s.polygonPointList, triggersBounds: a.any }, + { name: 'background-color', type: s.color }, + { name: 'background-fill', type: s.fill }, + { name: 'background-opacity', type: s.zeroOneNumber }, + { name: 'background-blacken', type: s.nOneOneNumber }, + { name: 'background-gradient-stop-colors', type: s.colors }, + { name: 'background-gradient-stop-positions', type: s.percentages }, + { name: 'background-gradient-direction', type: s.gradientDirection }, + { name: 'padding', type: s.sizeMaybePercent, triggersBounds: a.any }, + { name: 'padding-relative-to', type: s.paddingRelativeTo, triggersBounds: a.any }, + { name: 'bounds-expansion', type: s.boundsExpansion, triggersBounds: a.any }, + ], + x = [ + { name: 'border-color', type: s.color }, + { name: 'border-opacity', type: s.zeroOneNumber }, + { name: 'border-width', type: s.size, triggersBounds: a.any }, + { name: 'border-style', type: s.borderStyle }, + ], + w = [ + { name: 'background-image', type: s.urls }, + { name: 'background-image-crossorigin', type: s.bgCrossOrigin }, + { name: 'background-image-opacity', type: s.zeroOneNumbers }, + { name: 'background-image-containment', type: s.bgContainment }, + { name: 'background-image-smoothing', type: s.bools }, + { name: 'background-position-x', type: s.bgPos }, + { name: 'background-position-y', type: s.bgPos }, + { name: 'background-width-relative-to', type: s.bgRelativeTo }, + { name: 'background-height-relative-to', type: s.bgRelativeTo }, + { name: 'background-repeat', type: s.bgRepeat }, + { name: 'background-fit', type: s.bgFit }, + { name: 'background-clip', type: s.bgClip }, + { name: 'background-width', type: s.bgWH }, + { name: 'background-height', type: s.bgWH }, + { name: 'background-offset-x', type: s.bgPos }, + { name: 'background-offset-y', type: s.bgPos }, + ], + E = [ + { name: 'position', type: s.position, triggersBounds: a.any }, + { name: 'compound-sizing-wrt-labels', type: s.compoundIncludeLabels, triggersBounds: a.any }, + { name: 'min-width', type: s.size, triggersBounds: a.any }, + { name: 'min-width-bias-left', type: s.sizeMaybePercent, triggersBounds: a.any }, + { name: 'min-width-bias-right', type: s.sizeMaybePercent, triggersBounds: a.any }, + { name: 'min-height', type: s.size, triggersBounds: a.any }, + { name: 'min-height-bias-top', type: s.sizeMaybePercent, triggersBounds: a.any }, + { name: 'min-height-bias-bottom', type: s.sizeMaybePercent, triggersBounds: a.any }, + ], + k = [ + { name: 'line-style', type: s.lineStyle }, + { name: 'line-color', type: s.color }, + { name: 'line-fill', type: s.fill }, + { name: 'line-cap', type: s.lineCap }, + { name: 'line-opacity', type: s.zeroOneNumber }, + { name: 'line-dash-pattern', type: s.numbers }, + { name: 'line-dash-offset', type: s.number }, + { name: 'line-gradient-stop-colors', type: s.colors }, + { name: 'line-gradient-stop-positions', type: s.percentages }, + { name: 'curve-style', type: s.curveStyle, triggersBounds: a.any, triggersBoundsOfParallelBeziers: !0 }, + { name: 'haystack-radius', type: s.zeroOneNumber, triggersBounds: a.any }, + { name: 'source-endpoint', type: s.edgeEndpoint, triggersBounds: a.any }, + { name: 'target-endpoint', type: s.edgeEndpoint, triggersBounds: a.any }, + { name: 'control-point-step-size', type: s.size, triggersBounds: a.any }, + { name: 'control-point-distances', type: s.bidirectionalSizes, triggersBounds: a.any }, + { name: 'control-point-weights', type: s.numbers, triggersBounds: a.any }, + { name: 'segment-distances', type: s.bidirectionalSizes, triggersBounds: a.any }, + { name: 'segment-weights', type: s.numbers, triggersBounds: a.any }, + { name: 'taxi-turn', type: s.bidirectionalSizeMaybePercent, triggersBounds: a.any }, + { name: 'taxi-turn-min-distance', type: s.size, triggersBounds: a.any }, + { name: 'taxi-direction', type: s.axisDirection, triggersBounds: a.any }, + { name: 'edge-distances', type: s.edgeDistances, triggersBounds: a.any }, + { name: 'arrow-scale', type: s.positiveNumber, triggersBounds: a.any }, + { name: 'loop-direction', type: s.angle, triggersBounds: a.any }, + { name: 'loop-sweep', type: s.angle, triggersBounds: a.any }, + { name: 'source-distance-from-node', type: s.size, triggersBounds: a.any }, + { name: 'target-distance-from-node', type: s.size, triggersBounds: a.any }, + ], + _ = [ + { name: 'ghost', type: s.bool, triggersBounds: a.any }, + { name: 'ghost-offset-x', type: s.bidirectionalSize, triggersBounds: a.any }, + { name: 'ghost-offset-y', type: s.bidirectionalSize, triggersBounds: a.any }, + { name: 'ghost-opacity', type: s.zeroOneNumber }, + ], + S = [ + { name: 'selection-box-color', type: s.color }, + { name: 'selection-box-opacity', type: s.zeroOneNumber }, + { name: 'selection-box-border-color', type: s.color }, + { name: 'selection-box-border-width', type: s.size }, + { name: 'active-bg-color', type: s.color }, + { name: 'active-bg-opacity', type: s.zeroOneNumber }, + { name: 'active-bg-size', type: s.size }, + { name: 'outside-texture-bg-color', type: s.color }, + { name: 'outside-texture-bg-opacity', type: s.zeroOneNumber }, + ], + P = []; + (ta.pieBackgroundN = 16), P.push({ name: 'pie-size', type: s.sizeMaybePercent }); + for (var C = 1; C <= ta.pieBackgroundN; C++) + P.push({ name: 'pie-' + C + '-background-color', type: s.color }), + P.push({ name: 'pie-' + C + '-background-size', type: s.percent }), + P.push({ name: 'pie-' + C + '-background-opacity', type: s.zeroOneNumber }); + var T = [], + D = (ta.arrowPrefixes = ['source', 'mid-source', 'target', 'mid-target']); + [ + { name: 'arrow-shape', type: s.arrowShape, triggersBounds: a.any }, + { name: 'arrow-color', type: s.color }, + { name: 'arrow-fill', type: s.arrowFill }, + ].forEach(function (e) { + D.forEach(function (t) { + var n = t + '-' + e.name, + r = e.type, + o = e.triggersBounds; + T.push({ name: n, type: r, triggersBounds: o }); + }); + }, {}); + var N = (ta.properties = [].concat(h, m, p, v, g, _, f, d, l, c, u, b, x, w, P, E, k, T, S)), + M = (ta.propertyGroups = { + behavior: h, + transition: m, + visibility: p, + overlay: v, + underlay: g, + ghost: _, + commonLabel: f, + labelDimensions: d, + mainLabel: l, + sourceLabel: c, + targetLabel: u, + nodeBody: b, + nodeBorder: x, + backgroundImage: w, + pie: P, + compound: E, + edgeLine: k, + edgeArrow: T, + core: S, + }), + O = (ta.propertyGroupNames = {}); + (ta.propertyGroupKeys = Object.keys(M)).forEach(function (e) { + (O[e] = M[e].map(function (e) { + return e.name; + })), + M[e].forEach(function (t) { + return (t.groupKey = e); + }); + }); + var A = (ta.aliases = [ + { name: 'content', pointsTo: 'label' }, + { name: 'control-point-distance', pointsTo: 'control-point-distances' }, + { name: 'control-point-weight', pointsTo: 'control-point-weights' }, + { name: 'edge-text-rotation', pointsTo: 'text-rotation' }, + { name: 'padding-left', pointsTo: 'padding' }, + { name: 'padding-right', pointsTo: 'padding' }, + { name: 'padding-top', pointsTo: 'padding' }, + { name: 'padding-bottom', pointsTo: 'padding' }, + ]); + ta.propertyNames = N.map(function (e) { + return e.name; + }); + for (var R = 0; R < N.length; R++) { + var L = N[R]; + N[L.name] = L; + } + for (var I = 0; I < A.length; I++) { + var B = A[I], + z = N[B.pointsTo], + V = { name: B.name, alias: !0, pointsTo: z }; + N.push(V), (N[B.name] = V); + } + })(), + (ta.getDefaultProperty = function (e) { + return this.getDefaultProperties()[e]; + }), + (ta.getDefaultProperties = function () { + var e = this._private; + if (null != e.defaultProperties) return e.defaultProperties; + for ( + var t = Q( + { + 'selection-box-color': '#ddd', + 'selection-box-opacity': 0.65, + 'selection-box-border-color': '#aaa', + 'selection-box-border-width': 1, + 'active-bg-color': 'black', + 'active-bg-opacity': 0.15, + 'active-bg-size': 30, + 'outside-texture-bg-color': '#000', + 'outside-texture-bg-opacity': 0.125, + events: 'yes', + 'text-events': 'no', + 'text-valign': 'top', + 'text-halign': 'center', + 'text-justification': 'auto', + 'line-height': 1, + color: '#000', + 'text-outline-color': '#000', + 'text-outline-width': 0, + 'text-outline-opacity': 1, + 'text-opacity': 1, + 'text-decoration': 'none', + 'text-transform': 'none', + 'text-wrap': 'none', + 'text-overflow-wrap': 'whitespace', + 'text-max-width': 9999, + 'text-background-color': '#000', + 'text-background-opacity': 0, + 'text-background-shape': 'rectangle', + 'text-background-padding': 0, + 'text-border-opacity': 0, + 'text-border-width': 0, + 'text-border-style': 'solid', + 'text-border-color': '#000', + 'font-family': 'Helvetica Neue, Helvetica, sans-serif', + 'font-style': 'normal', + 'font-weight': 'normal', + 'font-size': 16, + 'min-zoomed-font-size': 0, + 'text-rotation': 'none', + 'source-text-rotation': 'none', + 'target-text-rotation': 'none', + visibility: 'visible', + display: 'element', + opacity: 1, + 'z-compound-depth': 'auto', + 'z-index-compare': 'auto', + 'z-index': 0, + label: '', + 'text-margin-x': 0, + 'text-margin-y': 0, + 'source-label': '', + 'source-text-offset': 0, + 'source-text-margin-x': 0, + 'source-text-margin-y': 0, + 'target-label': '', + 'target-text-offset': 0, + 'target-text-margin-x': 0, + 'target-text-margin-y': 0, + 'overlay-opacity': 0, + 'overlay-color': '#000', + 'overlay-padding': 10, + 'overlay-shape': 'round-rectangle', + 'underlay-opacity': 0, + 'underlay-color': '#000', + 'underlay-padding': 10, + 'underlay-shape': 'round-rectangle', + 'transition-property': 'none', + 'transition-duration': 0, + 'transition-delay': 0, + 'transition-timing-function': 'linear', + 'background-blacken': 0, + 'background-color': '#999', + 'background-fill': 'solid', + 'background-opacity': 1, + 'background-image': 'none', + 'background-image-crossorigin': 'anonymous', + 'background-image-opacity': 1, + 'background-image-containment': 'inside', + 'background-image-smoothing': 'yes', + 'background-position-x': '50%', + 'background-position-y': '50%', + 'background-offset-x': 0, + 'background-offset-y': 0, + 'background-width-relative-to': 'include-padding', + 'background-height-relative-to': 'include-padding', + 'background-repeat': 'no-repeat', + 'background-fit': 'none', + 'background-clip': 'node', + 'background-width': 'auto', + 'background-height': 'auto', + 'border-color': '#000', + 'border-opacity': 1, + 'border-width': 0, + 'border-style': 'solid', + height: 30, + width: 30, + shape: 'ellipse', + 'shape-polygon-points': '-1, -1, 1, -1, 1, 1, -1, 1', + 'bounds-expansion': 0, + 'background-gradient-direction': 'to-bottom', + 'background-gradient-stop-colors': '#999', + 'background-gradient-stop-positions': '0%', + ghost: 'no', + 'ghost-offset-y': 0, + 'ghost-offset-x': 0, + 'ghost-opacity': 0, + padding: 0, + 'padding-relative-to': 'width', + position: 'origin', + 'compound-sizing-wrt-labels': 'include', + 'min-width': 0, + 'min-width-bias-left': 0, + 'min-width-bias-right': 0, + 'min-height': 0, + 'min-height-bias-top': 0, + 'min-height-bias-bottom': 0, + }, + { 'pie-size': '100%' }, + [ + { name: 'pie-{{i}}-background-color', value: 'black' }, + { name: 'pie-{{i}}-background-size', value: '0%' }, + { name: 'pie-{{i}}-background-opacity', value: 1 }, + ].reduce(function (e, t) { + for (var n = 1; n <= ta.pieBackgroundN; n++) { + var r = t.name.replace('{{i}}', n), + o = t.value; + e[r] = o; + } + return e; + }, {}), + { + 'line-style': 'solid', + 'line-color': '#999', + 'line-fill': 'solid', + 'line-cap': 'butt', + 'line-opacity': 1, + 'line-gradient-stop-colors': '#999', + 'line-gradient-stop-positions': '0%', + 'control-point-step-size': 40, + 'control-point-weights': 0.5, + 'segment-weights': 0.5, + 'segment-distances': 20, + 'taxi-turn': '50%', + 'taxi-turn-min-distance': 10, + 'taxi-direction': 'auto', + 'edge-distances': 'intersection', + 'curve-style': 'haystack', + 'haystack-radius': 0, + 'arrow-scale': 1, + 'loop-direction': '-45deg', + 'loop-sweep': '-90deg', + 'source-distance-from-node': 0, + 'target-distance-from-node': 0, + 'source-endpoint': 'outside-to-node', + 'target-endpoint': 'outside-to-node', + 'line-dash-pattern': [6, 3], + 'line-dash-offset': 0, + }, + [ + { name: 'arrow-shape', value: 'none' }, + { name: 'arrow-color', value: '#999' }, + { name: 'arrow-fill', value: 'filled' }, + ].reduce(function (e, t) { + return ( + ta.arrowPrefixes.forEach(function (n) { + var r = n + '-' + t.name, + o = t.value; + e[r] = o; + }), + e + ); + }, {}), + ), + n = {}, + r = 0; + r < this.properties.length; + r++ + ) { + var o = this.properties[r]; + if (!o.pointsTo) { + var i = o.name, + a = t[i], + s = this.parse(i, a); + n[i] = s; + } + } + return (e.defaultProperties = n), e.defaultProperties; + }), + (ta.addDefaultStylesheet = function () { + this.selector(':parent') + .css({ + shape: 'rectangle', + padding: 10, + 'background-color': '#eee', + 'border-color': '#ccc', + 'border-width': 1, + }) + .selector('edge') + .css({ width: 3 }) + .selector(':loop') + .css({ 'curve-style': 'bezier' }) + .selector('edge:compound') + .css({ + 'curve-style': 'bezier', + 'source-endpoint': 'outside-to-line', + 'target-endpoint': 'outside-to-line', + }) + .selector(':selected') + .css({ + 'background-color': '#0169D9', + 'line-color': '#0169D9', + 'source-arrow-color': '#0169D9', + 'target-arrow-color': '#0169D9', + 'mid-source-arrow-color': '#0169D9', + 'mid-target-arrow-color': '#0169D9', + }) + .selector(':parent:selected') + .css({ 'background-color': '#CCE1F9', 'border-color': '#aec8e5' }) + .selector(':active') + .css({ 'overlay-color': 'black', 'overlay-padding': 10, 'overlay-opacity': 0.25 }), + (this.defaultLength = this.length); + }); + var na = { + parse: function (e, t, n, r) { + var o = this; + if (T(t)) return o.parseImplWarn(e, t, n, r); + var i, + a = ge(e, '' + t, n ? 't' : 'f', 'mapping' === r || !0 === r || !1 === r || null == r ? 'dontcare' : r), + s = (o.propCache = o.propCache || []); + return ( + (i = s[a]) || (i = s[a] = o.parseImplWarn(e, t, n, r)), + (n || 'mapping' === r) && (i = Te(i)) && (i.value = Te(i.value)), + i + ); + }, + parseImplWarn: function (e, t, n, r) { + var o = this.parseImpl(e, t, n, r); + return ( + o || null == t || je('The style property `'.concat(e, ': ').concat(t, '` is invalid')), + !o || + ('width' !== o.name && 'height' !== o.name) || + 'label' !== t || + je('The style value of `label` is deprecated for `' + o.name + '`'), + o + ); + }, + }; + na.parseImpl = function (e, t, n, r) { + var o = this; + e = G(e); + var i = o.properties[e], + a = t, + s = o.types; + if (!i) return null; + if (void 0 === t) return null; + i.alias && ((i = i.pointsTo), (e = i.name)); + var l = j(t); + l && (t = t.trim()); + var c, + u, + d = i.type; + if (!d) return null; + if (n && ('' === t || null === t)) return { name: e, value: t, bypass: !0, deleteBypass: !0 }; + if (T(t)) return { name: e, value: t, strValue: 'fn', mapped: s.fn, bypass: n }; + if (!l || r || t.length < 7 || 'a' !== t[1]); + else { + if (t.length >= 7 && 'd' === t[0] && (c = new RegExp(s.data.regex).exec(t))) { + if (n) return !1; + var f = s.data; + return { name: e, value: c, strValue: '' + t, mapped: f, field: c[1], bypass: n }; + } + if (t.length >= 10 && 'm' === t[0] && (u = new RegExp(s.mapData.regex).exec(t))) { + if (n) return !1; + if (d.multiple) return !1; + var h = s.mapData; + if (!d.color && !d.number) return !1; + var p = this.parse(e, u[4]); + if (!p || p.mapped) return !1; + var v = this.parse(e, u[5]); + if (!v || v.mapped) return !1; + if (p.pfValue === v.pfValue || p.strValue === v.strValue) + return ( + je( + '`' + + e + + ': ' + + t + + '` is not a valid mapper because the output range is zero; converting to `' + + e + + ': ' + + p.strValue + + '`', + ), + this.parse(e, p.strValue) + ); + if (d.color) { + var g = p.value, + m = v.value; + if ( + !( + g[0] !== m[0] || + g[1] !== m[1] || + g[2] !== m[2] || + (g[3] !== m[3] && ((null != g[3] && 1 !== g[3]) || (null != m[3] && 1 !== m[3]))) + ) + ) + return !1; + } + return { + name: e, + value: u, + strValue: '' + t, + mapped: h, + field: u[1], + fieldMin: parseFloat(u[2]), + fieldMax: parseFloat(u[3]), + valueMin: p.value, + valueMax: v.value, + bypass: n, + }; + } + } + if (d.multiple && 'multiple' !== r) { + var y; + if (((y = l ? t.split(/\s+/) : D(t) ? t : [t]), d.evenMultiple && y.length % 2 != 0)) return null; + for (var b = [], x = [], w = [], E = '', k = !1, _ = 0; _ < y.length; _++) { + var S = o.parse(e, y[_], n, 'multiple'); + (k = k || j(S.value)), + b.push(S.value), + w.push(null != S.pfValue ? S.pfValue : S.value), + x.push(S.units), + (E += (_ > 0 ? ' ' : '') + S.strValue); + } + return d.validate && !d.validate(b, x) + ? null + : d.singleEnum && k + ? 1 === b.length && j(b[0]) + ? { name: e, value: b[0], strValue: b[0], bypass: n } + : null + : { name: e, value: b, pfValue: w, strValue: E, bypass: n, units: x }; + } + var P, + C, + N = function () { + for (var r = 0; r < d.enums.length; r++) { + if (d.enums[r] === t) return { name: e, value: t, strValue: '' + t, bypass: n }; + } + return null; + }; + if (d.number) { + var O, + A = 'px'; + if ((d.units && (O = d.units), d.implicitUnits && (A = d.implicitUnits), !d.unitless)) + if (l) { + var R = 'px|em' + (d.allowPercent ? '|\\%' : ''); + O && (R = O); + var L = t.match('^(' + q + ')(' + R + ')?$'); + L && ((t = L[1]), (O = L[2] || A)); + } else (O && !d.implicitUnits) || (O = A); + if (((t = parseFloat(t)), isNaN(t) && void 0 === d.enums)) return null; + if (isNaN(t) && void 0 !== d.enums) return (t = a), N(); + if (d.integer && (!M((C = t)) || Math.floor(C) !== C)) return null; + if ( + (void 0 !== d.min && (t < d.min || (d.strictMin && t === d.min))) || + (void 0 !== d.max && (t > d.max || (d.strictMax && t === d.max))) + ) + return null; + var I = { name: e, value: t, strValue: '' + t + (O || ''), units: O, bypass: n }; + return ( + d.unitless || ('px' !== O && 'em' !== O) + ? (I.pfValue = t) + : (I.pfValue = 'px' !== O && O ? this.getEmSizeInPixels() * t : t), + ('ms' !== O && 's' !== O) || (I.pfValue = 'ms' === O ? t : 1e3 * t), + ('deg' !== O && 'rad' !== O) || (I.pfValue = 'rad' === O ? t : ((P = t), (Math.PI * P) / 180)), + '%' === O && (I.pfValue = t / 100), + I + ); + } + if (d.propList) { + var B = [], + F = '' + t; + if ('none' === F); + else { + for (var z = F.split(/\s*,\s*|\s+/), V = 0; V < z.length; V++) { + var H = z[V].trim(); + o.properties[H] ? B.push(H) : je('`' + H + '` is not a valid property name'); + } + if (0 === B.length) return null; + } + return { name: e, value: B, strValue: 0 === B.length ? 'none' : B.join(' '), bypass: n }; + } + if (d.color) { + var W = J(t); + return W + ? { name: e, value: W, pfValue: W, strValue: 'rgb(' + W[0] + ',' + W[1] + ',' + W[2] + ')', bypass: n } + : null; + } + if (d.regex || d.regexes) { + if (d.enums) { + var U = N(); + if (U) return U; + } + for (var Y = d.regexes ? d.regexes : [d.regex], X = 0; X < Y.length; X++) { + var $ = new RegExp(Y[X]).exec(t); + if ($) return { name: e, value: d.singleRegexMatchValue ? $[1] : $, strValue: '' + t, bypass: n }; + } + return null; + } + return d.string ? { name: e, value: '' + t, strValue: '' + t, bypass: n } : d.enums ? N() : null; + }; + var ra = function e(t) { + if (!(this instanceof e)) return new e(t); + I(t) + ? ((this._private = { cy: t, coreStyle: {} }), (this.length = 0), this.resetToDefault()) + : Pe('A style must have a core reference'); + }, + oa = ra.prototype; + (oa.instanceString = function () { + return 'style'; + }), + (oa.clear = function () { + for (var e = this._private, t = e.cy.elements(), n = 0; n < this.length; n++) this[n] = void 0; + return ( + (this.length = 0), + (e.contextStyles = {}), + (e.propDiffs = {}), + this.cleanElements(t, !0), + t.forEach(function (e) { + var t = e[0]._private; + (t.styleDirty = !0), (t.appliedInitStyle = !1); + }), + this + ); + }), + (oa.resetToDefault = function () { + return this.clear(), this.addDefaultStylesheet(), this; + }), + (oa.core = function (e) { + return this._private.coreStyle[e] || this.getDefaultProperty(e); + }), + (oa.selector = function (e) { + var t = 'core' === e ? null : new qr(e), + n = this.length++; + return (this[n] = { selector: t, properties: [], mappedProperties: [], index: n }), this; + }), + (oa.css = function () { + var e = arguments; + if (1 === e.length) + for (var t = e[0], n = 0; n < this.properties.length; n++) { + var r = this.properties[n], + o = t[r.name]; + void 0 === o && (o = t[H(r.name)]), void 0 !== o && this.cssRule(r.name, o); + } + else 2 === e.length && this.cssRule(e[0], e[1]); + return this; + }), + (oa.style = oa.css), + (oa.cssRule = function (e, t) { + var n = this.parse(e, t); + if (n) { + var r = this.length - 1; + this[r].properties.push(n), + (this[r].properties[n.name] = n), + n.name.match(/pie-(\d+)-background-size/) && n.value && (this._private.hasPie = !0), + n.mapped && this[r].mappedProperties.push(n), + !this[r].selector && (this._private.coreStyle[n.name] = n); + } + return this; + }), + (oa.append = function (e) { + return B(e) ? e.appendToStyle(this) : D(e) ? this.appendFromJson(e) : j(e) && this.appendFromString(e), this; + }), + (ra.fromJson = function (e, t) { + var n = new ra(e); + return n.fromJson(t), n; + }), + (ra.fromString = function (e, t) { + return new ra(e).fromString(t); + }), + [Xi, Ki, Zi, Qi, Ji, ea, ta, na].forEach(function (e) { + Q(oa, e); + }), + (ra.types = oa.types), + (ra.properties = oa.properties), + (ra.propertyGroups = oa.propertyGroups), + (ra.propertyGroupNames = oa.propertyGroupNames), + (ra.propertyGroupKeys = oa.propertyGroupKeys); + var ia = { + style: function (e) { + e && this.setStyle(e).update(); + return this._private.style; + }, + setStyle: function (e) { + var t = this._private; + return ( + B(e) + ? (t.style = e.generateStyle(this)) + : D(e) + ? (t.style = ra.fromJson(this, e)) + : j(e) + ? (t.style = ra.fromString(this, e)) + : (t.style = ra(this)), + t.style + ); + }, + updateStyle: function () { + this.mutableElements().updateStyle(); + }, + }, + aa = { + autolock: function (e) { + return void 0 === e ? this._private.autolock : ((this._private.autolock = !!e), this); + }, + autoungrabify: function (e) { + return void 0 === e ? this._private.autoungrabify : ((this._private.autoungrabify = !!e), this); + }, + autounselectify: function (e) { + return void 0 === e ? this._private.autounselectify : ((this._private.autounselectify = !!e), this); + }, + selectionType: function (e) { + var t = this._private; + return ( + null == t.selectionType && (t.selectionType = 'single'), + void 0 === e ? t.selectionType : (('additive' !== e && 'single' !== e) || (t.selectionType = e), this) + ); + }, + panningEnabled: function (e) { + return void 0 === e ? this._private.panningEnabled : ((this._private.panningEnabled = !!e), this); + }, + userPanningEnabled: function (e) { + return void 0 === e ? this._private.userPanningEnabled : ((this._private.userPanningEnabled = !!e), this); + }, + zoomingEnabled: function (e) { + return void 0 === e ? this._private.zoomingEnabled : ((this._private.zoomingEnabled = !!e), this); + }, + userZoomingEnabled: function (e) { + return void 0 === e ? this._private.userZoomingEnabled : ((this._private.userZoomingEnabled = !!e), this); + }, + boxSelectionEnabled: function (e) { + return void 0 === e ? this._private.boxSelectionEnabled : ((this._private.boxSelectionEnabled = !!e), this); + }, + pan: function () { + var e, + t, + n, + r, + o, + i = arguments, + a = this._private.pan; + switch (i.length) { + case 0: + return a; + case 1: + if (j(i[0])) return a[(e = i[0])]; + if (N(i[0])) { + if (!this._private.panningEnabled) return this; + (r = (n = i[0]).x), (o = n.y), M(r) && (a.x = r), M(o) && (a.y = o), this.emit('pan viewport'); + } + break; + case 2: + if (!this._private.panningEnabled) return this; + (t = i[1]), ('x' !== (e = i[0]) && 'y' !== e) || !M(t) || (a[e] = t), this.emit('pan viewport'); + } + return this.notify('viewport'), this; + }, + panBy: function (e, t) { + var n, + r, + o, + i, + a, + s = arguments, + l = this._private.pan; + if (!this._private.panningEnabled) return this; + switch (s.length) { + case 1: + N(e) && + ((i = (o = s[0]).x), (a = o.y), M(i) && (l.x += i), M(a) && (l.y += a), this.emit('pan viewport')); + break; + case 2: + (r = t), ('x' !== (n = e) && 'y' !== n) || !M(r) || (l[n] += r), this.emit('pan viewport'); + } + return this.notify('viewport'), this; + }, + fit: function (e, t) { + var n = this.getFitViewport(e, t); + if (n) { + var r = this._private; + (r.zoom = n.zoom), (r.pan = n.pan), this.emit('pan zoom viewport'), this.notify('viewport'); + } + return this; + }, + getFitViewport: function (e, t) { + if ( + (M(e) && void 0 === t && ((t = e), (e = void 0)), + this._private.panningEnabled && this._private.zoomingEnabled) + ) { + var n, r; + if (j(e)) { + var o = e; + e = this.$(o); + } else if (N((r = e)) && M(r.x1) && M(r.x2) && M(r.y1) && M(r.y2)) { + var i = e; + ((n = { x1: i.x1, y1: i.y1, x2: i.x2, y2: i.y2 }).w = n.x2 - n.x1), (n.h = n.y2 - n.y1); + } else A(e) || (e = this.mutableElements()); + if (!A(e) || !e.empty()) { + n = n || e.boundingBox(); + var a, + s = this.width(), + l = this.height(); + if ( + ((t = M(t) ? t : 0), + !isNaN(s) && !isNaN(l) && s > 0 && l > 0 && !isNaN(n.w) && !isNaN(n.h) && n.w > 0 && n.h > 0) + ) + return { + zoom: (a = + (a = + (a = Math.min((s - 2 * t) / n.w, (l - 2 * t) / n.h)) > this._private.maxZoom + ? this._private.maxZoom + : a) < this._private.minZoom + ? this._private.minZoom + : a), + pan: { x: (s - a * (n.x1 + n.x2)) / 2, y: (l - a * (n.y1 + n.y2)) / 2 }, + }; + } + } + }, + zoomRange: function (e, t) { + var n = this._private; + if (null == t) { + var r = e; + (e = r.min), (t = r.max); + } + return ( + M(e) && M(t) && e <= t + ? ((n.minZoom = e), (n.maxZoom = t)) + : M(e) && void 0 === t && e <= n.maxZoom + ? (n.minZoom = e) + : M(t) && void 0 === e && t >= n.minZoom && (n.maxZoom = t), + this + ); + }, + minZoom: function (e) { + return void 0 === e ? this._private.minZoom : this.zoomRange({ min: e }); + }, + maxZoom: function (e) { + return void 0 === e ? this._private.maxZoom : this.zoomRange({ max: e }); + }, + getZoomedViewport: function (e) { + var t, + n, + r = this._private, + o = r.pan, + i = r.zoom, + a = !1; + if ( + (r.zoomingEnabled || (a = !0), + M(e) + ? (n = e) + : N(e) && + ((n = e.level), + null != e.position + ? (t = rt(e.position, i, o)) + : null != e.renderedPosition && (t = e.renderedPosition), + null == t || r.panningEnabled || (a = !0)), + (n = (n = n > r.maxZoom ? r.maxZoom : n) < r.minZoom ? r.minZoom : n), + a || !M(n) || n === i || (null != t && (!M(t.x) || !M(t.y)))) + ) + return null; + if (null != t) { + var s = o, + l = i, + c = n; + return { + zoomed: !0, + panned: !0, + zoom: c, + pan: { x: (-c / l) * (t.x - s.x) + t.x, y: (-c / l) * (t.y - s.y) + t.y }, + }; + } + return { zoomed: !0, panned: !1, zoom: n, pan: o }; + }, + zoom: function (e) { + if (void 0 === e) return this._private.zoom; + var t = this.getZoomedViewport(e), + n = this._private; + return null != t && t.zoomed + ? ((n.zoom = t.zoom), + t.panned && ((n.pan.x = t.pan.x), (n.pan.y = t.pan.y)), + this.emit('zoom' + (t.panned ? ' pan' : '') + ' viewport'), + this.notify('viewport'), + this) + : this; + }, + viewport: function (e) { + var t = this._private, + n = !0, + r = !0, + o = [], + i = !1, + a = !1; + if (!e) return this; + if ((M(e.zoom) || (n = !1), N(e.pan) || (r = !1), !n && !r)) return this; + if (n) { + var s = e.zoom; + s < t.minZoom || s > t.maxZoom || !t.zoomingEnabled ? (i = !0) : ((t.zoom = s), o.push('zoom')); + } + if (r && (!i || !e.cancelOnFailedZoom) && t.panningEnabled) { + var l = e.pan; + M(l.x) && ((t.pan.x = l.x), (a = !1)), M(l.y) && ((t.pan.y = l.y), (a = !1)), a || o.push('pan'); + } + return o.length > 0 && (o.push('viewport'), this.emit(o.join(' ')), this.notify('viewport')), this; + }, + center: function (e) { + var t = this.getCenterPan(e); + return t && ((this._private.pan = t), this.emit('pan viewport'), this.notify('viewport')), this; + }, + getCenterPan: function (e, t) { + if (this._private.panningEnabled) { + if (j(e)) { + var n = e; + e = this.mutableElements().filter(n); + } else A(e) || (e = this.mutableElements()); + if (0 !== e.length) { + var r = e.boundingBox(), + o = this.width(), + i = this.height(); + return { + x: (o - (t = void 0 === t ? this._private.zoom : t) * (r.x1 + r.x2)) / 2, + y: (i - t * (r.y1 + r.y2)) / 2, + }; + } + } + }, + reset: function () { + return this._private.panningEnabled && this._private.zoomingEnabled + ? (this.viewport({ pan: { x: 0, y: 0 }, zoom: 1 }), this) + : this; + }, + invalidateSize: function () { + this._private.sizeCache = null; + }, + size: function () { + var e, + t, + n = this._private, + r = n.container; + return (n.sizeCache = + n.sizeCache || + (r + ? ((e = w.getComputedStyle(r)), + (t = function (t) { + return parseFloat(e.getPropertyValue(t)); + }), + { + width: r.clientWidth - t('padding-left') - t('padding-right'), + height: r.clientHeight - t('padding-top') - t('padding-bottom'), + }) + : { width: 1, height: 1 })); + }, + width: function () { + return this.size().width; + }, + height: function () { + return this.size().height; + }, + extent: function () { + var e = this._private.pan, + t = this._private.zoom, + n = this.renderedExtent(), + r = { x1: (n.x1 - e.x) / t, x2: (n.x2 - e.x) / t, y1: (n.y1 - e.y) / t, y2: (n.y2 - e.y) / t }; + return (r.w = r.x2 - r.x1), (r.h = r.y2 - r.y1), r; + }, + renderedExtent: function () { + var e = this.width(), + t = this.height(); + return { x1: 0, y1: 0, x2: e, y2: t, w: e, h: t }; + }, + multiClickDebounceTime: function (e) { + return e ? ((this._private.multiClickDebounceTime = e), this) : this._private.multiClickDebounceTime; + }, + }; + (aa.centre = aa.center), (aa.autolockNodes = aa.autolock), (aa.autoungrabifyNodes = aa.autoungrabify); + var sa = { + data: lr.data({ + field: 'data', + bindingEvent: 'data', + allowBinding: !0, + allowSetting: !0, + settingEvent: 'data', + settingTriggersEvent: !0, + triggerFnName: 'trigger', + allowGetting: !0, + updateStyle: !0, + }), + removeData: lr.removeData({ + field: 'data', + event: 'data', + triggerFnName: 'trigger', + triggerEvent: !0, + updateStyle: !0, + }), + scratch: lr.data({ + field: 'scratch', + bindingEvent: 'scratch', + allowBinding: !0, + allowSetting: !0, + settingEvent: 'scratch', + settingTriggersEvent: !0, + triggerFnName: 'trigger', + allowGetting: !0, + updateStyle: !0, + }), + removeScratch: lr.removeData({ + field: 'scratch', + event: 'scratch', + triggerFnName: 'trigger', + triggerEvent: !0, + updateStyle: !0, + }), + }; + (sa.attr = sa.data), (sa.removeAttr = sa.removeData); + var la = function (e) { + var t = this, + n = (e = Q({}, e)).container; + n && !O(n) && O(n[0]) && (n = n[0]); + var r = n ? n._cyreg : null; + (r = r || {}) && r.cy && (r.cy.destroy(), (r = {})); + var o = (r.readies = r.readies || []); + n && (n._cyreg = r), (r.cy = t); + var i = void 0 !== w && void 0 !== n && !e.headless, + a = e; + (a.layout = Q({ name: i ? 'grid' : 'null' }, a.layout)), + (a.renderer = Q({ name: i ? 'canvas' : 'null' }, a.renderer)); + var s = function (e, t, n) { + return void 0 !== t ? t : void 0 !== n ? n : e; + }, + l = (this._private = { + container: n, + ready: !1, + options: a, + elements: new _i(this), + listeners: [], + aniEles: new _i(this), + data: a.data || {}, + scratch: {}, + layout: null, + renderer: null, + destroyed: !1, + notificationsEnabled: !0, + minZoom: 1e-50, + maxZoom: 1e50, + zoomingEnabled: s(!0, a.zoomingEnabled), + userZoomingEnabled: s(!0, a.userZoomingEnabled), + panningEnabled: s(!0, a.panningEnabled), + userPanningEnabled: s(!0, a.userPanningEnabled), + boxSelectionEnabled: s(!0, a.boxSelectionEnabled), + autolock: s(!1, a.autolock, a.autolockNodes), + autoungrabify: s(!1, a.autoungrabify, a.autoungrabifyNodes), + autounselectify: s(!1, a.autounselectify), + styleEnabled: void 0 === a.styleEnabled ? i : a.styleEnabled, + zoom: M(a.zoom) ? a.zoom : 1, + pan: { x: N(a.pan) && M(a.pan.x) ? a.pan.x : 0, y: N(a.pan) && M(a.pan.y) ? a.pan.y : 0 }, + animation: { current: [], queue: [] }, + hasCompoundNodes: !1, + multiClickDebounceTime: s(250, a.multiClickDebounceTime), + }); + this.createEmitter(), this.selectionType(a.selectionType), this.zoomRange({ min: a.minZoom, max: a.maxZoom }); + l.styleEnabled && t.setStyle([]); + var c = Q({}, a, a.renderer); + t.initRenderer(c); + !(function (e, t) { + if (e.some(z)) return nr.all(e).then(t); + t(e); + })([a.style, a.elements], function (e) { + var n = e[0], + i = e[1]; + l.styleEnabled && t.style().append(n), + (function (e, n, r) { + t.notifications(!1); + var o = t.mutableElements(); + o.length > 0 && o.remove(), + null != e && (N(e) || D(e)) && t.add(e), + t + .one('layoutready', function (e) { + t.notifications(!0), t.emit(e), t.one('load', n), t.emitAndNotify('load'); + }) + .one('layoutstop', function () { + t.one('done', r), t.emit('done'); + }); + var i = Q({}, t._private.options.layout); + (i.eles = t.elements()), t.layout(i).run(); + })( + i, + function () { + t.startAnimationLoop(), (l.ready = !0), T(a.ready) && t.on('ready', a.ready); + for (var e = 0; e < o.length; e++) { + var n = o[e]; + t.on('ready', n); + } + r && (r.readies = []), t.emit('ready'); + }, + a.done, + ); + }); + }, + ca = la.prototype; + Q(ca, { + instanceString: function () { + return 'core'; + }, + isReady: function () { + return this._private.ready; + }, + destroyed: function () { + return this._private.destroyed; + }, + ready: function (e) { + return this.isReady() ? this.emitter().emit('ready', [], e) : this.on('ready', e), this; + }, + destroy: function () { + var e = this; + if (!e.destroyed()) + return e.stopAnimationLoop(), e.destroyRenderer(), this.emit('destroy'), (e._private.destroyed = !0), e; + }, + hasElementWithId: function (e) { + return this._private.elements.hasElementWithId(e); + }, + getElementById: function (e) { + return this._private.elements.getElementById(e); + }, + hasCompoundNodes: function () { + return this._private.hasCompoundNodes; + }, + headless: function () { + return this._private.renderer.isHeadless(); + }, + styleEnabled: function () { + return this._private.styleEnabled; + }, + addToPool: function (e) { + return this._private.elements.merge(e), this; + }, + removeFromPool: function (e) { + return this._private.elements.unmerge(e), this; + }, + container: function () { + return this._private.container || null; + }, + mount: function (e) { + if (null != e) { + var t = this, + n = t._private, + r = n.options; + return ( + !O(e) && O(e[0]) && (e = e[0]), + t.stopAnimationLoop(), + t.destroyRenderer(), + (n.container = e), + (n.styleEnabled = !0), + t.invalidateSize(), + t.initRenderer(Q({}, r, r.renderer, { name: 'null' === r.renderer.name ? 'canvas' : r.renderer.name })), + t.startAnimationLoop(), + t.style(r.style), + t.emit('mount'), + t + ); + } + }, + unmount: function () { + var e = this; + return e.stopAnimationLoop(), e.destroyRenderer(), e.initRenderer({ name: 'null' }), e.emit('unmount'), e; + }, + options: function () { + return Te(this._private.options); + }, + json: function (e) { + var t = this, + n = t._private, + r = t.mutableElements(); + if (N(e)) { + if ((t.startBatch(), e.elements)) { + var o = {}, + i = function (e, n) { + for (var r = [], i = [], a = 0; a < e.length; a++) { + var s = e[a]; + if (s.data.id) { + var l = '' + s.data.id, + c = t.getElementById(l); + (o[l] = !0), + 0 !== c.length ? i.push({ ele: c, json: s }) : n ? ((s.group = n), r.push(s)) : r.push(s); + } else je('cy.json() cannot handle elements without an ID attribute'); + } + t.add(r); + for (var u = 0; u < i.length; u++) { + var d = i[u], + f = d.ele, + h = d.json; + f.json(h); + } + }; + if (D(e.elements)) i(e.elements); + else + for (var a = ['nodes', 'edges'], s = 0; s < a.length; s++) { + var l = a[s], + c = e.elements[l]; + D(c) && i(c, l); + } + var u = t.collection(); + r + .filter(function (e) { + return !o[e.id()]; + }) + .forEach(function (e) { + e.isParent() ? u.merge(e) : e.remove(); + }), + u.forEach(function (e) { + return e.children().move({ parent: null }); + }), + u.forEach(function (e) { + return (function (e) { + return t.getElementById(e.id()); + })(e).remove(); + }); + } + e.style && t.style(e.style), + null != e.zoom && e.zoom !== n.zoom && t.zoom(e.zoom), + e.pan && ((e.pan.x === n.pan.x && e.pan.y === n.pan.y) || t.pan(e.pan)), + e.data && t.data(e.data); + for ( + var d = [ + 'minZoom', + 'maxZoom', + 'zoomingEnabled', + 'userZoomingEnabled', + 'panningEnabled', + 'userPanningEnabled', + 'boxSelectionEnabled', + 'autolock', + 'autoungrabify', + 'autounselectify', + 'multiClickDebounceTime', + ], + f = 0; + f < d.length; + f++ + ) { + var h = d[f]; + null != e[h] && t[h](e[h]); + } + return t.endBatch(), this; + } + var p = {}; + !!e + ? (p.elements = this.elements().map(function (e) { + return e.json(); + })) + : ((p.elements = {}), + r.forEach(function (e) { + var t = e.group(); + p.elements[t] || (p.elements[t] = []), p.elements[t].push(e.json()); + })), + this._private.styleEnabled && (p.style = t.style().json()), + (p.data = Te(t.data())); + var v = n.options; + return ( + (p.zoomingEnabled = n.zoomingEnabled), + (p.userZoomingEnabled = n.userZoomingEnabled), + (p.zoom = n.zoom), + (p.minZoom = n.minZoom), + (p.maxZoom = n.maxZoom), + (p.panningEnabled = n.panningEnabled), + (p.userPanningEnabled = n.userPanningEnabled), + (p.pan = Te(n.pan)), + (p.boxSelectionEnabled = n.boxSelectionEnabled), + (p.renderer = Te(v.renderer)), + (p.hideEdgesOnViewport = v.hideEdgesOnViewport), + (p.textureOnViewport = v.textureOnViewport), + (p.wheelSensitivity = v.wheelSensitivity), + (p.motionBlur = v.motionBlur), + (p.multiClickDebounceTime = v.multiClickDebounceTime), + p + ); + }, + }), + (ca.$id = ca.getElementById), + [Pi, Bi, Vi, Gi, Hi, Wi, qi, Yi, ia, aa, sa].forEach(function (e) { + Q(ca, e); + }); + var ua = { + fit: !0, + directed: !1, + padding: 30, + circle: !1, + grid: !1, + spacingFactor: 1.75, + boundingBox: void 0, + avoidOverlap: !0, + nodeDimensionsIncludeLabels: !1, + roots: void 0, + maximal: !1, + depthSort: void 0, + animate: !1, + animationDuration: 500, + animationEasing: void 0, + animateFilter: function (e, t) { + return !0; + }, + ready: void 0, + stop: void 0, + transform: function (e, t) { + return t; + }, + }, + da = function (e) { + return e.scratch('breadthfirst'); + }, + fa = function (e, t) { + return e.scratch('breadthfirst', t); + }; + function ha(e) { + this.options = Q({}, ua, e); + } + ha.prototype.run = function () { + var e, + t = this.options, + n = t, + r = t.cy, + o = n.eles, + i = o.nodes().filter(function (e) { + return !e.isParent(); + }), + a = o, + s = n.directed, + l = n.maximal || n.maximalAdjustments > 0, + c = vt(n.boundingBox ? n.boundingBox : { x1: 0, y1: 0, w: r.width(), h: r.height() }); + if (A(n.roots)) e = n.roots; + else if (D(n.roots)) { + for (var u = [], d = 0; d < n.roots.length; d++) { + var f = n.roots[d], + h = r.getElementById(f); + u.push(h); + } + e = r.collection(u); + } else if (j(n.roots)) e = r.$(n.roots); + else if (s) e = i.roots(); + else { + var p = o.components(); + e = r.collection(); + for ( + var v = function (t) { + var n = p[t], + r = n.maxDegree(!1), + o = n.filter(function (e) { + return e.degree(!1) === r; + }); + e = e.add(o); + }, + g = 0; + g < p.length; + g++ + ) + v(g); + } + var m = [], + y = {}, + b = function (e, t) { + null == m[t] && (m[t] = []); + var n = m[t].length; + m[t].push(e), fa(e, { index: n, depth: t }); + }; + a.bfs({ + roots: e, + directed: n.directed, + visit: function (e, t, n, r, o) { + var i = e[0], + a = i.id(); + b(i, o), (y[a] = !0); + }, + }); + for (var x = [], w = 0; w < i.length; w++) { + var E = i[w]; + y[E.id()] || x.push(E); + } + var k = function (e) { + for (var t = m[e], n = 0; n < t.length; n++) { + var r = t[n]; + null != r ? fa(r, { depth: e, index: n }) : (t.splice(n, 1), n--); + } + }, + _ = function () { + for (var e = 0; e < m.length; e++) k(e); + }, + S = function (e, t) { + for ( + var n = da(e), + r = e.incomers().filter(function (e) { + return e.isNode() && o.has(e); + }), + i = -1, + a = e.id(), + s = 0; + s < r.length; + s++ + ) { + var l = r[s], + c = da(l); + i = Math.max(i, c.depth); + } + return ( + n.depth <= i && + (t[a] + ? null + : ((function (e, t) { + var n = da(e), + r = n.depth, + o = n.index; + (m[r][o] = null), b(e, t); + })(e, i + 1), + (t[a] = !0), + !0)) + ); + }; + if (s && l) { + var P = [], + C = {}, + T = function (e) { + return P.push(e); + }; + for ( + i.forEach(function (e) { + return P.push(e); + }); + P.length > 0; + + ) { + var N = P.shift(), + M = S(N, C); + if (M) + N.outgoers() + .filter(function (e) { + return e.isNode() && o.has(e); + }) + .forEach(T); + else if (null === M) { + je( + 'Detected double maximal shift for node `' + + N.id() + + '`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.', + ); + break; + } + } + } + _(); + var O = 0; + if (n.avoidOverlap) + for (var R = 0; R < i.length; R++) { + var L = i[R].layoutDimensions(n), + I = L.w, + B = L.h; + O = Math.max(O, I, B); + } + var F = {}, + z = function (e) { + if (F[e.id()]) return F[e.id()]; + for (var t = da(e).depth, n = e.neighborhood(), r = 0, o = 0, a = 0; a < n.length; a++) { + var s = n[a]; + if (!s.isEdge() && !s.isParent() && i.has(s)) { + var l = da(s); + if (null != l) { + var c = l.index, + u = l.depth; + if (null != c && null != u) { + var d = m[u].length; + u < t && ((r += c / d), o++); + } + } + } + } + return (r /= o = Math.max(1, o)), 0 === o && (r = 0), (F[e.id()] = r), r; + }, + V = function (e, t) { + var n = z(e) - z(t); + return 0 === n ? Z(e.id(), t.id()) : n; + }; + void 0 !== n.depthSort && (V = n.depthSort); + for (var G = 0; G < m.length; G++) m[G].sort(V), k(G); + for (var H = [], W = 0; W < x.length; W++) H.push(x[W]); + m.unshift(H), _(); + for (var U = 0, q = 0; q < m.length; q++) U = Math.max(m[q].length, U); + var Y = c.x1 + c.w / 2, + X = c.x1 + c.h / 2, + $ = m.reduce(function (e, t) { + return Math.max(e, t.length); + }, 0); + return ( + o.nodes().layoutPositions(this, n, function (e) { + var t = da(e), + r = t.depth, + o = t.index, + i = m[r].length, + a = Math.max(c.w / ((n.grid ? $ : i) + 1), O), + s = Math.max(c.h / (m.length + 1), O), + l = Math.min(c.w / 2 / m.length, c.h / 2 / m.length); + if (((l = Math.max(l, O)), n.circle)) { + var u = l * r + l - (m.length > 0 && m[0].length <= 3 ? l / 2 : 0), + d = ((2 * Math.PI) / m[r].length) * o; + return 0 === r && 1 === m[0].length && (u = 1), { x: Y + u * Math.cos(d), y: X + u * Math.sin(d) }; + } + return { x: Y + (o + 1 - (i + 1) / 2) * a, y: (r + 1) * s }; + }), + this + ); + }; + var pa = { + fit: !0, + padding: 30, + boundingBox: void 0, + avoidOverlap: !0, + nodeDimensionsIncludeLabels: !1, + spacingFactor: void 0, + radius: void 0, + startAngle: 1.5 * Math.PI, + sweep: void 0, + clockwise: !0, + sort: void 0, + animate: !1, + animationDuration: 500, + animationEasing: void 0, + animateFilter: function (e, t) { + return !0; + }, + ready: void 0, + stop: void 0, + transform: function (e, t) { + return t; + }, + }; + function va(e) { + this.options = Q({}, pa, e); + } + va.prototype.run = function () { + var e = this.options, + t = e, + n = e.cy, + r = t.eles, + o = void 0 !== t.counterclockwise ? !t.counterclockwise : t.clockwise, + i = r.nodes().not(':parent'); + t.sort && (i = i.sort(t.sort)); + for ( + var a, + s = vt(t.boundingBox ? t.boundingBox : { x1: 0, y1: 0, w: n.width(), h: n.height() }), + l = s.x1 + s.w / 2, + c = s.y1 + s.h / 2, + u = (void 0 === t.sweep ? 2 * Math.PI - (2 * Math.PI) / i.length : t.sweep) / Math.max(1, i.length - 1), + d = 0, + f = 0; + f < i.length; + f++ + ) { + var h = i[f].layoutDimensions(t), + p = h.w, + v = h.h; + d = Math.max(d, p, v); + } + if ( + ((a = M(t.radius) ? t.radius : i.length <= 1 ? 0 : Math.min(s.h, s.w) / 2 - d), + i.length > 1 && t.avoidOverlap) + ) { + d *= 1.75; + var g = Math.cos(u) - Math.cos(0), + m = Math.sin(u) - Math.sin(0), + y = Math.sqrt((d * d) / (g * g + m * m)); + a = Math.max(y, a); + } + return ( + r.nodes().layoutPositions(this, t, function (e, n) { + var r = t.startAngle + n * u * (o ? 1 : -1), + i = a * Math.cos(r), + s = a * Math.sin(r); + return { x: l + i, y: c + s }; + }), + this + ); + }; + var ga, + ma = { + fit: !0, + padding: 30, + startAngle: 1.5 * Math.PI, + sweep: void 0, + clockwise: !0, + equidistant: !1, + minNodeSpacing: 10, + boundingBox: void 0, + avoidOverlap: !0, + nodeDimensionsIncludeLabels: !1, + height: void 0, + width: void 0, + spacingFactor: void 0, + concentric: function (e) { + return e.degree(); + }, + levelWidth: function (e) { + return e.maxDegree() / 4; + }, + animate: !1, + animationDuration: 500, + animationEasing: void 0, + animateFilter: function (e, t) { + return !0; + }, + ready: void 0, + stop: void 0, + transform: function (e, t) { + return t; + }, + }; + function ya(e) { + this.options = Q({}, ma, e); + } + ya.prototype.run = function () { + for ( + var e = this.options, + t = e, + n = void 0 !== t.counterclockwise ? !t.counterclockwise : t.clockwise, + r = e.cy, + o = t.eles, + i = o.nodes().not(':parent'), + a = vt(t.boundingBox ? t.boundingBox : { x1: 0, y1: 0, w: r.width(), h: r.height() }), + s = a.x1 + a.w / 2, + l = a.y1 + a.h / 2, + c = [], + u = 0, + d = 0; + d < i.length; + d++ + ) { + var f, + h = i[d]; + (f = t.concentric(h)), c.push({ value: f, node: h }), (h._private.scratch.concentric = f); + } + i.updateStyle(); + for (var p = 0; p < i.length; p++) { + var v = i[p].layoutDimensions(t); + u = Math.max(u, v.w, v.h); + } + c.sort(function (e, t) { + return t.value - e.value; + }); + for (var g = t.levelWidth(i), m = [[]], y = m[0], b = 0; b < c.length; b++) { + var x = c[b]; + if (y.length > 0) Math.abs(y[0].value - x.value) >= g && ((y = []), m.push(y)); + y.push(x); + } + var w = u + t.minNodeSpacing; + if (!t.avoidOverlap) { + var E = m.length > 0 && m[0].length > 1, + k = (Math.min(a.w, a.h) / 2 - w) / (m.length + E ? 1 : 0); + w = Math.min(w, k); + } + for (var _ = 0, S = 0; S < m.length; S++) { + var P = m[S], + C = void 0 === t.sweep ? 2 * Math.PI - (2 * Math.PI) / P.length : t.sweep, + j = (P.dTheta = C / Math.max(1, P.length - 1)); + if (P.length > 1 && t.avoidOverlap) { + var T = Math.cos(j) - Math.cos(0), + D = Math.sin(j) - Math.sin(0), + N = Math.sqrt((w * w) / (T * T + D * D)); + _ = Math.max(N, _); + } + (P.r = _), (_ += w); + } + if (t.equidistant) { + for (var M = 0, O = 0, A = 0; A < m.length; A++) { + var R = m[A].r - O; + M = Math.max(M, R); + } + O = 0; + for (var L = 0; L < m.length; L++) { + var I = m[L]; + 0 === L && (O = I.r), (I.r = O), (O += M); + } + } + for (var B = {}, F = 0; F < m.length; F++) + for (var z = m[F], V = z.dTheta, G = z.r, H = 0; H < z.length; H++) { + var W = z[H], + U = t.startAngle + (n ? 1 : -1) * V * H, + q = { x: s + G * Math.cos(U), y: l + G * Math.sin(U) }; + B[W.node.id()] = q; + } + return ( + o.nodes().layoutPositions(this, t, function (e) { + var t = e.id(); + return B[t]; + }), + this + ); + }; + var ba = { + ready: function () {}, + stop: function () {}, + animate: !0, + animationEasing: void 0, + animationDuration: void 0, + animateFilter: function (e, t) { + return !0; + }, + animationThreshold: 250, + refresh: 20, + fit: !0, + padding: 30, + boundingBox: void 0, + nodeDimensionsIncludeLabels: !1, + randomize: !1, + componentSpacing: 40, + nodeRepulsion: function (e) { + return 2048; + }, + nodeOverlap: 4, + idealEdgeLength: function (e) { + return 32; + }, + edgeElasticity: function (e) { + return 32; + }, + nestingFactor: 1.2, + gravity: 1, + numIter: 1e3, + initialTemp: 1e3, + coolingFactor: 0.99, + minTemp: 1, + }; + function xa(e) { + (this.options = Q({}, ba, e)), (this.options.layout = this); + } + (xa.prototype.run = function () { + var e = this.options, + t = e.cy, + n = this; + (n.stopped = !1), + (!0 !== e.animate && !1 !== e.animate) || n.emit({ type: 'layoutstart', layout: n }), + (ga = !0 === e.debug); + var r = wa(t, n, e); + ga && undefined(r), e.randomize && _a(r); + var o = se(), + i = function () { + Pa(r, t, e), !0 === e.fit && t.fit(e.padding); + }, + a = function (t) { + return ( + !(n.stopped || t >= e.numIter) && + (Ca(r, e), (r.temperature = r.temperature * e.coolingFactor), !(r.temperature < e.minTemp)) + ); + }, + s = function () { + if (!0 === e.animate || !1 === e.animate) + i(), n.one('layoutstop', e.stop), n.emit({ type: 'layoutstop', layout: n }); + else { + var t = e.eles.nodes(), + o = Sa(r, e, t); + t.layoutPositions(n, e, o); + } + }, + l = 0, + c = !0; + if (!0 === e.animate) { + !(function t() { + for (var n = 0; c && n < e.refresh; ) (c = a(l)), l++, n++; + c ? (se() - o >= e.animationThreshold && i(), ae(t)) : (Fa(r, e), s()); + })(); + } else { + for (; c; ) (c = a(l)), l++; + Fa(r, e), s(); + } + return this; + }), + (xa.prototype.stop = function () { + return (this.stopped = !0), this.thread && this.thread.stop(), this.emit('layoutstop'), this; + }), + (xa.prototype.destroy = function () { + return this.thread && this.thread.stop(), this; + }); + var wa = function (e, t, n) { + for ( + var r = n.eles.edges(), + o = n.eles.nodes(), + i = { + isCompound: e.hasCompoundNodes(), + layoutNodes: [], + idToIndex: {}, + nodeSize: o.size(), + graphSet: [], + indexToGraph: [], + layoutEdges: [], + edgeSize: r.size(), + temperature: n.initialTemp, + clientWidth: e.width(), + clientHeight: e.width(), + boundingBox: vt(n.boundingBox ? n.boundingBox : { x1: 0, y1: 0, w: e.width(), h: e.height() }), + }, + a = n.eles.components(), + s = {}, + l = 0; + l < a.length; + l++ + ) + for (var c = a[l], u = 0; u < c.length; u++) { + s[c[u].id()] = l; + } + for (l = 0; l < i.nodeSize; l++) { + var d = (g = o[l]).layoutDimensions(n); + ((O = {}).isLocked = g.locked()), + (O.id = g.data('id')), + (O.parentId = g.data('parent')), + (O.cmptId = s[g.id()]), + (O.children = []), + (O.positionX = g.position('x')), + (O.positionY = g.position('y')), + (O.offsetX = 0), + (O.offsetY = 0), + (O.height = d.w), + (O.width = d.h), + (O.maxX = O.positionX + O.width / 2), + (O.minX = O.positionX - O.width / 2), + (O.maxY = O.positionY + O.height / 2), + (O.minY = O.positionY - O.height / 2), + (O.padLeft = parseFloat(g.style('padding'))), + (O.padRight = parseFloat(g.style('padding'))), + (O.padTop = parseFloat(g.style('padding'))), + (O.padBottom = parseFloat(g.style('padding'))), + (O.nodeRepulsion = T(n.nodeRepulsion) ? n.nodeRepulsion(g) : n.nodeRepulsion), + i.layoutNodes.push(O), + (i.idToIndex[O.id] = l); + } + var f = [], + h = 0, + p = -1, + v = []; + for (l = 0; l < i.nodeSize; l++) { + var g, + m = (g = i.layoutNodes[l]).parentId; + null != m ? i.layoutNodes[i.idToIndex[m]].children.push(g.id) : ((f[++p] = g.id), v.push(g.id)); + } + for (i.graphSet.push(v); h <= p; ) { + var y = f[h++], + b = i.idToIndex[y], + x = i.layoutNodes[b].children; + if (x.length > 0) { + i.graphSet.push(x); + for (l = 0; l < x.length; l++) f[++p] = x[l]; + } + } + for (l = 0; l < i.graphSet.length; l++) { + var w = i.graphSet[l]; + for (u = 0; u < w.length; u++) { + var E = i.idToIndex[w[u]]; + i.indexToGraph[E] = l; + } + } + for (l = 0; l < i.edgeSize; l++) { + var k = r[l], + _ = {}; + (_.id = k.data('id')), (_.sourceId = k.data('source')), (_.targetId = k.data('target')); + var S = T(n.idealEdgeLength) ? n.idealEdgeLength(k) : n.idealEdgeLength, + P = T(n.edgeElasticity) ? n.edgeElasticity(k) : n.edgeElasticity, + C = i.idToIndex[_.sourceId], + j = i.idToIndex[_.targetId]; + if (i.indexToGraph[C] != i.indexToGraph[j]) { + for ( + var D = Ea(_.sourceId, _.targetId, i), N = i.graphSet[D], M = 0, O = i.layoutNodes[C]; + -1 === N.indexOf(O.id); + + ) + (O = i.layoutNodes[i.idToIndex[O.parentId]]), M++; + for (O = i.layoutNodes[j]; -1 === N.indexOf(O.id); ) (O = i.layoutNodes[i.idToIndex[O.parentId]]), M++; + S *= M * n.nestingFactor; + } + (_.idealLength = S), (_.elasticity = P), i.layoutEdges.push(_); + } + return i; + }, + Ea = function (e, t, n) { + var r = ka(e, t, 0, n); + return 2 > r.count ? 0 : r.graph; + }, + ka = function e(t, n, r, o) { + var i = o.graphSet[r]; + if (-1 < i.indexOf(t) && -1 < i.indexOf(n)) return { count: 2, graph: r }; + for (var a = 0, s = 0; s < i.length; s++) { + var l = i[s], + c = o.idToIndex[l], + u = o.layoutNodes[c].children; + if (0 !== u.length) { + var d = e(t, n, o.indexToGraph[o.idToIndex[u[0]]], o); + if (0 !== d.count) { + if (1 !== d.count) return d; + if (2 === ++a) break; + } + } + } + return { count: a, graph: r }; + }, + _a = function (e, t) { + for (var n = e.clientWidth, r = e.clientHeight, o = 0; o < e.nodeSize; o++) { + var i = e.layoutNodes[o]; + 0 !== i.children.length || + i.isLocked || + ((i.positionX = Math.random() * n), (i.positionY = Math.random() * r)); + } + }, + Sa = function (e, t, n) { + var r = e.boundingBox, + o = { x1: 1 / 0, x2: -1 / 0, y1: 1 / 0, y2: -1 / 0 }; + return ( + t.boundingBox && + (n.forEach(function (t) { + var n = e.layoutNodes[e.idToIndex[t.data('id')]]; + (o.x1 = Math.min(o.x1, n.positionX)), + (o.x2 = Math.max(o.x2, n.positionX)), + (o.y1 = Math.min(o.y1, n.positionY)), + (o.y2 = Math.max(o.y2, n.positionY)); + }), + (o.w = o.x2 - o.x1), + (o.h = o.y2 - o.y1)), + function (n, i) { + var a = e.layoutNodes[e.idToIndex[n.data('id')]]; + if (t.boundingBox) { + var s = (a.positionX - o.x1) / o.w, + l = (a.positionY - o.y1) / o.h; + return { x: r.x1 + s * r.w, y: r.y1 + l * r.h }; + } + return { x: a.positionX, y: a.positionY }; + } + ); + }, + Pa = function (e, t, n) { + var r = n.layout, + o = n.eles.nodes(), + i = Sa(e, n, o); + o.positions(i), + !0 !== e.ready && + ((e.ready = !0), r.one('layoutready', n.ready), r.emit({ type: 'layoutready', layout: this })); + }, + Ca = function (e, t, n) { + ja(e, t), Oa(e), Aa(e, t), Ra(e), La(e); + }, + ja = function (e, t) { + for (var n = 0; n < e.graphSet.length; n++) + for (var r = e.graphSet[n], o = r.length, i = 0; i < o; i++) + for (var a = e.layoutNodes[e.idToIndex[r[i]]], s = i + 1; s < o; s++) { + var l = e.layoutNodes[e.idToIndex[r[s]]]; + Da(a, l, e, t); + } + }, + Ta = function (e) { + return -e + 2 * e * Math.random(); + }, + Da = function (e, t, n, r) { + if (e.cmptId === t.cmptId || n.isCompound) { + var o = t.positionX - e.positionX, + i = t.positionY - e.positionY; + 0 === o && 0 === i && ((o = Ta(1)), (i = Ta(1))); + var a = Na(e, t, o, i); + if (a > 0) + var s = ((c = r.nodeOverlap * a) * o) / (v = Math.sqrt(o * o + i * i)), + l = (c * i) / v; + else { + var c, + u = Ma(e, o, i), + d = Ma(t, -1 * o, -1 * i), + f = d.x - u.x, + h = d.y - u.y, + p = f * f + h * h, + v = Math.sqrt(p); + (s = ((c = (e.nodeRepulsion + t.nodeRepulsion) / p) * f) / v), (l = (c * h) / v); + } + e.isLocked || ((e.offsetX -= s), (e.offsetY -= l)), t.isLocked || ((t.offsetX += s), (t.offsetY += l)); + } + }, + Na = function (e, t, n, r) { + if (n > 0) var o = e.maxX - t.minX; + else o = t.maxX - e.minX; + if (r > 0) var i = e.maxY - t.minY; + else i = t.maxY - e.minY; + return o >= 0 && i >= 0 ? Math.sqrt(o * o + i * i) : 0; + }, + Ma = function (e, t, n) { + var r = e.positionX, + o = e.positionY, + i = e.height || 1, + a = e.width || 1, + s = n / t, + l = i / a, + c = {}; + return (0 === t && 0 < n) || (0 === t && 0 > n) + ? ((c.x = r), (c.y = o + i / 2), c) + : 0 < t && -1 * l <= s && s <= l + ? ((c.x = r + a / 2), (c.y = o + (a * n) / 2 / t), c) + : 0 > t && -1 * l <= s && s <= l + ? ((c.x = r - a / 2), (c.y = o - (a * n) / 2 / t), c) + : 0 < n && (s <= -1 * l || s >= l) + ? ((c.x = r + (i * t) / 2 / n), (c.y = o + i / 2), c) + : 0 > n && (s <= -1 * l || s >= l) + ? ((c.x = r - (i * t) / 2 / n), (c.y = o - i / 2), c) + : c; + }, + Oa = function (e, t) { + for (var n = 0; n < e.edgeSize; n++) { + var r = e.layoutEdges[n], + o = e.idToIndex[r.sourceId], + i = e.layoutNodes[o], + a = e.idToIndex[r.targetId], + s = e.layoutNodes[a], + l = s.positionX - i.positionX, + c = s.positionY - i.positionY; + if (0 !== l || 0 !== c) { + var u = Ma(i, l, c), + d = Ma(s, -1 * l, -1 * c), + f = d.x - u.x, + h = d.y - u.y, + p = Math.sqrt(f * f + h * h), + v = Math.pow(r.idealLength - p, 2) / r.elasticity; + if (0 !== p) + var g = (v * f) / p, + m = (v * h) / p; + else (g = 0), (m = 0); + i.isLocked || ((i.offsetX += g), (i.offsetY += m)), s.isLocked || ((s.offsetX -= g), (s.offsetY -= m)); + } + } + }, + Aa = function (e, t) { + if (0 !== t.gravity) + for (var n = 0; n < e.graphSet.length; n++) { + var r = e.graphSet[n], + o = r.length; + if (0 === n) + var i = e.clientHeight / 2, + a = e.clientWidth / 2; + else { + var s = e.layoutNodes[e.idToIndex[r[0]]], + l = e.layoutNodes[e.idToIndex[s.parentId]]; + (i = l.positionX), (a = l.positionY); + } + for (var c = 0; c < o; c++) { + var u = e.layoutNodes[e.idToIndex[r[c]]]; + if (!u.isLocked) { + var d = i - u.positionX, + f = a - u.positionY, + h = Math.sqrt(d * d + f * f); + if (h > 1) { + var p = (t.gravity * d) / h, + v = (t.gravity * f) / h; + (u.offsetX += p), (u.offsetY += v); + } + } + } + } + }, + Ra = function (e, t) { + var n = [], + r = 0, + o = -1; + for (n.push.apply(n, e.graphSet[0]), o += e.graphSet[0].length; r <= o; ) { + var i = n[r++], + a = e.idToIndex[i], + s = e.layoutNodes[a], + l = s.children; + if (0 < l.length && !s.isLocked) { + for (var c = s.offsetX, u = s.offsetY, d = 0; d < l.length; d++) { + var f = e.layoutNodes[e.idToIndex[l[d]]]; + (f.offsetX += c), (f.offsetY += u), (n[++o] = l[d]); + } + (s.offsetX = 0), (s.offsetY = 0); + } + } + }, + La = function (e, t) { + for (var n = 0; n < e.nodeSize; n++) { + 0 < (o = e.layoutNodes[n]).children.length && + ((o.maxX = void 0), (o.minX = void 0), (o.maxY = void 0), (o.minY = void 0)); + } + for (n = 0; n < e.nodeSize; n++) { + if (!(0 < (o = e.layoutNodes[n]).children.length || o.isLocked)) { + var r = Ia(o.offsetX, o.offsetY, e.temperature); + (o.positionX += r.x), + (o.positionY += r.y), + (o.offsetX = 0), + (o.offsetY = 0), + (o.minX = o.positionX - o.width), + (o.maxX = o.positionX + o.width), + (o.minY = o.positionY - o.height), + (o.maxY = o.positionY + o.height), + Ba(o, e); + } + } + for (n = 0; n < e.nodeSize; n++) { + var o; + 0 < (o = e.layoutNodes[n]).children.length && + !o.isLocked && + ((o.positionX = (o.maxX + o.minX) / 2), + (o.positionY = (o.maxY + o.minY) / 2), + (o.width = o.maxX - o.minX), + (o.height = o.maxY - o.minY)); + } + }, + Ia = function (e, t, n) { + var r = Math.sqrt(e * e + t * t); + if (r > n) var o = { x: (n * e) / r, y: (n * t) / r }; + else o = { x: e, y: t }; + return o; + }, + Ba = function e(t, n) { + var r = t.parentId; + if (null != r) { + var o = n.layoutNodes[n.idToIndex[r]], + i = !1; + return ( + (null == o.maxX || t.maxX + o.padRight > o.maxX) && ((o.maxX = t.maxX + o.padRight), (i = !0)), + (null == o.minX || t.minX - o.padLeft < o.minX) && ((o.minX = t.minX - o.padLeft), (i = !0)), + (null == o.maxY || t.maxY + o.padBottom > o.maxY) && ((o.maxY = t.maxY + o.padBottom), (i = !0)), + (null == o.minY || t.minY - o.padTop < o.minY) && ((o.minY = t.minY - o.padTop), (i = !0)), + i ? e(o, n) : void 0 + ); + } + }, + Fa = function (e, t) { + for (var n = e.layoutNodes, r = [], o = 0; o < n.length; o++) { + var i = n[o], + a = i.cmptId; + (r[a] = r[a] || []).push(i); + } + var s = 0; + for (o = 0; o < r.length; o++) { + if ((v = r[o])) { + (v.x1 = 1 / 0), (v.x2 = -1 / 0), (v.y1 = 1 / 0), (v.y2 = -1 / 0); + for (var l = 0; l < v.length; l++) { + var c = v[l]; + (v.x1 = Math.min(v.x1, c.positionX - c.width / 2)), + (v.x2 = Math.max(v.x2, c.positionX + c.width / 2)), + (v.y1 = Math.min(v.y1, c.positionY - c.height / 2)), + (v.y2 = Math.max(v.y2, c.positionY + c.height / 2)); + } + (v.w = v.x2 - v.x1), (v.h = v.y2 - v.y1), (s += v.w * v.h); + } + } + r.sort(function (e, t) { + return t.w * t.h - e.w * e.h; + }); + var u = 0, + d = 0, + f = 0, + h = 0, + p = (Math.sqrt(s) * e.clientWidth) / e.clientHeight; + for (o = 0; o < r.length; o++) { + var v; + if ((v = r[o])) { + for (l = 0; l < v.length; l++) { + (c = v[l]).isLocked || ((c.positionX += u - v.x1), (c.positionY += d - v.y1)); + } + (u += v.w + t.componentSpacing), + (f += v.w + t.componentSpacing), + (h = Math.max(h, v.h)), + f > p && ((d += h + t.componentSpacing), (u = 0), (f = 0), (h = 0)); + } + } + }, + za = { + fit: !0, + padding: 30, + boundingBox: void 0, + avoidOverlap: !0, + avoidOverlapPadding: 10, + nodeDimensionsIncludeLabels: !1, + spacingFactor: void 0, + condense: !1, + rows: void 0, + cols: void 0, + position: function (e) {}, + sort: void 0, + animate: !1, + animationDuration: 500, + animationEasing: void 0, + animateFilter: function (e, t) { + return !0; + }, + ready: void 0, + stop: void 0, + transform: function (e, t) { + return t; + }, + }; + function Va(e) { + this.options = Q({}, za, e); + } + Va.prototype.run = function () { + var e = this.options, + t = e, + n = e.cy, + r = t.eles, + o = r.nodes().not(':parent'); + t.sort && (o = o.sort(t.sort)); + var i = vt(t.boundingBox ? t.boundingBox : { x1: 0, y1: 0, w: n.width(), h: n.height() }); + if (0 === i.h || 0 === i.w) + r.nodes().layoutPositions(this, t, function (e) { + return { x: i.x1, y: i.y1 }; + }); + else { + var a = o.size(), + s = Math.sqrt((a * i.h) / i.w), + l = Math.round(s), + c = Math.round((i.w / i.h) * s), + u = function (e) { + if (null == e) return Math.min(l, c); + Math.min(l, c) == l ? (l = e) : (c = e); + }, + d = function (e) { + if (null == e) return Math.max(l, c); + Math.max(l, c) == l ? (l = e) : (c = e); + }, + f = t.rows, + h = null != t.cols ? t.cols : t.columns; + if (null != f && null != h) (l = f), (c = h); + else if (null != f && null == h) (l = f), (c = Math.ceil(a / l)); + else if (null == f && null != h) (c = h), (l = Math.ceil(a / c)); + else if (c * l > a) { + var p = u(), + v = d(); + (p - 1) * v >= a ? u(p - 1) : (v - 1) * p >= a && d(v - 1); + } else + for (; c * l < a; ) { + var g = u(), + m = d(); + (m + 1) * g >= a ? d(m + 1) : u(g + 1); + } + var y = i.w / c, + b = i.h / l; + if ((t.condense && ((y = 0), (b = 0)), t.avoidOverlap)) + for (var x = 0; x < o.length; x++) { + var w = o[x], + E = w._private.position; + (null != E.x && null != E.y) || ((E.x = 0), (E.y = 0)); + var k = w.layoutDimensions(t), + _ = t.avoidOverlapPadding, + S = k.w + _, + P = k.h + _; + (y = Math.max(y, S)), (b = Math.max(b, P)); + } + for ( + var C = {}, + j = function (e, t) { + return !!C['c-' + e + '-' + t]; + }, + T = function (e, t) { + C['c-' + e + '-' + t] = !0; + }, + D = 0, + N = 0, + M = function () { + ++N >= c && ((N = 0), D++); + }, + O = {}, + A = 0; + A < o.length; + A++ + ) { + var R = o[A], + L = t.position(R); + if (L && (void 0 !== L.row || void 0 !== L.col)) { + var I = { row: L.row, col: L.col }; + if (void 0 === I.col) for (I.col = 0; j(I.row, I.col); ) I.col++; + else if (void 0 === I.row) for (I.row = 0; j(I.row, I.col); ) I.row++; + (O[R.id()] = I), T(I.row, I.col); + } + } + o.layoutPositions(this, t, function (e, t) { + var n, r; + if (e.locked() || e.isParent()) return !1; + var o = O[e.id()]; + if (o) (n = o.col * y + y / 2 + i.x1), (r = o.row * b + b / 2 + i.y1); + else { + for (; j(D, N); ) M(); + (n = N * y + y / 2 + i.x1), (r = D * b + b / 2 + i.y1), T(D, N), M(); + } + return { x: n, y: r }; + }); + } + return this; + }; + var Ga = { ready: function () {}, stop: function () {} }; + function Ha(e) { + this.options = Q({}, Ga, e); + } + (Ha.prototype.run = function () { + var e = this.options, + t = e.eles, + n = this; + return ( + e.cy, + n.emit('layoutstart'), + t.nodes().positions(function () { + return { x: 0, y: 0 }; + }), + n.one('layoutready', e.ready), + n.emit('layoutready'), + n.one('layoutstop', e.stop), + n.emit('layoutstop'), + this + ); + }), + (Ha.prototype.stop = function () { + return this; + }); + var Wa = { + positions: void 0, + zoom: void 0, + pan: void 0, + fit: !0, + padding: 30, + animate: !1, + animationDuration: 500, + animationEasing: void 0, + animateFilter: function (e, t) { + return !0; + }, + ready: void 0, + stop: void 0, + transform: function (e, t) { + return t; + }, + }; + function Ua(e) { + this.options = Q({}, Wa, e); + } + Ua.prototype.run = function () { + var e = this.options, + t = e.eles.nodes(), + n = T(e.positions); + return ( + t.layoutPositions(this, e, function (t, r) { + var o = (function (t) { + if (null == e.positions) + return (function (e) { + return { x: e.x, y: e.y }; + })(t.position()); + if (n) return e.positions(t); + var r = e.positions[t._private.data.id]; + return r ?? null; + })(t); + return !t.locked() && null != o && o; + }), + this + ); + }; + var qa = { + fit: !0, + padding: 30, + boundingBox: void 0, + animate: !1, + animationDuration: 500, + animationEasing: void 0, + animateFilter: function (e, t) { + return !0; + }, + ready: void 0, + stop: void 0, + transform: function (e, t) { + return t; + }, + }; + function Ya(e) { + this.options = Q({}, qa, e); + } + Ya.prototype.run = function () { + var e = this.options, + t = e.cy, + n = e.eles, + r = vt(e.boundingBox ? e.boundingBox : { x1: 0, y1: 0, w: t.width(), h: t.height() }); + return ( + n.nodes().layoutPositions(this, e, function (e, t) { + return { x: r.x1 + Math.round(Math.random() * r.w), y: r.y1 + Math.round(Math.random() * r.h) }; + }), + this + ); + }; + var Xa = [ + { name: 'breadthfirst', impl: ha }, + { name: 'circle', impl: va }, + { name: 'concentric', impl: ya }, + { name: 'cose', impl: xa }, + { name: 'grid', impl: Va }, + { name: 'null', impl: Ha }, + { name: 'preset', impl: Ua }, + { name: 'random', impl: Ya }, + ]; + function $a(e) { + (this.options = e), (this.notifications = 0); + } + var Ka = function () {}, + Za = function () { + throw new Error('A headless instance can not render images'); + }; + $a.prototype = { + recalculateRenderedStyle: Ka, + notify: function () { + this.notifications++; + }, + init: Ka, + isHeadless: function () { + return !0; + }, + png: Za, + jpg: Za, + }; + var Qa = { + arrowShapeWidth: 0.3, + registerArrowShapes: function () { + var e = (this.arrowShapes = {}), + t = this, + n = function (e, t, n, r, o, i, a) { + var s = o.x - n / 2 - a, + l = o.x + n / 2 + a, + c = o.y - n / 2 - a, + u = o.y + n / 2 + a; + return s <= e && e <= l && c <= t && t <= u; + }, + r = function (e, t, n, r, o) { + var i = e * Math.cos(r) - t * Math.sin(r), + a = (e * Math.sin(r) + t * Math.cos(r)) * n; + return { x: i * n + o.x, y: a + o.y }; + }, + o = function (e, t, n, o) { + for (var i = [], a = 0; a < e.length; a += 2) { + var s = e[a], + l = e[a + 1]; + i.push(r(s, l, t, n, o)); + } + return i; + }, + i = function (e) { + for (var t = [], n = 0; n < e.length; n++) { + var r = e[n]; + t.push(r.x, r.y); + } + return t; + }, + a = function (e) { + return e.pstyle('width').pfValue * e.pstyle('arrow-scale').pfValue * 2; + }, + s = function (r, s) { + j(s) && (s = e[s]), + (e[r] = Q( + { + name: r, + points: [-0.15, -0.3, 0.15, -0.3, 0.15, 0.3, -0.15, 0.3], + collide: function (e, t, n, r, a, s) { + var l = i(o(this.points, n + 2 * s, r, a)); + return jt(e, t, l); + }, + roughCollide: n, + draw: function (e, n, r, i) { + var a = o(this.points, n, r, i); + t.arrowShapeImpl('polygon')(e, a); + }, + spacing: function (e) { + return 0; + }, + gap: a, + }, + s, + )); + }; + s('none', { collide: ke, roughCollide: ke, draw: Se, spacing: _e, gap: _e }), + s('triangle', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3] }), + s('arrow', 'triangle'), + s('triangle-backcurve', { + points: e.triangle.points, + controlPoint: [0, -0.15], + roughCollide: n, + draw: function (e, n, i, a, s) { + var l = o(this.points, n, i, a), + c = this.controlPoint, + u = r(c[0], c[1], n, i, a); + t.arrowShapeImpl(this.name)(e, l, u); + }, + gap: function (e) { + return 0.8 * a(e); + }, + }), + s('triangle-tee', { + points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], + pointsTee: [-0.15, -0.4, -0.15, -0.5, 0.15, -0.5, 0.15, -0.4], + collide: function (e, t, n, r, a, s, l) { + var c = i(o(this.points, n + 2 * l, r, a)), + u = i(o(this.pointsTee, n + 2 * l, r, a)); + return jt(e, t, c) || jt(e, t, u); + }, + draw: function (e, n, r, i, a) { + var s = o(this.points, n, r, i), + l = o(this.pointsTee, n, r, i); + t.arrowShapeImpl(this.name)(e, s, l); + }, + }), + s('circle-triangle', { + radius: 0.15, + pointsTr: [0, -0.15, 0.15, -0.45, -0.15, -0.45, 0, -0.15], + collide: function (e, t, n, r, a, s, l) { + var c = a, + u = Math.pow(c.x - e, 2) + Math.pow(c.y - t, 2) <= Math.pow((n + 2 * l) * this.radius, 2), + d = i(o(this.points, n + 2 * l, r, a)); + return jt(e, t, d) || u; + }, + draw: function (e, n, r, i, a) { + var s = o(this.pointsTr, n, r, i); + t.arrowShapeImpl(this.name)(e, s, i.x, i.y, this.radius * n); + }, + spacing: function (e) { + return t.getArrowWidth(e.pstyle('width').pfValue, e.pstyle('arrow-scale').value) * this.radius; + }, + }), + s('triangle-cross', { + points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], + baseCrossLinePts: [-0.15, -0.4, -0.15, -0.4, 0.15, -0.4, 0.15, -0.4], + crossLinePts: function (e, t) { + var n = this.baseCrossLinePts.slice(), + r = t / e; + return (n[3] = n[3] - r), (n[5] = n[5] - r), n; + }, + collide: function (e, t, n, r, a, s, l) { + var c = i(o(this.points, n + 2 * l, r, a)), + u = i(o(this.crossLinePts(n, s), n + 2 * l, r, a)); + return jt(e, t, c) || jt(e, t, u); + }, + draw: function (e, n, r, i, a) { + var s = o(this.points, n, r, i), + l = o(this.crossLinePts(n, a), n, r, i); + t.arrowShapeImpl(this.name)(e, s, l); + }, + }), + s('vee', { + points: [-0.15, -0.3, 0, 0, 0.15, -0.3, 0, -0.15], + gap: function (e) { + return 0.525 * a(e); + }, + }), + s('circle', { + radius: 0.15, + collide: function (e, t, n, r, o, i, a) { + var s = o; + return Math.pow(s.x - e, 2) + Math.pow(s.y - t, 2) <= Math.pow((n + 2 * a) * this.radius, 2); + }, + draw: function (e, n, r, o, i) { + t.arrowShapeImpl(this.name)(e, o.x, o.y, this.radius * n); + }, + spacing: function (e) { + return t.getArrowWidth(e.pstyle('width').pfValue, e.pstyle('arrow-scale').value) * this.radius; + }, + }), + s('tee', { + points: [-0.15, 0, -0.15, -0.1, 0.15, -0.1, 0.15, 0], + spacing: function (e) { + return 1; + }, + gap: function (e) { + return 1; + }, + }), + s('square', { points: [-0.15, 0, 0.15, 0, 0.15, -0.3, -0.15, -0.3] }), + s('diamond', { + points: [-0.15, -0.15, 0, -0.3, 0.15, -0.15, 0, 0], + gap: function (e) { + return e.pstyle('width').pfValue * e.pstyle('arrow-scale').value; + }, + }), + s('chevron', { + points: [0, 0, -0.15, -0.15, -0.1, -0.2, 0, -0.1, 0.1, -0.2, 0.15, -0.15], + gap: function (e) { + return 0.95 * e.pstyle('width').pfValue * e.pstyle('arrow-scale').value; + }, + }); + }, + }, + Ja = { + projectIntoViewport: function (e, t) { + var n = this.cy, + r = this.findContainerClientCoords(), + o = r[0], + i = r[1], + a = r[4], + s = n.pan(), + l = n.zoom(); + return [((e - o) / a - s.x) / l, ((t - i) / a - s.y) / l]; + }, + findContainerClientCoords: function () { + if (this.containerBB) return this.containerBB; + var e = this.container, + t = e.getBoundingClientRect(), + n = w.getComputedStyle(e), + r = function (e) { + return parseFloat(n.getPropertyValue(e)); + }, + o = r('padding-left'), + i = r('padding-right'), + a = r('padding-top'), + s = r('padding-bottom'), + l = r('border-left-width'), + c = r('border-right-width'), + u = r('border-top-width'), + d = (r('border-bottom-width'), e.clientWidth), + f = e.clientHeight, + h = o + i, + p = a + s, + v = l + c, + g = t.width / (d + v), + m = d - h, + y = f - p, + b = t.left + o + l, + x = t.top + a + u; + return (this.containerBB = [b, x, m, y, g]); + }, + invalidateContainerClientCoordsCache: function () { + this.containerBB = null; + }, + findNearestElement: function (e, t, n, r) { + return this.findNearestElements(e, t, n, r)[0]; + }, + findNearestElements: function (e, t, n, r) { + var o, + i, + a = this, + s = this, + l = s.getCachedZSortedEles(), + c = [], + u = s.cy.zoom(), + d = s.cy.hasCompoundNodes(), + f = (r ? 24 : 8) / u, + h = (r ? 8 : 2) / u, + p = (r ? 8 : 2) / u, + v = 1 / 0; + function g(e, t) { + if (e.isNode()) { + if (i) return; + (i = e), c.push(e); + } + if (e.isEdge() && (null == t || t < v)) + if (o) { + if ( + o.pstyle('z-compound-depth').value === e.pstyle('z-compound-depth').value && + o.pstyle('z-compound-depth').value === e.pstyle('z-compound-depth').value + ) + for (var n = 0; n < c.length; n++) + if (c[n].isEdge()) { + (c[n] = e), (o = e), (v = null != t ? t : v); + break; + } + } else c.push(e), (o = e), (v = null != t ? t : v); + } + function m(n) { + var r = n.outerWidth() + 2 * h, + o = n.outerHeight() + 2 * h, + i = r / 2, + l = o / 2, + c = n.position(); + if ( + c.x - i <= e && + e <= c.x + i && + c.y - l <= t && + t <= c.y + l && + s.nodeShapes[a.getNodeShape(n)].checkPoint(e, t, 0, r, o, c.x, c.y) + ) + return g(n, 0), !0; + } + function y(n) { + var r, + o = n._private, + i = o.rscratch, + l = n.pstyle('width').pfValue, + u = n.pstyle('arrow-scale').value, + h = l / 2 + f, + p = h * h, + v = 2 * h, + y = o.source, + b = o.target; + if ('segments' === i.edgeType || 'straight' === i.edgeType || 'haystack' === i.edgeType) { + for (var x = i.allpts, w = 0; w + 3 < x.length; w += 2) + if ( + _t(e, t, x[w], x[w + 1], x[w + 2], x[w + 3], v) && + p > (r = Ct(e, t, x[w], x[w + 1], x[w + 2], x[w + 3])) + ) + return g(n, r), !0; + } else if ( + 'bezier' === i.edgeType || + 'multibezier' === i.edgeType || + 'self' === i.edgeType || + 'compound' === i.edgeType + ) + for (x = i.allpts, w = 0; w + 5 < i.allpts.length; w += 4) + if ( + St(e, t, x[w], x[w + 1], x[w + 2], x[w + 3], x[w + 4], x[w + 5], v) && + p > (r = Pt(e, t, x[w], x[w + 1], x[w + 2], x[w + 3], x[w + 4], x[w + 5])) + ) + return g(n, r), !0; + (y = y || o.source), (b = b || o.target); + var E = a.getArrowWidth(l, u), + k = [ + { name: 'source', x: i.arrowStartX, y: i.arrowStartY, angle: i.srcArrowAngle }, + { name: 'target', x: i.arrowEndX, y: i.arrowEndY, angle: i.tgtArrowAngle }, + { name: 'mid-source', x: i.midX, y: i.midY, angle: i.midsrcArrowAngle }, + { name: 'mid-target', x: i.midX, y: i.midY, angle: i.midtgtArrowAngle }, + ]; + for (w = 0; w < k.length; w++) { + var _ = k[w], + S = s.arrowShapes[n.pstyle(_.name + '-arrow-shape').value], + P = n.pstyle('width').pfValue; + if ( + S.roughCollide(e, t, E, _.angle, { x: _.x, y: _.y }, P, f) && + S.collide(e, t, E, _.angle, { x: _.x, y: _.y }, P, f) + ) + return g(n), !0; + } + d && c.length > 0 && (m(y), m(b)); + } + function b(e, t, n) { + return Le(e, t, n); + } + function x(n, r) { + var o, + i = n._private, + a = p; + (o = r ? r + '-' : ''), n.boundingBox(); + var s = i.labelBounds[r || 'main'], + l = n.pstyle(o + 'label').value; + if ('yes' === n.pstyle('text-events').strValue && l) { + var c = b(i.rscratch, 'labelX', r), + u = b(i.rscratch, 'labelY', r), + d = b(i.rscratch, 'labelAngle', r), + f = n.pstyle(o + 'text-margin-x').pfValue, + h = n.pstyle(o + 'text-margin-y').pfValue, + v = s.x1 - a - f, + m = s.x2 + a - f, + y = s.y1 - a - h, + x = s.y2 + a - h; + if (d) { + var w = Math.cos(d), + E = Math.sin(d), + k = function (e, t) { + return { x: (e -= c) * w - (t -= u) * E + c, y: e * E + t * w + u }; + }, + _ = k(v, y), + S = k(v, x), + P = k(m, y), + C = k(m, x), + j = [_.x + f, _.y + h, P.x + f, P.y + h, C.x + f, C.y + h, S.x + f, S.y + h]; + if (jt(e, t, j)) return g(n), !0; + } else if (wt(s, e, t)) return g(n), !0; + } + } + n && (l = l.interactive); + for (var w = l.length - 1; w >= 0; w--) { + var E = l[w]; + E.isNode() ? m(E) || x(E) : y(E) || x(E) || x(E, 'source') || x(E, 'target'); + } + return c; + }, + getAllInBox: function (e, t, n, r) { + for ( + var o, + i, + a = this.getCachedZSortedEles().interactive, + s = [], + l = Math.min(e, n), + c = Math.max(e, n), + u = Math.min(t, r), + d = Math.max(t, r), + f = vt({ x1: (e = l), y1: (t = u), x2: (n = c), y2: (r = d) }), + h = 0; + h < a.length; + h++ + ) { + var p = a[h]; + if (p.isNode()) { + var v = p, + g = v.boundingBox({ includeNodes: !0, includeEdges: !1, includeLabels: !1 }); + xt(f, g) && !Et(g, f) && s.push(v); + } else { + var m = p, + y = m._private, + b = y.rscratch; + if (null != b.startX && null != b.startY && !wt(f, b.startX, b.startY)) continue; + if (null != b.endX && null != b.endY && !wt(f, b.endX, b.endY)) continue; + if ( + 'bezier' === b.edgeType || + 'multibezier' === b.edgeType || + 'self' === b.edgeType || + 'compound' === b.edgeType || + 'segments' === b.edgeType || + 'haystack' === b.edgeType + ) { + for ( + var x = y.rstyle.bezierPts || y.rstyle.linePts || y.rstyle.haystackPts, w = !0, E = 0; + E < x.length; + E++ + ) + if (((o = f), (i = x[E]), !wt(o, i.x, i.y))) { + w = !1; + break; + } + w && s.push(m); + } else ('haystack' !== b.edgeType && 'straight' !== b.edgeType) || s.push(m); + } + } + return s; + }, + }, + es = { + calculateArrowAngles: function (e) { + var t, + n, + r, + o, + i, + a, + s = e._private.rscratch, + l = 'haystack' === s.edgeType, + c = 'bezier' === s.edgeType, + u = 'multibezier' === s.edgeType, + d = 'segments' === s.edgeType, + f = 'compound' === s.edgeType, + h = 'self' === s.edgeType; + if ( + (l + ? ((r = s.haystackPts[0]), (o = s.haystackPts[1]), (i = s.haystackPts[2]), (a = s.haystackPts[3])) + : ((r = s.arrowStartX), (o = s.arrowStartY), (i = s.arrowEndX), (a = s.arrowEndY)), + (v = s.midX), + (g = s.midY), + d) + ) + (t = r - s.segpts[0]), (n = o - s.segpts[1]); + else if (u || f || h || c) { + var p = s.allpts; + (t = r - ft(p[0], p[2], p[4], 0.1)), (n = o - ft(p[1], p[3], p[5], 0.1)); + } else (t = r - v), (n = o - g); + s.srcArrowAngle = at(t, n); + var v = s.midX, + g = s.midY; + if ((l && ((v = (r + i) / 2), (g = (o + a) / 2)), (t = i - r), (n = a - o), d)) + if (((p = s.allpts).length / 2) % 2 == 0) { + var m = (y = p.length / 2) - 2; + (t = p[y] - p[m]), (n = p[y + 1] - p[m + 1]); + } else { + m = (y = p.length / 2 - 1) - 2; + var y, + b = y + 2; + (t = p[y] - p[m]), (n = p[y + 1] - p[m + 1]); + } + else if (u || f || h) { + var x, + w, + E, + k, + p = s.allpts; + if ((s.ctrlpts.length / 2) % 2 == 0) { + var _ = (S = (P = p.length / 2 - 1) + 2) + 2; + (x = ft(p[P], p[S], p[_], 0)), + (w = ft(p[P + 1], p[S + 1], p[_ + 1], 0)), + (E = ft(p[P], p[S], p[_], 1e-4)), + (k = ft(p[P + 1], p[S + 1], p[_ + 1], 1e-4)); + } else { + var S, P; + _ = (S = p.length / 2 - 1) + 2; + (x = ft(p[(P = S - 2)], p[S], p[_], 0.4999)), + (w = ft(p[P + 1], p[S + 1], p[_ + 1], 0.4999)), + (E = ft(p[P], p[S], p[_], 0.5)), + (k = ft(p[P + 1], p[S + 1], p[_ + 1], 0.5)); + } + (t = E - x), (n = k - w); + } + ((s.midtgtArrowAngle = at(t, n)), (s.midDispX = t), (s.midDispY = n), (t *= -1), (n *= -1), d) && + (((p = s.allpts).length / 2) % 2 == 0 || + ((t = -(p[(b = (y = p.length / 2 - 1) + 2)] - p[y])), (n = -(p[b + 1] - p[y + 1])))); + if (((s.midsrcArrowAngle = at(t, n)), d)) + (t = i - s.segpts[s.segpts.length - 2]), (n = a - s.segpts[s.segpts.length - 1]); + else if (u || f || h || c) { + var C = (p = s.allpts).length; + (t = i - ft(p[C - 6], p[C - 4], p[C - 2], 0.9)), (n = a - ft(p[C - 5], p[C - 3], p[C - 1], 0.9)); + } else (t = i - v), (n = a - g); + s.tgtArrowAngle = at(t, n); + }, + }; + es.getArrowWidth = es.getArrowHeight = function (e, t) { + var n = (this.arrowWidthCache = this.arrowWidthCache || {}), + r = n[e + ', ' + t]; + return r || ((r = Math.max(Math.pow(13.37 * e, 0.9), 29) * t), (n[e + ', ' + t] = r), r); + }; + var ts = {}; + function ns(e) { + var t = []; + if (null != e) { + for (var n = 0; n < e.length; n += 2) { + var r = e[n], + o = e[n + 1]; + t.push({ x: r, y: o }); + } + return t; + } + } + (ts.findHaystackPoints = function (e) { + for (var t = 0; t < e.length; t++) { + var n = e[t], + r = n._private, + o = r.rscratch; + if (!o.haystack) { + var i = 2 * Math.random() * Math.PI; + (o.source = { x: Math.cos(i), y: Math.sin(i) }), + (i = 2 * Math.random() * Math.PI), + (o.target = { x: Math.cos(i), y: Math.sin(i) }); + } + var a = r.source, + s = r.target, + l = a.position(), + c = s.position(), + u = a.width(), + d = s.width(), + f = a.height(), + h = s.height(), + p = n.pstyle('haystack-radius').value / 2; + (o.haystackPts = o.allpts = + [o.source.x * u * p + l.x, o.source.y * f * p + l.y, o.target.x * d * p + c.x, o.target.y * h * p + c.y]), + (o.midX = (o.allpts[0] + o.allpts[2]) / 2), + (o.midY = (o.allpts[1] + o.allpts[3]) / 2), + (o.edgeType = 'haystack'), + (o.haystack = !0), + this.storeEdgeProjections(n), + this.calculateArrowAngles(n), + this.recalculateEdgeLabelProjections(n), + this.calculateLabelAngles(n); + } + }), + (ts.findSegmentsPoints = function (e, t) { + var n = e._private.rscratch, + r = t.posPts, + o = t.intersectionPts, + i = t.vectorNormInverse, + a = e.pstyle('edge-distances').value, + s = e.pstyle('segment-weights'), + l = e.pstyle('segment-distances'), + c = Math.min(s.pfValue.length, l.pfValue.length); + (n.edgeType = 'segments'), (n.segpts = []); + for (var u = 0; u < c; u++) { + var d = s.pfValue[u], + f = l.pfValue[u], + h = 1 - d, + p = d, + v = 'node-position' === a ? r : o, + g = { x: v.x1 * h + v.x2 * p, y: v.y1 * h + v.y2 * p }; + n.segpts.push(g.x + i.x * f, g.y + i.y * f); + } + }), + (ts.findLoopPoints = function (e, t, n, r) { + var o = e._private.rscratch, + i = t.dirCounts, + a = t.srcPos, + s = e.pstyle('control-point-distances'), + l = s ? s.pfValue[0] : void 0, + c = e.pstyle('loop-direction').pfValue, + u = e.pstyle('loop-sweep').pfValue, + d = e.pstyle('control-point-step-size').pfValue; + o.edgeType = 'self'; + var f = n, + h = d; + r && ((f = 0), (h = l)); + var p = c - Math.PI / 2, + v = p - u / 2, + g = p + u / 2, + m = String(c + '_' + u); + (f = void 0 === i[m] ? (i[m] = 0) : ++i[m]), + (o.ctrlpts = [ + a.x + 1.4 * Math.cos(v) * h * (f / 3 + 1), + a.y + 1.4 * Math.sin(v) * h * (f / 3 + 1), + a.x + 1.4 * Math.cos(g) * h * (f / 3 + 1), + a.y + 1.4 * Math.sin(g) * h * (f / 3 + 1), + ]); + }), + (ts.findCompoundLoopPoints = function (e, t, n, r) { + var o = e._private.rscratch; + o.edgeType = 'compound'; + var i = t.srcPos, + a = t.tgtPos, + s = t.srcW, + l = t.srcH, + c = t.tgtW, + u = t.tgtH, + d = e.pstyle('control-point-step-size').pfValue, + f = e.pstyle('control-point-distances'), + h = f ? f.pfValue[0] : void 0, + p = n, + v = d; + r && ((p = 0), (v = h)); + var g = { x: i.x - s / 2, y: i.y - l / 2 }, + m = { x: a.x - c / 2, y: a.y - u / 2 }, + y = { x: Math.min(g.x, m.x), y: Math.min(g.y, m.y) }, + b = Math.max(0.5, Math.log(0.01 * s)), + x = Math.max(0.5, Math.log(0.01 * c)); + o.ctrlpts = [ + y.x, + y.y - (1 + Math.pow(50, 1.12) / 100) * v * (p / 3 + 1) * b, + y.x - (1 + Math.pow(50, 1.12) / 100) * v * (p / 3 + 1) * x, + y.y, + ]; + }), + (ts.findStraightEdgePoints = function (e) { + e._private.rscratch.edgeType = 'straight'; + }), + (ts.findBezierPoints = function (e, t, n, r, o) { + var i = e._private.rscratch, + a = t.vectorNormInverse, + s = t.posPts, + l = t.intersectionPts, + c = e.pstyle('edge-distances').value, + u = e.pstyle('control-point-step-size').pfValue, + d = e.pstyle('control-point-distances'), + f = e.pstyle('control-point-weights'), + h = d && f ? Math.min(d.value.length, f.value.length) : 1, + p = d ? d.pfValue[0] : void 0, + v = f.value[0], + g = r; + (i.edgeType = g ? 'multibezier' : 'bezier'), (i.ctrlpts = []); + for (var m = 0; m < h; m++) { + var y = (0.5 - t.eles.length / 2 + n) * u * (o ? -1 : 1), + b = void 0, + x = lt(y); + g && ((p = d ? d.pfValue[m] : u), (v = f.value[m])); + var w = void 0 !== (b = r ? p : void 0 !== p ? x * p : void 0) ? b : y, + E = 1 - v, + k = v, + _ = 'node-position' === c ? s : l, + S = { x: _.x1 * E + _.x2 * k, y: _.y1 * E + _.y2 * k }; + i.ctrlpts.push(S.x + a.x * w, S.y + a.y * w); + } + }), + (ts.findTaxiPoints = function (e, t) { + var n = e._private.rscratch; + n.edgeType = 'segments'; + var r = 'vertical', + o = 'horizontal', + i = 'leftward', + a = 'rightward', + s = 'downward', + l = 'upward', + c = t.posPts, + u = t.srcW, + d = t.srcH, + f = t.tgtW, + h = t.tgtH, + p = 'node-position' !== e.pstyle('edge-distances').value, + v = e.pstyle('taxi-direction').value, + g = v, + m = e.pstyle('taxi-turn'), + y = '%' === m.units, + b = m.pfValue, + x = b < 0, + w = e.pstyle('taxi-turn-min-distance').pfValue, + E = p ? (u + f) / 2 : 0, + k = p ? (d + h) / 2 : 0, + _ = c.x2 - c.x1, + S = c.y2 - c.y1, + P = function (e, t) { + return e > 0 ? Math.max(e - t, 0) : Math.min(e + t, 0); + }, + C = P(_, E), + j = P(S, k), + T = !1; + 'auto' === g + ? (v = Math.abs(C) > Math.abs(j) ? o : r) + : g === l || g === s + ? ((v = r), (T = !0)) + : (g !== i && g !== a) || ((v = o), (T = !0)); + var D, + N = v === r, + M = N ? j : C, + O = N ? S : _, + A = lt(O), + R = !1; + ((T && (y || x)) || + !((g === s && O < 0) || (g === l && O > 0) || (g === i && O > 0) || (g === a && O < 0)) || + ((M = (A *= -1) * Math.abs(M)), (R = !0)), + y) + ? (D = (b < 0 ? 1 + b : b) * M) + : (D = (b < 0 ? M : 0) + b * A); + var L = function (e) { + return Math.abs(e) < w || Math.abs(e) >= Math.abs(M); + }, + I = L(D), + B = L(Math.abs(M) - Math.abs(D)); + if ((I || B) && !R) + if (N) { + var F = Math.abs(O) <= d / 2, + z = Math.abs(_) <= f / 2; + if (F) { + var V = (c.x1 + c.x2) / 2, + G = c.y1, + H = c.y2; + n.segpts = [V, G, V, H]; + } else if (z) { + var W = (c.y1 + c.y2) / 2, + U = c.x1, + q = c.x2; + n.segpts = [U, W, q, W]; + } else n.segpts = [c.x1, c.y2]; + } else { + var Y = Math.abs(O) <= u / 2, + X = Math.abs(S) <= h / 2; + if (Y) { + var $ = (c.y1 + c.y2) / 2, + K = c.x1, + Z = c.x2; + n.segpts = [K, $, Z, $]; + } else if (X) { + var Q = (c.x1 + c.x2) / 2, + J = c.y1, + ee = c.y2; + n.segpts = [Q, J, Q, ee]; + } else n.segpts = [c.x2, c.y1]; + } + else if (N) { + var te = c.y1 + D + (p ? (d / 2) * A : 0), + ne = c.x1, + re = c.x2; + n.segpts = [ne, te, re, te]; + } else { + var oe = c.x1 + D + (p ? (u / 2) * A : 0), + ie = c.y1, + ae = c.y2; + n.segpts = [oe, ie, oe, ae]; + } + }), + (ts.tryToCorrectInvalidPoints = function (e, t) { + var n = e._private.rscratch; + if ('bezier' === n.edgeType) { + var r = t.srcPos, + o = t.tgtPos, + i = t.srcW, + a = t.srcH, + s = t.tgtW, + l = t.tgtH, + c = t.srcShape, + u = t.tgtShape, + d = !M(n.startX) || !M(n.startY), + f = !M(n.arrowStartX) || !M(n.arrowStartY), + h = !M(n.endX) || !M(n.endY), + p = !M(n.arrowEndX) || !M(n.arrowEndY), + v = + 3 * + (this.getArrowWidth(e.pstyle('width').pfValue, e.pstyle('arrow-scale').value) * this.arrowShapeWidth), + g = ct({ x: n.ctrlpts[0], y: n.ctrlpts[1] }, { x: n.startX, y: n.startY }), + m = g < v, + y = ct({ x: n.ctrlpts[0], y: n.ctrlpts[1] }, { x: n.endX, y: n.endY }), + b = y < v, + x = !1; + if (d || f || m) { + x = !0; + var w = { x: n.ctrlpts[0] - r.x, y: n.ctrlpts[1] - r.y }, + E = Math.sqrt(w.x * w.x + w.y * w.y), + k = { x: w.x / E, y: w.y / E }, + _ = Math.max(i, a), + S = { x: n.ctrlpts[0] + 2 * k.x * _, y: n.ctrlpts[1] + 2 * k.y * _ }, + P = c.intersectLine(r.x, r.y, i, a, S.x, S.y, 0); + m + ? ((n.ctrlpts[0] = n.ctrlpts[0] + k.x * (v - g)), (n.ctrlpts[1] = n.ctrlpts[1] + k.y * (v - g))) + : ((n.ctrlpts[0] = P[0] + k.x * v), (n.ctrlpts[1] = P[1] + k.y * v)); + } + if (h || p || b) { + x = !0; + var C = { x: n.ctrlpts[0] - o.x, y: n.ctrlpts[1] - o.y }, + j = Math.sqrt(C.x * C.x + C.y * C.y), + T = { x: C.x / j, y: C.y / j }, + D = Math.max(i, a), + N = { x: n.ctrlpts[0] + 2 * T.x * D, y: n.ctrlpts[1] + 2 * T.y * D }, + O = u.intersectLine(o.x, o.y, s, l, N.x, N.y, 0); + b + ? ((n.ctrlpts[0] = n.ctrlpts[0] + T.x * (v - y)), (n.ctrlpts[1] = n.ctrlpts[1] + T.y * (v - y))) + : ((n.ctrlpts[0] = O[0] + T.x * v), (n.ctrlpts[1] = O[1] + T.y * v)); + } + x && this.findEndpoints(e); + } + }), + (ts.storeAllpts = function (e) { + var t = e._private.rscratch; + if ( + 'multibezier' === t.edgeType || + 'bezier' === t.edgeType || + 'self' === t.edgeType || + 'compound' === t.edgeType + ) { + (t.allpts = []), t.allpts.push(t.startX, t.startY); + for (var n = 0; n + 1 < t.ctrlpts.length; n += 2) + t.allpts.push(t.ctrlpts[n], t.ctrlpts[n + 1]), + n + 3 < t.ctrlpts.length && + t.allpts.push((t.ctrlpts[n] + t.ctrlpts[n + 2]) / 2, (t.ctrlpts[n + 1] + t.ctrlpts[n + 3]) / 2); + var r; + t.allpts.push(t.endX, t.endY), + (t.ctrlpts.length / 2) % 2 == 0 + ? ((r = t.allpts.length / 2 - 1), (t.midX = t.allpts[r]), (t.midY = t.allpts[r + 1])) + : ((r = t.allpts.length / 2 - 3), + 0.5, + (t.midX = ft(t.allpts[r], t.allpts[r + 2], t.allpts[r + 4], 0.5)), + (t.midY = ft(t.allpts[r + 1], t.allpts[r + 3], t.allpts[r + 5], 0.5))); + } else if ('straight' === t.edgeType) + (t.allpts = [t.startX, t.startY, t.endX, t.endY]), + (t.midX = (t.startX + t.endX + t.arrowStartX + t.arrowEndX) / 4), + (t.midY = (t.startY + t.endY + t.arrowStartY + t.arrowEndY) / 4); + else if ('segments' === t.edgeType) + if ( + ((t.allpts = []), + t.allpts.push(t.startX, t.startY), + t.allpts.push.apply(t.allpts, t.segpts), + t.allpts.push(t.endX, t.endY), + t.segpts.length % 4 == 0) + ) { + var o = t.segpts.length / 2, + i = o - 2; + (t.midX = (t.segpts[i] + t.segpts[o]) / 2), (t.midY = (t.segpts[i + 1] + t.segpts[o + 1]) / 2); + } else { + var a = t.segpts.length / 2 - 1; + (t.midX = t.segpts[a]), (t.midY = t.segpts[a + 1]); + } + }), + (ts.checkForInvalidEdgeWarning = function (e) { + var t = e[0]._private.rscratch; + t.nodesOverlap || (M(t.startX) && M(t.startY) && M(t.endX) && M(t.endY)) + ? (t.loggedErr = !1) + : t.loggedErr || + ((t.loggedErr = !0), + je( + 'Edge `' + + e.id() + + '` has invalid endpoints and so it is impossible to draw. Adjust your edge style (e.g. control points) accordingly or use an alternative edge type. This is expected behaviour when the source node and the target node overlap.', + )); + }), + (ts.findEdgeControlPoints = function (e) { + var t = this; + if (e && 0 !== e.length) { + for ( + var n = this, + r = n.cy.hasCompoundNodes(), + o = { + map: new Be(), + get: function (e) { + var t = this.map.get(e[0]); + return null != t ? t.get(e[1]) : null; + }, + set: function (e, t) { + var n = this.map.get(e[0]); + null == n && ((n = new Be()), this.map.set(e[0], n)), n.set(e[1], t); + }, + }, + i = [], + a = [], + s = 0; + s < e.length; + s++ + ) { + var l = e[s], + c = l._private, + u = l.pstyle('curve-style').value; + if (!l.removed() && l.takesUpSpace()) + if ('haystack' !== u) { + var d = + 'unbundled-bezier' === u || + 'segments' === u || + 'straight' === u || + 'straight-triangle' === u || + 'taxi' === u, + f = 'unbundled-bezier' === u || 'bezier' === u, + h = c.source, + p = c.target, + v = [h.poolIndex(), p.poolIndex()].sort(), + g = o.get(v); + null == g && ((g = { eles: [] }), o.set(v, g), i.push(v)), + g.eles.push(l), + d && (g.hasUnbundled = !0), + f && (g.hasBezier = !0); + } else a.push(l); + } + for ( + var m = function (e) { + var a = i[e], + s = o.get(a), + l = void 0; + if (!s.hasUnbundled) { + var c = s.eles[0].parallelEdges().filter(function (e) { + return e.isBundledBezier(); + }); + Re(s.eles), + c.forEach(function (e) { + return s.eles.push(e); + }), + s.eles.sort(function (e, t) { + return e.poolIndex() - t.poolIndex(); + }); + } + var u = s.eles[0], + d = u.source(), + f = u.target(); + if (d.poolIndex() > f.poolIndex()) { + var h = d; + (d = f), (f = h); + } + var p = (s.srcPos = d.position()), + v = (s.tgtPos = f.position()), + g = (s.srcW = d.outerWidth()), + m = (s.srcH = d.outerHeight()), + y = (s.tgtW = f.outerWidth()), + b = (s.tgtH = f.outerHeight()), + x = (s.srcShape = n.nodeShapes[t.getNodeShape(d)]), + w = (s.tgtShape = n.nodeShapes[t.getNodeShape(f)]); + s.dirCounts = { + north: 0, + west: 0, + south: 0, + east: 0, + northwest: 0, + southwest: 0, + northeast: 0, + southeast: 0, + }; + for (var E = 0; E < s.eles.length; E++) { + var k = s.eles[E], + _ = k[0]._private.rscratch, + S = k.pstyle('curve-style').value, + P = 'unbundled-bezier' === S || 'segments' === S || 'taxi' === S, + C = !d.same(k.source()); + if (!s.calculatedIntersection && d !== f && (s.hasBezier || s.hasUnbundled)) { + s.calculatedIntersection = !0; + var j = x.intersectLine(p.x, p.y, g, m, v.x, v.y, 0), + T = (s.srcIntn = j), + D = w.intersectLine(v.x, v.y, y, b, p.x, p.y, 0), + N = (s.tgtIntn = D), + O = (s.intersectionPts = { x1: j[0], x2: D[0], y1: j[1], y2: D[1] }), + A = (s.posPts = { x1: p.x, x2: v.x, y1: p.y, y2: v.y }), + R = D[1] - j[1], + L = D[0] - j[0], + I = Math.sqrt(L * L + R * R), + B = (s.vector = { x: L, y: R }), + F = (s.vectorNorm = { x: B.x / I, y: B.y / I }), + z = { x: -F.y, y: F.x }; + (s.nodesOverlap = + !M(I) || + w.checkPoint(j[0], j[1], 0, y, b, v.x, v.y) || + x.checkPoint(D[0], D[1], 0, g, m, p.x, p.y)), + (s.vectorNormInverse = z), + (l = { + nodesOverlap: s.nodesOverlap, + dirCounts: s.dirCounts, + calculatedIntersection: !0, + hasBezier: s.hasBezier, + hasUnbundled: s.hasUnbundled, + eles: s.eles, + srcPos: v, + tgtPos: p, + srcW: y, + srcH: b, + tgtW: g, + tgtH: m, + srcIntn: N, + tgtIntn: T, + srcShape: w, + tgtShape: x, + posPts: { x1: A.x2, y1: A.y2, x2: A.x1, y2: A.y1 }, + intersectionPts: { x1: O.x2, y1: O.y2, x2: O.x1, y2: O.y1 }, + vector: { x: -B.x, y: -B.y }, + vectorNorm: { x: -F.x, y: -F.y }, + vectorNormInverse: { x: -z.x, y: -z.y }, + }); + } + var V = C ? l : s; + (_.nodesOverlap = V.nodesOverlap), + (_.srcIntn = V.srcIntn), + (_.tgtIntn = V.tgtIntn), + r && + (d.isParent() || d.isChild() || f.isParent() || f.isChild()) && + (d.parents().anySame(f) || f.parents().anySame(d) || (d.same(f) && d.isParent())) + ? t.findCompoundLoopPoints(k, V, E, P) + : d === f + ? t.findLoopPoints(k, V, E, P) + : 'segments' === S + ? t.findSegmentsPoints(k, V) + : 'taxi' === S + ? t.findTaxiPoints(k, V) + : 'straight' === S || (!P && s.eles.length % 2 == 1 && E === Math.floor(s.eles.length / 2)) + ? t.findStraightEdgePoints(k) + : t.findBezierPoints(k, V, E, P, C), + t.findEndpoints(k), + t.tryToCorrectInvalidPoints(k, V), + t.checkForInvalidEdgeWarning(k), + t.storeAllpts(k), + t.storeEdgeProjections(k), + t.calculateArrowAngles(k), + t.recalculateEdgeLabelProjections(k), + t.calculateLabelAngles(k); + } + }, + y = 0; + y < i.length; + y++ + ) + m(y); + this.findHaystackPoints(a); + } + }), + (ts.getSegmentPoints = function (e) { + var t = e[0]._private.rscratch; + if ('segments' === t.edgeType) return this.recalculateRenderedStyle(e), ns(t.segpts); + }), + (ts.getControlPoints = function (e) { + var t = e[0]._private.rscratch, + n = t.edgeType; + if ('bezier' === n || 'multibezier' === n || 'self' === n || 'compound' === n) + return this.recalculateRenderedStyle(e), ns(t.ctrlpts); + }), + (ts.getEdgeMidpoint = function (e) { + var t = e[0]._private.rscratch; + return this.recalculateRenderedStyle(e), { x: t.midX, y: t.midY }; + }); + var rs = { + manualEndptToPx: function (e, t) { + var n = e.position(), + r = e.outerWidth(), + o = e.outerHeight(); + if (2 === t.value.length) { + var i = [t.pfValue[0], t.pfValue[1]]; + return ( + '%' === t.units[0] && (i[0] = i[0] * r), + '%' === t.units[1] && (i[1] = i[1] * o), + (i[0] += n.x), + (i[1] += n.y), + i + ); + } + var a = t.pfValue[0]; + a = -Math.PI / 2 + a; + var s = 2 * Math.max(r, o), + l = [n.x + Math.cos(a) * s, n.y + Math.sin(a) * s]; + return this.nodeShapes[this.getNodeShape(e)].intersectLine(n.x, n.y, r, o, l[0], l[1], 0); + }, + findEndpoints: function (e) { + var t, + n, + r, + o, + i, + a = this, + s = e.source()[0], + l = e.target()[0], + c = s.position(), + u = l.position(), + d = e.pstyle('target-arrow-shape').value, + f = e.pstyle('source-arrow-shape').value, + h = e.pstyle('target-distance-from-node').pfValue, + p = e.pstyle('source-distance-from-node').pfValue, + v = e.pstyle('curve-style').value, + g = e._private.rscratch, + m = g.edgeType, + y = 'self' === m || 'compound' === m, + b = 'bezier' === m || 'multibezier' === m || y, + x = 'bezier' !== m, + w = 'straight' === m || 'segments' === m, + E = 'segments' === m, + k = b || x || w, + _ = y || 'taxi' === v, + S = e.pstyle('source-endpoint'), + P = _ ? 'outside-to-node' : S.value, + C = e.pstyle('target-endpoint'), + j = _ ? 'outside-to-node' : C.value; + if (((g.srcManEndpt = S), (g.tgtManEndpt = C), b)) { + var T = [g.ctrlpts[0], g.ctrlpts[1]]; + (n = x ? [g.ctrlpts[g.ctrlpts.length - 2], g.ctrlpts[g.ctrlpts.length - 1]] : T), (r = T); + } else if (w) { + var D = E ? g.segpts.slice(0, 2) : [u.x, u.y]; + (n = E ? g.segpts.slice(g.segpts.length - 2) : [c.x, c.y]), (r = D); + } + if ('inside-to-node' === j) t = [u.x, u.y]; + else if (C.units) t = this.manualEndptToPx(l, C); + else if ('outside-to-line' === j) t = g.tgtIntn; + else if ( + ('outside-to-node' === j || 'outside-to-node-or-label' === j + ? (o = n) + : ('outside-to-line' !== j && 'outside-to-line-or-label' !== j) || (o = [c.x, c.y]), + (t = a.nodeShapes[this.getNodeShape(l)].intersectLine( + u.x, + u.y, + l.outerWidth(), + l.outerHeight(), + o[0], + o[1], + 0, + )), + 'outside-to-node-or-label' === j || 'outside-to-line-or-label' === j) + ) { + var N = l._private.rscratch, + O = N.labelWidth, + A = N.labelHeight, + R = N.labelX, + L = N.labelY, + I = O / 2, + B = A / 2, + F = l.pstyle('text-valign').value; + 'top' === F ? (L -= B) : 'bottom' === F && (L += B); + var z = l.pstyle('text-halign').value; + 'left' === z ? (R -= I) : 'right' === z && (R += I); + var V = Lt(o[0], o[1], [R - I, L - B, R + I, L - B, R + I, L + B, R - I, L + B], u.x, u.y); + if (V.length > 0) { + var G = c, + H = ut(G, it(t)), + W = ut(G, it(V)), + U = H; + if ((W < H && ((t = V), (U = W)), V.length > 2)) ut(G, { x: V[2], y: V[3] }) < U && (t = [V[2], V[3]]); + } + } + var q = It(t, n, a.arrowShapes[d].spacing(e) + h), + Y = It(t, n, a.arrowShapes[d].gap(e) + h); + if (((g.endX = Y[0]), (g.endY = Y[1]), (g.arrowEndX = q[0]), (g.arrowEndY = q[1]), 'inside-to-node' === P)) + t = [c.x, c.y]; + else if (S.units) t = this.manualEndptToPx(s, S); + else if ('outside-to-line' === P) t = g.srcIntn; + else if ( + ('outside-to-node' === P || 'outside-to-node-or-label' === P + ? (i = r) + : ('outside-to-line' !== P && 'outside-to-line-or-label' !== P) || (i = [u.x, u.y]), + (t = a.nodeShapes[this.getNodeShape(s)].intersectLine( + c.x, + c.y, + s.outerWidth(), + s.outerHeight(), + i[0], + i[1], + 0, + )), + 'outside-to-node-or-label' === P || 'outside-to-line-or-label' === P) + ) { + var X = s._private.rscratch, + $ = X.labelWidth, + K = X.labelHeight, + Z = X.labelX, + Q = X.labelY, + J = $ / 2, + ee = K / 2, + te = s.pstyle('text-valign').value; + 'top' === te ? (Q -= ee) : 'bottom' === te && (Q += ee); + var ne = s.pstyle('text-halign').value; + 'left' === ne ? (Z -= J) : 'right' === ne && (Z += J); + var re = Lt(i[0], i[1], [Z - J, Q - ee, Z + J, Q - ee, Z + J, Q + ee, Z - J, Q + ee], c.x, c.y); + if (re.length > 0) { + var oe = u, + ie = ut(oe, it(t)), + ae = ut(oe, it(re)), + se = ie; + if ((ae < ie && ((t = [re[0], re[1]]), (se = ae)), re.length > 2)) + ut(oe, { x: re[2], y: re[3] }) < se && (t = [re[2], re[3]]); + } + } + var le = It(t, r, a.arrowShapes[f].spacing(e) + p), + ce = It(t, r, a.arrowShapes[f].gap(e) + p); + (g.startX = ce[0]), + (g.startY = ce[1]), + (g.arrowStartX = le[0]), + (g.arrowStartY = le[1]), + k && (M(g.startX) && M(g.startY) && M(g.endX) && M(g.endY) ? (g.badLine = !1) : (g.badLine = !0)); + }, + getSourceEndpoint: function (e) { + var t = e[0]._private.rscratch; + return ( + this.recalculateRenderedStyle(e), + 'haystack' === t.edgeType + ? { x: t.haystackPts[0], y: t.haystackPts[1] } + : { x: t.arrowStartX, y: t.arrowStartY } + ); + }, + getTargetEndpoint: function (e) { + var t = e[0]._private.rscratch; + return ( + this.recalculateRenderedStyle(e), + 'haystack' === t.edgeType + ? { x: t.haystackPts[2], y: t.haystackPts[3] } + : { x: t.arrowEndX, y: t.arrowEndY } + ); + }, + }, + os = {}; + function is(e, t, n) { + for ( + var r = function (e, t, n, r) { + return ft(e, t, n, r); + }, + o = t._private.rstyle.bezierPts, + i = 0; + i < e.bezierProjPcts.length; + i++ + ) { + var a = e.bezierProjPcts[i]; + o.push({ x: r(n[0], n[2], n[4], a), y: r(n[1], n[3], n[5], a) }); + } + } + (os.storeEdgeProjections = function (e) { + var t = e._private, + n = t.rscratch, + r = n.edgeType; + if ( + ((t.rstyle.bezierPts = null), + (t.rstyle.linePts = null), + (t.rstyle.haystackPts = null), + 'multibezier' === r || 'bezier' === r || 'self' === r || 'compound' === r) + ) { + t.rstyle.bezierPts = []; + for (var o = 0; o + 5 < n.allpts.length; o += 4) is(this, e, n.allpts.slice(o, o + 6)); + } else if ('segments' === r) { + var i = (t.rstyle.linePts = []); + for (o = 0; o + 1 < n.allpts.length; o += 2) i.push({ x: n.allpts[o], y: n.allpts[o + 1] }); + } else if ('haystack' === r) { + var a = n.haystackPts; + t.rstyle.haystackPts = [ + { x: a[0], y: a[1] }, + { x: a[2], y: a[3] }, + ]; + } + t.rstyle.arrowWidth = + this.getArrowWidth(e.pstyle('width').pfValue, e.pstyle('arrow-scale').value) * this.arrowShapeWidth; + }), + (os.recalculateEdgeProjections = function (e) { + this.findEdgeControlPoints(e); + }); + var as = { + recalculateNodeLabelProjection: function (e) { + var t = e.pstyle('label').strValue; + if (!F(t)) { + var n, + r, + o = e._private, + i = e.width(), + a = e.height(), + s = e.padding(), + l = e.position(), + c = e.pstyle('text-halign').strValue, + u = e.pstyle('text-valign').strValue, + d = o.rscratch, + f = o.rstyle; + switch (c) { + case 'left': + n = l.x - i / 2 - s; + break; + case 'right': + n = l.x + i / 2 + s; + break; + default: + n = l.x; + } + switch (u) { + case 'top': + r = l.y - a / 2 - s; + break; + case 'bottom': + r = l.y + a / 2 + s; + break; + default: + r = l.y; + } + (d.labelX = n), + (d.labelY = r), + (f.labelX = n), + (f.labelY = r), + this.calculateLabelAngles(e), + this.applyLabelDimensions(e); + } + }, + }, + ss = function (e, t) { + var n = Math.atan(t / e); + return 0 === e && n < 0 && (n *= -1), n; + }, + ls = function (e, t) { + var n = t.x - e.x, + r = t.y - e.y; + return ss(n, r); + }; + (as.recalculateEdgeLabelProjections = function (e) { + var t, + n = e._private, + r = n.rscratch, + o = this, + i = { + mid: e.pstyle('label').strValue, + source: e.pstyle('source-label').strValue, + target: e.pstyle('target-label').strValue, + }; + if (i.mid || i.source || i.target) { + t = { x: r.midX, y: r.midY }; + var a = function (e, t, r) { + Ie(n.rscratch, e, t, r), Ie(n.rstyle, e, t, r); + }; + a('labelX', null, t.x), a('labelY', null, t.y); + var s = ss(r.midDispX, r.midDispY); + a('labelAutoAngle', null, s); + var l = function e() { + if (e.cache) return e.cache; + for (var t = [], i = 0; i + 5 < r.allpts.length; i += 4) { + var a = { x: r.allpts[i], y: r.allpts[i + 1] }, + s = { x: r.allpts[i + 2], y: r.allpts[i + 3] }, + l = { x: r.allpts[i + 4], y: r.allpts[i + 5] }; + t.push({ p0: a, p1: s, p2: l, startDist: 0, length: 0, segments: [] }); + } + var c = n.rstyle.bezierPts, + u = o.bezierProjPcts.length; + function d(e, t, n, r, o) { + var i = ct(t, n), + a = e.segments[e.segments.length - 1], + s = { p0: t, p1: n, t0: r, t1: o, startDist: a ? a.startDist + a.length : 0, length: i }; + e.segments.push(s), (e.length += i); + } + for (var f = 0; f < t.length; f++) { + var h = t[f], + p = t[f - 1]; + p && (h.startDist = p.startDist + p.length), d(h, h.p0, c[f * u], 0, o.bezierProjPcts[0]); + for (var v = 0; v < u - 1; v++) + d(h, c[f * u + v], c[f * u + v + 1], o.bezierProjPcts[v], o.bezierProjPcts[v + 1]); + d(h, c[f * u + u - 1], h.p2, o.bezierProjPcts[u - 1], 1); + } + return (e.cache = t); + }, + c = function (n) { + var o, + s = 'source' === n; + if (i[n]) { + var c = e.pstyle(n + '-text-offset').pfValue; + switch (r.edgeType) { + case 'self': + case 'compound': + case 'bezier': + case 'multibezier': + for (var u, d = l(), f = 0, h = 0, p = 0; p < d.length; p++) { + for (var v = d[s ? p : d.length - 1 - p], g = 0; g < v.segments.length; g++) { + var m = v.segments[s ? g : v.segments.length - 1 - g], + y = p === d.length - 1 && g === v.segments.length - 1; + if (((f = h), (h += m.length) >= c || y)) { + u = { cp: v, segment: m }; + break; + } + } + if (u) break; + } + var b = u.cp, + x = u.segment, + w = (c - f) / x.length, + E = x.t1 - x.t0, + k = s ? x.t0 + E * w : x.t1 - E * w; + (k = pt(0, k, 1)), + (t = ht(b.p0, b.p1, b.p2, k)), + (o = (function (e, t, n, r) { + var o = pt(0, r - 0.001, 1), + i = pt(0, r + 0.001, 1), + a = ht(e, t, n, o), + s = ht(e, t, n, i); + return ls(a, s); + })(b.p0, b.p1, b.p2, k)); + break; + case 'straight': + case 'segments': + case 'haystack': + for ( + var _, S, P, C, j = 0, T = r.allpts.length, D = 0; + D + 3 < T && + (s + ? ((P = { x: r.allpts[D], y: r.allpts[D + 1] }), + (C = { x: r.allpts[D + 2], y: r.allpts[D + 3] })) + : ((P = { x: r.allpts[T - 2 - D], y: r.allpts[T - 1 - D] }), + (C = { x: r.allpts[T - 4 - D], y: r.allpts[T - 3 - D] })), + (S = j), + !((j += _ = ct(P, C)) >= c)); + D += 2 + ); + var N = (c - S) / _; + (N = pt(0, N, 1)), + (t = (function (e, t, n, r) { + var o = t.x - e.x, + i = t.y - e.y, + a = ct(e, t), + s = o / a, + l = i / a; + return (n = n ?? 0), (r = null != r ? r : n * a), { x: e.x + s * r, y: e.y + l * r }; + })(P, C, N)), + (o = ls(P, C)); + } + a('labelX', n, t.x), a('labelY', n, t.y), a('labelAutoAngle', n, o); + } + }; + c('source'), c('target'), this.applyLabelDimensions(e); + } + }), + (as.applyLabelDimensions = function (e) { + this.applyPrefixedLabelDimensions(e), + e.isEdge() && + (this.applyPrefixedLabelDimensions(e, 'source'), this.applyPrefixedLabelDimensions(e, 'target')); + }), + (as.applyPrefixedLabelDimensions = function (e, t) { + var n = e._private, + r = this.getLabelText(e, t), + o = this.calculateLabelDimensions(e, r), + i = e.pstyle('line-height').pfValue, + a = e.pstyle('text-wrap').strValue, + s = Le(n.rscratch, 'labelWrapCachedLines', t) || [], + l = 'wrap' !== a ? 1 : Math.max(s.length, 1), + c = o.height / l, + u = c * i, + d = o.width, + f = o.height + (l - 1) * (i - 1) * c; + Ie(n.rstyle, 'labelWidth', t, d), + Ie(n.rscratch, 'labelWidth', t, d), + Ie(n.rstyle, 'labelHeight', t, f), + Ie(n.rscratch, 'labelHeight', t, f), + Ie(n.rscratch, 'labelLineHeight', t, u); + }), + (as.getLabelText = function (e, t) { + var n = e._private, + r = t ? t + '-' : '', + o = e.pstyle(r + 'label').strValue, + i = e.pstyle('text-transform').value, + a = function (e, r) { + return r ? (Ie(n.rscratch, e, t, r), r) : Le(n.rscratch, e, t); + }; + if (!o) return ''; + 'none' == i || ('uppercase' == i ? (o = o.toUpperCase()) : 'lowercase' == i && (o = o.toLowerCase())); + var s = e.pstyle('text-wrap').value; + if ('wrap' === s) { + var l = a('labelKey'); + if (null != l && a('labelWrapKey') === l) return a('labelWrapCachedText'); + for ( + var c = o.split('\n'), + u = e.pstyle('text-max-width').pfValue, + d = 'anywhere' === e.pstyle('text-overflow-wrap').value, + f = [], + h = /[\s\u200b]+/, + p = d ? '' : ' ', + v = 0; + v < c.length; + v++ + ) { + var g = c[v], + m = this.calculateLabelDimensions(e, g).width; + if (d) { + var y = g.split('').join('\u200b'); + g = y; + } + if (m > u) { + for (var b = g.split(h), x = '', w = 0; w < b.length; w++) { + var E = b[w], + k = 0 === x.length ? E : x + p + E; + this.calculateLabelDimensions(e, k).width <= u ? (x += E + p) : (x && f.push(x), (x = E + p)); + } + x.match(/^[\s\u200b]+$/) || f.push(x); + } else f.push(g); + } + a('labelWrapCachedLines', f), (o = a('labelWrapCachedText', f.join('\n'))), a('labelWrapKey', l); + } else if ('ellipsis' === s) { + var _ = e.pstyle('text-max-width').pfValue, + S = '', + P = !1; + if (this.calculateLabelDimensions(e, o).width < _) return o; + for (var C = 0; C < o.length; C++) { + if (this.calculateLabelDimensions(e, S + o[C] + '\u2026').width > _) break; + (S += o[C]), C === o.length - 1 && (P = !0); + } + return P || (S += '\u2026'), S; + } + return o; + }), + (as.getLabelJustification = function (e) { + var t = e.pstyle('text-justification').strValue, + n = e.pstyle('text-halign').strValue; + if ('auto' !== t) return t; + if (!e.isNode()) return 'center'; + switch (n) { + case 'left': + return 'right'; + case 'right': + return 'left'; + default: + return 'center'; + } + }), + (as.calculateLabelDimensions = function (e, t) { + var n = ve(t, e._private.labelDimsKey), + r = this.labelDimCache || (this.labelDimCache = []), + o = r[n]; + if (null != o) return o; + var i = e.pstyle('font-style').strValue, + a = e.pstyle('font-size').pfValue, + s = e.pstyle('font-family').strValue, + l = e.pstyle('font-weight').strValue, + c = this.labelCalcCanvas, + u = this.labelCalcCanvasContext; + if (!c) { + (c = this.labelCalcCanvas = document.createElement('canvas')), + (u = this.labelCalcCanvasContext = c.getContext('2d')); + var d = c.style; + (d.position = 'absolute'), + (d.left = '-9999px'), + (d.top = '-9999px'), + (d.zIndex = '-1'), + (d.visibility = 'hidden'), + (d.pointerEvents = 'none'); + } + u.font = ''.concat(i, ' ').concat(l, ' ').concat(a, 'px ').concat(s); + for (var f = 0, h = 0, p = t.split('\n'), v = 0; v < p.length; v++) { + var g = p[v], + m = u.measureText(g), + y = Math.ceil(m.width), + b = a; + (f = Math.max(y, f)), (h += b); + } + return (f += 0), (h += 0), (r[n] = { width: f, height: h }); + }), + (as.calculateLabelAngle = function (e, t) { + var n = e._private.rscratch, + r = e.isEdge(), + o = t ? t + '-' : '', + i = e.pstyle(o + 'text-rotation'), + a = i.strValue; + return 'none' === a ? 0 : r && 'autorotate' === a ? n.labelAutoAngle : 'autorotate' === a ? 0 : i.pfValue; + }), + (as.calculateLabelAngles = function (e) { + var t = this, + n = e.isEdge(), + r = e._private.rscratch; + (r.labelAngle = t.calculateLabelAngle(e)), + n && + ((r.sourceLabelAngle = t.calculateLabelAngle(e, 'source')), + (r.targetLabelAngle = t.calculateLabelAngle(e, 'target'))); + }); + var cs = {}, + us = !1; + cs.getNodeShape = function (e) { + var t = e.pstyle('shape').value; + if ('cutrectangle' === t && (e.width() < 28 || e.height() < 28)) + return ( + us || + (je('The `cutrectangle` node shape can not be used at small sizes so `rectangle` is used instead'), + (us = !0)), + 'rectangle' + ); + if (e.isParent()) + return 'rectangle' === t || + 'roundrectangle' === t || + 'round-rectangle' === t || + 'cutrectangle' === t || + 'cut-rectangle' === t || + 'barrel' === t + ? t + : 'rectangle'; + if ('polygon' === t) { + var n = e.pstyle('shape-polygon-points').value; + return this.nodeShapes.makePolygon(n).name; + } + return t; + }; + var ds = { + registerCalculationListeners: function () { + var e = this.cy, + t = e.collection(), + n = this, + r = function (e) { + var n = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1]; + if ((t.merge(e), n)) + for (var r = 0; r < e.length; r++) { + var o = e[r]._private.rstyle; + (o.clean = !1), (o.cleanConnected = !1); + } + }; + n.binder(e) + .on('bounds.* dirty.*', function (e) { + var t = e.target; + r(t); + }) + .on('style.* background.*', function (e) { + var t = e.target; + r(t, !1); + }); + var o = function (o) { + if (o) { + var i = n.onUpdateEleCalcsFns; + t.cleanStyle(); + for (var a = 0; a < t.length; a++) { + var s = t[a], + l = s._private.rstyle; + s.isNode() && !l.cleanConnected && (r(s.connectedEdges()), (l.cleanConnected = !0)); + } + if (i) + for (var c = 0; c < i.length; c++) { + (0, i[c])(o, t); + } + n.recalculateRenderedStyle(t), (t = e.collection()); + } + }; + (n.flushRenderedStyleQueue = function () { + o(!0); + }), + n.beforeRender(o, n.beforeRenderPriorities.eleCalcs); + }, + onUpdateEleCalcs: function (e) { + (this.onUpdateEleCalcsFns = this.onUpdateEleCalcsFns || []).push(e); + }, + recalculateRenderedStyle: function (e, t) { + var n = function (e) { + return e._private.rstyle.cleanConnected; + }, + r = [], + o = []; + if (!this.destroyed) { + void 0 === t && (t = !0); + for (var i = 0; i < e.length; i++) { + var a = e[i], + s = a._private, + l = s.rstyle; + !a.isEdge() || (n(a.source()) && n(a.target())) || (l.clean = !1), + (t && l.clean) || + a.removed() || + ('none' !== a.pstyle('display').value && + ('nodes' === s.group ? o.push(a) : r.push(a), (l.clean = !0))); + } + for (var c = 0; c < o.length; c++) { + var u = o[c], + d = u._private.rstyle, + f = u.position(); + this.recalculateNodeLabelProjection(u), + (d.nodeX = f.x), + (d.nodeY = f.y), + (d.nodeW = u.pstyle('width').pfValue), + (d.nodeH = u.pstyle('height').pfValue); + } + this.recalculateEdgeProjections(r); + for (var h = 0; h < r.length; h++) { + var p = r[h]._private, + v = p.rstyle, + g = p.rscratch; + (v.srcX = g.arrowStartX), + (v.srcY = g.arrowStartY), + (v.tgtX = g.arrowEndX), + (v.tgtY = g.arrowEndY), + (v.midX = g.midX), + (v.midY = g.midY), + (v.labelAngle = g.labelAngle), + (v.sourceLabelAngle = g.sourceLabelAngle), + (v.targetLabelAngle = g.targetLabelAngle); + } + } + }, + }, + fs = { + updateCachedGrabbedEles: function () { + var e = this.cachedZSortedEles; + if (e) { + (e.drag = []), (e.nondrag = []); + for (var t = [], n = 0; n < e.length; n++) { + var r = (o = e[n])._private.rscratch; + o.grabbed() && !o.isParent() ? t.push(o) : r.inDragLayer ? e.drag.push(o) : e.nondrag.push(o); + } + for (n = 0; n < t.length; n++) { + var o = t[n]; + e.drag.push(o); + } + } + }, + invalidateCachedZSortedEles: function () { + this.cachedZSortedEles = null; + }, + getCachedZSortedEles: function (e) { + if (e || !this.cachedZSortedEles) { + var t = this.cy.mutableElements().toArray(); + t.sort(Qo), + (t.interactive = t.filter(function (e) { + return e.interactive(); + })), + (this.cachedZSortedEles = t), + this.updateCachedGrabbedEles(); + } else t = this.cachedZSortedEles; + return t; + }, + }, + hs = {}; + [Ja, es, ts, rs, os, as, cs, ds, fs].forEach(function (e) { + Q(hs, e); + }); + var ps = { + getCachedImage: function (e, t, n) { + var r = (this.imageCache = this.imageCache || {}), + o = r[e]; + if (o) return o.image.complete || o.image.addEventListener('load', n), o.image; + var i = ((o = r[e] = r[e] || {}).image = new Image()); + i.addEventListener('load', n), + i.addEventListener('error', function () { + i.error = !0; + }); + var a = 'data:'; + return e.substring(0, 5).toLowerCase() === a || (i.crossOrigin = t), (i.src = e), i; + }, + }, + vs = { + registerBinding: function (e, t, n, r) { + var o = Array.prototype.slice.apply(arguments, [1]), + i = this.binder(e); + return i.on.apply(i, o); + }, + }; + (vs.binder = function (e) { + var t, + n = this, + r = + e === window || + e === document || + e === document.body || + ((t = e), 'undefined' != typeof HTMLElement && t instanceof HTMLElement); + if (null == n.supportsPassiveEvents) { + var o = !1; + try { + var i = Object.defineProperty({}, 'passive', { + get: function () { + return (o = !0), !0; + }, + }); + window.addEventListener('test', null, i); + } catch (s) {} + n.supportsPassiveEvents = o; + } + var a = function (t, o, i) { + var a = Array.prototype.slice.call(arguments); + return ( + r && n.supportsPassiveEvents && (a[2] = { capture: null != i && i, passive: !1, once: !1 }), + n.bindings.push({ target: e, args: a }), + (e.addEventListener || e.on).apply(e, a), + this + ); + }; + return { on: a, addEventListener: a, addListener: a, bind: a }; + }), + (vs.nodeIsDraggable = function (e) { + return e && e.isNode() && !e.locked() && e.grabbable(); + }), + (vs.nodeIsGrabbable = function (e) { + return this.nodeIsDraggable(e) && e.interactive(); + }), + (vs.load = function () { + var e = this, + t = function (e) { + return e.selected(); + }, + n = function (t, n, r, o) { + null == t && (t = e.cy); + for (var i = 0; i < n.length; i++) { + var a = n[i]; + t.emit({ originalEvent: r, type: a, position: o }); + } + }, + r = function (e) { + return e.shiftKey || e.metaKey || e.ctrlKey; + }, + o = function (t, n) { + var r = !0; + if (e.cy.hasCompoundNodes() && t && t.pannable()) + for (var o = 0; n && o < n.length; o++) { + if ((t = n[o]).isNode() && t.isParent() && !t.pannable()) { + r = !1; + break; + } + } + else r = !0; + return r; + }, + i = function (e) { + e[0]._private.rscratch.inDragLayer = !0; + }, + a = function (e) { + e[0]._private.rscratch.isGrabTarget = !0; + }, + s = function (e, t) { + var n = t.addToList; + n.has(e) || + !e.grabbable() || + e.locked() || + (n.merge(e), + (function (e) { + e[0]._private.grabbed = !0; + })(e)); + }, + l = function (t, n) { + n = n || {}; + var r = t.cy().hasCompoundNodes(); + n.inDragLayer && + (t.forEach(i), + t + .neighborhood() + .stdFilter(function (e) { + return !r || e.isEdge(); + }) + .forEach(i)), + n.addToList && + t.forEach(function (e) { + s(e, n); + }), + (function (e, t) { + if (e.cy().hasCompoundNodes() && (null != t.inDragLayer || null != t.addToList)) { + var n = e.descendants(); + t.inDragLayer && (n.forEach(i), n.connectedEdges().forEach(i)), t.addToList && s(n, t); + } + })(t, n), + f(t, { inDragLayer: n.inDragLayer }), + e.updateCachedGrabbedEles(); + }, + u = l, + d = function (t) { + t && + (e.getCachedZSortedEles().forEach(function (e) { + !(function (e) { + e[0]._private.grabbed = !1; + })(e), + (function (e) { + e[0]._private.rscratch.inDragLayer = !1; + })(e), + (function (e) { + e[0]._private.rscratch.isGrabTarget = !1; + })(e); + }), + e.updateCachedGrabbedEles()); + }, + f = function (e, t) { + if ((null != t.inDragLayer || null != t.addToList) && e.cy().hasCompoundNodes()) { + var n = e.ancestors().orphans(); + if (!n.same(e)) { + var r = n.descendants().spawnSelf().merge(n).unmerge(e).unmerge(e.descendants()), + o = r.connectedEdges(); + t.inDragLayer && (o.forEach(i), r.forEach(i)), + t.addToList && + r.forEach(function (e) { + s(e, t); + }); + } + } + }, + h = function () { + null != document.activeElement && null != document.activeElement.blur && document.activeElement.blur(); + }, + p = 'undefined' != typeof MutationObserver, + v = 'undefined' != typeof ResizeObserver; + p + ? ((e.removeObserver = new MutationObserver(function (t) { + for (var n = 0; n < t.length; n++) { + var r = t[n].removedNodes; + if (r) + for (var o = 0; o < r.length; o++) { + if (r[o] === e.container) { + e.destroy(); + break; + } + } + } + })), + e.container.parentNode && e.removeObserver.observe(e.container.parentNode, { childList: !0 })) + : e.registerBinding(e.container, 'DOMNodeRemoved', function (t) { + e.destroy(); + }); + var g = c.default(function () { + e.cy.resize(); + }, 100); + p && ((e.styleObserver = new MutationObserver(g)), e.styleObserver.observe(e.container, { attributes: !0 })), + e.registerBinding(window, 'resize', g), + v && ((e.resizeObserver = new ResizeObserver(g)), e.resizeObserver.observe(e.container)); + var m = function () { + e.invalidateContainerClientCoordsCache(); + }; + !(function (e, t) { + for (; null != e; ) t(e), (e = e.parentNode); + })(e.container, function (t) { + e.registerBinding(t, 'transitionend', m), + e.registerBinding(t, 'animationend', m), + e.registerBinding(t, 'scroll', m); + }), + e.registerBinding(e.container, 'contextmenu', function (e) { + e.preventDefault(); + }); + var y, + b, + x, + w = function (t) { + for ( + var n = e.findContainerClientCoords(), + r = n[0], + o = n[1], + i = n[2], + a = n[3], + s = t.touches ? t.touches : [t], + l = !1, + c = 0; + c < s.length; + c++ + ) { + var u = s[c]; + if (r <= u.clientX && u.clientX <= r + i && o <= u.clientY && u.clientY <= o + a) { + l = !0; + break; + } + } + if (!l) return !1; + for (var d = e.container, f = t.target.parentNode, h = !1; f; ) { + if (f === d) { + h = !0; + break; + } + f = f.parentNode; + } + return !!h; + }; + e.registerBinding( + e.container, + 'mousedown', + function (t) { + if (w(t)) { + t.preventDefault(), h(), (e.hoverData.capture = !0), (e.hoverData.which = t.which); + var r = e.cy, + o = [t.clientX, t.clientY], + i = e.projectIntoViewport(o[0], o[1]), + s = e.selection, + c = e.findNearestElements(i[0], i[1], !0, !1), + d = c[0], + f = e.dragData.possibleDragElements; + (e.hoverData.mdownPos = i), (e.hoverData.mdownGPos = o); + if (3 == t.which) { + e.hoverData.cxtStarted = !0; + var p = { originalEvent: t, type: 'cxttapstart', position: { x: i[0], y: i[1] } }; + d ? (d.activate(), d.emit(p), (e.hoverData.down = d)) : r.emit(p), + (e.hoverData.downTime = new Date().getTime()), + (e.hoverData.cxtDragged = !1); + } else if (1 == t.which) { + if ((d && d.activate(), null != d && e.nodeIsGrabbable(d))) { + var v = function (e) { + return { originalEvent: t, type: e, position: { x: i[0], y: i[1] } }; + }; + if ((a(d), d.selected())) { + f = e.dragData.possibleDragElements = r.collection(); + var g = r.$(function (t) { + return t.isNode() && t.selected() && e.nodeIsGrabbable(t); + }); + l(g, { addToList: f }), + d.emit(v('grabon')), + g.forEach(function (e) { + e.emit(v('grab')); + }); + } else + (f = e.dragData.possibleDragElements = r.collection()), + u(d, { addToList: f }), + d.emit(v('grabon')).emit(v('grab')); + e.redrawHint('eles', !0), e.redrawHint('drag', !0); + } + (e.hoverData.down = d), + (e.hoverData.downs = c), + (e.hoverData.downTime = new Date().getTime()), + n(d, ['mousedown', 'tapstart', 'vmousedown'], t, { x: i[0], y: i[1] }), + null == d + ? ((s[4] = 1), + (e.data.bgActivePosistion = { x: i[0], y: i[1] }), + e.redrawHint('select', !0), + e.redraw()) + : d.pannable() && (s[4] = 1), + (e.hoverData.tapholdCancelled = !1), + clearTimeout(e.hoverData.tapholdTimeout), + (e.hoverData.tapholdTimeout = setTimeout(function () { + if (!e.hoverData.tapholdCancelled) { + var n = e.hoverData.down; + n + ? n.emit({ originalEvent: t, type: 'taphold', position: { x: i[0], y: i[1] } }) + : r.emit({ originalEvent: t, type: 'taphold', position: { x: i[0], y: i[1] } }); + } + }, e.tapholdDuration)); + } + (s[0] = s[2] = i[0]), (s[1] = s[3] = i[1]); + } + }, + !1, + ), + e.registerBinding( + window, + 'mousemove', + function (t) { + if (e.hoverData.capture || w(t)) { + var i = !1, + a = e.cy, + s = a.zoom(), + c = [t.clientX, t.clientY], + u = e.projectIntoViewport(c[0], c[1]), + f = e.hoverData.mdownPos, + h = e.hoverData.mdownGPos, + p = e.selection, + v = null; + e.hoverData.draggingEles || + e.hoverData.dragging || + e.hoverData.selecting || + (v = e.findNearestElement(u[0], u[1], !0, !1)); + var g, + m = e.hoverData.last, + y = e.hoverData.down, + b = [u[0] - p[2], u[1] - p[3]], + x = e.dragData.possibleDragElements; + if (h) { + var E = c[0] - h[0], + k = E * E, + _ = c[1] - h[1], + S = k + _ * _; + e.hoverData.isOverThresholdDrag = g = S >= e.desktopTapThreshold2; + } + var P = r(t); + g && (e.hoverData.tapholdCancelled = !0); + (i = !0), n(v, ['mousemove', 'vmousemove', 'tapdrag'], t, { x: u[0], y: u[1] }); + var C = function () { + (e.data.bgActivePosistion = void 0), + e.hoverData.selecting || + a.emit({ originalEvent: t, type: 'boxstart', position: { x: u[0], y: u[1] } }), + (p[4] = 1), + (e.hoverData.selecting = !0), + e.redrawHint('select', !0), + e.redraw(); + }; + if (3 === e.hoverData.which) { + if (g) { + var j = { originalEvent: t, type: 'cxtdrag', position: { x: u[0], y: u[1] } }; + y ? y.emit(j) : a.emit(j), + (e.hoverData.cxtDragged = !0), + (e.hoverData.cxtOver && v === e.hoverData.cxtOver) || + (e.hoverData.cxtOver && + e.hoverData.cxtOver.emit({ + originalEvent: t, + type: 'cxtdragout', + position: { x: u[0], y: u[1] }, + }), + (e.hoverData.cxtOver = v), + v && v.emit({ originalEvent: t, type: 'cxtdragover', position: { x: u[0], y: u[1] } })); + } + } else if (e.hoverData.dragging) { + if (((i = !0), a.panningEnabled() && a.userPanningEnabled())) { + var T; + if (e.hoverData.justStartedPan) { + var D = e.hoverData.mdownPos; + (T = { x: (u[0] - D[0]) * s, y: (u[1] - D[1]) * s }), (e.hoverData.justStartedPan = !1); + } else T = { x: b[0] * s, y: b[1] * s }; + a.panBy(T), a.emit('dragpan'), (e.hoverData.dragged = !0); + } + u = e.projectIntoViewport(t.clientX, t.clientY); + } else if (1 != p[4] || (null != y && !y.pannable())) { + if ( + (y && y.pannable() && y.active() && y.unactivate(), + (y && y.grabbed()) || + v == m || + (m && n(m, ['mouseout', 'tapdragout'], t, { x: u[0], y: u[1] }), + v && n(v, ['mouseover', 'tapdragover'], t, { x: u[0], y: u[1] }), + (e.hoverData.last = v)), + y) + ) + if (g) { + if (a.boxSelectionEnabled() && P) + y && + y.grabbed() && + (d(x), + y.emit('freeon'), + x.emit('free'), + e.dragData.didDrag && (y.emit('dragfreeon'), x.emit('dragfree'))), + C(); + else if (y && y.grabbed() && e.nodeIsDraggable(y)) { + var N = !e.dragData.didDrag; + N && e.redrawHint('eles', !0), + (e.dragData.didDrag = !0), + e.hoverData.draggingEles || l(x, { inDragLayer: !0 }); + var O = { x: 0, y: 0 }; + if (M(b[0]) && M(b[1]) && ((O.x += b[0]), (O.y += b[1]), N)) { + var A = e.hoverData.dragDelta; + A && M(A[0]) && M(A[1]) && ((O.x += A[0]), (O.y += A[1])); + } + (e.hoverData.draggingEles = !0), + x.silentShift(O).emit('position drag'), + e.redrawHint('drag', !0), + e.redraw(); + } + } else + !(function () { + var t = (e.hoverData.dragDelta = e.hoverData.dragDelta || []); + 0 === t.length ? (t.push(b[0]), t.push(b[1])) : ((t[0] += b[0]), (t[1] += b[1])); + })(); + i = !0; + } else if (g) { + if ( + e.hoverData.dragging || + !a.boxSelectionEnabled() || + (!P && a.panningEnabled() && a.userPanningEnabled()) + ) { + if (!e.hoverData.selecting && a.panningEnabled() && a.userPanningEnabled()) { + o(y, e.hoverData.downs) && + ((e.hoverData.dragging = !0), + (e.hoverData.justStartedPan = !0), + (p[4] = 0), + (e.data.bgActivePosistion = it(f)), + e.redrawHint('select', !0), + e.redraw()); + } + } else C(); + y && y.pannable() && y.active() && y.unactivate(); + } + return ( + (p[2] = u[0]), + (p[3] = u[1]), + i ? (t.stopPropagation && t.stopPropagation(), t.preventDefault && t.preventDefault(), !1) : void 0 + ); + } + }, + !1, + ), + e.registerBinding( + window, + 'mouseup', + function (o) { + if (e.hoverData.capture) { + e.hoverData.capture = !1; + var i = e.cy, + a = e.projectIntoViewport(o.clientX, o.clientY), + s = e.selection, + l = e.findNearestElement(a[0], a[1], !0, !1), + c = e.dragData.possibleDragElements, + u = e.hoverData.down, + f = r(o); + if ( + (e.data.bgActivePosistion && (e.redrawHint('select', !0), e.redraw()), + (e.hoverData.tapholdCancelled = !0), + (e.data.bgActivePosistion = void 0), + u && u.unactivate(), + 3 === e.hoverData.which) + ) { + var h = { originalEvent: o, type: 'cxttapend', position: { x: a[0], y: a[1] } }; + if ((u ? u.emit(h) : i.emit(h), !e.hoverData.cxtDragged)) { + var p = { originalEvent: o, type: 'cxttap', position: { x: a[0], y: a[1] } }; + u ? u.emit(p) : i.emit(p); + } + (e.hoverData.cxtDragged = !1), (e.hoverData.which = null); + } else if (1 === e.hoverData.which) { + if ( + (n(l, ['mouseup', 'tapend', 'vmouseup'], o, { x: a[0], y: a[1] }), + e.dragData.didDrag || + e.hoverData.dragged || + e.hoverData.selecting || + e.hoverData.isOverThresholdDrag || + (n(u, ['click', 'tap', 'vclick'], o, { x: a[0], y: a[1] }), + (b = !1), + o.timeStamp - x <= i.multiClickDebounceTime() + ? (y && clearTimeout(y), + (b = !0), + (x = null), + n(u, ['dblclick', 'dbltap', 'vdblclick'], o, { x: a[0], y: a[1] })) + : ((y = setTimeout(function () { + b || n(u, ['oneclick', 'onetap', 'voneclick'], o, { x: a[0], y: a[1] }); + }, i.multiClickDebounceTime())), + (x = o.timeStamp))), + null != u || + e.dragData.didDrag || + e.hoverData.selecting || + e.hoverData.dragged || + r(o) || + (i.$(t).unselect(['tapunselect']), + c.length > 0 && e.redrawHint('eles', !0), + (e.dragData.possibleDragElements = c = i.collection())), + l != u || + e.dragData.didDrag || + e.hoverData.selecting || + (null != l && + l._private.selectable && + (e.hoverData.dragging || + ('additive' === i.selectionType() || f + ? l.selected() + ? l.unselect(['tapunselect']) + : l.select(['tapselect']) + : f || (i.$(t).unmerge(l).unselect(['tapunselect']), l.select(['tapselect']))), + e.redrawHint('eles', !0))), + e.hoverData.selecting) + ) { + var v = i.collection(e.getAllInBox(s[0], s[1], s[2], s[3])); + e.redrawHint('select', !0), + v.length > 0 && e.redrawHint('eles', !0), + i.emit({ type: 'boxend', originalEvent: o, position: { x: a[0], y: a[1] } }); + var g = function (e) { + return e.selectable() && !e.selected(); + }; + 'additive' === i.selectionType() || f || i.$(t).unmerge(v).unselect(), + v.emit('box').stdFilter(g).select().emit('boxselect'), + e.redraw(); + } + if ( + (e.hoverData.dragging && + ((e.hoverData.dragging = !1), e.redrawHint('select', !0), e.redrawHint('eles', !0), e.redraw()), + !s[4]) + ) { + e.redrawHint('drag', !0), e.redrawHint('eles', !0); + var m = u && u.grabbed(); + d(c), + m && + (u.emit('freeon'), + c.emit('free'), + e.dragData.didDrag && (u.emit('dragfreeon'), c.emit('dragfree'))); + } + } + (s[4] = 0), + (e.hoverData.down = null), + (e.hoverData.cxtStarted = !1), + (e.hoverData.draggingEles = !1), + (e.hoverData.selecting = !1), + (e.hoverData.isOverThresholdDrag = !1), + (e.dragData.didDrag = !1), + (e.hoverData.dragged = !1), + (e.hoverData.dragDelta = []), + (e.hoverData.mdownPos = null), + (e.hoverData.mdownGPos = null); + } + }, + !1, + ); + var E, + k, + _, + S, + P, + C, + j, + T, + D, + N, + O, + A, + R, + L = function (t) { + if (!e.scrollingPage) { + var n = e.cy, + r = n.zoom(), + o = n.pan(), + i = e.projectIntoViewport(t.clientX, t.clientY), + a = [i[0] * r + o.x, i[1] * r + o.y]; + if (e.hoverData.draggingEles || e.hoverData.dragging || e.hoverData.cxtStarted || 0 !== e.selection[4]) + t.preventDefault(); + else if (n.panningEnabled() && n.userPanningEnabled() && n.zoomingEnabled() && n.userZoomingEnabled()) { + var s; + t.preventDefault(), + (e.data.wheelZooming = !0), + clearTimeout(e.data.wheelTimeout), + (e.data.wheelTimeout = setTimeout(function () { + (e.data.wheelZooming = !1), e.redrawHint('eles', !0), e.redraw(); + }, 150)), + (s = + null != t.deltaY + ? t.deltaY / -250 + : null != t.wheelDeltaY + ? t.wheelDeltaY / 1e3 + : t.wheelDelta / 1e3), + (s *= e.wheelSensitivity), + 1 === t.deltaMode && (s *= 33); + var l = n.zoom() * Math.pow(10, s); + 'gesturechange' === t.type && (l = e.gestureStartZoom * t.scale), + n.zoom({ level: l, renderedPosition: { x: a[0], y: a[1] } }), + n.emit('gesturechange' === t.type ? 'pinchzoom' : 'scrollzoom'); + } + } + }; + e.registerBinding(e.container, 'wheel', L, !0), + e.registerBinding( + window, + 'scroll', + function (t) { + (e.scrollingPage = !0), + clearTimeout(e.scrollingPageTimeout), + (e.scrollingPageTimeout = setTimeout(function () { + e.scrollingPage = !1; + }, 250)); + }, + !0, + ), + e.registerBinding( + e.container, + 'gesturestart', + function (t) { + (e.gestureStartZoom = e.cy.zoom()), e.hasTouchStarted || t.preventDefault(); + }, + !0, + ), + e.registerBinding( + e.container, + 'gesturechange', + function (t) { + e.hasTouchStarted || L(t); + }, + !0, + ), + e.registerBinding( + e.container, + 'mouseout', + function (t) { + var n = e.projectIntoViewport(t.clientX, t.clientY); + e.cy.emit({ originalEvent: t, type: 'mouseout', position: { x: n[0], y: n[1] } }); + }, + !1, + ), + e.registerBinding( + e.container, + 'mouseover', + function (t) { + var n = e.projectIntoViewport(t.clientX, t.clientY); + e.cy.emit({ originalEvent: t, type: 'mouseover', position: { x: n[0], y: n[1] } }); + }, + !1, + ); + var I, + B, + F, + z, + V, + G, + H, + W = function (e, t, n, r) { + return Math.sqrt((n - e) * (n - e) + (r - t) * (r - t)); + }, + U = function (e, t, n, r) { + return (n - e) * (n - e) + (r - t) * (r - t); + }; + if ( + (e.registerBinding( + e.container, + 'touchstart', + (I = function (t) { + if (((e.hasTouchStarted = !0), w(t))) { + h(), (e.touchData.capture = !0), (e.data.bgActivePosistion = void 0); + var r = e.cy, + o = e.touchData.now, + i = e.touchData.earlier; + if (t.touches[0]) { + var s = e.projectIntoViewport(t.touches[0].clientX, t.touches[0].clientY); + (o[0] = s[0]), (o[1] = s[1]); + } + if (t.touches[1]) { + s = e.projectIntoViewport(t.touches[1].clientX, t.touches[1].clientY); + (o[2] = s[0]), (o[3] = s[1]); + } + if (t.touches[2]) { + s = e.projectIntoViewport(t.touches[2].clientX, t.touches[2].clientY); + (o[4] = s[0]), (o[5] = s[1]); + } + if (t.touches[1]) { + (e.touchData.singleTouchMoved = !0), d(e.dragData.touchDragEles); + var c = e.findContainerClientCoords(); + (D = c[0]), + (N = c[1]), + (O = c[2]), + (A = c[3]), + (E = t.touches[0].clientX - D), + (k = t.touches[0].clientY - N), + (_ = t.touches[1].clientX - D), + (S = t.touches[1].clientY - N), + (R = 0 <= E && E <= O && 0 <= _ && _ <= O && 0 <= k && k <= A && 0 <= S && S <= A); + var f = r.pan(), + p = r.zoom(); + (P = W(E, k, _, S)), + (C = U(E, k, _, S)), + (T = [((j = [(E + _) / 2, (k + S) / 2])[0] - f.x) / p, (j[1] - f.y) / p]); + if (C < 4e4 && !t.touches[2]) { + var v = e.findNearestElement(o[0], o[1], !0, !0), + g = e.findNearestElement(o[2], o[3], !0, !0); + return ( + v && v.isNode() + ? (v + .activate() + .emit({ originalEvent: t, type: 'cxttapstart', position: { x: o[0], y: o[1] } }), + (e.touchData.start = v)) + : g && g.isNode() + ? (g + .activate() + .emit({ originalEvent: t, type: 'cxttapstart', position: { x: o[0], y: o[1] } }), + (e.touchData.start = g)) + : r.emit({ originalEvent: t, type: 'cxttapstart', position: { x: o[0], y: o[1] } }), + e.touchData.start && (e.touchData.start._private.grabbed = !1), + (e.touchData.cxt = !0), + (e.touchData.cxtDragged = !1), + (e.data.bgActivePosistion = void 0), + void e.redraw() + ); + } + } + if (t.touches[2]) r.boxSelectionEnabled() && t.preventDefault(); + else if (t.touches[1]); + else if (t.touches[0]) { + var m = e.findNearestElements(o[0], o[1], !0, !0), + y = m[0]; + if ( + null != y && + (y.activate(), (e.touchData.start = y), (e.touchData.starts = m), e.nodeIsGrabbable(y)) + ) { + var b = (e.dragData.touchDragEles = r.collection()), + x = null; + e.redrawHint('eles', !0), + e.redrawHint('drag', !0), + y.selected() + ? ((x = r.$(function (t) { + return t.selected() && e.nodeIsGrabbable(t); + })), + l(x, { addToList: b })) + : u(y, { addToList: b }), + a(y); + var M = function (e) { + return { originalEvent: t, type: e, position: { x: o[0], y: o[1] } }; + }; + y.emit(M('grabon')), + x + ? x.forEach(function (e) { + e.emit(M('grab')); + }) + : y.emit(M('grab')); + } + n(y, ['touchstart', 'tapstart', 'vmousedown'], t, { x: o[0], y: o[1] }), + null == y && + ((e.data.bgActivePosistion = { x: s[0], y: s[1] }), e.redrawHint('select', !0), e.redraw()), + (e.touchData.singleTouchMoved = !1), + (e.touchData.singleTouchStartTime = +new Date()), + clearTimeout(e.touchData.tapholdTimeout), + (e.touchData.tapholdTimeout = setTimeout(function () { + !1 !== e.touchData.singleTouchMoved || + e.pinching || + e.touchData.selecting || + n(e.touchData.start, ['taphold'], t, { x: o[0], y: o[1] }); + }, e.tapholdDuration)); + } + if (t.touches.length >= 1) { + for (var L = (e.touchData.startPosition = []), I = 0; I < o.length; I++) L[I] = i[I] = o[I]; + var B = t.touches[0]; + e.touchData.startGPosition = [B.clientX, B.clientY]; + } + } + }), + !1, + ), + e.registerBinding( + window, + 'touchmove', + (B = function (t) { + var r = e.touchData.capture; + if (r || w(t)) { + var i = e.selection, + a = e.cy, + s = e.touchData.now, + c = e.touchData.earlier, + u = a.zoom(); + if (t.touches[0]) { + var f = e.projectIntoViewport(t.touches[0].clientX, t.touches[0].clientY); + (s[0] = f[0]), (s[1] = f[1]); + } + if (t.touches[1]) { + f = e.projectIntoViewport(t.touches[1].clientX, t.touches[1].clientY); + (s[2] = f[0]), (s[3] = f[1]); + } + if (t.touches[2]) { + f = e.projectIntoViewport(t.touches[2].clientX, t.touches[2].clientY); + (s[4] = f[0]), (s[5] = f[1]); + } + var h, + p = e.touchData.startGPosition; + if (r && t.touches[0] && p) { + for (var v = [], g = 0; g < s.length; g++) v[g] = s[g] - c[g]; + var m = t.touches[0].clientX - p[0], + y = m * m, + b = t.touches[0].clientY - p[1]; + h = y + b * b >= e.touchTapThreshold2; + } + if (r && e.touchData.cxt) { + t.preventDefault(); + var x = t.touches[0].clientX - D, + j = t.touches[0].clientY - N, + O = t.touches[1].clientX - D, + A = t.touches[1].clientY - N, + L = U(x, j, O, A); + if (L / C >= 2.25 || L >= 22500) { + (e.touchData.cxt = !1), (e.data.bgActivePosistion = void 0), e.redrawHint('select', !0); + var I = { originalEvent: t, type: 'cxttapend', position: { x: s[0], y: s[1] } }; + e.touchData.start + ? (e.touchData.start.unactivate().emit(I), (e.touchData.start = null)) + : a.emit(I); + } + } + if (r && e.touchData.cxt) { + I = { originalEvent: t, type: 'cxtdrag', position: { x: s[0], y: s[1] } }; + (e.data.bgActivePosistion = void 0), + e.redrawHint('select', !0), + e.touchData.start ? e.touchData.start.emit(I) : a.emit(I), + e.touchData.start && (e.touchData.start._private.grabbed = !1), + (e.touchData.cxtDragged = !0); + var B = e.findNearestElement(s[0], s[1], !0, !0); + (e.touchData.cxtOver && B === e.touchData.cxtOver) || + (e.touchData.cxtOver && + e.touchData.cxtOver.emit({ + originalEvent: t, + type: 'cxtdragout', + position: { x: s[0], y: s[1] }, + }), + (e.touchData.cxtOver = B), + B && B.emit({ originalEvent: t, type: 'cxtdragover', position: { x: s[0], y: s[1] } })); + } else if (r && t.touches[2] && a.boxSelectionEnabled()) + t.preventDefault(), + (e.data.bgActivePosistion = void 0), + (this.lastThreeTouch = +new Date()), + e.touchData.selecting || + a.emit({ originalEvent: t, type: 'boxstart', position: { x: s[0], y: s[1] } }), + (e.touchData.selecting = !0), + (e.touchData.didSelect = !0), + (i[4] = 1), + i && 0 !== i.length && void 0 !== i[0] + ? ((i[2] = (s[0] + s[2] + s[4]) / 3), (i[3] = (s[1] + s[3] + s[5]) / 3)) + : ((i[0] = (s[0] + s[2] + s[4]) / 3), + (i[1] = (s[1] + s[3] + s[5]) / 3), + (i[2] = (s[0] + s[2] + s[4]) / 3 + 1), + (i[3] = (s[1] + s[3] + s[5]) / 3 + 1)), + e.redrawHint('select', !0), + e.redraw(); + else if ( + r && + t.touches[1] && + !e.touchData.didSelect && + a.zoomingEnabled() && + a.panningEnabled() && + a.userZoomingEnabled() && + a.userPanningEnabled() + ) { + if ( + (t.preventDefault(), + (e.data.bgActivePosistion = void 0), + e.redrawHint('select', !0), + (ee = e.dragData.touchDragEles)) + ) { + e.redrawHint('drag', !0); + for (var F = 0; F < ee.length; F++) { + var z = ee[F]._private; + (z.grabbed = !1), (z.rscratch.inDragLayer = !1); + } + } + var V = e.touchData.start, + G = + ((x = t.touches[0].clientX - D), + (j = t.touches[0].clientY - N), + (O = t.touches[1].clientX - D), + (A = t.touches[1].clientY - N), + W(x, j, O, A)), + H = G / P; + if (R) { + var q = (x - E + (O - _)) / 2, + Y = (j - k + (A - S)) / 2, + X = a.zoom(), + $ = X * H, + K = a.pan(), + Z = T[0] * X + K.x, + Q = T[1] * X + K.y, + J = { x: (-$ / X) * (Z - K.x - q) + Z, y: (-$ / X) * (Q - K.y - Y) + Q }; + if (V && V.active()) { + var ee = e.dragData.touchDragEles; + d(ee), + e.redrawHint('drag', !0), + e.redrawHint('eles', !0), + V.unactivate().emit('freeon'), + ee.emit('free'), + e.dragData.didDrag && (V.emit('dragfreeon'), ee.emit('dragfree')); + } + a.viewport({ zoom: $, pan: J, cancelOnFailedZoom: !0 }), + a.emit('pinchzoom'), + (P = G), + (E = x), + (k = j), + (_ = O), + (S = A), + (e.pinching = !0); + } + if (t.touches[0]) { + f = e.projectIntoViewport(t.touches[0].clientX, t.touches[0].clientY); + (s[0] = f[0]), (s[1] = f[1]); + } + if (t.touches[1]) { + f = e.projectIntoViewport(t.touches[1].clientX, t.touches[1].clientY); + (s[2] = f[0]), (s[3] = f[1]); + } + if (t.touches[2]) { + f = e.projectIntoViewport(t.touches[2].clientX, t.touches[2].clientY); + (s[4] = f[0]), (s[5] = f[1]); + } + } else if (t.touches[0] && !e.touchData.didSelect) { + var te = e.touchData.start, + ne = e.touchData.last; + if ( + (e.hoverData.draggingEles || e.swipePanning || (B = e.findNearestElement(s[0], s[1], !0, !0)), + r && null != te && t.preventDefault(), + r && null != te && e.nodeIsDraggable(te)) + ) + if (h) { + ee = e.dragData.touchDragEles; + var re = !e.dragData.didDrag; + re && l(ee, { inDragLayer: !0 }), (e.dragData.didDrag = !0); + var oe = { x: 0, y: 0 }; + if (M(v[0]) && M(v[1])) + if (((oe.x += v[0]), (oe.y += v[1]), re)) + e.redrawHint('eles', !0), + (ie = e.touchData.dragDelta) && + M(ie[0]) && + M(ie[1]) && + ((oe.x += ie[0]), (oe.y += ie[1])); + (e.hoverData.draggingEles = !0), + ee.silentShift(oe).emit('position drag'), + e.redrawHint('drag', !0), + e.touchData.startPosition[0] == c[0] && + e.touchData.startPosition[1] == c[1] && + e.redrawHint('eles', !0), + e.redraw(); + } else { + var ie; + 0 === (ie = e.touchData.dragDelta = e.touchData.dragDelta || []).length + ? (ie.push(v[0]), ie.push(v[1])) + : ((ie[0] += v[0]), (ie[1] += v[1])); + } + if ( + (n(te || B, ['touchmove', 'tapdrag', 'vmousemove'], t, { x: s[0], y: s[1] }), + (te && te.grabbed()) || + B == ne || + (ne && ne.emit({ originalEvent: t, type: 'tapdragout', position: { x: s[0], y: s[1] } }), + B && B.emit({ originalEvent: t, type: 'tapdragover', position: { x: s[0], y: s[1] } })), + (e.touchData.last = B), + r) + ) + for (F = 0; F < s.length; F++) + s[F] && e.touchData.startPosition[F] && h && (e.touchData.singleTouchMoved = !0); + if (r && (null == te || te.pannable()) && a.panningEnabled() && a.userPanningEnabled()) { + o(te, e.touchData.starts) && + (t.preventDefault(), + e.data.bgActivePosistion || (e.data.bgActivePosistion = it(e.touchData.startPosition)), + e.swipePanning + ? (a.panBy({ x: v[0] * u, y: v[1] * u }), a.emit('dragpan')) + : h && + ((e.swipePanning = !0), + a.panBy({ x: m * u, y: b * u }), + a.emit('dragpan'), + te && (te.unactivate(), e.redrawHint('select', !0), (e.touchData.start = null)))); + f = e.projectIntoViewport(t.touches[0].clientX, t.touches[0].clientY); + (s[0] = f[0]), (s[1] = f[1]); + } + } + for (g = 0; g < s.length; g++) c[g] = s[g]; + r && + t.touches.length > 0 && + !e.hoverData.draggingEles && + !e.swipePanning && + null != e.data.bgActivePosistion && + ((e.data.bgActivePosistion = void 0), e.redrawHint('select', !0), e.redraw()); + } + }), + !1, + ), + e.registerBinding( + window, + 'touchcancel', + (F = function (t) { + var n = e.touchData.start; + (e.touchData.capture = !1), n && n.unactivate(); + }), + ), + e.registerBinding( + window, + 'touchend', + (z = function (r) { + var o = e.touchData.start; + if (e.touchData.capture) { + 0 === r.touches.length && (e.touchData.capture = !1), r.preventDefault(); + var i = e.selection; + (e.swipePanning = !1), (e.hoverData.draggingEles = !1); + var a, + s = e.cy, + l = s.zoom(), + c = e.touchData.now, + u = e.touchData.earlier; + if (r.touches[0]) { + var f = e.projectIntoViewport(r.touches[0].clientX, r.touches[0].clientY); + (c[0] = f[0]), (c[1] = f[1]); + } + if (r.touches[1]) { + f = e.projectIntoViewport(r.touches[1].clientX, r.touches[1].clientY); + (c[2] = f[0]), (c[3] = f[1]); + } + if (r.touches[2]) { + f = e.projectIntoViewport(r.touches[2].clientX, r.touches[2].clientY); + (c[4] = f[0]), (c[5] = f[1]); + } + if ((o && o.unactivate(), e.touchData.cxt)) { + if ( + ((a = { originalEvent: r, type: 'cxttapend', position: { x: c[0], y: c[1] } }), + o ? o.emit(a) : s.emit(a), + !e.touchData.cxtDragged) + ) { + var h = { originalEvent: r, type: 'cxttap', position: { x: c[0], y: c[1] } }; + o ? o.emit(h) : s.emit(h); + } + return ( + e.touchData.start && (e.touchData.start._private.grabbed = !1), + (e.touchData.cxt = !1), + (e.touchData.start = null), + void e.redraw() + ); + } + if (!r.touches[2] && s.boxSelectionEnabled() && e.touchData.selecting) { + e.touchData.selecting = !1; + var p = s.collection(e.getAllInBox(i[0], i[1], i[2], i[3])); + (i[0] = void 0), + (i[1] = void 0), + (i[2] = void 0), + (i[3] = void 0), + (i[4] = 0), + e.redrawHint('select', !0), + s.emit({ type: 'boxend', originalEvent: r, position: { x: c[0], y: c[1] } }); + p + .emit('box') + .stdFilter(function (e) { + return e.selectable() && !e.selected(); + }) + .select() + .emit('boxselect'), + p.nonempty() && e.redrawHint('eles', !0), + e.redraw(); + } + if ((null != o && o.unactivate(), r.touches[2])) + (e.data.bgActivePosistion = void 0), e.redrawHint('select', !0); + else if (r.touches[1]); + else if (r.touches[0]); + else if (!r.touches[0]) { + (e.data.bgActivePosistion = void 0), e.redrawHint('select', !0); + var v = e.dragData.touchDragEles; + if (null != o) { + var g = o._private.grabbed; + d(v), + e.redrawHint('drag', !0), + e.redrawHint('eles', !0), + g && + (o.emit('freeon'), + v.emit('free'), + e.dragData.didDrag && (o.emit('dragfreeon'), v.emit('dragfree'))), + n(o, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], r, { x: c[0], y: c[1] }), + o.unactivate(), + (e.touchData.start = null); + } else { + var m = e.findNearestElement(c[0], c[1], !0, !0); + n(m, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], r, { x: c[0], y: c[1] }); + } + var y = e.touchData.startPosition[0] - c[0], + b = y * y, + x = e.touchData.startPosition[1] - c[1], + w = (b + x * x) * l * l; + e.touchData.singleTouchMoved || + (o || s.$(':selected').unselect(['tapunselect']), + n(o, ['tap', 'vclick'], r, { x: c[0], y: c[1] }), + (V = !1), + r.timeStamp - H <= s.multiClickDebounceTime() + ? (G && clearTimeout(G), + (V = !0), + (H = null), + n(o, ['dbltap', 'vdblclick'], r, { x: c[0], y: c[1] })) + : ((G = setTimeout(function () { + V || n(o, ['onetap', 'voneclick'], r, { x: c[0], y: c[1] }); + }, s.multiClickDebounceTime())), + (H = r.timeStamp))), + null != o && + !e.dragData.didDrag && + o._private.selectable && + w < e.touchTapThreshold2 && + !e.pinching && + ('single' === s.selectionType() + ? (s.$(t).unmerge(o).unselect(['tapunselect']), o.select(['tapselect'])) + : o.selected() + ? o.unselect(['tapunselect']) + : o.select(['tapselect']), + e.redrawHint('eles', !0)), + (e.touchData.singleTouchMoved = !0); + } + for (var E = 0; E < c.length; E++) u[E] = c[E]; + (e.dragData.didDrag = !1), + 0 === r.touches.length && + ((e.touchData.dragDelta = []), + (e.touchData.startPosition = null), + (e.touchData.startGPosition = null), + (e.touchData.didSelect = !1)), + r.touches.length < 2 && + (1 === r.touches.length && + (e.touchData.startGPosition = [r.touches[0].clientX, r.touches[0].clientY]), + (e.pinching = !1), + e.redrawHint('eles', !0), + e.redraw()); + } + }), + !1, + ), + 'undefined' == typeof TouchEvent) + ) { + var q = [], + Y = function (e) { + return { + clientX: e.clientX, + clientY: e.clientY, + force: 1, + identifier: e.pointerId, + pageX: e.pageX, + pageY: e.pageY, + radiusX: e.width / 2, + radiusY: e.height / 2, + screenX: e.screenX, + screenY: e.screenY, + target: e.target, + }; + }, + X = function (e) { + q.push( + (function (e) { + return { event: e, touch: Y(e) }; + })(e), + ); + }, + $ = function (e) { + for (var t = 0; t < q.length; t++) { + if (q[t].event.pointerId === e.pointerId) return void q.splice(t, 1); + } + }, + K = function (e) { + e.touches = q.map(function (e) { + return e.touch; + }); + }, + Z = function (e) { + return 'mouse' === e.pointerType || 4 === e.pointerType; + }; + e.registerBinding(e.container, 'pointerdown', function (e) { + Z(e) || (e.preventDefault(), X(e), K(e), I(e)); + }), + e.registerBinding(e.container, 'pointerup', function (e) { + Z(e) || ($(e), K(e), z(e)); + }), + e.registerBinding(e.container, 'pointercancel', function (e) { + Z(e) || ($(e), K(e), F()); + }), + e.registerBinding(e.container, 'pointermove', function (e) { + Z(e) || + (e.preventDefault(), + (function (e) { + var t = q.filter(function (t) { + return t.event.pointerId === e.pointerId; + })[0]; + (t.event = e), (t.touch = Y(e)); + })(e), + K(e), + B(e)); + }); + } + }); + var gs = { + generatePolygon: function (e, t) { + return (this.nodeShapes[e] = { + renderer: this, + name: e, + points: t, + draw: function (e, t, n, r, o) { + this.renderer.nodeShapeImpl('polygon', e, t, n, r, o, this.points); + }, + intersectLine: function (e, t, n, r, o, i, a) { + return Lt(o, i, this.points, e, t, n / 2, r / 2, a); + }, + checkPoint: function (e, t, n, r, o, i, a) { + return Tt(e, t, this.points, i, a, r, o, [0, -1], n); + }, + }); + }, + }; + (gs.generateEllipse = function () { + return (this.nodeShapes.ellipse = { + renderer: this, + name: 'ellipse', + draw: function (e, t, n, r, o) { + this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); + }, + intersectLine: function (e, t, n, r, o, i, a) { + return (function (e, t, n, r, o, i) { + var a = n - e, + s = r - t; + (a /= o), (s /= i); + var l = Math.sqrt(a * a + s * s), + c = l - 1; + if (c < 0) return []; + var u = c / l; + return [(n - e) * u + e, (r - t) * u + t]; + })(o, i, e, t, n / 2 + a, r / 2 + a); + }, + checkPoint: function (e, t, n, r, o, i, a) { + return Mt(e, t, r, o, i, a, n); + }, + }); + }), + (gs.generateRoundPolygon = function (e, t) { + for (var n = new Array(2 * t.length), r = 0; r < t.length / 2; r++) { + var o = 2 * r, + i = void 0; + (i = r < t.length / 2 - 1 ? 2 * (r + 1) : 0), (n[4 * r] = t[o]), (n[4 * r + 1] = t[o + 1]); + var a = t[i] - t[o], + s = t[i + 1] - t[o + 1], + l = Math.sqrt(a * a + s * s); + (n[4 * r + 2] = a / l), (n[4 * r + 3] = s / l); + } + return (this.nodeShapes[e] = { + renderer: this, + name: e, + points: n, + draw: function (e, t, n, r, o) { + this.renderer.nodeShapeImpl('round-polygon', e, t, n, r, o, this.points); + }, + intersectLine: function (e, t, n, r, o, i, a) { + return (function (e, t, n, r, o, i, a, s) { + for ( + var l, c = [], u = new Array(n.length), d = i / 2, f = a / 2, h = Gt(i, a), p = 0; + p < n.length / 4; + p++ + ) { + var v, + g = void 0; + (g = 0 === p ? n.length - 2 : 4 * p - 2), (v = 4 * p + 2); + var m = r + d * n[4 * p], + y = o + f * n[4 * p + 1], + b = -n[g] * n[v] - n[g + 1] * n[v + 1], + x = h / Math.tan(Math.acos(b) / 2), + w = m - x * n[g], + E = y - x * n[g + 1], + k = m + x * n[v], + _ = y + x * n[v + 1]; + 0 === p ? ((u[n.length - 2] = w), (u[n.length - 1] = E)) : ((u[4 * p - 2] = w), (u[4 * p - 1] = E)), + (u[4 * p] = k), + (u[4 * p + 1] = _); + var S = n[g + 1], + P = -n[g]; + S * n[v] + P * n[v + 1] < 0 && ((S *= -1), (P *= -1)), + 0 !== (l = Ot(e, t, r, o, w + S * h, E + P * h, h)).length && c.push(l[0], l[1]); + } + for (var C = 0; C < u.length / 4; C++) + 0 !== (l = Rt(e, t, r, o, u[4 * C], u[4 * C + 1], u[4 * C + 2], u[4 * C + 3], !1)).length && + c.push(l[0], l[1]); + if (c.length > 2) { + for ( + var j = [c[0], c[1]], T = Math.pow(j[0] - e, 2) + Math.pow(j[1] - t, 2), D = 1; + D < c.length / 2; + D++ + ) { + var N = Math.pow(c[2 * D] - e, 2) + Math.pow(c[2 * D + 1] - t, 2); + N <= T && ((j[0] = c[2 * D]), (j[1] = c[2 * D + 1]), (T = N)); + } + return j; + } + return c; + })(o, i, this.points, e, t, n, r); + }, + checkPoint: function (e, t, n, r, o, i, a) { + return (function (e, t, n, r, o, i, a) { + for ( + var s = new Array(n.length), l = i / 2, c = a / 2, u = Gt(i, a), d = u * u, f = 0; + f < n.length / 4; + f++ + ) { + var h, + p = void 0; + (p = 0 === f ? n.length - 2 : 4 * f - 2), (h = 4 * f + 2); + var v = r + l * n[4 * f], + g = o + c * n[4 * f + 1], + m = -n[p] * n[h] - n[p + 1] * n[h + 1], + y = u / Math.tan(Math.acos(m) / 2), + b = v - y * n[p], + x = g - y * n[p + 1], + w = v + y * n[h], + E = g + y * n[h + 1]; + (s[4 * f] = b), (s[4 * f + 1] = x), (s[4 * f + 2] = w), (s[4 * f + 3] = E); + var k = n[p + 1], + _ = -n[p]; + k * n[h] + _ * n[h + 1] < 0 && ((k *= -1), (_ *= -1)); + var S = b + k * u, + P = x + _ * u; + if (Math.pow(S - e, 2) + Math.pow(P - t, 2) <= d) return !0; + } + return jt(e, t, s); + })(e, t, this.points, i, a, r, o); + }, + }); + }), + (gs.generateRoundRectangle = function () { + return (this.nodeShapes['round-rectangle'] = this.nodeShapes.roundrectangle = + { + renderer: this, + name: 'round-rectangle', + points: Bt(4, 0), + draw: function (e, t, n, r, o) { + this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); + }, + intersectLine: function (e, t, n, r, o, i, a) { + return kt(o, i, e, t, n, r, a); + }, + checkPoint: function (e, t, n, r, o, i, a) { + var s = Vt(r, o), + l = 2 * s; + return ( + !!Tt(e, t, this.points, i, a, r, o - l, [0, -1], n) || + !!Tt(e, t, this.points, i, a, r - l, o, [0, -1], n) || + !!Mt(e, t, l, l, i - r / 2 + s, a - o / 2 + s, n) || + !!Mt(e, t, l, l, i + r / 2 - s, a - o / 2 + s, n) || + !!Mt(e, t, l, l, i + r / 2 - s, a + o / 2 - s, n) || + !!Mt(e, t, l, l, i - r / 2 + s, a + o / 2 - s, n) + ); + }, + }); + }), + (gs.generateCutRectangle = function () { + return (this.nodeShapes['cut-rectangle'] = this.nodeShapes.cutrectangle = + { + renderer: this, + name: 'cut-rectangle', + cornerLength: 8, + points: Bt(4, 0), + draw: function (e, t, n, r, o) { + this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); + }, + generateCutTrianglePts: function (e, t, n, r) { + var o = this.cornerLength, + i = t / 2, + a = e / 2, + s = n - a, + l = n + a, + c = r - i, + u = r + i; + return { + topLeft: [s, c + o, s + o, c, s + o, c + o], + topRight: [l - o, c, l, c + o, l - o, c + o], + bottomRight: [l, u - o, l - o, u, l - o, u - o], + bottomLeft: [s + o, u, s, u - o, s + o, u - o], + }; + }, + intersectLine: function (e, t, n, r, o, i, a) { + var s = this.generateCutTrianglePts(n + 2 * a, r + 2 * a, e, t), + l = [].concat.apply( + [], + [ + s.topLeft.splice(0, 4), + s.topRight.splice(0, 4), + s.bottomRight.splice(0, 4), + s.bottomLeft.splice(0, 4), + ], + ); + return Lt(o, i, l, e, t); + }, + checkPoint: function (e, t, n, r, o, i, a) { + if (Tt(e, t, this.points, i, a, r, o - 2 * this.cornerLength, [0, -1], n)) return !0; + if (Tt(e, t, this.points, i, a, r - 2 * this.cornerLength, o, [0, -1], n)) return !0; + var s = this.generateCutTrianglePts(r, o, i, a); + return jt(e, t, s.topLeft) || jt(e, t, s.topRight) || jt(e, t, s.bottomRight) || jt(e, t, s.bottomLeft); + }, + }); + }), + (gs.generateBarrel = function () { + return (this.nodeShapes.barrel = { + renderer: this, + name: 'barrel', + points: Bt(4, 0), + draw: function (e, t, n, r, o) { + this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); + }, + intersectLine: function (e, t, n, r, o, i, a) { + var s = this.generateBarrelBezierPts(n + 2 * a, r + 2 * a, e, t), + l = function (e) { + var t = ht({ x: e[0], y: e[1] }, { x: e[2], y: e[3] }, { x: e[4], y: e[5] }, 0.15), + n = ht({ x: e[0], y: e[1] }, { x: e[2], y: e[3] }, { x: e[4], y: e[5] }, 0.5), + r = ht({ x: e[0], y: e[1] }, { x: e[2], y: e[3] }, { x: e[4], y: e[5] }, 0.85); + return [e[0], e[1], t.x, t.y, n.x, n.y, r.x, r.y, e[4], e[5]]; + }, + c = [].concat(l(s.topLeft), l(s.topRight), l(s.bottomRight), l(s.bottomLeft)); + return Lt(o, i, c, e, t); + }, + generateBarrelBezierPts: function (e, t, n, r) { + var o = t / 2, + i = e / 2, + a = n - i, + s = n + i, + l = r - o, + c = r + o, + u = Ht(e, t), + d = u.heightOffset, + f = u.widthOffset, + h = u.ctrlPtOffsetPct * e, + p = { + topLeft: [a, l + d, a + h, l, a + f, l], + topRight: [s - f, l, s - h, l, s, l + d], + bottomRight: [s, c - d, s - h, c, s - f, c], + bottomLeft: [a + f, c, a + h, c, a, c - d], + }; + return ( + (p.topLeft.isTop = !0), + (p.topRight.isTop = !0), + (p.bottomLeft.isBottom = !0), + (p.bottomRight.isBottom = !0), + p + ); + }, + checkPoint: function (e, t, n, r, o, i, a) { + var s = Ht(r, o), + l = s.heightOffset, + c = s.widthOffset; + if (Tt(e, t, this.points, i, a, r, o - 2 * l, [0, -1], n)) return !0; + if (Tt(e, t, this.points, i, a, r - 2 * c, o, [0, -1], n)) return !0; + for ( + var u = this.generateBarrelBezierPts(r, o, i, a), + d = function (e, t, n) { + var r, + o, + i = n[4], + a = n[2], + s = n[0], + l = n[5], + c = n[1], + u = Math.min(i, s), + d = Math.max(i, s), + f = Math.min(l, c), + h = Math.max(l, c); + if (u <= e && e <= d && f <= t && t <= h) { + var p = [(r = i) - 2 * (o = a) + s, 2 * (o - r), r], + v = (function (e, t, n, r) { + var o = t * t - 4 * e * (n -= r); + if (o < 0) return []; + var i = Math.sqrt(o), + a = 2 * e; + return [(-t + i) / a, (-t - i) / a]; + })(p[0], p[1], p[2], e).filter(function (e) { + return 0 <= e && e <= 1; + }); + if (v.length > 0) return v[0]; + } + return null; + }, + f = Object.keys(u), + h = 0; + h < f.length; + h++ + ) { + var p = u[f[h]], + v = d(e, t, p); + if (null != v) { + var g = p[5], + m = p[3], + y = p[1], + b = ft(g, m, y, v); + if (p.isTop && b <= t) return !0; + if (p.isBottom && t <= b) return !0; + } + } + return !1; + }, + }); + }), + (gs.generateBottomRoundrectangle = function () { + return (this.nodeShapes['bottom-round-rectangle'] = this.nodeShapes.bottomroundrectangle = + { + renderer: this, + name: 'bottom-round-rectangle', + points: Bt(4, 0), + draw: function (e, t, n, r, o) { + this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); + }, + intersectLine: function (e, t, n, r, o, i, a) { + var s = t - (r / 2 + a), + l = Rt(o, i, e, t, e - (n / 2 + a), s, e + (n / 2 + a), s, !1); + return l.length > 0 ? l : kt(o, i, e, t, n, r, a); + }, + checkPoint: function (e, t, n, r, o, i, a) { + var s = Vt(r, o), + l = 2 * s; + if (Tt(e, t, this.points, i, a, r, o - l, [0, -1], n)) return !0; + if (Tt(e, t, this.points, i, a, r - l, o, [0, -1], n)) return !0; + var c = r / 2 + 2 * n, + u = o / 2 + 2 * n; + return ( + !!jt(e, t, [i - c, a - u, i - c, a, i + c, a, i + c, a - u]) || + !!Mt(e, t, l, l, i + r / 2 - s, a + o / 2 - s, n) || + !!Mt(e, t, l, l, i - r / 2 + s, a + o / 2 - s, n) + ); + }, + }); + }), + (gs.registerNodeShapes = function () { + var e = (this.nodeShapes = {}), + t = this; + this.generateEllipse(), + this.generatePolygon('triangle', Bt(3, 0)), + this.generateRoundPolygon('round-triangle', Bt(3, 0)), + this.generatePolygon('rectangle', Bt(4, 0)), + (e.square = e.rectangle), + this.generateRoundRectangle(), + this.generateCutRectangle(), + this.generateBarrel(), + this.generateBottomRoundrectangle(); + var n = [0, 1, 1, 0, 0, -1, -1, 0]; + this.generatePolygon('diamond', n), + this.generateRoundPolygon('round-diamond', n), + this.generatePolygon('pentagon', Bt(5, 0)), + this.generateRoundPolygon('round-pentagon', Bt(5, 0)), + this.generatePolygon('hexagon', Bt(6, 0)), + this.generateRoundPolygon('round-hexagon', Bt(6, 0)), + this.generatePolygon('heptagon', Bt(7, 0)), + this.generateRoundPolygon('round-heptagon', Bt(7, 0)), + this.generatePolygon('octagon', Bt(8, 0)), + this.generateRoundPolygon('round-octagon', Bt(8, 0)); + var r = new Array(20), + o = zt(5, 0), + i = zt(5, Math.PI / 5), + a = 0.5 * (3 - Math.sqrt(5)); + a *= 1.57; + for (var s = 0; s < i.length / 2; s++) (i[2 * s] *= a), (i[2 * s + 1] *= a); + for (s = 0; s < 5; s++) + (r[4 * s] = o[2 * s]), + (r[4 * s + 1] = o[2 * s + 1]), + (r[4 * s + 2] = i[2 * s]), + (r[4 * s + 3] = i[2 * s + 1]); + (r = Ft(r)), + this.generatePolygon('star', r), + this.generatePolygon('vee', [-1, -1, 0, -0.333, 1, -1, 0, 1]), + this.generatePolygon('rhomboid', [-1, -1, 0.333, -1, 1, 1, -0.333, 1]), + (this.nodeShapes.concavehexagon = this.generatePolygon( + 'concave-hexagon', + [-1, -0.95, -0.75, 0, -1, 0.95, 1, 0.95, 0.75, 0, 1, -0.95], + )); + var l = [-1, -1, 0.25, -1, 1, 0, 0.25, 1, -1, 1]; + this.generatePolygon('tag', l), + this.generateRoundPolygon('round-tag', l), + (e.makePolygon = function (e) { + var n, + r = 'polygon-' + e.join('$'); + return (n = this[r]) ? n : t.generatePolygon(r, e); + }); + }); + var ms = { + timeToRender: function () { + return this.redrawTotalTime / this.redrawCount; + }, + redraw: function (e) { + e = e || Me(); + var t = this; + void 0 === t.averageRedrawTime && (t.averageRedrawTime = 0), + void 0 === t.lastRedrawTime && (t.lastRedrawTime = 0), + void 0 === t.lastDrawTime && (t.lastDrawTime = 0), + (t.requestedFrame = !0), + (t.renderOptions = e); + }, + beforeRender: function (e, t) { + if (!this.destroyed) { + null == t && Pe('Priority is not optional for beforeRender'); + var n = this.beforeRenderCallbacks; + n.push({ fn: e, priority: t }), + n.sort(function (e, t) { + return t.priority - e.priority; + }); + } + }, + }, + ys = function (e, t, n) { + for (var r = e.beforeRenderCallbacks, o = 0; o < r.length; o++) r[o].fn(t, n); + }; + ms.startRenderLoop = function () { + var e = this, + t = e.cy; + if (!e.renderLoopStarted) { + e.renderLoopStarted = !0; + ae(function n(r) { + if (!e.destroyed) { + if (t.batching()); + else if (e.requestedFrame && !e.skipFrame) { + ys(e, !0, r); + var o = se(); + e.render(e.renderOptions); + var i = (e.lastDrawTime = se()); + void 0 === e.averageRedrawTime && (e.averageRedrawTime = i - o), + void 0 === e.redrawCount && (e.redrawCount = 0), + e.redrawCount++, + void 0 === e.redrawTotalTime && (e.redrawTotalTime = 0); + var a = i - o; + (e.redrawTotalTime += a), + (e.lastRedrawTime = a), + (e.averageRedrawTime = e.averageRedrawTime / 2 + a / 2), + (e.requestedFrame = !1); + } else ys(e, !1, r); + (e.skipFrame = !1), ae(n); + } + }); + } + }; + var bs = function (e) { + this.init(e); + }, + xs = bs.prototype; + (xs.clientFunctions = ['redrawHint', 'render', 'renderTo', 'matchCanvasSize', 'nodeShapeImpl', 'arrowShapeImpl']), + (xs.init = function (e) { + var t = this; + (t.options = e), (t.cy = e.cy); + var n = (t.container = e.cy.container()); + if (w) { + var r = w.document, + o = r.head, + i = '__________cytoscape_stylesheet', + a = '__________cytoscape_container', + s = null != r.getElementById(i); + if ((n.className.indexOf(a) < 0 && (n.className = (n.className || '') + ' ' + a), !s)) { + var l = r.createElement('style'); + (l.id = i), (l.innerHTML = '.' + a + ' { position: relative; }'), o.insertBefore(l, o.children[0]); + } + 'static' === w.getComputedStyle(n).getPropertyValue('position') && + je('A Cytoscape container has style position:static and so can not use UI extensions properly'); + } + (t.selection = [void 0, void 0, void 0, void 0, 0]), + (t.bezierProjPcts = [0.05, 0.225, 0.4, 0.5, 0.6, 0.775, 0.95]), + (t.hoverData = { + down: null, + last: null, + downTime: null, + triggerMode: null, + dragging: !1, + initialPan: [null, null], + capture: !1, + }), + (t.dragData = { possibleDragElements: [] }), + (t.touchData = { + start: null, + capture: !1, + startPosition: [null, null, null, null, null, null], + singleTouchStartTime: null, + singleTouchMoved: !0, + now: [null, null, null, null, null, null], + earlier: [null, null, null, null, null, null], + }), + (t.redraws = 0), + (t.showFps = e.showFps), + (t.debug = e.debug), + (t.hideEdgesOnViewport = e.hideEdgesOnViewport), + (t.textureOnViewport = e.textureOnViewport), + (t.wheelSensitivity = e.wheelSensitivity), + (t.motionBlurEnabled = e.motionBlur), + (t.forcedPixelRatio = M(e.pixelRatio) ? e.pixelRatio : null), + (t.motionBlur = e.motionBlur), + (t.motionBlurOpacity = e.motionBlurOpacity), + (t.motionBlurTransparency = 1 - t.motionBlurOpacity), + (t.motionBlurPxRatio = 1), + (t.mbPxRBlurry = 1), + (t.minMbLowQualFrames = 4), + (t.fullQualityMb = !1), + (t.clearedForMotionBlur = []), + (t.desktopTapThreshold = e.desktopTapThreshold), + (t.desktopTapThreshold2 = e.desktopTapThreshold * e.desktopTapThreshold), + (t.touchTapThreshold = e.touchTapThreshold), + (t.touchTapThreshold2 = e.touchTapThreshold * e.touchTapThreshold), + (t.tapholdDuration = 500), + (t.bindings = []), + (t.beforeRenderCallbacks = []), + (t.beforeRenderPriorities = { + animations: 400, + eleCalcs: 300, + eleTxrDeq: 200, + lyrTxrDeq: 150, + lyrTxrSkip: 100, + }), + t.registerNodeShapes(), + t.registerArrowShapes(), + t.registerCalculationListeners(); + }), + (xs.notify = function (e, t) { + var n = this, + r = n.cy; + this.destroyed || + ('init' !== e + ? 'destroy' !== e + ? (('add' === e || + 'remove' === e || + ('move' === e && r.hasCompoundNodes()) || + 'load' === e || + 'zorder' === e || + 'mount' === e) && + n.invalidateCachedZSortedEles(), + 'viewport' === e && n.redrawHint('select', !0), + ('load' !== e && 'resize' !== e && 'mount' !== e) || + (n.invalidateContainerClientCoordsCache(), n.matchCanvasSize(n.container)), + n.redrawHint('eles', !0), + n.redrawHint('drag', !0), + this.startRenderLoop(), + this.redraw()) + : n.destroy() + : n.load()); + }), + (xs.destroy = function () { + var e = this; + (e.destroyed = !0), e.cy.stopAnimationLoop(); + for (var t = 0; t < e.bindings.length; t++) { + var n = e.bindings[t], + r = n.target; + (r.off || r.removeEventListener).apply(r, n.args); + } + if ( + ((e.bindings = []), + (e.beforeRenderCallbacks = []), + (e.onUpdateEleCalcsFns = []), + e.removeObserver && e.removeObserver.disconnect(), + e.styleObserver && e.styleObserver.disconnect(), + e.resizeObserver && e.resizeObserver.disconnect(), + e.labelCalcDiv) + ) + try { + document.body.removeChild(e.labelCalcDiv); + } catch (o) {} + }), + (xs.isHeadless = function () { + return !1; + }), + [Qa, hs, ps, vs, gs, ms].forEach(function (e) { + Q(xs, e); + }); + var ws = 1e3 / 60, + Es = function (e) { + return function () { + var t = this, + n = this.renderer; + if (!t.dequeueingSetup) { + t.dequeueingSetup = !0; + var r = c.default(function () { + n.redrawHint('eles', !0), n.redrawHint('drag', !0), n.redraw(); + }, e.deqRedrawThreshold), + o = e.priority || Se; + n.beforeRender(function (o, i) { + var a = se(), + s = n.averageRedrawTime, + l = n.lastRedrawTime, + c = [], + u = n.cy.extent(), + d = n.getPixelRatio(); + for (o || n.flushRenderedStyleQueue(); ; ) { + var f = se(), + h = f - a, + p = f - i; + if (l < ws) { + var v = ws - (o ? s : 0); + if (p >= e.deqFastCost * v) break; + } else if (o) { + if (h >= e.deqCost * l || h >= e.deqAvgCost * s) break; + } else if (p >= e.deqNoDrawCost * ws) break; + var g = e.deq(t, d, u); + if (!(g.length > 0)) break; + for (var m = 0; m < g.length; m++) c.push(g[m]); + } + c.length > 0 && (e.onDeqd(t, c), !o && e.shouldRedraw(t, c, d, u) && r()); + }, o(t)); + } + }; + }, + ks = (function () { + function e(t) { + var n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : ke; + v(this, e), + (this.idsByKey = new Be()), + (this.keyForId = new Be()), + (this.cachesByLvl = new Be()), + (this.lvls = []), + (this.getKey = t), + (this.doesEleInvalidateKey = n); + } + return ( + m(e, [ + { + key: 'getIdsFor', + value: function (e) { + null == e && Pe('Can not get id list for null key'); + var t = this.idsByKey, + n = this.idsByKey.get(e); + return n || ((n = new ze()), t.set(e, n)), n; + }, + }, + { + key: 'addIdForKey', + value: function (e, t) { + null != e && this.getIdsFor(e).add(t); + }, + }, + { + key: 'deleteIdForKey', + value: function (e, t) { + null != e && this.getIdsFor(e).delete(t); + }, + }, + { + key: 'getNumberOfIdsForKey', + value: function (e) { + return null == e ? 0 : this.getIdsFor(e).size; + }, + }, + { + key: 'updateKeyMappingFor', + value: function (e) { + var t = e.id(), + n = this.keyForId.get(t), + r = this.getKey(e); + this.deleteIdForKey(n, t), this.addIdForKey(r, t), this.keyForId.set(t, r); + }, + }, + { + key: 'deleteKeyMappingFor', + value: function (e) { + var t = e.id(), + n = this.keyForId.get(t); + this.deleteIdForKey(n, t), this.keyForId.delete(t); + }, + }, + { + key: 'keyHasChangedFor', + value: function (e) { + var t = e.id(); + return this.keyForId.get(t) !== this.getKey(e); + }, + }, + { + key: 'isInvalid', + value: function (e) { + return this.keyHasChangedFor(e) || this.doesEleInvalidateKey(e); + }, + }, + { + key: 'getCachesAt', + value: function (e) { + var t = this.cachesByLvl, + n = this.lvls, + r = t.get(e); + return r || ((r = new Be()), t.set(e, r), n.push(e)), r; + }, + }, + { + key: 'getCache', + value: function (e, t) { + return this.getCachesAt(t).get(e); + }, + }, + { + key: 'get', + value: function (e, t) { + var n = this.getKey(e), + r = this.getCache(n, t); + return null != r && this.updateKeyMappingFor(e), r; + }, + }, + { + key: 'getForCachedKey', + value: function (e, t) { + var n = this.keyForId.get(e.id()); + return this.getCache(n, t); + }, + }, + { + key: 'hasCache', + value: function (e, t) { + return this.getCachesAt(t).has(e); + }, + }, + { + key: 'has', + value: function (e, t) { + var n = this.getKey(e); + return this.hasCache(n, t); + }, + }, + { + key: 'setCache', + value: function (e, t, n) { + (n.key = e), this.getCachesAt(t).set(e, n); + }, + }, + { + key: 'set', + value: function (e, t, n) { + var r = this.getKey(e); + this.setCache(r, t, n), this.updateKeyMappingFor(e); + }, + }, + { + key: 'deleteCache', + value: function (e, t) { + this.getCachesAt(t).delete(e); + }, + }, + { + key: 'delete', + value: function (e, t) { + var n = this.getKey(e); + this.deleteCache(n, t); + }, + }, + { + key: 'invalidateKey', + value: function (e) { + var t = this; + this.lvls.forEach(function (n) { + return t.deleteCache(e, n); + }); + }, + }, + { + key: 'invalidate', + value: function (e) { + var t = e.id(), + n = this.keyForId.get(t); + this.deleteKeyMappingFor(e); + var r = this.doesEleInvalidateKey(e); + return r && this.invalidateKey(n), r || 0 === this.getNumberOfIdsForKey(n); + }, + }, + ]), + e + ); + })(), + _s = { dequeue: 'dequeue', downscale: 'downscale', highQuality: 'highQuality' }, + Ss = Oe({ + getKey: null, + doesEleInvalidateKey: ke, + drawElement: null, + getBoundingBox: null, + getRotationPoint: null, + getRotationOffset: null, + isVisible: Ee, + allowEdgeTxrCaching: !0, + allowParentTxrCaching: !0, + }), + Ps = function (e, t) { + var n = this; + (n.renderer = e), (n.onDequeues = []); + var r = Ss(t); + Q(n, r), (n.lookup = new ks(r.getKey, r.doesEleInvalidateKey)), n.setupDequeueing(); + }, + Cs = Ps.prototype; + (Cs.reasons = _s), + (Cs.getTextureQueue = function (e) { + var t = this; + return (t.eleImgCaches = t.eleImgCaches || {}), (t.eleImgCaches[e] = t.eleImgCaches[e] || []); + }), + (Cs.getRetiredTextureQueue = function (e) { + var t = (this.eleImgCaches.retired = this.eleImgCaches.retired || {}); + return (t[e] = t[e] || []); + }), + (Cs.getElementQueue = function () { + return (this.eleCacheQueue = + this.eleCacheQueue || + new u.default(function (e, t) { + return t.reqs - e.reqs; + })); + }), + (Cs.getElementKeyToQueue = function () { + return (this.eleKeyToCacheQueue = this.eleKeyToCacheQueue || {}); + }), + (Cs.getElement = function (e, t, n, r, o) { + var i = this, + a = this.renderer, + s = a.cy.zoom(), + l = this.lookup; + if (!t || 0 === t.w || 0 === t.h || isNaN(t.w) || isNaN(t.h) || !e.visible() || e.removed()) return null; + if ((!i.allowEdgeTxrCaching && e.isEdge()) || (!i.allowParentTxrCaching && e.isParent())) return null; + if ((null == r && (r = Math.ceil(st(s * n))), r < -4)) r = -4; + else if (s >= 7.99 || r > 3) return null; + var c = Math.pow(2, r), + u = t.h * c, + d = t.w * c, + f = a.eleTextBiggerThanMin(e, c); + if (!this.isVisible(e, f)) return null; + var h, + p = l.get(e, r); + if ((p && p.invalidated && ((p.invalidated = !1), (p.texture.invalidatedWidth -= p.width)), p)) return p; + if (((h = u <= 25 ? 25 : u <= 50 ? 50 : 50 * Math.ceil(u / 50)), u > 1024 || d > 1024)) return null; + var v = i.getTextureQueue(h), + g = v[v.length - 2], + m = function () { + return i.recycleTexture(h, d) || i.addTexture(h, d); + }; + g || (g = v[v.length - 1]), g || (g = m()), g.width - g.usedWidth < d && (g = m()); + for ( + var y, + b = function (e) { + return e && e.scaledLabelShown === f; + }, + x = o && o === _s.dequeue, + w = o && o === _s.highQuality, + E = o && o === _s.downscale, + k = r + 1; + k <= 3; + k++ + ) { + var _ = l.get(e, k); + if (_) { + y = _; + break; + } + } + var S = y && y.level === r + 1 ? y : null, + P = function () { + g.context.drawImage(S.texture.canvas, S.x, 0, S.width, S.height, g.usedWidth, 0, d, u); + }; + if ((g.context.setTransform(1, 0, 0, 1, 0, 0), g.context.clearRect(g.usedWidth, 0, d, h), b(S))) P(); + else if (b(y)) { + if (!w) return i.queueElement(e, y.level - 1), y; + for (var C = y.level; C > r; C--) S = i.getElement(e, t, n, C, _s.downscale); + P(); + } else { + var j; + if (!x && !w && !E) + for (var T = r - 1; T >= -4; T--) { + var D = l.get(e, T); + if (D) { + j = D; + break; + } + } + if (b(j)) return i.queueElement(e, r), j; + g.context.translate(g.usedWidth, 0), + g.context.scale(c, c), + this.drawElement(g.context, e, t, f, !1), + g.context.scale(1 / c, 1 / c), + g.context.translate(-g.usedWidth, 0); + } + return ( + (p = { x: g.usedWidth, texture: g, level: r, scale: c, width: d, height: u, scaledLabelShown: f }), + (g.usedWidth += Math.ceil(d + 8)), + g.eleCaches.push(p), + l.set(e, r, p), + i.checkTextureFullness(g), + p + ); + }), + (Cs.invalidateElements = function (e) { + for (var t = 0; t < e.length; t++) this.invalidateElement(e[t]); + }), + (Cs.invalidateElement = function (e) { + var t = this, + n = t.lookup, + r = []; + if (n.isInvalid(e)) { + for (var o = -4; o <= 3; o++) { + var i = n.getForCachedKey(e, o); + i && r.push(i); + } + if (n.invalidate(e)) + for (var a = 0; a < r.length; a++) { + var s = r[a], + l = s.texture; + (l.invalidatedWidth += s.width), (s.invalidated = !0), t.checkTextureUtility(l); + } + t.removeFromQueue(e); + } + }), + (Cs.checkTextureUtility = function (e) { + e.invalidatedWidth >= 0.2 * e.width && this.retireTexture(e); + }), + (Cs.checkTextureFullness = function (e) { + var t = this.getTextureQueue(e.height); + e.usedWidth / e.width > 0.8 && e.fullnessChecks >= 10 ? Ae(t, e) : e.fullnessChecks++; + }), + (Cs.retireTexture = function (e) { + var t = e.height, + n = this.getTextureQueue(t), + r = this.lookup; + Ae(n, e), (e.retired = !0); + for (var o = e.eleCaches, i = 0; i < o.length; i++) { + var a = o[i]; + r.deleteCache(a.key, a.level); + } + Re(o), this.getRetiredTextureQueue(t).push(e); + }), + (Cs.addTexture = function (e, t) { + var n = {}; + return ( + this.getTextureQueue(e).push(n), + (n.eleCaches = []), + (n.height = e), + (n.width = Math.max(1024, t)), + (n.usedWidth = 0), + (n.invalidatedWidth = 0), + (n.fullnessChecks = 0), + (n.canvas = this.renderer.makeOffscreenCanvas(n.width, n.height)), + (n.context = n.canvas.getContext('2d')), + n + ); + }), + (Cs.recycleTexture = function (e, t) { + for (var n = this.getTextureQueue(e), r = this.getRetiredTextureQueue(e), o = 0; o < r.length; o++) { + var i = r[o]; + if (i.width >= t) + return ( + (i.retired = !1), + (i.usedWidth = 0), + (i.invalidatedWidth = 0), + (i.fullnessChecks = 0), + Re(i.eleCaches), + i.context.setTransform(1, 0, 0, 1, 0, 0), + i.context.clearRect(0, 0, i.width, i.height), + Ae(r, i), + n.push(i), + i + ); + } + }), + (Cs.queueElement = function (e, t) { + var n = this.getElementQueue(), + r = this.getElementKeyToQueue(), + o = this.getKey(e), + i = r[o]; + if (i) (i.level = Math.max(i.level, t)), i.eles.merge(e), i.reqs++, n.updateItem(i); + else { + var a = { eles: e.spawn().merge(e), level: t, reqs: 1, key: o }; + n.push(a), (r[o] = a); + } + }), + (Cs.dequeue = function (e) { + for ( + var t = this, n = t.getElementQueue(), r = t.getElementKeyToQueue(), o = [], i = t.lookup, a = 0; + a < 1 && n.size() > 0; + a++ + ) { + var s = n.pop(), + l = s.key, + c = s.eles[0], + u = i.hasCache(c, s.level); + if (((r[l] = null), !u)) { + o.push(s); + var d = t.getBoundingBox(c); + t.getElement(c, d, e, s.level, _s.dequeue); + } + } + return o; + }), + (Cs.removeFromQueue = function (e) { + var t = this.getElementQueue(), + n = this.getElementKeyToQueue(), + r = this.getKey(e), + o = n[r]; + null != o && + (1 === o.eles.length ? ((o.reqs = we), t.updateItem(o), t.pop(), (n[r] = null)) : o.eles.unmerge(e)); + }), + (Cs.onDequeue = function (e) { + this.onDequeues.push(e); + }), + (Cs.offDequeue = function (e) { + Ae(this.onDequeues, e); + }), + (Cs.setupDequeueing = Es({ + deqRedrawThreshold: 100, + deqCost: 0.15, + deqAvgCost: 0.1, + deqNoDrawCost: 0.9, + deqFastCost: 0.9, + deq: function (e, t, n) { + return e.dequeue(t, n); + }, + onDeqd: function (e, t) { + for (var n = 0; n < e.onDequeues.length; n++) { + (0, e.onDequeues[n])(t); + } + }, + shouldRedraw: function (e, t, n, r) { + for (var o = 0; o < t.length; o++) + for (var i = t[o].eles, a = 0; a < i.length; a++) { + var s = i[a].boundingBox(); + if (xt(s, r)) return !0; + } + return !1; + }, + priority: function (e) { + return e.renderer.beforeRenderPriorities.eleTxrDeq; + }, + })); + var js = function (e) { + var t = this, + n = (t.renderer = e), + r = n.cy; + (t.layersByLevel = {}), + (t.firstGet = !0), + (t.lastInvalidationTime = se() - 500), + (t.skipping = !1), + (t.eleTxrDeqs = r.collection()), + (t.scheduleElementRefinement = c.default(function () { + t.refineElementTextures(t.eleTxrDeqs), t.eleTxrDeqs.unmerge(t.eleTxrDeqs); + }, 50)), + n.beforeRender(function (e, n) { + n - t.lastInvalidationTime <= 250 ? (t.skipping = !0) : (t.skipping = !1); + }, n.beforeRenderPriorities.lyrTxrSkip); + (t.layersQueue = new u.default(function (e, t) { + return t.reqs - e.reqs; + })), + t.setupDequeueing(); + }, + Ts = js.prototype, + Ds = 0, + Ns = Math.pow(2, 53) - 1; + (Ts.makeLayer = function (e, t) { + var n = Math.pow(2, t), + r = Math.ceil(e.w * n), + o = Math.ceil(e.h * n), + i = this.renderer.makeOffscreenCanvas(r, o), + a = { + id: (Ds = ++Ds % Ns), + bb: e, + level: t, + width: r, + height: o, + canvas: i, + context: i.getContext('2d'), + eles: [], + elesQueue: [], + reqs: 0, + }, + s = a.context, + l = -a.bb.x1, + c = -a.bb.y1; + return s.scale(n, n), s.translate(l, c), a; + }), + (Ts.getLayers = function (e, t, n) { + var r = this, + o = r.renderer.cy.zoom(), + i = r.firstGet; + if (((r.firstGet = !1), null == n)) + if ((n = Math.ceil(st(o * t))) < -4) n = -4; + else if (o >= 3.99 || n > 2) return null; + r.validateLayersElesOrdering(n, e); + var a, + s, + l = r.layersByLevel, + c = Math.pow(2, n), + u = (l[n] = l[n] || []); + if (r.levelIsComplete(n, e)) return u; + !(function () { + var t = function (t) { + if ((r.validateLayersElesOrdering(t, e), r.levelIsComplete(t, e))) return (s = l[t]), !0; + }, + o = function (e) { + if (!s) for (var r = n + e; -4 <= r && r <= 2 && !t(r); r += e); + }; + o(1), o(-1); + for (var i = u.length - 1; i >= 0; i--) { + var a = u[i]; + a.invalid && Ae(u, a); + } + })(); + var d = function (t) { + var o = (t = t || {}).after; + if ( + ((function () { + if (!a) { + a = vt(); + for (var t = 0; t < e.length; t++) + (n = a), + (r = e[t].boundingBox()), + (n.x1 = Math.min(n.x1, r.x1)), + (n.x2 = Math.max(n.x2, r.x2)), + (n.w = n.x2 - n.x1), + (n.y1 = Math.min(n.y1, r.y1)), + (n.y2 = Math.max(n.y2, r.y2)), + (n.h = n.y2 - n.y1); + } + var n, r; + })(), + a.w * c * (a.h * c) > 16e6) + ) + return null; + var i = r.makeLayer(a, n); + if (null != o) { + var s = u.indexOf(o) + 1; + u.splice(s, 0, i); + } else (void 0 === t.insert || t.insert) && u.unshift(i); + return i; + }; + if (r.skipping && !i) return null; + for (var f = null, h = e.length / 1, p = !i, v = 0; v < e.length; v++) { + var g = e[v], + m = g._private.rscratch, + y = (m.imgLayerCaches = m.imgLayerCaches || {}), + b = y[n]; + if (b) f = b; + else { + if ((!f || f.eles.length >= h || !Et(f.bb, g.boundingBox())) && !(f = d({ insert: !0, after: f }))) + return null; + s || p ? r.queueLayer(f, g) : r.drawEleInLayer(f, g, n, t), f.eles.push(g), (y[n] = f); + } + } + return s || (p ? null : u); + }), + (Ts.getEleLevelForLayerLevel = function (e, t) { + return e; + }), + (Ts.drawEleInLayer = function (e, t, n, r) { + var o = this.renderer, + i = e.context, + a = t.boundingBox(); + 0 !== a.w && + 0 !== a.h && + t.visible() && + ((n = this.getEleLevelForLayerLevel(n, r)), + o.setImgSmoothing(i, !1), + o.drawCachedElement(i, t, null, null, n, true), + o.setImgSmoothing(i, !0)); + }), + (Ts.levelIsComplete = function (e, t) { + var n = this.layersByLevel[e]; + if (!n || 0 === n.length) return !1; + for (var r = 0, o = 0; o < n.length; o++) { + var i = n[o]; + if (i.reqs > 0) return !1; + if (i.invalid) return !1; + r += i.eles.length; + } + return r === t.length; + }), + (Ts.validateLayersElesOrdering = function (e, t) { + var n = this.layersByLevel[e]; + if (n) + for (var r = 0; r < n.length; r++) { + for (var o = n[r], i = -1, a = 0; a < t.length; a++) + if (o.eles[0] === t[a]) { + i = a; + break; + } + if (i < 0) this.invalidateLayer(o); + else { + var s = i; + for (a = 0; a < o.eles.length; a++) + if (o.eles[a] !== t[s + a]) { + this.invalidateLayer(o); + break; + } + } + } + }), + (Ts.updateElementsInLayers = function (e, t) { + for (var n = R(e[0]), r = 0; r < e.length; r++) + for ( + var o = n ? null : e[r], + i = n ? e[r] : e[r].ele, + a = i._private.rscratch, + s = (a.imgLayerCaches = a.imgLayerCaches || {}), + l = -4; + l <= 2; + l++ + ) { + var c = s[l]; + c && ((o && this.getEleLevelForLayerLevel(c.level) !== o.level) || t(c, i, o)); + } + }), + (Ts.haveLayers = function () { + for (var e = !1, t = -4; t <= 2; t++) { + var n = this.layersByLevel[t]; + if (n && n.length > 0) { + e = !0; + break; + } + } + return e; + }), + (Ts.invalidateElements = function (e) { + var t = this; + 0 !== e.length && + ((t.lastInvalidationTime = se()), + 0 !== e.length && + t.haveLayers() && + t.updateElementsInLayers(e, function (e, n, r) { + t.invalidateLayer(e); + })); + }), + (Ts.invalidateLayer = function (e) { + if (((this.lastInvalidationTime = se()), !e.invalid)) { + var t = e.level, + n = e.eles, + r = this.layersByLevel[t]; + Ae(r, e), (e.elesQueue = []), (e.invalid = !0), e.replacement && (e.replacement.invalid = !0); + for (var o = 0; o < n.length; o++) { + var i = n[o]._private.rscratch.imgLayerCaches; + i && (i[t] = null); + } + } + }), + (Ts.refineElementTextures = function (e) { + var t = this; + t.updateElementsInLayers(e, function (e, n, r) { + var o = e.replacement; + if ((o || (((o = e.replacement = t.makeLayer(e.bb, e.level)).replaces = e), (o.eles = e.eles)), !o.reqs)) + for (var i = 0; i < o.eles.length; i++) t.queueLayer(o, o.eles[i]); + }); + }), + (Ts.enqueueElementRefinement = function (e) { + this.eleTxrDeqs.merge(e), this.scheduleElementRefinement(); + }), + (Ts.queueLayer = function (e, t) { + var n = this.layersQueue, + r = e.elesQueue, + o = (r.hasId = r.hasId || {}); + if (!e.replacement) { + if (t) { + if (o[t.id()]) return; + r.push(t), (o[t.id()] = !0); + } + e.reqs ? (e.reqs++, n.updateItem(e)) : ((e.reqs = 1), n.push(e)); + } + }), + (Ts.dequeue = function (e) { + for (var t = this, n = t.layersQueue, r = [], o = 0; o < 1 && 0 !== n.size(); ) { + var i = n.peek(); + if (i.replacement) n.pop(); + else if (i.replaces && i !== i.replaces.replacement) n.pop(); + else if (i.invalid) n.pop(); + else { + var a = i.elesQueue.shift(); + a && (t.drawEleInLayer(i, a, i.level, e), o++), + 0 === r.length && r.push(!0), + 0 === i.elesQueue.length && + (n.pop(), (i.reqs = 0), i.replaces && t.applyLayerReplacement(i), t.requestRedraw()); + } + } + return r; + }), + (Ts.applyLayerReplacement = function (e) { + var t = this.layersByLevel[e.level], + n = e.replaces, + r = t.indexOf(n); + if (!(r < 0 || n.invalid)) { + t[r] = e; + for (var o = 0; o < e.eles.length; o++) { + var i = e.eles[o]._private, + a = (i.imgLayerCaches = i.imgLayerCaches || {}); + a && (a[e.level] = e); + } + this.requestRedraw(); + } + }), + (Ts.requestRedraw = c.default(function () { + var e = this.renderer; + e.redrawHint('eles', !0), e.redrawHint('drag', !0), e.redraw(); + }, 100)), + (Ts.setupDequeueing = Es({ + deqRedrawThreshold: 50, + deqCost: 0.15, + deqAvgCost: 0.1, + deqNoDrawCost: 0.9, + deqFastCost: 0.9, + deq: function (e, t) { + return e.dequeue(t); + }, + onDeqd: Se, + shouldRedraw: Ee, + priority: function (e) { + return e.renderer.beforeRenderPriorities.lyrTxrDeq; + }, + })); + var Ms, + Os = {}; + function As(e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + e.lineTo(r.x, r.y); + } + } + function Rs(e, t, n) { + for (var r, o = 0; o < t.length; o++) { + var i = t[o]; + 0 === o && (r = i), e.lineTo(i.x, i.y); + } + e.quadraticCurveTo(n.x, n.y, r.x, r.y); + } + function Ls(e, t, n) { + e.beginPath && e.beginPath(); + for (var r = t, o = 0; o < r.length; o++) { + var i = r[o]; + e.lineTo(i.x, i.y); + } + var a = n, + s = n[0]; + e.moveTo(s.x, s.y); + for (o = 1; o < a.length; o++) { + i = a[o]; + e.lineTo(i.x, i.y); + } + e.closePath && e.closePath(); + } + function Is(e, t, n, r, o) { + e.beginPath && e.beginPath(), e.arc(n, r, o, 0, 2 * Math.PI, !1); + var i = t, + a = i[0]; + e.moveTo(a.x, a.y); + for (var s = 0; s < i.length; s++) { + var l = i[s]; + e.lineTo(l.x, l.y); + } + e.closePath && e.closePath(); + } + function Bs(e, t, n, r) { + e.arc(t, n, r, 0, 2 * Math.PI, !1); + } + Os.arrowShapeImpl = function (e) { + return (Ms || + (Ms = { + polygon: As, + 'triangle-backcurve': Rs, + 'triangle-tee': Ls, + 'circle-triangle': Is, + 'triangle-cross': Ls, + circle: Bs, + }))[e]; + }; + var Fs = { + drawElement: function (e, t, n, r, o, i) { + t.isNode() ? this.drawNode(e, t, n, r, o, i) : this.drawEdge(e, t, n, r, o, i); + }, + drawElementOverlay: function (e, t) { + t.isNode() ? this.drawNodeOverlay(e, t) : this.drawEdgeOverlay(e, t); + }, + drawElementUnderlay: function (e, t) { + t.isNode() ? this.drawNodeUnderlay(e, t) : this.drawEdgeUnderlay(e, t); + }, + drawCachedElementPortion: function (e, t, n, r, o, i, a, s) { + var l = this, + c = n.getBoundingBox(t); + if (0 !== c.w && 0 !== c.h) { + var u = n.getElement(t, c, r, o, i); + if (null != u) { + var d = s(l, t); + if (0 === d) return; + var f, + h, + p, + v, + g, + m, + y = a(l, t), + b = c.x1, + x = c.y1, + w = c.w, + E = c.h; + if (0 !== y) { + var k = n.getRotationPoint(t); + (p = k.x), + (v = k.y), + e.translate(p, v), + e.rotate(y), + (g = l.getImgSmoothing(e)) || l.setImgSmoothing(e, !0); + var _ = n.getRotationOffset(t); + (f = _.x), (h = _.y); + } else (f = b), (h = x); + 1 !== d && ((m = e.globalAlpha), (e.globalAlpha = m * d)), + e.drawImage(u.texture.canvas, u.x, 0, u.width, u.height, f, h, w, E), + 1 !== d && (e.globalAlpha = m), + 0 !== y && (e.rotate(-y), e.translate(-p, -v), g || l.setImgSmoothing(e, !1)); + } else n.drawElement(e, t); + } + }, + }, + zs = function () { + return 0; + }, + Vs = function (e, t) { + return e.getTextAngle(t, null); + }, + Gs = function (e, t) { + return e.getTextAngle(t, 'source'); + }, + Hs = function (e, t) { + return e.getTextAngle(t, 'target'); + }, + Ws = function (e, t) { + return t.effectiveOpacity(); + }, + Us = function (e, t) { + return t.pstyle('text-opacity').pfValue * t.effectiveOpacity(); + }; + (Fs.drawCachedElement = function (e, t, n, r, o, i) { + var a = this, + s = a.data, + l = s.eleTxrCache, + c = s.lblTxrCache, + u = s.slbTxrCache, + d = s.tlbTxrCache, + f = t.boundingBox(), + h = !0 === i ? l.reasons.highQuality : null; + if (0 !== f.w && 0 !== f.h && t.visible() && (!r || xt(f, r))) { + var p = t.isEdge(), + v = t.element()._private.rscratch.badLine; + a.drawElementUnderlay(e, t), + a.drawCachedElementPortion(e, t, l, n, o, h, zs, Ws), + (p && v) || a.drawCachedElementPortion(e, t, c, n, o, h, Vs, Us), + p && + !v && + (a.drawCachedElementPortion(e, t, u, n, o, h, Gs, Us), + a.drawCachedElementPortion(e, t, d, n, o, h, Hs, Us)), + a.drawElementOverlay(e, t); + } + }), + (Fs.drawElements = function (e, t) { + for (var n = 0; n < t.length; n++) { + var r = t[n]; + this.drawElement(e, r); + } + }), + (Fs.drawCachedElements = function (e, t, n, r) { + for (var o = 0; o < t.length; o++) { + var i = t[o]; + this.drawCachedElement(e, i, n, r); + } + }), + (Fs.drawCachedNodes = function (e, t, n, r) { + for (var o = 0; o < t.length; o++) { + var i = t[o]; + i.isNode() && this.drawCachedElement(e, i, n, r); + } + }), + (Fs.drawLayeredElements = function (e, t, n, r) { + var o = this.data.lyrTxrCache.getLayers(t, n); + if (o) + for (var i = 0; i < o.length; i++) { + var a = o[i], + s = a.bb; + 0 !== s.w && 0 !== s.h && e.drawImage(a.canvas, s.x1, s.y1, s.w, s.h); + } + else this.drawCachedElements(e, t, n, r); + }); + var qs = { + drawEdge: function (e, t, n) { + var r = !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3], + o = !(arguments.length > 4 && void 0 !== arguments[4]) || arguments[4], + i = !(arguments.length > 5 && void 0 !== arguments[5]) || arguments[5], + a = this, + s = t._private.rscratch; + if ((!i || t.visible()) && !s.badLine && null != s.allpts && !isNaN(s.allpts[0])) { + var l; + n && ((l = n), e.translate(-l.x1, -l.y1)); + var c = i ? t.pstyle('opacity').value : 1, + u = i ? t.pstyle('line-opacity').value : 1, + d = t.pstyle('curve-style').value, + f = t.pstyle('line-style').value, + h = t.pstyle('width').pfValue, + p = t.pstyle('line-cap').value, + v = c * u, + g = c * u, + m = function () { + var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : v; + 'straight-triangle' === d + ? (a.eleStrokeStyle(e, t, n), a.drawEdgeTrianglePath(t, e, s.allpts)) + : ((e.lineWidth = h), + (e.lineCap = p), + a.eleStrokeStyle(e, t, n), + a.drawEdgePath(t, e, s.allpts, f), + (e.lineCap = 'butt')); + }, + y = function () { + var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : g; + a.drawArrowheads(e, t, n); + }; + if (((e.lineJoin = 'round'), 'yes' === t.pstyle('ghost').value)) { + var b = t.pstyle('ghost-offset-x').pfValue, + x = t.pstyle('ghost-offset-y').pfValue, + w = t.pstyle('ghost-opacity').value, + E = v * w; + e.translate(b, x), m(E), y(E), e.translate(-b, -x); + } + o && a.drawEdgeUnderlay(e, t), + m(), + y(), + o && a.drawEdgeOverlay(e, t), + a.drawElementText(e, t, null, r), + n && e.translate(l.x1, l.y1); + } + }, + }, + Ys = function (e) { + if (!['overlay', 'underlay'].includes(e)) throw new Error('Invalid state'); + return function (t, n) { + if (n.visible()) { + var r = n.pstyle(''.concat(e, '-opacity')).value; + if (0 !== r) { + var o = this, + i = o.usePaths(), + a = n._private.rscratch, + s = 2 * n.pstyle(''.concat(e, '-padding')).pfValue, + l = n.pstyle(''.concat(e, '-color')).value; + (t.lineWidth = s), + 'self' !== a.edgeType || i ? (t.lineCap = 'round') : (t.lineCap = 'butt'), + o.colorStrokeStyle(t, l[0], l[1], l[2], r), + o.drawEdgePath(n, t, a.allpts, 'solid'); + } + } + }; + }; + (qs.drawEdgeOverlay = Ys('overlay')), + (qs.drawEdgeUnderlay = Ys('underlay')), + (qs.drawEdgePath = function (e, t, n, r) { + var o, + i = e._private.rscratch, + a = t, + s = !1, + l = this.usePaths(), + c = e.pstyle('line-dash-pattern').pfValue, + u = e.pstyle('line-dash-offset').pfValue; + if (l) { + var d = n.join('$'); + i.pathCacheKey && i.pathCacheKey === d + ? ((o = t = i.pathCache), (s = !0)) + : ((o = t = new Path2D()), (i.pathCacheKey = d), (i.pathCache = o)); + } + if (a.setLineDash) + switch (r) { + case 'dotted': + a.setLineDash([1, 1]); + break; + case 'dashed': + a.setLineDash(c), (a.lineDashOffset = u); + break; + case 'solid': + a.setLineDash([]); + } + if (!s && !i.badLine) + switch ((t.beginPath && t.beginPath(), t.moveTo(n[0], n[1]), i.edgeType)) { + case 'bezier': + case 'self': + case 'compound': + case 'multibezier': + for (var f = 2; f + 3 < n.length; f += 4) t.quadraticCurveTo(n[f], n[f + 1], n[f + 2], n[f + 3]); + break; + case 'straight': + case 'segments': + case 'haystack': + for (var h = 2; h + 1 < n.length; h += 2) t.lineTo(n[h], n[h + 1]); + } + (t = a), l ? t.stroke(o) : t.stroke(), t.setLineDash && t.setLineDash([]); + }), + (qs.drawEdgeTrianglePath = function (e, t, n) { + t.fillStyle = t.strokeStyle; + for (var r = e.pstyle('width').pfValue, o = 0; o + 1 < n.length; o += 2) { + var i = [n[o + 2] - n[o], n[o + 3] - n[o + 1]], + a = Math.sqrt(i[0] * i[0] + i[1] * i[1]), + s = [i[1] / a, -i[0] / a], + l = [(s[0] * r) / 2, (s[1] * r) / 2]; + t.beginPath(), + t.moveTo(n[o] - l[0], n[o + 1] - l[1]), + t.lineTo(n[o] + l[0], n[o + 1] + l[1]), + t.lineTo(n[o + 2], n[o + 3]), + t.closePath(), + t.fill(); + } + }), + (qs.drawArrowheads = function (e, t, n) { + var r = t._private.rscratch, + o = 'haystack' === r.edgeType; + o || this.drawArrowhead(e, t, 'source', r.arrowStartX, r.arrowStartY, r.srcArrowAngle, n), + this.drawArrowhead(e, t, 'mid-target', r.midX, r.midY, r.midtgtArrowAngle, n), + this.drawArrowhead(e, t, 'mid-source', r.midX, r.midY, r.midsrcArrowAngle, n), + o || this.drawArrowhead(e, t, 'target', r.arrowEndX, r.arrowEndY, r.tgtArrowAngle, n); + }), + (qs.drawArrowhead = function (e, t, n, r, o, i, a) { + if (!(isNaN(r) || null == r || isNaN(o) || null == o || isNaN(i) || null == i)) { + var s = this, + l = t.pstyle(n + '-arrow-shape').value; + if ('none' !== l) { + var c = 'hollow' === t.pstyle(n + '-arrow-fill').value ? 'both' : 'filled', + u = t.pstyle(n + '-arrow-fill').value, + d = t.pstyle('width').pfValue, + f = t.pstyle('opacity').value; + void 0 === a && (a = f); + var h = e.globalCompositeOperation; + (1 === a && 'hollow' !== u) || + ((e.globalCompositeOperation = 'destination-out'), + s.colorFillStyle(e, 255, 255, 255, 1), + s.colorStrokeStyle(e, 255, 255, 255, 1), + s.drawArrowShape(t, e, c, d, l, r, o, i), + (e.globalCompositeOperation = h)); + var p = t.pstyle(n + '-arrow-color').value; + s.colorFillStyle(e, p[0], p[1], p[2], a), + s.colorStrokeStyle(e, p[0], p[1], p[2], a), + s.drawArrowShape(t, e, u, d, l, r, o, i); + } + } + }), + (qs.drawArrowShape = function (e, t, n, r, o, i, a, s) { + var l, + c = this, + u = this.usePaths() && 'triangle-cross' !== o, + d = !1, + f = t, + h = { x: i, y: a }, + p = e.pstyle('arrow-scale').value, + v = this.getArrowWidth(r, p), + g = c.arrowShapes[o]; + if (u) { + var m = (c.arrowPathCache = c.arrowPathCache || []), + y = ve(o), + b = m[y]; + null != b ? ((l = t = b), (d = !0)) : ((l = t = new Path2D()), (m[y] = l)); + } + d || + (t.beginPath && t.beginPath(), + u ? g.draw(t, 1, 0, { x: 0, y: 0 }, 1) : g.draw(t, v, s, h, r), + t.closePath && t.closePath()), + (t = f), + u && (t.translate(i, a), t.rotate(s), t.scale(v, v)), + ('filled' !== n && 'both' !== n) || (u ? t.fill(l) : t.fill()), + ('hollow' !== n && 'both' !== n) || + ((t.lineWidth = (g.matchEdgeWidth ? r : 1) / (u ? v : 1)), + (t.lineJoin = 'miter'), + u ? t.stroke(l) : t.stroke()), + u && (t.scale(1 / v, 1 / v), t.rotate(-s), t.translate(-i, -a)); + }); + var Xs = { + safeDrawImage: function (e, t, n, r, o, i, a, s, l, c) { + if (!(o <= 0 || i <= 0 || l <= 0 || c <= 0)) + try { + e.drawImage(t, n, r, o, i, a, s, l, c); + } catch (u) { + je(u); + } + }, + drawInscribedImage: function (e, t, n, r, o) { + var i = this, + a = n.position(), + s = a.x, + l = a.y, + c = n.cy().style(), + u = c.getIndexedStyle.bind(c), + d = u(n, 'background-fit', 'value', r), + f = u(n, 'background-repeat', 'value', r), + h = n.width(), + p = n.height(), + v = 2 * n.padding(), + g = h + ('inner' === u(n, 'background-width-relative-to', 'value', r) ? 0 : v), + m = p + ('inner' === u(n, 'background-height-relative-to', 'value', r) ? 0 : v), + y = n._private.rscratch, + b = 'node' === u(n, 'background-clip', 'value', r), + x = u(n, 'background-image-opacity', 'value', r) * o, + w = u(n, 'background-image-smoothing', 'value', r), + E = t.width || t.cachedW, + k = t.height || t.cachedH; + (null != E && null != k) || + (document.body.appendChild(t), + (E = t.cachedW = t.width || t.offsetWidth), + (k = t.cachedH = t.height || t.offsetHeight), + document.body.removeChild(t)); + var _ = E, + S = k; + if ( + ('auto' !== u(n, 'background-width', 'value', r) && + (_ = + '%' === u(n, 'background-width', 'units', r) + ? u(n, 'background-width', 'pfValue', r) * g + : u(n, 'background-width', 'pfValue', r)), + 'auto' !== u(n, 'background-height', 'value', r) && + (S = + '%' === u(n, 'background-height', 'units', r) + ? u(n, 'background-height', 'pfValue', r) * m + : u(n, 'background-height', 'pfValue', r)), + 0 !== _ && 0 !== S) + ) { + if ('contain' === d) (_ *= P = Math.min(g / _, m / S)), (S *= P); + else if ('cover' === d) { + var P; + (_ *= P = Math.max(g / _, m / S)), (S *= P); + } + var C = s - g / 2, + j = u(n, 'background-position-x', 'units', r), + T = u(n, 'background-position-x', 'pfValue', r); + C += '%' === j ? (g - _) * T : T; + var D = u(n, 'background-offset-x', 'units', r), + N = u(n, 'background-offset-x', 'pfValue', r); + C += '%' === D ? (g - _) * N : N; + var M = l - m / 2, + O = u(n, 'background-position-y', 'units', r), + A = u(n, 'background-position-y', 'pfValue', r); + M += '%' === O ? (m - S) * A : A; + var R = u(n, 'background-offset-y', 'units', r), + L = u(n, 'background-offset-y', 'pfValue', r); + (M += '%' === R ? (m - S) * L : L), y.pathCache && ((C -= s), (M -= l), (s = 0), (l = 0)); + var I = e.globalAlpha; + e.globalAlpha = x; + var B = i.getImgSmoothing(e), + F = !1; + if ( + ('no' === w && B + ? (i.setImgSmoothing(e, !1), (F = !0)) + : 'yes' !== w || B || (i.setImgSmoothing(e, !0), (F = !0)), + 'no-repeat' === f) + ) + b && + (e.save(), + y.pathCache ? e.clip(y.pathCache) : (i.nodeShapes[i.getNodeShape(n)].draw(e, s, l, g, m), e.clip())), + i.safeDrawImage(e, t, 0, 0, E, k, C, M, _, S), + b && e.restore(); + else { + var z = e.createPattern(t, f); + (e.fillStyle = z), + i.nodeShapes[i.getNodeShape(n)].draw(e, s, l, g, m), + e.translate(C, M), + e.fill(), + e.translate(-C, -M); + } + (e.globalAlpha = I), F && i.setImgSmoothing(e, B); + } + }, + }, + $s = {}; + ($s.eleTextBiggerThanMin = function (e, t) { + if (!t) { + var n = e.cy().zoom(), + r = this.getPixelRatio(), + o = Math.ceil(st(n * r)); + t = Math.pow(2, o); + } + return !(e.pstyle('font-size').pfValue * t < e.pstyle('min-zoomed-font-size').pfValue); + }), + ($s.drawElementText = function (e, t, n, r, o) { + var i = !(arguments.length > 5 && void 0 !== arguments[5]) || arguments[5], + a = this; + if (null == r) { + if (i && !a.eleTextBiggerThanMin(t)) return; + } else if (!1 === r) return; + if (t.isNode()) { + var s = t.pstyle('label'); + if (!s || !s.value) return; + var l = a.getLabelJustification(t); + (e.textAlign = l), (e.textBaseline = 'bottom'); + } else { + var c = t.element()._private.rscratch.badLine, + u = t.pstyle('label'), + d = t.pstyle('source-label'), + f = t.pstyle('target-label'); + if (c || ((!u || !u.value) && (!d || !d.value) && (!f || !f.value))) return; + (e.textAlign = 'center'), (e.textBaseline = 'bottom'); + } + var h, + p = !n; + n && ((h = n), e.translate(-h.x1, -h.y1)), + null == o + ? (a.drawText(e, t, null, p, i), + t.isEdge() && (a.drawText(e, t, 'source', p, i), a.drawText(e, t, 'target', p, i))) + : a.drawText(e, t, o, p, i), + n && e.translate(h.x1, h.y1); + }), + ($s.getFontCache = function (e) { + var t; + this.fontCaches = this.fontCaches || []; + for (var n = 0; n < this.fontCaches.length; n++) if ((t = this.fontCaches[n]).context === e) return t; + return (t = { context: e }), this.fontCaches.push(t), t; + }), + ($s.setupTextStyle = function (e, t) { + var n = !(arguments.length > 2 && void 0 !== arguments[2]) || arguments[2], + r = t.pstyle('font-style').strValue, + o = t.pstyle('font-size').pfValue + 'px', + i = t.pstyle('font-family').strValue, + a = t.pstyle('font-weight').strValue, + s = n ? t.effectiveOpacity() * t.pstyle('text-opacity').value : 1, + l = t.pstyle('text-outline-opacity').value * s, + c = t.pstyle('color').value, + u = t.pstyle('text-outline-color').value; + (e.font = r + ' ' + a + ' ' + o + ' ' + i), + (e.lineJoin = 'round'), + this.colorFillStyle(e, c[0], c[1], c[2], s), + this.colorStrokeStyle(e, u[0], u[1], u[2], l); + }), + ($s.getTextAngle = function (e, t) { + var n = e._private.rscratch, + r = t ? t + '-' : '', + o = e.pstyle(r + 'text-rotation'), + i = Le(n, 'labelAngle', t); + return 'autorotate' === o.strValue ? (e.isEdge() ? i : 0) : 'none' === o.strValue ? 0 : o.pfValue; + }), + ($s.drawText = function (e, t, n) { + var r = !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3], + o = !(arguments.length > 4 && void 0 !== arguments[4]) || arguments[4], + i = t._private.rscratch, + a = o ? t.effectiveOpacity() : 1; + if (!o || (0 !== a && 0 !== t.pstyle('text-opacity').value)) { + 'main' === n && (n = null); + var s, + l, + c = Le(i, 'labelX', n), + u = Le(i, 'labelY', n), + d = this.getLabelText(t, n); + if (null != d && '' !== d && !isNaN(c) && !isNaN(u)) { + this.setupTextStyle(e, t, o); + var f, + h = n ? n + '-' : '', + p = Le(i, 'labelWidth', n), + v = Le(i, 'labelHeight', n), + g = t.pstyle(h + 'text-margin-x').pfValue, + m = t.pstyle(h + 'text-margin-y').pfValue, + y = t.isEdge(), + b = t.pstyle('text-halign').value, + x = t.pstyle('text-valign').value; + switch ( + (y && ((b = 'center'), (x = 'center')), + (c += g), + (u += m), + 0 !== (f = r ? this.getTextAngle(t, n) : 0) && + ((s = c), (l = u), e.translate(s, l), e.rotate(f), (c = 0), (u = 0)), + x) + ) { + case 'top': + break; + case 'center': + u += v / 2; + break; + case 'bottom': + u += v; + } + var w = t.pstyle('text-background-opacity').value, + E = t.pstyle('text-border-opacity').value, + k = t.pstyle('text-border-width').pfValue, + _ = t.pstyle('text-background-padding').pfValue; + if (w > 0 || (k > 0 && E > 0)) { + var S = c - _; + switch (b) { + case 'left': + S -= p; + break; + case 'center': + S -= p / 2; + } + var P = u - v - _, + C = p + 2 * _, + j = v + 2 * _; + if (w > 0) { + var T = e.fillStyle, + D = t.pstyle('text-background-color').value; + (e.fillStyle = 'rgba(' + D[0] + ',' + D[1] + ',' + D[2] + ',' + w * a + ')'), + 0 === t.pstyle('text-background-shape').strValue.indexOf('round') + ? (function (e, t, n, r, o) { + var i = arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : 5; + e.beginPath(), + e.moveTo(t + i, n), + e.lineTo(t + r - i, n), + e.quadraticCurveTo(t + r, n, t + r, n + i), + e.lineTo(t + r, n + o - i), + e.quadraticCurveTo(t + r, n + o, t + r - i, n + o), + e.lineTo(t + i, n + o), + e.quadraticCurveTo(t, n + o, t, n + o - i), + e.lineTo(t, n + i), + e.quadraticCurveTo(t, n, t + i, n), + e.closePath(), + e.fill(); + })(e, S, P, C, j, 2) + : e.fillRect(S, P, C, j), + (e.fillStyle = T); + } + if (k > 0 && E > 0) { + var N = e.strokeStyle, + M = e.lineWidth, + O = t.pstyle('text-border-color').value, + A = t.pstyle('text-border-style').value; + if ( + ((e.strokeStyle = 'rgba(' + O[0] + ',' + O[1] + ',' + O[2] + ',' + E * a + ')'), + (e.lineWidth = k), + e.setLineDash) + ) + switch (A) { + case 'dotted': + e.setLineDash([1, 1]); + break; + case 'dashed': + e.setLineDash([4, 2]); + break; + case 'double': + (e.lineWidth = k / 4), e.setLineDash([]); + break; + case 'solid': + e.setLineDash([]); + } + if ((e.strokeRect(S, P, C, j), 'double' === A)) { + var R = k / 2; + e.strokeRect(S + R, P + R, C - 2 * R, j - 2 * R); + } + e.setLineDash && e.setLineDash([]), (e.lineWidth = M), (e.strokeStyle = N); + } + } + var L = 2 * t.pstyle('text-outline-width').pfValue; + if ((L > 0 && (e.lineWidth = L), 'wrap' === t.pstyle('text-wrap').value)) { + var I = Le(i, 'labelWrapCachedLines', n), + B = Le(i, 'labelLineHeight', n), + F = p / 2, + z = this.getLabelJustification(t); + switch ( + ('auto' === z || + ('left' === b + ? 'left' === z + ? (c += -p) + : 'center' === z && (c += -F) + : 'center' === b + ? 'left' === z + ? (c += -F) + : 'right' === z && (c += F) + : 'right' === b && ('center' === z ? (c += F) : 'right' === z && (c += p))), + x) + ) { + case 'top': + case 'center': + case 'bottom': + u -= (I.length - 1) * B; + } + for (var V = 0; V < I.length; V++) L > 0 && e.strokeText(I[V], c, u), e.fillText(I[V], c, u), (u += B); + } else L > 0 && e.strokeText(d, c, u), e.fillText(d, c, u); + 0 !== f && (e.rotate(-f), e.translate(-s, -l)); + } + } + }); + var Ks = { + drawNode: function (e, t, n) { + var r, + o, + i = !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3], + a = !(arguments.length > 4 && void 0 !== arguments[4]) || arguments[4], + s = !(arguments.length > 5 && void 0 !== arguments[5]) || arguments[5], + l = this, + c = t._private, + u = c.rscratch, + d = t.position(); + if (M(d.x) && M(d.y) && (!s || t.visible())) { + var f, + h, + p = s ? t.effectiveOpacity() : 1, + v = l.usePaths(), + g = !1, + m = t.padding(); + (r = t.width() + 2 * m), (o = t.height() + 2 * m), n && ((h = n), e.translate(-h.x1, -h.y1)); + for ( + var y = t.pstyle('background-image').value, + b = new Array(y.length), + x = new Array(y.length), + w = 0, + E = 0; + E < y.length; + E++ + ) { + var k = y[E]; + if ((b[E] = null != k && 'none' !== k)) { + var _ = t.cy().style().getIndexedStyle(t, 'background-image-crossorigin', 'value', E); + w++, + (x[E] = l.getCachedImage(k, _, function () { + (c.backgroundTimestamp = Date.now()), t.emitAndNotify('background'); + })); + } + } + var S = t.pstyle('background-blacken').value, + P = t.pstyle('border-width').pfValue, + C = t.pstyle('background-opacity').value * p, + j = t.pstyle('border-color').value, + T = t.pstyle('border-style').value, + D = t.pstyle('border-opacity').value * p; + e.lineJoin = 'miter'; + var N = function () { + var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : C; + l.eleFillStyle(e, t, n); + }, + O = function () { + var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : D; + l.colorStrokeStyle(e, j[0], j[1], j[2], t); + }, + A = t.pstyle('shape').strValue, + R = t.pstyle('shape-polygon-points').pfValue; + if (v) { + e.translate(d.x, d.y); + var L = (l.nodePathCache = l.nodePathCache || []), + I = ge('polygon' === A ? A + ',' + R.join(',') : A, '' + o, '' + r), + B = L[I]; + null != B ? ((f = B), (g = !0), (u.pathCache = f)) : ((f = new Path2D()), (L[I] = u.pathCache = f)); + } + var F = function () { + if (!g) { + var n = d; + v && (n = { x: 0, y: 0 }), l.nodeShapes[l.getNodeShape(t)].draw(f || e, n.x, n.y, r, o); + } + v ? e.fill(f) : e.fill(); + }, + z = function () { + for ( + var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : p, + r = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], + o = c.backgrounding, + i = 0, + a = 0; + a < x.length; + a++ + ) { + var s = t.cy().style().getIndexedStyle(t, 'background-image-containment', 'value', a); + (r && 'over' === s) || (!r && 'inside' === s) + ? i++ + : b[a] && x[a].complete && !x[a].error && (i++, l.drawInscribedImage(e, x[a], t, a, n)); + } + (c.backgrounding = !(i === w)), o !== c.backgrounding && t.updateStyle(!1); + }, + V = function () { + var n = arguments.length > 0 && void 0 !== arguments[0] && arguments[0], + i = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : p; + l.hasPie(t) && + (l.drawPie(e, t, i), n && (v || l.nodeShapes[l.getNodeShape(t)].draw(e, d.x, d.y, r, o))); + }, + G = function () { + var t = (S > 0 ? S : -S) * (arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : p), + n = S > 0 ? 0 : 255; + 0 !== S && (l.colorFillStyle(e, n, n, n, t), v ? e.fill(f) : e.fill()); + }, + H = function () { + if (P > 0) { + if (((e.lineWidth = P), (e.lineCap = 'butt'), e.setLineDash)) + switch (T) { + case 'dotted': + e.setLineDash([1, 1]); + break; + case 'dashed': + e.setLineDash([4, 2]); + break; + case 'solid': + case 'double': + e.setLineDash([]); + } + if ((v ? e.stroke(f) : e.stroke(), 'double' === T)) { + e.lineWidth = P / 3; + var t = e.globalCompositeOperation; + (e.globalCompositeOperation = 'destination-out'), + v ? e.stroke(f) : e.stroke(), + (e.globalCompositeOperation = t); + } + e.setLineDash && e.setLineDash([]); + } + }; + if ('yes' === t.pstyle('ghost').value) { + var W = t.pstyle('ghost-offset-x').pfValue, + U = t.pstyle('ghost-offset-y').pfValue, + q = t.pstyle('ghost-opacity').value, + Y = q * p; + e.translate(W, U), + N(q * C), + F(), + z(Y, !0), + O(q * D), + H(), + V(0 !== S || 0 !== P), + z(Y, !1), + G(Y), + e.translate(-W, -U); + } + v && e.translate(-d.x, -d.y), + a && l.drawNodeUnderlay(e, t, d, r, o), + v && e.translate(d.x, d.y), + N(), + F(), + z(p, !0), + O(), + H(), + V(0 !== S || 0 !== P), + z(p, !1), + G(), + v && e.translate(-d.x, -d.y), + l.drawElementText(e, t, null, i), + a && l.drawNodeOverlay(e, t, d, r, o), + n && e.translate(h.x1, h.y1); + } + }, + }, + Zs = function (e) { + if (!['overlay', 'underlay'].includes(e)) throw new Error('Invalid state'); + return function (t, n, r, o, i) { + if (n.visible()) { + var a = n.pstyle(''.concat(e, '-padding')).pfValue, + s = n.pstyle(''.concat(e, '-opacity')).value, + l = n.pstyle(''.concat(e, '-color')).value, + c = n.pstyle(''.concat(e, '-shape')).value; + if (s > 0) { + if (((r = r || n.position()), null == o || null == i)) { + var u = n.padding(); + (o = n.width() + 2 * u), (i = n.height() + 2 * u); + } + this.colorFillStyle(t, l[0], l[1], l[2], s), + this.nodeShapes[c].draw(t, r.x, r.y, o + 2 * a, i + 2 * a), + t.fill(); + } + } + }; + }; + (Ks.drawNodeOverlay = Zs('overlay')), + (Ks.drawNodeUnderlay = Zs('underlay')), + (Ks.hasPie = function (e) { + return (e = e[0])._private.hasPie; + }), + (Ks.drawPie = function (e, t, n, r) { + (t = t[0]), (r = r || t.position()); + var o = t.cy().style(), + i = t.pstyle('pie-size'), + a = r.x, + s = r.y, + l = t.width(), + c = t.height(), + u = Math.min(l, c) / 2, + d = 0; + this.usePaths() && ((a = 0), (s = 0)), + '%' === i.units ? (u *= i.pfValue) : void 0 !== i.pfValue && (u = i.pfValue / 2); + for (var f = 1; f <= o.pieBackgroundN; f++) { + var h = t.pstyle('pie-' + f + '-background-size').value, + p = t.pstyle('pie-' + f + '-background-color').value, + v = t.pstyle('pie-' + f + '-background-opacity').value * n, + g = h / 100; + g + d > 1 && (g = 1 - d); + var m = 1.5 * Math.PI + 2 * Math.PI * d, + y = m + 2 * Math.PI * g; + 0 === h || + d >= 1 || + d + g > 1 || + (e.beginPath(), + e.moveTo(a, s), + e.arc(a, s, u, m, y), + e.closePath(), + this.colorFillStyle(e, p[0], p[1], p[2], v), + e.fill(), + (d += g)); + } + }); + var Qs = {}; + (Qs.getPixelRatio = function () { + var e = this.data.contexts[0]; + if (null != this.forcedPixelRatio) return this.forcedPixelRatio; + var t = + e.backingStorePixelRatio || + e.webkitBackingStorePixelRatio || + e.mozBackingStorePixelRatio || + e.msBackingStorePixelRatio || + e.oBackingStorePixelRatio || + e.backingStorePixelRatio || + 1; + return (window.devicePixelRatio || 1) / t; + }), + (Qs.paintCache = function (e) { + for (var t, n = (this.paintCaches = this.paintCaches || []), r = !0, o = 0; o < n.length; o++) + if ((t = n[o]).context === e) { + r = !1; + break; + } + return r && ((t = { context: e }), n.push(t)), t; + }), + (Qs.createGradientStyleFor = function (e, t, n, r, o) { + var i, + a = this.usePaths(), + s = n.pstyle(t + '-gradient-stop-colors').value, + l = n.pstyle(t + '-gradient-stop-positions').pfValue; + if ('radial-gradient' === r) + if (n.isEdge()) { + var c = n.sourceEndpoint(), + u = n.targetEndpoint(), + d = n.midpoint(), + f = ct(c, d), + h = ct(u, d); + i = e.createRadialGradient(d.x, d.y, 0, d.x, d.y, Math.max(f, h)); + } else { + var p = a ? { x: 0, y: 0 } : n.position(), + v = n.paddedWidth(), + g = n.paddedHeight(); + i = e.createRadialGradient(p.x, p.y, 0, p.x, p.y, Math.max(v, g)); + } + else if (n.isEdge()) { + var m = n.sourceEndpoint(), + y = n.targetEndpoint(); + i = e.createLinearGradient(m.x, m.y, y.x, y.y); + } else { + var b = a ? { x: 0, y: 0 } : n.position(), + x = n.paddedWidth() / 2, + w = n.paddedHeight() / 2; + switch (n.pstyle('background-gradient-direction').value) { + case 'to-bottom': + i = e.createLinearGradient(b.x, b.y - w, b.x, b.y + w); + break; + case 'to-top': + i = e.createLinearGradient(b.x, b.y + w, b.x, b.y - w); + break; + case 'to-left': + i = e.createLinearGradient(b.x + x, b.y, b.x - x, b.y); + break; + case 'to-right': + i = e.createLinearGradient(b.x - x, b.y, b.x + x, b.y); + break; + case 'to-bottom-right': + case 'to-right-bottom': + i = e.createLinearGradient(b.x - x, b.y - w, b.x + x, b.y + w); + break; + case 'to-top-right': + case 'to-right-top': + i = e.createLinearGradient(b.x - x, b.y + w, b.x + x, b.y - w); + break; + case 'to-bottom-left': + case 'to-left-bottom': + i = e.createLinearGradient(b.x + x, b.y - w, b.x - x, b.y + w); + break; + case 'to-top-left': + case 'to-left-top': + i = e.createLinearGradient(b.x + x, b.y + w, b.x - x, b.y - w); + } + } + if (!i) return null; + for (var E = l.length === s.length, k = s.length, _ = 0; _ < k; _++) + i.addColorStop(E ? l[_] : _ / (k - 1), 'rgba(' + s[_][0] + ',' + s[_][1] + ',' + s[_][2] + ',' + o + ')'); + return i; + }), + (Qs.gradientFillStyle = function (e, t, n, r) { + var o = this.createGradientStyleFor(e, 'background', t, n, r); + if (!o) return null; + e.fillStyle = o; + }), + (Qs.colorFillStyle = function (e, t, n, r, o) { + e.fillStyle = 'rgba(' + t + ',' + n + ',' + r + ',' + o + ')'; + }), + (Qs.eleFillStyle = function (e, t, n) { + var r = t.pstyle('background-fill').value; + if ('linear-gradient' === r || 'radial-gradient' === r) this.gradientFillStyle(e, t, r, n); + else { + var o = t.pstyle('background-color').value; + this.colorFillStyle(e, o[0], o[1], o[2], n); + } + }), + (Qs.gradientStrokeStyle = function (e, t, n, r) { + var o = this.createGradientStyleFor(e, 'line', t, n, r); + if (!o) return null; + e.strokeStyle = o; + }), + (Qs.colorStrokeStyle = function (e, t, n, r, o) { + e.strokeStyle = 'rgba(' + t + ',' + n + ',' + r + ',' + o + ')'; + }), + (Qs.eleStrokeStyle = function (e, t, n) { + var r = t.pstyle('line-fill').value; + if ('linear-gradient' === r || 'radial-gradient' === r) this.gradientStrokeStyle(e, t, r, n); + else { + var o = t.pstyle('line-color').value; + this.colorStrokeStyle(e, o[0], o[1], o[2], n); + } + }), + (Qs.matchCanvasSize = function (e) { + var t = this, + n = t.data, + r = t.findContainerClientCoords(), + o = r[2], + i = r[3], + a = t.getPixelRatio(), + s = t.motionBlurPxRatio; + (e !== t.data.bufferCanvases[t.MOTIONBLUR_BUFFER_NODE] && + e !== t.data.bufferCanvases[t.MOTIONBLUR_BUFFER_DRAG]) || + (a = s); + var l, + c = o * a, + u = i * a; + if (c !== t.canvasWidth || u !== t.canvasHeight) { + t.fontCaches = null; + var d = n.canvasContainer; + (d.style.width = o + 'px'), (d.style.height = i + 'px'); + for (var f = 0; f < t.CANVAS_LAYERS; f++) + ((l = n.canvases[f]).width = c), (l.height = u), (l.style.width = o + 'px'), (l.style.height = i + 'px'); + for (f = 0; f < t.BUFFER_COUNT; f++) + ((l = n.bufferCanvases[f]).width = c), + (l.height = u), + (l.style.width = o + 'px'), + (l.style.height = i + 'px'); + (t.textureMult = 1), + a <= 1 && + ((l = n.bufferCanvases[t.TEXTURE_BUFFER]), + (t.textureMult = 2), + (l.width = c * t.textureMult), + (l.height = u * t.textureMult)), + (t.canvasWidth = c), + (t.canvasHeight = u); + } + }), + (Qs.renderTo = function (e, t, n, r) { + this.render({ forcedContext: e, forcedZoom: t, forcedPan: n, drawAllLayers: !0, forcedPxRatio: r }); + }), + (Qs.render = function (e) { + var t = (e = e || Me()).forcedContext, + n = e.drawAllLayers, + r = e.drawOnlyNodeLayer, + o = e.forcedZoom, + i = e.forcedPan, + a = this, + s = void 0 === e.forcedPxRatio ? this.getPixelRatio() : e.forcedPxRatio, + l = a.cy, + c = a.data, + u = c.canvasNeedsRedraw, + d = + a.textureOnViewport && + !t && + (a.pinching || a.hoverData.dragging || a.swipePanning || a.data.wheelZooming), + f = void 0 !== e.motionBlur ? e.motionBlur : a.motionBlur, + h = a.motionBlurPxRatio, + p = l.hasCompoundNodes(), + v = a.hoverData.draggingEles, + g = !(!a.hoverData.selecting && !a.touchData.selecting), + m = (f = f && !t && a.motionBlurEnabled && !g); + t || + (a.prevPxRatio !== s && + (a.invalidateContainerClientCoordsCache(), + a.matchCanvasSize(a.container), + a.redrawHint('eles', !0), + a.redrawHint('drag', !0)), + (a.prevPxRatio = s)), + !t && a.motionBlurTimeout && clearTimeout(a.motionBlurTimeout), + f && + (null == a.mbFrames && (a.mbFrames = 0), + a.mbFrames++, + a.mbFrames < 3 && (m = !1), + a.mbFrames > a.minMbLowQualFrames && (a.motionBlurPxRatio = a.mbPxRBlurry)), + a.clearingMotionBlur && (a.motionBlurPxRatio = 1), + a.textureDrawLastFrame && !d && ((u[a.NODE] = !0), (u[a.SELECT_BOX] = !0)); + var y = l.style(), + b = l.zoom(), + x = void 0 !== o ? o : b, + w = l.pan(), + E = { x: w.x, y: w.y }, + k = { zoom: b, pan: { x: w.x, y: w.y } }, + _ = a.prevViewport; + void 0 === _ || + k.zoom !== _.zoom || + k.pan.x !== _.pan.x || + k.pan.y !== _.pan.y || + (v && !p) || + (a.motionBlurPxRatio = 1), + i && (E = i), + (x *= s), + (E.x *= s), + (E.y *= s); + var S = a.getCachedZSortedEles(); + function P(e, t, n, r, o) { + var i = e.globalCompositeOperation; + (e.globalCompositeOperation = 'destination-out'), + a.colorFillStyle(e, 255, 255, 255, a.motionBlurTransparency), + e.fillRect(t, n, r, o), + (e.globalCompositeOperation = i); + } + function C(e, r) { + var s, l, u, d; + a.clearingMotionBlur || + (e !== c.bufferContexts[a.MOTIONBLUR_BUFFER_NODE] && e !== c.bufferContexts[a.MOTIONBLUR_BUFFER_DRAG]) + ? ((s = E), (l = x), (u = a.canvasWidth), (d = a.canvasHeight)) + : ((s = { x: w.x * h, y: w.y * h }), (l = b * h), (u = a.canvasWidth * h), (d = a.canvasHeight * h)), + e.setTransform(1, 0, 0, 1, 0, 0), + 'motionBlur' === r ? P(e, 0, 0, u, d) : t || (void 0 !== r && !r) || e.clearRect(0, 0, u, d), + n || (e.translate(s.x, s.y), e.scale(l, l)), + i && e.translate(i.x, i.y), + o && e.scale(o, o); + } + if ((d || (a.textureDrawLastFrame = !1), d)) { + if (((a.textureDrawLastFrame = !0), !a.textureCache)) { + (a.textureCache = {}), + (a.textureCache.bb = l.mutableElements().boundingBox()), + (a.textureCache.texture = a.data.bufferCanvases[a.TEXTURE_BUFFER]); + var j = a.data.bufferContexts[a.TEXTURE_BUFFER]; + j.setTransform(1, 0, 0, 1, 0, 0), + j.clearRect(0, 0, a.canvasWidth * a.textureMult, a.canvasHeight * a.textureMult), + a.render({ forcedContext: j, drawOnlyNodeLayer: !0, forcedPxRatio: s * a.textureMult }), + ((k = a.textureCache.viewport = + { zoom: l.zoom(), pan: l.pan(), width: a.canvasWidth, height: a.canvasHeight }).mpan = { + x: (0 - k.pan.x) / k.zoom, + y: (0 - k.pan.y) / k.zoom, + }); + } + (u[a.DRAG] = !1), (u[a.NODE] = !1); + var T = c.contexts[a.NODE], + D = a.textureCache.texture; + k = a.textureCache.viewport; + T.setTransform(1, 0, 0, 1, 0, 0), f ? P(T, 0, 0, k.width, k.height) : T.clearRect(0, 0, k.width, k.height); + var N = y.core('outside-texture-bg-color').value, + M = y.core('outside-texture-bg-opacity').value; + a.colorFillStyle(T, N[0], N[1], N[2], M), T.fillRect(0, 0, k.width, k.height); + b = l.zoom(); + C(T, !1), + T.clearRect(k.mpan.x, k.mpan.y, k.width / k.zoom / s, k.height / k.zoom / s), + T.drawImage(D, k.mpan.x, k.mpan.y, k.width / k.zoom / s, k.height / k.zoom / s); + } else a.textureOnViewport && !t && (a.textureCache = null); + var O = l.extent(), + A = + a.pinching || + a.hoverData.dragging || + a.swipePanning || + a.data.wheelZooming || + a.hoverData.draggingEles || + a.cy.animated(), + R = a.hideEdgesOnViewport && A, + L = []; + if ( + ((L[a.NODE] = (!u[a.NODE] && f && !a.clearedForMotionBlur[a.NODE]) || a.clearingMotionBlur), + L[a.NODE] && (a.clearedForMotionBlur[a.NODE] = !0), + (L[a.DRAG] = (!u[a.DRAG] && f && !a.clearedForMotionBlur[a.DRAG]) || a.clearingMotionBlur), + L[a.DRAG] && (a.clearedForMotionBlur[a.DRAG] = !0), + u[a.NODE] || n || r || L[a.NODE]) + ) { + var I = f && !L[a.NODE] && 1 !== h; + C( + (T = t || (I ? a.data.bufferContexts[a.MOTIONBLUR_BUFFER_NODE] : c.contexts[a.NODE])), + f && !I ? 'motionBlur' : void 0, + ), + R ? a.drawCachedNodes(T, S.nondrag, s, O) : a.drawLayeredElements(T, S.nondrag, s, O), + a.debug && a.drawDebugPoints(T, S.nondrag), + n || f || (u[a.NODE] = !1); + } + if (!r && (u[a.DRAG] || n || L[a.DRAG])) { + I = f && !L[a.DRAG] && 1 !== h; + C( + (T = t || (I ? a.data.bufferContexts[a.MOTIONBLUR_BUFFER_DRAG] : c.contexts[a.DRAG])), + f && !I ? 'motionBlur' : void 0, + ), + R ? a.drawCachedNodes(T, S.drag, s, O) : a.drawCachedElements(T, S.drag, s, O), + a.debug && a.drawDebugPoints(T, S.drag), + n || f || (u[a.DRAG] = !1); + } + if (a.showFps || (!r && u[a.SELECT_BOX] && !n)) { + if ( + (C((T = t || c.contexts[a.SELECT_BOX])), + 1 == a.selection[4] && (a.hoverData.selecting || a.touchData.selecting)) + ) { + b = a.cy.zoom(); + var B = y.core('selection-box-border-width').value / b; + (T.lineWidth = B), + (T.fillStyle = + 'rgba(' + + y.core('selection-box-color').value[0] + + ',' + + y.core('selection-box-color').value[1] + + ',' + + y.core('selection-box-color').value[2] + + ',' + + y.core('selection-box-opacity').value + + ')'), + T.fillRect( + a.selection[0], + a.selection[1], + a.selection[2] - a.selection[0], + a.selection[3] - a.selection[1], + ), + B > 0 && + ((T.strokeStyle = + 'rgba(' + + y.core('selection-box-border-color').value[0] + + ',' + + y.core('selection-box-border-color').value[1] + + ',' + + y.core('selection-box-border-color').value[2] + + ',' + + y.core('selection-box-opacity').value + + ')'), + T.strokeRect( + a.selection[0], + a.selection[1], + a.selection[2] - a.selection[0], + a.selection[3] - a.selection[1], + )); + } + if (c.bgActivePosistion && !a.hoverData.selecting) { + b = a.cy.zoom(); + var F = c.bgActivePosistion; + (T.fillStyle = + 'rgba(' + + y.core('active-bg-color').value[0] + + ',' + + y.core('active-bg-color').value[1] + + ',' + + y.core('active-bg-color').value[2] + + ',' + + y.core('active-bg-opacity').value + + ')'), + T.beginPath(), + T.arc(F.x, F.y, y.core('active-bg-size').pfValue / b, 0, 2 * Math.PI), + T.fill(); + } + var z = a.lastRedrawTime; + if (a.showFps && z) { + z = Math.round(z); + var V = Math.round(1e3 / z); + T.setTransform(1, 0, 0, 1, 0, 0), + (T.fillStyle = 'rgba(255, 0, 0, 0.75)'), + (T.strokeStyle = 'rgba(255, 0, 0, 0.75)'), + (T.lineWidth = 1), + T.fillText('1 frame = ' + z + ' ms = ' + V + ' fps', 0, 20); + T.strokeRect(0, 30, 250, 20), T.fillRect(0, 30, 250 * Math.min(V / 60, 1), 20); + } + n || (u[a.SELECT_BOX] = !1); + } + if (f && 1 !== h) { + var G = c.contexts[a.NODE], + H = a.data.bufferCanvases[a.MOTIONBLUR_BUFFER_NODE], + W = c.contexts[a.DRAG], + U = a.data.bufferCanvases[a.MOTIONBLUR_BUFFER_DRAG], + q = function (e, t, n) { + e.setTransform(1, 0, 0, 1, 0, 0), + n || !m + ? e.clearRect(0, 0, a.canvasWidth, a.canvasHeight) + : P(e, 0, 0, a.canvasWidth, a.canvasHeight); + var r = h; + e.drawImage(t, 0, 0, a.canvasWidth * r, a.canvasHeight * r, 0, 0, a.canvasWidth, a.canvasHeight); + }; + (u[a.NODE] || L[a.NODE]) && (q(G, H, L[a.NODE]), (u[a.NODE] = !1)), + (u[a.DRAG] || L[a.DRAG]) && (q(W, U, L[a.DRAG]), (u[a.DRAG] = !1)); + } + (a.prevViewport = k), + a.clearingMotionBlur && ((a.clearingMotionBlur = !1), (a.motionBlurCleared = !0), (a.motionBlur = !0)), + f && + (a.motionBlurTimeout = setTimeout(function () { + (a.motionBlurTimeout = null), + (a.clearedForMotionBlur[a.NODE] = !1), + (a.clearedForMotionBlur[a.DRAG] = !1), + (a.motionBlur = !1), + (a.clearingMotionBlur = !d), + (a.mbFrames = 0), + (u[a.NODE] = !0), + (u[a.DRAG] = !0), + a.redraw(); + }, 100)), + t || l.emit('render'); + }); + for ( + var Js = { + drawPolygonPath: function (e, t, n, r, o, i) { + var a = r / 2, + s = o / 2; + e.beginPath && e.beginPath(), e.moveTo(t + a * i[0], n + s * i[1]); + for (var l = 1; l < i.length / 2; l++) e.lineTo(t + a * i[2 * l], n + s * i[2 * l + 1]); + e.closePath(); + }, + drawRoundPolygonPath: function (e, t, n, r, o, i) { + var a = r / 2, + s = o / 2, + l = Gt(r, o); + e.beginPath && e.beginPath(); + for (var c = 0; c < i.length / 4; c++) { + var u, + d = void 0; + (d = 0 === c ? i.length - 2 : 4 * c - 2), (u = 4 * c + 2); + var f = t + a * i[4 * c], + h = n + s * i[4 * c + 1], + p = -i[d] * i[u] - i[d + 1] * i[u + 1], + v = l / Math.tan(Math.acos(p) / 2), + g = f - v * i[d], + m = h - v * i[d + 1], + y = f + v * i[u], + b = h + v * i[u + 1]; + 0 === c ? e.moveTo(g, m) : e.lineTo(g, m), e.arcTo(f, h, y, b, l); + } + e.closePath(); + }, + drawRoundRectanglePath: function (e, t, n, r, o) { + var i = r / 2, + a = o / 2, + s = Vt(r, o); + e.beginPath && e.beginPath(), + e.moveTo(t, n - a), + e.arcTo(t + i, n - a, t + i, n, s), + e.arcTo(t + i, n + a, t, n + a, s), + e.arcTo(t - i, n + a, t - i, n, s), + e.arcTo(t - i, n - a, t, n - a, s), + e.lineTo(t, n - a), + e.closePath(); + }, + drawBottomRoundRectanglePath: function (e, t, n, r, o) { + var i = r / 2, + a = o / 2, + s = Vt(r, o); + e.beginPath && e.beginPath(), + e.moveTo(t, n - a), + e.lineTo(t + i, n - a), + e.lineTo(t + i, n), + e.arcTo(t + i, n + a, t, n + a, s), + e.arcTo(t - i, n + a, t - i, n, s), + e.lineTo(t - i, n - a), + e.lineTo(t, n - a), + e.closePath(); + }, + drawCutRectanglePath: function (e, t, n, r, o) { + var i = r / 2, + a = o / 2; + e.beginPath && e.beginPath(), + e.moveTo(t - i + 8, n - a), + e.lineTo(t + i - 8, n - a), + e.lineTo(t + i, n - a + 8), + e.lineTo(t + i, n + a - 8), + e.lineTo(t + i - 8, n + a), + e.lineTo(t - i + 8, n + a), + e.lineTo(t - i, n + a - 8), + e.lineTo(t - i, n - a + 8), + e.closePath(); + }, + drawBarrelPath: function (e, t, n, r, o) { + var i = r / 2, + a = o / 2, + s = t - i, + l = t + i, + c = n - a, + u = n + a, + d = Ht(r, o), + f = d.widthOffset, + h = d.heightOffset, + p = d.ctrlPtOffsetPct * f; + e.beginPath && e.beginPath(), + e.moveTo(s, c + h), + e.lineTo(s, u - h), + e.quadraticCurveTo(s + p, u, s + f, u), + e.lineTo(l - f, u), + e.quadraticCurveTo(l - p, u, l, u - h), + e.lineTo(l, c + h), + e.quadraticCurveTo(l - p, c, l - f, c), + e.lineTo(s + f, c), + e.quadraticCurveTo(s + p, c, s, c + h), + e.closePath(); + }, + }, + el = Math.sin(0), + tl = Math.cos(0), + nl = {}, + rl = {}, + ol = Math.PI / 40, + il = 0 * Math.PI; + il < 2 * Math.PI; + il += ol + ) + (nl[il] = Math.sin(il)), (rl[il] = Math.cos(il)); + Js.drawEllipsePath = function (e, t, n, r, o) { + if ((e.beginPath && e.beginPath(), e.ellipse)) e.ellipse(t, n, r / 2, o / 2, 0, 0, 2 * Math.PI); + else + for (var i, a, s = r / 2, l = o / 2, c = 0 * Math.PI; c < 2 * Math.PI; c += ol) + (i = t - s * nl[c] * el + s * rl[c] * tl), + (a = n + l * rl[c] * el + l * nl[c] * tl), + 0 === c ? e.moveTo(i, a) : e.lineTo(i, a); + e.closePath(); + }; + var al = {}; + function sl(e) { + var t = e.indexOf(','); + return e.substr(t + 1); + } + function ll(e, t, n) { + var r = function () { + return t.toDataURL(n, e.quality); + }; + switch (e.output) { + case 'blob-promise': + return new nr(function (r, o) { + try { + t.toBlob( + function (e) { + null != e ? r(e) : o(new Error('`canvas.toBlob()` sent a null value in its callback')); + }, + n, + e.quality, + ); + } catch (i) { + o(i); + } + }); + case 'blob': + return (function (e, t) { + for (var n = atob(e), r = new ArrayBuffer(n.length), o = new Uint8Array(r), i = 0; i < n.length; i++) + o[i] = n.charCodeAt(i); + return new Blob([r], { type: t }); + })(sl(r()), n); + case 'base64': + return sl(r()); + default: + return r(); + } + } + (al.createBuffer = function (e, t) { + var n = document.createElement('canvas'); + return (n.width = e), (n.height = t), [n, n.getContext('2d')]; + }), + (al.bufferCanvasImage = function (e) { + var t = this.cy, + n = t.mutableElements().boundingBox(), + r = this.findContainerClientCoords(), + o = e.full ? Math.ceil(n.w) : r[2], + i = e.full ? Math.ceil(n.h) : r[3], + a = M(e.maxWidth) || M(e.maxHeight), + s = this.getPixelRatio(), + l = 1; + if (void 0 !== e.scale) (o *= e.scale), (i *= e.scale), (l = e.scale); + else if (a) { + var c = 1 / 0, + u = 1 / 0; + M(e.maxWidth) && (c = (l * e.maxWidth) / o), + M(e.maxHeight) && (u = (l * e.maxHeight) / i), + (o *= l = Math.min(c, u)), + (i *= l); + } + a || ((o *= s), (i *= s), (l *= s)); + var d = document.createElement('canvas'); + (d.width = o), (d.height = i), (d.style.width = o + 'px'), (d.style.height = i + 'px'); + var f = d.getContext('2d'); + if (o > 0 && i > 0) { + f.clearRect(0, 0, o, i), (f.globalCompositeOperation = 'source-over'); + var h = this.getCachedZSortedEles(); + if (e.full) + f.translate(-n.x1 * l, -n.y1 * l), + f.scale(l, l), + this.drawElements(f, h), + f.scale(1 / l, 1 / l), + f.translate(n.x1 * l, n.y1 * l); + else { + var p = t.pan(), + v = { x: p.x * l, y: p.y * l }; + (l *= t.zoom()), + f.translate(v.x, v.y), + f.scale(l, l), + this.drawElements(f, h), + f.scale(1 / l, 1 / l), + f.translate(-v.x, -v.y); + } + e.bg && + ((f.globalCompositeOperation = 'destination-over'), (f.fillStyle = e.bg), f.rect(0, 0, o, i), f.fill()); + } + return d; + }), + (al.png = function (e) { + return ll(e, this.bufferCanvasImage(e), 'image/png'); + }), + (al.jpg = function (e) { + return ll(e, this.bufferCanvasImage(e), 'image/jpeg'); + }); + var cl = { + nodeShapeImpl: function (e, t, n, r, o, i, a) { + switch (e) { + case 'ellipse': + return this.drawEllipsePath(t, n, r, o, i); + case 'polygon': + return this.drawPolygonPath(t, n, r, o, i, a); + case 'round-polygon': + return this.drawRoundPolygonPath(t, n, r, o, i, a); + case 'roundrectangle': + case 'round-rectangle': + return this.drawRoundRectanglePath(t, n, r, o, i); + case 'cutrectangle': + case 'cut-rectangle': + return this.drawCutRectanglePath(t, n, r, o, i); + case 'bottomroundrectangle': + case 'bottom-round-rectangle': + return this.drawBottomRoundRectanglePath(t, n, r, o, i); + case 'barrel': + return this.drawBarrelPath(t, n, r, o, i); + } + }, + }, + ul = fl, + dl = fl.prototype; + function fl(e) { + var t = this; + t.data = { + canvases: new Array(dl.CANVAS_LAYERS), + contexts: new Array(dl.CANVAS_LAYERS), + canvasNeedsRedraw: new Array(dl.CANVAS_LAYERS), + bufferCanvases: new Array(dl.BUFFER_COUNT), + bufferContexts: new Array(dl.CANVAS_LAYERS), + }; + var n = '-webkit-tap-highlight-color', + r = 'rgba(0,0,0,0)'; + t.data.canvasContainer = document.createElement('div'); + var o = t.data.canvasContainer.style; + (t.data.canvasContainer.style[n] = r), (o.position = 'relative'), (o.zIndex = '0'), (o.overflow = 'hidden'); + var i = e.cy.container(); + i.appendChild(t.data.canvasContainer), (i.style[n] = r); + var a = { + '-webkit-user-select': 'none', + '-moz-user-select': '-moz-none', + 'user-select': 'none', + '-webkit-tap-highlight-color': 'rgba(0,0,0,0)', + 'outline-style': 'none', + }; + E && + E.userAgent.match(/msie|trident|edge/i) && + ((a['-ms-touch-action'] = 'none'), (a['touch-action'] = 'none')); + for (var s = 0; s < dl.CANVAS_LAYERS; s++) { + var l = (t.data.canvases[s] = document.createElement('canvas')); + (t.data.contexts[s] = l.getContext('2d')), + Object.keys(a).forEach(function (e) { + l.style[e] = a[e]; + }), + (l.style.position = 'absolute'), + l.setAttribute('data-id', 'layer' + s), + (l.style.zIndex = String(dl.CANVAS_LAYERS - s)), + t.data.canvasContainer.appendChild(l), + (t.data.canvasNeedsRedraw[s] = !1); + } + (t.data.topCanvas = t.data.canvases[0]), + t.data.canvases[dl.NODE].setAttribute('data-id', 'layer' + dl.NODE + '-node'), + t.data.canvases[dl.SELECT_BOX].setAttribute('data-id', 'layer' + dl.SELECT_BOX + '-selectbox'), + t.data.canvases[dl.DRAG].setAttribute('data-id', 'layer' + dl.DRAG + '-drag'); + for (s = 0; s < dl.BUFFER_COUNT; s++) + (t.data.bufferCanvases[s] = document.createElement('canvas')), + (t.data.bufferContexts[s] = t.data.bufferCanvases[s].getContext('2d')), + (t.data.bufferCanvases[s].style.position = 'absolute'), + t.data.bufferCanvases[s].setAttribute('data-id', 'buffer' + s), + (t.data.bufferCanvases[s].style.zIndex = String(-s - 1)), + (t.data.bufferCanvases[s].style.visibility = 'hidden'); + t.pathsEnabled = !0; + var c = vt(), + u = function (e) { + return { x: -e.w / 2, y: -e.h / 2 }; + }, + d = function (e) { + return e.boundingBox(), e[0]._private.bodyBounds; + }, + f = function (e) { + return e.boundingBox(), e[0]._private.labelBounds.main || c; + }, + h = function (e) { + return e.boundingBox(), e[0]._private.labelBounds.source || c; + }, + p = function (e) { + return e.boundingBox(), e[0]._private.labelBounds.target || c; + }, + v = function (e, t) { + return t; + }, + g = function (e, t, n) { + var r = e ? e + '-' : ''; + return { x: t.x + n.pstyle(r + 'text-margin-x').pfValue, y: t.y + n.pstyle(r + 'text-margin-y').pfValue }; + }, + m = function (e, t, n) { + var r = e[0]._private.rscratch; + return { x: r[t], y: r[n] }; + }, + y = (t.data.eleTxrCache = new Ps(t, { + getKey: function (e) { + return e[0]._private.nodeKey; + }, + doesEleInvalidateKey: function (e) { + var t = e[0]._private; + return !(t.oldBackgroundTimestamp === t.backgroundTimestamp); + }, + drawElement: function (e, n, r, o, i) { + return t.drawElement(e, n, r, !1, !1, i); + }, + getBoundingBox: d, + getRotationPoint: function (e) { + return { x: ((t = d(e)).x1 + t.x2) / 2, y: (t.y1 + t.y2) / 2 }; + var t; + }, + getRotationOffset: function (e) { + return u(d(e)); + }, + allowEdgeTxrCaching: !1, + allowParentTxrCaching: !1, + })), + b = (t.data.lblTxrCache = new Ps(t, { + getKey: function (e) { + return e[0]._private.labelStyleKey; + }, + drawElement: function (e, n, r, o, i) { + return t.drawElementText(e, n, r, o, 'main', i); + }, + getBoundingBox: f, + getRotationPoint: function (e) { + return g('', m(e, 'labelX', 'labelY'), e); + }, + getRotationOffset: function (e) { + var t = f(e), + n = u(f(e)); + if (e.isNode()) { + switch (e.pstyle('text-halign').value) { + case 'left': + n.x = -t.w; + break; + case 'right': + n.x = 0; + } + switch (e.pstyle('text-valign').value) { + case 'top': + n.y = -t.h; + break; + case 'bottom': + n.y = 0; + } + } + return n; + }, + isVisible: v, + })), + x = (t.data.slbTxrCache = new Ps(t, { + getKey: function (e) { + return e[0]._private.sourceLabelStyleKey; + }, + drawElement: function (e, n, r, o, i) { + return t.drawElementText(e, n, r, o, 'source', i); + }, + getBoundingBox: h, + getRotationPoint: function (e) { + return g('source', m(e, 'sourceLabelX', 'sourceLabelY'), e); + }, + getRotationOffset: function (e) { + return u(h(e)); + }, + isVisible: v, + })), + w = (t.data.tlbTxrCache = new Ps(t, { + getKey: function (e) { + return e[0]._private.targetLabelStyleKey; + }, + drawElement: function (e, n, r, o, i) { + return t.drawElementText(e, n, r, o, 'target', i); + }, + getBoundingBox: p, + getRotationPoint: function (e) { + return g('target', m(e, 'targetLabelX', 'targetLabelY'), e); + }, + getRotationOffset: function (e) { + return u(p(e)); + }, + isVisible: v, + })), + k = (t.data.lyrTxrCache = new js(t)); + t.onUpdateEleCalcs(function (e, t) { + y.invalidateElements(t), + b.invalidateElements(t), + x.invalidateElements(t), + w.invalidateElements(t), + k.invalidateElements(t); + for (var n = 0; n < t.length; n++) { + var r = t[n]._private; + r.oldBackgroundTimestamp = r.backgroundTimestamp; + } + }); + var _ = function (e) { + for (var t = 0; t < e.length; t++) k.enqueueElementRefinement(e[t].ele); + }; + y.onDequeue(_), b.onDequeue(_), x.onDequeue(_), w.onDequeue(_); + } + (dl.CANVAS_LAYERS = 3), + (dl.SELECT_BOX = 0), + (dl.DRAG = 1), + (dl.NODE = 2), + (dl.BUFFER_COUNT = 3), + (dl.TEXTURE_BUFFER = 0), + (dl.MOTIONBLUR_BUFFER_NODE = 1), + (dl.MOTIONBLUR_BUFFER_DRAG = 2), + (dl.redrawHint = function (e, t) { + var n = this; + switch (e) { + case 'eles': + n.data.canvasNeedsRedraw[dl.NODE] = t; + break; + case 'drag': + n.data.canvasNeedsRedraw[dl.DRAG] = t; + break; + case 'select': + n.data.canvasNeedsRedraw[dl.SELECT_BOX] = t; + } + }); + var hl = 'undefined' != typeof Path2D; + (dl.path2dEnabled = function (e) { + if (void 0 === e) return this.pathsEnabled; + this.pathsEnabled = !!e; + }), + (dl.usePaths = function () { + return hl && this.pathsEnabled; + }), + (dl.setImgSmoothing = function (e, t) { + null != e.imageSmoothingEnabled + ? (e.imageSmoothingEnabled = t) + : ((e.webkitImageSmoothingEnabled = t), (e.mozImageSmoothingEnabled = t), (e.msImageSmoothingEnabled = t)); + }), + (dl.getImgSmoothing = function (e) { + return null != e.imageSmoothingEnabled + ? e.imageSmoothingEnabled + : e.webkitImageSmoothingEnabled || e.mozImageSmoothingEnabled || e.msImageSmoothingEnabled; + }), + (dl.makeOffscreenCanvas = function (e, t) { + var n; + return ( + 'undefined' !== ('undefined' == typeof OffscreenCanvas ? 'undefined' : p(OffscreenCanvas)) + ? (n = new OffscreenCanvas(e, t)) + : (((n = document.createElement('canvas')).width = e), (n.height = t)), + n + ); + }), + [Os, Fs, qs, Xs, $s, Ks, Qs, Js, al, cl].forEach(function (e) { + Q(dl, e); + }); + var pl = [ + { type: 'layout', extensions: Xa }, + { + type: 'renderer', + extensions: [ + { name: 'null', impl: $a }, + { name: 'base', impl: bs }, + { name: 'canvas', impl: ul }, + ], + }, + ], + vl = {}, + gl = {}; + function ml(e, t, n) { + var r = n, + o = function (n) { + je( + 'Can not register `' + + t + + '` for `' + + e + + '` since `' + + n + + '` already exists in the prototype and can not be overridden', + ); + }; + if ('core' === e) { + if (la.prototype[t]) return o(t); + la.prototype[t] = n; + } else if ('collection' === e) { + if (_i.prototype[t]) return o(t); + _i.prototype[t] = n; + } else if ('layout' === e) { + for ( + var i = function (e) { + (this.options = e), + n.call(this, e), + N(this._private) || (this._private = {}), + (this._private.cy = e.cy), + (this._private.listeners = []), + this.createEmitter(); + }, + a = (i.prototype = Object.create(n.prototype)), + s = [], + l = 0; + l < s.length; + l++ + ) { + var c = s[l]; + a[c] = + a[c] || + function () { + return this; + }; + } + a.start && !a.run + ? (a.run = function () { + return this.start(), this; + }) + : !a.start && + a.run && + (a.start = function () { + return this.run(), this; + }); + var u = n.prototype.stop; + (a.stop = function () { + var e = this.options; + if (e && e.animate) { + var t = this.animations; + if (t) for (var n = 0; n < t.length; n++) t[n].stop(); + } + return u ? u.call(this) : this.emit('layoutstop'), this; + }), + a.destroy || + (a.destroy = function () { + return this; + }), + (a.cy = function () { + return this._private.cy; + }); + var d = function (e) { + return e._private.cy; + }, + f = { + addEventFields: function (e, t) { + (t.layout = e), (t.cy = d(e)), (t.target = e); + }, + bubble: function () { + return !0; + }, + parent: function (e) { + return d(e); + }, + }; + Q(a, { + createEmitter: function () { + return (this._private.emitter = new Go(f, this)), this; + }, + emitter: function () { + return this._private.emitter; + }, + on: function (e, t) { + return this.emitter().on(e, t), this; + }, + one: function (e, t) { + return this.emitter().one(e, t), this; + }, + once: function (e, t) { + return this.emitter().one(e, t), this; + }, + removeListener: function (e, t) { + return this.emitter().removeListener(e, t), this; + }, + removeAllListeners: function () { + return this.emitter().removeAllListeners(), this; + }, + emit: function (e, t) { + return this.emitter().emit(e, t), this; + }, + }), + lr.eventAliasesOn(a), + (r = i); + } else if ('renderer' === e && 'null' !== t && 'base' !== t) { + var h = yl('renderer', 'base'), + p = h.prototype, + v = n, + g = n.prototype, + m = function () { + h.apply(this, arguments), v.apply(this, arguments); + }, + y = m.prototype; + for (var b in p) { + var x = p[b]; + if (null != g[b]) return o(b); + y[b] = x; + } + for (var w in g) y[w] = g[w]; + p.clientFunctions.forEach(function (e) { + y[e] = + y[e] || + function () { + Pe('Renderer does not implement `renderer.' + e + '()` on its prototype'); + }; + }), + (r = m); + } else if ('__proto__' === e || 'constructor' === e || 'prototype' === e) + return Pe(e + ' is an illegal type to be registered, possibly lead to prototype pollutions'); + return te({ map: vl, keys: [e, t], value: r }); + } + function yl(e, t) { + return ne({ map: vl, keys: [e, t] }); + } + function bl(e, t, n, r, o) { + return te({ map: gl, keys: [e, t, n, r], value: o }); + } + function xl(e, t, n, r) { + return ne({ map: gl, keys: [e, t, n, r] }); + } + var wl = function () { + return 2 === arguments.length + ? yl.apply(null, arguments) + : 3 === arguments.length + ? ml.apply(null, arguments) + : 4 === arguments.length + ? xl.apply(null, arguments) + : 5 === arguments.length + ? bl.apply(null, arguments) + : void Pe('Invalid extension access syntax'); + }; + (la.prototype.extension = wl), + pl.forEach(function (e) { + e.extensions.forEach(function (t) { + ml(e.type, t.name, t.impl); + }); + }); + var El = function e() { + if (!(this instanceof e)) return new e(); + this.length = 0; + }, + kl = El.prototype; + (kl.instanceString = function () { + return 'stylesheet'; + }), + (kl.selector = function (e) { + return (this[this.length++] = { selector: e, properties: [] }), this; + }), + (kl.css = function (e, t) { + var n = this.length - 1; + if (j(e)) this[n].properties.push({ name: e, value: t }); + else if (N(e)) + for (var r = e, o = Object.keys(r), i = 0; i < o.length; i++) { + var a = o[i], + s = r[a]; + if (null != s) { + var l = ra.properties[a] || ra.properties[H(a)]; + if (null != l) { + var c = l.name, + u = s; + this[n].properties.push({ name: c, value: u }); + } + } + } + return this; + }), + (kl.style = kl.css), + (kl.generateStyle = function (e) { + var t = new ra(e); + return this.appendToStyle(t); + }), + (kl.appendToStyle = function (e) { + for (var t = 0; t < this.length; t++) { + var n = this[t], + r = n.selector, + o = n.properties; + e.selector(r); + for (var i = 0; i < o.length; i++) { + var a = o[i]; + e.css(a.name, a.value); + } + } + return e; + }); + var _l = function (e) { + return void 0 === e && (e = {}), N(e) ? new la(e) : j(e) ? wl.apply(wl, arguments) : void 0; + }; + (_l.use = function (e) { + var t = Array.prototype.slice.call(arguments, 1); + return t.unshift(_l), e.apply(null, t), this; + }), + (_l.warnings = function (e) { + return Ce(e); + }), + (_l.version = '3.23.0'), + (_l.stylesheet = _l.Stylesheet = El), + (e.exports = _l); + }, + 15439: (e, t, n) => { + e.exports = { + graphlib: n(21943), + layout: n(75499), + debug: n(55856), + util: { time: n(30345).time, notime: n(30345).notime }, + version: n(93404), + }; + }, + 55205: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(50824); + e.exports = { + run: function (e) { + var t = + 'greedy' === e.graph().acyclicer + ? o( + e, + (function (e) { + return function (t) { + return e.edge(t).weight; + }; + })(e), + ) + : (function (e) { + var t = [], + n = {}, + o = {}; + function i(a) { + r.has(o, a) || + ((o[a] = !0), + (n[a] = !0), + r.forEach(e.outEdges(a), function (e) { + r.has(n, e.w) ? t.push(e) : i(e.w); + }), + delete n[a]); + } + return r.forEach(e.nodes(), i), t; + })(e); + r.forEach(t, function (t) { + var n = e.edge(t); + e.removeEdge(t), (n.forwardName = t.name), (n.reversed = !0), e.setEdge(t.w, t.v, n, r.uniqueId('rev')); + }); + }, + undo: function (e) { + r.forEach(e.edges(), function (t) { + var n = e.edge(t); + if (n.reversed) { + e.removeEdge(t); + var r = n.forwardName; + delete n.reversed, delete n.forwardName, e.setEdge(t.w, t.v, n, r); + } + }); + }, + }; + }, + 11555: (e, t, n) => { + var r = n(32692), + o = n(30345); + function i(e, t, n, r, i, a) { + var s = { width: 0, height: 0, rank: a, borderType: t }, + l = i[t][a - 1], + c = o.addDummyNode(e, 'border', s, n); + (i[t][a] = c), e.setParent(c, r), l && e.setEdge(l, c, { weight: 1 }); + } + e.exports = function (e) { + r.forEach(e.children(), function t(n) { + var o = e.children(n), + a = e.node(n); + if ((o.length && r.forEach(o, t), r.has(a, 'minRank'))) { + (a.borderLeft = []), (a.borderRight = []); + for (var s = a.minRank, l = a.maxRank + 1; s < l; ++s) + i(e, 'borderLeft', '_bl', n, a, s), i(e, 'borderRight', '_br', n, a, s); + } + }); + }; + }, + 84688: (e, t, n) => { + 'use strict'; + var r = n(32692); + function o(e) { + r.forEach(e.nodes(), function (t) { + i(e.node(t)); + }), + r.forEach(e.edges(), function (t) { + i(e.edge(t)); + }); + } + function i(e) { + var t = e.width; + (e.width = e.height), (e.height = t); + } + function a(e) { + e.y = -e.y; + } + function s(e) { + var t = e.x; + (e.x = e.y), (e.y = t); + } + e.exports = { + adjust: function (e) { + var t = e.graph().rankdir.toLowerCase(); + ('lr' !== t && 'rl' !== t) || o(e); + }, + undo: function (e) { + var t = e.graph().rankdir.toLowerCase(); + ('bt' !== t && 'rl' !== t) || + (function (e) { + r.forEach(e.nodes(), function (t) { + a(e.node(t)); + }), + r.forEach(e.edges(), function (t) { + var n = e.edge(t); + r.forEach(n.points, a), r.has(n, 'y') && a(n); + }); + })(e); + ('lr' !== t && 'rl' !== t) || + (!(function (e) { + r.forEach(e.nodes(), function (t) { + s(e.node(t)); + }), + r.forEach(e.edges(), function (t) { + var n = e.edge(t); + r.forEach(n.points, s), r.has(n, 'x') && s(n); + }); + })(e), + o(e)); + }, + }; + }, + 32278: e => { + function t() { + var e = {}; + (e._next = e._prev = e), (this._sentinel = e); + } + function n(e) { + (e._prev._next = e._next), (e._next._prev = e._prev), delete e._next, delete e._prev; + } + function r(e, t) { + if ('_next' !== e && '_prev' !== e) return t; + } + (e.exports = t), + (t.prototype.dequeue = function () { + var e = this._sentinel, + t = e._prev; + if (t !== e) return n(t), t; + }), + (t.prototype.enqueue = function (e) { + var t = this._sentinel; + e._prev && e._next && n(e), (e._next = t._next), (t._next._prev = e), (t._next = e), (e._prev = t); + }), + (t.prototype.toString = function () { + for (var e = [], t = this._sentinel, n = t._prev; n !== t; ) e.push(JSON.stringify(n, r)), (n = n._prev); + return '[' + e.join(', ') + ']'; + }); + }, + 55856: (e, t, n) => { + var r = n(32692), + o = n(30345), + i = n(21943).Graph; + e.exports = { + debugOrdering: function (e) { + var t = o.buildLayerMatrix(e), + n = new i({ compound: !0, multigraph: !0 }).setGraph({}); + return ( + r.forEach(e.nodes(), function (t) { + n.setNode(t, { label: t }), n.setParent(t, 'layer' + e.node(t).rank); + }), + r.forEach(e.edges(), function (e) { + n.setEdge(e.v, e.w, {}, e.name); + }), + r.forEach(t, function (e, t) { + var o = 'layer' + t; + n.setNode(o, { rank: 'same' }), + r.reduce(e, function (e, t) { + return n.setEdge(e, t, { style: 'invis' }), t; + }); + }), + n + ); + }, + }; + }, + 21943: (e, t, n) => { + var r; + try { + r = n(66960); + } catch (o) {} + r || (r = window.graphlib), (e.exports = r); + }, + 50824: (e, t, n) => { + var r = n(32692), + o = n(21943).Graph, + i = n(32278); + e.exports = function (e, t) { + if (e.nodeCount() <= 1) return []; + var n = (function (e, t) { + var n = new o(), + a = 0, + s = 0; + r.forEach(e.nodes(), function (e) { + n.setNode(e, { v: e, in: 0, out: 0 }); + }), + r.forEach(e.edges(), function (e) { + var r = n.edge(e.v, e.w) || 0, + o = t(e), + i = r + o; + n.setEdge(e.v, e.w, i), + (s = Math.max(s, (n.node(e.v).out += o))), + (a = Math.max(a, (n.node(e.w).in += o))); + }); + var c = r.range(s + a + 3).map(function () { + return new i(); + }), + u = a + 1; + return ( + r.forEach(n.nodes(), function (e) { + l(c, u, n.node(e)); + }), + { graph: n, buckets: c, zeroIdx: u } + ); + })(e, t || a), + c = (function (e, t, n) { + var r, + o = [], + i = t[t.length - 1], + a = t[0]; + for (; e.nodeCount(); ) { + for (; (r = a.dequeue()); ) s(e, t, n, r); + for (; (r = i.dequeue()); ) s(e, t, n, r); + if (e.nodeCount()) + for (var l = t.length - 2; l > 0; --l) + if ((r = t[l].dequeue())) { + o = o.concat(s(e, t, n, r, !0)); + break; + } + } + return o; + })(n.graph, n.buckets, n.zeroIdx); + return r.flatten( + r.map(c, function (t) { + return e.outEdges(t.v, t.w); + }), + !0, + ); + }; + var a = r.constant(1); + function s(e, t, n, o, i) { + var a = i ? [] : void 0; + return ( + r.forEach(e.inEdges(o.v), function (r) { + var o = e.edge(r), + s = e.node(r.v); + i && a.push({ v: r.v, w: r.w }), (s.out -= o), l(t, n, s); + }), + r.forEach(e.outEdges(o.v), function (r) { + var o = e.edge(r), + i = r.w, + a = e.node(i); + (a.in -= o), l(t, n, a); + }), + e.removeNode(o.v), + a + ); + } + function l(e, t, n) { + n.out ? (n.in ? e[n.out - n.in + t].enqueue(n) : e[e.length - 1].enqueue(n)) : e[0].enqueue(n); + } + }, + 75499: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(55205), + i = n(44125), + a = n(28264), + s = n(30345).normalizeRanks, + l = n(32555), + c = n(30345).removeEmptyRanks, + u = n(60838), + d = n(11555), + f = n(84688), + h = n(56571), + p = n(89533), + v = n(30345), + g = n(21943).Graph; + e.exports = function (e, t) { + var n = t && t.debugTiming ? v.time : v.notime; + n('layout', function () { + var t = n(' buildLayoutGraph', function () { + return (function (e) { + var t = new g({ multigraph: !0, compound: !0 }), + n = P(e.graph()); + return ( + t.setGraph(r.merge({}, y, S(n, m), r.pick(n, b))), + r.forEach(e.nodes(), function (n) { + var o = P(e.node(n)); + t.setNode(n, r.defaults(S(o, x), w)), t.setParent(n, e.parent(n)); + }), + r.forEach(e.edges(), function (n) { + var o = P(e.edge(n)); + t.setEdge(n, r.merge({}, k, S(o, E), r.pick(o, _))); + }), + t + ); + })(e); + }); + n(' runLayout', function () { + !(function (e, t) { + t(' makeSpaceForEdgeLabels', function () { + !(function (e) { + var t = e.graph(); + (t.ranksep /= 2), + r.forEach(e.edges(), function (n) { + var r = e.edge(n); + (r.minlen *= 2), + 'c' !== r.labelpos.toLowerCase() && + ('TB' === t.rankdir || 'BT' === t.rankdir + ? (r.width += r.labeloffset) + : (r.height += r.labeloffset)); + }); + })(e); + }), + t(' removeSelfEdges', function () { + !(function (e) { + r.forEach(e.edges(), function (t) { + if (t.v === t.w) { + var n = e.node(t.v); + n.selfEdges || (n.selfEdges = []), + n.selfEdges.push({ e: t, label: e.edge(t) }), + e.removeEdge(t); + } + }); + })(e); + }), + t(' acyclic', function () { + o.run(e); + }), + t(' nestingGraph.run', function () { + u.run(e); + }), + t(' rank', function () { + a(v.asNonCompoundGraph(e)); + }), + t(' injectEdgeLabelProxies', function () { + !(function (e) { + r.forEach(e.edges(), function (t) { + var n = e.edge(t); + if (n.width && n.height) { + var r = e.node(t.v), + o = { rank: (e.node(t.w).rank - r.rank) / 2 + r.rank, e: t }; + v.addDummyNode(e, 'edge-proxy', o, '_ep'); + } + }); + })(e); + }), + t(' removeEmptyRanks', function () { + c(e); + }), + t(' nestingGraph.cleanup', function () { + u.cleanup(e); + }), + t(' normalizeRanks', function () { + s(e); + }), + t(' assignRankMinMax', function () { + !(function (e) { + var t = 0; + r.forEach(e.nodes(), function (n) { + var o = e.node(n); + o.borderTop && + ((o.minRank = e.node(o.borderTop).rank), + (o.maxRank = e.node(o.borderBottom).rank), + (t = r.max(t, o.maxRank))); + }), + (e.graph().maxRank = t); + })(e); + }), + t(' removeEdgeLabelProxies', function () { + !(function (e) { + r.forEach(e.nodes(), function (t) { + var n = e.node(t); + 'edge-proxy' === n.dummy && ((e.edge(n.e).labelRank = n.rank), e.removeNode(t)); + }); + })(e); + }), + t(' normalize.run', function () { + i.run(e); + }), + t(' parentDummyChains', function () { + l(e); + }), + t(' addBorderSegments', function () { + d(e); + }), + t(' order', function () { + h(e); + }), + t(' insertSelfEdges', function () { + !(function (e) { + var t = v.buildLayerMatrix(e); + r.forEach(t, function (t) { + var n = 0; + r.forEach(t, function (t, o) { + var i = e.node(t); + (i.order = o + n), + r.forEach(i.selfEdges, function (t) { + v.addDummyNode( + e, + 'selfedge', + { + width: t.label.width, + height: t.label.height, + rank: i.rank, + order: o + ++n, + e: t.e, + label: t.label, + }, + '_se', + ); + }), + delete i.selfEdges; + }); + }); + })(e); + }), + t(' adjustCoordinateSystem', function () { + f.adjust(e); + }), + t(' position', function () { + p(e); + }), + t(' positionSelfEdges', function () { + !(function (e) { + r.forEach(e.nodes(), function (t) { + var n = e.node(t); + if ('selfedge' === n.dummy) { + var r = e.node(n.e.v), + o = r.x + r.width / 2, + i = r.y, + a = n.x - o, + s = r.height / 2; + e.setEdge(n.e, n.label), + e.removeNode(t), + (n.label.points = [ + { x: o + (2 * a) / 3, y: i - s }, + { x: o + (5 * a) / 6, y: i - s }, + { x: o + a, y: i }, + { x: o + (5 * a) / 6, y: i + s }, + { x: o + (2 * a) / 3, y: i + s }, + ]), + (n.label.x = n.x), + (n.label.y = n.y); + } + }); + })(e); + }), + t(' removeBorderNodes', function () { + !(function (e) { + r.forEach(e.nodes(), function (t) { + if (e.children(t).length) { + var n = e.node(t), + o = e.node(n.borderTop), + i = e.node(n.borderBottom), + a = e.node(r.last(n.borderLeft)), + s = e.node(r.last(n.borderRight)); + (n.width = Math.abs(s.x - a.x)), + (n.height = Math.abs(i.y - o.y)), + (n.x = a.x + n.width / 2), + (n.y = o.y + n.height / 2); + } + }), + r.forEach(e.nodes(), function (t) { + 'border' === e.node(t).dummy && e.removeNode(t); + }); + })(e); + }), + t(' normalize.undo', function () { + i.undo(e); + }), + t(' fixupEdgeLabelCoords', function () { + !(function (e) { + r.forEach(e.edges(), function (t) { + var n = e.edge(t); + if (r.has(n, 'x')) + switch ( + (('l' !== n.labelpos && 'r' !== n.labelpos) || (n.width -= n.labeloffset), n.labelpos) + ) { + case 'l': + n.x -= n.width / 2 + n.labeloffset; + break; + case 'r': + n.x += n.width / 2 + n.labeloffset; + } + }); + })(e); + }), + t(' undoCoordinateSystem', function () { + f.undo(e); + }), + t(' translateGraph', function () { + !(function (e) { + var t = Number.POSITIVE_INFINITY, + n = 0, + o = Number.POSITIVE_INFINITY, + i = 0, + a = e.graph(), + s = a.marginx || 0, + l = a.marginy || 0; + function c(e) { + var r = e.x, + a = e.y, + s = e.width, + l = e.height; + (t = Math.min(t, r - s / 2)), + (n = Math.max(n, r + s / 2)), + (o = Math.min(o, a - l / 2)), + (i = Math.max(i, a + l / 2)); + } + r.forEach(e.nodes(), function (t) { + c(e.node(t)); + }), + r.forEach(e.edges(), function (t) { + var n = e.edge(t); + r.has(n, 'x') && c(n); + }), + (t -= s), + (o -= l), + r.forEach(e.nodes(), function (n) { + var r = e.node(n); + (r.x -= t), (r.y -= o); + }), + r.forEach(e.edges(), function (n) { + var i = e.edge(n); + r.forEach(i.points, function (e) { + (e.x -= t), (e.y -= o); + }), + r.has(i, 'x') && (i.x -= t), + r.has(i, 'y') && (i.y -= o); + }), + (a.width = n - t + s), + (a.height = i - o + l); + })(e); + }), + t(' assignNodeIntersects', function () { + !(function (e) { + r.forEach(e.edges(), function (t) { + var n, + r, + o = e.edge(t), + i = e.node(t.v), + a = e.node(t.w); + o.points + ? ((n = o.points[0]), (r = o.points[o.points.length - 1])) + : ((o.points = []), (n = a), (r = i)), + o.points.unshift(v.intersectRect(i, n)), + o.points.push(v.intersectRect(a, r)); + }); + })(e); + }), + t(' reversePoints', function () { + !(function (e) { + r.forEach(e.edges(), function (t) { + var n = e.edge(t); + n.reversed && n.points.reverse(); + }); + })(e); + }), + t(' acyclic.undo', function () { + o.undo(e); + }); + })(t, n); + }), + n(' updateInputGraph', function () { + !(function (e, t) { + r.forEach(e.nodes(), function (n) { + var r = e.node(n), + o = t.node(n); + r && ((r.x = o.x), (r.y = o.y), t.children(n).length && ((r.width = o.width), (r.height = o.height))); + }), + r.forEach(e.edges(), function (n) { + var o = e.edge(n), + i = t.edge(n); + (o.points = i.points), r.has(i, 'x') && ((o.x = i.x), (o.y = i.y)); + }), + (e.graph().width = t.graph().width), + (e.graph().height = t.graph().height); + })(e, t); + }); + }); + }; + var m = ['nodesep', 'edgesep', 'ranksep', 'marginx', 'marginy'], + y = { ranksep: 50, edgesep: 20, nodesep: 50, rankdir: 'tb' }, + b = ['acyclicer', 'ranker', 'rankdir', 'align'], + x = ['width', 'height'], + w = { width: 0, height: 0 }, + E = ['minlen', 'weight', 'width', 'height', 'labeloffset'], + k = { minlen: 1, weight: 1, width: 0, height: 0, labeloffset: 10, labelpos: 'r' }, + _ = ['labelpos']; + function S(e, t) { + return r.mapValues(r.pick(e, t), Number); + } + function P(e) { + var t = {}; + return ( + r.forEach(e, function (e, n) { + t[n.toLowerCase()] = e; + }), + t + ); + } + }, + 32692: (e, t, n) => { + var r; + try { + r = { + cloneDeep: n(77179), + constant: n(89203), + defaults: n(73821), + each: n(20678), + filter: n(64663), + find: n(26969), + flatten: n(62923), + forEach: n(77734), + forIn: n(87514), + has: n(45346), + isUndefined: n(86474), + last: n(77875), + map: n(69107), + mapValues: n(61230), + max: n(56492), + merge: n(88469), + min: n(65071), + minBy: n(76838), + now: n(80231), + pick: n(49335), + range: n(38569), + reduce: n(17682), + sortBy: n(71635), + uniqueId: n(61422), + values: n(31682), + zipObject: n(54142), + }; + } catch (o) {} + r || (r = window._), (e.exports = r); + }, + 60838: (e, t, n) => { + var r = n(32692), + o = n(30345); + function i(e, t, n, a, s, l, c) { + var u = e.children(c); + if (u.length) { + var d = o.addBorderNode(e, '_bt'), + f = o.addBorderNode(e, '_bb'), + h = e.node(c); + e.setParent(d, c), + (h.borderTop = d), + e.setParent(f, c), + (h.borderBottom = f), + r.forEach(u, function (r) { + i(e, t, n, a, s, l, r); + var o = e.node(r), + u = o.borderTop ? o.borderTop : r, + h = o.borderBottom ? o.borderBottom : r, + p = o.borderTop ? a : 2 * a, + v = u !== h ? 1 : s - l[c] + 1; + e.setEdge(d, u, { weight: p, minlen: v, nestingEdge: !0 }), + e.setEdge(h, f, { weight: p, minlen: v, nestingEdge: !0 }); + }), + e.parent(c) || e.setEdge(t, d, { weight: 0, minlen: s + l[c] }); + } else c !== t && e.setEdge(t, c, { weight: 0, minlen: n }); + } + e.exports = { + run: function (e) { + var t = o.addDummyNode(e, 'root', {}, '_root'), + n = (function (e) { + var t = {}; + function n(o, i) { + var a = e.children(o); + a && + a.length && + r.forEach(a, function (e) { + n(e, i + 1); + }), + (t[o] = i); + } + return ( + r.forEach(e.children(), function (e) { + n(e, 1); + }), + t + ); + })(e), + a = r.max(r.values(n)) - 1, + s = 2 * a + 1; + (e.graph().nestingRoot = t), + r.forEach(e.edges(), function (t) { + e.edge(t).minlen *= s; + }); + var l = + (function (e) { + return r.reduce( + e.edges(), + function (t, n) { + return t + e.edge(n).weight; + }, + 0, + ); + })(e) + 1; + r.forEach(e.children(), function (r) { + i(e, t, s, l, a, n, r); + }), + (e.graph().nodeRankFactor = s); + }, + cleanup: function (e) { + var t = e.graph(); + e.removeNode(t.nestingRoot), + delete t.nestingRoot, + r.forEach(e.edges(), function (t) { + e.edge(t).nestingEdge && e.removeEdge(t); + }); + }, + }; + }, + 44125: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(30345); + e.exports = { + run: function (e) { + (e.graph().dummyChains = []), + r.forEach(e.edges(), function (t) { + !(function (e, t) { + var n, + r, + i, + a = t.v, + s = e.node(a).rank, + l = t.w, + c = e.node(l).rank, + u = t.name, + d = e.edge(t), + f = d.labelRank; + if (c === s + 1) return; + for (e.removeEdge(t), i = 0, ++s; s < c; ++i, ++s) + (d.points = []), + (r = { width: 0, height: 0, edgeLabel: d, edgeObj: t, rank: s }), + (n = o.addDummyNode(e, 'edge', r, '_d')), + s === f && + ((r.width = d.width), (r.height = d.height), (r.dummy = 'edge-label'), (r.labelpos = d.labelpos)), + e.setEdge(a, n, { weight: d.weight }, u), + 0 === i && e.graph().dummyChains.push(n), + (a = n); + e.setEdge(a, l, { weight: d.weight }, u); + })(e, t); + }); + }, + undo: function (e) { + r.forEach(e.graph().dummyChains, function (t) { + var n, + r = e.node(t), + o = r.edgeLabel; + for (e.setEdge(r.edgeObj, o); r.dummy; ) + (n = e.successors(t)[0]), + e.removeNode(t), + o.points.push({ x: r.x, y: r.y }), + 'edge-label' === r.dummy && ((o.x = r.x), (o.y = r.y), (o.width = r.width), (o.height = r.height)), + (t = n), + (r = e.node(t)); + }); + }, + }; + }, + 4333: (e, t, n) => { + var r = n(32692); + e.exports = function (e, t, n) { + var o, + i = {}; + r.forEach(n, function (n) { + for (var r, a, s = e.parent(n); s; ) { + if (((r = e.parent(s)) ? ((a = i[r]), (i[r] = s)) : ((a = o), (o = s)), a && a !== s)) + return void t.setEdge(a, s); + s = r; + } + }); + }; + }, + 15374: (e, t, n) => { + var r = n(32692); + e.exports = function (e, t) { + return r.map(t, function (t) { + var n = e.inEdges(t); + if (n.length) { + var o = r.reduce( + n, + function (t, n) { + var r = e.edge(n), + o = e.node(n.v); + return { sum: t.sum + r.weight * o.order, weight: t.weight + r.weight }; + }, + { sum: 0, weight: 0 }, + ); + return { v: t, barycenter: o.sum / o.weight, weight: o.weight }; + } + return { v: t }; + }); + }; + }, + 3037: (e, t, n) => { + var r = n(32692), + o = n(21943).Graph; + e.exports = function (e, t, n) { + var i = (function (e) { + var t; + for (; e.hasNode((t = r.uniqueId('_root'))); ); + return t; + })(e), + a = new o({ compound: !0 }).setGraph({ root: i }).setDefaultNodeLabel(function (t) { + return e.node(t); + }); + return ( + r.forEach(e.nodes(), function (o) { + var s = e.node(o), + l = e.parent(o); + (s.rank === t || (s.minRank <= t && t <= s.maxRank)) && + (a.setNode(o), + a.setParent(o, l || i), + r.forEach(e[n](o), function (t) { + var n = t.v === o ? t.w : t.v, + i = a.edge(n, o), + s = r.isUndefined(i) ? 0 : i.weight; + a.setEdge(n, o, { weight: e.edge(t).weight + s }); + }), + r.has(s, 'minRank') && a.setNode(o, { borderLeft: s.borderLeft[t], borderRight: s.borderRight[t] })); + }), + a + ); + }; + }, + 29420: (e, t, n) => { + 'use strict'; + var r = n(32692); + function o(e, t, n) { + for ( + var o = r.zipObject( + n, + r.map(n, function (e, t) { + return t; + }), + ), + i = r.flatten( + r.map(t, function (t) { + return r.sortBy( + r.map(e.outEdges(t), function (t) { + return { pos: o[t.w], weight: e.edge(t).weight }; + }), + 'pos', + ); + }), + !0, + ), + a = 1; + a < n.length; + + ) + a <<= 1; + var s = 2 * a - 1; + a -= 1; + var l = r.map(new Array(s), function () { + return 0; + }), + c = 0; + return ( + r.forEach( + i.forEach(function (e) { + var t = e.pos + a; + l[t] += e.weight; + for (var n = 0; t > 0; ) t % 2 && (n += l[t + 1]), (l[(t = (t - 1) >> 1)] += e.weight); + c += e.weight * n; + }), + ), + c + ); + } + e.exports = function (e, t) { + for (var n = 0, r = 1; r < t.length; ++r) n += o(e, t[r - 1], t[r]); + return n; + }; + }, + 56571: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(61001), + i = n(29420), + a = n(37407), + s = n(3037), + l = n(4333), + c = n(21943).Graph, + u = n(30345); + function d(e, t, n) { + return r.map(t, function (t) { + return s(e, t, n); + }); + } + function f(e, t) { + var n = new c(); + r.forEach(e, function (e) { + var o = e.graph().root, + i = a(e, o, n, t); + r.forEach(i.vs, function (t, n) { + e.node(t).order = n; + }), + l(e, n, i.vs); + }); + } + function h(e, t) { + r.forEach(t, function (t) { + r.forEach(t, function (t, n) { + e.node(t).order = n; + }); + }); + } + e.exports = function (e) { + var t = u.maxRank(e), + n = d(e, r.range(1, t + 1), 'inEdges'), + a = d(e, r.range(t - 1, -1, -1), 'outEdges'), + s = o(e); + h(e, s); + for (var l, c = Number.POSITIVE_INFINITY, p = 0, v = 0; v < 4; ++p, ++v) { + f(p % 2 ? n : a, p % 4 >= 2), (s = u.buildLayerMatrix(e)); + var g = i(e, s); + g < c && ((v = 0), (l = r.cloneDeep(s)), (c = g)); + } + h(e, l); + }; + }, + 61001: (e, t, n) => { + 'use strict'; + var r = n(32692); + e.exports = function (e) { + var t = {}, + n = r.filter(e.nodes(), function (t) { + return !e.children(t).length; + }), + o = r.max( + r.map(n, function (t) { + return e.node(t).rank; + }), + ), + i = r.map(r.range(o + 1), function () { + return []; + }); + var a = r.sortBy(n, function (t) { + return e.node(t).rank; + }); + return ( + r.forEach(a, function n(o) { + if (r.has(t, o)) return; + t[o] = !0; + var a = e.node(o); + i[a.rank].push(o), r.forEach(e.successors(o), n); + }), + i + ); + }; + }, + 68522: (e, t, n) => { + 'use strict'; + var r = n(32692); + e.exports = function (e, t) { + var n = {}; + return ( + r.forEach(e, function (e, t) { + var o = (n[e.v] = { indegree: 0, in: [], out: [], vs: [e.v], i: t }); + r.isUndefined(e.barycenter) || ((o.barycenter = e.barycenter), (o.weight = e.weight)); + }), + r.forEach(t.edges(), function (e) { + var t = n[e.v], + o = n[e.w]; + r.isUndefined(t) || r.isUndefined(o) || (o.indegree++, t.out.push(n[e.w])); + }), + (function (e) { + var t = []; + function n(e) { + return function (t) { + t.merged || + ((r.isUndefined(t.barycenter) || r.isUndefined(e.barycenter) || t.barycenter >= e.barycenter) && + (function (e, t) { + var n = 0, + r = 0; + e.weight && ((n += e.barycenter * e.weight), (r += e.weight)); + t.weight && ((n += t.barycenter * t.weight), (r += t.weight)); + (e.vs = t.vs.concat(e.vs)), + (e.barycenter = n / r), + (e.weight = r), + (e.i = Math.min(t.i, e.i)), + (t.merged = !0); + })(e, t)); + }; + } + function o(t) { + return function (n) { + n.in.push(t), 0 == --n.indegree && e.push(n); + }; + } + for (; e.length; ) { + var i = e.pop(); + t.push(i), r.forEach(i.in.reverse(), n(i)), r.forEach(i.out, o(i)); + } + return r.map( + r.filter(t, function (e) { + return !e.merged; + }), + function (e) { + return r.pick(e, ['vs', 'i', 'barycenter', 'weight']); + }, + ); + })( + r.filter(n, function (e) { + return !e.indegree; + }), + ) + ); + }; + }, + 37407: (e, t, n) => { + var r = n(32692), + o = n(15374), + i = n(68522), + a = n(52711); + e.exports = function e(t, n, s, l) { + var c = t.children(n), + u = t.node(n), + d = u ? u.borderLeft : void 0, + f = u ? u.borderRight : void 0, + h = {}; + d && + (c = r.filter(c, function (e) { + return e !== d && e !== f; + })); + var p = o(t, c); + r.forEach(p, function (n) { + if (t.children(n.v).length) { + var o = e(t, n.v, s, l); + (h[n.v] = o), + r.has(o, 'barycenter') && + ((i = n), + (a = o), + r.isUndefined(i.barycenter) + ? ((i.barycenter = a.barycenter), (i.weight = a.weight)) + : ((i.barycenter = (i.barycenter * i.weight + a.barycenter * a.weight) / (i.weight + a.weight)), + (i.weight += a.weight))); + } + var i, a; + }); + var v = i(p, s); + !(function (e, t) { + r.forEach(e, function (e) { + e.vs = r.flatten( + e.vs.map(function (e) { + return t[e] ? t[e].vs : e; + }), + !0, + ); + }); + })(v, h); + var g = a(v, l); + if (d && ((g.vs = r.flatten([d, g.vs, f], !0)), t.predecessors(d).length)) { + var m = t.node(t.predecessors(d)[0]), + y = t.node(t.predecessors(f)[0]); + r.has(g, 'barycenter') || ((g.barycenter = 0), (g.weight = 0)), + (g.barycenter = (g.barycenter * g.weight + m.order + y.order) / (g.weight + 2)), + (g.weight += 2); + } + return g; + }; + }, + 52711: (e, t, n) => { + var r = n(32692), + o = n(30345); + function i(e, t, n) { + for (var o; t.length && (o = r.last(t)).i <= n; ) t.pop(), e.push(o.vs), n++; + return n; + } + e.exports = function (e, t) { + var n = o.partition(e, function (e) { + return r.has(e, 'barycenter'); + }), + a = n.lhs, + s = r.sortBy(n.rhs, function (e) { + return -e.i; + }), + l = [], + c = 0, + u = 0, + d = 0; + a.sort( + ((f = !!t), + function (e, t) { + return e.barycenter < t.barycenter ? -1 : e.barycenter > t.barycenter ? 1 : f ? t.i - e.i : e.i - t.i; + }), + ), + (d = i(l, s, d)), + r.forEach(a, function (e) { + (d += e.vs.length), l.push(e.vs), (c += e.barycenter * e.weight), (u += e.weight), (d = i(l, s, d)); + }); + var f; + var h = { vs: r.flatten(l, !0) }; + u && ((h.barycenter = c / u), (h.weight = u)); + return h; + }; + }, + 32555: (e, t, n) => { + var r = n(32692); + e.exports = function (e) { + var t = (function (e) { + var t = {}, + n = 0; + function o(i) { + var a = n; + r.forEach(e.children(i), o), (t[i] = { low: a, lim: n++ }); + } + return r.forEach(e.children(), o), t; + })(e); + r.forEach(e.graph().dummyChains, function (n) { + for ( + var r = e.node(n), + o = r.edgeObj, + i = (function (e, t, n, r) { + var o, + i, + a = [], + s = [], + l = Math.min(t[n].low, t[r].low), + c = Math.max(t[n].lim, t[r].lim); + o = n; + do { + (o = e.parent(o)), a.push(o); + } while (o && (t[o].low > l || c > t[o].lim)); + (i = o), (o = r); + for (; (o = e.parent(o)) !== i; ) s.push(o); + return { path: a.concat(s.reverse()), lca: i }; + })(e, t, o.v, o.w), + a = i.path, + s = i.lca, + l = 0, + c = a[l], + u = !0; + n !== o.w; + + ) { + if (((r = e.node(n)), u)) { + for (; (c = a[l]) !== s && e.node(c).maxRank < r.rank; ) l++; + c === s && (u = !1); + } + if (!u) { + for (; l < a.length - 1 && e.node((c = a[l + 1])).minRank <= r.rank; ) l++; + c = a[l]; + } + e.setParent(n, c), (n = e.successors(n)[0]); + } + }); + }; + }, + 17828: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(21943).Graph, + i = n(30345); + function a(e, t) { + var n = {}; + return ( + r.reduce(t, function (t, o) { + var i = 0, + a = 0, + s = t.length, + c = r.last(o); + return ( + r.forEach(o, function (t, u) { + var d = (function (e, t) { + if (e.node(t).dummy) + return r.find(e.predecessors(t), function (t) { + return e.node(t).dummy; + }); + })(e, t), + f = d ? e.node(d).order : s; + (d || t === c) && + (r.forEach(o.slice(a, u + 1), function (t) { + r.forEach(e.predecessors(t), function (r) { + var o = e.node(r), + a = o.order; + !(a < i || f < a) || (o.dummy && e.node(t).dummy) || l(n, r, t); + }); + }), + (a = u + 1), + (i = f)); + }), + o + ); + }), + n + ); + } + function s(e, t) { + var n = {}; + function o(t, o, i, a, s) { + var c; + r.forEach(r.range(o, i), function (o) { + (c = t[o]), + e.node(c).dummy && + r.forEach(e.predecessors(c), function (t) { + var r = e.node(t); + r.dummy && (r.order < a || r.order > s) && l(n, t, c); + }); + }); + } + return ( + r.reduce(t, function (t, n) { + var i, + a = -1, + s = 0; + return ( + r.forEach(n, function (r, l) { + if ('border' === e.node(r).dummy) { + var c = e.predecessors(r); + c.length && ((i = e.node(c[0]).order), o(n, s, l, a, i), (s = l), (a = i)); + } + o(n, s, n.length, i, t.length); + }), + n + ); + }), + n + ); + } + function l(e, t, n) { + if (t > n) { + var r = t; + (t = n), (n = r); + } + var o = e[t]; + o || (e[t] = o = {}), (o[n] = !0); + } + function c(e, t, n) { + if (t > n) { + var o = t; + (t = n), (n = o); + } + return r.has(e[t], n); + } + function u(e, t, n, o) { + var i = {}, + a = {}, + s = {}; + return ( + r.forEach(t, function (e) { + r.forEach(e, function (e, t) { + (i[e] = e), (a[e] = e), (s[e] = t); + }); + }), + r.forEach(t, function (e) { + var t = -1; + r.forEach(e, function (e) { + var l = o(e); + if (l.length) { + l = r.sortBy(l, function (e) { + return s[e]; + }); + for (var u = (l.length - 1) / 2, d = Math.floor(u), f = Math.ceil(u); d <= f; ++d) { + var h = l[d]; + a[e] === e && t < s[h] && !c(n, e, h) && ((a[h] = e), (a[e] = i[e] = i[h]), (t = s[h])); + } + } + }); + }), + { root: i, align: a } + ); + } + function d(e, t, n, i, a) { + var s = {}, + l = (function (e, t, n, i) { + var a = new o(), + s = e.graph(), + l = (function (e, t, n) { + return function (o, i, a) { + var s, + l = o.node(i), + c = o.node(a), + u = 0; + if (((u += l.width / 2), r.has(l, 'labelpos'))) + switch (l.labelpos.toLowerCase()) { + case 'l': + s = -l.width / 2; + break; + case 'r': + s = l.width / 2; + } + if ( + (s && (u += n ? s : -s), + (s = 0), + (u += (l.dummy ? t : e) / 2), + (u += (c.dummy ? t : e) / 2), + (u += c.width / 2), + r.has(c, 'labelpos')) + ) + switch (c.labelpos.toLowerCase()) { + case 'l': + s = c.width / 2; + break; + case 'r': + s = -c.width / 2; + } + return s && (u += n ? s : -s), (s = 0), u; + }; + })(s.nodesep, s.edgesep, i); + return ( + r.forEach(t, function (t) { + var o; + r.forEach(t, function (t) { + var r = n[t]; + if ((a.setNode(r), o)) { + var i = n[o], + s = a.edge(i, r); + a.setEdge(i, r, Math.max(l(e, t, o), s || 0)); + } + o = t; + }); + }), + a + ); + })(e, t, n, a), + c = a ? 'borderLeft' : 'borderRight'; + function u(e, t) { + for (var n = l.nodes(), r = n.pop(), o = {}; r; ) + o[r] ? e(r) : ((o[r] = !0), n.push(r), (n = n.concat(t(r)))), (r = n.pop()); + } + return ( + u(function (e) { + s[e] = l.inEdges(e).reduce(function (e, t) { + return Math.max(e, s[t.v] + l.edge(t)); + }, 0); + }, l.predecessors.bind(l)), + u(function (t) { + var n = l.outEdges(t).reduce(function (e, t) { + return Math.min(e, s[t.w] - l.edge(t)); + }, Number.POSITIVE_INFINITY), + r = e.node(t); + n !== Number.POSITIVE_INFINITY && r.borderType !== c && (s[t] = Math.max(s[t], n)); + }, l.successors.bind(l)), + r.forEach(i, function (e) { + s[e] = s[n[e]]; + }), + s + ); + } + function f(e, t) { + return r.minBy(r.values(t), function (t) { + var n = Number.NEGATIVE_INFINITY, + o = Number.POSITIVE_INFINITY; + return ( + r.forIn(t, function (t, r) { + var i = + (function (e, t) { + return e.node(t).width; + })(e, r) / 2; + (n = Math.max(t + i, n)), (o = Math.min(t - i, o)); + }), + n - o + ); + }); + } + function h(e, t) { + var n = r.values(t), + o = r.min(n), + i = r.max(n); + r.forEach(['u', 'd'], function (n) { + r.forEach(['l', 'r'], function (a) { + var s, + l = n + a, + c = e[l]; + if (c !== t) { + var u = r.values(c); + (s = 'l' === a ? o - r.min(u) : i - r.max(u)) && + (e[l] = r.mapValues(c, function (e) { + return e + s; + })); + } + }); + }); + } + function p(e, t) { + return r.mapValues(e.ul, function (n, o) { + if (t) return e[t.toLowerCase()][o]; + var i = r.sortBy(r.map(e, o)); + return (i[1] + i[2]) / 2; + }); + } + e.exports = { + positionX: function (e) { + var t, + n = i.buildLayerMatrix(e), + o = r.merge(a(e, n), s(e, n)), + l = {}; + r.forEach(['u', 'd'], function (i) { + (t = 'u' === i ? n : r.values(n).reverse()), + r.forEach(['l', 'r'], function (n) { + 'r' === n && + (t = r.map(t, function (e) { + return r.values(e).reverse(); + })); + var a = ('u' === i ? e.predecessors : e.successors).bind(e), + s = u(e, t, o, a), + c = d(e, t, s.root, s.align, 'r' === n); + 'r' === n && + (c = r.mapValues(c, function (e) { + return -e; + })), + (l[i + n] = c); + }); + }); + var c = f(e, l); + return h(l, c), p(l, e.graph().align); + }, + findType1Conflicts: a, + findType2Conflicts: s, + addConflict: l, + hasConflict: c, + verticalAlignment: u, + horizontalCompaction: d, + alignCoordinates: h, + findSmallestWidthAlignment: f, + balance: p, + }; + }, + 89533: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(30345), + i = n(17828).positionX; + e.exports = function (e) { + (function (e) { + var t = o.buildLayerMatrix(e), + n = e.graph().ranksep, + i = 0; + r.forEach(t, function (t) { + var o = r.max( + r.map(t, function (t) { + return e.node(t).height; + }), + ); + r.forEach(t, function (t) { + e.node(t).y = i + o / 2; + }), + (i += o + n); + }); + })((e = o.asNonCompoundGraph(e))), + r.forEach(i(e), function (t, n) { + e.node(n).x = t; + }); + }; + }, + 86771: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(21943).Graph, + i = n(23834).slack; + function a(e, t) { + return ( + r.forEach(e.nodes(), function n(o) { + r.forEach(t.nodeEdges(o), function (r) { + var a = r.v, + s = o === a ? r.w : a; + e.hasNode(s) || i(t, r) || (e.setNode(s, {}), e.setEdge(o, s, {}), n(s)); + }); + }), + e.nodeCount() + ); + } + function s(e, t) { + return r.minBy(t.edges(), function (n) { + if (e.hasNode(n.v) !== e.hasNode(n.w)) return i(t, n); + }); + } + function l(e, t, n) { + r.forEach(e.nodes(), function (e) { + t.node(e).rank += n; + }); + } + e.exports = function (e) { + var t, + n, + r = new o({ directed: !1 }), + c = e.nodes()[0], + u = e.nodeCount(); + r.setNode(c, {}); + for (; a(r, e) < u; ) (t = s(r, e)), (n = r.hasNode(t.v) ? i(e, t) : -i(e, t)), l(r, e, n); + return r; + }; + }, + 28264: (e, t, n) => { + 'use strict'; + var r = n(23834).longestPath, + o = n(86771), + i = n(53284); + e.exports = function (e) { + switch (e.graph().ranker) { + case 'network-simplex': + default: + s(e); + break; + case 'tight-tree': + !(function (e) { + r(e), o(e); + })(e); + break; + case 'longest-path': + a(e); + } + }; + var a = r; + function s(e) { + i(e); + } + }, + 53284: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(86771), + i = n(23834).slack, + a = n(23834).longestPath, + s = n(21943).alg.preorder, + l = n(21943).alg.postorder, + c = n(30345).simplify; + function u(e) { + (e = c(e)), a(e); + var t, + n = o(e); + for (h(n), d(n, e); (t = v(n)); ) m(n, e, t, g(n, e, t)); + } + function d(e, t) { + var n = l(e, e.nodes()); + (n = n.slice(0, n.length - 1)), + r.forEach(n, function (n) { + !(function (e, t, n) { + var r = e.node(n), + o = r.parent; + e.edge(n, o).cutvalue = f(e, t, n); + })(e, t, n); + }); + } + function f(e, t, n) { + var o = e.node(n).parent, + i = !0, + a = t.edge(n, o), + s = 0; + return ( + a || ((i = !1), (a = t.edge(o, n))), + (s = a.weight), + r.forEach(t.nodeEdges(n), function (r) { + var a, + l, + c = r.v === n, + u = c ? r.w : r.v; + if (u !== o) { + var d = c === i, + f = t.edge(r).weight; + if (((s += d ? f : -f), (a = n), (l = u), e.hasEdge(a, l))) { + var h = e.edge(n, u).cutvalue; + s += d ? -h : h; + } + } + }), + s + ); + } + function h(e, t) { + arguments.length < 2 && (t = e.nodes()[0]), p(e, {}, 1, t); + } + function p(e, t, n, o, i) { + var a = n, + s = e.node(o); + return ( + (t[o] = !0), + r.forEach(e.neighbors(o), function (i) { + r.has(t, i) || (n = p(e, t, n, i, o)); + }), + (s.low = a), + (s.lim = n++), + i ? (s.parent = i) : delete s.parent, + n + ); + } + function v(e) { + return r.find(e.edges(), function (t) { + return e.edge(t).cutvalue < 0; + }); + } + function g(e, t, n) { + var o = n.v, + a = n.w; + t.hasEdge(o, a) || ((o = n.w), (a = n.v)); + var s = e.node(o), + l = e.node(a), + c = s, + u = !1; + s.lim > l.lim && ((c = l), (u = !0)); + var d = r.filter(t.edges(), function (t) { + return u === y(e, e.node(t.v), c) && u !== y(e, e.node(t.w), c); + }); + return r.minBy(d, function (e) { + return i(t, e); + }); + } + function m(e, t, n, o) { + var i = n.v, + a = n.w; + e.removeEdge(i, a), + e.setEdge(o.v, o.w, {}), + h(e), + d(e, t), + (function (e, t) { + var n = r.find(e.nodes(), function (e) { + return !t.node(e).parent; + }), + o = s(e, n); + (o = o.slice(1)), + r.forEach(o, function (n) { + var r = e.node(n).parent, + o = t.edge(n, r), + i = !1; + o || ((o = t.edge(r, n)), (i = !0)), (t.node(n).rank = t.node(r).rank + (i ? o.minlen : -o.minlen)); + }); + })(e, t); + } + function y(e, t, n) { + return n.low <= t.lim && t.lim <= n.lim; + } + (e.exports = u), + (u.initLowLimValues = h), + (u.initCutValues = d), + (u.calcCutValue = f), + (u.leaveEdge = v), + (u.enterEdge = g), + (u.exchangeEdges = m); + }, + 23834: (e, t, n) => { + 'use strict'; + var r = n(32692); + e.exports = { + longestPath: function (e) { + var t = {}; + r.forEach(e.sources(), function n(o) { + var i = e.node(o); + if (r.has(t, o)) return i.rank; + t[o] = !0; + var a = r.min( + r.map(e.outEdges(o), function (t) { + return n(t.w) - e.edge(t).minlen; + }), + ); + return (a !== Number.POSITIVE_INFINITY && null != a) || (a = 0), (i.rank = a); + }); + }, + slack: function (e, t) { + return e.node(t.w).rank - e.node(t.v).rank - e.edge(t).minlen; + }, + }; + }, + 30345: (e, t, n) => { + 'use strict'; + var r = n(32692), + o = n(21943).Graph; + function i(e, t, n, o) { + var i; + do { + i = r.uniqueId(o); + } while (e.hasNode(i)); + return (n.dummy = t), e.setNode(i, n), i; + } + function a(e) { + return r.max( + r.map(e.nodes(), function (t) { + var n = e.node(t).rank; + if (!r.isUndefined(n)) return n; + }), + ); + } + e.exports = { + addDummyNode: i, + simplify: function (e) { + var t = new o().setGraph(e.graph()); + return ( + r.forEach(e.nodes(), function (n) { + t.setNode(n, e.node(n)); + }), + r.forEach(e.edges(), function (n) { + var r = t.edge(n.v, n.w) || { weight: 0, minlen: 1 }, + o = e.edge(n); + t.setEdge(n.v, n.w, { weight: r.weight + o.weight, minlen: Math.max(r.minlen, o.minlen) }); + }), + t + ); + }, + asNonCompoundGraph: function (e) { + var t = new o({ multigraph: e.isMultigraph() }).setGraph(e.graph()); + return ( + r.forEach(e.nodes(), function (n) { + e.children(n).length || t.setNode(n, e.node(n)); + }), + r.forEach(e.edges(), function (n) { + t.setEdge(n, e.edge(n)); + }), + t + ); + }, + successorWeights: function (e) { + var t = r.map(e.nodes(), function (t) { + var n = {}; + return ( + r.forEach(e.outEdges(t), function (t) { + n[t.w] = (n[t.w] || 0) + e.edge(t).weight; + }), + n + ); + }); + return r.zipObject(e.nodes(), t); + }, + predecessorWeights: function (e) { + var t = r.map(e.nodes(), function (t) { + var n = {}; + return ( + r.forEach(e.inEdges(t), function (t) { + n[t.v] = (n[t.v] || 0) + e.edge(t).weight; + }), + n + ); + }); + return r.zipObject(e.nodes(), t); + }, + intersectRect: function (e, t) { + var n, + r, + o = e.x, + i = e.y, + a = t.x - o, + s = t.y - i, + l = e.width / 2, + c = e.height / 2; + if (!a && !s) throw new Error('Not possible to find intersection inside of the rectangle'); + Math.abs(s) * l > Math.abs(a) * c + ? (s < 0 && (c = -c), (n = (c * a) / s), (r = c)) + : (a < 0 && (l = -l), (n = l), (r = (l * s) / a)); + return { x: o + n, y: i + r }; + }, + buildLayerMatrix: function (e) { + var t = r.map(r.range(a(e) + 1), function () { + return []; + }); + return ( + r.forEach(e.nodes(), function (n) { + var o = e.node(n), + i = o.rank; + r.isUndefined(i) || (t[i][o.order] = n); + }), + t + ); + }, + normalizeRanks: function (e) { + var t = r.min( + r.map(e.nodes(), function (t) { + return e.node(t).rank; + }), + ); + r.forEach(e.nodes(), function (n) { + var o = e.node(n); + r.has(o, 'rank') && (o.rank -= t); + }); + }, + removeEmptyRanks: function (e) { + var t = r.min( + r.map(e.nodes(), function (t) { + return e.node(t).rank; + }), + ), + n = []; + r.forEach(e.nodes(), function (r) { + var o = e.node(r).rank - t; + n[o] || (n[o] = []), n[o].push(r); + }); + var o = 0, + i = e.graph().nodeRankFactor; + r.forEach(n, function (t, n) { + r.isUndefined(t) && n % i != 0 + ? --o + : o && + r.forEach(t, function (t) { + e.node(t).rank += o; + }); + }); + }, + addBorderNode: function (e, t, n, r) { + var o = { width: 0, height: 0 }; + arguments.length >= 4 && ((o.rank = n), (o.order = r)); + return i(e, 'border', o, t); + }, + maxRank: a, + partition: function (e, t) { + var n = { lhs: [], rhs: [] }; + return ( + r.forEach(e, function (e) { + t(e) ? n.lhs.push(e) : n.rhs.push(e); + }), + n + ); + }, + time: function (e, t) { + var n = r.now(); + try { + return t(); + } finally { + console.log(e + ' time: ' + (r.now() - n) + 'ms'); + } + }, + notime: function (e, t) { + return t(); + }, + }; + }, + 93404: e => { + e.exports = '0.8.5'; + }, + 4329: e => { + (e.exports = a), (a.default = a), (a.stable = u), (a.stableStringify = u); + var t = '[...]', + n = '[Circular]', + r = [], + o = []; + function i() { + return { depthLimit: Number.MAX_SAFE_INTEGER, edgesLimit: Number.MAX_SAFE_INTEGER }; + } + function a(e, t, n, a) { + var s; + void 0 === a && (a = i()), l(e, '', 0, [], void 0, 0, a); + try { + s = 0 === o.length ? JSON.stringify(e, t, n) : JSON.stringify(e, f(t), n); + } catch (u) { + return JSON.stringify('[unable to serialize, circular reference is too complex to analyze]'); + } finally { + for (; 0 !== r.length; ) { + var c = r.pop(); + 4 === c.length ? Object.defineProperty(c[0], c[1], c[3]) : (c[0][c[1]] = c[2]); + } + } + return s; + } + function s(e, t, n, i) { + var a = Object.getOwnPropertyDescriptor(i, n); + void 0 !== a.get + ? a.configurable + ? (Object.defineProperty(i, n, { value: e }), r.push([i, n, t, a])) + : o.push([t, n, e]) + : ((i[n] = e), r.push([i, n, t])); + } + function l(e, r, o, i, a, c, u) { + var d; + if (((c += 1), 'object' == typeof e && null !== e)) { + for (d = 0; d < i.length; d++) if (i[d] === e) return void s(n, e, r, a); + if (void 0 !== u.depthLimit && c > u.depthLimit) return void s(t, e, r, a); + if (void 0 !== u.edgesLimit && o + 1 > u.edgesLimit) return void s(t, e, r, a); + if ((i.push(e), Array.isArray(e))) for (d = 0; d < e.length; d++) l(e[d], d, d, i, e, c, u); + else { + var f = Object.keys(e); + for (d = 0; d < f.length; d++) { + var h = f[d]; + l(e[h], h, d, i, e, c, u); + } + } + i.pop(); + } + } + function c(e, t) { + return e < t ? -1 : e > t ? 1 : 0; + } + function u(e, t, n, a) { + void 0 === a && (a = i()); + var s, + l = d(e, '', 0, [], void 0, 0, a) || e; + try { + s = 0 === o.length ? JSON.stringify(l, t, n) : JSON.stringify(l, f(t), n); + } catch (u) { + return JSON.stringify('[unable to serialize, circular reference is too complex to analyze]'); + } finally { + for (; 0 !== r.length; ) { + var c = r.pop(); + 4 === c.length ? Object.defineProperty(c[0], c[1], c[3]) : (c[0][c[1]] = c[2]); + } + } + return s; + } + function d(e, o, i, a, l, u, f) { + var h; + if (((u += 1), 'object' == typeof e && null !== e)) { + for (h = 0; h < a.length; h++) if (a[h] === e) return void s(n, e, o, l); + try { + if ('function' == typeof e.toJSON) return; + } catch (m) { + return; + } + if (void 0 !== f.depthLimit && u > f.depthLimit) return void s(t, e, o, l); + if (void 0 !== f.edgesLimit && i + 1 > f.edgesLimit) return void s(t, e, o, l); + if ((a.push(e), Array.isArray(e))) for (h = 0; h < e.length; h++) d(e[h], h, h, a, e, u, f); + else { + var p = {}, + v = Object.keys(e).sort(c); + for (h = 0; h < v.length; h++) { + var g = v[h]; + d(e[g], g, h, a, e, u, f), (p[g] = e[g]); + } + if (void 0 === l) return p; + r.push([l, o, e]), (l[o] = p); + } + a.pop(); + } + } + function f(e) { + return ( + (e = + void 0 !== e + ? e + : function (e, t) { + return t; + }), + function (t, n) { + if (o.length > 0) + for (var r = 0; r < o.length; r++) { + var i = o[r]; + if (i[1] === t && i[0] === n) { + (n = i[2]), o.splice(r, 1); + break; + } + } + return e.call(this, t, n); + } + ); + } + }, + 66960: (e, t, n) => { + var r = n(3150); + e.exports = { Graph: r.Graph, json: n(11430), alg: n(89757), version: r.version }; + }, + 79535: (e, t, n) => { + var r = n(44434); + e.exports = function (e) { + var t, + n = {}, + o = []; + function i(o) { + r.has(n, o) || ((n[o] = !0), t.push(o), r.each(e.successors(o), i), r.each(e.predecessors(o), i)); + } + return ( + r.each(e.nodes(), function (e) { + (t = []), i(e), t.length && o.push(t); + }), + o + ); + }; + }, + 97819: (e, t, n) => { + var r = n(44434); + function o(e, t, n, i, a, s) { + r.has(i, t) || + ((i[t] = !0), + n || s.push(t), + r.each(a(t), function (t) { + o(e, t, n, i, a, s); + }), + n && s.push(t)); + } + e.exports = function (e, t, n) { + r.isArray(t) || (t = [t]); + var i = (e.isDirected() ? e.successors : e.neighbors).bind(e), + a = [], + s = {}; + return ( + r.each(t, function (t) { + if (!e.hasNode(t)) throw new Error('Graph does not have node: ' + t); + o(e, t, 'post' === n, s, i, a); + }), + a + ); + }; + }, + 61353: (e, t, n) => { + var r = n(4245), + o = n(44434); + e.exports = function (e, t, n) { + return o.transform( + e.nodes(), + function (o, i) { + o[i] = r(e, i, t, n); + }, + {}, + ); + }; + }, + 4245: (e, t, n) => { + var r = n(44434), + o = n(51011); + e.exports = function (e, t, n, r) { + return (function (e, t, n, r) { + var i, + a, + s = {}, + l = new o(), + c = function (e) { + var t = e.v !== i ? e.v : e.w, + r = s[t], + o = n(e), + c = a.distance + o; + if (o < 0) + throw new Error('dijkstra does not allow negative edge weights. Bad edge: ' + e + ' Weight: ' + o); + c < r.distance && ((r.distance = c), (r.predecessor = i), l.decrease(t, c)); + }; + e.nodes().forEach(function (e) { + var n = e === t ? 0 : Number.POSITIVE_INFINITY; + (s[e] = { distance: n }), l.add(e, n); + }); + for (; l.size() > 0 && ((i = l.removeMin()), (a = s[i]).distance !== Number.POSITIVE_INFINITY); ) + r(i).forEach(c); + return s; + })( + e, + String(t), + n || i, + r || + function (t) { + return e.outEdges(t); + }, + ); + }; + var i = r.constant(1); + }, + 30937: (e, t, n) => { + var r = n(44434), + o = n(59177); + e.exports = function (e) { + return r.filter(o(e), function (t) { + return t.length > 1 || (1 === t.length && e.hasEdge(t[0], t[0])); + }); + }; + }, + 70086: (e, t, n) => { + var r = n(44434); + e.exports = function (e, t, n) { + return (function (e, t, n) { + var r = {}, + o = e.nodes(); + return ( + o.forEach(function (e) { + (r[e] = {}), + (r[e][e] = { distance: 0 }), + o.forEach(function (t) { + e !== t && (r[e][t] = { distance: Number.POSITIVE_INFINITY }); + }), + n(e).forEach(function (n) { + var o = n.v === e ? n.w : n.v, + i = t(n); + r[e][o] = { distance: i, predecessor: e }; + }); + }), + o.forEach(function (e) { + var t = r[e]; + o.forEach(function (n) { + var i = r[n]; + o.forEach(function (n) { + var r = i[e], + o = t[n], + a = i[n], + s = r.distance + o.distance; + s < a.distance && ((a.distance = s), (a.predecessor = o.predecessor)); + }); + }); + }), + r + ); + })( + e, + t || o, + n || + function (t) { + return e.outEdges(t); + }, + ); + }; + var o = r.constant(1); + }, + 89757: (e, t, n) => { + e.exports = { + components: n(79535), + dijkstra: n(4245), + dijkstraAll: n(61353), + findCycles: n(30937), + floydWarshall: n(70086), + isAcyclic: n(47772), + postorder: n(28494), + preorder: n(50101), + prim: n(53816), + tarjan: n(59177), + topsort: n(60750), + }; + }, + 47772: (e, t, n) => { + var r = n(60750); + e.exports = function (e) { + try { + r(e); + } catch (t) { + if (t instanceof r.CycleException) return !1; + throw t; + } + return !0; + }; + }, + 28494: (e, t, n) => { + var r = n(97819); + e.exports = function (e, t) { + return r(e, t, 'post'); + }; + }, + 50101: (e, t, n) => { + var r = n(97819); + e.exports = function (e, t) { + return r(e, t, 'pre'); + }; + }, + 53816: (e, t, n) => { + var r = n(44434), + o = n(69955), + i = n(51011); + e.exports = function (e, t) { + var n, + a = new o(), + s = {}, + l = new i(); + function c(e) { + var r = e.v === n ? e.w : e.v, + o = l.priority(r); + if (void 0 !== o) { + var i = t(e); + i < o && ((s[r] = n), l.decrease(r, i)); + } + } + if (0 === e.nodeCount()) return a; + r.each(e.nodes(), function (e) { + l.add(e, Number.POSITIVE_INFINITY), a.setNode(e); + }), + l.decrease(e.nodes()[0], 0); + var u = !1; + for (; l.size() > 0; ) { + if (((n = l.removeMin()), r.has(s, n))) a.setEdge(n, s[n]); + else { + if (u) throw new Error('Input graph is not connected: ' + e); + u = !0; + } + e.nodeEdges(n).forEach(c); + } + return a; + }; + }, + 59177: (e, t, n) => { + var r = n(44434); + e.exports = function (e) { + var t = 0, + n = [], + o = {}, + i = []; + function a(s) { + var l = (o[s] = { onStack: !0, lowlink: t, index: t++ }); + if ( + (n.push(s), + e.successors(s).forEach(function (e) { + r.has(o, e) + ? o[e].onStack && (l.lowlink = Math.min(l.lowlink, o[e].index)) + : (a(e), (l.lowlink = Math.min(l.lowlink, o[e].lowlink))); + }), + l.lowlink === l.index) + ) { + var c, + u = []; + do { + (c = n.pop()), (o[c].onStack = !1), u.push(c); + } while (s !== c); + i.push(u); + } + } + return ( + e.nodes().forEach(function (e) { + r.has(o, e) || a(e); + }), + i + ); + }; + }, + 60750: (e, t, n) => { + var r = n(44434); + function o(e) { + var t = {}, + n = {}, + o = []; + if ( + (r.each(e.sinks(), function a(s) { + if (r.has(n, s)) throw new i(); + r.has(t, s) || ((n[s] = !0), (t[s] = !0), r.each(e.predecessors(s), a), delete n[s], o.push(s)); + }), + r.size(t) !== e.nodeCount()) + ) + throw new i(); + return o; + } + function i() {} + (e.exports = o), (o.CycleException = i), (i.prototype = new Error()); + }, + 51011: (e, t, n) => { + var r = n(44434); + function o() { + (this._arr = []), (this._keyIndices = {}); + } + (e.exports = o), + (o.prototype.size = function () { + return this._arr.length; + }), + (o.prototype.keys = function () { + return this._arr.map(function (e) { + return e.key; + }); + }), + (o.prototype.has = function (e) { + return r.has(this._keyIndices, e); + }), + (o.prototype.priority = function (e) { + var t = this._keyIndices[e]; + if (void 0 !== t) return this._arr[t].priority; + }), + (o.prototype.min = function () { + if (0 === this.size()) throw new Error('Queue underflow'); + return this._arr[0].key; + }), + (o.prototype.add = function (e, t) { + var n = this._keyIndices; + if (((e = String(e)), !r.has(n, e))) { + var o = this._arr, + i = o.length; + return (n[e] = i), o.push({ key: e, priority: t }), this._decrease(i), !0; + } + return !1; + }), + (o.prototype.removeMin = function () { + this._swap(0, this._arr.length - 1); + var e = this._arr.pop(); + return delete this._keyIndices[e.key], this._heapify(0), e.key; + }), + (o.prototype.decrease = function (e, t) { + var n = this._keyIndices[e]; + if (t > this._arr[n].priority) + throw new Error( + 'New priority is greater than current priority. Key: ' + + e + + ' Old: ' + + this._arr[n].priority + + ' New: ' + + t, + ); + (this._arr[n].priority = t), this._decrease(n); + }), + (o.prototype._heapify = function (e) { + var t = this._arr, + n = 2 * e, + r = n + 1, + o = e; + n < t.length && + ((o = t[n].priority < t[o].priority ? n : o), + r < t.length && (o = t[r].priority < t[o].priority ? r : o), + o !== e && (this._swap(e, o), this._heapify(o))); + }), + (o.prototype._decrease = function (e) { + for (var t, n = this._arr, r = n[e].priority; 0 !== e && !(n[(t = e >> 1)].priority < r); ) + this._swap(e, t), (e = t); + }), + (o.prototype._swap = function (e, t) { + var n = this._arr, + r = this._keyIndices, + o = n[e], + i = n[t]; + (n[e] = i), (n[t] = o), (r[i.key] = e), (r[o.key] = t); + }); + }, + 69955: (e, t, n) => { + 'use strict'; + var r = n(44434); + e.exports = s; + var o = '\0', + i = '\0', + a = '\x01'; + function s(e) { + (this._isDirected = !r.has(e, 'directed') || e.directed), + (this._isMultigraph = !!r.has(e, 'multigraph') && e.multigraph), + (this._isCompound = !!r.has(e, 'compound') && e.compound), + (this._label = void 0), + (this._defaultNodeLabelFn = r.constant(void 0)), + (this._defaultEdgeLabelFn = r.constant(void 0)), + (this._nodes = {}), + this._isCompound && ((this._parent = {}), (this._children = {}), (this._children[i] = {})), + (this._in = {}), + (this._preds = {}), + (this._out = {}), + (this._sucs = {}), + (this._edgeObjs = {}), + (this._edgeLabels = {}); + } + function l(e, t) { + e[t] ? e[t]++ : (e[t] = 1); + } + function c(e, t) { + --e[t] || delete e[t]; + } + function u(e, t, n, i) { + var s = '' + t, + l = '' + n; + if (!e && s > l) { + var c = s; + (s = l), (l = c); + } + return s + a + l + a + (r.isUndefined(i) ? o : i); + } + function d(e, t) { + return u(e, t.v, t.w, t.name); + } + (s.prototype._nodeCount = 0), + (s.prototype._edgeCount = 0), + (s.prototype.isDirected = function () { + return this._isDirected; + }), + (s.prototype.isMultigraph = function () { + return this._isMultigraph; + }), + (s.prototype.isCompound = function () { + return this._isCompound; + }), + (s.prototype.setGraph = function (e) { + return (this._label = e), this; + }), + (s.prototype.graph = function () { + return this._label; + }), + (s.prototype.setDefaultNodeLabel = function (e) { + return r.isFunction(e) || (e = r.constant(e)), (this._defaultNodeLabelFn = e), this; + }), + (s.prototype.nodeCount = function () { + return this._nodeCount; + }), + (s.prototype.nodes = function () { + return r.keys(this._nodes); + }), + (s.prototype.sources = function () { + var e = this; + return r.filter(this.nodes(), function (t) { + return r.isEmpty(e._in[t]); + }); + }), + (s.prototype.sinks = function () { + var e = this; + return r.filter(this.nodes(), function (t) { + return r.isEmpty(e._out[t]); + }); + }), + (s.prototype.setNodes = function (e, t) { + var n = arguments, + o = this; + return ( + r.each(e, function (e) { + n.length > 1 ? o.setNode(e, t) : o.setNode(e); + }), + this + ); + }), + (s.prototype.setNode = function (e, t) { + return r.has(this._nodes, e) + ? (arguments.length > 1 && (this._nodes[e] = t), this) + : ((this._nodes[e] = arguments.length > 1 ? t : this._defaultNodeLabelFn(e)), + this._isCompound && ((this._parent[e] = i), (this._children[e] = {}), (this._children[i][e] = !0)), + (this._in[e] = {}), + (this._preds[e] = {}), + (this._out[e] = {}), + (this._sucs[e] = {}), + ++this._nodeCount, + this); + }), + (s.prototype.node = function (e) { + return this._nodes[e]; + }), + (s.prototype.hasNode = function (e) { + return r.has(this._nodes, e); + }), + (s.prototype.removeNode = function (e) { + var t = this; + if (r.has(this._nodes, e)) { + var n = function (e) { + t.removeEdge(t._edgeObjs[e]); + }; + delete this._nodes[e], + this._isCompound && + (this._removeFromParentsChildList(e), + delete this._parent[e], + r.each(this.children(e), function (e) { + t.setParent(e); + }), + delete this._children[e]), + r.each(r.keys(this._in[e]), n), + delete this._in[e], + delete this._preds[e], + r.each(r.keys(this._out[e]), n), + delete this._out[e], + delete this._sucs[e], + --this._nodeCount; + } + return this; + }), + (s.prototype.setParent = function (e, t) { + if (!this._isCompound) throw new Error('Cannot set parent in a non-compound graph'); + if (r.isUndefined(t)) t = i; + else { + for (var n = (t += ''); !r.isUndefined(n); n = this.parent(n)) + if (n === e) throw new Error('Setting ' + t + ' as parent of ' + e + ' would create a cycle'); + this.setNode(t); + } + return ( + this.setNode(e), + this._removeFromParentsChildList(e), + (this._parent[e] = t), + (this._children[t][e] = !0), + this + ); + }), + (s.prototype._removeFromParentsChildList = function (e) { + delete this._children[this._parent[e]][e]; + }), + (s.prototype.parent = function (e) { + if (this._isCompound) { + var t = this._parent[e]; + if (t !== i) return t; + } + }), + (s.prototype.children = function (e) { + if ((r.isUndefined(e) && (e = i), this._isCompound)) { + var t = this._children[e]; + if (t) return r.keys(t); + } else { + if (e === i) return this.nodes(); + if (this.hasNode(e)) return []; + } + }), + (s.prototype.predecessors = function (e) { + var t = this._preds[e]; + if (t) return r.keys(t); + }), + (s.prototype.successors = function (e) { + var t = this._sucs[e]; + if (t) return r.keys(t); + }), + (s.prototype.neighbors = function (e) { + var t = this.predecessors(e); + if (t) return r.union(t, this.successors(e)); + }), + (s.prototype.isLeaf = function (e) { + return 0 === (this.isDirected() ? this.successors(e) : this.neighbors(e)).length; + }), + (s.prototype.filterNodes = function (e) { + var t = new this.constructor({ + directed: this._isDirected, + multigraph: this._isMultigraph, + compound: this._isCompound, + }); + t.setGraph(this.graph()); + var n = this; + r.each(this._nodes, function (n, r) { + e(r) && t.setNode(r, n); + }), + r.each(this._edgeObjs, function (e) { + t.hasNode(e.v) && t.hasNode(e.w) && t.setEdge(e, n.edge(e)); + }); + var o = {}; + function i(e) { + var r = n.parent(e); + return void 0 === r || t.hasNode(r) ? ((o[e] = r), r) : r in o ? o[r] : i(r); + } + return ( + this._isCompound && + r.each(t.nodes(), function (e) { + t.setParent(e, i(e)); + }), + t + ); + }), + (s.prototype.setDefaultEdgeLabel = function (e) { + return r.isFunction(e) || (e = r.constant(e)), (this._defaultEdgeLabelFn = e), this; + }), + (s.prototype.edgeCount = function () { + return this._edgeCount; + }), + (s.prototype.edges = function () { + return r.values(this._edgeObjs); + }), + (s.prototype.setPath = function (e, t) { + var n = this, + o = arguments; + return ( + r.reduce(e, function (e, r) { + return o.length > 1 ? n.setEdge(e, r, t) : n.setEdge(e, r), r; + }), + this + ); + }), + (s.prototype.setEdge = function () { + var e, + t, + n, + o, + i = !1, + a = arguments[0]; + 'object' == typeof a && null !== a && 'v' in a + ? ((e = a.v), (t = a.w), (n = a.name), 2 === arguments.length && ((o = arguments[1]), (i = !0))) + : ((e = a), (t = arguments[1]), (n = arguments[3]), arguments.length > 2 && ((o = arguments[2]), (i = !0))), + (e = '' + e), + (t = '' + t), + r.isUndefined(n) || (n = '' + n); + var s = u(this._isDirected, e, t, n); + if (r.has(this._edgeLabels, s)) return i && (this._edgeLabels[s] = o), this; + if (!r.isUndefined(n) && !this._isMultigraph) + throw new Error('Cannot set a named edge when isMultigraph = false'); + this.setNode(e), this.setNode(t), (this._edgeLabels[s] = i ? o : this._defaultEdgeLabelFn(e, t, n)); + var c = (function (e, t, n, r) { + var o = '' + t, + i = '' + n; + if (!e && o > i) { + var a = o; + (o = i), (i = a); + } + var s = { v: o, w: i }; + r && (s.name = r); + return s; + })(this._isDirected, e, t, n); + return ( + (e = c.v), + (t = c.w), + Object.freeze(c), + (this._edgeObjs[s] = c), + l(this._preds[t], e), + l(this._sucs[e], t), + (this._in[t][s] = c), + (this._out[e][s] = c), + this._edgeCount++, + this + ); + }), + (s.prototype.edge = function (e, t, n) { + var r = 1 === arguments.length ? d(this._isDirected, arguments[0]) : u(this._isDirected, e, t, n); + return this._edgeLabels[r]; + }), + (s.prototype.hasEdge = function (e, t, n) { + var o = 1 === arguments.length ? d(this._isDirected, arguments[0]) : u(this._isDirected, e, t, n); + return r.has(this._edgeLabels, o); + }), + (s.prototype.removeEdge = function (e, t, n) { + var r = 1 === arguments.length ? d(this._isDirected, arguments[0]) : u(this._isDirected, e, t, n), + o = this._edgeObjs[r]; + return ( + o && + ((e = o.v), + (t = o.w), + delete this._edgeLabels[r], + delete this._edgeObjs[r], + c(this._preds[t], e), + c(this._sucs[e], t), + delete this._in[t][r], + delete this._out[e][r], + this._edgeCount--), + this + ); + }), + (s.prototype.inEdges = function (e, t) { + var n = this._in[e]; + if (n) { + var o = r.values(n); + return t + ? r.filter(o, function (e) { + return e.v === t; + }) + : o; + } + }), + (s.prototype.outEdges = function (e, t) { + var n = this._out[e]; + if (n) { + var o = r.values(n); + return t + ? r.filter(o, function (e) { + return e.w === t; + }) + : o; + } + }), + (s.prototype.nodeEdges = function (e, t) { + var n = this.inEdges(e, t); + if (n) return n.concat(this.outEdges(e, t)); + }); + }, + 3150: (e, t, n) => { + e.exports = { Graph: n(69955), version: n(59127) }; + }, + 11430: (e, t, n) => { + var r = n(44434), + o = n(69955); + function i(e) { + return r.map(e.nodes(), function (t) { + var n = e.node(t), + o = e.parent(t), + i = { v: t }; + return r.isUndefined(n) || (i.value = n), r.isUndefined(o) || (i.parent = o), i; + }); + } + function a(e) { + return r.map(e.edges(), function (t) { + var n = e.edge(t), + o = { v: t.v, w: t.w }; + return r.isUndefined(t.name) || (o.name = t.name), r.isUndefined(n) || (o.value = n), o; + }); + } + e.exports = { + write: function (e) { + var t = { + options: { directed: e.isDirected(), multigraph: e.isMultigraph(), compound: e.isCompound() }, + nodes: i(e), + edges: a(e), + }; + r.isUndefined(e.graph()) || (t.value = r.clone(e.graph())); + return t; + }, + read: function (e) { + var t = new o(e.options).setGraph(e.value); + return ( + r.each(e.nodes, function (e) { + t.setNode(e.v, e.value), e.parent && t.setParent(e.v, e.parent); + }), + r.each(e.edges, function (e) { + t.setEdge({ v: e.v, w: e.w, name: e.name }, e.value); + }), + t + ); + }, + }; + }, + 44434: (e, t, n) => { + var r; + try { + r = { + clone: n(17953), + constant: n(89203), + each: n(20678), + filter: n(64663), + has: n(45346), + isArray: n(55589), + isEmpty: n(29787), + isFunction: n(45563), + isUndefined: n(86474), + keys: n(62096), + map: n(69107), + reduce: n(17682), + size: n(91039), + transform: n(63604), + union: n(27767), + values: n(31682), + }; + } catch (o) {} + r || (r = window._), (e.exports = r); + }, + 59127: e => { + e.exports = '2.1.8'; + }, + 97597: (e, t, n) => { + e.exports = n(79127); + }, + 79127: function (e, t) { + var n, r, o; + (function () { + var i, a, s, l, c, u, d, f, h, p, v, g, m, y, b; + (s = Math.floor), + (p = Math.min), + (a = function (e, t) { + return e < t ? -1 : e > t ? 1 : 0; + }), + (h = function (e, t, n, r, o) { + var i; + if ((null == n && (n = 0), null == o && (o = a), n < 0)) throw new Error('lo must be non-negative'); + for (null == r && (r = e.length); n < r; ) o(t, e[(i = s((n + r) / 2))]) < 0 ? (r = i) : (n = i + 1); + return [].splice.apply(e, [n, n - n].concat(t)), t; + }), + (u = function (e, t, n) { + return null == n && (n = a), e.push(t), y(e, 0, e.length - 1, n); + }), + (c = function (e, t) { + var n, r; + return null == t && (t = a), (n = e.pop()), e.length ? ((r = e[0]), (e[0] = n), b(e, 0, t)) : (r = n), r; + }), + (f = function (e, t, n) { + var r; + return null == n && (n = a), (r = e[0]), (e[0] = t), b(e, 0, n), r; + }), + (d = function (e, t, n) { + var r; + return ( + null == n && (n = a), + e.length && n(e[0], t) < 0 && ((t = (r = [e[0], t])[0]), (e[0] = r[1]), b(e, 0, n)), + t + ); + }), + (l = function (e, t) { + var n, r, o, i, l, c; + for ( + null == t && (t = a), + i = function () { + c = []; + for (var t = 0, n = s(e.length / 2); 0 <= n ? t < n : t > n; 0 <= n ? t++ : t--) c.push(t); + return c; + } + .apply(this) + .reverse(), + l = [], + r = 0, + o = i.length; + r < o; + r++ + ) + (n = i[r]), l.push(b(e, n, t)); + return l; + }), + (m = function (e, t, n) { + var r; + if ((null == n && (n = a), -1 !== (r = e.indexOf(t)))) return y(e, 0, r, n), b(e, r, n); + }), + (v = function (e, t, n) { + var r, o, i, s, c; + if ((null == n && (n = a), !(o = e.slice(0, t)).length)) return o; + for (l(o, n), i = 0, s = (c = e.slice(t)).length; i < s; i++) (r = c[i]), d(o, r, n); + return o.sort(n).reverse(); + }), + (g = function (e, t, n) { + var r, o, i, s, u, d, f, v, g; + if ((null == n && (n = a), 10 * t <= e.length)) { + if (!(i = e.slice(0, t).sort(n)).length) return i; + for (o = i[i.length - 1], s = 0, d = (f = e.slice(t)).length; s < d; s++) + n((r = f[s]), o) < 0 && (h(i, r, 0, null, n), i.pop(), (o = i[i.length - 1])); + return i; + } + for (l(e, n), g = [], u = 0, v = p(t, e.length); 0 <= v ? u < v : u > v; 0 <= v ? ++u : --u) + g.push(c(e, n)); + return g; + }), + (y = function (e, t, n, r) { + var o, i, s; + for (null == r && (r = a), o = e[n]; n > t && r(o, (i = e[(s = (n - 1) >> 1)])) < 0; ) (e[n] = i), (n = s); + return (e[n] = o); + }), + (b = function (e, t, n) { + var r, o, i, s, l; + for (null == n && (n = a), o = e.length, l = t, i = e[t], r = 2 * t + 1; r < o; ) + (s = r + 1) < o && !(n(e[r], e[s]) < 0) && (r = s), (e[t] = e[r]), (r = 2 * (t = r) + 1); + return (e[t] = i), y(e, l, t, n); + }), + (i = (function () { + function e(e) { + (this.cmp = null != e ? e : a), (this.nodes = []); + } + return ( + (e.push = u), + (e.pop = c), + (e.replace = f), + (e.pushpop = d), + (e.heapify = l), + (e.updateItem = m), + (e.nlargest = v), + (e.nsmallest = g), + (e.prototype.push = function (e) { + return u(this.nodes, e, this.cmp); + }), + (e.prototype.pop = function () { + return c(this.nodes, this.cmp); + }), + (e.prototype.peek = function () { + return this.nodes[0]; + }), + (e.prototype.contains = function (e) { + return -1 !== this.nodes.indexOf(e); + }), + (e.prototype.replace = function (e) { + return f(this.nodes, e, this.cmp); + }), + (e.prototype.pushpop = function (e) { + return d(this.nodes, e, this.cmp); + }), + (e.prototype.heapify = function () { + return l(this.nodes, this.cmp); + }), + (e.prototype.updateItem = function (e) { + return m(this.nodes, e, this.cmp); + }), + (e.prototype.clear = function () { + return (this.nodes = []); + }), + (e.prototype.empty = function () { + return 0 === this.nodes.length; + }), + (e.prototype.size = function () { + return this.nodes.length; + }), + (e.prototype.clone = function () { + var t; + return ((t = new e()).nodes = this.nodes.slice(0)), t; + }), + (e.prototype.toArray = function () { + return this.nodes.slice(0); + }), + (e.prototype.insert = e.prototype.push), + (e.prototype.top = e.prototype.peek), + (e.prototype.front = e.prototype.peek), + (e.prototype.has = e.prototype.contains), + (e.prototype.copy = e.prototype.clone), + e + ); + })()), + (r = []), + void 0 === + (o = + 'function' == + typeof (n = function () { + return i; + }) + ? n.apply(t, r) + : n) || (e.exports = o); + }).call(this); + }, + 33845: (e, t) => { + function n(e) { + for (var t = arguments.length, n = Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++) n[r - 1] = arguments[r]; + throw Error( + '[Immer] minified error nr: ' + + e + + (n.length + ? ' ' + + n + .map(function (e) { + return "'" + e + "'"; + }) + .join(',') + : '') + + '. Find the full error at: https://bit.ly/3cXEKWf', + ); + } + function r(e) { + return !!e && !!e[X]; + } + function o(e) { + var t; + return ( + !!e && + ((function (e) { + if (!e || 'object' != typeof e) return !1; + var t = Object.getPrototypeOf(e); + if (null === t) return !0; + var n = Object.hasOwnProperty.call(t, 'constructor') && t.constructor; + return n === Object || ('function' == typeof n && Function.toString.call(n) === K); + })(e) || + Array.isArray(e) || + !!e[Y] || + !!(null === (t = e.constructor) || void 0 === t ? void 0 : t[Y]) || + d(e) || + f(e)) + ); + } + function i(e, t, n) { + void 0 === n && (n = !1), + 0 === a(e) + ? (n ? Object.keys : Z)(e).forEach(function (r) { + (n && 'symbol' == typeof r) || t(r, e[r], e); + }) + : e.forEach(function (n, r) { + return t(r, n, e); + }); + } + function a(e) { + var t = e[X]; + return t ? (t.t > 3 ? t.t - 4 : t.t) : Array.isArray(e) ? 1 : d(e) ? 2 : f(e) ? 3 : 0; + } + function s(e, t) { + return 2 === a(e) ? e.has(t) : Object.prototype.hasOwnProperty.call(e, t); + } + function l(e, t) { + return 2 === a(e) ? e.get(t) : e[t]; + } + function c(e, t, n) { + var r = a(e); + 2 === r ? e.set(t, n) : 3 === r ? (e.delete(t), e.add(n)) : (e[t] = n); + } + function u(e, t) { + return e === t ? 0 !== e || 1 / e == 1 / t : e != e && t != t; + } + function d(e) { + return H && e instanceof Map; + } + function f(e) { + return W && e instanceof Set; + } + function h(e) { + return e.i || e.o; + } + function p(e) { + if (Array.isArray(e)) return Array.prototype.slice.call(e); + var t = Q(e); + delete t[X]; + for (var n = Z(t), r = 0; r < n.length; r++) { + var o = n[r], + i = t[o]; + !1 === i.writable && ((i.writable = !0), (i.configurable = !0)), + (i.get || i.set) && (t[o] = { configurable: !0, writable: !0, enumerable: i.enumerable, value: e[o] }); + } + return Object.create(Object.getPrototypeOf(e), t); + } + function v(e, t) { + return ( + void 0 === t && (t = !1), + m(e) || + r(e) || + !o(e) || + (a(e) > 1 && (e.set = e.add = e.clear = e.delete = g), + Object.freeze(e), + t && + i( + e, + function (e, t) { + return v(t, !0); + }, + !0, + )), + e + ); + } + function g() { + n(2); + } + function m(e) { + return null == e || 'object' != typeof e || Object.isFrozen(e); + } + function y(e) { + var t = J[e]; + return t || n(18, e), t; + } + function b(e, t) { + J[e] || (J[e] = t); + } + function x() { + return V; + } + function w(e, t) { + t && (y('Patches'), (e.u = []), (e.v = []), (e.s = t)); + } + function E(e) { + k(e), e.p.forEach(S), (e.p = null); + } + function k(e) { + e === V && (V = e.l); + } + function _(e) { + return (V = { p: [], l: V, h: e, _: !0, m: 0 }); + } + function S(e) { + var t = e[X]; + 0 === t.t || 1 === t.t ? t.j() : (t.O = !0); + } + function P(e, t) { + t.m = t.p.length; + var r = t.p[0], + i = void 0 !== e && e !== r; + return ( + t.h.S || y('ES5').P(t, e, i), + i + ? (r[X].M && (E(t), n(4)), + o(e) && ((e = C(t, e)), t.l || T(t, e)), + t.u && y('Patches').g(r[X].o, e, t.u, t.v)) + : (e = C(t, r, [])), + E(t), + t.u && t.s(t.u, t.v), + e !== q ? e : void 0 + ); + } + function C(e, t, n) { + if (m(t)) return t; + var r = t[X]; + if (!r) + return ( + i( + t, + function (o, i) { + return j(e, r, t, o, i, n); + }, + !0, + ), + t + ); + if (r.A !== e) return t; + if (!r.M) return T(e, r.o, !0), r.o; + if (!r.R) { + (r.R = !0), r.A.m--; + var o = 4 === r.t || 5 === r.t ? (r.i = p(r.k)) : r.i; + i(3 === r.t ? new Set(o) : o, function (t, i) { + return j(e, r, o, t, i, n); + }), + T(e, o, !1), + n && e.u && y('Patches').F(r, n, e.u, e.v); + } + return r.i; + } + function j(e, t, n, i, a, l) { + if (r(a)) { + var u = C(e, a, l && t && 3 !== t.t && !s(t.D, i) ? l.concat(i) : void 0); + if ((c(n, i, u), !r(u))) return; + e._ = !1; + } + if (o(a) && !m(a)) { + if (!e.h.K && e.m < 1) return; + C(e, a), (t && t.A.l) || T(e, a); + } + } + function T(e, t, n) { + void 0 === n && (n = !1), e.h.K && e._ && v(t, n); + } + function D(e, t) { + var n = e[X]; + return (n ? h(n) : e)[t]; + } + function N(e, t) { + if (t in e) + for (var n = Object.getPrototypeOf(e); n; ) { + var r = Object.getOwnPropertyDescriptor(n, t); + if (r) return r; + n = Object.getPrototypeOf(n); + } + } + function M(e) { + e.M || ((e.M = !0), e.l && M(e.l)); + } + function O(e) { + e.i || (e.i = p(e.o)); + } + function A(e, t, n) { + var r = d(t) + ? y('MapSet').$(t, n) + : f(t) + ? y('MapSet').C(t, n) + : e.S + ? (function (e, t) { + var n = Array.isArray(e), + r = { + t: n ? 1 : 0, + A: t ? t.A : x(), + M: !1, + R: !1, + D: {}, + l: t, + o: e, + k: null, + i: null, + j: null, + I: !1, + }, + o = r, + i = ee; + n && ((o = [r]), (i = te)); + var a = Proxy.revocable(o, i), + s = a.revoke, + l = a.proxy; + return (r.k = l), (r.j = s), l; + })(t, n) + : y('ES5').J(t, n); + return (n ? n.A : x()).p.push(r), r; + } + function R(e) { + return ( + r(e) || n(22, e), + (function e(t) { + if (!o(t)) return t; + var n, + r = t[X], + s = a(t); + if (r) { + if (!r.M && (r.t < 4 || !y('ES5').N(r))) return r.o; + (r.R = !0), (n = L(t, s)), (r.R = !1); + } else n = L(t, s); + return ( + i(n, function (t, o) { + (r && l(r.o, t) === o) || c(n, t, e(o)); + }), + 3 === s ? new Set(n) : n + ); + })(e) + ); + } + function L(e, t) { + switch (t) { + case 2: + return new Map(e); + case 3: + return Array.from(e); + } + return p(e); + } + function I() { + function e(e, t) { + var n = a[e]; + return ( + n + ? (n.enumerable = t) + : (a[e] = n = + { + configurable: !0, + enumerable: t, + get: function () { + return ee.get(this[X], e); + }, + set: function (t) { + ee.set(this[X], e, t); + }, + }), + n + ); + } + function t(e) { + for (var t = e.length - 1; t >= 0; t--) { + var r = e[t][X]; + if (!r.M) + switch (r.t) { + case 5: + o(r) && M(r); + break; + case 4: + n(r) && M(r); + } + } + } + function n(e) { + for (var t = e.o, n = e.k, r = Z(n), o = r.length - 1; o >= 0; o--) { + var i = r[o]; + if (i !== X) { + var a = t[i]; + if (void 0 === a && !s(t, i)) return !0; + var l = n[i], + c = l && l[X]; + if (c ? c.o !== a : !u(l, a)) return !0; + } + } + var d = !!t[X]; + return r.length !== Z(t).length + (d ? 0 : 1); + } + function o(e) { + var t = e.k; + if (t.length !== e.o.length) return !0; + var n = Object.getOwnPropertyDescriptor(t, t.length - 1); + if (n && !n.get) return !0; + for (var r = 0; r < t.length; r++) if (!t.hasOwnProperty(r)) return !0; + return !1; + } + var a = {}; + b('ES5', { + J: function (t, n) { + var r = Array.isArray(t), + o = (function (t, n) { + if (t) { + for (var r = Array(n.length), o = 0; o < n.length; o++) Object.defineProperty(r, '' + o, e(o, !0)); + return r; + } + var i = Q(n); + delete i[X]; + for (var a = Z(i), s = 0; s < a.length; s++) { + var l = a[s]; + i[l] = e(l, t || !!i[l].enumerable); + } + return Object.create(Object.getPrototypeOf(n), i); + })(r, t), + i = { t: r ? 5 : 4, A: n ? n.A : x(), M: !1, R: !1, D: {}, l: n, o: t, k: o, i: null, O: !1, I: !1 }; + return Object.defineProperty(o, X, { value: i, writable: !0 }), o; + }, + P: function (e, n, a) { + a + ? r(n) && n[X].A === e && t(e.p) + : (e.u && + (function e(t) { + if (t && 'object' == typeof t) { + var n = t[X]; + if (n) { + var r = n.o, + a = n.k, + l = n.D, + c = n.t; + if (4 === c) + i(a, function (t) { + t !== X && (void 0 !== r[t] || s(r, t) ? l[t] || e(a[t]) : ((l[t] = !0), M(n))); + }), + i(r, function (e) { + void 0 !== a[e] || s(a, e) || ((l[e] = !1), M(n)); + }); + else if (5 === c) { + if ((o(n) && (M(n), (l.length = !0)), a.length < r.length)) + for (var u = a.length; u < r.length; u++) l[u] = !1; + else for (var d = r.length; d < a.length; d++) l[d] = !0; + for (var f = Math.min(a.length, r.length), h = 0; h < f; h++) + a.hasOwnProperty(h) || (l[h] = !0), void 0 === l[h] && e(a[h]); + } + } + } + })(e.p[0]), + t(e.p)); + }, + N: function (e) { + return 4 === e.t ? n(e) : o(e); + }, + }); + } + function B() { + function e(t) { + if (!o(t)) return t; + if (Array.isArray(t)) return t.map(e); + if (d(t)) + return new Map( + Array.from(t.entries()).map(function (t) { + return [t[0], e(t[1])]; + }), + ); + if (f(t)) return new Set(Array.from(t).map(e)); + var n = Object.create(Object.getPrototypeOf(t)); + for (var r in t) n[r] = e(t[r]); + return s(t, Y) && (n[Y] = t[Y]), n; + } + function t(t) { + return r(t) ? e(t) : t; + } + var c = 'add'; + b('Patches', { + W: function (t, r) { + return ( + r.forEach(function (r) { + for (var o = r.path, i = r.op, s = t, u = 0; u < o.length - 1; u++) { + var d = a(s), + f = '' + o[u]; + (0 !== d && 1 !== d) || ('__proto__' !== f && 'constructor' !== f) || n(24), + 'function' == typeof s && 'prototype' === f && n(24), + 'object' != typeof (s = l(s, f)) && n(15, o.join('/')); + } + var h = a(s), + p = e(r.value), + v = o[o.length - 1]; + switch (i) { + case 'replace': + switch (h) { + case 2: + return s.set(v, p); + case 3: + n(16); + default: + return (s[v] = p); + } + case c: + switch (h) { + case 1: + return '-' === v ? s.push(p) : s.splice(v, 0, p); + case 2: + return s.set(v, p); + case 3: + return s.add(p); + default: + return (s[v] = p); + } + case 'remove': + switch (h) { + case 1: + return s.splice(v, 1); + case 2: + return s.delete(v); + case 3: + return s.delete(r.value); + default: + return delete s[v]; + } + default: + n(17, i); + } + }), + t + ); + }, + F: function (e, n, r, o) { + switch (e.t) { + case 0: + case 4: + case 2: + return (function (e, n, r, o) { + var a = e.o, + u = e.i; + i(e.D, function (e, i) { + var d = l(a, e), + f = l(u, e), + h = i ? (s(a, e) ? 'replace' : c) : 'remove'; + if (d !== f || 'replace' !== h) { + var p = n.concat(e); + r.push('remove' === h ? { op: h, path: p } : { op: h, path: p, value: f }), + o.push( + h === c + ? { op: 'remove', path: p } + : 'remove' === h + ? { op: c, path: p, value: t(d) } + : { op: 'replace', path: p, value: t(d) }, + ); + } + }); + })(e, n, r, o); + case 5: + case 1: + return (function (e, n, r, o) { + var i = e.o, + a = e.D, + s = e.i; + if (s.length < i.length) { + var l = [s, i]; + (i = l[0]), (s = l[1]); + var u = [o, r]; + (r = u[0]), (o = u[1]); + } + for (var d = 0; d < i.length; d++) + if (a[d] && s[d] !== i[d]) { + var f = n.concat([d]); + r.push({ op: 'replace', path: f, value: t(s[d]) }), + o.push({ op: 'replace', path: f, value: t(i[d]) }); + } + for (var h = i.length; h < s.length; h++) { + var p = n.concat([h]); + r.push({ op: c, path: p, value: t(s[h]) }); + } + i.length < s.length && o.push({ op: 'replace', path: n.concat(['length']), value: i.length }); + })(e, n, r, o); + case 3: + return (function (e, t, n, r) { + var o = e.o, + i = e.i, + a = 0; + o.forEach(function (e) { + if (!i.has(e)) { + var o = t.concat([a]); + n.push({ op: 'remove', path: o, value: e }), r.unshift({ op: c, path: o, value: e }); + } + a++; + }), + (a = 0), + i.forEach(function (e) { + if (!o.has(e)) { + var i = t.concat([a]); + n.push({ op: c, path: i, value: e }), r.unshift({ op: 'remove', path: i, value: e }); + } + a++; + }); + })(e, n, r, o); + } + }, + g: function (e, t, n, r) { + n.push({ op: 'replace', path: [], value: t === q ? void 0 : t }), + r.push({ op: 'replace', path: [], value: e }); + }, + }); + } + function F() { + function e(e, t) { + function n() { + this.constructor = e; + } + s(e, t), (e.prototype = ((n.prototype = t.prototype), new n())); + } + function t(e) { + e.i || ((e.D = new Map()), (e.i = new Map(e.o))); + } + function r(e) { + e.i || + ((e.i = new Set()), + e.o.forEach(function (t) { + if (o(t)) { + var n = A(e.A.h, t, e); + e.p.set(t, n), e.i.add(n); + } else e.i.add(t); + })); + } + function a(e) { + e.O && n(3, JSON.stringify(h(e))); + } + var s = function (e, t) { + return (s = + Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && + function (e, t) { + e.__proto__ = t; + }) || + function (e, t) { + for (var n in t) t.hasOwnProperty(n) && (e[n] = t[n]); + })(e, t); + }, + l = (function () { + function n(e, t) { + return ( + (this[X] = { + t: 2, + l: t, + A: t ? t.A : x(), + M: !1, + R: !1, + i: void 0, + D: void 0, + o: e, + k: this, + I: !1, + O: !1, + }), + this + ); + } + e(n, Map); + var r = n.prototype; + return ( + Object.defineProperty(r, 'size', { + get: function () { + return h(this[X]).size; + }, + }), + (r.has = function (e) { + return h(this[X]).has(e); + }), + (r.set = function (e, n) { + var r = this[X]; + return ( + a(r), + (h(r).has(e) && h(r).get(e) === n) || (t(r), M(r), r.D.set(e, !0), r.i.set(e, n), r.D.set(e, !0)), + this + ); + }), + (r.delete = function (e) { + if (!this.has(e)) return !1; + var n = this[X]; + return a(n), t(n), M(n), n.o.has(e) ? n.D.set(e, !1) : n.D.delete(e), n.i.delete(e), !0; + }), + (r.clear = function () { + var e = this[X]; + a(e), + h(e).size && + (t(e), + M(e), + (e.D = new Map()), + i(e.o, function (t) { + e.D.set(t, !1); + }), + e.i.clear()); + }), + (r.forEach = function (e, t) { + var n = this; + h(this[X]).forEach(function (r, o) { + e.call(t, n.get(o), o, n); + }); + }), + (r.get = function (e) { + var n = this[X]; + a(n); + var r = h(n).get(e); + if (n.R || !o(r)) return r; + if (r !== n.o.get(e)) return r; + var i = A(n.A.h, r, n); + return t(n), n.i.set(e, i), i; + }), + (r.keys = function () { + return h(this[X]).keys(); + }), + (r.values = function () { + var e, + t = this, + n = this.keys(); + return ( + ((e = {})[$] = function () { + return t.values(); + }), + (e.next = function () { + var e = n.next(); + return e.done ? e : { done: !1, value: t.get(e.value) }; + }), + e + ); + }), + (r.entries = function () { + var e, + t = this, + n = this.keys(); + return ( + ((e = {})[$] = function () { + return t.entries(); + }), + (e.next = function () { + var e = n.next(); + if (e.done) return e; + var r = t.get(e.value); + return { done: !1, value: [e.value, r] }; + }), + e + ); + }), + (r[$] = function () { + return this.entries(); + }), + n + ); + })(), + c = (function () { + function t(e, t) { + return ( + (this[X] = { + t: 3, + l: t, + A: t ? t.A : x(), + M: !1, + R: !1, + i: void 0, + o: e, + k: this, + p: new Map(), + O: !1, + I: !1, + }), + this + ); + } + e(t, Set); + var n = t.prototype; + return ( + Object.defineProperty(n, 'size', { + get: function () { + return h(this[X]).size; + }, + }), + (n.has = function (e) { + var t = this[X]; + return a(t), t.i ? !!t.i.has(e) || !(!t.p.has(e) || !t.i.has(t.p.get(e))) : t.o.has(e); + }), + (n.add = function (e) { + var t = this[X]; + return a(t), this.has(e) || (r(t), M(t), t.i.add(e)), this; + }), + (n.delete = function (e) { + if (!this.has(e)) return !1; + var t = this[X]; + return a(t), r(t), M(t), t.i.delete(e) || (!!t.p.has(e) && t.i.delete(t.p.get(e))); + }), + (n.clear = function () { + var e = this[X]; + a(e), h(e).size && (r(e), M(e), e.i.clear()); + }), + (n.values = function () { + var e = this[X]; + return a(e), r(e), e.i.values(); + }), + (n.entries = function () { + var e = this[X]; + return a(e), r(e), e.i.entries(); + }), + (n.keys = function () { + return this.values(); + }), + (n[$] = function () { + return this.values(); + }), + (n.forEach = function (e, t) { + for (var n = this.values(), r = n.next(); !r.done; ) e.call(t, r.value, r.value, this), (r = n.next()); + }), + t + ); + })(); + b('MapSet', { + $: function (e, t) { + return new l(e, t); + }, + C: function (e, t) { + return new c(e, t); + }, + }); + } + var z; + Object.defineProperty(t, '__esModule', { value: !0 }); + var V, + G = 'undefined' != typeof Symbol && 'symbol' == typeof Symbol('x'), + H = 'undefined' != typeof Map, + W = 'undefined' != typeof Set, + U = 'undefined' != typeof Proxy && void 0 !== Proxy.revocable && 'undefined' != typeof Reflect, + q = G ? Symbol.for('immer-nothing') : (((z = {})['immer-nothing'] = !0), z), + Y = G ? Symbol.for('immer-draftable') : '__$immer_draftable', + X = G ? Symbol.for('immer-state') : '__$immer_state', + $ = ('undefined' != typeof Symbol && Symbol.iterator) || '@@iterator', + K = '' + Object.prototype.constructor, + Z = + 'undefined' != typeof Reflect && Reflect.ownKeys + ? Reflect.ownKeys + : void 0 !== Object.getOwnPropertySymbols + ? function (e) { + return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e)); + } + : Object.getOwnPropertyNames, + Q = + Object.getOwnPropertyDescriptors || + function (e) { + var t = {}; + return ( + Z(e).forEach(function (n) { + t[n] = Object.getOwnPropertyDescriptor(e, n); + }), + t + ); + }, + J = {}, + ee = { + get: function (e, t) { + if (t === X) return e; + var n = h(e); + if (!s(n, t)) + return (function (e, t, n) { + var r, + o = N(t, n); + return o + ? 'value' in o + ? o.value + : null === (r = o.get) || void 0 === r + ? void 0 + : r.call(e.k) + : void 0; + })(e, n, t); + var r = n[t]; + return e.R || !o(r) ? r : r === D(e.o, t) ? (O(e), (e.i[t] = A(e.A.h, r, e))) : r; + }, + has: function (e, t) { + return t in h(e); + }, + ownKeys: function (e) { + return Reflect.ownKeys(h(e)); + }, + set: function (e, t, n) { + var r = N(h(e), t); + if (null == r ? void 0 : r.set) return r.set.call(e.k, n), !0; + if (!e.M) { + var o = D(h(e), t), + i = null == o ? void 0 : o[X]; + if (i && i.o === n) return (e.i[t] = n), (e.D[t] = !1), !0; + if (u(n, o) && (void 0 !== n || s(e.o, t))) return !0; + O(e), M(e); + } + return ( + (e.i[t] === n && 'number' != typeof n && (void 0 !== n || t in e.i)) || ((e.i[t] = n), (e.D[t] = !0), !0) + ); + }, + deleteProperty: function (e, t) { + return ( + void 0 !== D(e.o, t) || t in e.o ? ((e.D[t] = !1), O(e), M(e)) : delete e.D[t], e.i && delete e.i[t], !0 + ); + }, + getOwnPropertyDescriptor: function (e, t) { + var n = h(e), + r = Reflect.getOwnPropertyDescriptor(n, t); + return r + ? { writable: !0, configurable: 1 !== e.t || 'length' !== t, enumerable: r.enumerable, value: n[t] } + : r; + }, + defineProperty: function () { + n(11); + }, + getPrototypeOf: function (e) { + return Object.getPrototypeOf(e.o); + }, + setPrototypeOf: function () { + n(12); + }, + }, + te = {}; + i(ee, function (e, t) { + te[e] = function () { + return (arguments[0] = arguments[0][0]), t.apply(this, arguments); + }; + }), + (te.deleteProperty = function (e, t) { + return te.set.call(this, e, t, void 0); + }), + (te.set = function (e, t, n) { + return ee.set.call(this, e[0], t, n, e[0]); + }); + var ne = (function () { + function e(e) { + var t = this; + (this.S = U), + (this.K = !0), + (this.produce = function (e, r, i) { + if ('function' == typeof e && 'function' != typeof r) { + var a = r; + r = e; + var s = t; + return function (e) { + var t = this; + void 0 === e && (e = a); + for (var n = arguments.length, o = Array(n > 1 ? n - 1 : 0), i = 1; i < n; i++) + o[i - 1] = arguments[i]; + return s.produce(e, function (e) { + var n; + return (n = r).call.apply(n, [t, e].concat(o)); + }); + }; + } + var l; + if (('function' != typeof r && n(6), void 0 !== i && 'function' != typeof i && n(7), o(e))) { + var c = _(t), + u = A(t, e, void 0), + d = !0; + try { + (l = r(u)), (d = !1); + } finally { + d ? E(c) : k(c); + } + return 'undefined' != typeof Promise && l instanceof Promise + ? l.then( + function (e) { + return w(c, i), P(e, c); + }, + function (e) { + throw (E(c), e); + }, + ) + : (w(c, i), P(l, c)); + } + if (!e || 'object' != typeof e) { + if ((void 0 === (l = r(e)) && (l = e), l === q && (l = void 0), t.K && v(l, !0), i)) { + var f = [], + h = []; + y('Patches').g(e, l, f, h), i(f, h); + } + return l; + } + n(21, e); + }), + (this.produceWithPatches = function (e, n) { + if ('function' == typeof e) + return function (n) { + for (var r = arguments.length, o = Array(r > 1 ? r - 1 : 0), i = 1; i < r; i++) + o[i - 1] = arguments[i]; + return t.produceWithPatches(n, function (t) { + return e.apply(void 0, [t].concat(o)); + }); + }; + var r, + o, + i = t.produce(e, n, function (e, t) { + (r = e), (o = t); + }); + return 'undefined' != typeof Promise && i instanceof Promise + ? i.then(function (e) { + return [e, r, o]; + }) + : [i, r, o]; + }), + 'boolean' == typeof (null == e ? void 0 : e.useProxies) && this.setUseProxies(e.useProxies), + 'boolean' == typeof (null == e ? void 0 : e.autoFreeze) && this.setAutoFreeze(e.autoFreeze); + } + var t = e.prototype; + return ( + (t.createDraft = function (e) { + o(e) || n(8), r(e) && (e = R(e)); + var t = _(this), + i = A(this, e, void 0); + return (i[X].I = !0), k(t), i; + }), + (t.finishDraft = function (e, t) { + var n = (e && e[X]).A; + return w(n, t), P(void 0, n); + }), + (t.setAutoFreeze = function (e) { + this.K = e; + }), + (t.setUseProxies = function (e) { + e && !U && n(20), (this.S = e); + }), + (t.applyPatches = function (e, t) { + var n; + for (n = t.length - 1; n >= 0; n--) { + var o = t[n]; + if (0 === o.path.length && 'replace' === o.op) { + e = o.value; + break; + } + } + n > -1 && (t = t.slice(n + 1)); + var i = y('Patches').W; + return r(e) + ? i(e, t) + : this.produce(e, function (e) { + return i(e, t); + }); + }), + e + ); + })(), + re = new ne(), + oe = re.produce, + ie = re.produceWithPatches.bind(re), + ae = re.setAutoFreeze.bind(re), + se = re.setUseProxies.bind(re), + le = re.applyPatches.bind(re), + ce = re.createDraft.bind(re), + ue = re.finishDraft.bind(re); + (t.Immer = ne), + (t.applyPatches = le), + (t.castDraft = function (e) { + return e; + }), + (t.castImmutable = function (e) { + return e; + }), + (t.createDraft = ce), + (t.current = R), + (t.default = oe), + (t.enableAllPlugins = function () { + I(), F(), B(); + }), + (t.enableES5 = I), + (t.enableMapSet = F), + (t.enablePatches = B), + (t.finishDraft = ue), + (t.freeze = v), + (t.immerable = Y), + (t.isDraft = r), + (t.isDraftable = o), + (t.nothing = q), + (t.original = function (e) { + return r(e) || n(23, e), e[X].o; + }), + (t.produce = oe), + (t.produceWithPatches = ie), + (t.setAutoFreeze = ae), + (t.setUseProxies = se); + }, + 77667: (e, t, n) => { + 'use strict'; + e.exports = n(33845); + }, + 94466: (e, t, n) => { + var r = n(65234)(n(83250), 'DataView'); + e.exports = r; + }, + 85208: (e, t, n) => { + var r = n(34440), + o = n(84108), + i = n(61085), + a = n(77706), + s = n(8636); + function l(e) { + var t = -1, + n = null == e ? 0 : e.length; + for (this.clear(); ++t < n; ) { + var r = e[t]; + this.set(r[0], r[1]); + } + } + (l.prototype.clear = r), + (l.prototype.delete = o), + (l.prototype.get = i), + (l.prototype.has = a), + (l.prototype.set = s), + (e.exports = l); + }, + 81998: (e, t, n) => { + var r = n(90266), + o = n(42875), + i = n(45828), + a = n(24115), + s = n(67690); + function l(e) { + var t = -1, + n = null == e ? 0 : e.length; + for (this.clear(); ++t < n; ) { + var r = e[t]; + this.set(r[0], r[1]); + } + } + (l.prototype.clear = r), + (l.prototype.delete = o), + (l.prototype.get = i), + (l.prototype.has = a), + (l.prototype.set = s), + (e.exports = l); + }, + 72887: (e, t, n) => { + var r = n(65234)(n(83250), 'Map'); + e.exports = r; + }, + 95678: (e, t, n) => { + var r = n(39016), + o = n(62363), + i = n(64348), + a = n(53062), + s = n(30262); + function l(e) { + var t = -1, + n = null == e ? 0 : e.length; + for (this.clear(); ++t < n; ) { + var r = e[t]; + this.set(r[0], r[1]); + } + } + (l.prototype.clear = r), + (l.prototype.delete = o), + (l.prototype.get = i), + (l.prototype.has = a), + (l.prototype.set = s), + (e.exports = l); + }, + 95747: (e, t, n) => { + var r = n(65234)(n(83250), 'Promise'); + e.exports = r; + }, + 56616: (e, t, n) => { + var r = n(65234)(n(83250), 'Set'); + e.exports = r; + }, + 84546: (e, t, n) => { + var r = n(95678), + o = n(83937), + i = n(15009); + function a(e) { + var t = -1, + n = null == e ? 0 : e.length; + for (this.__data__ = new r(); ++t < n; ) this.add(e[t]); + } + (a.prototype.add = a.prototype.push = o), (a.prototype.has = i), (e.exports = a); + }, + 19549: (e, t, n) => { + var r = n(81998), + o = n(93210), + i = n(48603), + a = n(38947), + s = n(70885), + l = n(98938); + function c(e) { + var t = (this.__data__ = new r(e)); + this.size = t.size; + } + (c.prototype.clear = o), + (c.prototype.delete = i), + (c.prototype.get = a), + (c.prototype.has = s), + (c.prototype.set = l), + (e.exports = c); + }, + 70861: (e, t, n) => { + var r = n(83250).Symbol; + e.exports = r; + }, + 3526: (e, t, n) => { + var r = n(83250).Uint8Array; + e.exports = r; + }, + 98001: (e, t, n) => { + var r = n(65234)(n(83250), 'WeakMap'); + e.exports = r; + }, + 82274: e => { + e.exports = function (e, t, n) { + switch (n.length) { + case 0: + return e.call(t); + case 1: + return e.call(t, n[0]); + case 2: + return e.call(t, n[0], n[1]); + case 3: + return e.call(t, n[0], n[1], n[2]); + } + return e.apply(t, n); + }; + }, + 84004: e => { + e.exports = function (e, t) { + for (var n = -1, r = null == e ? 0 : e.length; ++n < r && !1 !== t(e[n], n, e); ); + return e; + }; + }, + 82493: e => { + e.exports = function (e, t) { + for (var n = -1, r = null == e ? 0 : e.length, o = 0, i = []; ++n < r; ) { + var a = e[n]; + t(a, n, e) && (i[o++] = a); + } + return i; + }; + }, + 45436: (e, t, n) => { + var r = n(94365); + e.exports = function (e, t) { + return !!(null == e ? 0 : e.length) && r(e, t, 0) > -1; + }; + }, + 99105: e => { + e.exports = function (e, t, n) { + for (var r = -1, o = null == e ? 0 : e.length; ++r < o; ) if (n(t, e[r])) return !0; + return !1; + }; + }, + 75825: (e, t, n) => { + var r = n(18509), + o = n(79312), + i = n(55589), + a = n(85778), + s = n(5023), + l = n(50922), + c = Object.prototype.hasOwnProperty; + e.exports = function (e, t) { + var n = i(e), + u = !n && o(e), + d = !n && !u && a(e), + f = !n && !u && !d && l(e), + h = n || u || d || f, + p = h ? r(e.length, String) : [], + v = p.length; + for (var g in e) + (!t && !c.call(e, g)) || + (h && + ('length' == g || + (d && ('offset' == g || 'parent' == g)) || + (f && ('buffer' == g || 'byteLength' == g || 'byteOffset' == g)) || + s(g, v))) || + p.push(g); + return p; + }; + }, + 29233: e => { + e.exports = function (e, t) { + for (var n = -1, r = null == e ? 0 : e.length, o = Array(r); ++n < r; ) o[n] = t(e[n], n, e); + return o; + }; + }, + 10111: e => { + e.exports = function (e, t) { + for (var n = -1, r = t.length, o = e.length; ++n < r; ) e[o + n] = t[n]; + return e; + }; + }, + 85115: e => { + e.exports = function (e, t, n, r) { + var o = -1, + i = null == e ? 0 : e.length; + for (r && i && (n = e[++o]); ++o < i; ) n = t(n, e[o], o, e); + return n; + }; + }, + 1831: e => { + e.exports = function (e, t) { + for (var n = -1, r = null == e ? 0 : e.length; ++n < r; ) if (t(e[n], n, e)) return !0; + return !1; + }; + }, + 97088: (e, t, n) => { + var r = n(86174)('length'); + e.exports = r; + }, + 73532: (e, t, n) => { + var r = n(87500), + o = n(58260); + e.exports = function (e, t, n) { + ((void 0 !== n && !o(e[t], n)) || (void 0 === n && !(t in e))) && r(e, t, n); + }; + }, + 93192: (e, t, n) => { + var r = n(87500), + o = n(58260), + i = Object.prototype.hasOwnProperty; + e.exports = function (e, t, n) { + var a = e[t]; + (i.call(e, t) && o(a, n) && (void 0 !== n || t in e)) || r(e, t, n); + }; + }, + 18498: (e, t, n) => { + var r = n(58260); + e.exports = function (e, t) { + for (var n = e.length; n--; ) if (r(e[n][0], t)) return n; + return -1; + }; + }, + 44265: (e, t, n) => { + var r = n(78618), + o = n(62096); + e.exports = function (e, t) { + return e && r(t, o(t), e); + }; + }, + 31629: (e, t, n) => { + var r = n(78618), + o = n(9882); + e.exports = function (e, t) { + return e && r(t, o(t), e); + }; + }, + 87500: (e, t, n) => { + var r = n(25595); + e.exports = function (e, t, n) { + '__proto__' == t && r ? r(e, t, { configurable: !0, enumerable: !0, value: n, writable: !0 }) : (e[t] = n); + }; + }, + 18361: (e, t, n) => { + var r = n(19549), + o = n(84004), + i = n(93192), + a = n(44265), + s = n(31629), + l = n(46502), + c = n(32166), + u = n(67272), + d = n(52066), + f = n(54357), + h = n(55713), + p = n(87493), + v = n(82865), + g = n(11908), + m = n(84046), + y = n(55589), + b = n(85778), + x = n(37613), + w = n(93702), + E = n(60693), + k = n(62096), + _ = n(9882), + S = '[object Arguments]', + P = '[object Function]', + C = '[object Object]', + j = {}; + (j[S] = + j['[object Array]'] = + j['[object ArrayBuffer]'] = + j['[object DataView]'] = + j['[object Boolean]'] = + j['[object Date]'] = + j['[object Float32Array]'] = + j['[object Float64Array]'] = + j['[object Int8Array]'] = + j['[object Int16Array]'] = + j['[object Int32Array]'] = + j['[object Map]'] = + j['[object Number]'] = + j[C] = + j['[object RegExp]'] = + j['[object Set]'] = + j['[object String]'] = + j['[object Symbol]'] = + j['[object Uint8Array]'] = + j['[object Uint8ClampedArray]'] = + j['[object Uint16Array]'] = + j['[object Uint32Array]'] = + !0), + (j['[object Error]'] = j[P] = j['[object WeakMap]'] = !1), + (e.exports = function e(t, n, T, D, N, M) { + var O, + A = 1 & n, + R = 2 & n, + L = 4 & n; + if ((T && (O = N ? T(t, D, N, M) : T(t)), void 0 !== O)) return O; + if (!w(t)) return t; + var I = y(t); + if (I) { + if (((O = v(t)), !A)) return c(t, O); + } else { + var B = p(t), + F = B == P || '[object GeneratorFunction]' == B; + if (b(t)) return l(t, A); + if (B == C || B == S || (F && !N)) { + if (((O = R || F ? {} : m(t)), !A)) return R ? d(t, s(O, t)) : u(t, a(O, t)); + } else { + if (!j[B]) return N ? t : {}; + O = g(t, B, A); + } + } + M || (M = new r()); + var z = M.get(t); + if (z) return z; + M.set(t, O), + E(t) + ? t.forEach(function (r) { + O.add(e(r, n, T, r, t, M)); + }) + : x(t) && + t.forEach(function (r, o) { + O.set(o, e(r, n, T, o, t, M)); + }); + var V = I ? void 0 : (L ? (R ? h : f) : R ? _ : k)(t); + return ( + o(V || t, function (r, o) { + V && (r = t[(o = r)]), i(O, o, e(r, n, T, o, t, M)); + }), + O + ); + }); + }, + 57890: (e, t, n) => { + var r = n(93702), + o = Object.create, + i = (function () { + function e() {} + return function (t) { + if (!r(t)) return {}; + if (o) return o(t); + e.prototype = t; + var n = new e(); + return (e.prototype = void 0), n; + }; + })(); + e.exports = i; + }, + 61701: (e, t, n) => { + var r = n(44003), + o = n(96313)(r); + e.exports = o; + }, + 85117: (e, t, n) => { + var r = n(52624); + e.exports = function (e, t, n) { + for (var o = -1, i = e.length; ++o < i; ) { + var a = e[o], + s = t(a); + if (null != s && (void 0 === l ? s == s && !r(s) : n(s, l))) + var l = s, + c = a; + } + return c; + }; + }, + 68146: (e, t, n) => { + var r = n(61701); + e.exports = function (e, t) { + var n = []; + return ( + r(e, function (e, r, o) { + t(e, r, o) && n.push(e); + }), + n + ); + }; + }, + 44770: e => { + e.exports = function (e, t, n, r) { + for (var o = e.length, i = n + (r ? 1 : -1); r ? i-- : ++i < o; ) if (t(e[i], i, e)) return i; + return -1; + }; + }, + 22825: (e, t, n) => { + var r = n(10111), + o = n(67123); + e.exports = function e(t, n, i, a, s) { + var l = -1, + c = t.length; + for (i || (i = o), s || (s = []); ++l < c; ) { + var u = t[l]; + n > 0 && i(u) ? (n > 1 ? e(u, n - 1, i, a, s) : r(s, u)) : a || (s[s.length] = u); + } + return s; + }; + }, + 39943: (e, t, n) => { + var r = n(72545)(); + e.exports = r; + }, + 44003: (e, t, n) => { + var r = n(39943), + o = n(62096); + e.exports = function (e, t) { + return e && r(e, t, o); + }; + }, + 40548: (e, t, n) => { + var r = n(24007), + o = n(86040); + e.exports = function (e, t) { + for (var n = 0, i = (t = r(t, e)).length; null != e && n < i; ) e = e[o(t[n++])]; + return n && n == i ? e : void 0; + }; + }, + 4468: (e, t, n) => { + var r = n(10111), + o = n(55589); + e.exports = function (e, t, n) { + var i = t(e); + return o(e) ? i : r(i, n(e)); + }; + }, + 69823: (e, t, n) => { + var r = n(70861), + o = n(91339), + i = n(25151), + a = r ? r.toStringTag : void 0; + e.exports = function (e) { + return null == e ? (void 0 === e ? '[object Undefined]' : '[object Null]') : a && a in Object(e) ? o(e) : i(e); + }; + }, + 51669: e => { + e.exports = function (e, t) { + return e > t; + }; + }, + 32586: e => { + var t = Object.prototype.hasOwnProperty; + e.exports = function (e, n) { + return null != e && t.call(e, n); + }; + }, + 62902: e => { + e.exports = function (e, t) { + return null != e && t in Object(e); + }; + }, + 94365: (e, t, n) => { + var r = n(44770), + o = n(56963), + i = n(45898); + e.exports = function (e, t, n) { + return t == t ? i(e, t, n) : r(e, o, n); + }; + }, + 33016: (e, t, n) => { + var r = n(69823), + o = n(50440); + e.exports = function (e) { + return o(e) && '[object Arguments]' == r(e); + }; + }, + 34662: (e, t, n) => { + var r = n(88968), + o = n(50440); + e.exports = function e(t, n, i, a, s) { + return t === n || (null == t || null == n || (!o(t) && !o(n)) ? t != t && n != n : r(t, n, i, a, e, s)); + }; + }, + 88968: (e, t, n) => { + var r = n(19549), + o = n(14952), + i = n(21080), + a = n(86524), + s = n(87493), + l = n(55589), + c = n(85778), + u = n(50922), + d = '[object Arguments]', + f = '[object Array]', + h = '[object Object]', + p = Object.prototype.hasOwnProperty; + e.exports = function (e, t, n, v, g, m) { + var y = l(e), + b = l(t), + x = y ? f : s(e), + w = b ? f : s(t), + E = (x = x == d ? h : x) == h, + k = (w = w == d ? h : w) == h, + _ = x == w; + if (_ && c(e)) { + if (!c(t)) return !1; + (y = !0), (E = !1); + } + if (_ && !E) return m || (m = new r()), y || u(e) ? o(e, t, n, v, g, m) : i(e, t, x, n, v, g, m); + if (!(1 & n)) { + var S = E && p.call(e, '__wrapped__'), + P = k && p.call(t, '__wrapped__'); + if (S || P) { + var C = S ? e.value() : e, + j = P ? t.value() : t; + return m || (m = new r()), g(C, j, n, v, m); + } + } + return !!_ && (m || (m = new r()), a(e, t, n, v, g, m)); + }; + }, + 52275: (e, t, n) => { + var r = n(87493), + o = n(50440); + e.exports = function (e) { + return o(e) && '[object Map]' == r(e); + }; + }, + 2972: (e, t, n) => { + var r = n(19549), + o = n(34662); + e.exports = function (e, t, n, i) { + var a = n.length, + s = a, + l = !i; + if (null == e) return !s; + for (e = Object(e); a--; ) { + var c = n[a]; + if (l && c[2] ? c[1] !== e[c[0]] : !(c[0] in e)) return !1; + } + for (; ++a < s; ) { + var u = (c = n[a])[0], + d = e[u], + f = c[1]; + if (l && c[2]) { + if (void 0 === d && !(u in e)) return !1; + } else { + var h = new r(); + if (i) var p = i(d, f, u, e, t, h); + if (!(void 0 === p ? o(f, d, 3, i, h) : p)) return !1; + } + } + return !0; + }; + }, + 56963: e => { + e.exports = function (e) { + return e != e; + }; + }, + 99817: (e, t, n) => { + var r = n(45563), + o = n(28597), + i = n(93702), + a = n(55784), + s = /^\[object .+?Constructor\]$/, + l = Function.prototype, + c = Object.prototype, + u = l.toString, + d = c.hasOwnProperty, + f = RegExp( + '^' + + u + .call(d) + .replace(/[\\^$.*+?()[\]{}|]/g, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + + '$', + ); + e.exports = function (e) { + return !(!i(e) || o(e)) && (r(e) ? f : s).test(a(e)); + }; + }, + 7170: (e, t, n) => { + var r = n(87493), + o = n(50440); + e.exports = function (e) { + return o(e) && '[object Set]' == r(e); + }; + }, + 42448: (e, t, n) => { + var r = n(69823), + o = n(66052), + i = n(50440), + a = {}; + (a['[object Float32Array]'] = + a['[object Float64Array]'] = + a['[object Int8Array]'] = + a['[object Int16Array]'] = + a['[object Int32Array]'] = + a['[object Uint8Array]'] = + a['[object Uint8ClampedArray]'] = + a['[object Uint16Array]'] = + a['[object Uint32Array]'] = + !0), + (a['[object Arguments]'] = + a['[object Array]'] = + a['[object ArrayBuffer]'] = + a['[object Boolean]'] = + a['[object DataView]'] = + a['[object Date]'] = + a['[object Error]'] = + a['[object Function]'] = + a['[object Map]'] = + a['[object Number]'] = + a['[object Object]'] = + a['[object RegExp]'] = + a['[object Set]'] = + a['[object String]'] = + a['[object WeakMap]'] = + !1), + (e.exports = function (e) { + return i(e) && o(e.length) && !!a[r(e)]; + }); + }, + 55833: (e, t, n) => { + var r = n(15640), + o = n(9906), + i = n(80229), + a = n(55589), + s = n(94437); + e.exports = function (e) { + return 'function' == typeof e ? e : null == e ? i : 'object' == typeof e ? (a(e) ? o(e[0], e[1]) : r(e)) : s(e); + }; + }, + 41351: (e, t, n) => { + var r = n(32840), + o = n(82825), + i = Object.prototype.hasOwnProperty; + e.exports = function (e) { + if (!r(e)) return o(e); + var t = []; + for (var n in Object(e)) i.call(e, n) && 'constructor' != n && t.push(n); + return t; + }; + }, + 71309: (e, t, n) => { + var r = n(93702), + o = n(32840), + i = n(84866), + a = Object.prototype.hasOwnProperty; + e.exports = function (e) { + if (!r(e)) return i(e); + var t = o(e), + n = []; + for (var s in e) ('constructor' != s || (!t && a.call(e, s))) && n.push(s); + return n; + }; + }, + 46718: e => { + e.exports = function (e, t) { + return e < t; + }; + }, + 78068: (e, t, n) => { + var r = n(61701), + o = n(30568); + e.exports = function (e, t) { + var n = -1, + i = o(e) ? Array(e.length) : []; + return ( + r(e, function (e, r, o) { + i[++n] = t(e, r, o); + }), + i + ); + }; + }, + 15640: (e, t, n) => { + var r = n(2972), + o = n(72198), + i = n(94656); + e.exports = function (e) { + var t = o(e); + return 1 == t.length && t[0][2] + ? i(t[0][0], t[0][1]) + : function (n) { + return n === e || r(n, e, t); + }; + }; + }, + 9906: (e, t, n) => { + var r = n(34662), + o = n(13546), + i = n(56708), + a = n(5130), + s = n(18802), + l = n(94656), + c = n(86040); + e.exports = function (e, t) { + return a(e) && s(t) + ? l(c(e), t) + : function (n) { + var a = o(n, e); + return void 0 === a && a === t ? i(n, e) : r(t, a, 3); + }; + }; + }, + 92133: (e, t, n) => { + var r = n(19549), + o = n(73532), + i = n(39943), + a = n(21241), + s = n(93702), + l = n(9882), + c = n(11933); + e.exports = function e(t, n, u, d, f) { + t !== n && + i( + n, + function (i, l) { + if ((f || (f = new r()), s(i))) a(t, n, l, u, e, d, f); + else { + var h = d ? d(c(t, l), i, l + '', t, n, f) : void 0; + void 0 === h && (h = i), o(t, l, h); + } + }, + l, + ); + }; + }, + 21241: (e, t, n) => { + var r = n(73532), + o = n(46502), + i = n(21327), + a = n(32166), + s = n(84046), + l = n(79312), + c = n(55589), + u = n(18268), + d = n(85778), + f = n(45563), + h = n(93702), + p = n(54256), + v = n(50922), + g = n(11933), + m = n(36222); + e.exports = function (e, t, n, y, b, x, w) { + var E = g(e, n), + k = g(t, n), + _ = w.get(k); + if (_) r(e, n, _); + else { + var S = x ? x(E, k, n + '', e, t, w) : void 0, + P = void 0 === S; + if (P) { + var C = c(k), + j = !C && d(k), + T = !C && !j && v(k); + (S = k), + C || j || T + ? c(E) + ? (S = E) + : u(E) + ? (S = a(E)) + : j + ? ((P = !1), (S = o(k, !0))) + : T + ? ((P = !1), (S = i(k, !0))) + : (S = []) + : p(k) || l(k) + ? ((S = E), l(E) ? (S = m(E)) : (h(E) && !f(E)) || (S = s(k))) + : (P = !1); + } + P && (w.set(k, S), b(S, k, y, x, w), w.delete(k)), r(e, n, S); + } + }; + }, + 54466: (e, t, n) => { + var r = n(29233), + o = n(40548), + i = n(55833), + a = n(78068), + s = n(53340), + l = n(31525), + c = n(20315), + u = n(80229), + d = n(55589); + e.exports = function (e, t, n) { + t = t.length + ? r(t, function (e) { + return d(e) + ? function (t) { + return o(t, 1 === e.length ? e[0] : e); + } + : e; + }) + : [u]; + var f = -1; + t = r(t, l(i)); + var h = a(e, function (e, n, o) { + return { + criteria: r(t, function (t) { + return t(e); + }), + index: ++f, + value: e, + }; + }); + return s(h, function (e, t) { + return c(e, t, n); + }); + }; + }, + 21785: (e, t, n) => { + var r = n(57121), + o = n(56708); + e.exports = function (e, t) { + return r(e, t, function (t, n) { + return o(e, n); + }); + }; + }, + 57121: (e, t, n) => { + var r = n(40548), + o = n(32619), + i = n(24007); + e.exports = function (e, t, n) { + for (var a = -1, s = t.length, l = {}; ++a < s; ) { + var c = t[a], + u = r(e, c); + n(u, c) && o(l, i(c, e), u); + } + return l; + }; + }, + 86174: e => { + e.exports = function (e) { + return function (t) { + return null == t ? void 0 : t[e]; + }; + }; + }, + 3293: (e, t, n) => { + var r = n(40548); + e.exports = function (e) { + return function (t) { + return r(t, e); + }; + }; + }, + 24930: e => { + var t = Math.ceil, + n = Math.max; + e.exports = function (e, r, o, i) { + for (var a = -1, s = n(t((r - e) / (o || 1)), 0), l = Array(s); s--; ) (l[i ? s : ++a] = e), (e += o); + return l; + }; + }, + 34306: e => { + e.exports = function (e, t, n, r, o) { + return ( + o(e, function (e, o, i) { + n = r ? ((r = !1), e) : t(n, e, o, i); + }), + n + ); + }; + }, + 29735: (e, t, n) => { + var r = n(80229), + o = n(20340), + i = n(4173); + e.exports = function (e, t) { + return i(o(e, t, r), e + ''); + }; + }, + 32619: (e, t, n) => { + var r = n(93192), + o = n(24007), + i = n(5023), + a = n(93702), + s = n(86040); + e.exports = function (e, t, n, l) { + if (!a(e)) return e; + for (var c = -1, u = (t = o(t, e)).length, d = u - 1, f = e; null != f && ++c < u; ) { + var h = s(t[c]), + p = n; + if ('__proto__' === h || 'constructor' === h || 'prototype' === h) return e; + if (c != d) { + var v = f[h]; + void 0 === (p = l ? l(v, h, f) : void 0) && (p = a(v) ? v : i(t[c + 1]) ? [] : {}); + } + r(f, h, p), (f = f[h]); + } + return e; + }; + }, + 46739: (e, t, n) => { + var r = n(89203), + o = n(25595), + i = n(80229), + a = o + ? function (e, t) { + return o(e, 'toString', { configurable: !0, enumerable: !1, value: r(t), writable: !0 }); + } + : i; + e.exports = a; + }, + 53340: e => { + e.exports = function (e, t) { + var n = e.length; + for (e.sort(t); n--; ) e[n] = e[n].value; + return e; + }; + }, + 18509: e => { + e.exports = function (e, t) { + for (var n = -1, r = Array(e); ++n < e; ) r[n] = t(n); + return r; + }; + }, + 86245: (e, t, n) => { + var r = n(70861), + o = n(29233), + i = n(55589), + a = n(52624), + s = r ? r.prototype : void 0, + l = s ? s.toString : void 0; + e.exports = function e(t) { + if ('string' == typeof t) return t; + if (i(t)) return o(t, e) + ''; + if (a(t)) return l ? l.call(t) : ''; + var n = t + ''; + return '0' == n && 1 / t == -Infinity ? '-0' : n; + }; + }, + 21656: (e, t, n) => { + var r = n(62438), + o = /^\s+/; + e.exports = function (e) { + return e ? e.slice(0, r(e) + 1).replace(o, '') : e; + }; + }, + 31525: e => { + e.exports = function (e) { + return function (t) { + return e(t); + }; + }; + }, + 80135: (e, t, n) => { + var r = n(84546), + o = n(45436), + i = n(99105), + a = n(77026), + s = n(86262), + l = n(77969); + e.exports = function (e, t, n) { + var c = -1, + u = o, + d = e.length, + f = !0, + h = [], + p = h; + if (n) (f = !1), (u = i); + else if (d >= 200) { + var v = t ? null : s(e); + if (v) return l(v); + (f = !1), (u = a), (p = new r()); + } else p = t ? [] : h; + e: for (; ++c < d; ) { + var g = e[c], + m = t ? t(g) : g; + if (((g = n || 0 !== g ? g : 0), f && m == m)) { + for (var y = p.length; y--; ) if (p[y] === m) continue e; + t && p.push(m), h.push(g); + } else u(p, m, n) || (p !== h && p.push(m), h.push(g)); + } + return h; + }; + }, + 20071: (e, t, n) => { + var r = n(29233); + e.exports = function (e, t) { + return r(t, function (t) { + return e[t]; + }); + }; + }, + 36302: e => { + e.exports = function (e, t, n) { + for (var r = -1, o = e.length, i = t.length, a = {}; ++r < o; ) { + var s = r < i ? t[r] : void 0; + n(a, e[r], s); + } + return a; + }; + }, + 77026: e => { + e.exports = function (e, t) { + return e.has(t); + }; + }, + 84781: (e, t, n) => { + var r = n(80229); + e.exports = function (e) { + return 'function' == typeof e ? e : r; + }; + }, + 24007: (e, t, n) => { + var r = n(55589), + o = n(5130), + i = n(44041), + a = n(99835); + e.exports = function (e, t) { + return r(e) ? e : o(e, t) ? [e] : i(a(e)); + }; + }, + 72962: (e, t, n) => { + var r = n(3526); + e.exports = function (e) { + var t = new e.constructor(e.byteLength); + return new r(t).set(new r(e)), t; + }; + }, + 46502: (e, t, n) => { + e = n.nmd(e); + var r = n(83250), + o = t && !t.nodeType && t, + i = o && e && !e.nodeType && e, + a = i && i.exports === o ? r.Buffer : void 0, + s = a ? a.allocUnsafe : void 0; + e.exports = function (e, t) { + if (t) return e.slice(); + var n = e.length, + r = s ? s(n) : new e.constructor(n); + return e.copy(r), r; + }; + }, + 97037: (e, t, n) => { + var r = n(72962); + e.exports = function (e, t) { + var n = t ? r(e.buffer) : e.buffer; + return new e.constructor(n, e.byteOffset, e.byteLength); + }; + }, + 3429: e => { + var t = /\w*$/; + e.exports = function (e) { + var n = new e.constructor(e.source, t.exec(e)); + return (n.lastIndex = e.lastIndex), n; + }; + }, + 99349: (e, t, n) => { + var r = n(70861), + o = r ? r.prototype : void 0, + i = o ? o.valueOf : void 0; + e.exports = function (e) { + return i ? Object(i.call(e)) : {}; + }; + }, + 21327: (e, t, n) => { + var r = n(72962); + e.exports = function (e, t) { + var n = t ? r(e.buffer) : e.buffer; + return new e.constructor(n, e.byteOffset, e.length); + }; + }, + 88899: (e, t, n) => { + var r = n(52624); + e.exports = function (e, t) { + if (e !== t) { + var n = void 0 !== e, + o = null === e, + i = e == e, + a = r(e), + s = void 0 !== t, + l = null === t, + c = t == t, + u = r(t); + if ((!l && !u && !a && e > t) || (a && s && c && !l && !u) || (o && s && c) || (!n && c) || !i) return 1; + if ((!o && !a && !u && e < t) || (u && n && i && !o && !a) || (l && n && i) || (!s && i) || !c) return -1; + } + return 0; + }; + }, + 20315: (e, t, n) => { + var r = n(88899); + e.exports = function (e, t, n) { + for (var o = -1, i = e.criteria, a = t.criteria, s = i.length, l = n.length; ++o < s; ) { + var c = r(i[o], a[o]); + if (c) return o >= l ? c : c * ('desc' == n[o] ? -1 : 1); + } + return e.index - t.index; + }; + }, + 32166: e => { + e.exports = function (e, t) { + var n = -1, + r = e.length; + for (t || (t = Array(r)); ++n < r; ) t[n] = e[n]; + return t; + }; + }, + 78618: (e, t, n) => { + var r = n(93192), + o = n(87500); + e.exports = function (e, t, n, i) { + var a = !n; + n || (n = {}); + for (var s = -1, l = t.length; ++s < l; ) { + var c = t[s], + u = i ? i(n[c], e[c], c, n, e) : void 0; + void 0 === u && (u = e[c]), a ? o(n, c, u) : r(n, c, u); + } + return n; + }; + }, + 67272: (e, t, n) => { + var r = n(78618), + o = n(44450); + e.exports = function (e, t) { + return r(e, o(e), t); + }; + }, + 52066: (e, t, n) => { + var r = n(78618), + o = n(94969); + e.exports = function (e, t) { + return r(e, o(e), t); + }; + }, + 1622: (e, t, n) => { + var r = n(83250)['__core-js_shared__']; + e.exports = r; + }, + 66948: (e, t, n) => { + var r = n(29735), + o = n(98132); + e.exports = function (e) { + return r(function (t, n) { + var r = -1, + i = n.length, + a = i > 1 ? n[i - 1] : void 0, + s = i > 2 ? n[2] : void 0; + for ( + a = e.length > 3 && 'function' == typeof a ? (i--, a) : void 0, + s && o(n[0], n[1], s) && ((a = i < 3 ? void 0 : a), (i = 1)), + t = Object(t); + ++r < i; + + ) { + var l = n[r]; + l && e(t, l, r, a); + } + return t; + }); + }; + }, + 96313: (e, t, n) => { + var r = n(30568); + e.exports = function (e, t) { + return function (n, o) { + if (null == n) return n; + if (!r(n)) return e(n, o); + for (var i = n.length, a = t ? i : -1, s = Object(n); (t ? a-- : ++a < i) && !1 !== o(s[a], a, s); ); + return n; + }; + }; + }, + 72545: e => { + e.exports = function (e) { + return function (t, n, r) { + for (var o = -1, i = Object(t), a = r(t), s = a.length; s--; ) { + var l = a[e ? s : ++o]; + if (!1 === n(i[l], l, i)) break; + } + return t; + }; + }; + }, + 29301: (e, t, n) => { + var r = n(55833), + o = n(30568), + i = n(62096); + e.exports = function (e) { + return function (t, n, a) { + var s = Object(t); + if (!o(t)) { + var l = r(n, 3); + (t = i(t)), + (n = function (e) { + return l(s[e], e, s); + }); + } + var c = e(t, n, a); + return c > -1 ? s[l ? t[c] : c] : void 0; + }; + }; + }, + 51523: (e, t, n) => { + var r = n(24930), + o = n(98132), + i = n(99558); + e.exports = function (e) { + return function (t, n, a) { + return ( + a && 'number' != typeof a && o(t, n, a) && (n = a = void 0), + (t = i(t)), + void 0 === n ? ((n = t), (t = 0)) : (n = i(n)), + (a = void 0 === a ? (t < n ? 1 : -1) : i(a)), + r(t, n, a, e) + ); + }; + }; + }, + 86262: (e, t, n) => { + var r = n(56616), + o = n(71607), + i = n(77969), + a = + r && 1 / i(new r([, -0]))[1] == 1 / 0 + ? function (e) { + return new r(e); + } + : o; + e.exports = a; + }, + 25595: (e, t, n) => { + var r = n(65234), + o = (function () { + try { + var e = r(Object, 'defineProperty'); + return e({}, '', {}), e; + } catch (t) {} + })(); + e.exports = o; + }, + 14952: (e, t, n) => { + var r = n(84546), + o = n(1831), + i = n(77026); + e.exports = function (e, t, n, a, s, l) { + var c = 1 & n, + u = e.length, + d = t.length; + if (u != d && !(c && d > u)) return !1; + var f = l.get(e), + h = l.get(t); + if (f && h) return f == t && h == e; + var p = -1, + v = !0, + g = 2 & n ? new r() : void 0; + for (l.set(e, t), l.set(t, e); ++p < u; ) { + var m = e[p], + y = t[p]; + if (a) var b = c ? a(y, m, p, t, e, l) : a(m, y, p, e, t, l); + if (void 0 !== b) { + if (b) continue; + v = !1; + break; + } + if (g) { + if ( + !o(t, function (e, t) { + if (!i(g, t) && (m === e || s(m, e, n, a, l))) return g.push(t); + }) + ) { + v = !1; + break; + } + } else if (m !== y && !s(m, y, n, a, l)) { + v = !1; + break; + } + } + return l.delete(e), l.delete(t), v; + }; + }, + 21080: (e, t, n) => { + var r = n(70861), + o = n(3526), + i = n(58260), + a = n(14952), + s = n(81140), + l = n(77969), + c = r ? r.prototype : void 0, + u = c ? c.valueOf : void 0; + e.exports = function (e, t, n, r, c, d, f) { + switch (n) { + case '[object DataView]': + if (e.byteLength != t.byteLength || e.byteOffset != t.byteOffset) return !1; + (e = e.buffer), (t = t.buffer); + case '[object ArrayBuffer]': + return !(e.byteLength != t.byteLength || !d(new o(e), new o(t))); + case '[object Boolean]': + case '[object Date]': + case '[object Number]': + return i(+e, +t); + case '[object Error]': + return e.name == t.name && e.message == t.message; + case '[object RegExp]': + case '[object String]': + return e == t + ''; + case '[object Map]': + var h = s; + case '[object Set]': + var p = 1 & r; + if ((h || (h = l), e.size != t.size && !p)) return !1; + var v = f.get(e); + if (v) return v == t; + (r |= 2), f.set(e, t); + var g = a(h(e), h(t), r, c, d, f); + return f.delete(e), g; + case '[object Symbol]': + if (u) return u.call(e) == u.call(t); + } + return !1; + }; + }, + 86524: (e, t, n) => { + var r = n(54357), + o = Object.prototype.hasOwnProperty; + e.exports = function (e, t, n, i, a, s) { + var l = 1 & n, + c = r(e), + u = c.length; + if (u != r(t).length && !l) return !1; + for (var d = u; d--; ) { + var f = c[d]; + if (!(l ? f in t : o.call(t, f))) return !1; + } + var h = s.get(e), + p = s.get(t); + if (h && p) return h == t && p == e; + var v = !0; + s.set(e, t), s.set(t, e); + for (var g = l; ++d < u; ) { + var m = e[(f = c[d])], + y = t[f]; + if (i) var b = l ? i(y, m, f, t, e, s) : i(m, y, f, e, t, s); + if (!(void 0 === b ? m === y || a(m, y, n, i, s) : b)) { + v = !1; + break; + } + g || (g = 'constructor' == f); + } + if (v && !g) { + var x = e.constructor, + w = t.constructor; + x == w || + !('constructor' in e) || + !('constructor' in t) || + ('function' == typeof x && x instanceof x && 'function' == typeof w && w instanceof w) || + (v = !1); + } + return s.delete(e), s.delete(t), v; + }; + }, + 33273: (e, t, n) => { + var r = n(62923), + o = n(20340), + i = n(4173); + e.exports = function (e) { + return i(o(e, void 0, r), e + ''); + }; + }, + 20302: (e, t, n) => { + var r = 'object' == typeof n.g && n.g && n.g.Object === Object && n.g; + e.exports = r; + }, + 54357: (e, t, n) => { + var r = n(4468), + o = n(44450), + i = n(62096); + e.exports = function (e) { + return r(e, i, o); + }; + }, + 55713: (e, t, n) => { + var r = n(4468), + o = n(94969), + i = n(9882); + e.exports = function (e) { + return r(e, i, o); + }; + }, + 77570: (e, t, n) => { + var r = n(58949); + e.exports = function (e, t) { + var n = e.__data__; + return r(t) ? n['string' == typeof t ? 'string' : 'hash'] : n.map; + }; + }, + 72198: (e, t, n) => { + var r = n(18802), + o = n(62096); + e.exports = function (e) { + for (var t = o(e), n = t.length; n--; ) { + var i = t[n], + a = e[i]; + t[n] = [i, a, r(a)]; + } + return t; + }; + }, + 65234: (e, t, n) => { + var r = n(99817), + o = n(67736); + e.exports = function (e, t) { + var n = o(e, t); + return r(n) ? n : void 0; + }; + }, + 18490: (e, t, n) => { + var r = n(33540)(Object.getPrototypeOf, Object); + e.exports = r; + }, + 91339: (e, t, n) => { + var r = n(70861), + o = Object.prototype, + i = o.hasOwnProperty, + a = o.toString, + s = r ? r.toStringTag : void 0; + e.exports = function (e) { + var t = i.call(e, s), + n = e[s]; + try { + e[s] = void 0; + var r = !0; + } catch (l) {} + var o = a.call(e); + return r && (t ? (e[s] = n) : delete e[s]), o; + }; + }, + 44450: (e, t, n) => { + var r = n(82493), + o = n(84506), + i = Object.prototype.propertyIsEnumerable, + a = Object.getOwnPropertySymbols, + s = a + ? function (e) { + return null == e + ? [] + : ((e = Object(e)), + r(a(e), function (t) { + return i.call(e, t); + })); + } + : o; + e.exports = s; + }, + 94969: (e, t, n) => { + var r = n(10111), + o = n(18490), + i = n(44450), + a = n(84506), + s = Object.getOwnPropertySymbols + ? function (e) { + for (var t = []; e; ) r(t, i(e)), (e = o(e)); + return t; + } + : a; + e.exports = s; + }, + 87493: (e, t, n) => { + var r = n(94466), + o = n(72887), + i = n(95747), + a = n(56616), + s = n(98001), + l = n(69823), + c = n(55784), + u = '[object Map]', + d = '[object Promise]', + f = '[object Set]', + h = '[object WeakMap]', + p = '[object DataView]', + v = c(r), + g = c(o), + m = c(i), + y = c(a), + b = c(s), + x = l; + ((r && x(new r(new ArrayBuffer(1))) != p) || + (o && x(new o()) != u) || + (i && x(i.resolve()) != d) || + (a && x(new a()) != f) || + (s && x(new s()) != h)) && + (x = function (e) { + var t = l(e), + n = '[object Object]' == t ? e.constructor : void 0, + r = n ? c(n) : ''; + if (r) + switch (r) { + case v: + return p; + case g: + return u; + case m: + return d; + case y: + return f; + case b: + return h; + } + return t; + }), + (e.exports = x); + }, + 67736: e => { + e.exports = function (e, t) { + return null == e ? void 0 : e[t]; + }; + }, + 13544: (e, t, n) => { + var r = n(24007), + o = n(79312), + i = n(55589), + a = n(5023), + s = n(66052), + l = n(86040); + e.exports = function (e, t, n) { + for (var c = -1, u = (t = r(t, e)).length, d = !1; ++c < u; ) { + var f = l(t[c]); + if (!(d = null != e && n(e, f))) break; + e = e[f]; + } + return d || ++c != u ? d : !!(u = null == e ? 0 : e.length) && s(u) && a(f, u) && (i(e) || o(e)); + }; + }, + 63932: e => { + var t = RegExp('[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]'); + e.exports = function (e) { + return t.test(e); + }; + }, + 34440: (e, t, n) => { + var r = n(24545); + e.exports = function () { + (this.__data__ = r ? r(null) : {}), (this.size = 0); + }; + }, + 84108: e => { + e.exports = function (e) { + var t = this.has(e) && delete this.__data__[e]; + return (this.size -= t ? 1 : 0), t; + }; + }, + 61085: (e, t, n) => { + var r = n(24545), + o = Object.prototype.hasOwnProperty; + e.exports = function (e) { + var t = this.__data__; + if (r) { + var n = t[e]; + return '__lodash_hash_undefined__' === n ? void 0 : n; + } + return o.call(t, e) ? t[e] : void 0; + }; + }, + 77706: (e, t, n) => { + var r = n(24545), + o = Object.prototype.hasOwnProperty; + e.exports = function (e) { + var t = this.__data__; + return r ? void 0 !== t[e] : o.call(t, e); + }; + }, + 8636: (e, t, n) => { + var r = n(24545); + e.exports = function (e, t) { + var n = this.__data__; + return (this.size += this.has(e) ? 0 : 1), (n[e] = r && void 0 === t ? '__lodash_hash_undefined__' : t), this; + }; + }, + 82865: e => { + var t = Object.prototype.hasOwnProperty; + e.exports = function (e) { + var n = e.length, + r = new e.constructor(n); + return n && 'string' == typeof e[0] && t.call(e, 'index') && ((r.index = e.index), (r.input = e.input)), r; + }; + }, + 11908: (e, t, n) => { + var r = n(72962), + o = n(97037), + i = n(3429), + a = n(99349), + s = n(21327); + e.exports = function (e, t, n) { + var l = e.constructor; + switch (t) { + case '[object ArrayBuffer]': + return r(e); + case '[object Boolean]': + case '[object Date]': + return new l(+e); + case '[object DataView]': + return o(e, n); + case '[object Float32Array]': + case '[object Float64Array]': + case '[object Int8Array]': + case '[object Int16Array]': + case '[object Int32Array]': + case '[object Uint8Array]': + case '[object Uint8ClampedArray]': + case '[object Uint16Array]': + case '[object Uint32Array]': + return s(e, n); + case '[object Map]': + case '[object Set]': + return new l(); + case '[object Number]': + case '[object String]': + return new l(e); + case '[object RegExp]': + return i(e); + case '[object Symbol]': + return a(e); + } + }; + }, + 84046: (e, t, n) => { + var r = n(57890), + o = n(18490), + i = n(32840); + e.exports = function (e) { + return 'function' != typeof e.constructor || i(e) ? {} : r(o(e)); + }; + }, + 67123: (e, t, n) => { + var r = n(70861), + o = n(79312), + i = n(55589), + a = r ? r.isConcatSpreadable : void 0; + e.exports = function (e) { + return i(e) || o(e) || !!(a && e && e[a]); + }; + }, + 5023: e => { + var t = /^(?:0|[1-9]\d*)$/; + e.exports = function (e, n) { + var r = typeof e; + return ( + !!(n = n ?? 9007199254740991) && + ('number' == r || ('symbol' != r && t.test(e))) && + e > -1 && + e % 1 == 0 && + e < n + ); + }; + }, + 98132: (e, t, n) => { + var r = n(58260), + o = n(30568), + i = n(5023), + a = n(93702); + e.exports = function (e, t, n) { + if (!a(n)) return !1; + var s = typeof t; + return !!('number' == s ? o(n) && i(t, n.length) : 'string' == s && t in n) && r(n[t], e); + }; + }, + 5130: (e, t, n) => { + var r = n(55589), + o = n(52624), + i = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, + a = /^\w*$/; + e.exports = function (e, t) { + if (r(e)) return !1; + var n = typeof e; + return ( + !('number' != n && 'symbol' != n && 'boolean' != n && null != e && !o(e)) || + a.test(e) || + !i.test(e) || + (null != t && e in Object(t)) + ); + }; + }, + 58949: e => { + e.exports = function (e) { + var t = typeof e; + return 'string' == t || 'number' == t || 'symbol' == t || 'boolean' == t ? '__proto__' !== e : null === e; + }; + }, + 28597: (e, t, n) => { + var r, + o = n(1622), + i = (r = /[^.]+$/.exec((o && o.keys && o.keys.IE_PROTO) || '')) ? 'Symbol(src)_1.' + r : ''; + e.exports = function (e) { + return !!i && i in e; + }; + }, + 32840: e => { + var t = Object.prototype; + e.exports = function (e) { + var n = e && e.constructor; + return e === (('function' == typeof n && n.prototype) || t); + }; + }, + 18802: (e, t, n) => { + var r = n(93702); + e.exports = function (e) { + return e == e && !r(e); + }; + }, + 90266: e => { + e.exports = function () { + (this.__data__ = []), (this.size = 0); + }; + }, + 42875: (e, t, n) => { + var r = n(18498), + o = Array.prototype.splice; + e.exports = function (e) { + var t = this.__data__, + n = r(t, e); + return !(n < 0) && (n == t.length - 1 ? t.pop() : o.call(t, n, 1), --this.size, !0); + }; + }, + 45828: (e, t, n) => { + var r = n(18498); + e.exports = function (e) { + var t = this.__data__, + n = r(t, e); + return n < 0 ? void 0 : t[n][1]; + }; + }, + 24115: (e, t, n) => { + var r = n(18498); + e.exports = function (e) { + return r(this.__data__, e) > -1; + }; + }, + 67690: (e, t, n) => { + var r = n(18498); + e.exports = function (e, t) { + var n = this.__data__, + o = r(n, e); + return o < 0 ? (++this.size, n.push([e, t])) : (n[o][1] = t), this; + }; + }, + 39016: (e, t, n) => { + var r = n(85208), + o = n(81998), + i = n(72887); + e.exports = function () { + (this.size = 0), (this.__data__ = { hash: new r(), map: new (i || o)(), string: new r() }); + }; + }, + 62363: (e, t, n) => { + var r = n(77570); + e.exports = function (e) { + var t = r(this, e).delete(e); + return (this.size -= t ? 1 : 0), t; + }; + }, + 64348: (e, t, n) => { + var r = n(77570); + e.exports = function (e) { + return r(this, e).get(e); + }; + }, + 53062: (e, t, n) => { + var r = n(77570); + e.exports = function (e) { + return r(this, e).has(e); + }; + }, + 30262: (e, t, n) => { + var r = n(77570); + e.exports = function (e, t) { + var n = r(this, e), + o = n.size; + return n.set(e, t), (this.size += n.size == o ? 0 : 1), this; + }; + }, + 81140: e => { + e.exports = function (e) { + var t = -1, + n = Array(e.size); + return ( + e.forEach(function (e, r) { + n[++t] = [r, e]; + }), + n + ); + }; + }, + 94656: e => { + e.exports = function (e, t) { + return function (n) { + return null != n && n[e] === t && (void 0 !== t || e in Object(n)); + }; + }; + }, + 32924: (e, t, n) => { + var r = n(67997); + e.exports = function (e) { + var t = r(e, function (e) { + return 500 === n.size && n.clear(), e; + }), + n = t.cache; + return t; + }; + }, + 24545: (e, t, n) => { + var r = n(65234)(Object, 'create'); + e.exports = r; + }, + 82825: (e, t, n) => { + var r = n(33540)(Object.keys, Object); + e.exports = r; + }, + 84866: e => { + e.exports = function (e) { + var t = []; + if (null != e) for (var n in Object(e)) t.push(n); + return t; + }; + }, + 8690: (e, t, n) => { + e = n.nmd(e); + var r = n(20302), + o = t && !t.nodeType && t, + i = o && e && !e.nodeType && e, + a = i && i.exports === o && r.process, + s = (function () { + try { + var e = i && i.require && i.require('util').types; + return e || (a && a.binding && a.binding('util')); + } catch (t) {} + })(); + e.exports = s; + }, + 25151: e => { + var t = Object.prototype.toString; + e.exports = function (e) { + return t.call(e); + }; + }, + 33540: e => { + e.exports = function (e, t) { + return function (n) { + return e(t(n)); + }; + }; + }, + 20340: (e, t, n) => { + var r = n(82274), + o = Math.max; + e.exports = function (e, t, n) { + return ( + (t = o(void 0 === t ? e.length - 1 : t, 0)), + function () { + for (var i = arguments, a = -1, s = o(i.length - t, 0), l = Array(s); ++a < s; ) l[a] = i[t + a]; + a = -1; + for (var c = Array(t + 1); ++a < t; ) c[a] = i[a]; + return (c[t] = n(l)), r(e, this, c); + } + ); + }; + }, + 83250: (e, t, n) => { + var r = n(20302), + o = 'object' == typeof self && self && self.Object === Object && self, + i = r || o || Function('return this')(); + e.exports = i; + }, + 11933: e => { + e.exports = function (e, t) { + if (('constructor' !== t || 'function' != typeof e[t]) && '__proto__' != t) return e[t]; + }; + }, + 83937: e => { + e.exports = function (e) { + return this.__data__.set(e, '__lodash_hash_undefined__'), this; + }; + }, + 15009: e => { + e.exports = function (e) { + return this.__data__.has(e); + }; + }, + 77969: e => { + e.exports = function (e) { + var t = -1, + n = Array(e.size); + return ( + e.forEach(function (e) { + n[++t] = e; + }), + n + ); + }; + }, + 4173: (e, t, n) => { + var r = n(46739), + o = n(37357)(r); + e.exports = o; + }, + 37357: e => { + var t = Date.now; + e.exports = function (e) { + var n = 0, + r = 0; + return function () { + var o = t(), + i = 16 - (o - r); + if (((r = o), i > 0)) { + if (++n >= 800) return arguments[0]; + } else n = 0; + return e.apply(void 0, arguments); + }; + }; + }, + 93210: (e, t, n) => { + var r = n(81998); + e.exports = function () { + (this.__data__ = new r()), (this.size = 0); + }; + }, + 48603: e => { + e.exports = function (e) { + var t = this.__data__, + n = t.delete(e); + return (this.size = t.size), n; + }; + }, + 38947: e => { + e.exports = function (e) { + return this.__data__.get(e); + }; + }, + 70885: e => { + e.exports = function (e) { + return this.__data__.has(e); + }; + }, + 98938: (e, t, n) => { + var r = n(81998), + o = n(72887), + i = n(95678); + e.exports = function (e, t) { + var n = this.__data__; + if (n instanceof r) { + var a = n.__data__; + if (!o || a.length < 199) return a.push([e, t]), (this.size = ++n.size), this; + n = this.__data__ = new i(a); + } + return n.set(e, t), (this.size = n.size), this; + }; + }, + 45898: e => { + e.exports = function (e, t, n) { + for (var r = n - 1, o = e.length; ++r < o; ) if (e[r] === t) return r; + return -1; + }; + }, + 11324: (e, t, n) => { + var r = n(97088), + o = n(63932), + i = n(60445); + e.exports = function (e) { + return o(e) ? i(e) : r(e); + }; + }, + 44041: (e, t, n) => { + var r = n(32924), + o = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g, + i = /\\(\\)?/g, + a = r(function (e) { + var t = []; + return ( + 46 === e.charCodeAt(0) && t.push(''), + e.replace(o, function (e, n, r, o) { + t.push(r ? o.replace(i, '$1') : n || e); + }), + t + ); + }); + e.exports = a; + }, + 86040: (e, t, n) => { + var r = n(52624); + e.exports = function (e) { + if ('string' == typeof e || r(e)) return e; + var t = e + ''; + return '0' == t && 1 / e == -Infinity ? '-0' : t; + }; + }, + 55784: e => { + var t = Function.prototype.toString; + e.exports = function (e) { + if (null != e) { + try { + return t.call(e); + } catch (n) {} + try { + return e + ''; + } catch (n) {} + } + return ''; + }; + }, + 62438: e => { + var t = /\s/; + e.exports = function (e) { + for (var n = e.length; n-- && t.test(e.charAt(n)); ); + return n; + }; + }, + 60445: e => { + var t = '\\ud800-\\udfff', + n = '[' + t + ']', + r = '[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]', + o = '\\ud83c[\\udffb-\\udfff]', + i = '[^' + t + ']', + a = '(?:\\ud83c[\\udde6-\\uddff]){2}', + s = '[\\ud800-\\udbff][\\udc00-\\udfff]', + l = '(?:' + r + '|' + o + ')' + '?', + c = '[\\ufe0e\\ufe0f]?', + u = c + l + ('(?:\\u200d(?:' + [i, a, s].join('|') + ')' + c + l + ')*'), + d = '(?:' + [i + r + '?', r, a, s, n].join('|') + ')', + f = RegExp(o + '(?=' + o + ')|' + d + u, 'g'); + e.exports = function (e) { + for (var t = (f.lastIndex = 0); f.test(e); ) ++t; + return t; + }; + }, + 17953: (e, t, n) => { + var r = n(18361); + e.exports = function (e) { + return r(e, 4); + }; + }, + 77179: (e, t, n) => { + var r = n(18361); + e.exports = function (e) { + return r(e, 5); + }; + }, + 89203: e => { + e.exports = function (e) { + return function () { + return e; + }; + }; + }, + 77837: (e, t, n) => { + var r = n(93702), + o = n(80231), + i = n(29153), + a = Math.max, + s = Math.min; + e.exports = function (e, t, n) { + var l, + c, + u, + d, + f, + h, + p = 0, + v = !1, + g = !1, + m = !0; + if ('function' != typeof e) throw new TypeError('Expected a function'); + function y(t) { + var n = l, + r = c; + return (l = c = void 0), (p = t), (d = e.apply(r, n)); + } + function b(e) { + var n = e - h; + return void 0 === h || n >= t || n < 0 || (g && e - p >= u); + } + function x() { + var e = o(); + if (b(e)) return w(e); + f = setTimeout( + x, + (function (e) { + var n = t - (e - h); + return g ? s(n, u - (e - p)) : n; + })(e), + ); + } + function w(e) { + return (f = void 0), m && l ? y(e) : ((l = c = void 0), d); + } + function E() { + var e = o(), + n = b(e); + if (((l = arguments), (c = this), (h = e), n)) { + if (void 0 === f) + return (function (e) { + return (p = e), (f = setTimeout(x, t)), v ? y(e) : d; + })(h); + if (g) return clearTimeout(f), (f = setTimeout(x, t)), y(h); + } + return void 0 === f && (f = setTimeout(x, t)), d; + } + return ( + (t = i(t) || 0), + r(n) && + ((v = !!n.leading), + (u = (g = 'maxWait' in n) ? a(i(n.maxWait) || 0, t) : u), + (m = 'trailing' in n ? !!n.trailing : m)), + (E.cancel = function () { + void 0 !== f && clearTimeout(f), (p = 0), (l = h = c = f = void 0); + }), + (E.flush = function () { + return void 0 === f ? d : w(o()); + }), + E + ); + }; + }, + 73821: (e, t, n) => { + var r = n(29735), + o = n(58260), + i = n(98132), + a = n(9882), + s = Object.prototype, + l = s.hasOwnProperty, + c = r(function (e, t) { + e = Object(e); + var n = -1, + r = t.length, + c = r > 2 ? t[2] : void 0; + for (c && i(t[0], t[1], c) && (r = 1); ++n < r; ) + for (var u = t[n], d = a(u), f = -1, h = d.length; ++f < h; ) { + var p = d[f], + v = e[p]; + (void 0 === v || (o(v, s[p]) && !l.call(e, p))) && (e[p] = u[p]); + } + return e; + }); + e.exports = c; + }, + 20678: (e, t, n) => { + e.exports = n(77734); + }, + 58260: e => { + e.exports = function (e, t) { + return e === t || (e != e && t != t); + }; + }, + 64663: (e, t, n) => { + var r = n(82493), + o = n(68146), + i = n(55833), + a = n(55589); + e.exports = function (e, t) { + return (a(e) ? r : o)(e, i(t, 3)); + }; + }, + 26969: (e, t, n) => { + var r = n(29301)(n(69312)); + e.exports = r; + }, + 69312: (e, t, n) => { + var r = n(44770), + o = n(55833), + i = n(96843), + a = Math.max; + e.exports = function (e, t, n) { + var s = null == e ? 0 : e.length; + if (!s) return -1; + var l = null == n ? 0 : i(n); + return l < 0 && (l = a(s + l, 0)), r(e, o(t, 3), l); + }; + }, + 62923: (e, t, n) => { + var r = n(22825); + e.exports = function (e) { + return (null == e ? 0 : e.length) ? r(e, 1) : []; + }; + }, + 77734: (e, t, n) => { + var r = n(84004), + o = n(61701), + i = n(84781), + a = n(55589); + e.exports = function (e, t) { + return (a(e) ? r : o)(e, i(t)); + }; + }, + 87514: (e, t, n) => { + var r = n(39943), + o = n(84781), + i = n(9882); + e.exports = function (e, t) { + return null == e ? e : r(e, o(t), i); + }; + }, + 13546: (e, t, n) => { + var r = n(40548); + e.exports = function (e, t, n) { + var o = null == e ? void 0 : r(e, t); + return void 0 === o ? n : o; + }; + }, + 45346: (e, t, n) => { + var r = n(32586), + o = n(13544); + e.exports = function (e, t) { + return null != e && o(e, t, r); + }; + }, + 56708: (e, t, n) => { + var r = n(62902), + o = n(13544); + e.exports = function (e, t) { + return null != e && o(e, t, r); + }; + }, + 80229: e => { + e.exports = function (e) { + return e; + }; + }, + 79312: (e, t, n) => { + var r = n(33016), + o = n(50440), + i = Object.prototype, + a = i.hasOwnProperty, + s = i.propertyIsEnumerable, + l = r( + (function () { + return arguments; + })(), + ) + ? r + : function (e) { + return o(e) && a.call(e, 'callee') && !s.call(e, 'callee'); + }; + e.exports = l; + }, + 55589: e => { + var t = Array.isArray; + e.exports = t; + }, + 30568: (e, t, n) => { + var r = n(45563), + o = n(66052); + e.exports = function (e) { + return null != e && o(e.length) && !r(e); + }; + }, + 18268: (e, t, n) => { + var r = n(30568), + o = n(50440); + e.exports = function (e) { + return o(e) && r(e); + }; + }, + 85778: (e, t, n) => { + e = n.nmd(e); + var r = n(83250), + o = n(37999), + i = t && !t.nodeType && t, + a = i && e && !e.nodeType && e, + s = a && a.exports === i ? r.Buffer : void 0, + l = (s ? s.isBuffer : void 0) || o; + e.exports = l; + }, + 29787: (e, t, n) => { + var r = n(41351), + o = n(87493), + i = n(79312), + a = n(55589), + s = n(30568), + l = n(85778), + c = n(32840), + u = n(50922), + d = Object.prototype.hasOwnProperty; + e.exports = function (e) { + if (null == e) return !0; + if (s(e) && (a(e) || 'string' == typeof e || 'function' == typeof e.splice || l(e) || u(e) || i(e))) + return !e.length; + var t = o(e); + if ('[object Map]' == t || '[object Set]' == t) return !e.size; + if (c(e)) return !r(e).length; + for (var n in e) if (d.call(e, n)) return !1; + return !0; + }; + }, + 45563: (e, t, n) => { + var r = n(69823), + o = n(93702); + e.exports = function (e) { + if (!o(e)) return !1; + var t = r(e); + return ( + '[object Function]' == t || + '[object GeneratorFunction]' == t || + '[object AsyncFunction]' == t || + '[object Proxy]' == t + ); + }; + }, + 66052: e => { + e.exports = function (e) { + return 'number' == typeof e && e > -1 && e % 1 == 0 && e <= 9007199254740991; + }; + }, + 37613: (e, t, n) => { + var r = n(52275), + o = n(31525), + i = n(8690), + a = i && i.isMap, + s = a ? o(a) : r; + e.exports = s; + }, + 93702: e => { + e.exports = function (e) { + var t = typeof e; + return null != e && ('object' == t || 'function' == t); + }; + }, + 50440: e => { + e.exports = function (e) { + return null != e && 'object' == typeof e; + }; + }, + 54256: (e, t, n) => { + var r = n(69823), + o = n(18490), + i = n(50440), + a = Function.prototype, + s = Object.prototype, + l = a.toString, + c = s.hasOwnProperty, + u = l.call(Object); + e.exports = function (e) { + if (!i(e) || '[object Object]' != r(e)) return !1; + var t = o(e); + if (null === t) return !0; + var n = c.call(t, 'constructor') && t.constructor; + return 'function' == typeof n && n instanceof n && l.call(n) == u; + }; + }, + 60693: (e, t, n) => { + var r = n(7170), + o = n(31525), + i = n(8690), + a = i && i.isSet, + s = a ? o(a) : r; + e.exports = s; + }, + 76705: (e, t, n) => { + var r = n(69823), + o = n(55589), + i = n(50440); + e.exports = function (e) { + return 'string' == typeof e || (!o(e) && i(e) && '[object String]' == r(e)); + }; + }, + 52624: (e, t, n) => { + var r = n(69823), + o = n(50440); + e.exports = function (e) { + return 'symbol' == typeof e || (o(e) && '[object Symbol]' == r(e)); + }; + }, + 50922: (e, t, n) => { + var r = n(42448), + o = n(31525), + i = n(8690), + a = i && i.isTypedArray, + s = a ? o(a) : r; + e.exports = s; + }, + 86474: e => { + e.exports = function (e) { + return void 0 === e; + }; + }, + 62096: (e, t, n) => { + var r = n(75825), + o = n(41351), + i = n(30568); + e.exports = function (e) { + return i(e) ? r(e) : o(e); + }; + }, + 9882: (e, t, n) => { + var r = n(75825), + o = n(71309), + i = n(30568); + e.exports = function (e) { + return i(e) ? r(e, !0) : o(e); + }; + }, + 77875: e => { + e.exports = function (e) { + var t = null == e ? 0 : e.length; + return t ? e[t - 1] : void 0; + }; + }, + 69107: (e, t, n) => { + var r = n(29233), + o = n(55833), + i = n(78068), + a = n(55589); + e.exports = function (e, t) { + return (a(e) ? r : i)(e, o(t, 3)); + }; + }, + 61230: (e, t, n) => { + var r = n(87500), + o = n(44003), + i = n(55833); + e.exports = function (e, t) { + var n = {}; + return ( + (t = i(t, 3)), + o(e, function (e, o, i) { + r(n, o, t(e, o, i)); + }), + n + ); + }; + }, + 56492: (e, t, n) => { + var r = n(85117), + o = n(51669), + i = n(80229); + e.exports = function (e) { + return e && e.length ? r(e, i, o) : void 0; + }; + }, + 67997: (e, t, n) => { + var r = n(95678); + function o(e, t) { + if ('function' != typeof e || (null != t && 'function' != typeof t)) throw new TypeError('Expected a function'); + var n = function () { + var r = arguments, + o = t ? t.apply(this, r) : r[0], + i = n.cache; + if (i.has(o)) return i.get(o); + var a = e.apply(this, r); + return (n.cache = i.set(o, a) || i), a; + }; + return (n.cache = new (o.Cache || r)()), n; + } + (o.Cache = r), (e.exports = o); + }, + 88469: (e, t, n) => { + var r = n(92133), + o = n(66948)(function (e, t, n) { + r(e, t, n); + }); + e.exports = o; + }, + 65071: (e, t, n) => { + var r = n(85117), + o = n(46718), + i = n(80229); + e.exports = function (e) { + return e && e.length ? r(e, i, o) : void 0; + }; + }, + 76838: (e, t, n) => { + var r = n(85117), + o = n(55833), + i = n(46718); + e.exports = function (e, t) { + return e && e.length ? r(e, o(t, 2), i) : void 0; + }; + }, + 71607: e => { + e.exports = function () {}; + }, + 80231: (e, t, n) => { + var r = n(83250); + e.exports = function () { + return r.Date.now(); + }; + }, + 49335: (e, t, n) => { + var r = n(21785), + o = n(33273)(function (e, t) { + return null == e ? {} : r(e, t); + }); + e.exports = o; + }, + 94437: (e, t, n) => { + var r = n(86174), + o = n(3293), + i = n(5130), + a = n(86040); + e.exports = function (e) { + return i(e) ? r(a(e)) : o(e); + }; + }, + 38569: (e, t, n) => { + var r = n(51523)(); + e.exports = r; + }, + 17682: (e, t, n) => { + var r = n(85115), + o = n(61701), + i = n(55833), + a = n(34306), + s = n(55589); + e.exports = function (e, t, n) { + var l = s(e) ? r : a, + c = arguments.length < 3; + return l(e, i(t, 4), n, c, o); + }; + }, + 26226: (e, t, n) => { + var r = n(32619); + e.exports = function (e, t, n) { + return null == e ? e : r(e, t, n); + }; + }, + 91039: (e, t, n) => { + var r = n(41351), + o = n(87493), + i = n(30568), + a = n(76705), + s = n(11324); + e.exports = function (e) { + if (null == e) return 0; + if (i(e)) return a(e) ? s(e) : e.length; + var t = o(e); + return '[object Map]' == t || '[object Set]' == t ? e.size : r(e).length; + }; + }, + 71635: (e, t, n) => { + var r = n(22825), + o = n(54466), + i = n(29735), + a = n(98132), + s = i(function (e, t) { + if (null == e) return []; + var n = t.length; + return n > 1 && a(e, t[0], t[1]) ? (t = []) : n > 2 && a(t[0], t[1], t[2]) && (t = [t[0]]), o(e, r(t, 1), []); + }); + e.exports = s; + }, + 84506: e => { + e.exports = function () { + return []; + }; + }, + 37999: e => { + e.exports = function () { + return !1; + }; + }, + 99558: (e, t, n) => { + var r = n(29153), + o = 1 / 0; + e.exports = function (e) { + return e + ? (e = r(e)) === o || e === -1 / 0 + ? 17976931348623157e292 * (e < 0 ? -1 : 1) + : e == e + ? e + : 0 + : 0 === e + ? e + : 0; + }; + }, + 96843: (e, t, n) => { + var r = n(99558); + e.exports = function (e) { + var t = r(e), + n = t % 1; + return t == t ? (n ? t - n : t) : 0; + }; + }, + 29153: (e, t, n) => { + var r = n(21656), + o = n(93702), + i = n(52624), + a = /^[-+]0x[0-9a-f]+$/i, + s = /^0b[01]+$/i, + l = /^0o[0-7]+$/i, + c = parseInt; + e.exports = function (e) { + if ('number' == typeof e) return e; + if (i(e)) return NaN; + if (o(e)) { + var t = 'function' == typeof e.valueOf ? e.valueOf() : e; + e = o(t) ? t + '' : t; + } + if ('string' != typeof e) return 0 === e ? e : +e; + e = r(e); + var n = s.test(e); + return n || l.test(e) ? c(e.slice(2), n ? 2 : 8) : a.test(e) ? NaN : +e; + }; + }, + 59430: (e, t, n) => { + var r = n(29233), + o = n(32166), + i = n(55589), + a = n(52624), + s = n(44041), + l = n(86040), + c = n(99835); + e.exports = function (e) { + return i(e) ? r(e, l) : a(e) ? [e] : o(s(c(e))); + }; + }, + 36222: (e, t, n) => { + var r = n(78618), + o = n(9882); + e.exports = function (e) { + return r(e, o(e)); + }; + }, + 99835: (e, t, n) => { + var r = n(86245); + e.exports = function (e) { + return null == e ? '' : r(e); + }; + }, + 63604: (e, t, n) => { + var r = n(84004), + o = n(57890), + i = n(44003), + a = n(55833), + s = n(18490), + l = n(55589), + c = n(85778), + u = n(45563), + d = n(93702), + f = n(50922); + e.exports = function (e, t, n) { + var h = l(e), + p = h || c(e) || f(e); + if (((t = a(t, 4)), null == n)) { + var v = e && e.constructor; + n = p ? (h ? new v() : []) : d(e) && u(v) ? o(s(e)) : {}; + } + return ( + (p ? r : i)(e, function (e, r, o) { + return t(n, e, r, o); + }), + n + ); + }; + }, + 27767: (e, t, n) => { + var r = n(22825), + o = n(29735), + i = n(80135), + a = n(18268), + s = o(function (e) { + return i(r(e, 1, a, !0)); + }); + e.exports = s; + }, + 61422: (e, t, n) => { + var r = n(99835), + o = 0; + e.exports = function (e) { + var t = ++o; + return r(e) + t; + }; + }, + 31682: (e, t, n) => { + var r = n(20071), + o = n(62096); + e.exports = function (e) { + return null == e ? [] : r(e, o(e)); + }; + }, + 54142: (e, t, n) => { + var r = n(93192), + o = n(36302); + e.exports = function (e, t) { + return o(e || [], t || [], r); + }; + }, + 33286: (e, t, n) => { + 'use strict'; + n.r(t), + n.d(t, { + Children: () => z, + Component: () => a.wA, + Fragment: () => a.HY, + PureComponent: () => A, + StrictMode: () => xe, + Suspense: () => H, + SuspenseList: () => q, + __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: () => de, + cloneElement: () => ve, + createContext: () => a.kr, + createElement: () => a.az, + createFactory: () => he, + createPortal: () => K, + createRef: () => a.Vf, + default: () => we, + findDOMNode: () => me, + flushSync: () => be, + forwardRef: () => B, + hydrate: () => ne, + isValidElement: () => pe, + lazy: () => U, + memo: () => R, + render: () => te, + unmountComponentAtNode: () => ge, + unstable_batchedUpdates: () => ye, + useCallback: () => E, + useContext: () => k, + useDebugValue: () => _, + useEffect: () => m, + useErrorBoundary: () => S, + useImperativeHandle: () => x, + useLayoutEffect: () => y, + useMemo: () => w, + useReducer: () => g, + useRef: () => b, + useState: () => v, + version: () => fe, + }); + var r, + o, + i, + a = n(75644), + s = 0, + l = [], + c = a.YM.__b, + u = a.YM.__r, + d = a.YM.diffed, + f = a.YM.__c, + h = a.YM.unmount; + function p(e, t) { + a.YM.__h && a.YM.__h(o, e, s || t), (s = 0); + var n = o.__H || (o.__H = { __: [], __h: [] }); + return e >= n.__.length && n.__.push({}), n.__[e]; + } + function v(e) { + return (s = 1), g(N, e); + } + function g(e, t, n) { + var i = p(r++, 2); + return ( + (i.t = e), + i.__c || + ((i.__ = [ + n ? n(t) : N(void 0, t), + function (e) { + var t = i.t(i.__[0], e); + i.__[0] !== t && ((i.__ = [t, i.__[1]]), i.__c.setState({})); + }, + ]), + (i.__c = o)), + i.__ + ); + } + function m(e, t) { + var n = p(r++, 3); + !a.YM.__s && D(n.__H, t) && ((n.__ = e), (n.__H = t), o.__H.__h.push(n)); + } + function y(e, t) { + var n = p(r++, 4); + !a.YM.__s && D(n.__H, t) && ((n.__ = e), (n.__H = t), o.__h.push(n)); + } + function b(e) { + return ( + (s = 5), + w(function () { + return { current: e }; + }, []) + ); + } + function x(e, t, n) { + (s = 6), + y( + function () { + 'function' == typeof e ? e(t()) : e && (e.current = t()); + }, + null == n ? n : n.concat(e), + ); + } + function w(e, t) { + var n = p(r++, 7); + return D(n.__H, t) && ((n.__ = e()), (n.__H = t), (n.__h = e)), n.__; + } + function E(e, t) { + return ( + (s = 8), + w(function () { + return e; + }, t) + ); + } + function k(e) { + var t = o.context[e.__c], + n = p(r++, 9); + return (n.c = e), t ? (null == n.__ && ((n.__ = !0), t.sub(o)), t.props.value) : e.__; + } + function _(e, t) { + a.YM.useDebugValue && a.YM.useDebugValue(t ? t(e) : e); + } + function S(e) { + var t = p(r++, 10), + n = v(); + return ( + (t.__ = e), + o.componentDidCatch || + (o.componentDidCatch = function (e) { + t.__ && t.__(e), n[1](e); + }), + [ + n[0], + function () { + n[1](void 0); + }, + ] + ); + } + function P() { + var e; + for ( + l.sort(function (e, t) { + return e.__v.__b - t.__v.__b; + }); + (e = l.pop()); + + ) + if (e.__P) + try { + e.__H.__h.forEach(j), e.__H.__h.forEach(T), (e.__H.__h = []); + } catch (o) { + (e.__H.__h = []), a.YM.__e(o, e.__v); + } + } + (a.YM.__b = function (e) { + (o = null), c && c(e); + }), + (a.YM.__r = function (e) { + u && u(e), (r = 0); + var t = (o = e.__c).__H; + t && (t.__h.forEach(j), t.__h.forEach(T), (t.__h = [])); + }), + (a.YM.diffed = function (e) { + d && d(e); + var t = e.__c; + t && + t.__H && + t.__H.__h.length && + ((1 !== l.push(t) && i === a.YM.requestAnimationFrame) || + ( + (i = a.YM.requestAnimationFrame) || + function (e) { + var t, + n = function () { + clearTimeout(r), C && cancelAnimationFrame(t), setTimeout(e); + }, + r = setTimeout(n, 100); + C && (t = requestAnimationFrame(n)); + } + )(P)), + (o = null); + }), + (a.YM.__c = function (e, t) { + t.some(function (e) { + try { + e.__h.forEach(j), + (e.__h = e.__h.filter(function (e) { + return !e.__ || T(e); + })); + } catch (i) { + t.some(function (e) { + e.__h && (e.__h = []); + }), + (t = []), + a.YM.__e(i, e.__v); + } + }), + f && f(e, t); + }), + (a.YM.unmount = function (e) { + h && h(e); + var t, + n = e.__c; + n && + n.__H && + (n.__H.__.forEach(function (e) { + try { + j(e); + } catch (e) { + t = e; + } + }), + t && a.YM.__e(t, n.__v)); + }); + var C = 'function' == typeof requestAnimationFrame; + function j(e) { + var t = o, + n = e.__c; + 'function' == typeof n && ((e.__c = void 0), n()), (o = t); + } + function T(e) { + var t = o; + (e.__c = e.__()), (o = t); + } + function D(e, t) { + return ( + !e || + e.length !== t.length || + t.some(function (t, n) { + return t !== e[n]; + }) + ); + } + function N(e, t) { + return 'function' == typeof t ? t(e) : t; + } + function M(e, t) { + for (var n in t) e[n] = t[n]; + return e; + } + function O(e, t) { + for (var n in e) if ('__source' !== n && !(n in t)) return !0; + for (var r in t) if ('__source' !== r && e[r] !== t[r]) return !0; + return !1; + } + function A(e) { + this.props = e; + } + function R(e, t) { + function n(e) { + var n = this.props.ref, + r = n == e.ref; + return !r && n && (n.call ? n(null) : (n.current = null)), t ? !t(this.props, e) || !r : O(this.props, e); + } + function r(t) { + return (this.shouldComponentUpdate = n), (0, a.az)(e, t); + } + return ( + (r.displayName = 'Memo(' + (e.displayName || e.name) + ')'), + (r.prototype.isReactComponent = !0), + (r.__f = !0), + r + ); + } + ((A.prototype = new a.wA()).isPureReactComponent = !0), + (A.prototype.shouldComponentUpdate = function (e, t) { + return O(this.props, e) || O(this.state, t); + }); + var L = a.YM.__b; + a.YM.__b = function (e) { + e.type && e.type.__f && e.ref && ((e.props.ref = e.ref), (e.ref = null)), L && L(e); + }; + var I = ('undefined' != typeof Symbol && Symbol.for && Symbol.for('react.forward_ref')) || 3911; + function B(e) { + function t(t, n) { + var r = M({}, t); + return delete r.ref, e(r, (n = t.ref || n) && ('object' != typeof n || 'current' in n) ? n : null); + } + return ( + (t.$$typeof = I), + (t.render = t), + (t.prototype.isReactComponent = t.__f = !0), + (t.displayName = 'ForwardRef(' + (e.displayName || e.name) + ')'), + t + ); + } + var F = function (e, t) { + return null == e ? null : (0, a.bR)((0, a.bR)(e).map(t)); + }, + z = { + map: F, + forEach: F, + count: function (e) { + return e ? (0, a.bR)(e).length : 0; + }, + only: function (e) { + var t = (0, a.bR)(e); + if (1 !== t.length) throw 'Children.only'; + return t[0]; + }, + toArray: a.bR, + }, + V = a.YM.__e; + a.YM.__e = function (e, t, n) { + if (e.then) + for (var r, o = t; (o = o.__); ) + if ((r = o.__c) && r.__c) return null == t.__e && ((t.__e = n.__e), (t.__k = n.__k)), r.__c(e, t); + V(e, t, n); + }; + var G = a.YM.unmount; + function H() { + (this.__u = 0), (this.t = null), (this.__b = null); + } + function W(e) { + var t = e.__.__c; + return t && t.__e && t.__e(e); + } + function U(e) { + var t, n, r; + function o(o) { + if ( + (t || + (t = e()).then( + function (e) { + n = e.default || e; + }, + function (e) { + r = e; + }, + ), + r) + ) + throw r; + if (!n) throw t; + return (0, a.az)(n, o); + } + return (o.displayName = 'Lazy'), (o.__f = !0), o; + } + function q() { + (this.u = null), (this.o = null); + } + (a.YM.unmount = function (e) { + var t = e.__c; + t && t.__R && t.__R(), t && !0 === e.__h && (e.type = null), G && G(e); + }), + ((H.prototype = new a.wA()).__c = function (e, t) { + var n = t.__c, + r = this; + null == r.t && (r.t = []), r.t.push(n); + var o = W(r.__v), + i = !1, + a = function () { + i || ((i = !0), (n.__R = null), o ? o(s) : s()); + }; + n.__R = a; + var s = function () { + if (!--r.__u) { + if (r.state.__e) { + var e = r.state.__e; + r.__v.__k[0] = (function e(t, n, r) { + return ( + t && + ((t.__v = null), + (t.__k = + t.__k && + t.__k.map(function (t) { + return e(t, n, r); + })), + t.__c && + t.__c.__P === n && + (t.__e && r.insertBefore(t.__e, t.__d), (t.__c.__e = !0), (t.__c.__P = r))), + t + ); + })(e, e.__c.__P, e.__c.__O); + } + var t; + for (r.setState({ __e: (r.__b = null) }); (t = r.t.pop()); ) t.forceUpdate(); + } + }, + l = !0 === t.__h; + r.__u++ || l || r.setState({ __e: (r.__b = r.__v.__k[0]) }), e.then(a, a); + }), + (H.prototype.componentWillUnmount = function () { + this.t = []; + }), + (H.prototype.render = function (e, t) { + if (this.__b) { + if (this.__v.__k) { + var n = document.createElement('div'), + r = this.__v.__k[0].__c; + this.__v.__k[0] = (function e(t, n, r) { + return ( + t && + (t.__c && + t.__c.__H && + (t.__c.__H.__.forEach(function (e) { + 'function' == typeof e.__c && e.__c(); + }), + (t.__c.__H = null)), + null != (t = M({}, t)).__c && (t.__c.__P === r && (t.__c.__P = n), (t.__c = null)), + (t.__k = + t.__k && + t.__k.map(function (t) { + return e(t, n, r); + }))), + t + ); + })(this.__b, n, (r.__O = r.__P)); + } + this.__b = null; + } + var o = t.__e && (0, a.az)(a.HY, null, e.fallback); + return o && (o.__h = null), [(0, a.az)(a.HY, null, t.__e ? null : e.children), o]; + }); + var Y = function (e, t, n) { + if ((++n[1] === n[0] && e.o.delete(t), e.props.revealOrder && ('t' !== e.props.revealOrder[0] || !e.o.size))) + for (n = e.u; n; ) { + for (; n.length > 3; ) n.pop()(); + if (n[1] < n[0]) break; + e.u = n = n[2]; + } + }; + function X(e) { + return ( + (this.getChildContext = function () { + return e.context; + }), + e.children + ); + } + function $(e) { + var t = this, + n = e.i; + (t.componentWillUnmount = function () { + (0, a.sY)(null, t.l), (t.l = null), (t.i = null); + }), + t.i && t.i !== n && t.componentWillUnmount(), + e.__v + ? (t.l || + ((t.i = n), + (t.l = { + nodeType: 1, + parentNode: n, + childNodes: [], + appendChild: function (e) { + this.childNodes.push(e), t.i.appendChild(e); + }, + insertBefore: function (e, n) { + this.childNodes.push(e), t.i.appendChild(e); + }, + removeChild: function (e) { + this.childNodes.splice(this.childNodes.indexOf(e) >>> 1, 1), t.i.removeChild(e); + }, + })), + (0, a.sY)((0, a.az)(X, { context: t.context }, e.__v), t.l)) + : t.l && t.componentWillUnmount(); + } + function K(e, t) { + return (0, a.az)($, { __v: e, i: t }); + } + ((q.prototype = new a.wA()).__e = function (e) { + var t = this, + n = W(t.__v), + r = t.o.get(e); + return ( + r[0]++, + function (o) { + var i = function () { + t.props.revealOrder ? (r.push(o), Y(t, e, r)) : o(); + }; + n ? n(i) : i(); + } + ); + }), + (q.prototype.render = function (e) { + (this.u = null), (this.o = new Map()); + var t = (0, a.bR)(e.children); + e.revealOrder && 'b' === e.revealOrder[0] && t.reverse(); + for (var n = t.length; n--; ) this.o.set(t[n], (this.u = [1, 0, this.u])); + return e.children; + }), + (q.prototype.componentDidUpdate = q.prototype.componentDidMount = + function () { + var e = this; + this.o.forEach(function (t, n) { + Y(e, n, t); + }); + }); + var Z = ('undefined' != typeof Symbol && Symbol.for && Symbol.for('react.element')) || 60103, + Q = + /^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|marker(?!H|W|U)|overline|paint|stop|strikethrough|stroke|text(?!L)|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/, + J = 'undefined' != typeof document, + ee = function (e) { + return ('undefined' != typeof Symbol && 'symbol' == typeof Symbol() ? /fil|che|rad/i : /fil|che|ra/i).test(e); + }; + function te(e, t, n) { + return null == t.__k && (t.textContent = ''), (0, a.sY)(e, t), 'function' == typeof n && n(), e ? e.__c : null; + } + function ne(e, t, n) { + return (0, a.ZB)(e, t), 'function' == typeof n && n(), e ? e.__c : null; + } + (a.wA.prototype.isReactComponent = {}), + ['componentWillMount', 'componentWillReceiveProps', 'componentWillUpdate'].forEach(function (e) { + Object.defineProperty(a.wA.prototype, e, { + configurable: !0, + get: function () { + return this['UNSAFE_' + e]; + }, + set: function (t) { + Object.defineProperty(this, e, { configurable: !0, writable: !0, value: t }); + }, + }); + }); + var re = a.YM.event; + function oe() {} + function ie() { + return this.cancelBubble; + } + function ae() { + return this.defaultPrevented; + } + a.YM.event = function (e) { + return ( + re && (e = re(e)), + (e.persist = oe), + (e.isPropagationStopped = ie), + (e.isDefaultPrevented = ae), + (e.nativeEvent = e) + ); + }; + var se, + le = { + configurable: !0, + get: function () { + return this.class; + }, + }, + ce = a.YM.vnode; + a.YM.vnode = function (e) { + var t = e.type, + n = e.props, + r = n; + if ('string' == typeof t) { + var o = -1 === t.indexOf('-'); + for (var i in ((r = {}), n)) { + var s = n[i]; + (J && 'children' === i && 'noscript' === t) || + ('value' === i && 'defaultValue' in n && null == s) || + ('defaultValue' === i && 'value' in n && null == n.value + ? (i = 'value') + : 'download' === i && !0 === s + ? (s = '') + : /ondoubleclick/i.test(i) + ? (i = 'ondblclick') + : /^onchange(textarea|input)/i.test(i + t) && !ee(n.type) + ? (i = 'oninput') + : /^onfocus$/i.test(i) + ? (i = 'onfocusin') + : /^onblur$/i.test(i) + ? (i = 'onfocusout') + : /^on(Ani|Tra|Tou|BeforeInp)/.test(i) + ? (i = i.toLowerCase()) + : o && Q.test(i) + ? (i = i.replace(/[A-Z0-9]/, '-$&').toLowerCase()) + : null === s && (s = void 0), + (r[i] = s)); + } + 'select' == t && + r.multiple && + Array.isArray(r.value) && + (r.value = (0, a.bR)(n.children).forEach(function (e) { + e.props.selected = -1 != r.value.indexOf(e.props.value); + })), + 'select' == t && + null != r.defaultValue && + (r.value = (0, a.bR)(n.children).forEach(function (e) { + e.props.selected = r.multiple + ? -1 != r.defaultValue.indexOf(e.props.value) + : r.defaultValue == e.props.value; + })), + (e.props = r), + n.class != n.className && + ((le.enumerable = 'className' in n), + null != n.className && (r.class = n.className), + Object.defineProperty(r, 'className', le)); + } + (e.$$typeof = Z), ce && ce(e); + }; + var ue = a.YM.__r; + a.YM.__r = function (e) { + ue && ue(e), (se = e.__c); + }; + var de = { + ReactCurrentDispatcher: { + current: { + readContext: function (e) { + return se.__n[e.__c].props.value; + }, + }, + }, + }, + fe = '17.0.2'; + function he(e) { + return a.az.bind(null, e); + } + function pe(e) { + return !!e && e.$$typeof === Z; + } + function ve(e) { + return pe(e) ? a.Tm.apply(null, arguments) : e; + } + function ge(e) { + return !!e.__k && ((0, a.sY)(null, e), !0); + } + function me(e) { + return (e && (e.base || (1 === e.nodeType && e))) || null; + } + var ye = function (e, t) { + return e(t); + }, + be = function (e, t) { + return e(t); + }, + xe = a.HY; + const we = { + useState: v, + useReducer: g, + useEffect: m, + useLayoutEffect: y, + useRef: b, + useImperativeHandle: x, + useMemo: w, + useCallback: E, + useContext: k, + useDebugValue: _, + version: '17.0.2', + Children: z, + render: te, + hydrate: ne, + unmountComponentAtNode: ge, + createPortal: K, + createElement: a.az, + createContext: a.kr, + createFactory: he, + cloneElement: ve, + createRef: a.Vf, + Fragment: a.HY, + isValidElement: pe, + findDOMNode: me, + Component: a.wA, + PureComponent: A, + memo: R, + forwardRef: B, + flushSync: be, + unstable_batchedUpdates: ye, + StrictMode: a.HY, + Suspense: H, + SuspenseList: q, + lazy: U, + __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: de, + }; + }, + 75644: (e, t, n) => { + 'use strict'; + n.d(t, { + HY: () => y, + Tm: () => z, + Vf: () => m, + YM: () => o, + ZB: () => F, + az: () => v, + bR: () => P, + kr: () => V, + sY: () => B, + wA: () => b, + }); + var r, + o, + i, + a, + s, + l, + c, + u = {}, + d = [], + f = /acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i; + function h(e, t) { + for (var n in t) e[n] = t[n]; + return e; + } + function p(e) { + var t = e.parentNode; + t && t.removeChild(e); + } + function v(e, t, n) { + var o, + i, + a, + s = {}; + for (a in t) 'key' == a ? (o = t[a]) : 'ref' == a ? (i = t[a]) : (s[a] = t[a]); + if ( + (arguments.length > 2 && (s.children = arguments.length > 3 ? r.call(arguments, 2) : n), + 'function' == typeof e && null != e.defaultProps) + ) + for (a in e.defaultProps) void 0 === s[a] && (s[a] = e.defaultProps[a]); + return g(e, s, o, i, null); + } + function g(e, t, n, r, a) { + var s = { + type: e, + props: t, + key: n, + ref: r, + __k: null, + __: null, + __b: 0, + __e: null, + __d: void 0, + __c: null, + __h: null, + constructor: void 0, + __v: a ?? ++i, + }; + return null == a && null != o.vnode && o.vnode(s), s; + } + function m() { + return { current: null }; + } + function y(e) { + return e.children; + } + function b(e, t) { + (this.props = e), (this.context = t); + } + function x(e, t) { + if (null == t) return e.__ ? x(e.__, e.__.__k.indexOf(e) + 1) : null; + for (var n; t < e.__k.length; t++) if (null != (n = e.__k[t]) && null != n.__e) return n.__e; + return 'function' == typeof e.type ? x(e) : null; + } + function w(e) { + var t, n; + if (null != (e = e.__) && null != e.__c) { + for (e.__e = e.__c.base = null, t = 0; t < e.__k.length; t++) + if (null != (n = e.__k[t]) && null != n.__e) { + e.__e = e.__c.base = n.__e; + break; + } + return w(e); + } + } + function E(e) { + ((!e.__d && (e.__d = !0) && a.push(e) && !k.__r++) || l !== o.debounceRendering) && + ((l = o.debounceRendering) || s)(k); + } + function k() { + for (var e; (k.__r = a.length); ) + (e = a.sort(function (e, t) { + return e.__v.__b - t.__v.__b; + })), + (a = []), + e.some(function (e) { + var t, n, r, o, i, a; + e.__d && + ((i = (o = (t = e).__v).__e), + (a = t.__P) && + ((n = []), + ((r = h({}, o)).__v = o.__v + 1), + M(a, o, r, t.__n, void 0 !== a.ownerSVGElement, null != o.__h ? [i] : null, n, i ?? x(o), o.__h), + O(n, o), + o.__e != i && w(o))); + }); + } + function _(e, t, n, r, o, i, a, s, l, c) { + var f, + h, + p, + v, + m, + b, + w, + E = (r && r.__k) || d, + k = E.length; + for (n.__k = [], f = 0; f < t.length; f++) + if ( + null != + (v = n.__k[f] = + null == (v = t[f]) || 'boolean' == typeof v + ? null + : 'string' == typeof v || 'number' == typeof v || 'bigint' == typeof v + ? g(null, v, null, null, v) + : Array.isArray(v) + ? g(y, { children: v }, null, null, null) + : v.__b > 0 + ? g(v.type, v.props, v.key, null, v.__v) + : v) + ) { + if (((v.__ = n), (v.__b = n.__b + 1), null === (p = E[f]) || (p && v.key == p.key && v.type === p.type))) + E[f] = void 0; + else + for (h = 0; h < k; h++) { + if ((p = E[h]) && v.key == p.key && v.type === p.type) { + E[h] = void 0; + break; + } + p = null; + } + M(e, v, (p = p || u), o, i, a, s, l, c), + (m = v.__e), + (h = v.ref) && p.ref != h && (w || (w = []), p.ref && w.push(p.ref, null, v), w.push(h, v.__c || m, v)), + null != m + ? (null == b && (b = m), + 'function' == typeof v.type && v.__k === p.__k ? (v.__d = l = S(v, l, e)) : (l = C(e, v, p, E, m, l)), + 'function' == typeof n.type && (n.__d = l)) + : l && p.__e == l && l.parentNode != e && (l = x(p)); + } + for (n.__e = b, f = k; f--; ) + null != E[f] && + ('function' == typeof n.type && null != E[f].__e && E[f].__e == n.__d && (n.__d = x(r, f + 1)), + L(E[f], E[f])); + if (w) for (f = 0; f < w.length; f++) R(w[f], w[++f], w[++f]); + } + function S(e, t, n) { + for (var r, o = e.__k, i = 0; o && i < o.length; i++) + (r = o[i]) && ((r.__ = e), (t = 'function' == typeof r.type ? S(r, t, n) : C(n, r, r, o, r.__e, t))); + return t; + } + function P(e, t) { + return ( + (t = t || []), + null == e || + 'boolean' == typeof e || + (Array.isArray(e) + ? e.some(function (e) { + P(e, t); + }) + : t.push(e)), + t + ); + } + function C(e, t, n, r, o, i) { + var a, s, l; + if (void 0 !== t.__d) (a = t.__d), (t.__d = void 0); + else if (null == n || o != i || null == o.parentNode) + e: if (null == i || i.parentNode !== e) e.appendChild(o), (a = null); + else { + for (s = i, l = 0; (s = s.nextSibling) && l < r.length; l += 2) if (s == o) break e; + e.insertBefore(o, i), (a = i); + } + return void 0 !== a ? a : o.nextSibling; + } + function j(e, t, n) { + '-' === t[0] ? e.setProperty(t, n) : (e[t] = null == n ? '' : 'number' != typeof n || f.test(t) ? n : n + 'px'); + } + function T(e, t, n, r, o) { + var i; + e: if ('style' === t) + if ('string' == typeof n) e.style.cssText = n; + else { + if (('string' == typeof r && (e.style.cssText = r = ''), r)) + for (t in r) (n && t in n) || j(e.style, t, ''); + if (n) for (t in n) (r && n[t] === r[t]) || j(e.style, t, n[t]); + } + else if ('o' === t[0] && 'n' === t[1]) + (i = t !== (t = t.replace(/Capture$/, ''))), + (t = t.toLowerCase() in e ? t.toLowerCase().slice(2) : t.slice(2)), + e.l || (e.l = {}), + (e.l[t + i] = n), + n ? r || e.addEventListener(t, i ? N : D, i) : e.removeEventListener(t, i ? N : D, i); + else if ('dangerouslySetInnerHTML' !== t) { + if (o) t = t.replace(/xlink[H:h]/, 'h').replace(/sName$/, 's'); + else if ('href' !== t && 'list' !== t && 'form' !== t && 'tabIndex' !== t && 'download' !== t && t in e) + try { + e[t] = n ?? ''; + break e; + } catch (e) {} + 'function' == typeof n || + (null != n && (!1 !== n || ('a' === t[0] && 'r' === t[1])) ? e.setAttribute(t, n) : e.removeAttribute(t)); + } + } + function D(e) { + this.l[e.type + !1](o.event ? o.event(e) : e); + } + function N(e) { + this.l[e.type + !0](o.event ? o.event(e) : e); + } + function M(e, t, n, r, i, a, s, l, c) { + var u, + d, + f, + p, + v, + g, + m, + x, + w, + E, + k, + S = t.type; + if (void 0 !== t.constructor) return null; + null != n.__h && ((c = n.__h), (l = t.__e = n.__e), (t.__h = null), (a = [l])), (u = o.__b) && u(t); + try { + e: if ('function' == typeof S) { + if ( + ((x = t.props), + (w = (u = S.contextType) && r[u.__c]), + (E = u ? (w ? w.props.value : u.__) : r), + n.__c + ? (m = (d = t.__c = n.__c).__ = d.__E) + : ('prototype' in S && S.prototype.render + ? (t.__c = d = new S(x, E)) + : ((t.__c = d = new b(x, E)), (d.constructor = S), (d.render = I)), + w && w.sub(d), + (d.props = x), + d.state || (d.state = {}), + (d.context = E), + (d.__n = r), + (f = d.__d = !0), + (d.__h = [])), + null == d.__s && (d.__s = d.state), + null != S.getDerivedStateFromProps && + (d.__s == d.state && (d.__s = h({}, d.__s)), h(d.__s, S.getDerivedStateFromProps(x, d.__s))), + (p = d.props), + (v = d.state), + f) + ) + null == S.getDerivedStateFromProps && null != d.componentWillMount && d.componentWillMount(), + null != d.componentDidMount && d.__h.push(d.componentDidMount); + else { + if ( + (null == S.getDerivedStateFromProps && + x !== p && + null != d.componentWillReceiveProps && + d.componentWillReceiveProps(x, E), + (!d.__e && null != d.shouldComponentUpdate && !1 === d.shouldComponentUpdate(x, d.__s, E)) || + t.__v === n.__v) + ) { + (d.props = x), + (d.state = d.__s), + t.__v !== n.__v && (d.__d = !1), + (d.__v = t), + (t.__e = n.__e), + (t.__k = n.__k), + t.__k.forEach(function (e) { + e && (e.__ = t); + }), + d.__h.length && s.push(d); + break e; + } + null != d.componentWillUpdate && d.componentWillUpdate(x, d.__s, E), + null != d.componentDidUpdate && + d.__h.push(function () { + d.componentDidUpdate(p, v, g); + }); + } + (d.context = E), + (d.props = x), + (d.state = d.__s), + (u = o.__r) && u(t), + (d.__d = !1), + (d.__v = t), + (d.__P = e), + (u = d.render(d.props, d.state, d.context)), + (d.state = d.__s), + null != d.getChildContext && (r = h(h({}, r), d.getChildContext())), + f || null == d.getSnapshotBeforeUpdate || (g = d.getSnapshotBeforeUpdate(p, v)), + (k = null != u && u.type === y && null == u.key ? u.props.children : u), + _(e, Array.isArray(k) ? k : [k], t, n, r, i, a, s, l, c), + (d.base = t.__e), + (t.__h = null), + d.__h.length && s.push(d), + m && (d.__E = d.__ = null), + (d.__e = !1); + } else + null == a && t.__v === n.__v ? ((t.__k = n.__k), (t.__e = n.__e)) : (t.__e = A(n.__e, t, n, r, i, a, s, c)); + (u = o.diffed) && u(t); + } catch (e) { + (t.__v = null), (c || null != a) && ((t.__e = l), (t.__h = !!c), (a[a.indexOf(l)] = null)), o.__e(e, t, n); + } + } + function O(e, t) { + o.__c && o.__c(t, e), + e.some(function (t) { + try { + (e = t.__h), + (t.__h = []), + e.some(function (e) { + e.call(t); + }); + } catch (e) { + o.__e(e, t.__v); + } + }); + } + function A(e, t, n, o, i, a, s, l) { + var c, + d, + f, + h = n.props, + v = t.props, + g = t.type, + m = 0; + if (('svg' === g && (i = !0), null != a)) + for (; m < a.length; m++) + if ((c = a[m]) && 'setAttribute' in c == !!g && (g ? c.localName === g : 3 === c.nodeType)) { + (e = c), (a[m] = null); + break; + } + if (null == e) { + if (null === g) return document.createTextNode(v); + (e = i ? document.createElementNS('http://www.w3.org/2000/svg', g) : document.createElement(g, v.is && v)), + (a = null), + (l = !1); + } + if (null === g) h === v || (l && e.data === v) || (e.data = v); + else { + if ( + ((a = a && r.call(e.childNodes)), + (d = (h = n.props || u).dangerouslySetInnerHTML), + (f = v.dangerouslySetInnerHTML), + !l) + ) { + if (null != a) + for (h = {}, m = 0; m < e.attributes.length; m++) h[e.attributes[m].name] = e.attributes[m].value; + (f || d) && + ((f && ((d && f.__html == d.__html) || f.__html === e.innerHTML)) || + (e.innerHTML = (f && f.__html) || '')); + } + if ( + ((function (e, t, n, r, o) { + var i; + for (i in n) 'children' === i || 'key' === i || i in t || T(e, i, null, n[i], r); + for (i in t) + (o && 'function' != typeof t[i]) || + 'children' === i || + 'key' === i || + 'value' === i || + 'checked' === i || + n[i] === t[i] || + T(e, i, t[i], n[i], r); + })(e, v, h, i, l), + f) + ) + t.__k = []; + else if ( + ((m = t.props.children), + _(e, Array.isArray(m) ? m : [m], t, n, o, i && 'foreignObject' !== g, a, s, a ? a[0] : n.__k && x(n, 0), l), + null != a) + ) + for (m = a.length; m--; ) null != a[m] && p(a[m]); + l || + ('value' in v && + void 0 !== (m = v.value) && + (m !== h.value || m !== e.value || ('progress' === g && !m)) && + T(e, 'value', m, h.value, !1), + 'checked' in v && void 0 !== (m = v.checked) && m !== e.checked && T(e, 'checked', m, h.checked, !1)); + } + return e; + } + function R(e, t, n) { + try { + 'function' == typeof e ? e(t) : (e.current = t); + } catch (e) { + o.__e(e, n); + } + } + function L(e, t, n) { + var r, i; + if ( + (o.unmount && o.unmount(e), + (r = e.ref) && ((r.current && r.current !== e.__e) || R(r, null, t)), + null != (r = e.__c)) + ) { + if (r.componentWillUnmount) + try { + r.componentWillUnmount(); + } catch (e) { + o.__e(e, t); + } + r.base = r.__P = null; + } + if ((r = e.__k)) for (i = 0; i < r.length; i++) r[i] && L(r[i], t, 'function' != typeof e.type); + n || null == e.__e || p(e.__e), (e.__e = e.__d = void 0); + } + function I(e, t, n) { + return this.constructor(e, n); + } + function B(e, t, n) { + var i, a, s; + o.__ && o.__(e, t), + (a = (i = 'function' == typeof n) ? null : (n && n.__k) || t.__k), + (s = []), + M( + t, + (e = ((!i && n) || t).__k = v(y, null, [e])), + a || u, + u, + void 0 !== t.ownerSVGElement, + !i && n ? [n] : a ? null : t.firstChild ? r.call(t.childNodes) : null, + s, + !i && n ? n : a ? a.__e : t.firstChild, + i, + ), + O(s, e); + } + function F(e, t) { + B(e, t, F); + } + function z(e, t, n) { + var o, + i, + a, + s = h({}, e.props); + for (a in t) 'key' == a ? (o = t[a]) : 'ref' == a ? (i = t[a]) : (s[a] = t[a]); + return ( + arguments.length > 2 && (s.children = arguments.length > 3 ? r.call(arguments, 2) : n), + g(e.type, s, o || e.key, i || e.ref, null) + ); + } + function V(e, t) { + var n = { + __c: (t = '__cC' + c++), + __: e, + Consumer: function (e, t) { + return e.children(t); + }, + Provider: function (e) { + var n, r; + return ( + this.getChildContext || + ((n = []), + ((r = {})[t] = this), + (this.getChildContext = function () { + return r; + }), + (this.shouldComponentUpdate = function (e) { + this.props.value !== e.value && n.some(E); + }), + (this.sub = function (e) { + n.push(e); + var t = e.componentWillUnmount; + e.componentWillUnmount = function () { + n.splice(n.indexOf(e), 1), t && t.call(e); + }; + })), + e.children + ); + }, + }; + return (n.Provider.__ = n.Consumer.contextType = n); + } + (r = d.slice), + (o = { + __e: function (e, t) { + for (var n, r, o; (t = t.__); ) + if ((n = t.__c) && !n.__) + try { + if ( + ((r = n.constructor) && + null != r.getDerivedStateFromError && + (n.setState(r.getDerivedStateFromError(e)), (o = n.__d)), + null != n.componentDidCatch && (n.componentDidCatch(e), (o = n.__d)), + o) + ) + return (n.__E = n); + } catch (t) { + e = t; + } + throw e; + }, + }), + (i = 0), + (b.prototype.setState = function (e, t) { + var n; + (n = null != this.__s && this.__s !== this.state ? this.__s : (this.__s = h({}, this.state))), + 'function' == typeof e && (e = e(h({}, n), this.props)), + e && h(n, e), + null != e && this.__v && (t && this.__h.push(t), E(this)); + }), + (b.prototype.forceUpdate = function (e) { + this.__v && ((this.__e = !0), e && this.__h.push(e), E(this)); + }), + (b.prototype.render = y), + (a = []), + (s = 'function' == typeof Promise ? Promise.prototype.then.bind(Promise.resolve()) : setTimeout), + (k.__r = 0), + (c = 0); + }, + 31706: (e, t, n) => { + 'use strict'; + var r = n(33286); + var o = + 'function' == typeof Object.is + ? Object.is + : function (e, t) { + return (e === t && (0 !== e || 1 / e == 1 / t)) || (e != e && t != t); + }, + i = r.useState, + a = r.useEffect, + s = r.useLayoutEffect, + l = r.useDebugValue; + function c(e) { + var t = e.getSnapshot; + e = e.value; + try { + var n = t(); + return !o(e, n); + } catch (r) { + return !0; + } + } + var u = + 'undefined' == typeof window || void 0 === window.document || void 0 === window.document.createElement + ? function (e, t) { + return t(); + } + : function (e, t) { + var n = t(), + r = i({ inst: { value: n, getSnapshot: t } }), + o = r[0].inst, + u = r[1]; + return ( + s( + function () { + (o.value = n), (o.getSnapshot = t), c(o) && u({ inst: o }); + }, + [e, n, t], + ), + a( + function () { + return ( + c(o) && u({ inst: o }), + e(function () { + c(o) && u({ inst: o }); + }) + ); + }, + [e], + ), + l(n), + n + ); + }; + t.useSyncExternalStore = void 0 !== r.useSyncExternalStore ? r.useSyncExternalStore : u; + }, + 99165: (e, t, n) => { + 'use strict'; + var r = n(33286), + o = n(83576); + var i = + 'function' == typeof Object.is + ? Object.is + : function (e, t) { + return (e === t && (0 !== e || 1 / e == 1 / t)) || (e != e && t != t); + }, + a = o.useSyncExternalStore, + s = r.useRef, + l = r.useEffect, + c = r.useMemo, + u = r.useDebugValue; + t.useSyncExternalStoreWithSelector = function (e, t, n, r, o) { + var d = s(null); + if (null === d.current) { + var f = { hasValue: !1, value: null }; + d.current = f; + } else f = d.current; + d = c( + function () { + function e(e) { + if (!l) { + if (((l = !0), (a = e), (e = r(e)), void 0 !== o && f.hasValue)) { + var t = f.value; + if (o(t, e)) return (s = t); + } + return (s = e); + } + if (((t = s), i(a, e))) return t; + var n = r(e); + return void 0 !== o && o(t, n) ? t : ((a = e), (s = n)); + } + var a, + s, + l = !1, + c = void 0 === n ? null : n; + return [ + function () { + return e(t()); + }, + null === c + ? void 0 + : function () { + return e(c()); + }, + ]; + }, + [t, n, r, o], + ); + var h = a(e, d[0], d[1]); + return ( + l( + function () { + (f.hasValue = !0), (f.value = h); + }, + [h], + ), + u(h), + h + ); + }; + }, + 83576: (e, t, n) => { + 'use strict'; + e.exports = n(31706); + }, + 52014: (e, t, n) => { + 'use strict'; + e.exports = n(99165); + }, + 71125: (e, t, n) => { + 'use strict'; + n.d(t, { Xg: () => l, f3: () => c, mu: () => s, vk: () => u }); + var r = n(86859), + o = n(14487), + i = n(21427); + function a(e) { + var t; + return ( + ((t = { + id: e, + send: function () {}, + subscribe: function () { + return { unsubscribe: function () {} }; + }, + getSnapshot: function () {}, + toJSON: function () { + return { id: e }; + }, + })[o.L$] = function () { + return this; + }), + t + ); + } + function s(e, t, n, r) { + var i, + s = (0, o.j)(e.src), + c = null === (i = null == t ? void 0 : t.options.services) || void 0 === i ? void 0 : i[s.type], + u = e.data ? (0, o.QX)(e.data, n, r) : void 0, + d = c ? l(c, e.id, u) : a(e.id); + return (d.meta = e), d; + } + function l(e, t, n) { + var r = a(t); + if (((r.deferred = !0), (0, o.O4)(e))) { + var s = (r.state = (0, i.J)(void 0, function () { + return (n ? e.withContext(n) : e).initialState; + })); + r.getSnapshot = function () { + return s; + }; + } + return r; + } + function c(e) { + return ( + (function (e) { + try { + return 'function' == typeof e.send; + } catch (t) { + return !1; + } + })(e) && 'id' in e + ); + } + function u(e) { + var t; + return (0, r.pi)( + (((t = { + subscribe: function () { + return { unsubscribe: function () {} }; + }, + id: 'anonymous', + getSnapshot: function () {}, + })[o.L$] = function () { + return this; + }), + t), + e, + ); + } + }, + 93884: (e, t, n) => { + 'use strict'; + n.d(t, { C: () => s, J: () => a }); + var r = n(90084), + o = n(11293), + i = !1; + function a(e, t, n) { + return void 0 === n && (n = e.context), new r.n(e, t, n); + } + function s(e, t) { + return ( + o.M || + e.predictableActionArguments || + i || + ((i = !0), + console.warn( + 'It is highly recommended to set `predictableActionArguments` to `true` when using `createMachine`. https://xstate.js.org/docs/guides/actions.html', + )), + new r.n(e, t) + ); + } + }, + 64e3: (e, t, n) => { + 'use strict'; + n.d(t, { TL: () => u, ZM: () => f, j1: () => d, j_: () => c }); + var r = n(86859), + o = n(79308), + i = n(14487), + a = n(73340), + s = n(19913), + l = n(11293); + function c(e, t) { + if (e === t) return !0; + if (void 0 === e || void 0 === t) return !1; + if ((0, i.HD)(e) || (0, i.HD)(t)) return e === t; + var n = Object.keys(e), + r = Object.keys(t); + return ( + n.length === r.length && + n.every(function (n) { + return c(e[n], t[n]); + }) + ); + } + function u(e) { + return 'object' == typeof e && null !== e && 'value' in e && '_event' in e; + } + function d(e, t) { + var n = e.exec; + return (0, r.pi)((0, r.pi)({}, e), { + exec: + void 0 !== n + ? function () { + return n(t.context, t.event, { action: e, state: t, _event: t._event }); + } + : void 0, + }); + } + var f = (function () { + function e(e) { + var t, + n = this; + (this.actions = []), + (this.activities = o.qP), + (this.meta = {}), + (this.events = []), + (this.value = e.value), + (this.context = e.context), + (this._event = e._event), + (this._sessionid = e._sessionid), + (this.event = this._event.data), + (this.historyValue = e.historyValue), + (this.history = e.history), + (this.actions = e.actions || []), + (this.activities = e.activities || o.qP), + (this.meta = (0, a.xZ)(e.configuration)), + (this.events = e.events || []), + (this.matches = this.matches.bind(this)), + (this.toStrings = this.toStrings.bind(this)), + (this.configuration = e.configuration), + (this.transitions = e.transitions), + (this.children = e.children), + (this.done = !!e.done), + (this.tags = + null !== (t = Array.isArray(e.tags) ? new Set(e.tags) : e.tags) && void 0 !== t ? t : new Set()), + (this.machine = e.machine), + Object.defineProperty(this, 'nextEvents', { + get: function () { + return (0, a.nJ)(n.configuration); + }, + }); + } + return ( + (e.from = function (t, n) { + return t instanceof e + ? t.context !== n + ? new e({ + value: t.value, + context: n, + _event: t._event, + _sessionid: null, + historyValue: t.historyValue, + history: t.history, + actions: [], + activities: t.activities, + meta: {}, + events: [], + configuration: [], + transitions: [], + children: {}, + }) + : t + : new e({ + value: t, + context: n, + _event: s.initEvent, + _sessionid: null, + historyValue: void 0, + history: void 0, + actions: [], + activities: void 0, + meta: void 0, + events: [], + configuration: [], + transitions: [], + children: {}, + }); + }), + (e.create = function (t) { + return new e(t); + }), + (e.inert = function (t, n) { + if (t instanceof e) { + if (!t.actions.length) return t; + var r = s.initEvent; + return new e({ + value: t.value, + context: n, + _event: r, + _sessionid: null, + historyValue: t.historyValue, + history: t.history, + activities: t.activities, + configuration: t.configuration, + transitions: [], + children: {}, + }); + } + return e.from(t, n); + }), + (e.prototype.toStrings = function (e, t) { + var n = this; + if ((void 0 === e && (e = this.value), void 0 === t && (t = '.'), (0, i.HD)(e))) return [e]; + var o = Object.keys(e); + return o.concat.apply( + o, + (0, r.ev)( + [], + (0, r.CR)( + o.map(function (r) { + return n.toStrings(e[r], t).map(function (e) { + return r + t + e; + }); + }), + ), + !1, + ), + ); + }), + (e.prototype.toJSON = function () { + var e = this; + e.configuration, e.transitions; + var t = e.tags; + e.machine; + var n = (0, r._T)(e, ['configuration', 'transitions', 'tags', 'machine']); + return (0, r.pi)((0, r.pi)({}, n), { tags: Array.from(t) }); + }), + (e.prototype.matches = function (e) { + return (0, i.W)(e, this.value); + }), + (e.prototype.hasTag = function (e) { + return this.tags.has(e); + }), + (e.prototype.can = function (e) { + var t; + l.M && + (0, i.ZK)( + !!this.machine, + 'state.can(...) used outside of a machine-created State object; this will always return false.', + ); + var n = null === (t = this.machine) || void 0 === t ? void 0 : t.getTransitionData(this, e); + return ( + !!(null == n ? void 0 : n.transitions.length) && + n.transitions.some(function (e) { + return void 0 !== e.target || e.actions.length; + }) + ); + }), + e + ); + })(); + }, + 90084: (e, t, n) => { + 'use strict'; + n.d(t, { n: () => b }); + var r = n(86859), + o = n(14487), + i = n(71073), + a = n(64e3), + s = n(26426), + l = n(19913), + c = n(11293), + u = n(79308), + d = n(73340), + f = n(71125); + function h(e) { + if ('string' == typeof e) { + var t = { + type: e, + toString: function () { + return e; + }, + }; + return t; + } + return e; + } + function p(e) { + return (0, r.pi)((0, r.pi)({ type: s.invoke }, e), { + toJSON: function () { + e.onDone, e.onError; + var t = (0, r._T)(e, ['onDone', 'onError']); + return (0, r.pi)((0, r.pi)({}, t), { type: s.invoke, src: h(e.src) }); + }, + }); + } + var v = '', + g = '*', + m = {}, + y = function (e) { + return '#' === e[0]; + }, + b = (function () { + function e(t, n, i, a) { + void 0 === i && (i = 'context' in t ? t.context : void 0); + var s, + f = this; + (this.config = t), + (this._context = i), + (this.order = -1), + (this.__xstatenode = !0), + (this.__cache = { + events: void 0, + relativeValue: new Map(), + initialStateValue: void 0, + initialState: void 0, + on: void 0, + transitions: void 0, + candidates: {}, + delayedTransitions: void 0, + }), + (this.idMap = {}), + (this.tags = []), + (this.options = Object.assign({ actions: {}, guards: {}, services: {}, activities: {}, delays: {} }, n)), + (this.parent = null == a ? void 0 : a.parent), + (this.key = this.config.key || (null == a ? void 0 : a.key) || this.config.id || '(machine)'), + (this.machine = this.parent ? this.parent.machine : this), + (this.path = this.parent ? this.parent.path.concat(this.key) : []), + (this.delimiter = this.config.delimiter || (this.parent ? this.parent.delimiter : u.iS)), + (this.id = + this.config.id || (0, r.ev)([this.machine.key], (0, r.CR)(this.path), !1).join(this.delimiter)), + (this.version = this.parent ? this.parent.version : this.config.version), + (this.type = + this.config.type || + (this.config.parallel + ? 'parallel' + : this.config.states && Object.keys(this.config.states).length + ? 'compound' + : this.config.history + ? 'history' + : 'atomic')), + (this.schema = this.parent + ? this.machine.schema + : null !== (s = this.config.schema) && void 0 !== s + ? s + : {}), + (this.description = this.config.description), + c.M || + (0, o.ZK)( + !('parallel' in this.config), + 'The "parallel" property is deprecated and will be removed in version 4.1. ' + .concat( + this.config.parallel ? "Replace with `type: 'parallel'`" : "Use `type: '".concat(this.type, "'`"), + " in the config for state node '", + ) + .concat(this.id, "' instead."), + ), + (this.initial = this.config.initial), + (this.states = this.config.states + ? (0, o.Q8)(this.config.states, function (t, n) { + var o, + i = new e(t, {}, void 0, { parent: f, key: n }); + return Object.assign(f.idMap, (0, r.pi)((((o = {})[i.id] = i), o), i.idMap)), i; + }) + : m); + var h = 0; + !(function e(t) { + var n, o; + t.order = h++; + try { + for (var i = (0, r.XA)((0, d.nI)(t)), a = i.next(); !a.done; a = i.next()) { + e(a.value); + } + } catch (s) { + n = { error: s }; + } finally { + try { + a && !a.done && (o = i.return) && o.call(i); + } finally { + if (n) throw n.error; + } + } + })(this), + (this.history = !0 === this.config.history ? 'shallow' : this.config.history || !1), + (this._transient = + !!this.config.always || + (!!this.config.on && + (Array.isArray(this.config.on) + ? this.config.on.some(function (e) { + return e.event === v; + }) + : v in this.config.on))), + (this.strict = !!this.config.strict), + (this.onEntry = (0, o.qo)(this.config.entry || this.config.onEntry).map(function (e) { + return (0, l.toActionObject)(e); + })), + (this.onExit = (0, o.qo)(this.config.exit || this.config.onExit).map(function (e) { + return (0, l.toActionObject)(e); + })), + (this.meta = this.config.meta), + (this.doneData = 'final' === this.type ? this.config.data : void 0), + (this.invoke = (0, o.qo)(this.config.invoke).map(function (e, t) { + var n, i; + if ((0, o.O4)(e)) { + var a = (0, o.bx)(f.id, t); + return ( + (f.machine.options.services = (0, r.pi)((((n = {})[a] = e), n), f.machine.options.services)), + p({ src: a, id: a }) + ); + } + if ((0, o.HD)(e.src)) { + a = e.id || (0, o.bx)(f.id, t); + return p((0, r.pi)((0, r.pi)({}, e), { id: a, src: e.src })); + } + if ((0, o.O4)(e.src) || (0, o.mf)(e.src)) { + a = e.id || (0, o.bx)(f.id, t); + return ( + (f.machine.options.services = (0, r.pi)((((i = {})[a] = e.src), i), f.machine.options.services)), + p((0, r.pi)((0, r.pi)({ id: a }, e), { src: a })) + ); + } + var s = e.src; + return p((0, r.pi)((0, r.pi)({ id: (0, o.bx)(f.id, t) }, e), { src: s })); + })), + (this.activities = (0, o.qo)(this.config.activities) + .concat(this.invoke) + .map(function (e) { + return (0, l.toActivityDefinition)(e); + })), + (this.transition = this.transition.bind(this)), + (this.tags = (0, o.qo)(this.config.tags)); + } + return ( + (e.prototype._init = function () { + this.__cache.transitions || + (0, d.ac)(this).forEach(function (e) { + return e.on; + }); + }), + (e.prototype.withConfig = function (t, n) { + var o = this.options, + i = o.actions, + a = o.activities, + s = o.guards, + l = o.services, + c = o.delays; + return new e( + this.config, + { + actions: (0, r.pi)((0, r.pi)({}, i), t.actions), + activities: (0, r.pi)((0, r.pi)({}, a), t.activities), + guards: (0, r.pi)((0, r.pi)({}, s), t.guards), + services: (0, r.pi)((0, r.pi)({}, l), t.services), + delays: (0, r.pi)((0, r.pi)({}, c), t.delays), + }, + null != n ? n : this.context, + ); + }), + (e.prototype.withContext = function (t) { + return new e(this.config, this.options, t); + }), + Object.defineProperty(e.prototype, 'context', { + get: function () { + return (0, o.mf)(this._context) ? this._context() : this._context; + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, 'definition', { + get: function () { + return { + id: this.id, + key: this.key, + version: this.version, + context: this.context, + type: this.type, + initial: this.initial, + history: this.history, + states: (0, o.Q8)(this.states, function (e) { + return e.definition; + }), + on: this.on, + transitions: this.transitions, + entry: this.onEntry, + exit: this.onExit, + activities: this.activities || [], + meta: this.meta, + order: this.order || -1, + data: this.doneData, + invoke: this.invoke, + description: this.description, + tags: this.tags, + }; + }, + enumerable: !1, + configurable: !0, + }), + (e.prototype.toJSON = function () { + return this.definition; + }), + Object.defineProperty(e.prototype, 'on', { + get: function () { + if (this.__cache.on) return this.__cache.on; + var e = this.transitions; + return (this.__cache.on = e.reduce(function (e, t) { + return (e[t.eventType] = e[t.eventType] || []), e[t.eventType].push(t), e; + }, {})); + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, 'after', { + get: function () { + return ( + this.__cache.delayedTransitions || + ((this.__cache.delayedTransitions = this.getDelayedTransitions()), this.__cache.delayedTransitions) + ); + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, 'transitions', { + get: function () { + return ( + this.__cache.transitions || + ((this.__cache.transitions = this.formatTransitions()), this.__cache.transitions) + ); + }, + enumerable: !1, + configurable: !0, + }), + (e.prototype.getCandidates = function (e) { + if (this.__cache.candidates[e]) return this.__cache.candidates[e]; + var t = e === v, + n = this.transitions.filter(function (n) { + var r = n.eventType === e; + return t ? r : r || n.eventType === g; + }); + return (this.__cache.candidates[e] = n), n; + }), + (e.prototype.getDelayedTransitions = function () { + var e = this, + t = this.config.after; + if (!t) return []; + var n = function (t, n) { + var r = (0, o.mf)(t) ? ''.concat(e.id, ':delay[').concat(n, ']') : t, + i = (0, l.after)(r, e.id); + return e.onEntry.push((0, l.send)(i, { delay: t })), e.onExit.push((0, l.cancel)(i)), i; + }; + return ( + (0, o.kJ)(t) + ? t.map(function (e, t) { + var o = n(e.delay, t); + return (0, r.pi)((0, r.pi)({}, e), { event: o }); + }) + : (0, o.xH)( + Object.keys(t).map(function (e, i) { + var a = t[e], + s = (0, o.HD)(a) ? { target: a } : a, + l = isNaN(+e) ? e : +e, + c = n(l, i); + return (0, o.qo)(s).map(function (e) { + return (0, r.pi)((0, r.pi)({}, e), { event: c, delay: l }); + }); + }), + ) + ).map(function (t) { + var n = t.delay; + return (0, r.pi)((0, r.pi)({}, e.formatTransition(t)), { delay: n }); + }); + }), + (e.prototype.getStateNodes = function (e) { + var t, + n = this; + if (!e) return []; + var i = e instanceof a.ZM ? e.value : (0, o.WM)(e, this.delimiter); + if ((0, o.HD)(i)) { + var s = this.getStateNode(i).initial; + return void 0 !== s ? this.getStateNodes((((t = {})[i] = s), t)) : [this, this.states[i]]; + } + var l = Object.keys(i), + c = [this]; + return ( + c.push.apply( + c, + (0, r.ev)( + [], + (0, r.CR)( + (0, o.xH)( + l.map(function (e) { + return n.getStateNode(e).getStateNodes(i[e]); + }), + ), + ), + !1, + ), + ), + c + ); + }), + (e.prototype.handles = function (e) { + var t = (0, o.x6)(e); + return this.events.includes(t); + }), + (e.prototype.resolveState = function (e) { + var t = e instanceof a.ZM ? e : a.ZM.create(e), + n = Array.from((0, d.P_)([], this.getStateNodes(t.value))); + return new a.ZM( + (0, r.pi)((0, r.pi)({}, t), { + value: this.resolve(t.value), + configuration: n, + done: (0, d.Ij)(n, this), + tags: (0, d.Oe)(n), + machine: this.machine, + }), + ); + }), + (e.prototype.transitionLeafNode = function (e, t, n) { + var r = this.getStateNode(e).next(t, n); + return r && r.transitions.length ? r : this.next(t, n); + }), + (e.prototype.transitionCompoundNode = function (e, t, n) { + var r = Object.keys(e), + o = this.getStateNode(r[0])._transition(e[r[0]], t, n); + return o && o.transitions.length ? o : this.next(t, n); + }), + (e.prototype.transitionParallelNode = function (e, t, n) { + var i, + a, + s = {}; + try { + for (var l = (0, r.XA)(Object.keys(e)), c = l.next(); !c.done; c = l.next()) { + var u = c.value, + d = e[u]; + if (d) { + var f = this.getStateNode(u)._transition(d, t, n); + f && (s[u] = f); + } + } + } catch (m) { + i = { error: m }; + } finally { + try { + c && !c.done && (a = l.return) && a.call(l); + } finally { + if (i) throw i.error; + } + } + var h = Object.keys(s).map(function (e) { + return s[e]; + }), + p = (0, o.xH)( + h.map(function (e) { + return e.transitions; + }), + ); + if ( + !h.some(function (e) { + return e.transitions.length > 0; + }) + ) + return this.next(t, n); + var v = (0, o.xH)( + h.map(function (e) { + return e.entrySet; + }), + ), + g = (0, o.xH)( + Object.keys(s).map(function (e) { + return s[e].configuration; + }), + ); + return { + transitions: p, + entrySet: v, + exitSet: (0, o.xH)( + h.map(function (e) { + return e.exitSet; + }), + ), + configuration: g, + source: t, + actions: (0, o.xH)( + Object.keys(s).map(function (e) { + return s[e].actions; + }), + ), + }; + }), + (e.prototype._transition = function (e, t, n) { + return (0, o.HD)(e) + ? this.transitionLeafNode(e, t, n) + : 1 === Object.keys(e).length + ? this.transitionCompoundNode(e, t, n) + : this.transitionParallelNode(e, t, n); + }), + (e.prototype.getTransitionData = function (e, t) { + return this._transition(e.value, e, (0, o.g5)(t)); + }), + (e.prototype.next = function (e, t) { + var n, + i, + a, + s = this, + l = t.name, + c = [], + u = []; + try { + for (var d = (0, r.XA)(this.getCandidates(l)), f = d.next(); !f.done; f = d.next()) { + var h = f.value, + p = h.cond, + v = h.in, + g = e.context, + m = + !v || + ((0, o.HD)(v) && y(v) + ? e.matches((0, o.WM)(this.getStateNodeById(v).path, this.delimiter)) + : (0, o.W)((0, o.WM)(v, this.delimiter), (0, o.ET)(this.path.slice(0, -2))(e.value))), + b = !1; + try { + b = !p || (0, o.vx)(this.machine, p, g, t, e); + } catch (k) { + throw new Error( + "Unable to evaluate guard '" + .concat(p.name || p.type, "' in transition for event '") + .concat(l, "' in state node '") + .concat(this.id, "':\n") + .concat(k.message), + ); + } + if (b && m) { + void 0 !== h.target && (u = h.target), + c.push.apply(c, (0, r.ev)([], (0, r.CR)(h.actions), !1)), + (a = h); + break; + } + } + } catch (_) { + n = { error: _ }; + } finally { + try { + f && !f.done && (i = d.return) && i.call(d); + } finally { + if (n) throw n.error; + } + } + if (a) { + if (!u.length) + return { + transitions: [a], + entrySet: [], + exitSet: [], + configuration: e.value ? [this] : [], + source: e, + actions: c, + }; + var x = (0, o.xH)( + u.map(function (t) { + return s.getRelativeStateNodes(t, e.historyValue); + }), + ), + w = !!a.internal, + E = []; + return ( + w || + u.forEach(function (e) { + E.push.apply(E, (0, r.ev)([], (0, r.CR)(s.getExternalReentryNodes(e)), !1)); + }), + { transitions: [a], entrySet: E, exitSet: w ? [] : [this], configuration: x, source: e, actions: c } + ); + } + }), + (e.prototype.getExternalReentryNodes = function (e) { + for ( + var t = [], n = (0, r.CR)(e.order > this.order ? [e, this] : [this, e], 2), o = n[0], i = n[1]; + o && o !== i; + + ) + t.push(o), (o = o.parent); + return o !== i ? [] : (t.push(i), t); + }), + (e.prototype.getActions = function (e, t, n, a, c, u, f) { + var h, + p, + v, + g, + m = this, + y = (0, d.P_)([], u ? this.getStateNodes(u.value) : [this]); + try { + for (var b = (0, r.XA)(e), x = b.next(); !x.done; x = b.next()) { + var w = x.value; + (!(0, d.e$)(y, w) || ((0, d.e$)(n.entrySet, w.parent) && !(0, d.e$)(n.entrySet, w))) && + n.entrySet.push(w); + } + } catch (D) { + h = { error: D }; + } finally { + try { + x && !x.done && (p = b.return) && p.call(b); + } finally { + if (h) throw h.error; + } + } + try { + for (var E = (0, r.XA)(y), k = E.next(); !k.done; k = E.next()) { + w = k.value; + ((0, d.e$)(e, w) && !(0, d.e$)(n.exitSet, w.parent)) || n.exitSet.push(w); + } + } catch (N) { + v = { error: N }; + } finally { + try { + k && !k.done && (g = E.return) && g.call(E); + } finally { + if (v) throw v.error; + } + } + var _ = (0, o.xH)( + n.entrySet.map(function (e) { + var t = []; + if ('final' !== e.type) return t; + var r = e.parent; + if (!r.parent) return t; + t.push( + (0, l.done)(e.id, e.doneData), + (0, l.done)(r.id, e.doneData ? (0, o.QX)(e.doneData, a, c) : void 0), + ); + var i = r.parent; + return ( + 'parallel' === i.type && + (0, d.G)(i).every(function (e) { + return (0, d.Ij)(n.configuration, e); + }) && + t.push((0, l.done)(i.id)), + t + ); + }), + ); + n.exitSet.sort(function (e, t) { + return t.order - e.order; + }), + n.entrySet.sort(function (e, t) { + return e.order - t.order; + }); + var S = new Set(n.entrySet), + P = new Set(n.exitSet), + C = Array.from(S) + .map(function (e) { + var t = e.onEntry, + n = e.activities.map(function (e) { + return (0, l.start)(e); + }); + return (0, + l.toActionObjects)(f ? (0, r.ev)((0, r.ev)([], (0, r.CR)(t), !1), (0, r.CR)(n), !1) : (0, r.ev)((0, r.ev)([], (0, r.CR)(n), !1), (0, r.CR)(t), !1), m.machine.options.actions); + }) + .concat([_.map(l.raise)]), + j = Array.from(P) + .map(function (e) { + return (0, l.toActionObjects)( + (0, r.ev)( + (0, r.ev)([], (0, r.CR)(e.onExit), !1), + (0, r.CR)( + e.activities.map(function (e) { + return (0, l.stop)(e); + }), + ), + !1, + ), + m.machine.options.actions, + ); + }) + .concat([(0, l.toActionObjects)(n.actions, this.machine.options.actions)]) + .concat(C); + if (t) { + var T = (0, l.toActionObjects)( + (0, o.xH)( + (0, r.ev)([], (0, r.CR)(e), !1) + .sort(function (e, t) { + return t.order - e.order; + }) + .map(function (e) { + return e.onExit; + }), + ), + this.machine.options.actions, + ).filter(function (e) { + return e.type !== s.raise && (e.type !== s.send || (!!e.to && e.to !== i.K.Internal)); + }); + return j.concat([T]); + } + return j; + }), + (e.prototype.transition = function (e, t, n, i) { + void 0 === e && (e = this.initialState); + var s, + l = (0, o.g5)(t); + if (e instanceof a.ZM) s = void 0 === n ? e : this.resolveState(a.ZM.from(e, n)); + else { + var u = (0, o.HD)(e) ? this.resolve((0, o.on)(this.getResolvedPath(e))) : this.resolve(e), + f = null != n ? n : this.machine.context; + s = this.resolveState(a.ZM.from(u, f)); + } + if (!c.M && l.name === g) throw new Error("An event cannot have the wildcard type ('".concat(g, "')")); + if (this.strict && !this.events.includes(l.name) && !(0, o.JQ)(l.name)) + throw new Error("Machine '".concat(this.id, "' does not accept event '").concat(l.name, "'")); + var h = this._transition(s.value, s, l) || { + transitions: [], + configuration: [], + entrySet: [], + exitSet: [], + source: s, + actions: [], + }, + p = (0, d.P_)([], this.getStateNodes(s.value)), + v = h.configuration.length ? (0, d.P_)(p, h.configuration) : p; + return (h.configuration = (0, r.ev)([], (0, r.CR)(v), !1)), this.resolveTransition(h, s, s.context, i, l); + }), + (e.prototype.resolveRaisedTransition = function (e, t, n, o) { + var i, + a = e.actions; + return ( + ((e = this.transition(e, t, void 0, o))._event = n), + (e.event = n.data), + (i = e.actions).unshift.apply(i, (0, r.ev)([], (0, r.CR)(a), !1)), + e + ); + }), + (e.prototype.resolveTransition = function (e, t, n, c, u) { + var h, + p, + g, + m, + y = this; + void 0 === u && (u = l.initEvent); + var b = e.configuration, + x = !t || e.transitions.length > 0, + w = x ? e.configuration : t ? t.configuration : [], + E = (0, d.Ij)(w, this), + k = x ? (0, d.NA)(this.machine, b) : void 0, + _ = t + ? t.historyValue + ? t.historyValue + : e.source + ? this.machine.historyValue(t.value) + : void 0 + : void 0, + S = this.getActions(new Set(w), E, e, n, u, t, c), + P = t ? (0, r.pi)({}, t.activities) : {}; + try { + for (var C = (0, r.XA)(S), j = C.next(); !j.done; j = C.next()) { + var T = j.value; + try { + for (var D = ((g = void 0), (0, r.XA)(T)), N = D.next(); !N.done; N = D.next()) { + var M = N.value; + M.type === s.start + ? (P[M.activity.id || M.activity.type] = M) + : M.type === s.stop && (P[M.activity.id || M.activity.type] = !1); + } + } catch (X) { + g = { error: X }; + } finally { + try { + N && !N.done && (m = D.return) && m.call(D); + } finally { + if (g) throw g.error; + } + } + } + } catch ($) { + h = { error: $ }; + } finally { + try { + j && !j.done && (p = C.return) && p.call(C); + } finally { + if (h) throw h.error; + } + } + var O = (0, r.CR)( + (0, l.resolveActions)( + this, + t, + n, + u, + S, + c, + this.machine.config.predictableActionArguments || this.machine.config.preserveActionOrder, + ), + 2, + ), + A = O[0], + R = O[1], + L = (0, r.CR)( + (0, o.uK)(A, function (e) { + return e.type === s.raise || (e.type === s.send && e.to === i.K.Internal); + }), + 2, + ), + I = L[0], + B = L[1], + F = A.filter(function (e) { + var t; + return ( + e.type === s.start && (null === (t = e.activity) || void 0 === t ? void 0 : t.type) === s.invoke + ); + }), + z = F.reduce( + function (e, t) { + return (e[t.activity.id] = (0, f.mu)(t.activity, y.machine, R, u)), e; + }, + t ? (0, r.pi)({}, t.children) : {}, + ), + V = new a.ZM({ + value: k || t.value, + context: R, + _event: u, + _sessionid: t ? t._sessionid : null, + historyValue: k ? (_ ? (0, o.yv)(_, k) : void 0) : t ? t.historyValue : void 0, + history: !k || e.source ? t : void 0, + actions: k ? B : [], + activities: k ? P : t ? t.activities : {}, + events: [], + configuration: w, + transitions: e.transitions, + children: z, + done: E, + tags: (0, d.Oe)(w), + machine: this, + }), + G = n !== R; + V.changed = u.name === s.update || G; + var H = V.history; + H && delete H.history; + var W = + !E && + (this._transient || + b.some(function (e) { + return e._transient; + })); + if (!(x || (W && u.name !== v))) return V; + var U = V; + if (!E) + for (W && (U = this.resolveRaisedTransition(U, { type: s.nullEvent }, u, c)); I.length; ) { + var q = I.shift(); + U = this.resolveRaisedTransition(U, q._event, u, c); + } + var Y = + U.changed || + (H + ? !!U.actions.length || G || typeof H.value != typeof U.value || !(0, a.j_)(U.value, H.value) + : void 0); + return (U.changed = Y), (U.history = H), U; + }), + (e.prototype.getStateNode = function (e) { + if (y(e)) return this.machine.getStateNodeById(e); + if (!this.states) + throw new Error( + "Unable to retrieve child state '".concat(e, "' from '").concat(this.id, "'; no child states exist."), + ); + var t = this.states[e]; + if (!t) throw new Error("Child state '".concat(e, "' does not exist on '").concat(this.id, "'")); + return t; + }), + (e.prototype.getStateNodeById = function (e) { + var t = y(e) ? e.slice(1) : e; + if (t === this.id) return this; + var n = this.machine.idMap[t]; + if (!n) + throw new Error("Child state node '#".concat(t, "' does not exist on machine '").concat(this.id, "'")); + return n; + }), + (e.prototype.getStateNodeByPath = function (e) { + if ('string' == typeof e && y(e)) + try { + return this.getStateNodeById(e.slice(1)); + } catch (i) {} + for (var t = (0, o.Q9)(e, this.delimiter).slice(), n = this; t.length; ) { + var r = t.shift(); + if (!r.length) break; + n = n.getStateNode(r); + } + return n; + }), + (e.prototype.resolve = function (e) { + var t, + n = this; + if (!e) return this.initialStateValue || m; + switch (this.type) { + case 'parallel': + return (0, o.Q8)(this.initialStateValue, function (t, r) { + return t ? n.getStateNode(r).resolve(e[r] || t) : m; + }); + case 'compound': + if ((0, o.HD)(e)) { + var r = this.getStateNode(e); + return 'parallel' === r.type || 'compound' === r.type + ? (((t = {})[e] = r.initialStateValue), t) + : e; + } + return Object.keys(e).length + ? (0, o.Q8)(e, function (e, t) { + return e ? n.getStateNode(t).resolve(e) : m; + }) + : this.initialStateValue || {}; + default: + return e || m; + } + }), + (e.prototype.getResolvedPath = function (e) { + if (y(e)) { + var t = this.machine.idMap[e.slice(1)]; + if (!t) throw new Error("Unable to find state node '".concat(e, "'")); + return t.path; + } + return (0, o.Q9)(e, this.delimiter); + }), + Object.defineProperty(e.prototype, 'initialStateValue', { + get: function () { + var e, t; + if (this.__cache.initialStateValue) return this.__cache.initialStateValue; + if ('parallel' === this.type) + t = (0, o.ib)( + this.states, + function (e) { + return e.initialStateValue || m; + }, + function (e) { + return !('history' === e.type); + }, + ); + else if (void 0 !== this.initial) { + if (!this.states[this.initial]) + throw new Error("Initial state '".concat(this.initial, "' not found on '").concat(this.key, "'")); + t = (0, d.N9)(this.states[this.initial]) + ? this.initial + : (((e = {})[this.initial] = this.states[this.initial].initialStateValue), e); + } else t = {}; + return (this.__cache.initialStateValue = t), this.__cache.initialStateValue; + }, + enumerable: !1, + configurable: !0, + }), + (e.prototype.getInitialState = function (e, t) { + this._init(); + var n = this.getStateNodes(e); + return this.resolveTransition( + { configuration: n, entrySet: n, exitSet: [], transitions: [], source: void 0, actions: [] }, + void 0, + null != t ? t : this.machine.context, + void 0, + ); + }), + Object.defineProperty(e.prototype, 'initialState', { + get: function () { + var e = this.initialStateValue; + if (!e) throw new Error("Cannot retrieve initial state from simple state '".concat(this.id, "'.")); + return this.getInitialState(e); + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, 'target', { + get: function () { + var e; + if ('history' === this.type) { + var t = this.config; + e = + (0, o.HD)(t.target) && y(t.target) + ? (0, o.on)(this.machine.getStateNodeById(t.target).path.slice(this.path.length - 1)) + : t.target; + } + return e; + }, + enumerable: !1, + configurable: !0, + }), + (e.prototype.getRelativeStateNodes = function (e, t, n) { + return ( + void 0 === n && (n = !0), n ? ('history' === e.type ? e.resolveHistory(t) : e.initialStateNodes) : [e] + ); + }), + Object.defineProperty(e.prototype, 'initialStateNodes', { + get: function () { + var e = this; + if ((0, d.N9)(this)) return [this]; + if ('compound' === this.type && !this.initial) + return ( + c.M || (0, o.ZK)(!1, "Compound state node '".concat(this.id, "' has no initial state.")), [this] + ); + var t = (0, o.SA)(this.initialStateValue); + return (0, o.xH)( + t.map(function (t) { + return e.getFromRelativePath(t); + }), + ); + }, + enumerable: !1, + configurable: !0, + }), + (e.prototype.getFromRelativePath = function (e) { + if (!e.length) return [this]; + var t = (0, r.CR)(e), + n = t[0], + o = t.slice(1); + if (!this.states) throw new Error("Cannot retrieve subPath '".concat(n, "' from node with no states")); + var i = this.getStateNode(n); + if ('history' === i.type) return i.resolveHistory(); + if (!this.states[n]) + throw new Error("Child state '".concat(n, "' does not exist on '").concat(this.id, "'")); + return this.states[n].getFromRelativePath(o); + }), + (e.prototype.historyValue = function (e) { + if (Object.keys(this.states).length) + return { + current: e || this.initialStateValue, + states: (0, o.ib)( + this.states, + function (t, n) { + if (!e) return t.historyValue(); + var r = (0, o.HD)(e) ? void 0 : e[n]; + return t.historyValue(r || t.initialStateValue); + }, + function (e) { + return !e.history; + }, + ), + }; + }), + (e.prototype.resolveHistory = function (e) { + var t = this; + if ('history' !== this.type) return [this]; + var n = this.parent; + if (!e) { + var r = this.target; + return r + ? (0, o.xH)( + (0, o.SA)(r).map(function (e) { + return n.getFromRelativePath(e); + }), + ) + : n.initialStateNodes; + } + var i = (0, o.gk)(n.path, 'states')(e).current; + return (0, o.HD)(i) + ? [n.getStateNode(i)] + : (0, o.xH)( + (0, o.SA)(i).map(function (e) { + return 'deep' === t.history ? n.getFromRelativePath(e) : [n.states[e[0]]]; + }), + ); + }), + Object.defineProperty(e.prototype, 'stateIds', { + get: function () { + var e = this, + t = (0, o.xH)( + Object.keys(this.states).map(function (t) { + return e.states[t].stateIds; + }), + ); + return [this.id].concat(t); + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, 'events', { + get: function () { + var e, t, n, o; + if (this.__cache.events) return this.__cache.events; + var i = this.states, + a = new Set(this.ownEvents); + if (i) + try { + for (var s = (0, r.XA)(Object.keys(i)), l = s.next(); !l.done; l = s.next()) { + var c = i[l.value]; + if (c.states) + try { + for (var u = ((n = void 0), (0, r.XA)(c.events)), d = u.next(); !d.done; d = u.next()) { + var f = d.value; + a.add(''.concat(f)); + } + } catch (h) { + n = { error: h }; + } finally { + try { + d && !d.done && (o = u.return) && o.call(u); + } finally { + if (n) throw n.error; + } + } + } + } catch (p) { + e = { error: p }; + } finally { + try { + l && !l.done && (t = s.return) && t.call(s); + } finally { + if (e) throw e.error; + } + } + return (this.__cache.events = Array.from(a)); + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, 'ownEvents', { + get: function () { + var e = new Set( + this.transitions + .filter(function (e) { + return !(!e.target && !e.actions.length && e.internal); + }) + .map(function (e) { + return e.eventType; + }), + ); + return Array.from(e); + }, + enumerable: !1, + configurable: !0, + }), + (e.prototype.resolveTarget = function (e) { + var t = this; + if (void 0 !== e) + return e.map(function (e) { + if (!(0, o.HD)(e)) return e; + var n = e[0] === t.delimiter; + if (n && !t.parent) return t.getStateNodeByPath(e.slice(1)); + var r = n ? t.key + e : e; + if (!t.parent) return t.getStateNodeByPath(r); + try { + return t.parent.getStateNodeByPath(r); + } catch (i) { + throw new Error( + "Invalid transition definition for state node '".concat(t.id, "':\n").concat(i.message), + ); + } + }); + }), + (e.prototype.formatTransition = function (e) { + var t = this, + n = (0, o.rg)(e.target), + i = + 'internal' in e + ? e.internal + : !n || + n.some(function (e) { + return (0, o.HD)(e) && e[0] === t.delimiter; + }), + a = this.machine.options.guards, + s = this.resolveTarget(n), + c = (0, r.pi)((0, r.pi)({}, e), { + actions: (0, l.toActionObjects)((0, o.qo)(e.actions)), + cond: (0, o.Qi)(e.cond, a), + target: s, + source: this, + internal: i, + eventType: e.event, + toJSON: function () { + return (0, r.pi)((0, r.pi)({}, c), { + target: c.target + ? c.target.map(function (e) { + return '#'.concat(e.id); + }) + : void 0, + source: '#'.concat(t.id), + }); + }, + }); + return c; + }), + (e.prototype.formatTransitions = function () { + var e, + t, + n, + i = this; + if (this.config.on) + if (Array.isArray(this.config.on)) n = this.config.on; + else { + var a = this.config.on, + s = g, + u = a[s], + d = void 0 === u ? [] : u, + f = (0, r._T)(a, ['*']); + n = (0, o.xH)( + Object.keys(f) + .map(function (e) { + c.M || + e !== v || + (0, o.ZK)( + !1, + "Empty string transition configs (e.g., `{ on: { '': ... }}`) for transient transitions are deprecated. Specify the transition in the `{ always: ... }` property instead. " + + 'Please check the `on` configuration for "#'.concat(i.id, '".'), + ); + var t = (0, o.jh)(e, f[e]); + return ( + c.M || + (function (e, t, n) { + var r = n.slice(0, -1).some(function (e) { + return !('cond' in e) && !('in' in e) && ((0, o.HD)(e.target) || (0, o.O4)(e.target)); + }), + i = t === v ? 'the transient event' : "event '".concat(t, "'"); + (0, o.ZK)( + !r, + 'One or more transitions for ' + .concat(i, " on state '") + .concat(e.id, "' are unreachable. ") + + 'Make sure that the default transition is the last one defined.', + ); + })(i, e, t), + t + ); + }) + .concat((0, o.jh)(g, d)), + ); + } + else n = []; + var h = this.config.always ? (0, o.jh)('', this.config.always) : [], + p = this.config.onDone ? (0, o.jh)(String((0, l.done)(this.id)), this.config.onDone) : []; + c.M || + (0, o.ZK)( + !(this.config.onDone && !this.parent), + 'Root nodes cannot have an ".onDone" transition. Please check the config of "'.concat(this.id, '".'), + ); + var m = (0, o.xH)( + this.invoke.map(function (e) { + var t = []; + return ( + e.onDone && + t.push.apply( + t, + (0, r.ev)([], (0, r.CR)((0, o.jh)(String((0, l.doneInvoke)(e.id)), e.onDone)), !1), + ), + e.onError && + t.push.apply(t, (0, r.ev)([], (0, r.CR)((0, o.jh)(String((0, l.error)(e.id)), e.onError)), !1)), + t + ); + }), + ), + y = this.after, + b = (0, o.xH)( + (0, r.ev)( + (0, r.ev)((0, r.ev)((0, r.ev)([], (0, r.CR)(p), !1), (0, r.CR)(m), !1), (0, r.CR)(n), !1), + (0, r.CR)(h), + !1, + ).map(function (e) { + return (0, o.qo)(e).map(function (e) { + return i.formatTransition(e); + }); + }), + ); + try { + for (var x = (0, r.XA)(y), w = x.next(); !w.done; w = x.next()) { + var E = w.value; + b.push(E); + } + } catch (k) { + e = { error: k }; + } finally { + try { + w && !w.done && (t = x.return) && t.call(x); + } finally { + if (e) throw e.error; + } + } + return b; + }), + e + ); + })(); + }, + 86859: (e, t, n) => { + 'use strict'; + n.d(t, { CR: () => a, XA: () => i, _T: () => o, ev: () => s, pi: () => r }); + var r = function () { + return ( + (r = + Object.assign || + function (e) { + for (var t, n = 1, r = arguments.length; n < r; n++) + for (var o in (t = arguments[n])) Object.prototype.hasOwnProperty.call(t, o) && (e[o] = t[o]); + return e; + }), + r.apply(this, arguments) + ); + }; + function o(e, t) { + var n = {}; + for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); + if (null != e && 'function' == typeof Object.getOwnPropertySymbols) { + var o = 0; + for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) + t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); + } + return n; + } + function i(e) { + var t = 'function' == typeof Symbol && Symbol.iterator, + n = t && e[t], + r = 0; + if (n) return n.call(e); + if (e && 'number' == typeof e.length) + return { + next: function () { + return e && r >= e.length && (e = void 0), { value: e && e[r++], done: !e }; + }, + }; + throw new TypeError(t ? 'Object is not iterable.' : 'Symbol.iterator is not defined.'); + } + function a(e, t) { + var n = 'function' == typeof Symbol && e[Symbol.iterator]; + if (!n) return e; + var r, + o, + i = n.call(e), + a = []; + try { + for (; (void 0 === t || t-- > 0) && !(r = i.next()).done; ) a.push(r.value); + } catch (s) { + o = { error: s }; + } finally { + try { + r && !r.done && (n = i.return) && n.call(i); + } finally { + if (o) throw o.error; + } + } + return a; + } + function s(e, t, n) { + if (n || 2 === arguments.length) + for (var r, o = 0, i = t.length; o < i; o++) + (!r && o in t) || (r || (r = Array.prototype.slice.call(t, 0, o)), (r[o] = t[o])); + return e.concat(r || Array.prototype.slice.call(t)); + } + }, + 26426: (e, t, n) => { + 'use strict'; + n.r(t), + n.d(t, { + after: () => d, + assign: () => u, + cancel: () => l, + choose: () => x, + doneState: () => f, + error: () => y, + errorExecution: () => g, + errorPlatform: () => m, + init: () => p, + invoke: () => v, + log: () => h, + nullEvent: () => c, + pure: () => w, + raise: () => a, + send: () => s, + start: () => o, + stop: () => i, + update: () => b, + }); + var r = n(71073), + o = r.M.Start, + i = r.M.Stop, + a = r.M.Raise, + s = r.M.Send, + l = r.M.Cancel, + c = r.M.NullEvent, + u = r.M.Assign, + d = r.M.After, + f = r.M.DoneState, + h = r.M.Log, + p = r.M.Init, + v = r.M.Invoke, + g = r.M.ErrorExecution, + m = r.M.ErrorPlatform, + y = r.M.ErrorCustom, + b = r.M.Update, + x = r.M.Choose, + w = r.M.Pure; + }, + 19913: (e, t, n) => { + 'use strict'; + n.r(t), + n.d(t, { + actionTypes: () => i, + after: () => D, + assign: () => j, + cancel: () => _, + choose: () => I, + done: () => N, + doneInvoke: () => M, + error: () => O, + escalate: () => L, + forwardTo: () => R, + getActionFunction: () => c, + initEvent: () => l, + isActionObject: () => T, + log: () => E, + pure: () => A, + raise: () => h, + resolveActions: () => F, + resolveLog: () => k, + resolveRaise: () => p, + resolveSend: () => g, + resolveStop: () => C, + respond: () => x, + send: () => v, + sendParent: () => m, + sendTo: () => y, + sendUpdate: () => b, + start: () => S, + stop: () => P, + toActionObject: () => u, + toActionObjects: () => d, + toActivityDefinition: () => f, + }); + var r = n(86859), + o = n(71073), + i = n(26426), + a = n(14487), + s = n(11293), + l = (0, a.g5)({ type: i.init }); + function c(e, t) { + return (t && t[e]) || void 0; + } + function u(e, t) { + var n; + if ((0, a.HD)(e) || 'number' == typeof e) { + var o = c(e, t); + n = (0, a.mf)(o) ? { type: e, exec: o } : o || { type: e, exec: void 0 }; + } else if ((0, a.mf)(e)) n = { type: e.name || e.toString(), exec: e }; + else { + o = c(e.type, t); + if ((0, a.mf)(o)) n = (0, r.pi)((0, r.pi)({}, e), { exec: o }); + else if (o) { + var i = o.type || e.type; + n = (0, r.pi)((0, r.pi)((0, r.pi)({}, o), e), { type: i }); + } else n = e; + } + return n; + } + var d = function (e, t) { + return e + ? ((0, a.kJ)(e) ? e : [e]).map(function (e) { + return u(e, t); + }) + : []; + }; + function f(e) { + var t = u(e); + return (0, r.pi)((0, r.pi)({ id: (0, a.HD)(e) ? e : t.id }, t), { type: t.type }); + } + function h(e) { + return (0, a.HD)(e) ? { type: i.raise, event: e } : v(e, { to: o.K.Internal }); + } + function p(e) { + return { type: i.raise, _event: (0, a.g5)(e.event) }; + } + function v(e, t) { + return { + to: t ? t.to : void 0, + type: i.send, + event: (0, a.mf)(e) ? e : (0, a._v)(e), + delay: t ? t.delay : void 0, + id: t && void 0 !== t.id ? t.id : (0, a.mf)(e) ? e.name : (0, a.x6)(e), + }; + } + function g(e, t, n, o) { + var i, + s = { _event: n }, + l = (0, a.g5)((0, a.mf)(e.event) ? e.event(t, n.data, s) : e.event); + if ((0, a.HD)(e.delay)) { + var c = o && o[e.delay]; + i = (0, a.mf)(c) ? c(t, n.data, s) : c; + } else i = (0, a.mf)(e.delay) ? e.delay(t, n.data, s) : e.delay; + var u = (0, a.mf)(e.to) ? e.to(t, n.data, s) : e.to; + return (0, r.pi)((0, r.pi)({}, e), { to: u, _event: l, event: l.data, delay: i }); + } + function m(e, t) { + return v(e, (0, r.pi)((0, r.pi)({}, t), { to: o.K.Parent })); + } + function y(e, t, n) { + return v(t, (0, r.pi)((0, r.pi)({}, n), { to: e })); + } + function b() { + return m(i.update); + } + function x(e, t) { + return v( + e, + (0, r.pi)((0, r.pi)({}, t), { + to: function (e, t, n) { + return n._event.origin; + }, + }), + ); + } + var w = function (e, t) { + return { context: e, event: t }; + }; + function E(e, t) { + return void 0 === e && (e = w), { type: i.log, label: t, expr: e }; + } + var k = function (e, t, n) { + return (0, r.pi)((0, r.pi)({}, e), { value: (0, a.HD)(e.expr) ? e.expr : e.expr(t, n.data, { _event: n }) }); + }, + _ = function (e) { + return { type: i.cancel, sendId: e }; + }; + function S(e) { + var t = f(e); + return { type: o.M.Start, activity: t, exec: void 0 }; + } + function P(e) { + var t = (0, a.mf)(e) ? e : f(e); + return { type: o.M.Stop, activity: t, exec: void 0 }; + } + function C(e, t, n) { + var r = (0, a.mf)(e.activity) ? e.activity(t, n.data) : e.activity, + i = 'string' == typeof r ? { id: r } : r; + return { type: o.M.Stop, activity: i }; + } + var j = function (e) { + return { type: i.assign, assignment: e }; + }; + function T(e) { + return 'object' == typeof e && 'type' in e; + } + function D(e, t) { + var n = t ? '#'.concat(t) : ''; + return ''.concat(o.M.After, '(').concat(e, ')').concat(n); + } + function N(e, t) { + var n = ''.concat(o.M.DoneState, '.').concat(e), + r = { + type: n, + data: t, + toString: function () { + return n; + }, + }; + return r; + } + function M(e, t) { + var n = ''.concat(o.M.DoneInvoke, '.').concat(e), + r = { + type: n, + data: t, + toString: function () { + return n; + }, + }; + return r; + } + function O(e, t) { + var n = ''.concat(o.M.ErrorPlatform, '.').concat(e), + r = { + type: n, + data: t, + toString: function () { + return n; + }, + }; + return r; + } + function A(e) { + return { type: o.M.Pure, get: e }; + } + function R(e, t) { + if (!(s.M || (e && 'function' != typeof e))) { + var n = e; + e = function () { + for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t]; + var o = 'function' == typeof n ? n.apply(void 0, (0, r.ev)([], (0, r.CR)(e), !1)) : n; + if (!o) + throw new Error( + 'Attempted to forward event to undefined actor. This risks an infinite loop in the sender.', + ); + return o; + }; + } + return v(function (e, t) { + return t; + }, (0, r.pi)((0, r.pi)({}, t), { to: e })); + } + function L(e, t) { + return m(function (t, n, r) { + return { type: i.error, data: (0, a.mf)(e) ? e(t, n, r) : e }; + }, (0, r.pi)((0, r.pi)({}, t), { to: o.K.Parent })); + } + function I(e) { + return { type: o.M.Choose, conds: e }; + } + var B = function (e) { + var t, + n, + o = []; + try { + for (var a = (0, r.XA)(e), s = a.next(); !s.done; s = a.next()) + for (var l = s.value, c = 0; c < l.length; ) l[c].type !== i.assign ? c++ : (o.push(l[c]), l.splice(c, 1)); + } catch (u) { + t = { error: u }; + } finally { + try { + s && !s.done && (n = a.return) && n.call(a); + } finally { + if (t) throw t.error; + } + } + return o; + }; + function F(e, t, n, l, c, f, h) { + void 0 === h && (h = !1); + var v = h ? [] : B(c), + m = v.length ? (0, a.dt)(n, l, v, t) : n, + y = h ? [n] : void 0, + b = []; + function x(c) { + var v; + switch (c.type) { + case i.raise: + return p(c); + case i.send: + var x = g(c, m, l, e.options.delays); + return ( + s.M || + (0, a.ZK)( + !(0, a.HD)(c.delay) || 'number' == typeof x.delay, + "No delay reference for delay expression '" + .concat(c.delay, "' was found on machine '") + .concat(e.id, "'"), + ), + f && x.to !== o.K.Internal && b.push(x), + x + ); + case i.log: + var w = k(c, m, l); + return null == f || f(w, m, l), w; + case i.choose: + if ( + !(P = + null === + (v = c.conds.find(function (n) { + var r = (0, a.Qi)(n.cond, e.options.guards); + return !r || (0, a.vx)(e, r, m, l, f ? void 0 : t); + })) || void 0 === v + ? void 0 + : v.actions) + ) + return []; + var E = (0, r.CR)(F(e, t, m, l, [d((0, a.qo)(P), e.options.actions)], f, h), 2), + _ = E[0], + S = E[1]; + return (m = S), null == y || y.push(m), _; + case i.pure: + var P; + if (!(P = c.get(m, l.data))) return []; + var j = (0, r.CR)(F(e, t, m, l, [d((0, a.qo)(P), e.options.actions)], f, h), 2), + T = j[0], + D = j[1]; + return (m = D), null == y || y.push(m), T; + case i.stop: + w = C(c, m, l); + return null == f || f(w, n, l), w; + case i.assign: + (m = (0, a.dt)(m, l, [c], f ? void 0 : t)), null == y || y.push(m); + break; + default: + var N = u(c, e.options.actions), + M = N.exec; + if (f) f(N, m, l); + else if (M && y) { + var O = y.length - 1; + N = (0, r.pi)((0, r.pi)({}, N), { + exec: function (e) { + for (var t = [], n = 1; n < arguments.length; n++) t[n - 1] = arguments[n]; + M.apply(void 0, (0, r.ev)([y[O]], (0, r.CR)(t), !1)); + }, + }); + } + return N; + } + } + return [ + (0, a.xH)( + c.map(function (e) { + var t, + n, + o = []; + try { + for (var i = (0, r.XA)(e), a = i.next(); !a.done; a = i.next()) { + var s = x(a.value); + s && (o = o.concat(s)); + } + } catch (c) { + t = { error: c }; + } finally { + try { + a && !a.done && (n = i.return) && n.call(i); + } finally { + if (t) throw t.error; + } + } + return ( + b.forEach(function (e) { + f(e, m, l); + }), + (b.length = 0), + o + ); + }), + ), + m, + ]; + } + }, + 62539: (e, t, n) => { + 'use strict'; + n.d(t, { YP: () => i }); + var r = n(71125), + o = n(14487); + function i(e, t) { + void 0 === t && (t = {}); + var n = e.initialState, + i = new Set(), + a = [], + s = !1, + l = (0, r.vk)({ + id: t.id, + send: function (t) { + a.push(t), + (function () { + if (!s) { + for (s = !0; a.length > 0; ) { + var t = a.shift(); + (n = e.transition(n, t, c)), + i.forEach(function (e) { + return e.next(n); + }); + } + s = !1; + } + })(); + }, + getSnapshot: function () { + return n; + }, + subscribe: function (e, t, r) { + var a = (0, o.zM)(e, t, r); + return ( + i.add(a), + a.next(n), + { + unsubscribe: function () { + i.delete(a); + }, + } + ); + }, + }), + c = { parent: t.parent, self: l, id: t.id || 'anonymous', observers: i }; + return (n = e.start ? e.start(c) : n), l; + } + }, + 79308: (e, t, n) => { + 'use strict'; + n.d(t, { TV: () => i, iS: () => r, qP: () => o, rt: () => a }); + var r = '.', + o = {}, + i = 'xstate.guard', + a = ''; + }, + 11293: (e, t, n) => { + 'use strict'; + n.d(t, { M: () => r }); + var r = !0; + }, + 92185: (e, t, n) => { + 'use strict'; + n.r(t), + n.d(t, { + ActionTypes: () => g.M, + Interpreter: () => i.Ng, + InterpreterStatus: () => i.TM, + Machine: () => a.J, + SpecialTargets: () => g.K, + State: () => u.ZM, + StateNode: () => p.n, + actions: () => r, + assign: () => m, + createMachine: () => a.C, + createSchema: () => f, + doneInvoke: () => k, + forwardTo: () => E, + interpret: () => i.kJ, + mapState: () => c, + matchState: () => d, + matchesState: () => l.W, + raise: () => _, + send: () => y, + sendParent: () => x, + sendTo: () => b, + sendUpdate: () => w, + spawn: () => i.Cs, + spawnBehavior: () => v.YP, + t: () => h, + toActorRef: () => o.vk, + toEventObject: () => l._v, + toObserver: () => l.zM, + toSCXMLEvent: () => l.g5, + }); + var r = n(19913), + o = n(71125), + i = n(26916), + a = n(93884), + s = n(86859), + l = n(14487); + function c(e, t) { + var n, r, o; + try { + for (var i = (0, s.XA)(Object.keys(e)), a = i.next(); !a.done; a = i.next()) { + var c = a.value; + (0, l.W)(c, t) && (!o || t.length > o.length) && (o = c); + } + } catch (u) { + n = { error: u }; + } finally { + try { + a && !a.done && (r = i.return) && r.call(i); + } finally { + if (n) throw n.error; + } + } + return e[o]; + } + var u = n(64e3); + function d(e, t, n) { + var r, + o, + i = u.ZM.from(e, e instanceof u.ZM ? e.context : void 0); + try { + for (var a = (0, s.XA)(t), l = a.next(); !l.done; l = a.next()) { + var c = (0, s.CR)(l.value, 2), + d = c[0], + f = c[1]; + if (i.matches(d)) return f(i); + } + } catch (h) { + r = { error: h }; + } finally { + try { + l && !l.done && (o = a.return) && o.call(a); + } finally { + if (r) throw r.error; + } + } + return n(i); + } + function f(e) { + return e; + } + var h = f, + p = n(90084), + v = n(62539), + g = n(71073), + m = r.assign, + y = r.send, + b = r.sendTo, + x = r.sendParent, + w = r.sendUpdate, + E = r.forwardTo, + k = r.doneInvoke, + _ = r.raise; + }, + 26916: (e, t, n) => { + 'use strict'; + n.d(t, { Ng: () => S, TM: () => w, kJ: () => j, Cs: () => C }); + var r = n(86859), + o = n(71073), + i = n(64e3), + a = n(26426), + s = n(19913), + l = n(11293), + c = n(14487), + u = { deferEvents: !1 }, + d = (function () { + function e(e) { + (this.processingEvent = !1), + (this.queue = []), + (this.initialized = !1), + (this.options = (0, r.pi)((0, r.pi)({}, u), e)); + } + return ( + (e.prototype.initialize = function (e) { + if (((this.initialized = !0), e)) { + if (!this.options.deferEvents) return void this.schedule(e); + this.process(e); + } + this.flushEvents(); + }), + (e.prototype.schedule = function (e) { + if (this.initialized && !this.processingEvent) { + if (0 !== this.queue.length) + throw new Error('Event queue should be empty when it is not processing events'); + this.process(e), this.flushEvents(); + } else this.queue.push(e); + }), + (e.prototype.clear = function () { + this.queue = []; + }), + (e.prototype.flushEvents = function () { + for (var e = this.queue.shift(); e; ) this.process(e), (e = this.queue.shift()); + }), + (e.prototype.process = function (e) { + this.processingEvent = !0; + try { + e(); + } catch (t) { + throw (this.clear(), t); + } finally { + this.processingEvent = !1; + } + }), + e + ); + })(), + f = n(71125), + h = new Map(), + p = 0, + v = function () { + return 'x:'.concat(p++); + }, + g = function (e, t) { + return h.set(e, t), e; + }, + m = function (e) { + return h.get(e); + }, + y = function (e) { + h.delete(e); + }; + function b() { + return 'undefined' != typeof globalThis + ? globalThis + : 'undefined' != typeof self + ? self + : 'undefined' != typeof window + ? window + : void 0 !== n.g + ? n.g + : void ( + l.M || + console.warn( + 'XState could not find a global object in this environment. Please let the maintainers know and raise an issue here: https://github.com/statelyai/xstate/issues', + ) + ); + } + function x(e) { + if (b()) { + var t = (function () { + var e = b(); + if (e && '__xstate__' in e) return e.__xstate__; + })(); + t && t.register(e); + } + } + var w, + E = n(21427), + k = n(62539), + _ = { sync: !1, autoForward: !1 }; + !(function (e) { + (e[(e.NotStarted = 0)] = 'NotStarted'), (e[(e.Running = 1)] = 'Running'), (e[(e.Stopped = 2)] = 'Stopped'); + })(w || (w = {})); + var S = (function () { + function e(t, n) { + void 0 === n && (n = e.defaultOptions); + var i = this; + (this.machine = t), + (this.delayedEventsMap = {}), + (this.listeners = new Set()), + (this.contextListeners = new Set()), + (this.stopListeners = new Set()), + (this.doneListeners = new Set()), + (this.eventListeners = new Set()), + (this.sendListeners = new Set()), + (this.initialized = !1), + (this.status = w.NotStarted), + (this.children = new Map()), + (this.forwardTo = new Set()), + (this._outgoingQueue = []), + (this.init = this.start), + (this.send = function (e, t) { + if ((0, c.kJ)(e)) return i.batch(e), i.state; + var n = (0, c.g5)((0, c._v)(e, t)); + if (i.status === w.Stopped) + return ( + l.M || + (0, c.ZK)( + !1, + 'Event "' + .concat(n.name, '" was sent to stopped service "') + .concat( + i.machine.id, + '". This service has already reached its final state, and will not transition.\nEvent: ', + ) + .concat(JSON.stringify(n.data)), + ), + i.state + ); + if (i.status !== w.Running && !i.options.deferEvents) + throw new Error( + 'Event "' + .concat(n.name, '" was sent to uninitialized service "') + .concat( + i.machine.id, + '". Make sure .start() is called for this service, or set { deferEvents: true } in the service options.\nEvent: ', + ) + .concat(JSON.stringify(n.data)), + ); + return ( + i.scheduler.schedule(function () { + i.forward(n); + var e = i._nextState(n); + i.update(e, n); + }), + i._state + ); + }), + (this.sendTo = function (e, t, n) { + var u = i.parent && (t === o.K.Parent || i.parent.id === t), + d = u ? i.parent : (0, c.HD)(t) ? i.children.get(t) || m(t) : (0, c.Bc)(t) ? t : void 0; + if (d) + if ('machine' in d) { + if (i.status !== w.Stopped || i.parent !== d || i.state.done) { + var f = (0, r.pi)((0, r.pi)({}, e), { + name: e.name === a.error ? ''.concat((0, s.error)(i.id)) : e.name, + origin: i.sessionId, + }); + !n && i.machine.config.predictableActionArguments ? i._outgoingQueue.push([d, f]) : d.send(f); + } + } else + !n && i.machine.config.predictableActionArguments + ? i._outgoingQueue.push([d, e.data]) + : d.send(e.data); + else { + if (!u) + throw new Error("Unable to send event to child '".concat(t, "' from service '").concat(i.id, "'.")); + l.M || + (0, c.ZK)(!1, "Service '".concat(i.id, "' has no parent: unable to send event ").concat(e.type)); + } + }), + (this._exec = function (e, t, n, r) { + void 0 === r && (r = i.machine.options.actions); + var u = e.exec || (0, s.getActionFunction)(e.type, r), + d = (0, c.mf)(u) ? u : u ? u.exec : e.exec; + if (d) + try { + return d( + t, + n.data, + i.machine.config.predictableActionArguments + ? { action: e, _event: n } + : { action: e, state: i.state, _event: n }, + ); + } catch (S) { + throw (i.parent && i.parent.send({ type: 'xstate.error', data: S }), S); + } + switch (e.type) { + case a.send: + var f = e; + if ('number' == typeof f.delay) return void i.defer(f); + f.to ? i.sendTo(f._event, f.to, n === s.initEvent) : i.send(f._event); + break; + case a.cancel: + i.cancel(e.sendId); + break; + case a.start: + if (i.status !== w.Running) return; + var h = e.activity; + if (!i.machine.config.predictableActionArguments && !i.state.activities[h.id || h.type]) break; + if (h.type === o.M.Invoke) { + var p = (0, c.j)(h.src), + v = i.machine.options.services ? i.machine.options.services[p.type] : void 0, + g = h.id, + m = h.data; + l.M || + (0, c.ZK)( + !('forward' in h), + "`forward` property is deprecated (found in invocation of '" + .concat(h.src, "' in in machine '") + .concat(i.machine.id, "'). ") + 'Please use `autoForward` instead.', + ); + var y = 'autoForward' in h ? h.autoForward : !!h.forward; + if (!v) + return void ( + l.M || + (0, c.ZK)( + !1, + "No service found for invocation '" + .concat(h.src, "' in machine '") + .concat(i.machine.id, "'."), + ) + ); + var b = m ? (0, c.QX)(m, t, n) : void 0; + if ('string' == typeof v) return; + var x = (0, c.mf)(v) ? v(t, n.data, { data: b, src: p, meta: h.meta }) : v; + if (!x) return; + var E = void 0; + (0, c.O4)(x) && ((x = b ? x.withContext(b) : x), (E = { autoForward: y })), i.spawn(x, g, E); + } else i.spawnActivity(h); + break; + case a.stop: + i.stopChild(e.activity.id); + break; + case a.log: + var k = e.label, + _ = e.value; + k ? i.logger(k, _) : i.logger(_); + break; + default: + l.M || (0, c.ZK)(!1, "No implementation found for action type '".concat(e.type, "'")); + } + }); + var u = (0, r.pi)((0, r.pi)({}, e.defaultOptions), n), + f = u.clock, + h = u.logger, + p = u.parent, + g = u.id, + y = void 0 !== g ? g : t.id; + (this.id = y), + (this.logger = h), + (this.clock = f), + (this.parent = p), + (this.options = u), + (this.scheduler = new d({ deferEvents: this.options.deferEvents })), + (this.sessionId = v()); + } + return ( + Object.defineProperty(e.prototype, 'initialState', { + get: function () { + var e = this; + return this._initialState + ? this._initialState + : (0, E.J)(this, function () { + return (e._initialState = e.machine.initialState), e._initialState; + }); + }, + enumerable: !1, + configurable: !0, + }), + Object.defineProperty(e.prototype, 'state', { + get: function () { + return ( + l.M || + (0, c.ZK)( + this.status !== w.NotStarted, + "Attempted to read state from uninitialized service '".concat( + this.id, + "'. Make sure the service is started first.", + ), + ), + this._state + ); + }, + enumerable: !1, + configurable: !0, + }), + (e.prototype.execute = function (e, t) { + var n, o; + try { + for (var i = (0, r.XA)(e.actions), a = i.next(); !a.done; a = i.next()) { + var s = a.value; + this.exec(s, e, t); + } + } catch (l) { + n = { error: l }; + } finally { + try { + a && !a.done && (o = i.return) && o.call(i); + } finally { + if (n) throw n.error; + } + } + }), + (e.prototype.update = function (e, t) { + var n, + o, + i, + a, + l, + u, + d, + f, + h = this; + if ( + ((e._sessionid = this.sessionId), + (this._state = e), + (this.machine.config.predictableActionArguments && t !== s.initEvent) || !this.options.execute) + ) + for (var p = void 0; (p = this._outgoingQueue.shift()); ) p[0].send(p[1]); + else this.execute(this.state); + if ( + (this.children.forEach(function (e) { + h.state.children[e.id] = e; + }), + this.devTools && this.devTools.send(t.data, e), + e.event) + ) + try { + for (var v = (0, r.XA)(this.eventListeners), g = v.next(); !g.done; g = v.next()) { + (0, g.value)(e.event); + } + } catch (S) { + n = { error: S }; + } finally { + try { + g && !g.done && (o = v.return) && o.call(v); + } finally { + if (n) throw n.error; + } + } + try { + for (var m = (0, r.XA)(this.listeners), y = m.next(); !y.done; y = m.next()) { + (0, y.value)(e, e.event); + } + } catch (P) { + i = { error: P }; + } finally { + try { + y && !y.done && (a = m.return) && a.call(m); + } finally { + if (i) throw i.error; + } + } + try { + for (var b = (0, r.XA)(this.contextListeners), x = b.next(); !x.done; x = b.next()) { + (0, x.value)(this.state.context, this.state.history ? this.state.history.context : void 0); + } + } catch (C) { + l = { error: C }; + } finally { + try { + x && !x.done && (u = b.return) && u.call(b); + } finally { + if (l) throw l.error; + } + } + if (this.state.done) { + var w = e.configuration.find(function (e) { + return 'final' === e.type && e.parent === h.machine; + }), + E = w && w.doneData ? (0, c.QX)(w.doneData, e.context, t) : void 0; + try { + for (var k = (0, r.XA)(this.doneListeners), _ = k.next(); !_.done; _ = k.next()) { + (0, _.value)((0, s.doneInvoke)(this.id, E)); + } + } catch (j) { + d = { error: j }; + } finally { + try { + _ && !_.done && (f = k.return) && f.call(k); + } finally { + if (d) throw d.error; + } + } + this._stop(), this._stopChildren(); + } + }), + (e.prototype.onTransition = function (e) { + return this.listeners.add(e), this.status === w.Running && e(this.state, this.state.event), this; + }), + (e.prototype.subscribe = function (e, t, n) { + var r = this, + o = (0, c.zM)(e, t, n); + this.listeners.add(o.next), this.status !== w.NotStarted && o.next(this.state); + var i = function () { + r.doneListeners.delete(i), r.stopListeners.delete(i), o.complete(); + }; + return ( + this.status === w.Stopped ? o.complete() : (this.onDone(i), this.onStop(i)), + { + unsubscribe: function () { + r.listeners.delete(o.next), r.doneListeners.delete(i), r.stopListeners.delete(i); + }, + } + ); + }), + (e.prototype.onEvent = function (e) { + return this.eventListeners.add(e), this; + }), + (e.prototype.onSend = function (e) { + return this.sendListeners.add(e), this; + }), + (e.prototype.onChange = function (e) { + return this.contextListeners.add(e), this; + }), + (e.prototype.onStop = function (e) { + return this.stopListeners.add(e), this; + }), + (e.prototype.onDone = function (e) { + return this.doneListeners.add(e), this; + }), + (e.prototype.off = function (e) { + return ( + this.listeners.delete(e), + this.eventListeners.delete(e), + this.sendListeners.delete(e), + this.stopListeners.delete(e), + this.doneListeners.delete(e), + this.contextListeners.delete(e), + this + ); + }), + (e.prototype.start = function (e) { + var t = this; + if (this.status === w.Running) return this; + this.machine._init(), g(this.sessionId, this), (this.initialized = !0), (this.status = w.Running); + var n = + void 0 === e + ? this.initialState + : (0, E.J)(this, function () { + return (0, i.TL)(e) + ? t.machine.resolveState(e) + : t.machine.resolveState(i.ZM.from(e, t.machine.context)); + }); + return ( + this.options.devTools && this.attachDev(), + this.scheduler.initialize(function () { + t.update(n, s.initEvent); + }), + this + ); + }), + (e.prototype._stopChildren = function () { + this.children.forEach(function (e) { + (0, c.mf)(e.stop) && e.stop(); + }), + this.children.clear(); + }), + (e.prototype._stop = function () { + var e, t, n, o, i, a, s, l, c, u; + try { + for (var f = (0, r.XA)(this.listeners), h = f.next(); !h.done; h = f.next()) { + var p = h.value; + this.listeners.delete(p); + } + } catch (S) { + e = { error: S }; + } finally { + try { + h && !h.done && (t = f.return) && t.call(f); + } finally { + if (e) throw e.error; + } + } + try { + for (var v = (0, r.XA)(this.stopListeners), g = v.next(); !g.done; g = v.next()) { + (p = g.value)(), this.stopListeners.delete(p); + } + } catch (P) { + n = { error: P }; + } finally { + try { + g && !g.done && (o = v.return) && o.call(v); + } finally { + if (n) throw n.error; + } + } + try { + for (var m = (0, r.XA)(this.contextListeners), y = m.next(); !y.done; y = m.next()) { + p = y.value; + this.contextListeners.delete(p); + } + } catch (C) { + i = { error: C }; + } finally { + try { + y && !y.done && (a = m.return) && a.call(m); + } finally { + if (i) throw i.error; + } + } + try { + for (var b = (0, r.XA)(this.doneListeners), x = b.next(); !x.done; x = b.next()) { + p = x.value; + this.doneListeners.delete(p); + } + } catch (j) { + s = { error: j }; + } finally { + try { + x && !x.done && (l = b.return) && l.call(b); + } finally { + if (s) throw s.error; + } + } + if (!this.initialized) return this; + (this.initialized = !1), (this.status = w.Stopped), (this._initialState = void 0); + try { + for (var E = (0, r.XA)(Object.keys(this.delayedEventsMap)), k = E.next(); !k.done; k = E.next()) { + var _ = k.value; + this.clock.clearTimeout(this.delayedEventsMap[_]); + } + } catch (T) { + c = { error: T }; + } finally { + try { + k && !k.done && (u = E.return) && u.call(E); + } finally { + if (c) throw c.error; + } + } + this.scheduler.clear(), (this.scheduler = new d({ deferEvents: this.options.deferEvents })); + }), + (e.prototype.stop = function () { + var e = this, + t = this.scheduler; + return ( + this._stop(), + t.schedule(function () { + var t = (0, c.g5)({ type: 'xstate.stop' }), + n = (0, E.J)(e, function () { + var n = (0, c.xH)( + (0, r.ev)([], (0, r.CR)(e.state.configuration), !1) + .sort(function (e, t) { + return t.order - e.order; + }) + .map(function (t) { + return (0, s.toActionObjects)(t.onExit, e.machine.options.actions); + }), + ), + l = (0, r.CR)( + (0, s.resolveActions)( + e.machine, + e.state, + e.state.context, + t, + [n], + e.machine.config.predictableActionArguments ? e._exec : void 0, + e.machine.config.predictableActionArguments || e.machine.config.preserveActionOrder, + ), + 2, + ), + u = l[0], + d = l[1], + f = new i.ZM({ + value: e.state.value, + context: d, + _event: t, + _sessionid: e.sessionId, + historyValue: void 0, + history: e.state, + actions: u.filter(function (e) { + return e.type !== a.raise && (e.type !== a.send || (!!e.to && e.to !== o.K.Internal)); + }), + activities: {}, + events: [], + configuration: [], + transitions: [], + children: {}, + done: e.state.done, + tags: e.state.tags, + machine: e.machine, + }); + return (f.changed = !0), f; + }); + e.update(n, t), e._stopChildren(), y(e.sessionId); + }), + this + ); + }), + (e.prototype.batch = function (e) { + var t = this; + if (this.status === w.NotStarted && this.options.deferEvents) + l.M || + (0, c.ZK)( + !1, + '' + .concat(e.length, ' event(s) were sent to uninitialized service "') + .concat( + this.machine.id, + '" and are deferred. Make sure .start() is called for this service.\nEvent: ', + ) + .concat(JSON.stringify(event)), + ); + else if (this.status !== w.Running) + throw new Error( + '' + .concat(e.length, ' event(s) were sent to uninitialized service "') + .concat( + this.machine.id, + '". Make sure .start() is called for this service, or set { deferEvents: true } in the service options.', + ), + ); + if (e.length) { + var n = !!this.machine.config.predictableActionArguments && this._exec; + this.scheduler.schedule(function () { + var o, + a, + s = t.state, + l = !1, + u = [], + d = function (e) { + var o = (0, c.g5)(e); + t.forward(o), + (s = (0, E.J)(t, function () { + return t.machine.transition(s, o, void 0, n || void 0); + })), + u.push.apply( + u, + (0, r.ev)( + [], + (0, r.CR)( + t.machine.config.predictableActionArguments + ? s.actions + : s.actions.map(function (e) { + return (0, i.j1)(e, s); + }), + ), + !1, + ), + ), + (l = l || !!s.changed); + }; + try { + for (var f = (0, r.XA)(e), h = f.next(); !h.done; h = f.next()) { + d(h.value); + } + } catch (p) { + o = { error: p }; + } finally { + try { + h && !h.done && (a = f.return) && a.call(f); + } finally { + if (o) throw o.error; + } + } + (s.changed = l), (s.actions = u), t.update(s, (0, c.g5)(e[e.length - 1])); + }); + } + }), + (e.prototype.sender = function (e) { + return this.send.bind(this, e); + }), + (e.prototype._nextState = function (e, t) { + var n = this; + void 0 === t && (t = !!this.machine.config.predictableActionArguments && this._exec); + var r = (0, c.g5)(e); + if ( + 0 === r.name.indexOf(a.errorPlatform) && + !this.state.nextEvents.some(function (e) { + return 0 === e.indexOf(a.errorPlatform); + }) + ) + throw r.data.data; + return (0, E.J)(this, function () { + return n.machine.transition(n.state, r, void 0, t || void 0); + }); + }), + (e.prototype.nextState = function (e) { + return this._nextState(e, !1); + }), + (e.prototype.forward = function (e) { + var t, n; + try { + for (var o = (0, r.XA)(this.forwardTo), i = o.next(); !i.done; i = o.next()) { + var a = i.value, + s = this.children.get(a); + if (!s) + throw new Error( + "Unable to forward event '" + .concat(e, "' from interpreter '") + .concat(this.id, "' to nonexistant child '") + .concat(a, "'."), + ); + s.send(e); + } + } catch (l) { + t = { error: l }; + } finally { + try { + i && !i.done && (n = o.return) && n.call(o); + } finally { + if (t) throw t.error; + } + } + }), + (e.prototype.defer = function (e) { + var t = this; + this.delayedEventsMap[e.id] = this.clock.setTimeout(function () { + e.to ? t.sendTo(e._event, e.to, !0) : t.send(e._event); + }, e.delay); + }), + (e.prototype.cancel = function (e) { + this.clock.clearTimeout(this.delayedEventsMap[e]), delete this.delayedEventsMap[e]; + }), + (e.prototype.exec = function (e, t, n) { + void 0 === n && (n = this.machine.options.actions), this._exec(e, t.context, t._event, n); + }), + (e.prototype.removeChild = function (e) { + var t; + this.children.delete(e), + this.forwardTo.delete(e), + null === (t = this.state) || void 0 === t || delete t.children[e]; + }), + (e.prototype.stopChild = function (e) { + var t = this.children.get(e); + t && (this.removeChild(e), (0, c.mf)(t.stop) && t.stop()); + }), + (e.prototype.spawn = function (e, t, n) { + if (this.status !== w.Running) return (0, f.Xg)(e, t); + if ((0, c.y8)(e)) return this.spawnPromise(Promise.resolve(e), t); + if ((0, c.mf)(e)) return this.spawnCallback(e, t); + if ((0, f.f3)(e)) return this.spawnActor(e, t); + if ((0, c.bi)(e)) return this.spawnObservable(e, t); + if ((0, c.O4)(e)) return this.spawnMachine(e, (0, r.pi)((0, r.pi)({}, n), { id: t })); + if ((0, c.HV)(e)) return this.spawnBehavior(e, t); + throw new Error('Unable to spawn entity "'.concat(t, '" of type "').concat(typeof e, '".')); + }), + (e.prototype.spawnMachine = function (t, n) { + var o = this; + void 0 === n && (n = {}); + var i = new e(t, (0, r.pi)((0, r.pi)({}, this.options), { parent: this, id: n.id || t.id })), + s = (0, r.pi)((0, r.pi)({}, _), n); + s.sync && + i.onTransition(function (e) { + o.send(a.update, { state: e, id: i.id }); + }); + var l = i; + return ( + this.children.set(i.id, l), + s.autoForward && this.forwardTo.add(i.id), + i + .onDone(function (e) { + o.removeChild(i.id), o.send((0, c.g5)(e, { origin: i.id })); + }) + .start(), + l + ); + }), + (e.prototype.spawnBehavior = function (e, t) { + var n = (0, k.YP)(e, { id: t, parent: this }); + return this.children.set(t, n), n; + }), + (e.prototype.spawnPromise = function (e, t) { + var n, + r, + o = this, + i = !1; + e.then( + function (e) { + i || ((r = e), o.removeChild(t), o.send((0, c.g5)((0, s.doneInvoke)(t, e), { origin: t }))); + }, + function (e) { + if (!i) { + o.removeChild(t); + var n = (0, s.error)(t, e); + try { + o.send((0, c.g5)(n, { origin: t })); + } catch (r) { + (0, c.v4)(e, r, t), o.devTools && o.devTools.send(n, o.state), o.machine.strict && o.stop(); + } + } + }, + ); + var a = + (((n = { + id: t, + send: function () {}, + subscribe: function (t, n, r) { + var o = (0, c.zM)(t, n, r), + i = !1; + return ( + e.then( + function (e) { + i || (o.next(e), i || o.complete()); + }, + function (e) { + i || o.error(e); + }, + ), + { + unsubscribe: function () { + return (i = !0); + }, + } + ); + }, + stop: function () { + i = !0; + }, + toJSON: function () { + return { id: t }; + }, + getSnapshot: function () { + return r; + }, + })[c.L$] = function () { + return this; + }), + n); + return this.children.set(t, a), a; + }), + (e.prototype.spawnCallback = function (e, t) { + var n, + r, + o, + i = this, + a = !1, + l = new Set(), + u = new Set(); + try { + o = e( + function (e) { + (r = e), + u.forEach(function (t) { + return t(e); + }), + a || i.send((0, c.g5)(e, { origin: t })); + }, + function (e) { + l.add(e); + }, + ); + } catch (f) { + this.send((0, s.error)(t, f)); + } + if ((0, c.y8)(o)) return this.spawnPromise(o, t); + var d = + (((n = { + id: t, + send: function (e) { + return l.forEach(function (t) { + return t(e); + }); + }, + subscribe: function (e) { + var t = (0, c.zM)(e); + return ( + u.add(t.next), + { + unsubscribe: function () { + u.delete(t.next); + }, + } + ); + }, + stop: function () { + (a = !0), (0, c.mf)(o) && o(); + }, + toJSON: function () { + return { id: t }; + }, + getSnapshot: function () { + return r; + }, + })[c.L$] = function () { + return this; + }), + n); + return this.children.set(t, d), d; + }), + (e.prototype.spawnObservable = function (e, t) { + var n, + r, + o = this, + i = e.subscribe( + function (e) { + (r = e), o.send((0, c.g5)(e, { origin: t })); + }, + function (e) { + o.removeChild(t), o.send((0, c.g5)((0, s.error)(t, e), { origin: t })); + }, + function () { + o.removeChild(t), o.send((0, c.g5)((0, s.doneInvoke)(t), { origin: t })); + }, + ), + a = + (((n = { + id: t, + send: function () {}, + subscribe: function (t, n, r) { + return e.subscribe(t, n, r); + }, + stop: function () { + return i.unsubscribe(); + }, + getSnapshot: function () { + return r; + }, + toJSON: function () { + return { id: t }; + }, + })[c.L$] = function () { + return this; + }), + n); + return this.children.set(t, a), a; + }), + (e.prototype.spawnActor = function (e, t) { + return this.children.set(t, e), e; + }), + (e.prototype.spawnActivity = function (e) { + var t = + this.machine.options && this.machine.options.activities + ? this.machine.options.activities[e.type] + : void 0; + if (t) { + var n = t(this.state.context, e); + this.spawnEffect(e.id, n); + } else l.M || (0, c.ZK)(!1, "No implementation found for activity '".concat(e.type, "'")); + }), + (e.prototype.spawnEffect = function (e, t) { + var n; + this.children.set( + e, + (((n = { + id: e, + send: function () {}, + subscribe: function () { + return { unsubscribe: function () {} }; + }, + stop: t || void 0, + getSnapshot: function () {}, + toJSON: function () { + return { id: e }; + }, + })[c.L$] = function () { + return this; + }), + n), + ); + }), + (e.prototype.attachDev = function () { + var e = b(); + if (this.options.devTools && e) { + if (e.__REDUX_DEVTOOLS_EXTENSION__) { + var t = 'object' == typeof this.options.devTools ? this.options.devTools : void 0; + (this.devTools = e.__REDUX_DEVTOOLS_EXTENSION__.connect( + (0, r.pi)( + (0, r.pi)( + { + name: this.id, + autoPause: !0, + stateSanitizer: function (e) { + return { value: e.value, context: e.context, actions: e.actions }; + }, + }, + t, + ), + { features: (0, r.pi)({ jump: !1, skip: !1 }, t ? t.features : void 0) }, + ), + this.machine, + )), + this.devTools.init(this.state); + } + x(this); + } + }), + (e.prototype.toJSON = function () { + return { id: this.id }; + }), + (e.prototype[c.L$] = function () { + return this; + }), + (e.prototype.getSnapshot = function () { + return this.status === w.NotStarted ? this.initialState : this._state; + }), + (e.defaultOptions = { + execute: !0, + deferEvents: !0, + clock: { + setTimeout: function (e, t) { + return setTimeout(e, t); + }, + clearTimeout: function (e) { + return clearTimeout(e); + }, + }, + logger: console.log.bind(console), + devTools: !1, + }), + (e.interpret = j), + e + ); + })(), + P = function (e) { + return (0, c.HD)(e) + ? (0, r.pi)((0, r.pi)({}, _), { name: e }) + : (0, r.pi)((0, r.pi)((0, r.pi)({}, _), { name: (0, c.EL)() }), e); + }; + function C(e, t) { + var n = P(t); + return (0, E.F)(function (t) { + if (!l.M) { + var r = (0, c.O4)(e) || (0, c.mf)(e); + (0, c.ZK)( + !!t || r, + 'Attempted to spawn an Actor (ID: "'.concat( + (0, c.O4)(e) ? e.id : 'undefined', + '") outside of a service. This will have no effect.', + ), + ); + } + return t ? t.spawn(e, n.name, n) : (0, f.Xg)(e, n.name); + }); + } + function j(e, t) { + return new S(e, t); + } + }, + 21427: (e, t, n) => { + 'use strict'; + n.d(t, { F: () => i, J: () => o }); + var r = [], + o = function (e, t) { + r.push(e); + var n = t(e); + return r.pop(), n; + }, + i = function (e) { + return e(r[r.length - 1]); + }; + }, + 73340: (e, t, n) => { + 'use strict'; + n.d(t, { + G: () => s, + Ij: () => v, + N9: () => i, + NA: () => f, + Oe: () => m, + P_: () => c, + ac: () => l, + e$: () => h, + nI: () => a, + nJ: () => p, + xZ: () => g, + }); + var r = n(86859), + o = n(14487), + i = function (e) { + return 'atomic' === e.type || 'final' === e.type; + }; + function a(e) { + return Object.keys(e.states).map(function (t) { + return e.states[t]; + }); + } + function s(e) { + return a(e).filter(function (e) { + return 'history' !== e.type; + }); + } + function l(e) { + var t = [e]; + return i(e) ? t : t.concat((0, o.xH)(s(e).map(l))); + } + function c(e, t) { + var n, + o, + i, + a, + l, + c, + u, + f, + h = d(new Set(e)), + p = new Set(t); + try { + for (var v = (0, r.XA)(p), g = v.next(); !g.done; g = v.next()) + for (var m = (P = g.value).parent; m && !p.has(m); ) p.add(m), (m = m.parent); + } catch (C) { + n = { error: C }; + } finally { + try { + g && !g.done && (o = v.return) && o.call(v); + } finally { + if (n) throw n.error; + } + } + var y = d(p); + try { + for (var b = (0, r.XA)(p), x = b.next(); !x.done; x = b.next()) { + if ('compound' !== (P = x.value).type || (y.get(P) && y.get(P).length)) { + if ('parallel' === P.type) + try { + for (var w = ((l = void 0), (0, r.XA)(s(P))), E = w.next(); !E.done; E = w.next()) { + var k = E.value; + p.has(k) || + (p.add(k), + h.get(k) + ? h.get(k).forEach(function (e) { + return p.add(e); + }) + : k.initialStateNodes.forEach(function (e) { + return p.add(e); + })); + } + } catch (j) { + l = { error: j }; + } finally { + try { + E && !E.done && (c = w.return) && c.call(w); + } finally { + if (l) throw l.error; + } + } + } else + h.get(P) + ? h.get(P).forEach(function (e) { + return p.add(e); + }) + : P.initialStateNodes.forEach(function (e) { + return p.add(e); + }); + } + } catch (T) { + i = { error: T }; + } finally { + try { + x && !x.done && (a = b.return) && a.call(b); + } finally { + if (i) throw i.error; + } + } + try { + for (var _ = (0, r.XA)(p), S = _.next(); !S.done; S = _.next()) { + var P; + for (m = (P = S.value).parent; m && !p.has(m); ) p.add(m), (m = m.parent); + } + } catch (D) { + u = { error: D }; + } finally { + try { + S && !S.done && (f = _.return) && f.call(_); + } finally { + if (u) throw u.error; + } + } + return p; + } + function u(e, t) { + var n = t.get(e); + if (!n) return {}; + if ('compound' === e.type) { + var r = n[0]; + if (!r) return {}; + if (i(r)) return r.key; + } + var o = {}; + return ( + n.forEach(function (e) { + o[e.key] = u(e, t); + }), + o + ); + } + function d(e) { + var t, + n, + o = new Map(); + try { + for (var i = (0, r.XA)(e), a = i.next(); !a.done; a = i.next()) { + var s = a.value; + o.has(s) || o.set(s, []), s.parent && (o.has(s.parent) || o.set(s.parent, []), o.get(s.parent).push(s)); + } + } catch (l) { + t = { error: l }; + } finally { + try { + a && !a.done && (n = i.return) && n.call(i); + } finally { + if (t) throw t.error; + } + } + return o; + } + function f(e, t) { + return u(e, d(c([e], t))); + } + function h(e, t) { + return Array.isArray(e) + ? e.some(function (e) { + return e === t; + }) + : e instanceof Set && e.has(t); + } + function p(e) { + return (0, r.ev)( + [], + (0, r.CR)( + new Set( + (0, o.xH)( + (0, r.ev)( + [], + (0, r.CR)( + e.map(function (e) { + return e.ownEvents; + }), + ), + !1, + ), + ), + ), + ), + !1, + ); + } + function v(e, t) { + return 'compound' === t.type + ? s(t).some(function (t) { + return 'final' === t.type && h(e, t); + }) + : 'parallel' === t.type && + s(t).every(function (t) { + return v(e, t); + }); + } + function g(e) { + return ( + void 0 === e && (e = []), + e.reduce(function (e, t) { + return void 0 !== t.meta && (e[t.id] = t.meta), e; + }, {}) + ); + } + function m(e) { + return new Set( + (0, o.xH)( + e.map(function (e) { + return e.tags; + }), + ), + ); + } + }, + 71073: (e, t, n) => { + 'use strict'; + var r, o; + n.d(t, { K: () => o, M: () => r }), + (function (e) { + (e.Start = 'xstate.start'), + (e.Stop = 'xstate.stop'), + (e.Raise = 'xstate.raise'), + (e.Send = 'xstate.send'), + (e.Cancel = 'xstate.cancel'), + (e.NullEvent = ''), + (e.Assign = 'xstate.assign'), + (e.After = 'xstate.after'), + (e.DoneState = 'done.state'), + (e.DoneInvoke = 'done.invoke'), + (e.Log = 'xstate.log'), + (e.Init = 'xstate.init'), + (e.Invoke = 'xstate.invoke'), + (e.ErrorExecution = 'error.execution'), + (e.ErrorCommunication = 'error.communication'), + (e.ErrorPlatform = 'error.platform'), + (e.ErrorCustom = 'xstate.error'), + (e.Update = 'xstate.update'), + (e.Pure = 'xstate.pure'), + (e.Choose = 'xstate.choose'); + })(r || (r = {})), + (function (e) { + (e.Parent = '#_parent'), (e.Internal = '#_internal'); + })(o || (o = {})); + }, + 14487: (e, t, n) => { + 'use strict'; + n.d(t, { + Bc: () => L, + EL: () => I, + ET: () => p, + HD: () => N, + HV: () => k, + JQ: () => w, + L$: () => A, + O4: () => R, + Q8: () => f, + Q9: () => c, + QX: () => x, + Qi: () => M, + SA: () => g, + W: () => s, + WM: () => u, + ZK: () => j, + _v: () => B, + bi: () => O, + bx: () => q, + dt: () => C, + g5: () => F, + gk: () => v, + ib: () => h, + j: () => W, + jh: () => z, + kJ: () => T, + mf: () => D, + on: () => d, + qo: () => b, + rg: () => V, + uK: () => _, + v4: () => G, + vx: () => H, + x6: () => l, + xH: () => m, + y8: () => E, + yv: () => P, + zM: () => U, + }); + var r, + o = n(86859), + i = n(79308), + a = n(11293); + function s(e, t, n) { + void 0 === n && (n = i.iS); + var r = u(e, n), + o = u(t, n); + return N(o) + ? !!N(r) && o === r + : N(r) + ? r in o + : Object.keys(r).every(function (e) { + return e in o && s(r[e], o[e]); + }); + } + function l(e) { + try { + return N(e) || 'number' == typeof e ? ''.concat(e) : e.type; + } catch (t) { + throw new Error('Events must be strings or objects with a string event.type property.'); + } + } + function c(e, t) { + try { + return T(e) ? e : e.toString().split(t); + } catch (n) { + throw new Error("'".concat(e, "' is not a valid state path.")); + } + } + function u(e, t) { + return 'object' == typeof (n = e) && 'value' in n && 'context' in n && 'event' in n && '_event' in n + ? e.value + : T(e) + ? d(e) + : 'string' != typeof e + ? e + : d(c(e, t)); + var n; + } + function d(e) { + if (1 === e.length) return e[0]; + for (var t = {}, n = t, r = 0; r < e.length - 1; r++) + r === e.length - 2 ? (n[e[r]] = e[r + 1]) : ((n[e[r]] = {}), (n = n[e[r]])); + return t; + } + function f(e, t) { + for (var n = {}, r = Object.keys(e), o = 0; o < r.length; o++) { + var i = r[o]; + n[i] = t(e[i], i, e, o); + } + return n; + } + function h(e, t, n) { + var r, + i, + a = {}; + try { + for (var s = (0, o.XA)(Object.keys(e)), l = s.next(); !l.done; l = s.next()) { + var c = l.value, + u = e[c]; + n(u) && (a[c] = t(u, c, e)); + } + } catch (d) { + r = { error: d }; + } finally { + try { + l && !l.done && (i = s.return) && i.call(s); + } finally { + if (r) throw r.error; + } + } + return a; + } + var p = function (e) { + return function (t) { + var n, + r, + i = t; + try { + for (var a = (0, o.XA)(e), s = a.next(); !s.done; s = a.next()) { + i = i[s.value]; + } + } catch (l) { + n = { error: l }; + } finally { + try { + s && !s.done && (r = a.return) && r.call(a); + } finally { + if (n) throw n.error; + } + } + return i; + }; + }; + function v(e, t) { + return function (n) { + var r, + i, + a = n; + try { + for (var s = (0, o.XA)(e), l = s.next(); !l.done; l = s.next()) { + var c = l.value; + a = a[t][c]; + } + } catch (u) { + r = { error: u }; + } finally { + try { + l && !l.done && (i = s.return) && i.call(s); + } finally { + if (r) throw r.error; + } + } + return a; + }; + } + function g(e) { + return e + ? N(e) + ? [[e]] + : m( + Object.keys(e).map(function (t) { + var n = e[t]; + return 'string' == typeof n || (n && Object.keys(n).length) + ? g(e[t]).map(function (e) { + return [t].concat(e); + }) + : [[t]]; + }), + ) + : [[]]; + } + function m(e) { + var t; + return (t = []).concat.apply(t, (0, o.ev)([], (0, o.CR)(e), !1)); + } + function y(e) { + return T(e) ? e : [e]; + } + function b(e) { + return void 0 === e ? [] : y(e); + } + function x(e, t, n) { + var r, i; + if (D(e)) return e(t, n.data); + var a = {}; + try { + for (var s = (0, o.XA)(Object.keys(e)), l = s.next(); !l.done; l = s.next()) { + var c = l.value, + u = e[c]; + D(u) ? (a[c] = u(t, n.data)) : (a[c] = u); + } + } catch (d) { + r = { error: d }; + } finally { + try { + l && !l.done && (i = s.return) && i.call(s); + } finally { + if (r) throw r.error; + } + } + return a; + } + function w(e) { + return /^(done|error)\./.test(e); + } + function E(e) { + return e instanceof Promise || !(null === e || (!D(e) && 'object' != typeof e) || !D(e.then)); + } + function k(e) { + return null !== e && 'object' == typeof e && 'transition' in e && 'function' == typeof e.transition; + } + function _(e, t) { + var n, + r, + i = (0, o.CR)([[], []], 2), + a = i[0], + s = i[1]; + try { + for (var l = (0, o.XA)(e), c = l.next(); !c.done; c = l.next()) { + var u = c.value; + t(u) ? a.push(u) : s.push(u); + } + } catch (d) { + n = { error: d }; + } finally { + try { + c && !c.done && (r = l.return) && r.call(l); + } finally { + if (n) throw n.error; + } + } + return [a, s]; + } + function S(e, t) { + return f(e.states, function (e, n) { + if (e) { + var r = (N(t) ? void 0 : t[n]) || (e ? e.current : void 0); + if (r) return { current: r, states: S(e, r) }; + } + }); + } + function P(e, t) { + return { current: t, states: S(e, t) }; + } + function C(e, t, n, r) { + a.M || j(!!e, 'Attempting to update undefined context'); + var i = e + ? n.reduce(function (e, n) { + var i, + a, + s = n.assignment, + l = { state: r, action: n, _event: t }, + c = {}; + if (D(s)) c = s(e, t.data, l); + else + try { + for (var u = (0, o.XA)(Object.keys(s)), d = u.next(); !d.done; d = u.next()) { + var f = d.value, + h = s[f]; + c[f] = D(h) ? h(e, t.data, l) : h; + } + } catch (p) { + i = { error: p }; + } finally { + try { + d && !d.done && (a = u.return) && a.call(u); + } finally { + if (i) throw i.error; + } + } + return Object.assign({}, e, c); + }, e) + : e; + return i; + } + var j = function () {}; + function T(e) { + return Array.isArray(e); + } + function D(e) { + return 'function' == typeof e; + } + function N(e) { + return 'string' == typeof e; + } + function M(e, t) { + if (e) + return N(e) + ? { type: i.TV, name: e, predicate: t ? t[e] : void 0 } + : D(e) + ? { type: i.TV, name: e.name, predicate: e } + : e; + } + function O(e) { + try { + return 'subscribe' in e && D(e.subscribe); + } catch (t) { + return !1; + } + } + a.M || + (j = function (e, t) { + var n = e instanceof Error ? e : void 0; + if ((n || !e) && void 0 !== console) { + var r = ['Warning: '.concat(t)]; + n && r.push(n), console.warn.apply(console, r); + } + }); + var A = (function () { + return ('function' == typeof Symbol && Symbol.observable) || '@@observable'; + })(); + ((r = {})[A] = function () { + return this; + }), + (r[Symbol.observable] = function () { + return this; + }); + function R(e) { + return !!e && '__xstatenode' in e; + } + function L(e) { + return !!e && 'function' == typeof e.send; + } + var I = (function () { + var e = 0; + return function () { + return (++e).toString(16); + }; + })(); + function B(e, t) { + return N(e) || 'number' == typeof e ? (0, o.pi)({ type: e }, t) : e; + } + function F(e, t) { + if (!N(e) && '$$type' in e && 'scxml' === e.$$type) return e; + var n = B(e); + return (0, o.pi)({ name: n.type, data: n, $$type: 'scxml', type: 'external' }, t); + } + function z(e, t) { + return y(t).map(function (t) { + return void 0 === t || 'string' == typeof t || R(t) + ? { target: t, event: e } + : (0, o.pi)((0, o.pi)({}, t), { event: e }); + }); + } + function V(e) { + if (void 0 !== e && e !== i.rt) return b(e); + } + function G(e, t, n) { + if (!a.M) { + var r = e.stack ? " Stacktrace was '".concat(e.stack, "'") : ''; + if (e === t) + console.error( + "Missing onError handler for invocation '".concat(n, "', error was '").concat(e, "'.").concat(r), + ); + else { + var o = t.stack ? " Stacktrace was '".concat(t.stack, "'") : ''; + console.error( + "Missing onError handler and/or unhandled exception/promise rejection for invocation '".concat(n, "'. ") + + "Original error: '".concat(e, "'. ").concat(r, " Current error is '").concat(t, "'.").concat(o), + ); + } + } + } + function H(e, t, n, r, o) { + var a = e.options.guards, + s = { state: o, cond: t, _event: r }; + if (t.type === i.TV) return ((null == a ? void 0 : a[t.name]) || t.predicate)(n, r.data, s); + var l = null == a ? void 0 : a[t.type]; + if (!l) throw new Error("Guard '".concat(t.type, "' is not implemented on machine '").concat(e.id, "'.")); + return l(n, r.data, s); + } + function W(e) { + return 'string' == typeof e ? { type: e } : e; + } + function U(e, t, n) { + var r = function () {}, + o = 'object' == typeof e, + i = o ? e : null; + return { + next: ((o ? e.next : e) || r).bind(i), + error: ((o ? e.error : t) || r).bind(i), + complete: ((o ? e.complete : n) || r).bind(i), + }; + } + function q(e, t) { + return ''.concat(e, ':invocation[').concat(t, ']'); + } + }, + }, + e => { + var t; + (t = 55948), e((e.s = t)); + }, +]); diff --git a/.nx/cache/nx-console-project-graph/static/polyfills.js b/.nx/cache/nx-console-project-graph/static/polyfills.js new file mode 100644 index 0000000000000..bcc3721b1b543 --- /dev/null +++ b/.nx/cache/nx-console-project-graph/static/polyfills.js @@ -0,0 +1,6951 @@ +(self.webpackChunk = self.webpackChunk || []).push([ + [429], + { + 77365: (t, r, e) => { + 'use strict'; + e(47306), + e(17818), + e(39661), + e(13591), + e(18868), + e(54095), + e(57640), + e(18253), + e(94841), + e(78062), + e(89909), + e(5425), + e(59882), + e(75715), + e(24560), + e(14137), + e(2048), + e(51072), + e(91609), + e(80742), + e(30403), + e(63411), + e(19658), + e(22634), + e(8297), + e(47657), + e(24024), + e(13749), + e(22741), + e(7116), + e(70769), + e(94457), + e(15371), + e(46933), + e(9883), + e(76618), + e(16784), + e(46073), + e(9944), + e(8258), + e(80776), + e(50633), + e(29), + e(71867), + e(64469), + e(40387), + e(58521), + e(19280), + e(62108), + e(11662), + e(78598), + e(55806), + e(27999), + e(30146), + e(44160), + e(21887), + e(17507), + e(22894), + e(61066), + e(58528), + e(74273), + e(51850), + e(72726), + e(31368), + e(22993), + e(3346), + e(98720), + e(39853), + e(57307), + e(8711), + e(73397); + }, + 70481: (t, r, e) => { + var n = e(88807), + o = e(48427), + i = TypeError; + t.exports = function (t) { + if (n(t)) return t; + throw i(o(t) + ' is not a function'); + }; + }, + 12420: (t, r, e) => { + var n = e(41758), + o = e(48427), + i = TypeError; + t.exports = function (t) { + if (n(t)) return t; + throw i(o(t) + ' is not a constructor'); + }; + }, + 5946: (t, r, e) => { + var n = e(88807), + o = String, + i = TypeError; + t.exports = function (t) { + if ('object' == typeof t || n(t)) return t; + throw i("Can't set " + o(t) + ' as a prototype'); + }; + }, + 63288: (t, r, e) => { + var n = e(96982), + o = e(56042), + i = e(90189).f, + a = n('unscopables'), + u = Array.prototype; + null == u[a] && i(u, a, { configurable: !0, value: o(null) }), + (t.exports = function (t) { + u[a][t] = !0; + }); + }, + 95158: (t, r, e) => { + 'use strict'; + var n = e(33100).charAt; + t.exports = function (t, r, e) { + return r + (e ? n(t, r).length : 1); + }; + }, + 65712: (t, r, e) => { + var n = e(13521), + o = TypeError; + t.exports = function (t, r) { + if (n(r, t)) return t; + throw o('Incorrect invocation'); + }; + }, + 71843: (t, r, e) => { + var n = e(21188), + o = String, + i = TypeError; + t.exports = function (t) { + if (n(t)) return t; + throw i(o(t) + ' is not an object'); + }; + }, + 47603: t => { + t.exports = 'undefined' != typeof ArrayBuffer && 'undefined' != typeof DataView; + }, + 89473: (t, r, e) => { + var n = e(82229); + t.exports = n(function () { + if ('function' == typeof ArrayBuffer) { + var t = new ArrayBuffer(8); + Object.isExtensible(t) && Object.defineProperty(t, 'a', { value: 8 }); + } + }); + }, + 30491: (t, r, e) => { + 'use strict'; + var n, + o, + i, + a = e(47603), + u = e(95417), + s = e(70412), + c = e(88807), + f = e(21188), + l = e(91854), + h = e(765), + p = e(48427), + v = e(7001), + d = e(29379), + g = e(90189).f, + y = e(13521), + m = e(62421), + b = e(71083), + x = e(96982), + w = e(34436), + S = e(887), + A = S.enforce, + R = S.get, + E = s.Int8Array, + O = E && E.prototype, + I = s.Uint8ClampedArray, + P = I && I.prototype, + T = E && m(E), + j = O && m(O), + L = Object.prototype, + k = s.TypeError, + U = x('toStringTag'), + C = w('TYPED_ARRAY_TAG'), + _ = 'TypedArrayConstructor', + M = a && !!b && 'Opera' !== h(s.opera), + F = !1, + N = { + Int8Array: 1, + Uint8Array: 1, + Uint8ClampedArray: 1, + Int16Array: 2, + Uint16Array: 2, + Int32Array: 4, + Uint32Array: 4, + Float32Array: 4, + Float64Array: 8, + }, + B = { BigInt64Array: 8, BigUint64Array: 8 }, + D = function (t) { + var r = m(t); + if (f(r)) { + var e = R(r); + return e && l(e, _) ? e[_] : D(r); + } + }, + H = function (t) { + if (!f(t)) return !1; + var r = h(t); + return l(N, r) || l(B, r); + }; + for (n in N) (i = (o = s[n]) && o.prototype) ? (A(i)[_] = o) : (M = !1); + for (n in B) (i = (o = s[n]) && o.prototype) && (A(i)[_] = o); + if ( + (!M || !c(T) || T === Function.prototype) && + ((T = function () { + throw k('Incorrect invocation'); + }), + M) + ) + for (n in N) s[n] && b(s[n], T); + if ((!M || !j || j === L) && ((j = T.prototype), M)) for (n in N) s[n] && b(s[n].prototype, j); + if ((M && m(P) !== j && b(P, j), u && !l(j, U))) + for (n in ((F = !0), + g(j, U, { + get: function () { + return f(this) ? this[C] : void 0; + }, + }), + N)) + s[n] && v(s[n], C, n); + t.exports = { + NATIVE_ARRAY_BUFFER_VIEWS: M, + TYPED_ARRAY_TAG: F && C, + aTypedArray: function (t) { + if (H(t)) return t; + throw k('Target is not a typed array'); + }, + aTypedArrayConstructor: function (t) { + if (c(t) && (!b || y(T, t))) return t; + throw k(p(t) + ' is not a typed array constructor'); + }, + exportTypedArrayMethod: function (t, r, e, n) { + if (u) { + if (e) + for (var o in N) { + var i = s[o]; + if (i && l(i.prototype, t)) + try { + delete i.prototype[t]; + } catch (a) { + try { + i.prototype[t] = r; + } catch (c) {} + } + } + (j[t] && !e) || d(j, t, e ? r : (M && O[t]) || r, n); + } + }, + exportTypedArrayStaticMethod: function (t, r, e) { + var n, o; + if (u) { + if (b) { + if (e) + for (n in N) + if ((o = s[n]) && l(o, t)) + try { + delete o[t]; + } catch (i) {} + if (T[t] && !e) return; + try { + return d(T, t, e ? r : (M && T[t]) || r); + } catch (i) {} + } + for (n in N) !(o = s[n]) || (o[t] && !e) || d(o, t, r); + } + }, + getTypedArrayConstructor: D, + isView: function (t) { + if (!f(t)) return !1; + var r = h(t); + return 'DataView' === r || l(N, r) || l(B, r); + }, + isTypedArray: H, + TypedArray: T, + TypedArrayPrototype: j, + }; + }, + 11812: (t, r, e) => { + 'use strict'; + var n = e(70412), + o = e(41765), + i = e(95417), + a = e(47603), + u = e(56815), + s = e(7001), + c = e(87570), + f = e(82229), + l = e(65712), + h = e(32048), + p = e(25664), + v = e(22785), + d = e(23205), + g = e(62421), + y = e(71083), + m = e(58206).f, + b = e(90189).f, + x = e(99369), + w = e(89625), + S = e(43803), + A = e(887), + R = u.PROPER, + E = u.CONFIGURABLE, + O = A.get, + I = A.set, + P = 'ArrayBuffer', + T = 'DataView', + j = 'prototype', + L = 'Wrong index', + k = n[P], + U = k, + C = U && U[j], + _ = n[T], + M = _ && _[j], + F = Object.prototype, + N = n.Array, + B = n.RangeError, + D = o(x), + H = o([].reverse), + z = d.pack, + q = d.unpack, + W = function (t) { + return [255 & t]; + }, + G = function (t) { + return [255 & t, (t >> 8) & 255]; + }, + V = function (t) { + return [255 & t, (t >> 8) & 255, (t >> 16) & 255, (t >> 24) & 255]; + }, + $ = function (t) { + return (t[3] << 24) | (t[2] << 16) | (t[1] << 8) | t[0]; + }, + Y = function (t) { + return z(t, 23, 4); + }, + K = function (t) { + return z(t, 52, 8); + }, + J = function (t, r) { + b(t[j], r, { + get: function () { + return O(this)[r]; + }, + }); + }, + X = function (t, r, e, n) { + var o = v(e), + i = O(t); + if (o + r > i.byteLength) throw B(L); + var a = O(i.buffer).bytes, + u = o + i.byteOffset, + s = w(a, u, u + r); + return n ? s : H(s); + }, + Q = function (t, r, e, n, o, i) { + var a = v(e), + u = O(t); + if (a + r > u.byteLength) throw B(L); + for (var s = O(u.buffer).bytes, c = a + u.byteOffset, f = n(+o), l = 0; l < r; l++) + s[c + l] = f[i ? l : r - l - 1]; + }; + if (a) { + var Z = R && k.name !== P; + if ( + f(function () { + k(1); + }) && + f(function () { + new k(-1); + }) && + !f(function () { + return new k(), new k(1.5), new k(NaN), 1 != k.length || (Z && !E); + }) + ) + Z && E && s(k, 'name', P); + else { + (U = function (t) { + return l(this, C), new k(v(t)); + })[j] = C; + for (var tt, rt = m(k), et = 0; rt.length > et; ) (tt = rt[et++]) in U || s(U, tt, k[tt]); + C.constructor = U; + } + y && g(M) !== F && y(M, F); + var nt = new _(new U(2)), + ot = o(M.setInt8); + nt.setInt8(0, 2147483648), + nt.setInt8(1, 2147483649), + (!nt.getInt8(0) && nt.getInt8(1)) || + c( + M, + { + setInt8: function (t, r) { + ot(this, t, (r << 24) >> 24); + }, + setUint8: function (t, r) { + ot(this, t, (r << 24) >> 24); + }, + }, + { unsafe: !0 }, + ); + } else + (C = (U = function (t) { + l(this, C); + var r = v(t); + I(this, { bytes: D(N(r), 0), byteLength: r }), i || (this.byteLength = r); + })[j]), + (M = (_ = function (t, r, e) { + l(this, M), l(t, C); + var n = O(t).byteLength, + o = h(r); + if (o < 0 || o > n) throw B('Wrong offset'); + if (o + (e = void 0 === e ? n - o : p(e)) > n) throw B('Wrong length'); + I(this, { buffer: t, byteLength: e, byteOffset: o }), + i || ((this.buffer = t), (this.byteLength = e), (this.byteOffset = o)); + })[j]), + i && (J(U, 'byteLength'), J(_, 'buffer'), J(_, 'byteLength'), J(_, 'byteOffset')), + c(M, { + getInt8: function (t) { + return (X(this, 1, t)[0] << 24) >> 24; + }, + getUint8: function (t) { + return X(this, 1, t)[0]; + }, + getInt16: function (t) { + var r = X(this, 2, t, arguments.length > 1 ? arguments[1] : void 0); + return (((r[1] << 8) | r[0]) << 16) >> 16; + }, + getUint16: function (t) { + var r = X(this, 2, t, arguments.length > 1 ? arguments[1] : void 0); + return (r[1] << 8) | r[0]; + }, + getInt32: function (t) { + return $(X(this, 4, t, arguments.length > 1 ? arguments[1] : void 0)); + }, + getUint32: function (t) { + return $(X(this, 4, t, arguments.length > 1 ? arguments[1] : void 0)) >>> 0; + }, + getFloat32: function (t) { + return q(X(this, 4, t, arguments.length > 1 ? arguments[1] : void 0), 23); + }, + getFloat64: function (t) { + return q(X(this, 8, t, arguments.length > 1 ? arguments[1] : void 0), 52); + }, + setInt8: function (t, r) { + Q(this, 1, t, W, r); + }, + setUint8: function (t, r) { + Q(this, 1, t, W, r); + }, + setInt16: function (t, r) { + Q(this, 2, t, G, r, arguments.length > 2 ? arguments[2] : void 0); + }, + setUint16: function (t, r) { + Q(this, 2, t, G, r, arguments.length > 2 ? arguments[2] : void 0); + }, + setInt32: function (t, r) { + Q(this, 4, t, V, r, arguments.length > 2 ? arguments[2] : void 0); + }, + setUint32: function (t, r) { + Q(this, 4, t, V, r, arguments.length > 2 ? arguments[2] : void 0); + }, + setFloat32: function (t, r) { + Q(this, 4, t, Y, r, arguments.length > 2 ? arguments[2] : void 0); + }, + setFloat64: function (t, r) { + Q(this, 8, t, K, r, arguments.length > 2 ? arguments[2] : void 0); + }, + }); + S(U, P), S(_, T), (t.exports = { ArrayBuffer: U, DataView: _ }); + }, + 99369: (t, r, e) => { + 'use strict'; + var n = e(90663), + o = e(90069), + i = e(40406); + t.exports = function (t) { + for ( + var r = n(this), + e = i(r), + a = arguments.length, + u = o(a > 1 ? arguments[1] : void 0, e), + s = a > 2 ? arguments[2] : void 0, + c = void 0 === s ? e : o(s, e); + c > u; + + ) + r[u++] = t; + return r; + }; + }, + 80951: (t, r, e) => { + 'use strict'; + var n = e(7365), + o = e(41924), + i = e(90663), + a = e(44676), + u = e(46196), + s = e(41758), + c = e(40406), + f = e(82519), + l = e(28338), + h = e(63412), + p = Array; + t.exports = function (t) { + var r = i(t), + e = s(this), + v = arguments.length, + d = v > 1 ? arguments[1] : void 0, + g = void 0 !== d; + g && (d = n(d, v > 2 ? arguments[2] : void 0)); + var y, + m, + b, + x, + w, + S, + A = h(r), + R = 0; + if (!A || (this === p && u(A))) + for (y = c(r), m = e ? new this(y) : p(y); y > R; R++) (S = g ? d(r[R], R) : r[R]), f(m, R, S); + else + for (w = (x = l(r, A)).next, m = e ? new this() : []; !(b = o(w, x)).done; R++) + (S = g ? a(x, d, [b.value, R], !0) : b.value), f(m, R, S); + return (m.length = R), m; + }; + }, + 17222: (t, r, e) => { + var n = e(30529), + o = e(90069), + i = e(40406), + a = function (t) { + return function (r, e, a) { + var u, + s = n(r), + c = i(s), + f = o(a, c); + if (t && e != e) { + for (; c > f; ) if ((u = s[f++]) != u) return !0; + } else for (; c > f; f++) if ((t || f in s) && s[f] === e) return t || f || 0; + return !t && -1; + }; + }; + t.exports = { includes: a(!0), indexOf: a(!1) }; + }, + 99248: (t, r, e) => { + var n = e(7365), + o = e(41765), + i = e(21197), + a = e(90663), + u = e(40406), + s = e(69164), + c = o([].push), + f = function (t) { + var r = 1 == t, + e = 2 == t, + o = 3 == t, + f = 4 == t, + l = 6 == t, + h = 7 == t, + p = 5 == t || l; + return function (v, d, g, y) { + for ( + var m, + b, + x = a(v), + w = i(x), + S = n(d, g), + A = u(w), + R = 0, + E = y || s, + O = r ? E(v, A) : e || h ? E(v, 0) : void 0; + A > R; + R++ + ) + if ((p || R in w) && ((b = S((m = w[R]), R, x)), t)) + if (r) O[R] = b; + else if (b) + switch (t) { + case 3: + return !0; + case 5: + return m; + case 6: + return R; + case 2: + c(O, m); + } + else + switch (t) { + case 4: + return !1; + case 7: + c(O, m); + } + return l ? -1 : o || f ? f : O; + }; + }; + t.exports = { + forEach: f(0), + map: f(1), + filter: f(2), + some: f(3), + every: f(4), + find: f(5), + findIndex: f(6), + filterReject: f(7), + }; + }, + 4789: (t, r, e) => { + 'use strict'; + var n = e(82229); + t.exports = function (t, r) { + var e = [][t]; + return ( + !!e && + n(function () { + e.call( + null, + r || + function () { + return 1; + }, + 1, + ); + }) + ); + }; + }, + 31136: (t, r, e) => { + var n = e(70481), + o = e(90663), + i = e(21197), + a = e(40406), + u = TypeError, + s = function (t) { + return function (r, e, s, c) { + n(e); + var f = o(r), + l = i(f), + h = a(f), + p = t ? h - 1 : 0, + v = t ? -1 : 1; + if (s < 2) + for (;;) { + if (p in l) { + (c = l[p]), (p += v); + break; + } + if (((p += v), t ? p < 0 : h <= p)) throw u('Reduce of empty array with no initial value'); + } + for (; t ? p >= 0 : h > p; p += v) p in l && (c = e(c, l[p], p, f)); + return c; + }; + }; + t.exports = { left: s(!1), right: s(!0) }; + }, + 89625: (t, r, e) => { + var n = e(90069), + o = e(40406), + i = e(82519), + a = Array, + u = Math.max; + t.exports = function (t, r, e) { + for (var s = o(t), c = n(r, s), f = n(void 0 === e ? s : e, s), l = a(u(f - c, 0)), h = 0; c < f; c++, h++) + i(l, h, t[c]); + return (l.length = h), l; + }; + }, + 96784: (t, r, e) => { + var n = e(41765); + t.exports = n([].slice); + }, + 42771: (t, r, e) => { + var n = e(89625), + o = Math.floor, + i = function (t, r) { + var e = t.length, + s = o(e / 2); + return e < 8 ? a(t, r) : u(t, i(n(t, 0, s), r), i(n(t, s), r), r); + }, + a = function (t, r) { + for (var e, n, o = t.length, i = 1; i < o; ) { + for (n = i, e = t[i]; n && r(t[n - 1], e) > 0; ) t[n] = t[--n]; + n !== i++ && (t[n] = e); + } + return t; + }, + u = function (t, r, e, n) { + for (var o = r.length, i = e.length, a = 0, u = 0; a < o || u < i; ) + t[a + u] = a < o && u < i ? (n(r[a], e[u]) <= 0 ? r[a++] : e[u++]) : a < o ? r[a++] : e[u++]; + return t; + }; + t.exports = i; + }, + 37084: (t, r, e) => { + var n = e(21528), + o = e(41758), + i = e(21188), + a = e(96982)('species'), + u = Array; + t.exports = function (t) { + var r; + return ( + n(t) && + ((r = t.constructor), + ((o(r) && (r === u || n(r.prototype))) || (i(r) && null === (r = r[a]))) && (r = void 0)), + void 0 === r ? u : r + ); + }; + }, + 69164: (t, r, e) => { + var n = e(37084); + t.exports = function (t, r) { + return new (n(t))(0 === r ? 0 : r); + }; + }, + 44676: (t, r, e) => { + var n = e(71843), + o = e(4593); + t.exports = function (t, r, e, i) { + try { + return i ? r(n(e)[0], e[1]) : r(e); + } catch (a) { + o(t, 'throw', a); + } + }; + }, + 3800: (t, r, e) => { + var n = e(96982)('iterator'), + o = !1; + try { + var i = 0, + a = { + next: function () { + return { done: !!i++ }; + }, + return: function () { + o = !0; + }, + }; + (a[n] = function () { + return this; + }), + Array.from(a, function () { + throw 2; + }); + } catch (u) {} + t.exports = function (t, r) { + if (!r && !o) return !1; + var e = !1; + try { + var i = {}; + (i[n] = function () { + return { + next: function () { + return { done: (e = !0) }; + }, + }; + }), + t(i); + } catch (u) {} + return e; + }; + }, + 29682: (t, r, e) => { + var n = e(24126), + o = n({}.toString), + i = n(''.slice); + t.exports = function (t) { + return i(o(t), 8, -1); + }; + }, + 765: (t, r, e) => { + var n = e(50089), + o = e(88807), + i = e(29682), + a = e(96982)('toStringTag'), + u = Object, + s = + 'Arguments' == + i( + (function () { + return arguments; + })(), + ); + t.exports = n + ? i + : function (t) { + var r, e, n; + return void 0 === t + ? 'Undefined' + : null === t + ? 'Null' + : 'string' == + typeof (e = (function (t, r) { + try { + return t[r]; + } catch (e) {} + })((r = u(t)), a)) + ? e + : s + ? i(r) + : 'Object' == (n = i(r)) && o(r.callee) + ? 'Arguments' + : n; + }; + }, + 31575: (t, r, e) => { + 'use strict'; + var n = e(41765), + o = e(87570), + i = e(9727).getWeakData, + a = e(65712), + u = e(71843), + s = e(39989), + c = e(21188), + f = e(98102), + l = e(99248), + h = e(91854), + p = e(887), + v = p.set, + d = p.getterFor, + g = l.find, + y = l.findIndex, + m = n([].splice), + b = 0, + x = function (t) { + return t.frozen || (t.frozen = new w()); + }, + w = function () { + this.entries = []; + }, + S = function (t, r) { + return g(t.entries, function (t) { + return t[0] === r; + }); + }; + (w.prototype = { + get: function (t) { + var r = S(this, t); + if (r) return r[1]; + }, + has: function (t) { + return !!S(this, t); + }, + set: function (t, r) { + var e = S(this, t); + e ? (e[1] = r) : this.entries.push([t, r]); + }, + delete: function (t) { + var r = y(this.entries, function (r) { + return r[0] === t; + }); + return ~r && m(this.entries, r, 1), !!~r; + }, + }), + (t.exports = { + getConstructor: function (t, r, e, n) { + var l = t(function (t, o) { + a(t, p), v(t, { type: r, id: b++, frozen: void 0 }), s(o) || f(o, t[n], { that: t, AS_ENTRIES: e }); + }), + p = l.prototype, + g = d(r), + y = function (t, r, e) { + var n = g(t), + o = i(u(r), !0); + return !0 === o ? x(n).set(r, e) : (o[n.id] = e), t; + }; + return ( + o(p, { + delete: function (t) { + var r = g(this); + if (!c(t)) return !1; + var e = i(t); + return !0 === e ? x(r).delete(t) : e && h(e, r.id) && delete e[r.id]; + }, + has: function (t) { + var r = g(this); + if (!c(t)) return !1; + var e = i(t); + return !0 === e ? x(r).has(t) : e && h(e, r.id); + }, + }), + o( + p, + e + ? { + get: function (t) { + var r = g(this); + if (c(t)) { + var e = i(t); + return !0 === e ? x(r).get(t) : e ? e[r.id] : void 0; + } + }, + set: function (t, r) { + return y(this, t, r); + }, + } + : { + add: function (t) { + return y(this, t, !0); + }, + }, + ), + l + ); + }, + }); + }, + 70175: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(70412), + i = e(41765), + a = e(76777), + u = e(29379), + s = e(9727), + c = e(98102), + f = e(65712), + l = e(88807), + h = e(39989), + p = e(21188), + v = e(82229), + d = e(3800), + g = e(43803), + y = e(42325); + t.exports = function (t, r, e) { + var m = -1 !== t.indexOf('Map'), + b = -1 !== t.indexOf('Weak'), + x = m ? 'set' : 'add', + w = o[t], + S = w && w.prototype, + A = w, + R = {}, + E = function (t) { + var r = i(S[t]); + u( + S, + t, + 'add' == t + ? function (t) { + return r(this, 0 === t ? 0 : t), this; + } + : 'delete' == t + ? function (t) { + return !(b && !p(t)) && r(this, 0 === t ? 0 : t); + } + : 'get' == t + ? function (t) { + return b && !p(t) ? void 0 : r(this, 0 === t ? 0 : t); + } + : 'has' == t + ? function (t) { + return !(b && !p(t)) && r(this, 0 === t ? 0 : t); + } + : function (t, e) { + return r(this, 0 === t ? 0 : t, e), this; + }, + ); + }; + if ( + a( + t, + !l(w) || + !( + b || + (S.forEach && + !v(function () { + new w().entries().next(); + })) + ), + ) + ) + (A = e.getConstructor(r, t, m, x)), s.enable(); + else if (a(t, !0)) { + var O = new A(), + I = O[x](b ? {} : -0, 1) != O, + P = v(function () { + O.has(1); + }), + T = d(function (t) { + new w(t); + }), + j = + !b && + v(function () { + for (var t = new w(), r = 5; r--; ) t[x](r, r); + return !t.has(-0); + }); + T || + (((A = r(function (t, r) { + f(t, S); + var e = y(new w(), t, A); + return h(r) || c(r, e[x], { that: e, AS_ENTRIES: m }), e; + })).prototype = S), + (S.constructor = A)), + (P || j) && (E('delete'), E('has'), m && E('get')), + (j || I) && E(x), + b && S.clear && delete S.clear; + } + return (R[t] = A), n({ global: !0, constructor: !0, forced: A != w }, R), g(A, t), b || e.setStrong(A, t, m), A; + }; + }, + 12283: (t, r, e) => { + var n = e(91854), + o = e(72929), + i = e(68098), + a = e(90189); + t.exports = function (t, r, e) { + for (var u = o(r), s = a.f, c = i.f, f = 0; f < u.length; f++) { + var l = u[f]; + n(t, l) || (e && n(e, l)) || s(t, l, c(r, l)); + } + }; + }, + 59981: (t, r, e) => { + var n = e(96982)('match'); + t.exports = function (t) { + var r = /./; + try { + '/./'[t](r); + } catch (e) { + try { + return (r[n] = !1), '/./'[t](r); + } catch (o) {} + } + return !1; + }; + }, + 80093: (t, r, e) => { + var n = e(82229); + t.exports = !n(function () { + function t() {} + return (t.prototype.constructor = null), Object.getPrototypeOf(new t()) !== t.prototype; + }); + }, + 74903: t => { + t.exports = function (t, r) { + return { value: t, done: r }; + }; + }, + 7001: (t, r, e) => { + var n = e(95417), + o = e(90189), + i = e(413); + t.exports = n + ? function (t, r, e) { + return o.f(t, r, i(1, e)); + } + : function (t, r, e) { + return (t[r] = e), t; + }; + }, + 413: t => { + t.exports = function (t, r) { + return { enumerable: !(1 & t), configurable: !(2 & t), writable: !(4 & t), value: r }; + }; + }, + 82519: (t, r, e) => { + 'use strict'; + var n = e(37712), + o = e(90189), + i = e(413); + t.exports = function (t, r, e) { + var a = n(r); + a in t ? o.f(t, a, i(0, e)) : (t[a] = e); + }; + }, + 10787: (t, r, e) => { + var n = e(93450), + o = e(90189); + t.exports = function (t, r, e) { + return e.get && n(e.get, r, { getter: !0 }), e.set && n(e.set, r, { setter: !0 }), o.f(t, r, e); + }; + }, + 29379: (t, r, e) => { + var n = e(88807), + o = e(90189), + i = e(93450), + a = e(26139); + t.exports = function (t, r, e, u) { + u || (u = {}); + var s = u.enumerable, + c = void 0 !== u.name ? u.name : r; + if ((n(e) && i(e, c, u), u.global)) s ? (t[r] = e) : a(r, e); + else { + try { + u.unsafe ? t[r] && (s = !0) : delete t[r]; + } catch (f) {} + s + ? (t[r] = e) + : o.f(t, r, { value: e, enumerable: !1, configurable: !u.nonConfigurable, writable: !u.nonWritable }); + } + return t; + }; + }, + 87570: (t, r, e) => { + var n = e(29379); + t.exports = function (t, r, e) { + for (var o in r) n(t, o, r[o], e); + return t; + }; + }, + 26139: (t, r, e) => { + var n = e(70412), + o = Object.defineProperty; + t.exports = function (t, r) { + try { + o(n, t, { value: r, configurable: !0, writable: !0 }); + } catch (e) { + n[t] = r; + } + return r; + }; + }, + 7351: (t, r, e) => { + 'use strict'; + var n = e(48427), + o = TypeError; + t.exports = function (t, r) { + if (!delete t[r]) throw o('Cannot delete property ' + n(r) + ' of ' + n(t)); + }; + }, + 95417: (t, r, e) => { + var n = e(82229); + t.exports = !n(function () { + return ( + 7 != + Object.defineProperty({}, 1, { + get: function () { + return 7; + }, + })[1] + ); + }); + }, + 89338: t => { + var r = 'object' == typeof document && document.all, + e = void 0 === r && void 0 !== r; + t.exports = { all: r, IS_HTMLDDA: e }; + }, + 36254: (t, r, e) => { + var n = e(70412), + o = e(21188), + i = n.document, + a = o(i) && o(i.createElement); + t.exports = function (t) { + return a ? i.createElement(t) : {}; + }; + }, + 25811: t => { + var r = TypeError; + t.exports = function (t) { + if (t > 9007199254740991) throw r('Maximum allowed index exceeded'); + return t; + }; + }, + 42706: t => { + t.exports = { + CSSRuleList: 0, + CSSStyleDeclaration: 0, + CSSValueList: 0, + ClientRectList: 0, + DOMRectList: 0, + DOMStringList: 0, + DOMTokenList: 1, + DataTransferItemList: 0, + FileList: 0, + HTMLAllCollection: 0, + HTMLCollection: 0, + HTMLFormElement: 0, + HTMLSelectElement: 0, + MediaList: 0, + MimeTypeArray: 0, + NamedNodeMap: 0, + NodeList: 1, + PaintRequestList: 0, + Plugin: 0, + PluginArray: 0, + SVGLengthList: 0, + SVGNumberList: 0, + SVGPathSegList: 0, + SVGPointList: 0, + SVGStringList: 0, + SVGTransformList: 0, + SourceBufferList: 0, + StyleSheetList: 0, + TextTrackCueList: 0, + TextTrackList: 0, + TouchList: 0, + }; + }, + 92076: (t, r, e) => { + var n = e(36254)('span').classList, + o = n && n.constructor && n.constructor.prototype; + t.exports = o === Object.prototype ? void 0 : o; + }, + 89443: (t, r, e) => { + var n = e(86378).match(/firefox\/(\d+)/i); + t.exports = !!n && +n[1]; + }, + 18573: (t, r, e) => { + var n = e(27158), + o = e(84543); + t.exports = !n && !o && 'object' == typeof window && 'object' == typeof document; + }, + 27158: t => { + t.exports = 'object' == typeof Deno && Deno && 'object' == typeof Deno.version; + }, + 17608: (t, r, e) => { + var n = e(86378); + t.exports = /MSIE|Trident/.test(n); + }, + 44500: (t, r, e) => { + var n = e(86378), + o = e(70412); + t.exports = /ipad|iphone|ipod/i.test(n) && void 0 !== o.Pebble; + }, + 3148: (t, r, e) => { + var n = e(86378); + t.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(n); + }, + 84543: (t, r, e) => { + var n = e(29682), + o = e(70412); + t.exports = 'process' == n(o.process); + }, + 32415: (t, r, e) => { + var n = e(86378); + t.exports = /web0s(?!.*chrome)/i.test(n); + }, + 86378: (t, r, e) => { + var n = e(52228); + t.exports = n('navigator', 'userAgent') || ''; + }, + 44905: (t, r, e) => { + var n, + o, + i = e(70412), + a = e(86378), + u = i.process, + s = i.Deno, + c = (u && u.versions) || (s && s.version), + f = c && c.v8; + f && (o = (n = f.split('.'))[0] > 0 && n[0] < 4 ? 1 : +(n[0] + n[1])), + !o && a && (!(n = a.match(/Edge\/(\d+)/)) || n[1] >= 74) && (n = a.match(/Chrome\/(\d+)/)) && (o = +n[1]), + (t.exports = o); + }, + 58452: (t, r, e) => { + var n = e(86378).match(/AppleWebKit\/(\d+)\./); + t.exports = !!n && +n[1]; + }, + 96410: t => { + t.exports = [ + 'constructor', + 'hasOwnProperty', + 'isPrototypeOf', + 'propertyIsEnumerable', + 'toLocaleString', + 'toString', + 'valueOf', + ]; + }, + 72698: (t, r, e) => { + var n = e(70412), + o = e(68098).f, + i = e(7001), + a = e(29379), + u = e(26139), + s = e(12283), + c = e(76777); + t.exports = function (t, r) { + var e, + f, + l, + h, + p, + v = t.target, + d = t.global, + g = t.stat; + if ((e = d ? n : g ? n[v] || u(v, {}) : (n[v] || {}).prototype)) + for (f in r) { + if ( + ((h = r[f]), + (l = t.dontCallGetSet ? (p = o(e, f)) && p.value : e[f]), + !c(d ? f : v + (g ? '.' : '#') + f, t.forced) && void 0 !== l) + ) { + if (typeof h == typeof l) continue; + s(h, l); + } + (t.sham || (l && l.sham)) && i(h, 'sham', !0), a(e, f, h, t); + } + }; + }, + 82229: t => { + t.exports = function (t) { + try { + return !!t(); + } catch (r) { + return !0; + } + }; + }, + 11323: (t, r, e) => { + 'use strict'; + e(9883); + var n = e(41765), + o = e(29379), + i = e(38157), + a = e(82229), + u = e(96982), + s = e(7001), + c = u('species'), + f = RegExp.prototype; + t.exports = function (t, r, e, l) { + var h = u(t), + p = !a(function () { + var r = {}; + return ( + (r[h] = function () { + return 7; + }), + 7 != ''[t](r) + ); + }), + v = + p && + !a(function () { + var r = !1, + e = /a/; + return ( + 'split' === t && + (((e = {}).constructor = {}), + (e.constructor[c] = function () { + return e; + }), + (e.flags = ''), + (e[h] = /./[h])), + (e.exec = function () { + return (r = !0), null; + }), + e[h](''), + !r + ); + }); + if (!p || !v || e) { + var d = n(/./[h]), + g = r(h, ''[t], function (t, r, e, o, a) { + var u = n(t), + s = r.exec; + return s === i || s === f.exec + ? p && !a + ? { done: !0, value: d(r, e, o) } + : { done: !0, value: u(e, r, o) } + : { done: !1 }; + }); + o(String.prototype, t, g[0]), o(f, h, g[1]); + } + l && s(f[h], 'sham', !0); + }; + }, + 74596: (t, r, e) => { + 'use strict'; + var n = e(21528), + o = e(40406), + i = e(25811), + a = e(7365), + u = function (t, r, e, s, c, f, l, h) { + for (var p, v, d = c, g = 0, y = !!l && a(l, h); g < s; ) + g in e && + ((p = y ? y(e[g], g, r) : e[g]), + f > 0 && n(p) ? ((v = o(p)), (d = u(t, r, p, v, d, f - 1) - 1)) : (i(d + 1), (t[d] = p)), + d++), + g++; + return d; + }; + t.exports = u; + }, + 68565: (t, r, e) => { + var n = e(82229); + t.exports = !n(function () { + return Object.isExtensible(Object.preventExtensions({})); + }); + }, + 90675: (t, r, e) => { + var n = e(43524), + o = Function.prototype, + i = o.apply, + a = o.call; + t.exports = + ('object' == typeof Reflect && Reflect.apply) || + (n + ? a.bind(i) + : function () { + return a.apply(i, arguments); + }); + }, + 7365: (t, r, e) => { + var n = e(41765), + o = e(70481), + i = e(43524), + a = n(n.bind); + t.exports = function (t, r) { + return ( + o(t), + void 0 === r + ? t + : i + ? a(t, r) + : function () { + return t.apply(r, arguments); + } + ); + }; + }, + 43524: (t, r, e) => { + var n = e(82229); + t.exports = !n(function () { + var t = function () {}.bind(); + return 'function' != typeof t || t.hasOwnProperty('prototype'); + }); + }, + 41924: (t, r, e) => { + var n = e(43524), + o = Function.prototype.call; + t.exports = n + ? o.bind(o) + : function () { + return o.apply(o, arguments); + }; + }, + 56815: (t, r, e) => { + var n = e(95417), + o = e(91854), + i = Function.prototype, + a = n && Object.getOwnPropertyDescriptor, + u = o(i, 'name'), + s = u && 'something' === function () {}.name, + c = u && (!n || (n && a(i, 'name').configurable)); + t.exports = { EXISTS: u, PROPER: s, CONFIGURABLE: c }; + }, + 24126: (t, r, e) => { + var n = e(43524), + o = Function.prototype, + i = o.call, + a = n && o.bind.bind(i, i); + t.exports = n + ? a + : function (t) { + return function () { + return i.apply(t, arguments); + }; + }; + }, + 41765: (t, r, e) => { + var n = e(29682), + o = e(24126); + t.exports = function (t) { + if ('Function' === n(t)) return o(t); + }; + }, + 52228: (t, r, e) => { + var n = e(70412), + o = e(88807); + t.exports = function (t, r) { + return arguments.length < 2 ? ((e = n[t]), o(e) ? e : void 0) : n[t] && n[t][r]; + var e; + }; + }, + 63412: (t, r, e) => { + var n = e(765), + o = e(89423), + i = e(39989), + a = e(72429), + u = e(96982)('iterator'); + t.exports = function (t) { + if (!i(t)) return o(t, u) || o(t, '@@iterator') || a[n(t)]; + }; + }, + 28338: (t, r, e) => { + var n = e(41924), + o = e(70481), + i = e(71843), + a = e(48427), + u = e(63412), + s = TypeError; + t.exports = function (t, r) { + var e = arguments.length < 2 ? u(t) : r; + if (o(e)) return i(n(e, t)); + throw s(a(t) + ' is not iterable'); + }; + }, + 89423: (t, r, e) => { + var n = e(70481), + o = e(39989); + t.exports = function (t, r) { + var e = t[r]; + return o(e) ? void 0 : n(e); + }; + }, + 80556: (t, r, e) => { + var n = e(41765), + o = e(90663), + i = Math.floor, + a = n(''.charAt), + u = n(''.replace), + s = n(''.slice), + c = /\$([$&'`]|\d{1,2}|<[^>]*>)/g, + f = /\$([$&'`]|\d{1,2})/g; + t.exports = function (t, r, e, n, l, h) { + var p = e + t.length, + v = n.length, + d = f; + return ( + void 0 !== l && ((l = o(l)), (d = c)), + u(h, d, function (o, u) { + var c; + switch (a(u, 0)) { + case '$': + return '$'; + case '&': + return t; + case '`': + return s(r, 0, e); + case "'": + return s(r, p); + case '<': + c = l[s(u, 1, -1)]; + break; + default: + var f = +u; + if (0 === f) return o; + if (f > v) { + var h = i(f / 10); + return 0 === h ? o : h <= v ? (void 0 === n[h - 1] ? a(u, 1) : n[h - 1] + a(u, 1)) : o; + } + c = n[f - 1]; + } + return void 0 === c ? '' : c; + }) + ); + }; + }, + 70412: (t, r, e) => { + var n = function (t) { + return t && t.Math == Math && t; + }; + t.exports = + n('object' == typeof globalThis && globalThis) || + n('object' == typeof window && window) || + n('object' == typeof self && self) || + n('object' == typeof e.g && e.g) || + (function () { + return this; + })() || + Function('return this')(); + }, + 91854: (t, r, e) => { + var n = e(41765), + o = e(90663), + i = n({}.hasOwnProperty); + t.exports = + Object.hasOwn || + function (t, r) { + return i(o(t), r); + }; + }, + 64690: t => { + t.exports = {}; + }, + 19630: (t, r, e) => { + var n = e(70412); + t.exports = function (t, r) { + var e = n.console; + e && e.error && (1 == arguments.length ? e.error(t) : e.error(t, r)); + }; + }, + 95439: (t, r, e) => { + var n = e(52228); + t.exports = n('document', 'documentElement'); + }, + 94469: (t, r, e) => { + var n = e(95417), + o = e(82229), + i = e(36254); + t.exports = + !n && + !o(function () { + return ( + 7 != + Object.defineProperty(i('div'), 'a', { + get: function () { + return 7; + }, + }).a + ); + }); + }, + 23205: t => { + var r = Array, + e = Math.abs, + n = Math.pow, + o = Math.floor, + i = Math.log, + a = Math.LN2; + t.exports = { + pack: function (t, u, s) { + var c, + f, + l, + h = r(s), + p = 8 * s - u - 1, + v = (1 << p) - 1, + d = v >> 1, + g = 23 === u ? n(2, -24) - n(2, -77) : 0, + y = t < 0 || (0 === t && 1 / t < 0) ? 1 : 0, + m = 0; + for ( + (t = e(t)) != t || t === 1 / 0 + ? ((f = t != t ? 1 : 0), (c = v)) + : ((c = o(i(t) / a)), + t * (l = n(2, -c)) < 1 && (c--, (l *= 2)), + (t += c + d >= 1 ? g / l : g * n(2, 1 - d)) * l >= 2 && (c++, (l /= 2)), + c + d >= v + ? ((f = 0), (c = v)) + : c + d >= 1 + ? ((f = (t * l - 1) * n(2, u)), (c += d)) + : ((f = t * n(2, d - 1) * n(2, u)), (c = 0))); + u >= 8; + + ) + (h[m++] = 255 & f), (f /= 256), (u -= 8); + for (c = (c << u) | f, p += u; p > 0; ) (h[m++] = 255 & c), (c /= 256), (p -= 8); + return (h[--m] |= 128 * y), h; + }, + unpack: function (t, r) { + var e, + o = t.length, + i = 8 * o - r - 1, + a = (1 << i) - 1, + u = a >> 1, + s = i - 7, + c = o - 1, + f = t[c--], + l = 127 & f; + for (f >>= 7; s > 0; ) (l = 256 * l + t[c--]), (s -= 8); + for (e = l & ((1 << -s) - 1), l >>= -s, s += r; s > 0; ) (e = 256 * e + t[c--]), (s -= 8); + if (0 === l) l = 1 - u; + else { + if (l === a) return e ? NaN : f ? -1 / 0 : 1 / 0; + (e += n(2, r)), (l -= u); + } + return (f ? -1 : 1) * e * n(2, l - r); + }, + }; + }, + 21197: (t, r, e) => { + var n = e(41765), + o = e(82229), + i = e(29682), + a = Object, + u = n(''.split); + t.exports = o(function () { + return !a('z').propertyIsEnumerable(0); + }) + ? function (t) { + return 'String' == i(t) ? u(t, '') : a(t); + } + : a; + }, + 42325: (t, r, e) => { + var n = e(88807), + o = e(21188), + i = e(71083); + t.exports = function (t, r, e) { + var a, u; + return i && n((a = r.constructor)) && a !== e && o((u = a.prototype)) && u !== e.prototype && i(t, u), t; + }; + }, + 60227: (t, r, e) => { + var n = e(41765), + o = e(88807), + i = e(81502), + a = n(Function.toString); + o(i.inspectSource) || + (i.inspectSource = function (t) { + return a(t); + }), + (t.exports = i.inspectSource); + }, + 9727: (t, r, e) => { + var n = e(72698), + o = e(41765), + i = e(64690), + a = e(21188), + u = e(91854), + s = e(90189).f, + c = e(58206), + f = e(21079), + l = e(47305), + h = e(34436), + p = e(68565), + v = !1, + d = h('meta'), + g = 0, + y = function (t) { + s(t, d, { value: { objectID: 'O' + g++, weakData: {} } }); + }, + m = (t.exports = { + enable: function () { + (m.enable = function () {}), (v = !0); + var t = c.f, + r = o([].splice), + e = {}; + (e[d] = 1), + t(e).length && + ((c.f = function (e) { + for (var n = t(e), o = 0, i = n.length; o < i; o++) + if (n[o] === d) { + r(n, o, 1); + break; + } + return n; + }), + n({ target: 'Object', stat: !0, forced: !0 }, { getOwnPropertyNames: f.f })); + }, + fastKey: function (t, r) { + if (!a(t)) return 'symbol' == typeof t ? t : ('string' == typeof t ? 'S' : 'P') + t; + if (!u(t, d)) { + if (!l(t)) return 'F'; + if (!r) return 'E'; + y(t); + } + return t[d].objectID; + }, + getWeakData: function (t, r) { + if (!u(t, d)) { + if (!l(t)) return !0; + if (!r) return !1; + y(t); + } + return t[d].weakData; + }, + onFreeze: function (t) { + return p && v && l(t) && !u(t, d) && y(t), t; + }, + }); + i[d] = !0; + }, + 887: (t, r, e) => { + var n, + o, + i, + a = e(17023), + u = e(70412), + s = e(21188), + c = e(7001), + f = e(91854), + l = e(81502), + h = e(5350), + p = e(64690), + v = 'Object already initialized', + d = u.TypeError, + g = u.WeakMap; + if (a || l.state) { + var y = l.state || (l.state = new g()); + (y.get = y.get), + (y.has = y.has), + (y.set = y.set), + (n = function (t, r) { + if (y.has(t)) throw d(v); + return (r.facade = t), y.set(t, r), r; + }), + (o = function (t) { + return y.get(t) || {}; + }), + (i = function (t) { + return y.has(t); + }); + } else { + var m = h('state'); + (p[m] = !0), + (n = function (t, r) { + if (f(t, m)) throw d(v); + return (r.facade = t), c(t, m, r), r; + }), + (o = function (t) { + return f(t, m) ? t[m] : {}; + }), + (i = function (t) { + return f(t, m); + }); + } + t.exports = { + set: n, + get: o, + has: i, + enforce: function (t) { + return i(t) ? o(t) : n(t, {}); + }, + getterFor: function (t) { + return function (r) { + var e; + if (!s(r) || (e = o(r)).type !== t) throw d('Incompatible receiver, ' + t + ' required'); + return e; + }; + }, + }; + }, + 46196: (t, r, e) => { + var n = e(96982), + o = e(72429), + i = n('iterator'), + a = Array.prototype; + t.exports = function (t) { + return void 0 !== t && (o.Array === t || a[i] === t); + }; + }, + 21528: (t, r, e) => { + var n = e(29682); + t.exports = + Array.isArray || + function (t) { + return 'Array' == n(t); + }; + }, + 59537: (t, r, e) => { + var n = e(765), + o = e(41765)(''.slice); + t.exports = function (t) { + return 'Big' === o(n(t), 0, 3); + }; + }, + 88807: (t, r, e) => { + var n = e(89338), + o = n.all; + t.exports = n.IS_HTMLDDA + ? function (t) { + return 'function' == typeof t || t === o; + } + : function (t) { + return 'function' == typeof t; + }; + }, + 41758: (t, r, e) => { + var n = e(41765), + o = e(82229), + i = e(88807), + a = e(765), + u = e(52228), + s = e(60227), + c = function () {}, + f = [], + l = u('Reflect', 'construct'), + h = /^\s*(?:class|function)\b/, + p = n(h.exec), + v = !h.exec(c), + d = function (t) { + if (!i(t)) return !1; + try { + return l(c, f, t), !0; + } catch (r) { + return !1; + } + }, + g = function (t) { + if (!i(t)) return !1; + switch (a(t)) { + case 'AsyncFunction': + case 'GeneratorFunction': + case 'AsyncGeneratorFunction': + return !1; + } + try { + return v || !!p(h, s(t)); + } catch (r) { + return !0; + } + }; + (g.sham = !0), + (t.exports = + !l || + o(function () { + var t; + return ( + d(d.call) || + !d(Object) || + !d(function () { + t = !0; + }) || + t + ); + }) + ? g + : d); + }, + 33080: (t, r, e) => { + var n = e(91854); + t.exports = function (t) { + return void 0 !== t && (n(t, 'value') || n(t, 'writable')); + }; + }, + 76777: (t, r, e) => { + var n = e(82229), + o = e(88807), + i = /#|\.prototype\./, + a = function (t, r) { + var e = s[u(t)]; + return e == f || (e != c && (o(r) ? n(r) : !!r)); + }, + u = (a.normalize = function (t) { + return String(t).replace(i, '.').toLowerCase(); + }), + s = (a.data = {}), + c = (a.NATIVE = 'N'), + f = (a.POLYFILL = 'P'); + t.exports = a; + }, + 63272: (t, r, e) => { + var n = e(21188), + o = Math.floor; + t.exports = + Number.isInteger || + function (t) { + return !n(t) && isFinite(t) && o(t) === t; + }; + }, + 39989: t => { + t.exports = function (t) { + return null == t; + }; + }, + 21188: (t, r, e) => { + var n = e(88807), + o = e(89338), + i = o.all; + t.exports = o.IS_HTMLDDA + ? function (t) { + return 'object' == typeof t ? null !== t : n(t) || t === i; + } + : function (t) { + return 'object' == typeof t ? null !== t : n(t); + }; + }, + 8588: t => { + t.exports = !1; + }, + 16372: (t, r, e) => { + var n = e(21188), + o = e(29682), + i = e(96982)('match'); + t.exports = function (t) { + var r; + return n(t) && (void 0 !== (r = t[i]) ? !!r : 'RegExp' == o(t)); + }; + }, + 29844: (t, r, e) => { + var n = e(52228), + o = e(88807), + i = e(13521), + a = e(39696), + u = Object; + t.exports = a + ? function (t) { + return 'symbol' == typeof t; + } + : function (t) { + var r = n('Symbol'); + return o(r) && i(r.prototype, u(t)); + }; + }, + 98102: (t, r, e) => { + var n = e(7365), + o = e(41924), + i = e(71843), + a = e(48427), + u = e(46196), + s = e(40406), + c = e(13521), + f = e(28338), + l = e(63412), + h = e(4593), + p = TypeError, + v = function (t, r) { + (this.stopped = t), (this.result = r); + }, + d = v.prototype; + t.exports = function (t, r, e) { + var g, + y, + m, + b, + x, + w, + S, + A = e && e.that, + R = !(!e || !e.AS_ENTRIES), + E = !(!e || !e.IS_RECORD), + O = !(!e || !e.IS_ITERATOR), + I = !(!e || !e.INTERRUPTED), + P = n(r, A), + T = function (t) { + return g && h(g, 'normal', t), new v(!0, t); + }, + j = function (t) { + return R ? (i(t), I ? P(t[0], t[1], T) : P(t[0], t[1])) : I ? P(t, T) : P(t); + }; + if (E) g = t.iterator; + else if (O) g = t; + else { + if (!(y = l(t))) throw p(a(t) + ' is not iterable'); + if (u(y)) { + for (m = 0, b = s(t); b > m; m++) if ((x = j(t[m])) && c(d, x)) return x; + return new v(!1); + } + g = f(t, y); + } + for (w = E ? t.next : g.next; !(S = o(w, g)).done; ) { + try { + x = j(S.value); + } catch (L) { + h(g, 'throw', L); + } + if ('object' == typeof x && x && c(d, x)) return x; + } + return new v(!1); + }; + }, + 4593: (t, r, e) => { + var n = e(41924), + o = e(71843), + i = e(89423); + t.exports = function (t, r, e) { + var a, u; + o(t); + try { + if (!(a = i(t, 'return'))) { + if ('throw' === r) throw e; + return e; + } + a = n(a, t); + } catch (s) { + (u = !0), (a = s); + } + if ('throw' === r) throw e; + if (u) throw a; + return o(a), e; + }; + }, + 57015: (t, r, e) => { + 'use strict'; + var n = e(56194).IteratorPrototype, + o = e(56042), + i = e(413), + a = e(43803), + u = e(72429), + s = function () { + return this; + }; + t.exports = function (t, r, e, c) { + var f = r + ' Iterator'; + return (t.prototype = o(n, { next: i(+!c, e) })), a(t, f, !1, !0), (u[f] = s), t; + }; + }, + 61666: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41924), + i = e(8588), + a = e(56815), + u = e(88807), + s = e(57015), + c = e(62421), + f = e(71083), + l = e(43803), + h = e(7001), + p = e(29379), + v = e(96982), + d = e(72429), + g = e(56194), + y = a.PROPER, + m = a.CONFIGURABLE, + b = g.IteratorPrototype, + x = g.BUGGY_SAFARI_ITERATORS, + w = v('iterator'), + S = 'keys', + A = 'values', + R = 'entries', + E = function () { + return this; + }; + t.exports = function (t, r, e, a, v, g, O) { + s(e, r, a); + var I, + P, + T, + j = function (t) { + if (t === v && _) return _; + if (!x && t in U) return U[t]; + switch (t) { + case S: + case A: + case R: + return function () { + return new e(this, t); + }; + } + return function () { + return new e(this); + }; + }, + L = r + ' Iterator', + k = !1, + U = t.prototype, + C = U[w] || U['@@iterator'] || (v && U[v]), + _ = (!x && C) || j(v), + M = ('Array' == r && U.entries) || C; + if ( + (M && + (I = c(M.call(new t()))) !== Object.prototype && + I.next && + (i || c(I) === b || (f ? f(I, b) : u(I[w]) || p(I, w, E)), l(I, L, !0, !0), i && (d[L] = E)), + y && + v == A && + C && + C.name !== A && + (!i && m + ? h(U, 'name', A) + : ((k = !0), + (_ = function () { + return o(C, this); + }))), + v) + ) + if (((P = { values: j(A), keys: g ? _ : j(S), entries: j(R) }), O)) + for (T in P) (x || k || !(T in U)) && p(U, T, P[T]); + else n({ target: r, proto: !0, forced: x || k }, P); + return (i && !O) || U[w] === _ || p(U, w, _, { name: v }), (d[r] = _), P; + }; + }, + 56194: (t, r, e) => { + 'use strict'; + var n, + o, + i, + a = e(82229), + u = e(88807), + s = e(21188), + c = e(56042), + f = e(62421), + l = e(29379), + h = e(96982), + p = e(8588), + v = h('iterator'), + d = !1; + [].keys && ('next' in (i = [].keys()) ? (o = f(f(i))) !== Object.prototype && (n = o) : (d = !0)), + !s(n) || + a(function () { + var t = {}; + return n[v].call(t) !== t; + }) + ? (n = {}) + : p && (n = c(n)), + u(n[v]) || + l(n, v, function () { + return this; + }), + (t.exports = { IteratorPrototype: n, BUGGY_SAFARI_ITERATORS: d }); + }, + 72429: t => { + t.exports = {}; + }, + 40406: (t, r, e) => { + var n = e(25664); + t.exports = function (t) { + return n(t.length); + }; + }, + 93450: (t, r, e) => { + var n = e(82229), + o = e(88807), + i = e(91854), + a = e(95417), + u = e(56815).CONFIGURABLE, + s = e(60227), + c = e(887), + f = c.enforce, + l = c.get, + h = Object.defineProperty, + p = + a && + !n(function () { + return 8 !== h(function () {}, 'length', { value: 8 }).length; + }), + v = String(String).split('String'), + d = (t.exports = function (t, r, e) { + 'Symbol(' === String(r).slice(0, 7) && (r = '[' + String(r).replace(/^Symbol\(([^)]*)\)/, '$1') + ']'), + e && e.getter && (r = 'get ' + r), + e && e.setter && (r = 'set ' + r), + (!i(t, 'name') || (u && t.name !== r)) && (a ? h(t, 'name', { value: r, configurable: !0 }) : (t.name = r)), + p && e && i(e, 'arity') && t.length !== e.arity && h(t, 'length', { value: e.arity }); + try { + e && i(e, 'constructor') && e.constructor + ? a && h(t, 'prototype', { writable: !1 }) + : t.prototype && (t.prototype = void 0); + } catch (o) {} + var n = f(t); + return i(n, 'source') || (n.source = v.join('string' == typeof r ? r : '')), t; + }); + Function.prototype.toString = d(function () { + return (o(this) && l(this).source) || s(this); + }, 'toString'); + }, + 99958: t => { + var r = Math.ceil, + e = Math.floor; + t.exports = + Math.trunc || + function (t) { + var n = +t; + return (n > 0 ? e : r)(n); + }; + }, + 49514: (t, r, e) => { + var n, + o, + i, + a, + u, + s, + c, + f, + l = e(70412), + h = e(7365), + p = e(68098).f, + v = e(1017).set, + d = e(3148), + g = e(44500), + y = e(32415), + m = e(84543), + b = l.MutationObserver || l.WebKitMutationObserver, + x = l.document, + w = l.process, + S = l.Promise, + A = p(l, 'queueMicrotask'), + R = A && A.value; + R || + ((n = function () { + var t, r; + for (m && (t = w.domain) && t.exit(); o; ) { + (r = o.fn), (o = o.next); + try { + r(); + } catch (e) { + throw (o ? a() : (i = void 0), e); + } + } + (i = void 0), t && t.enter(); + }), + d || m || y || !b || !x + ? !g && S && S.resolve + ? (((c = S.resolve(void 0)).constructor = S), + (f = h(c.then, c)), + (a = function () { + f(n); + })) + : m + ? (a = function () { + w.nextTick(n); + }) + : ((v = h(v, l)), + (a = function () { + v(n); + })) + : ((u = !0), + (s = x.createTextNode('')), + new b(n).observe(s, { characterData: !0 }), + (a = function () { + s.data = u = !u; + }))), + (t.exports = + R || + function (t) { + var r = { fn: t, next: void 0 }; + i && (i.next = r), o || ((o = r), a()), (i = r); + }); + }, + 92473: (t, r, e) => { + 'use strict'; + var n = e(70481), + o = TypeError, + i = function (t) { + var r, e; + (this.promise = new t(function (t, n) { + if (void 0 !== r || void 0 !== e) throw o('Bad Promise constructor'); + (r = t), (e = n); + })), + (this.resolve = n(r)), + (this.reject = n(e)); + }; + t.exports.f = function (t) { + return new i(t); + }; + }, + 47082: (t, r, e) => { + var n = e(16372), + o = TypeError; + t.exports = function (t) { + if (n(t)) throw o("The method doesn't accept regular expressions"); + return t; + }; + }, + 338: (t, r, e) => { + var n = e(70412), + o = e(82229), + i = e(41765), + a = e(98170), + u = e(29224).trim, + s = e(94809), + c = i(''.charAt), + f = n.parseFloat, + l = n.Symbol, + h = l && l.iterator, + p = + 1 / f(s + '-0') != -1 / 0 || + (h && + !o(function () { + f(Object(h)); + })); + t.exports = p + ? function (t) { + var r = u(a(t)), + e = f(r); + return 0 === e && '-' == c(r, 0) ? -0 : e; + } + : f; + }, + 65931: (t, r, e) => { + var n = e(70412), + o = e(82229), + i = e(41765), + a = e(98170), + u = e(29224).trim, + s = e(94809), + c = n.parseInt, + f = n.Symbol, + l = f && f.iterator, + h = /^[+-]?0x/i, + p = i(h.exec), + v = + 8 !== c(s + '08') || + 22 !== c(s + '0x16') || + (l && + !o(function () { + c(Object(l)); + })); + t.exports = v + ? function (t, r) { + var e = u(a(t)); + return c(e, r >>> 0 || (p(h, e) ? 16 : 10)); + } + : c; + }, + 94382: (t, r, e) => { + 'use strict'; + var n = e(95417), + o = e(41765), + i = e(41924), + a = e(82229), + u = e(46615), + s = e(97399), + c = e(99706), + f = e(90663), + l = e(21197), + h = Object.assign, + p = Object.defineProperty, + v = o([].concat); + t.exports = + !h || + a(function () { + if ( + n && + 1 !== + h( + { b: 1 }, + h( + p({}, 'a', { + enumerable: !0, + get: function () { + p(this, 'b', { value: 3, enumerable: !1 }); + }, + }), + { b: 2 }, + ), + ).b + ) + return !0; + var t = {}, + r = {}, + e = Symbol(), + o = 'abcdefghijklmnopqrst'; + return ( + (t[e] = 7), + o.split('').forEach(function (t) { + r[t] = t; + }), + 7 != h({}, t)[e] || u(h({}, r)).join('') != o + ); + }) + ? function (t, r) { + for (var e = f(t), o = arguments.length, a = 1, h = s.f, p = c.f; o > a; ) + for (var d, g = l(arguments[a++]), y = h ? v(u(g), h(g)) : u(g), m = y.length, b = 0; m > b; ) + (d = y[b++]), (n && !i(p, g, d)) || (e[d] = g[d]); + return e; + } + : h; + }, + 56042: (t, r, e) => { + var n, + o = e(71843), + i = e(13687), + a = e(96410), + u = e(64690), + s = e(95439), + c = e(36254), + f = e(5350), + l = 'prototype', + h = 'script', + p = f('IE_PROTO'), + v = function () {}, + d = function (t) { + return '<' + h + '>' + t + ''; + }, + g = function (t) { + t.write(d('')), t.close(); + var r = t.parentWindow.Object; + return (t = null), r; + }, + y = function () { + try { + n = new ActiveXObject('htmlfile'); + } catch (i) {} + var t, r, e; + y = + 'undefined' != typeof document + ? document.domain && n + ? g(n) + : ((r = c('iframe')), + (e = 'java' + h + ':'), + (r.style.display = 'none'), + s.appendChild(r), + (r.src = String(e)), + (t = r.contentWindow.document).open(), + t.write(d('document.F=Object')), + t.close(), + t.F) + : g(n); + for (var o = a.length; o--; ) delete y[l][a[o]]; + return y(); + }; + (u[p] = !0), + (t.exports = + Object.create || + function (t, r) { + var e; + return ( + null !== t ? ((v[l] = o(t)), (e = new v()), (v[l] = null), (e[p] = t)) : (e = y()), + void 0 === r ? e : i.f(e, r) + ); + }); + }, + 13687: (t, r, e) => { + var n = e(95417), + o = e(5989), + i = e(90189), + a = e(71843), + u = e(30529), + s = e(46615); + r.f = + n && !o + ? Object.defineProperties + : function (t, r) { + a(t); + for (var e, n = u(r), o = s(r), c = o.length, f = 0; c > f; ) i.f(t, (e = o[f++]), n[e]); + return t; + }; + }, + 90189: (t, r, e) => { + var n = e(95417), + o = e(94469), + i = e(5989), + a = e(71843), + u = e(37712), + s = TypeError, + c = Object.defineProperty, + f = Object.getOwnPropertyDescriptor, + l = 'enumerable', + h = 'configurable', + p = 'writable'; + r.f = n + ? i + ? function (t, r, e) { + if ( + (a(t), (r = u(r)), a(e), 'function' == typeof t && 'prototype' === r && 'value' in e && p in e && !e[p]) + ) { + var n = f(t, r); + n && + n[p] && + ((t[r] = e.value), + (e = { configurable: h in e ? e[h] : n[h], enumerable: l in e ? e[l] : n[l], writable: !1 })); + } + return c(t, r, e); + } + : c + : function (t, r, e) { + if ((a(t), (r = u(r)), a(e), o)) + try { + return c(t, r, e); + } catch (n) {} + if ('get' in e || 'set' in e) throw s('Accessors not supported'); + return 'value' in e && (t[r] = e.value), t; + }; + }, + 68098: (t, r, e) => { + var n = e(95417), + o = e(41924), + i = e(99706), + a = e(413), + u = e(30529), + s = e(37712), + c = e(91854), + f = e(94469), + l = Object.getOwnPropertyDescriptor; + r.f = n + ? l + : function (t, r) { + if (((t = u(t)), (r = s(r)), f)) + try { + return l(t, r); + } catch (e) {} + if (c(t, r)) return a(!o(i.f, t, r), t[r]); + }; + }, + 21079: (t, r, e) => { + var n = e(29682), + o = e(30529), + i = e(58206).f, + a = e(89625), + u = 'object' == typeof window && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : []; + t.exports.f = function (t) { + return u && 'Window' == n(t) + ? (function (t) { + try { + return i(t); + } catch (r) { + return a(u); + } + })(t) + : i(o(t)); + }; + }, + 58206: (t, r, e) => { + var n = e(28715), + o = e(96410).concat('length', 'prototype'); + r.f = + Object.getOwnPropertyNames || + function (t) { + return n(t, o); + }; + }, + 97399: (t, r) => { + r.f = Object.getOwnPropertySymbols; + }, + 62421: (t, r, e) => { + var n = e(91854), + o = e(88807), + i = e(90663), + a = e(5350), + u = e(80093), + s = a('IE_PROTO'), + c = Object, + f = c.prototype; + t.exports = u + ? c.getPrototypeOf + : function (t) { + var r = i(t); + if (n(r, s)) return r[s]; + var e = r.constructor; + return o(e) && r instanceof e ? e.prototype : r instanceof c ? f : null; + }; + }, + 47305: (t, r, e) => { + var n = e(82229), + o = e(21188), + i = e(29682), + a = e(89473), + u = Object.isExtensible, + s = n(function () { + u(1); + }); + t.exports = + s || a + ? function (t) { + return !!o(t) && (!a || 'ArrayBuffer' != i(t)) && (!u || u(t)); + } + : u; + }, + 13521: (t, r, e) => { + var n = e(41765); + t.exports = n({}.isPrototypeOf); + }, + 28715: (t, r, e) => { + var n = e(41765), + o = e(91854), + i = e(30529), + a = e(17222).indexOf, + u = e(64690), + s = n([].push); + t.exports = function (t, r) { + var e, + n = i(t), + c = 0, + f = []; + for (e in n) !o(u, e) && o(n, e) && s(f, e); + for (; r.length > c; ) o(n, (e = r[c++])) && (~a(f, e) || s(f, e)); + return f; + }; + }, + 46615: (t, r, e) => { + var n = e(28715), + o = e(96410); + t.exports = + Object.keys || + function (t) { + return n(t, o); + }; + }, + 99706: (t, r) => { + 'use strict'; + var e = {}.propertyIsEnumerable, + n = Object.getOwnPropertyDescriptor, + o = n && !e.call({ 1: 2 }, 1); + r.f = o + ? function (t) { + var r = n(this, t); + return !!r && r.enumerable; + } + : e; + }, + 16922: (t, r, e) => { + 'use strict'; + var n = e(8588), + o = e(70412), + i = e(82229), + a = e(58452); + t.exports = + n || + !i(function () { + if (!(a && a < 535)) { + var t = Math.random(); + __defineSetter__.call(null, t, function () {}), delete o[t]; + } + }); + }, + 71083: (t, r, e) => { + var n = e(41765), + o = e(71843), + i = e(5946); + t.exports = + Object.setPrototypeOf || + ('__proto__' in {} + ? (function () { + var t, + r = !1, + e = {}; + try { + (t = n(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set))(e, []), + (r = e instanceof Array); + } catch (a) {} + return function (e, n) { + return o(e), i(n), r ? t(e, n) : (e.__proto__ = n), e; + }; + })() + : void 0); + }, + 56976: (t, r, e) => { + var n = e(41924), + o = e(88807), + i = e(21188), + a = TypeError; + t.exports = function (t, r) { + var e, u; + if ('string' === r && o((e = t.toString)) && !i((u = n(e, t)))) return u; + if (o((e = t.valueOf)) && !i((u = n(e, t)))) return u; + if ('string' !== r && o((e = t.toString)) && !i((u = n(e, t)))) return u; + throw a("Can't convert object to primitive value"); + }; + }, + 72929: (t, r, e) => { + var n = e(52228), + o = e(41765), + i = e(58206), + a = e(97399), + u = e(71843), + s = o([].concat); + t.exports = + n('Reflect', 'ownKeys') || + function (t) { + var r = i.f(u(t)), + e = a.f; + return e ? s(r, e(t)) : r; + }; + }, + 48159: (t, r, e) => { + var n = e(70412); + t.exports = n; + }, + 30668: t => { + t.exports = function (t) { + try { + return { error: !1, value: t() }; + } catch (r) { + return { error: !0, value: r }; + } + }; + }, + 27743: (t, r, e) => { + var n = e(70412), + o = e(15461), + i = e(88807), + a = e(76777), + u = e(60227), + s = e(96982), + c = e(18573), + f = e(27158), + l = e(8588), + h = e(44905), + p = o && o.prototype, + v = s('species'), + d = !1, + g = i(n.PromiseRejectionEvent), + y = a('Promise', function () { + var t = u(o), + r = t !== String(o); + if (!r && 66 === h) return !0; + if (l && (!p.catch || !p.finally)) return !0; + if (!h || h < 51 || !/native code/.test(t)) { + var e = new o(function (t) { + t(1); + }), + n = function (t) { + t( + function () {}, + function () {}, + ); + }; + if ((((e.constructor = {})[v] = n), !(d = e.then(function () {}) instanceof n))) return !0; + } + return !r && (c || f) && !g; + }); + t.exports = { CONSTRUCTOR: y, REJECTION_EVENT: g, SUBCLASSING: d }; + }, + 15461: (t, r, e) => { + var n = e(70412); + t.exports = n.Promise; + }, + 88149: (t, r, e) => { + var n = e(71843), + o = e(21188), + i = e(92473); + t.exports = function (t, r) { + if ((n(t), o(r) && r.constructor === t)) return r; + var e = i.f(t); + return (0, e.resolve)(r), e.promise; + }; + }, + 20769: (t, r, e) => { + var n = e(15461), + o = e(3800), + i = e(27743).CONSTRUCTOR; + t.exports = + i || + !o(function (t) { + n.all(t).then(void 0, function () {}); + }); + }, + 30382: (t, r, e) => { + var n = e(90189).f; + t.exports = function (t, r, e) { + e in t || + n(t, e, { + configurable: !0, + get: function () { + return r[e]; + }, + set: function (t) { + r[e] = t; + }, + }); + }; + }, + 69323: t => { + var r = function () { + (this.head = null), (this.tail = null); + }; + (r.prototype = { + add: function (t) { + var r = { item: t, next: null }; + this.head ? (this.tail.next = r) : (this.head = r), (this.tail = r); + }, + get: function () { + var t = this.head; + if (t) return (this.head = t.next), this.tail === t && (this.tail = null), t.item; + }, + }), + (t.exports = r); + }, + 12134: (t, r, e) => { + var n = e(41924), + o = e(71843), + i = e(88807), + a = e(29682), + u = e(38157), + s = TypeError; + t.exports = function (t, r) { + var e = t.exec; + if (i(e)) { + var c = n(e, t, r); + return null !== c && o(c), c; + } + if ('RegExp' === a(t)) return n(u, t, r); + throw s('RegExp#exec called on incompatible receiver'); + }; + }, + 38157: (t, r, e) => { + 'use strict'; + var n, + o, + i = e(41924), + a = e(41765), + u = e(98170), + s = e(88103), + c = e(48756), + f = e(39215), + l = e(56042), + h = e(887).get, + p = e(60054), + v = e(77084), + d = f('native-string-replace', String.prototype.replace), + g = RegExp.prototype.exec, + y = g, + m = a(''.charAt), + b = a(''.indexOf), + x = a(''.replace), + w = a(''.slice), + S = ((o = /b*/g), i(g, (n = /a/), 'a'), i(g, o, 'a'), 0 !== n.lastIndex || 0 !== o.lastIndex), + A = c.BROKEN_CARET, + R = void 0 !== /()??/.exec('')[1]; + (S || R || A || p || v) && + (y = function (t) { + var r, + e, + n, + o, + a, + c, + f, + p = this, + v = h(p), + E = u(t), + O = v.raw; + if (O) return (O.lastIndex = p.lastIndex), (r = i(y, O, E)), (p.lastIndex = O.lastIndex), r; + var I = v.groups, + P = A && p.sticky, + T = i(s, p), + j = p.source, + L = 0, + k = E; + if ( + (P && + ((T = x(T, 'y', '')), + -1 === b(T, 'g') && (T += 'g'), + (k = w(E, p.lastIndex)), + p.lastIndex > 0 && + (!p.multiline || (p.multiline && '\n' !== m(E, p.lastIndex - 1))) && + ((j = '(?: ' + j + ')'), (k = ' ' + k), L++), + (e = new RegExp('^(?:' + j + ')', T))), + R && (e = new RegExp('^' + j + '$(?!\\s)', T)), + S && (n = p.lastIndex), + (o = i(g, P ? e : p, k)), + P + ? o + ? ((o.input = w(o.input, L)), + (o[0] = w(o[0], L)), + (o.index = p.lastIndex), + (p.lastIndex += o[0].length)) + : (p.lastIndex = 0) + : S && o && (p.lastIndex = p.global ? o.index + o[0].length : n), + R && + o && + o.length > 1 && + i(d, o[0], e, function () { + for (a = 1; a < arguments.length - 2; a++) void 0 === arguments[a] && (o[a] = void 0); + }), + o && I) + ) + for (o.groups = c = l(null), a = 0; a < I.length; a++) c[(f = I[a])[0]] = o[f[1]]; + return o; + }), + (t.exports = y); + }, + 88103: (t, r, e) => { + 'use strict'; + var n = e(71843); + t.exports = function () { + var t = n(this), + r = ''; + return ( + t.hasIndices && (r += 'd'), + t.global && (r += 'g'), + t.ignoreCase && (r += 'i'), + t.multiline && (r += 'm'), + t.dotAll && (r += 's'), + t.unicode && (r += 'u'), + t.unicodeSets && (r += 'v'), + t.sticky && (r += 'y'), + r + ); + }; + }, + 36558: (t, r, e) => { + var n = e(41924), + o = e(91854), + i = e(13521), + a = e(88103), + u = RegExp.prototype; + t.exports = function (t) { + var r = t.flags; + return void 0 !== r || 'flags' in u || o(t, 'flags') || !i(u, t) ? r : n(a, t); + }; + }, + 48756: (t, r, e) => { + var n = e(82229), + o = e(70412).RegExp, + i = n(function () { + var t = o('a', 'y'); + return (t.lastIndex = 2), null != t.exec('abcd'); + }), + a = + i || + n(function () { + return !o('a', 'y').sticky; + }), + u = + i || + n(function () { + var t = o('^r', 'gy'); + return (t.lastIndex = 2), null != t.exec('str'); + }); + t.exports = { BROKEN_CARET: u, MISSED_STICKY: a, UNSUPPORTED_Y: i }; + }, + 60054: (t, r, e) => { + var n = e(82229), + o = e(70412).RegExp; + t.exports = n(function () { + var t = o('.', 's'); + return !(t.dotAll && t.exec('\n') && 's' === t.flags); + }); + }, + 77084: (t, r, e) => { + var n = e(82229), + o = e(70412).RegExp; + t.exports = n(function () { + var t = o('(?b)', 'g'); + return 'b' !== t.exec('b').groups.a || 'bc' !== 'b'.replace(t, '$c'); + }); + }, + 20774: (t, r, e) => { + var n = e(39989), + o = TypeError; + t.exports = function (t) { + if (n(t)) throw o("Can't call method on " + t); + return t; + }; + }, + 53411: t => { + t.exports = + Object.is || + function (t, r) { + return t === r ? 0 !== t || 1 / t == 1 / r : t != t && r != r; + }; + }, + 35787: (t, r, e) => { + 'use strict'; + var n = e(52228), + o = e(90189), + i = e(96982), + a = e(95417), + u = i('species'); + t.exports = function (t) { + var r = n(t), + e = o.f; + a && + r && + !r[u] && + e(r, u, { + configurable: !0, + get: function () { + return this; + }, + }); + }; + }, + 43803: (t, r, e) => { + var n = e(90189).f, + o = e(91854), + i = e(96982)('toStringTag'); + t.exports = function (t, r, e) { + t && !e && (t = t.prototype), t && !o(t, i) && n(t, i, { configurable: !0, value: r }); + }; + }, + 5350: (t, r, e) => { + var n = e(39215), + o = e(34436), + i = n('keys'); + t.exports = function (t) { + return i[t] || (i[t] = o(t)); + }; + }, + 81502: (t, r, e) => { + var n = e(70412), + o = e(26139), + i = '__core-js_shared__', + a = n[i] || o(i, {}); + t.exports = a; + }, + 39215: (t, r, e) => { + var n = e(8588), + o = e(81502); + (t.exports = function (t, r) { + return o[t] || (o[t] = void 0 !== r ? r : {}); + })('versions', []).push({ + version: '3.26.0', + mode: n ? 'pure' : 'global', + copyright: '\xa9 2014-2022 Denis Pushkarev (zloirock.ru)', + license: 'https://github.com/zloirock/core-js/blob/v3.26.0/LICENSE', + source: 'https://github.com/zloirock/core-js', + }); + }, + 23913: (t, r, e) => { + var n = e(71843), + o = e(12420), + i = e(39989), + a = e(96982)('species'); + t.exports = function (t, r) { + var e, + u = n(t).constructor; + return void 0 === u || i((e = n(u)[a])) ? r : o(e); + }; + }, + 33100: (t, r, e) => { + var n = e(41765), + o = e(32048), + i = e(98170), + a = e(20774), + u = n(''.charAt), + s = n(''.charCodeAt), + c = n(''.slice), + f = function (t) { + return function (r, e) { + var n, + f, + l = i(a(r)), + h = o(e), + p = l.length; + return h < 0 || h >= p + ? t + ? '' + : void 0 + : (n = s(l, h)) < 55296 || n > 56319 || h + 1 === p || (f = s(l, h + 1)) < 56320 || f > 57343 + ? t + ? u(l, h) + : n + : t + ? c(l, h, h + 2) + : f - 56320 + ((n - 55296) << 10) + 65536; + }; + }; + t.exports = { codeAt: f(!1), charAt: f(!0) }; + }, + 71896: (t, r, e) => { + var n = e(86378); + t.exports = /Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n); + }, + 52752: (t, r, e) => { + var n = e(41765), + o = e(25664), + i = e(98170), + a = e(71744), + u = e(20774), + s = n(a), + c = n(''.slice), + f = Math.ceil, + l = function (t) { + return function (r, e, n) { + var a, + l, + h = i(u(r)), + p = o(e), + v = h.length, + d = void 0 === n ? ' ' : i(n); + return p <= v || '' == d + ? h + : ((l = s(d, f((a = p - v) / d.length))).length > a && (l = c(l, 0, a)), t ? h + l : l + h); + }; + }; + t.exports = { start: l(!1), end: l(!0) }; + }, + 63253: (t, r, e) => { + 'use strict'; + var n = e(41765), + o = 2147483647, + i = /[^\0-\u007E]/, + a = /[.\u3002\uFF0E\uFF61]/g, + u = 'Overflow: input needs wider integers to process', + s = RangeError, + c = n(a.exec), + f = Math.floor, + l = String.fromCharCode, + h = n(''.charCodeAt), + p = n([].join), + v = n([].push), + d = n(''.replace), + g = n(''.split), + y = n(''.toLowerCase), + m = function (t) { + return t + 22 + 75 * (t < 26); + }, + b = function (t, r, e) { + var n = 0; + for (t = e ? f(t / 700) : t >> 1, t += f(t / r); t > 455; ) (t = f(t / 35)), (n += 36); + return f(n + (36 * t) / (t + 38)); + }, + x = function (t) { + var r = []; + t = (function (t) { + for (var r = [], e = 0, n = t.length; e < n; ) { + var o = h(t, e++); + if (o >= 55296 && o <= 56319 && e < n) { + var i = h(t, e++); + 56320 == (64512 & i) ? v(r, ((1023 & o) << 10) + (1023 & i) + 65536) : (v(r, o), e--); + } else v(r, o); + } + return r; + })(t); + var e, + n, + i = t.length, + a = 128, + c = 0, + d = 72; + for (e = 0; e < t.length; e++) (n = t[e]) < 128 && v(r, l(n)); + var g = r.length, + y = g; + for (g && v(r, '-'); y < i; ) { + var x = o; + for (e = 0; e < t.length; e++) (n = t[e]) >= a && n < x && (x = n); + var w = y + 1; + if (x - a > f((o - c) / w)) throw s(u); + for (c += (x - a) * w, a = x, e = 0; e < t.length; e++) { + if ((n = t[e]) < a && ++c > o) throw s(u); + if (n == a) { + for (var S = c, A = 36; ; ) { + var R = A <= d ? 1 : A >= d + 26 ? 26 : A - d; + if (S < R) break; + var E = S - R, + O = 36 - R; + v(r, l(m(R + (E % O)))), (S = f(E / O)), (A += 36); + } + v(r, l(m(S))), (d = b(c, w, y == g)), (c = 0), y++; + } + } + c++, a++; + } + return p(r, ''); + }; + t.exports = function (t) { + var r, + e, + n = [], + o = g(d(y(t), a, '.'), '.'); + for (r = 0; r < o.length; r++) (e = o[r]), v(n, c(i, e) ? 'xn--' + x(e) : e); + return p(n, '.'); + }; + }, + 71744: (t, r, e) => { + 'use strict'; + var n = e(32048), + o = e(98170), + i = e(20774), + a = RangeError; + t.exports = function (t) { + var r = o(i(this)), + e = '', + u = n(t); + if (u < 0 || u == 1 / 0) throw a('Wrong number of repetitions'); + for (; u > 0; (u >>>= 1) && (r += r)) 1 & u && (e += r); + return e; + }; + }, + 78778: (t, r, e) => { + 'use strict'; + var n = e(29224).end, + o = e(88205); + t.exports = o('trimEnd') + ? function () { + return n(this); + } + : ''.trimEnd; + }, + 88205: (t, r, e) => { + var n = e(56815).PROPER, + o = e(82229), + i = e(94809); + t.exports = function (t) { + return o(function () { + return !!i[t]() || '\u200b\x85\u180e' !== '\u200b\x85\u180e'[t]() || (n && i[t].name !== t); + }); + }; + }, + 682: (t, r, e) => { + 'use strict'; + var n = e(29224).start, + o = e(88205); + t.exports = o('trimStart') + ? function () { + return n(this); + } + : ''.trimStart; + }, + 29224: (t, r, e) => { + var n = e(41765), + o = e(20774), + i = e(98170), + a = e(94809), + u = n(''.replace), + s = '[' + a + ']', + c = RegExp('^' + s + s + '*'), + f = RegExp(s + s + '*$'), + l = function (t) { + return function (r) { + var e = i(o(r)); + return 1 & t && (e = u(e, c, '')), 2 & t && (e = u(e, f, '')), e; + }; + }; + t.exports = { start: l(1), end: l(2), trim: l(3) }; + }, + 9770: (t, r, e) => { + var n = e(44905), + o = e(82229); + t.exports = + !!Object.getOwnPropertySymbols && + !o(function () { + var t = Symbol(); + return !String(t) || !(Object(t) instanceof Symbol) || (!Symbol.sham && n && n < 41); + }); + }, + 1017: (t, r, e) => { + var n, + o, + i, + a, + u = e(70412), + s = e(90675), + c = e(7365), + f = e(88807), + l = e(91854), + h = e(82229), + p = e(95439), + v = e(96784), + d = e(36254), + g = e(58453), + y = e(3148), + m = e(84543), + b = u.setImmediate, + x = u.clearImmediate, + w = u.process, + S = u.Dispatch, + A = u.Function, + R = u.MessageChannel, + E = u.String, + O = 0, + I = {}, + P = 'onreadystatechange'; + try { + n = u.location; + } catch (U) {} + var T = function (t) { + if (l(I, t)) { + var r = I[t]; + delete I[t], r(); + } + }, + j = function (t) { + return function () { + T(t); + }; + }, + L = function (t) { + T(t.data); + }, + k = function (t) { + u.postMessage(E(t), n.protocol + '//' + n.host); + }; + (b && x) || + ((b = function (t) { + g(arguments.length, 1); + var r = f(t) ? t : A(t), + e = v(arguments, 1); + return ( + (I[++O] = function () { + s(r, void 0, e); + }), + o(O), + O + ); + }), + (x = function (t) { + delete I[t]; + }), + m + ? (o = function (t) { + w.nextTick(j(t)); + }) + : S && S.now + ? (o = function (t) { + S.now(j(t)); + }) + : R && !y + ? ((a = (i = new R()).port2), (i.port1.onmessage = L), (o = c(a.postMessage, a))) + : u.addEventListener && f(u.postMessage) && !u.importScripts && n && 'file:' !== n.protocol && !h(k) + ? ((o = k), u.addEventListener('message', L, !1)) + : (o = + P in d('script') + ? function (t) { + p.appendChild(d('script'))[P] = function () { + p.removeChild(this), T(t); + }; + } + : function (t) { + setTimeout(j(t), 0); + })), + (t.exports = { set: b, clear: x }); + }, + 64584: (t, r, e) => { + var n = e(41765); + t.exports = n((1).valueOf); + }, + 90069: (t, r, e) => { + var n = e(32048), + o = Math.max, + i = Math.min; + t.exports = function (t, r) { + var e = n(t); + return e < 0 ? o(e + r, 0) : i(e, r); + }; + }, + 85580: (t, r, e) => { + var n = e(5368), + o = TypeError; + t.exports = function (t) { + var r = n(t, 'number'); + if ('number' == typeof r) throw o("Can't convert number to bigint"); + return BigInt(r); + }; + }, + 22785: (t, r, e) => { + var n = e(32048), + o = e(25664), + i = RangeError; + t.exports = function (t) { + if (void 0 === t) return 0; + var r = n(t), + e = o(r); + if (r !== e) throw i('Wrong length or index'); + return e; + }; + }, + 30529: (t, r, e) => { + var n = e(21197), + o = e(20774); + t.exports = function (t) { + return n(o(t)); + }; + }, + 32048: (t, r, e) => { + var n = e(99958); + t.exports = function (t) { + var r = +t; + return r != r || 0 === r ? 0 : n(r); + }; + }, + 25664: (t, r, e) => { + var n = e(32048), + o = Math.min; + t.exports = function (t) { + return t > 0 ? o(n(t), 9007199254740991) : 0; + }; + }, + 90663: (t, r, e) => { + var n = e(20774), + o = Object; + t.exports = function (t) { + return o(n(t)); + }; + }, + 20839: (t, r, e) => { + var n = e(97119), + o = RangeError; + t.exports = function (t, r) { + var e = n(t); + if (e % r) throw o('Wrong offset'); + return e; + }; + }, + 97119: (t, r, e) => { + var n = e(32048), + o = RangeError; + t.exports = function (t) { + var r = n(t); + if (r < 0) throw o("The argument can't be less than 0"); + return r; + }; + }, + 5368: (t, r, e) => { + var n = e(41924), + o = e(21188), + i = e(29844), + a = e(89423), + u = e(56976), + s = e(96982), + c = TypeError, + f = s('toPrimitive'); + t.exports = function (t, r) { + if (!o(t) || i(t)) return t; + var e, + s = a(t, f); + if (s) { + if ((void 0 === r && (r = 'default'), (e = n(s, t, r)), !o(e) || i(e))) return e; + throw c("Can't convert object to primitive value"); + } + return void 0 === r && (r = 'number'), u(t, r); + }; + }, + 37712: (t, r, e) => { + var n = e(5368), + o = e(29844); + t.exports = function (t) { + var r = n(t, 'string'); + return o(r) ? r : r + ''; + }; + }, + 50089: (t, r, e) => { + var n = {}; + (n[e(96982)('toStringTag')] = 'z'), (t.exports = '[object z]' === String(n)); + }, + 98170: (t, r, e) => { + var n = e(765), + o = String; + t.exports = function (t) { + if ('Symbol' === n(t)) throw TypeError('Cannot convert a Symbol value to a string'); + return o(t); + }; + }, + 48427: t => { + var r = String; + t.exports = function (t) { + try { + return r(t); + } catch (e) { + return 'Object'; + } + }; + }, + 97064: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(70412), + i = e(41924), + a = e(95417), + u = e(40138), + s = e(30491), + c = e(11812), + f = e(65712), + l = e(413), + h = e(7001), + p = e(63272), + v = e(25664), + d = e(22785), + g = e(20839), + y = e(37712), + m = e(91854), + b = e(765), + x = e(21188), + w = e(29844), + S = e(56042), + A = e(13521), + R = e(71083), + E = e(58206).f, + O = e(31716), + I = e(99248).forEach, + P = e(35787), + T = e(90189), + j = e(68098), + L = e(887), + k = e(42325), + U = L.get, + C = L.set, + _ = L.enforce, + M = T.f, + F = j.f, + N = Math.round, + B = o.RangeError, + D = c.ArrayBuffer, + H = D.prototype, + z = c.DataView, + q = s.NATIVE_ARRAY_BUFFER_VIEWS, + W = s.TYPED_ARRAY_TAG, + G = s.TypedArray, + V = s.TypedArrayPrototype, + $ = s.aTypedArrayConstructor, + Y = s.isTypedArray, + K = 'BYTES_PER_ELEMENT', + J = 'Wrong length', + X = function (t, r) { + $(t); + for (var e = 0, n = r.length, o = new t(n); n > e; ) o[e] = r[e++]; + return o; + }, + Q = function (t, r) { + M(t, r, { + get: function () { + return U(this)[r]; + }, + }); + }, + Z = function (t) { + var r; + return A(H, t) || 'ArrayBuffer' == (r = b(t)) || 'SharedArrayBuffer' == r; + }, + tt = function (t, r) { + return Y(t) && !w(r) && r in t && p(+r) && r >= 0; + }, + rt = function (t, r) { + return (r = y(r)), tt(t, r) ? l(2, t[r]) : F(t, r); + }, + et = function (t, r, e) { + return ( + (r = y(r)), + !(tt(t, r) && x(e) && m(e, 'value')) || + m(e, 'get') || + m(e, 'set') || + e.configurable || + (m(e, 'writable') && !e.writable) || + (m(e, 'enumerable') && !e.enumerable) + ? M(t, r, e) + : ((t[r] = e.value), t) + ); + }; + a + ? (q || ((j.f = rt), (T.f = et), Q(V, 'buffer'), Q(V, 'byteOffset'), Q(V, 'byteLength'), Q(V, 'length')), + n({ target: 'Object', stat: !0, forced: !q }, { getOwnPropertyDescriptor: rt, defineProperty: et }), + (t.exports = function (t, r, e) { + var a = t.match(/\d+$/)[0] / 8, + s = t + (e ? 'Clamped' : '') + 'Array', + c = 'get' + t, + l = 'set' + t, + p = o[s], + y = p, + m = y && y.prototype, + b = {}, + w = function (t, r) { + M(t, r, { + get: function () { + return (function (t, r) { + var e = U(t); + return e.view[c](r * a + e.byteOffset, !0); + })(this, r); + }, + set: function (t) { + return (function (t, r, n) { + var o = U(t); + e && (n = (n = N(n)) < 0 ? 0 : n > 255 ? 255 : 255 & n), o.view[l](r * a + o.byteOffset, n, !0); + })(this, r, t); + }, + enumerable: !0, + }); + }; + q + ? u && + ((y = r(function (t, r, e, n) { + return ( + f(t, m), + k( + x(r) + ? Z(r) + ? void 0 !== n + ? new p(r, g(e, a), n) + : void 0 !== e + ? new p(r, g(e, a)) + : new p(r) + : Y(r) + ? X(y, r) + : i(O, y, r) + : new p(d(r)), + t, + y, + ) + ); + })), + R && R(y, G), + I(E(p), function (t) { + t in y || h(y, t, p[t]); + }), + (y.prototype = m)) + : ((y = r(function (t, r, e, n) { + f(t, m); + var o, + u, + s, + c = 0, + l = 0; + if (x(r)) { + if (!Z(r)) return Y(r) ? X(y, r) : i(O, y, r); + (o = r), (l = g(e, a)); + var h = r.byteLength; + if (void 0 === n) { + if (h % a) throw B(J); + if ((u = h - l) < 0) throw B(J); + } else if ((u = v(n) * a) + l > h) throw B(J); + s = u / a; + } else (s = d(r)), (o = new D((u = s * a))); + for (C(t, { buffer: o, byteOffset: l, byteLength: u, length: s, view: new z(o) }); c < s; ) w(t, c++); + })), + R && R(y, G), + (m = y.prototype = S(V))), + m.constructor !== y && h(m, 'constructor', y), + (_(m).TypedArrayConstructor = y), + W && h(m, W, s); + var A = y != p; + (b[s] = y), + n({ global: !0, constructor: !0, forced: A, sham: !q }, b), + K in y || h(y, K, a), + K in m || h(m, K, a), + P(s); + })) + : (t.exports = function () {}); + }, + 40138: (t, r, e) => { + var n = e(70412), + o = e(82229), + i = e(3800), + a = e(30491).NATIVE_ARRAY_BUFFER_VIEWS, + u = n.ArrayBuffer, + s = n.Int8Array; + t.exports = + !a || + !o(function () { + s(1); + }) || + !o(function () { + new s(-1); + }) || + !i(function (t) { + new s(), new s(null), new s(1.5), new s(t); + }, !0) || + o(function () { + return 1 !== new s(new u(2), 1, void 0).length; + }); + }, + 31716: (t, r, e) => { + var n = e(7365), + o = e(41924), + i = e(12420), + a = e(90663), + u = e(40406), + s = e(28338), + c = e(63412), + f = e(46196), + l = e(59537), + h = e(30491).aTypedArrayConstructor, + p = e(85580); + t.exports = function (t) { + var r, + e, + v, + d, + g, + y, + m, + b, + x = i(this), + w = a(t), + S = arguments.length, + A = S > 1 ? arguments[1] : void 0, + R = void 0 !== A, + E = c(w); + if (E && !f(E)) for (b = (m = s(w, E)).next, w = []; !(y = o(b, m)).done; ) w.push(y.value); + for (R && S > 2 && (A = n(A, arguments[2])), e = u(w), v = new (h(x))(e), d = l(v), r = 0; e > r; r++) + (g = R ? A(w[r], r) : w[r]), (v[r] = d ? p(g) : +g); + return v; + }; + }, + 34436: (t, r, e) => { + var n = e(41765), + o = 0, + i = Math.random(), + a = n((1).toString); + t.exports = function (t) { + return 'Symbol(' + (void 0 === t ? '' : t) + ')_' + a(++o + i, 36); + }; + }, + 506: (t, r, e) => { + var n = e(82229), + o = e(96982), + i = e(8588), + a = o('iterator'); + t.exports = !n(function () { + var t = new URL('b?a=1&b=2&c=3', 'http://a'), + r = t.searchParams, + e = ''; + return ( + (t.pathname = 'c%20d'), + r.forEach(function (t, n) { + r.delete('b'), (e += n + t); + }), + (i && !t.toJSON) || + !r.sort || + 'http://a/c%20d?a=1&c=3' !== t.href || + '3' !== r.get('c') || + 'a=1' !== String(new URLSearchParams('?a=1')) || + !r[a] || + 'a' !== new URL('https://a@b').username || + 'b' !== new URLSearchParams(new URLSearchParams('a=b')).get('a') || + 'xn--e1aybc' !== new URL('http://\u0442\u0435\u0441\u0442').host || + '#%D0%B1' !== new URL('http://a#\u0431').hash || + 'a1c3' !== e || + 'x' !== new URL('http://x', void 0).host + ); + }); + }, + 39696: (t, r, e) => { + var n = e(9770); + t.exports = n && !Symbol.sham && 'symbol' == typeof Symbol.iterator; + }, + 5989: (t, r, e) => { + var n = e(95417), + o = e(82229); + t.exports = + n && + o(function () { + return 42 != Object.defineProperty(function () {}, 'prototype', { value: 42, writable: !1 }).prototype; + }); + }, + 58453: t => { + var r = TypeError; + t.exports = function (t, e) { + if (t < e) throw r('Not enough arguments'); + return t; + }; + }, + 17023: (t, r, e) => { + var n = e(70412), + o = e(88807), + i = n.WeakMap; + t.exports = o(i) && /native code/.test(String(i)); + }, + 16515: (t, r, e) => { + var n = e(48159), + o = e(91854), + i = e(7734), + a = e(90189).f; + t.exports = function (t) { + var r = n.Symbol || (n.Symbol = {}); + o(r, t) || a(r, t, { value: i.f(t) }); + }; + }, + 7734: (t, r, e) => { + var n = e(96982); + r.f = n; + }, + 96982: (t, r, e) => { + var n = e(70412), + o = e(39215), + i = e(91854), + a = e(34436), + u = e(9770), + s = e(39696), + c = o('wks'), + f = n.Symbol, + l = f && f.for, + h = s ? f : (f && f.withoutSetter) || a; + t.exports = function (t) { + if (!i(c, t) || (!u && 'string' != typeof c[t])) { + var r = 'Symbol.' + t; + u && i(f, t) ? (c[t] = f[t]) : (c[t] = s && l ? l(r) : h(r)); + } + return c[t]; + }; + }, + 94809: t => { + t.exports = + '\t\n\v\f\r \xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff'; + }, + 2048: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(70412), + i = e(11812), + a = e(35787), + u = 'ArrayBuffer', + s = i[u]; + n({ global: !0, constructor: !0, forced: o[u] !== s }, { ArrayBuffer: s }), a(u); + }, + 51072: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41765), + i = e(82229), + a = e(11812), + u = e(71843), + s = e(90069), + c = e(25664), + f = e(23913), + l = a.ArrayBuffer, + h = a.DataView, + p = h.prototype, + v = o(l.prototype.slice), + d = o(p.getUint8), + g = o(p.setUint8); + n( + { + target: 'ArrayBuffer', + proto: !0, + unsafe: !0, + forced: i(function () { + return !new l(2).slice(1, void 0).byteLength; + }), + }, + { + slice: function (t, r) { + if (v && void 0 === r) return v(u(this), t); + for ( + var e = u(this).byteLength, + n = s(t, e), + o = s(void 0 === r ? e : r, e), + i = new (f(this, l))(c(o - n)), + a = new h(this), + p = new h(i), + y = 0; + n < o; + + ) + g(p, y++, d(a, n++)); + return i; + }, + }, + ); + }, + 18253: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(74596), + i = e(70481), + a = e(90663), + u = e(40406), + s = e(69164); + n( + { target: 'Array', proto: !0 }, + { + flatMap: function (t) { + var r, + e = a(this), + n = u(e); + return ( + i(t), ((r = s(e, 0)).length = o(r, e, e, n, 0, 1, t, arguments.length > 1 ? arguments[1] : void 0)), r + ); + }, + }, + ); + }, + 57640: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(74596), + i = e(90663), + a = e(40406), + u = e(32048), + s = e(69164); + n( + { target: 'Array', proto: !0 }, + { + flat: function () { + var t = arguments.length ? arguments[0] : void 0, + r = i(this), + e = a(r), + n = s(r, 0); + return (n.length = o(n, r, r, e, 0, void 0 === t ? 1 : u(t))), n; + }, + }, + ); + }, + 94841: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(17222).includes, + i = e(82229), + a = e(63288); + n( + { + target: 'Array', + proto: !0, + forced: i(function () { + return !Array(1).includes(); + }), + }, + { + includes: function (t) { + return o(this, t, arguments.length > 1 ? arguments[1] : void 0); + }, + }, + ), + a('includes'); + }, + 78062: (t, r, e) => { + 'use strict'; + var n = e(30529), + o = e(63288), + i = e(72429), + a = e(887), + u = e(90189).f, + s = e(61666), + c = e(74903), + f = e(8588), + l = e(95417), + h = 'Array Iterator', + p = a.set, + v = a.getterFor(h); + t.exports = s( + Array, + 'Array', + function (t, r) { + p(this, { type: h, target: n(t), index: 0, kind: r }); + }, + function () { + var t = v(this), + r = t.target, + e = t.kind, + n = t.index++; + return !r || n >= r.length + ? ((t.target = void 0), c(void 0, !0)) + : c('keys' == e ? n : 'values' == e ? r[n] : [n, r[n]], !1); + }, + 'values', + ); + var d = (i.Arguments = i.Array); + if ((o('keys'), o('values'), o('entries'), !f && l && 'values' !== d.name)) + try { + u(d, 'name', { value: 'values' }); + } catch (g) {} + }, + 5425: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(31136).right, + i = e(4789), + a = e(44905), + u = e(84543); + n( + { target: 'Array', proto: !0, forced: !i('reduceRight') || (!u && a > 79 && a < 83) }, + { + reduceRight: function (t) { + return o(this, t, arguments.length, arguments.length > 1 ? arguments[1] : void 0); + }, + }, + ); + }, + 89909: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(31136).left, + i = e(4789), + a = e(44905), + u = e(84543); + n( + { target: 'Array', proto: !0, forced: !i('reduce') || (!u && a > 79 && a < 83) }, + { + reduce: function (t) { + var r = arguments.length; + return o(this, t, r, r > 1 ? arguments[1] : void 0); + }, + }, + ); + }, + 59882: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41765), + i = e(21528), + a = o([].reverse), + u = [1, 2]; + n( + { target: 'Array', proto: !0, forced: String(u) === String(u.reverse()) }, + { + reverse: function () { + return i(this) && (this.length = this.length), a(this); + }, + }, + ); + }, + 75715: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41765), + i = e(70481), + a = e(90663), + u = e(40406), + s = e(7351), + c = e(98170), + f = e(82229), + l = e(42771), + h = e(4789), + p = e(89443), + v = e(17608), + d = e(44905), + g = e(58452), + y = [], + m = o(y.sort), + b = o(y.push), + x = f(function () { + y.sort(void 0); + }), + w = f(function () { + y.sort(null); + }), + S = h('sort'), + A = !f(function () { + if (d) return d < 70; + if (!(p && p > 3)) { + if (v) return !0; + if (g) return g < 603; + var t, + r, + e, + n, + o = ''; + for (t = 65; t < 76; t++) { + switch (((r = String.fromCharCode(t)), t)) { + case 66: + case 69: + case 70: + case 72: + e = 3; + break; + case 68: + case 71: + e = 4; + break; + default: + e = 2; + } + for (n = 0; n < 47; n++) y.push({ k: r + n, v: e }); + } + for ( + y.sort(function (t, r) { + return r.v - t.v; + }), + n = 0; + n < y.length; + n++ + ) + (r = y[n].k.charAt(0)), o.charAt(o.length - 1) !== r && (o += r); + return 'DGBEFHACIJK' !== o; + } + }); + n( + { target: 'Array', proto: !0, forced: x || !w || !S || !A }, + { + sort: function (t) { + void 0 !== t && i(t); + var r = a(this); + if (A) return void 0 === t ? m(r) : m(r, t); + var e, + n, + o = [], + f = u(r); + for (n = 0; n < f; n++) n in r && b(o, r[n]); + for ( + l( + o, + (function (t) { + return function (r, e) { + return void 0 === e ? -1 : void 0 === r ? 1 : void 0 !== t ? +t(r, e) || 0 : c(r) > c(e) ? 1 : -1; + }; + })(t), + ), + e = u(o), + n = 0; + n < e; + + ) + r[n] = o[n++]; + for (; n < f; ) s(r, n++); + return r; + }, + }, + ); + }, + 14137: (t, r, e) => { + e(63288)('flatMap'); + }, + 24560: (t, r, e) => { + e(63288)('flat'); + }, + 91609: (t, r, e) => { + var n = e(72698), + o = Math.hypot, + i = Math.abs, + a = Math.sqrt; + n( + { target: 'Math', stat: !0, arity: 2, forced: !!o && o(1 / 0, NaN) !== 1 / 0 }, + { + hypot: function (t, r) { + for (var e, n, o = 0, u = 0, s = arguments.length, c = 0; u < s; ) + c < (e = i(arguments[u++])) + ? ((o = o * (n = c / e) * n + 1), (c = e)) + : (o += e > 0 ? (n = e / c) * n : e); + return c === 1 / 0 ? 1 / 0 : c * a(o); + }, + }, + ); + }, + 80742: (t, r, e) => { + var n = e(72698), + o = e(338); + n({ target: 'Number', stat: !0, forced: Number.parseFloat != o }, { parseFloat: o }); + }, + 30403: (t, r, e) => { + var n = e(72698), + o = e(65931); + n({ target: 'Number', stat: !0, forced: Number.parseInt != o }, { parseInt: o }); + }, + 63411: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41765), + i = e(32048), + a = e(64584), + u = e(71744), + s = e(82229), + c = RangeError, + f = String, + l = Math.floor, + h = o(u), + p = o(''.slice), + v = o((1).toFixed), + d = function (t, r, e) { + return 0 === r ? e : r % 2 == 1 ? d(t, r - 1, e * t) : d(t * t, r / 2, e); + }, + g = function (t, r, e) { + for (var n = -1, o = e; ++n < 6; ) (o += r * t[n]), (t[n] = o % 1e7), (o = l(o / 1e7)); + }, + y = function (t, r) { + for (var e = 6, n = 0; --e >= 0; ) (n += t[e]), (t[e] = l(n / r)), (n = (n % r) * 1e7); + }, + m = function (t) { + for (var r = 6, e = ''; --r >= 0; ) + if ('' !== e || 0 === r || 0 !== t[r]) { + var n = f(t[r]); + e = '' === e ? n : e + h('0', 7 - n.length) + n; + } + return e; + }; + n( + { + target: 'Number', + proto: !0, + forced: + s(function () { + return ( + '0.000' !== v(8e-5, 3) || + '1' !== v(0.9, 0) || + '1.25' !== v(1.255, 2) || + '1000000000000000128' !== v(0xde0b6b3a7640080, 0) + ); + }) || + !s(function () { + v({}); + }), + }, + { + toFixed: function (t) { + var r, + e, + n, + o, + u = a(this), + s = i(t), + l = [0, 0, 0, 0, 0, 0], + v = '', + b = '0'; + if (s < 0 || s > 20) throw c('Incorrect fraction digits'); + if (u != u) return 'NaN'; + if (u <= -1e21 || u >= 1e21) return f(u); + if ((u < 0 && ((v = '-'), (u = -u)), u > 1e-21)) + if ( + ((e = + (r = + (function (t) { + for (var r = 0, e = t; e >= 4096; ) (r += 12), (e /= 4096); + for (; e >= 2; ) (r += 1), (e /= 2); + return r; + })(u * d(2, 69, 1)) - 69) < 0 + ? u * d(2, -r, 1) + : u / d(2, r, 1)), + (e *= 4503599627370496), + (r = 52 - r) > 0) + ) { + for (g(l, 0, e), n = s; n >= 7; ) g(l, 1e7, 0), (n -= 7); + for (g(l, d(10, n, 1), 0), n = r - 1; n >= 23; ) y(l, 1 << 23), (n -= 23); + y(l, 1 << n), g(l, 1, 1), y(l, 2), (b = m(l)); + } else g(l, 0, e), g(l, 1 << -r, 0), (b = m(l) + h('0', s)); + return (b = + s > 0 + ? v + ((o = b.length) <= s ? '0.' + h('0', s - o) + b : p(b, 0, o - s) + '.' + p(b, o - s)) + : v + b); + }, + }, + ); + }, + 19658: (t, r, e) => { + var n = e(72698), + o = e(94382); + n({ target: 'Object', stat: !0, arity: 2, forced: Object.assign !== o }, { assign: o }); + }, + 22634: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(95417), + i = e(16922), + a = e(70481), + u = e(90663), + s = e(90189); + o && + n( + { target: 'Object', proto: !0, forced: i }, + { + __defineGetter__: function (t, r) { + s.f(u(this), t, { get: a(r), enumerable: !0, configurable: !0 }); + }, + }, + ); + }, + 8297: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(95417), + i = e(16922), + a = e(70481), + u = e(90663), + s = e(90189); + o && + n( + { target: 'Object', proto: !0, forced: i }, + { + __defineSetter__: function (t, r) { + s.f(u(this), t, { set: a(r), enumerable: !0, configurable: !0 }); + }, + }, + ); + }, + 47657: (t, r, e) => { + var n = e(72698), + o = e(98102), + i = e(82519); + n( + { target: 'Object', stat: !0 }, + { + fromEntries: function (t) { + var r = {}; + return ( + o( + t, + function (t, e) { + i(r, t, e); + }, + { AS_ENTRIES: !0 }, + ), + r + ); + }, + }, + ); + }, + 24024: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(95417), + i = e(16922), + a = e(90663), + u = e(37712), + s = e(62421), + c = e(68098).f; + o && + n( + { target: 'Object', proto: !0, forced: i }, + { + __lookupGetter__: function (t) { + var r, + e = a(this), + n = u(t); + do { + if ((r = c(e, n))) return r.get; + } while ((e = s(e))); + }, + }, + ); + }, + 13749: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(95417), + i = e(16922), + a = e(90663), + u = e(37712), + s = e(62421), + c = e(68098).f; + o && + n( + { target: 'Object', proto: !0, forced: i }, + { + __lookupSetter__: function (t) { + var r, + e = a(this), + n = u(t); + do { + if ((r = c(e, n))) return r.set; + } while ((e = s(e))); + }, + }, + ); + }, + 22741: (t, r, e) => { + var n = e(72698), + o = e(338); + n({ global: !0, forced: parseFloat != o }, { parseFloat: o }); + }, + 7116: (t, r, e) => { + var n = e(72698), + o = e(65931); + n({ global: !0, forced: parseInt != o }, { parseInt: o }); + }, + 58628: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41924), + i = e(70481), + a = e(92473), + u = e(30668), + s = e(98102); + n( + { target: 'Promise', stat: !0, forced: e(20769) }, + { + all: function (t) { + var r = this, + e = a.f(r), + n = e.resolve, + c = e.reject, + f = u(function () { + var e = i(r.resolve), + a = [], + u = 0, + f = 1; + s(t, function (t) { + var i = u++, + s = !1; + f++, + o(e, r, t).then(function (t) { + s || ((s = !0), (a[i] = t), --f || n(a)); + }, c); + }), + --f || n(a); + }); + return f.error && c(f.value), e.promise; + }, + }, + ); + }, + 60562: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(8588), + i = e(27743).CONSTRUCTOR, + a = e(15461), + u = e(52228), + s = e(88807), + c = e(29379), + f = a && a.prototype; + if ( + (n( + { target: 'Promise', proto: !0, forced: i, real: !0 }, + { + catch: function (t) { + return this.then(void 0, t); + }, + }, + ), + !o && s(a)) + ) { + var l = u('Promise').prototype.catch; + f.catch !== l && c(f, 'catch', l, { unsafe: !0 }); + } + }, + 67726: (t, r, e) => { + 'use strict'; + var n, + o, + i, + a = e(72698), + u = e(8588), + s = e(84543), + c = e(70412), + f = e(41924), + l = e(29379), + h = e(71083), + p = e(43803), + v = e(35787), + d = e(70481), + g = e(88807), + y = e(21188), + m = e(65712), + b = e(23913), + x = e(1017).set, + w = e(49514), + S = e(19630), + A = e(30668), + R = e(69323), + E = e(887), + O = e(15461), + I = e(27743), + P = e(92473), + T = 'Promise', + j = I.CONSTRUCTOR, + L = I.REJECTION_EVENT, + k = I.SUBCLASSING, + U = E.getterFor(T), + C = E.set, + _ = O && O.prototype, + M = O, + F = _, + N = c.TypeError, + B = c.document, + D = c.process, + H = P.f, + z = H, + q = !!(B && B.createEvent && c.dispatchEvent), + W = 'unhandledrejection', + G = function (t) { + var r; + return !(!y(t) || !g((r = t.then))) && r; + }, + V = function (t, r) { + var e, + n, + o, + i = r.value, + a = 1 == r.state, + u = a ? t.ok : t.fail, + s = t.resolve, + c = t.reject, + l = t.domain; + try { + u + ? (a || (2 === r.rejection && X(r), (r.rejection = 1)), + !0 === u ? (e = i) : (l && l.enter(), (e = u(i)), l && (l.exit(), (o = !0))), + e === t.promise ? c(N('Promise-chain cycle')) : (n = G(e)) ? f(n, e, s, c) : s(e)) + : c(i); + } catch (h) { + l && !o && l.exit(), c(h); + } + }, + $ = function (t, r) { + t.notified || + ((t.notified = !0), + w(function () { + for (var e, n = t.reactions; (e = n.get()); ) V(e, t); + (t.notified = !1), r && !t.rejection && K(t); + })); + }, + Y = function (t, r, e) { + var n, o; + q + ? (((n = B.createEvent('Event')).promise = r), (n.reason = e), n.initEvent(t, !1, !0), c.dispatchEvent(n)) + : (n = { promise: r, reason: e }), + !L && (o = c['on' + t]) ? o(n) : t === W && S('Unhandled promise rejection', e); + }, + K = function (t) { + f(x, c, function () { + var r, + e = t.facade, + n = t.value; + if ( + J(t) && + ((r = A(function () { + s ? D.emit('unhandledRejection', n, e) : Y(W, e, n); + })), + (t.rejection = s || J(t) ? 2 : 1), + r.error) + ) + throw r.value; + }); + }, + J = function (t) { + return 1 !== t.rejection && !t.parent; + }, + X = function (t) { + f(x, c, function () { + var r = t.facade; + s ? D.emit('rejectionHandled', r) : Y('rejectionhandled', r, t.value); + }); + }, + Q = function (t, r, e) { + return function (n) { + t(r, n, e); + }; + }, + Z = function (t, r, e) { + t.done || ((t.done = !0), e && (t = e), (t.value = r), (t.state = 2), $(t, !0)); + }, + tt = function (t, r, e) { + if (!t.done) { + (t.done = !0), e && (t = e); + try { + if (t.facade === r) throw N("Promise can't be resolved itself"); + var n = G(r); + n + ? w(function () { + var e = { done: !1 }; + try { + f(n, r, Q(tt, e, t), Q(Z, e, t)); + } catch (o) { + Z(e, o, t); + } + }) + : ((t.value = r), (t.state = 1), $(t, !1)); + } catch (o) { + Z({ done: !1 }, o, t); + } + } + }; + if ( + j && + ((F = (M = function (t) { + m(this, F), d(t), f(n, this); + var r = U(this); + try { + t(Q(tt, r), Q(Z, r)); + } catch (e) { + Z(r, e); + } + }).prototype), + ((n = function (t) { + C(this, { + type: T, + done: !1, + notified: !1, + parent: !1, + reactions: new R(), + rejection: !1, + state: 0, + value: void 0, + }); + }).prototype = l(F, 'then', function (t, r) { + var e = U(this), + n = H(b(this, M)); + return ( + (e.parent = !0), + (n.ok = !g(t) || t), + (n.fail = g(r) && r), + (n.domain = s ? D.domain : void 0), + 0 == e.state + ? e.reactions.add(n) + : w(function () { + V(n, e); + }), + n.promise + ); + })), + (o = function () { + var t = new n(), + r = U(t); + (this.promise = t), (this.resolve = Q(tt, r)), (this.reject = Q(Z, r)); + }), + (P.f = H = + function (t) { + return t === M || undefined === t ? new o(t) : z(t); + }), + !u && g(O) && _ !== Object.prototype) + ) { + (i = _.then), + k || + l( + _, + 'then', + function (t, r) { + var e = this; + return new M(function (t, r) { + f(i, e, t, r); + }).then(t, r); + }, + { unsafe: !0 }, + ); + try { + delete _.constructor; + } catch (rt) {} + h && h(_, F); + } + a({ global: !0, constructor: !0, wrap: !0, forced: j }, { Promise: M }), p(M, T, !1, !0), v(T); + }, + 94457: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(8588), + i = e(15461), + a = e(82229), + u = e(52228), + s = e(88807), + c = e(23913), + f = e(88149), + l = e(29379), + h = i && i.prototype; + if ( + (n( + { + target: 'Promise', + proto: !0, + real: !0, + forced: + !!i && + a(function () { + h.finally.call({ then: function () {} }, function () {}); + }), + }, + { + finally: function (t) { + var r = c(this, u('Promise')), + e = s(t); + return this.then( + e + ? function (e) { + return f(r, t()).then(function () { + return e; + }); + } + : t, + e + ? function (e) { + return f(r, t()).then(function () { + throw e; + }); + } + : t, + ); + }, + }, + ), + !o && s(i)) + ) { + var p = u('Promise').prototype.finally; + h.finally !== p && l(h, 'finally', p, { unsafe: !0 }); + } + }, + 70769: (t, r, e) => { + e(67726), e(58628), e(60562), e(9439), e(49081), e(98669); + }, + 9439: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41924), + i = e(70481), + a = e(92473), + u = e(30668), + s = e(98102); + n( + { target: 'Promise', stat: !0, forced: e(20769) }, + { + race: function (t) { + var r = this, + e = a.f(r), + n = e.reject, + c = u(function () { + var a = i(r.resolve); + s(t, function (t) { + o(a, r, t).then(e.resolve, n); + }); + }); + return c.error && n(c.value), e.promise; + }, + }, + ); + }, + 49081: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41924), + i = e(92473); + n( + { target: 'Promise', stat: !0, forced: e(27743).CONSTRUCTOR }, + { + reject: function (t) { + var r = i.f(this); + return o(r.reject, void 0, t), r.promise; + }, + }, + ); + }, + 98669: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(52228), + i = e(8588), + a = e(15461), + u = e(27743).CONSTRUCTOR, + s = e(88149), + c = o('Promise'), + f = i && !u; + n( + { target: 'Promise', stat: !0, forced: i || u }, + { + resolve: function (t) { + return s(f && this === c ? a : this, t); + }, + }, + ); + }, + 15371: (t, r, e) => { + var n = e(72698), + o = e(41924), + i = e(71843), + a = e(21188), + u = e(33080), + s = e(82229), + c = e(90189), + f = e(68098), + l = e(62421), + h = e(413); + n( + { + target: 'Reflect', + stat: !0, + forced: s(function () { + var t = function () {}, + r = c.f(new t(), 'a', { configurable: !0 }); + return !1 !== Reflect.set(t.prototype, 'a', 1, r); + }), + }, + { + set: function t(r, e, n) { + var s, + p, + v, + d = arguments.length < 4 ? r : arguments[3], + g = f.f(i(r), e); + if (!g) { + if (a((p = l(r)))) return t(p, e, n, d); + g = h(0); + } + if (u(g)) { + if (!1 === g.writable || !a(d)) return !1; + if ((s = f.f(d, e))) { + if (s.get || s.set || !1 === s.writable) return !1; + (s.value = n), c.f(d, e, s); + } else c.f(d, e, h(0, n)); + } else { + if (void 0 === (v = g.set)) return !1; + o(v, d, n); + } + return !0; + }, + }, + ); + }, + 46933: (t, r, e) => { + var n = e(95417), + o = e(70412), + i = e(41765), + a = e(76777), + u = e(42325), + s = e(7001), + c = e(58206).f, + f = e(13521), + l = e(16372), + h = e(98170), + p = e(36558), + v = e(48756), + d = e(30382), + g = e(29379), + y = e(82229), + m = e(91854), + b = e(887).enforce, + x = e(35787), + w = e(96982), + S = e(60054), + A = e(77084), + R = w('match'), + E = o.RegExp, + O = E.prototype, + I = o.SyntaxError, + P = i(O.exec), + T = i(''.charAt), + j = i(''.replace), + L = i(''.indexOf), + k = i(''.slice), + U = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/, + C = /a/g, + _ = /a/g, + M = new E(C) !== C, + F = v.MISSED_STICKY, + N = v.UNSUPPORTED_Y, + B = + n && + (!M || + F || + S || + A || + y(function () { + return (_[R] = !1), E(C) != C || E(_) == _ || '/a/i' != E(C, 'i'); + })); + if (a('RegExp', B)) { + for ( + var D = function (t, r) { + var e, + n, + o, + i, + a, + c, + v = f(O, this), + d = l(t), + g = void 0 === r, + y = [], + x = t; + if (!v && d && g && t.constructor === D) return t; + if ( + ((d || f(O, t)) && ((t = t.source), g && (r = p(x))), + (t = void 0 === t ? '' : h(t)), + (r = void 0 === r ? '' : h(r)), + (x = t), + S && ('dotAll' in C) && (n = !!r && L(r, 's') > -1) && (r = j(r, /s/g, '')), + (e = r), + F && ('sticky' in C) && (o = !!r && L(r, 'y') > -1) && N && (r = j(r, /y/g, '')), + A && + ((i = (function (t) { + for ( + var r, e = t.length, n = 0, o = '', i = [], a = {}, u = !1, s = !1, c = 0, f = ''; + n <= e; + n++ + ) { + if ('\\' === (r = T(t, n))) r += T(t, ++n); + else if (']' === r) u = !1; + else if (!u) + switch (!0) { + case '[' === r: + u = !0; + break; + case '(' === r: + P(U, k(t, n + 1)) && ((n += 2), (s = !0)), (o += r), c++; + continue; + case '>' === r && s: + if ('' === f || m(a, f)) throw new I('Invalid capture group name'); + (a[f] = !0), (i[i.length] = [f, c]), (s = !1), (f = ''); + continue; + } + s ? (f += r) : (o += r); + } + return [o, i]; + })(t)), + (t = i[0]), + (y = i[1])), + (a = u(E(t, r), v ? this : O, D)), + (n || o || y.length) && + ((c = b(a)), + n && + ((c.dotAll = !0), + (c.raw = D( + (function (t) { + for (var r, e = t.length, n = 0, o = '', i = !1; n <= e; n++) + '\\' !== (r = T(t, n)) + ? i || '.' !== r + ? ('[' === r ? (i = !0) : ']' === r && (i = !1), (o += r)) + : (o += '[\\s\\S]') + : (o += r + T(t, ++n)); + return o; + })(t), + e, + ))), + o && (c.sticky = !0), + y.length && (c.groups = y)), + t !== x) + ) + try { + s(a, 'source', '' === x ? '(?:)' : x); + } catch (w) {} + return a; + }, + H = c(E), + z = 0; + H.length > z; + + ) + d(D, E, H[z++]); + (O.constructor = D), (D.prototype = O), g(o, 'RegExp', D, { constructor: !0 }); + } + x('RegExp'); + }, + 9883: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(38157); + n({ target: 'RegExp', proto: !0, forced: /./.exec !== o }, { exec: o }); + }, + 76618: (t, r, e) => { + var n = e(70412), + o = e(95417), + i = e(10787), + a = e(88103), + u = e(82229), + s = n.RegExp, + c = s.prototype; + o && + u(function () { + var t = !0; + try { + s('.', 'd'); + } catch (u) { + t = !1; + } + var r = {}, + e = '', + n = t ? 'dgimsy' : 'gimsy', + o = function (t, n) { + Object.defineProperty(r, t, { + get: function () { + return (e += n), !0; + }, + }); + }, + i = { dotAll: 's', global: 'g', ignoreCase: 'i', multiline: 'm', sticky: 'y' }; + for (var a in (t && (i.hasIndices = 'd'), i)) o(a, i[a]); + return Object.getOwnPropertyDescriptor(c, 'flags').get.call(r) !== n || e !== n; + }) && + i(c, 'flags', { configurable: !0, get: a }); + }, + 16784: (t, r, e) => { + 'use strict'; + var n = e(56815).PROPER, + o = e(29379), + i = e(71843), + a = e(98170), + u = e(82229), + s = e(36558), + c = 'toString', + f = RegExp.prototype[c], + l = u(function () { + return '/a/b' != f.call({ source: 'a', flags: 'b' }); + }), + h = n && f.name != c; + (l || h) && + o( + RegExp.prototype, + c, + function () { + var t = i(this); + return '/' + a(t.source) + '/' + a(s(t)); + }, + { unsafe: !0 }, + ); + }, + 46073: (t, r, e) => { + 'use strict'; + var n, + o = e(72698), + i = e(41765), + a = e(68098).f, + u = e(25664), + s = e(98170), + c = e(47082), + f = e(20774), + l = e(59981), + h = e(8588), + p = i(''.endsWith), + v = i(''.slice), + d = Math.min, + g = l('endsWith'); + o( + { + target: 'String', + proto: !0, + forced: !!(h || g || ((n = a(String.prototype, 'endsWith')), !n || n.writable)) && !g, + }, + { + endsWith: function (t) { + var r = s(f(this)); + c(t); + var e = arguments.length > 1 ? arguments[1] : void 0, + n = r.length, + o = void 0 === e ? n : d(u(e), n), + i = s(t); + return p ? p(r, i, o) : v(r, o - i.length, o) === i; + }, + }, + ); + }, + 9944: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41765), + i = e(47082), + a = e(20774), + u = e(98170), + s = e(59981), + c = o(''.indexOf); + n( + { target: 'String', proto: !0, forced: !s('includes') }, + { + includes: function (t) { + return !!~c(u(a(this)), u(i(t)), arguments.length > 1 ? arguments[1] : void 0); + }, + }, + ); + }, + 73814: (t, r, e) => { + 'use strict'; + var n = e(33100).charAt, + o = e(98170), + i = e(887), + a = e(61666), + u = e(74903), + s = 'String Iterator', + c = i.set, + f = i.getterFor(s); + a( + String, + 'String', + function (t) { + c(this, { type: s, string: o(t), index: 0 }); + }, + function () { + var t, + r = f(this), + e = r.string, + o = r.index; + return o >= e.length ? u(void 0, !0) : ((t = n(e, o)), (r.index += t.length), u(t, !1)); + }, + ); + }, + 8258: (t, r, e) => { + 'use strict'; + var n = e(41924), + o = e(11323), + i = e(71843), + a = e(39989), + u = e(25664), + s = e(98170), + c = e(20774), + f = e(89423), + l = e(95158), + h = e(12134); + o('match', function (t, r, e) { + return [ + function (r) { + var e = c(this), + o = a(r) ? void 0 : f(r, t); + return o ? n(o, r, e) : new RegExp(r)[t](s(e)); + }, + function (t) { + var n = i(this), + o = s(t), + a = e(r, n, o); + if (a.done) return a.value; + if (!n.global) return h(n, o); + var c = n.unicode; + n.lastIndex = 0; + for (var f, p = [], v = 0; null !== (f = h(n, o)); ) { + var d = s(f[0]); + (p[v] = d), '' === d && (n.lastIndex = l(o, u(n.lastIndex), c)), v++; + } + return 0 === v ? null : p; + }, + ]; + }); + }, + 80776: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(52752).end; + n( + { target: 'String', proto: !0, forced: e(71896) }, + { + padEnd: function (t) { + return o(this, t, arguments.length > 1 ? arguments[1] : void 0); + }, + }, + ); + }, + 50633: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(52752).start; + n( + { target: 'String', proto: !0, forced: e(71896) }, + { + padStart: function (t) { + return o(this, t, arguments.length > 1 ? arguments[1] : void 0); + }, + }, + ); + }, + 29: (t, r, e) => { + 'use strict'; + var n = e(90675), + o = e(41924), + i = e(41765), + a = e(11323), + u = e(82229), + s = e(71843), + c = e(88807), + f = e(39989), + l = e(32048), + h = e(25664), + p = e(98170), + v = e(20774), + d = e(95158), + g = e(89423), + y = e(80556), + m = e(12134), + b = e(96982)('replace'), + x = Math.max, + w = Math.min, + S = i([].concat), + A = i([].push), + R = i(''.indexOf), + E = i(''.slice), + O = '$0' === 'a'.replace(/./, '$0'), + I = !!/./[b] && '' === /./[b]('a', '$0'); + a( + 'replace', + function (t, r, e) { + var i = I ? '$' : '$0'; + return [ + function (t, e) { + var n = v(this), + i = f(t) ? void 0 : g(t, b); + return i ? o(i, t, n, e) : o(r, p(n), t, e); + }, + function (t, o) { + var a = s(this), + u = p(t); + if ('string' == typeof o && -1 === R(o, i) && -1 === R(o, '$<')) { + var f = e(r, a, u, o); + if (f.done) return f.value; + } + var v = c(o); + v || (o = p(o)); + var g = a.global; + if (g) { + var b = a.unicode; + a.lastIndex = 0; + } + for (var O = []; ; ) { + var I = m(a, u); + if (null === I) break; + if ((A(O, I), !g)) break; + '' === p(I[0]) && (a.lastIndex = d(u, h(a.lastIndex), b)); + } + for (var P, T = '', j = 0, L = 0; L < O.length; L++) { + for (var k = p((I = O[L])[0]), U = x(w(l(I.index), u.length), 0), C = [], _ = 1; _ < I.length; _++) + A(C, void 0 === (P = I[_]) ? P : String(P)); + var M = I.groups; + if (v) { + var F = S([k], C, U, u); + void 0 !== M && A(F, M); + var N = p(n(o, void 0, F)); + } else N = y(k, u, U, C, M, o); + U >= j && ((T += E(u, j, U) + N), (j = U + k.length)); + } + return T + E(u, j); + }, + ]; + }, + !!u(function () { + var t = /./; + return ( + (t.exec = function () { + var t = []; + return (t.groups = { a: '7' }), t; + }), + '7' !== ''.replace(t, '$') + ); + }) || + !O || + I, + ); + }, + 71867: (t, r, e) => { + 'use strict'; + var n = e(41924), + o = e(11323), + i = e(71843), + a = e(39989), + u = e(20774), + s = e(53411), + c = e(98170), + f = e(89423), + l = e(12134); + o('search', function (t, r, e) { + return [ + function (r) { + var e = u(this), + o = a(r) ? void 0 : f(r, t); + return o ? n(o, r, e) : new RegExp(r)[t](c(e)); + }, + function (t) { + var n = i(this), + o = c(t), + a = e(r, n, o); + if (a.done) return a.value; + var u = n.lastIndex; + s(u, 0) || (n.lastIndex = 0); + var f = l(n, o); + return s(n.lastIndex, u) || (n.lastIndex = u), null === f ? -1 : f.index; + }, + ]; + }); + }, + 64469: (t, r, e) => { + 'use strict'; + var n = e(90675), + o = e(41924), + i = e(41765), + a = e(11323), + u = e(71843), + s = e(39989), + c = e(16372), + f = e(20774), + l = e(23913), + h = e(95158), + p = e(25664), + v = e(98170), + d = e(89423), + g = e(89625), + y = e(12134), + m = e(38157), + b = e(48756), + x = e(82229), + w = b.UNSUPPORTED_Y, + S = 4294967295, + A = Math.min, + R = [].push, + E = i(/./.exec), + O = i(R), + I = i(''.slice); + a( + 'split', + function (t, r, e) { + var i; + return ( + (i = + 'c' == 'abbc'.split(/(b)*/)[1] || + 4 != 'test'.split(/(?:)/, -1).length || + 2 != 'ab'.split(/(?:ab)*/).length || + 4 != '.'.split(/(.?)(.?)/).length || + '.'.split(/()()/).length > 1 || + ''.split(/.?/).length + ? function (t, e) { + var i = v(f(this)), + a = void 0 === e ? S : e >>> 0; + if (0 === a) return []; + if (void 0 === t) return [i]; + if (!c(t)) return o(r, i, t, a); + for ( + var u, + s, + l, + h = [], + p = + (t.ignoreCase ? 'i' : '') + + (t.multiline ? 'm' : '') + + (t.unicode ? 'u' : '') + + (t.sticky ? 'y' : ''), + d = 0, + y = new RegExp(t.source, p + 'g'); + (u = o(m, y, i)) && + !( + (s = y.lastIndex) > d && + (O(h, I(i, d, u.index)), + u.length > 1 && u.index < i.length && n(R, h, g(u, 1)), + (l = u[0].length), + (d = s), + h.length >= a) + ); + + ) + y.lastIndex === u.index && y.lastIndex++; + return d === i.length ? (!l && E(y, '')) || O(h, '') : O(h, I(i, d)), h.length > a ? g(h, 0, a) : h; + } + : '0'.split(void 0, 0).length + ? function (t, e) { + return void 0 === t && 0 === e ? [] : o(r, this, t, e); + } + : r), + [ + function (r, e) { + var n = f(this), + a = s(r) ? void 0 : d(r, t); + return a ? o(a, r, n, e) : o(i, v(n), r, e); + }, + function (t, n) { + var o = u(this), + a = v(t), + s = e(i, o, a, n, i !== r); + if (s.done) return s.value; + var c = l(o, RegExp), + f = o.unicode, + d = (o.ignoreCase ? 'i' : '') + (o.multiline ? 'm' : '') + (o.unicode ? 'u' : '') + (w ? 'g' : 'y'), + g = new c(w ? '^(?:' + o.source + ')' : o, d), + m = void 0 === n ? S : n >>> 0; + if (0 === m) return []; + if (0 === a.length) return null === y(g, a) ? [a] : []; + for (var b = 0, x = 0, R = []; x < a.length; ) { + g.lastIndex = w ? 0 : x; + var E, + P = y(g, w ? I(a, x) : a); + if (null === P || (E = A(p(g.lastIndex + (w ? x : 0)), a.length)) === b) x = h(a, x, f); + else { + if ((O(R, I(a, b, x)), R.length === m)) return R; + for (var T = 1; T <= P.length - 1; T++) if ((O(R, P[T]), R.length === m)) return R; + x = b = E; + } + } + return O(R, I(a, b)), R; + }, + ] + ); + }, + !!x(function () { + var t = /(?:)/, + r = t.exec; + t.exec = function () { + return r.apply(this, arguments); + }; + var e = 'ab'.split(t); + return 2 !== e.length || 'a' !== e[0] || 'b' !== e[1]; + }), + w, + ); + }, + 40387: (t, r, e) => { + 'use strict'; + var n, + o = e(72698), + i = e(41765), + a = e(68098).f, + u = e(25664), + s = e(98170), + c = e(47082), + f = e(20774), + l = e(59981), + h = e(8588), + p = i(''.startsWith), + v = i(''.slice), + d = Math.min, + g = l('startsWith'); + o( + { + target: 'String', + proto: !0, + forced: !!(h || g || ((n = a(String.prototype, 'startsWith')), !n || n.writable)) && !g, + }, + { + startsWith: function (t) { + var r = s(f(this)); + c(t); + var e = u(d(arguments.length > 1 ? arguments[1] : void 0, r.length)), + n = s(t); + return p ? p(r, n, e) : v(r, e, e + n.length) === n; + }, + }, + ); + }, + 19280: (t, r, e) => { + e(48749); + var n = e(72698), + o = e(78778); + n({ target: 'String', proto: !0, name: 'trimEnd', forced: ''.trimEnd !== o }, { trimEnd: o }); + }, + 6577: (t, r, e) => { + var n = e(72698), + o = e(682); + n({ target: 'String', proto: !0, name: 'trimStart', forced: ''.trimLeft !== o }, { trimLeft: o }); + }, + 48749: (t, r, e) => { + var n = e(72698), + o = e(78778); + n({ target: 'String', proto: !0, name: 'trimEnd', forced: ''.trimRight !== o }, { trimRight: o }); + }, + 62108: (t, r, e) => { + e(6577); + var n = e(72698), + o = e(682); + n({ target: 'String', proto: !0, name: 'trimStart', forced: ''.trimStart !== o }, { trimStart: o }); + }, + 58521: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(29224).trim; + n( + { target: 'String', proto: !0, forced: e(88205)('trim') }, + { + trim: function () { + return o(this); + }, + }, + ); + }, + 17818: (t, r, e) => { + e(16515)('asyncIterator'); + }, + 47306: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(95417), + i = e(70412), + a = e(41765), + u = e(91854), + s = e(88807), + c = e(13521), + f = e(98170), + l = e(90189).f, + h = e(12283), + p = i.Symbol, + v = p && p.prototype; + if (o && s(p) && (!('description' in v) || void 0 !== p().description)) { + var d = {}, + g = function () { + var t = arguments.length < 1 || void 0 === arguments[0] ? void 0 : f(arguments[0]), + r = c(v, this) ? new p(t) : void 0 === t ? p() : p(t); + return '' === t && (d[r] = !0), r; + }; + h(g, p), (g.prototype = v), (v.constructor = g); + var y = 'Symbol(test)' == String(p('test')), + m = a(v.valueOf), + b = a(v.toString), + x = /^Symbol\((.*)\)[^)]+$/, + w = a(''.replace), + S = a(''.slice); + l(v, 'description', { + configurable: !0, + get: function () { + var t = m(this); + if (u(d, t)) return ''; + var r = b(t), + e = y ? S(r, 7, -1) : w(r, x, '$1'); + return '' === e ? void 0 : e; + }, + }), + n({ global: !0, constructor: !0, forced: !0 }, { Symbol: g }); + } + }, + 39661: (t, r, e) => { + e(16515)('match'); + }, + 13591: (t, r, e) => { + e(16515)('replace'); + }, + 18868: (t, r, e) => { + e(16515)('search'); + }, + 54095: (t, r, e) => { + e(16515)('split'); + }, + 61066: (t, r, e) => { + 'use strict'; + var n = e(30491), + o = e(99369), + i = e(85580), + a = e(765), + u = e(41924), + s = e(41765), + c = e(82229), + f = n.aTypedArray, + l = n.exportTypedArrayMethod, + h = s(''.slice); + l( + 'fill', + function (t) { + var r = arguments.length; + f(this); + var e = 'Big' === h(a(this), 0, 3) ? i(t) : +t; + return u(o, this, e, r > 1 ? arguments[1] : void 0, r > 2 ? arguments[2] : void 0); + }, + c(function () { + var t = 0; + return ( + new Int8Array(2).fill({ + valueOf: function () { + return t++; + }, + }), + 1 !== t + ); + }), + ); + }, + 11662: (t, r, e) => { + e(97064)('Float32', function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }); + }, + 78598: (t, r, e) => { + e(97064)('Float64', function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }); + }, + 58528: (t, r, e) => { + 'use strict'; + var n = e(40138); + (0, e(30491).exportTypedArrayStaticMethod)('from', e(31716), n); + }, + 27999: (t, r, e) => { + e(97064)('Int16', function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }); + }, + 30146: (t, r, e) => { + e(97064)('Int32', function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }); + }, + 55806: (t, r, e) => { + e(97064)('Int8', function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }); + }, + 74273: (t, r, e) => { + 'use strict'; + var n = e(30491), + o = e(40138), + i = n.aTypedArrayConstructor; + (0, n.exportTypedArrayStaticMethod)( + 'of', + function () { + for (var t = 0, r = arguments.length, e = new (i(this))(r); r > t; ) e[t] = arguments[t++]; + return e; + }, + o, + ); + }, + 51850: (t, r, e) => { + 'use strict'; + var n = e(70412), + o = e(41924), + i = e(30491), + a = e(40406), + u = e(20839), + s = e(90663), + c = e(82229), + f = n.RangeError, + l = n.Int8Array, + h = l && l.prototype, + p = h && h.set, + v = i.aTypedArray, + d = i.exportTypedArrayMethod, + g = !c(function () { + var t = new Uint8ClampedArray(2); + return o(p, t, { length: 1, 0: 3 }, 1), 3 !== t[1]; + }), + y = + g && + i.NATIVE_ARRAY_BUFFER_VIEWS && + c(function () { + var t = new l(2); + return t.set(1), t.set('2', 1), 0 !== t[0] || 2 !== t[1]; + }); + d( + 'set', + function (t) { + v(this); + var r = u(arguments.length > 1 ? arguments[1] : void 0, 1), + e = s(t); + if (g) return o(p, this, e, r); + var n = this.length, + i = a(e), + c = 0; + if (i + r > n) throw f('Wrong length'); + for (; c < i; ) this[r + c] = e[c++]; + }, + !g || y, + ); + }, + 72726: (t, r, e) => { + 'use strict'; + var n = e(70412), + o = e(41765), + i = e(82229), + a = e(70481), + u = e(42771), + s = e(30491), + c = e(89443), + f = e(17608), + l = e(44905), + h = e(58452), + p = s.aTypedArray, + v = s.exportTypedArrayMethod, + d = n.Uint16Array, + g = d && o(d.prototype.sort), + y = !( + !g || + (i(function () { + g(new d(2), null); + }) && + i(function () { + g(new d(2), {}); + })) + ), + m = + !!g && + !i(function () { + if (l) return l < 74; + if (c) return c < 67; + if (f) return !0; + if (h) return h < 602; + var t, + r, + e = new d(516), + n = Array(516); + for (t = 0; t < 516; t++) (r = t % 4), (e[t] = 515 - t), (n[t] = t - 2 * r + 3); + for ( + g(e, function (t, r) { + return ((t / 4) | 0) - ((r / 4) | 0); + }), + t = 0; + t < 516; + t++ + ) + if (e[t] !== n[t]) return !0; + }); + v( + 'sort', + function (t) { + return ( + void 0 !== t && a(t), + m + ? g(this, t) + : u( + p(this), + (function (t) { + return function (r, e) { + return void 0 !== t + ? +t(r, e) || 0 + : e != e + ? -1 + : r != r + ? 1 + : 0 === r && 0 === e + ? 1 / r > 0 && 1 / e < 0 + ? 1 + : -1 + : r > e; + }; + })(t), + ) + ); + }, + !m || y, + ); + }, + 31368: (t, r, e) => { + 'use strict'; + var n = e(70412), + o = e(90675), + i = e(30491), + a = e(82229), + u = e(96784), + s = n.Int8Array, + c = i.aTypedArray, + f = i.exportTypedArrayMethod, + l = [].toLocaleString, + h = + !!s && + a(function () { + l.call(new s(1)); + }); + f( + 'toLocaleString', + function () { + return o(l, h ? u(c(this)) : c(this), u(arguments)); + }, + a(function () { + return [1, 2].toLocaleString() != new s([1, 2]).toLocaleString(); + }) || + !a(function () { + s.prototype.toLocaleString.call([1, 2]); + }), + ); + }, + 17507: (t, r, e) => { + e(97064)('Uint16', function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }); + }, + 22894: (t, r, e) => { + e(97064)('Uint32', function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }); + }, + 44160: (t, r, e) => { + e(97064)('Uint8', function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }); + }, + 21887: (t, r, e) => { + e(97064)( + 'Uint8', + function (t) { + return function (r, e, n) { + return t(this, r, e, n); + }; + }, + !0, + ); + }, + 65679: (t, r, e) => { + 'use strict'; + var n, + o = e(70412), + i = e(41765), + a = e(87570), + u = e(9727), + s = e(70175), + c = e(31575), + f = e(21188), + l = e(47305), + h = e(887).enforce, + p = e(17023), + v = !o.ActiveXObject && 'ActiveXObject' in o, + d = function (t) { + return function () { + return t(this, arguments.length ? arguments[0] : void 0); + }; + }, + g = s('WeakMap', d, c); + if (p && v) { + (n = c.getConstructor(d, 'WeakMap', !0)), u.enable(); + var y = g.prototype, + m = i(y.delete), + b = i(y.has), + x = i(y.get), + w = i(y.set); + a(y, { + delete: function (t) { + if (f(t) && !l(t)) { + var r = h(this); + return r.frozen || (r.frozen = new n()), m(this, t) || r.frozen.delete(t); + } + return m(this, t); + }, + has: function (t) { + if (f(t) && !l(t)) { + var r = h(this); + return r.frozen || (r.frozen = new n()), b(this, t) || r.frozen.has(t); + } + return b(this, t); + }, + get: function (t) { + if (f(t) && !l(t)) { + var r = h(this); + return r.frozen || (r.frozen = new n()), b(this, t) ? x(this, t) : r.frozen.get(t); + } + return x(this, t); + }, + set: function (t, r) { + if (f(t) && !l(t)) { + var e = h(this); + e.frozen || (e.frozen = new n()), b(this, t) ? w(this, t, r) : e.frozen.set(t, r); + } else w(this, t, r); + return this; + }, + }); + } + }, + 22993: (t, r, e) => { + e(65679); + }, + 12053: (t, r, e) => { + var n = e(72698), + o = e(70412), + i = e(1017).clear; + n({ global: !0, bind: !0, enumerable: !0, forced: o.clearImmediate !== i }, { clearImmediate: i }); + }, + 3346: (t, r, e) => { + var n = e(70412), + o = e(42706), + i = e(92076), + a = e(78062), + u = e(7001), + s = e(96982), + c = s('iterator'), + f = s('toStringTag'), + l = a.values, + h = function (t, r) { + if (t) { + if (t[c] !== l) + try { + u(t, c, l); + } catch (n) { + t[c] = l; + } + if ((t[f] || u(t, f, r), o[r])) + for (var e in a) + if (t[e] !== a[e]) + try { + u(t, e, a[e]); + } catch (n) { + t[e] = a[e]; + } + } + }; + for (var p in o) h(n[p] && n[p].prototype, p); + h(i, 'DOMTokenList'); + }, + 98720: (t, r, e) => { + e(12053), e(75878); + }, + 39853: (t, r, e) => { + var n = e(72698), + o = e(70412), + i = e(49514), + a = e(70481), + u = e(58453), + s = e(84543), + c = o.process; + n( + { global: !0, enumerable: !0, dontCallGetSet: !0 }, + { + queueMicrotask: function (t) { + u(arguments.length, 1), a(t); + var r = s && c.domain; + i(r ? r.bind(t) : t); + }, + }, + ); + }, + 75878: (t, r, e) => { + var n = e(72698), + o = e(70412), + i = e(1017).set; + n({ global: !0, bind: !0, enumerable: !0, forced: o.setImmediate !== i }, { setImmediate: i }); + }, + 94168: (t, r, e) => { + 'use strict'; + e(78062); + var n = e(72698), + o = e(70412), + i = e(41924), + a = e(41765), + u = e(95417), + s = e(506), + c = e(29379), + f = e(87570), + l = e(43803), + h = e(57015), + p = e(887), + v = e(65712), + d = e(88807), + g = e(91854), + y = e(7365), + m = e(765), + b = e(71843), + x = e(21188), + w = e(98170), + S = e(56042), + A = e(413), + R = e(28338), + E = e(63412), + O = e(58453), + I = e(96982), + P = e(42771), + T = I('iterator'), + j = 'URLSearchParams', + L = j + 'Iterator', + k = p.set, + U = p.getterFor(j), + C = p.getterFor(L), + _ = Object.getOwnPropertyDescriptor, + M = function (t) { + if (!u) return o[t]; + var r = _(o, t); + return r && r.value; + }, + F = M('fetch'), + N = M('Request'), + B = M('Headers'), + D = N && N.prototype, + H = B && B.prototype, + z = o.RegExp, + q = o.TypeError, + W = o.decodeURIComponent, + G = o.encodeURIComponent, + V = a(''.charAt), + $ = a([].join), + Y = a([].push), + K = a(''.replace), + J = a([].shift), + X = a([].splice), + Q = a(''.split), + Z = a(''.slice), + tt = /\+/g, + rt = Array(4), + et = function (t) { + return rt[t - 1] || (rt[t - 1] = z('((?:%[\\da-f]{2}){' + t + '})', 'gi')); + }, + nt = function (t) { + try { + return W(t); + } catch (r) { + return t; + } + }, + ot = function (t) { + var r = K(t, tt, ' '), + e = 4; + try { + return W(r); + } catch (n) { + for (; e; ) r = K(r, et(e--), nt); + return r; + } + }, + it = /[!'()~]|%20/g, + at = { '!': '%21', "'": '%27', '(': '%28', ')': '%29', '~': '%7E', '%20': '+' }, + ut = function (t) { + return at[t]; + }, + st = function (t) { + return K(G(t), it, ut); + }, + ct = h( + function (t, r) { + k(this, { type: L, iterator: R(U(t).entries), kind: r }); + }, + 'Iterator', + function () { + var t = C(this), + r = t.kind, + e = t.iterator.next(), + n = e.value; + return e.done || (e.value = 'keys' === r ? n.key : 'values' === r ? n.value : [n.key, n.value]), e; + }, + !0, + ), + ft = function (t) { + (this.entries = []), + (this.url = null), + void 0 !== t && + (x(t) + ? this.parseObject(t) + : this.parseQuery('string' == typeof t ? ('?' === V(t, 0) ? Z(t, 1) : t) : w(t))); + }; + ft.prototype = { + type: j, + bindURL: function (t) { + (this.url = t), this.update(); + }, + parseObject: function (t) { + var r, + e, + n, + o, + a, + u, + s, + c = E(t); + if (c) + for (e = (r = R(t, c)).next; !(n = i(e, r)).done; ) { + if (((a = (o = R(b(n.value))).next), (u = i(a, o)).done || (s = i(a, o)).done || !i(a, o).done)) + throw q('Expected sequence with length 2'); + Y(this.entries, { key: w(u.value), value: w(s.value) }); + } + else for (var f in t) g(t, f) && Y(this.entries, { key: f, value: w(t[f]) }); + }, + parseQuery: function (t) { + if (t) + for (var r, e, n = Q(t, '&'), o = 0; o < n.length; ) + (r = n[o++]).length && ((e = Q(r, '=')), Y(this.entries, { key: ot(J(e)), value: ot($(e, '=')) })); + }, + serialize: function () { + for (var t, r = this.entries, e = [], n = 0; n < r.length; ) + (t = r[n++]), Y(e, st(t.key) + '=' + st(t.value)); + return $(e, '&'); + }, + update: function () { + (this.entries.length = 0), this.parseQuery(this.url.query); + }, + updateURL: function () { + this.url && this.url.update(); + }, + }; + var lt = function () { + v(this, ht), k(this, new ft(arguments.length > 0 ? arguments[0] : void 0)); + }, + ht = lt.prototype; + if ( + (f( + ht, + { + append: function (t, r) { + O(arguments.length, 2); + var e = U(this); + Y(e.entries, { key: w(t), value: w(r) }), e.updateURL(); + }, + delete: function (t) { + O(arguments.length, 1); + for (var r = U(this), e = r.entries, n = w(t), o = 0; o < e.length; ) e[o].key === n ? X(e, o, 1) : o++; + r.updateURL(); + }, + get: function (t) { + O(arguments.length, 1); + for (var r = U(this).entries, e = w(t), n = 0; n < r.length; n++) if (r[n].key === e) return r[n].value; + return null; + }, + getAll: function (t) { + O(arguments.length, 1); + for (var r = U(this).entries, e = w(t), n = [], o = 0; o < r.length; o++) + r[o].key === e && Y(n, r[o].value); + return n; + }, + has: function (t) { + O(arguments.length, 1); + for (var r = U(this).entries, e = w(t), n = 0; n < r.length; ) if (r[n++].key === e) return !0; + return !1; + }, + set: function (t, r) { + O(arguments.length, 1); + for (var e, n = U(this), o = n.entries, i = !1, a = w(t), u = w(r), s = 0; s < o.length; s++) + (e = o[s]).key === a && (i ? X(o, s--, 1) : ((i = !0), (e.value = u))); + i || Y(o, { key: a, value: u }), n.updateURL(); + }, + sort: function () { + var t = U(this); + P(t.entries, function (t, r) { + return t.key > r.key ? 1 : -1; + }), + t.updateURL(); + }, + forEach: function (t) { + for ( + var r, e = U(this).entries, n = y(t, arguments.length > 1 ? arguments[1] : void 0), o = 0; + o < e.length; + + ) + n((r = e[o++]).value, r.key, this); + }, + keys: function () { + return new ct(this, 'keys'); + }, + values: function () { + return new ct(this, 'values'); + }, + entries: function () { + return new ct(this, 'entries'); + }, + }, + { enumerable: !0 }, + ), + c(ht, T, ht.entries, { name: 'entries' }), + c( + ht, + 'toString', + function () { + return U(this).serialize(); + }, + { enumerable: !0 }, + ), + l(lt, j), + n({ global: !0, constructor: !0, forced: !s }, { URLSearchParams: lt }), + !s && d(B)) + ) { + var pt = a(H.has), + vt = a(H.set), + dt = function (t) { + if (x(t)) { + var r, + e = t.body; + if (m(e) === j) + return ( + (r = t.headers ? new B(t.headers) : new B()), + pt(r, 'content-type') || vt(r, 'content-type', 'application/x-www-form-urlencoded;charset=UTF-8'), + S(t, { body: A(0, w(e)), headers: A(0, r) }) + ); + } + return t; + }; + if ( + (d(F) && + n( + { global: !0, enumerable: !0, dontCallGetSet: !0, forced: !0 }, + { + fetch: function (t) { + return F(t, arguments.length > 1 ? dt(arguments[1]) : {}); + }, + }, + ), + d(N)) + ) { + var gt = function (t) { + return v(this, D), new N(t, arguments.length > 1 ? dt(arguments[1]) : {}); + }; + (D.constructor = gt), + (gt.prototype = D), + n({ global: !0, constructor: !0, dontCallGetSet: !0, forced: !0 }, { Request: gt }); + } + } + t.exports = { URLSearchParams: lt, getState: U }; + }, + 73397: (t, r, e) => { + e(94168); + }, + 791: (t, r, e) => { + 'use strict'; + e(73814); + var n, + o = e(72698), + i = e(95417), + a = e(506), + u = e(70412), + s = e(7365), + c = e(41765), + f = e(29379), + l = e(10787), + h = e(65712), + p = e(91854), + v = e(94382), + d = e(80951), + g = e(89625), + y = e(33100).codeAt, + m = e(63253), + b = e(98170), + x = e(43803), + w = e(58453), + S = e(94168), + A = e(887), + R = A.set, + E = A.getterFor('URL'), + O = S.URLSearchParams, + I = S.getState, + P = u.URL, + T = u.TypeError, + j = u.parseInt, + L = Math.floor, + k = Math.pow, + U = c(''.charAt), + C = c(/./.exec), + _ = c([].join), + M = c((1).toString), + F = c([].pop), + N = c([].push), + B = c(''.replace), + D = c([].shift), + H = c(''.split), + z = c(''.slice), + q = c(''.toLowerCase), + W = c([].unshift), + G = 'Invalid scheme', + V = 'Invalid host', + $ = 'Invalid port', + Y = /[a-z]/i, + K = /[\d+-.a-z]/i, + J = /\d/, + X = /^0x/i, + Q = /^[0-7]+$/, + Z = /^\d+$/, + tt = /^[\da-f]+$/i, + rt = /[\0\t\n\r #%/:<>?@[\\\]^|]/, + et = /[\0\t\n\r #/:<>?@[\\\]^|]/, + nt = /^[\u0000-\u0020]+|[\u0000-\u0020]+$/g, + ot = /[\t\n\r]/g, + it = function (t) { + var r, e, n, o; + if ('number' == typeof t) { + for (r = [], e = 0; e < 4; e++) W(r, t % 256), (t = L(t / 256)); + return _(r, '.'); + } + if ('object' == typeof t) { + for ( + r = '', + n = (function (t) { + for (var r = null, e = 1, n = null, o = 0, i = 0; i < 8; i++) + 0 !== t[i] ? (o > e && ((r = n), (e = o)), (n = null), (o = 0)) : (null === n && (n = i), ++o); + return o > e && ((r = n), (e = o)), r; + })(t), + e = 0; + e < 8; + e++ + ) + (o && 0 === t[e]) || + (o && (o = !1), + n === e ? ((r += e ? ':' : '::'), (o = !0)) : ((r += M(t[e], 16)), e < 7 && (r += ':'))); + return '[' + r + ']'; + } + return t; + }, + at = {}, + ut = v({}, at, { ' ': 1, '"': 1, '<': 1, '>': 1, '`': 1 }), + st = v({}, ut, { '#': 1, '?': 1, '{': 1, '}': 1 }), + ct = v({}, st, { '/': 1, ':': 1, ';': 1, '=': 1, '@': 1, '[': 1, '\\': 1, ']': 1, '^': 1, '|': 1 }), + ft = function (t, r) { + var e = y(t, 0); + return e > 32 && e < 127 && !p(r, t) ? t : encodeURIComponent(t); + }, + lt = { ftp: 21, file: null, http: 80, https: 443, ws: 80, wss: 443 }, + ht = function (t, r) { + var e; + return 2 == t.length && C(Y, U(t, 0)) && (':' == (e = U(t, 1)) || (!r && '|' == e)); + }, + pt = function (t) { + var r; + return ( + t.length > 1 && + ht(z(t, 0, 2)) && + (2 == t.length || '/' === (r = U(t, 2)) || '\\' === r || '?' === r || '#' === r) + ); + }, + vt = function (t) { + return '.' === t || '%2e' === q(t); + }, + dt = {}, + gt = {}, + yt = {}, + mt = {}, + bt = {}, + xt = {}, + wt = {}, + St = {}, + At = {}, + Rt = {}, + Et = {}, + Ot = {}, + It = {}, + Pt = {}, + Tt = {}, + jt = {}, + Lt = {}, + kt = {}, + Ut = {}, + Ct = {}, + _t = {}, + Mt = function (t, r, e) { + var n, + o, + i, + a = b(t); + if (r) { + if ((o = this.parse(a))) throw T(o); + this.searchParams = null; + } else { + if ((void 0 !== e && (n = new Mt(e, !0)), (o = this.parse(a, null, n)))) throw T(o); + (i = I(new O())).bindURL(this), (this.searchParams = i); + } + }; + Mt.prototype = { + type: 'URL', + parse: function (t, r, e) { + var o, + i, + a, + u, + s, + c = this, + f = r || dt, + l = 0, + h = '', + v = !1, + y = !1, + m = !1; + for ( + t = b(t), + r || + ((c.scheme = ''), + (c.username = ''), + (c.password = ''), + (c.host = null), + (c.port = null), + (c.path = []), + (c.query = null), + (c.fragment = null), + (c.cannotBeABaseURL = !1), + (t = B(t, nt, ''))), + t = B(t, ot, ''), + o = d(t); + l <= o.length; + + ) { + switch (((i = o[l]), f)) { + case dt: + if (!i || !C(Y, i)) { + if (r) return G; + f = yt; + continue; + } + (h += q(i)), (f = gt); + break; + case gt: + if (i && (C(K, i) || '+' == i || '-' == i || '.' == i)) h += q(i); + else { + if (':' != i) { + if (r) return G; + (h = ''), (f = yt), (l = 0); + continue; + } + if ( + r && + (c.isSpecial() != p(lt, h) || + ('file' == h && (c.includesCredentials() || null !== c.port)) || + ('file' == c.scheme && !c.host)) + ) + return; + if (((c.scheme = h), r)) return void (c.isSpecial() && lt[c.scheme] == c.port && (c.port = null)); + (h = ''), + 'file' == c.scheme + ? (f = Pt) + : c.isSpecial() && e && e.scheme == c.scheme + ? (f = mt) + : c.isSpecial() + ? (f = St) + : '/' == o[l + 1] + ? ((f = bt), l++) + : ((c.cannotBeABaseURL = !0), N(c.path, ''), (f = Ut)); + } + break; + case yt: + if (!e || (e.cannotBeABaseURL && '#' != i)) return G; + if (e.cannotBeABaseURL && '#' == i) { + (c.scheme = e.scheme), + (c.path = g(e.path)), + (c.query = e.query), + (c.fragment = ''), + (c.cannotBeABaseURL = !0), + (f = _t); + break; + } + f = 'file' == e.scheme ? Pt : xt; + continue; + case mt: + if ('/' != i || '/' != o[l + 1]) { + f = xt; + continue; + } + (f = At), l++; + break; + case bt: + if ('/' == i) { + f = Rt; + break; + } + f = kt; + continue; + case xt: + if (((c.scheme = e.scheme), i == n)) + (c.username = e.username), + (c.password = e.password), + (c.host = e.host), + (c.port = e.port), + (c.path = g(e.path)), + (c.query = e.query); + else if ('/' == i || ('\\' == i && c.isSpecial())) f = wt; + else if ('?' == i) + (c.username = e.username), + (c.password = e.password), + (c.host = e.host), + (c.port = e.port), + (c.path = g(e.path)), + (c.query = ''), + (f = Ct); + else { + if ('#' != i) { + (c.username = e.username), + (c.password = e.password), + (c.host = e.host), + (c.port = e.port), + (c.path = g(e.path)), + c.path.length--, + (f = kt); + continue; + } + (c.username = e.username), + (c.password = e.password), + (c.host = e.host), + (c.port = e.port), + (c.path = g(e.path)), + (c.query = e.query), + (c.fragment = ''), + (f = _t); + } + break; + case wt: + if (!c.isSpecial() || ('/' != i && '\\' != i)) { + if ('/' != i) { + (c.username = e.username), + (c.password = e.password), + (c.host = e.host), + (c.port = e.port), + (f = kt); + continue; + } + f = Rt; + } else f = At; + break; + case St: + if (((f = At), '/' != i || '/' != U(h, l + 1))) continue; + l++; + break; + case At: + if ('/' != i && '\\' != i) { + f = Rt; + continue; + } + break; + case Rt: + if ('@' == i) { + v && (h = '%40' + h), (v = !0), (a = d(h)); + for (var x = 0; x < a.length; x++) { + var w = a[x]; + if (':' != w || m) { + var S = ft(w, ct); + m ? (c.password += S) : (c.username += S); + } else m = !0; + } + h = ''; + } else if (i == n || '/' == i || '?' == i || '#' == i || ('\\' == i && c.isSpecial())) { + if (v && '' == h) return 'Invalid authority'; + (l -= d(h).length + 1), (h = ''), (f = Et); + } else h += i; + break; + case Et: + case Ot: + if (r && 'file' == c.scheme) { + f = jt; + continue; + } + if (':' != i || y) { + if (i == n || '/' == i || '?' == i || '#' == i || ('\\' == i && c.isSpecial())) { + if (c.isSpecial() && '' == h) return V; + if (r && '' == h && (c.includesCredentials() || null !== c.port)) return; + if ((u = c.parseHost(h))) return u; + if (((h = ''), (f = Lt), r)) return; + continue; + } + '[' == i ? (y = !0) : ']' == i && (y = !1), (h += i); + } else { + if ('' == h) return V; + if ((u = c.parseHost(h))) return u; + if (((h = ''), (f = It), r == Ot)) return; + } + break; + case It: + if (!C(J, i)) { + if (i == n || '/' == i || '?' == i || '#' == i || ('\\' == i && c.isSpecial()) || r) { + if ('' != h) { + var A = j(h, 10); + if (A > 65535) return $; + (c.port = c.isSpecial() && A === lt[c.scheme] ? null : A), (h = ''); + } + if (r) return; + f = Lt; + continue; + } + return $; + } + h += i; + break; + case Pt: + if (((c.scheme = 'file'), '/' == i || '\\' == i)) f = Tt; + else { + if (!e || 'file' != e.scheme) { + f = kt; + continue; + } + if (i == n) (c.host = e.host), (c.path = g(e.path)), (c.query = e.query); + else if ('?' == i) (c.host = e.host), (c.path = g(e.path)), (c.query = ''), (f = Ct); + else { + if ('#' != i) { + pt(_(g(o, l), '')) || ((c.host = e.host), (c.path = g(e.path)), c.shortenPath()), (f = kt); + continue; + } + (c.host = e.host), (c.path = g(e.path)), (c.query = e.query), (c.fragment = ''), (f = _t); + } + } + break; + case Tt: + if ('/' == i || '\\' == i) { + f = jt; + break; + } + e && + 'file' == e.scheme && + !pt(_(g(o, l), '')) && + (ht(e.path[0], !0) ? N(c.path, e.path[0]) : (c.host = e.host)), + (f = kt); + continue; + case jt: + if (i == n || '/' == i || '\\' == i || '?' == i || '#' == i) { + if (!r && ht(h)) f = kt; + else if ('' == h) { + if (((c.host = ''), r)) return; + f = Lt; + } else { + if ((u = c.parseHost(h))) return u; + if (('localhost' == c.host && (c.host = ''), r)) return; + (h = ''), (f = Lt); + } + continue; + } + h += i; + break; + case Lt: + if (c.isSpecial()) { + if (((f = kt), '/' != i && '\\' != i)) continue; + } else if (r || '?' != i) + if (r || '#' != i) { + if (i != n && ((f = kt), '/' != i)) continue; + } else (c.fragment = ''), (f = _t); + else (c.query = ''), (f = Ct); + break; + case kt: + if (i == n || '/' == i || ('\\' == i && c.isSpecial()) || (!r && ('?' == i || '#' == i))) { + if ( + ('..' === (s = q((s = h))) || '%2e.' === s || '.%2e' === s || '%2e%2e' === s + ? (c.shortenPath(), '/' == i || ('\\' == i && c.isSpecial()) || N(c.path, '')) + : vt(h) + ? '/' == i || ('\\' == i && c.isSpecial()) || N(c.path, '') + : ('file' == c.scheme && + !c.path.length && + ht(h) && + (c.host && (c.host = ''), (h = U(h, 0) + ':')), + N(c.path, h)), + (h = ''), + 'file' == c.scheme && (i == n || '?' == i || '#' == i)) + ) + for (; c.path.length > 1 && '' === c.path[0]; ) D(c.path); + '?' == i ? ((c.query = ''), (f = Ct)) : '#' == i && ((c.fragment = ''), (f = _t)); + } else h += ft(i, st); + break; + case Ut: + '?' == i + ? ((c.query = ''), (f = Ct)) + : '#' == i + ? ((c.fragment = ''), (f = _t)) + : i != n && (c.path[0] += ft(i, at)); + break; + case Ct: + r || '#' != i + ? i != n && + ("'" == i && c.isSpecial() ? (c.query += '%27') : (c.query += '#' == i ? '%23' : ft(i, at))) + : ((c.fragment = ''), (f = _t)); + break; + case _t: + i != n && (c.fragment += ft(i, ut)); + } + l++; + } + }, + parseHost: function (t) { + var r, e, n; + if ('[' == U(t, 0)) { + if (']' != U(t, t.length - 1)) return V; + if ( + ((r = (function (t) { + var r, + e, + n, + o, + i, + a, + u, + s = [0, 0, 0, 0, 0, 0, 0, 0], + c = 0, + f = null, + l = 0, + h = function () { + return U(t, l); + }; + if (':' == h()) { + if (':' != U(t, 1)) return; + (l += 2), (f = ++c); + } + for (; h(); ) { + if (8 == c) return; + if (':' != h()) { + for (r = e = 0; e < 4 && C(tt, h()); ) (r = 16 * r + j(h(), 16)), l++, e++; + if ('.' == h()) { + if (0 == e) return; + if (((l -= e), c > 6)) return; + for (n = 0; h(); ) { + if (((o = null), n > 0)) { + if (!('.' == h() && n < 4)) return; + l++; + } + if (!C(J, h())) return; + for (; C(J, h()); ) { + if (((i = j(h(), 10)), null === o)) o = i; + else { + if (0 == o) return; + o = 10 * o + i; + } + if (o > 255) return; + l++; + } + (s[c] = 256 * s[c] + o), (2 != ++n && 4 != n) || c++; + } + if (4 != n) return; + break; + } + if (':' == h()) { + if ((l++, !h())) return; + } else if (h()) return; + s[c++] = r; + } else { + if (null !== f) return; + l++, (f = ++c); + } + } + if (null !== f) + for (a = c - f, c = 7; 0 != c && a > 0; ) (u = s[c]), (s[c--] = s[f + a - 1]), (s[f + --a] = u); + else if (8 != c) return; + return s; + })(z(t, 1, -1))), + !r) + ) + return V; + this.host = r; + } else if (this.isSpecial()) { + if (((t = m(t)), C(rt, t))) return V; + if ( + ((r = (function (t) { + var r, + e, + n, + o, + i, + a, + u, + s = H(t, '.'); + if ((s.length && '' == s[s.length - 1] && s.length--, (r = s.length) > 4)) return t; + for (e = [], n = 0; n < r; n++) { + if ('' == (o = s[n])) return t; + if ( + ((i = 10), + o.length > 1 && '0' == U(o, 0) && ((i = C(X, o) ? 16 : 8), (o = z(o, 8 == i ? 1 : 2))), + '' === o) + ) + a = 0; + else { + if (!C(10 == i ? Z : 8 == i ? Q : tt, o)) return t; + a = j(o, i); + } + N(e, a); + } + for (n = 0; n < r; n++) + if (((a = e[n]), n == r - 1)) { + if (a >= k(256, 5 - r)) return null; + } else if (a > 255) return null; + for (u = F(e), n = 0; n < e.length; n++) u += e[n] * k(256, 3 - n); + return u; + })(t)), + null === r) + ) + return V; + this.host = r; + } else { + if (C(et, t)) return V; + for (r = '', e = d(t), n = 0; n < e.length; n++) r += ft(e[n], at); + this.host = r; + } + }, + cannotHaveUsernamePasswordPort: function () { + return !this.host || this.cannotBeABaseURL || 'file' == this.scheme; + }, + includesCredentials: function () { + return '' != this.username || '' != this.password; + }, + isSpecial: function () { + return p(lt, this.scheme); + }, + shortenPath: function () { + var t = this.path, + r = t.length; + !r || ('file' == this.scheme && 1 == r && ht(t[0], !0)) || t.length--; + }, + serialize: function () { + var t = this, + r = t.scheme, + e = t.username, + n = t.password, + o = t.host, + i = t.port, + a = t.path, + u = t.query, + s = t.fragment, + c = r + ':'; + return ( + null !== o + ? ((c += '//'), + t.includesCredentials() && (c += e + (n ? ':' + n : '') + '@'), + (c += it(o)), + null !== i && (c += ':' + i)) + : 'file' == r && (c += '//'), + (c += t.cannotBeABaseURL ? a[0] : a.length ? '/' + _(a, '/') : ''), + null !== u && (c += '?' + u), + null !== s && (c += '#' + s), + c + ); + }, + setHref: function (t) { + var r = this.parse(t); + if (r) throw T(r); + this.searchParams.update(); + }, + getOrigin: function () { + var t = this.scheme, + r = this.port; + if ('blob' == t) + try { + return new Ft(t.path[0]).origin; + } catch (e) { + return 'null'; + } + return 'file' != t && this.isSpecial() ? t + '://' + it(this.host) + (null !== r ? ':' + r : '') : 'null'; + }, + getProtocol: function () { + return this.scheme + ':'; + }, + setProtocol: function (t) { + this.parse(b(t) + ':', dt); + }, + getUsername: function () { + return this.username; + }, + setUsername: function (t) { + var r = d(b(t)); + if (!this.cannotHaveUsernamePasswordPort()) { + this.username = ''; + for (var e = 0; e < r.length; e++) this.username += ft(r[e], ct); + } + }, + getPassword: function () { + return this.password; + }, + setPassword: function (t) { + var r = d(b(t)); + if (!this.cannotHaveUsernamePasswordPort()) { + this.password = ''; + for (var e = 0; e < r.length; e++) this.password += ft(r[e], ct); + } + }, + getHost: function () { + var t = this.host, + r = this.port; + return null === t ? '' : null === r ? it(t) : it(t) + ':' + r; + }, + setHost: function (t) { + this.cannotBeABaseURL || this.parse(t, Et); + }, + getHostname: function () { + var t = this.host; + return null === t ? '' : it(t); + }, + setHostname: function (t) { + this.cannotBeABaseURL || this.parse(t, Ot); + }, + getPort: function () { + var t = this.port; + return null === t ? '' : b(t); + }, + setPort: function (t) { + this.cannotHaveUsernamePasswordPort() || ('' == (t = b(t)) ? (this.port = null) : this.parse(t, It)); + }, + getPathname: function () { + var t = this.path; + return this.cannotBeABaseURL ? t[0] : t.length ? '/' + _(t, '/') : ''; + }, + setPathname: function (t) { + this.cannotBeABaseURL || ((this.path = []), this.parse(t, Lt)); + }, + getSearch: function () { + var t = this.query; + return t ? '?' + t : ''; + }, + setSearch: function (t) { + '' == (t = b(t)) + ? (this.query = null) + : ('?' == U(t, 0) && (t = z(t, 1)), (this.query = ''), this.parse(t, Ct)), + this.searchParams.update(); + }, + getSearchParams: function () { + return this.searchParams.facade; + }, + getHash: function () { + var t = this.fragment; + return t ? '#' + t : ''; + }, + setHash: function (t) { + '' != (t = b(t)) + ? ('#' == U(t, 0) && (t = z(t, 1)), (this.fragment = ''), this.parse(t, _t)) + : (this.fragment = null); + }, + update: function () { + this.query = this.searchParams.serialize() || null; + }, + }; + var Ft = function (t) { + var r = h(this, Nt), + e = w(arguments.length, 1) > 1 ? arguments[1] : void 0, + n = R(r, new Mt(t, !1, e)); + i || + ((r.href = n.serialize()), + (r.origin = n.getOrigin()), + (r.protocol = n.getProtocol()), + (r.username = n.getUsername()), + (r.password = n.getPassword()), + (r.host = n.getHost()), + (r.hostname = n.getHostname()), + (r.port = n.getPort()), + (r.pathname = n.getPathname()), + (r.search = n.getSearch()), + (r.searchParams = n.getSearchParams()), + (r.hash = n.getHash())); + }, + Nt = Ft.prototype, + Bt = function (t, r) { + return { + get: function () { + return E(this)[t](); + }, + set: + r && + function (t) { + return E(this)[r](t); + }, + configurable: !0, + enumerable: !0, + }; + }; + if ( + (i && + (l(Nt, 'href', Bt('serialize', 'setHref')), + l(Nt, 'origin', Bt('getOrigin')), + l(Nt, 'protocol', Bt('getProtocol', 'setProtocol')), + l(Nt, 'username', Bt('getUsername', 'setUsername')), + l(Nt, 'password', Bt('getPassword', 'setPassword')), + l(Nt, 'host', Bt('getHost', 'setHost')), + l(Nt, 'hostname', Bt('getHostname', 'setHostname')), + l(Nt, 'port', Bt('getPort', 'setPort')), + l(Nt, 'pathname', Bt('getPathname', 'setPathname')), + l(Nt, 'search', Bt('getSearch', 'setSearch')), + l(Nt, 'searchParams', Bt('getSearchParams')), + l(Nt, 'hash', Bt('getHash', 'setHash'))), + f( + Nt, + 'toJSON', + function () { + return E(this).serialize(); + }, + { enumerable: !0 }, + ), + f( + Nt, + 'toString', + function () { + return E(this).serialize(); + }, + { enumerable: !0 }, + ), + P) + ) { + var Dt = P.createObjectURL, + Ht = P.revokeObjectURL; + Dt && f(Ft, 'createObjectURL', s(Dt, P)), Ht && f(Ft, 'revokeObjectURL', s(Ht, P)); + } + x(Ft, 'URL'), o({ global: !0, constructor: !0, forced: !a, sham: !i }, { URL: Ft }); + }, + 57307: (t, r, e) => { + e(791); + }, + 8711: (t, r, e) => { + 'use strict'; + var n = e(72698), + o = e(41924); + n( + { target: 'URL', proto: !0, enumerable: !0 }, + { + toJSON: function () { + return o(URL.prototype.toString, this); + }, + }, + ); + }, + }, + t => { + var r; + (r = 77365), t((t.s = r)); + }, +]); diff --git a/.nx/cache/nx-console-project-graph/static/runtime.js b/.nx/cache/nx-console-project-graph/static/runtime.js new file mode 100644 index 0000000000000..640e6de2f8c95 --- /dev/null +++ b/.nx/cache/nx-console-project-graph/static/runtime.js @@ -0,0 +1,75 @@ +(() => { + 'use strict'; + var e, + r = {}, + t = {}; + function o(e) { + var n = t[e]; + if (void 0 !== n) return n.exports; + var i = (t[e] = { id: e, loaded: !1, exports: {} }); + return r[e].call(i.exports, i, i.exports, o), (i.loaded = !0), i.exports; + } + (o.m = r), + (e = []), + (o.O = (r, t, n, i) => { + if (!t) { + var l = 1 / 0; + for (f = 0; f < e.length; f++) { + for (var [t, n, i] = e[f], a = !0, u = 0; u < t.length; u++) + (!1 & i || l >= i) && Object.keys(o.O).every(e => o.O[e](t[u])) + ? t.splice(u--, 1) + : ((a = !1), i < l && (l = i)); + if (a) { + e.splice(f--, 1); + var d = n(); + void 0 !== d && (r = d); + } + } + return r; + } + i = i || 0; + for (var f = e.length; f > 0 && e[f - 1][2] > i; f--) e[f] = e[f - 1]; + e[f] = [t, n, i]; + }), + (o.n = e => { + var r = e && e.__esModule ? () => e.default : () => e; + return o.d(r, { a: r }), r; + }), + (o.d = (e, r) => { + for (var t in r) o.o(r, t) && !o.o(e, t) && Object.defineProperty(e, t, { enumerable: !0, get: r[t] }); + }), + (o.g = (function () { + if ('object' == typeof globalThis) return globalThis; + try { + return this || new Function('return this')(); + } catch (e) { + if ('object' == typeof window) return window; + } + })()), + (o.o = (e, r) => Object.prototype.hasOwnProperty.call(e, r)), + (o.r = e => { + 'undefined' != typeof Symbol && + Symbol.toStringTag && + Object.defineProperty(e, Symbol.toStringTag, { value: 'Module' }), + Object.defineProperty(e, '__esModule', { value: !0 }); + }), + (o.nmd = e => ((e.paths = []), e.children || (e.children = []), e)), + (() => { + var e = { 666: 0 }; + o.O.j = r => 0 === e[r]; + var r = (r, t) => { + var n, + i, + [l, a, u] = t, + d = 0; + if (l.some(r => 0 !== e[r])) { + for (n in a) o.o(a, n) && (o.m[n] = a[n]); + if (u) var f = u(o); + } + for (r && r(t); d < l.length; d++) (i = l[d]), o.o(e, i) && e[i] && e[i][0](), (e[i] = 0); + return o.O(f); + }, + t = (self.webpackChunk = self.webpackChunk || []); + t.forEach(r.bind(null, 0)), (t.push = r.bind(null, t.push.bind(t))); + })(); +})(); diff --git a/.nx/cache/nx-console-project-graph/static/styles.css b/.nx/cache/nx-console-project-graph/static/styles.css new file mode 100644 index 0000000000000..6c8ff6a699055 --- /dev/null +++ b/.nx/cache/nx-console-project-graph/static/styles.css @@ -0,0 +1,1233 @@ +.container { + width: 100%; +} +@media (min-width: 640px) { + .container { + max-width: 640px; + } +} +@media (min-width: 768px) { + .container { + max-width: 768px; + } +} +@media (min-width: 1024px) { + .container { + max-width: 1024px; + } +} +@media (min-width: 1280px) { + .container { + max-width: 1280px; + } +} +@media (min-width: 1536px) { + .container { + max-width: 1536px; + } +} +.form-input, +.form-multiselect, +.form-select, +.form-textarea { + --tw-shadow: 0 0 #0000; + -webkit-appearance: none; + appearance: none; + background-color: #fff; + border-color: #6b7280; + border-radius: 0; + border-width: 1px; + font-size: 1rem; + line-height: 1.5rem; + padding: 0.5rem 0.75rem; +} +.form-input:focus, +.form-multiselect:focus, +.form-select:focus, +.form-textarea:focus { + --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + border-color: #2563eb; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + outline: 2px solid transparent; + outline-offset: 2px; +} +.form-select { + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E"); + background-position: right 0.5rem center; + background-repeat: no-repeat; + background-size: 1.5em 1.5em; + padding-right: 2.5rem; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; +} /* +! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com +*/ +*, +:after, +:before { + border: 0 solid #e5e7eb; + box-sizing: border-box; +} +:after, +:before { + --tw-content: ''; +} +html { + -webkit-text-size-adjust: 100%; + font-feature-settings: normal; + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, + Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; + line-height: 1.5; + tab-size: 4; +} +body { + line-height: inherit; + margin: 0; +} +hr { + border-top-width: 1px; + color: inherit; + height: 0; +} +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} +a { + color: inherit; + text-decoration: inherit; +} +b, +strong { + font-weight: bolder; +} +code, +kbd, +pre, +samp { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; + font-size: 1em; +} +small { + font-size: 80%; +} +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +sub { + bottom: -0.25em; +} +sup { + top: -0.5em; +} +table { + border-collapse: collapse; + border-color: inherit; + text-indent: 0; +} +button, +input, +optgroup, +select, +textarea { + color: inherit; + font-family: inherit; + font-size: 100%; + font-weight: inherit; + line-height: inherit; + margin: 0; + padding: 0; +} +button, +select { + text-transform: none; +} +[type='button'], +[type='reset'], +[type='submit'], +button { + -webkit-appearance: button; + background-color: transparent; + background-image: none; +} +:-moz-focusring { + outline: auto; +} +:-moz-ui-invalid { + box-shadow: none; +} +progress { + vertical-align: baseline; +} +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} +[type='search'] { + -webkit-appearance: textfield; + outline-offset: -2px; +} +::-webkit-search-decoration { + -webkit-appearance: none; +} +::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit; +} +summary { + display: list-item; +} +blockquote, +dd, +dl, +figure, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +p, +pre { + margin: 0; +} +fieldset { + margin: 0; +} +fieldset, +legend { + padding: 0; +} +menu, +ol, +ul { + list-style: none; + margin: 0; + padding: 0; +} +textarea { + resize: vertical; +} +input::placeholder, +textarea::placeholder { + color: #9ca3af; + opacity: 1; +} +[role='button'], +button { + cursor: pointer; +} +:disabled { + cursor: default; +} +audio, +canvas, +embed, +iframe, +img, +object, +svg, +video { + display: block; + vertical-align: middle; +} +img, +video { + height: auto; + max-width: 100%; +} +[hidden] { + display: none; +} +*, +:after, +:before { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} +::-webkit-backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} +::backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} +.sr-only { + clip: rect(0, 0, 0, 0); + border-width: 0; + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + white-space: nowrap; + width: 1px; +} +.visible { + visibility: visible; +} +.invisible { + visibility: hidden; +} +.static { + position: static; +} +.fixed { + position: fixed; +} +.absolute { + position: absolute; +} +.relative { + position: relative; +} +.inset-y-0 { + bottom: 0; + top: 0; +} +.top-5 { + top: 1.25rem; +} +.left-5 { + left: 1.25rem; +} +.bottom-4 { + bottom: 1rem; +} +.right-4 { + right: 1rem; +} +.top-1\/2 { + top: 50%; +} +.left-1\/2 { + left: 50%; +} +.right-0 { + right: 0; +} +.right-2 { + right: 0.5rem; +} +.top-2 { + top: 0.5rem; +} +.top-1 { + top: 0.25rem; +} +.right-1 { + right: 0.25rem; +} +.z-50 { + z-index: 50; +} +.z-0 { + z-index: 0; +} +.z-10 { + z-index: 10; +} +.-z-10 { + z-index: -10; +} +.mx-4 { + margin-left: 1rem; + margin-right: 1rem; +} +.my-2 { + margin-bottom: 0.5rem; + margin-top: 0.5rem; +} +.mt-3 { + margin-top: 0.75rem; +} +.mr-2 { + margin-right: 0.5rem; +} +.mr-4 { + margin-right: 1rem; +} +.-mt-3 { + margin-top: -0.75rem; +} +.-ml-3 { + margin-left: -0.75rem; +} +.mr-1 { + margin-right: 0.25rem; +} +.ml-2 { + margin-left: 0.5rem; +} +.mt-4 { + margin-top: 1rem; +} +.mt-2 { + margin-top: 0.5rem; +} +.mt-8 { + margin-top: 2rem; +} +.ml-3 { + margin-left: 0.75rem; +} +.mt-10 { + margin-top: 2.5rem; +} +.-mt-1 { + margin-top: -0.25rem; +} +.-ml-1 { + margin-left: -0.25rem; +} +.mb-3 { + margin-bottom: 0.75rem; +} +.mr-3 { + margin-right: 0.75rem; +} +.block { + display: block; +} +.inline-block { + display: inline-block; +} +.inline { + display: inline; +} +.flex { + display: flex; +} +.inline-flex { + display: inline-flex; +} +.grid { + display: grid; +} +.h-full { + height: 100%; +} +.h-10 { + height: 2.5rem; +} +.h-4 { + height: 1rem; +} +.h-6 { + height: 1.5rem; +} +.h-16 { + height: 4rem; +} +.h-5 { + height: 1.25rem; +} +.max-h-\[300px\] { + max-height: 300px; +} +.w-full { + width: 100%; +} +.w-72 { + width: 18rem; +} +.w-auto { + width: auto; +} +.w-4 { + width: 1rem; +} +.w-6 { + width: 1.5rem; +} +.w-16 { + width: 4rem; +} +.w-5 { + width: 1.25rem; +} +.w-36 { + width: 9rem; +} +.min-w-\[250px\] { + min-width: 250px; +} +.flex-1 { + flex: 1 1 0%; +} +.flex-grow { + flex-grow: 1; +} +.origin-top-right { + transform-origin: top right; +} +.translate-x-32 { + --tw-translate-x: 8rem; +} +.rotate-45, +.translate-x-32 { + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) + skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.rotate-45 { + --tw-rotate: 45deg; +} +.scale-95 { + --tw-scale-x: 0.95; + --tw-scale-y: 0.95; +} +.scale-100, +.scale-95 { + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) + skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; +} +.transform { + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) + skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.cursor-pointer { + cursor: pointer; +} +.cursor-default { + cursor: default; +} +.cursor-text { + cursor: text; +} +.select-none { + -webkit-user-select: none; + user-select: none; +} +.select-text { + -webkit-user-select: text; + user-select: text; +} +.resize { + resize: both; +} +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} +.flex-row { + flex-direction: row; +} +.flex-col { + flex-direction: column; +} +.items-start { + align-items: flex-start; +} +.items-center { + align-items: center; +} +.justify-center { + justify-content: center; +} +.justify-between { + justify-content: space-between; +} +.justify-items-center { + justify-items: center; +} +.gap-4 { + gap: 1rem; +} +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + border-top-width: calc(1px * (1 - var(--tw-divide-y-reverse))); +} +.divide-slate-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgb(226 232 240 / var(--tw-divide-opacity)); +} +.overflow-auto { + overflow: auto; +} +.overflow-hidden { + overflow: hidden; +} +.overflow-y-scroll { + overflow-y: scroll; +} +.truncate { + overflow: hidden; + text-overflow: ellipsis; +} +.truncate, +.whitespace-nowrap { + white-space: nowrap; +} +.rounded-full { + border-radius: 9999px; +} +.rounded-md { + border-radius: 0.375rem; +} +.rounded-lg { + border-radius: 0.5rem; +} +.rounded-none { + border-radius: 0; +} +.rounded-l-md { + border-bottom-left-radius: 0.375rem; + border-top-left-radius: 0.375rem; +} +.rounded-r-md { + border-bottom-right-radius: 0.375rem; + border-top-right-radius: 0.375rem; +} +.border-2 { + border-width: 2px; +} +.border { + border-width: 1px; +} +.border-b { + border-bottom-width: 1px; +} +.border-t { + border-top-width: 1px; +} +.border-r-0 { + border-right-width: 0; +} +.border-solid { + border-style: solid; +} +.border-dashed { + border-style: dashed; +} +.border-slate-900\/10 { + border-color: rgba(15, 23, 42, 0.1); +} +.border-slate-300 { + --tw-border-opacity: 1; + border-color: rgb(203 213 225 / var(--tw-border-opacity)); +} +.border-slate-400\/10 { + border-color: rgba(148, 163, 184, 0.1); +} +.border-slate-200\/10 { + border-color: rgba(226, 232, 240, 0.1); +} +.border-purple-500 { + --tw-border-opacity: 1; + border-color: rgb(168 85 247 / var(--tw-border-opacity)); +} +.border-slate-200 { + --tw-border-opacity: 1; + border-color: rgb(226 232 240 / var(--tw-border-opacity)); +} +.border-pink-500 { + --tw-border-opacity: 1; + border-color: rgb(236 72 153 / var(--tw-border-opacity)); +} +.border-blue-500 { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} +.border-slate-500 { + --tw-border-opacity: 1; + border-color: rgb(100 116 139 / var(--tw-border-opacity)); +} +.bg-white { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} +.bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} +.bg-slate-50 { + --tw-bg-opacity: 1; + background-color: rgb(248 250 252 / var(--tw-bg-opacity)); +} +.bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgb(244 114 182 / var(--tw-bg-opacity)); +} +.bg-slate-300 { + --tw-bg-opacity: 1; + background-color: rgb(203 213 225 / var(--tw-bg-opacity)); +} +.bg-slate-500 { + --tw-bg-opacity: 1; + background-color: rgb(100 116 139 / var(--tw-bg-opacity)); +} +.p-0 { + padding: 0; +} +.p-1 { + padding: 0.25rem; +} +.p-2 { + padding: 0.5rem; +} +.p-4 { + padding: 1rem; +} +.p-1\.5 { + padding: 0.375rem; +} +.p-3 { + padding: 0.75rem; +} +.px-4 { + padding-left: 1rem; + padding-right: 1rem; +} +.py-1 { + padding-bottom: 0.25rem; + padding-top: 0.25rem; +} +.py-2 { + padding-bottom: 0.5rem; + padding-top: 0.5rem; +} +.px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; +} +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; +} +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; +} +.pb-10 { + padding-bottom: 2.5rem; +} +.pl-2 { + padding-left: 0.5rem; +} +.pr-6 { + padding-right: 1.5rem; +} +.pb-0 { + padding-bottom: 0; +} +.pb-2 { + padding-bottom: 0.5rem; +} +.pl-4 { + padding-left: 1rem; +} +.pr-8 { + padding-right: 2rem; +} +.text-left { + text-align: left; +} +.text-center { + text-align: center; +} +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; +} +.font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, + Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; +} +.text-xs { + font-size: 0.75rem; + line-height: 1rem; +} +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} +.font-medium { + font-weight: 500; +} +.font-normal { + font-weight: 400; +} +.font-semibold { + font-weight: 600; +} +.font-light { + font-weight: 300; +} +.uppercase { + text-transform: uppercase; +} +.leading-4 { + line-height: 1rem; +} +.tracking-wide { + letter-spacing: 0.025em; +} +.text-slate-500 { + --tw-text-opacity: 1; + color: rgb(100 116 139 / var(--tw-text-opacity)); +} +.text-slate-700 { + --tw-text-opacity: 1; + color: rgb(51 65 85 / var(--tw-text-opacity)); +} +.text-slate-900 { + --tw-text-opacity: 1; + color: rgb(15 23 42 / var(--tw-text-opacity)); +} +.text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} +.text-slate-600 { + --tw-text-opacity: 1; + color: rgb(71 85 105 / var(--tw-text-opacity)); +} +.text-blue-500 { + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} +.text-slate-800 { + --tw-text-opacity: 1; + color: rgb(30 41 59 / var(--tw-text-opacity)); +} +.text-slate-400 { + --tw-text-opacity: 1; + color: rgb(148 163 184 / var(--tw-text-opacity)); +} +.text-yellow-500 { + --tw-text-opacity: 1; + color: rgb(234 179 8 / var(--tw-text-opacity)); +} +.text-gray-700 { + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} +.text-slate-50 { + --tw-text-opacity: 1; + color: rgb(248 250 252 / var(--tw-text-opacity)); +} +.accent-blue-500 { + accent-color: #3b82f6; +} +.accent-purple-500 { + accent-color: #a855f7; +} +.opacity-0 { + opacity: 0; +} +.opacity-100 { + opacity: 1; +} +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); +} +.shadow-lg, +.shadow-sm { + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); +} +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.ring-slate-900\/10 { + --tw-ring-color: rgba(15, 23, 42, 0.1); +} +.ring-slate-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity)); +} +.ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} +.ring-slate-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity)); +} +.ring-opacity-10 { + --tw-ring-opacity: 0.1; +} +.ring-opacity-5 { + --tw-ring-opacity: 0.05; +} +.filter { + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) + var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} +.transition-all { + transition-duration: 0.15s; + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} +.transition { + transition-duration: 0.15s; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, + transform, filter, -webkit-backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter, -webkit-backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} +.duration-300 { + transition-duration: 0.3s; +} +.duration-200 { + transition-duration: 0.2s; +} +.duration-100 { + transition-duration: 0.1s; +} +.duration-75 { + transition-duration: 75ms; +} +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} +.dark { + color-scheme: dark; +} +.placeholder\:font-light::placeholder { + font-weight: 300; +} +.placeholder\:text-slate-400::placeholder { + --tw-text-opacity: 1; + color: rgb(148 163 184 / var(--tw-text-opacity)); +} +.hover\:cursor-pointer:hover { + cursor: pointer; +} +.hover\:bg-slate-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(248 250 252 / var(--tw-bg-opacity)); +} +.hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(236 72 153 / var(--tw-bg-opacity)); +} +.hover\:bg-slate-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(241 245 249 / var(--tw-bg-opacity)); +} +.hover\:underline:hover { + text-decoration-line: underline; +} +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; +} +.focus-visible\:ring-2:focus-visible { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.focus-visible\:ring-white:focus-visible { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity)); +} +.focus-visible\:ring-opacity-75:focus-visible { + --tw-ring-opacity: 0.75; +} +.group:hover .group-hover\:translate-x-0 { + --tw-translate-x: 0px; + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) + skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.group:hover .group-hover\:opacity-60 { + opacity: 0.6; +} +.dark .dark\:divide-slate-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgb(30 41 59 / var(--tw-divide-opacity)); +} +.dark .dark\:border-slate-300\/10 { + border-color: rgba(203, 213, 225, 0.1); +} +.dark .dark\:border-slate-600 { + --tw-border-opacity: 1; + border-color: rgb(71 85 105 / var(--tw-border-opacity)); +} +.dark .dark\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgb(147 51 234 / var(--tw-border-opacity)); +} +.dark .dark\:border-slate-700 { + --tw-border-opacity: 1; + border-color: rgb(51 65 85 / var(--tw-border-opacity)); +} +.dark .dark\:border-fuchsia-800 { + --tw-border-opacity: 1; + border-color: rgb(134 25 143 / var(--tw-border-opacity)); +} +.dark .dark\:border-sky-500 { + --tw-border-opacity: 1; + border-color: rgb(14 165 233 / var(--tw-border-opacity)); +} +.dark .dark\:border-slate-900 { + --tw-border-opacity: 1; + border-color: rgb(15 23 42 / var(--tw-border-opacity)); +} +.dark .dark\:border-slate-800 { + --tw-border-opacity: 1; + border-color: rgb(30 41 59 / var(--tw-border-opacity)); +} +.dark .dark\:bg-slate-900 { + --tw-bg-opacity: 1; + background-color: rgb(15 23 42 / var(--tw-bg-opacity)); +} +.dark .dark\:bg-transparent { + background-color: transparent; +} +.dark .dark\:bg-sky-500 { + --tw-bg-opacity: 1; + background-color: rgb(14 165 233 / var(--tw-bg-opacity)); +} +.dark .dark\:bg-slate-800 { + --tw-bg-opacity: 1; + background-color: rgb(30 41 59 / var(--tw-bg-opacity)); +} +.dark .dark\:bg-\[\#0B1221\] { + --tw-bg-opacity: 1; + background-color: rgb(11 18 33 / var(--tw-bg-opacity)); +} +.dark .dark\:bg-fuchsia-700 { + --tw-bg-opacity: 1; + background-color: rgb(162 28 175 / var(--tw-bg-opacity)); +} +.dark .dark\:bg-slate-600\/30 { + background-color: rgba(71, 85, 105, 0.3); +} +.dark .dark\:text-slate-400 { + --tw-text-opacity: 1; + color: rgb(148 163 184 / var(--tw-text-opacity)); +} +.dark .dark\:text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} +.dark .dark\:text-sky-500 { + --tw-text-opacity: 1; + color: rgb(14 165 233 / var(--tw-text-opacity)); +} +.dark .dark\:text-slate-200 { + --tw-text-opacity: 1; + color: rgb(226 232 240 / var(--tw-text-opacity)); +} +.dark .dark\:text-slate-500 { + --tw-text-opacity: 1; + color: rgb(100 116 139 / var(--tw-text-opacity)); +} +.dark .dark\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgb(250 204 21 / var(--tw-text-opacity)); +} +.dark .dark\:text-slate-300 { + --tw-text-opacity: 1; + color: rgb(203 213 225 / var(--tw-text-opacity)); +} +.dark .dark\:accent-sky-500 { + accent-color: #0ea5e9; +} +.dark .dark\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.dark .dark\:ring-slate-300\/10 { + --tw-ring-color: rgba(203, 213, 225, 0.1); +} +.dark .dark\:ring-slate-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity)); +} +.dark .dark\:ring-sky-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity)); +} +.dark .dark\:ring-slate-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity)); +} +.dark .hover\:dark\:bg-slate-700:hover { + --tw-bg-opacity: 1; + background-color: rgb(51 65 85 / var(--tw-bg-opacity)); +} +.dark .hover\:dark\:bg-fuchsia-600:hover { + --tw-bg-opacity: 1; + background-color: rgb(192 38 211 / var(--tw-bg-opacity)); +} +.dark .dark\:hover\:bg-slate-700:hover { + --tw-bg-opacity: 1; + background-color: rgb(51 65 85 / var(--tw-bg-opacity)); +} +@media (min-width: 1024px) { + .lg\:text-xs { + font-size: 0.75rem; + line-height: 1rem; + } +} diff --git a/.nx/cache/nx-console-project-graph/static/styles.js b/.nx/cache/nx-console-project-graph/static/styles.js new file mode 100644 index 0000000000000..50c284dcc72c1 --- /dev/null +++ b/.nx/cache/nx-console-project-graph/static/styles.js @@ -0,0 +1,9 @@ +'use strict'; +(self.webpackChunk = self.webpackChunk || []).push([ + [532], + { 33767: () => {} }, + s => { + var e; + (e = 33767), s((s.s = e)); + }, +]); diff --git a/.nx/cache/parsed-lock-file.json b/.nx/cache/parsed-lock-file.json new file mode 100644 index 0000000000000..ffce5cd2706a8 --- /dev/null +++ b/.nx/cache/parsed-lock-file.json @@ -0,0 +1,86639 @@ +{ + "externalNodes": { + "npm:@actions/core": { + "type": "npm", + "name": "npm:@actions/core", + "data": { + "version": "1.9.1", + "packageName": "@actions/core", + "hash": "sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==" + } + }, + "npm:@actions/github": { + "type": "npm", + "name": "npm:@actions/github", + "data": { + "version": "5.0.3", + "packageName": "@actions/github", + "hash": "sha512-myjA/pdLQfhUGLtRZC/J4L1RXOG4o6aYdiEq+zr5wVVKljzbFld+xv10k1FX6IkIJtNxbAq44BdwSNpQ015P0A==" + } + }, + "npm:@actions/http-client": { + "type": "npm", + "name": "npm:@actions/http-client", + "data": { + "version": "2.0.1", + "packageName": "@actions/http-client", + "hash": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==" + } + }, + "npm:@adobe/css-tools": { + "type": "npm", + "name": "npm:@adobe/css-tools", + "data": { + "version": "4.3.1", + "packageName": "@adobe/css-tools", + "hash": "sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.0", + "packageName": "@ampproject/remapping", + "hash": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==" + } + }, + "npm:@azure/abort-controller": { + "type": "npm", + "name": "npm:@azure/abort-controller", + "data": { + "version": "1.0.1", + "packageName": "@azure/abort-controller", + "hash": "sha512-wP2Jw6uPp8DEDy0n4KNidvwzDjyVV2xnycEIq7nPzj1rHyb/r+t3OPeNT1INZePP2wy5ZqlwyuyOMTi0ePyY1A==" + } + }, + "npm:@azure/core-asynciterator-polyfill": { + "type": "npm", + "name": "npm:@azure/core-asynciterator-polyfill", + "data": { + "version": "1.0.0", + "packageName": "@azure/core-asynciterator-polyfill", + "hash": "sha512-kmv8CGrPfN9SwMwrkiBK9VTQYxdFQEGe0BmQk+M8io56P9KNzpAxcWE/1fxJj7uouwN4kXF0BHW8DNlgx+wtCg==" + } + }, + "npm:@azure/core-auth": { + "type": "npm", + "name": "npm:@azure/core-auth", + "data": { + "version": "1.3.0", + "packageName": "@azure/core-auth", + "hash": "sha512-kSDSZBL6c0CYdhb+7KuutnKGf2geeT+bCJAgccB0DD7wmNJSsQPcF7TcuoZX83B7VK4tLz/u+8sOO/CnCsYp8A==" + } + }, + "npm:@azure/core-client": { + "type": "npm", + "name": "npm:@azure/core-client", + "data": { + "version": "1.1.1", + "packageName": "@azure/core-client", + "hash": "sha512-SHW4H4I9IxzqaadHCUJLQPTD5jLfBOVNkWw1TSEZr4SGk0AzZzA3BG5q8Pr9L6WDK3MKCXdi6f9IViGYKGXjzw==" + } + }, + "npm:@azure/core-http": { + "type": "npm", + "name": "npm:@azure/core-http", + "data": { + "version": "1.1.3", + "packageName": "@azure/core-http", + "hash": "sha512-GysW3+BRVV4L9cs3GsuCbnlyibrQU6hh5mcJ7hlnk7tdUBzWybUvJ8/P/nHX49PgwRmi81pD5v1ht2jF0IzxAQ==" + } + }, + "npm:@azure/core-lro": { + "type": "npm", + "name": "npm:@azure/core-lro", + "data": { + "version": "1.0.2", + "packageName": "@azure/core-lro", + "hash": "sha512-Yr0JD7GKryOmbcb5wHCQoQ4KCcH5QJWRNorofid+UvudLaxnbCfvKh/cUfQsGUqRjO9L/Bw4X7FP824DcHdMxw==" + } + }, + "npm:@azure/core-paging": { + "type": "npm", + "name": "npm:@azure/core-paging", + "data": { + "version": "1.1.1", + "packageName": "@azure/core-paging", + "hash": "sha512-hqEJBEGKan4YdOaL9ZG/GRG6PXaFd/Wb3SSjQW4LWotZzgl6xqG00h6wmkrpd2NNkbBkD1erLHBO3lPHApv+iQ==" + } + }, + "npm:@azure/core-rest-pipeline": { + "type": "npm", + "name": "npm:@azure/core-rest-pipeline", + "data": { + "version": "1.3.2", + "packageName": "@azure/core-rest-pipeline", + "hash": "sha512-kymICKESeHBpVLgQiAxllgWdSTopkqtmfPac8ITwMCxNEC6hzbSpqApYbjzxbBNkBMgoD4GESo6LLhR/sPh6kA==" + } + }, + "npm:@azure/core-tracing@1.0.0-preview.11": { + "type": "npm", + "name": "npm:@azure/core-tracing@1.0.0-preview.11", + "data": { + "version": "1.0.0-preview.11", + "packageName": "@azure/core-tracing", + "hash": "sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ==" + } + }, + "npm:@azure/core-tracing": { + "type": "npm", + "name": "npm:@azure/core-tracing", + "data": { + "version": "1.0.0-preview.13", + "packageName": "@azure/core-tracing", + "hash": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==" + } + }, + "npm:@azure/core-tracing@1.0.0-preview.8": { + "type": "npm", + "name": "npm:@azure/core-tracing@1.0.0-preview.8", + "data": { + "version": "1.0.0-preview.8", + "packageName": "@azure/core-tracing", + "hash": "sha512-ZKUpCd7Dlyfn7bdc+/zC/sf0aRIaNQMDuSj2RhYRFe3p70hVAnYGp3TX4cnG2yoEALp/LTj/XnZGQ8Xzf6Ja/Q==" + } + }, + "npm:@azure/core-xml": { + "type": "npm", + "name": "npm:@azure/core-xml", + "data": { + "version": "1.0.0", + "packageName": "@azure/core-xml", + "hash": "sha512-VSM3wQomzRZk4SnDK5vKaROON/d3hgfl+D/pfLjpGR8gxRGuO0I8R+Rp/qj6Cq3x7HPgUqrii3/s/RRwDWWdvQ==" + } + }, + "npm:@azure/data-tables": { + "type": "npm", + "name": "npm:@azure/data-tables", + "data": { + "version": "13.0.0", + "packageName": "@azure/data-tables", + "hash": "sha512-OA9X0rsTP7AM+cZENppMljihYWfn02Tkwa1IdbU8jNfCjV5SL8x2e76L7SN5z/sFxAJ3hdcyMa3sAOXvuSs6/Q==" + } + }, + "npm:@azure/logger": { + "type": "npm", + "name": "npm:@azure/logger", + "data": { + "version": "1.0.0", + "packageName": "@azure/logger", + "hash": "sha512-g2qLDgvmhyIxR3JVS8N67CyIOeFRKQlX/llxYJQr1OSGQqM3HTpVP8MjmjcEKbL/OIt2N9C9UFaNQuKOw1laOA==" + } + }, + "npm:@azure/storage-blob": { + "type": "npm", + "name": "npm:@azure/storage-blob", + "data": { + "version": "12.1.2", + "packageName": "@azure/storage-blob", + "hash": "sha512-PCHgG4r3xLt5FaFj+uiMqrRpuzD3TD17cvxCeA1JKK2bJEf8b07H3QRLQVf0DM1MmvYY8FgQagkWZTp+jr9yew==" + } + }, + "npm:@babel/code-frame@7.12.11": { + "type": "npm", + "name": "npm:@babel/code-frame@7.12.11", + "data": { + "version": "7.12.11", + "packageName": "@babel/code-frame", + "hash": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.22.13", + "packageName": "@babel/code-frame", + "hash": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.23.2", + "packageName": "@babel/compat-data", + "hash": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==" + } + }, + "npm:@babel/core@7.12.9": { + "type": "npm", + "name": "npm:@babel/core@7.12.9", + "data": { + "version": "7.12.9", + "packageName": "@babel/core", + "hash": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.23.2", + "packageName": "@babel/core", + "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.23.0", + "packageName": "@babel/generator", + "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==" + } + }, + "npm:@babel/helper-create-class-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" + } + }, + "npm:@babel/helper-define-polyfill-provider@0.1.5": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "data": { + "version": "0.1.5", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==" + } + }, + "npm:@babel/helper-define-polyfill-provider": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider", + "data": { + "version": "0.4.3", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==" + } + }, + "npm:@babel/helper-environment-visitor": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-function-name", + "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:@babel/helper-member-expression-to-functions": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==" + } + }, + "npm:@babel/helper-optimise-call-expression": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" + } + }, + "npm:@babel/helper-plugin-utils@7.10.4": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils@7.10.4", + "data": { + "version": "7.10.4", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:@babel/helper-remap-async-to-generator": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" + } + }, + "npm:@babel/helper-replace-supers": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==" + } + }, + "npm:@babel/helper-wrap-function": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.23.2", + "packageName": "@babel/helpers", + "hash": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.22.20", + "packageName": "@babel/highlight", + "hash": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.23.0", + "packageName": "@babel/parser", + "hash": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==" + } + }, + "npm:@babel/plugin-proposal-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-properties", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-class-properties", + "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + } + }, + "npm:@babel/plugin-proposal-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==" + } + }, + "npm:@babel/plugin-proposal-export-default-from": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-default-from", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-proposal-export-default-from", + "hash": "sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==" + } + }, + "npm:@babel/plugin-proposal-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-namespace-from", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-proposal-export-namespace-from", + "hash": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" + } + }, + "npm:@babel/plugin-proposal-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", + "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread", + "data": { + "version": "7.12.1", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==" + } + }, + "npm:@babel/plugin-proposal-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-chaining", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-optional-chaining", + "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" + } + }, + "npm:@babel/plugin-proposal-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-methods", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-private-methods", + "hash": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object", + "data": { + "version": "7.21.0-placeholder-for-preset-env.2", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:@babel/plugin-syntax-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators", + "data": { + "version": "7.22.10", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@babel/plugin-syntax-export-default-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-default-from", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-export-default-from", + "hash": "sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q==" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:@babel/plugin-syntax-flow": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-flow", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-flow", + "hash": "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==" + } + }, + "npm:@babel/plugin-syntax-import-assertions": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==" + } + }, + "npm:@babel/plugin-syntax-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:@babel/plugin-syntax-jsx@7.12.1": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx@7.12.1", + "data": { + "version": "7.12.1", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" + } + }, + "npm:@babel/plugin-syntax-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-unicode-sets-regex", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-syntax-unicode-sets-regex", + "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" + } + }, + "npm:@babel/plugin-transform-arrow-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==" + } + }, + "npm:@babel/plugin-transform-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-generator-functions", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-async-generator-functions", + "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" + } + }, + "npm:@babel/plugin-transform-async-to-generator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==" + } + }, + "npm:@babel/plugin-transform-block-scoping": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==" + } + }, + "npm:@babel/plugin-transform-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-properties", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-class-properties", + "hash": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==" + } + }, + "npm:@babel/plugin-transform-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-static-block", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-class-static-block", + "hash": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==" + } + }, + "npm:@babel/plugin-transform-classes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==" + } + }, + "npm:@babel/plugin-transform-computed-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==" + } + }, + "npm:@babel/plugin-transform-destructuring": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==" + } + }, + "npm:@babel/plugin-transform-dotall-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==" + } + }, + "npm:@babel/plugin-transform-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dynamic-import", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-dynamic-import", + "hash": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==" + } + }, + "npm:@babel/plugin-transform-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-transform-export-namespace-from", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-export-namespace-from", + "hash": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==" + } + }, + "npm:@babel/plugin-transform-flow-strip-types": { + "type": "npm", + "name": "npm:@babel/plugin-transform-flow-strip-types", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-transform-flow-strip-types", + "hash": "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==" + } + }, + "npm:@babel/plugin-transform-for-of": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==" + } + }, + "npm:@babel/plugin-transform-function-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==" + } + }, + "npm:@babel/plugin-transform-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-transform-json-strings", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-json-strings", + "hash": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==" + } + }, + "npm:@babel/plugin-transform-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==" + } + }, + "npm:@babel/plugin-transform-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-transform-logical-assignment-operators", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-logical-assignment-operators", + "hash": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==" + } + }, + "npm:@babel/plugin-transform-modules-amd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==" + } + }, + "npm:@babel/plugin-transform-modules-umd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" + } + }, + "npm:@babel/plugin-transform-new-target": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==" + } + }, + "npm:@babel/plugin-transform-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-nullish-coalescing-operator", + "hash": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==" + } + }, + "npm:@babel/plugin-transform-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-numeric-separator", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-numeric-separator", + "hash": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==" + } + }, + "npm:@babel/plugin-transform-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-rest-spread", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-object-rest-spread", + "hash": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==" + } + }, + "npm:@babel/plugin-transform-object-super": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==" + } + }, + "npm:@babel/plugin-transform-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-catch-binding", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-optional-catch-binding", + "hash": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==" + } + }, + "npm:@babel/plugin-transform-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-chaining", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-optional-chaining", + "hash": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==" + } + }, + "npm:@babel/plugin-transform-parameters": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==" + } + }, + "npm:@babel/plugin-transform-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-methods", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-private-methods", + "hash": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==" + } + }, + "npm:@babel/plugin-transform-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-property-in-object", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-private-property-in-object", + "hash": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==" + } + }, + "npm:@babel/plugin-transform-property-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==" + } + }, + "npm:@babel/plugin-transform-react-display-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-display-name", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-react-display-name", + "hash": "sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==" + } + }, + "npm:@babel/plugin-transform-react-jsx-development": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-development", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-react-jsx-development", + "hash": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==" + } + }, + "npm:@babel/plugin-transform-react-pure-annotations": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-pure-annotations", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-react-pure-annotations", + "hash": "sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==" + } + }, + "npm:@babel/plugin-transform-regenerator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator", + "data": { + "version": "7.22.10", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==" + } + }, + "npm:@babel/plugin-transform-reserved-words": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==" + } + }, + "npm:@babel/plugin-transform-runtime": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==" + } + }, + "npm:@babel/plugin-transform-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==" + } + }, + "npm:@babel/plugin-transform-sticky-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==" + } + }, + "npm:@babel/plugin-transform-template-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==" + } + }, + "npm:@babel/plugin-transform-typeof-symbol": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==" + } + }, + "npm:@babel/plugin-transform-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes", + "data": { + "version": "7.22.10", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==" + } + }, + "npm:@babel/plugin-transform-unicode-property-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-property-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-unicode-property-regex", + "hash": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==" + } + }, + "npm:@babel/plugin-transform-unicode-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==" + } + }, + "npm:@babel/plugin-transform-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-sets-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-unicode-sets-regex", + "hash": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==" + } + }, + "npm:@babel/polyfill": { + "type": "npm", + "name": "npm:@babel/polyfill", + "data": { + "version": "7.12.1", + "packageName": "@babel/polyfill", + "hash": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==" + } + }, + "npm:@babel/preset-env": { + "type": "npm", + "name": "npm:@babel/preset-env", + "data": { + "version": "7.23.2", + "packageName": "@babel/preset-env", + "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" + } + }, + "npm:@babel/preset-flow": { + "type": "npm", + "name": "npm:@babel/preset-flow", + "data": { + "version": "7.14.5", + "packageName": "@babel/preset-flow", + "hash": "sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg==" + } + }, + "npm:@babel/preset-modules": { + "type": "npm", + "name": "npm:@babel/preset-modules", + "data": { + "version": "0.1.6-no-external-plugins", + "packageName": "@babel/preset-modules", + "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" + } + }, + "npm:@babel/preset-react": { + "type": "npm", + "name": "npm:@babel/preset-react", + "data": { + "version": "7.22.15", + "packageName": "@babel/preset-react", + "hash": "sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==" + } + }, + "npm:@babel/preset-typescript": { + "type": "npm", + "name": "npm:@babel/preset-typescript", + "data": { + "version": "7.23.2", + "packageName": "@babel/preset-typescript", + "hash": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==" + } + }, + "npm:@babel/register": { + "type": "npm", + "name": "npm:@babel/register", + "data": { + "version": "7.22.15", + "packageName": "@babel/register", + "hash": "sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:@babel/runtime-corejs3": { + "type": "npm", + "name": "npm:@babel/runtime-corejs3", + "data": { + "version": "7.12.13", + "packageName": "@babel/runtime-corejs3", + "hash": "sha512-8fSpqYRETHATtNitsCXq8QQbKJP31/KnDl2Wz2Vtui9nKzjss2ysuZtyVsWjBtvkeEFo346gkwjYPab1hvrXkQ==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.23.2", + "packageName": "@babel/runtime", + "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" + } + }, + "npm:@babel/standalone": { + "type": "npm", + "name": "npm:@babel/standalone", + "data": { + "version": "7.23.2", + "packageName": "@babel/standalone", + "hash": "sha512-VJNw7OS26JvB6rE9XpbT6uQeQIEBWU5eeHGS4VR/+/4ZoKdLBXLcy66ZVJ/9IBkK1RMp8B0cohvhzdKWtJAGmg==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.22.15", + "packageName": "@babel/template", + "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.23.2", + "packageName": "@babel/traverse", + "hash": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.23.0", + "packageName": "@babel/types", + "hash": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==" + } + }, + "npm:@base2/pretty-print-object": { + "type": "npm", + "name": "npm:@base2/pretty-print-object", + "data": { + "version": "1.0.1", + "packageName": "@base2/pretty-print-object", + "hash": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@cactuslab/usepubsub": { + "type": "npm", + "name": "npm:@cactuslab/usepubsub", + "data": { + "version": "1.0.2", + "packageName": "@cactuslab/usepubsub", + "hash": "sha512-xNl3YemJ+aTDgs7MRlmGla7TGDVowtZ/FAF5DaHfR5EJaM4tV5EvK0FIk9hz/lt3AHXL+vxnBoyf4z2Z1sYzJA==" + } + }, + "npm:@charlietango/use-client-hydrated": { + "type": "npm", + "name": "npm:@charlietango/use-client-hydrated", + "data": { + "version": "1.8.2", + "packageName": "@charlietango/use-client-hydrated", + "hash": "sha512-Wlr6MvlCvmPVwAW8Hc/UZaAnNAKfRs2h3vkOFMFSqhaiQp+zix/ZQd+LhoY4iRGJNMhtNuOnht1ShOAz4odTIQ==" + } + }, + "npm:@charlietango/use-script": { + "type": "npm", + "name": "npm:@charlietango/use-script", + "data": { + "version": "2.1.1", + "packageName": "@charlietango/use-script", + "hash": "sha512-g6sbWV4Vg0eqbhL1z90dO3ZsMrF0EHWCw0//M4iE9OwJf9r7x0y7a+KcPb2+Myu96tT35NsmNnIeww4rSG95jQ==" + } + }, + "npm:@cnakazawa/watch": { + "type": "npm", + "name": "npm:@cnakazawa/watch", + "data": { + "version": "1.0.3", + "packageName": "@cnakazawa/watch", + "hash": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.5.0", + "packageName": "@colors/colors", + "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@ctrl/tinycolor": { + "type": "npm", + "name": "npm:@ctrl/tinycolor", + "data": { + "version": "3.3.4", + "packageName": "@ctrl/tinycolor", + "hash": "sha512-8vmPV/nIULFDWsnJalQJDqFLC2uTPx6A/ASA2t27QGp+7oXnbWWXCe0uV8xasIH2rGbI/XoB2vmkdP/94WvMrw==" + } + }, + "npm:@cypress/mount-utils": { + "type": "npm", + "name": "npm:@cypress/mount-utils", + "data": { + "version": "1.0.2", + "packageName": "@cypress/mount-utils", + "hash": "sha512-Fn3fdTiyayHoy8Ol0RSu4MlBH2maQ2ZEXeEVKl/zHHXEQpld5HX3vdNLhK5YLij8cLynA4DxOT/nO9iEnIiOXw==" + } + }, + "npm:@cypress/react": { + "type": "npm", + "name": "npm:@cypress/react", + "data": { + "version": "5.12.4", + "packageName": "@cypress/react", + "hash": "sha512-d44InxWKmwQKyCMQT/3n1UplYa39yKEQTPlb2HhXF6ickqtmhxw7kePv00yrJpBc9gy2jUkNUOfCbtt2uz1kUw==" + } + }, + "npm:@cypress/request": { + "type": "npm", + "name": "npm:@cypress/request", + "data": { + "version": "2.88.10", + "packageName": "@cypress/request", + "hash": "sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg==" + } + }, + "npm:@cypress/webpack-dev-server": { + "type": "npm", + "name": "npm:@cypress/webpack-dev-server", + "data": { + "version": "1.8.3", + "packageName": "@cypress/webpack-dev-server", + "hash": "sha512-r5udgc5ZhXYsnjhen+CI3CRjAjqY2UszbLQcda0np2JjLfLQX+F/bTF6g5NYWr3BMurXalC8JAZUrsBgvE0Wqw==" + } + }, + "npm:@cypress/xvfb": { + "type": "npm", + "name": "npm:@cypress/xvfb", + "data": { + "version": "1.2.4", + "packageName": "@cypress/xvfb", + "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" + } + }, + "npm:@discoveryjs/json-ext": { + "type": "npm", + "name": "npm:@discoveryjs/json-ext", + "data": { + "version": "0.5.6", + "packageName": "@discoveryjs/json-ext", + "hash": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==" + } + }, + "npm:@dnd-kit/accessibility": { + "type": "npm", + "name": "npm:@dnd-kit/accessibility", + "data": { + "version": "3.0.1", + "packageName": "@dnd-kit/accessibility", + "hash": "sha512-HXRrwS9YUYQO9lFRc/49uO/VICbM+O+ZRpFDe9Pd1rwVv2PCNkRiTZRdxrDgng/UkvdC3Re9r2vwPpXXrWeFzg==" + } + }, + "npm:@dnd-kit/core": { + "type": "npm", + "name": "npm:@dnd-kit/core", + "data": { + "version": "6.0.8", + "packageName": "@dnd-kit/core", + "hash": "sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA==" + } + }, + "npm:@dnd-kit/sortable": { + "type": "npm", + "name": "npm:@dnd-kit/sortable", + "data": { + "version": "7.0.2", + "packageName": "@dnd-kit/sortable", + "hash": "sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA==" + } + }, + "npm:@dnd-kit/utilities": { + "type": "npm", + "name": "npm:@dnd-kit/utilities", + "data": { + "version": "3.2.1", + "packageName": "@dnd-kit/utilities", + "hash": "sha512-OOXqISfvBw/1REtkSK2N3Fi2EQiLMlWUlqnOK/UpOISqBZPWpE6TqL+jcPtMOkE8TqYGiURvRdPSI9hltNUjEA==" + } + }, + "npm:@dsherret/to-absolute-glob": { + "type": "npm", + "name": "npm:@dsherret/to-absolute-glob", + "data": { + "version": "2.0.2", + "packageName": "@dsherret/to-absolute-glob", + "hash": "sha1-H2R13IvZdM6gei2vOGSzF7HdMyw=" + } + }, + "npm:@effect/data@0.12.5": { + "type": "npm", + "name": "npm:@effect/data@0.12.5", + "data": { + "version": "0.12.5", + "packageName": "@effect/data", + "hash": "sha512-gmHSsG4earpIWufwCNT1R1pZ5BIe7z0bMmexnAFOT9csc8bwTSzk1e5QAd/65/vyczf/cMMrXgjpasdxlJ5POA==" + } + }, + "npm:@effect/data": { + "type": "npm", + "name": "npm:@effect/data", + "data": { + "version": "0.12.10", + "packageName": "@effect/data", + "hash": "sha512-zIz/DgumH2LgGdr1Wc9ChET5JSG0k/G5kDc8rn4a6yIJ0v2d5rfnbRWIJO2fWmdFvc+128JyaBvYguIyz9JaAQ==" + } + }, + "npm:@effect/io": { + "type": "npm", + "name": "npm:@effect/io", + "data": { + "version": "0.26.0", + "packageName": "@effect/io", + "hash": "sha512-umwZ/sRoV7zb/8WwoiK7xWoypqvY6C1EXWEGORpViAFUTx3/bXc9i7JtdttTWVokXb3qogrxGX2SHopB20I4vQ==" + } + }, + "npm:@effect/match": { + "type": "npm", + "name": "npm:@effect/match", + "data": { + "version": "0.24.4", + "packageName": "@effect/match", + "hash": "sha512-oo0uzazHhlDm4shxiMQep5osHsEZmBX6uhB9GM2RXseDahwsKrOp5Q3cMr/J4ZfhruH/0/o7GEhLLHxpwhEtuA==" + } + }, + "npm:@effect/schema": { + "type": "npm", + "name": "npm:@effect/schema", + "data": { + "version": "0.20.3", + "packageName": "@effect/schema", + "hash": "sha512-pjJW9QkHZd2/fq7Bhd6pAOidMJ0OUODOeUlesPDK0jpo62AaU9g+IGXt3v5NU8rXSX77igZgfK08XhmofwHn0A==" + } + }, + "npm:@emotion/cache": { + "type": "npm", + "name": "npm:@emotion/cache", + "data": { + "version": "10.0.27", + "packageName": "@emotion/cache", + "hash": "sha512-Zp8BEpbMunFsTcqAK4D7YTm3MvCp1SekflSLJH8lze2fCcSZ/yMkXHo8kb3t1/1Tdd3hAqf3Fb7z9VZ+FMiC9w==" + } + }, + "npm:@emotion/cache@11.4.0": { + "type": "npm", + "name": "npm:@emotion/cache@11.4.0", + "data": { + "version": "11.4.0", + "packageName": "@emotion/cache", + "hash": "sha512-Zx70bjE7LErRO9OaZrhf22Qye1y4F7iDl+ITjet0J+i+B88PrAOBkKvaAWhxsZf72tDLajwCgfCjJ2dvH77C3g==" + } + }, + "npm:@emotion/core": { + "type": "npm", + "name": "npm:@emotion/core", + "data": { + "version": "10.1.1", + "packageName": "@emotion/core", + "hash": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==" + } + }, + "npm:@emotion/css": { + "type": "npm", + "name": "npm:@emotion/css", + "data": { + "version": "10.0.27", + "packageName": "@emotion/css", + "hash": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==" + } + }, + "npm:@emotion/hash": { + "type": "npm", + "name": "npm:@emotion/hash", + "data": { + "version": "0.7.4", + "packageName": "@emotion/hash", + "hash": "sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A==" + } + }, + "npm:@emotion/hash@0.8.0": { + "type": "npm", + "name": "npm:@emotion/hash@0.8.0", + "data": { + "version": "0.8.0", + "packageName": "@emotion/hash", + "hash": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + } + }, + "npm:@emotion/hash@0.9.1": { + "type": "npm", + "name": "npm:@emotion/hash@0.9.1", + "data": { + "version": "0.9.1", + "packageName": "@emotion/hash", + "hash": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" + } + }, + "npm:@emotion/is-prop-valid": { + "type": "npm", + "name": "npm:@emotion/is-prop-valid", + "data": { + "version": "0.8.8", + "packageName": "@emotion/is-prop-valid", + "hash": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" + } + }, + "npm:@emotion/memoize": { + "type": "npm", + "name": "npm:@emotion/memoize", + "data": { + "version": "0.7.4", + "packageName": "@emotion/memoize", + "hash": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + } + }, + "npm:@emotion/serialize": { + "type": "npm", + "name": "npm:@emotion/serialize", + "data": { + "version": "0.11.15", + "packageName": "@emotion/serialize", + "hash": "sha512-YE+qnrmGwyR+XB5j7Bi+0GT1JWsdcjM/d4POu+TXkcnrRs4RFCCsi3d/Ebf+wSStHqAlTT2+dfd+b9N9EO2KBg==" + } + }, + "npm:@emotion/serialize@1.0.2": { + "type": "npm", + "name": "npm:@emotion/serialize@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "@emotion/serialize", + "hash": "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==" + } + }, + "npm:@emotion/sheet": { + "type": "npm", + "name": "npm:@emotion/sheet", + "data": { + "version": "0.9.4", + "packageName": "@emotion/sheet", + "hash": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + } + }, + "npm:@emotion/sheet@1.0.1": { + "type": "npm", + "name": "npm:@emotion/sheet@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "@emotion/sheet", + "hash": "sha512-GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g==" + } + }, + "npm:@emotion/stylis": { + "type": "npm", + "name": "npm:@emotion/stylis", + "data": { + "version": "0.8.5", + "packageName": "@emotion/stylis", + "hash": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + } + }, + "npm:@emotion/unitless": { + "type": "npm", + "name": "npm:@emotion/unitless", + "data": { + "version": "0.7.5", + "packageName": "@emotion/unitless", + "hash": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + } + }, + "npm:@emotion/utils": { + "type": "npm", + "name": "npm:@emotion/utils", + "data": { + "version": "0.11.3", + "packageName": "@emotion/utils", + "hash": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + } + }, + "npm:@emotion/utils@1.0.0": { + "type": "npm", + "name": "npm:@emotion/utils@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "@emotion/utils", + "hash": "sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==" + } + }, + "npm:@emotion/weak-memoize": { + "type": "npm", + "name": "npm:@emotion/weak-memoize", + "data": { + "version": "0.2.5", + "packageName": "@emotion/weak-memoize", + "hash": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + } + }, + "npm:@es-joy/jsdoccomment": { + "type": "npm", + "name": "npm:@es-joy/jsdoccomment", + "data": { + "version": "0.36.1", + "packageName": "@es-joy/jsdoccomment", + "hash": "sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==" + } + }, + "npm:@esbuild/android-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-lsB65vAbe90I/Qe10OjkmrdxSX4UJDjosDgb8sZUKcg3oefEuW2OT2Vozz8ef7wrJbMcmhvCC+hciF8jY/uAkw==" + } + }, + "npm:@esbuild/android-arm@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/android-arm", + "hash": "sha512-tM8yLeYVe7pRyAu9VMi/Q7aunpLwD139EY1S99xbQkT4/q2qa6eA4ige/WJQYdJ8GBL1K33pPFhPfPdJ/WzT8Q==" + } + }, + "npm:@esbuild/android-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/android-x64", + "hash": "sha512-qK/TpmHt2M/Hg82WXHRc/W/2SGo/l1thtDHZWqFq7oi24AjZ4O/CpPSu6ZuYKFkEgmZlFoa7CooAyYmuvnaG8w==" + } + }, + "npm:@esbuild/darwin-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-Ora8JokrvrzEPEpZO18ZYXkH4asCdc1DLdcVy8TGf5eWtPO1Ie4WroEJzwI52ZGtpODy3+m0a2yEX9l+KUn0tA==" + } + }, + "npm:@esbuild/darwin-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-tP+B5UuIbbFMj2hQaUr6EALlHOIOmlLM2FK7jeFBobPy2ERdohI4Ka6ZFjZ1ZYsrHE/hZimGuU90jusRE0pwDw==" + } + }, + "npm:@esbuild/freebsd-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-YbPY2kc0acfzL1VPVK6EnAlig4f+l8xmq36OZkU0jzBVHcOTyQDhnKQaLzZudNJQyymd9OqQezeaBgkTGdTGeQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-nSO5uZT2clM6hosjWHAsS15hLrwCvIWx+b2e3lZ3MwbYSaXwvfO528OF+dLjas1g3bZonciivI8qKR/Hm7IWGw==" + } + }, + "npm:@esbuild/linux-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-ig2P7GeG//zWlU0AggA3pV1h5gdix0MA3wgB+NsnBXViwiGgY77fuN9Wr5uoCrs2YzaYfogXgsWZbm+HGr09xg==" + } + }, + "npm:@esbuild/linux-arm@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-Odalh8hICg7SOD7XCj0YLpYCEc+6mkoq63UnExDCiRA2wXEmGlK5JVrW50vZR9Qz4qkvqnHcpH+OFEggO3PgTg==" + } + }, + "npm:@esbuild/linux-ia32@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-mLfp0ziRPOLSTek0Gd9T5B8AtzKAkoZE70fneiiyPlSnUKKI4lp+mGEnQXcQEHLJAcIYDPSyBvsUbKUG2ri/XQ==" + } + }, + "npm:@esbuild/linux-loong64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-hn28+JNDTxxCpnYjdDYVMNTR3SKavyLlCHHkufHV91fkewpIyQchS1d8wSbmXhs1fiYDpNww8KTFlJ1dHsxeSw==" + } + }, + "npm:@esbuild/linux-mips64el@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-KbXaC0Sejt7vD2fEgPoIKb6nxkfYW9OmFUK9XQE4//PvGIxNIfPk1NmlHmMg6f25x57rpmEFrn1OotASYIAaTg==" + } + }, + "npm:@esbuild/linux-ppc64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-dJ0kE8KTqbiHtA3Fc/zn7lCd7pqVr4JcT0JqOnbj4LLzYnp+7h8Qi4yjfq42ZlHfhOCM42rBh0EwHYLL6LEzcw==" + } + }, + "npm:@esbuild/linux-riscv64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-7Z/jKNFufZ/bbu4INqqCN6DDlrmOTmdw6D0gH+6Y7auok2r02Ur661qPuXidPOJ+FSgbEeQnnAGgsVynfLuOEw==" + } + }, + "npm:@esbuild/linux-s390x@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-U+RinR6aXXABFCcAY4gSlv4CL1oOVvSSCdseQmGO66H+XyuQGZIUdhG56SZaDJQcLmrSfRmx5XZOWyCJPRqS7g==" + } + }, + "npm:@esbuild/linux-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-oxzHTEv6VPm3XXNaHPyUTTte+3wGv7qVQtqaZCrgstI16gCuhNOtBXLEBkBREP57YTd68P0VgDgG73jSD8bwXQ==" + } + }, + "npm:@esbuild/netbsd-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-WNa5zZk1XpTTwMDompZmvQLHszDDDN7lYjEHCUmAGB83Bgs20EMs7ICD+oKeT6xt4phV4NDdSi/8OfjPbSbZfQ==" + } + }, + "npm:@esbuild/openbsd-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-S6kI1aT3S++Dedb7vxIuUOb3oAxqxk2Rh5rOXOTYnzN8JzW1VzBd+IqPiSpgitu45042SYD3HCoEyhLKQcDFDw==" + } + }, + "npm:@esbuild/sunos-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-VXSSMsmb+Z8LbsQGcBMiM+fYObDNRm8p7tkUDMPG/g4fhFX5DEFmjxIEa3N8Zr96SjsJ1woAhF0DUnS3MF3ARw==" + } + }, + "npm:@esbuild/win32-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-5NayUlSAyb5PQYFAU9x3bHdsqB88RC3aM9lKDAz4X1mo/EchMIT1Q+pSeBXNgkfNmRecLXA0O8xP+x8V+g/LKg==" + } + }, + "npm:@esbuild/win32-ia32@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-47gL/ek1v36iN0wL9L4Q2MFdujR0poLZMJwhO2/N3gA89jgHp4MR8DKCmwYtGNksbfJb9JoTtbkoe6sDhg2QTA==" + } + }, + "npm:@esbuild/win32-x64": { + "type": "npm", + "name": "npm:@esbuild/win32-x64", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-tcuhV7ncXBqbt/Ybf0IyrMcwVOAPDckMK9rXNHtF17UTK18OKLpg08glminN06pt2WCoALhXdLfSPbVvK/6fxw==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "0.4.3", + "packageName": "@eslint/eslintrc", + "hash": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==" + } + }, + "npm:@floating-ui/core": { + "type": "npm", + "name": "npm:@floating-ui/core", + "data": { + "version": "1.2.0", + "packageName": "@floating-ui/core", + "hash": "sha512-GHUXPEhMEmTpnpIfesFA2KAoMJPb1SPQw964tToQwt+BbGXdhqTCWT1rOb0VURGylsxsYxiGMnseJ3IlclVpVA==" + } + }, + "npm:@floating-ui/devtools": { + "type": "npm", + "name": "npm:@floating-ui/devtools", + "data": { + "version": "0.0.1", + "packageName": "@floating-ui/devtools", + "hash": "sha512-itUtNTkiHPfvRDOrAFKLCYEEZ3PrSIir44El6AoBBl7IbmciAx4CxXVfIWjSCIZdZnHFaeXg6vIfEukqC3Z6bw==" + } + }, + "npm:@floating-ui/dom": { + "type": "npm", + "name": "npm:@floating-ui/dom", + "data": { + "version": "1.2.0", + "packageName": "@floating-ui/dom", + "hash": "sha512-QXzg57o1cjLz3cGETzKXjI3kx1xyS49DW9l7kV2jw2c8Yftd434t2hllX0sVGn2Q8MtcW/4pNm8bfE1/4n6mng==" + } + }, + "npm:@fluentui/dom-utilities@1.1.1": { + "type": "npm", + "name": "npm:@fluentui/dom-utilities@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "@fluentui/dom-utilities", + "hash": "sha512-w40gi8fzCpwa7U8cONiuu8rszPStkVOL/weDf5pCbYEb1gdaV7MDPSNkgM6IV0Kz+k017noDgK9Fv4ru1Dwz1g==" + } + }, + "npm:@fluentui/react-icons": { + "type": "npm", + "name": "npm:@fluentui/react-icons", + "data": { + "version": "2.0.217", + "packageName": "@fluentui/react-icons", + "hash": "sha512-kTaocW+UuLTzEaTobzQTQZX5lamall7U8p4n9aibcGQYeNPtxhRvdNJK8SNkKoSGCukx46mB2hDfc0mKvky+wQ==" + } + }, + "npm:@gar/promisify": { + "type": "npm", + "name": "npm:@gar/promisify", + "data": { + "version": "1.1.3", + "packageName": "@gar/promisify", + "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + } + }, + "npm:@griffel/babel-preset": { + "type": "npm", + "name": "npm:@griffel/babel-preset", + "data": { + "version": "1.4.20", + "packageName": "@griffel/babel-preset", + "hash": "sha512-fN3ntaNnshPY6rY8ysNrQgo/EdheZjcAi/xT8hBVV85VHFjuTkL+aKA2S3Ufea4gdSt9R4eGavMkPsO08r8dEA==" + } + }, + "npm:@griffel/core": { + "type": "npm", + "name": "npm:@griffel/core", + "data": { + "version": "1.14.1", + "packageName": "@griffel/core", + "hash": "sha512-KQ6yueap1zff9TJrn7MdfSAHDMDVP6Ec97gnpCi4NOeKiyCyT13MwPCmkkK0o/poaV1f9MdHhUTQZCpK0QtxzQ==" + } + }, + "npm:@griffel/eslint-plugin": { + "type": "npm", + "name": "npm:@griffel/eslint-plugin", + "data": { + "version": "1.2.0", + "packageName": "@griffel/eslint-plugin", + "hash": "sha512-ThqQR1UIeM+WZH1z8RUrKHCDuSXrFEwRIL4nX0UmBZznV/36DiGzODOQl6ZoZ9eCGoGYxTnl6riwy/1cB/0yGA==" + } + }, + "npm:@griffel/jest-serializer": { + "type": "npm", + "name": "npm:@griffel/jest-serializer", + "data": { + "version": "1.1.16", + "packageName": "@griffel/jest-serializer", + "hash": "sha512-43EK5EdX/xsSKQl7ObLfM/IxiZU6imlkFoJj7bzsP7aykMn6xePe11oAwMcZb+lMmiP/gtEsNMvsi1UBt+6NFw==" + } + }, + "npm:@griffel/react": { + "type": "npm", + "name": "npm:@griffel/react", + "data": { + "version": "1.5.14", + "packageName": "@griffel/react", + "hash": "sha512-/x6cy6xMtpow1r+Zrw/hMKHwo+imFAgKaZ3A/+M8GyT3L9AFxK1Kyg4JvARPjLBAn9Q2q5dkCr78jOguuVSScg==" + } + }, + "npm:@griffel/shadow-dom": { + "type": "npm", + "name": "npm:@griffel/shadow-dom", + "data": { + "version": "0.1.5", + "packageName": "@griffel/shadow-dom", + "hash": "sha512-/4MUZd1udyX7OMwqfjbZrBdAnjCbz/BqsIxsX/N/2yLMDA9lmiJonySi6NGLKzoGphGy+tAgBkCh2t4YBI1Phg==" + } + }, + "npm:@griffel/style-types": { + "type": "npm", + "name": "npm:@griffel/style-types", + "data": { + "version": "1.0.1", + "packageName": "@griffel/style-types", + "hash": "sha512-nhVryiNHhoBt5L93tfDYGoE4KtWvhBvY7y1yR1n6WKpRjasgw3GI2pBwiMiVt68bycnyvXIvcJjJTr0QM22VLQ==" + } + }, + "npm:@griffel/webpack-extraction-plugin": { + "type": "npm", + "name": "npm:@griffel/webpack-extraction-plugin", + "data": { + "version": "0.3.18", + "packageName": "@griffel/webpack-extraction-plugin", + "hash": "sha512-FYqaacXXMG3ekAXdpkS6Snc/ECW095pMIvLY8bDtOkNZidslbbg5gF/KqVrOqRcR3gDPXLpT3GylfGEHVrvEgw==" + } + }, + "npm:@griffel/webpack-loader": { + "type": "npm", + "name": "npm:@griffel/webpack-loader", + "data": { + "version": "2.1.20", + "packageName": "@griffel/webpack-loader", + "hash": "sha512-R4Sk64rZIkWuTQX0mpzOFm5ULJ0HpnD3GMxOvprqNTpQmaCaL89FHOMc1le90s25clQfmxTAZuCueBOJHYxNCA==" + } + }, + "npm:@gulp-sourcemaps/identity-map": { + "type": "npm", + "name": "npm:@gulp-sourcemaps/identity-map", + "data": { + "version": "1.0.2", + "packageName": "@gulp-sourcemaps/identity-map", + "hash": "sha512-ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ==" + } + }, + "npm:@gulp-sourcemaps/map-sources": { + "type": "npm", + "name": "npm:@gulp-sourcemaps/map-sources", + "data": { + "version": "1.0.0", + "packageName": "@gulp-sourcemaps/map-sources", + "hash": "sha1-iQrnxdjId/bThIYCFazp1+yUW9o=" + } + }, + "npm:@hot-loader/react-dom@17.0.2": { + "type": "npm", + "name": "npm:@hot-loader/react-dom@17.0.2", + "data": { + "version": "17.0.2", + "packageName": "@hot-loader/react-dom", + "hash": "sha512-G2RZrFhsQClS+bdDh/Ojpk3SgocLPUGnvnJDTQYnmKSSwXtU+Yh+8QMs+Ia3zaAvBiOSpIIDSUxuN69cvKqrWg==" + } + }, + "npm:@hutson/parse-repository-url": { + "type": "npm", + "name": "npm:@hutson/parse-repository-url", + "data": { + "version": "3.0.2", + "packageName": "@hutson/parse-repository-url", + "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.2", + "packageName": "@istanbuljs/schema", + "hash": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==" + } + }, + "npm:@jest/console": { + "type": "npm", + "name": "npm:@jest/console", + "data": { + "version": "29.7.0", + "packageName": "@jest/console", + "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" + } + }, + "npm:@jest/core": { + "type": "npm", + "name": "npm:@jest/core", + "data": { + "version": "29.7.0", + "packageName": "@jest/core", + "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" + } + }, + "npm:@jest/environment": { + "type": "npm", + "name": "npm:@jest/environment", + "data": { + "version": "29.7.0", + "packageName": "@jest/environment", + "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" + } + }, + "npm:@jest/expect-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect", + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" + } + }, + "npm:@jest/fake-timers": { + "type": "npm", + "name": "npm:@jest/fake-timers", + "data": { + "version": "29.7.0", + "packageName": "@jest/fake-timers", + "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" + } + }, + "npm:@jest/globals": { + "type": "npm", + "name": "npm:@jest/globals", + "data": { + "version": "29.7.0", + "packageName": "@jest/globals", + "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" + } + }, + "npm:@jest/reporters": { + "type": "npm", + "name": "npm:@jest/reporters", + "data": { + "version": "29.7.0", + "packageName": "@jest/reporters", + "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "29.6.3", + "packageName": "@jest/schemas", + "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" + } + }, + "npm:@jest/source-map": { + "type": "npm", + "name": "npm:@jest/source-map", + "data": { + "version": "29.6.3", + "packageName": "@jest/source-map", + "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" + } + }, + "npm:@jest/test-result": { + "type": "npm", + "name": "npm:@jest/test-result", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-result", + "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" + } + }, + "npm:@jest/test-sequencer": { + "type": "npm", + "name": "npm:@jest/test-sequencer", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-sequencer", + "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" + } + }, + "npm:@jest/transform@26.6.2": { + "type": "npm", + "name": "npm:@jest/transform@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "@jest/transform", + "hash": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==" + } + }, + "npm:@jest/transform": { + "type": "npm", + "name": "npm:@jest/transform", + "data": { + "version": "29.7.0", + "packageName": "@jest/transform", + "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" + } + }, + "npm:@jest/types@25.5.0": { + "type": "npm", + "name": "npm:@jest/types@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "@jest/types", + "hash": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==" + } + }, + "npm:@jest/types@26.6.2": { + "type": "npm", + "name": "npm:@jest/types@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "@jest/types", + "hash": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" + } + }, + "npm:@jest/types": { + "type": "npm", + "name": "npm:@jest/types", + "data": { + "version": "29.6.3", + "packageName": "@jest/types", + "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" + } + }, + "npm:@jridgewell/gen-mapping@0.1.1": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping@0.1.1", + "data": { + "version": "0.1.1", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.2", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.0", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.2", + "packageName": "@jridgewell/source-map", + "hash": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.14", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.19", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==" + } + }, + "npm:@lage-run/logger": { + "type": "npm", + "name": "npm:@lage-run/logger", + "data": { + "version": "1.1.1", + "packageName": "@lage-run/logger", + "hash": "sha512-8ZWHKCnnOYdLlLS2sSrMRZ4PM3oY5uqc2JN1RptSaKg8tR8g6ITMRmJ04/J4OqqiXiWVv2vozGt9pgxJLI2i7A==" + } + }, + "npm:@lerna/child-process": { + "type": "npm", + "name": "npm:@lerna/child-process", + "data": { + "version": "7.1.3", + "packageName": "@lerna/child-process", + "hash": "sha512-ZXHo30G5Ia/RCWKVyBm+3kAe/liWy7KaRF+CPWZpxYo+ysFPBIJ/7XZlGMzmq8fQaMsPj1z61q4wyqeAlUwuvQ==" + } + }, + "npm:@lerna/create": { + "type": "npm", + "name": "npm:@lerna/create", + "data": { + "version": "7.1.3", + "packageName": "@lerna/create", + "hash": "sha512-i/xUmT7sMNTUhGpSUuQJ8N776YiT/fJaKPrzMSAoxqDBhyDryi4o4JUR+rrN9oELOEsO+SOXQEusBdkmUdVTMg==" + } + }, + "npm:@linaria/babel-preset": { + "type": "npm", + "name": "npm:@linaria/babel-preset", + "data": { + "version": "3.0.0-beta.23", + "packageName": "@linaria/babel-preset", + "hash": "sha512-NhxUZokEq12RLpDo4v/f59dB9A/1BbLgGLFotnrDzNBHfylm0qXSIIel68pZOXUB5lVdPJHqZWcT2zxbpGW6fA==" + } + }, + "npm:@linaria/core": { + "type": "npm", + "name": "npm:@linaria/core", + "data": { + "version": "3.0.0-beta.22", + "packageName": "@linaria/core", + "hash": "sha512-BPSecW8QmhQ0y+5cWXEja+MTmLsuo0T1PjqRlSWsmDgjJFFObqCnPEgbR1KNtQb3Msmx1/9q3dYKpA5Zk3g8KQ==" + } + }, + "npm:@linaria/logger": { + "type": "npm", + "name": "npm:@linaria/logger", + "data": { + "version": "3.0.0-beta.20", + "packageName": "@linaria/logger", + "hash": "sha512-wCxWnldCHf7HXdLG3QtbKyBur+z5V1qZTouSEvcVYDfd4aSRPOi/jLdwsZlsUq2PFGpA3jW6JnreZJ/vxuEl7g==" + } + }, + "npm:@linaria/preeval": { + "type": "npm", + "name": "npm:@linaria/preeval", + "data": { + "version": "3.0.0-beta.22", + "packageName": "@linaria/preeval", + "hash": "sha512-/PS86ljXBu3HVLTRd2sn/5wxD4ywnlTUGZPMMFlZDGuBCHlMZehD7xE6VbX6t/JZtOAylU8vDi2RYum96evHAw==" + } + }, + "npm:@linaria/shaker": { + "type": "npm", + "name": "npm:@linaria/shaker", + "data": { + "version": "3.0.0-beta.22", + "packageName": "@linaria/shaker", + "hash": "sha512-NOi71i/XfBJpBOT5eepRvv6B64IMdjsKwv+vxLW+IuFHx3wnqXgZsgimNK2qoXbpqy9xWsSEeB/4QA4m8GCUKQ==" + } + }, + "npm:@linaria/utils": { + "type": "npm", + "name": "npm:@linaria/utils", + "data": { + "version": "3.0.0-beta.20", + "packageName": "@linaria/utils", + "hash": "sha512-SKRC9dBApzu0kTksVtGZ7eJz1vMu7xew/JEAjQj6XTQDblzWpTPyKQHBOGXNkqXjIB8PwAqWfvKzKapzaOwQaQ==" + } + }, + "npm:@mdx-js/loader": { + "type": "npm", + "name": "npm:@mdx-js/loader", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/loader", + "hash": "sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==" + } + }, + "npm:@mdx-js/mdx": { + "type": "npm", + "name": "npm:@mdx-js/mdx", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/mdx", + "hash": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==" + } + }, + "npm:@mdx-js/react": { + "type": "npm", + "name": "npm:@mdx-js/react", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/react", + "hash": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==" + } + }, + "npm:@mdx-js/util": { + "type": "npm", + "name": "npm:@mdx-js/util", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/util", + "hash": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" + } + }, + "npm:@microsoft/api-extractor-model": { + "type": "npm", + "name": "npm:@microsoft/api-extractor-model", + "data": { + "version": "7.24.2", + "packageName": "@microsoft/api-extractor-model", + "hash": "sha512-uUvjqTCY7hYERWGks+joTioN1QYHIucCDy7I/JqLxFxLbFXE5dpc1X7L+FG4PN/s8QYL24DKt0fqJkgcrFKLTw==" + } + }, + "npm:@microsoft/api-extractor": { + "type": "npm", + "name": "npm:@microsoft/api-extractor", + "data": { + "version": "7.31.2", + "packageName": "@microsoft/api-extractor", + "hash": "sha512-ZODCU9ckTS9brXiZpUW2iDrnAg7jLxeLBM1AkPpSZFcbG/8HGLvfKOKrd71VIJHjc52x2lB8xj7ZWksnP7AOBA==" + } + }, + "npm:@microsoft/applicationinsights-analytics-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-analytics-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-analytics-js", + "hash": "sha512-vrgEiT6cKC2Yb0Y6rCp9CXjFStlRZLI/IhIiBEGYaUfzoytLxUj6F/AizUDYBuNQfE+CTYe0jNyqf+RJgEMkJQ==" + } + }, + "npm:@microsoft/applicationinsights-channel-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-channel-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-channel-js", + "hash": "sha512-jDBNKbCHsJgmpv0CKNhJ/uN9ZphvfGdb93Svk+R4LjO8L3apNNMbDDPxBvXXi0uigRmA1TBcmyBG4IRKjabGhw==" + } + }, + "npm:@microsoft/applicationinsights-common": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-common", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-common", + "hash": "sha512-y+WXWop+OVim954Cu1uyYMnNx6PWO8okHpZIQi/1YSqtqaYdtJVPv4P0AVzwJdohxzVfgzKvqj9nec/VWqE2Zg==" + } + }, + "npm:@microsoft/applicationinsights-core-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-core-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-core-js", + "hash": "sha512-WQhVhzlRlLDrQzn3OShCW/pL3BW5WC57t0oywSknX3q7lMzI3jDg7Ihh0iuIcNTzGCTbDkuqr4d6IjEDWIMtJQ==" + } + }, + "npm:@microsoft/applicationinsights-dependencies-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-dependencies-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-dependencies-js", + "hash": "sha512-b/YTonnbghg9DOFsLg4zdbYPafW8fPIzV+nZxfPPpxjA1LGvPhZz/zVx9YYWJg2RBXjojLQoJxLf1ro5eNGVig==" + } + }, + "npm:@microsoft/applicationinsights-properties-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-properties-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-properties-js", + "hash": "sha512-PFqicp8q4Tc0hqfPjwfqKo12gEqTk1l4lMyUUIU7ugE1XOuDkZcMPha05KnZWKj+F4zQXJcetcAHoVkyoyCFQw==" + } + }, + "npm:@microsoft/applicationinsights-shims": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-shims", + "data": { + "version": "3.0.1", + "packageName": "@microsoft/applicationinsights-shims", + "hash": "sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==" + } + }, + "npm:@microsoft/applicationinsights-web": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-web", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-web", + "hash": "sha512-pf2zz/3mmGy1RoyaiLZwhHoE2mFZ+AWR3Zf7xPW7HjTG7dEE4BnovNyW3f9Eu6WWkcHUAHmS/ATzqvVlpB3W6A==" + } + }, + "npm:@microsoft/dynamicproto-js": { + "type": "npm", + "name": "npm:@microsoft/dynamicproto-js", + "data": { + "version": "2.0.2", + "packageName": "@microsoft/dynamicproto-js", + "hash": "sha512-MB8trWaFREpmb037k/d0bB7T2BP7Ai24w1e1tbz3ASLB0/lwphsq3Nq8S9I5AsI5vs4zAQT+SB5nC5/dLYTiOg==" + } + }, + "npm:@microsoft/eslint-plugin-sdl": { + "type": "npm", + "name": "npm:@microsoft/eslint-plugin-sdl", + "data": { + "version": "0.1.9", + "packageName": "@microsoft/eslint-plugin-sdl", + "hash": "sha512-g3XwhU/p/N9yzNWHm8453qraT74LOyCHY39ntHq+zNRn4B0KxSvKh6iXqhnnOYTZBNgsxSpFcejBmdzO47N3oA==" + } + }, + "npm:@microsoft/fast-colors": { + "type": "npm", + "name": "npm:@microsoft/fast-colors", + "data": { + "version": "5.3.1", + "packageName": "@microsoft/fast-colors", + "hash": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" + } + }, + "npm:@microsoft/fast-element": { + "type": "npm", + "name": "npm:@microsoft/fast-element", + "data": { + "version": "1.11.1", + "packageName": "@microsoft/fast-element", + "hash": "sha512-qBGQ94V4ktMMXmxNdgF78TPNImv2ctXUi3Vzj3j2X71gpUcr+Fkat7mLcTNC3y/Jc4W63fAhK2vP3MkwYRS5kQ==" + } + }, + "npm:@microsoft/fast-foundation": { + "type": "npm", + "name": "npm:@microsoft/fast-foundation", + "data": { + "version": "2.48.1", + "packageName": "@microsoft/fast-foundation", + "hash": "sha512-gJR/26hhJipsZ4JD5DSOODb3GFYf7vgCnxS2ag4dj+Mi8ytkAwMPglTOv7v0zsJC2CHqOjY8Ixs66dhepgNkeQ==" + } + }, + "npm:@microsoft/fast-web-utilities": { + "type": "npm", + "name": "npm:@microsoft/fast-web-utilities", + "data": { + "version": "5.4.1", + "packageName": "@microsoft/fast-web-utilities", + "hash": "sha512-ReWYncndjV3c8D8iq9tp7NcFNc1vbVHvcBFPME2nNFKNbS1XCesYZGlIlf3ot5EmuOXPlrzUHOWzQ2vFpIkqDg==" + } + }, + "npm:@microsoft/load-themed-styles": { + "type": "npm", + "name": "npm:@microsoft/load-themed-styles", + "data": { + "version": "1.10.26", + "packageName": "@microsoft/load-themed-styles", + "hash": "sha512-N//pFTBL/iCSrMuDoLvBLpgGjlk+MgKX2kyFI3bJVb+LRozeyWCOZVRcR8aMKiYHdqwy5isu2Frp8drvWx7RbA==" + } + }, + "npm:@microsoft/loader-load-themed-styles": { + "type": "npm", + "name": "npm:@microsoft/loader-load-themed-styles", + "data": { + "version": "2.0.17", + "packageName": "@microsoft/loader-load-themed-styles", + "hash": "sha512-FyQdwbnkgta2pJU4PjyeLp/1/V5OBpZKrUJgrQAhjO7ApCj3X7/eYCxn0DZ+EMNjJKBKF9PUoM0BDPtSZAzJjg==" + } + }, + "npm:@microsoft/tsdoc-config": { + "type": "npm", + "name": "npm:@microsoft/tsdoc-config", + "data": { + "version": "0.16.2", + "packageName": "@microsoft/tsdoc-config", + "hash": "sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==" + } + }, + "npm:@microsoft/tsdoc": { + "type": "npm", + "name": "npm:@microsoft/tsdoc", + "data": { + "version": "0.14.1", + "packageName": "@microsoft/tsdoc", + "hash": "sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==" + } + }, + "npm:@microsoft/tsdoc@0.14.2": { + "type": "npm", + "name": "npm:@microsoft/tsdoc@0.14.2", + "data": { + "version": "0.14.2", + "packageName": "@microsoft/tsdoc", + "hash": "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==" + } + }, + "npm:@mole-inc/bin-wrapper": { + "type": "npm", + "name": "npm:@mole-inc/bin-wrapper", + "data": { + "version": "8.0.1", + "packageName": "@mole-inc/bin-wrapper", + "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" + } + }, + "npm:@mrmlnc/readdir-enhanced": { + "type": "npm", + "name": "npm:@mrmlnc/readdir-enhanced", + "data": { + "version": "2.2.1", + "packageName": "@mrmlnc/readdir-enhanced", + "hash": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==" + } + }, + "npm:@nevware21/ts-async": { + "type": "npm", + "name": "npm:@nevware21/ts-async", + "data": { + "version": "0.2.6", + "packageName": "@nevware21/ts-async", + "hash": "sha512-NCUqEZSbsy7LVtKlUScd/eTst6djkWauLlzoIPVKCOxalEBdO8lrgNRIm4Xy68JNudNN5faqa2WA12X8m0BVhA==" + } + }, + "npm:@nevware21/ts-utils": { + "type": "npm", + "name": "npm:@nevware21/ts-utils", + "data": { + "version": "0.9.8", + "packageName": "@nevware21/ts-utils", + "hash": "sha512-kZ8s8hcn9jPVX/M7kSsBYrOGlHjqLahmxrG7QeKTk5paeVwfgKdvVCjj5Acb4UGb/ukU1G34U1Z3eb7bbVanyA==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.3", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.3", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==" + } + }, + "npm:@nodelib/fs.stat@1.1.3": { + "type": "npm", + "name": "npm:@nodelib/fs.stat@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.4", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==" + } + }, + "npm:@npmcli/ci-detect": { + "type": "npm", + "name": "npm:@npmcli/ci-detect", + "data": { + "version": "1.3.0", + "packageName": "@npmcli/ci-detect", + "hash": "sha512-oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q==" + } + }, + "npm:@npmcli/fs@2.1.2": { + "type": "npm", + "name": "npm:@npmcli/fs@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "@npmcli/fs", + "hash": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" + } + }, + "npm:@npmcli/git@2.0.3": { + "type": "npm", + "name": "npm:@npmcli/git@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "@npmcli/git", + "hash": "sha512-c/ODsV5ppjB12VDXKc6hzVNgg6ZJX/etILUn3WgF5NLAYBhQLJ3fBq6uB2jQD4OwqOzJdPT1/xA3Xh3aaWGk5w==" + } + }, + "npm:@npmcli/git": { + "type": "npm", + "name": "npm:@npmcli/git", + "data": { + "version": "4.1.0", + "packageName": "@npmcli/git", + "hash": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==" + } + }, + "npm:@npmcli/installed-package-contents@1.0.7": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents@1.0.7", + "data": { + "version": "1.0.7", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==" + } + }, + "npm:@npmcli/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.0.2", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" + } + }, + "npm:@npmcli/move-file": { + "type": "npm", + "name": "npm:@npmcli/move-file", + "data": { + "version": "1.0.1", + "packageName": "@npmcli/move-file", + "hash": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==" + } + }, + "npm:@npmcli/move-file@2.0.1": { + "type": "npm", + "name": "npm:@npmcli/move-file@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "@npmcli/move-file", + "hash": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" + } + }, + "npm:@npmcli/node-gyp": { + "type": "npm", + "name": "npm:@npmcli/node-gyp", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/node-gyp", + "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" + } + }, + "npm:@npmcli/promise-spawn": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn", + "data": { + "version": "1.2.0", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-nFtqjVETliApiRdjbYwKwhlSHx2ZMagyj5b9YbNt0BWeeOVxJd47ZVE2u16vxDHyTOZvk+YLV7INwfAE9a2uow==" + } + }, + "npm:@npmcli/promise-spawn@6.0.2": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==" + } + }, + "npm:@npmcli/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" + } + }, + "npm:@npmcli/run-script@1.3.1": { + "type": "npm", + "name": "npm:@npmcli/run-script@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "@npmcli/run-script", + "hash": "sha512-9Ea57XJjNLtBFRAaiKqqdoqRrL2QkM0vvCbMjPecljhog5IHupStPtZULbl0CoGN00N3lhLWJ4PaIEC0MGjqJw==" + } + }, + "npm:@nrwl/devkit": { + "type": "npm", + "name": "npm:@nrwl/devkit", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/devkit", + "hash": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==" + } + }, + "npm:@nrwl/jest": { + "type": "npm", + "name": "npm:@nrwl/jest", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/jest", + "hash": "sha512-hZuIK3xXh4HaE6/Ny8hGidjkJ4aLZjnQtPDxKD/423gznQe2FdHx3avoSlbOEOx5Oc6sJ9QGGZLcvckKQ5uWww==" + } + }, + "npm:@nrwl/js": { + "type": "npm", + "name": "npm:@nrwl/js", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/js", + "hash": "sha512-asybPpyPrxLLDWWdYzFqbgubLmDKLEhoMz8x9MPOm3CH8v2vlIE6hD0JT19GdJArBPxRB33nhjtu8wmJGz5czw==" + } + }, + "npm:@nrwl/linter": { + "type": "npm", + "name": "npm:@nrwl/linter", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/linter", + "hash": "sha512-XvMuTeIc2I3630iaqhlV4w3qgABQIo+kv8mT0DbT1HfjjZDm4ST8hrvkdWSf9mCl24vShNL8GDVQVNOX0bZY5A==" + } + }, + "npm:@nrwl/node": { + "type": "npm", + "name": "npm:@nrwl/node", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/node", + "hash": "sha512-UZ1s02f2IpFRXzVZIBuDLXXB+obyP280RFHV9smYruhOHrj8iA5wXNSXcJJGorwpKP3WCUS/+KS49oVSHOkLUA==" + } + }, + "npm:@nrwl/nx-plugin": { + "type": "npm", + "name": "npm:@nrwl/nx-plugin", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/nx-plugin", + "hash": "sha512-AZiQ+amECFQGcWKhvs+KbqOzGU2dcQydGd0j4Wlz3xlfkEmYfCk80dj26ypSFB+3O+0p+q+HPpJhD0fka3shtw==" + } + }, + "npm:@nrwl/tao": { + "type": "npm", + "name": "npm:@nrwl/tao", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/tao", + "hash": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==" + } + }, + "npm:@nrwl/workspace": { + "type": "npm", + "name": "npm:@nrwl/workspace", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/workspace", + "hash": "sha512-fZeNxhFs/2cm326NebfJIgSI3W4KZN94WGS46wlIBrUUGP5/vwHYsi09Kx6sG1kRkAuZVtgJ33uU2F6xcAWzUA==" + } + }, + "npm:@nx/devkit": { + "type": "npm", + "name": "npm:@nx/devkit", + "data": { + "version": "16.10.0", + "packageName": "@nx/devkit", + "hash": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==" + } + }, + "npm:@nx/jest": { + "type": "npm", + "name": "npm:@nx/jest", + "data": { + "version": "16.10.0", + "packageName": "@nx/jest", + "hash": "sha512-QseeLjDrl4c9q9Dd/057SXYqd47JVLhD2VQlQDraYwjsHz3lWkzlGaaHy0ZrVu8LSzY7lUUhJMPyYO3qo8wT6A==" + } + }, + "npm:@nx/js": { + "type": "npm", + "name": "npm:@nx/js", + "data": { + "version": "16.10.0", + "packageName": "@nx/js", + "hash": "sha512-27AH0/+XTMzOxVS6oV8Zl7/Rr1UDMYsnCVqoCU9CXp087uxcD4VnBOEjsEUlJKh1RdwGE3K0hBkk7NC1LP+vYQ==" + } + }, + "npm:@nx/linter": { + "type": "npm", + "name": "npm:@nx/linter", + "data": { + "version": "16.10.0", + "packageName": "@nx/linter", + "hash": "sha512-G6XBfuMHNHoJDc4n2Gip4fsa9KssT91V5PF2Rd4hILkg4YU8B8mlmHN71stpzwbEyUJtyhyJc5SGgVLrSpRQew==" + } + }, + "npm:@nx/node": { + "type": "npm", + "name": "npm:@nx/node", + "data": { + "version": "16.10.0", + "packageName": "@nx/node", + "hash": "sha512-mOGxsZzLNg9kMy/FDkCQfhb/ig3WsttHxzG9+ynCHBV5svKOIqA3F+EUp1gre6wgRyi/qrEUhk6GER5ZTX2ygw==" + } + }, + "npm:@nx/nx-darwin-arm64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==" + } + }, + "npm:@nx/nx-darwin-x64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==" + } + }, + "npm:@nx/nx-freebsd-x64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==" + } + }, + "npm:@nx/nx-linux-arm64-gnu@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==" + } + }, + "npm:@nx/nx-linux-arm64-musl@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==" + } + }, + "npm:@nx/nx-linux-x64-gnu@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==" + } + }, + "npm:@nx/nx-linux-x64-musl@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==" + } + }, + "npm:@nx/nx-win32-arm64-msvc@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==" + } + }, + "npm:@nx/plugin": { + "type": "npm", + "name": "npm:@nx/plugin", + "data": { + "version": "16.10.0", + "packageName": "@nx/plugin", + "hash": "sha512-oTTl+yZBfj/EBvqp8vxzE/JhavT2lWaWNKBj1B8kNOYDG041Pf6jj7GazcQmPd+g1UM96Ut0HZit/rsoJOTdvQ==" + } + }, + "npm:@nx/workspace": { + "type": "npm", + "name": "npm:@nx/workspace", + "data": { + "version": "16.10.0", + "packageName": "@nx/workspace", + "hash": "sha512-95Eq36bzq2hb095Zvg+Ru8o9oIeOE62tNGGpohBkZPKoK2CUTYEq0AZtdj1suXS82ukCFCyyZ/c/fwxL62HRZA==" + } + }, + "npm:@octokit/auth-token": { + "type": "npm", + "name": "npm:@octokit/auth-token", + "data": { + "version": "2.5.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==" + } + }, + "npm:@octokit/auth-token@3.0.1": { + "type": "npm", + "name": "npm:@octokit/auth-token@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@octokit/auth-token", + "hash": "sha512-/USkK4cioY209wXRpund6HZzHo9GmjakpV9ycOkpMcMxMk7QVcVFVyCMtzvXYiHsB2crgDgrtNYSELYFBXhhaA==" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "3.6.0", + "packageName": "@octokit/core", + "hash": "sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==" + } + }, + "npm:@octokit/core@4.2.4": { + "type": "npm", + "name": "npm:@octokit/core@4.2.4", + "data": { + "version": "4.2.4", + "packageName": "@octokit/core", + "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" + } + }, + "npm:@octokit/endpoint": { + "type": "npm", + "name": "npm:@octokit/endpoint", + "data": { + "version": "6.0.12", + "packageName": "@octokit/endpoint", + "hash": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==" + } + }, + "npm:@octokit/endpoint@7.0.2": { + "type": "npm", + "name": "npm:@octokit/endpoint@7.0.2", + "data": { + "version": "7.0.2", + "packageName": "@octokit/endpoint", + "hash": "sha512-8/AUACfE9vpRpehE6ZLfEtzkibe5nfsSwFZVMsG8qabqRt1M81qZYUFRZa1B8w8lP6cdfDJfRq9HWS+MbmR7tw==" + } + }, + "npm:@octokit/graphql": { + "type": "npm", + "name": "npm:@octokit/graphql", + "data": { + "version": "4.8.0", + "packageName": "@octokit/graphql", + "hash": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==" + } + }, + "npm:@octokit/graphql@5.0.1": { + "type": "npm", + "name": "npm:@octokit/graphql@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "@octokit/graphql", + "hash": "sha512-sxmnewSwAixkP1TrLdE6yRG53eEhHhDTYUykUwdV9x8f91WcbhunIHk9x1PZLALdBZKRPUO2HRcm4kezZ79HoA==" + } + }, + "npm:@octokit/openapi-types@12.11.0": { + "type": "npm", + "name": "npm:@octokit/openapi-types@12.11.0", + "data": { + "version": "12.11.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==" + } + }, + "npm:@octokit/openapi-types@13.12.0": { + "type": "npm", + "name": "npm:@octokit/openapi-types@13.12.0", + "data": { + "version": "13.12.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-1QYzZrwnn3rTQE7ZoSxXrO8lhu0aIbac1c+qIPOPEaVXBWSaUyLV1x9yt4uDQOwmu6u5ywVS8OJgs+ErDLf6vQ==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "18.0.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==" + } + }, + "npm:@octokit/plugin-enterprise-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-enterprise-rest", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-enterprise-rest", + "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "2.21.3", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==" + } + }, + "npm:@octokit/plugin-paginate-rest@6.1.2": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest@6.1.2", + "data": { + "version": "6.1.2", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" + } + }, + "npm:@octokit/plugin-request-log": { + "type": "npm", + "name": "npm:@octokit/plugin-request-log", + "data": { + "version": "1.0.4", + "packageName": "@octokit/plugin-request-log", + "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods", + "data": { + "version": "5.16.2", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods@7.2.3": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", + "data": { + "version": "7.2.3", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" + } + }, + "npm:@octokit/request-error": { + "type": "npm", + "name": "npm:@octokit/request-error", + "data": { + "version": "2.1.0", + "packageName": "@octokit/request-error", + "hash": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==" + } + }, + "npm:@octokit/request-error@3.0.1": { + "type": "npm", + "name": "npm:@octokit/request-error@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@octokit/request-error", + "hash": "sha512-ym4Bp0HTP7F3VFssV88WD1ZyCIRoE8H35pXSKwLeMizcdZAYc/t6N9X9Yr9n6t3aG9IH75XDnZ6UeZph0vHMWQ==" + } + }, + "npm:@octokit/request": { + "type": "npm", + "name": "npm:@octokit/request", + "data": { + "version": "5.6.3", + "packageName": "@octokit/request", + "hash": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==" + } + }, + "npm:@octokit/request@6.2.1": { + "type": "npm", + "name": "npm:@octokit/request@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "@octokit/request", + "hash": "sha512-gYKRCia3cpajRzDSU+3pt1q2OcuC6PK8PmFIyxZDWCzRXRSIBH8jXjFJ8ZceoygBIm0KsEUg4x1+XcYBz7dHPQ==" + } + }, + "npm:@octokit/rest": { + "type": "npm", + "name": "npm:@octokit/rest", + "data": { + "version": "18.12.0", + "packageName": "@octokit/rest", + "hash": "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==" + } + }, + "npm:@octokit/rest@19.0.11": { + "type": "npm", + "name": "npm:@octokit/rest@19.0.11", + "data": { + "version": "19.0.11", + "packageName": "@octokit/rest", + "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" + } + }, + "npm:@octokit/tsconfig": { + "type": "npm", + "name": "npm:@octokit/tsconfig", + "data": { + "version": "1.0.2", + "packageName": "@octokit/tsconfig", + "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" + } + }, + "npm:@octokit/types@10.0.0": { + "type": "npm", + "name": "npm:@octokit/types@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "@octokit/types", + "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" + } + }, + "npm:@octokit/types": { + "type": "npm", + "name": "npm:@octokit/types", + "data": { + "version": "6.41.0", + "packageName": "@octokit/types", + "hash": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==" + } + }, + "npm:@octokit/types@7.5.0": { + "type": "npm", + "name": "npm:@octokit/types@7.5.0", + "data": { + "version": "7.5.0", + "packageName": "@octokit/types", + "hash": "sha512-aHm+olfIZjQpzoODpl+RCZzchKOrdSLJs+yfI7pMMcmB19Li6vidgx0DwUDO/Ic4Q3fq/lOjJORVCcLZefcrJw==" + } + }, + "npm:@octokit/types@9.3.2": { + "type": "npm", + "name": "npm:@octokit/types@9.3.2", + "data": { + "version": "9.3.2", + "packageName": "@octokit/types", + "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" + } + }, + "npm:@opencensus/web-types": { + "type": "npm", + "name": "npm:@opencensus/web-types", + "data": { + "version": "0.0.7", + "packageName": "@opencensus/web-types", + "hash": "sha512-xB+w7ZDAu3YBzqH44rCmG9/RlrOmFuDPt/bpf17eJr8eZSrLt7nc7LnWdxM9Mmoj/YKMHpxRg28txu3TcpiL+g==" + } + }, + "npm:@opentelemetry/api@1.0.0-rc.0": { + "type": "npm", + "name": "npm:@opentelemetry/api@1.0.0-rc.0", + "data": { + "version": "1.0.0-rc.0", + "packageName": "@opentelemetry/api", + "hash": "sha512-iXKByCMfrlO5S6Oh97BuM56tM2cIBB0XsL/vWF/AtJrJEKx4MC/Xdu0xDsGXMGcNWpqF7ujMsjjnp0+UHBwnDQ==" + } + }, + "npm:@opentelemetry/api": { + "type": "npm", + "name": "npm:@opentelemetry/api", + "data": { + "version": "0.6.1", + "packageName": "@opentelemetry/api", + "hash": "sha512-wpufGZa7tTxw7eAsjXJtiyIQ42IWQdX9iUQp7ACJcKo1hCtuhLU+K2Nv1U6oRwT1oAlZTE6m4CgWKZBhOiau3Q==" + } + }, + "npm:@opentelemetry/api@1.0.3": { + "type": "npm", + "name": "npm:@opentelemetry/api@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "@opentelemetry/api", + "hash": "sha512-puWxACExDe9nxbBB3lOymQFrLYml2dVOrd7USiVRnSbgXE+KwBu+HxFvxrzfqsiSda9IWsXJG1ef7C1O2/GmKQ==" + } + }, + "npm:@opentelemetry/context-base": { + "type": "npm", + "name": "npm:@opentelemetry/context-base", + "data": { + "version": "0.6.1", + "packageName": "@opentelemetry/context-base", + "hash": "sha512-5bHhlTBBq82ti3qPT15TRxkYTFPPQWbnkkQkmHPtqiS1XcTB69cEKd3Jm7Cfi/vkPoyxapmePE9tyA7EzLt8SQ==" + } + }, + "npm:@parcel/watcher": { + "type": "npm", + "name": "npm:@parcel/watcher", + "data": { + "version": "2.0.4", + "packageName": "@parcel/watcher", + "hash": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==" + } + }, + "npm:@phenomnomnominal/tsquery": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery", + "data": { + "version": "6.1.2", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-NahxUvas4D4iRV1NqlL6Z3mIl2Fo+rw1x77wgZpYyaQjQnS4svv6XoVzjcRRtnP5cfY6XuVKLZki8Zltkz8z0w==" + } + }, + "npm:@phenomnomnominal/tsquery@5.0.1": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@pmmmwh/react-refresh-webpack-plugin": { + "type": "npm", + "name": "npm:@pmmmwh/react-refresh-webpack-plugin", + "data": { + "version": "0.5.7", + "packageName": "@pmmmwh/react-refresh-webpack-plugin", + "hash": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==" + } + }, + "npm:@polka/url": { + "type": "npm", + "name": "npm:@polka/url", + "data": { + "version": "1.0.0-next.11", + "packageName": "@polka/url", + "hash": "sha512-3NsZsJIA/22P3QUyrEDNA2D133H4j224twJrdipXN38dpnIOzAbUDtOwkcJ5pXmn75w7LSQDjA4tO9dm1XlqlA==" + } + }, + "npm:@popperjs/core": { + "type": "npm", + "name": "npm:@popperjs/core", + "data": { + "version": "2.4.4", + "packageName": "@popperjs/core", + "hash": "sha512-1oO6+dN5kdIA3sKPZhRGJTfGVP4SWV6KqlMOwry4J3HfyD68sl/3KmG7DeYUzvN+RbhXDnv/D8vNNB8168tAMg==" + } + }, + "npm:@rnx-kit/eslint-plugin": { + "type": "npm", + "name": "npm:@rnx-kit/eslint-plugin", + "data": { + "version": "0.2.5", + "packageName": "@rnx-kit/eslint-plugin", + "hash": "sha512-69Xlsz7fMMAQqLJ9ghglH5fXvU5xXZR09gCkjoK4gephhnQR/i+QDyt0wlqKt2HBo0RUGFbO+EA8aNPcOrJDJg==" + } + }, + "npm:@rollup/pluginutils": { + "type": "npm", + "name": "npm:@rollup/pluginutils", + "data": { + "version": "3.1.0", + "packageName": "@rollup/pluginutils", + "hash": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" + } + }, + "npm:@rushstack/node-core-library@3.50.1": { + "type": "npm", + "name": "npm:@rushstack/node-core-library@3.50.1", + "data": { + "version": "3.50.1", + "packageName": "@rushstack/node-core-library", + "hash": "sha512-9d2xE7E9yQEBS6brTptdP8cslt6iL5+UnkY2lRxQQ4Q/jlXtsrWCCJCxwr56W/eJEe9YT/yHR4mMn5QY64Ps2w==" + } + }, + "npm:@rushstack/node-core-library": { + "type": "npm", + "name": "npm:@rushstack/node-core-library", + "data": { + "version": "3.52.0", + "packageName": "@rushstack/node-core-library", + "hash": "sha512-Z+MAP//G3rEGZd3JxJcBGcPYJlh8pvPoLMTLa5Sy6FTE6hRPzN+5J8DT7BbTmlqZaL6SZpXF30heRUbnYOvujw==" + } + }, + "npm:@rushstack/package-deps-hash": { + "type": "npm", + "name": "npm:@rushstack/package-deps-hash", + "data": { + "version": "3.2.40", + "packageName": "@rushstack/package-deps-hash", + "hash": "sha512-0nnhbWrYE8mdEZXYXY9wOGEMFW3VtZ7+vgh6CJeyY95MDqjz6Alx2PpAHM1T53TNDV/LNFagwl0AzivfJnjhCw==" + } + }, + "npm:@rushstack/rig-package": { + "type": "npm", + "name": "npm:@rushstack/rig-package", + "data": { + "version": "0.3.15", + "packageName": "@rushstack/rig-package", + "hash": "sha512-jxVfvO5OnkRlYRhcVDZWvwiI2l4pv37HDJRtyg5HbD8Z/I8Xj32RICgrxS5xMeGGytobrg5S6OfPOHskg7Nw+A==" + } + }, + "npm:@rushstack/ts-command-line": { + "type": "npm", + "name": "npm:@rushstack/ts-command-line", + "data": { + "version": "4.12.3", + "packageName": "@rushstack/ts-command-line", + "hash": "sha512-Pdij22RotMXzI+HWHyYCvw0RMZhiP5a6Za/96XamZ1+mxmpSm4ujf8TROKxGAHySmR5A8iNVSlzhNMnUlFQE6g==" + } + }, + "npm:@scarf/scarf": { + "type": "npm", + "name": "npm:@scarf/scarf", + "data": { + "version": "1.0.5", + "packageName": "@scarf/scarf", + "hash": "sha512-9WKaGVpQH905Aqkk+BczFEeLQxS07rl04afFRPUG9IcSlOwmo5EVVuuNu0d4M9LMYucObvK0LoAe+5HfMW2QhQ==" + } + }, + "npm:@sigstore/bundle": { + "type": "npm", + "name": "npm:@sigstore/bundle", + "data": { + "version": "1.0.0", + "packageName": "@sigstore/bundle", + "hash": "sha512-yLvrWDOh6uMOUlFCTJIZEnwOT9Xte7NPXUqVexEKGSF5XtBAuSg5du0kn3dRR0p47a4ah10Y0mNt8+uyeQXrBQ==" + } + }, + "npm:@sigstore/protobuf-specs": { + "type": "npm", + "name": "npm:@sigstore/protobuf-specs", + "data": { + "version": "0.2.0", + "packageName": "@sigstore/protobuf-specs", + "hash": "sha512-8ZhZKAVfXjIspDWwm3D3Kvj0ddbJ0HqDZ/pOs5cx88HpT8mVsotFrg7H1UMnXOuDHz6Zykwxn4mxG3QLuN+RUg==" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "1.0.3", + "packageName": "@sigstore/tuf", + "hash": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.27.8", + "packageName": "@sinclair/typebox", + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "4.0.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==" + } + }, + "npm:@sindresorhus/is@5.3.0": { + "type": "npm", + "name": "npm:@sindresorhus/is@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.2.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg==" + } + }, + "npm:@storybook/addon-a11y": { + "type": "npm", + "name": "npm:@storybook/addon-a11y", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-a11y", + "hash": "sha512-4IgsCU7mrfooyGSgvyQdkZVu2iGJZqZ+2GDDIzzeIs1yXvuRy6QiHYNzesSrgeL52ykDXaPGuzKu2pcMKfDQHA==" + } + }, + "npm:@storybook/addon-actions": { + "type": "npm", + "name": "npm:@storybook/addon-actions", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-actions", + "hash": "sha512-cnLzVK1S+EydFDSuvxMmMAxVqNXijBGdV9QTgsu6ys5sOkoiXRETKZmxuN8/ZRbkfc4N+1KAylSCZOOHzBQTBQ==" + } + }, + "npm:@storybook/addon-backgrounds": { + "type": "npm", + "name": "npm:@storybook/addon-backgrounds", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-backgrounds", + "hash": "sha512-9ddB3QIL8mRurf7TvYG1P9i1sW0b8Iik3kGlHggKogHER9WJPzbiUeH0XDjkASSa4rMCZdYn5CZKNkIAoJ2jdA==" + } + }, + "npm:@storybook/addon-controls": { + "type": "npm", + "name": "npm:@storybook/addon-controls", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-controls", + "hash": "sha512-q5y0TvD0stvQoJZ2PnFmmKIRNSOI4/k2NKyZq//J2cBUBcP1reYlFxdsNwLZWmAFpSIkc2+nsliEzNxU1WByoA==" + } + }, + "npm:@storybook/addon-docs": { + "type": "npm", + "name": "npm:@storybook/addon-docs", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-docs", + "hash": "sha512-k3LAu+wVp6pNhfh6B1soCRl6+7sNTNxtqy6WTrIeVJVCGbXbyc5s7gQ48gJ4WAk6meoDEZbypiP4NK1El03YLg==" + } + }, + "npm:@storybook/addon-essentials": { + "type": "npm", + "name": "npm:@storybook/addon-essentials", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-essentials", + "hash": "sha512-m3EY6BhUk6Z9Et7P5wGaRGNoEDHzJIOsLbGS/4IXvIoDfrqmNIilqUQl8kfDqpVdBSFprvpacHpKpLosu9H37w==" + } + }, + "npm:@storybook/addon-knobs": { + "type": "npm", + "name": "npm:@storybook/addon-knobs", + "data": { + "version": "6.4.0", + "packageName": "@storybook/addon-knobs", + "hash": "sha512-DiH1/5e2AFHoHrncl1qLu18ZHPHzRMMPvOLFz8AWvvmc+VCqTdIaE+tdxKr3e8rYylKllibgvDOzrLjfTNjF+Q==" + } + }, + "npm:@storybook/addon-links": { + "type": "npm", + "name": "npm:@storybook/addon-links", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-links", + "hash": "sha512-L7Q3u/xEUuy1uPq8ttjDfvDj19Hr2Crq/Us0RfowfGAAzOb7fCoiUJDP37ADtRUlCYyuKM5V/nHxN8eGpWtugw==" + } + }, + "npm:@storybook/addon-measure": { + "type": "npm", + "name": "npm:@storybook/addon-measure", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-measure", + "hash": "sha512-j77WX/v6qpWK8ZuYscWLIc+Am4/WOJRsVgyXLIw1EZIviQsjoXPo7mmyoTneEIbbHfPtWlLRbtmkjh8DAVDrCA==" + } + }, + "npm:@storybook/addon-outline": { + "type": "npm", + "name": "npm:@storybook/addon-outline", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-outline", + "hash": "sha512-8yGEZQOYypnliU3rsakoZlgT4Pkq8iOhX9JclVXZL/fJMQWFQGCsXqlLaRn8sx7qsa+21PPxY5bd2+Hv/Au4zQ==" + } + }, + "npm:@storybook/addon-toolbars": { + "type": "npm", + "name": "npm:@storybook/addon-toolbars", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-toolbars", + "hash": "sha512-btwDTgElmaaT0dBRASABbTpq6m1UiQXQmLUmxfjLxVC3I2SK5tyJKbPQ2hVLFAQHK4cQn4u45BxdZ5LDpJ830A==" + } + }, + "npm:@storybook/addon-viewport": { + "type": "npm", + "name": "npm:@storybook/addon-viewport", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-viewport", + "hash": "sha512-oOiVzgFMlTnzPLVoHWQNzWdmpksrUyT6Aq8ZOyBPNMQ0RN2doIgFr7W53nZ1OBB5cPQx9q2FgWwzJ7Tawo+iVA==" + } + }, + "npm:@storybook/addons": { + "type": "npm", + "name": "npm:@storybook/addons", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addons", + "hash": "sha512-xT31SuSX+kYGyxCNK2nqL7WTxucs3rSmhiCLovJcUjYk+QquV3c2c53Ki7lwwdDbzfXFcNAe0HJ4hoTN4jhn0Q==" + } + }, + "npm:@storybook/api": { + "type": "npm", + "name": "npm:@storybook/api", + "data": { + "version": "6.5.15", + "packageName": "@storybook/api", + "hash": "sha512-BBE0KXKvj1/3jTghbIoWfrcDM0t+xO7EYtWWAXD6XlhGsZVD2Dy82Z52ONyLulMDRpMWl0OYy3h6A1YnFUH25w==" + } + }, + "npm:@storybook/builder-webpack4": { + "type": "npm", + "name": "npm:@storybook/builder-webpack4", + "data": { + "version": "6.5.15", + "packageName": "@storybook/builder-webpack4", + "hash": "sha512-1ZkMECUUdiYplhlgyUF5fqW3XU7eWNDJbuPUguyDOeidgJ111WZzBcLuKj+SNrzdNNgXwROCWAFybiNnX33YHQ==" + } + }, + "npm:@storybook/builder-webpack5": { + "type": "npm", + "name": "npm:@storybook/builder-webpack5", + "data": { + "version": "6.5.15", + "packageName": "@storybook/builder-webpack5", + "hash": "sha512-BnSoAmI02pvbGBSyzCx+voXb/d5EopQ78zx/lYv4CeOspBFOYEfGvAgYHILFo04V12S2/k8aSOc/tCYw5AqPtw==" + } + }, + "npm:@storybook/channel-postmessage": { + "type": "npm", + "name": "npm:@storybook/channel-postmessage", + "data": { + "version": "6.5.15", + "packageName": "@storybook/channel-postmessage", + "hash": "sha512-gMpA8LWT8lC4z5KWnaMh03aazEwtDO7GtY5kZVru+EEMgExGmaR82qgekwmLmgLj2nRJEv0o138o9IqYUcou8w==" + } + }, + "npm:@storybook/channel-websocket": { + "type": "npm", + "name": "npm:@storybook/channel-websocket", + "data": { + "version": "6.5.15", + "packageName": "@storybook/channel-websocket", + "hash": "sha512-K85KEgzo5ahzJNJjyUbSNyuRmkeC8glJX2hCg2j9HiJ9rasX53qugkODrKDlWAeheulo3kR13VSuAqIuwVbmbw==" + } + }, + "npm:@storybook/channels": { + "type": "npm", + "name": "npm:@storybook/channels", + "data": { + "version": "6.5.15", + "packageName": "@storybook/channels", + "hash": "sha512-gPpsBgirv2NCXbH4WbYqdkI0JLE96aiVuu7UEWfn9yu071pQ9CLHbhXGD9fSFNrfOkyBBY10ppSE7uCXw3Wexg==" + } + }, + "npm:@storybook/client-api": { + "type": "npm", + "name": "npm:@storybook/client-api", + "data": { + "version": "6.5.15", + "packageName": "@storybook/client-api", + "hash": "sha512-0ZGpRgVz7rdbCguBqBpwObXbsVY5qlSTWDzzIBpmz8EkxW/MtK5wEyeq+0L0O+DTn41FwvH5yCGLAENpzWD8BQ==" + } + }, + "npm:@storybook/client-logger": { + "type": "npm", + "name": "npm:@storybook/client-logger", + "data": { + "version": "6.5.15", + "packageName": "@storybook/client-logger", + "hash": "sha512-0uyxKvodq+FycGv6aUwC1wUR6suXf2+7ywMFAOlYolI4UvNj8NyU/5AfgKT5XnxYAgPmoCiAjOE700TrfHrosw==" + } + }, + "npm:@storybook/components": { + "type": "npm", + "name": "npm:@storybook/components", + "data": { + "version": "6.5.15", + "packageName": "@storybook/components", + "hash": "sha512-bHTT0Oa3s4g+MBMaLBbX9ofMtb1AW59AzIUNGrfqW1XqJMGuUHMiJ7TSo+i5dRSFpbFygnwMEG9LfHxpR2Z0Dw==" + } + }, + "npm:@storybook/core-client": { + "type": "npm", + "name": "npm:@storybook/core-client", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core-client", + "hash": "sha512-i9t4WONy2MxJwLI1FIp5ck7b52EXyJfALnxUn4O/3GTkw09J0NOKi2DPjefUsi7IB5MzFpDjDH9vw/XiTM+OZw==" + } + }, + "npm:@storybook/core-common": { + "type": "npm", + "name": "npm:@storybook/core-common", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core-common", + "hash": "sha512-uits9o6qwHTPnjsNZP25f7hWmUBGRJ7FXtxxtEaNSmtiwk50KWxBaro7wt505lJ1Gb9vOhpNPhS7y3IxdsXNmQ==" + } + }, + "npm:@storybook/core-events": { + "type": "npm", + "name": "npm:@storybook/core-events", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core-events", + "hash": "sha512-B1Ba6l5W7MeNclclqMMTMHgYgfdpB5SIhNCQFnzIz8blynzRhNFMdxvbAl6Je5G0S4xydYYd7Lno2kXQebs7HA==" + } + }, + "npm:@storybook/core-server": { + "type": "npm", + "name": "npm:@storybook/core-server", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core-server", + "hash": "sha512-m+pZwHhCjwryeqTptyyKHSbIjnnPGKoRSnkqLTOpKQf8llZMnNQWUFrn4fx6UDKzxFQ2st2+laV8O2QbMs8qwQ==" + } + }, + "npm:@storybook/core": { + "type": "npm", + "name": "npm:@storybook/core", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core", + "hash": "sha512-T9TjLxbb5P/XvLEoj0dnbtexJa0V3pqCifRlIUNkTJO0nU3PdGLMcKMSyIYWjkthAJ9oBrajnodV0UveM/epTg==" + } + }, + "npm:@storybook/csf-tools": { + "type": "npm", + "name": "npm:@storybook/csf-tools", + "data": { + "version": "6.5.15", + "packageName": "@storybook/csf-tools", + "hash": "sha512-2LwSD7yE/ccXBc58K4vdKw/oJJg6IpC4WD51rBt2mAl5JUCkxhOq7wG/Z8Wy1lZw2LVuKNTmjVou5blGRI/bTg==" + } + }, + "npm:@storybook/csf": { + "type": "npm", + "name": "npm:@storybook/csf", + "data": { + "version": "0.0.2--canary.4566f4d.1", + "packageName": "@storybook/csf", + "hash": "sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==" + } + }, + "npm:@storybook/docs-tools": { + "type": "npm", + "name": "npm:@storybook/docs-tools", + "data": { + "version": "6.5.15", + "packageName": "@storybook/docs-tools", + "hash": "sha512-8w78NFOtlJGuIa9vPPsr87J9iQUGmLFh7CrMS2+t9LxW+0oH5MZ8QqPQUHNuTuKsYN3r+QAmmi2pj0auZmCoKA==" + } + }, + "npm:@storybook/html@6.5.15": { + "type": "npm", + "name": "npm:@storybook/html@6.5.15", + "data": { + "version": "6.5.15", + "packageName": "@storybook/html", + "hash": "sha512-SFjhq9VqZNpocSLJ94j/CK9sT4g+Qt3gMixQSuhSvvNDEt2tN8T7dy/vB2IwnjIrMBdbtQZO4UDcX6kZvy0g8A==" + } + }, + "npm:@storybook/manager-webpack4": { + "type": "npm", + "name": "npm:@storybook/manager-webpack4", + "data": { + "version": "6.5.15", + "packageName": "@storybook/manager-webpack4", + "hash": "sha512-zRvBTMoaFO6MvHDsDLnt3tsFENhpY3k+e/UIPdqbIDMbUPGGQzxJucAM9aS/kbVSO5IVs8IflVxbeeB/uTIIfA==" + } + }, + "npm:@storybook/manager-webpack5": { + "type": "npm", + "name": "npm:@storybook/manager-webpack5", + "data": { + "version": "6.5.15", + "packageName": "@storybook/manager-webpack5", + "hash": "sha512-yrHVFUHGdVRWq/oGJwQu+UOZzxELH5SS+Lpn5oIQ/Dblam9piQC0KmBZtFuA9X8acaw4BBVnXgF/aiqs9fOp/Q==" + } + }, + "npm:@storybook/mdx1-csf": { + "type": "npm", + "name": "npm:@storybook/mdx1-csf", + "data": { + "version": "0.0.1", + "packageName": "@storybook/mdx1-csf", + "hash": "sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==" + } + }, + "npm:@storybook/node-logger": { + "type": "npm", + "name": "npm:@storybook/node-logger", + "data": { + "version": "6.5.15", + "packageName": "@storybook/node-logger", + "hash": "sha512-LQjjbfMuUXm7wZTBKb+iGeCNnej4r1Jb2NxG3Svu2bVhaoB6u33jHAcbmhXpXW1jghzW3kQwOU7BoLuJiRRFIw==" + } + }, + "npm:@storybook/postinstall": { + "type": "npm", + "name": "npm:@storybook/postinstall", + "data": { + "version": "6.5.15", + "packageName": "@storybook/postinstall", + "hash": "sha512-l7pApTgLD10OedNOyuf4vUdVCHLOSaIUIL9gdJl1WaSFHiUpJvvzBIh5M4aRICYPbnuExQc8y2GAjERKO4Ep+g==" + } + }, + "npm:@storybook/preview-web": { + "type": "npm", + "name": "npm:@storybook/preview-web", + "data": { + "version": "6.5.15", + "packageName": "@storybook/preview-web", + "hash": "sha512-gIHABSAD0JS0iRaG67BnSDq/q8Zf4fFwEWBQOSYgcEx2TzhAUeSkhGZUQHdlOTCwuA2PpXT0/cWDH8u2Ev+msg==" + } + }, + "npm:@storybook/react-docgen-typescript-plugin": { + "type": "npm", + "name": "npm:@storybook/react-docgen-typescript-plugin", + "data": { + "version": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0", + "packageName": "@storybook/react-docgen-typescript-plugin", + "hash": "sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==" + } + }, + "npm:@storybook/react": { + "type": "npm", + "name": "npm:@storybook/react", + "data": { + "version": "6.5.15", + "packageName": "@storybook/react", + "hash": "sha512-iQta2xOs/oK0sw/zpn3g/huvOmvggzi8z2/WholmUmmRiSQRo9lOhRXH0u13T4ja4fEa+u7m58G83xOG6i73Kw==" + } + }, + "npm:@storybook/router": { + "type": "npm", + "name": "npm:@storybook/router", + "data": { + "version": "6.5.15", + "packageName": "@storybook/router", + "hash": "sha512-9t8rI8t7/Krolau29gsdjdbRQ66orONIyP0efp0EukVgv6reNFzb/U14ARrl0uHys6Tl5Xyece9FoakQUdn8Kg==" + } + }, + "npm:@storybook/semver": { + "type": "npm", + "name": "npm:@storybook/semver", + "data": { + "version": "7.3.2", + "packageName": "@storybook/semver", + "hash": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==" + } + }, + "npm:@storybook/source-loader": { + "type": "npm", + "name": "npm:@storybook/source-loader", + "data": { + "version": "6.5.15", + "packageName": "@storybook/source-loader", + "hash": "sha512-MaWzki40g0/7NWmJgUBhOp+e7y8Ohw6G/bRr/rcDP7eXSnud6ThYylXv0QqBScLPPTy8txjmBClCoqdLGyvLWQ==" + } + }, + "npm:@storybook/store": { + "type": "npm", + "name": "npm:@storybook/store", + "data": { + "version": "6.5.15", + "packageName": "@storybook/store", + "hash": "sha512-r6cYTf6GtbqgdI4ZG3xuWdJAAu5fJ3xAWMiDkHyoK2u+R2TeYXIsJvgn0BPrW87sZhELIkg4ckdFECmATs3kpQ==" + } + }, + "npm:@storybook/telemetry": { + "type": "npm", + "name": "npm:@storybook/telemetry", + "data": { + "version": "6.5.15", + "packageName": "@storybook/telemetry", + "hash": "sha512-WHMRG6xMkEGscn1q4SotwzV8hxM1g3zHyXPN77iosY5zpOIn/qAzvkmW28V1DPH9jPWMZMizBgG1TIQvUpduXg==" + } + }, + "npm:@storybook/theming": { + "type": "npm", + "name": "npm:@storybook/theming", + "data": { + "version": "6.5.15", + "packageName": "@storybook/theming", + "hash": "sha512-pgdW0lVZKKXQ4VhIfLHycMmwFSVOY7vLTKnytag4Y8Yz+aXm0bwDN/QxPntFzDH47F1Rcy2ywNnvty8ooDTvuA==" + } + }, + "npm:@storybook/ui": { + "type": "npm", + "name": "npm:@storybook/ui", + "data": { + "version": "6.5.15", + "packageName": "@storybook/ui", + "hash": "sha512-OO+TWZmI8ebWA1C3JBKNvbUbsgvt4GppqsGlkf5CTBZrT/MzmMlYiooLAtlY1ZPcMtTd5ynLxvroHWBEnMOk2A==" + } + }, + "npm:@swc/cli": { + "type": "npm", + "name": "npm:@swc/cli", + "data": { + "version": "0.1.62", + "packageName": "@swc/cli", + "hash": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==" + } + }, + "npm:@swc/core-darwin-arm64@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-darwin-arm64@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-darwin-arm64", + "hash": "sha512-/LxLjPat1LA9CXS7Cn2M4MIqwNOoDF4KjcikPkO08H54rd6WubhaJnr0sLDjms3adRr+pmcCL0yfsUBTX//85A==" + } + }, + "npm:@swc/core-darwin-x64@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-darwin-x64@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-darwin-x64", + "hash": "sha512-hjSQNcW9BN8gEz3UQZ7Ye80ymbkFHLkUDeEek4lorRyq6S+uxvbL1f1mJAZnFPBpove7AXusykIalWMPvyOR2A==" + } + }, + "npm:@swc/core-linux-arm-gnueabihf@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-arm-gnueabihf@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-arm-gnueabihf", + "hash": "sha512-JVyNIO3tGLPSQ59rJXeKaykTpPhRNozB+7PtYMvMcxpUbYGpEzWxTPkFAX2KKPvl0ejBdA0GW5OXeuPMvTwE0w==" + } + }, + "npm:@swc/core-linux-arm64-gnu@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-gnu@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-arm64-gnu", + "hash": "sha512-gLdZKIoql5vjrNjrwwsiS7d3vOAIzYUWqN97iGCSscQOg0MgYbfUnSTO4UEvH4BYlwRNlHepfTZ7ALoG8areUQ==" + } + }, + "npm:@swc/core-linux-arm64-musl@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-musl@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-arm64-musl", + "hash": "sha512-WQ5tirVBiU8lUODQ25dt8JRCZHyRDInBe4fkGuxzImMa017zYPWa2WxrKK8LdDF7DzrAITlGl9VeoeE/l0WJbw==" + } + }, + "npm:@swc/core-linux-x64-gnu@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-gnu@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-x64-gnu", + "hash": "sha512-/vQSH7ZKOuT1It9GzpJ9UFnsOP/dQr1VLUrKQFBlHp9owIWNb2oUrZdNla+KhljCIIahh0JfQ08sycKeycCNzQ==" + } + }, + "npm:@swc/core-linux-x64-musl@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-musl@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-x64-musl", + "hash": "sha512-C1NUeISJDyMlIk4919bjcpHvjyjzbkjW7v53gUdN41Y4BPlEk7UKcLez7UHMjdMGA/o9721SLqYVp4/NrQErUw==" + } + }, + "npm:@swc/core-win32-arm64-msvc@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-win32-arm64-msvc@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-win32-arm64-msvc", + "hash": "sha512-AE7JKDJ0OsV9LsYGFfYKMTkGNfsy1au4RT5jT1rxr5MTOsmMD7P2mgiRF8drgc1WX3uOJbTHQfgdVTYroAGfdA==" + } + }, + "npm:@swc/core-win32-ia32-msvc@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-win32-ia32-msvc@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-win32-ia32-msvc", + "hash": "sha512-2V+5uvisaTPXd5lvTujNLNlEC2LPo07gEUQVGdKGsbhtLAYAggVXBnHjxU1TkuyA6NlciMS59tPKW+L2u2KpTw==" + } + }, + "npm:@swc/core-win32-x64-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-x64-msvc", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-win32-x64-msvc", + "hash": "sha512-2Xak7TidlRuNQamLZC3fEOdUCmMiBzD2BW8+Dnn29f4odzamgAFfeYJ/PnqN7jdTWOINLn95tex4JBm3Pm11HQ==" + } + }, + "npm:@swc/core": { + "type": "npm", + "name": "npm:@swc/core", + "data": { + "version": "1.3.87", + "packageName": "@swc/core", + "hash": "sha512-u33Mi/EBvb+g/xpYKyxODB5XvKYqISmy81J+lhFS/Oahja0PbJWZdKEGwSQEFvBecp6E+PfaTOLPOoF1EWcRrw==" + } + }, + "npm:@swc/helpers": { + "type": "npm", + "name": "npm:@swc/helpers", + "data": { + "version": "0.5.1", + "packageName": "@swc/helpers", + "hash": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==" + } + }, + "npm:@swc/types": { + "type": "npm", + "name": "npm:@swc/types", + "data": { + "version": "0.1.5", + "packageName": "@swc/types", + "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "4.0.5", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==" + } + }, + "npm:@szmarczak/http-timer@5.0.1": { + "type": "npm", + "name": "npm:@szmarczak/http-timer@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==" + } + }, + "npm:@testing-library/dom": { + "type": "npm", + "name": "npm:@testing-library/dom", + "data": { + "version": "8.11.3", + "packageName": "@testing-library/dom", + "hash": "sha512-9LId28I+lx70wUiZjLvi1DB/WT2zGOxUh46glrSNMaWVx849kKAluezVzZrXJfTKKoQTmEOutLes/bHg4Bj3aA==" + } + }, + "npm:@testing-library/dom@7.22.3": { + "type": "npm", + "name": "npm:@testing-library/dom@7.22.3", + "data": { + "version": "7.22.3", + "packageName": "@testing-library/dom", + "hash": "sha512-IK6/eL1Xza/0goDKrwnBvlM06L+5eL9b1o+hUhX7HslfUvMETh0TYgXEr2LVpsVkHiOhRmUbUyml95KV/VlRNw==" + } + }, + "npm:@testing-library/jest-dom": { + "type": "npm", + "name": "npm:@testing-library/jest-dom", + "data": { + "version": "5.16.5", + "packageName": "@testing-library/jest-dom", + "hash": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==" + } + }, + "npm:@testing-library/react-hooks": { + "type": "npm", + "name": "npm:@testing-library/react-hooks", + "data": { + "version": "7.0.2", + "packageName": "@testing-library/react-hooks", + "hash": "sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==" + } + }, + "npm:@testing-library/react": { + "type": "npm", + "name": "npm:@testing-library/react", + "data": { + "version": "12.1.2", + "packageName": "@testing-library/react", + "hash": "sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g==" + } + }, + "npm:@testing-library/user-event": { + "type": "npm", + "name": "npm:@testing-library/user-event", + "data": { + "version": "13.5.0", + "packageName": "@testing-library/user-event", + "hash": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==" + } + }, + "npm:@textlint/ast-node-types": { + "type": "npm", + "name": "npm:@textlint/ast-node-types", + "data": { + "version": "4.4.3", + "packageName": "@textlint/ast-node-types", + "hash": "sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==" + } + }, + "npm:@textlint/markdown-to-ast": { + "type": "npm", + "name": "npm:@textlint/markdown-to-ast", + "data": { + "version": "6.1.7", + "packageName": "@textlint/markdown-to-ast", + "hash": "sha512-B0QtokeQR4a9+4q0NQr8T9l7A1fFihTN5Ze57tVgqW+3ymzXEouh8DvPHeNQ4T6jEkAThvdjk95mxAMpGRJ79w==" + } + }, + "npm:@tokenizer/token": { + "type": "npm", + "name": "npm:@tokenizer/token", + "data": { + "version": "0.3.0", + "packageName": "@tokenizer/token", + "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + } + }, + "npm:@tootallnate/once@1.1.2": { + "type": "npm", + "name": "npm:@tootallnate/once@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "@tootallnate/once", + "hash": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:@ts-morph/common": { + "type": "npm", + "name": "npm:@ts-morph/common", + "data": { + "version": "0.8.1", + "packageName": "@ts-morph/common", + "hash": "sha512-3TC91LfCKCNCW7zYpegoMnMa9VigXtZHQererUM9pCvZKN3ust3ioLA0kfX+UHSzIGln+UYYiRzfOsv0QoiUng==" + } + }, + "npm:@tsconfig/node10": { + "type": "npm", + "name": "npm:@tsconfig/node10", + "data": { + "version": "1.0.9", + "packageName": "@tsconfig/node10", + "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" + } + }, + "npm:@tsconfig/node12": { + "type": "npm", + "name": "npm:@tsconfig/node12", + "data": { + "version": "1.0.11", + "packageName": "@tsconfig/node12", + "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" + } + }, + "npm:@tsconfig/node14": { + "type": "npm", + "name": "npm:@tsconfig/node14", + "data": { + "version": "1.0.3", + "packageName": "@tsconfig/node14", + "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" + } + }, + "npm:@tsconfig/node16": { + "type": "npm", + "name": "npm:@tsconfig/node16", + "data": { + "version": "1.0.3", + "packageName": "@tsconfig/node16", + "hash": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==" + } + }, + "npm:@tufjs/canonical-json": { + "type": "npm", + "name": "npm:@tufjs/canonical-json", + "data": { + "version": "1.0.0", + "packageName": "@tufjs/canonical-json", + "hash": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==" + } + }, + "npm:@tufjs/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "1.0.4", + "packageName": "@tufjs/models", + "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" + } + }, + "npm:@types/argparse": { + "type": "npm", + "name": "npm:@types/argparse", + "data": { + "version": "1.0.38", + "packageName": "@types/argparse", + "hash": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==" + } + }, + "npm:@types/aria-query": { + "type": "npm", + "name": "npm:@types/aria-query", + "data": { + "version": "4.2.1", + "packageName": "@types/aria-query", + "hash": "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==" + } + }, + "npm:@types/babel-plugin-tester": { + "type": "npm", + "name": "npm:@types/babel-plugin-tester", + "data": { + "version": "9.0.5", + "packageName": "@types/babel-plugin-tester", + "hash": "sha512-NRBPlhi5VkrTXMqDB1hSUnHs7vqLGRopeukC9u1zilOIFe9O1siwqeKZRiuJiVYakgpeDso/HE2Q5DU1aDqBog==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.3", + "packageName": "@types/babel__core", + "hash": "sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.4", + "packageName": "@types/babel__generator", + "hash": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==" + } + }, + "npm:@types/babel__helper-plugin-utils": { + "type": "npm", + "name": "npm:@types/babel__helper-plugin-utils", + "data": { + "version": "7.10.2", + "packageName": "@types/babel__helper-plugin-utils", + "hash": "sha512-Sa17cG0SKMedlH5bEozh0eXo/54iWpSxbxCoqknRJY0oGGTwO9/SCfIx1taDnG0dvkJnYW+/7tv+PTSFaQsRNA==" + } + }, + "npm:@types/babel__register": { + "type": "npm", + "name": "npm:@types/babel__register", + "data": { + "version": "7.17.2", + "packageName": "@types/babel__register", + "hash": "sha512-vtX15ukwrteTilZGP2/qAKKQcydKHUSioiIVItmKQZAwGwTOH0ZFfJ2L4kei/lq6EmwBuYooipl+5bh5gtmQgQ==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.0.2", + "packageName": "@types/babel__template", + "hash": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.3", + "packageName": "@types/babel__traverse", + "hash": "sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.17.1", + "packageName": "@types/body-parser", + "hash": "sha512-RoX2EZjMiFMjZh9lmYrwgoP9RTpAjSHiJxdp4oidAQVO02T7HER3xj9UKue5534ULWeqVEkujhWcyvUce+d68w==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.10", + "packageName": "@types/bonjour", + "hash": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" + } + }, + "npm:@types/braces": { + "type": "npm", + "name": "npm:@types/braces", + "data": { + "version": "3.0.1", + "packageName": "@types/braces", + "hash": "sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==" + } + }, + "npm:@types/cacheable-request": { + "type": "npm", + "name": "npm:@types/cacheable-request", + "data": { + "version": "6.0.2", + "packageName": "@types/cacheable-request", + "hash": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==" + } + }, + "npm:@types/caseless": { + "type": "npm", + "name": "npm:@types/caseless", + "data": { + "version": "0.12.2", + "packageName": "@types/caseless", + "hash": "sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w==" + } + }, + "npm:@types/chai-spies": { + "type": "npm", + "name": "npm:@types/chai-spies", + "data": { + "version": "1.0.3", + "packageName": "@types/chai-spies", + "hash": "sha512-RBZjhVuK7vrg4rWMt04UF5zHYwfHnpk5mIWu3nQvU3AKGDixXzSjZ6v0zke6pBcaJqMv3IBZ5ibLWPMRDL0sLw==" + } + }, + "npm:@types/chai": { + "type": "npm", + "name": "npm:@types/chai", + "data": { + "version": "4.3.3", + "packageName": "@types/chai", + "hash": "sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==" + } + }, + "npm:@types/cheerio": { + "type": "npm", + "name": "npm:@types/cheerio", + "data": { + "version": "0.22.31", + "packageName": "@types/cheerio", + "hash": "sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw==" + } + }, + "npm:@types/chrome-remote-interface": { + "type": "npm", + "name": "npm:@types/chrome-remote-interface", + "data": { + "version": "0.30.0", + "packageName": "@types/chrome-remote-interface", + "hash": "sha512-j7LCipaiuft35hJqocb15a+zzL2/h3AaOnWlQin/SbVVj0i+I/dhgpJJmRsJFV6XtlkMyySI3WFOBvpYC7xhpg==" + } + }, + "npm:@types/circular-dependency-plugin": { + "type": "npm", + "name": "npm:@types/circular-dependency-plugin", + "data": { + "version": "5.0.5", + "packageName": "@types/circular-dependency-plugin", + "hash": "sha512-JU1sYQWNbUluWHseLUfokakx18+BXRA9Bxji56hdY5NW0nvrJSJd4SNAl0Btpm5ima9BnUkoGEcW/2PH1QuWQA==" + } + }, + "npm:@types/classnames": { + "type": "npm", + "name": "npm:@types/classnames", + "data": { + "version": "2.2.9", + "packageName": "@types/classnames", + "hash": "sha512-MNl+rT5UmZeilaPxAVs6YaPC2m6aA8rofviZbhbxpPpl61uKodfdQVsBtgJGTqGizEf02oW3tsVe7FYB8kK14A==" + } + }, + "npm:@types/color-check": { + "type": "npm", + "name": "npm:@types/color-check", + "data": { + "version": "0.0.0", + "packageName": "@types/color-check", + "hash": "sha512-ZAm8KesT3hIm6I1vb5EbwD2C4f5XYawZjpE1UGlpfbMFOmLtBpYcZP0duGnsZY/6wzvw1y8MTofRqFzpzU2uOg==" + } + }, + "npm:@types/color-convert": { + "type": "npm", + "name": "npm:@types/color-convert", + "data": { + "version": "1.9.0", + "packageName": "@types/color-convert", + "hash": "sha512-OKGEfULrvSL2VRbkl/gnjjgbbF7ycIlpSsX7Nkab4MOWi5XxmgBYvuiQ7lcCFY5cPDz7MUNaKgxte2VRmtr4Fg==" + } + }, + "npm:@types/color-name": { + "type": "npm", + "name": "npm:@types/color-name", + "data": { + "version": "1.1.1", + "packageName": "@types/color-name", + "hash": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" + } + }, + "npm:@types/color": { + "type": "npm", + "name": "npm:@types/color", + "data": { + "version": "3.0.1", + "packageName": "@types/color", + "hash": "sha512-oeUWVaAwI+xINDUx+3F2vJkl/vVB03VChFF/Gl3iQCdbcakjuoJyMOba+3BXRtnBhxZ7uBYqQBi9EpLnvSoztA==" + } + }, + "npm:@types/component-emitter": { + "type": "npm", + "name": "npm:@types/component-emitter", + "data": { + "version": "1.2.11", + "packageName": "@types/component-emitter", + "hash": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.3.5", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.33", + "packageName": "@types/connect", + "hash": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==" + } + }, + "npm:@types/cookie": { + "type": "npm", + "name": "npm:@types/cookie", + "data": { + "version": "0.4.1", + "packageName": "@types/cookie", + "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + } + }, + "npm:@types/copy-webpack-plugin": { + "type": "npm", + "name": "npm:@types/copy-webpack-plugin", + "data": { + "version": "6.4.0", + "packageName": "@types/copy-webpack-plugin", + "hash": "sha512-f5mQG5c7xH3zLGrEmKgzLLFSGNB7Y4+4a+a1X4DvjgfbTEWEZUNNXUqGs5tBVCtb5qKPzm2z+6ixX3xirWmOCg==" + } + }, + "npm:@types/cors": { + "type": "npm", + "name": "npm:@types/cors", + "data": { + "version": "2.8.13", + "packageName": "@types/cors", + "hash": "sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==" + } + }, + "npm:@types/d3-array": { + "type": "npm", + "name": "npm:@types/d3-array", + "data": { + "version": "2.12.1", + "packageName": "@types/d3-array", + "hash": "sha512-kVHqB3kfLpU0WYEmx5Y2hi3LRhUGIEIQXFdGazNNWQhyhzHx8xrgLtpAOKYzpfS3a+GjFMdKsI82QUH4q5dACQ==" + } + }, + "npm:@types/d3-axis": { + "type": "npm", + "name": "npm:@types/d3-axis", + "data": { + "version": "1.0.10", + "packageName": "@types/d3-axis", + "hash": "sha512-5YF0wfdQMPKw01VAAupLIlg/T4pn5M3/vL9u0KZjiemnVnnKBEWE24na4X1iW+TfZiYJ8j+BgK2KFYnAAT54Ug==" + } + }, + "npm:@types/d3-dsv": { + "type": "npm", + "name": "npm:@types/d3-dsv", + "data": { + "version": "3.0.0", + "packageName": "@types/d3-dsv", + "hash": "sha512-o0/7RlMl9p5n6FQDptuJVMxDf/7EDEv2SYEO/CwdG2tr1hTfUVi0Iavkk2ax+VpaQ/1jVhpnj5rq1nj8vwhn2A==" + } + }, + "npm:@types/d3-fetch": { + "type": "npm", + "name": "npm:@types/d3-fetch", + "data": { + "version": "3.0.1", + "packageName": "@types/d3-fetch", + "hash": "sha512-toZJNOwrOIqz7Oh6Q7l2zkaNfXkfR7mFSJvGvlD/Ciq/+SQ39d5gynHJZ/0fjt83ec3WL7+u3ssqIijQtBISsw==" + } + }, + "npm:@types/d3-format": { + "type": "npm", + "name": "npm:@types/d3-format", + "data": { + "version": "1.3.1", + "packageName": "@types/d3-format", + "hash": "sha512-KAWvReOKMDreaAwOjdfQMm0HjcUMlQG47GwqdVKgmm20vTd2pucj0a70c3gUSHrnsmo6H2AMrkBsZU2UhJLq8A==" + } + }, + "npm:@types/d3-hierarchy": { + "type": "npm", + "name": "npm:@types/d3-hierarchy", + "data": { + "version": "2.0.0", + "packageName": "@types/d3-hierarchy", + "hash": "sha512-YxdskUvwzqggpnSnDQj4KVkicgjpkgXn/g/9M9iGsiToLS3nG6Ytjo1FoYhYVAAElV/fJBGVL3cQ9Hb7tcv+lw==" + } + }, + "npm:@types/d3-path": { + "type": "npm", + "name": "npm:@types/d3-path", + "data": { + "version": "1.0.9", + "packageName": "@types/d3-path", + "hash": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" + } + }, + "npm:@types/d3-sankey": { + "type": "npm", + "name": "npm:@types/d3-sankey", + "data": { + "version": "0.11.2", + "packageName": "@types/d3-sankey", + "hash": "sha512-U6SrTWUERSlOhnpSrgvMX64WblX1AxX6nEjI2t3mLK2USpQrnbwYYK+AS9SwiE7wgYmOsSSKoSdr8aoKBH0HgQ==" + } + }, + "npm:@types/d3-scale": { + "type": "npm", + "name": "npm:@types/d3-scale", + "data": { + "version": "4.0.2", + "packageName": "@types/d3-scale", + "hash": "sha512-Yk4htunhPAwN0XGlIwArRomOjdoBFXC3+kCxK2Ubg7I9shQlVSJy/pG/Ht5ASN+gdMIalpk8TJ5xV74jFsetLA==" + } + }, + "npm:@types/d3-selection": { + "type": "npm", + "name": "npm:@types/d3-selection", + "data": { + "version": "1.4.1", + "packageName": "@types/d3-selection", + "hash": "sha512-bv8IfFYo/xG6dxri9OwDnK3yCagYPeRIjTlrcdYJSx+FDWlCeBDepIHUpqROmhPtZ53jyna0aUajZRk0I3rXNA==" + } + }, + "npm:@types/d3-shape": { + "type": "npm", + "name": "npm:@types/d3-shape", + "data": { + "version": "3.1.1", + "packageName": "@types/d3-shape", + "hash": "sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==" + } + }, + "npm:@types/d3-shape@1.3.8": { + "type": "npm", + "name": "npm:@types/d3-shape@1.3.8", + "data": { + "version": "1.3.8", + "packageName": "@types/d3-shape", + "hash": "sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==" + } + }, + "npm:@types/d3-time-format": { + "type": "npm", + "name": "npm:@types/d3-time-format", + "data": { + "version": "3.0.4", + "packageName": "@types/d3-time-format", + "hash": "sha512-or9DiDnYI1h38J9hxKEsw513+KVuFbEVhl7qdxcaudoiqWWepapUen+2vAriFGexr6W5+P4l9+HJrB39GG+oRg==" + } + }, + "npm:@types/d3-time": { + "type": "npm", + "name": "npm:@types/d3-time", + "data": { + "version": "2.1.3", + "packageName": "@types/d3-time", + "hash": "sha512-9EOa1kDZ1f8v6C5Mepz5YpWrVikrywGTQQ6QaYiVonrN6Chmmji2/XEVF38gn4uId3f2j85Uod14OKsv7ITOhw==" + } + }, + "npm:@types/dedent": { + "type": "npm", + "name": "npm:@types/dedent", + "data": { + "version": "0.7.0", + "packageName": "@types/dedent", + "hash": "sha512-EGlKlgMhnLt/cM4DbUSafFdrkeJoC9Mvnj0PUCU7tFmTjMjNRT957kXCx0wYm3JuEq4o4ZsS5vG+NlkM2DMd2A==" + } + }, + "npm:@types/deep-assign": { + "type": "npm", + "name": "npm:@types/deep-assign", + "data": { + "version": "0.1.1", + "packageName": "@types/deep-assign", + "hash": "sha512-88jktQ7RJ96bJ4S8I2oeRylMXGeaZt/QBG0k8PiQ5UXCIliUQm0Pzlv3zcN1ZvEIuaLBgMkP0ynr8fAkwChgOQ==" + } + }, + "npm:@types/doctrine": { + "type": "npm", + "name": "npm:@types/doctrine", + "data": { + "version": "0.0.5", + "packageName": "@types/doctrine", + "hash": "sha512-JJwEeFy8Sl9ctiugU4h4DGN9hCB47oyhUkM2H8g8xZr4tHTEXtmV4U6krKrU8Ng0S7RlG/J7fkta1rGu3pq+YQ==" + } + }, + "npm:@types/ejs": { + "type": "npm", + "name": "npm:@types/ejs", + "data": { + "version": "3.1.2", + "packageName": "@types/ejs", + "hash": "sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==" + } + }, + "npm:@types/enzyme": { + "type": "npm", + "name": "npm:@types/enzyme", + "data": { + "version": "3.10.7", + "packageName": "@types/enzyme", + "hash": "sha512-J+0wduPGAkzOvW7sr6hshGv1gBI3WXLRTczkRKzVPxLP3xAkYxZmvvagSBPw8Z452fZ8TGUxCmAXcb44yLQksw==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.3", + "packageName": "@types/eslint-scope", + "hash": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "7.2.13", + "packageName": "@types/eslint", + "hash": "sha512-LKmQCWAlnVHvvXq4oasNUMTJJb2GwSyTY8+1C7OH5ILR8mPLaljv1jxL1bXW3xB3jFbQxTKxJAvI8PyjB09aBg==" + } + }, + "npm:@types/esquery": { + "type": "npm", + "name": "npm:@types/esquery", + "data": { + "version": "1.5.0", + "packageName": "@types/esquery", + "hash": "sha512-MNQ5gCt3j1idWHlj/dEF+WPS1kl6Woe0Agzwy96JvrwDQdDadqeIBhY7mUca51CCUzxf7BsnXzcyKi6ENpEtmQ==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.1", + "packageName": "@types/estree", + "hash": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" + } + }, + "npm:@types/estree@0.0.39": { + "type": "npm", + "name": "npm:@types/estree@0.0.39", + "data": { + "version": "0.0.39", + "packageName": "@types/estree", + "hash": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + } + }, + "npm:@types/estree@0.0.51": { + "type": "npm", + "name": "npm:@types/estree@0.0.51", + "data": { + "version": "0.0.51", + "packageName": "@types/estree", + "hash": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + } + }, + "npm:@types/events": { + "type": "npm", + "name": "npm:@types/events", + "data": { + "version": "3.0.0", + "packageName": "@types/events", + "hash": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" + } + }, + "npm:@types/execa": { + "type": "npm", + "name": "npm:@types/execa", + "data": { + "version": "0.9.0", + "packageName": "@types/execa", + "hash": "sha512-mgfd93RhzjYBUHHV532turHC2j4l/qxsF/PbfDmprHDEUHmNZGlDn1CEsulGK3AfsPdhkWzZQT/S/k0UGhLGsA==" + } + }, + "npm:@types/expect": { + "type": "npm", + "name": "npm:@types/expect", + "data": { + "version": "1.20.4", + "packageName": "@types/expect", + "hash": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.31", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.15", + "packageName": "@types/express", + "hash": "sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==" + } + }, + "npm:@types/faker": { + "type": "npm", + "name": "npm:@types/faker", + "data": { + "version": "4.1.9", + "packageName": "@types/faker", + "hash": "sha512-4ZFqA3CEXB6MgT8sDV8E5LhW+O9ndONsHeQXMbEwfOsjoQ4UXKqTJKru+BjDBUfobYEpQz1WYF9/uzQsvbY2wA==" + } + }, + "npm:@types/fs-extra": { + "type": "npm", + "name": "npm:@types/fs-extra", + "data": { + "version": "8.0.1", + "packageName": "@types/fs-extra", + "hash": "sha512-J00cVDALmi/hJOYsunyT52Hva5TnJeKP5yd1r+mH/ZU0mbYZflR0Z5kw5kITtKTRYMhm1JMClOFYdHnQszEvqw==" + } + }, + "npm:@types/glob-stream": { + "type": "npm", + "name": "npm:@types/glob-stream", + "data": { + "version": "6.1.0", + "packageName": "@types/glob-stream", + "hash": "sha512-RHv6ZQjcTncXo3thYZrsbAVwoy4vSKosSWhuhuQxLOTv74OJuFQxXkmUuZCr3q9uNBEVCvIzmZL/FeRNbHZGUg==" + } + }, + "npm:@types/glob": { + "type": "npm", + "name": "npm:@types/glob", + "data": { + "version": "7.1.1", + "packageName": "@types/glob", + "hash": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==" + } + }, + "npm:@types/globby": { + "type": "npm", + "name": "npm:@types/globby", + "data": { + "version": "9.1.0", + "packageName": "@types/globby", + "hash": "sha512-9du/HCA71EBz7syHRnM4Q/u4Fbx3SyN/Uu+4Of9lyPX4A6Xi+A8VMxvx8j5/CMTfrae2Zwdwg0fAaKvKXfRbAw==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.6", + "packageName": "@types/graceful-fs", + "hash": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==" + } + }, + "npm:@types/graphviz": { + "type": "npm", + "name": "npm:@types/graphviz", + "data": { + "version": "0.0.34", + "packageName": "@types/graphviz", + "hash": "sha512-5pyobgT+/NhwKy/LMLw14xFInvYXBPx4ITc2a5FvZbm6hcudcP73DpTKTlaZbjr8fdNAkaK9KdP8GAEF0iBwlQ==" + } + }, + "npm:@types/gulp-babel": { + "type": "npm", + "name": "npm:@types/gulp-babel", + "data": { + "version": "6.1.32", + "packageName": "@types/gulp-babel", + "hash": "sha512-vonKyjPvqmVwJE85g2nnJ9UHND+R2snIXP/7mqMuHumHNTORHGLiqBUbbixlcKqurvWe5zJkZrZWeLiGT8L5yg==" + } + }, + "npm:@types/gulp-cache": { + "type": "npm", + "name": "npm:@types/gulp-cache", + "data": { + "version": "0.4.5", + "packageName": "@types/gulp-cache", + "hash": "sha512-VUG4CILSTCrL6VV+6ZD7jxZN4kWkmd74h+fAw1gq9+t8gtBEMUHMBICOmmkMAOM+itsQDOlZC3AzUeUAcLw07w==" + } + }, + "npm:@types/gulp-remember": { + "type": "npm", + "name": "npm:@types/gulp-remember", + "data": { + "version": "0.0.31", + "packageName": "@types/gulp-remember", + "hash": "sha512-pULOyv3Nr3TCIqbrr0ecTkFn5iIPRoQIkvljYMJUIdfwN8JPbEdMemzt2XOlvqJ6xj5cxCVgFqv5zkWjQ3AVZw==" + } + }, + "npm:@types/gulp-sourcemaps": { + "type": "npm", + "name": "npm:@types/gulp-sourcemaps", + "data": { + "version": "0.0.35", + "packageName": "@types/gulp-sourcemaps", + "hash": "sha512-vUBuizwA4CAV3Mke0DJYHQxyN4YOB1aAql284qAO7Et7fe0hmnPi/R9Fhu2UhxMuSxAwFktsJUOQk5dJHOU1eA==" + } + }, + "npm:@types/gulp-util": { + "type": "npm", + "name": "npm:@types/gulp-util", + "data": { + "version": "3.0.36", + "packageName": "@types/gulp-util", + "hash": "sha512-hR3troWx2qr8Hx2xXSn0SijTG83WRPNgWS5/h0OtN4Eyqxi3KW1ptLp+zxnO8Z7DCZj0Ij5SSgYBHACMES4VCg==" + } + }, + "npm:@types/gulp": { + "type": "npm", + "name": "npm:@types/gulp", + "data": { + "version": "4.0.9", + "packageName": "@types/gulp", + "hash": "sha512-zzT+wfQ8uwoXjDhRK9Zkmmk09/fbLLmN/yDHFizJiEKIve85qutOnXcP/TM2sKPBTU+Jc16vfPbOMkORMUBN7Q==" + } + }, + "npm:@types/handlebars": { + "type": "npm", + "name": "npm:@types/handlebars", + "data": { + "version": "4.1.0", + "packageName": "@types/handlebars", + "hash": "sha512-gq9YweFKNNB1uFK71eRqsd4niVkXrxHugqWFQkeLRJvGjnxsLr16bYtcsG4tOFwmYi0Bax+wCkbf1reUfdl4kA==" + } + }, + "npm:@types/hast": { + "type": "npm", + "name": "npm:@types/hast", + "data": { + "version": "2.3.1", + "packageName": "@types/hast", + "hash": "sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==" + } + }, + "npm:@types/history": { + "type": "npm", + "name": "npm:@types/history", + "data": { + "version": "4.7.4", + "packageName": "@types/history", + "hash": "sha512-+o2igcuZA3xtOoFH56s+MCZVidwlJNcJID57DSCyawS2i910yG9vkwehCjJNZ6ImhCR5S9DbvIJKyYHcMyOfMw==" + } + }, + "npm:@types/html-minifier-terser": { + "type": "npm", + "name": "npm:@types/html-minifier-terser", + "data": { + "version": "5.1.0", + "packageName": "@types/html-minifier-terser", + "hash": "sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA==" + } + }, + "npm:@types/http-cache-semantics": { + "type": "npm", + "name": "npm:@types/http-cache-semantics", + "data": { + "version": "4.0.0", + "packageName": "@types/http-cache-semantics", + "hash": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.11", + "packageName": "@types/http-proxy", + "hash": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==" + } + }, + "npm:@types/inquirer": { + "type": "npm", + "name": "npm:@types/inquirer", + "data": { + "version": "6.0.1", + "packageName": "@types/inquirer", + "hash": "sha512-O9rEHE9iBvYaFAGS0fAlDzqY/3CsOrRKzni4zwnAEce2JrHUEbXAce2Pwwe8ZGzmQkucwSXn1tSiKig37INgfA==" + } + }, + "npm:@types/is-function": { + "type": "npm", + "name": "npm:@types/is-function", + "data": { + "version": "1.0.0", + "packageName": "@types/is-function", + "hash": "sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.3", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "1.1.1", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==" + } + }, + "npm:@types/istanbul-reports@1.1.1": { + "type": "npm", + "name": "npm:@types/istanbul-reports@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "@types/istanbul-reports", + "hash": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.0", + "packageName": "@types/istanbul-reports", + "hash": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==" + } + }, + "npm:@types/jest-axe": { + "type": "npm", + "name": "npm:@types/jest-axe", + "data": { + "version": "3.5.5", + "packageName": "@types/jest-axe", + "hash": "sha512-b8WDIdoeKtr/JDJ2+QjFXMuS8UhfdMA6+15Z5KjjIie3jQrSXD9KZWMSQxc0nPtx7L9rIFKdiDpQk+m7s4a/8w==" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.5.5", + "packageName": "@types/jest", + "hash": "sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==" + } + }, + "npm:@types/jju": { + "type": "npm", + "name": "npm:@types/jju", + "data": { + "version": "1.4.1", + "packageName": "@types/jju", + "hash": "sha512-LFt+YA7Lv2IZROMwokZKiPNORAV5N3huMs3IKnzlE430HWhWYZ8b+78HiwJXJJP1V2IEjinyJURuRJfGoaFSIA==" + } + }, + "npm:@types/jsdom": { + "type": "npm", + "name": "npm:@types/jsdom", + "data": { + "version": "20.0.1", + "packageName": "@types/jsdom", + "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.10", + "packageName": "@types/json-schema", + "hash": "sha512-BLO9bBq59vW3fxCpD4o0N4U+DXsvwvIcl+jofw0frQo/GrBFC+/jRZj1E7kgp6dvTyNmA4y6JCV5Id/r3mNP5A==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + } + }, + "npm:@types/karma": { + "type": "npm", + "name": "npm:@types/karma", + "data": { + "version": "6.3.3", + "packageName": "@types/karma", + "hash": "sha512-nRMec4mTCt+tkpRqh5/pAxmnjzEgAaalIq7mdfLFH88gSRC8+bxejLiSjHMMT/vHIhJHqg4GPIGCnCFbwvDRww==" + } + }, + "npm:@types/keyv": { + "type": "npm", + "name": "npm:@types/keyv", + "data": { + "version": "3.1.1", + "packageName": "@types/keyv", + "hash": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==" + } + }, + "npm:@types/lerna-alias": { + "type": "npm", + "name": "npm:@types/lerna-alias", + "data": { + "version": "3.0.0", + "packageName": "@types/lerna-alias", + "hash": "sha512-EfwEzSWxAxrZgUJT5sECi4RPFCIgOm/K9e5EWXp2hR9H6wzV1QIBgjGtGEl/OpOCcglNWzmqrVRX/qjvNwli9Q==" + } + }, + "npm:@types/loader-utils": { + "type": "npm", + "name": "npm:@types/loader-utils", + "data": { + "version": "2.0.3", + "packageName": "@types/loader-utils", + "hash": "sha512-sDXXzZnTLXgdso54/iOpAFSDgqhVXabCvwGAt77Agadh/Xk0QYgOk520r3tpOouI098gyqGIFywx8Op1voc3vQ==" + } + }, + "npm:@types/lodash": { + "type": "npm", + "name": "npm:@types/lodash", + "data": { + "version": "4.14.182", + "packageName": "@types/lodash", + "hash": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" + } + }, + "npm:@types/markdown-table": { + "type": "npm", + "name": "npm:@types/markdown-table", + "data": { + "version": "2.0.0", + "packageName": "@types/markdown-table", + "hash": "sha512-fVZN/DRjZvjuk+lo7ovlI/ZycS51gpYU5vw5EcFeqkcX6lucQ+UWgEOH2O4KJHkSck4DHAY7D7CkVLD0wzc5qw==" + } + }, + "npm:@types/mdast": { + "type": "npm", + "name": "npm:@types/mdast", + "data": { + "version": "3.0.7", + "packageName": "@types/mdast", + "hash": "sha512-YwR7OK8aPmaBvMMUi+pZXBNoW2unbVbfok4YRqGMJBe1dpDlzpRkJrYEYmvjxgs5JhuQmKfDexrN98u941Zasg==" + } + }, + "npm:@types/micromatch": { + "type": "npm", + "name": "npm:@types/micromatch", + "data": { + "version": "4.0.2", + "packageName": "@types/micromatch", + "hash": "sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "2.0.1", + "packageName": "@types/mime", + "hash": "sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw==" + } + }, + "npm:@types/minimatch": { + "type": "npm", + "name": "npm:@types/minimatch", + "data": { + "version": "3.0.3", + "packageName": "@types/minimatch", + "hash": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + } + }, + "npm:@types/minimist": { + "type": "npm", + "name": "npm:@types/minimist", + "data": { + "version": "1.2.1", + "packageName": "@types/minimist", + "hash": "sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==" + } + }, + "npm:@types/mocha": { + "type": "npm", + "name": "npm:@types/mocha", + "data": { + "version": "7.0.2", + "packageName": "@types/mocha", + "hash": "sha512-ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w==" + } + }, + "npm:@types/node-fetch": { + "type": "npm", + "name": "npm:@types/node-fetch", + "data": { + "version": "2.5.7", + "packageName": "@types/node-fetch", + "hash": "sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==" + } + }, + "npm:@types/node@14.18.32": { + "type": "npm", + "name": "npm:@types/node@14.18.32", + "data": { + "version": "14.18.32", + "packageName": "@types/node", + "hash": "sha512-Y6S38pFr04yb13qqHf8uk1nHE3lXgQ30WZbv1mLliV9pt0NjvqdWttLcrOYLnXbOafknVYRHZGoMSpR9UwfYow==" + } + }, + "npm:@types/node@12.20.24": { + "type": "npm", + "name": "npm:@types/node@12.20.24", + "data": { + "version": "12.20.24", + "packageName": "@types/node", + "hash": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "18.18.6", + "packageName": "@types/node", + "hash": "sha512-wf3Vz+jCmOQ2HV1YUJuCWdL64adYxumkrxtc+H1VUQlnQI04+5HtH+qZCOE21lBE7gIrt+CwX2Wv8Acrw5Ak6w==" + } + }, + "npm:@types/node@10.17.13": { + "type": "npm", + "name": "npm:@types/node@10.17.13", + "data": { + "version": "10.17.13", + "packageName": "@types/node", + "hash": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==" + } + }, + "npm:@types/node@11.15.54": { + "type": "npm", + "name": "npm:@types/node@11.15.54", + "data": { + "version": "11.15.54", + "packageName": "@types/node", + "hash": "sha512-1RWYiq+5UfozGsU6MwJyFX6BtktcT10XRjvcAQmskCtMcW3tPske88lM/nHv7BQG1w9KBXI1zPGuu5PnNCX14g==" + } + }, + "npm:@types/normalize-package-data": { + "type": "npm", + "name": "npm:@types/normalize-package-data", + "data": { + "version": "2.4.0", + "packageName": "@types/normalize-package-data", + "hash": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" + } + }, + "npm:@types/npmlog": { + "type": "npm", + "name": "npm:@types/npmlog", + "data": { + "version": "4.1.2", + "packageName": "@types/npmlog", + "hash": "sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==" + } + }, + "npm:@types/pako": { + "type": "npm", + "name": "npm:@types/pako", + "data": { + "version": "1.0.4", + "packageName": "@types/pako", + "hash": "sha512-Z+5bJSm28EXBSUJEgx29ioWeEEHUh6TiMkZHDhLwjc9wVFH+ressbkmX6waUZc5R3Gobn4Qu5llGxaoflZ+yhA==" + } + }, + "npm:@types/parse-json": { + "type": "npm", + "name": "npm:@types/parse-json", + "data": { + "version": "4.0.0", + "packageName": "@types/parse-json", + "hash": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + } + }, + "npm:@types/parse5": { + "type": "npm", + "name": "npm:@types/parse5", + "data": { + "version": "5.0.3", + "packageName": "@types/parse5", + "hash": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + } + }, + "npm:@types/prettier": { + "type": "npm", + "name": "npm:@types/prettier", + "data": { + "version": "2.7.2", + "packageName": "@types/prettier", + "hash": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==" + } + }, + "npm:@types/pretty-hrtime": { + "type": "npm", + "name": "npm:@types/pretty-hrtime", + "data": { + "version": "1.0.1", + "packageName": "@types/pretty-hrtime", + "hash": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==" + } + }, + "npm:@types/progress": { + "type": "npm", + "name": "npm:@types/progress", + "data": { + "version": "2.0.5", + "packageName": "@types/progress", + "hash": "sha512-ZYYVc/kSMkhH9W/4dNK/sLNra3cnkfT2nJyOAIDY+C2u6w72wa0s1aXAezVtbTsnN8HID1uhXCrLwDE2ZXpplg==" + } + }, + "npm:@types/prompts": { + "type": "npm", + "name": "npm:@types/prompts", + "data": { + "version": "2.4.1", + "packageName": "@types/prompts", + "hash": "sha512-1Mqzhzi9W5KlooNE4o0JwSXGUDeQXKldbGn9NO4tpxwZbHXYd+WcKpCksG2lbhH7U9I9LigfsdVsP2QAY0lNPA==" + } + }, + "npm:@types/prop-types": { + "type": "npm", + "name": "npm:@types/prop-types", + "data": { + "version": "15.7.1", + "packageName": "@types/prop-types", + "hash": "sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.7", + "packageName": "@types/qs", + "hash": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.3", + "packageName": "@types/range-parser", + "hash": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" + } + }, + "npm:@types/react-addons-test-utils": { + "type": "npm", + "name": "npm:@types/react-addons-test-utils", + "data": { + "version": "0.14.18", + "packageName": "@types/react-addons-test-utils", + "hash": "sha1-g+EK8dvl7CU1vC3FNz17w7gv3uE=" + } + }, + "npm:@types/react-custom-scrollbars": { + "type": "npm", + "name": "npm:@types/react-custom-scrollbars", + "data": { + "version": "4.0.5", + "packageName": "@types/react-custom-scrollbars", + "hash": "sha512-Qdotjy9wbf9nrNRzGj0bFDlhYIvjMxwrxHR0V1zUSc2cqb74a8ujLWTfIQ6JBSUx+3hY74+tHgEOthRJLEMyKw==" + } + }, + "npm:@types/react-dom": { + "type": "npm", + "name": "npm:@types/react-dom", + "data": { + "version": "17.0.15", + "packageName": "@types/react-dom", + "hash": "sha512-Tr9VU9DvNoHDWlmecmcsE5ZZiUkYx+nKBzum4Oxe1K0yJVyBlfbq7H3eXjxXqJczBKqPGq3EgfTru4MgKb9+Yw==" + } + }, + "npm:@types/react-dom@18.0.6": { + "type": "npm", + "name": "npm:@types/react-dom@18.0.6", + "data": { + "version": "18.0.6", + "packageName": "@types/react-dom", + "hash": "sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==" + } + }, + "npm:@types/react-frame-component": { + "type": "npm", + "name": "npm:@types/react-frame-component", + "data": { + "version": "4.1.1", + "packageName": "@types/react-frame-component", + "hash": "sha512-7soxaTJ030rtC2lFlaFzzJyCY4rsPwOLxfw/eGnbEq/wq80e71outSL6dUXM9bOh2qMhM1xnp+EMEhjdVvIlkA==" + } + }, + "npm:@types/react-is": { + "type": "npm", + "name": "npm:@types/react-is", + "data": { + "version": "17.0.3", + "packageName": "@types/react-is", + "hash": "sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==" + } + }, + "npm:@types/react-router-dom": { + "type": "npm", + "name": "npm:@types/react-router-dom", + "data": { + "version": "5.1.5", + "packageName": "@types/react-router-dom", + "hash": "sha512-ArBM4B1g3BWLGbaGvwBGO75GNFbLDUthrDojV2vHLih/Tq8M+tgvY1DSwkuNrPSwdp/GUL93WSEpTZs8nVyJLw==" + } + }, + "npm:@types/react-router": { + "type": "npm", + "name": "npm:@types/react-router", + "data": { + "version": "5.1.4", + "packageName": "@types/react-router", + "hash": "sha512-PZtnBuyfL07sqCJvGg3z+0+kt6fobc/xmle08jBiezLS8FrmGeiGkJnuxL/8Zgy9L83ypUhniV5atZn/L8n9MQ==" + } + }, + "npm:@types/react-syntax-highlighter": { + "type": "npm", + "name": "npm:@types/react-syntax-highlighter", + "data": { + "version": "10.2.1", + "packageName": "@types/react-syntax-highlighter", + "hash": "sha512-M2BAOiiQ2KDkCiuhO1UxAsSNfrSegUfXL1MabRggOoqJoPpaoSuTxGF+TgLuAjMEVW8dJDtp7WpBjjRLMxWgrQ==" + } + }, + "npm:@types/react-table": { + "type": "npm", + "name": "npm:@types/react-table", + "data": { + "version": "7.0.19", + "packageName": "@types/react-table", + "hash": "sha512-RYyEY7Yry6F2JsKhHeFsGdzuFF1hMqBStQrrazDzpBl4m/ECGHJxFVQjLBRzRwK+47ZKNPm79f7qEpHirbiCLA==" + } + }, + "npm:@types/react-test-renderer": { + "type": "npm", + "name": "npm:@types/react-test-renderer", + "data": { + "version": "17.0.2", + "packageName": "@types/react-test-renderer", + "hash": "sha512-+F1KONQTBHDBBhbHuT2GNydeMpPuviduXIVJRB7Y4nma4NR5DrTJfMMZ+jbhEHbpwL+Uqhs1WXh4KHiyrtYTPg==" + } + }, + "npm:@types/react-transition-group": { + "type": "npm", + "name": "npm:@types/react-transition-group", + "data": { + "version": "4.4.6", + "packageName": "@types/react-transition-group", + "hash": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==" + } + }, + "npm:@types/react-virtualized": { + "type": "npm", + "name": "npm:@types/react-virtualized", + "data": { + "version": "9.21.8", + "packageName": "@types/react-virtualized", + "hash": "sha512-7fZoA0Azd2jLIE9XC37fMZgMqaJe3o3pfzGjvrzphoKjBCdT4oNl6wikvo4dDMESDnpkZ8DvVTc7aSe4DW86Ew==" + } + }, + "npm:@types/react-window": { + "type": "npm", + "name": "npm:@types/react-window", + "data": { + "version": "1.8.2", + "packageName": "@types/react-window", + "hash": "sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==" + } + }, + "npm:@types/react": { + "type": "npm", + "name": "npm:@types/react", + "data": { + "version": "17.0.44", + "packageName": "@types/react", + "hash": "sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==" + } + }, + "npm:@types/react@18.0.14": { + "type": "npm", + "name": "npm:@types/react@18.0.14", + "data": { + "version": "18.0.14", + "packageName": "@types/react", + "hash": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==" + } + }, + "npm:@types/request-promise-native": { + "type": "npm", + "name": "npm:@types/request-promise-native", + "data": { + "version": "1.0.18", + "packageName": "@types/request-promise-native", + "hash": "sha512-tPnODeISFc/c1LjWyLuZUY+Z0uLB3+IMfNoQyDEi395+j6kTFTTRAqjENjoPJUid4vHRGEozoTrcTrfZM+AcbA==" + } + }, + "npm:@types/request": { + "type": "npm", + "name": "npm:@types/request", + "data": { + "version": "2.48.8", + "packageName": "@types/request", + "hash": "sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==" + } + }, + "npm:@types/resolve": { + "type": "npm", + "name": "npm:@types/resolve", + "data": { + "version": "0.0.8", + "packageName": "@types/resolve", + "hash": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==" + } + }, + "npm:@types/responselike": { + "type": "npm", + "name": "npm:@types/responselike", + "data": { + "version": "1.0.0", + "packageName": "@types/responselike", + "hash": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:@types/scheduler": { + "type": "npm", + "name": "npm:@types/scheduler", + "data": { + "version": "0.16.2", + "packageName": "@types/scheduler", + "hash": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "6.2.3", + "packageName": "@types/semver", + "hash": "sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==" + } + }, + "npm:@types/semver@7.3.13": { + "type": "npm", + "name": "npm:@types/semver@7.3.13", + "data": { + "version": "7.3.13", + "packageName": "@types/semver", + "hash": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.1", + "packageName": "@types/serve-index", + "hash": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.1", + "packageName": "@types/serve-static", + "hash": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==" + } + }, + "npm:@types/simulant": { + "type": "npm", + "name": "npm:@types/simulant", + "data": { + "version": "0.2.0", + "packageName": "@types/simulant", + "hash": "sha512-pQcnO5/JMR9KEnQGuYkDNQ9IDFAp0nrCfCjxqZ03WY2QDcuMPR6w0VpL6MO5VQEn93YkNCW9nTuRl/q0+iasVg==" + } + }, + "npm:@types/sinonjs__fake-timers": { + "type": "npm", + "name": "npm:@types/sinonjs__fake-timers", + "data": { + "version": "8.1.1", + "packageName": "@types/sinonjs__fake-timers", + "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" + } + }, + "npm:@types/sizzle": { + "type": "npm", + "name": "npm:@types/sizzle", + "data": { + "version": "2.3.2", + "packageName": "@types/sizzle", + "hash": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.33", + "packageName": "@types/sockjs", + "hash": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" + } + }, + "npm:@types/source-list-map": { + "type": "npm", + "name": "npm:@types/source-list-map", + "data": { + "version": "0.1.2", + "packageName": "@types/source-list-map", + "hash": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.1", + "packageName": "@types/stack-utils", + "hash": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + } + }, + "npm:@types/stylis": { + "type": "npm", + "name": "npm:@types/stylis", + "data": { + "version": "4.0.0", + "packageName": "@types/stylis", + "hash": "sha512-DB1wPXVDfTTyLO9tr4wTeAptinTGd+EemFDDJTdCfsLedYXuF1mRWpJtU74Rucqx7N7HecBmMwEERbPpLt1tGA==" + } + }, + "npm:@types/tapable": { + "type": "npm", + "name": "npm:@types/tapable", + "data": { + "version": "1.0.6", + "packageName": "@types/tapable", + "hash": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" + } + }, + "npm:@types/testing-library__jest-dom": { + "type": "npm", + "name": "npm:@types/testing-library__jest-dom", + "data": { + "version": "5.9.5", + "packageName": "@types/testing-library__jest-dom", + "hash": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==" + } + }, + "npm:@types/through2": { + "type": "npm", + "name": "npm:@types/through2", + "data": { + "version": "2.0.34", + "packageName": "@types/through2", + "hash": "sha512-nhRG8+RuG/L+0fAZBQYaRflXKjTrHOKH8MFTChnf+dNVMxA3wHYYrfj0tztK0W51ABXjGfRCDc0vRkecCOrsow==" + } + }, + "npm:@types/through": { + "type": "npm", + "name": "npm:@types/through", + "data": { + "version": "0.0.30", + "packageName": "@types/through", + "hash": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==" + } + }, + "npm:@types/tmp": { + "type": "npm", + "name": "npm:@types/tmp", + "data": { + "version": "0.2.0", + "packageName": "@types/tmp", + "hash": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==" + } + }, + "npm:@types/tough-cookie": { + "type": "npm", + "name": "npm:@types/tough-cookie", + "data": { + "version": "4.0.2", + "packageName": "@types/tough-cookie", + "hash": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==" + } + }, + "npm:@types/tunnel": { + "type": "npm", + "name": "npm:@types/tunnel", + "data": { + "version": "0.0.1", + "packageName": "@types/tunnel", + "hash": "sha512-AOqu6bQu5MSWwYvehMXLukFHnupHrpZ8nvgae5Ggie9UwzDR1CCwoXgSSWNZJuyOlCdfdsWMA5F2LlmvyoTv8A==" + } + }, + "npm:@types/uglify-js": { + "type": "npm", + "name": "npm:@types/uglify-js", + "data": { + "version": "3.17.1", + "packageName": "@types/uglify-js", + "hash": "sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==" + } + }, + "npm:@types/undertaker-registry": { + "type": "npm", + "name": "npm:@types/undertaker-registry", + "data": { + "version": "1.0.1", + "packageName": "@types/undertaker-registry", + "hash": "sha512-Z4TYuEKn9+RbNVk1Ll2SS4x1JeLHecolIbM/a8gveaHsW0Hr+RQMraZACwTO2VD7JvepgA6UO1A1VrbktQrIbQ==" + } + }, + "npm:@types/undertaker": { + "type": "npm", + "name": "npm:@types/undertaker", + "data": { + "version": "1.2.2", + "packageName": "@types/undertaker", + "hash": "sha512-j4iepCSuY2JGW/hShVtUBagic0klYNFIXP7VweavnYnNC2EjiKxJFeaS9uaJmAT0ty9sQSqTS1aagWMZMV0HyA==" + } + }, + "npm:@types/unist": { + "type": "npm", + "name": "npm:@types/unist", + "data": { + "version": "2.0.6", + "packageName": "@types/unist", + "hash": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" + } + }, + "npm:@types/vinyl-fs": { + "type": "npm", + "name": "npm:@types/vinyl-fs", + "data": { + "version": "2.4.11", + "packageName": "@types/vinyl-fs", + "hash": "sha512-2OzQSfIr9CqqWMGqmcERE6Hnd2KY3eBVtFaulVo3sJghplUcaeMdL9ZjEiljcQQeHjheWY9RlNmumjIAvsBNaA==" + } + }, + "npm:@types/vinyl": { + "type": "npm", + "name": "npm:@types/vinyl", + "data": { + "version": "2.0.7", + "packageName": "@types/vinyl", + "hash": "sha512-4UqPv+2567NhMQuMLdKAyK4yzrfCqwaTt6bLhHEs8PFcxbHILsrxaY63n4wgE/BRLDWDQeI+WcTmkXKExh9hQg==" + } + }, + "npm:@types/webpack-bundle-analyzer": { + "type": "npm", + "name": "npm:@types/webpack-bundle-analyzer", + "data": { + "version": "4.4.3", + "packageName": "@types/webpack-bundle-analyzer", + "hash": "sha512-7+4XhCMxc1XyQr2lwAbEEeWTax+FX70xMeskU0WtxrODczoOZXTo9vrYh/XF7pAOn+NxqR4yRKW5gfz1HHNnfw==" + } + }, + "npm:@types/webpack-dev-middleware": { + "type": "npm", + "name": "npm:@types/webpack-dev-middleware", + "data": { + "version": "4.1.0", + "packageName": "@types/webpack-dev-middleware", + "hash": "sha512-cG/RhZcpAmVCQi7sGMc7bFyYGA2Yzu/+pWxTJezs7z2asjGZJ7j+0/+t39AuxQQbEuABWgYAwolg/DysGEcLyA==" + } + }, + "npm:@types/webpack-env": { + "type": "npm", + "name": "npm:@types/webpack-env", + "data": { + "version": "1.16.0", + "packageName": "@types/webpack-env", + "hash": "sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==" + } + }, + "npm:@types/webpack-hot-middleware": { + "type": "npm", + "name": "npm:@types/webpack-hot-middleware", + "data": { + "version": "2.25.6", + "packageName": "@types/webpack-hot-middleware", + "hash": "sha512-1Q9ClNvZR30HIsEAHYQL3bXJK1K7IsrqjGMTfIureFjphsGOZ3TkbeoCupbCmi26pSLjVTPHp+pFrJNpOkBSVg==" + } + }, + "npm:@types/webpack-sources": { + "type": "npm", + "name": "npm:@types/webpack-sources", + "data": { + "version": "0.1.6", + "packageName": "@types/webpack-sources", + "hash": "sha512-FtAWR7wR5ocJ9+nP137DV81tveD/ZgB1sadnJ/axUGM3BUVfRPx8oQNMtv3JNfTeHx3VP7cXiyfR/jmtEsVHsQ==" + } + }, + "npm:@types/webpack": { + "type": "npm", + "name": "npm:@types/webpack", + "data": { + "version": "4.41.30", + "packageName": "@types/webpack", + "hash": "sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.4", + "packageName": "@types/ws", + "hash": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "15.0.0", + "packageName": "@types/yargs-parser", + "hash": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" + } + }, + "npm:@types/yargs-unparser": { + "type": "npm", + "name": "npm:@types/yargs-unparser", + "data": { + "version": "2.0.1", + "packageName": "@types/yargs-unparser", + "hash": "sha512-fAnDylacESFJBN4a1J2VnYCl2bTIMkwZ6f3CLCA04x/qCDalGR9aAec89KtS3K4zu05JxjQGn0aRWSPYQJ6zRQ==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "13.0.11", + "packageName": "@types/yargs", + "hash": "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==" + } + }, + "npm:@types/yargs@15.0.13": { + "type": "npm", + "name": "npm:@types/yargs@15.0.13", + "data": { + "version": "15.0.13", + "packageName": "@types/yargs", + "hash": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==" + } + }, + "npm:@types/yargs@17.0.22": { + "type": "npm", + "name": "npm:@types/yargs@17.0.22", + "data": { + "version": "17.0.22", + "packageName": "@types/yargs", + "hash": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==" + } + }, + "npm:@types/yauzl": { + "type": "npm", + "name": "npm:@types/yauzl", + "data": { + "version": "2.9.2", + "packageName": "@types/yauzl", + "hash": "sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==" + } + }, + "npm:@typescript-eslint/experimental-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/experimental-utils", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/experimental-utils", + "hash": "sha512-xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==" + } + }, + "npm:@typescript-eslint/scope-manager@5.59.1": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@5.59.1", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-mau0waO5frJctPuAzcxiNWqJR5Z8V0190FTSqRw1Q4Euop6+zTwHAf8YIXNwDOT29tyUDrQ65jSg9aTU/H0omA==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==" + } + }, + "npm:@typescript-eslint/types@5.59.1": { + "type": "npm", + "name": "npm:@typescript-eslint/types@5.59.1", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==" + } + }, + "npm:@typescript-eslint/typescript-estree@5.59.1": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@5.59.1", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-lYLBBOCsFltFy7XVqzX0Ju+Lh3WPIAWxYpmH/Q7ZoqzbscLiCW00LeYCdsUnnfnj29/s1WovXKh2gwCoinHNGA==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-MkTe7FE+K1/GxZkP5gRj3rCztg45bEhsd8HYjczBuYm+qFHP5vtZmjx3B0yUCDotceQ4sHgTyz60Ycl225njmA==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==" + } + }, + "npm:@typescript-eslint/visitor-keys@5.59.1": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@5.59.1", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-6waEYwBTCWryx0VJmP7JaM4FpipLsFl9CvYf2foAE8Qh/Y0s+bxWysciwOs0LTBED4JCaNxTZ5rGadB14M6dwA==" + } + }, + "npm:@uifabric/set-version": { + "type": "npm", + "name": "npm:@uifabric/set-version", + "data": { + "version": "7.0.23", + "packageName": "@uifabric/set-version", + "hash": "sha512-9E+YKtnH2kyMKnK9XZZsqyM8OCxEJIIfxtaThTlQpYOzrWAGJxQADFbZ7+Usi0U2xHnWNPFROjq+B9ocEzhqMA==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" + } + }, + "npm:@webassemblyjs/ast@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/ast@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + } + }, + "npm:@webassemblyjs/helper-api-error@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + } + }, + "npm:@webassemblyjs/helper-buffer@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + } + }, + "npm:@webassemblyjs/helper-code-frame": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-code-frame", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-code-frame", + "hash": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==" + } + }, + "npm:@webassemblyjs/helper-fsm": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-fsm", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-fsm", + "hash": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + } + }, + "npm:@webassemblyjs/helper-module-context": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-module-context", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-module-context", + "hash": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" + } + }, + "npm:@webassemblyjs/helper-wasm-section@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" + } + }, + "npm:@webassemblyjs/ieee754@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" + } + }, + "npm:@webassemblyjs/leb128@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + } + }, + "npm:@webassemblyjs/utf8@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + } + }, + "npm:@webassemblyjs/wasm-edit@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" + } + }, + "npm:@webassemblyjs/wasm-gen@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" + } + }, + "npm:@webassemblyjs/wasm-opt@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" + } + }, + "npm:@webassemblyjs/wasm-parser@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==" + } + }, + "npm:@webassemblyjs/wast-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-parser", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wast-parser", + "hash": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==" + } + }, + "npm:@webassemblyjs/wast-printer@1.11.6": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer@1.11.6", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==" + } + }, + "npm:@webpack-cli/configtest": { + "type": "npm", + "name": "npm:@webpack-cli/configtest", + "data": { + "version": "1.2.0", + "packageName": "@webpack-cli/configtest", + "hash": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==" + } + }, + "npm:@webpack-cli/info": { + "type": "npm", + "name": "npm:@webpack-cli/info", + "data": { + "version": "1.5.0", + "packageName": "@webpack-cli/info", + "hash": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==" + } + }, + "npm:@webpack-cli/serve": { + "type": "npm", + "name": "npm:@webpack-cli/serve", + "data": { + "version": "1.7.0", + "packageName": "@webpack-cli/serve", + "hash": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==" + } + }, + "npm:@wojtekmaj/enzyme-adapter-react-17": { + "type": "npm", + "name": "npm:@wojtekmaj/enzyme-adapter-react-17", + "data": { + "version": "0.6.7", + "packageName": "@wojtekmaj/enzyme-adapter-react-17", + "hash": "sha512-B+byiwi/T1bx5hcj9wc0fUL5Hlb5giSXJzcnEfJVl2j6dGV2NJfcxDBYX0WWwIxlzNiFz8kAvlkFWI2y/nscZQ==" + } + }, + "npm:@wojtekmaj/enzyme-adapter-utils": { + "type": "npm", + "name": "npm:@wojtekmaj/enzyme-adapter-utils", + "data": { + "version": "0.1.4", + "packageName": "@wojtekmaj/enzyme-adapter-utils", + "hash": "sha512-ARGIQSIIv3oBia1m5Ihn1VU0FGmft6KPe39SBKTb8p7LSXO23YI4kNtc4M/cKoIY7P+IYdrZcgMObvedyjoSQA==" + } + }, + "npm:@xmldom/xmldom@0.7.9": { + "type": "npm", + "name": "npm:@xmldom/xmldom@0.7.9", + "data": { + "version": "0.7.9", + "packageName": "@xmldom/xmldom", + "hash": "sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==" + } + }, + "npm:@xmldom/xmldom": { + "type": "npm", + "name": "npm:@xmldom/xmldom", + "data": { + "version": "0.8.2", + "packageName": "@xmldom/xmldom", + "hash": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ==" + } + }, + "npm:@xstate/react": { + "type": "npm", + "name": "npm:@xstate/react", + "data": { + "version": "1.6.3", + "packageName": "@xstate/react", + "hash": "sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.0-rc.46", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "npm:abab": { + "type": "npm", + "name": "npm:abab", + "data": { + "version": "2.0.6", + "packageName": "abab", + "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "1.0.9", + "packageName": "abbrev", + "hash": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=" + } + }, + "npm:ability-attributes-generator": { + "type": "npm", + "name": "npm:ability-attributes-generator", + "data": { + "version": "0.0.8", + "packageName": "ability-attributes-generator", + "hash": "sha512-GN7lfbyOnpYXBEH2BT6e9gsXwna3v+nOfojzHTKJKuo6HiT8seCSLxqWGbxLW/RMNacqIjJ2OA04d4ufzPx9yw==" + } + }, + "npm:ability-attributes-js-constraints": { + "type": "npm", + "name": "npm:ability-attributes-js-constraints", + "data": { + "version": "0.0.8", + "packageName": "ability-attributes-js-constraints", + "hash": "sha512-+TjS0GcQnFaX0thTs+sXiGtNelPcy6odeN8hKntd1KxsnFtqyrC3l2i55s+z3rRzei6BvkoSHvkKEOjk0E5UjA==" + } + }, + "npm:ability-attributes": { + "type": "npm", + "name": "npm:ability-attributes", + "data": { + "version": "0.0.8", + "packageName": "ability-attributes", + "hash": "sha512-GU2Gd1nAUzvTEu4+615DKCf7OkWf+rL5kLmsi3Fg+nY7fhjrMT1ZwsU8MJ8hqilipspq1Q2yIuUYj4q8l2W8nQ==" + } + }, + "npm:abort-controller": { + "type": "npm", + "name": "npm:abort-controller", + "data": { + "version": "3.0.0", + "packageName": "abort-controller", + "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.8.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk@7.2.0": { + "type": "npm", + "name": "npm:acorn-walk@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "acorn-walk", + "hash": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.2.0", + "packageName": "acorn-walk", + "hash": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" + } + }, + "npm:acorn@5.7.4": { + "type": "npm", + "name": "npm:acorn@5.7.4", + "data": { + "version": "5.7.4", + "packageName": "acorn", + "hash": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" + } + }, + "npm:acorn@6.4.1": { + "type": "npm", + "name": "npm:acorn@6.4.1", + "data": { + "version": "6.4.1", + "packageName": "acorn", + "hash": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" + } + }, + "npm:acorn@7.4.1": { + "type": "npm", + "name": "npm:acorn@7.4.1", + "data": { + "version": "7.4.1", + "packageName": "acorn", + "hash": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.10.0", + "packageName": "acorn", + "hash": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" + } + }, + "npm:adal-node": { + "type": "npm", + "name": "npm:adal-node", + "data": { + "version": "0.2.3", + "packageName": "adal-node", + "hash": "sha512-gMKr8RuYEYvsj7jyfCv/4BfKToQThz20SP71N3AtFn3ia3yAR8Qt2T3aVQhuJzunWs2b38ZsQV0qsZPdwZr7VQ==" + } + }, + "npm:add-px-to-style": { + "type": "npm", + "name": "npm:add-px-to-style", + "data": { + "version": "1.0.0", + "packageName": "add-px-to-style", + "hash": "sha1-0ME1RB+oAUqBN5BFMQlvZ/KPJjo=" + } + }, + "npm:add-stream": { + "type": "npm", + "name": "npm:add-stream", + "data": { + "version": "1.0.0", + "packageName": "add-stream", + "hash": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==" + } + }, + "npm:address": { + "type": "npm", + "name": "npm:address", + "data": { + "version": "1.1.2", + "packageName": "address", + "hash": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + } + }, + "npm:adm-zip": { + "type": "npm", + "name": "npm:adm-zip", + "data": { + "version": "0.5.9", + "packageName": "adm-zip", + "hash": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==" + } + }, + "npm:afterframe": { + "type": "npm", + "name": "npm:afterframe", + "data": { + "version": "1.0.2", + "packageName": "afterframe", + "hash": "sha512-0JeMZI7dIfVs5guqLgidQNV7c6jBC2HO0QNSekAUB82Hr7PdU9QXNAF3kpFkvATvHYDDTGto7FPsRu1ey+aKJQ==" + } + }, + "npm:agent-base@4.3.0": { + "type": "npm", + "name": "npm:agent-base@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "agent-base", + "hash": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:agentkeepalive": { + "type": "npm", + "name": "npm:agentkeepalive", + "data": { + "version": "4.2.1", + "packageName": "agentkeepalive", + "hash": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.0.1", + "packageName": "aggregate-error", + "hash": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==" + } + }, + "npm:aggregate-error@4.0.1": { + "type": "npm", + "name": "npm:aggregate-error@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "aggregate-error", + "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" + } + }, + "npm:airbnb-js-shims": { + "type": "npm", + "name": "npm:airbnb-js-shims", + "data": { + "version": "2.2.1", + "packageName": "airbnb-js-shims", + "hash": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==" + } + }, + "npm:ajv-errors@1.0.1": { + "type": "npm", + "name": "npm:ajv-errors@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "ajv-errors", + "hash": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + } + }, + "npm:ajv-formats@2.1.1": { + "type": "npm", + "name": "npm:ajv-formats@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ajv-keywords@5.1.0": { + "type": "npm", + "name": "npm:ajv-keywords@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "8.4.0", + "packageName": "ajv", + "hash": "sha512-7QD2l6+KBSLwf+7MuYocbWvRPdOu63/trReTLu2KFwkgctnub1auoF+Y1WYcm09CTM7quuscrzqmASaLHC/K4Q==" + } + }, + "npm:ajv@4.11.8": { + "type": "npm", + "name": "npm:ajv@4.11.8", + "data": { + "version": "4.11.8", + "packageName": "ajv", + "hash": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=" + } + }, + "npm:ajv@5.5.2": { + "type": "npm", + "name": "npm:ajv@5.5.2", + "data": { + "version": "5.5.2", + "packageName": "ajv", + "hash": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=" + } + }, + "npm:ajv@6.12.6": { + "type": "npm", + "name": "npm:ajv@6.12.6", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:ajv@8.12.0": { + "type": "npm", + "name": "npm:ajv@8.12.0", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:amdefine": { + "type": "npm", + "name": "npm:amdefine", + "data": { + "version": "1.0.1", + "packageName": "amdefine", + "hash": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + } + }, + "npm:anchor-markdown-header": { + "type": "npm", + "name": "npm:anchor-markdown-header", + "data": { + "version": "0.5.7", + "packageName": "anchor-markdown-header", + "hash": "sha1-BFBj125qH5zTJ6V6ASaqD97Dcac=" + } + }, + "npm:ansi-align@2.0.0": { + "type": "npm", + "name": "npm:ansi-align@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ansi-align", + "hash": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=" + } + }, + "npm:ansi-align": { + "type": "npm", + "name": "npm:ansi-align", + "data": { + "version": "3.0.0", + "packageName": "ansi-align", + "hash": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==" + } + }, + "npm:ansi-colors@3.2.3": { + "type": "npm", + "name": "npm:ansi-colors@3.2.3", + "data": { + "version": "3.2.3", + "packageName": "ansi-colors", + "hash": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "1.1.0", + "packageName": "ansi-colors", + "hash": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==" + } + }, + "npm:ansi-colors@4.1.1": { + "type": "npm", + "name": "npm:ansi-colors@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ansi-colors", + "hash": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + } + }, + "npm:ansi-cyan": { + "type": "npm", + "name": "npm:ansi-cyan", + "data": { + "version": "0.1.1", + "packageName": "ansi-cyan", + "hash": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=" + } + }, + "npm:ansi-escape-sequences": { + "type": "npm", + "name": "npm:ansi-escape-sequences", + "data": { + "version": "6.2.1", + "packageName": "ansi-escape-sequences", + "hash": "sha512-0gK95MrLXv+Vy5h4eKGvSX1yXopBqSYBi3/w4hekUxs/hHakF6asH9Gg7UXbb7IH9weAlVIrUzVOITNBr8Imag==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.1", + "packageName": "ansi-escapes", + "hash": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==" + } + }, + "npm:ansi-escapes@6.2.0": { + "type": "npm", + "name": "npm:ansi-escapes@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "ansi-escapes", + "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" + } + }, + "npm:ansi-gray": { + "type": "npm", + "name": "npm:ansi-gray", + "data": { + "version": "0.1.1", + "packageName": "ansi-gray", + "hash": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:ansi-red": { + "type": "npm", + "name": "npm:ansi-red", + "data": { + "version": "0.1.1", + "packageName": "ansi-red", + "hash": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=" + } + }, + "npm:ansi-regex@2.1.1": { + "type": "npm", + "name": "npm:ansi-regex@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ansi-regex", + "hash": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + } + }, + "npm:ansi-regex@3.0.1": { + "type": "npm", + "name": "npm:ansi-regex@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "ansi-regex", + "hash": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" + } + }, + "npm:ansi-regex@4.1.1": { + "type": "npm", + "name": "npm:ansi-regex@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ansi-regex", + "hash": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:ansi-styles@2.2.1": { + "type": "npm", + "name": "npm:ansi-styles@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "ansi-styles", + "hash": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + } + }, + "npm:ansi-styles@3.2.1": { + "type": "npm", + "name": "npm:ansi-styles@3.2.1", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:ansi-to-html": { + "type": "npm", + "name": "npm:ansi-to-html", + "data": { + "version": "0.6.13", + "packageName": "ansi-to-html", + "hash": "sha512-Ys2/umuaTlQvP9DLkaa7UzRKF2FLrfod/hNHXS9QhXCrw7seObG6ksOGmNz3UoK+adwM8L9vQfG7mvaxfJ3Jvw==" + } + }, + "npm:ansi-wrap": { + "type": "npm", + "name": "npm:ansi-wrap", + "data": { + "version": "0.1.0", + "packageName": "ansi-wrap", + "hash": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=" + } + }, + "npm:ansicolors": { + "type": "npm", + "name": "npm:ansicolors", + "data": { + "version": "0.3.2", + "packageName": "ansicolors", + "hash": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" + } + }, + "npm:anymatch@2.0.0": { + "type": "npm", + "name": "npm:anymatch@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "anymatch", + "hash": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.2", + "packageName": "anymatch", + "hash": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" + } + }, + "npm:app-root-dir": { + "type": "npm", + "name": "npm:app-root-dir", + "data": { + "version": "1.0.2", + "packageName": "app-root-dir", + "hash": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=" + } + }, + "npm:append-buffer": { + "type": "npm", + "name": "npm:append-buffer", + "data": { + "version": "1.0.2", + "packageName": "append-buffer", + "hash": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=" + } + }, + "npm:aproba": { + "type": "npm", + "name": "npm:aproba", + "data": { + "version": "1.2.0", + "packageName": "aproba", + "hash": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + } + }, + "npm:arch": { + "type": "npm", + "name": "npm:arch", + "data": { + "version": "2.2.0", + "packageName": "arch", + "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" + } + }, + "npm:archy": { + "type": "npm", + "name": "npm:archy", + "data": { + "version": "1.0.0", + "packageName": "archy", + "hash": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=" + } + }, + "npm:are-we-there-yet@2.0.0": { + "type": "npm", + "name": "npm:are-we-there-yet@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "are-we-there-yet", + "hash": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==" + } + }, + "npm:are-we-there-yet@3.0.1": { + "type": "npm", + "name": "npm:are-we-there-yet@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "are-we-there-yet", + "hash": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==" + } + }, + "npm:are-we-there-yet": { + "type": "npm", + "name": "npm:are-we-there-yet", + "data": { + "version": "1.1.5", + "packageName": "are-we-there-yet", + "hash": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:argparse@2.0.1": { + "type": "npm", + "name": "npm:argparse@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:aria-query": { + "type": "npm", + "name": "npm:aria-query", + "data": { + "version": "4.2.2", + "packageName": "aria-query", + "hash": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==" + } + }, + "npm:aria-query@5.0.0": { + "type": "npm", + "name": "npm:aria-query@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "aria-query", + "hash": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==" + } + }, + "npm:arr-diff@1.1.0": { + "type": "npm", + "name": "npm:arr-diff@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "arr-diff", + "hash": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=" + } + }, + "npm:arr-diff": { + "type": "npm", + "name": "npm:arr-diff", + "data": { + "version": "4.0.0", + "packageName": "arr-diff", + "hash": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + } + }, + "npm:arr-filter": { + "type": "npm", + "name": "npm:arr-filter", + "data": { + "version": "1.1.2", + "packageName": "arr-filter", + "hash": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=" + } + }, + "npm:arr-flatten": { + "type": "npm", + "name": "npm:arr-flatten", + "data": { + "version": "1.1.0", + "packageName": "arr-flatten", + "hash": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + } + }, + "npm:arr-map": { + "type": "npm", + "name": "npm:arr-map", + "data": { + "version": "2.0.2", + "packageName": "arr-map", + "hash": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=" + } + }, + "npm:arr-union@2.1.0": { + "type": "npm", + "name": "npm:arr-union@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "arr-union", + "hash": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=" + } + }, + "npm:arr-union": { + "type": "npm", + "name": "npm:arr-union", + "data": { + "version": "3.1.0", + "packageName": "arr-union", + "hash": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + } + }, + "npm:array-back": { + "type": "npm", + "name": "npm:array-back", + "data": { + "version": "3.1.0", + "packageName": "array-back", + "hash": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" + } + }, + "npm:array-back@4.0.2": { + "type": "npm", + "name": "npm:array-back@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "array-back", + "hash": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" + } + }, + "npm:array-back@6.2.2": { + "type": "npm", + "name": "npm:array-back@6.2.2", + "data": { + "version": "6.2.2", + "packageName": "array-back", + "hash": "sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==" + } + }, + "npm:array-differ": { + "type": "npm", + "name": "npm:array-differ", + "data": { + "version": "1.0.0", + "packageName": "array-differ", + "hash": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=" + } + }, + "npm:array-differ@3.0.0": { + "type": "npm", + "name": "npm:array-differ@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "array-differ", + "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" + } + }, + "npm:array-each": { + "type": "npm", + "name": "npm:array-each", + "data": { + "version": "1.0.1", + "packageName": "array-each", + "hash": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" + } + }, + "npm:array-filter": { + "type": "npm", + "name": "npm:array-filter", + "data": { + "version": "1.0.0", + "packageName": "array-filter", + "hash": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" + } + }, + "npm:array-find-index": { + "type": "npm", + "name": "npm:array-find-index", + "data": { + "version": "1.0.2", + "packageName": "array-find-index", + "hash": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + } + }, + "npm:array-flatten@2.1.2": { + "type": "npm", + "name": "npm:array-flatten@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "array-flatten", + "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + }, + "npm:array-ify": { + "type": "npm", + "name": "npm:array-ify", + "data": { + "version": "1.0.0", + "packageName": "array-ify", + "hash": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=" + } + }, + "npm:array-includes": { + "type": "npm", + "name": "npm:array-includes", + "data": { + "version": "3.1.4", + "packageName": "array-includes", + "hash": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==" + } + }, + "npm:array-initial": { + "type": "npm", + "name": "npm:array-initial", + "data": { + "version": "1.1.0", + "packageName": "array-initial", + "hash": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=" + } + }, + "npm:array-last": { + "type": "npm", + "name": "npm:array-last", + "data": { + "version": "1.3.0", + "packageName": "array-last", + "hash": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==" + } + }, + "npm:array-slice@0.2.3": { + "type": "npm", + "name": "npm:array-slice@0.2.3", + "data": { + "version": "0.2.3", + "packageName": "array-slice", + "hash": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=" + } + }, + "npm:array-slice": { + "type": "npm", + "name": "npm:array-slice", + "data": { + "version": "1.1.0", + "packageName": "array-slice", + "hash": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==" + } + }, + "npm:array-sort": { + "type": "npm", + "name": "npm:array-sort", + "data": { + "version": "1.0.0", + "packageName": "array-sort", + "hash": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==" + } + }, + "npm:array-union@1.0.2": { + "type": "npm", + "name": "npm:array-union@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "array-union", + "hash": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:array-uniq": { + "type": "npm", + "name": "npm:array-uniq", + "data": { + "version": "1.0.3", + "packageName": "array-uniq", + "hash": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + } + }, + "npm:array-unique": { + "type": "npm", + "name": "npm:array-unique", + "data": { + "version": "0.3.2", + "packageName": "array-unique", + "hash": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.2.5", + "packageName": "array.prototype.flat", + "hash": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.2.5", + "packageName": "array.prototype.flatmap", + "hash": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==" + } + }, + "npm:arrify@1.0.1": { + "type": "npm", + "name": "npm:arrify@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "arrify", + "hash": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + } + }, + "npm:arrify": { + "type": "npm", + "name": "npm:arrify", + "data": { + "version": "2.0.1", + "packageName": "arrify", + "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + } + }, + "npm:asap": { + "type": "npm", + "name": "npm:asap", + "data": { + "version": "2.0.6", + "packageName": "asap", + "hash": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + } + }, + "npm:asn1.js": { + "type": "npm", + "name": "npm:asn1.js", + "data": { + "version": "4.10.1", + "packageName": "asn1.js", + "hash": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==" + } + }, + "npm:asn1": { + "type": "npm", + "name": "npm:asn1", + "data": { + "version": "0.2.4", + "packageName": "asn1", + "hash": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==" + } + }, + "npm:assert-plus": { + "type": "npm", + "name": "npm:assert-plus", + "data": { + "version": "1.0.0", + "packageName": "assert-plus", + "hash": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + }, + "npm:assert@1.5.0": { + "type": "npm", + "name": "npm:assert@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "assert", + "hash": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==" + } + }, + "npm:assert": { + "type": "npm", + "name": "npm:assert", + "data": { + "version": "2.0.0", + "packageName": "assert", + "hash": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==" + } + }, + "npm:assertion-error": { + "type": "npm", + "name": "npm:assertion-error", + "data": { + "version": "1.1.0", + "packageName": "assertion-error", + "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" + } + }, + "npm:assign-symbols": { + "type": "npm", + "name": "npm:assign-symbols", + "data": { + "version": "1.0.0", + "packageName": "assign-symbols", + "hash": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + } + }, + "npm:ast-types-flow": { + "type": "npm", + "name": "npm:ast-types-flow", + "data": { + "version": "0.0.7", + "packageName": "ast-types-flow", + "hash": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + } + }, + "npm:ast-types@0.13.2": { + "type": "npm", + "name": "npm:ast-types@0.13.2", + "data": { + "version": "0.13.2", + "packageName": "ast-types", + "hash": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==" + } + }, + "npm:ast-types": { + "type": "npm", + "name": "npm:ast-types", + "data": { + "version": "0.14.2", + "packageName": "ast-types", + "hash": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:async-done": { + "type": "npm", + "name": "npm:async-done", + "data": { + "version": "1.3.2", + "packageName": "async-done", + "hash": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==" + } + }, + "npm:async-each": { + "type": "npm", + "name": "npm:async-each", + "data": { + "version": "1.0.3", + "packageName": "async-each", + "hash": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + } + }, + "npm:async-retry": { + "type": "npm", + "name": "npm:async-retry", + "data": { + "version": "1.2.3", + "packageName": "async-retry", + "hash": "sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==" + } + }, + "npm:async-settle": { + "type": "npm", + "name": "npm:async-settle", + "data": { + "version": "1.0.0", + "packageName": "async-settle", + "hash": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=" + } + }, + "npm:async@1.5.2": { + "type": "npm", + "name": "npm:async@1.5.2", + "data": { + "version": "1.5.2", + "packageName": "async", + "hash": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "2.6.4", + "packageName": "async", + "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" + } + }, + "npm:async@3.2.3": { + "type": "npm", + "name": "npm:async@3.2.3", + "data": { + "version": "3.2.3", + "packageName": "async", + "hash": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:atob": { + "type": "npm", + "name": "npm:atob", + "data": { + "version": "2.1.2", + "packageName": "atob", + "hash": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.2.1", + "packageName": "autoprefixer", + "hash": "sha512-dwP0UjyYvROUvtU+boBx8ff5pPWami1NGTrJs9YUsS/oZVbRAcdNHOOuXSA1fc46tgKqe072cVaKD69rvCc3QQ==" + } + }, + "npm:autoprefixer@9.8.6": { + "type": "npm", + "name": "npm:autoprefixer@9.8.6", + "data": { + "version": "9.8.6", + "packageName": "autoprefixer", + "hash": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.2", + "packageName": "available-typed-arrays", + "hash": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==" + } + }, + "npm:aws-sign2": { + "type": "npm", + "name": "npm:aws-sign2", + "data": { + "version": "0.7.0", + "packageName": "aws-sign2", + "hash": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + } + }, + "npm:aws4": { + "type": "npm", + "name": "npm:aws4", + "data": { + "version": "1.8.0", + "packageName": "aws4", + "hash": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" + } + }, + "npm:axe-core": { + "type": "npm", + "name": "npm:axe-core", + "data": { + "version": "4.4.3", + "packageName": "axe-core", + "hash": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" + } + }, + "npm:axios@0.21.4": { + "type": "npm", + "name": "npm:axios@0.21.4", + "data": { + "version": "0.21.4", + "packageName": "axios", + "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "1.4.0", + "packageName": "axios", + "hash": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==" + } + }, + "npm:axobject-query": { + "type": "npm", + "name": "npm:axobject-query", + "data": { + "version": "2.2.0", + "packageName": "axobject-query", + "hash": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + } + }, + "npm:azure-devops-node-api": { + "type": "npm", + "name": "npm:azure-devops-node-api", + "data": { + "version": "10.2.2", + "packageName": "azure-devops-node-api", + "hash": "sha512-4TVv2X7oNStT0vLaEfExmy3J4/CzfuXolEcQl/BRUmvGySqKStTG2O55/hUQ0kM7UJlZBLgniM0SBq4d/WkKow==" + } + }, + "npm:azure-storage-simple": { + "type": "npm", + "name": "npm:azure-storage-simple", + "data": { + "version": "1.0.0", + "packageName": "azure-storage-simple", + "hash": "sha512-n9zaOEfoxKUNZaeT1fJKJRfns9yyckstLlRXSPVr32m4RXwMSarJQZYl0ePBxToPY/JxdRK4lwXE0r0hp1JP3w==" + } + }, + "npm:azure-storage": { + "type": "npm", + "name": "npm:azure-storage", + "data": { + "version": "2.10.7", + "packageName": "azure-storage", + "hash": "sha512-4oeFGtn3Ziw/fGs/zkoIpKKtygnCVIcZwzJ7UQzKTxhkGQqVCByOFbYqMGYR3L+wOsunX9lNfD0jc51SQuKSSA==" + } + }, + "npm:babel-code-frame": { + "type": "npm", + "name": "npm:babel-code-frame", + "data": { + "version": "6.26.0", + "packageName": "babel-code-frame", + "hash": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=" + } + }, + "npm:babel-generator": { + "type": "npm", + "name": "npm:babel-generator", + "data": { + "version": "6.26.1", + "packageName": "babel-generator", + "hash": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==" + } + }, + "npm:babel-jest": { + "type": "npm", + "name": "npm:babel-jest", + "data": { + "version": "29.7.0", + "packageName": "babel-jest", + "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "8.3.0", + "packageName": "babel-loader", + "hash": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==" + } + }, + "npm:babel-messages": { + "type": "npm", + "name": "npm:babel-messages", + "data": { + "version": "6.23.0", + "packageName": "babel-messages", + "hash": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=" + } + }, + "npm:babel-plugin-add-react-displayname": { + "type": "npm", + "name": "npm:babel-plugin-add-react-displayname", + "data": { + "version": "0.0.5", + "packageName": "babel-plugin-add-react-displayname", + "hash": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=" + } + }, + "npm:babel-plugin-annotate-pure-calls": { + "type": "npm", + "name": "npm:babel-plugin-annotate-pure-calls", + "data": { + "version": "0.4.0", + "packageName": "babel-plugin-annotate-pure-calls", + "hash": "sha512-oi4M/PWUJOU9ZyRGoPTfPMqdyMp06jbJAomd3RcyYuzUtBOddv98BqLm96Lucpi2QFoQHkdGQt0ACvw7VzVEQA==" + } + }, + "npm:babel-plugin-annotate-pure-imports": { + "type": "npm", + "name": "npm:babel-plugin-annotate-pure-imports", + "data": { + "version": "1.0.0-1", + "packageName": "babel-plugin-annotate-pure-imports", + "hash": "sha512-BJk9paXY1qh7amBLwWfhWbvxFWsUCmiz6NSnpTbP5T4EAM0PwvCr6U5bz+0NbCADphziPMVgbt/M+/06oV+1GA==" + } + }, + "npm:babel-plugin-apply-mdx-type-prop@1.6.22": { + "type": "npm", + "name": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "data": { + "version": "1.6.22", + "packageName": "babel-plugin-apply-mdx-type-prop", + "hash": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==" + } + }, + "npm:babel-plugin-const-enum": { + "type": "npm", + "name": "npm:babel-plugin-const-enum", + "data": { + "version": "1.2.0", + "packageName": "babel-plugin-const-enum", + "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" + } + }, + "npm:babel-plugin-emotion": { + "type": "npm", + "name": "npm:babel-plugin-emotion", + "data": { + "version": "10.0.27", + "packageName": "babel-plugin-emotion", + "hash": "sha512-SUNYcT4FqhOqvwv0z1oeYhqgheU8qrceLojuHyX17ngo7WtWqN5I9l3IGHzf21Xraj465CVzF4IvOlAF+3ed0A==" + } + }, + "npm:babel-plugin-extract-import-names": { + "type": "npm", + "name": "npm:babel-plugin-extract-import-names", + "data": { + "version": "1.6.22", + "packageName": "babel-plugin-extract-import-names", + "hash": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==" + } + }, + "npm:babel-plugin-iife-wrap-react-components": { + "type": "npm", + "name": "npm:babel-plugin-iife-wrap-react-components", + "data": { + "version": "1.0.0-5", + "packageName": "babel-plugin-iife-wrap-react-components", + "hash": "sha512-N91+hcZ98cm7AhqqC9zTwRCwziqEcljgXNuZXWeHRicDKeFASbzbyG5TuSGdgiRYm4oO0TLEEXWx2dxMNoXzaw==" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:babel-plugin-jest-hoist": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist", + "data": { + "version": "29.6.3", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" + } + }, + "npm:babel-plugin-lodash": { + "type": "npm", + "name": "npm:babel-plugin-lodash", + "data": { + "version": "3.3.4", + "packageName": "babel-plugin-lodash", + "hash": "sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==" + } + }, + "npm:babel-plugin-macros": { + "type": "npm", + "name": "npm:babel-plugin-macros", + "data": { + "version": "2.8.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + } + }, + "npm:babel-plugin-macros@3.1.0": { + "type": "npm", + "name": "npm:babel-plugin-macros@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" + } + }, + "npm:babel-plugin-module-resolver": { + "type": "npm", + "name": "npm:babel-plugin-module-resolver", + "data": { + "version": "4.1.0", + "packageName": "babel-plugin-module-resolver", + "hash": "sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==" + } + }, + "npm:babel-plugin-named-exports-order": { + "type": "npm", + "name": "npm:babel-plugin-named-exports-order", + "data": { + "version": "0.0.2", + "packageName": "babel-plugin-named-exports-order", + "hash": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==" + } + }, + "npm:babel-plugin-polyfill-corejs2": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2", + "data": { + "version": "0.4.6", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==" + } + }, + "npm:babel-plugin-polyfill-corejs3@0.1.7": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3@0.1.7", + "data": { + "version": "0.1.7", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==" + } + }, + "npm:babel-plugin-polyfill-corejs3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3", + "data": { + "version": "0.8.6", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==" + } + }, + "npm:babel-plugin-polyfill-regenerator": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator", + "data": { + "version": "0.5.3", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==" + } + }, + "npm:babel-plugin-react-docgen": { + "type": "npm", + "name": "npm:babel-plugin-react-docgen", + "data": { + "version": "4.2.1", + "packageName": "babel-plugin-react-docgen", + "hash": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==" + } + }, + "npm:babel-plugin-styled-components": { + "type": "npm", + "name": "npm:babel-plugin-styled-components", + "data": { + "version": "1.10.7", + "packageName": "babel-plugin-styled-components", + "hash": "sha512-MBMHGcIA22996n9hZRf/UJLVVgkEOITuR2SvjHLb5dSTUyR4ZRGn+ngITapes36FI3WLxZHfRhkA1ffHxihOrg==" + } + }, + "npm:babel-plugin-syntax-jsx": { + "type": "npm", + "name": "npm:babel-plugin-syntax-jsx", + "data": { + "version": "6.18.0", + "packageName": "babel-plugin-syntax-jsx", + "hash": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + } + }, + "npm:babel-plugin-tester": { + "type": "npm", + "name": "npm:babel-plugin-tester", + "data": { + "version": "10.1.0", + "packageName": "babel-plugin-tester", + "hash": "sha512-4P2tNaM/Mtg6ytA9YAqmgONnMYqWvdbGDuwRTpIIC9yFZGQrEHoyvDPCx+X1QALAufVb5DKieOPGj5dffiEiNg==" + } + }, + "npm:babel-plugin-transform-react-remove-prop-types": { + "type": "npm", + "name": "npm:babel-plugin-transform-react-remove-prop-types", + "data": { + "version": "0.4.24", + "packageName": "babel-plugin-transform-react-remove-prop-types", + "hash": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + } + }, + "npm:babel-plugin-transform-typescript-metadata": { + "type": "npm", + "name": "npm:babel-plugin-transform-typescript-metadata", + "data": { + "version": "0.3.2", + "packageName": "babel-plugin-transform-typescript-metadata", + "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:babel-preset-jest": { + "type": "npm", + "name": "npm:babel-preset-jest", + "data": { + "version": "29.6.3", + "packageName": "babel-preset-jest", + "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" + } + }, + "npm:babel-runtime": { + "type": "npm", + "name": "npm:babel-runtime", + "data": { + "version": "6.26.0", + "packageName": "babel-runtime", + "hash": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=" + } + }, + "npm:babel-template": { + "type": "npm", + "name": "npm:babel-template", + "data": { + "version": "6.26.0", + "packageName": "babel-template", + "hash": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=" + } + }, + "npm:babel-traverse": { + "type": "npm", + "name": "npm:babel-traverse", + "data": { + "version": "6.26.0", + "packageName": "babel-traverse", + "hash": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=" + } + }, + "npm:babel-types": { + "type": "npm", + "name": "npm:babel-types", + "data": { + "version": "6.26.0", + "packageName": "babel-types", + "hash": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=" + } + }, + "npm:babylon": { + "type": "npm", + "name": "npm:babylon", + "data": { + "version": "6.18.0", + "packageName": "babylon", + "hash": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + } + }, + "npm:bach": { + "type": "npm", + "name": "npm:bach", + "data": { + "version": "1.2.0", + "packageName": "bach", + "hash": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=" + } + }, + "npm:backfill-cache": { + "type": "npm", + "name": "npm:backfill-cache", + "data": { + "version": "5.6.2", + "packageName": "backfill-cache", + "hash": "sha512-E2SjMLgHt8NJ9sPKL6djxPqQKvI3YEedT0q/fZ8uknQbNg9H6JAxjWlff6sB8UcoBmep4R99ACUuYqOfFEBglw==" + } + }, + "npm:backfill-config": { + "type": "npm", + "name": "npm:backfill-config", + "data": { + "version": "6.3.0", + "packageName": "backfill-config", + "hash": "sha512-4Pvqe4SIthHmlJi1yEyh8ThdZCh9SbNcf12Dx1TNkLii6um3Ez1P1rruPNQGW8jFtLb5kOWWkTnXPj6OXewXSA==" + } + }, + "npm:backfill-hasher": { + "type": "npm", + "name": "npm:backfill-hasher", + "data": { + "version": "6.4.3", + "packageName": "backfill-hasher", + "hash": "sha512-Btijbf5mC96bbFervlUMf5I14V9/bPPUiEFhWYO+XRyxlfbTejpvqzTpCDKEyCR/wMlt3AViAjZ3/UOZ6cMGsg==" + } + }, + "npm:backfill-logger": { + "type": "npm", + "name": "npm:backfill-logger", + "data": { + "version": "5.1.3", + "packageName": "backfill-logger", + "hash": "sha512-S1QUP+q3WWqcXWfwVt/jpi3r61CGWWJBfxGpzLPbRE8vMUw71P8sA+zYSx7M8ZI1PNZrxSA/TKq/NhoiMYXnpA==" + } + }, + "npm:backfill-utils-dotenv": { + "type": "npm", + "name": "npm:backfill-utils-dotenv", + "data": { + "version": "5.1.1", + "packageName": "backfill-utils-dotenv", + "hash": "sha512-hSdY1pflGFf4xXXpI51bnNPr8arS3ga5tSeyeTjIdohC5IwUf+Eldz2yeSMrbqtP3PKIuxHc2RcwTJfL5jSBfg==" + } + }, + "npm:backfill": { + "type": "npm", + "name": "npm:backfill", + "data": { + "version": "6.1.23", + "packageName": "backfill", + "hash": "sha512-VidtpsjTnEFH5Vg7p+IR8F5Fko+FJWse9SWEmbufaflL/Jp9xQO5igReqIp+HX2qzz1JjpfrPmRzFwOyVFdkrA==" + } + }, + "npm:bail": { + "type": "npm", + "name": "npm:bail", + "data": { + "version": "1.0.5", + "packageName": "bail", + "hash": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:base64id": { + "type": "npm", + "name": "npm:base64id", + "data": { + "version": "2.0.0", + "packageName": "base64id", + "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" + } + }, + "npm:base": { + "type": "npm", + "name": "npm:base", + "data": { + "version": "0.11.2", + "packageName": "base", + "hash": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==" + } + }, + "npm:batch-processor": { + "type": "npm", + "name": "npm:batch-processor", + "data": { + "version": "1.0.0", + "packageName": "batch-processor", + "hash": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + } + }, + "npm:bcrypt-pbkdf": { + "type": "npm", + "name": "npm:bcrypt-pbkdf", + "data": { + "version": "1.0.2", + "packageName": "bcrypt-pbkdf", + "hash": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=" + } + }, + "npm:beachball": { + "type": "npm", + "name": "npm:beachball", + "data": { + "version": "2.31.0", + "packageName": "beachball", + "hash": "sha512-xi6xf9nLLp9dpXBhnQuDsWdM6k+I34CrSdtniW8Qlt/BdHoUdTGhFFk9ky30pgywCam/bgGQbMd2FOChaUvfjQ==" + } + }, + "npm:beeper": { + "type": "npm", + "name": "npm:beeper", + "data": { + "version": "1.1.1", + "packageName": "beeper", + "hash": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=" + } + }, + "npm:before-after-hook": { + "type": "npm", + "name": "npm:before-after-hook", + "data": { + "version": "2.2.2", + "packageName": "before-after-hook", + "hash": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==" + } + }, + "npm:better-opn": { + "type": "npm", + "name": "npm:better-opn", + "data": { + "version": "2.1.1", + "packageName": "better-opn", + "hash": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==" + } + }, + "npm:big-integer": { + "type": "npm", + "name": "npm:big-integer", + "data": { + "version": "1.6.51", + "packageName": "big-integer", + "hash": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:bin-check": { + "type": "npm", + "name": "npm:bin-check", + "data": { + "version": "4.1.0", + "packageName": "bin-check", + "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" + } + }, + "npm:bin-version-check": { + "type": "npm", + "name": "npm:bin-version-check", + "data": { + "version": "5.1.0", + "packageName": "bin-version-check", + "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" + } + }, + "npm:bin-version": { + "type": "npm", + "name": "npm:bin-version", + "data": { + "version": "6.0.0", + "packageName": "bin-version", + "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" + } + }, + "npm:binary-extensions@1.13.1": { + "type": "npm", + "name": "npm:binary-extensions@1.13.1", + "data": { + "version": "1.13.1", + "packageName": "binary-extensions", + "hash": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.1.0", + "packageName": "binary-extensions", + "hash": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==" + } + }, + "npm:binary": { + "type": "npm", + "name": "npm:binary", + "data": { + "version": "0.3.0", + "packageName": "binary", + "hash": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==" + } + }, + "npm:binaryextensions": { + "type": "npm", + "name": "npm:binaryextensions", + "data": { + "version": "2.3.0", + "packageName": "binaryextensions", + "hash": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==" + } + }, + "npm:bindings@1.5.0": { + "type": "npm", + "name": "npm:bindings@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "bindings", + "hash": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:blob-util": { + "type": "npm", + "name": "npm:blob-util", + "data": { + "version": "2.0.2", + "packageName": "blob-util", + "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" + } + }, + "npm:bluebird": { + "type": "npm", + "name": "npm:bluebird", + "data": { + "version": "3.7.2", + "packageName": "bluebird", + "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + } + }, + "npm:bluebird@3.4.7": { + "type": "npm", + "name": "npm:bluebird@3.4.7", + "data": { + "version": "3.4.7", + "packageName": "bluebird", + "hash": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" + } + }, + "npm:bn.js": { + "type": "npm", + "name": "npm:bn.js", + "data": { + "version": "4.11.9", + "packageName": "bn.js", + "hash": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.19.2", + "packageName": "body-parser", + "hash": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==" + } + }, + "npm:body-scroll-lock": { + "type": "npm", + "name": "npm:body-scroll-lock", + "data": { + "version": "3.1.5", + "packageName": "body-scroll-lock", + "hash": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==" + } + }, + "npm:bonjour": { + "type": "npm", + "name": "npm:bonjour", + "data": { + "version": "3.5.0", + "packageName": "bonjour", + "hash": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + } + }, + "npm:boundary": { + "type": "npm", + "name": "npm:boundary", + "data": { + "version": "1.0.1", + "packageName": "boundary", + "hash": "sha1-TWfcJgLAzBbdm85+v4fpSCkPWBI=" + } + }, + "npm:boxen@1.3.0": { + "type": "npm", + "name": "npm:boxen@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "boxen", + "hash": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==" + } + }, + "npm:boxen": { + "type": "npm", + "name": "npm:boxen", + "data": { + "version": "4.2.0", + "packageName": "boxen", + "hash": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==" + } + }, + "npm:boxen@5.1.2": { + "type": "npm", + "name": "npm:boxen@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "boxen", + "hash": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==" + } + }, + "npm:bplist-parser": { + "type": "npm", + "name": "npm:bplist-parser", + "data": { + "version": "0.1.1", + "packageName": "bplist-parser", + "hash": "sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==" + } + }, + "npm:brace-expansion@1.1.11": { + "type": "npm", + "name": "npm:brace-expansion@1.1.11", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:brace": { + "type": "npm", + "name": "npm:brace", + "data": { + "version": "0.11.1", + "packageName": "brace", + "hash": "sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg=" + } + }, + "npm:braces@2.3.2": { + "type": "npm", + "name": "npm:braces@2.3.2", + "data": { + "version": "2.3.2", + "packageName": "braces", + "hash": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:brorand": { + "type": "npm", + "name": "npm:brorand", + "data": { + "version": "1.1.0", + "packageName": "brorand", + "hash": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + } + }, + "npm:brotli-size": { + "type": "npm", + "name": "npm:brotli-size", + "data": { + "version": "4.0.0", + "packageName": "brotli-size", + "hash": "sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==" + } + }, + "npm:browser-assert": { + "type": "npm", + "name": "npm:browser-assert", + "data": { + "version": "1.2.1", + "packageName": "browser-assert", + "hash": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==" + } + }, + "npm:browser-stdout": { + "type": "npm", + "name": "npm:browser-stdout", + "data": { + "version": "1.3.1", + "packageName": "browser-stdout", + "hash": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==" + } + }, + "npm:browserify-aes": { + "type": "npm", + "name": "npm:browserify-aes", + "data": { + "version": "1.2.0", + "packageName": "browserify-aes", + "hash": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==" + } + }, + "npm:browserify-cipher": { + "type": "npm", + "name": "npm:browserify-cipher", + "data": { + "version": "1.0.1", + "packageName": "browserify-cipher", + "hash": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==" + } + }, + "npm:browserify-des": { + "type": "npm", + "name": "npm:browserify-des", + "data": { + "version": "1.0.2", + "packageName": "browserify-des", + "hash": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==" + } + }, + "npm:browserify-mime": { + "type": "npm", + "name": "npm:browserify-mime", + "data": { + "version": "1.2.9", + "packageName": "browserify-mime", + "hash": "sha512-uz+ItyJXBLb6wgon1ELEiVowJBEsy03PUWGRQU7cxxx9S+DW2hujPp+DaMYEOClRPzsn7NB99NtJ6pGnt8y+CQ==" + } + }, + "npm:browserify-rsa": { + "type": "npm", + "name": "npm:browserify-rsa", + "data": { + "version": "4.0.1", + "packageName": "browserify-rsa", + "hash": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=" + } + }, + "npm:browserify-sign": { + "type": "npm", + "name": "npm:browserify-sign", + "data": { + "version": "4.0.4", + "packageName": "browserify-sign", + "hash": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=" + } + }, + "npm:browserify-zlib": { + "type": "npm", + "name": "npm:browserify-zlib", + "data": { + "version": "0.2.0", + "packageName": "browserify-zlib", + "hash": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.22.1", + "packageName": "browserslist", + "hash": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==" + } + }, + "npm:bs-logger": { + "type": "npm", + "name": "npm:bs-logger", + "data": { + "version": "0.2.6", + "packageName": "bs-logger", + "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.0", + "packageName": "bser", + "hash": "sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg==" + } + }, + "npm:buffer-crc32": { + "type": "npm", + "name": "npm:buffer-crc32", + "data": { + "version": "0.2.13", + "packageName": "buffer-crc32", + "hash": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" + } + }, + "npm:buffer-equal-constant-time": { + "type": "npm", + "name": "npm:buffer-equal-constant-time", + "data": { + "version": "1.0.1", + "packageName": "buffer-equal-constant-time", + "hash": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" + } + }, + "npm:buffer-equal": { + "type": "npm", + "name": "npm:buffer-equal", + "data": { + "version": "1.0.0", + "packageName": "buffer-equal", + "hash": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.1", + "packageName": "buffer-from", + "hash": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + } + }, + "npm:buffer-indexof-polyfill": { + "type": "npm", + "name": "npm:buffer-indexof-polyfill", + "data": { + "version": "1.0.2", + "packageName": "buffer-indexof-polyfill", + "hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" + } + }, + "npm:buffer-indexof": { + "type": "npm", + "name": "npm:buffer-indexof", + "data": { + "version": "1.1.1", + "packageName": "buffer-indexof", + "hash": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + } + }, + "npm:buffer-xor": { + "type": "npm", + "name": "npm:buffer-xor", + "data": { + "version": "1.0.3", + "packageName": "buffer-xor", + "hash": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + } + }, + "npm:buffer@4.9.1": { + "type": "npm", + "name": "npm:buffer@4.9.1", + "data": { + "version": "4.9.1", + "packageName": "buffer", + "hash": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:buffer@6.0.3": { + "type": "npm", + "name": "npm:buffer@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "buffer", + "hash": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==" + } + }, + "npm:buffers": { + "type": "npm", + "name": "npm:buffers", + "data": { + "version": "0.1.1", + "packageName": "buffers", + "hash": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=" + } + }, + "npm:builtin-modules": { + "type": "npm", + "name": "npm:builtin-modules", + "data": { + "version": "3.1.0", + "packageName": "builtin-modules", + "hash": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==" + } + }, + "npm:builtin-status-codes": { + "type": "npm", + "name": "npm:builtin-status-codes", + "data": { + "version": "3.0.0", + "packageName": "builtin-status-codes", + "hash": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + } + }, + "npm:builtins@1.0.3": { + "type": "npm", + "name": "npm:builtins@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "builtins", + "hash": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.0.1", + "packageName": "builtins", + "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" + } + }, + "npm:byte-size": { + "type": "npm", + "name": "npm:byte-size", + "data": { + "version": "8.1.1", + "packageName": "byte-size", + "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" + } + }, + "npm:bytes@3.0.0": { + "type": "npm", + "name": "npm:bytes@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:cacache@12.0.3": { + "type": "npm", + "name": "npm:cacache@12.0.3", + "data": { + "version": "12.0.3", + "packageName": "cacache", + "hash": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "15.0.5", + "packageName": "cacache", + "hash": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==" + } + }, + "npm:cacache@16.1.3": { + "type": "npm", + "name": "npm:cacache@16.1.3", + "data": { + "version": "16.1.3", + "packageName": "cacache", + "hash": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" + } + }, + "npm:cacache@17.1.3": { + "type": "npm", + "name": "npm:cacache@17.1.3", + "data": { + "version": "17.1.3", + "packageName": "cacache", + "hash": "sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==" + } + }, + "npm:cache-base": { + "type": "npm", + "name": "npm:cache-base", + "data": { + "version": "1.0.1", + "packageName": "cache-base", + "hash": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==" + } + }, + "npm:cache-content-type": { + "type": "npm", + "name": "npm:cache-content-type", + "data": { + "version": "1.0.1", + "packageName": "cache-content-type", + "hash": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==" + } + }, + "npm:cache-swap": { + "type": "npm", + "name": "npm:cache-swap", + "data": { + "version": "0.3.0", + "packageName": "cache-swap", + "hash": "sha1-HFQaoQilAQb2ML3Zj+HeyLoTP1E=" + } + }, + "npm:cacheable-lookup": { + "type": "npm", + "name": "npm:cacheable-lookup", + "data": { + "version": "5.0.4", + "packageName": "cacheable-lookup", + "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + } + }, + "npm:cacheable-lookup@6.1.0": { + "type": "npm", + "name": "npm:cacheable-lookup@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "cacheable-lookup", + "hash": "sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "7.0.2", + "packageName": "cacheable-request", + "hash": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==" + } + }, + "npm:cachedir": { + "type": "npm", + "name": "npm:cachedir", + "data": { + "version": "2.3.0", + "packageName": "cachedir", + "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.2", + "packageName": "call-bind", + "hash": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + } + }, + "npm:call-me-maybe": { + "type": "npm", + "name": "npm:call-me-maybe", + "data": { + "version": "1.0.1", + "packageName": "call-me-maybe", + "hash": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" + } + }, + "npm:caller-callsite": { + "type": "npm", + "name": "npm:caller-callsite", + "data": { + "version": "2.0.0", + "packageName": "caller-callsite", + "hash": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=" + } + }, + "npm:caller-path": { + "type": "npm", + "name": "npm:caller-path", + "data": { + "version": "2.0.0", + "packageName": "caller-path", + "hash": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=" + } + }, + "npm:callsites@2.0.0": { + "type": "npm", + "name": "npm:callsites@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "callsites", + "hash": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camel-case": { + "type": "npm", + "name": "npm:camel-case", + "data": { + "version": "3.0.0", + "packageName": "camel-case", + "hash": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=" + } + }, + "npm:camel-case@4.1.2": { + "type": "npm", + "name": "npm:camel-case@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "camel-case", + "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + } + }, + "npm:camelcase-css": { + "type": "npm", + "name": "npm:camelcase-css", + "data": { + "version": "2.0.1", + "packageName": "camelcase-css", + "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + } + }, + "npm:camelcase-keys@2.1.0": { + "type": "npm", + "name": "npm:camelcase-keys@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "camelcase-keys", + "hash": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=" + } + }, + "npm:camelcase-keys": { + "type": "npm", + "name": "npm:camelcase-keys", + "data": { + "version": "6.2.2", + "packageName": "camelcase-keys", + "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" + } + }, + "npm:camelcase@2.1.1": { + "type": "npm", + "name": "npm:camelcase@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "camelcase", + "hash": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" + } + }, + "npm:camelcase@3.0.0": { + "type": "npm", + "name": "npm:camelcase@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "camelcase", + "hash": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + } + }, + "npm:camelcase@4.1.0": { + "type": "npm", + "name": "npm:camelcase@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "camelcase", + "hash": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:camelcase@6.2.1": { + "type": "npm", + "name": "npm:camelcase@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "camelcase", + "hash": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==" + } + }, + "npm:camelize": { + "type": "npm", + "name": "npm:camelize", + "data": { + "version": "1.0.0", + "packageName": "camelize", + "hash": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001553", + "packageName": "caniuse-lite", + "hash": "sha512-N0ttd6TrFfuqKNi+pMgWJTb9qrdJu4JSpgPFLe/lrD19ugC6fZgF0pUewRowDwzdDnb9V41mFcdlYgl/PyKf4A==" + } + }, + "npm:capture-exit": { + "type": "npm", + "name": "npm:capture-exit", + "data": { + "version": "2.0.0", + "packageName": "capture-exit", + "hash": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==" + } + }, + "npm:capture-stack-trace": { + "type": "npm", + "name": "npm:capture-stack-trace", + "data": { + "version": "1.0.1", + "packageName": "capture-stack-trace", + "hash": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==" + } + }, + "npm:cardinal": { + "type": "npm", + "name": "npm:cardinal", + "data": { + "version": "2.1.1", + "packageName": "cardinal", + "hash": "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=" + } + }, + "npm:case-sensitive-paths-webpack-plugin": { + "type": "npm", + "name": "npm:case-sensitive-paths-webpack-plugin", + "data": { + "version": "2.4.0", + "packageName": "case-sensitive-paths-webpack-plugin", + "hash": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==" + } + }, + "npm:caseless": { + "type": "npm", + "name": "npm:caseless", + "data": { + "version": "0.12.0", + "packageName": "caseless", + "hash": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + } + }, + "npm:ccount": { + "type": "npm", + "name": "npm:ccount", + "data": { + "version": "1.1.0", + "packageName": "ccount", + "hash": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" + } + }, + "npm:chai-spies": { + "type": "npm", + "name": "npm:chai-spies", + "data": { + "version": "1.0.0", + "packageName": "chai-spies", + "hash": "sha512-elF2ZUczBsFoP07qCfMO/zeggs8pqCf3fZGyK5+2X4AndS8jycZYID91ztD9oQ7d/0tnS963dPkd0frQEThDsg==" + } + }, + "npm:chai": { + "type": "npm", + "name": "npm:chai", + "data": { + "version": "4.3.6", + "packageName": "chai", + "hash": "sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==" + } + }, + "npm:chainsaw": { + "type": "npm", + "name": "npm:chainsaw", + "data": { + "version": "0.1.0", + "packageName": "chainsaw", + "hash": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.0", + "packageName": "chalk", + "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" + } + }, + "npm:chalk@4.1.2": { + "type": "npm", + "name": "npm:chalk@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:chalk@1.1.3": { + "type": "npm", + "name": "npm:chalk@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "chalk", + "hash": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk@3.0.0": { + "type": "npm", + "name": "npm:chalk@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "chalk", + "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" + } + }, + "npm:chalk@5.2.0": { + "type": "npm", + "name": "npm:chalk@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "chalk", + "hash": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==" + } + }, + "npm:change-case": { + "type": "npm", + "name": "npm:change-case", + "data": { + "version": "3.1.0", + "packageName": "change-case", + "hash": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:char-regex@2.0.1": { + "type": "npm", + "name": "npm:char-regex@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "char-regex", + "hash": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" + } + }, + "npm:character-entities-legacy": { + "type": "npm", + "name": "npm:character-entities-legacy", + "data": { + "version": "1.1.3", + "packageName": "character-entities-legacy", + "hash": "sha512-YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww==" + } + }, + "npm:character-entities": { + "type": "npm", + "name": "npm:character-entities", + "data": { + "version": "1.2.3", + "packageName": "character-entities", + "hash": "sha512-yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w==" + } + }, + "npm:character-reference-invalid": { + "type": "npm", + "name": "npm:character-reference-invalid", + "data": { + "version": "1.1.3", + "packageName": "character-reference-invalid", + "hash": "sha512-VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg==" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "0.7.0", + "packageName": "chardet", + "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + } + }, + "npm:check-error": { + "type": "npm", + "name": "npm:check-error", + "data": { + "version": "1.0.2", + "packageName": "check-error", + "hash": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=" + } + }, + "npm:check-more-types": { + "type": "npm", + "name": "npm:check-more-types", + "data": { + "version": "2.24.0", + "packageName": "check-more-types", + "hash": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=" + } + }, + "npm:cheerio": { + "type": "npm", + "name": "npm:cheerio", + "data": { + "version": "1.0.0-rc.3", + "packageName": "cheerio", + "hash": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==" + } + }, + "npm:chokidar@3.3.0": { + "type": "npm", + "name": "npm:chokidar@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "chokidar", + "hash": "sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:chokidar@2.1.8": { + "type": "npm", + "name": "npm:chokidar@2.1.8", + "data": { + "version": "2.1.8", + "packageName": "chokidar", + "hash": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==" + } + }, + "npm:chownr@1.1.4": { + "type": "npm", + "name": "npm:chownr@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "chownr", + "hash": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:chrome-remote-interface": { + "type": "npm", + "name": "npm:chrome-remote-interface", + "data": { + "version": "0.28.2", + "packageName": "chrome-remote-interface", + "hash": "sha512-F7mjof7rWvRNsJqhVXuiFU/HWySCxTA9tzpLxUJxVfdLkljwFJ1aMp08AnwXRmmP7r12/doTDOMwaNhFCJsacw==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.2", + "packageName": "chrome-trace-event", + "hash": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.8.0", + "packageName": "ci-info", + "hash": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==" + } + }, + "npm:ci-info@1.6.0": { + "type": "npm", + "name": "npm:ci-info@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "ci-info", + "hash": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==" + } + }, + "npm:ci-info@2.0.0": { + "type": "npm", + "name": "npm:ci-info@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ci-info", + "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + } + }, + "npm:cipher-base": { + "type": "npm", + "name": "npm:cipher-base", + "data": { + "version": "1.0.4", + "packageName": "cipher-base", + "hash": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==" + } + }, + "npm:circular-dependency-plugin": { + "type": "npm", + "name": "npm:circular-dependency-plugin", + "data": { + "version": "5.2.2", + "packageName": "circular-dependency-plugin", + "hash": "sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.2", + "packageName": "cjs-module-lexer", + "hash": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + } + }, + "npm:class-utils": { + "type": "npm", + "name": "npm:class-utils", + "data": { + "version": "0.3.6", + "packageName": "class-utils", + "hash": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==" + } + }, + "npm:classnames": { + "type": "npm", + "name": "npm:classnames", + "data": { + "version": "2.2.6", + "packageName": "classnames", + "hash": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + } + }, + "npm:clean-css": { + "type": "npm", + "name": "npm:clean-css", + "data": { + "version": "4.2.3", + "packageName": "clean-css", + "hash": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:clean-stack@4.2.0": { + "type": "npm", + "name": "npm:clean-stack@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "clean-stack", + "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" + } + }, + "npm:clean-webpack-plugin": { + "type": "npm", + "name": "npm:clean-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "clean-webpack-plugin", + "hash": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==" + } + }, + "npm:cli-boxes@1.0.0": { + "type": "npm", + "name": "npm:cli-boxes@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "cli-boxes", + "hash": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=" + } + }, + "npm:cli-boxes": { + "type": "npm", + "name": "npm:cli-boxes", + "data": { + "version": "2.2.1", + "packageName": "cli-boxes", + "hash": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-cursor@2.1.0": { + "type": "npm", + "name": "npm:cli-cursor@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "cli-cursor", + "hash": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:cli-table3": { + "type": "npm", + "name": "npm:cli-table3", + "data": { + "version": "0.6.3", + "packageName": "cli-table3", + "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" + } + }, + "npm:cli-table": { + "type": "npm", + "name": "npm:cli-table", + "data": { + "version": "0.3.1", + "packageName": "cli-table", + "hash": "sha1-9TsFJmqLGguTSz0IIebi3FkUriM=" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "2.1.0", + "packageName": "cli-truncate", + "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:clipboard": { + "type": "npm", + "name": "npm:clipboard", + "data": { + "version": "2.0.4", + "packageName": "clipboard", + "hash": "sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==" + } + }, + "npm:cliui@3.2.0": { + "type": "npm", + "name": "npm:cliui@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "cliui", + "hash": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=" + } + }, + "npm:cliui@5.0.0": { + "type": "npm", + "name": "npm:cliui@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "cliui", + "hash": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==" + } + }, + "npm:cliui@6.0.0": { + "type": "npm", + "name": "npm:cliui@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cliui", + "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" + } + }, + "npm:cliui@7.0.4": { + "type": "npm", + "name": "npm:cliui@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "cliui", + "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:clone-buffer": { + "type": "npm", + "name": "npm:clone-buffer", + "data": { + "version": "1.0.0", + "packageName": "clone-buffer", + "hash": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.2", + "packageName": "clone-response", + "hash": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" + } + }, + "npm:clone-stats@0.0.1": { + "type": "npm", + "name": "npm:clone-stats@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "clone-stats", + "hash": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + } + }, + "npm:clone-stats": { + "type": "npm", + "name": "npm:clone-stats", + "data": { + "version": "1.0.0", + "packageName": "clone-stats", + "hash": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + } + }, + "npm:clone@2.1.2": { + "type": "npm", + "name": "npm:clone@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "clone", + "hash": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + } + }, + "npm:cloneable-readable": { + "type": "npm", + "name": "npm:cloneable-readable", + "data": { + "version": "1.1.3", + "packageName": "cloneable-readable", + "hash": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" + } + }, + "npm:clsx": { + "type": "npm", + "name": "npm:clsx", + "data": { + "version": "1.1.0", + "packageName": "clsx", + "hash": "sha512-3avwM37fSK5oP6M5rQ9CNe99lwxhXDOeSWVPAOYF6OazUTgZCMb0yWlJpmdD74REy1gkEaFiub2ULv4fq9GUhA==" + } + }, + "npm:cmd-shim": { + "type": "npm", + "name": "npm:cmd-shim", + "data": { + "version": "6.0.1", + "packageName": "cmd-shim", + "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" + } + }, + "npm:co-body": { + "type": "npm", + "name": "npm:co-body", + "data": { + "version": "6.1.0", + "packageName": "co-body", + "hash": "sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + } + }, + "npm:code-block-writer": { + "type": "npm", + "name": "npm:code-block-writer", + "data": { + "version": "10.1.1", + "packageName": "code-block-writer", + "hash": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==" + } + }, + "npm:code-point-at": { + "type": "npm", + "name": "npm:code-point-at", + "data": { + "version": "1.1.0", + "packageName": "code-point-at", + "hash": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + } + }, + "npm:codesandbox-import-util-types": { + "type": "npm", + "name": "npm:codesandbox-import-util-types", + "data": { + "version": "2.2.3", + "packageName": "codesandbox-import-util-types", + "hash": "sha512-Qj00p60oNExthP2oR3vvXmUGjukij+rxJGuiaKM6tyUmSyimdZsqHI/TUvFFClAffk9s7hxGnQgWQ8KCce27qQ==" + } + }, + "npm:codesandbox-import-utils": { + "type": "npm", + "name": "npm:codesandbox-import-utils", + "data": { + "version": "2.2.3", + "packageName": "codesandbox-import-utils", + "hash": "sha512-ymtmcgZKU27U+nM2qUb21aO8Ut/u2S9s6KorOgG81weP+NA0UZkaHKlaRqbLJ9h4i/4FLvwmEXYAnTjNmp6ogg==" + } + }, + "npm:codesandboxer": { + "type": "npm", + "name": "npm:codesandboxer", + "data": { + "version": "1.0.3", + "packageName": "codesandboxer", + "hash": "sha512-LRBGbQ707AsaC8cPEMEr5K5y2EGskg7T5K4RIC30wzgr1LKeLEtB2exy4P+QwUrQKwJOgxmiq1yKPLnKzXWJ+w==" + } + }, + "npm:collapse-white-space": { + "type": "npm", + "name": "npm:collapse-white-space", + "data": { + "version": "1.0.6", + "packageName": "collapse-white-space", + "hash": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.1", + "packageName": "collect-v8-coverage", + "hash": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + } + }, + "npm:collection-map": { + "type": "npm", + "name": "npm:collection-map", + "data": { + "version": "1.0.0", + "packageName": "collection-map", + "hash": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=" + } + }, + "npm:collection-visit": { + "type": "npm", + "name": "npm:collection-visit", + "data": { + "version": "1.0.0", + "packageName": "collection-visit", + "hash": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=" + } + }, + "npm:color-check": { + "type": "npm", + "name": "npm:color-check", + "data": { + "version": "0.0.2", + "packageName": "color-check", + "hash": "sha1-L07qW3QykYGtzAd+DOhF2UEbR8Q=" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:color-convert@2.0.1": { + "type": "npm", + "name": "npm:color-convert@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-name@1.1.3": { + "type": "npm", + "name": "npm:color-name@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:color-string": { + "type": "npm", + "name": "npm:color-string", + "data": { + "version": "1.5.5", + "packageName": "color-string", + "hash": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==" + } + }, + "npm:color-support": { + "type": "npm", + "name": "npm:color-support", + "data": { + "version": "1.1.3", + "packageName": "color-support", + "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + } + }, + "npm:color": { + "type": "npm", + "name": "npm:color", + "data": { + "version": "3.1.2", + "packageName": "color", + "hash": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "1.2.2", + "packageName": "colorette", + "hash": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + } + }, + "npm:colorette@2.0.20": { + "type": "npm", + "name": "npm:colorette@2.0.20", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:colors@1.0.3": { + "type": "npm", + "name": "npm:colors@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "colors", + "hash": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" + } + }, + "npm:colors@1.4.0": { + "type": "npm", + "name": "npm:colors@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "colors", + "hash": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + } + }, + "npm:colors": { + "type": "npm", + "name": "npm:colors", + "data": { + "version": "1.2.5", + "packageName": "colors", + "hash": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==" + } + }, + "npm:columnify": { + "type": "npm", + "name": "npm:columnify", + "data": { + "version": "1.6.0", + "packageName": "columnify", + "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:comma-separated-tokens": { + "type": "npm", + "name": "npm:comma-separated-tokens", + "data": { + "version": "1.0.7", + "packageName": "comma-separated-tokens", + "hash": "sha512-Jrx3xsP4pPv4AwJUDWY9wOXGtwPXARej6Xd99h4TUGotmf8APuquKMpK+dnD3UgyxK7OEWaisjZz+3b5jtL6xQ==" + } + }, + "npm:command-line-args": { + "type": "npm", + "name": "npm:command-line-args", + "data": { + "version": "5.2.1", + "packageName": "command-line-args", + "hash": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==" + } + }, + "npm:command-line-usage": { + "type": "npm", + "name": "npm:command-line-usage", + "data": { + "version": "6.1.3", + "packageName": "command-line-usage", + "hash": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==" + } + }, + "npm:commander@11.0.0": { + "type": "npm", + "name": "npm:commander@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "commander", + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + } + }, + "npm:commander@2.11.0": { + "type": "npm", + "name": "npm:commander@2.11.0", + "data": { + "version": "2.11.0", + "packageName": "commander", + "hash": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" + } + }, + "npm:commander@7.2.0": { + "type": "npm", + "name": "npm:commander@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:commander@4.1.1": { + "type": "npm", + "name": "npm:commander@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "commander", + "hash": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + } + }, + "npm:commander@5.1.0": { + "type": "npm", + "name": "npm:commander@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "commander", + "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + } + }, + "npm:commander@6.2.1": { + "type": "npm", + "name": "npm:commander@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "commander", + "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" + } + }, + "npm:comment-parser": { + "type": "npm", + "name": "npm:comment-parser", + "data": { + "version": "1.3.1", + "packageName": "comment-parser", + "hash": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==" + } + }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, + "npm:common-tags": { + "type": "npm", + "name": "npm:common-tags", + "data": { + "version": "1.8.0", + "packageName": "common-tags", + "hash": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + } + }, + "npm:compare-func": { + "type": "npm", + "name": "npm:compare-func", + "data": { + "version": "2.0.0", + "packageName": "compare-func", + "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" + } + }, + "npm:component-emitter": { + "type": "npm", + "name": "npm:component-emitter", + "data": { + "version": "1.3.0", + "packageName": "component-emitter", + "hash": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.17", + "packageName": "compressible", + "hash": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:compute-scroll-into-view": { + "type": "npm", + "name": "npm:compute-scroll-into-view", + "data": { + "version": "1.0.11", + "packageName": "compute-scroll-into-view", + "hash": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + } + }, + "npm:concat-stream": { + "type": "npm", + "name": "npm:concat-stream", + "data": { + "version": "1.6.2", + "packageName": "concat-stream", + "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" + } + }, + "npm:concat-stream@2.0.0": { + "type": "npm", + "name": "npm:concat-stream@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "concat-stream", + "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" + } + }, + "npm:configstore": { + "type": "npm", + "name": "npm:configstore", + "data": { + "version": "3.1.2", + "packageName": "configstore", + "hash": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==" + } + }, + "npm:confusing-browser-globals": { + "type": "npm", + "name": "npm:confusing-browser-globals", + "data": { + "version": "1.0.10", + "packageName": "confusing-browser-globals", + "hash": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "1.6.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + } + }, + "npm:connect": { + "type": "npm", + "name": "npm:connect", + "data": { + "version": "3.7.0", + "packageName": "connect", + "hash": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==" + } + }, + "npm:console-browserify": { + "type": "npm", + "name": "npm:console-browserify", + "data": { + "version": "1.2.0", + "packageName": "console-browserify", + "hash": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + } + }, + "npm:console-control-strings": { + "type": "npm", + "name": "npm:console-control-strings", + "data": { + "version": "1.1.0", + "packageName": "console-control-strings", + "hash": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + } + }, + "npm:constant-case": { + "type": "npm", + "name": "npm:constant-case", + "data": { + "version": "2.0.0", + "packageName": "constant-case", + "hash": "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=" + } + }, + "npm:constants-browserify": { + "type": "npm", + "name": "npm:constants-browserify", + "data": { + "version": "1.0.0", + "packageName": "constants-browserify", + "hash": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.4", + "packageName": "content-type", + "hash": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + } + }, + "npm:conventional-changelog-angular": { + "type": "npm", + "name": "npm:conventional-changelog-angular", + "data": { + "version": "6.0.0", + "packageName": "conventional-changelog-angular", + "hash": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==" + } + }, + "npm:conventional-changelog-core": { + "type": "npm", + "name": "npm:conventional-changelog-core", + "data": { + "version": "5.0.1", + "packageName": "conventional-changelog-core", + "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" + } + }, + "npm:conventional-changelog-preset-loader": { + "type": "npm", + "name": "npm:conventional-changelog-preset-loader", + "data": { + "version": "3.0.0", + "packageName": "conventional-changelog-preset-loader", + "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "6.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "3.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" + } + }, + "npm:conventional-recommended-bump": { + "type": "npm", + "name": "npm:conventional-recommended-bump", + "data": { + "version": "7.0.1", + "packageName": "conventional-recommended-bump", + "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "1.8.0", + "packageName": "convert-source-map", + "hash": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==" + } + }, + "npm:convert-source-map@2.0.0": { + "type": "npm", + "name": "npm:convert-source-map@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.4.2", + "packageName": "cookie", + "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" + } + }, + "npm:cookies": { + "type": "npm", + "name": "npm:cookies", + "data": { + "version": "0.8.0", + "packageName": "cookies", + "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" + } + }, + "npm:copy-concurrently": { + "type": "npm", + "name": "npm:copy-concurrently", + "data": { + "version": "1.0.5", + "packageName": "copy-concurrently", + "hash": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==" + } + }, + "npm:copy-descriptor": { + "type": "npm", + "name": "npm:copy-descriptor", + "data": { + "version": "0.1.1", + "packageName": "copy-descriptor", + "hash": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + } + }, + "npm:copy-props": { + "type": "npm", + "name": "npm:copy-props", + "data": { + "version": "2.0.5", + "packageName": "copy-props", + "hash": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==" + } + }, + "npm:copy-to-clipboard": { + "type": "npm", + "name": "npm:copy-to-clipboard", + "data": { + "version": "3.3.1", + "packageName": "copy-to-clipboard", + "hash": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==" + } + }, + "npm:copy-to": { + "type": "npm", + "name": "npm:copy-to", + "data": { + "version": "2.0.1", + "packageName": "copy-to", + "hash": "sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "8.1.0", + "packageName": "copy-webpack-plugin", + "hash": "sha512-Soiq8kXI2AZkpw3dSp18u6oU2JonC7UKv3UdXsKOmT1A5QT46ku9+6c0Qy29JDbSavQJNN1/eKGpd3QNw+cZWg==" + } + }, + "npm:core-js-compat": { + "type": "npm", + "name": "npm:core-js-compat", + "data": { + "version": "3.33.1", + "packageName": "core-js-compat", + "hash": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==" + } + }, + "npm:core-js-pure": { + "type": "npm", + "name": "npm:core-js-pure", + "data": { + "version": "3.21.1", + "packageName": "core-js-pure", + "hash": "sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==" + } + }, + "npm:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.15.2", + "packageName": "core-js", + "hash": "sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q==" + } + }, + "npm:core-js@2.6.11": { + "type": "npm", + "name": "npm:core-js@2.6.11", + "data": { + "version": "2.6.11", + "packageName": "core-js", + "hash": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.2", + "packageName": "core-util-is", + "hash": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + } + }, + "npm:cors": { + "type": "npm", + "name": "npm:cors", + "data": { + "version": "2.8.5", + "packageName": "cors", + "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" + } + }, + "npm:cosmiconfig@8.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==" + } + }, + "npm:cosmiconfig@8.2.0": { + "type": "npm", + "name": "npm:cosmiconfig@8.2.0", + "data": { + "version": "8.2.0", + "packageName": "cosmiconfig", + "hash": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==" + } + }, + "npm:cosmiconfig@5.2.1": { + "type": "npm", + "name": "npm:cosmiconfig@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "cosmiconfig", + "hash": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" + } + }, + "npm:cosmiconfig@6.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "7.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==" + } + }, + "npm:cp-file": { + "type": "npm", + "name": "npm:cp-file", + "data": { + "version": "7.0.0", + "packageName": "cp-file", + "hash": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==" + } + }, + "npm:cpy": { + "type": "npm", + "name": "npm:cpy", + "data": { + "version": "8.1.2", + "packageName": "cpy", + "hash": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==" + } + }, + "npm:crc32": { + "type": "npm", + "name": "npm:crc32", + "data": { + "version": "0.2.2", + "packageName": "crc32", + "hash": "sha1-etIg1v/c0Rn5/BJ6d3LKzqOQpLo=" + } + }, + "npm:create-ecdh": { + "type": "npm", + "name": "npm:create-ecdh", + "data": { + "version": "4.0.3", + "packageName": "create-ecdh", + "hash": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==" + } + }, + "npm:create-error-class": { + "type": "npm", + "name": "npm:create-error-class", + "data": { + "version": "3.0.2", + "packageName": "create-error-class", + "hash": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=" + } + }, + "npm:create-hash": { + "type": "npm", + "name": "npm:create-hash", + "data": { + "version": "1.2.0", + "packageName": "create-hash", + "hash": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==" + } + }, + "npm:create-hmac": { + "type": "npm", + "name": "npm:create-hmac", + "data": { + "version": "1.1.7", + "packageName": "create-hmac", + "hash": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==" + } + }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, + "npm:create-require": { + "type": "npm", + "name": "npm:create-require", + "data": { + "version": "1.1.1", + "packageName": "create-require", + "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + } + }, + "npm:cross-env": { + "type": "npm", + "name": "npm:cross-env", + "data": { + "version": "5.2.1", + "packageName": "cross-env", + "hash": "sha512-1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==" + } + }, + "npm:cross-fetch": { + "type": "npm", + "name": "npm:cross-fetch", + "data": { + "version": "3.1.5", + "packageName": "cross-fetch", + "hash": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==" + } + }, + "npm:cross-spawn@5.1.0": { + "type": "npm", + "name": "npm:cross-spawn@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "cross-spawn", + "hash": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=" + } + }, + "npm:cross-spawn@6.0.5": { + "type": "npm", + "name": "npm:cross-spawn@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "cross-spawn", + "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:crypto-browserify": { + "type": "npm", + "name": "npm:crypto-browserify", + "data": { + "version": "3.12.0", + "packageName": "crypto-browserify", + "hash": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==" + } + }, + "npm:crypto-random-string": { + "type": "npm", + "name": "npm:crypto-random-string", + "data": { + "version": "1.0.0", + "packageName": "crypto-random-string", + "hash": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" + } + }, + "npm:css-color-keywords": { + "type": "npm", + "name": "npm:css-color-keywords", + "data": { + "version": "1.0.0", + "packageName": "css-color-keywords", + "hash": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" + } + }, + "npm:css-in-js-utils": { + "type": "npm", + "name": "npm:css-in-js-utils", + "data": { + "version": "3.0.0", + "packageName": "css-in-js-utils", + "hash": "sha512-FSdC7hZIeSmEPANOZB/VHHeaYh+MiNvqLRP7MWVck6MQs2B5KHH3XmMU9Asb/6BdwDp+JTt1q+cGgSBCuFU1GQ==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "5.0.1", + "packageName": "css-loader", + "hash": "sha512-cXc2ti9V234cq7rJzFKhirb2L2iPy8ZjALeVJAozXYz9te3r4eqLSixNAbMDJSgJEQywqXzs8gonxaboeKqwiw==" + } + }, + "npm:css-loader@3.6.0": { + "type": "npm", + "name": "npm:css-loader@3.6.0", + "data": { + "version": "3.6.0", + "packageName": "css-loader", + "hash": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==" + } + }, + "npm:css-select@4.1.3": { + "type": "npm", + "name": "npm:css-select@4.1.3", + "data": { + "version": "4.1.3", + "packageName": "css-select", + "hash": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "1.2.0", + "packageName": "css-select", + "hash": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=" + } + }, + "npm:css-to-react-native": { + "type": "npm", + "name": "npm:css-to-react-native", + "data": { + "version": "3.0.0", + "packageName": "css-to-react-native", + "hash": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "2.1.3", + "packageName": "css-what", + "hash": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" + } + }, + "npm:css-what@5.0.1": { + "type": "npm", + "name": "npm:css-what@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "css-what", + "hash": "sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==" + } + }, + "npm:css.escape": { + "type": "npm", + "name": "npm:css.escape", + "data": { + "version": "1.5.1", + "packageName": "css.escape", + "hash": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + } + }, + "npm:css": { + "type": "npm", + "name": "npm:css", + "data": { + "version": "2.2.4", + "packageName": "css", + "hash": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssfontparser": { + "type": "npm", + "name": "npm:cssfontparser", + "data": { + "version": "1.2.1", + "packageName": "cssfontparser", + "hash": "sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==" + } + }, + "npm:cssjanus": { + "type": "npm", + "name": "npm:cssjanus", + "data": { + "version": "2.1.0", + "packageName": "cssjanus", + "hash": "sha512-kAijbny3GmdOi9k+QT6DGIXqFvL96aksNlGr4Rhk9qXDZYWUojU4bRc3IHWxdaLNOqgEZHuXoe5Wl2l7dxLW5g==" + } + }, + "npm:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:cssom@0.3.8": { + "type": "npm", + "name": "npm:cssom@0.3.8", + "data": { + "version": "0.3.8", + "packageName": "cssom", + "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:csstype@2.6.19": { + "type": "npm", + "name": "npm:csstype@2.6.19", + "data": { + "version": "2.6.19", + "packageName": "csstype", + "hash": "sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==" + } + }, + "npm:csstype": { + "type": "npm", + "name": "npm:csstype", + "data": { + "version": "3.1.2", + "packageName": "csstype", + "hash": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + } + }, + "npm:csv-stringify": { + "type": "npm", + "name": "npm:csv-stringify", + "data": { + "version": "6.2.0", + "packageName": "csv-stringify", + "hash": "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA==" + } + }, + "npm:currently-unhandled": { + "type": "npm", + "name": "npm:currently-unhandled", + "data": { + "version": "0.4.1", + "packageName": "currently-unhandled", + "hash": "sha1-mI3zP+qxke95mmE2nddsF635V+o=" + } + }, + "npm:custom-event": { + "type": "npm", + "name": "npm:custom-event", + "data": { + "version": "1.0.1", + "packageName": "custom-event", + "hash": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=" + } + }, + "npm:cyclist": { + "type": "npm", + "name": "npm:cyclist", + "data": { + "version": "0.2.2", + "packageName": "cyclist", + "hash": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=" + } + }, + "npm:cypress-real-events": { + "type": "npm", + "name": "npm:cypress-real-events", + "data": { + "version": "1.7.1", + "packageName": "cypress-real-events", + "hash": "sha512-/Bg15RgJ0SYsuXc6lPqH08x19z6j2vmhWN4wXfJqm3z8BTAFiK2MvipZPzxT8Z0jJP0q7kuniWrLIvz/i/8lCQ==" + } + }, + "npm:cypress-storybook": { + "type": "npm", + "name": "npm:cypress-storybook", + "data": { + "version": "0.5.1", + "packageName": "cypress-storybook", + "hash": "sha512-+CNDdcrFD3QRvHrjwpVclFpLtseyXA0NxeB3PDTheisvg/OJjLkP96t0I9R66IkZRYUUE3mLhqZpmpsv59FIIw==" + } + }, + "npm:cypress": { + "type": "npm", + "name": "npm:cypress", + "data": { + "version": "10.6.0", + "packageName": "cypress", + "hash": "sha512-6sOpHjostp8gcLO34p6r/Ci342lBs8S5z9/eb3ZCQ22w2cIhMWGUoGKkosabPBfKcvRS9BE4UxybBtlIs8gTQA==" + } + }, + "npm:d3-array": { + "type": "npm", + "name": "npm:d3-array", + "data": { + "version": "1.2.1", + "packageName": "d3-array", + "hash": "sha512-CyINJQ0SOUHojDdFDH4JEM0552vCR1utGyLHegJHyYH0JyCpSeTPxi4OBqHMA2jJZq4NH782LtaJWBImqI/HBw==" + } + }, + "npm:d3-array@2.12.1": { + "type": "npm", + "name": "npm:d3-array@2.12.1", + "data": { + "version": "2.12.1", + "packageName": "d3-array", + "hash": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==" + } + }, + "npm:d3-axis": { + "type": "npm", + "name": "npm:d3-axis", + "data": { + "version": "1.0.8", + "packageName": "d3-axis", + "hash": "sha1-MacFoLU15ldZ3hQXOjGTMTfxjvo=" + } + }, + "npm:d3-collection": { + "type": "npm", + "name": "npm:d3-collection", + "data": { + "version": "1.0.7", + "packageName": "d3-collection", + "hash": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + } + }, + "npm:d3-color": { + "type": "npm", + "name": "npm:d3-color", + "data": { + "version": "1.4.0", + "packageName": "d3-color", + "hash": "sha512-TzNPeJy2+iEepfiL92LAAB7fvnp/dV2YwANPVHdDWmYMm23qIJBYww3qT8I8C1wXrmrg4UWs7BKc2tKIgyjzHg==" + } + }, + "npm:d3-contour": { + "type": "npm", + "name": "npm:d3-contour", + "data": { + "version": "1.3.2", + "packageName": "d3-contour", + "hash": "sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg==" + } + }, + "npm:d3-dsv": { + "type": "npm", + "name": "npm:d3-dsv", + "data": { + "version": "3.0.1", + "packageName": "d3-dsv", + "hash": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==" + } + }, + "npm:d3-fetch": { + "type": "npm", + "name": "npm:d3-fetch", + "data": { + "version": "3.0.1", + "packageName": "d3-fetch", + "hash": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==" + } + }, + "npm:d3-format": { + "type": "npm", + "name": "npm:d3-format", + "data": { + "version": "1.4.4", + "packageName": "d3-format", + "hash": "sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw==" + } + }, + "npm:d3-geo": { + "type": "npm", + "name": "npm:d3-geo", + "data": { + "version": "1.11.9", + "packageName": "d3-geo", + "hash": "sha512-9edcH6J3s/Aa3KJITWqFJbyB/8q3mMlA9Fi7z6yy+FAYMnRaxmC7jBhUnsINxVWD14GmqX3DK8uk7nV6/Ekt4A==" + } + }, + "npm:d3-hexbin": { + "type": "npm", + "name": "npm:d3-hexbin", + "data": { + "version": "0.2.2", + "packageName": "d3-hexbin", + "hash": "sha1-nFg32s/UcasFM3qeke8Qv8T5iDE=" + } + }, + "npm:d3-hierarchy": { + "type": "npm", + "name": "npm:d3-hierarchy", + "data": { + "version": "2.0.0", + "packageName": "d3-hierarchy", + "hash": "sha512-SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw==" + } + }, + "npm:d3-hierarchy@1.1.9": { + "type": "npm", + "name": "npm:d3-hierarchy@1.1.9", + "data": { + "version": "1.1.9", + "packageName": "d3-hierarchy", + "hash": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==" + } + }, + "npm:d3-interpolate": { + "type": "npm", + "name": "npm:d3-interpolate", + "data": { + "version": "1.4.0", + "packageName": "d3-interpolate", + "hash": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==" + } + }, + "npm:d3-path": { + "type": "npm", + "name": "npm:d3-path", + "data": { + "version": "1.0.7", + "packageName": "d3-path", + "hash": "sha512-q0cW1RpvA5c5ma2rch62mX8AYaiLX0+bdaSM2wxSU9tXjU4DNvkx9qiUvjkuWCj3p22UO/hlPivujqMiR9PDzA==" + } + }, + "npm:d3-path@3.1.0": { + "type": "npm", + "name": "npm:d3-path@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "d3-path", + "hash": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==" + } + }, + "npm:d3-sankey": { + "type": "npm", + "name": "npm:d3-sankey", + "data": { + "version": "0.12.3", + "packageName": "d3-sankey", + "hash": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==" + } + }, + "npm:d3-sankey@0.7.1": { + "type": "npm", + "name": "npm:d3-sankey@0.7.1", + "data": { + "version": "0.7.1", + "packageName": "d3-sankey", + "hash": "sha1-0imDImj8aaf+yEgD6WwiVqYUxSE=" + } + }, + "npm:d3-scale": { + "type": "npm", + "name": "npm:d3-scale", + "data": { + "version": "1.0.7", + "packageName": "d3-scale", + "hash": "sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==" + } + }, + "npm:d3-scale@4.0.2": { + "type": "npm", + "name": "npm:d3-scale@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "d3-scale", + "hash": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==" + } + }, + "npm:d3-selection": { + "type": "npm", + "name": "npm:d3-selection", + "data": { + "version": "1.3.0", + "packageName": "d3-selection", + "hash": "sha512-qgpUOg9tl5CirdqESUAu0t9MU/t3O9klYfGfyKsXEmhyxyzLpzpeh08gaxBUTQw1uXIOkr/30Ut2YRjSSxlmHA==" + } + }, + "npm:d3-shape@3.2.0": { + "type": "npm", + "name": "npm:d3-shape@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "d3-shape", + "hash": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==" + } + }, + "npm:d3-shape": { + "type": "npm", + "name": "npm:d3-shape", + "data": { + "version": "1.3.7", + "packageName": "d3-shape", + "hash": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==" + } + }, + "npm:d3-time-format@2.1.3": { + "type": "npm", + "name": "npm:d3-time-format@2.1.3", + "data": { + "version": "2.1.3", + "packageName": "d3-time-format", + "hash": "sha512-6k0a2rZryzGm5Ihx+aFMuO1GgelgIz+7HhB4PH4OEndD5q2zGn1mDfRdNrulspOfR6JXkb2sThhDK41CSK85QA==" + } + }, + "npm:d3-time-format": { + "type": "npm", + "name": "npm:d3-time-format", + "data": { + "version": "3.0.0", + "packageName": "d3-time-format", + "hash": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==" + } + }, + "npm:d3-time@1.1.0": { + "type": "npm", + "name": "npm:d3-time@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "d3-time", + "hash": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + } + }, + "npm:d3-time": { + "type": "npm", + "name": "npm:d3-time", + "data": { + "version": "2.1.1", + "packageName": "d3-time", + "hash": "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==" + } + }, + "npm:d3-voronoi": { + "type": "npm", + "name": "npm:d3-voronoi", + "data": { + "version": "1.1.4", + "packageName": "d3-voronoi", + "hash": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" + } + }, + "npm:d": { + "type": "npm", + "name": "npm:d", + "data": { + "version": "1.0.1", + "packageName": "d", + "hash": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" + } + }, + "npm:damerau-levenshtein": { + "type": "npm", + "name": "npm:damerau-levenshtein", + "data": { + "version": "1.0.7", + "packageName": "damerau-levenshtein", + "hash": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==" + } + }, + "npm:danger": { + "type": "npm", + "name": "npm:danger", + "data": { + "version": "11.0.2", + "packageName": "danger", + "hash": "sha512-TKE5E1Zrb0uV7Ft3mhbTA3bwVf4hZs7DVx6Mo8weVdIcaXJIIle3+aCjn259GX9/pF4ewoYuof7eLRPJligOgA==" + } + }, + "npm:dargs": { + "type": "npm", + "name": "npm:dargs", + "data": { + "version": "7.0.0", + "packageName": "dargs", + "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" + } + }, + "npm:dashdash": { + "type": "npm", + "name": "npm:dashdash", + "data": { + "version": "1.14.1", + "packageName": "dashdash", + "hash": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=" + } + }, + "npm:data-uri-to-buffer": { + "type": "npm", + "name": "npm:data-uri-to-buffer", + "data": { + "version": "4.0.1", + "packageName": "data-uri-to-buffer", + "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" + } + }, + "npm:data-urls": { + "type": "npm", + "name": "npm:data-urls", + "data": { + "version": "3.0.2", + "packageName": "data-urls", + "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" + } + }, + "npm:date-format": { + "type": "npm", + "name": "npm:date-format", + "data": { + "version": "4.0.4", + "packageName": "date-format", + "hash": "sha512-/jyf4rhB17ge328HJuJjAcmRtCsGd+NDeAtahRBTaK6vSPR6MO5HlrAit3Nn7dVjaa6sowW0WXt8yQtLyZQFRg==" + } + }, + "npm:date-utils": { + "type": "npm", + "name": "npm:date-utils", + "data": { + "version": "1.2.21", + "packageName": "date-utils", + "hash": "sha512-wJMBjqlwXR0Iv0wUo/lFbhSQ7MmG1hl36iuxuE91kW+5b5sWbase73manEqNH9sOLFAMG83B4ffNKq9/Iq0FVA==" + } + }, + "npm:dateformat@2.2.0": { + "type": "npm", + "name": "npm:dateformat@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "dateformat", + "hash": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=" + } + }, + "npm:dateformat": { + "type": "npm", + "name": "npm:dateformat", + "data": { + "version": "3.0.3", + "packageName": "dateformat", + "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" + } + }, + "npm:dayjs": { + "type": "npm", + "name": "npm:dayjs", + "data": { + "version": "1.11.0", + "packageName": "dayjs", + "hash": "sha512-JLC809s6Y948/FuCZPm5IX8rRhQwOiyMb2TfVVQEixG7P8Lm/gt5S7yoQZmC8x1UehI9Pb7sksEt4xx14m+7Ug==" + } + }, + "npm:debug-fabulous": { + "type": "npm", + "name": "npm:debug-fabulous", + "data": { + "version": "1.1.0", + "packageName": "debug-fabulous", + "hash": "sha512-GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:debug@3.1.0": { + "type": "npm", + "name": "npm:debug@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "debug", + "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" + } + }, + "npm:debug@3.2.6": { + "type": "npm", + "name": "npm:debug@3.2.6", + "data": { + "version": "3.2.6", + "packageName": "debug", + "hash": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug@4.1.1": { + "type": "npm", + "name": "npm:debug@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "debug", + "hash": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" + } + }, + "npm:decamelize-keys": { + "type": "npm", + "name": "npm:decamelize-keys", + "data": { + "version": "1.1.0", + "packageName": "decamelize-keys", + "hash": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=" + } + }, + "npm:decamelize": { + "type": "npm", + "name": "npm:decamelize", + "data": { + "version": "1.2.0", + "packageName": "decamelize", + "hash": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + } + }, + "npm:decamelize@4.0.0": { + "type": "npm", + "name": "npm:decamelize@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "decamelize", + "hash": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:decode-uri-component": { + "type": "npm", + "name": "npm:decode-uri-component", + "data": { + "version": "0.2.2", + "packageName": "decode-uri-component", + "hash": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "6.0.0", + "packageName": "decompress-response", + "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "0.7.0", + "packageName": "dedent", + "hash": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + } + }, + "npm:dedent@1.5.1": { + "type": "npm", + "name": "npm:dedent@1.5.1", + "data": { + "version": "1.5.1", + "packageName": "dedent", + "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" + } + }, + "npm:deep-assign": { + "type": "npm", + "name": "npm:deep-assign", + "data": { + "version": "2.0.0", + "packageName": "deep-assign", + "hash": "sha1-6+BrHwfwja5ZdiDj3RYi83GhxXI=" + } + }, + "npm:deep-eql": { + "type": "npm", + "name": "npm:deep-eql", + "data": { + "version": "3.0.1", + "packageName": "deep-eql", + "hash": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==" + } + }, + "npm:deep-equal": { + "type": "npm", + "name": "npm:deep-equal", + "data": { + "version": "1.0.1", + "packageName": "deep-equal", + "hash": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.3", + "packageName": "deep-is", + "hash": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + } + }, + "npm:deepmerge@2.2.1": { + "type": "npm", + "name": "npm:deepmerge@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "deepmerge", + "hash": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.2.2", + "packageName": "deepmerge", + "hash": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + } + }, + "npm:default-browser-id": { + "type": "npm", + "name": "npm:default-browser-id", + "data": { + "version": "1.0.4", + "packageName": "default-browser-id", + "hash": "sha1-5Z0JpdFXuCi4dsJoFuYcPSosIDo=" + } + }, + "npm:default-compare": { + "type": "npm", + "name": "npm:default-compare", + "data": { + "version": "1.0.0", + "packageName": "default-compare", + "hash": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:default-resolution": { + "type": "npm", + "name": "npm:default-resolution", + "data": { + "version": "2.0.0", + "packageName": "default-resolution", + "hash": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.3", + "packageName": "defaults", + "hash": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "2.0.1", + "packageName": "defer-to-connect", + "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.1.3", + "packageName": "define-properties", + "hash": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" + } + }, + "npm:define-property": { + "type": "npm", + "name": "npm:define-property", + "data": { + "version": "0.2.5", + "packageName": "define-property", + "hash": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" + } + }, + "npm:define-property@1.0.0": { + "type": "npm", + "name": "npm:define-property@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "define-property", + "hash": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" + } + }, + "npm:define-property@2.0.2": { + "type": "npm", + "name": "npm:define-property@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "define-property", + "hash": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==" + } + }, + "npm:deflate-js": { + "type": "npm", + "name": "npm:deflate-js", + "data": { + "version": "0.2.3", + "packageName": "deflate-js", + "hash": "sha1-+Fq7WOvFFRowYUdHPVfD5PfkQms=" + } + }, + "npm:del": { + "type": "npm", + "name": "npm:del", + "data": { + "version": "6.0.0", + "packageName": "del", + "hash": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==" + } + }, + "npm:del@4.1.1": { + "type": "npm", + "name": "npm:del@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "del", + "hash": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" + } + }, + "npm:del@5.1.0": { + "type": "npm", + "name": "npm:del@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "del", + "hash": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==" + } + }, + "npm:del@7.0.0": { + "type": "npm", + "name": "npm:del@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "del", + "hash": "sha512-tQbV/4u5WVB8HMJr08pgw0b6nG4RGt/tj+7Numvq+zqcvUFeMaIWWOUFltiU+6go8BSO2/ogsB4EasDaj0y68Q==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + } + }, + "npm:delegate": { + "type": "npm", + "name": "npm:delegate", + "data": { + "version": "3.2.0", + "packageName": "delegate", + "hash": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" + } + }, + "npm:delegates": { + "type": "npm", + "name": "npm:delegates", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + } + }, + "npm:depd@2.0.0": { + "type": "npm", + "name": "npm:depd@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:des.js": { + "type": "npm", + "name": "npm:des.js", + "data": { + "version": "1.0.0", + "packageName": "des.js", + "hash": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.0.4", + "packageName": "destroy", + "hash": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + } + }, + "npm:detab": { + "type": "npm", + "name": "npm:detab", + "data": { + "version": "2.0.4", + "packageName": "detab", + "hash": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==" + } + }, + "npm:detect-file": { + "type": "npm", + "name": "npm:detect-file", + "data": { + "version": "1.0.0", + "packageName": "detect-file", + "hash": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" + } + }, + "npm:detect-indent@4.0.0": { + "type": "npm", + "name": "npm:detect-indent@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "detect-indent", + "hash": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=" + } + }, + "npm:detect-indent": { + "type": "npm", + "name": "npm:detect-indent", + "data": { + "version": "5.0.0", + "packageName": "detect-indent", + "hash": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "2.1.0", + "packageName": "detect-newline", + "hash": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=" + } + }, + "npm:detect-newline@3.1.0": { + "type": "npm", + "name": "npm:detect-newline@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.0.4", + "packageName": "detect-node", + "hash": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" + } + }, + "npm:detect-package-manager": { + "type": "npm", + "name": "npm:detect-package-manager", + "data": { + "version": "2.0.1", + "packageName": "detect-package-manager", + "hash": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==" + } + }, + "npm:detect-port": { + "type": "npm", + "name": "npm:detect-port", + "data": { + "version": "1.5.1", + "packageName": "detect-port", + "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" + } + }, + "npm:devtools-protocol@0.0.1082910": { + "type": "npm", + "name": "npm:devtools-protocol@0.0.1082910", + "data": { + "version": "0.0.1082910", + "packageName": "devtools-protocol", + "hash": "sha512-RqoZ2GmqaNxyx+99L/RemY5CkwG9D0WEfOKxekwCRXOGrDCep62ngezEJUVMq6rISYQ+085fJnWDQqGHlxVNww==" + } + }, + "npm:devtools-protocol": { + "type": "npm", + "name": "npm:devtools-protocol", + "data": { + "version": "0.0.894172", + "packageName": "devtools-protocol", + "hash": "sha512-tL9V5hs9s8TBkSX/d0qy8PbHQ6rW9myDILIbDdCboJxenSwqgoVx+C/+qEmI1OZH/zQ7OREv6ic336wJ82cOXg==" + } + }, + "npm:di": { + "type": "npm", + "name": "npm:di", + "data": { + "version": "0.0.1", + "packageName": "di", + "hash": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=" + } + }, + "npm:diff-match-patch": { + "type": "npm", + "name": "npm:diff-match-patch", + "data": { + "version": "1.0.5", + "packageName": "diff-match-patch", + "hash": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" + } + }, + "npm:diff-sequences@27.5.1": { + "type": "npm", + "name": "npm:diff-sequences@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "diff-sequences", + "hash": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.6.3", + "packageName": "diff-sequences", + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + } + }, + "npm:diff@3.5.0": { + "type": "npm", + "name": "npm:diff@3.5.0", + "data": { + "version": "3.5.0", + "packageName": "diff", + "hash": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:diffie-hellman": { + "type": "npm", + "name": "npm:diffie-hellman", + "data": { + "version": "5.0.3", + "packageName": "diffie-hellman", + "hash": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==" + } + }, + "npm:dir-glob@2.2.2": { + "type": "npm", + "name": "npm:dir-glob@2.2.2", + "data": { + "version": "2.2.2", + "packageName": "dir-glob", + "hash": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:discontinuous-range": { + "type": "npm", + "name": "npm:discontinuous-range", + "data": { + "version": "1.0.0", + "packageName": "discontinuous-range", + "hash": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=" + } + }, + "npm:dns-equal": { + "type": "npm", + "name": "npm:dns-equal", + "data": { + "version": "1.0.0", + "packageName": "dns-equal", + "hash": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "1.3.4", + "packageName": "dns-packet", + "hash": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==" + } + }, + "npm:dns-txt": { + "type": "npm", + "name": "npm:dns-txt", + "data": { + "version": "2.0.2", + "packageName": "dns-txt", + "hash": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=" + } + }, + "npm:doctoc": { + "type": "npm", + "name": "npm:doctoc", + "data": { + "version": "2.0.1", + "packageName": "doctoc", + "hash": "sha512-JsxnSVZtLCThKehjFPBDhP1+ZLmdfXQynZH/0ABAwrnd1Zf3AV6LigC9oWJyaZ+c6RXCDnlGUNJ7I+1v8VaaRg==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:doctrine@2.1.0": { + "type": "npm", + "name": "npm:doctrine@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:dom-accessibility-api": { + "type": "npm", + "name": "npm:dom-accessibility-api", + "data": { + "version": "0.5.11", + "packageName": "dom-accessibility-api", + "hash": "sha512-7X6GvzjYf4yTdRKuCVScV+aA9Fvh5r8WzWrXBH9w82ZWB/eYDMGCnazoC/YAqAzUJWHzLOnZqr46K3iEyUhUvw==" + } + }, + "npm:dom-converter": { + "type": "npm", + "name": "npm:dom-converter", + "data": { + "version": "0.2.0", + "packageName": "dom-converter", + "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + } + }, + "npm:dom-css": { + "type": "npm", + "name": "npm:dom-css", + "data": { + "version": "2.1.0", + "packageName": "dom-css", + "hash": "sha1-/bwtWgFdCj4YcuEUcrvQ57nmogI=" + } + }, + "npm:dom-helpers": { + "type": "npm", + "name": "npm:dom-helpers", + "data": { + "version": "5.1.3", + "packageName": "dom-helpers", + "hash": "sha512-nZD1OtwfWGRBWlpANxacBEZrEuLa16o1nh7YopFWeoF68Zt8GGEmzHu6Xv4F3XaFIC+YXtTLrzgqKxFgLEe4jw==" + } + }, + "npm:dom-serialize": { + "type": "npm", + "name": "npm:dom-serialize", + "data": { + "version": "2.2.1", + "packageName": "dom-serialize", + "hash": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "0.1.1", + "packageName": "dom-serializer", + "hash": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==" + } + }, + "npm:dom-serializer@1.3.2": { + "type": "npm", + "name": "npm:dom-serializer@1.3.2", + "data": { + "version": "1.3.2", + "packageName": "dom-serializer", + "hash": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" + } + }, + "npm:dom-walk": { + "type": "npm", + "name": "npm:dom-walk", + "data": { + "version": "0.1.1", + "packageName": "dom-walk", + "hash": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" + } + }, + "npm:domain-browser@1.2.0": { + "type": "npm", + "name": "npm:domain-browser@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "domain-browser", + "hash": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + } + }, + "npm:domain-browser": { + "type": "npm", + "name": "npm:domain-browser", + "data": { + "version": "4.19.0", + "packageName": "domain-browser", + "hash": "sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ==" + } + }, + "npm:domelementtype@1.3.1": { + "type": "npm", + "name": "npm:domelementtype@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "domelementtype", + "hash": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.2.0", + "packageName": "domelementtype", + "hash": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:domhandler@2.4.2": { + "type": "npm", + "name": "npm:domhandler@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "domhandler", + "hash": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==" + } + }, + "npm:domhandler@3.0.0": { + "type": "npm", + "name": "npm:domhandler@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "domhandler", + "hash": "sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "4.2.0", + "packageName": "domhandler", + "hash": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==" + } + }, + "npm:domutils@1.5.1": { + "type": "npm", + "name": "npm:domutils@1.5.1", + "data": { + "version": "1.5.1", + "packageName": "domutils", + "hash": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "2.7.0", + "packageName": "domutils", + "hash": "sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==" + } + }, + "npm:dot-case": { + "type": "npm", + "name": "npm:dot-case", + "data": { + "version": "2.1.1", + "packageName": "dot-case", + "hash": "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=" + } + }, + "npm:dot-case@3.0.4": { + "type": "npm", + "name": "npm:dot-case@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "dot-case", + "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "4.2.0", + "packageName": "dot-prop", + "hash": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==" + } + }, + "npm:dot-prop@5.3.0": { + "type": "npm", + "name": "npm:dot-prop@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:dotenv-expand@5.1.0": { + "type": "npm", + "name": "npm:dotenv-expand@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "dotenv-expand", + "hash": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "8.6.0", + "packageName": "dotenv", + "hash": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==" + } + }, + "npm:dotenv@16.3.1": { + "type": "npm", + "name": "npm:dotenv@16.3.1", + "data": { + "version": "16.3.1", + "packageName": "dotenv", + "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" + } + }, + "npm:dotparser": { + "type": "npm", + "name": "npm:dotparser", + "data": { + "version": "1.1.1", + "packageName": "dotparser", + "hash": "sha512-8ojhUts0HbLnXJgjTiJOddwVVBUk6hg4SJ5kGiuhzgK/f+y79TiWvICwx1oCWlVbBC8YI3nEaIQg9fjGYbGBXw==" + } + }, + "npm:downshift": { + "type": "npm", + "name": "npm:downshift", + "data": { + "version": "5.0.5", + "packageName": "downshift", + "hash": "sha512-V1idov3Rkvz1YWA1K67aIx51EgokIDvep4x6KmU7HhsayI8DvTEZBeH4O92zeFVGximKujRO7ChBzBAf4PKWFA==" + } + }, + "npm:duplexer2": { + "type": "npm", + "name": "npm:duplexer2", + "data": { + "version": "0.0.2", + "packageName": "duplexer2", + "hash": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=" + } + }, + "npm:duplexer2@0.1.4": { + "type": "npm", + "name": "npm:duplexer2@0.1.4", + "data": { + "version": "0.1.4", + "packageName": "duplexer2", + "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" + } + }, + "npm:duplexer3": { + "type": "npm", + "name": "npm:duplexer3", + "data": { + "version": "0.1.4", + "packageName": "duplexer3", + "hash": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + } + }, + "npm:duplexer@0.1.1": { + "type": "npm", + "name": "npm:duplexer@0.1.1", + "data": { + "version": "0.1.1", + "packageName": "duplexer", + "hash": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "npm:duplexify": { + "type": "npm", + "name": "npm:duplexify", + "data": { + "version": "3.7.1", + "packageName": "duplexify", + "hash": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==" + } + }, + "npm:each-props": { + "type": "npm", + "name": "npm:each-props", + "data": { + "version": "1.3.2", + "packageName": "each-props", + "hash": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:easy-stack": { + "type": "npm", + "name": "npm:easy-stack", + "data": { + "version": "1.0.0", + "packageName": "easy-stack", + "hash": "sha1-EskbMIWjfwuqM26UhurEv5Tj54g=" + } + }, + "npm:ecc-jsbn": { + "type": "npm", + "name": "npm:ecc-jsbn", + "data": { + "version": "0.1.2", + "packageName": "ecc-jsbn", + "hash": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=" + } + }, + "npm:ecdsa-sig-formatter": { + "type": "npm", + "name": "npm:ecdsa-sig-formatter", + "data": { + "version": "1.0.11", + "packageName": "ecdsa-sig-formatter", + "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" + } + }, + "npm:editions": { + "type": "npm", + "name": "npm:editions", + "data": { + "version": "2.3.1", + "packageName": "editions", + "hash": "sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.9", + "packageName": "ejs", + "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.4.563", + "packageName": "electron-to-chromium", + "hash": "sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==" + } + }, + "npm:element-resize-detector": { + "type": "npm", + "name": "npm:element-resize-detector", + "data": { + "version": "1.2.3", + "packageName": "element-resize-detector", + "hash": "sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==" + } + }, + "npm:elliptic": { + "type": "npm", + "name": "npm:elliptic", + "data": { + "version": "6.5.4", + "packageName": "elliptic", + "hash": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "6.1.1", + "packageName": "emoji-regex", + "hash": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=" + } + }, + "npm:emoji-regex@7.0.3": { + "type": "npm", + "name": "npm:emoji-regex@7.0.3", + "data": { + "version": "7.0.3", + "packageName": "emoji-regex", + "hash": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + } + }, + "npm:emoji-regex@8.0.0": { + "type": "npm", + "name": "npm:emoji-regex@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:endent": { + "type": "npm", + "name": "npm:endent", + "data": { + "version": "2.0.1", + "packageName": "endent", + "hash": "sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==" + } + }, + "npm:engine.io-parser": { + "type": "npm", + "name": "npm:engine.io-parser", + "data": { + "version": "5.0.4", + "packageName": "engine.io-parser", + "hash": "sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==" + } + }, + "npm:engine.io": { + "type": "npm", + "name": "npm:engine.io", + "data": { + "version": "6.2.1", + "packageName": "engine.io", + "hash": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==" + } + }, + "npm:enhanced-resolve@4.5.0": { + "type": "npm", + "name": "npm:enhanced-resolve@4.5.0", + "data": { + "version": "4.5.0", + "packageName": "enhanced-resolve", + "hash": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.14.0", + "packageName": "enhanced-resolve", + "hash": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:ent": { + "type": "npm", + "name": "npm:ent", + "data": { + "version": "2.2.0", + "packageName": "ent", + "hash": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "1.1.2", + "packageName": "entities", + "hash": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + } + }, + "npm:entities@2.0.0": { + "type": "npm", + "name": "npm:entities@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "entities", + "hash": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" + } + }, + "npm:entities@4.5.0": { + "type": "npm", + "name": "npm:entities@4.5.0", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.0", + "packageName": "env-paths", + "hash": "sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.8.1", + "packageName": "envinfo", + "hash": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" + } + }, + "npm:enzyme-shallow-equal": { + "type": "npm", + "name": "npm:enzyme-shallow-equal", + "data": { + "version": "1.0.4", + "packageName": "enzyme-shallow-equal", + "hash": "sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==" + } + }, + "npm:enzyme-to-json": { + "type": "npm", + "name": "npm:enzyme-to-json", + "data": { + "version": "3.6.2", + "packageName": "enzyme-to-json", + "hash": "sha512-Ynm6Z6R6iwQ0g2g1YToz6DWhxVnt8Dy1ijR2zynRKxTyBGA8rCDXU3rs2Qc4OKvUvc2Qoe1bcFK6bnPs20TrTg==" + } + }, + "npm:enzyme": { + "type": "npm", + "name": "npm:enzyme", + "data": { + "version": "3.10.0", + "packageName": "enzyme", + "hash": "sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg==" + } + }, + "npm:err-code@1.1.2": { + "type": "npm", + "name": "npm:err-code@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "err-code", + "hash": "sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA=" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:errlop": { + "type": "npm", + "name": "npm:errlop", + "data": { + "version": "2.2.0", + "packageName": "errlop", + "hash": "sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==" + } + }, + "npm:errno": { + "type": "npm", + "name": "npm:errno", + "data": { + "version": "0.1.8", + "packageName": "errno", + "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:error-stack-parser": { + "type": "npm", + "name": "npm:error-stack-parser", + "data": { + "version": "2.0.6", + "packageName": "error-stack-parser", + "hash": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.19.1", + "packageName": "es-abstract", + "hash": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.2.1", + "packageName": "es-module-lexer", + "hash": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:es5-ext": { + "type": "npm", + "name": "npm:es5-ext", + "data": { + "version": "0.10.53", + "packageName": "es5-ext", + "hash": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==" + } + }, + "npm:es5-shim": { + "type": "npm", + "name": "npm:es5-shim", + "data": { + "version": "4.5.13", + "packageName": "es5-shim", + "hash": "sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw==" + } + }, + "npm:es6-iterator": { + "type": "npm", + "name": "npm:es6-iterator", + "data": { + "version": "2.0.3", + "packageName": "es6-iterator", + "hash": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=" + } + }, + "npm:es6-object-assign": { + "type": "npm", + "name": "npm:es6-object-assign", + "data": { + "version": "1.1.0", + "packageName": "es6-object-assign", + "hash": "sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=" + } + }, + "npm:es6-promise": { + "type": "npm", + "name": "npm:es6-promise", + "data": { + "version": "4.2.8", + "packageName": "es6-promise", + "hash": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + } + }, + "npm:es6-promisify": { + "type": "npm", + "name": "npm:es6-promisify", + "data": { + "version": "5.0.0", + "packageName": "es6-promisify", + "hash": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=" + } + }, + "npm:es6-shim": { + "type": "npm", + "name": "npm:es6-shim", + "data": { + "version": "0.35.5", + "packageName": "es6-shim", + "hash": "sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg==" + } + }, + "npm:es6-symbol": { + "type": "npm", + "name": "npm:es6-symbol", + "data": { + "version": "3.1.3", + "packageName": "es6-symbol", + "hash": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" + } + }, + "npm:es6-weak-map": { + "type": "npm", + "name": "npm:es6-weak-map", + "data": { + "version": "2.0.3", + "packageName": "es6-weak-map", + "hash": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" + } + }, + "npm:esbuild-android-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-android-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-android-64", + "hash": "sha512-6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==" + } + }, + "npm:esbuild-android-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-android-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-android-arm64", + "hash": "sha512-vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==" + } + }, + "npm:esbuild-darwin-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-darwin-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-darwin-64", + "hash": "sha512-YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==" + } + }, + "npm:esbuild-darwin-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-darwin-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-darwin-arm64", + "hash": "sha512-juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==" + } + }, + "npm:esbuild-freebsd-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-freebsd-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-freebsd-64", + "hash": "sha512-cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==" + } + }, + "npm:esbuild-freebsd-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-freebsd-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-freebsd-arm64", + "hash": "sha512-TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==" + } + }, + "npm:esbuild-linux-32@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-32@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-32", + "hash": "sha512-RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==" + } + }, + "npm:esbuild-linux-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-64", + "hash": "sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==" + } + }, + "npm:esbuild-linux-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-arm64", + "hash": "sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==" + } + }, + "npm:esbuild-linux-arm@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-arm@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-arm", + "hash": "sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==" + } + }, + "npm:esbuild-linux-mips64le@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-mips64le@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-mips64le", + "hash": "sha512-vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==" + } + }, + "npm:esbuild-linux-ppc64le@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-ppc64le@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-ppc64le", + "hash": "sha512-xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==" + } + }, + "npm:esbuild-linux-riscv64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-riscv64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-riscv64", + "hash": "sha512-syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==" + } + }, + "npm:esbuild-linux-s390x@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-s390x@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-s390x", + "hash": "sha512-kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==" + } + }, + "npm:esbuild-loader": { + "type": "npm", + "name": "npm:esbuild-loader", + "data": { + "version": "3.2.0", + "packageName": "esbuild-loader", + "hash": "sha512-lnIdRMQpk50alCa0QoW0ozc0D3rjJXl02mtMsk9INIcW25RPZhDja332bu85ixwVNbhQ7VfBRcQyZ/qza8mWiA==" + } + }, + "npm:esbuild-netbsd-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-netbsd-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-netbsd-64", + "hash": "sha512-ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==" + } + }, + "npm:esbuild-openbsd-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-openbsd-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-openbsd-64", + "hash": "sha512-7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==" + } + }, + "npm:esbuild-sunos-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-sunos-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-sunos-64", + "hash": "sha512-HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==" + } + }, + "npm:esbuild-windows-32@0.14.51": { + "type": "npm", + "name": "npm:esbuild-windows-32@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-windows-32", + "hash": "sha512-4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==" + } + }, + "npm:esbuild-windows-64": { + "type": "npm", + "name": "npm:esbuild-windows-64", + "data": { + "version": "0.14.51", + "packageName": "esbuild-windows-64", + "hash": "sha512-HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==" + } + }, + "npm:esbuild-windows-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-windows-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-windows-arm64", + "hash": "sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.14.51", + "packageName": "esbuild", + "hash": "sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==" + } + }, + "npm:esbuild@0.19.2": { + "type": "npm", + "name": "npm:esbuild@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "esbuild", + "hash": "sha512-G6hPax8UbFakEj3hWO0Vs52LQ8k3lnBhxZWomUJDxfz3rZTLqF5k/FCzuNdLx2RbpBiQQF9H9onlDDH1lZsnjg==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + } + }, + "npm:escape-string-regexp@5.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:escape-string-regexp@4.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escodegen@1.8.1": { + "type": "npm", + "name": "npm:escodegen@1.8.1", + "data": { + "version": "1.8.1", + "packageName": "escodegen", + "hash": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.0.0", + "packageName": "escodegen", + "hash": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==" + } + }, + "npm:eslint-config-airbnb-base": { + "type": "npm", + "name": "npm:eslint-config-airbnb-base", + "data": { + "version": "14.2.1", + "packageName": "eslint-config-airbnb-base", + "hash": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==" + } + }, + "npm:eslint-config-airbnb": { + "type": "npm", + "name": "npm:eslint-config-airbnb", + "data": { + "version": "18.2.1", + "packageName": "eslint-config-airbnb", + "hash": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "8.3.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==" + } + }, + "npm:eslint-import-resolver-node": { + "type": "npm", + "name": "npm:eslint-import-resolver-node", + "data": { + "version": "0.3.6", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==" + } + }, + "npm:eslint-import-resolver-typescript": { + "type": "npm", + "name": "npm:eslint-import-resolver-typescript", + "data": { + "version": "2.5.0", + "packageName": "eslint-import-resolver-typescript", + "hash": "sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.7.3", + "packageName": "eslint-module-utils", + "hash": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==" + } + }, + "npm:eslint-plugin-deprecation": { + "type": "npm", + "name": "npm:eslint-plugin-deprecation", + "data": { + "version": "1.2.1", + "packageName": "eslint-plugin-deprecation", + "hash": "sha512-8KFAWPO3AvF0szxIh1ivRtHotd1fzxVOuNR3NI8dfCsQKgcxu9fAgEY+eTKvCRLAwwI8kaDDfImMt+498+EgRw==" + } + }, + "npm:eslint-plugin-es": { + "type": "npm", + "name": "npm:eslint-plugin-es", + "data": { + "version": "4.1.0", + "packageName": "eslint-plugin-es", + "hash": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==" + } + }, + "npm:eslint-plugin-es@3.0.1": { + "type": "npm", + "name": "npm:eslint-plugin-es@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "eslint-plugin-es", + "hash": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" + } + }, + "npm:eslint-plugin-import": { + "type": "npm", + "name": "npm:eslint-plugin-import", + "data": { + "version": "2.25.4", + "packageName": "eslint-plugin-import", + "hash": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==" + } + }, + "npm:eslint-plugin-jest": { + "type": "npm", + "name": "npm:eslint-plugin-jest", + "data": { + "version": "23.20.0", + "packageName": "eslint-plugin-jest", + "hash": "sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==" + } + }, + "npm:eslint-plugin-jest@25.2.4": { + "type": "npm", + "name": "npm:eslint-plugin-jest@25.2.4", + "data": { + "version": "25.2.4", + "packageName": "eslint-plugin-jest", + "hash": "sha512-HRyinpgmEdkVr7pNPaYPHCoGqEzpgk79X8pg/xCeoAdurbyQjntJQ4pTzHl7BiVEBlam/F1Qsn+Dk0HtJO7Aaw==" + } + }, + "npm:eslint-plugin-jsdoc": { + "type": "npm", + "name": "npm:eslint-plugin-jsdoc", + "data": { + "version": "39.9.1", + "packageName": "eslint-plugin-jsdoc", + "hash": "sha512-Rq2QY6BZP2meNIs48aZ3GlIlJgBqFCmR55+UBvaDkA3ZNQ0SvQXOs2QKkubakEijV8UbIVbVZKsOVN8G3MuqZw==" + } + }, + "npm:eslint-plugin-jsx-a11y": { + "type": "npm", + "name": "npm:eslint-plugin-jsx-a11y", + "data": { + "version": "6.4.1", + "packageName": "eslint-plugin-jsx-a11y", + "hash": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==" + } + }, + "npm:eslint-plugin-node": { + "type": "npm", + "name": "npm:eslint-plugin-node", + "data": { + "version": "11.1.0", + "packageName": "eslint-plugin-node", + "hash": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" + } + }, + "npm:eslint-plugin-react-hooks": { + "type": "npm", + "name": "npm:eslint-plugin-react-hooks", + "data": { + "version": "4.2.0", + "packageName": "eslint-plugin-react-hooks", + "hash": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==" + } + }, + "npm:eslint-plugin-react@7.24.0": { + "type": "npm", + "name": "npm:eslint-plugin-react@7.24.0", + "data": { + "version": "7.24.0", + "packageName": "eslint-plugin-react", + "hash": "sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q==" + } + }, + "npm:eslint-plugin-react": { + "type": "npm", + "name": "npm:eslint-plugin-react", + "data": { + "version": "7.26.0", + "packageName": "eslint-plugin-react", + "hash": "sha512-dceliS5itjk4EZdQYtLMz6GulcsasguIs+VTXuiC7Q5IPIdGTkyfXVdmsQOqEhlD9MciofH4cMcT1bw1WWNxCQ==" + } + }, + "npm:eslint-plugin-security": { + "type": "npm", + "name": "npm:eslint-plugin-security", + "data": { + "version": "1.4.0", + "packageName": "eslint-plugin-security", + "hash": "sha512-xlS7P2PLMXeqfhyf3NpqbvbnW04kN8M9NtmhpR3XGyOvt/vNKS7XPXT5EDbwKW9vCjWH4PpfQvgD/+JgN0VJKA==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-scope@4.0.3": { + "type": "npm", + "name": "npm:eslint-scope@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "eslint-scope", + "hash": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "2.1.0", + "packageName": "eslint-utils", + "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + } + }, + "npm:eslint-visitor-keys@1.3.0": { + "type": "npm", + "name": "npm:eslint-visitor-keys@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + }, + "npm:eslint-visitor-keys@2.0.0": { + "type": "npm", + "name": "npm:eslint-visitor-keys@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "3.4.1", + "packageName": "eslint-visitor-keys", + "hash": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "7.25.0", + "packageName": "eslint", + "hash": "sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==" + } + }, + "npm:esm": { + "type": "npm", + "name": "npm:esm", + "data": { + "version": "3.2.25", + "packageName": "esm", + "hash": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "7.3.1", + "packageName": "espree", + "hash": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" + } + }, + "npm:espree@9.6.1": { + "type": "npm", + "name": "npm:espree@9.6.1", + "data": { + "version": "9.6.1", + "packageName": "espree", + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" + } + }, + "npm:esprima-extract-comments": { + "type": "npm", + "name": "npm:esprima-extract-comments", + "data": { + "version": "1.1.0", + "packageName": "esprima-extract-comments", + "hash": "sha512-sBQUnvJwpeE9QnPrxh7dpI/dp67erYG4WXEAreAMoelPRpMR7NWb4YtwRPn9b+H1uLQKl/qS8WYmyaljTpjIsw==" + } + }, + "npm:esprima@2.7.3": { + "type": "npm", + "name": "npm:esprima@2.7.3", + "data": { + "version": "2.7.3", + "packageName": "esprima", + "hash": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:estraverse@1.9.3": { + "type": "npm", + "name": "npm:estraverse@1.9.3", + "data": { + "version": "1.9.3", + "packageName": "estraverse", + "hash": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=" + } + }, + "npm:estraverse@4.2.0": { + "type": "npm", + "name": "npm:estraverse@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "estraverse", + "hash": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estree-walker": { + "type": "npm", + "name": "npm:estree-walker", + "data": { + "version": "0.6.1", + "packageName": "estree-walker", + "hash": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + } + }, + "npm:estree-walker@1.0.1": { + "type": "npm", + "name": "npm:estree-walker@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "estree-walker", + "hash": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.2", + "packageName": "esutils", + "hash": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + } + }, + "npm:event-emitter": { + "type": "npm", + "name": "npm:event-emitter", + "data": { + "version": "0.3.5", + "packageName": "event-emitter", + "hash": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=" + } + }, + "npm:event-pubsub": { + "type": "npm", + "name": "npm:event-pubsub", + "data": { + "version": "4.3.0", + "packageName": "event-pubsub", + "hash": "sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==" + } + }, + "npm:event-target-shim": { + "type": "npm", + "name": "npm:event-target-shim", + "data": { + "version": "5.0.1", + "packageName": "event-target-shim", + "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + } + }, + "npm:eventemitter2": { + "type": "npm", + "name": "npm:eventemitter2", + "data": { + "version": "6.4.5", + "packageName": "eventemitter2", + "hash": "sha512-bXE7Dyc1i6oQElDG0jMRZJrRAn9QR2xyyFGmBdZleNmyQX0FqGYmhZIrIrpPfm/w//LTo4tVQGOGQcGCb5q9uw==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:evp_bytestokey": { + "type": "npm", + "name": "npm:evp_bytestokey", + "data": { + "version": "1.0.3", + "packageName": "evp_bytestokey", + "hash": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==" + } + }, + "npm:exec-sh": { + "type": "npm", + "name": "npm:exec-sh", + "data": { + "version": "0.3.2", + "packageName": "exec-sh", + "hash": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==" + } + }, + "npm:execa@4.1.0": { + "type": "npm", + "name": "npm:execa@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "execa", + "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + } + }, + "npm:execa@5.0.0": { + "type": "npm", + "name": "npm:execa@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "execa", + "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" + } + }, + "npm:execa@0.7.0": { + "type": "npm", + "name": "npm:execa@0.7.0", + "data": { + "version": "0.7.0", + "packageName": "execa", + "hash": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=" + } + }, + "npm:execa@1.0.0": { + "type": "npm", + "name": "npm:execa@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "execa", + "hash": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:executable": { + "type": "npm", + "name": "npm:executable", + "data": { + "version": "4.1.1", + "packageName": "executable", + "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" + } + }, + "npm:exenv-es6": { + "type": "npm", + "name": "npm:exenv-es6", + "data": { + "version": "1.1.1", + "packageName": "exenv-es6", + "hash": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + } + }, + "npm:expand-brackets": { + "type": "npm", + "name": "npm:expand-brackets", + "data": { + "version": "2.1.4", + "packageName": "expand-brackets", + "hash": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=" + } + }, + "npm:expand-tilde": { + "type": "npm", + "name": "npm:expand-tilde", + "data": { + "version": "2.0.2", + "packageName": "expand-tilde", + "hash": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=" + } + }, + "npm:expect": { + "type": "npm", + "name": "npm:expect", + "data": { + "version": "29.7.0", + "packageName": "expect", + "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.17.3", + "packageName": "express", + "hash": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==" + } + }, + "npm:ext-list": { + "type": "npm", + "name": "npm:ext-list", + "data": { + "version": "2.2.2", + "packageName": "ext-list", + "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" + } + }, + "npm:ext-name": { + "type": "npm", + "name": "npm:ext-name", + "data": { + "version": "5.0.0", + "packageName": "ext-name", + "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" + } + }, + "npm:ext": { + "type": "npm", + "name": "npm:ext", + "data": { + "version": "1.4.0", + "packageName": "ext", + "hash": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==" + } + }, + "npm:extend-shallow@1.1.4": { + "type": "npm", + "name": "npm:extend-shallow@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "extend-shallow", + "hash": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=" + } + }, + "npm:extend-shallow": { + "type": "npm", + "name": "npm:extend-shallow", + "data": { + "version": "2.0.1", + "packageName": "extend-shallow", + "hash": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" + } + }, + "npm:extend-shallow@3.0.2": { + "type": "npm", + "name": "npm:extend-shallow@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "extend-shallow", + "hash": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.0.3", + "packageName": "external-editor", + "hash": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==" + } + }, + "npm:extglob": { + "type": "npm", + "name": "npm:extglob", + "data": { + "version": "2.0.4", + "packageName": "extglob", + "hash": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==" + } + }, + "npm:extract-comments": { + "type": "npm", + "name": "npm:extract-comments", + "data": { + "version": "1.1.0", + "packageName": "extract-comments", + "hash": "sha512-dzbZV2AdSSVW/4E7Ti5hZdHWbA+Z80RJsJhr5uiL10oyjl/gy7/o+HI1HwK4/WSZhlq4SNKU3oUzXlM13Qx02Q==" + } + }, + "npm:extract-zip": { + "type": "npm", + "name": "npm:extract-zip", + "data": { + "version": "2.0.1", + "packageName": "extract-zip", + "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" + } + }, + "npm:extsprintf": { + "type": "npm", + "name": "npm:extsprintf", + "data": { + "version": "1.3.0", + "packageName": "extsprintf", + "hash": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + } + }, + "npm:faker": { + "type": "npm", + "name": "npm:faker", + "data": { + "version": "4.1.0", + "packageName": "faker", + "hash": "sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8=" + } + }, + "npm:fancy-log": { + "type": "npm", + "name": "npm:fancy-log", + "data": { + "version": "1.3.3", + "packageName": "fancy-log", + "hash": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==" + } + }, + "npm:fast-check": { + "type": "npm", + "name": "npm:fast-check", + "data": { + "version": "3.11.0", + "packageName": "fast-check", + "hash": "sha512-H2tctb7AGfFQfz+DEr3UWhJ3s47LXsGp5g3jeJr5tHjnf4xUvpArIqiwcDmL2EXiv+auLHIpF5MqaIpIKvpxiA==" + } + }, + "npm:fast-deep-equal@1.1.0": { + "type": "npm", + "name": "npm:fast-deep-equal@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "fast-deep-equal", + "hash": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-glob@3.2.7": { + "type": "npm", + "name": "npm:fast-glob@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "fast-glob", + "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + } + }, + "npm:fast-glob@2.2.7": { + "type": "npm", + "name": "npm:fast-glob@2.2.7", + "data": { + "version": "2.2.7", + "packageName": "fast-glob", + "hash": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.0", + "packageName": "fast-glob", + "hash": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==" + } + }, + "npm:fast-json-parse": { + "type": "npm", + "name": "npm:fast-json-parse", + "data": { + "version": "1.0.3", + "packageName": "fast-json-parse", + "hash": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==" + } + }, + "npm:fast-json-patch": { + "type": "npm", + "name": "npm:fast-json-patch", + "data": { + "version": "3.1.1", + "packageName": "fast-json-patch", + "hash": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-levenshtein@1.1.4": { + "type": "npm", + "name": "npm:fast-levenshtein@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "fast-levenshtein", + "hash": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + } + }, + "npm:fast-loops": { + "type": "npm", + "name": "npm:fast-loops", + "data": { + "version": "1.1.2", + "packageName": "fast-loops", + "hash": "sha512-ql8BgnHFryLogmmzR5O3uobe+3Zzaq6h6MWn/VtAyL9OXb51r5PSTbCm9f56fvEvMWWGjbdkr4xyhT0/vLJkKw==" + } + }, + "npm:fast-png": { + "type": "npm", + "name": "npm:fast-png", + "data": { + "version": "6.1.0", + "packageName": "fast-png", + "hash": "sha512-v8e/40RKZbE1mALigoqBOkYnemCVSMmVlGSz8fawZAZg5UQ9OZeR00L++CPvrhIGm2F6TxV5u9lbWD0oOJHcCw==" + } + }, + "npm:fastest-levenshtein": { + "type": "npm", + "name": "npm:fastest-levenshtein", + "data": { + "version": "1.0.12", + "packageName": "fastest-levenshtein", + "hash": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.6.0", + "packageName": "fastq", + "hash": "sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA==" + } + }, + "npm:fault": { + "type": "npm", + "name": "npm:fault", + "data": { + "version": "1.0.4", + "packageName": "fault", + "hash": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.3", + "packageName": "faye-websocket", + "hash": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.0", + "packageName": "fb-watchman", + "hash": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=" + } + }, + "npm:fclone": { + "type": "npm", + "name": "npm:fclone", + "data": { + "version": "1.0.11", + "packageName": "fclone", + "hash": "sha512-GDqVQezKzRABdeqflsgMr7ktzgF9CyS+p2oe0jJqUY6izSSbhPIQJDpoU4PtGcD7VPM9xh/dVrTu6z1nwgmEGw==" + } + }, + "npm:fd-slicer": { + "type": "npm", + "name": "npm:fd-slicer", + "data": { + "version": "1.1.0", + "packageName": "fd-slicer", + "hash": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=" + } + }, + "npm:fela-bindings": { + "type": "npm", + "name": "npm:fela-bindings", + "data": { + "version": "10.6.1", + "packageName": "fela-bindings", + "hash": "sha512-VY6PzkVHDpVHSvefa4AnfRYuzw1jgAheU+ePof4m8je3JgkoezKDiadI7uHD0teyzJhajDZ25nr2dOt2yCuMtA==" + } + }, + "npm:fela-dom": { + "type": "npm", + "name": "npm:fela-dom", + "data": { + "version": "10.6.1", + "packageName": "fela-dom", + "hash": "sha512-J/EbPv7w7GGEBwhwwohTNdBThS1CrVaO5t8eapuKg0GDUCulbpBHuL5fw1+TbpJKEL54h7GwaCV9RZKZPUOXGA==" + } + }, + "npm:fela-dom@11.7.0": { + "type": "npm", + "name": "npm:fela-dom@11.7.0", + "data": { + "version": "11.7.0", + "packageName": "fela-dom", + "hash": "sha512-mYboADGGQc/EihhyPOs8Xo2aJ0cOQI4q3+aWQ11KPzaCAT3TTVdXuTslT5QeXoE6cT6nS77GvvrRzXb3U/gY6Q==" + } + }, + "npm:fela-plugin-custom-property": { + "type": "npm", + "name": "npm:fela-plugin-custom-property", + "data": { + "version": "10.8.2", + "packageName": "fela-plugin-custom-property", + "hash": "sha512-SFbuMRQpetEUYwMsG0ngZrdEB7N7ytH+jsXeWt54GKhdz68XcvbAEIoc5vWSPiNVBKH47jV3+dwXjhejd5AdaQ==" + } + }, + "npm:fela-plugin-embedded": { + "type": "npm", + "name": "npm:fela-plugin-embedded", + "data": { + "version": "10.8.2", + "packageName": "fela-plugin-embedded", + "hash": "sha512-HeLyDJHQgpBEMbWjsCES1Jtptawtaqnp0Ml3zKebPMrryCQj4j0k4VdyzcS+QzE4M0JD1r0FYhKla+mpuMP5Qw==" + } + }, + "npm:fela-plugin-fallback-value": { + "type": "npm", + "name": "npm:fela-plugin-fallback-value", + "data": { + "version": "10.8.2", + "packageName": "fela-plugin-fallback-value", + "hash": "sha512-pjNQ4TJVJz8rDS8kEB7afRDHelQFzi0kIOhLSR0/LWLLFC7CfaQ3Vop9/w5Ot7iJtH8oR1dAxSQEyk497QcyPw==" + } + }, + "npm:fela-plugin-placeholder-prefixer": { + "type": "npm", + "name": "npm:fela-plugin-placeholder-prefixer", + "data": { + "version": "10.6.1", + "packageName": "fela-plugin-placeholder-prefixer", + "hash": "sha512-yZcTYsjRXjNrDFeDvML5QalgeO9hHN6sqC3geAwC44GTpaw9BG22BKiuCInvzhkSYWuT+q8XSgPrW7wDwL1TRQ==" + } + }, + "npm:fela-plugin-rtl": { + "type": "npm", + "name": "npm:fela-plugin-rtl", + "data": { + "version": "10.8.2", + "packageName": "fela-plugin-rtl", + "hash": "sha512-Xc3uYTNU0TponAtMwqfJQc/F33gACCCPr7QOMqpJurlYUU9VaYhchgs7YMocqns6kBPRGrYc0mYiQqNCfpKsjw==" + } + }, + "npm:fela-tools": { + "type": "npm", + "name": "npm:fela-tools", + "data": { + "version": "10.6.1", + "packageName": "fela-tools", + "hash": "sha512-fywHZDZPY2jQoNA+COPn5ge4rq4uFYVEeNVsT/AKW/RtQNnr18JsHoO1kbn/n4N76NJcNKP6R8OM6jOcOdLiYQ==" + } + }, + "npm:fela-utils": { + "type": "npm", + "name": "npm:fela-utils", + "data": { + "version": "10.8.2", + "packageName": "fela-utils", + "hash": "sha512-RmoDOIby14Zb3Xn03noLolyMC2528xcNO5KcNCaznyByd1Acq8DnvQn91Ph9nBLcLqdC1rGme5HwRcrCOHG+kA==" + } + }, + "npm:fela-utils@11.7.0": { + "type": "npm", + "name": "npm:fela-utils@11.7.0", + "data": { + "version": "11.7.0", + "packageName": "fela-utils", + "hash": "sha512-s/3QJtkCesH+2/yJDpedHVAvMgKy9hSt2++6l7Xjio5BixiUnvkwbqdCV/fcAb4E3reJLNzYeatgPdcw4HVXRQ==" + } + }, + "npm:fela": { + "type": "npm", + "name": "npm:fela", + "data": { + "version": "10.6.1", + "packageName": "fela", + "hash": "sha512-Fp07Wst/BchfJAufCF+sfeMeIsB8hq+EHObpjUMrLfXcweqRtcJ5gg+47ncYO6W/HnRi1NBUzV+fY4tnMVm+MA==" + } + }, + "npm:fetch-blob": { + "type": "npm", + "name": "npm:fetch-blob", + "data": { + "version": "3.2.0", + "packageName": "fetch-blob", + "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" + } + }, + "npm:fetch-retry": { + "type": "npm", + "name": "npm:fetch-retry", + "data": { + "version": "5.0.2", + "packageName": "fetch-retry", + "hash": "sha512-57Hmu+1kc6pKFUGVIobT7qw3NeAzY/uNN26bSevERLVvf6VGFR/ooDCOFBHMNDgAxBiU2YJq1D0vFzc6U1DcPw==" + } + }, + "npm:figgy-pudding": { + "type": "npm", + "name": "npm:figgy-pudding", + "data": { + "version": "3.5.2", + "packageName": "figgy-pudding", + "hash": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:file-loader": { + "type": "npm", + "name": "npm:file-loader", + "data": { + "version": "6.2.0", + "packageName": "file-loader", + "hash": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==" + } + }, + "npm:file-system-cache": { + "type": "npm", + "name": "npm:file-system-cache", + "data": { + "version": "1.0.5", + "packageName": "file-system-cache", + "hash": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=" + } + }, + "npm:file-type": { + "type": "npm", + "name": "npm:file-type", + "data": { + "version": "17.1.6", + "packageName": "file-type", + "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" + } + }, + "npm:file-uri-to-path@1.0.0": { + "type": "npm", + "name": "npm:file-uri-to-path@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "file-uri-to-path", + "hash": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.3", + "packageName": "filelist", + "hash": "sha512-LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==" + } + }, + "npm:filename-reserved-regex": { + "type": "npm", + "name": "npm:filename-reserved-regex", + "data": { + "version": "2.0.0", + "packageName": "filename-reserved-regex", + "hash": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=" + } + }, + "npm:filename-reserved-regex@3.0.0": { + "type": "npm", + "name": "npm:filename-reserved-regex@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "filename-reserved-regex", + "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" + } + }, + "npm:filenamify": { + "type": "npm", + "name": "npm:filenamify", + "data": { + "version": "4.1.0", + "packageName": "filenamify", + "hash": "sha512-KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg==" + } + }, + "npm:filenamify@5.1.1": { + "type": "npm", + "name": "npm:filenamify@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "filenamify", + "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" + } + }, + "npm:filesize@3.6.1": { + "type": "npm", + "name": "npm:filesize@3.6.1", + "data": { + "version": "3.6.1", + "packageName": "filesize", + "hash": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==" + } + }, + "npm:filesize": { + "type": "npm", + "name": "npm:filesize", + "data": { + "version": "6.1.0", + "packageName": "filesize", + "hash": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + } + }, + "npm:fill-range@4.0.0": { + "type": "npm", + "name": "npm:fill-range@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "fill-range", + "hash": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:filter-obj": { + "type": "npm", + "name": "npm:filter-obj", + "data": { + "version": "1.1.0", + "packageName": "filter-obj", + "hash": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.1.2", + "packageName": "finalhandler", + "hash": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" + } + }, + "npm:find-babel-config": { + "type": "npm", + "name": "npm:find-babel-config", + "data": { + "version": "1.2.0", + "packageName": "find-babel-config", + "hash": "sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==" + } + }, + "npm:find-cache-dir@2.1.0": { + "type": "npm", + "name": "npm:find-cache-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-cache-dir", + "hash": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:find-free-port": { + "type": "npm", + "name": "npm:find-free-port", + "data": { + "version": "2.0.0", + "packageName": "find-free-port", + "hash": "sha512-J1j8gfEVf5FN4PR5w5wrZZ7NYs2IvqsHcd03cAeQx3Ec/mo+lKceaVNhpsRKoZpZKbId88o8qh+dwUwzBV6WCg==" + } + }, + "npm:find-replace": { + "type": "npm", + "name": "npm:find-replace", + "data": { + "version": "3.0.0", + "packageName": "find-replace", + "hash": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==" + } + }, + "npm:find-root": { + "type": "npm", + "name": "npm:find-root", + "data": { + "version": "1.1.0", + "packageName": "find-root", + "hash": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:find-up@1.1.2": { + "type": "npm", + "name": "npm:find-up@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "find-up", + "hash": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=" + } + }, + "npm:find-up@2.1.0": { + "type": "npm", + "name": "npm:find-up@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-up", + "hash": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" + } + }, + "npm:find-up@4.1.0": { + "type": "npm", + "name": "npm:find-up@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:find-up@6.3.0": { + "type": "npm", + "name": "npm:find-up@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" + } + }, + "npm:find-versions": { + "type": "npm", + "name": "npm:find-versions", + "data": { + "version": "5.1.0", + "packageName": "find-versions", + "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" + } + }, + "npm:find-webpack": { + "type": "npm", + "name": "npm:find-webpack", + "data": { + "version": "2.2.1", + "packageName": "find-webpack", + "hash": "sha512-OdDtn2AzQvu3l9U1TS5ALc7uTVcLK/yv3fhjo+Pz7yuv4hG3ANKnbkKnPIPZ5ofd9mpYe6wRf5g5H4X9Lx48vQ==" + } + }, + "npm:find-yarn-workspace-root@1.2.1": { + "type": "npm", + "name": "npm:find-yarn-workspace-root@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "find-yarn-workspace-root", + "hash": "sha512-dVtfb0WuQG+8Ag2uWkbG79hOUzEsRrhBzgfn86g2sJPkzmcpGdghbNTfUKGTxymFrY/tLIodDzLoW9nOJ4FY8Q==" + } + }, + "npm:find-yarn-workspace-root": { + "type": "npm", + "name": "npm:find-yarn-workspace-root", + "data": { + "version": "2.0.0", + "packageName": "find-yarn-workspace-root", + "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" + } + }, + "npm:findup-sync": { + "type": "npm", + "name": "npm:findup-sync", + "data": { + "version": "2.0.0", + "packageName": "findup-sync", + "hash": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=" + } + }, + "npm:findup-sync@3.0.0": { + "type": "npm", + "name": "npm:findup-sync@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "findup-sync", + "hash": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==" + } + }, + "npm:fined": { + "type": "npm", + "name": "npm:fined", + "data": { + "version": "1.2.0", + "packageName": "fined", + "hash": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==" + } + }, + "npm:flagged-respawn": { + "type": "npm", + "name": "npm:flagged-respawn", + "data": { + "version": "1.0.1", + "packageName": "flagged-respawn", + "hash": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==" + } + }, + "npm:flamebearer": { + "type": "npm", + "name": "npm:flamebearer", + "data": { + "version": "1.1.3", + "packageName": "flamebearer", + "hash": "sha512-3AEti4HwtsVRQTHTB47kQZvXkenSn5YfmpGGZX/mRW8R+9ZDFO+iqgEC4W7Nb8PQvUceYVfbM7nqQxI/m6DeDA==" + } + }, + "npm:flamegrill": { + "type": "npm", + "name": "npm:flamegrill", + "data": { + "version": "0.2.0", + "packageName": "flamegrill", + "hash": "sha512-p4TMMR47KjZCYy+rLucMfoVOXFPAwxvF+NmNKmDJV0bPzKM3Q19txSiHzIsOuCF9WDWrbTgyA97RT1HI+exQ1g==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.0.4", + "packageName": "flat-cache", + "hash": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" + } + }, + "npm:flat@4.1.0": { + "type": "npm", + "name": "npm:flat@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "flat", + "hash": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.5", + "packageName": "flatted", + "hash": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" + } + }, + "npm:flush-write-stream": { + "type": "npm", + "name": "npm:flush-write-stream", + "data": { + "version": "1.1.1", + "packageName": "flush-write-stream", + "hash": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.2", + "packageName": "follow-redirects", + "hash": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + } + }, + "npm:for-in": { + "type": "npm", + "name": "npm:for-in", + "data": { + "version": "1.0.2", + "packageName": "for-in", + "hash": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + } + }, + "npm:for-own": { + "type": "npm", + "name": "npm:for-own", + "data": { + "version": "1.0.0", + "packageName": "for-own", + "hash": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=" + } + }, + "npm:foreach": { + "type": "npm", + "name": "npm:foreach", + "data": { + "version": "2.0.5", + "packageName": "foreach", + "hash": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:forever-agent": { + "type": "npm", + "name": "npm:forever-agent", + "data": { + "version": "0.6.1", + "packageName": "forever-agent", + "hash": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + } + }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "6.1.0", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-xLNufWQ1dfQUdZe48TGQlER/0OkcMnUB6lfbN9Tt13wsYyo+2DwcCbnOaPBo1PoFow/WL8pJPktGIdbJaHxAnw==" + } + }, + "npm:fork-ts-checker-webpack-plugin@4.1.6": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "data": { + "version": "4.1.6", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==" + } + }, + "npm:form-data-encoder": { + "type": "npm", + "name": "npm:form-data-encoder", + "data": { + "version": "2.0.1", + "packageName": "form-data-encoder", + "hash": "sha512-Oy+P9w5mnO4TWXVgUiQvggNKPI9/ummcSt5usuIV6HkaLKigwzPpoenhEqmGmx3zHqm6ZLJ+CR/99N8JLinaEw==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "2.5.1", + "packageName": "form-data", + "hash": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==" + } + }, + "npm:form-data@3.0.0": { + "type": "npm", + "name": "npm:form-data@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "form-data", + "hash": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==" + } + }, + "npm:form-data@4.0.0": { + "type": "npm", + "name": "npm:form-data@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:form-data@2.3.3": { + "type": "npm", + "name": "npm:form-data@2.3.3", + "data": { + "version": "2.3.3", + "packageName": "form-data", + "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + } + }, + "npm:format": { + "type": "npm", + "name": "npm:format", + "data": { + "version": "0.2.2", + "packageName": "format", + "hash": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=" + } + }, + "npm:formdata-polyfill": { + "type": "npm", + "name": "npm:formdata-polyfill", + "data": { + "version": "4.0.10", + "packageName": "formdata-polyfill", + "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" + } + }, + "npm:formik": { + "type": "npm", + "name": "npm:formik", + "data": { + "version": "2.2.6", + "packageName": "formik", + "hash": "sha512-Kxk2zQRafy56zhLmrzcbryUpMBvT0tal5IvcifK5+4YNGelKsnrODFJ0sZQRMQboblWNym4lAW3bt+tf2vApSA==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.2.0", + "packageName": "fraction.js", + "hash": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + } + }, + "npm:fragment-cache": { + "type": "npm", + "name": "npm:fragment-cache", + "data": { + "version": "0.2.1", + "packageName": "fragment-cache", + "hash": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + } + }, + "npm:from2": { + "type": "npm", + "name": "npm:from2", + "data": { + "version": "2.3.0", + "packageName": "from2", + "hash": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:fs-exists-sync": { + "type": "npm", + "name": "npm:fs-exists-sync", + "data": { + "version": "0.1.0", + "packageName": "fs-exists-sync", + "hash": "sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=" + } + }, + "npm:fs-extra@11.1.1": { + "type": "npm", + "name": "npm:fs-extra@11.1.1", + "data": { + "version": "11.1.1", + "packageName": "fs-extra", + "hash": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "8.1.0", + "packageName": "fs-extra", + "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" + } + }, + "npm:fs-extra@0.30.0": { + "type": "npm", + "name": "npm:fs-extra@0.30.0", + "data": { + "version": "0.30.0", + "packageName": "fs-extra", + "hash": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=" + } + }, + "npm:fs-extra@10.1.0": { + "type": "npm", + "name": "npm:fs-extra@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-extra@4.0.3": { + "type": "npm", + "name": "npm:fs-extra@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "fs-extra", + "hash": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==" + } + }, + "npm:fs-extra@9.1.0": { + "type": "npm", + "name": "npm:fs-extra@9.1.0", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:fs-extra@7.0.1": { + "type": "npm", + "name": "npm:fs-extra@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "fs-extra", + "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" + } + }, + "npm:fs-minipass@1.2.7": { + "type": "npm", + "name": "npm:fs-minipass@1.2.7", + "data": { + "version": "1.2.7", + "packageName": "fs-minipass", + "hash": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + } + }, + "npm:fs-minipass@3.0.2": { + "type": "npm", + "name": "npm:fs-minipass@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "fs-minipass", + "hash": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==" + } + }, + "npm:fs-mkdirp-stream": { + "type": "npm", + "name": "npm:fs-mkdirp-stream", + "data": { + "version": "1.0.0", + "packageName": "fs-mkdirp-stream", + "hash": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.3", + "packageName": "fs-monkey", + "hash": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + } + }, + "npm:fs-write-stream-atomic": { + "type": "npm", + "name": "npm:fs-write-stream-atomic", + "data": { + "version": "1.0.10", + "packageName": "fs-write-stream-atomic", + "hash": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + } + }, + "npm:fsevents@1.2.13": { + "type": "npm", + "name": "npm:fsevents@1.2.13", + "data": { + "version": "1.2.13", + "packageName": "fsevents", + "hash": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==" + } + }, + "npm:fsevents@2.3.3": { + "type": "npm", + "name": "npm:fsevents@2.3.3", + "data": { + "version": "2.3.3", + "packageName": "fsevents", + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" + } + }, + "npm:fsevents@2.1.3": { + "type": "npm", + "name": "npm:fsevents@2.1.3", + "data": { + "version": "2.1.3", + "packageName": "fsevents", + "hash": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==" + } + }, + "npm:fstream": { + "type": "npm", + "name": "npm:fstream", + "data": { + "version": "1.0.12", + "packageName": "fstream", + "hash": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.1", + "packageName": "function-bind", + "hash": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.0", + "packageName": "function.prototype.name", + "hash": "sha512-Bs0VRrTz4ghD8pTmbJQD1mZ8A/mN0ur/jGz+A6FBxPDUPkm1tNfF6bhTYPA7i7aF4lZJVr+OXTNNrnnIl58Wfg==" + } + }, + "npm:functional-red-black-tree": { + "type": "npm", + "name": "npm:functional-red-black-tree", + "data": { + "version": "1.0.1", + "packageName": "functional-red-black-tree", + "hash": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + } + }, + "npm:gauge@3.0.2": { + "type": "npm", + "name": "npm:gauge@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "gauge", + "hash": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==" + } + }, + "npm:gauge@4.0.4": { + "type": "npm", + "name": "npm:gauge@4.0.4", + "data": { + "version": "4.0.4", + "packageName": "gauge", + "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" + } + }, + "npm:gauge": { + "type": "npm", + "name": "npm:gauge", + "data": { + "version": "2.7.4", + "packageName": "gauge", + "hash": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=" + } + }, + "npm:geckodriver": { + "type": "npm", + "name": "npm:geckodriver", + "data": { + "version": "3.0.2", + "packageName": "geckodriver", + "hash": "sha512-GHOQzQnTeZOJdcdEXLuzmcRwkbHuei1VivXkn2BLyleKiT6lTvl0T7vm+d0wvr/EZC7jr0m1u1pBHSfqtuFuNQ==" + } + }, + "npm:generic-names": { + "type": "npm", + "name": "npm:generic-names", + "data": { + "version": "2.0.1", + "packageName": "generic-names", + "hash": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file@1.0.3": { + "type": "npm", + "name": "npm:get-caller-file@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "get-caller-file", + "hash": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-func-name": { + "type": "npm", + "name": "npm:get-func-name", + "data": { + "version": "2.0.2", + "packageName": "get-func-name", + "hash": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.1.1", + "packageName": "get-intrinsic", + "hash": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" + } + }, + "npm:get-lerna-packages": { + "type": "npm", + "name": "npm:get-lerna-packages", + "data": { + "version": "0.1.1", + "packageName": "get-lerna-packages", + "hash": "sha512-venxkvga57gOUZoTmXZlJ0zHc8cmvsx7Y0GTMcoEK/7OCEK3PLpG5gVTbUUMJaLxbzK13AWQdKPf1LSkuEfWqA==" + } + }, + "npm:get-own-enumerable-property-symbols": { + "type": "npm", + "name": "npm:get-own-enumerable-property-symbols", + "data": { + "version": "3.0.0", + "packageName": "get-own-enumerable-property-symbols", + "hash": "sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:get-pkg-repo": { + "type": "npm", + "name": "npm:get-pkg-repo", + "data": { + "version": "4.2.1", + "packageName": "get-pkg-repo", + "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "5.1.1", + "packageName": "get-port", + "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" + } + }, + "npm:get-stdin@4.0.1": { + "type": "npm", + "name": "npm:get-stdin@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "get-stdin", + "hash": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" + } + }, + "npm:get-stdin": { + "type": "npm", + "name": "npm:get-stdin", + "data": { + "version": "6.0.0", + "packageName": "get-stdin", + "hash": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==" + } + }, + "npm:get-stream@6.0.0": { + "type": "npm", + "name": "npm:get-stream@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "get-stream", + "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" + } + }, + "npm:get-stream@3.0.0": { + "type": "npm", + "name": "npm:get-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "get-stream", + "hash": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" + } + }, + "npm:get-stream@4.1.0": { + "type": "npm", + "name": "npm:get-stream@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "get-stream", + "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "5.1.0", + "packageName": "get-stream", + "hash": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==" + } + }, + "npm:get-stream@6.0.1": { + "type": "npm", + "name": "npm:get-stream@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:get-tsconfig": { + "type": "npm", + "name": "npm:get-tsconfig", + "data": { + "version": "4.7.0", + "packageName": "get-tsconfig", + "hash": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==" + } + }, + "npm:get-value": { + "type": "npm", + "name": "npm:get-value", + "data": { + "version": "2.0.6", + "packageName": "get-value", + "hash": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + } + }, + "npm:getos": { + "type": "npm", + "name": "npm:getos", + "data": { + "version": "3.2.1", + "packageName": "getos", + "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" + } + }, + "npm:getpass": { + "type": "npm", + "name": "npm:getpass", + "data": { + "version": "0.1.7", + "packageName": "getpass", + "hash": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=" + } + }, + "npm:git-config-path": { + "type": "npm", + "name": "npm:git-config-path", + "data": { + "version": "1.0.1", + "packageName": "git-config-path", + "hash": "sha1-bTP37WPbDQ4RgTFQO6s6ykfVRmQ=" + } + }, + "npm:git-raw-commits": { + "type": "npm", + "name": "npm:git-raw-commits", + "data": { + "version": "3.0.0", + "packageName": "git-raw-commits", + "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" + } + }, + "npm:git-remote-origin-url": { + "type": "npm", + "name": "npm:git-remote-origin-url", + "data": { + "version": "2.0.0", + "packageName": "git-remote-origin-url", + "hash": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=" + } + }, + "npm:git-semver-tags": { + "type": "npm", + "name": "npm:git-semver-tags", + "data": { + "version": "5.0.1", + "packageName": "git-semver-tags", + "hash": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==" + } + }, + "npm:git-up": { + "type": "npm", + "name": "npm:git-up", + "data": { + "version": "7.0.0", + "packageName": "git-up", + "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" + } + }, + "npm:git-url-parse": { + "type": "npm", + "name": "npm:git-url-parse", + "data": { + "version": "13.1.0", + "packageName": "git-url-parse", + "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" + } + }, + "npm:gitconfiglocal": { + "type": "npm", + "name": "npm:gitconfiglocal", + "data": { + "version": "1.0.0", + "packageName": "gitconfiglocal", + "hash": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=" + } + }, + "npm:github-slugger": { + "type": "npm", + "name": "npm:github-slugger", + "data": { + "version": "1.3.0", + "packageName": "github-slugger", + "hash": "sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==" + } + }, + "npm:gitlab": { + "type": "npm", + "name": "npm:gitlab", + "data": { + "version": "10.2.1", + "packageName": "gitlab", + "hash": "sha512-z+DxRF1C9uayVbocs9aJkJz+kGy14TSm1noB/rAIEBbXOkOYbjKxyuqJzt+0zeFpXFdgA0yq6DVVbvM7HIfGwg==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-parent@3.1.0": { + "type": "npm", + "name": "npm:glob-parent@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "glob-parent", + "hash": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=" + } + }, + "npm:glob-promise": { + "type": "npm", + "name": "npm:glob-promise", + "data": { + "version": "3.4.0", + "packageName": "glob-promise", + "hash": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==" + } + }, + "npm:glob-stream": { + "type": "npm", + "name": "npm:glob-stream", + "data": { + "version": "6.1.0", + "packageName": "glob-stream", + "hash": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=" + } + }, + "npm:glob-to-regexp@0.3.0": { + "type": "npm", + "name": "npm:glob-to-regexp@0.3.0", + "data": { + "version": "0.3.0", + "packageName": "glob-to-regexp", + "hash": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:glob-watcher": { + "type": "npm", + "name": "npm:glob-watcher", + "data": { + "version": "5.0.3", + "packageName": "glob-watcher", + "hash": "sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg==" + } + }, + "npm:glob@7.1.3": { + "type": "npm", + "name": "npm:glob@7.1.3", + "data": { + "version": "7.1.3", + "packageName": "glob", + "hash": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==" + } + }, + "npm:glob@7.1.4": { + "type": "npm", + "name": "npm:glob@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "glob", + "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "7.2.0", + "packageName": "glob", + "hash": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==" + } + }, + "npm:glob@10.3.3": { + "type": "npm", + "name": "npm:glob@10.3.3", + "data": { + "version": "10.3.3", + "packageName": "glob", + "hash": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==" + } + }, + "npm:glob@5.0.15": { + "type": "npm", + "name": "npm:glob@5.0.15", + "data": { + "version": "5.0.15", + "packageName": "glob", + "hash": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=" + } + }, + "npm:glob@8.1.0": { + "type": "npm", + "name": "npm:glob@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:glob@9.3.5": { + "type": "npm", + "name": "npm:glob@9.3.5", + "data": { + "version": "9.3.5", + "packageName": "glob", + "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" + } + }, + "npm:global-dirs@0.1.1": { + "type": "npm", + "name": "npm:global-dirs@0.1.1", + "data": { + "version": "0.1.1", + "packageName": "global-dirs", + "hash": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=" + } + }, + "npm:global-dirs": { + "type": "npm", + "name": "npm:global-dirs", + "data": { + "version": "3.0.0", + "packageName": "global-dirs", + "hash": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==" + } + }, + "npm:global-modules": { + "type": "npm", + "name": "npm:global-modules", + "data": { + "version": "1.0.0", + "packageName": "global-modules", + "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" + } + }, + "npm:global-prefix": { + "type": "npm", + "name": "npm:global-prefix", + "data": { + "version": "1.0.2", + "packageName": "global-prefix", + "hash": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=" + } + }, + "npm:global": { + "type": "npm", + "name": "npm:global", + "data": { + "version": "4.4.0", + "packageName": "global", + "hash": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:globals@13.12.0": { + "type": "npm", + "name": "npm:globals@13.12.0", + "data": { + "version": "13.12.0", + "packageName": "globals", + "hash": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==" + } + }, + "npm:globals@9.18.0": { + "type": "npm", + "name": "npm:globals@9.18.0", + "data": { + "version": "9.18.0", + "packageName": "globals", + "hash": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.0", + "packageName": "globalthis", + "hash": "sha512-vcCAZTJ3r5Qcu5l8/2oyVdoFwxKgfYnMTR2vwWeux/NAVZK3PwcMaWkdUIn4GJbmKuRK7xcvDsLuK+CKcXyodg==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:globby@10.0.2": { + "type": "npm", + "name": "npm:globby@10.0.2", + "data": { + "version": "10.0.2", + "packageName": "globby", + "hash": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==" + } + }, + "npm:globby@13.2.2": { + "type": "npm", + "name": "npm:globby@13.2.2", + "data": { + "version": "13.2.2", + "packageName": "globby", + "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" + } + }, + "npm:globby@6.1.0": { + "type": "npm", + "name": "npm:globby@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "globby", + "hash": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=" + } + }, + "npm:globby@9.2.0": { + "type": "npm", + "name": "npm:globby@9.2.0", + "data": { + "version": "9.2.0", + "packageName": "globby", + "hash": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==" + } + }, + "npm:glogg": { + "type": "npm", + "name": "npm:glogg", + "data": { + "version": "1.0.2", + "packageName": "glogg", + "hash": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==" + } + }, + "npm:good-listener": { + "type": "npm", + "name": "npm:good-listener", + "data": { + "version": "1.2.2", + "packageName": "good-listener", + "hash": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "11.8.5", + "packageName": "got", + "hash": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==" + } + }, + "npm:got@12.3.1": { + "type": "npm", + "name": "npm:got@12.3.1", + "data": { + "version": "12.3.1", + "packageName": "got", + "hash": "sha512-tS6+JMhBh4iXMSXF6KkIsRxmloPln31QHDlcb6Ec3bzxjjFJFr/8aXdpyuLmVc9I4i2HyBHYw1QU5K1ruUdpkw==" + } + }, + "npm:got@6.7.1": { + "type": "npm", + "name": "npm:got@6.7.1", + "data": { + "version": "6.7.1", + "packageName": "got", + "hash": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:graphviz": { + "type": "npm", + "name": "npm:graphviz", + "data": { + "version": "0.0.9", + "packageName": "graphviz", + "hash": "sha512-SmoY2pOtcikmMCqCSy2NO1YsRfu9OO0wpTlOYW++giGjfX1a6gax/m1Fo8IdUd0/3H15cTOfR1SMKwohj4LKsg==" + } + }, + "npm:growl": { + "type": "npm", + "name": "npm:growl", + "data": { + "version": "1.10.5", + "packageName": "growl", + "hash": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==" + } + }, + "npm:gulp-babel": { + "type": "npm", + "name": "npm:gulp-babel", + "data": { + "version": "8.0.0", + "packageName": "gulp-babel", + "hash": "sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ==" + } + }, + "npm:gulp-cache": { + "type": "npm", + "name": "npm:gulp-cache", + "data": { + "version": "1.1.3", + "packageName": "gulp-cache", + "hash": "sha512-NE814LdX1NWQn2sMzn+Rf673o4mqlgg7OyLf92oQ4KEl6DdPfduEGLNH+HexLVcFZXH93DBuxFOvpv4/Js5VaA==" + } + }, + "npm:gulp-cli": { + "type": "npm", + "name": "npm:gulp-cli", + "data": { + "version": "2.2.0", + "packageName": "gulp-cli", + "hash": "sha512-rGs3bVYHdyJpLqR0TUBnlcZ1O5O++Zs4bA0ajm+zr3WFCfiSLjGwoCBqFs18wzN+ZxahT9DkOK5nDf26iDsWjA==" + } + }, + "npm:gulp-remember": { + "type": "npm", + "name": "npm:gulp-remember", + "data": { + "version": "1.0.1", + "packageName": "gulp-remember", + "hash": "sha512-6OMSOzGeW05rl2TSFiBgXp6bV5r16n1CbZAT4t98vt1osQQ0UL76Y2M91xJTtMwppTo3Aj25Rle85jCP1eL9rQ==" + } + }, + "npm:gulp-sourcemaps": { + "type": "npm", + "name": "npm:gulp-sourcemaps", + "data": { + "version": "2.6.5", + "packageName": "gulp-sourcemaps", + "hash": "sha512-SYLBRzPTew8T5Suh2U8jCSDKY+4NARua4aqjj8HOysBh2tSgT9u4jc1FYirAdPx1akUxxDeK++fqw6Jg0LkQRg==" + } + }, + "npm:gulp-util": { + "type": "npm", + "name": "npm:gulp-util", + "data": { + "version": "3.0.8", + "packageName": "gulp-util", + "hash": "sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==" + } + }, + "npm:gulp": { + "type": "npm", + "name": "npm:gulp", + "data": { + "version": "4.0.2", + "packageName": "gulp", + "hash": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==" + } + }, + "npm:gulplog": { + "type": "npm", + "name": "npm:gulplog", + "data": { + "version": "1.0.0", + "packageName": "gulplog", + "hash": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=" + } + }, + "npm:gzip-js": { + "type": "npm", + "name": "npm:gzip-js", + "data": { + "version": "0.3.2", + "packageName": "gzip-js", + "hash": "sha1-IxF+/usozzhSSN7/Df+tiUg22Ws=" + } + }, + "npm:gzip-size": { + "type": "npm", + "name": "npm:gzip-size", + "data": { + "version": "5.1.1", + "packageName": "gzip-size", + "hash": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==" + } + }, + "npm:gzip-size@6.0.0": { + "type": "npm", + "name": "npm:gzip-size@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "gzip-size", + "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" + } + }, + "npm:gzip-size@7.0.0": { + "type": "npm", + "name": "npm:gzip-size@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "gzip-size", + "hash": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==" + } + }, + "npm:halcyon": { + "type": "npm", + "name": "npm:halcyon", + "data": { + "version": "0.19.1", + "packageName": "halcyon", + "hash": "sha1-86aN7DydyKJ8Ot5pbol+GxSfCKc=" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.0", + "packageName": "handle-thing", + "hash": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.7", + "packageName": "handlebars", + "hash": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" + } + }, + "npm:har-schema": { + "type": "npm", + "name": "npm:har-schema", + "data": { + "version": "2.0.0", + "packageName": "har-schema", + "hash": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + } + }, + "npm:har-validator": { + "type": "npm", + "name": "npm:har-validator", + "data": { + "version": "5.1.3", + "packageName": "har-validator", + "hash": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==" + } + }, + "npm:hard-rejection": { + "type": "npm", + "name": "npm:hard-rejection", + "data": { + "version": "2.1.0", + "packageName": "hard-rejection", + "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" + } + }, + "npm:harmony-reflect": { + "type": "npm", + "name": "npm:harmony-reflect", + "data": { + "version": "1.6.2", + "packageName": "harmony-reflect", + "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + } + }, + "npm:has-ansi": { + "type": "npm", + "name": "npm:has-ansi", + "data": { + "version": "2.0.0", + "packageName": "has-ansi", + "hash": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.1", + "packageName": "has-bigints", + "hash": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + } + }, + "npm:has-flag@1.0.0": { + "type": "npm", + "name": "npm:has-flag@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "has-flag", + "hash": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + } + }, + "npm:has-flag@2.0.0": { + "type": "npm", + "name": "npm:has-flag@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "has-flag", + "hash": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + } + }, + "npm:has-flag@4.0.0": { + "type": "npm", + "name": "npm:has-flag@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:has-glob": { + "type": "npm", + "name": "npm:has-glob", + "data": { + "version": "1.0.0", + "packageName": "has-glob", + "hash": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=" + } + }, + "npm:has-gulplog": { + "type": "npm", + "name": "npm:has-gulplog", + "data": { + "version": "0.1.0", + "packageName": "has-gulplog", + "hash": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.2", + "packageName": "has-symbols", + "hash": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:has-unicode": { + "type": "npm", + "name": "npm:has-unicode", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + } + }, + "npm:has-value@0.3.1": { + "type": "npm", + "name": "npm:has-value@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "has-value", + "hash": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=" + } + }, + "npm:has-value": { + "type": "npm", + "name": "npm:has-value", + "data": { + "version": "1.0.0", + "packageName": "has-value", + "hash": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=" + } + }, + "npm:has-values@0.1.4": { + "type": "npm", + "name": "npm:has-values@0.1.4", + "data": { + "version": "0.1.4", + "packageName": "has-values", + "hash": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + } + }, + "npm:has-values": { + "type": "npm", + "name": "npm:has-values", + "data": { + "version": "1.0.0", + "packageName": "has-values", + "hash": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=" + } + }, + "npm:has": { + "type": "npm", + "name": "npm:has", + "data": { + "version": "1.0.3", + "packageName": "has", + "hash": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" + } + }, + "npm:hash-base": { + "type": "npm", + "name": "npm:hash-base", + "data": { + "version": "3.0.4", + "packageName": "hash-base", + "hash": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=" + } + }, + "npm:hash.js": { + "type": "npm", + "name": "npm:hash.js", + "data": { + "version": "1.1.7", + "packageName": "hash.js", + "hash": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==" + } + }, + "npm:hast-to-hyperscript": { + "type": "npm", + "name": "npm:hast-to-hyperscript", + "data": { + "version": "9.0.1", + "packageName": "hast-to-hyperscript", + "hash": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==" + } + }, + "npm:hast-util-from-parse5": { + "type": "npm", + "name": "npm:hast-util-from-parse5", + "data": { + "version": "6.0.1", + "packageName": "hast-util-from-parse5", + "hash": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==" + } + }, + "npm:hast-util-parse-selector": { + "type": "npm", + "name": "npm:hast-util-parse-selector", + "data": { + "version": "2.2.5", + "packageName": "hast-util-parse-selector", + "hash": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" + } + }, + "npm:hast-util-raw": { + "type": "npm", + "name": "npm:hast-util-raw", + "data": { + "version": "6.0.1", + "packageName": "hast-util-raw", + "hash": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==" + } + }, + "npm:hast-util-to-parse5": { + "type": "npm", + "name": "npm:hast-util-to-parse5", + "data": { + "version": "6.0.0", + "packageName": "hast-util-to-parse5", + "hash": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==" + } + }, + "npm:hastscript": { + "type": "npm", + "name": "npm:hastscript", + "data": { + "version": "5.1.0", + "packageName": "hastscript", + "hash": "sha512-7mOQX5VfVs/gmrOGlN8/EDfp1GqV6P3gTNVt+KnX4gbYhpASTM8bklFdFQCbFRAadURXAmw0R1QQdBdqp7jswQ==" + } + }, + "npm:hastscript@6.0.0": { + "type": "npm", + "name": "npm:hastscript@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "hastscript", + "hash": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==" + } + }, + "npm:hasurl": { + "type": "npm", + "name": "npm:hasurl", + "data": { + "version": "1.0.0", + "packageName": "hasurl", + "hash": "sha512-43ypUd3DbwyCT01UYpA99AEZxZ4aKtRxWGBHEIbjcOsUghd9YUON0C+JF6isNjaiwC/UF5neaUudy6JS9jZPZQ==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:header-case": { + "type": "npm", + "name": "npm:header-case", + "data": { + "version": "1.0.1", + "packageName": "header-case", + "hash": "sha1-lTWXMZfBRLCWE81l0xfvGZY70C0=" + } + }, + "npm:highlight.js": { + "type": "npm", + "name": "npm:highlight.js", + "data": { + "version": "9.13.1", + "packageName": "highlight.js", + "hash": "sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A==" + } + }, + "npm:history": { + "type": "npm", + "name": "npm:history", + "data": { + "version": "4.10.1", + "packageName": "history", + "hash": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" + } + }, + "npm:hmac-drbg": { + "type": "npm", + "name": "npm:hmac-drbg", + "data": { + "version": "1.0.1", + "packageName": "hmac-drbg", + "hash": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=" + } + }, + "npm:hoek": { + "type": "npm", + "name": "npm:hoek", + "data": { + "version": "4.2.1", + "packageName": "hoek", + "hash": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==" + } + }, + "npm:hoist-non-react-statics": { + "type": "npm", + "name": "npm:hoist-non-react-statics", + "data": { + "version": "3.3.2", + "packageName": "hoist-non-react-statics", + "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + } + }, + "npm:homedir-polyfill": { + "type": "npm", + "name": "npm:homedir-polyfill", + "data": { + "version": "1.0.3", + "packageName": "homedir-polyfill", + "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" + } + }, + "npm:hosted-git-info@2.8.9": { + "type": "npm", + "name": "npm:hosted-git-info@2.8.9", + "data": { + "version": "2.8.9", + "packageName": "hosted-git-info", + "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + } + }, + "npm:hosted-git-info@3.0.8": { + "type": "npm", + "name": "npm:hosted-git-info@3.0.8", + "data": { + "version": "3.0.8", + "packageName": "hosted-git-info", + "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "4.1.0", + "packageName": "hosted-git-info", + "hash": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" + } + }, + "npm:hosted-git-info@6.1.1": { + "type": "npm", + "name": "npm:hosted-git-info@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "hosted-git-info", + "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" + } + }, + "npm:hosted-git-info@7.0.1": { + "type": "npm", + "name": "npm:hosted-git-info@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "hosted-git-info", + "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=" + } + }, + "npm:html-element-map": { + "type": "npm", + "name": "npm:html-element-map", + "data": { + "version": "1.0.1", + "packageName": "html-element-map", + "hash": "sha512-BZSfdEm6n706/lBfXKWa4frZRZcT5k1cOusw95ijZsHlI+GdgY0v95h6IzO3iIDf2ROwq570YTwqNPqHcNMozw==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.3.2", + "packageName": "html-entities", + "hash": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.0", + "packageName": "html-escaper", + "hash": "sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==" + } + }, + "npm:html-loader": { + "type": "npm", + "name": "npm:html-loader", + "data": { + "version": "1.3.2", + "packageName": "html-loader", + "hash": "sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==" + } + }, + "npm:html-minifier-terser": { + "type": "npm", + "name": "npm:html-minifier-terser", + "data": { + "version": "5.1.1", + "packageName": "html-minifier-terser", + "hash": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==" + } + }, + "npm:html-tags": { + "type": "npm", + "name": "npm:html-tags", + "data": { + "version": "3.1.0", + "packageName": "html-tags", + "hash": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==" + } + }, + "npm:html-to-react": { + "type": "npm", + "name": "npm:html-to-react", + "data": { + "version": "1.4.2", + "packageName": "html-to-react", + "hash": "sha512-TdTfxd95sRCo6QL8admCkE7mvNNrXtGoVr1dyS+7uvc8XCqAymnf/6ckclvnVbQNUo2Nh21VPwtfEHd0khiV7g==" + } + }, + "npm:html-void-elements": { + "type": "npm", + "name": "npm:html-void-elements", + "data": { + "version": "1.0.5", + "packageName": "html-void-elements", + "hash": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" + } + }, + "npm:html-webpack-plugin": { + "type": "npm", + "name": "npm:html-webpack-plugin", + "data": { + "version": "5.1.0", + "packageName": "html-webpack-plugin", + "hash": "sha512-2axkp+2NHmvHUWrKe1dY4LyM3WatQEdFChr42OY7R/Ad7f0AQzaKscGCcqN/FtQBxo8rdfJP7M3RMFDttqok3g==" + } + }, + "npm:html-webpack-plugin@4.5.2": { + "type": "npm", + "name": "npm:html-webpack-plugin@4.5.2", + "data": { + "version": "4.5.2", + "packageName": "html-webpack-plugin", + "hash": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==" + } + }, + "npm:htmlparser2@3.10.1": { + "type": "npm", + "name": "npm:htmlparser2@3.10.1", + "data": { + "version": "3.10.1", + "packageName": "htmlparser2", + "hash": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==" + } + }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "4.1.0", + "packageName": "htmlparser2", + "hash": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==" + } + }, + "npm:htmlparser2@6.1.0": { + "type": "npm", + "name": "npm:htmlparser2@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "htmlparser2", + "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" + } + }, + "npm:http-assert": { + "type": "npm", + "name": "npm:http-assert", + "data": { + "version": "1.5.0", + "packageName": "http-assert", + "hash": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.1.1", + "packageName": "http-cache-semantics", + "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "1.8.1", + "packageName": "http-errors", + "hash": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.3", + "packageName": "http-parser-js", + "hash": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + } + }, + "npm:http-proxy-agent@2.1.0": { + "type": "npm", + "name": "npm:http-proxy-agent@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "http-proxy-agent", + "hash": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==" + } + }, + "npm:http-proxy-agent@4.0.1": { + "type": "npm", + "name": "npm:http-proxy-agent@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "http-proxy-agent", + "hash": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:http-signature@1.2.0": { + "type": "npm", + "name": "npm:http-signature@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "http-signature", + "hash": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=" + } + }, + "npm:http-signature": { + "type": "npm", + "name": "npm:http-signature", + "data": { + "version": "1.3.6", + "packageName": "http-signature", + "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" + } + }, + "npm:http2-wrapper": { + "type": "npm", + "name": "npm:http2-wrapper", + "data": { + "version": "1.0.0-beta.5.2", + "packageName": "http2-wrapper", + "hash": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==" + } + }, + "npm:http2-wrapper@2.1.11": { + "type": "npm", + "name": "npm:http2-wrapper@2.1.11", + "data": { + "version": "2.1.11", + "packageName": "http2-wrapper", + "hash": "sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==" + } + }, + "npm:https-browserify": { + "type": "npm", + "name": "npm:https-browserify", + "data": { + "version": "1.0.0", + "packageName": "https-browserify", + "hash": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + } + }, + "npm:https-proxy-agent@5.0.0": { + "type": "npm", + "name": "npm:https-proxy-agent@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "https-proxy-agent", + "hash": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:https-proxy-agent@2.2.4": { + "type": "npm", + "name": "npm:https-proxy-agent@2.2.4", + "data": { + "version": "2.2.4", + "packageName": "https-proxy-agent", + "hash": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==" + } + }, + "npm:human-signals@1.1.1": { + "type": "npm", + "name": "npm:human-signals@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "human-signals", + "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:humanize-ms": { + "type": "npm", + "name": "npm:humanize-ms", + "data": { + "version": "1.2.1", + "packageName": "humanize-ms", + "hash": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=" + } + }, + "npm:humps": { + "type": "npm", + "name": "npm:humps", + "data": { + "version": "2.0.1", + "packageName": "humps", + "hash": "sha1-3QLqYIG9BWjcXQcxhEY5V7qe+ao=" + } + }, + "npm:hyperlinker": { + "type": "npm", + "name": "npm:hyperlinker", + "data": { + "version": "1.0.0", + "packageName": "hyperlinker", + "hash": "sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==" + } + }, + "npm:hyphenate-style-name": { + "type": "npm", + "name": "npm:hyphenate-style-name", + "data": { + "version": "1.0.3", + "packageName": "hyphenate-style-name", + "hash": "sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==" + } + }, + "npm:iconv-lite@0.4.24": { + "type": "npm", + "name": "npm:iconv-lite@0.4.24", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:icss-replace-symbols": { + "type": "npm", + "name": "npm:icss-replace-symbols", + "data": { + "version": "1.1.0", + "packageName": "icss-replace-symbols", + "hash": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "4.1.1", + "packageName": "icss-utils", + "hash": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==" + } + }, + "npm:icss-utils@5.1.0": { + "type": "npm", + "name": "npm:icss-utils@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:identity-obj-proxy": { + "type": "npm", + "name": "npm:identity-obj-proxy", + "data": { + "version": "3.0.0", + "packageName": "identity-obj-proxy", + "hash": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:iferr": { + "type": "npm", + "name": "npm:iferr", + "data": { + "version": "0.1.5", + "packageName": "iferr", + "hash": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + } + }, + "npm:ignore-loader": { + "type": "npm", + "name": "npm:ignore-loader", + "data": { + "version": "0.1.2", + "packageName": "ignore-loader", + "hash": "sha512-yOJQEKrNwoYqrWLS4DcnzM7SEQhRKis5mB+LdKKh4cPmGYlLPR0ozRzHV5jmEk2IxptqJNQA5Cc0gw8Fj12bXA==" + } + }, + "npm:ignore-not-found-export-webpack-plugin": { + "type": "npm", + "name": "npm:ignore-not-found-export-webpack-plugin", + "data": { + "version": "1.0.2", + "packageName": "ignore-not-found-export-webpack-plugin", + "hash": "sha512-CeMqul+L7fEEc59NpQhzr5sh/LRjbMW4cYmMUJWdCm3dYyWF8Big6qea0YSBHQvajKfrnKTcARmwzd9rTp+50w==" + } + }, + "npm:ignore-walk@3.0.3": { + "type": "npm", + "name": "npm:ignore-walk@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "ignore-walk", + "hash": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "5.0.1", + "packageName": "ignore-walk", + "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" + } + }, + "npm:ignore-walk@6.0.3": { + "type": "npm", + "name": "npm:ignore-walk@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "ignore-walk", + "hash": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==" + } + }, + "npm:ignore@4.0.6": { + "type": "npm", + "name": "npm:ignore@4.0.6", + "data": { + "version": "4.0.6", + "packageName": "ignore", + "hash": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.2.4", + "packageName": "ignore", + "hash": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + } + }, + "npm:immediate": { + "type": "npm", + "name": "npm:immediate", + "data": { + "version": "3.0.6", + "packageName": "immediate", + "hash": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" + } + }, + "npm:immer": { + "type": "npm", + "name": "npm:immer", + "data": { + "version": "9.0.12", + "packageName": "immer", + "hash": "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "4.0.0", + "packageName": "immutable", + "hash": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==" + } + }, + "npm:import-fresh@2.0.0": { + "type": "npm", + "name": "npm:import-fresh@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "import-fresh", + "hash": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.2.1", + "packageName": "import-fresh", + "hash": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==" + } + }, + "npm:import-lazy@2.1.0": { + "type": "npm", + "name": "npm:import-lazy@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "import-lazy", + "hash": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + } + }, + "npm:import-lazy": { + "type": "npm", + "name": "npm:import-lazy", + "data": { + "version": "4.0.0", + "packageName": "import-lazy", + "hash": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:imports-loader": { + "type": "npm", + "name": "npm:imports-loader", + "data": { + "version": "1.2.0", + "packageName": "imports-loader", + "hash": "sha512-zPvangKEgrrPeqeUqH0Uhc59YqK07JqZBi9a9cQ3v/EKUIqrbJHY4CvUrDus2lgQa5AmPyXuGrWP8JJTqzE5RQ==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + } + }, + "npm:indent-string@2.1.0": { + "type": "npm", + "name": "npm:indent-string@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "indent-string", + "hash": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:indent-string@5.0.0": { + "type": "npm", + "name": "npm:indent-string@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "indent-string", + "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" + } + }, + "npm:infer-owner": { + "type": "npm", + "name": "npm:infer-owner", + "data": { + "version": "1.0.4", + "packageName": "infer-owner", + "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + } + }, + "npm:inflation": { + "type": "npm", + "name": "npm:inflation", + "data": { + "version": "2.0.0", + "packageName": "inflation", + "hash": "sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:inherits@2.0.1": { + "type": "npm", + "name": "npm:inherits@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "inherits", + "hash": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + }, + "npm:ini@2.0.0": { + "type": "npm", + "name": "npm:ini@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ini", + "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:init-package-json": { + "type": "npm", + "name": "npm:init-package-json", + "data": { + "version": "5.0.0", + "packageName": "init-package-json", + "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" + } + }, + "npm:inline-style-expand-shorthand": { + "type": "npm", + "name": "npm:inline-style-expand-shorthand", + "data": { + "version": "1.2.0", + "packageName": "inline-style-expand-shorthand", + "hash": "sha512-YdteDMlG1StHeEXF7opaVfPMCIVO8B4TPjE6kZLwdhZdgjH3Q7lxwSe+89sMhdPN77F3quOYhBbqBE0+KXuHpA==" + } + }, + "npm:inline-style-parser": { + "type": "npm", + "name": "npm:inline-style-parser", + "data": { + "version": "0.1.1", + "packageName": "inline-style-parser", + "hash": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "7.3.3", + "packageName": "inquirer", + "hash": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==" + } + }, + "npm:inquirer@8.2.4": { + "type": "npm", + "name": "npm:inquirer@8.2.4", + "data": { + "version": "8.2.4", + "packageName": "inquirer", + "hash": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.3", + "packageName": "internal-slot", + "hash": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" + } + }, + "npm:internmap": { + "type": "npm", + "name": "npm:internmap", + "data": { + "version": "1.0.1", + "packageName": "internmap", + "hash": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" + } + }, + "npm:interpret": { + "type": "npm", + "name": "npm:interpret", + "data": { + "version": "1.2.0", + "packageName": "interpret", + "hash": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==" + } + }, + "npm:interpret@2.2.0": { + "type": "npm", + "name": "npm:interpret@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "interpret", + "hash": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==" + } + }, + "npm:invariant": { + "type": "npm", + "name": "npm:invariant", + "data": { + "version": "2.2.4", + "packageName": "invariant", + "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" + } + }, + "npm:invert-kv": { + "type": "npm", + "name": "npm:invert-kv", + "data": { + "version": "1.0.0", + "packageName": "invert-kv", + "hash": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + } + }, + "npm:iobuffer": { + "type": "npm", + "name": "npm:iobuffer", + "data": { + "version": "5.2.1", + "packageName": "iobuffer", + "hash": "sha512-VcilIyf5iaeEEPwCdhDsVMpZuWJ94j9KYI1hQQz1z7k/m+WygYvOGc6s51sg5R4qzN2EfDGEIW9EUbTU0iJIXw==" + } + }, + "npm:ip@1.1.5": { + "type": "npm", + "name": "npm:ip@1.1.5", + "data": { + "version": "1.1.5", + "packageName": "ip", + "hash": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "2.0.0", + "packageName": "ip", + "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + } + }, + "npm:ipaddr.js@1.9.1": { + "type": "npm", + "name": "npm:ipaddr.js@1.9.1", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "2.0.1", + "packageName": "ipaddr.js", + "hash": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" + } + }, + "npm:is-absolute-url": { + "type": "npm", + "name": "npm:is-absolute-url", + "data": { + "version": "3.0.3", + "packageName": "is-absolute-url", + "hash": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + } + }, + "npm:is-absolute": { + "type": "npm", + "name": "npm:is-absolute", + "data": { + "version": "1.0.0", + "packageName": "is-absolute", + "hash": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==" + } + }, + "npm:is-accessor-descriptor@0.1.6": { + "type": "npm", + "name": "npm:is-accessor-descriptor@0.1.6", + "data": { + "version": "0.1.6", + "packageName": "is-accessor-descriptor", + "hash": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=" + } + }, + "npm:is-accessor-descriptor": { + "type": "npm", + "name": "npm:is-accessor-descriptor", + "data": { + "version": "1.0.0", + "packageName": "is-accessor-descriptor", + "hash": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" + } + }, + "npm:is-alphabetical": { + "type": "npm", + "name": "npm:is-alphabetical", + "data": { + "version": "1.0.4", + "packageName": "is-alphabetical", + "hash": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" + } + }, + "npm:is-alphanumerical": { + "type": "npm", + "name": "npm:is-alphanumerical", + "data": { + "version": "1.0.3", + "packageName": "is-alphanumerical", + "hash": "sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA==" + } + }, + "npm:is-arguments": { + "type": "npm", + "name": "npm:is-arguments", + "data": { + "version": "1.0.4", + "packageName": "is-arguments", + "hash": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + } + }, + "npm:is-arrayish@0.3.2": { + "type": "npm", + "name": "npm:is-arrayish@0.3.2", + "data": { + "version": "0.3.2", + "packageName": "is-arrayish", + "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.2", + "packageName": "is-bigint", + "hash": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" + } + }, + "npm:is-binary-path@1.0.1": { + "type": "npm", + "name": "npm:is-binary-path@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-binary-path", + "hash": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.1", + "packageName": "is-boolean-object", + "hash": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "1.1.6", + "packageName": "is-buffer", + "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + } + }, + "npm:is-buffer@2.0.4": { + "type": "npm", + "name": "npm:is-buffer@2.0.4", + "data": { + "version": "2.0.4", + "packageName": "is-buffer", + "hash": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.4", + "packageName": "is-callable", + "hash": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" + } + }, + "npm:is-ci": { + "type": "npm", + "name": "npm:is-ci", + "data": { + "version": "3.0.1", + "packageName": "is-ci", + "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" + } + }, + "npm:is-ci@1.2.1": { + "type": "npm", + "name": "npm:is-ci@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "is-ci", + "hash": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==" + } + }, + "npm:is-ci@2.0.0": { + "type": "npm", + "name": "npm:is-ci@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-ci", + "hash": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.12.1", + "packageName": "is-core-module", + "hash": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==" + } + }, + "npm:is-data-descriptor@0.1.4": { + "type": "npm", + "name": "npm:is-data-descriptor@0.1.4", + "data": { + "version": "0.1.4", + "packageName": "is-data-descriptor", + "hash": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=" + } + }, + "npm:is-data-descriptor": { + "type": "npm", + "name": "npm:is-data-descriptor", + "data": { + "version": "1.0.0", + "packageName": "is-data-descriptor", + "hash": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.1", + "packageName": "is-date-object", + "hash": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" + } + }, + "npm:is-decimal": { + "type": "npm", + "name": "npm:is-decimal", + "data": { + "version": "1.0.3", + "packageName": "is-decimal", + "hash": "sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ==" + } + }, + "npm:is-descriptor@0.1.6": { + "type": "npm", + "name": "npm:is-descriptor@0.1.6", + "data": { + "version": "0.1.6", + "packageName": "is-descriptor", + "hash": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==" + } + }, + "npm:is-descriptor": { + "type": "npm", + "name": "npm:is-descriptor", + "data": { + "version": "1.0.2", + "packageName": "is-descriptor", + "hash": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" + } + }, + "npm:is-directory": { + "type": "npm", + "name": "npm:is-directory", + "data": { + "version": "0.3.1", + "packageName": "is-directory", + "hash": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-dom": { + "type": "npm", + "name": "npm:is-dom", + "data": { + "version": "1.1.0", + "packageName": "is-dom", + "hash": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==" + } + }, + "npm:is-extendable": { + "type": "npm", + "name": "npm:is-extendable", + "data": { + "version": "0.1.1", + "packageName": "is-extendable", + "hash": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + }, + "npm:is-extendable@1.0.1": { + "type": "npm", + "name": "npm:is-extendable@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-extendable", + "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + } + }, + "npm:is-finite": { + "type": "npm", + "name": "npm:is-finite", + "data": { + "version": "1.0.2", + "packageName": "is-finite", + "hash": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=" + } + }, + "npm:is-fullwidth-code-point@1.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=" + } + }, + "npm:is-fullwidth-code-point@2.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-function": { + "type": "npm", + "name": "npm:is-function", + "data": { + "version": "1.0.2", + "packageName": "is-function", + "hash": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:is-generator-function": { + "type": "npm", + "name": "npm:is-generator-function", + "data": { + "version": "1.0.8", + "packageName": "is-generator-function", + "hash": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==" + } + }, + "npm:is-glob@3.1.0": { + "type": "npm", + "name": "npm:is-glob@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "is-glob", + "hash": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-hexadecimal": { + "type": "npm", + "name": "npm:is-hexadecimal", + "data": { + "version": "1.0.3", + "packageName": "is-hexadecimal", + "hash": "sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA==" + } + }, + "npm:is-installed-globally@0.1.0": { + "type": "npm", + "name": "npm:is-installed-globally@0.1.0", + "data": { + "version": "0.1.0", + "packageName": "is-installed-globally", + "hash": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=" + } + }, + "npm:is-installed-globally": { + "type": "npm", + "name": "npm:is-installed-globally", + "data": { + "version": "0.4.0", + "packageName": "is-installed-globally", + "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-lambda": { + "type": "npm", + "name": "npm:is-lambda", + "data": { + "version": "1.0.1", + "packageName": "is-lambda", + "hash": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" + } + }, + "npm:is-lower-case": { + "type": "npm", + "name": "npm:is-lower-case", + "data": { + "version": "1.1.3", + "packageName": "is-lower-case", + "hash": "sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=" + } + }, + "npm:is-module": { + "type": "npm", + "name": "npm:is-module", + "data": { + "version": "1.0.0", + "packageName": "is-module", + "hash": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + } + }, + "npm:is-nan": { + "type": "npm", + "name": "npm:is-nan", + "data": { + "version": "1.3.2", + "packageName": "is-nan", + "hash": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==" + } + }, + "npm:is-negated-glob": { + "type": "npm", + "name": "npm:is-negated-glob", + "data": { + "version": "1.0.0", + "packageName": "is-negated-glob", + "hash": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.1", + "packageName": "is-negative-zero", + "hash": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + } + }, + "npm:is-npm": { + "type": "npm", + "name": "npm:is-npm", + "data": { + "version": "1.0.0", + "packageName": "is-npm", + "hash": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.5", + "packageName": "is-number-object", + "hash": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "3.0.0", + "packageName": "is-number", + "hash": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=" + } + }, + "npm:is-number@4.0.0": { + "type": "npm", + "name": "npm:is-number@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-number", + "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + } + }, + "npm:is-number@7.0.0": { + "type": "npm", + "name": "npm:is-number@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "1.0.1", + "packageName": "is-obj", + "hash": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + } + }, + "npm:is-obj@2.0.0": { + "type": "npm", + "name": "npm:is-obj@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:is-object": { + "type": "npm", + "name": "npm:is-object", + "data": { + "version": "1.0.1", + "packageName": "is-object", + "hash": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=" + } + }, + "npm:is-path-cwd": { + "type": "npm", + "name": "npm:is-path-cwd", + "data": { + "version": "2.2.0", + "packageName": "is-path-cwd", + "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + } + }, + "npm:is-path-cwd@3.0.0": { + "type": "npm", + "name": "npm:is-path-cwd@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-path-cwd", + "hash": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==" + } + }, + "npm:is-path-in-cwd": { + "type": "npm", + "name": "npm:is-path-in-cwd", + "data": { + "version": "2.1.0", + "packageName": "is-path-in-cwd", + "hash": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" + } + }, + "npm:is-path-inside@1.0.1": { + "type": "npm", + "name": "npm:is-path-inside@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-path-inside", + "hash": "sha1-jvW33lBDej/cprToZe96pVy0gDY=" + } + }, + "npm:is-path-inside@2.1.0": { + "type": "npm", + "name": "npm:is-path-inside@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "is-path-inside", + "hash": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.2", + "packageName": "is-path-inside", + "hash": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==" + } + }, + "npm:is-path-inside@4.0.0": { + "type": "npm", + "name": "npm:is-path-inside@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-path-inside", + "hash": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + } + }, + "npm:is-plain-obj@2.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-object@5.0.0": { + "type": "npm", + "name": "npm:is-plain-object@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "is-plain-object", + "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:is-potential-custom-element-name": { + "type": "npm", + "name": "npm:is-potential-custom-element-name", + "data": { + "version": "1.0.1", + "packageName": "is-potential-custom-element-name", + "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + } + }, + "npm:is-promise": { + "type": "npm", + "name": "npm:is-promise", + "data": { + "version": "2.1.0", + "packageName": "is-promise", + "hash": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + } + }, + "npm:is-redirect": { + "type": "npm", + "name": "npm:is-redirect", + "data": { + "version": "1.0.0", + "packageName": "is-redirect", + "hash": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" + } + }, + "npm:is-reference": { + "type": "npm", + "name": "npm:is-reference", + "data": { + "version": "1.2.1", + "packageName": "is-reference", + "hash": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:is-regexp": { + "type": "npm", + "name": "npm:is-regexp", + "data": { + "version": "1.0.0", + "packageName": "is-regexp", + "hash": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + } + }, + "npm:is-relative": { + "type": "npm", + "name": "npm:is-relative", + "data": { + "version": "1.0.0", + "packageName": "is-relative", + "hash": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==" + } + }, + "npm:is-retry-allowed": { + "type": "npm", + "name": "npm:is-retry-allowed", + "data": { + "version": "1.2.0", + "packageName": "is-retry-allowed", + "hash": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.1", + "packageName": "is-shared-array-buffer", + "hash": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==" + } + }, + "npm:is-ssh": { + "type": "npm", + "name": "npm:is-ssh", + "data": { + "version": "1.4.0", + "packageName": "is-ssh", + "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.0", + "packageName": "is-stream", + "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + } + }, + "npm:is-stream@1.1.0": { + "type": "npm", + "name": "npm:is-stream@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-stream", + "hash": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-subset": { + "type": "npm", + "name": "npm:is-subset", + "data": { + "version": "0.1.1", + "packageName": "is-subset", + "hash": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.3", + "packageName": "is-symbol", + "hash": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==" + } + }, + "npm:is-text-path": { + "type": "npm", + "name": "npm:is-text-path", + "data": { + "version": "1.0.1", + "packageName": "is-text-path", + "hash": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.4", + "packageName": "is-typed-array", + "hash": "sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==" + } + }, + "npm:is-typedarray": { + "type": "npm", + "name": "npm:is-typedarray", + "data": { + "version": "1.0.0", + "packageName": "is-typedarray", + "hash": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + } + }, + "npm:is-unc-path": { + "type": "npm", + "name": "npm:is-unc-path", + "data": { + "version": "1.0.0", + "packageName": "is-unc-path", + "hash": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-upper-case": { + "type": "npm", + "name": "npm:is-upper-case", + "data": { + "version": "1.1.2", + "packageName": "is-upper-case", + "hash": "sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=" + } + }, + "npm:is-utf8": { + "type": "npm", + "name": "npm:is-utf8", + "data": { + "version": "0.2.1", + "packageName": "is-utf8", + "hash": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + } + }, + "npm:is-valid-glob": { + "type": "npm", + "name": "npm:is-valid-glob", + "data": { + "version": "1.0.0", + "packageName": "is-valid-glob", + "hash": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.1", + "packageName": "is-weakref", + "hash": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==" + } + }, + "npm:is-whitespace-character": { + "type": "npm", + "name": "npm:is-whitespace-character", + "data": { + "version": "1.0.4", + "packageName": "is-whitespace-character", + "hash": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" + } + }, + "npm:is-window": { + "type": "npm", + "name": "npm:is-window", + "data": { + "version": "1.0.2", + "packageName": "is-window", + "hash": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=" + } + }, + "npm:is-windows": { + "type": "npm", + "name": "npm:is-windows", + "data": { + "version": "1.0.2", + "packageName": "is-windows", + "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + } + }, + "npm:is-word-character": { + "type": "npm", + "name": "npm:is-word-character", + "data": { + "version": "1.0.4", + "packageName": "is-word-character", + "hash": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" + } + }, + "npm:is-wsl@1.1.0": { + "type": "npm", + "name": "npm:is-wsl@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-wsl", + "hash": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "0.0.1", + "packageName": "isarray", + "hash": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + } + }, + "npm:isarray@1.0.0": { + "type": "npm", + "name": "npm:isarray@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + } + }, + "npm:isbinaryfile": { + "type": "npm", + "name": "npm:isbinaryfile", + "data": { + "version": "4.0.8", + "packageName": "isbinaryfile", + "hash": "sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + } + }, + "npm:isobject@2.1.0": { + "type": "npm", + "name": "npm:isobject@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "isobject", + "hash": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + }, + "npm:isobject@4.0.0": { + "type": "npm", + "name": "npm:isobject@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "isobject", + "hash": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==" + } + }, + "npm:isomorphic-unfetch": { + "type": "npm", + "name": "npm:isomorphic-unfetch", + "data": { + "version": "2.1.1", + "packageName": "isomorphic-unfetch", + "hash": "sha512-nd8AULy4i2rA8dv0nOBT9xieIegd3xi7NDxTQ9+iNXDTyaG6VbUYW3F+TdMRqxqXhDFWM2k7fttKx9W2Wd8JpQ==" + } + }, + "npm:isomorphic-unfetch@3.1.0": { + "type": "npm", + "name": "npm:isomorphic-unfetch@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "isomorphic-unfetch", + "hash": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==" + } + }, + "npm:isstream": { + "type": "npm", + "name": "npm:isstream", + "data": { + "version": "0.1.2", + "packageName": "isstream", + "hash": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + } + }, + "npm:istanbul-instrumenter-loader": { + "type": "npm", + "name": "npm:istanbul-instrumenter-loader", + "data": { + "version": "3.0.1", + "packageName": "istanbul-instrumenter-loader", + "hash": "sha512-a5SPObZgS0jB/ixaKSMdn6n/gXSrK2S6q/UfRJBT3e6gQmVjwZROTODQsYW5ZNwOu78hG62Y3fWlebaVOL0C+w==" + } + }, + "npm:istanbul-lib-coverage@1.2.1": { + "type": "npm", + "name": "npm:istanbul-lib-coverage@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==" + } + }, + "npm:istanbul-lib-coverage@2.0.5": { + "type": "npm", + "name": "npm:istanbul-lib-coverage@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.0", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + } + }, + "npm:istanbul-lib-instrument@1.10.2": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@1.10.2", + "data": { + "version": "1.10.2", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "5.2.0", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==" + } + }, + "npm:istanbul-lib-instrument@6.0.0": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.0", + "packageName": "istanbul-lib-report", + "hash": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==" + } + }, + "npm:istanbul-lib-source-maps@3.0.6": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps@3.0.6", + "data": { + "version": "3.0.6", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.5", + "packageName": "istanbul-reports", + "hash": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==" + } + }, + "npm:istanbul": { + "type": "npm", + "name": "npm:istanbul", + "data": { + "version": "0.4.5", + "packageName": "istanbul", + "hash": "sha512-nMtdn4hvK0HjUlzr1DrKSUY8ychprt8dzHOgY2KXsIhHu5PuQQEOTM27gV9Xblyon7aUH/TSFIjRHEODF/FRPg==" + } + }, + "npm:istextorbinary": { + "type": "npm", + "name": "npm:istextorbinary", + "data": { + "version": "2.6.0", + "packageName": "istextorbinary", + "hash": "sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "2.2.2", + "packageName": "jackspeak", + "hash": "sha512-mgNtVv4vUuaKA97yxUHoA3+FkuhtxkjdXEWOyB/N76fjy0FjezEt34oy3epBtvCvS+7DyKwqCFWx/oJLV5+kCg==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.5", + "packageName": "jake", + "hash": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==" + } + }, + "npm:jest-axe": { + "type": "npm", + "name": "npm:jest-axe", + "data": { + "version": "6.0.1", + "packageName": "jest-axe", + "hash": "sha512-+KcRAdZeKXBbtHTmMkokRq5/hXHaVFpX+WS2o3uvhkmF3szdr4+TYAz+QuOTeM0B1d4YPoNmQWhGzSzxHJNZrA==" + } + }, + "npm:jest-canvas-mock": { + "type": "npm", + "name": "npm:jest-canvas-mock", + "data": { + "version": "2.4.0", + "packageName": "jest-canvas-mock", + "hash": "sha512-mmMpZzpmLzn5vepIaHk5HoH3Ka4WykbSoLuG/EKoJd0x0ID/t+INo1l8ByfcUJuDM+RIsL4QDg/gDnBbrj2/IQ==" + } + }, + "npm:jest-changed-files": { + "type": "npm", + "name": "npm:jest-changed-files", + "data": { + "version": "29.7.0", + "packageName": "jest-changed-files", + "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" + } + }, + "npm:jest-circus": { + "type": "npm", + "name": "npm:jest-circus", + "data": { + "version": "29.7.0", + "packageName": "jest-circus", + "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" + } + }, + "npm:jest-cli": { + "type": "npm", + "name": "npm:jest-cli", + "data": { + "version": "29.7.0", + "packageName": "jest-cli", + "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" + } + }, + "npm:jest-config": { + "type": "npm", + "name": "npm:jest-config", + "data": { + "version": "29.7.0", + "packageName": "jest-config", + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "29.7.0", + "packageName": "jest-diff", + "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" + } + }, + "npm:jest-diff@27.5.1": { + "type": "npm", + "name": "npm:jest-diff@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-diff", + "hash": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==" + } + }, + "npm:jest-docblock": { + "type": "npm", + "name": "npm:jest-docblock", + "data": { + "version": "29.7.0", + "packageName": "jest-docblock", + "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" + } + }, + "npm:jest-each": { + "type": "npm", + "name": "npm:jest-each", + "data": { + "version": "29.7.0", + "packageName": "jest-each", + "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" + } + }, + "npm:jest-environment-jsdom": { + "type": "npm", + "name": "npm:jest-environment-jsdom", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-jsdom", + "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" + } + }, + "npm:jest-environment-node-single-context": { + "type": "npm", + "name": "npm:jest-environment-node-single-context", + "data": { + "version": "29.1.0", + "packageName": "jest-environment-node-single-context", + "hash": "sha512-sMQSq/b4aK9f0V1atn/ZfBgdrEQZzoZo95UzUTXaS/GtiCx9e62IFP4gX0GR+IGDu1k7UuqB/Xot46vJoOsoyg==" + } + }, + "npm:jest-environment-node": { + "type": "npm", + "name": "npm:jest-environment-node", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-node", + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" + } + }, + "npm:jest-get-type@27.5.1": { + "type": "npm", + "name": "npm:jest-get-type@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-get-type", + "hash": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" + } + }, + "npm:jest-get-type": { + "type": "npm", + "name": "npm:jest-get-type", + "data": { + "version": "29.6.3", + "packageName": "jest-get-type", + "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" + } + }, + "npm:jest-haste-map@26.6.2": { + "type": "npm", + "name": "npm:jest-haste-map@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "jest-haste-map", + "hash": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==" + } + }, + "npm:jest-haste-map": { + "type": "npm", + "name": "npm:jest-haste-map", + "data": { + "version": "29.7.0", + "packageName": "jest-haste-map", + "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" + } + }, + "npm:jest-leak-detector": { + "type": "npm", + "name": "npm:jest-leak-detector", + "data": { + "version": "29.7.0", + "packageName": "jest-leak-detector", + "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" + } + }, + "npm:jest-matcher-utils@27.0.2": { + "type": "npm", + "name": "npm:jest-matcher-utils@27.0.2", + "data": { + "version": "27.0.2", + "packageName": "jest-matcher-utils", + "hash": "sha512-Qczi5xnTNjkhcIB0Yy75Txt+Ez51xdhOxsukN7awzq2auZQGPHcQrJ623PZj0ECDEMOk2soxWx05EXdXGd1CbA==" + } + }, + "npm:jest-matcher-utils": { + "type": "npm", + "name": "npm:jest-matcher-utils", + "data": { + "version": "29.7.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" + } + }, + "npm:jest-message-util": { + "type": "npm", + "name": "npm:jest-message-util", + "data": { + "version": "29.7.0", + "packageName": "jest-message-util", + "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" + } + }, + "npm:jest-mock": { + "type": "npm", + "name": "npm:jest-mock", + "data": { + "version": "29.7.0", + "packageName": "jest-mock", + "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.2", + "packageName": "jest-pnp-resolver", + "hash": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" + } + }, + "npm:jest-regex-util@26.0.0": { + "type": "npm", + "name": "npm:jest-regex-util@26.0.0", + "data": { + "version": "26.0.0", + "packageName": "jest-regex-util", + "hash": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" + } + }, + "npm:jest-regex-util": { + "type": "npm", + "name": "npm:jest-regex-util", + "data": { + "version": "29.6.3", + "packageName": "jest-regex-util", + "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" + } + }, + "npm:jest-resolve-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve", + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" + } + }, + "npm:jest-runner": { + "type": "npm", + "name": "npm:jest-runner", + "data": { + "version": "29.7.0", + "packageName": "jest-runner", + "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" + } + }, + "npm:jest-runtime": { + "type": "npm", + "name": "npm:jest-runtime", + "data": { + "version": "29.7.0", + "packageName": "jest-runtime", + "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" + } + }, + "npm:jest-serializer": { + "type": "npm", + "name": "npm:jest-serializer", + "data": { + "version": "26.6.2", + "packageName": "jest-serializer", + "hash": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==" + } + }, + "npm:jest-snapshot": { + "type": "npm", + "name": "npm:jest-snapshot", + "data": { + "version": "29.7.0", + "packageName": "jest-snapshot", + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" + } + }, + "npm:jest-util@26.6.2": { + "type": "npm", + "name": "npm:jest-util@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "jest-util", + "hash": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==" + } + }, + "npm:jest-util": { + "type": "npm", + "name": "npm:jest-util", + "data": { + "version": "29.7.0", + "packageName": "jest-util", + "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" + } + }, + "npm:jest-validate": { + "type": "npm", + "name": "npm:jest-validate", + "data": { + "version": "29.7.0", + "packageName": "jest-validate", + "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" + } + }, + "npm:jest-watch-typeahead": { + "type": "npm", + "name": "npm:jest-watch-typeahead", + "data": { + "version": "2.2.2", + "packageName": "jest-watch-typeahead", + "hash": "sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==" + } + }, + "npm:jest-watcher": { + "type": "npm", + "name": "npm:jest-watcher", + "data": { + "version": "29.7.0", + "packageName": "jest-watcher", + "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" + } + }, + "npm:jest-worker@24.9.0": { + "type": "npm", + "name": "npm:jest-worker@24.9.0", + "data": { + "version": "24.9.0", + "packageName": "jest-worker", + "hash": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==" + } + }, + "npm:jest-worker@26.6.2": { + "type": "npm", + "name": "npm:jest-worker@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "jest-worker", + "hash": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.7.0", + "packageName": "jest-worker", + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.7.0", + "packageName": "jest", + "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=" + } + }, + "npm:jpeg-js": { + "type": "npm", + "name": "npm:jpeg-js", + "data": { + "version": "0.4.4", + "packageName": "jpeg-js", + "hash": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" + } + }, + "npm:js-message": { + "type": "npm", + "name": "npm:js-message", + "data": { + "version": "1.0.5", + "packageName": "js-message", + "hash": "sha1-IwDSSxrwjondCVvBpMnJz8uJLRU=" + } + }, + "npm:js-queue": { + "type": "npm", + "name": "npm:js-queue", + "data": { + "version": "2.0.0", + "packageName": "js-queue", + "hash": "sha1-NiITz4YPRo8BJfxslqvBdCUx+Ug=" + } + }, + "npm:js-string-escape": { + "type": "npm", + "name": "npm:js-string-escape", + "data": { + "version": "1.0.1", + "packageName": "js-string-escape", + "hash": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:js-tokens@3.0.2": { + "type": "npm", + "name": "npm:js-tokens@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "js-tokens", + "hash": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "3.13.1", + "packageName": "js-yaml", + "hash": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==" + } + }, + "npm:js-yaml@4.1.0": { + "type": "npm", + "name": "npm:js-yaml@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:jsbn": { + "type": "npm", + "name": "npm:jsbn", + "data": { + "version": "0.1.1", + "packageName": "jsbn", + "hash": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + } + }, + "npm:jsdoc-type-pratt-parser": { + "type": "npm", + "name": "npm:jsdoc-type-pratt-parser", + "data": { + "version": "3.1.0", + "packageName": "jsdoc-type-pratt-parser", + "hash": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==" + } + }, + "npm:jsdom-global": { + "type": "npm", + "name": "npm:jsdom-global", + "data": { + "version": "3.0.2", + "packageName": "jsdom-global", + "hash": "sha1-a9KZwTsMRiay2iwDk81DhdYGrLk=" + } + }, + "npm:jsdom": { + "type": "npm", + "name": "npm:jsdom", + "data": { + "version": "20.0.3", + "packageName": "jsdom", + "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" + } + }, + "npm:jsesc@1.3.0": { + "type": "npm", + "name": "npm:jsesc@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "jsesc", + "hash": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:jsesc@0.5.0": { + "type": "npm", + "name": "npm:jsesc@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:json-edm-parser": { + "type": "npm", + "name": "npm:json-edm-parser", + "data": { + "version": "0.1.2", + "packageName": "json-edm-parser", + "hash": "sha512-J1U9mk6lf8dPULcaMwALXB6yel3cJyyhk9Z8FQ4sMwiazNwjaUhegIcpZyZFNMvLRtnXwh+TkCjX9uYUObBBYA==" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors@3.0.0": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==" + } + }, + "npm:json-schema-traverse@0.3.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "json-schema-traverse", + "hash": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" + } + }, + "npm:json-schema-traverse@0.4.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-schema@0.2.3": { + "type": "npm", + "name": "npm:json-schema@0.2.3", + "data": { + "version": "0.2.3", + "packageName": "json-schema", + "hash": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + } + }, + "npm:json-stable-stringify": { + "type": "npm", + "name": "npm:json-stable-stringify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify", + "hash": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=" + } + }, + "npm:json-stringify-safe": { + "type": "npm", + "name": "npm:json-stringify-safe", + "data": { + "version": "5.0.1", + "packageName": "json-stringify-safe", + "hash": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + } + }, + "npm:json5@0.5.1": { + "type": "npm", + "name": "npm:json5@0.5.1", + "data": { + "version": "0.5.1", + "packageName": "json5", + "hash": "sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==" + } + }, + "npm:json5@1.0.2": { + "type": "npm", + "name": "npm:json5@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json5", + "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:jsonc-eslint-parser": { + "type": "npm", + "name": "npm:jsonc-eslint-parser", + "data": { + "version": "2.3.0", + "packageName": "jsonc-eslint-parser", + "hash": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:jsonfile@2.4.0": { + "type": "npm", + "name": "npm:jsonfile@2.4.0", + "data": { + "version": "2.4.0", + "packageName": "jsonfile", + "hash": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "4.0.0", + "packageName": "jsonfile", + "hash": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" + } + }, + "npm:jsonfile@6.0.1": { + "type": "npm", + "name": "npm:jsonfile@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "jsonfile", + "hash": "sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==" + } + }, + "npm:jsonify": { + "type": "npm", + "name": "npm:jsonify", + "data": { + "version": "0.0.0", + "packageName": "jsonify", + "hash": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" + } + }, + "npm:jsonparse@1.2.0": { + "type": "npm", + "name": "npm:jsonparse@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "jsonparse", + "hash": "sha512-LkDEYtKnPFI9hQ/IURETe6F1dUH80cbRkaF6RaViSwoSNPwaxQpi6TgJGvJKyLQ2/9pQW+XCxK3hBoR44RAjkg==" + } + }, + "npm:jsonpointer": { + "type": "npm", + "name": "npm:jsonpointer", + "data": { + "version": "5.0.0", + "packageName": "jsonpointer", + "hash": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==" + } + }, + "npm:jsonschema": { + "type": "npm", + "name": "npm:jsonschema", + "data": { + "version": "1.4.1", + "packageName": "jsonschema", + "hash": "sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==" + } + }, + "npm:jsonwebtoken": { + "type": "npm", + "name": "npm:jsonwebtoken", + "data": { + "version": "8.5.1", + "packageName": "jsonwebtoken", + "hash": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==" + } + }, + "npm:jsprim@1.4.1": { + "type": "npm", + "name": "npm:jsprim@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "jsprim", + "hash": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=" + } + }, + "npm:jsprim": { + "type": "npm", + "name": "npm:jsprim", + "data": { + "version": "2.0.2", + "packageName": "jsprim", + "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" + } + }, + "npm:jstat": { + "type": "npm", + "name": "npm:jstat", + "data": { + "version": "1.9.5", + "packageName": "jstat", + "hash": "sha512-cWnp4vObF5GmB2XsIEzxI/1ZTcYlcfNqxQ/9Fp5KFUa0Jf/4tO0ZkGVnqoEHDisJvYgvn5n3eWZbd2xTVJJPUQ==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.2.0", + "packageName": "jsx-ast-utils", + "hash": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==" + } + }, + "npm:jszip": { + "type": "npm", + "name": "npm:jszip", + "data": { + "version": "3.10.1", + "packageName": "jszip", + "hash": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==" + } + }, + "npm:junk": { + "type": "npm", + "name": "npm:junk", + "data": { + "version": "3.1.0", + "packageName": "junk", + "hash": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==" + } + }, + "npm:just-debounce": { + "type": "npm", + "name": "npm:just-debounce", + "data": { + "version": "1.0.0", + "packageName": "just-debounce", + "hash": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=" + } + }, + "npm:just-scripts-utils": { + "type": "npm", + "name": "npm:just-scripts-utils", + "data": { + "version": "1.2.0", + "packageName": "just-scripts-utils", + "hash": "sha512-rJMNtMz4V6uyMyfx+a2CqdMh1X/C9cVJTOPegvEzSonYMOKsiZEw2L9VzKVIFwNteKGZT6D2hFjSMAle41MAgA==" + } + }, + "npm:just-scripts": { + "type": "npm", + "name": "npm:just-scripts", + "data": { + "version": "1.8.2", + "packageName": "just-scripts", + "hash": "sha512-ZTaWL/r2hdswji60HFrOP3FrqUCXrIr5ElgXH3sr1cySamOeP1aWsvfKXssc7c2gAP8xi3S5JFAAffDOV60/EA==" + } + }, + "npm:just-task-logger": { + "type": "npm", + "name": "npm:just-task-logger", + "data": { + "version": "1.2.0", + "packageName": "just-task-logger", + "hash": "sha512-pa5FfJMiJ11KgCXDSfnbu/Enoiwm3ReOrSO9tP0CK69/yYtfsDhE8g6S0v6cCdDYGa4zpVkX7E4G1u3L7lAPTw==" + } + }, + "npm:just-task": { + "type": "npm", + "name": "npm:just-task", + "data": { + "version": "1.5.0", + "packageName": "just-task", + "hash": "sha512-oamAeJBBfI3zbzEHjLCnPJJCeBeAJPLssRpAGO/C0vCa7Hf0p2UORBbR77irZTdNRzW/fSLV2ua6lsDJIz3mIA==" + } + }, + "npm:jwa": { + "type": "npm", + "name": "npm:jwa", + "data": { + "version": "1.4.1", + "packageName": "jwa", + "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" + } + }, + "npm:jws": { + "type": "npm", + "name": "npm:jws", + "data": { + "version": "3.2.2", + "packageName": "jws", + "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" + } + }, + "npm:karma-chrome-launcher": { + "type": "npm", + "name": "npm:karma-chrome-launcher", + "data": { + "version": "3.1.1", + "packageName": "karma-chrome-launcher", + "hash": "sha512-hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ==" + } + }, + "npm:karma-coverage-istanbul-reporter": { + "type": "npm", + "name": "npm:karma-coverage-istanbul-reporter", + "data": { + "version": "3.0.3", + "packageName": "karma-coverage-istanbul-reporter", + "hash": "sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==" + } + }, + "npm:karma-coverage": { + "type": "npm", + "name": "npm:karma-coverage", + "data": { + "version": "2.2.0", + "packageName": "karma-coverage", + "hash": "sha512-gPVdoZBNDZ08UCzdMHHhEImKrw1+PAOQOIiffv1YsvxFhBjqvo/SVXNk4tqn1SYqX0BJZT6S/59zgxiBe+9OuA==" + } + }, + "npm:karma-firefox-launcher": { + "type": "npm", + "name": "npm:karma-firefox-launcher", + "data": { + "version": "1.3.0", + "packageName": "karma-firefox-launcher", + "hash": "sha512-Fi7xPhwrRgr+94BnHX0F5dCl1miIW4RHnzjIGxF8GaIEp7rNqX7LSi7ok63VXs3PS/5MQaQMhGxw+bvD+pibBQ==" + } + }, + "npm:karma-mocha-reporter": { + "type": "npm", + "name": "npm:karma-mocha-reporter", + "data": { + "version": "2.2.5", + "packageName": "karma-mocha-reporter", + "hash": "sha512-Hr6nhkIp0GIJJrvzY8JFeHpQZNseuIakGac4bpw8K1+5F0tLb6l7uvXRa8mt2Z+NVwYgCct4QAfp2R2QP6o00w==" + } + }, + "npm:karma-mocha": { + "type": "npm", + "name": "npm:karma-mocha", + "data": { + "version": "2.0.1", + "packageName": "karma-mocha", + "hash": "sha512-Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ==" + } + }, + "npm:karma-source-map-support": { + "type": "npm", + "name": "npm:karma-source-map-support", + "data": { + "version": "1.4.0", + "packageName": "karma-source-map-support", + "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" + } + }, + "npm:karma-sourcemap-loader": { + "type": "npm", + "name": "npm:karma-sourcemap-loader", + "data": { + "version": "0.3.8", + "packageName": "karma-sourcemap-loader", + "hash": "sha512-zorxyAakYZuBcHRJE+vbrK2o2JXLFWK8VVjiT/6P+ltLBUGUvqTEkUiQ119MGdOrK7mrmxXHZF1/pfT6GgIZ6g==" + } + }, + "npm:karma-webpack": { + "type": "npm", + "name": "npm:karma-webpack", + "data": { + "version": "5.0.0", + "packageName": "karma-webpack", + "hash": "sha512-+54i/cd3/piZuP3dr54+NcFeKOPnys5QeM1IY+0SPASwrtHsliXUiCL50iW+K9WWA7RvamC4macvvQ86l3KtaA==" + } + }, + "npm:karma": { + "type": "npm", + "name": "npm:karma", + "data": { + "version": "6.4.0", + "packageName": "karma", + "hash": "sha512-s8m7z0IF5g/bS5ONT7wsOavhW4i4aFkzD4u4wgzAQWT4HGUeWI3i21cK2Yz6jndMAeHETp5XuNsRoyGJZXVd4w==" + } + }, + "npm:keyborg": { + "type": "npm", + "name": "npm:keyborg", + "data": { + "version": "2.3.0", + "packageName": "keyborg", + "hash": "sha512-TU7VDxohtY7Rf4rTuCwa8QrHjya4eqKiSThI3lHF/wcBpm29gAui/vy0wY8l3ahcFEJ9tZhV+iduXPo6EkNQXw==" + } + }, + "npm:keygrip": { + "type": "npm", + "name": "npm:keygrip", + "data": { + "version": "1.1.0", + "packageName": "keygrip", + "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.0.3", + "packageName": "keyv", + "hash": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==" + } + }, + "npm:kind-of@1.1.0": { + "type": "npm", + "name": "npm:kind-of@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "kind-of", + "hash": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=" + } + }, + "npm:kind-of@3.2.2": { + "type": "npm", + "name": "npm:kind-of@3.2.2", + "data": { + "version": "3.2.2", + "packageName": "kind-of", + "hash": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" + } + }, + "npm:kind-of@4.0.0": { + "type": "npm", + "name": "npm:kind-of@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "kind-of", + "hash": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=" + } + }, + "npm:kind-of@5.1.0": { + "type": "npm", + "name": "npm:kind-of@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "kind-of", + "hash": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:klaw": { + "type": "npm", + "name": "npm:klaw", + "data": { + "version": "1.3.1", + "packageName": "klaw", + "hash": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.6", + "packageName": "klona", + "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + } + }, + "npm:koa-bodyparser": { + "type": "npm", + "name": "npm:koa-bodyparser", + "data": { + "version": "4.3.0", + "packageName": "koa-bodyparser", + "hash": "sha512-uyV8G29KAGwZc4q/0WUAjH+Tsmuv9ImfBUF2oZVyZtaeo0husInagyn/JH85xMSxM0hEk/mbCII5ubLDuqW/Rw==" + } + }, + "npm:koa-compose": { + "type": "npm", + "name": "npm:koa-compose", + "data": { + "version": "4.1.0", + "packageName": "koa-compose", + "hash": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==" + } + }, + "npm:koa-convert": { + "type": "npm", + "name": "npm:koa-convert", + "data": { + "version": "2.0.0", + "packageName": "koa-convert", + "hash": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==" + } + }, + "npm:koa-mount": { + "type": "npm", + "name": "npm:koa-mount", + "data": { + "version": "4.0.0", + "packageName": "koa-mount", + "hash": "sha512-rm71jaA/P+6HeCpoRhmCv8KVBIi0tfGuO/dMKicbQnQW/YJntJ6MnnspkodoA4QstMVEZArsCphmd0bJEtoMjQ==" + } + }, + "npm:koa-node-resolve": { + "type": "npm", + "name": "npm:koa-node-resolve", + "data": { + "version": "1.0.0-pre.9", + "packageName": "koa-node-resolve", + "hash": "sha512-WKgqe5TGVD6zuR3NrKnmbb/NNHIbWOCezQVqqnyQLdtLLXWgiothlUQT23S5qQGE0Z623jp6jxpMjvAqyrcZFQ==" + } + }, + "npm:koa-send": { + "type": "npm", + "name": "npm:koa-send", + "data": { + "version": "5.0.1", + "packageName": "koa-send", + "hash": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==" + } + }, + "npm:koa-static": { + "type": "npm", + "name": "npm:koa-static", + "data": { + "version": "5.0.0", + "packageName": "koa-static", + "hash": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==" + } + }, + "npm:koa": { + "type": "npm", + "name": "npm:koa", + "data": { + "version": "2.13.4", + "packageName": "koa", + "hash": "sha512-43zkIKubNbnrULWlHdN5h1g3SEKXOEzoAlRsHOTFpnlDu8JlAOZSMJBLULusuXRequboiwJcj5vtYXKB3k7+2g==" + } + }, + "npm:ky-universal": { + "type": "npm", + "name": "npm:ky-universal", + "data": { + "version": "0.3.0", + "packageName": "ky-universal", + "hash": "sha512-CM4Bgb2zZZpsprcjI6DNYTaH3oGHXL2u7BU4DK+lfCuC4snkt9/WRpMYeKbBbXscvKkeqBwzzjFX2WwmKY5K/A==" + } + }, + "npm:ky": { + "type": "npm", + "name": "npm:ky", + "data": { + "version": "0.12.0", + "packageName": "ky", + "hash": "sha512-t9b7v3V2fGwAcQnnDDQwKQGF55eWrf4pwi1RN08Fy8b/9GEwV7Ea0xQiaSW6ZbeghBHIwl8kgnla4vVo9seepQ==" + } + }, + "npm:lage": { + "type": "npm", + "name": "npm:lage", + "data": { + "version": "1.8.8", + "packageName": "lage", + "hash": "sha512-rMXedlK1lvC69P+bVir6r9EaGqy/NZm1Rg4vE7LD1vlDzNLYkCnvD1JkMxxQHkbMjhKXBLwcB6JnAti79GdLgA==" + } + }, + "npm:language-subtag-registry": { + "type": "npm", + "name": "npm:language-subtag-registry", + "data": { + "version": "0.3.21", + "packageName": "language-subtag-registry", + "hash": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + } + }, + "npm:language-tags": { + "type": "npm", + "name": "npm:language-tags", + "data": { + "version": "1.0.5", + "packageName": "language-tags", + "hash": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=" + } + }, + "npm:last-run": { + "type": "npm", + "name": "npm:last-run", + "data": { + "version": "1.1.1", + "packageName": "last-run", + "hash": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=" + } + }, + "npm:latest-version": { + "type": "npm", + "name": "npm:latest-version", + "data": { + "version": "3.1.0", + "packageName": "latest-version", + "hash": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=" + } + }, + "npm:lazy-ass": { + "type": "npm", + "name": "npm:lazy-ass", + "data": { + "version": "1.6.0", + "packageName": "lazy-ass", + "hash": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=" + } + }, + "npm:lazy-universal-dotenv": { + "type": "npm", + "name": "npm:lazy-universal-dotenv", + "data": { + "version": "3.0.1", + "packageName": "lazy-universal-dotenv", + "hash": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==" + } + }, + "npm:lazystream": { + "type": "npm", + "name": "npm:lazystream", + "data": { + "version": "1.0.0", + "packageName": "lazystream", + "hash": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=" + } + }, + "npm:lcid": { + "type": "npm", + "name": "npm:lcid", + "data": { + "version": "1.0.0", + "packageName": "lcid", + "hash": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=" + } + }, + "npm:lead": { + "type": "npm", + "name": "npm:lead", + "data": { + "version": "1.0.0", + "packageName": "lead", + "hash": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=" + } + }, + "npm:lerna-alias": { + "type": "npm", + "name": "npm:lerna-alias", + "data": { + "version": "3.0.3-0", + "packageName": "lerna-alias", + "hash": "sha512-IX0c2QH3v4rkgE+iG7Ro0FSEWKqqrMhvbGbB1txrnaJ8YbcrNbJ0IPpcJi+uiiPLV3olNX74EO08x9hGZ+J5ig==" + } + }, + "npm:lerna": { + "type": "npm", + "name": "npm:lerna", + "data": { + "version": "7.1.3", + "packageName": "lerna", + "hash": "sha512-LMs9HU0z5fNFMNOyDVinJcf04QaScReJ8Q2pqxO+nPOmbvNsBwykBgMTWLboL1rI1CCR0/WLdMnvObvR52MtTw==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:levn@0.3.0": { + "type": "npm", + "name": "npm:levn@0.3.0", + "data": { + "version": "0.3.0", + "packageName": "levn", + "hash": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=" + } + }, + "npm:li": { + "type": "npm", + "name": "npm:li", + "data": { + "version": "1.3.0", + "packageName": "li", + "hash": "sha1-IsWbyu+qmo7zWc91l4TkvxBq6hs=" + } + }, + "npm:libnpmaccess": { + "type": "npm", + "name": "npm:libnpmaccess", + "data": { + "version": "7.0.2", + "packageName": "libnpmaccess", + "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" + } + }, + "npm:libnpmpublish": { + "type": "npm", + "name": "npm:libnpmpublish", + "data": { + "version": "7.3.0", + "packageName": "libnpmpublish", + "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" + } + }, + "npm:license-webpack-plugin": { + "type": "npm", + "name": "npm:license-webpack-plugin", + "data": { + "version": "2.3.10", + "packageName": "license-webpack-plugin", + "hash": "sha512-WU+tVS0465NwdaV/DLb0t7GmQUwdaGI7QVWVKvvwLSlpYERKUD7DwcWIqSaXO+uoXM+6T3IAw3fCaGyVnI3DIQ==" + } + }, + "npm:lie": { + "type": "npm", + "name": "npm:lie", + "data": { + "version": "3.3.0", + "packageName": "lie", + "hash": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==" + } + }, + "npm:liftoff": { + "type": "npm", + "name": "npm:liftoff", + "data": { + "version": "2.5.0", + "packageName": "liftoff", + "hash": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=" + } + }, + "npm:liftoff@3.1.0": { + "type": "npm", + "name": "npm:liftoff@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "liftoff", + "hash": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "1.1.6", + "packageName": "lines-and-columns", + "hash": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + } + }, + "npm:lines-and-columns@2.0.3": { + "type": "npm", + "name": "npm:lines-and-columns@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "lines-and-columns", + "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" + } + }, + "npm:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "10.2.10", + "packageName": "lint-staged", + "hash": "sha512-dgelFaNH6puUGAcU+OVMgbfpKSerNYsPSn6+nlbRDjovL0KigpsVpCu0PFZG6BJxX8gnHJqaZlR9krZamQsb0w==" + } + }, + "npm:listenercount": { + "type": "npm", + "name": "npm:listenercount", + "data": { + "version": "1.0.1", + "packageName": "listenercount", + "hash": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "2.1.7", + "packageName": "listr2", + "hash": "sha512-XCC1sWLkBFFIMIRwG/LedgHUzN2XLEo02ZqXn6fwuP0GlXGE5BCuL6EAbQFb4vZB+++YEonzEXDPWQe+jCoF6Q==" + } + }, + "npm:listr2@3.14.0": { + "type": "npm", + "name": "npm:listr2@3.14.0", + "data": { + "version": "3.14.0", + "packageName": "listr2", + "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "6.2.0", + "packageName": "load-json-file", + "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" + } + }, + "npm:load-json-file@1.1.0": { + "type": "npm", + "name": "npm:load-json-file@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "load-json-file", + "hash": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=" + } + }, + "npm:load-json-file@4.0.0": { + "type": "npm", + "name": "npm:load-json-file@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=" + } + }, + "npm:loader-runner@2.4.0": { + "type": "npm", + "name": "npm:loader-runner@2.4.0", + "data": { + "version": "2.4.0", + "packageName": "loader-runner", + "hash": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.2.0", + "packageName": "loader-runner", + "hash": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==" + } + }, + "npm:loader-utils@1.4.2": { + "type": "npm", + "name": "npm:loader-utils@1.4.2", + "data": { + "version": "1.4.2", + "packageName": "loader-utils", + "hash": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "npm:locate-path@2.0.0": { + "type": "npm", + "name": "npm:locate-path@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "locate-path", + "hash": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:locate-path@5.0.0": { + "type": "npm", + "name": "npm:locate-path@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:locate-path@7.1.1": { + "type": "npm", + "name": "npm:locate-path@7.1.1", + "data": { + "version": "7.1.1", + "packageName": "locate-path", + "hash": "sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==" + } + }, + "npm:lodash-es": { + "type": "npm", + "name": "npm:lodash-es", + "data": { + "version": "4.17.21", + "packageName": "lodash-es", + "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + } + }, + "npm:lodash._basecopy": { + "type": "npm", + "name": "npm:lodash._basecopy", + "data": { + "version": "3.0.1", + "packageName": "lodash._basecopy", + "hash": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" + } + }, + "npm:lodash._basetostring": { + "type": "npm", + "name": "npm:lodash._basetostring", + "data": { + "version": "3.0.1", + "packageName": "lodash._basetostring", + "hash": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=" + } + }, + "npm:lodash._basevalues": { + "type": "npm", + "name": "npm:lodash._basevalues", + "data": { + "version": "3.0.0", + "packageName": "lodash._basevalues", + "hash": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=" + } + }, + "npm:lodash._getnative": { + "type": "npm", + "name": "npm:lodash._getnative", + "data": { + "version": "3.9.1", + "packageName": "lodash._getnative", + "hash": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" + } + }, + "npm:lodash._isiterateecall": { + "type": "npm", + "name": "npm:lodash._isiterateecall", + "data": { + "version": "3.0.9", + "packageName": "lodash._isiterateecall", + "hash": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" + } + }, + "npm:lodash._reescape": { + "type": "npm", + "name": "npm:lodash._reescape", + "data": { + "version": "3.0.0", + "packageName": "lodash._reescape", + "hash": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=" + } + }, + "npm:lodash._reevaluate": { + "type": "npm", + "name": "npm:lodash._reevaluate", + "data": { + "version": "3.0.0", + "packageName": "lodash._reevaluate", + "hash": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=" + } + }, + "npm:lodash._reinterpolate": { + "type": "npm", + "name": "npm:lodash._reinterpolate", + "data": { + "version": "3.0.0", + "packageName": "lodash._reinterpolate", + "hash": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + } + }, + "npm:lodash._root": { + "type": "npm", + "name": "npm:lodash._root", + "data": { + "version": "3.0.1", + "packageName": "lodash._root", + "hash": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=" + } + }, + "npm:lodash.assign": { + "type": "npm", + "name": "npm:lodash.assign", + "data": { + "version": "4.2.0", + "packageName": "lodash.assign", + "hash": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" + } + }, + "npm:lodash.camelcase": { + "type": "npm", + "name": "npm:lodash.camelcase", + "data": { + "version": "4.3.0", + "packageName": "lodash.camelcase", + "hash": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + } + }, + "npm:lodash.endswith": { + "type": "npm", + "name": "npm:lodash.endswith", + "data": { + "version": "4.2.1", + "packageName": "lodash.endswith", + "hash": "sha1-/tWawXOO0+I27dcGTsRWRIs3vAk=" + } + }, + "npm:lodash.escape": { + "type": "npm", + "name": "npm:lodash.escape", + "data": { + "version": "3.2.0", + "packageName": "lodash.escape", + "hash": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=" + } + }, + "npm:lodash.escape@4.0.1": { + "type": "npm", + "name": "npm:lodash.escape@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "lodash.escape", + "hash": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=" + } + }, + "npm:lodash.find": { + "type": "npm", + "name": "npm:lodash.find", + "data": { + "version": "4.6.0", + "packageName": "lodash.find", + "hash": "sha1-ywcE1Hq3F4n/oN6Ll92Sb7iLE7E=" + } + }, + "npm:lodash.flatten": { + "type": "npm", + "name": "npm:lodash.flatten", + "data": { + "version": "4.4.0", + "packageName": "lodash.flatten", + "hash": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" + } + }, + "npm:lodash.flattendeep": { + "type": "npm", + "name": "npm:lodash.flattendeep", + "data": { + "version": "4.4.0", + "packageName": "lodash.flattendeep", + "hash": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" + } + }, + "npm:lodash.get": { + "type": "npm", + "name": "npm:lodash.get", + "data": { + "version": "4.4.2", + "packageName": "lodash.get", + "hash": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + } + }, + "npm:lodash.includes": { + "type": "npm", + "name": "npm:lodash.includes", + "data": { + "version": "4.3.0", + "packageName": "lodash.includes", + "hash": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" + } + }, + "npm:lodash.isarguments": { + "type": "npm", + "name": "npm:lodash.isarguments", + "data": { + "version": "3.1.0", + "packageName": "lodash.isarguments", + "hash": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" + } + }, + "npm:lodash.isarray": { + "type": "npm", + "name": "npm:lodash.isarray", + "data": { + "version": "3.0.4", + "packageName": "lodash.isarray", + "hash": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" + } + }, + "npm:lodash.isboolean": { + "type": "npm", + "name": "npm:lodash.isboolean", + "data": { + "version": "3.0.3", + "packageName": "lodash.isboolean", + "hash": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + } + }, + "npm:lodash.isequal": { + "type": "npm", + "name": "npm:lodash.isequal", + "data": { + "version": "4.5.0", + "packageName": "lodash.isequal", + "hash": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + } + }, + "npm:lodash.isinteger": { + "type": "npm", + "name": "npm:lodash.isinteger", + "data": { + "version": "4.0.4", + "packageName": "lodash.isinteger", + "hash": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" + } + }, + "npm:lodash.ismatch": { + "type": "npm", + "name": "npm:lodash.ismatch", + "data": { + "version": "4.4.0", + "packageName": "lodash.ismatch", + "hash": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=" + } + }, + "npm:lodash.isnumber": { + "type": "npm", + "name": "npm:lodash.isnumber", + "data": { + "version": "3.0.3", + "packageName": "lodash.isnumber", + "hash": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + } + }, + "npm:lodash.isobject": { + "type": "npm", + "name": "npm:lodash.isobject", + "data": { + "version": "3.0.2", + "packageName": "lodash.isobject", + "hash": "sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0=" + } + }, + "npm:lodash.isplainobject": { + "type": "npm", + "name": "npm:lodash.isplainobject", + "data": { + "version": "4.0.6", + "packageName": "lodash.isplainobject", + "hash": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + } + }, + "npm:lodash.isstring": { + "type": "npm", + "name": "npm:lodash.isstring", + "data": { + "version": "4.0.1", + "packageName": "lodash.isstring", + "hash": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + } + }, + "npm:lodash.keys@3.1.2": { + "type": "npm", + "name": "npm:lodash.keys@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "lodash.keys", + "hash": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=" + } + }, + "npm:lodash.keys": { + "type": "npm", + "name": "npm:lodash.keys", + "data": { + "version": "4.2.0", + "packageName": "lodash.keys", + "hash": "sha1-oIYCrBLk+4P5H8H7ejYKTZujUgU=" + } + }, + "npm:lodash.mapvalues": { + "type": "npm", + "name": "npm:lodash.mapvalues", + "data": { + "version": "4.6.0", + "packageName": "lodash.mapvalues", + "hash": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.mergewith": { + "type": "npm", + "name": "npm:lodash.mergewith", + "data": { + "version": "4.6.2", + "packageName": "lodash.mergewith", + "hash": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" + } + }, + "npm:lodash.once": { + "type": "npm", + "name": "npm:lodash.once", + "data": { + "version": "4.1.1", + "packageName": "lodash.once", + "hash": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" + } + }, + "npm:lodash.pick": { + "type": "npm", + "name": "npm:lodash.pick", + "data": { + "version": "4.4.0", + "packageName": "lodash.pick", + "hash": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" + } + }, + "npm:lodash.restparam": { + "type": "npm", + "name": "npm:lodash.restparam", + "data": { + "version": "3.6.1", + "packageName": "lodash.restparam", + "hash": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" + } + }, + "npm:lodash.sortby": { + "type": "npm", + "name": "npm:lodash.sortby", + "data": { + "version": "4.7.0", + "packageName": "lodash.sortby", + "hash": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + } + }, + "npm:lodash.template": { + "type": "npm", + "name": "npm:lodash.template", + "data": { + "version": "3.6.2", + "packageName": "lodash.template", + "hash": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=" + } + }, + "npm:lodash.templatesettings": { + "type": "npm", + "name": "npm:lodash.templatesettings", + "data": { + "version": "3.1.1", + "packageName": "lodash.templatesettings", + "hash": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=" + } + }, + "npm:lodash.toarray": { + "type": "npm", + "name": "npm:lodash.toarray", + "data": { + "version": "4.4.0", + "packageName": "lodash.toarray", + "hash": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" + } + }, + "npm:lodash.truncate": { + "type": "npm", + "name": "npm:lodash.truncate", + "data": { + "version": "4.4.2", + "packageName": "lodash.truncate", + "hash": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:log-symbols@3.0.0": { + "type": "npm", + "name": "npm:log-symbols@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "log-symbols", + "hash": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==" + } + }, + "npm:log-symbols@1.0.2": { + "type": "npm", + "name": "npm:log-symbols@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "log-symbols", + "hash": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=" + } + }, + "npm:log-symbols@2.2.0": { + "type": "npm", + "name": "npm:log-symbols@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "log-symbols", + "hash": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:log-update": { + "type": "npm", + "name": "npm:log-update", + "data": { + "version": "4.0.0", + "packageName": "log-update", + "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" + } + }, + "npm:log4js": { + "type": "npm", + "name": "npm:log4js", + "data": { + "version": "6.4.2", + "packageName": "log4js", + "hash": "sha512-k80cggS2sZQLBwllpT1p06GtfvzMmSdUCkW96f0Hj83rKGJDAu2vZjt9B9ag2vx8Zz1IXzxoLgqvRJCdMKybGg==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:loud-rejection": { + "type": "npm", + "name": "npm:loud-rejection", + "data": { + "version": "1.6.0", + "packageName": "loud-rejection", + "hash": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=" + } + }, + "npm:loupe": { + "type": "npm", + "name": "npm:loupe", + "data": { + "version": "2.3.4", + "packageName": "loupe", + "hash": "sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==" + } + }, + "npm:lower-case-first": { + "type": "npm", + "name": "npm:lower-case-first", + "data": { + "version": "1.0.2", + "packageName": "lower-case-first", + "hash": "sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=" + } + }, + "npm:lower-case": { + "type": "npm", + "name": "npm:lower-case", + "data": { + "version": "1.1.4", + "packageName": "lower-case", + "hash": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" + } + }, + "npm:lower-case@2.0.2": { + "type": "npm", + "name": "npm:lower-case@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "lower-case", + "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + } + }, + "npm:lowercase-keys@1.0.0": { + "type": "npm", + "name": "npm:lowercase-keys@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "lowercase-keys", + "hash": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:lowercase-keys@3.0.0": { + "type": "npm", + "name": "npm:lowercase-keys@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==" + } + }, + "npm:lowlight": { + "type": "npm", + "name": "npm:lowlight", + "data": { + "version": "1.11.0", + "packageName": "lowlight", + "hash": "sha512-xrGGN6XLL7MbTMdPD6NfWPwY43SNkjf/d0mecSx/CW36fUZTjRHEq0/Cdug3TWKtRXLWi7iMl1eP0olYxj/a4A==" + } + }, + "npm:lru-cache@10.0.1": { + "type": "npm", + "name": "npm:lru-cache@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "lru-cache", + "hash": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==" + } + }, + "npm:lru-cache@4.1.5": { + "type": "npm", + "name": "npm:lru-cache@4.1.5", + "data": { + "version": "4.1.5", + "packageName": "lru-cache", + "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" + } + }, + "npm:lru-cache@5.1.1": { + "type": "npm", + "name": "npm:lru-cache@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:lru-cache@7.14.0": { + "type": "npm", + "name": "npm:lru-cache@7.14.0", + "data": { + "version": "7.14.0", + "packageName": "lru-cache", + "hash": "sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ==" + } + }, + "npm:lru-queue": { + "type": "npm", + "name": "npm:lru-queue", + "data": { + "version": "0.1.0", + "packageName": "lru-queue", + "hash": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=" + } + }, + "npm:lz-string": { + "type": "npm", + "name": "npm:lz-string", + "data": { + "version": "1.4.4", + "packageName": "lz-string", + "hash": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.25.7", + "packageName": "magic-string", + "hash": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:make-dir@1.3.0": { + "type": "npm", + "name": "npm:make-dir@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "make-dir", + "hash": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.5", + "packageName": "make-error", + "hash": "sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==" + } + }, + "npm:make-fetch-happen@10.2.1": { + "type": "npm", + "name": "npm:make-fetch-happen@10.2.1", + "data": { + "version": "10.2.1", + "packageName": "make-fetch-happen", + "hash": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "11.1.1", + "packageName": "make-fetch-happen", + "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" + } + }, + "npm:make-fetch-happen@8.0.9": { + "type": "npm", + "name": "npm:make-fetch-happen@8.0.9", + "data": { + "version": "8.0.9", + "packageName": "make-fetch-happen", + "hash": "sha512-uHa4gv/NIdm9cUvfOhYb57nxrCY08iyMRXru0jbpaH57Q3NCge/ypY7fOvgCr8tPyucKrGbVndKhjXE0IX0VfQ==" + } + }, + "npm:make-iterator": { + "type": "npm", + "name": "npm:make-iterator", + "data": { + "version": "1.0.1", + "packageName": "make-iterator", + "hash": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:map-age-cleaner": { + "type": "npm", + "name": "npm:map-age-cleaner", + "data": { + "version": "0.1.3", + "packageName": "map-age-cleaner", + "hash": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==" + } + }, + "npm:map-cache": { + "type": "npm", + "name": "npm:map-cache", + "data": { + "version": "0.2.2", + "packageName": "map-cache", + "hash": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + } + }, + "npm:map-obj": { + "type": "npm", + "name": "npm:map-obj", + "data": { + "version": "1.0.1", + "packageName": "map-obj", + "hash": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" + } + }, + "npm:map-obj@4.1.0": { + "type": "npm", + "name": "npm:map-obj@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "map-obj", + "hash": "sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==" + } + }, + "npm:map-or-similar": { + "type": "npm", + "name": "npm:map-or-similar", + "data": { + "version": "1.5.0", + "packageName": "map-or-similar", + "hash": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=" + } + }, + "npm:map-visit": { + "type": "npm", + "name": "npm:map-visit", + "data": { + "version": "1.0.0", + "packageName": "map-visit", + "hash": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=" + } + }, + "npm:markdown-escapes": { + "type": "npm", + "name": "npm:markdown-escapes", + "data": { + "version": "1.0.4", + "packageName": "markdown-escapes", + "hash": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" + } + }, + "npm:markdown-table": { + "type": "npm", + "name": "npm:markdown-table", + "data": { + "version": "2.0.0", + "packageName": "markdown-table", + "hash": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==" + } + }, + "npm:markdown-to-jsx": { + "type": "npm", + "name": "npm:markdown-to-jsx", + "data": { + "version": "7.1.7", + "packageName": "markdown-to-jsx", + "hash": "sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==" + } + }, + "npm:marked-terminal": { + "type": "npm", + "name": "npm:marked-terminal", + "data": { + "version": "4.1.0", + "packageName": "marked-terminal", + "hash": "sha512-5KllfAOW02WS6hLRQ7cNvGOxvKW1BKuXELH4EtbWfyWgxQhROoMxEvuQ/3fTgkNjledR0J48F4HbapvYp1zWkQ==" + } + }, + "npm:marked": { + "type": "npm", + "name": "npm:marked", + "data": { + "version": "4.0.12", + "packageName": "marked", + "hash": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==" + } + }, + "npm:matchdep": { + "type": "npm", + "name": "npm:matchdep", + "data": { + "version": "2.0.0", + "packageName": "matchdep", + "hash": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=" + } + }, + "npm:md5.js": { + "type": "npm", + "name": "npm:md5.js", + "data": { + "version": "1.3.5", + "packageName": "md5.js", + "hash": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==" + } + }, + "npm:mdast-add-list-metadata": { + "type": "npm", + "name": "npm:mdast-add-list-metadata", + "data": { + "version": "1.0.1", + "packageName": "mdast-add-list-metadata", + "hash": "sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==" + } + }, + "npm:mdast-squeeze-paragraphs": { + "type": "npm", + "name": "npm:mdast-squeeze-paragraphs", + "data": { + "version": "4.0.0", + "packageName": "mdast-squeeze-paragraphs", + "hash": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==" + } + }, + "npm:mdast-util-definitions": { + "type": "npm", + "name": "npm:mdast-util-definitions", + "data": { + "version": "4.0.0", + "packageName": "mdast-util-definitions", + "hash": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==" + } + }, + "npm:mdast-util-to-hast": { + "type": "npm", + "name": "npm:mdast-util-to-hast", + "data": { + "version": "10.0.1", + "packageName": "mdast-util-to-hast", + "hash": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==" + } + }, + "npm:mdast-util-to-string": { + "type": "npm", + "name": "npm:mdast-util-to-string", + "data": { + "version": "1.1.0", + "packageName": "mdast-util-to-string", + "hash": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==" + } + }, + "npm:mdurl": { + "type": "npm", + "name": "npm:mdurl", + "data": { + "version": "1.0.1", + "packageName": "mdurl", + "hash": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + } + }, + "npm:mem": { + "type": "npm", + "name": "npm:mem", + "data": { + "version": "8.1.1", + "packageName": "mem", + "hash": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==" + } + }, + "npm:memfs-or-file-map-to-github-branch": { + "type": "npm", + "name": "npm:memfs-or-file-map-to-github-branch", + "data": { + "version": "1.2.1", + "packageName": "memfs-or-file-map-to-github-branch", + "hash": "sha512-I/hQzJ2a/pCGR8fkSQ9l5Yx+FQ4e7X6blNHyWBm2ojeFLT3GVzGkTj7xnyWpdclrr7Nq4dmx3xrvu70m3ypzAQ==" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.2.2", + "packageName": "memfs", + "hash": "sha512-RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==" + } + }, + "npm:memfs@3.4.1": { + "type": "npm", + "name": "npm:memfs@3.4.1", + "data": { + "version": "3.4.1", + "packageName": "memfs", + "hash": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==" + } + }, + "npm:memoize-one": { + "type": "npm", + "name": "npm:memoize-one", + "data": { + "version": "5.1.1", + "packageName": "memoize-one", + "hash": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==" + } + }, + "npm:memoizee": { + "type": "npm", + "name": "npm:memoizee", + "data": { + "version": "0.4.14", + "packageName": "memoizee", + "hash": "sha512-/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg==" + } + }, + "npm:memoizerific": { + "type": "npm", + "name": "npm:memoizerific", + "data": { + "version": "1.11.3", + "packageName": "memoizerific", + "hash": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=" + } + }, + "npm:memory-fs": { + "type": "npm", + "name": "npm:memory-fs", + "data": { + "version": "0.4.1", + "packageName": "memory-fs", + "hash": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=" + } + }, + "npm:memory-fs@0.5.0": { + "type": "npm", + "name": "npm:memory-fs@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "memory-fs", + "hash": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==" + } + }, + "npm:meow@3.7.0": { + "type": "npm", + "name": "npm:meow@3.7.0", + "data": { + "version": "3.7.0", + "packageName": "meow", + "hash": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=" + } + }, + "npm:meow": { + "type": "npm", + "name": "npm:meow", + "data": { + "version": "8.1.2", + "packageName": "meow", + "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + } + }, + "npm:microevent.ts": { + "type": "npm", + "name": "npm:microevent.ts", + "data": { + "version": "0.1.1", + "packageName": "microevent.ts", + "hash": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + } + }, + "npm:micromatch@3.1.10": { + "type": "npm", + "name": "npm:micromatch@3.1.10", + "data": { + "version": "3.1.10", + "packageName": "micromatch", + "hash": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.4", + "packageName": "micromatch", + "hash": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==" + } + }, + "npm:miller-rabin": { + "type": "npm", + "name": "npm:miller-rabin", + "data": { + "version": "4.0.1", + "packageName": "miller-rabin", + "hash": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:mime@1.6.0": { + "type": "npm", + "name": "npm:mime@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:mimic-fn@1.2.0": { + "type": "npm", + "name": "npm:mimic-fn@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "mimic-fn", + "hash": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:mimic-fn@3.1.0": { + "type": "npm", + "name": "npm:mimic-fn@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "mimic-fn", + "hash": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==" + } + }, + "npm:mimic-response@1.0.1": { + "type": "npm", + "name": "npm:mimic-response@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "3.1.0", + "packageName": "mimic-response", + "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + }, + "npm:min-document": { + "type": "npm", + "name": "npm:min-document", + "data": { + "version": "2.19.0", + "packageName": "min-document", + "hash": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=" + } + }, + "npm:min-indent": { + "type": "npm", + "name": "npm:min-indent", + "data": { + "version": "1.0.0", + "packageName": "min-indent", + "hash": "sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY=" + } + }, + "npm:mini-create-react-context": { + "type": "npm", + "name": "npm:mini-create-react-context", + "data": { + "version": "0.4.0", + "packageName": "mini-create-react-context", + "hash": "sha512-b0TytUgFSbgFJGzJqXPKCFCBWigAjpjo+Fl7Vf7ZbKRDptszpppKxXH6DRXEABZ/gcEQczeb0iZ7JvL8e8jjCA==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.6.1", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:minimalistic-crypto-utils": { + "type": "npm", + "name": "npm:minimalistic-crypto-utils", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-crypto-utils", + "hash": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:minimatch@3.0.4": { + "type": "npm", + "name": "npm:minimatch@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "minimatch", + "hash": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" + } + }, + "npm:minimatch@9.0.1": { + "type": "npm", + "name": "npm:minimatch@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "minimatch", + "hash": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==" + } + }, + "npm:minimatch@5.0.1": { + "type": "npm", + "name": "npm:minimatch@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "minimatch", + "hash": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==" + } + }, + "npm:minimatch@8.0.4": { + "type": "npm", + "name": "npm:minimatch@8.0.4", + "data": { + "version": "8.0.4", + "packageName": "minimatch", + "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" + } + }, + "npm:minimist-options": { + "type": "npm", + "name": "npm:minimist-options", + "data": { + "version": "4.1.0", + "packageName": "minimist-options", + "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.7", + "packageName": "minimist", + "hash": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "1.0.2", + "packageName": "minipass-collect", + "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "1.3.0", + "packageName": "minipass-fetch", + "hash": "sha512-Yb23ESZZ/8QxiBvSpJ4atbVMVDx2CXrerzrtQzQ67eLqKg+zFIkYFTagk3xh6fdo+e/FvDtVuCD4QcuYDRR3hw==" + } + }, + "npm:minipass-fetch@2.1.2": { + "type": "npm", + "name": "npm:minipass-fetch@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "minipass-fetch", + "hash": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" + } + }, + "npm:minipass-fetch@3.0.3": { + "type": "npm", + "name": "npm:minipass-fetch@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "minipass-fetch", + "hash": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-json-stream": { + "type": "npm", + "name": "npm:minipass-json-stream", + "data": { + "version": "1.0.1", + "packageName": "minipass-json-stream", + "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:minipass@2.9.0": { + "type": "npm", + "name": "npm:minipass@2.9.0", + "data": { + "version": "2.9.0", + "packageName": "minipass", + "hash": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "3.3.4", + "packageName": "minipass", + "hash": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==" + } + }, + "npm:minipass@4.2.8": { + "type": "npm", + "name": "npm:minipass@4.2.8", + "data": { + "version": "4.2.8", + "packageName": "minipass", + "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" + } + }, + "npm:minipass@5.0.0": { + "type": "npm", + "name": "npm:minipass@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:minizlib@1.3.3": { + "type": "npm", + "name": "npm:minizlib@1.3.3", + "data": { + "version": "1.3.3", + "packageName": "minizlib", + "hash": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:mississippi": { + "type": "npm", + "name": "npm:mississippi", + "data": { + "version": "3.0.0", + "packageName": "mississippi", + "hash": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==" + } + }, + "npm:mixin-deep": { + "type": "npm", + "name": "npm:mixin-deep", + "data": { + "version": "1.3.2", + "packageName": "mixin-deep", + "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" + } + }, + "npm:mkdirp-classic": { + "type": "npm", + "name": "npm:mkdirp-classic", + "data": { + "version": "0.5.3", + "packageName": "mkdirp-classic", + "hash": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "0.5.5", + "packageName": "mkdirp", + "hash": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==" + } + }, + "npm:mkdirp@1.0.4": { + "type": "npm", + "name": "npm:mkdirp@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:mocha": { + "type": "npm", + "name": "npm:mocha", + "data": { + "version": "7.2.0", + "packageName": "mocha", + "hash": "sha512-O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ==" + } + }, + "npm:mocked-env": { + "type": "npm", + "name": "npm:mocked-env", + "data": { + "version": "1.3.2", + "packageName": "mocked-env", + "hash": "sha512-jwm3ziowCjpbLNhUNYwn2G0tawV/ZGRuWeEGt6PItrkQT74Nk3pDldL2pmwm9sQZw6a/x+ZBGeBVYq54acTauQ==" + } + }, + "npm:modify-values": { + "type": "npm", + "name": "npm:modify-values", + "data": { + "version": "1.0.1", + "packageName": "modify-values", + "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" + } + }, + "npm:moment": { + "type": "npm", + "name": "npm:moment", + "data": { + "version": "2.29.4", + "packageName": "moment", + "hash": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" + } + }, + "npm:monaco-editor": { + "type": "npm", + "name": "npm:monaco-editor", + "data": { + "version": "0.33.0", + "packageName": "monaco-editor", + "hash": "sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==" + } + }, + "npm:monosize-storage-azure": { + "type": "npm", + "name": "npm:monosize-storage-azure", + "data": { + "version": "0.0.3", + "packageName": "monosize-storage-azure", + "hash": "sha512-KmivlWDprIdSSa59Ot9osXB/+niB3hQsbgLFq/SxNh0fOv7UkxIqC6HnnlRPD5aWq07XO6mP0S0iJOSxKLLuWA==" + } + }, + "npm:monosize": { + "type": "npm", + "name": "npm:monosize", + "data": { + "version": "0.1.0", + "packageName": "monosize", + "hash": "sha512-+a8VUdzZwHlja72zs4Les4UTNu3H/kPrJT7L90DPZW4XLc9LNnMyU+6Sx731X/cdQe5utWBfcYv2DbCkWBPLRA==" + } + }, + "npm:moo-color": { + "type": "npm", + "name": "npm:moo-color", + "data": { + "version": "1.0.3", + "packageName": "moo-color", + "hash": "sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==" + } + }, + "npm:moo": { + "type": "npm", + "name": "npm:moo", + "data": { + "version": "0.4.3", + "packageName": "moo", + "hash": "sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw==" + } + }, + "npm:move-concurrently": { + "type": "npm", + "name": "npm:move-concurrently", + "data": { + "version": "1.0.1", + "packageName": "move-concurrently", + "hash": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + }, + "npm:ms@2.1.1": { + "type": "npm", + "name": "npm:ms@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ms", + "hash": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + }, + "npm:ms@2.1.2": { + "type": "npm", + "name": "npm:ms@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:multicast-dns-service-types": { + "type": "npm", + "name": "npm:multicast-dns-service-types", + "data": { + "version": "1.1.0", + "packageName": "multicast-dns-service-types", + "hash": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "6.2.3", + "packageName": "multicast-dns", + "hash": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==" + } + }, + "npm:multimatch": { + "type": "npm", + "name": "npm:multimatch", + "data": { + "version": "5.0.0", + "packageName": "multimatch", + "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" + } + }, + "npm:multipipe": { + "type": "npm", + "name": "npm:multipipe", + "data": { + "version": "0.1.2", + "packageName": "multipipe", + "hash": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=" + } + }, + "npm:mute-stdout": { + "type": "npm", + "name": "npm:mute-stdout", + "data": { + "version": "1.0.1", + "packageName": "mute-stdout", + "hash": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "0.0.8", + "packageName": "mute-stream", + "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + } + }, + "npm:mute-stream@1.0.0": { + "type": "npm", + "name": "npm:mute-stream@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "mute-stream", + "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:n-readlines": { + "type": "npm", + "name": "npm:n-readlines", + "data": { + "version": "1.0.0", + "packageName": "n-readlines", + "hash": "sha512-ISDqGcspVu6U3VKqtJZG1uR55SmNNF9uK0EMq1IvNVVZOui6MW6VR0+pIZhqz85ORAGp+4zW+5fJ/SE7bwEibA==" + } + }, + "npm:nan@2.15.0": { + "type": "npm", + "name": "npm:nan@2.15.0", + "data": { + "version": "2.15.0", + "packageName": "nan", + "hash": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.6", + "packageName": "nanoid", + "hash": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + } + }, + "npm:nanomatch": { + "type": "npm", + "name": "npm:nanomatch", + "data": { + "version": "1.2.13", + "packageName": "nanomatch", + "hash": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + } + }, + "npm:nearley": { + "type": "npm", + "name": "npm:nearley", + "data": { + "version": "2.16.0", + "packageName": "nearley", + "hash": "sha512-Tr9XD3Vt/EujXbZBv6UAHYoLUSMQAxSsTnm9K3koXzjzNWY195NqALeyrzLZBKzAkL3gl92BcSogqrHjD8QuUg==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:nested-error-stacks": { + "type": "npm", + "name": "npm:nested-error-stacks", + "data": { + "version": "2.1.0", + "packageName": "nested-error-stacks", + "hash": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==" + } + }, + "npm:next-tick": { + "type": "npm", + "name": "npm:next-tick", + "data": { + "version": "1.0.0", + "packageName": "next-tick", + "hash": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "npm:no-case": { + "type": "npm", + "name": "npm:no-case", + "data": { + "version": "2.3.2", + "packageName": "no-case", + "hash": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==" + } + }, + "npm:no-case@3.0.4": { + "type": "npm", + "name": "npm:no-case@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "no-case", + "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "3.2.1", + "packageName": "node-addon-api", + "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" + } + }, + "npm:node-cleanup": { + "type": "npm", + "name": "npm:node-cleanup", + "data": { + "version": "2.1.2", + "packageName": "node-cleanup", + "hash": "sha1-esGavSl+Caf3KnFUXZUbUX5N3iw=" + } + }, + "npm:node-dir": { + "type": "npm", + "name": "npm:node-dir", + "data": { + "version": "0.1.17", + "packageName": "node-dir", + "hash": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=" + } + }, + "npm:node-domexception": { + "type": "npm", + "name": "npm:node-domexception", + "data": { + "version": "1.0.0", + "packageName": "node-domexception", + "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" + } + }, + "npm:node-emoji": { + "type": "npm", + "name": "npm:node-emoji", + "data": { + "version": "1.10.0", + "packageName": "node-emoji", + "hash": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==" + } + }, + "npm:node-environment-flags": { + "type": "npm", + "name": "npm:node-environment-flags", + "data": { + "version": "1.0.6", + "packageName": "node-environment-flags", + "hash": "sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:node-fetch@3.3.1": { + "type": "npm", + "name": "npm:node-fetch@3.3.1", + "data": { + "version": "3.3.1", + "packageName": "node-fetch", + "hash": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.3.0", + "packageName": "node-gyp-build", + "hash": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==" + } + }, + "npm:node-gyp@6.1.0": { + "type": "npm", + "name": "npm:node-gyp@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "node-gyp", + "hash": "sha512-h4A2zDlOujeeaaTx06r4Vy+8MZ1679lU+wbCKDS4ZtvY2A37DESo37oejIw0mtmR3+rvNwts5B6Kpt1KrNYdNw==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "9.1.0", + "packageName": "node-gyp", + "hash": "sha512-HkmN0ZpQJU7FLbJauJTHkHlSVAXlNGDAzH/VYFZGDOnFyn/Na3GlNJfkudmufOdS6/jNFhy88ObzL7ERz9es1g==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + } + }, + "npm:node-ipc": { + "type": "npm", + "name": "npm:node-ipc", + "data": { + "version": "9.1.1", + "packageName": "node-ipc", + "hash": "sha512-FAyICv0sIRJxVp3GW5fzgaf9jwwRQxAKDJlmNFUL5hOy+W4X/I5AypyHoq0DXXbo9o/gt79gj++4cMr4jVWE/w==" + } + }, + "npm:node-libs-browser": { + "type": "npm", + "name": "npm:node-libs-browser", + "data": { + "version": "2.2.1", + "packageName": "node-libs-browser", + "hash": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==" + } + }, + "npm:node-machine-id": { + "type": "npm", + "name": "npm:node-machine-id", + "data": { + "version": "1.1.12", + "packageName": "node-machine-id", + "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" + } + }, + "npm:node-plop": { + "type": "npm", + "name": "npm:node-plop", + "data": { + "version": "0.25.0", + "packageName": "node-plop", + "hash": "sha512-OFvnTsDw9nxNdLrYcveJhU2Hnzg+AxOz6xBk8uXsi0vCOSP7Rng98pdgfsuZKyCN+qrc+/fSwlNC5hkXhJ6gww==" + } + }, + "npm:node-polyfill-webpack-plugin": { + "type": "npm", + "name": "npm:node-polyfill-webpack-plugin", + "data": { + "version": "1.0.2", + "packageName": "node-polyfill-webpack-plugin", + "hash": "sha512-x4dNQ28D/kwvDbp52y6WBOuXs2QhGkIkv8RT2xhBj5JO21iUrNT4aSJyw41Jio3Ima/S0UKCTfHdS6mUOxjYmw==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.13", + "packageName": "node-releases", + "hash": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "3.0.6", + "packageName": "nopt", + "hash": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=" + } + }, + "npm:nopt@4.0.1": { + "type": "npm", + "name": "npm:nopt@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "nopt", + "hash": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=" + } + }, + "npm:nopt@5.0.0": { + "type": "npm", + "name": "npm:nopt@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "nopt", + "hash": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==" + } + }, + "npm:normalize-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "2.5.0", + "packageName": "normalize-package-data", + "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + } + }, + "npm:normalize-package-data@3.0.3": { + "type": "npm", + "name": "npm:normalize-package-data@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "normalize-package-data", + "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" + } + }, + "npm:normalize-package-data@5.0.0": { + "type": "npm", + "name": "npm:normalize-package-data@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" + } + }, + "npm:normalize-path@2.1.1": { + "type": "npm", + "name": "npm:normalize-path@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "normalize-path", + "hash": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:now-and-later": { + "type": "npm", + "name": "npm:now-and-later", + "data": { + "version": "2.0.1", + "packageName": "now-and-later", + "hash": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "1.1.2", + "packageName": "npm-bundled", + "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" + } + }, + "npm:npm-bundled@3.0.0": { + "type": "npm", + "name": "npm:npm-bundled@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "npm-bundled", + "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" + } + }, + "npm:npm-install-checks": { + "type": "npm", + "name": "npm:npm-install-checks", + "data": { + "version": "4.0.0", + "packageName": "npm-install-checks", + "hash": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==" + } + }, + "npm:npm-install-checks@6.1.1": { + "type": "npm", + "name": "npm:npm-install-checks@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "npm-install-checks", + "hash": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "1.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + } + }, + "npm:npm-normalize-package-bin@3.0.1": { + "type": "npm", + "name": "npm:npm-normalize-package-bin@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" + } + }, + "npm:npm-package-arg@11.0.1": { + "type": "npm", + "name": "npm:npm-package-arg@11.0.1", + "data": { + "version": "11.0.1", + "packageName": "npm-package-arg", + "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" + } + }, + "npm:npm-package-arg@8.1.1": { + "type": "npm", + "name": "npm:npm-package-arg@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "npm-package-arg", + "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "10.1.0", + "packageName": "npm-package-arg", + "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "5.1.1", + "packageName": "npm-packlist", + "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" + } + }, + "npm:npm-packlist@2.1.2": { + "type": "npm", + "name": "npm:npm-packlist@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "npm-packlist", + "hash": "sha512-eByPaP+wsKai0BJX5pmb58d3mfR0zUATcnyuvSxIudTEn+swCPFLxh7srCmqB4hr7i9V24/DPjjq5b2qUtbgXQ==" + } + }, + "npm:npm-packlist@7.0.4": { + "type": "npm", + "name": "npm:npm-packlist@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "npm-packlist", + "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "6.1.0", + "packageName": "npm-pick-manifest", + "hash": "sha512-ygs4k6f54ZxJXrzT0x34NybRlLeZ4+6nECAIbr2i0foTnijtS1TJiyzpqtuUAJOps/hO0tNDr8fRV5g+BtRlTw==" + } + }, + "npm:npm-pick-manifest@8.0.1": { + "type": "npm", + "name": "npm:npm-pick-manifest@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "npm-pick-manifest", + "hash": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==" + } + }, + "npm:npm-registry-fetch": { + "type": "npm", + "name": "npm:npm-registry-fetch", + "data": { + "version": "14.0.5", + "packageName": "npm-registry-fetch", + "hash": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==" + } + }, + "npm:npm-registry-fetch@8.1.3": { + "type": "npm", + "name": "npm:npm-registry-fetch@8.1.3", + "data": { + "version": "8.1.3", + "packageName": "npm-registry-fetch", + "hash": "sha512-xpBFcg13wkFR0SsscvemmrIe1Sxe1SPgGUOAb7+5Uo6fR8SIRMenMHeDSjfyulv1px66/y0Ib40rtKO20PcgPg==" + } + }, + "npm:npm-run-path@2.0.2": { + "type": "npm", + "name": "npm:npm-run-path@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "npm-run-path", + "hash": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:npmlog": { + "type": "npm", + "name": "npm:npmlog", + "data": { + "version": "4.1.2", + "packageName": "npmlog", + "hash": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==" + } + }, + "npm:npmlog@5.0.1": { + "type": "npm", + "name": "npm:npmlog@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "npmlog", + "hash": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==" + } + }, + "npm:npmlog@6.0.2": { + "type": "npm", + "name": "npm:npmlog@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "npmlog", + "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" + } + }, + "npm:nth-check@2.0.0": { + "type": "npm", + "name": "npm:nth-check@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "nth-check", + "hash": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "1.0.2", + "packageName": "nth-check", + "hash": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==" + } + }, + "npm:num2fraction": { + "type": "npm", + "name": "npm:num2fraction", + "data": { + "version": "1.2.2", + "packageName": "num2fraction", + "hash": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + } + }, + "npm:number-is-nan": { + "type": "npm", + "name": "npm:number-is-nan", + "data": { + "version": "1.0.1", + "packageName": "number-is-nan", + "hash": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.5", + "packageName": "nwsapi", + "hash": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "16.10.0", + "packageName": "nx", + "hash": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==" + } + }, + "npm:oauth-sign": { + "type": "npm", + "name": "npm:oauth-sign", + "data": { + "version": "0.9.0", + "packageName": "oauth-sign", + "hash": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + } + }, + "npm:object-assign@3.0.0": { + "type": "npm", + "name": "npm:object-assign@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "object-assign", + "hash": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" + } + }, + "npm:object-copy": { + "type": "npm", + "name": "npm:object-copy", + "data": { + "version": "0.1.0", + "packageName": "object-copy", + "hash": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.11.0", + "packageName": "object-inspect", + "hash": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + } + }, + "npm:object-is": { + "type": "npm", + "name": "npm:object-is", + "data": { + "version": "1.1.5", + "packageName": "object-is", + "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object-visit": { + "type": "npm", + "name": "npm:object-visit", + "data": { + "version": "1.0.1", + "packageName": "object-visit", + "hash": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=" + } + }, + "npm:object.assign@4.1.0": { + "type": "npm", + "name": "npm:object.assign@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "object.assign", + "hash": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.2", + "packageName": "object.assign", + "hash": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" + } + }, + "npm:object.defaults": { + "type": "npm", + "name": "npm:object.defaults", + "data": { + "version": "1.1.0", + "packageName": "object.defaults", + "hash": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.5", + "packageName": "object.entries", + "hash": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==" + } + }, + "npm:object.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.5", + "packageName": "object.fromentries", + "hash": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==" + } + }, + "npm:object.getownpropertydescriptors": { + "type": "npm", + "name": "npm:object.getownpropertydescriptors", + "data": { + "version": "2.0.3", + "packageName": "object.getownpropertydescriptors", + "hash": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=" + } + }, + "npm:object.hasown": { + "type": "npm", + "name": "npm:object.hasown", + "data": { + "version": "1.1.0", + "packageName": "object.hasown", + "hash": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==" + } + }, + "npm:object.map": { + "type": "npm", + "name": "npm:object.map", + "data": { + "version": "1.0.1", + "packageName": "object.map", + "hash": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=" + } + }, + "npm:object.pick": { + "type": "npm", + "name": "npm:object.pick", + "data": { + "version": "1.3.0", + "packageName": "object.pick", + "hash": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=" + } + }, + "npm:object.reduce": { + "type": "npm", + "name": "npm:object.reduce", + "data": { + "version": "1.0.1", + "packageName": "object.reduce", + "hash": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.1.5", + "packageName": "object.values", + "hash": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==" + } + }, + "npm:objectorarray": { + "type": "npm", + "name": "npm:objectorarray", + "data": { + "version": "1.0.4", + "packageName": "objectorarray", + "hash": "sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:office-ui-fabric-core": { + "type": "npm", + "name": "npm:office-ui-fabric-core", + "data": { + "version": "11.0.1", + "packageName": "office-ui-fabric-core", + "hash": "sha512-jcfycbVOm2aUoI+AGtHW24HvM7nUVFr44hR5NIE56EobK67bVwbNAQL15CJj3vNz5PBrnitsV9ROOB+KOEWn8g==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.3.0", + "packageName": "on-finished", + "hash": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" + } + }, + "npm:onetime@2.0.1": { + "type": "npm", + "name": "npm:onetime@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "onetime", + "hash": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:only": { + "type": "npm", + "name": "npm:only", + "data": { + "version": "0.0.2", + "packageName": "only", + "hash": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.0", + "packageName": "open", + "hash": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:opn": { + "type": "npm", + "name": "npm:opn", + "data": { + "version": "5.5.0", + "packageName": "opn", + "hash": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.8.2", + "packageName": "optionator", + "hash": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=" + } + }, + "npm:optionator@0.9.1": { + "type": "npm", + "name": "npm:optionator@0.9.1", + "data": { + "version": "0.9.1", + "packageName": "optionator", + "hash": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "5.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:ora@3.4.0": { + "type": "npm", + "name": "npm:ora@3.4.0", + "data": { + "version": "3.4.0", + "packageName": "ora", + "hash": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==" + } + }, + "npm:ora@5.4.1": { + "type": "npm", + "name": "npm:ora@5.4.1", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:ordered-read-streams": { + "type": "npm", + "name": "npm:ordered-read-streams", + "data": { + "version": "1.0.1", + "packageName": "ordered-read-streams", + "hash": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=" + } + }, + "npm:os-browserify": { + "type": "npm", + "name": "npm:os-browserify", + "data": { + "version": "0.3.0", + "packageName": "os-browserify", + "hash": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + } + }, + "npm:os-filter-obj": { + "type": "npm", + "name": "npm:os-filter-obj", + "data": { + "version": "2.0.0", + "packageName": "os-filter-obj", + "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" + } + }, + "npm:os-homedir": { + "type": "npm", + "name": "npm:os-homedir", + "data": { + "version": "1.0.2", + "packageName": "os-homedir", + "hash": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + } + }, + "npm:os-locale": { + "type": "npm", + "name": "npm:os-locale", + "data": { + "version": "1.4.0", + "packageName": "os-locale", + "hash": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + } + }, + "npm:osenv": { + "type": "npm", + "name": "npm:osenv", + "data": { + "version": "0.1.5", + "packageName": "osenv", + "hash": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==" + } + }, + "npm:ospath": { + "type": "npm", + "name": "npm:ospath", + "data": { + "version": "1.2.2", + "packageName": "ospath", + "hash": "sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=" + } + }, + "npm:override-require": { + "type": "npm", + "name": "npm:override-require", + "data": { + "version": "1.1.1", + "packageName": "override-require", + "hash": "sha1-auIvresfhQ/7DPTCD/e4fl62UN8=" + } + }, + "npm:p-all": { + "type": "npm", + "name": "npm:p-all", + "data": { + "version": "2.1.0", + "packageName": "p-all", + "hash": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "2.0.0", + "packageName": "p-cancelable", + "hash": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==" + } + }, + "npm:p-cancelable@3.0.0": { + "type": "npm", + "name": "npm:p-cancelable@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-cancelable", + "hash": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==" + } + }, + "npm:p-defer": { + "type": "npm", + "name": "npm:p-defer", + "data": { + "version": "1.0.0", + "packageName": "p-defer", + "hash": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" + } + }, + "npm:p-event": { + "type": "npm", + "name": "npm:p-event", + "data": { + "version": "4.2.0", + "packageName": "p-event", + "hash": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==" + } + }, + "npm:p-filter": { + "type": "npm", + "name": "npm:p-filter", + "data": { + "version": "2.1.0", + "packageName": "p-filter", + "hash": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + } + }, + "npm:p-graph": { + "type": "npm", + "name": "npm:p-graph", + "data": { + "version": "1.1.1", + "packageName": "p-graph", + "hash": "sha512-KdD5JEqSEbOYK5Yl4MKbHo8cNaJs+O6TW+HacoyPVau704KukYhJMhSXuC8tF332zqgB87pyAMf2FhQ54R0ugA==" + } + }, + "npm:p-limit@1.3.0": { + "type": "npm", + "name": "npm:p-limit@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "p-limit", + "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, + "npm:p-locate@2.0.0": { + "type": "npm", + "name": "npm:p-locate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "p-locate", + "hash": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:p-locate@4.1.0": { + "type": "npm", + "name": "npm:p-locate@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, + "npm:p-map-series": { + "type": "npm", + "name": "npm:p-map-series", + "data": { + "version": "2.1.0", + "packageName": "p-map-series", + "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + } + }, + "npm:p-map@2.1.0": { + "type": "npm", + "name": "npm:p-map@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "p-map", + "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + } + }, + "npm:p-map@3.0.0": { + "type": "npm", + "name": "npm:p-map@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-map", + "hash": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" + } + }, + "npm:p-map@5.5.0": { + "type": "npm", + "name": "npm:p-map@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "p-map", + "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" + } + }, + "npm:p-pipe": { + "type": "npm", + "name": "npm:p-pipe", + "data": { + "version": "3.1.0", + "packageName": "p-pipe", + "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" + } + }, + "npm:p-profiler": { + "type": "npm", + "name": "npm:p-profiler", + "data": { + "version": "0.2.1", + "packageName": "p-profiler", + "hash": "sha512-/XDER5u19OrAJ283ofIgw9hsLSoyQnjzki+tmn42vdppHOfo8PgivSSZfwaiyRAzLC2h02+Q+MKiIuuSve+7nw==" + } + }, + "npm:p-queue": { + "type": "npm", + "name": "npm:p-queue", + "data": { + "version": "6.6.2", + "packageName": "p-queue", + "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.1", + "packageName": "p-retry", + "hash": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==" + } + }, + "npm:p-timeout": { + "type": "npm", + "name": "npm:p-timeout", + "data": { + "version": "3.2.0", + "packageName": "p-timeout", + "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" + } + }, + "npm:p-try@1.0.0": { + "type": "npm", + "name": "npm:p-try@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "p-try", + "hash": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:p-waterfall": { + "type": "npm", + "name": "npm:p-waterfall", + "data": { + "version": "2.1.1", + "packageName": "p-waterfall", + "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" + } + }, + "npm:package-json": { + "type": "npm", + "name": "npm:package-json", + "data": { + "version": "4.0.1", + "packageName": "package-json", + "hash": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=" + } + }, + "npm:pacote@11.1.11": { + "type": "npm", + "name": "npm:pacote@11.1.11", + "data": { + "version": "11.1.11", + "packageName": "pacote", + "hash": "sha512-r6PHtCEhkaGv+QPx1JdE/xRdkSkZUG7dE2oloNk/CGTPGNOtaJyYqZPFeN6d6UcUrTPRvZXFo3IBzJIBopPuSA==" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "15.2.0", + "packageName": "pacote", + "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" + } + }, + "npm:pako@2.1.0": { + "type": "npm", + "name": "npm:pako@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "pako", + "hash": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" + } + }, + "npm:pako": { + "type": "npm", + "name": "npm:pako", + "data": { + "version": "1.0.11", + "packageName": "pako", + "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + } + }, + "npm:parallel-transform": { + "type": "npm", + "name": "npm:parallel-transform", + "data": { + "version": "1.1.0", + "packageName": "parallel-transform", + "hash": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=" + } + }, + "npm:parallel-webpack": { + "type": "npm", + "name": "npm:parallel-webpack", + "data": { + "version": "2.6.0", + "packageName": "parallel-webpack", + "hash": "sha512-aOOLfQ40yWWRt8214F0zNWp0DWbeCs7tJaEur0/XUlYU8Yht1sMTYt+eNrbY4VkM4O/SRSme7cdZJTtIantiOw==" + } + }, + "npm:param-case": { + "type": "npm", + "name": "npm:param-case", + "data": { + "version": "2.1.1", + "packageName": "param-case", + "hash": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=" + } + }, + "npm:param-case@3.0.4": { + "type": "npm", + "name": "npm:param-case@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "param-case", + "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parse-asn1": { + "type": "npm", + "name": "npm:parse-asn1", + "data": { + "version": "5.1.4", + "packageName": "parse-asn1", + "hash": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==" + } + }, + "npm:parse-code-context": { + "type": "npm", + "name": "npm:parse-code-context", + "data": { + "version": "1.0.0", + "packageName": "parse-code-context", + "hash": "sha512-OZQaqKaQnR21iqhlnPfVisFjBWjhnMl5J9MgbP8xC+EwoVqbXrq78lp+9Zb3ahmLzrIX5Us/qbvBnaS3hkH6OA==" + } + }, + "npm:parse-diff": { + "type": "npm", + "name": "npm:parse-diff", + "data": { + "version": "0.7.1", + "packageName": "parse-diff", + "hash": "sha512-1j3l8IKcy4yRK2W4o9EYvJLSzpAVwz4DXqCewYyx2vEwk2gcf3DBPqc8Fj4XV3K33OYJ08A8fWwyu/ykD/HUSg==" + } + }, + "npm:parse-entities": { + "type": "npm", + "name": "npm:parse-entities", + "data": { + "version": "1.2.2", + "packageName": "parse-entities", + "hash": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==" + } + }, + "npm:parse-entities@2.0.0": { + "type": "npm", + "name": "npm:parse-entities@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "parse-entities", + "hash": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==" + } + }, + "npm:parse-filepath": { + "type": "npm", + "name": "npm:parse-filepath", + "data": { + "version": "1.0.2", + "packageName": "parse-filepath", + "hash": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=" + } + }, + "npm:parse-git-config": { + "type": "npm", + "name": "npm:parse-git-config", + "data": { + "version": "2.0.3", + "packageName": "parse-git-config", + "hash": "sha512-Js7ueMZOVSZ3tP8C7E3KZiHv6QQl7lnJ+OkbxoaFazzSa2KyEHqApfGbU3XboUgUnq4ZuUmskUpYKTNx01fm5A==" + } + }, + "npm:parse-github-url": { + "type": "npm", + "name": "npm:parse-github-url", + "data": { + "version": "1.0.2", + "packageName": "parse-github-url", + "hash": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==" + } + }, + "npm:parse-json@2.2.0": { + "type": "npm", + "name": "npm:parse-json@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "parse-json", + "hash": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:parse-link-header": { + "type": "npm", + "name": "npm:parse-link-header", + "data": { + "version": "2.0.0", + "packageName": "parse-link-header", + "hash": "sha512-xjU87V0VyHZybn2RrCX5TIFGxTVZE6zqqZWMPlIKiSKuWh/X5WZdt+w1Ki1nXB+8L/KtL+nZ4iq+sfI6MrhhMw==" + } + }, + "npm:parse-node-version": { + "type": "npm", + "name": "npm:parse-node-version", + "data": { + "version": "1.0.1", + "packageName": "parse-node-version", + "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + } + }, + "npm:parse-passwd": { + "type": "npm", + "name": "npm:parse-passwd", + "data": { + "version": "1.0.0", + "packageName": "parse-passwd", + "hash": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" + } + }, + "npm:parse-path": { + "type": "npm", + "name": "npm:parse-path", + "data": { + "version": "7.0.0", + "packageName": "parse-path", + "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" + } + }, + "npm:parse-url": { + "type": "npm", + "name": "npm:parse-url", + "data": { + "version": "8.1.0", + "packageName": "parse-url", + "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" + } + }, + "npm:parse5@3.0.3": { + "type": "npm", + "name": "npm:parse5@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "parse5", + "hash": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==" + } + }, + "npm:parse5@5.1.1": { + "type": "npm", + "name": "npm:parse5@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "parse5", + "hash": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" + } + }, + "npm:parse5@6.0.1": { + "type": "npm", + "name": "npm:parse5@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "parse5", + "hash": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:pascal-case": { + "type": "npm", + "name": "npm:pascal-case", + "data": { + "version": "2.0.1", + "packageName": "pascal-case", + "hash": "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=" + } + }, + "npm:pascal-case@3.1.2": { + "type": "npm", + "name": "npm:pascal-case@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "pascal-case", + "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + } + }, + "npm:pascalcase": { + "type": "npm", + "name": "npm:pascalcase", + "data": { + "version": "0.1.1", + "packageName": "pascalcase", + "hash": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + } + }, + "npm:path-browserify@0.0.1": { + "type": "npm", + "name": "npm:path-browserify@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "path-browserify", + "hash": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + } + }, + "npm:path-browserify": { + "type": "npm", + "name": "npm:path-browserify", + "data": { + "version": "1.0.1", + "packageName": "path-browserify", + "hash": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + } + }, + "npm:path-case": { + "type": "npm", + "name": "npm:path-case", + "data": { + "version": "2.1.1", + "packageName": "path-case", + "hash": "sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU=" + } + }, + "npm:path-dirname": { + "type": "npm", + "name": "npm:path-dirname", + "data": { + "version": "1.0.2", + "packageName": "path-dirname", + "hash": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + } + }, + "npm:path-exists@2.1.0": { + "type": "npm", + "name": "npm:path-exists@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "path-exists", + "hash": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + }, + "npm:path-exists@4.0.0": { + "type": "npm", + "name": "npm:path-exists@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + } + }, + "npm:path-is-inside": { + "type": "npm", + "name": "npm:path-is-inside", + "data": { + "version": "1.0.2", + "packageName": "path-is-inside", + "hash": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + } + }, + "npm:path-key@3.1.1": { + "type": "npm", + "name": "npm:path-key@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:path-root-regex": { + "type": "npm", + "name": "npm:path-root-regex", + "data": { + "version": "0.1.2", + "packageName": "path-root-regex", + "hash": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" + } + }, + "npm:path-root": { + "type": "npm", + "name": "npm:path-root", + "data": { + "version": "0.1.1", + "packageName": "path-root", + "hash": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + } + }, + "npm:path-to-regexp@1.7.0": { + "type": "npm", + "name": "npm:path-to-regexp@1.7.0", + "data": { + "version": "1.7.0", + "packageName": "path-to-regexp", + "hash": "sha1-Wf3g9DW62suhA6hOnTvGTpa5k30=" + } + }, + "npm:path-type@1.1.0": { + "type": "npm", + "name": "npm:path-type@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "path-type", + "hash": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=" + } + }, + "npm:path-type@3.0.0": { + "type": "npm", + "name": "npm:path-type@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-type", + "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:pathval": { + "type": "npm", + "name": "npm:pathval", + "data": { + "version": "1.1.1", + "packageName": "pathval", + "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" + } + }, + "npm:pbkdf2": { + "type": "npm", + "name": "npm:pbkdf2", + "data": { + "version": "3.0.17", + "packageName": "pbkdf2", + "hash": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==" + } + }, + "npm:peek-readable": { + "type": "npm", + "name": "npm:peek-readable", + "data": { + "version": "5.0.0", + "packageName": "peek-readable", + "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" + } + }, + "npm:pend": { + "type": "npm", + "name": "npm:pend", + "data": { + "version": "1.2.0", + "packageName": "pend", + "hash": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" + } + }, + "npm:performance-now@0.2.0": { + "type": "npm", + "name": "npm:performance-now@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "performance-now", + "hash": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=" + } + }, + "npm:performance-now": { + "type": "npm", + "name": "npm:performance-now", + "data": { + "version": "2.1.0", + "packageName": "performance-now", + "hash": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:pify@5.0.0": { + "type": "npm", + "name": "npm:pify@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "pify", + "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + }, + "npm:pify@3.0.0": { + "type": "npm", + "name": "npm:pify@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pify", + "hash": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pinkie-promise": { + "type": "npm", + "name": "npm:pinkie-promise", + "data": { + "version": "2.0.1", + "packageName": "pinkie-promise", + "hash": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=" + } + }, + "npm:pinkie": { + "type": "npm", + "name": "npm:pinkie", + "data": { + "version": "2.0.4", + "packageName": "pinkie", + "hash": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + } + }, + "npm:pinpoint": { + "type": "npm", + "name": "npm:pinpoint", + "data": { + "version": "1.1.0", + "packageName": "pinpoint", + "hash": "sha1-DPd1eml38b9/ajIge3CeN3OI6HQ=" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.5", + "packageName": "pirates", + "hash": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" + } + }, + "npm:pixel-buffer-diff-folders": { + "type": "npm", + "name": "npm:pixel-buffer-diff-folders", + "data": { + "version": "1.3.0", + "packageName": "pixel-buffer-diff-folders", + "hash": "sha512-EYARjQXOAN/XKdnUiJC2JX6GdyJ1hv1MXZlGbPdB6sAKxFJJN4Cl1zZcHCVKh2eOAaWEvegTctx0VNRRrcqeog==" + } + }, + "npm:pixel-buffer-diff": { + "type": "npm", + "name": "npm:pixel-buffer-diff", + "data": { + "version": "1.3.3", + "packageName": "pixel-buffer-diff", + "hash": "sha512-Idq8Wps2P5iKgvP3DEb0aZuKqqDuqsiqY0jJmqHMYfCzq4xuNPygFg1zdZSM5k5m14u8Ww72mTY39Bu2XtT2+A==" + } + }, + "npm:pkg-dir@3.0.0": { + "type": "npm", + "name": "npm:pkg-dir@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pkg-dir", + "hash": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:pkg-dir@5.0.0": { + "type": "npm", + "name": "npm:pkg-dir@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "pkg-dir", + "hash": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==" + } + }, + "npm:pkg-install": { + "type": "npm", + "name": "npm:pkg-install", + "data": { + "version": "1.0.0", + "packageName": "pkg-install", + "hash": "sha512-UGI8bfhrDb1KN01RZ7Bq08GRQc8rmVjxQ2up0g4mUHPCYDTK1FzQ0PMmLOBCHg3yaIijZ2U3Fn9ofLa4N392Ug==" + } + }, + "npm:pkg-up": { + "type": "npm", + "name": "npm:pkg-up", + "data": { + "version": "3.1.0", + "packageName": "pkg-up", + "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + } + }, + "npm:pkg-up@4.0.0": { + "type": "npm", + "name": "npm:pkg-up@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "pkg-up", + "hash": "sha512-N4zdA4sfOe6yCv+ulPCmpnIBQ5I60xfhDr1otdBBhKte9QtEf3bhfrfkW7dTb+IQ0iEx4ZDzas0kc1o5rdWpYg==" + } + }, + "npm:playwright-core": { + "type": "npm", + "name": "npm:playwright-core", + "data": { + "version": "1.27.1", + "packageName": "playwright-core", + "hash": "sha512-9EmeXDncC2Pmp/z+teoVYlvmPWUC6ejSSYZUln7YaP89Z6lpAaiaAnqroUt/BoLo8tn7WYShcfaCh+xofZa44Q==" + } + }, + "npm:playwright": { + "type": "npm", + "name": "npm:playwright", + "data": { + "version": "1.27.1", + "packageName": "playwright", + "hash": "sha512-xXYZ7m36yTtC+oFgqH0eTgullGztKSRMb4yuwLPl8IYSmgBM88QiB+3IWb1mRIC9/NNwcgbG0RwtFlg+EAFQHQ==" + } + }, + "npm:please-upgrade-node": { + "type": "npm", + "name": "npm:please-upgrade-node", + "data": { + "version": "3.2.0", + "packageName": "please-upgrade-node", + "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" + } + }, + "npm:plop": { + "type": "npm", + "name": "npm:plop", + "data": { + "version": "2.6.0", + "packageName": "plop", + "hash": "sha512-faK3oVbWL7DYdC5ZjM+lJPrmXAPirN28QRFykPWwg6i7dv2T373JyxKlcO+XGMQcPlEYDFyKUXIuiY3Db5Ktkw==" + } + }, + "npm:plugin-error@0.1.2": { + "type": "npm", + "name": "npm:plugin-error@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "plugin-error", + "hash": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=" + } + }, + "npm:plugin-error": { + "type": "npm", + "name": "npm:plugin-error", + "data": { + "version": "1.0.1", + "packageName": "plugin-error", + "hash": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==" + } + }, + "npm:pluralize": { + "type": "npm", + "name": "npm:pluralize", + "data": { + "version": "1.2.1", + "packageName": "pluralize", + "hash": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=" + } + }, + "npm:pnp-webpack-plugin": { + "type": "npm", + "name": "npm:pnp-webpack-plugin", + "data": { + "version": "1.6.4", + "packageName": "pnp-webpack-plugin", + "hash": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==" + } + }, + "npm:polished": { + "type": "npm", + "name": "npm:polished", + "data": { + "version": "4.2.2", + "packageName": "polished", + "hash": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==" + } + }, + "npm:portfinder": { + "type": "npm", + "name": "npm:portfinder", + "data": { + "version": "1.0.28", + "packageName": "portfinder", + "hash": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==" + } + }, + "npm:posix-character-classes": { + "type": "npm", + "name": "npm:posix-character-classes", + "data": { + "version": "0.1.1", + "packageName": "posix-character-classes", + "hash": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + } + }, + "npm:postcss-flexbugs-fixes": { + "type": "npm", + "name": "npm:postcss-flexbugs-fixes", + "data": { + "version": "4.2.1", + "packageName": "postcss-flexbugs-fixes", + "hash": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "4.1.0", + "packageName": "postcss-loader", + "hash": "sha512-vbCkP70F3Q9PIk6d47aBwjqAMI4LfkXCoyxj+7NPNuVIwfTGdzv2KVQes59/RuxMniIgsYQCFSY42P3+ykJfaw==" + } + }, + "npm:postcss-loader@4.3.0": { + "type": "npm", + "name": "npm:postcss-loader@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "postcss-loader", + "hash": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==" + } + }, + "npm:postcss-modules-extract-imports@2.0.0": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:postcss-modules-local-by-default@3.0.2": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==" + } + }, + "npm:postcss-modules-scope@2.2.0": { + "type": "npm", + "name": "npm:postcss-modules-scope@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" + } + }, + "npm:postcss-modules-values@3.0.0": { + "type": "npm", + "name": "npm:postcss-modules-values@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-modules": { + "type": "npm", + "name": "npm:postcss-modules", + "data": { + "version": "4.1.3", + "packageName": "postcss-modules", + "hash": "sha512-dBT39hrXe4OAVYJe/2ZuIZ9BzYhOe7t+IhedYeQ2OxKwDpAGlkEN/fR0fGnrbx4BvgbMReRX4hCubYK9cE/pJQ==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.13", + "packageName": "postcss-selector-parser", + "hash": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.3.5", + "packageName": "postcss", + "hash": "sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA==" + } + }, + "npm:postcss@7.0.36": { + "type": "npm", + "name": "npm:postcss@7.0.36", + "data": { + "version": "7.0.36", + "packageName": "postcss", + "hash": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==" + } + }, + "npm:prefix-style": { + "type": "npm", + "name": "npm:prefix-style", + "data": { + "version": "2.0.1", + "packageName": "prefix-style", + "hash": "sha1-ZrupqHDP2jCKXcIOhekSCTLJWgY=" + } + }, + "npm:prelude-ls@1.2.1": { + "type": "npm", + "name": "npm:prelude-ls@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.1.2", + "packageName": "prelude-ls", + "hash": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + } + }, + "npm:prepend-http": { + "type": "npm", + "name": "npm:prepend-http", + "data": { + "version": "1.0.4", + "packageName": "prepend-http", + "hash": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "2.8.8", + "packageName": "prettier", + "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:pretty-bytes@6.1.1": { + "type": "npm", + "name": "npm:pretty-bytes@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "pretty-bytes", + "hash": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==" + } + }, + "npm:pretty-error": { + "type": "npm", + "name": "npm:pretty-error", + "data": { + "version": "2.1.1", + "packageName": "pretty-error", + "hash": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=" + } + }, + "npm:pretty-format@25.5.0": { + "type": "npm", + "name": "npm:pretty-format@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "pretty-format", + "hash": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" + } + }, + "npm:pretty-format@27.5.1": { + "type": "npm", + "name": "npm:pretty-format@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "pretty-format", + "hash": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "29.7.0", + "packageName": "pretty-format", + "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" + } + }, + "npm:pretty-hrtime": { + "type": "npm", + "name": "npm:pretty-hrtime", + "data": { + "version": "1.0.3", + "packageName": "pretty-hrtime", + "hash": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" + } + }, + "npm:prettyjson": { + "type": "npm", + "name": "npm:prettyjson", + "data": { + "version": "1.2.5", + "packageName": "prettyjson", + "hash": "sha512-rksPWtoZb2ZpT5OVgtmy0KHVM+Dca3iVwWY9ifwhcexfjebtgjg3wmrUt9PvJ59XIYBcknQeYHD8IAnVlh9lAw==" + } + }, + "npm:prismjs": { + "type": "npm", + "name": "npm:prismjs", + "data": { + "version": "1.16.0", + "packageName": "prismjs", + "hash": "sha512-OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA==" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:process": { + "type": "npm", + "name": "npm:process", + "data": { + "version": "0.11.10", + "packageName": "process", + "hash": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + } + }, + "npm:progress": { + "type": "npm", + "name": "npm:progress", + "data": { + "version": "2.0.3", + "packageName": "progress", + "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + } + }, + "npm:promise-retry@1.1.1": { + "type": "npm", + "name": "npm:promise-retry@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "promise-retry", + "hash": "sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0=" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" + } + }, + "npm:promise.allsettled": { + "type": "npm", + "name": "npm:promise.allsettled", + "data": { + "version": "1.0.1", + "packageName": "promise.allsettled", + "hash": "sha512-3ST7RS7TY3TYLOIe+OACZFvcWVe1osbgz2x07nTb446pa3t4GUZWidMDzQ4zf9jC2l6mRa1/3X81icFYbi+D/g==" + } + }, + "npm:promise.prototype.finally": { + "type": "npm", + "name": "npm:promise.prototype.finally", + "data": { + "version": "3.1.0", + "packageName": "promise.prototype.finally", + "hash": "sha512-7p/K2f6dI+dM8yjRQEGrTQs5hTQixUAdOGpMEA3+pVxpX5oHKRSKAXyLw9Q9HUWDTdwtoo39dSHGQtN90HcEwQ==" + } + }, + "npm:promise": { + "type": "npm", + "name": "npm:promise", + "data": { + "version": "8.1.0", + "packageName": "promise", + "hash": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:promzard": { + "type": "npm", + "name": "npm:promzard", + "data": { + "version": "1.0.0", + "packageName": "promzard", + "hash": "sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:property-information": { + "type": "npm", + "name": "npm:property-information", + "data": { + "version": "5.4.0", + "packageName": "property-information", + "hash": "sha512-nmMWAm/3vKFGmmOWOcdLjgq/Hlxa+hsuR/px1Lp/UGEyc5A22A6l78Shc2C0E71sPmAqglni+HrS7L7VJ7AUCA==" + } + }, + "npm:protocols": { + "type": "npm", + "name": "npm:protocols", + "data": { + "version": "2.0.1", + "packageName": "protocols", + "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:proxy-from-env@1.0.0": { + "type": "npm", + "name": "npm:proxy-from-env@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "proxy-from-env", + "hash": "sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:prr": { + "type": "npm", + "name": "npm:prr", + "data": { + "version": "1.0.1", + "packageName": "prr", + "hash": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + } + }, + "npm:pseudomap": { + "type": "npm", + "name": "npm:pseudomap", + "data": { + "version": "1.0.2", + "packageName": "pseudomap", + "hash": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + } + }, + "npm:psl": { + "type": "npm", + "name": "npm:psl", + "data": { + "version": "1.8.0", + "packageName": "psl", + "hash": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + } + }, + "npm:public-encrypt": { + "type": "npm", + "name": "npm:public-encrypt", + "data": { + "version": "4.0.3", + "packageName": "public-encrypt", + "hash": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==" + } + }, + "npm:pump@2.0.1": { + "type": "npm", + "name": "npm:pump@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "pump", + "hash": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:pumpify": { + "type": "npm", + "name": "npm:pumpify", + "data": { + "version": "1.5.1", + "packageName": "pumpify", + "hash": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==" + } + }, + "npm:punycode@1.3.2": { + "type": "npm", + "name": "npm:punycode@1.3.2", + "data": { + "version": "1.3.2", + "packageName": "punycode", + "hash": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.1.1", + "packageName": "punycode", + "hash": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + } + }, + "npm:puppeteer-core": { + "type": "npm", + "name": "npm:puppeteer-core", + "data": { + "version": "19.6.0", + "packageName": "puppeteer-core", + "hash": "sha512-GvqWdHr9eY/MFR5pXf9o0apnrTmG0hhS7/TtCPfeAvCbaUS1bsLMZWxNGvI/QbviRu4xxi6HrR7VW4x/4esq1Q==" + } + }, + "npm:puppeteer": { + "type": "npm", + "name": "npm:puppeteer", + "data": { + "version": "19.6.0", + "packageName": "puppeteer", + "hash": "sha512-KpRjn/bosTWe8xOQ/F5J1UmQ4inR77ADddn8G6MqMPp/y9Tl+7EycXgrjO0/3i/OQfHi5bsvkTKXRkm0ieo/ew==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.2", + "packageName": "pure-rand", + "hash": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==" + } + }, + "npm:qjobs": { + "type": "npm", + "name": "npm:qjobs", + "data": { + "version": "1.2.0", + "packageName": "qjobs", + "hash": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==" + } + }, + "npm:qs@6.9.7": { + "type": "npm", + "name": "npm:qs@6.9.7", + "data": { + "version": "6.9.7", + "packageName": "qs", + "hash": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.11.0", + "packageName": "qs", + "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" + } + }, + "npm:qs@6.5.3": { + "type": "npm", + "name": "npm:qs@6.5.3", + "data": { + "version": "6.5.3", + "packageName": "qs", + "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" + } + }, + "npm:query-string": { + "type": "npm", + "name": "npm:query-string", + "data": { + "version": "6.14.1", + "packageName": "query-string", + "hash": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" + } + }, + "npm:querystring-es3": { + "type": "npm", + "name": "npm:querystring-es3", + "data": { + "version": "0.2.1", + "packageName": "querystring-es3", + "hash": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + } + }, + "npm:querystring": { + "type": "npm", + "name": "npm:querystring", + "data": { + "version": "0.2.0", + "packageName": "querystring", + "hash": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + } + }, + "npm:querystringify": { + "type": "npm", + "name": "npm:querystringify", + "data": { + "version": "2.2.0", + "packageName": "querystringify", + "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + } + }, + "npm:quick-lru@4.0.1": { + "type": "npm", + "name": "npm:quick-lru@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "quick-lru", + "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:raf": { + "type": "npm", + "name": "npm:raf", + "data": { + "version": "3.4.1", + "packageName": "raf", + "hash": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==" + } + }, + "npm:railroad-diagrams": { + "type": "npm", + "name": "npm:railroad-diagrams", + "data": { + "version": "1.0.0", + "packageName": "railroad-diagrams", + "hash": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=" + } + }, + "npm:ramda": { + "type": "npm", + "name": "npm:ramda", + "data": { + "version": "0.26.1", + "packageName": "ramda", + "hash": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==" + } + }, + "npm:ramda@0.21.0": { + "type": "npm", + "name": "npm:ramda@0.21.0", + "data": { + "version": "0.21.0", + "packageName": "ramda", + "hash": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=" + } + }, + "npm:randexp": { + "type": "npm", + "name": "npm:randexp", + "data": { + "version": "0.4.6", + "packageName": "randexp", + "hash": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==" + } + }, + "npm:random-seedable": { + "type": "npm", + "name": "npm:random-seedable", + "data": { + "version": "1.0.8", + "packageName": "random-seedable", + "hash": "sha512-f6gzvNhAnZBht1Prn0e/tpukUNhkANntFF42uIdWDPriyEATYaRpyH8A9bYaGecUB3AL+dXeYtBUggy18fe3rw==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:randomfill": { + "type": "npm", + "name": "npm:randomfill", + "data": { + "version": "1.0.4", + "packageName": "randomfill", + "hash": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.4.3", + "packageName": "raw-body", + "hash": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==" + } + }, + "npm:raw-loader": { + "type": "npm", + "name": "npm:raw-loader", + "data": { + "version": "4.0.2", + "packageName": "raw-loader", + "hash": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:react-ace": { + "type": "npm", + "name": "npm:react-ace", + "data": { + "version": "5.10.0", + "packageName": "react-ace", + "hash": "sha512-aEK/XZCowP8IXq91e2DYqOtGhabk1bbjt+fyeW0UBcIkzDzP/RX/MeJKeyW7wsZcwElACVwyy9nnwXBTqgky3A==" + } + }, + "npm:react-addons-shallow-compare": { + "type": "npm", + "name": "npm:react-addons-shallow-compare", + "data": { + "version": "15.6.3", + "packageName": "react-addons-shallow-compare", + "hash": "sha512-EDJbgKTtGRLhr3wiGDXK/+AEJ59yqGS+tKE6mue0aNXT6ZMR7VJbbzIiT6akotmHg1BLj46ElJSb+NBMp80XBg==" + } + }, + "npm:react-app-polyfill": { + "type": "npm", + "name": "npm:react-app-polyfill", + "data": { + "version": "2.0.0", + "packageName": "react-app-polyfill", + "hash": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==" + } + }, + "npm:react-codesandboxer": { + "type": "npm", + "name": "npm:react-codesandboxer", + "data": { + "version": "3.1.5", + "packageName": "react-codesandboxer", + "hash": "sha512-gao6ydAfVI9DlmxvXJb1poqWDZt4jCSi2DWvfUCLUBmJAxH8+DkoGtjrO3VJDjdwcCFvumWb+ztg3WxsvrsWJw==" + } + }, + "npm:react-colorful": { + "type": "npm", + "name": "npm:react-colorful", + "data": { + "version": "5.3.0", + "packageName": "react-colorful", + "hash": "sha512-zWE5E88zmjPXFhv6mGnRZqKin9s5vip1O3IIGynY9EhZxN8MATUxZkT3e/9OwTEm4DjQBXc6PFWP6AetY+Px+A==" + } + }, + "npm:react-custom-scrollbars": { + "type": "npm", + "name": "npm:react-custom-scrollbars", + "data": { + "version": "4.2.1", + "packageName": "react-custom-scrollbars", + "hash": "sha1-gw/ZUCkn6X6KeMIIaBOJmyqLZts=" + } + }, + "npm:react-docgen-typescript": { + "type": "npm", + "name": "npm:react-docgen-typescript", + "data": { + "version": "2.2.2", + "packageName": "react-docgen-typescript", + "hash": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==" + } + }, + "npm:react-docgen": { + "type": "npm", + "name": "npm:react-docgen", + "data": { + "version": "5.1.0", + "packageName": "react-docgen", + "hash": "sha512-buAVMVqDEtvC7+VRDRlA9udS9cO9jFfb7yxRvKNYR9MXS0MJwaIe7OjSEydNzH9oH7LND3whDE+koFDUBtF3zA==" + } + }, + "npm:react-document-title": { + "type": "npm", + "name": "npm:react-document-title", + "data": { + "version": "2.0.3", + "packageName": "react-document-title", + "hash": "sha1-u/kioNcUEvyUgkXkKDskEt9w8rk=" + } + }, + "npm:react-dom@16.14.0": { + "type": "npm", + "name": "npm:react-dom@16.14.0", + "data": { + "version": "16.14.0", + "packageName": "react-dom", + "hash": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==" + } + }, + "npm:react-dom": { + "type": "npm", + "name": "npm:react-dom", + "data": { + "version": "17.0.2", + "packageName": "react-dom", + "hash": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==" + } + }, + "npm:react-dom@18.2.0": { + "type": "npm", + "name": "npm:react-dom@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react-dom", + "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" + } + }, + "npm:react-element-to-jsx-string": { + "type": "npm", + "name": "npm:react-element-to-jsx-string", + "data": { + "version": "14.3.4", + "packageName": "react-element-to-jsx-string", + "hash": "sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==" + } + }, + "npm:react-error-boundary": { + "type": "npm", + "name": "npm:react-error-boundary", + "data": { + "version": "3.1.0", + "packageName": "react-error-boundary", + "hash": "sha512-lmPrdi5SLRJR+AeJkqdkGlW/CRkAUvZnETahK58J4xb5wpbfDngasEGu+w0T1iXEhVrYBJZeW+c4V1hILCnMWQ==" + } + }, + "npm:react-fast-compare": { + "type": "npm", + "name": "npm:react-fast-compare", + "data": { + "version": "2.0.4", + "packageName": "react-fast-compare", + "hash": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" + } + }, + "npm:react-fela": { + "type": "npm", + "name": "npm:react-fela", + "data": { + "version": "10.6.1", + "packageName": "react-fela", + "hash": "sha512-HEtJXkvmwvvPJ4lbYrbttudgmacXnWSU9H3Syx4KiyiUBq9y/f0bn1YW/BLh4jQVVxAsbI6s6hSNornX/sdEzw==" + } + }, + "npm:react-frame-component": { + "type": "npm", + "name": "npm:react-frame-component", + "data": { + "version": "4.1.1", + "packageName": "react-frame-component", + "hash": "sha512-NfJp90AvYA1R6+uSYafQ+n+UM2HjHqi4WGHeprVXa6quU9d8o6ZFRzQ36uemY82dlkZFzf2jigFx6E4UzNFajA==" + } + }, + "npm:react-hook-form": { + "type": "npm", + "name": "npm:react-hook-form", + "data": { + "version": "5.7.2", + "packageName": "react-hook-form", + "hash": "sha512-bJvY348vayIvEUmSK7Fvea/NgqbT2racA2IbnJz/aPlQ3GBtaTeDITH6rtCa6y++obZzG6E3Q8VuoXPir7QYUg==" + } + }, + "npm:react-hooks-testing-library": { + "type": "npm", + "name": "npm:react-hooks-testing-library", + "data": { + "version": "0.5.1", + "packageName": "react-hooks-testing-library", + "hash": "sha512-wSwnVPceof2AOpdvZpiC3EX4gZiVVvY78foz0/44yYGXjC2AeaWvNAjyRH1UjlPqCfHTaEANvXCq+m9YCbWBfQ==" + } + }, + "npm:react-hot-loader": { + "type": "npm", + "name": "npm:react-hot-loader", + "data": { + "version": "4.13.0", + "packageName": "react-hot-loader", + "hash": "sha512-JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA==" + } + }, + "npm:react-input-autosize": { + "type": "npm", + "name": "npm:react-input-autosize", + "data": { + "version": "3.0.0", + "packageName": "react-input-autosize", + "hash": "sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==" + } + }, + "npm:react-inspector": { + "type": "npm", + "name": "npm:react-inspector", + "data": { + "version": "5.1.1", + "packageName": "react-inspector", + "hash": "sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "17.0.2", + "packageName": "react-is", + "hash": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + } + }, + "npm:react-is@16.13.1": { + "type": "npm", + "name": "npm:react-is@16.13.1", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:react-is@18.2.0": { + "type": "npm", + "name": "npm:react-is@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:react-lifecycles-compat": { + "type": "npm", + "name": "npm:react-lifecycles-compat", + "data": { + "version": "3.0.4", + "packageName": "react-lifecycles-compat", + "hash": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + } + }, + "npm:react-markdown": { + "type": "npm", + "name": "npm:react-markdown", + "data": { + "version": "4.3.1", + "packageName": "react-markdown", + "hash": "sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==" + } + }, + "npm:react-motion": { + "type": "npm", + "name": "npm:react-motion", + "data": { + "version": "0.5.2", + "packageName": "react-motion", + "hash": "sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==" + } + }, + "npm:react-node-resolver": { + "type": "npm", + "name": "npm:react-node-resolver", + "data": { + "version": "1.0.1", + "packageName": "react-node-resolver", + "hash": "sha1-F5inKcDiGL8vDo3fecVQ1K9h2Do=" + } + }, + "npm:react-refresh": { + "type": "npm", + "name": "npm:react-refresh", + "data": { + "version": "0.11.0", + "packageName": "react-refresh", + "hash": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" + } + }, + "npm:react-router-dom": { + "type": "npm", + "name": "npm:react-router-dom", + "data": { + "version": "5.2.0", + "packageName": "react-router-dom", + "hash": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==" + } + }, + "npm:react-router": { + "type": "npm", + "name": "npm:react-router", + "data": { + "version": "5.2.0", + "packageName": "react-router", + "hash": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==" + } + }, + "npm:react-select": { + "type": "npm", + "name": "npm:react-select", + "data": { + "version": "3.2.0", + "packageName": "react-select", + "hash": "sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==" + } + }, + "npm:react-shadow": { + "type": "npm", + "name": "npm:react-shadow", + "data": { + "version": "20.3.0", + "packageName": "react-shadow", + "hash": "sha512-oWi4W+FE6Puz+7+psL5l90wD9tu+OI1x+Uf1C2Y+O9J1AZzfaWVBbAQjvrDk/Sn8Nh0owCGSD0eemcr1ErtGzw==" + } + }, + "npm:react-shallow-renderer": { + "type": "npm", + "name": "npm:react-shallow-renderer", + "data": { + "version": "16.15.0", + "packageName": "react-shallow-renderer", + "hash": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==" + } + }, + "npm:react-side-effect": { + "type": "npm", + "name": "npm:react-side-effect", + "data": { + "version": "1.2.0", + "packageName": "react-side-effect", + "hash": "sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==" + } + }, + "npm:react-sizeme": { + "type": "npm", + "name": "npm:react-sizeme", + "data": { + "version": "3.0.1", + "packageName": "react-sizeme", + "hash": "sha512-9Hf1NLgSbny1bha77l9HwvwwxQUJxFUqi44Ih+y3evA+PezBpGdCGlnvye6avss2cIgs9PgdYgMnfuzJWn/RUw==" + } + }, + "npm:react-source-render": { + "type": "npm", + "name": "npm:react-source-render", + "data": { + "version": "4.0.0-1", + "packageName": "react-source-render", + "hash": "sha512-JSL6Xs2mcHJ3jtLoe/K9aualo3XJSQW5nOqLthHkjTCrEvfb7jaSfpkjDVFGvgNCVOu7keClX7I/ZQaTP1gnVw==" + } + }, + "npm:react-syntax-highlighter": { + "type": "npm", + "name": "npm:react-syntax-highlighter", + "data": { + "version": "10.3.5", + "packageName": "react-syntax-highlighter", + "hash": "sha512-KR4YE7Q91bHEhvIxuvs/J3tJWfxTyBAAMS4fcMOR9h0C6SoCZIr1OUkVamHOqHMDEck4tdS9gp0D/vlAyPLftA==" + } + }, + "npm:react-table": { + "type": "npm", + "name": "npm:react-table", + "data": { + "version": "7.1.0", + "packageName": "react-table", + "hash": "sha512-AZpgW0Xpo6Z7jxXZIBovzCGoYVkuBwATsJh7X4+JXwq9JtDaorOmxWC9gKx5Hui4d+n+I99enyyJS+LRtKydxA==" + } + }, + "npm:react-test-renderer": { + "type": "npm", + "name": "npm:react-test-renderer", + "data": { + "version": "17.0.2", + "packageName": "react-test-renderer", + "hash": "sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==" + } + }, + "npm:react-textarea-autosize": { + "type": "npm", + "name": "npm:react-textarea-autosize", + "data": { + "version": "7.0.4", + "packageName": "react-textarea-autosize", + "hash": "sha512-1cC8pFSrIVH92aE+UKxGQ2Gqq43qdIcMscJKScEFeBNemn6gHa+NwKqdXkHxxg5H6uuvW+cPpJPTes6zh90M+A==" + } + }, + "npm:react-transition-group": { + "type": "npm", + "name": "npm:react-transition-group", + "data": { + "version": "4.4.2", + "packageName": "react-transition-group", + "hash": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==" + } + }, + "npm:react-virtualized": { + "type": "npm", + "name": "npm:react-virtualized", + "data": { + "version": "9.21.2", + "packageName": "react-virtualized", + "hash": "sha512-oX7I7KYiUM7lVXQzmhtF4Xg/4UA5duSA+/ZcAvdWlTLFCoFYq1SbauJT5gZK9cZS/wdYR6TPGpX/dqzvTqQeBA==" + } + }, + "npm:react-vis": { + "type": "npm", + "name": "npm:react-vis", + "data": { + "version": "1.11.7", + "packageName": "react-vis", + "hash": "sha512-vJqS12l/6RHeSq8DVl4PzX0j8iPgbT8H8PtgTRsimKsBNcPjPseO4RICw1FUPrwj8MPrrna34LBtzyC4ATd5Ow==" + } + }, + "npm:react-window": { + "type": "npm", + "name": "npm:react-window", + "data": { + "version": "1.8.6", + "packageName": "react-window", + "hash": "sha512-8VwEEYyjz6DCnGBsd+MgkD0KJ2/OXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg==" + } + }, + "npm:react@16.14.0": { + "type": "npm", + "name": "npm:react@16.14.0", + "data": { + "version": "16.14.0", + "packageName": "react", + "hash": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==" + } + }, + "npm:react": { + "type": "npm", + "name": "npm:react", + "data": { + "version": "17.0.2", + "packageName": "react", + "hash": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==" + } + }, + "npm:react@18.2.0": { + "type": "npm", + "name": "npm:react@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react", + "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" + } + }, + "npm:read-cmd-shim": { + "type": "npm", + "name": "npm:read-cmd-shim", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "1.1.3", + "packageName": "read-package-json-fast", + "hash": "sha512-MmFqiyfCXV2Dmm4jH24DEGhxdkUDFivJQj4oPZQPOKywxR7HWBE6WnMWDAapfFHi3wm1b+mhR+XHlUH0CL8axg==" + } + }, + "npm:read-package-json-fast@3.0.2": { + "type": "npm", + "name": "npm:read-package-json-fast@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" + } + }, + "npm:read-package-json": { + "type": "npm", + "name": "npm:read-package-json", + "data": { + "version": "6.0.4", + "packageName": "read-package-json", + "hash": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==" + } + }, + "npm:read-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "7.0.1", + "packageName": "read-pkg-up", + "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" + } + }, + "npm:read-pkg-up@1.0.1": { + "type": "npm", + "name": "npm:read-pkg-up@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "read-pkg-up", + "hash": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=" + } + }, + "npm:read-pkg-up@3.0.0": { + "type": "npm", + "name": "npm:read-pkg-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "read-pkg-up", + "hash": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=" + } + }, + "npm:read-pkg@1.1.0": { + "type": "npm", + "name": "npm:read-pkg@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "read-pkg", + "hash": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=" + } + }, + "npm:read-pkg@5.2.0": { + "type": "npm", + "name": "npm:read-pkg@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "read-pkg", + "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" + } + }, + "npm:read-yaml-file": { + "type": "npm", + "name": "npm:read-yaml-file", + "data": { + "version": "2.1.0", + "packageName": "read-yaml-file", + "hash": "sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==" + } + }, + "npm:read": { + "type": "npm", + "name": "npm:read", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "2.3.7", + "packageName": "readable-stream", + "hash": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" + } + }, + "npm:readable-stream@3.6.0": { + "type": "npm", + "name": "npm:readable-stream@3.6.0", + "data": { + "version": "3.6.0", + "packageName": "readable-stream", + "hash": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + } + }, + "npm:readable-stream@1.0.34": { + "type": "npm", + "name": "npm:readable-stream@1.0.34", + "data": { + "version": "1.0.34", + "packageName": "readable-stream", + "hash": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=" + } + }, + "npm:readable-stream@1.1.14": { + "type": "npm", + "name": "npm:readable-stream@1.1.14", + "data": { + "version": "1.1.14", + "packageName": "readable-stream", + "hash": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=" + } + }, + "npm:readable-web-to-node-stream": { + "type": "npm", + "name": "npm:readable-web-to-node-stream", + "data": { + "version": "3.0.2", + "packageName": "readable-web-to-node-stream", + "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" + } + }, + "npm:readdirp@2.2.1": { + "type": "npm", + "name": "npm:readdirp@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "readdirp", + "hash": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==" + } + }, + "npm:readdirp@3.2.0": { + "type": "npm", + "name": "npm:readdirp@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "readdirp", + "hash": "sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:readline-sync": { + "type": "npm", + "name": "npm:readline-sync", + "data": { + "version": "1.4.10", + "packageName": "readline-sync", + "hash": "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==" + } + }, + "npm:rechoir": { + "type": "npm", + "name": "npm:rechoir", + "data": { + "version": "0.6.2", + "packageName": "rechoir", + "hash": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" + } + }, + "npm:rechoir@0.7.0": { + "type": "npm", + "name": "npm:rechoir@0.7.0", + "data": { + "version": "0.7.0", + "packageName": "rechoir", + "hash": "sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q==" + } + }, + "npm:redent@1.0.0": { + "type": "npm", + "name": "npm:redent@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "redent", + "hash": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=" + } + }, + "npm:redent": { + "type": "npm", + "name": "npm:redent", + "data": { + "version": "3.0.0", + "packageName": "redent", + "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + } + }, + "npm:redeyed": { + "type": "npm", + "name": "npm:redeyed", + "data": { + "version": "2.1.1", + "packageName": "redeyed", + "hash": "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=" + } + }, + "npm:reduce-flatten": { + "type": "npm", + "name": "npm:reduce-flatten", + "data": { + "version": "2.0.0", + "packageName": "reduce-flatten", + "hash": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==" + } + }, + "npm:refractor": { + "type": "npm", + "name": "npm:refractor", + "data": { + "version": "2.9.0", + "packageName": "refractor", + "hash": "sha512-lCnCYvXpqd8hC7ksuvo516rz5q4NwzBbq0X5qjH5pxRfcQKiQxKZ8JctrSQmrR/7pcV2TRrs9TT+Whmq/wtluQ==" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.0", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:regenerator-runtime@0.11.1": { + "type": "npm", + "name": "npm:regenerator-runtime@0.11.1", + "data": { + "version": "0.11.1", + "packageName": "regenerator-runtime", + "hash": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.13.11", + "packageName": "regenerator-runtime", + "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } + }, + "npm:regenerator-runtime@0.14.0": { + "type": "npm", + "name": "npm:regenerator-runtime@0.14.0", + "data": { + "version": "0.14.0", + "packageName": "regenerator-runtime", + "hash": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + } + }, + "npm:regenerator-transform": { + "type": "npm", + "name": "npm:regenerator-transform", + "data": { + "version": "0.15.2", + "packageName": "regenerator-transform", + "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" + } + }, + "npm:regex-not": { + "type": "npm", + "name": "npm:regex-not", + "data": { + "version": "1.0.2", + "packageName": "regex-not", + "hash": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.3.1", + "packageName": "regexp.prototype.flags", + "hash": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==" + } + }, + "npm:regexpp": { + "type": "npm", + "name": "npm:regexpp", + "data": { + "version": "3.1.0", + "packageName": "regexpp", + "hash": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "3.4.0", + "packageName": "registry-auth-token", + "hash": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==" + } + }, + "npm:registry-url": { + "type": "npm", + "name": "npm:registry-url", + "data": { + "version": "3.1.0", + "packageName": "registry-url", + "hash": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:relateurl": { + "type": "npm", + "name": "npm:relateurl", + "data": { + "version": "0.2.7", + "packageName": "relateurl", + "hash": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + } + }, + "npm:remark-external-links": { + "type": "npm", + "name": "npm:remark-external-links", + "data": { + "version": "8.0.0", + "packageName": "remark-external-links", + "hash": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==" + } + }, + "npm:remark-footnotes": { + "type": "npm", + "name": "npm:remark-footnotes", + "data": { + "version": "2.0.0", + "packageName": "remark-footnotes", + "hash": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" + } + }, + "npm:remark-frontmatter": { + "type": "npm", + "name": "npm:remark-frontmatter", + "data": { + "version": "1.3.2", + "packageName": "remark-frontmatter", + "hash": "sha512-2eayxITZ8rezsXdgcXnYB3iLivohm2V/ZT4Ne8uhua6A4pk6GdLE2ZzJnbnINtD1HRLaTdB7RwF9sgUbMptJZA==" + } + }, + "npm:remark-mdx": { + "type": "npm", + "name": "npm:remark-mdx", + "data": { + "version": "1.6.22", + "packageName": "remark-mdx", + "hash": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==" + } + }, + "npm:remark-parse@8.0.3": { + "type": "npm", + "name": "npm:remark-parse@8.0.3", + "data": { + "version": "8.0.3", + "packageName": "remark-parse", + "hash": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==" + } + }, + "npm:remark-parse": { + "type": "npm", + "name": "npm:remark-parse", + "data": { + "version": "5.0.0", + "packageName": "remark-parse", + "hash": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==" + } + }, + "npm:remark-slug": { + "type": "npm", + "name": "npm:remark-slug", + "data": { + "version": "6.0.0", + "packageName": "remark-slug", + "hash": "sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==" + } + }, + "npm:remark-squeeze-paragraphs": { + "type": "npm", + "name": "npm:remark-squeeze-paragraphs", + "data": { + "version": "4.0.0", + "packageName": "remark-squeeze-paragraphs", + "hash": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==" + } + }, + "npm:remove-bom-buffer": { + "type": "npm", + "name": "npm:remove-bom-buffer", + "data": { + "version": "3.0.0", + "packageName": "remove-bom-buffer", + "hash": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==" + } + }, + "npm:remove-bom-stream": { + "type": "npm", + "name": "npm:remove-bom-stream", + "data": { + "version": "1.2.0", + "packageName": "remove-bom-stream", + "hash": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=" + } + }, + "npm:remove-trailing-separator": { + "type": "npm", + "name": "npm:remove-trailing-separator", + "data": { + "version": "1.1.0", + "packageName": "remove-trailing-separator", + "hash": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + } + }, + "npm:renderkid": { + "type": "npm", + "name": "npm:renderkid", + "data": { + "version": "2.0.7", + "packageName": "renderkid", + "hash": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==" + } + }, + "npm:repeat-element": { + "type": "npm", + "name": "npm:repeat-element", + "data": { + "version": "1.1.3", + "packageName": "repeat-element", + "hash": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + } + }, + "npm:repeat-string": { + "type": "npm", + "name": "npm:repeat-string", + "data": { + "version": "1.6.1", + "packageName": "repeat-string", + "hash": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + } + }, + "npm:repeating": { + "type": "npm", + "name": "npm:repeating", + "data": { + "version": "2.0.1", + "packageName": "repeating", + "hash": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=" + } + }, + "npm:replace-ext@0.0.1": { + "type": "npm", + "name": "npm:replace-ext@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "replace-ext", + "hash": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + } + }, + "npm:replace-ext": { + "type": "npm", + "name": "npm:replace-ext", + "data": { + "version": "1.0.0", + "packageName": "replace-ext", + "hash": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=" + } + }, + "npm:replace-homedir": { + "type": "npm", + "name": "npm:replace-homedir", + "data": { + "version": "1.0.0", + "packageName": "replace-homedir", + "hash": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=" + } + }, + "npm:replace-in-file": { + "type": "npm", + "name": "npm:replace-in-file", + "data": { + "version": "6.1.0", + "packageName": "replace-in-file", + "hash": "sha512-URzjyF3nucvejuY13HFd7O+Q6tFJRLKGHLYVvSh+LiZj3gFXzSYGnIkQflnJJulCAI2/RTZaZkpOtdVdW0EhQA==" + } + }, + "npm:repromise": { + "type": "npm", + "name": "npm:repromise", + "data": { + "version": "4.0.0", + "packageName": "repromise", + "hash": "sha512-ad12PiDwzGOVD4Oc7j9cJPJuX700mquqsMWyoJ5HHysuIMh7jrF8c7lpCC6zRiKAe+ufOrD285KGPtExgAokTw==" + } + }, + "npm:request-progress": { + "type": "npm", + "name": "npm:request-progress", + "data": { + "version": "3.0.0", + "packageName": "request-progress", + "hash": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=" + } + }, + "npm:request-promise-core": { + "type": "npm", + "name": "npm:request-promise-core", + "data": { + "version": "1.1.4", + "packageName": "request-promise-core", + "hash": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==" + } + }, + "npm:request-promise-native": { + "type": "npm", + "name": "npm:request-promise-native", + "data": { + "version": "1.0.9", + "packageName": "request-promise-native", + "hash": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==" + } + }, + "npm:request": { + "type": "npm", + "name": "npm:request", + "data": { + "version": "2.88.2", + "packageName": "request", + "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:require-main-filename@1.0.1": { + "type": "npm", + "name": "npm:require-main-filename@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "require-main-filename", + "hash": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + } + }, + "npm:require-main-filename": { + "type": "npm", + "name": "npm:require-main-filename", + "data": { + "version": "2.0.0", + "packageName": "require-main-filename", + "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + } + }, + "npm:require-package-name": { + "type": "npm", + "name": "npm:require-package-name", + "data": { + "version": "2.0.1", + "packageName": "require-package-name", + "hash": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + } + }, + "npm:reselect": { + "type": "npm", + "name": "npm:reselect", + "data": { + "version": "4.1.7", + "packageName": "reselect", + "hash": "sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==" + } + }, + "npm:resolve-alpn": { + "type": "npm", + "name": "npm:resolve-alpn", + "data": { + "version": "1.2.1", + "packageName": "resolve-alpn", + "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:resolve-dir": { + "type": "npm", + "name": "npm:resolve-dir", + "data": { + "version": "1.0.1", + "packageName": "resolve-dir", + "hash": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:resolve-from@3.0.0": { + "type": "npm", + "name": "npm:resolve-from@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "resolve-from", + "hash": "sha1-six699nWiBvItuZTM17rywoYh0g=" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-options": { + "type": "npm", + "name": "npm:resolve-options", + "data": { + "version": "1.1.0", + "packageName": "resolve-options", + "hash": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=" + } + }, + "npm:resolve-path": { + "type": "npm", + "name": "npm:resolve-path", + "data": { + "version": "1.4.0", + "packageName": "resolve-path", + "hash": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==" + } + }, + "npm:resolve-pathname": { + "type": "npm", + "name": "npm:resolve-pathname", + "data": { + "version": "3.0.0", + "packageName": "resolve-pathname", + "hash": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + } + }, + "npm:resolve-pkg-maps": { + "type": "npm", + "name": "npm:resolve-pkg-maps", + "data": { + "version": "1.0.0", + "packageName": "resolve-pkg-maps", + "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + } + }, + "npm:resolve-url": { + "type": "npm", + "name": "npm:resolve-url", + "data": { + "version": "0.2.1", + "packageName": "resolve-url", + "hash": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "1.1.0", + "packageName": "resolve.exports", + "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + } + }, + "npm:resolve.exports@2.0.2": { + "type": "npm", + "name": "npm:resolve.exports@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve@1.1.7": { + "type": "npm", + "name": "npm:resolve@1.1.7", + "data": { + "version": "1.1.7", + "packageName": "resolve", + "hash": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" + } + }, + "npm:resolve@1.15.1": { + "type": "npm", + "name": "npm:resolve@1.15.1", + "data": { + "version": "1.15.1", + "packageName": "resolve", + "hash": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.0", + "packageName": "resolve", + "hash": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==" + } + }, + "npm:resolve@2.0.0-next.3": { + "type": "npm", + "name": "npm:resolve@2.0.0-next.3", + "data": { + "version": "2.0.0-next.3", + "packageName": "resolve", + "hash": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==" + } + }, + "npm:resolve@1.17.0": { + "type": "npm", + "name": "npm:resolve@1.17.0", + "data": { + "version": "1.17.0", + "packageName": "resolve", + "hash": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==" + } + }, + "npm:resolve@1.19.0": { + "type": "npm", + "name": "npm:resolve@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "resolve", + "hash": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "2.0.0", + "packageName": "responselike", + "hash": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==" + } + }, + "npm:restore-cursor@2.0.0": { + "type": "npm", + "name": "npm:restore-cursor@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "restore-cursor", + "hash": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:ret": { + "type": "npm", + "name": "npm:ret", + "data": { + "version": "0.1.15", + "packageName": "ret", + "hash": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + } + }, + "npm:retry@0.10.1": { + "type": "npm", + "name": "npm:retry@0.10.1", + "data": { + "version": "0.10.1", + "packageName": "retry", + "hash": "sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=" + } + }, + "npm:retry@0.13.1": { + "type": "npm", + "name": "npm:retry@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.0", + "packageName": "rfdc", + "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + } + }, + "npm:riceburn": { + "type": "npm", + "name": "npm:riceburn", + "data": { + "version": "1.3.1", + "packageName": "riceburn", + "hash": "sha512-pjt5ION8z9sGIR4UHLO59Ow7ecgxJoraY+kxACzzap5bgDTSzJ8SSEOE2yxV335yfgrOkcck9JsxM2CdoiGq5A==" + } + }, + "npm:rimraf@2.7.1": { + "type": "npm", + "name": "npm:rimraf@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "rimraf", + "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@4.4.1": { + "type": "npm", + "name": "npm:rimraf@4.4.1", + "data": { + "version": "4.4.1", + "packageName": "rimraf", + "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" + } + }, + "npm:ripemd160": { + "type": "npm", + "name": "npm:ripemd160", + "data": { + "version": "2.0.2", + "packageName": "ripemd160", + "hash": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==" + } + }, + "npm:rollup-plugin-commonjs": { + "type": "npm", + "name": "npm:rollup-plugin-commonjs", + "data": { + "version": "10.1.0", + "packageName": "rollup-plugin-commonjs", + "hash": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==" + } + }, + "npm:rollup-plugin-filesize": { + "type": "npm", + "name": "npm:rollup-plugin-filesize", + "data": { + "version": "8.0.2", + "packageName": "rollup-plugin-filesize", + "hash": "sha512-PcOYHPvpRh2sYWLX/1XbaLcRZ//rqwihl9iBiJWWo39XiyQlWv5623XWoXM9PjYcxP1q+7L7hjmlqzNx4kptlw==" + } + }, + "npm:rollup-plugin-node-resolve": { + "type": "npm", + "name": "npm:rollup-plugin-node-resolve", + "data": { + "version": "5.2.0", + "packageName": "rollup-plugin-node-resolve", + "hash": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==" + } + }, + "npm:rollup-plugin-terser": { + "type": "npm", + "name": "npm:rollup-plugin-terser", + "data": { + "version": "5.3.1", + "packageName": "rollup-plugin-terser", + "hash": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==" + } + }, + "npm:rollup-plugin-transform-tagged-template": { + "type": "npm", + "name": "npm:rollup-plugin-transform-tagged-template", + "data": { + "version": "0.0.3", + "packageName": "rollup-plugin-transform-tagged-template", + "hash": "sha512-IY8JwVTZxwOqQU1B1lqBAfvj0PXgy60pe480mgfs5CCbwytBMQCSrG1eHnD1o8+JCl+5gHdKK5wNXnFngCHxkw==" + } + }, + "npm:rollup-plugin-typescript2": { + "type": "npm", + "name": "npm:rollup-plugin-typescript2", + "data": { + "version": "0.27.1", + "packageName": "rollup-plugin-typescript2", + "hash": "sha512-RJl77Bbj1EunAQDC3dK/O2HWuSUX3oJbRGzyLoS5o9W4Hs1Nix3Gavqj1Lzs5Y6Ff4H2xXfmZ1WWUQCYocSbzQ==" + } + }, + "npm:rollup-pluginutils": { + "type": "npm", + "name": "npm:rollup-pluginutils", + "data": { + "version": "2.8.2", + "packageName": "rollup-pluginutils", + "hash": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==" + } + }, + "npm:rollup": { + "type": "npm", + "name": "npm:rollup", + "data": { + "version": "2.45.2", + "packageName": "rollup", + "hash": "sha512-kRRU7wXzFHUzBIv0GfoFFIN3m9oteY4uAsKllIpQDId5cfnkWF2J130l+27dzDju0E6MScKiV0ZM5Bw8m4blYQ==" + } + }, + "npm:rst-selector-parser": { + "type": "npm", + "name": "npm:rst-selector-parser", + "data": { + "version": "2.2.3", + "packageName": "rst-selector-parser", + "hash": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=" + } + }, + "npm:rsvp": { + "type": "npm", + "name": "npm:rsvp", + "data": { + "version": "4.8.5", + "packageName": "rsvp", + "hash": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" + } + }, + "npm:rtl-css-js": { + "type": "npm", + "name": "npm:rtl-css-js", + "data": { + "version": "1.16.1", + "packageName": "rtl-css-js", + "hash": "sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==" + } + }, + "npm:run-async": { + "type": "npm", + "name": "npm:run-async", + "data": { + "version": "2.4.1", + "packageName": "run-async", + "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + } + }, + "npm:run-parallel-limit": { + "type": "npm", + "name": "npm:run-parallel-limit", + "data": { + "version": "1.0.6", + "packageName": "run-parallel-limit", + "hash": "sha512-yFFs4Q2kECi5mWXyyZj3UlAZ5OFq5E07opABC+EmhZdjEkrxXaUwFqOaaNF4tbayMnBxrsbujpeCYTVjGufZGQ==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.1.9", + "packageName": "run-parallel", + "hash": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" + } + }, + "npm:run-queue": { + "type": "npm", + "name": "npm:run-queue", + "data": { + "version": "1.0.3", + "packageName": "run-queue", + "hash": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=" + } + }, + "npm:rw": { + "type": "npm", + "name": "npm:rw", + "data": { + "version": "1.3.3", + "packageName": "rw", + "hash": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" + } + }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.1", + "packageName": "rxjs", + "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" + } + }, + "npm:rxjs@6.6.7": { + "type": "npm", + "name": "npm:rxjs@6.6.7", + "data": { + "version": "6.6.7", + "packageName": "rxjs", + "hash": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==" + } + }, + "npm:safe-buffer@5.1.1": { + "type": "npm", + "name": "npm:safe-buffer@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "safe-buffer", + "hash": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:safe-regex": { + "type": "npm", + "name": "npm:safe-regex", + "data": { + "version": "1.1.0", + "packageName": "safe-regex", + "hash": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:sane": { + "type": "npm", + "name": "npm:sane", + "data": { + "version": "4.1.0", + "packageName": "sane", + "hash": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==" + } + }, + "npm:sanitize-filename": { + "type": "npm", + "name": "npm:sanitize-filename", + "data": { + "version": "1.6.3", + "packageName": "sanitize-filename", + "hash": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==" + } + }, + "npm:sass-loader": { + "type": "npm", + "name": "npm:sass-loader", + "data": { + "version": "12.4.0", + "packageName": "sass-loader", + "hash": "sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==" + } + }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.49.11", + "packageName": "sass", + "hash": "sha512-wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ==" + } + }, + "npm:satisfied": { + "type": "npm", + "name": "npm:satisfied", + "data": { + "version": "1.1.2", + "packageName": "satisfied", + "hash": "sha512-4/p+apZMl0WJVH8/HGT4qu5nXey1SokSgGCuxXqFV8ntAXVqRjfjn0i5Zxbp7xh7NsRk2zy71xO+qADxXATLgw==" + } + }, + "npm:sax@0.5.8": { + "type": "npm", + "name": "npm:sax@0.5.8", + "data": { + "version": "0.5.8", + "packageName": "sax", + "hash": "sha512-c0YL9VcSfcdH3F1Qij9qpYJFpKFKMXNOkLWFssBL3RuF7ZS8oZhllR2rWlCRjDTJsfq3R6wbSsaRU6o0rkEdNw==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.2.4", + "packageName": "sax", + "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:scheduler": { + "type": "npm", + "name": "npm:scheduler", + "data": { + "version": "0.20.2", + "packageName": "scheduler", + "hash": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==" + } + }, + "npm:scheduler@0.19.1": { + "type": "npm", + "name": "npm:scheduler@0.19.1", + "data": { + "version": "0.19.1", + "packageName": "scheduler", + "hash": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==" + } + }, + "npm:scheduler@0.23.0": { + "type": "npm", + "name": "npm:scheduler@0.23.0", + "data": { + "version": "0.23.0", + "packageName": "scheduler", + "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" + } + }, + "npm:schema-utils@2.7.0": { + "type": "npm", + "name": "npm:schema-utils@2.7.0", + "data": { + "version": "2.7.0", + "packageName": "schema-utils", + "hash": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "3.1.1", + "packageName": "schema-utils", + "hash": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" + } + }, + "npm:schema-utils@0.3.0": { + "type": "npm", + "name": "npm:schema-utils@0.3.0", + "data": { + "version": "0.3.0", + "packageName": "schema-utils", + "hash": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=" + } + }, + "npm:schema-utils@1.0.0": { + "type": "npm", + "name": "npm:schema-utils@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "schema-utils", + "hash": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==" + } + }, + "npm:schema-utils@3.1.2": { + "type": "npm", + "name": "npm:schema-utils@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "schema-utils", + "hash": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==" + } + }, + "npm:schema-utils@4.0.0": { + "type": "npm", + "name": "npm:schema-utils@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "schema-utils", + "hash": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + } + }, + "npm:select": { + "type": "npm", + "name": "npm:select", + "data": { + "version": "1.1.2", + "packageName": "select", + "hash": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" + } + }, + "npm:selenium-webdriver": { + "type": "npm", + "name": "npm:selenium-webdriver", + "data": { + "version": "4.3.1", + "packageName": "selenium-webdriver", + "hash": "sha512-TjH/ls1WKRQoFEHcqtn6UtwcLnA3yvx08v9cSSFYvyhp8hJWRtbe9ae2I8uXPisEZ2EaGKKoxBZ4EHv0BJM15g==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.1.1", + "packageName": "selfsigned", + "hash": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==" + } + }, + "npm:semver-compare": { + "type": "npm", + "name": "npm:semver-compare", + "data": { + "version": "1.0.0", + "packageName": "semver-compare", + "hash": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=" + } + }, + "npm:semver-diff": { + "type": "npm", + "name": "npm:semver-diff", + "data": { + "version": "2.1.0", + "packageName": "semver-diff", + "hash": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=" + } + }, + "npm:semver-greatest-satisfied-range": { + "type": "npm", + "name": "npm:semver-greatest-satisfied-range", + "data": { + "version": "1.1.0", + "packageName": "semver-greatest-satisfied-range", + "hash": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=" + } + }, + "npm:semver-regex": { + "type": "npm", + "name": "npm:semver-regex", + "data": { + "version": "4.0.5", + "packageName": "semver-regex", + "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" + } + }, + "npm:semver-truncate": { + "type": "npm", + "name": "npm:semver-truncate", + "data": { + "version": "3.0.0", + "packageName": "semver-truncate", + "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" + } + }, + "npm:semver@5.7.1": { + "type": "npm", + "name": "npm:semver@5.7.1", + "data": { + "version": "5.7.1", + "packageName": "semver", + "hash": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + }, + "npm:semver@7.5.2": { + "type": "npm", + "name": "npm:semver@7.5.2", + "data": { + "version": "7.5.2", + "packageName": "semver", + "hash": "sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver@7.5.4": { + "type": "npm", + "name": "npm:semver@7.5.4", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" + } + }, + "npm:semver@7.3.8": { + "type": "npm", + "name": "npm:semver@7.3.8", + "data": { + "version": "7.3.8", + "packageName": "semver", + "hash": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.17.2", + "packageName": "send", + "hash": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==" + } + }, + "npm:sentence-case": { + "type": "npm", + "name": "npm:sentence-case", + "data": { + "version": "2.1.1", + "packageName": "sentence-case", + "hash": "sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ=" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "4.0.0", + "packageName": "serialize-javascript", + "hash": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" + } + }, + "npm:serialize-javascript@5.0.1": { + "type": "npm", + "name": "npm:serialize-javascript@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==" + } + }, + "npm:serialize-javascript@6.0.1": { + "type": "npm", + "name": "npm:serialize-javascript@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" + } + }, + "npm:serve-favicon": { + "type": "npm", + "name": "npm:serve-favicon", + "data": { + "version": "2.5.0", + "packageName": "serve-favicon", + "hash": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.14.2", + "packageName": "serve-static", + "hash": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + } + }, + "npm:set-value": { + "type": "npm", + "name": "npm:set-value", + "data": { + "version": "2.0.1", + "packageName": "set-value", + "hash": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==" + } + }, + "npm:setimmediate": { + "type": "npm", + "name": "npm:setimmediate", + "data": { + "version": "1.0.5", + "packageName": "setimmediate", + "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:sha.js": { + "type": "npm", + "name": "npm:sha.js", + "data": { + "version": "2.4.11", + "packageName": "sha.js", + "hash": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shallow-equal": { + "type": "npm", + "name": "npm:shallow-equal", + "data": { + "version": "1.2.1", + "packageName": "shallow-equal", + "hash": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" + } + }, + "npm:shallowequal": { + "type": "npm", + "name": "npm:shallowequal", + "data": { + "version": "1.1.0", + "packageName": "shallowequal", + "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" + } + }, + "npm:shebang-command@2.0.0": { + "type": "npm", + "name": "npm:shebang-command@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "1.0.0", + "packageName": "shebang-regex", + "hash": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + } + }, + "npm:shebang-regex@3.0.0": { + "type": "npm", + "name": "npm:shebang-regex@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:signal-exit@4.0.2": { + "type": "npm", + "name": "npm:signal-exit@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "signal-exit", + "hash": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" + } + }, + "npm:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "1.8.0", + "packageName": "sigstore", + "hash": "sha512-ogU8qtQ3VFBawRJ8wjsBEX/vIFeHuGs1fm4jZtjWQwjo8pfAt7T/rh+udlAN4+QUe0IzA8qRSc/YZ7dHP6kh+w==" + } + }, + "npm:simple-swizzle": { + "type": "npm", + "name": "npm:simple-swizzle", + "data": { + "version": "0.2.2", + "packageName": "simple-swizzle", + "hash": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=" + } + }, + "npm:simulant": { + "type": "npm", + "name": "npm:simulant", + "data": { + "version": "0.2.2", + "packageName": "simulant", + "hash": "sha1-8bzlJxK2p6DaON392n6DsgsdoB4=" + } + }, + "npm:sirv": { + "type": "npm", + "name": "npm:sirv", + "data": { + "version": "1.0.10", + "packageName": "sirv", + "hash": "sha512-H5EZCoZaggEUQy8ocKsF7WAToGuZhjJlLvM3XOef46CbdIgbNeQ1p32N1PCuCjkVYwrAVOSMacN6CXXgIzuspg==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:slash@2.0.0": { + "type": "npm", + "name": "npm:slash@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "slash", + "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slash@5.1.0": { + "type": "npm", + "name": "npm:slash@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:slice-ansi@3.0.0": { + "type": "npm", + "name": "npm:slice-ansi@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "slice-ansi", + "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "4.0.0", + "packageName": "slice-ansi", + "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + } + }, + "npm:snake-case": { + "type": "npm", + "name": "npm:snake-case", + "data": { + "version": "2.1.0", + "packageName": "snake-case", + "hash": "sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8=" + } + }, + "npm:snapdragon-node": { + "type": "npm", + "name": "npm:snapdragon-node", + "data": { + "version": "2.1.1", + "packageName": "snapdragon-node", + "hash": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==" + } + }, + "npm:snapdragon-util": { + "type": "npm", + "name": "npm:snapdragon-util", + "data": { + "version": "3.0.1", + "packageName": "snapdragon-util", + "hash": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==" + } + }, + "npm:snapdragon": { + "type": "npm", + "name": "npm:snapdragon", + "data": { + "version": "0.8.2", + "packageName": "snapdragon", + "hash": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==" + } + }, + "npm:socket.io-adapter": { + "type": "npm", + "name": "npm:socket.io-adapter", + "data": { + "version": "2.4.0", + "packageName": "socket.io-adapter", + "hash": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + } + }, + "npm:socket.io-parser": { + "type": "npm", + "name": "npm:socket.io-parser", + "data": { + "version": "4.0.5", + "packageName": "socket.io-parser", + "hash": "sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==" + } + }, + "npm:socket.io": { + "type": "npm", + "name": "npm:socket.io", + "data": { + "version": "4.5.1", + "packageName": "socket.io", + "hash": "sha512-0y9pnIso5a9i+lJmsCdtmTTgJFFSvNQKDnPQRz28mGNnxbmqYg2QPtJTLFxhymFZhAIn50eHAKzJeiNaKr+yUQ==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:socks-proxy-agent@5.0.0": { + "type": "npm", + "name": "npm:socks-proxy-agent@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-lEpa1zsWCChxiynk+lCycKuC502RxDWLKJZoIhnxrWNjLSDGYRFflHA1/228VkRcnv9TIb8w98derGbpKxJRgA==" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "7.0.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.7.0", + "packageName": "socks", + "hash": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==" + } + }, + "npm:sort-css-media-queries": { + "type": "npm", + "name": "npm:sort-css-media-queries", + "data": { + "version": "1.5.4", + "packageName": "sort-css-media-queries", + "hash": "sha512-YP5W/h4Sid/YP7Lp87ejJ5jP13/Mtqt2vx33XyhO+IAugKlufRPbOrPlIiEUuxmpNBSBd3EeeQpFhdu3RfI2Ag==" + } + }, + "npm:sort-keys-length": { + "type": "npm", + "name": "npm:sort-keys-length", + "data": { + "version": "1.0.1", + "packageName": "sort-keys-length", + "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" + } + }, + "npm:sort-keys@1.1.2": { + "type": "npm", + "name": "npm:sort-keys@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "sort-keys", + "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "2.0.0", + "packageName": "sort-keys", + "hash": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=" + } + }, + "npm:source-list-map": { + "type": "npm", + "name": "npm:source-list-map", + "data": { + "version": "2.0.1", + "packageName": "source-list-map", + "hash": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:source-map-js@0.6.2": { + "type": "npm", + "name": "npm:source-map-js@0.6.2", + "data": { + "version": "0.6.2", + "packageName": "source-map-js", + "hash": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==" + } + }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "4.0.0", + "packageName": "source-map-loader", + "hash": "sha512-i3KVgM3+QPAHNbGavK+VBq03YoJl24m9JWNbLgsjTj8aJzXG9M61bantBTNBt7CNwY2FYf+RJRYJ3pzalKjIrw==" + } + }, + "npm:source-map-resolve": { + "type": "npm", + "name": "npm:source-map-resolve", + "data": { + "version": "0.5.3", + "packageName": "source-map-resolve", + "hash": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:source-map-support@0.5.19": { + "type": "npm", + "name": "npm:source-map-support@0.5.19", + "data": { + "version": "0.5.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:source-map-url": { + "type": "npm", + "name": "npm:source-map-url", + "data": { + "version": "0.4.0", + "packageName": "source-map-url", + "hash": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + } + }, + "npm:source-map@0.5.7": { + "type": "npm", + "name": "npm:source-map@0.5.7", + "data": { + "version": "0.5.7", + "packageName": "source-map", + "hash": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map@0.7.3": { + "type": "npm", + "name": "npm:source-map@0.7.3", + "data": { + "version": "0.7.3", + "packageName": "source-map", + "hash": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + }, + "npm:source-map@0.2.0": { + "type": "npm", + "name": "npm:source-map@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "source-map", + "hash": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=" + } + }, + "npm:sourcemap-codec": { + "type": "npm", + "name": "npm:sourcemap-codec", + "data": { + "version": "1.4.8", + "packageName": "sourcemap-codec", + "hash": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + } + }, + "npm:space-separated-tokens": { + "type": "npm", + "name": "npm:space-separated-tokens", + "data": { + "version": "1.1.4", + "packageName": "space-separated-tokens", + "hash": "sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA==" + } + }, + "npm:sparkles": { + "type": "npm", + "name": "npm:sparkles", + "data": { + "version": "1.0.1", + "packageName": "sparkles", + "hash": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.1.0", + "packageName": "spdx-correct", + "hash": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.2.0", + "packageName": "spdx-exceptions", + "hash": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.4", + "packageName": "spdx-license-ids", + "hash": "sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:split-on-first": { + "type": "npm", + "name": "npm:split-on-first", + "data": { + "version": "1.1.0", + "packageName": "split-on-first", + "hash": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" + } + }, + "npm:split-string": { + "type": "npm", + "name": "npm:split-string", + "data": { + "version": "3.1.0", + "packageName": "split-string", + "hash": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "3.2.2", + "packageName": "split2", + "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" + } + }, + "npm:split": { + "type": "npm", + "name": "npm:split", + "data": { + "version": "1.0.1", + "packageName": "split", + "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + } + }, + "npm:sshpk": { + "type": "npm", + "name": "npm:sshpk", + "data": { + "version": "1.17.0", + "packageName": "sshpk", + "hash": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "10.0.4", + "packageName": "ssri", + "hash": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==" + } + }, + "npm:ssri@6.0.2": { + "type": "npm", + "name": "npm:ssri@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "ssri", + "hash": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==" + } + }, + "npm:ssri@8.0.0": { + "type": "npm", + "name": "npm:ssri@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "ssri", + "hash": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==" + } + }, + "npm:ssri@9.0.1": { + "type": "npm", + "name": "npm:ssri@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "ssri", + "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" + } + }, + "npm:stable": { + "type": "npm", + "name": "npm:stable", + "data": { + "version": "0.1.8", + "packageName": "stable", + "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + } + }, + "npm:stack-trace": { + "type": "npm", + "name": "npm:stack-trace", + "data": { + "version": "0.0.10", + "packageName": "stack-trace", + "hash": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.5", + "packageName": "stack-utils", + "hash": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==" + } + }, + "npm:stackframe": { + "type": "npm", + "name": "npm:stackframe", + "data": { + "version": "1.2.0", + "packageName": "stackframe", + "hash": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + } + }, + "npm:state-toggle": { + "type": "npm", + "name": "npm:state-toggle", + "data": { + "version": "1.0.3", + "packageName": "state-toggle", + "hash": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" + } + }, + "npm:static-extend": { + "type": "npm", + "name": "npm:static-extend", + "data": { + "version": "0.1.2", + "packageName": "static-extend", + "hash": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + } + }, + "npm:stealthy-require": { + "type": "npm", + "name": "npm:stealthy-require", + "data": { + "version": "1.1.1", + "packageName": "stealthy-require", + "hash": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + } + }, + "npm:store2": { + "type": "npm", + "name": "npm:store2", + "data": { + "version": "2.12.0", + "packageName": "store2", + "hash": "sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==" + } + }, + "npm:storybook-addon-performance": { + "type": "npm", + "name": "npm:storybook-addon-performance", + "data": { + "version": "0.16.1", + "packageName": "storybook-addon-performance", + "hash": "sha512-hDMRXvZljwBXYKrNegB9+LvT1b0ZQlkvTEDqq4gbMovQcD9yR0mka1eDuhwZfzxcgY1PrhkN3EhNxLybA/ql9Q==" + } + }, + "npm:storybook-addon-swc": { + "type": "npm", + "name": "npm:storybook-addon-swc", + "data": { + "version": "1.2.0", + "packageName": "storybook-addon-swc", + "hash": "sha512-PEpxhAH+407KTcVDC7uUH4S26qtuBDC/JlZI3NqFYu0Tm2uCBf56On+13lK4iE3Iz8FORl4aSXo2RricJ/UhPQ==" + } + }, + "npm:storywright": { + "type": "npm", + "name": "npm:storywright", + "data": { + "version": "0.0.26-beta.1", + "packageName": "storywright", + "hash": "sha512-zNWRzTl8rOSDBFrbvozOcOshvLJPJzcSpm8sfZD6My24lsNK1xXsXDAykWZ7hh9y2XRtlXBL0Rewx82OoVKCXA==" + } + }, + "npm:stream-browserify@2.0.2": { + "type": "npm", + "name": "npm:stream-browserify@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "stream-browserify", + "hash": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==" + } + }, + "npm:stream-browserify": { + "type": "npm", + "name": "npm:stream-browserify", + "data": { + "version": "3.0.0", + "packageName": "stream-browserify", + "hash": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==" + } + }, + "npm:stream-each": { + "type": "npm", + "name": "npm:stream-each", + "data": { + "version": "1.2.3", + "packageName": "stream-each", + "hash": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==" + } + }, + "npm:stream-exhaust": { + "type": "npm", + "name": "npm:stream-exhaust", + "data": { + "version": "1.0.2", + "packageName": "stream-exhaust", + "hash": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==" + } + }, + "npm:stream-http@2.8.3": { + "type": "npm", + "name": "npm:stream-http@2.8.3", + "data": { + "version": "2.8.3", + "packageName": "stream-http", + "hash": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==" + } + }, + "npm:stream-http": { + "type": "npm", + "name": "npm:stream-http", + "data": { + "version": "3.1.1", + "packageName": "stream-http", + "hash": "sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg==" + } + }, + "npm:stream-shift": { + "type": "npm", + "name": "npm:stream-shift", + "data": { + "version": "1.0.0", + "packageName": "stream-shift", + "hash": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" + } + }, + "npm:streamroller": { + "type": "npm", + "name": "npm:streamroller", + "data": { + "version": "3.0.4", + "packageName": "streamroller", + "hash": "sha512-GI9NzeD+D88UFuIlJkKNDH/IsuR+qIN7Qh8EsmhoRZr9bQoehTraRgwtLUkZbpcAw+hLPfHOypmppz8YyGK68w==" + } + }, + "npm:strict-uri-encode": { + "type": "npm", + "name": "npm:strict-uri-encode", + "data": { + "version": "2.0.0", + "packageName": "strict-uri-encode", + "hash": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.1", + "packageName": "string-argv", + "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" + } + }, + "npm:string-hash": { + "type": "npm", + "name": "npm:string-hash", + "data": { + "version": "1.1.3", + "packageName": "string-hash", + "hash": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string-length@5.0.1": { + "type": "npm", + "name": "npm:string-length@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "string-length", + "hash": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@^4.2.0", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width@1.0.2": { + "type": "npm", + "name": "npm:string-width@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "string-width", + "hash": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=" + } + }, + "npm:string-width@2.1.1": { + "type": "npm", + "name": "npm:string-width@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "string-width", + "hash": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==" + } + }, + "npm:string-width@3.1.0": { + "type": "npm", + "name": "npm:string-width@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "string-width", + "hash": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.6", + "packageName": "string.prototype.matchall", + "hash": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==" + } + }, + "npm:string.prototype.padend": { + "type": "npm", + "name": "npm:string.prototype.padend", + "data": { + "version": "3.0.0", + "packageName": "string.prototype.padend", + "hash": "sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA=" + } + }, + "npm:string.prototype.padstart": { + "type": "npm", + "name": "npm:string.prototype.padstart", + "data": { + "version": "3.0.0", + "packageName": "string.prototype.padstart", + "hash": "sha1-W8+tOfRkm7LQMSkuGbzwtRDUskI=" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.1.2", + "packageName": "string.prototype.trim", + "hash": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.4", + "packageName": "string.prototype.trimend", + "hash": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.4", + "packageName": "string.prototype.trimstart", + "hash": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:string_decoder@0.10.31": { + "type": "npm", + "name": "npm:string_decoder@0.10.31", + "data": { + "version": "0.10.31", + "packageName": "string_decoder", + "hash": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + }, + "npm:string_decoder@1.1.1": { + "type": "npm", + "name": "npm:string_decoder@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:stringify-object": { + "type": "npm", + "name": "npm:stringify-object", + "data": { + "version": "3.3.0", + "packageName": "stringify-object", + "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@^6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi@6.0.1": { + "type": "npm", + "name": "npm:strip-ansi@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.0", + "packageName": "strip-ansi", + "hash": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" + } + }, + "npm:strip-ansi@3.0.1": { + "type": "npm", + "name": "npm:strip-ansi@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "strip-ansi", + "hash": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=" + } + }, + "npm:strip-ansi@4.0.0": { + "type": "npm", + "name": "npm:strip-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-ansi", + "hash": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=" + } + }, + "npm:strip-ansi@5.2.0": { + "type": "npm", + "name": "npm:strip-ansi@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "strip-ansi", + "hash": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + } + }, + "npm:strip-ansi@7.0.1": { + "type": "npm", + "name": "npm:strip-ansi@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "strip-ansi", + "hash": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==" + } + }, + "npm:strip-bom-string": { + "type": "npm", + "name": "npm:strip-bom-string", + "data": { + "version": "1.0.0", + "packageName": "strip-bom-string", + "hash": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" + } + }, + "npm:strip-bom@2.0.0": { + "type": "npm", + "name": "npm:strip-bom@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "strip-bom", + "hash": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + } + }, + "npm:strip-bom@4.0.0": { + "type": "npm", + "name": "npm:strip-bom@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:strip-comments": { + "type": "npm", + "name": "npm:strip-comments", + "data": { + "version": "2.0.1", + "packageName": "strip-comments", + "hash": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" + } + }, + "npm:strip-eof": { + "type": "npm", + "name": "npm:strip-eof", + "data": { + "version": "1.0.0", + "packageName": "strip-eof", + "hash": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:strip-indent@1.0.1": { + "type": "npm", + "name": "npm:strip-indent@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "strip-indent", + "hash": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=" + } + }, + "npm:strip-indent": { + "type": "npm", + "name": "npm:strip-indent", + "data": { + "version": "3.0.0", + "packageName": "strip-indent", + "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:strip-outer": { + "type": "npm", + "name": "npm:strip-outer", + "data": { + "version": "1.0.1", + "packageName": "strip-outer", + "hash": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==" + } + }, + "npm:strip-outer@2.0.0": { + "type": "npm", + "name": "npm:strip-outer@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "strip-outer", + "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" + } + }, + "npm:strong-log-transformer": { + "type": "npm", + "name": "npm:strong-log-transformer", + "data": { + "version": "2.1.0", + "packageName": "strong-log-transformer", + "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" + } + }, + "npm:strtok3": { + "type": "npm", + "name": "npm:strtok3", + "data": { + "version": "7.0.0", + "packageName": "strtok3", + "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" + } + }, + "npm:structured-source": { + "type": "npm", + "name": "npm:structured-source", + "data": { + "version": "3.0.2", + "packageName": "structured-source", + "hash": "sha1-3YAkJeD1PcSm56yjdSkBoczaevU=" + } + }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "2.0.0", + "packageName": "style-loader", + "hash": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==" + } + }, + "npm:style-loader@1.3.0": { + "type": "npm", + "name": "npm:style-loader@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "style-loader", + "hash": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==" + } + }, + "npm:style-to-object": { + "type": "npm", + "name": "npm:style-to-object", + "data": { + "version": "0.3.0", + "packageName": "style-to-object", + "hash": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" + } + }, + "npm:styled-components": { + "type": "npm", + "name": "npm:styled-components", + "data": { + "version": "5.2.1", + "packageName": "styled-components", + "hash": "sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==" + } + }, + "npm:stylis-plugin-rtl": { + "type": "npm", + "name": "npm:stylis-plugin-rtl", + "data": { + "version": "2.1.0", + "packageName": "stylis-plugin-rtl", + "hash": "sha512-WGqhbQdlbXN3UelhOObu58+aG02jm8ACehr8iBDf7qLQ6lbUxD6YwM8t/5IcwLRjj7BVjIN8eA8YfwJuqwBVSg==" + } + }, + "npm:stylis@3.5.4": { + "type": "npm", + "name": "npm:stylis@3.5.4", + "data": { + "version": "3.5.4", + "packageName": "stylis", + "hash": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" + } + }, + "npm:stylis": { + "type": "npm", + "name": "npm:stylis", + "data": { + "version": "4.3.0", + "packageName": "stylis", + "hash": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" + } + }, + "npm:supports-color@6.0.0": { + "type": "npm", + "name": "npm:supports-color@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "supports-color", + "hash": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==" + } + }, + "npm:supports-color@2.0.0": { + "type": "npm", + "name": "npm:supports-color@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "supports-color", + "hash": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + }, + "npm:supports-color@3.2.3": { + "type": "npm", + "name": "npm:supports-color@3.2.3", + "data": { + "version": "3.2.3", + "packageName": "supports-color", + "hash": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:supports-color@6.1.0": { + "type": "npm", + "name": "npm:supports-color@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "supports-color", + "hash": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:supports-color@8.1.1": { + "type": "npm", + "name": "npm:supports-color@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "1.0.1", + "packageName": "supports-hyperlinks", + "hash": "sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==" + } + }, + "npm:supports-hyperlinks@2.2.0": { + "type": "npm", + "name": "npm:supports-hyperlinks@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:sver-compat": { + "type": "npm", + "name": "npm:sver-compat", + "data": { + "version": "1.5.0", + "packageName": "sver-compat", + "hash": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=" + } + }, + "npm:swap-case": { + "type": "npm", + "name": "npm:swap-case", + "data": { + "version": "1.1.2", + "packageName": "swap-case", + "hash": "sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=" + } + }, + "npm:swc-loader": { + "type": "npm", + "name": "npm:swc-loader", + "data": { + "version": "0.2.3", + "packageName": "swc-loader", + "hash": "sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==" + } + }, + "npm:swc-plugin-de-indent-template-literal": { + "type": "npm", + "name": "npm:swc-plugin-de-indent-template-literal", + "data": { + "version": "1.0.0", + "packageName": "swc-plugin-de-indent-template-literal", + "hash": "sha512-Qb4G8h8hKlwWYFCJUVbmiELRmjzBM1hPmJh5+p0GiY/b6imGSIuEWV2zBAYcQyNvR2DI2MJ3OxJC2SCT9Ld7lA==" + } + }, + "npm:symbol-tree": { + "type": "npm", + "name": "npm:symbol-tree", + "data": { + "version": "3.2.4", + "packageName": "symbol-tree", + "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + } + }, + "npm:symbol.prototype.description": { + "type": "npm", + "name": "npm:symbol.prototype.description", + "data": { + "version": "1.0.0", + "packageName": "symbol.prototype.description", + "hash": "sha512-I9mrbZ5M96s7QeJDv95toF1svkUjeBybe8ydhY7foPaBmr0SPJMFupArmMkDrOKTTj0sJVr+nvQNxWLziQ7nDQ==" + } + }, + "npm:synchronous-promise": { + "type": "npm", + "name": "npm:synchronous-promise", + "data": { + "version": "2.0.15", + "packageName": "synchronous-promise", + "hash": "sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==" + } + }, + "npm:syncpack": { + "type": "npm", + "name": "npm:syncpack", + "data": { + "version": "10.6.1", + "packageName": "syncpack", + "hash": "sha512-mnBo6PYffon2TKxzJmOy3V7srv1GRX9wdmi+FHiqkOw0r2mQMgu1nmM/covETqZzB2px//cSaYpcPW+rniT/0Q==" + } + }, + "npm:systeminformation": { + "type": "npm", + "name": "npm:systeminformation", + "data": { + "version": "5.21.8", + "packageName": "systeminformation", + "hash": "sha512-Xf1KDMUTQHLOT9Z7MjpSpsbaICOHcm4OZ9c9qqpkCoXuxq5MoyDrgu5GIQYpoiralXNPrqxDz3ND8MdllpXeQA==" + } + }, + "npm:tabbable": { + "type": "npm", + "name": "npm:tabbable", + "data": { + "version": "5.2.0", + "packageName": "tabbable", + "hash": "sha512-0uyt8wbP0P3T4rrsfYg/5Rg3cIJ8Shl1RJ54QMqYxm1TLdWqJD1u6+RQjr2Lor3wmfT7JRHkirIwy99ydBsyPg==" + } + }, + "npm:table-layout": { + "type": "npm", + "name": "npm:table-layout", + "data": { + "version": "1.0.2", + "packageName": "table-layout", + "hash": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==" + } + }, + "npm:table": { + "type": "npm", + "name": "npm:table", + "data": { + "version": "6.8.0", + "packageName": "table", + "hash": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==" + } + }, + "npm:tabster": { + "type": "npm", + "name": "npm:tabster", + "data": { + "version": "5.0.1", + "packageName": "tabster", + "hash": "sha512-j5GGbN214MiPihGKemENq+fAHKoEpKZvVKakG/reUk3u+dPm/xvmlxYCQY8XayzxpvEu0i/6cMYjBMsEjcvdgA==" + } + }, + "npm:tachometer": { + "type": "npm", + "name": "npm:tachometer", + "data": { + "version": "0.7.0", + "packageName": "tachometer", + "hash": "sha512-163DdzoNkjZlr/m3IpaPMYBOTUc54hzfGSUw7pv9ZoO3OkjDcoGqJGImcrfEDNsw3DD0J/FM5AWjEi2/0W4YZA==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "1.1.3", + "packageName": "tapable", + "hash": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + } + }, + "npm:tapable@2.2.1": { + "type": "npm", + "name": "npm:tapable@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:tar-fs": { + "type": "npm", + "name": "npm:tar-fs", + "data": { + "version": "2.1.1", + "packageName": "tar-fs", + "hash": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.1.11", + "packageName": "tar", + "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" + } + }, + "npm:tar@4.4.19": { + "type": "npm", + "name": "npm:tar@4.4.19", + "data": { + "version": "4.4.19", + "packageName": "tar", + "hash": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==" + } + }, + "npm:telejson": { + "type": "npm", + "name": "npm:telejson", + "data": { + "version": "6.0.8", + "packageName": "telejson", + "hash": "sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "1.0.0", + "packageName": "temp-dir", + "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + } + }, + "npm:temp": { + "type": "npm", + "name": "npm:temp", + "data": { + "version": "0.4.0", + "packageName": "temp", + "hash": "sha1-ZxrWPVe+D+nXKUZks/xABjZnimA=" + } + }, + "npm:term-size@1.2.0": { + "type": "npm", + "name": "npm:term-size@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "term-size", + "hash": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=" + } + }, + "npm:term-size": { + "type": "npm", + "name": "npm:term-size", + "data": { + "version": "2.1.1", + "packageName": "term-size", + "hash": "sha512-UqvQSch04R+69g4RDhrslmGvGL3ucDRX/U+snYW0Mab4uCAyKSndUksaoqlJ81QKSpRnIsuOYQCbC2ZWx2896A==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.9", + "packageName": "terser-webpack-plugin", + "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" + } + }, + "npm:terser-webpack-plugin@1.4.5": { + "type": "npm", + "name": "npm:terser-webpack-plugin@1.4.5", + "data": { + "version": "1.4.5", + "packageName": "terser-webpack-plugin", + "hash": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==" + } + }, + "npm:terser-webpack-plugin@4.2.3": { + "type": "npm", + "name": "npm:terser-webpack-plugin@4.2.3", + "data": { + "version": "4.2.3", + "packageName": "terser-webpack-plugin", + "hash": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.17.4", + "packageName": "terser", + "hash": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==" + } + }, + "npm:terser@4.8.0": { + "type": "npm", + "name": "npm:terser@4.8.0", + "data": { + "version": "4.8.0", + "packageName": "terser", + "hash": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:text-extensions": { + "type": "npm", + "name": "npm:text-extensions", + "data": { + "version": "1.9.0", + "packageName": "text-extensions", + "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + } + }, + "npm:textextensions": { + "type": "npm", + "name": "npm:textextensions", + "data": { + "version": "2.6.0", + "packageName": "textextensions", + "hash": "sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==" + } + }, + "npm:throttle-debounce": { + "type": "npm", + "name": "npm:throttle-debounce", + "data": { + "version": "3.0.1", + "packageName": "throttle-debounce", + "hash": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==" + } + }, + "npm:throttleit": { + "type": "npm", + "name": "npm:throttleit", + "data": { + "version": "1.0.0", + "packageName": "throttleit", + "hash": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=" + } + }, + "npm:through2-filter": { + "type": "npm", + "name": "npm:through2-filter", + "data": { + "version": "3.0.0", + "packageName": "through2-filter", + "hash": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==" + } + }, + "npm:through2@2.0.5": { + "type": "npm", + "name": "npm:through2@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:through2@3.0.1": { + "type": "npm", + "name": "npm:through2@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "through2", + "hash": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "4.0.2", + "packageName": "through2", + "hash": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" + } + }, + "npm:through2@0.5.1": { + "type": "npm", + "name": "npm:through2@0.5.1", + "data": { + "version": "0.5.1", + "packageName": "through2", + "hash": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.0.3", + "packageName": "thunky", + "hash": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==" + } + }, + "npm:tightrope": { + "type": "npm", + "name": "npm:tightrope", + "data": { + "version": "0.1.0", + "packageName": "tightrope", + "hash": "sha512-HHHNYdCAIYwl1jOslQBT455zQpdeSo8/A346xpIb/uuqhSg+tCvYNsP5f11QW+z9VZ3vSX8YIfzTApjjuGH63w==" + } + }, + "npm:time-stamp": { + "type": "npm", + "name": "npm:time-stamp", + "data": { + "version": "1.1.0", + "packageName": "time-stamp", + "hash": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" + } + }, + "npm:timed-out": { + "type": "npm", + "name": "npm:timed-out", + "data": { + "version": "4.0.1", + "packageName": "timed-out", + "hash": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" + } + }, + "npm:timers-browserify": { + "type": "npm", + "name": "npm:timers-browserify", + "data": { + "version": "2.0.12", + "packageName": "timers-browserify", + "hash": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==" + } + }, + "npm:timers-ext": { + "type": "npm", + "name": "npm:timers-ext", + "data": { + "version": "0.1.7", + "packageName": "timers-ext", + "hash": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" + } + }, + "npm:timsort": { + "type": "npm", + "name": "npm:timsort", + "data": { + "version": "0.3.0", + "packageName": "timsort", + "hash": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + } + }, + "npm:tiny-emitter": { + "type": "npm", + "name": "npm:tiny-emitter", + "data": { + "version": "2.1.0", + "packageName": "tiny-emitter", + "hash": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + } + }, + "npm:tiny-invariant": { + "type": "npm", + "name": "npm:tiny-invariant", + "data": { + "version": "1.1.0", + "packageName": "tiny-invariant", + "hash": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + } + }, + "npm:tiny-warning": { + "type": "npm", + "name": "npm:tiny-warning", + "data": { + "version": "1.0.3", + "packageName": "tiny-warning", + "hash": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + } + }, + "npm:title-case": { + "type": "npm", + "name": "npm:title-case", + "data": { + "version": "2.1.1", + "packageName": "title-case", + "hash": "sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.1", + "packageName": "tmp", + "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" + } + }, + "npm:tmp@0.0.33": { + "type": "npm", + "name": "npm:tmp@0.0.33", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:to-absolute-glob": { + "type": "npm", + "name": "npm:to-absolute-glob", + "data": { + "version": "2.0.2", + "packageName": "to-absolute-glob", + "hash": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=" + } + }, + "npm:to-arraybuffer": { + "type": "npm", + "name": "npm:to-arraybuffer", + "data": { + "version": "1.0.1", + "packageName": "to-arraybuffer", + "hash": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + } + }, + "npm:to-camel-case": { + "type": "npm", + "name": "npm:to-camel-case", + "data": { + "version": "1.0.0", + "packageName": "to-camel-case", + "hash": "sha1-GlYFSy+daWKYzmamCJcyK29CPkY=" + } + }, + "npm:to-fast-properties@1.0.3": { + "type": "npm", + "name": "npm:to-fast-properties@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "to-fast-properties", + "hash": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + } + }, + "npm:to-no-case": { + "type": "npm", + "name": "npm:to-no-case", + "data": { + "version": "1.0.2", + "packageName": "to-no-case", + "hash": "sha1-xyKQcWTvaxeBMsjmmTAhLRtKoWo=" + } + }, + "npm:to-object-path": { + "type": "npm", + "name": "npm:to-object-path", + "data": { + "version": "0.3.0", + "packageName": "to-object-path", + "hash": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=" + } + }, + "npm:to-regex-range@2.1.1": { + "type": "npm", + "name": "npm:to-regex-range@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "to-regex-range", + "hash": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:to-regex": { + "type": "npm", + "name": "npm:to-regex", + "data": { + "version": "3.0.2", + "packageName": "to-regex", + "hash": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==" + } + }, + "npm:to-space-case": { + "type": "npm", + "name": "npm:to-space-case", + "data": { + "version": "1.0.0", + "packageName": "to-space-case", + "hash": "sha1-sFLar7Gysp3HcM6gFj5ewOvJ/Bc=" + } + }, + "npm:to-through": { + "type": "npm", + "name": "npm:to-through", + "data": { + "version": "2.0.0", + "packageName": "to-through", + "hash": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=" + } + }, + "npm:toggle-selection": { + "type": "npm", + "name": "npm:toggle-selection", + "data": { + "version": "1.0.6", + "packageName": "toggle-selection", + "hash": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:token-types": { + "type": "npm", + "name": "npm:token-types", + "data": { + "version": "5.0.1", + "packageName": "token-types", + "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" + } + }, + "npm:toposort": { + "type": "npm", + "name": "npm:toposort", + "data": { + "version": "2.0.2", + "packageName": "toposort", + "hash": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=" + } + }, + "npm:totalist": { + "type": "npm", + "name": "npm:totalist", + "data": { + "version": "1.1.0", + "packageName": "totalist", + "hash": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "2.5.0", + "packageName": "tough-cookie", + "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" + } + }, + "npm:tough-cookie@4.1.2": { + "type": "npm", + "name": "npm:tough-cookie@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "tough-cookie", + "hash": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==" + } + }, + "npm:tr46@1.0.1": { + "type": "npm", + "name": "npm:tr46@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "tr46", + "hash": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:tr46@0.0.3": { + "type": "npm", + "name": "npm:tr46@0.0.3", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + } + }, + "npm:traverse@0.3.9": { + "type": "npm", + "name": "npm:traverse@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "traverse", + "hash": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.6.6", + "packageName": "traverse", + "hash": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" + } + }, + "npm:trim-newlines@1.0.0": { + "type": "npm", + "name": "npm:trim-newlines@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "trim-newlines", + "hash": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" + } + }, + "npm:trim-newlines": { + "type": "npm", + "name": "npm:trim-newlines", + "data": { + "version": "3.0.0", + "packageName": "trim-newlines", + "hash": "sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==" + } + }, + "npm:trim-repeated": { + "type": "npm", + "name": "npm:trim-repeated", + "data": { + "version": "1.0.0", + "packageName": "trim-repeated", + "hash": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=" + } + }, + "npm:trim-repeated@2.0.0": { + "type": "npm", + "name": "npm:trim-repeated@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "trim-repeated", + "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" + } + }, + "npm:trim-right": { + "type": "npm", + "name": "npm:trim-right", + "data": { + "version": "1.0.1", + "packageName": "trim-right", + "hash": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" + } + }, + "npm:trim-trailing-lines": { + "type": "npm", + "name": "npm:trim-trailing-lines", + "data": { + "version": "1.1.3", + "packageName": "trim-trailing-lines", + "hash": "sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA==" + } + }, + "npm:trim": { + "type": "npm", + "name": "npm:trim", + "data": { + "version": "0.0.1", + "packageName": "trim", + "hash": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" + } + }, + "npm:trough": { + "type": "npm", + "name": "npm:trough", + "data": { + "version": "1.0.5", + "packageName": "trough", + "hash": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" + } + }, + "npm:truncate-utf8-bytes": { + "type": "npm", + "name": "npm:truncate-utf8-bytes", + "data": { + "version": "1.0.2", + "packageName": "truncate-utf8-bytes", + "hash": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==" + } + }, + "npm:ts-dedent": { + "type": "npm", + "name": "npm:ts-dedent", + "data": { + "version": "2.2.0", + "packageName": "ts-dedent", + "hash": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==" + } + }, + "npm:ts-invariant": { + "type": "npm", + "name": "npm:ts-invariant", + "data": { + "version": "0.10.3", + "packageName": "ts-invariant", + "hash": "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==" + } + }, + "npm:ts-jest": { + "type": "npm", + "name": "npm:ts-jest", + "data": { + "version": "29.1.1", + "packageName": "ts-jest", + "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" + } + }, + "npm:ts-loader": { + "type": "npm", + "name": "npm:ts-loader", + "data": { + "version": "9.3.1", + "packageName": "ts-loader", + "hash": "sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==" + } + }, + "npm:ts-morph": { + "type": "npm", + "name": "npm:ts-morph", + "data": { + "version": "10.0.1", + "packageName": "ts-morph", + "hash": "sha512-T1zufImtp5goTLTFhzi7XuKR1y/f+Jwz1gSULzB045LFjXuoqVlR87sfkpyWow8u2JwgusCJrhOnwmHCFNutTQ==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "10.9.1", + "packageName": "ts-node", + "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" + } + }, + "npm:ts-pnp": { + "type": "npm", + "name": "npm:ts-pnp", + "data": { + "version": "1.2.0", + "packageName": "ts-pnp", + "hash": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + } + }, + "npm:ts-toolbelt": { + "type": "npm", + "name": "npm:ts-toolbelt", + "data": { + "version": "9.6.0", + "packageName": "ts-toolbelt", + "hash": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==" + } + }, + "npm:tsconfig-paths-webpack-plugin": { + "type": "npm", + "name": "npm:tsconfig-paths-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "tsconfig-paths-webpack-plugin", + "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.1.0", + "packageName": "tsconfig-paths", + "hash": "sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==" + } + }, + "npm:tsconfig-paths@3.13.0": { + "type": "npm", + "name": "npm:tsconfig-paths@3.13.0", + "data": { + "version": "3.13.0", + "packageName": "tsconfig-paths", + "hash": "sha512-nWuffZppoaYK0vQ1SQmkSsQzJoHA4s6uzdb2waRpD806x9yfq153AdVsWz4je2qZcW+pENrMQXbGQ3sMCkXuhw==" + } + }, + "npm:tsconfig-paths@4.2.0": { + "type": "npm", + "name": "npm:tsconfig-paths@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "tsconfig-paths", + "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" + } + }, + "npm:tslib@1.11.2": { + "type": "npm", + "name": "npm:tslib@1.11.2", + "data": { + "version": "1.11.2", + "packageName": "tslib", + "hash": "sha512-tTSkux6IGPnUGUd1XAZHcpu85MOkIl5zX49pO+jfsie3eP0B6pyhOlLXm3cAC6T7s+euSDDUUV+Acop5WmtkVg==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.5.0", + "packageName": "tslib", + "hash": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + }, + "npm:tslib@1.14.1": { + "type": "npm", + "name": "npm:tslib@1.14.1", + "data": { + "version": "1.14.1", + "packageName": "tslib", + "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + }, + "npm:tsscmp": { + "type": "npm", + "name": "npm:tsscmp", + "data": { + "version": "1.0.6", + "packageName": "tsscmp", + "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:tty-browserify@0.0.0": { + "type": "npm", + "name": "npm:tty-browserify@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "tty-browserify", + "hash": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + } + }, + "npm:tty-browserify": { + "type": "npm", + "name": "npm:tty-browserify", + "data": { + "version": "0.0.1", + "packageName": "tty-browserify", + "hash": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "1.1.7", + "packageName": "tuf-js", + "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" + } + }, + "npm:tunnel-agent": { + "type": "npm", + "name": "npm:tunnel-agent", + "data": { + "version": "0.6.0", + "packageName": "tunnel-agent", + "hash": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=" + } + }, + "npm:tunnel": { + "type": "npm", + "name": "npm:tunnel", + "data": { + "version": "0.0.6", + "packageName": "tunnel", + "hash": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" + } + }, + "npm:tweetnacl": { + "type": "npm", + "name": "npm:tweetnacl", + "data": { + "version": "0.14.5", + "packageName": "tweetnacl", + "hash": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + } + }, + "npm:type-check@0.4.0": { + "type": "npm", + "name": "npm:type-check@0.4.0", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.3.2", + "packageName": "type-check", + "hash": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:type-fest@0.11.0": { + "type": "npm", + "name": "npm:type-fest@0.11.0", + "data": { + "version": "0.11.0", + "packageName": "type-fest", + "hash": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" + } + }, + "npm:type-fest@0.18.1": { + "type": "npm", + "name": "npm:type-fest@0.18.1", + "data": { + "version": "0.18.1", + "packageName": "type-fest", + "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest@0.4.1": { + "type": "npm", + "name": "npm:type-fest@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "type-fest", + "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" + } + }, + "npm:type-fest@0.6.0": { + "type": "npm", + "name": "npm:type-fest@0.6.0", + "data": { + "version": "0.6.0", + "packageName": "type-fest", + "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + }, + "npm:type-fest@0.8.1": { + "type": "npm", + "name": "npm:type-fest@0.8.1", + "data": { + "version": "0.8.1", + "packageName": "type-fest", + "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + }, + "npm:type-fest@3.11.0": { + "type": "npm", + "name": "npm:type-fest@3.11.0", + "data": { + "version": "3.11.0", + "packageName": "type-fest", + "hash": "sha512-JaPw5U9ixP0XcpUbQoVSbxSDcK/K4nww20C3kjm9yE6cDRRhptU28AH60VWf9ltXmCrIfIbtt9J+2OUk2Uqiaw==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:type": { + "type": "npm", + "name": "npm:type", + "data": { + "version": "1.0.1", + "packageName": "type", + "hash": "sha512-MAM5dBMJCJNKs9E7JXo4CXRAansRfG0nlJxW7Wf6GZzSOvH31zClSaHdIMWLehe/EGMBkqeC55rrkaOr5Oo7Nw==" + } + }, + "npm:type@2.0.0": { + "type": "npm", + "name": "npm:type@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "type", + "hash": "sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==" + } + }, + "npm:typed-rest-client": { + "type": "npm", + "name": "npm:typed-rest-client", + "data": { + "version": "1.8.9", + "packageName": "typed-rest-client", + "hash": "sha512-uSmjE38B80wjL85UFX3sTYEUlvZ1JgCRhsWj/fJ4rZ0FqDUFoIuodtiVeE+cUqiVTOKPdKrp/sdftD15MDek6g==" + } + }, + "npm:typedarray-to-buffer": { + "type": "npm", + "name": "npm:typedarray-to-buffer", + "data": { + "version": "3.1.5", + "packageName": "typedarray-to-buffer", + "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + } + }, + "npm:typedarray": { + "type": "npm", + "name": "npm:typedarray", + "data": { + "version": "0.0.6", + "packageName": "typedarray", + "hash": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "4.7.4", + "packageName": "typescript", + "hash": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==" + } + }, + "npm:typescript@5.1.6": { + "type": "npm", + "name": "npm:typescript@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "typescript", + "hash": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==" + } + }, + "npm:typical@4.0.0": { + "type": "npm", + "name": "npm:typical@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "typical", + "hash": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" + } + }, + "npm:typical": { + "type": "npm", + "name": "npm:typical", + "data": { + "version": "5.2.0", + "packageName": "typical", + "hash": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" + } + }, + "npm:ua-parser-js@0.7.33": { + "type": "npm", + "name": "npm:ua-parser-js@0.7.33", + "data": { + "version": "0.7.33", + "packageName": "ua-parser-js", + "hash": "sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "1.0.2", + "packageName": "ua-parser-js", + "hash": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.17.4", + "packageName": "uglify-js", + "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.1", + "packageName": "unbox-primitive", + "hash": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==" + } + }, + "npm:unbzip2-stream": { + "type": "npm", + "name": "npm:unbzip2-stream", + "data": { + "version": "1.4.3", + "packageName": "unbzip2-stream", + "hash": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==" + } + }, + "npm:unc-path-regex": { + "type": "npm", + "name": "npm:unc-path-regex", + "data": { + "version": "0.1.2", + "packageName": "unc-path-regex", + "hash": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" + } + }, + "npm:underscore": { + "type": "npm", + "name": "npm:underscore", + "data": { + "version": "1.12.1", + "packageName": "underscore", + "hash": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + } + }, + "npm:undertaker-registry": { + "type": "npm", + "name": "npm:undertaker-registry", + "data": { + "version": "1.0.1", + "packageName": "undertaker-registry", + "hash": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" + } + }, + "npm:undertaker": { + "type": "npm", + "name": "npm:undertaker", + "data": { + "version": "1.3.0", + "packageName": "undertaker", + "hash": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==" + } + }, + "npm:unfetch@3.1.2": { + "type": "npm", + "name": "npm:unfetch@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "unfetch", + "hash": "sha512-L0qrK7ZeAudGiKYw6nzFjnJ2D5WHblUBwmHIqtPS6oKUd+Hcpk7/hKsSmcHsTlpd1TbTNsiRBUKRq3bHLNIqIw==" + } + }, + "npm:unfetch": { + "type": "npm", + "name": "npm:unfetch", + "data": { + "version": "4.2.0", + "packageName": "unfetch", + "hash": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==" + } + }, + "npm:unherit": { + "type": "npm", + "name": "npm:unherit", + "data": { + "version": "1.1.3", + "packageName": "unherit", + "hash": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + } + }, + "npm:unified@9.2.0": { + "type": "npm", + "name": "npm:unified@9.2.0", + "data": { + "version": "9.2.0", + "packageName": "unified", + "hash": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==" + } + }, + "npm:unified": { + "type": "npm", + "name": "npm:unified", + "data": { + "version": "6.2.0", + "packageName": "unified", + "hash": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==" + } + }, + "npm:union-value": { + "type": "npm", + "name": "npm:union-value", + "data": { + "version": "1.0.1", + "packageName": "union-value", + "hash": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "1.1.1", + "packageName": "unique-filename", + "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" + } + }, + "npm:unique-filename@2.0.1": { + "type": "npm", + "name": "npm:unique-filename@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "unique-filename", + "hash": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" + } + }, + "npm:unique-filename@3.0.0": { + "type": "npm", + "name": "npm:unique-filename@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "2.0.2", + "packageName": "unique-slug", + "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" + } + }, + "npm:unique-slug@3.0.0": { + "type": "npm", + "name": "npm:unique-slug@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "unique-slug", + "hash": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" + } + }, + "npm:unique-slug@4.0.0": { + "type": "npm", + "name": "npm:unique-slug@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" + } + }, + "npm:unique-stream": { + "type": "npm", + "name": "npm:unique-stream", + "data": { + "version": "2.3.1", + "packageName": "unique-stream", + "hash": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "1.0.0", + "packageName": "unique-string", + "hash": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=" + } + }, + "npm:unist-builder": { + "type": "npm", + "name": "npm:unist-builder", + "data": { + "version": "2.0.3", + "packageName": "unist-builder", + "hash": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" + } + }, + "npm:unist-util-generated": { + "type": "npm", + "name": "npm:unist-util-generated", + "data": { + "version": "1.1.6", + "packageName": "unist-util-generated", + "hash": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" + } + }, + "npm:unist-util-is@3.0.0": { + "type": "npm", + "name": "npm:unist-util-is@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "unist-util-is", + "hash": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==" + } + }, + "npm:unist-util-is": { + "type": "npm", + "name": "npm:unist-util-is", + "data": { + "version": "4.0.1", + "packageName": "unist-util-is", + "hash": "sha512-7NYjErP4LJtkEptPR22wO5RsCPnHZZrop7t2SoQzjvpFedCFer4WW8ujj9GI5DkUX7yVcffXLjoURf6h2QUv6Q==" + } + }, + "npm:unist-util-position": { + "type": "npm", + "name": "npm:unist-util-position", + "data": { + "version": "3.0.4", + "packageName": "unist-util-position", + "hash": "sha512-tWvIbV8goayTjobxDIr4zVTyG+Q7ragMSMeKC3xnPl9xzIc0+she8mxXLM3JVNDDsfARPbCd3XdzkyLdo7fF3g==" + } + }, + "npm:unist-util-remove-position": { + "type": "npm", + "name": "npm:unist-util-remove-position", + "data": { + "version": "1.1.4", + "packageName": "unist-util-remove-position", + "hash": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==" + } + }, + "npm:unist-util-remove-position@2.0.1": { + "type": "npm", + "name": "npm:unist-util-remove-position@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "unist-util-remove-position", + "hash": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==" + } + }, + "npm:unist-util-remove": { + "type": "npm", + "name": "npm:unist-util-remove", + "data": { + "version": "2.1.0", + "packageName": "unist-util-remove", + "hash": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==" + } + }, + "npm:unist-util-stringify-position": { + "type": "npm", + "name": "npm:unist-util-stringify-position", + "data": { + "version": "1.1.2", + "packageName": "unist-util-stringify-position", + "hash": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==" + } + }, + "npm:unist-util-stringify-position@2.0.2": { + "type": "npm", + "name": "npm:unist-util-stringify-position@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "unist-util-stringify-position", + "hash": "sha512-nK5n8OGhZ7ZgUwoUbL8uiVRwAbZyzBsB/Ddrlbu6jwwubFza4oe15KlyEaLNMXQW1svOQq4xesUeqA85YrIUQA==" + } + }, + "npm:unist-util-visit-parents@1.1.2": { + "type": "npm", + "name": "npm:unist-util-visit-parents@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "unist-util-visit-parents", + "hash": "sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==" + } + }, + "npm:unist-util-visit-parents@2.1.2": { + "type": "npm", + "name": "npm:unist-util-visit-parents@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "unist-util-visit-parents", + "hash": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==" + } + }, + "npm:unist-util-visit-parents": { + "type": "npm", + "name": "npm:unist-util-visit-parents", + "data": { + "version": "3.0.1", + "packageName": "unist-util-visit-parents", + "hash": "sha512-umEOTkm6/y1gIqPrqet55mYqlvGXCia/v1FSc5AveLAI7jFmOAIbqiwcHcviLcusAkEQt1bq2hixCKO9ltMb2Q==" + } + }, + "npm:unist-util-visit": { + "type": "npm", + "name": "npm:unist-util-visit", + "data": { + "version": "2.0.3", + "packageName": "unist-util-visit", + "hash": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==" + } + }, + "npm:unist-util-visit@1.4.1": { + "type": "npm", + "name": "npm:unist-util-visit@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "unist-util-visit", + "hash": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==" + } + }, + "npm:universal-url": { + "type": "npm", + "name": "npm:universal-url", + "data": { + "version": "2.0.0", + "packageName": "universal-url", + "hash": "sha512-3DLtXdm/G1LQMCnPj+Aw7uDoleQttNHp2g5FnNQKR6cP6taNWS1b/Ehjjx4PVyvejKi3TJyu8iBraKM4q3JQPg==" + } + }, + "npm:universal-user-agent": { + "type": "npm", + "name": "npm:universal-user-agent", + "data": { + "version": "6.0.0", + "packageName": "universal-user-agent", + "hash": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:universalify@0.2.0": { + "type": "npm", + "name": "npm:universalify@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "universalify", + "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + }, + "npm:universalify@1.0.0": { + "type": "npm", + "name": "npm:universalify@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "universalify", + "hash": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" + } + }, + "npm:universalify@2.0.0": { + "type": "npm", + "name": "npm:universalify@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "universalify", + "hash": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + } + }, + "npm:unset-value": { + "type": "npm", + "name": "npm:unset-value", + "data": { + "version": "1.0.0", + "packageName": "unset-value", + "hash": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=" + } + }, + "npm:untildify@2.1.0": { + "type": "npm", + "name": "npm:untildify@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "untildify", + "hash": "sha1-F+soB5h/dpUunASF/DEdBqgmouA=" + } + }, + "npm:untildify": { + "type": "npm", + "name": "npm:untildify", + "data": { + "version": "4.0.0", + "packageName": "untildify", + "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" + } + }, + "npm:unzip-response": { + "type": "npm", + "name": "npm:unzip-response", + "data": { + "version": "2.0.1", + "packageName": "unzip-response", + "hash": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" + } + }, + "npm:unzipper": { + "type": "npm", + "name": "npm:unzipper", + "data": { + "version": "0.10.11", + "packageName": "unzipper", + "hash": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==" + } + }, + "npm:upath": { + "type": "npm", + "name": "npm:upath", + "data": { + "version": "2.0.1", + "packageName": "upath", + "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" + } + }, + "npm:upath@1.1.2": { + "type": "npm", + "name": "npm:upath@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "upath", + "hash": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.13", + "packageName": "update-browserslist-db", + "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" + } + }, + "npm:update-notifier": { + "type": "npm", + "name": "npm:update-notifier", + "data": { + "version": "2.5.0", + "packageName": "update-notifier", + "hash": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==" + } + }, + "npm:update-section": { + "type": "npm", + "name": "npm:update-section", + "data": { + "version": "0.3.3", + "packageName": "update-section", + "hash": "sha1-RY8Xgg03gg3GDiC4bZQ5GwASMVg=" + } + }, + "npm:upper-case-first": { + "type": "npm", + "name": "npm:upper-case-first", + "data": { + "version": "1.1.2", + "packageName": "upper-case-first", + "hash": "sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=" + } + }, + "npm:upper-case": { + "type": "npm", + "name": "npm:upper-case", + "data": { + "version": "1.1.3", + "packageName": "upper-case", + "hash": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.2.2", + "packageName": "uri-js", + "hash": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==" + } + }, + "npm:urix": { + "type": "npm", + "name": "npm:urix", + "data": { + "version": "0.1.0", + "packageName": "urix", + "hash": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + } + }, + "npm:url-loader@4.1.1": { + "type": "npm", + "name": "npm:url-loader@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "url-loader", + "hash": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" + } + }, + "npm:url-parse-lax": { + "type": "npm", + "name": "npm:url-parse-lax", + "data": { + "version": "1.0.0", + "packageName": "url-parse-lax", + "hash": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:url": { + "type": "npm", + "name": "npm:url", + "data": { + "version": "0.11.0", + "packageName": "url", + "hash": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=" + } + }, + "npm:use-disposable": { + "type": "npm", + "name": "npm:use-disposable", + "data": { + "version": "1.0.1", + "packageName": "use-disposable", + "hash": "sha512-5Sle1XEmK3lw3xyGqeIY7UKkiUgF+TxwUty7fTsqM5D5AxfQfo2ft+LY9xKCA+W5YbaBFbOkWfQsZY/y5JhInA==" + } + }, + "npm:use-immer": { + "type": "npm", + "name": "npm:use-immer", + "data": { + "version": "0.6.0", + "packageName": "use-immer", + "hash": "sha512-dFGRfvWCqPDTOt/S431ETYTg6+uxbpb7A1pptufwXVzGJY3RlXr38+3wyLNpc6SbbmAKjWl6+EP6uW74fkEsXQ==" + } + }, + "npm:use-isomorphic-layout-effect": { + "type": "npm", + "name": "npm:use-isomorphic-layout-effect", + "data": { + "version": "1.1.2", + "packageName": "use-isomorphic-layout-effect", + "hash": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==" + } + }, + "npm:use-subscription": { + "type": "npm", + "name": "npm:use-subscription", + "data": { + "version": "1.4.1", + "packageName": "use-subscription", + "hash": "sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ==" + } + }, + "npm:use": { + "type": "npm", + "name": "npm:use", + "data": { + "version": "3.1.1", + "packageName": "use", + "hash": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + } + }, + "npm:user-home": { + "type": "npm", + "name": "npm:user-home", + "data": { + "version": "1.1.1", + "packageName": "user-home", + "hash": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=" + } + }, + "npm:utf8-byte-length": { + "type": "npm", + "name": "npm:utf8-byte-length", + "data": { + "version": "1.0.4", + "packageName": "utf8-byte-length", + "hash": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + } + }, + "npm:util.promisify": { + "type": "npm", + "name": "npm:util.promisify", + "data": { + "version": "1.0.0", + "packageName": "util.promisify", + "hash": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==" + } + }, + "npm:util@0.10.3": { + "type": "npm", + "name": "npm:util@0.10.3", + "data": { + "version": "0.10.3", + "packageName": "util", + "hash": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=" + } + }, + "npm:util@0.11.1": { + "type": "npm", + "name": "npm:util@0.11.1", + "data": { + "version": "0.11.1", + "packageName": "util", + "hash": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==" + } + }, + "npm:util": { + "type": "npm", + "name": "npm:util", + "data": { + "version": "0.12.3", + "packageName": "util", + "hash": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==" + } + }, + "npm:utila": { + "type": "npm", + "name": "npm:utila", + "data": { + "version": "0.4.0", + "packageName": "utila", + "hash": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + } + }, + "npm:uuid-browser": { + "type": "npm", + "name": "npm:uuid-browser", + "data": { + "version": "3.1.0", + "packageName": "uuid-browser", + "hash": "sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=" + } + }, + "npm:uuid@3.4.0": { + "type": "npm", + "name": "npm:uuid@3.4.0", + "data": { + "version": "3.4.0", + "packageName": "uuid", + "hash": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:uuid@9.0.0": { + "type": "npm", + "name": "npm:uuid@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "uuid", + "hash": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" + } + }, + "npm:v8-compile-cache-lib": { + "type": "npm", + "name": "npm:v8-compile-cache-lib", + "data": { + "version": "3.0.1", + "packageName": "v8-compile-cache-lib", + "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" + } + }, + "npm:v8-compile-cache": { + "type": "npm", + "name": "npm:v8-compile-cache", + "data": { + "version": "2.3.0", + "packageName": "v8-compile-cache", + "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.1.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==" + } + }, + "npm:v8flags": { + "type": "npm", + "name": "npm:v8flags", + "data": { + "version": "2.1.1", + "packageName": "v8flags", + "hash": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=" + } + }, + "npm:v8flags@3.1.3": { + "type": "npm", + "name": "npm:v8flags@3.1.3", + "data": { + "version": "3.1.3", + "packageName": "v8flags", + "hash": "sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" + } + }, + "npm:validate-npm-package-name@3.0.0": { + "type": "npm", + "name": "npm:validate-npm-package-name@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=" + } + }, + "npm:validator": { + "type": "npm", + "name": "npm:validator", + "data": { + "version": "13.7.0", + "packageName": "validator", + "hash": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + } + }, + "npm:value-equal": { + "type": "npm", + "name": "npm:value-equal", + "data": { + "version": "1.0.1", + "packageName": "value-equal", + "hash": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + } + }, + "npm:value-or-function": { + "type": "npm", + "name": "npm:value-or-function", + "data": { + "version": "3.0.0", + "packageName": "value-or-function", + "hash": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + } + }, + "npm:verror": { + "type": "npm", + "name": "npm:verror", + "data": { + "version": "1.10.0", + "packageName": "verror", + "hash": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=" + } + }, + "npm:vfile-location@2.0.6": { + "type": "npm", + "name": "npm:vfile-location@2.0.6", + "data": { + "version": "2.0.6", + "packageName": "vfile-location", + "hash": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==" + } + }, + "npm:vfile-location": { + "type": "npm", + "name": "npm:vfile-location", + "data": { + "version": "3.2.0", + "packageName": "vfile-location", + "hash": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" + } + }, + "npm:vfile-message@1.1.1": { + "type": "npm", + "name": "npm:vfile-message@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "vfile-message", + "hash": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==" + } + }, + "npm:vfile-message": { + "type": "npm", + "name": "npm:vfile-message", + "data": { + "version": "2.0.2", + "packageName": "vfile-message", + "hash": "sha512-gNV2Y2fDvDOOqq8bEe7cF3DXU6QgV4uA9zMR2P8tix11l1r7zju3zry3wZ8sx+BEfuO6WQ7z2QzfWTvqHQiwsA==" + } + }, + "npm:vfile@2.3.0": { + "type": "npm", + "name": "npm:vfile@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "vfile", + "hash": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==" + } + }, + "npm:vfile": { + "type": "npm", + "name": "npm:vfile", + "data": { + "version": "4.0.2", + "packageName": "vfile", + "hash": "sha512-yhoTU5cDMSsaeaMfJ5g0bUKYkYmZhAh9fn9TZicxqn+Cw4Z439il2v3oT9S0yjlpqlI74aFOQCt3nOV+pxzlkw==" + } + }, + "npm:vinyl-fs": { + "type": "npm", + "name": "npm:vinyl-fs", + "data": { + "version": "3.0.3", + "packageName": "vinyl-fs", + "hash": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==" + } + }, + "npm:vinyl-sourcemap": { + "type": "npm", + "name": "npm:vinyl-sourcemap", + "data": { + "version": "1.1.0", + "packageName": "vinyl-sourcemap", + "hash": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=" + } + }, + "npm:vinyl-sourcemaps-apply": { + "type": "npm", + "name": "npm:vinyl-sourcemaps-apply", + "data": { + "version": "0.2.1", + "packageName": "vinyl-sourcemaps-apply", + "hash": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=" + } + }, + "npm:vinyl": { + "type": "npm", + "name": "npm:vinyl", + "data": { + "version": "2.2.0", + "packageName": "vinyl", + "hash": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==" + } + }, + "npm:vinyl@0.5.3": { + "type": "npm", + "name": "npm:vinyl@0.5.3", + "data": { + "version": "0.5.3", + "packageName": "vinyl", + "hash": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=" + } + }, + "npm:vm-browserify": { + "type": "npm", + "name": "npm:vm-browserify", + "data": { + "version": "1.1.2", + "packageName": "vm-browserify", + "hash": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + } + }, + "npm:void-elements": { + "type": "npm", + "name": "npm:void-elements", + "data": { + "version": "2.0.1", + "packageName": "void-elements", + "hash": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" + } + }, + "npm:vrscreenshotdiff": { + "type": "npm", + "name": "npm:vrscreenshotdiff", + "data": { + "version": "0.0.17", + "packageName": "vrscreenshotdiff", + "hash": "sha512-zfL6eUs3FbJzNhmqih/YtciAh2tf8dz9427kn6BRpdo/VC/fnCTUSl2ZzaAW0/wJaQpkWnl24PPfCa2ptuZENQ==" + } + }, + "npm:w3c-xmlserializer": { + "type": "npm", + "name": "npm:w3c-xmlserializer", + "data": { + "version": "4.0.0", + "packageName": "w3c-xmlserializer", + "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:watchpack-chokidar2": { + "type": "npm", + "name": "npm:watchpack-chokidar2", + "data": { + "version": "2.0.1", + "packageName": "watchpack-chokidar2", + "hash": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==" + } + }, + "npm:watchpack@1.7.5": { + "type": "npm", + "name": "npm:watchpack@1.7.5", + "data": { + "version": "1.7.5", + "packageName": "watchpack", + "hash": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=" + } + }, + "npm:web-namespaces": { + "type": "npm", + "name": "npm:web-namespaces", + "data": { + "version": "1.1.4", + "packageName": "web-namespaces", + "hash": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" + } + }, + "npm:web-streams-polyfill": { + "type": "npm", + "name": "npm:web-streams-polyfill", + "data": { + "version": "3.2.1", + "packageName": "web-streams-polyfill", + "hash": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==" + } + }, + "npm:webidl-conversions@3.0.1": { + "type": "npm", + "name": "npm:webidl-conversions@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" + } + }, + "npm:webidl-conversions@4.0.2": { + "type": "npm", + "name": "npm:webidl-conversions@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "webidl-conversions", + "hash": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "7.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + } + }, + "npm:webpack-bundle-analyzer": { + "type": "npm", + "name": "npm:webpack-bundle-analyzer", + "data": { + "version": "4.4.2", + "packageName": "webpack-bundle-analyzer", + "hash": "sha512-PIagMYhlEzFfhMYOzs5gFT55DkUdkyrJi/SxJp8EF3YMWhS+T9vvs2EoTetpk5qb6VsCq02eXTlRDOydRhDFAQ==" + } + }, + "npm:webpack-cli": { + "type": "npm", + "name": "npm:webpack-cli", + "data": { + "version": "4.10.0", + "packageName": "webpack-cli", + "hash": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "4.2.0", + "packageName": "webpack-dev-middleware", + "hash": "sha512-HVVpHw+5H4lfGasUKjpIkOy9TB27OyKiL13c+dhzVG1w77OQ87b408fp0qKDKQQkNGgShbStDzVJ8sK46JajXg==" + } + }, + "npm:webpack-dev-middleware@3.7.3": { + "type": "npm", + "name": "npm:webpack-dev-middleware@3.7.3", + "data": { + "version": "3.7.3", + "packageName": "webpack-dev-middleware", + "hash": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==" + } + }, + "npm:webpack-dev-middleware@5.3.1": { + "type": "npm", + "name": "npm:webpack-dev-middleware@5.3.1", + "data": { + "version": "5.3.1", + "packageName": "webpack-dev-middleware", + "hash": "sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.7.4", + "packageName": "webpack-dev-server", + "hash": "sha512-nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A==" + } + }, + "npm:webpack-filter-warnings-plugin@1.2.1": { + "type": "npm", + "name": "npm:webpack-filter-warnings-plugin@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "webpack-filter-warnings-plugin", + "hash": "sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==" + } + }, + "npm:webpack-hot-middleware": { + "type": "npm", + "name": "npm:webpack-hot-middleware", + "data": { + "version": "2.25.1", + "packageName": "webpack-hot-middleware", + "hash": "sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==" + } + }, + "npm:webpack-log": { + "type": "npm", + "name": "npm:webpack-log", + "data": { + "version": "2.0.0", + "packageName": "webpack-log", + "hash": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.7.3", + "packageName": "webpack-merge", + "hash": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==" + } + }, + "npm:webpack-merge@4.2.2": { + "type": "npm", + "name": "npm:webpack-merge@4.2.2", + "data": { + "version": "4.2.2", + "packageName": "webpack-merge", + "hash": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "1.4.3", + "packageName": "webpack-sources", + "hash": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==" + } + }, + "npm:webpack-sources@3.2.3": { + "type": "npm", + "name": "npm:webpack-sources@3.2.3", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack-virtual-modules": { + "type": "npm", + "name": "npm:webpack-virtual-modules", + "data": { + "version": "0.2.2", + "packageName": "webpack-virtual-modules", + "hash": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==" + } + }, + "npm:webpack-virtual-modules@0.4.3": { + "type": "npm", + "name": "npm:webpack-virtual-modules@0.4.3", + "data": { + "version": "0.4.3", + "packageName": "webpack-virtual-modules", + "hash": "sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==" + } + }, + "npm:webpack@4.46.0": { + "type": "npm", + "name": "npm:webpack@4.46.0", + "data": { + "version": "4.46.0", + "packageName": "webpack", + "hash": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==" + } + }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.83.1", + "packageName": "webpack", + "hash": "sha512-TNsG9jDScbNuB+Lb/3+vYolPplCS3bbEaJf+Bj0Gw4DhP3ioAflBb1flcRt9zsWITyvOhM96wMQNRWlSX52DgA==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:whatwg-fetch": { + "type": "npm", + "name": "npm:whatwg-fetch", + "data": { + "version": "2.0.4", + "packageName": "whatwg-fetch", + "hash": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + } + }, + "npm:whatwg-fetch@3.6.2": { + "type": "npm", + "name": "npm:whatwg-fetch@3.6.2", + "data": { + "version": "3.6.2", + "packageName": "whatwg-fetch", + "hash": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + } + }, + "npm:whatwg-mimetype": { + "type": "npm", + "name": "npm:whatwg-mimetype", + "data": { + "version": "3.0.0", + "packageName": "whatwg-mimetype", + "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:whatwg-url@5.0.0": { + "type": "npm", + "name": "npm:whatwg-url@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=" + } + }, + "npm:whatwg-url@7.0.0": { + "type": "npm", + "name": "npm:whatwg-url@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "whatwg-url", + "hash": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:which-module@1.0.0": { + "type": "npm", + "name": "npm:which-module@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "which-module", + "hash": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + } + }, + "npm:which-module": { + "type": "npm", + "name": "npm:which-module", + "data": { + "version": "2.0.0", + "packageName": "which-module", + "hash": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.4", + "packageName": "which-typed-array", + "hash": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:which@2.0.2": { + "type": "npm", + "name": "npm:which@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:which@3.0.1": { + "type": "npm", + "name": "npm:which@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "which", + "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" + } + }, + "npm:wide-align@1.1.3": { + "type": "npm", + "name": "npm:wide-align@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "wide-align", + "hash": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==" + } + }, + "npm:wide-align": { + "type": "npm", + "name": "npm:wide-align", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" + } + }, + "npm:widest-line@2.0.1": { + "type": "npm", + "name": "npm:widest-line@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "widest-line", + "hash": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==" + } + }, + "npm:widest-line": { + "type": "npm", + "name": "npm:widest-line", + "data": { + "version": "3.1.0", + "packageName": "widest-line", + "hash": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" + } + }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.0", + "packageName": "wildcard", + "hash": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" + } + }, + "npm:word-wrap": { + "type": "npm", + "name": "npm:word-wrap", + "data": { + "version": "1.2.4", + "packageName": "word-wrap", + "hash": "sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + } + }, + "npm:wordwrapjs": { + "type": "npm", + "name": "npm:wordwrapjs", + "data": { + "version": "4.0.1", + "packageName": "wordwrapjs", + "hash": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==" + } + }, + "npm:worker-farm": { + "type": "npm", + "name": "npm:worker-farm", + "data": { + "version": "1.7.0", + "packageName": "worker-farm", + "hash": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==" + } + }, + "npm:worker-rpc": { + "type": "npm", + "name": "npm:worker-rpc", + "data": { + "version": "0.1.1", + "packageName": "worker-rpc", + "hash": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==" + } + }, + "npm:workspace-tools": { + "type": "npm", + "name": "npm:workspace-tools", + "data": { + "version": "0.29.1", + "packageName": "workspace-tools", + "hash": "sha512-BVPROxNszGmyaUD2ErLWP4BpCiIkG1P//CnziOvHd27o1TeBm+7T1HKlYu89T4XGAjgPL/NP+tZ4j6aBvG/p/A==" + } + }, + "npm:workspace-tools@0.27.0": { + "type": "npm", + "name": "npm:workspace-tools@0.27.0", + "data": { + "version": "0.27.0", + "packageName": "workspace-tools", + "hash": "sha512-5mtE5Vy0Se4brAUJXKfXNtaS9jcUcH+IGF4LNU1xJr4bW1o5bK2gV0pykodB+n6V84nRtaD/4I/9w98aujm7LA==" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@^7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi@2.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "wrap-ansi", + "hash": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=" + } + }, + "npm:wrap-ansi@5.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==" + } + }, + "npm:wrap-ansi@6.2.0": { + "type": "npm", + "name": "npm:wrap-ansi@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + }, + "npm:write-file-atomic@5.0.1": { + "type": "npm", + "name": "npm:write-file-atomic@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "2.4.3", + "packageName": "write-file-atomic", + "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" + } + }, + "npm:write-file-atomic@3.0.3": { + "type": "npm", + "name": "npm:write-file-atomic@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "write-file-atomic", + "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + } + }, + "npm:write-file-atomic@4.0.2": { + "type": "npm", + "name": "npm:write-file-atomic@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:write-file-webpack-plugin": { + "type": "npm", + "name": "npm:write-file-webpack-plugin", + "data": { + "version": "4.5.0", + "packageName": "write-file-webpack-plugin", + "hash": "sha512-k46VeERtaezbmjpDcMWATjKUWBrVe/ZEEm0cyvUm8FFP8A/r+dw5x3psRvkUOhqh9bqBLUlGYYbtr6luI+HeAg==" + } + }, + "npm:write-json-file": { + "type": "npm", + "name": "npm:write-json-file", + "data": { + "version": "3.2.0", + "packageName": "write-json-file", + "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" + } + }, + "npm:write-pkg": { + "type": "npm", + "name": "npm:write-pkg", + "data": { + "version": "4.0.0", + "packageName": "write-pkg", + "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.11.0", + "packageName": "ws", + "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" + } + }, + "npm:ws@7.5.6": { + "type": "npm", + "name": "npm:ws@7.5.6", + "data": { + "version": "7.5.6", + "packageName": "ws", + "hash": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==" + } + }, + "npm:ws@8.2.3": { + "type": "npm", + "name": "npm:ws@8.2.3", + "data": { + "version": "8.2.3", + "packageName": "ws", + "hash": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==" + } + }, + "npm:x-default-browser": { + "type": "npm", + "name": "npm:x-default-browser", + "data": { + "version": "0.4.0", + "packageName": "x-default-browser", + "hash": "sha1-cM8NqF2nwKtcsPFaiX8jIqa91IE=" + } + }, + "npm:x-is-string": { + "type": "npm", + "name": "npm:x-is-string", + "data": { + "version": "0.1.0", + "packageName": "x-is-string", + "hash": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=" + } + }, + "npm:xdg-basedir": { + "type": "npm", + "name": "npm:xdg-basedir", + "data": { + "version": "3.0.0", + "packageName": "xdg-basedir", + "hash": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:xml2js": { + "type": "npm", + "name": "npm:xml2js", + "data": { + "version": "0.4.23", + "packageName": "xml2js", + "hash": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" + } + }, + "npm:xml2js@0.2.8": { + "type": "npm", + "name": "npm:xml2js@0.2.8", + "data": { + "version": "0.2.8", + "packageName": "xml2js", + "hash": "sha512-ZHZBIAO55GHCn2jBYByVPHvHS+o3j8/a/qmpEe6kxO3cTnTCWC3Htq9RYJ5G4XMwMMClD2QkXA9SNdPadLyn3Q==" + } + }, + "npm:xmlbuilder@9.0.7": { + "type": "npm", + "name": "npm:xmlbuilder@9.0.7", + "data": { + "version": "9.0.7", + "packageName": "xmlbuilder", + "hash": "sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==" + } + }, + "npm:xmlbuilder": { + "type": "npm", + "name": "npm:xmlbuilder", + "data": { + "version": "11.0.1", + "packageName": "xmlbuilder", + "hash": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" + } + }, + "npm:xmlchars": { + "type": "npm", + "name": "npm:xmlchars", + "data": { + "version": "2.2.0", + "packageName": "xmlchars", + "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + } + }, + "npm:xpath.js": { + "type": "npm", + "name": "npm:xpath.js", + "data": { + "version": "1.1.0", + "packageName": "xpath.js", + "hash": "sha512-jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ==" + } + }, + "npm:xstate": { + "type": "npm", + "name": "npm:xstate", + "data": { + "version": "4.33.1", + "packageName": "xstate", + "hash": "sha512-C9A3esyOuw/xRpwQUkG2e1Gjd8sZYh42t66COq8DaJgaaLOqmE8zWRH1ouL9mHtQ3WV//uT5Ki3ijHGSUdLiww==" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:xtend@3.0.0": { + "type": "npm", + "name": "npm:xtend@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "xtend", + "hash": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=" + } + }, + "npm:y18n@3.2.2": { + "type": "npm", + "name": "npm:y18n@3.2.2", + "data": { + "version": "3.2.2", + "packageName": "y18n", + "hash": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "4.0.3", + "packageName": "y18n", + "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + } + }, + "npm:y18n@5.0.5": { + "type": "npm", + "name": "npm:y18n@5.0.5", + "data": { + "version": "5.0.5", + "packageName": "y18n", + "hash": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==" + } + }, + "npm:yallist@2.1.2": { + "type": "npm", + "name": "npm:yallist@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "yallist", + "hash": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + } + }, + "npm:yallist@3.1.1": { + "type": "npm", + "name": "npm:yallist@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "13.1.2", + "packageName": "yargs-parser", + "hash": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==" + } + }, + "npm:yargs-parser@20.2.4": { + "type": "npm", + "name": "npm:yargs-parser@20.2.4", + "data": { + "version": "20.2.4", + "packageName": "yargs-parser", + "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" + } + }, + "npm:yargs-parser@21.1.1": { + "type": "npm", + "name": "npm:yargs-parser@21.1.1", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:yargs-parser@18.1.3": { + "type": "npm", + "name": "npm:yargs-parser@18.1.3", + "data": { + "version": "18.1.3", + "packageName": "yargs-parser", + "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" + } + }, + "npm:yargs-parser@5.0.0": { + "type": "npm", + "name": "npm:yargs-parser@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "yargs-parser", + "hash": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=" + } + }, + "npm:yargs-unparser@1.6.0": { + "type": "npm", + "name": "npm:yargs-unparser@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "yargs-unparser", + "hash": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==" + } + }, + "npm:yargs-unparser": { + "type": "npm", + "name": "npm:yargs-unparser", + "data": { + "version": "2.0.0", + "packageName": "yargs-unparser", + "hash": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "13.3.2", + "packageName": "yargs", + "hash": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==" + } + }, + "npm:yargs@16.2.0": { + "type": "npm", + "name": "npm:yargs@16.2.0", + "data": { + "version": "16.2.0", + "packageName": "yargs", + "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" + } + }, + "npm:yargs@15.4.1": { + "type": "npm", + "name": "npm:yargs@15.4.1", + "data": { + "version": "15.4.1", + "packageName": "yargs", + "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" + } + }, + "npm:yargs@17.7.2": { + "type": "npm", + "name": "npm:yargs@17.7.2", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yargs@7.1.0": { + "type": "npm", + "name": "npm:yargs@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "yargs", + "hash": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=" + } + }, + "npm:yauzl": { + "type": "npm", + "name": "npm:yauzl", + "data": { + "version": "2.10.0", + "packageName": "yauzl", + "hash": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=" + } + }, + "npm:ylru": { + "type": "npm", + "name": "npm:ylru", + "data": { + "version": "1.3.2", + "packageName": "ylru", + "hash": "sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA==" + } + }, + "npm:yn": { + "type": "npm", + "name": "npm:yn", + "data": { + "version": "3.1.1", + "packageName": "yn", + "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:yocto-queue@1.0.0": { + "type": "npm", + "name": "npm:yocto-queue@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "yocto-queue", + "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" + } + }, + "npm:z-schema": { + "type": "npm", + "name": "npm:z-schema", + "data": { + "version": "5.0.2", + "packageName": "z-schema", + "hash": "sha512-40TH47ukMHq5HrzkeVE40Ad7eIDKaRV2b+Qpi2prLc9X9eFJFzV7tMe5aH12e6avaSS/u5l653EQOv+J9PirPw==" + } + }, + "npm:zwitch": { + "type": "npm", + "name": "npm:zwitch", + "data": { + "version": "1.0.5", + "packageName": "zwitch", + "hash": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" + } + } + }, + "dependencies": [ + { + "source": "npm:@actions/core", + "target": "npm:@actions/http-client", + "type": "static" + }, + { + "source": "npm:@actions/core", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@actions/github", + "target": "npm:@actions/http-client", + "type": "static" + }, + { + "source": "npm:@actions/github", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@actions/github", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@actions/github", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + }, + { + "source": "npm:@actions/http-client", + "target": "npm:tunnel", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping@0.1.1", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@azure/abort-controller", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/core-asynciterator-polyfill", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/core-rest-pipeline", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/core-tracing@1.0.0-preview.11", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@azure/core-tracing@1.0.0-preview.8", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@types/node-fetch", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@types/tunnel", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:form-data@3.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:tough-cookie@4.1.2", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:tunnel", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:xml2js", + "type": "static" + }, + { + "source": "npm:@azure/core-lro", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-lro", + "target": "npm:@azure/core-http", + "type": "static" + }, + { + "source": "npm:@azure/core-lro", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:@azure/core-lro", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@azure/core-paging", + "target": "npm:@azure/core-asynciterator-polyfill", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:http-proxy-agent@4.0.1", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:http-proxy-agent@4.0.1", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.11", + "target": "npm:@opencensus/web-types", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.11", + "target": "npm:@opentelemetry/api@1.0.0-rc.0", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.11", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing", + "target": "npm:@opentelemetry/api@1.0.3", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.8", + "target": "npm:@opencensus/web-types", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.8", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.8", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@azure/core-xml", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-xml", + "target": "npm:xml2js", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-client", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-paging", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-rest-pipeline", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-xml", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@azure/logger", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/core-http", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/core-lro", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/core-paging", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/core-tracing@1.0.0-preview.8", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.12.11", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-member-expression-to-functions", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-optimise-call-expression", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-default-from", + "target": "npm:@babel/plugin-syntax-export-default-from", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-attributes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx@7.12.1", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:regenerator-transform", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/polyfill", + "target": "npm:core-js@2.6.11", + "type": "static" + }, + { + "source": "npm:@babel/polyfill", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@babel/polyfill", + "target": "npm:core-js@2.6.11", + "type": "static" + }, + { + "source": "npm:@babel/polyfill", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:find-cache-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:find-cache-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@babel/runtime-corejs3", + "target": "npm:core-js-pure", + "type": "static" + }, + { + "source": "npm:@babel/runtime-corejs3", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@charlietango/use-script", + "target": "npm:@charlietango/use-client-hydrated", + "type": "static" + }, + { + "source": "npm:@cnakazawa/watch", + "target": "npm:exec-sh", + "type": "static" + }, + { + "source": "npm:@cnakazawa/watch", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + }, + { + "source": "npm:@cypress/react", + "target": "npm:@cypress/mount-utils", + "type": "static" + }, + { + "source": "npm:@cypress/react", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@cypress/react", + "target": "npm:find-webpack", + "type": "static" + }, + { + "source": "npm:@cypress/react", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:form-data@2.3.3", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:http-signature", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:qs@6.5.3", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@cypress/webpack-dev-server", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@cypress/webpack-dev-server", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@cypress/webpack-dev-server", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@cypress/xvfb", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:@cypress/xvfb", + "target": "npm:lodash.once", + "type": "static" + }, + { + "source": "npm:@dnd-kit/accessibility", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@dnd-kit/core", + "target": "npm:@dnd-kit/accessibility", + "type": "static" + }, + { + "source": "npm:@dnd-kit/core", + "target": "npm:@dnd-kit/utilities", + "type": "static" + }, + { + "source": "npm:@dnd-kit/core", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@dnd-kit/sortable", + "target": "npm:@dnd-kit/utilities", + "type": "static" + }, + { + "source": "npm:@dnd-kit/sortable", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@dnd-kit/utilities", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@dnd-kit/utilities", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@dsherret/to-absolute-glob", + "target": "npm:is-absolute", + "type": "static" + }, + { + "source": "npm:@dsherret/to-absolute-glob", + "target": "npm:is-negated-glob", + "type": "static" + }, + { + "source": "npm:@effect/io", + "target": "npm:@effect/data", + "type": "static" + }, + { + "source": "npm:@effect/io", + "target": "npm:@effect/data", + "type": "static" + }, + { + "source": "npm:@effect/match", + "target": "npm:@effect/data", + "type": "static" + }, + { + "source": "npm:@effect/match", + "target": "npm:@effect/schema", + "type": "static" + }, + { + "source": "npm:@effect/schema", + "target": "npm:@effect/data", + "type": "static" + }, + { + "source": "npm:@effect/schema", + "target": "npm:@effect/io", + "type": "static" + }, + { + "source": "npm:@effect/schema", + "target": "npm:fast-check", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/sheet", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/stylis", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/weak-memoize", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/sheet", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/stylis", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/weak-memoize", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:@emotion/sheet@1.0.1", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:@emotion/utils@1.0.0", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:@emotion/weak-memoize", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/cache", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/css", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/serialize", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/sheet", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/css", + "target": "npm:@emotion/serialize", + "type": "static" + }, + { + "source": "npm:@emotion/css", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/css", + "target": "npm:babel-plugin-emotion", + "type": "static" + }, + { + "source": "npm:@emotion/css", + "target": "npm:@emotion/serialize", + "type": "static" + }, + { + "source": "npm:@emotion/css", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/css", + "target": "npm:babel-plugin-emotion", + "type": "static" + }, + { + "source": "npm:@emotion/is-prop-valid", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:@emotion/hash", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:@emotion/unitless", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:csstype@2.6.19", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:@emotion/hash@0.8.0", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:@emotion/unitless", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:@emotion/utils@1.0.0", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@es-joy/jsdoccomment", + "target": "npm:comment-parser", + "type": "static" + }, + { + "source": "npm:@es-joy/jsdoccomment", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:@es-joy/jsdoccomment", + "target": "npm:jsdoc-type-pratt-parser", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals@13.12.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore@4.0.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:@floating-ui/dom", + "target": "npm:@floating-ui/core", + "type": "static" + }, + { + "source": "npm:@fluentui/dom-utilities@1.1.1", + "target": "npm:@uifabric/set-version", + "type": "static" + }, + { + "source": "npm:@fluentui/dom-utilities@1.1.1", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@fluentui/react-icons", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "npm:@fluentui/react-icons", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@linaria/babel-preset", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@linaria/shaker", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@linaria/babel-preset", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@linaria/shaker", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:@emotion/hash@0.9.1", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:@griffel/style-types", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:rtl-css-js", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@griffel/eslint-plugin", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@griffel/eslint-plugin", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/jest-serializer", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/jest-serializer", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/react", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/react", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/react", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/react", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/shadow-dom", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/shadow-dom", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/style-types", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-loader", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-loader", + "target": "npm:@griffel/babel-preset", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-loader", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:acorn@5.7.4", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:css", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:normalize-path@2.1.1", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/map-sources", + "target": "npm:normalize-path@2.1.1", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/map-sources", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:@hot-loader/react-dom@17.0.2", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:@hot-loader/react-dom@17.0.2", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:@hot-loader/react-dom@17.0.2", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-changed-files", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve-dependencies", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/expect-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument@6.0.0", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument@6.0.0", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument@6.0.0", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:jest-haste-map@26.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:jest-regex-util@26.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:jest-util@26.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:write-file-atomic@3.0.3", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:write-file-atomic@4.0.2", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/istanbul-reports@1.1.1", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/yargs@15.0.13", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/yargs@15.0.13", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/yargs@17.0.22", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping@0.1.1", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping@0.1.1", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:@lerna/child-process", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:pify@5.0.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-proposal-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/core", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/logger", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/utils", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:cosmiconfig@5.2.1", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:source-map@0.7.3", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:stylis@3.5.4", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-proposal-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/core", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/logger", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/utils", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:cosmiconfig@5.2.1", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:source-map@0.7.3", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:stylis@3.5.4", + "type": "static" + }, + { + "source": "npm:@linaria/core", + "target": "npm:@linaria/logger", + "type": "static" + }, + { + "source": "npm:@linaria/core", + "target": "npm:@linaria/utils", + "type": "static" + }, + { + "source": "npm:@linaria/logger", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@linaria/logger", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@linaria/preeval", + "target": "npm:@linaria/babel-preset", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@linaria/babel-preset", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@linaria/logger", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@linaria/preeval", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:babel-plugin-transform-react-remove-prop-types", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:ts-invariant", + "type": "static" + }, + { + "source": "npm:@mdx-js/loader", + "target": "npm:@mdx-js/mdx", + "type": "static" + }, + { + "source": "npm:@mdx-js/loader", + "target": "npm:@mdx-js/react", + "type": "static" + }, + { + "source": "npm:@mdx-js/loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-extract-import-names", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:camelcase-css", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:detab", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:hast-util-raw", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:mdast-util-to-hast", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-footnotes", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-mdx", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-parse@8.0.3", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-squeeze-paragraphs", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unified@9.2.0", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-extract-import-names", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:camelcase-css", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:detab", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:hast-util-raw", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:mdast-util-to-hast", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-footnotes", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-mdx", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-parse@8.0.3", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-squeeze-paragraphs", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unified@9.2.0", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model", + "target": "npm:@microsoft/tsdoc-config", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model", + "target": "npm:@rushstack/node-core-library", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@microsoft/api-extractor-model", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@microsoft/tsdoc-config", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@rushstack/node-core-library", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@rushstack/rig-package", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@rushstack/ts-command-line", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:resolve@1.17.0", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:semver@7.3.8", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@nevware21/ts-async", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-common", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-common", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-common", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-common", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-core-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-core-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-core-js", + "target": "npm:@nevware21/ts-async", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-core-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@nevware21/ts-async", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-shims", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-analytics-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-channel-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-dependencies-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-properties-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@nevware21/ts-async", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/dynamicproto-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@microsoft/eslint-plugin-sdl", + "target": "npm:eslint-plugin-node", + "type": "static" + }, + { + "source": "npm:@microsoft/eslint-plugin-sdl", + "target": "npm:eslint-plugin-react@7.24.0", + "type": "static" + }, + { + "source": "npm:@microsoft/eslint-plugin-sdl", + "target": "npm:eslint-plugin-security", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-foundation", + "target": "npm:@microsoft/fast-element", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-foundation", + "target": "npm:@microsoft/fast-web-utilities", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-foundation", + "target": "npm:tabbable", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-foundation", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-web-utilities", + "target": "npm:exenv-es6", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-web-utilities", + "target": "npm:exenv-es6", + "type": "static" + }, + { + "source": "npm:@microsoft/loader-load-themed-styles", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:@microsoft/tsdoc@0.14.2", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:resolve@1.19.0", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-version-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:ext-name", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:file-type", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:filenamify@5.1.1", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:os-filter-obj", + "type": "static" + }, + { + "source": "npm:@mrmlnc/readdir-enhanced", + "target": "npm:call-me-maybe", + "type": "static" + }, + { + "source": "npm:@mrmlnc/readdir-enhanced", + "target": "npm:glob-to-regexp@0.3.0", + "type": "static" + }, + { + "source": "npm:@nevware21/ts-async", + "target": "npm:@nevware21/ts-utils", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + }, + { + "source": "npm:@npmcli/fs@2.1.2", + "target": "npm:@gar/promisify", + "type": "static" + }, + { + "source": "npm:@npmcli/fs@2.1.2", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/fs", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:promise-retry@1.1.1", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:@npmcli/promise-spawn@6.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:npm-pick-manifest@8.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:which@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents@1.0.7", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents@1.0.7", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled@3.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file@2.0.1", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file@2.0.1", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn@6.0.2", + "target": "npm:which@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn@6.0.2", + "target": "npm:which@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn@6.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast@3.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn@6.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast@3.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which@3.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@1.3.1", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@1.3.1", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@1.3.1", + "target": "npm:node-gyp@6.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@1.3.1", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@nrwl/devkit", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nrwl/jest", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nrwl/js", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nrwl/linter", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "npm:@nrwl/node", + "target": "npm:@nx/node", + "type": "static" + }, + { + "source": "npm:@nrwl/nx-plugin", + "target": "npm:@nx/plugin", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nrwl/workspace", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nrwl/jest", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@phenomnomnominal/tsquery@5.0.1", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:identity-obj-proxy", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nrwl/js", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@phenomnomnominal/tsquery@5.0.1", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tsconfig-paths@4.2.0", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@nrwl/linter", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@phenomnomnominal/tsquery@5.0.1", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:typescript@5.1.6", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nrwl/node", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nrwl/nx-plugin", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@phenomnomnominal/tsquery@5.0.1", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:@nrwl/workspace", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:@octokit/auth-token", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/auth-token@3.0.1", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/auth-token", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/graphql", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/auth-token", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/graphql", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/auth-token@3.0.1", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/graphql@5.0.1", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/request@6.2.1", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/request-error@3.0.1", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/types@9.3.2", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.2", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.2", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.2", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.1", + "target": "npm:@octokit/request@6.2.1", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.1", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.1", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest@6.1.2", + "target": "npm:@octokit/tsconfig", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest@6.1.2", + "target": "npm:@octokit/types@9.3.2", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", + "target": "npm:@octokit/types@10.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.1", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.1", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.1", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/endpoint", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/endpoint", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:@octokit/endpoint@7.0.2", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:@octokit/request-error@3.0.1", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/core@4.2.4", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-paginate-rest@6.1.2", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/core@4.2.4", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-paginate-rest@6.1.2", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", + "type": "static" + }, + { + "source": "npm:@octokit/types@10.0.0", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types@12.11.0", + "type": "static" + }, + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types@12.11.0", + "type": "static" + }, + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types@12.11.0", + "type": "static" + }, + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types@12.11.0", + "type": "static" + }, + { + "source": "npm:@octokit/types@7.5.0", + "target": "npm:@octokit/openapi-types@13.12.0", + "type": "static" + }, + { + "source": "npm:@octokit/types@9.3.2", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@octokit/types@9.3.2", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@opentelemetry/api", + "target": "npm:@opentelemetry/context-base", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-gyp-build", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:@types/esquery", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery@5.0.1", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:core-js-pure", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:source-map@0.7.3", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:@typescript-eslint/eslint-plugin", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:eslint-plugin-jest@25.2.4", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:eslint-plugin-react", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:@types/estree@0.0.39", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:estree-walker@1.0.1", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:@types/node@12.20.24", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:import-lazy", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:resolve@1.17.0", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:semver@7.3.8", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:timsort", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:z-schema", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:@types/node@12.20.24", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:import-lazy", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:resolve@1.17.0", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:semver@7.3.8", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:z-schema", + "type": "static" + }, + { + "source": "npm:@rushstack/package-deps-hash", + "target": "npm:@rushstack/node-core-library@3.50.1", + "type": "static" + }, + { + "source": "npm:@rushstack/package-deps-hash", + "target": "npm:@rushstack/node-core-library@3.50.1", + "type": "static" + }, + { + "source": "npm:@rushstack/rig-package", + "target": "npm:resolve@1.17.0", + "type": "static" + }, + { + "source": "npm:@rushstack/rig-package", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line", + "target": "npm:@types/argparse", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:@sigstore/bundle", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:tuf-js", + "type": "static" + }, + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:react-sizeme", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:polished", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:react-inspector", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:uuid-browser", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@jest/transform@26.6.2", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@mdx-js/react", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/docs-tools", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/mdx1-csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/postinstall", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/source-loader", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:remark-external-links", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:remark-slug", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-actions", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-backgrounds", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-controls", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-docs", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-measure", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-outline", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-toolbars", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-viewport", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:copy-to-clipboard", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:react-colorful", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:react-select", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:store2", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:store2", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/client-api", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/ui", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:autoprefixer@9.8.6", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:case-sensitive-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:css-loader@3.6.0", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:glob-promise", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:html-webpack-plugin@4.5.2", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:pnp-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:postcss-flexbugs-fixes", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:postcss-loader@4.3.0", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:raw-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:style-loader@1.3.0", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:terser-webpack-plugin@4.2.3", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:url-loader@4.1.1", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack@4.46.0", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack-dev-middleware@3.7.3", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack-filter-warnings-plugin@1.2.1", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack-hot-middleware", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack-virtual-modules", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/client-api", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:babel-plugin-named-exports-order", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:browser-assert", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:case-sensitive-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:glob-promise", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:path-browserify", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:webpack-hot-middleware", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:webpack-virtual-modules@0.4.3", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/channels", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/channels", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/channels", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/channels", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/channels", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/channels", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:store2", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:synchronous-promise", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/client-logger", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/client-logger", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/channel-websocket", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/client-api", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/ui", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:airbnb-js-shims", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:ansi-to-html", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:unfetch", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-export-default-from", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-private-methods", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/register", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@types/pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:babel-plugin-macros@3.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:babel-plugin-polyfill-corejs3@0.1.7", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:file-system-cache", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:interpret@2.2.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:lazy-universal-dotenv", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:pkg-dir@5.0.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:webpack@4.46.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-events", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/core-events", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/builder-webpack4", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/core-client", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/csf-tools", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/manager-webpack4", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/telemetry", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@types/node-fetch", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@types/pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:better-opn", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:boxen@5.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:commander@6.2.1", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:cpy", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:serve-favicon", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:webpack@4.46.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:x-default-browser", + "type": "static" + }, + { + "source": "npm:@storybook/core", + "target": "npm:@storybook/core-client", + "type": "static" + }, + { + "source": "npm:@storybook/core", + "target": "npm:@storybook/core-server", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@storybook/mdx1-csf", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/csf", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/core", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/docs-tools", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:html-loader", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:react@16.14.0", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:react-dom@16.14.0", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/core-client", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/ui", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:case-sensitive-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:css-loader@3.6.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:html-webpack-plugin@4.5.2", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:pnp-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:style-loader@1.3.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:terser-webpack-plugin@4.2.3", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:url-loader@4.1.1", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:webpack@4.46.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:webpack-dev-middleware@3.7.3", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:webpack-virtual-modules", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/core-client", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/ui", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:case-sensitive-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:webpack-virtual-modules@0.4.3", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@mdx-js/mdx", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:js-string-escape", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:@types/npmlog", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:npmlog@5.0.1", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/postinstall", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:ansi-to-html", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:synchronous-promise", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:unfetch", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:endent", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:flat-cache", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:react-docgen-typescript", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@babel/preset-flow", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@pmmmwh/react-refresh-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/core", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/docs-tools", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/react-docgen-typescript-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@types/estree@0.0.51", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:acorn@7.4.1", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:acorn-walk@7.2.0", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:babel-plugin-add-react-displayname", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:babel-plugin-react-docgen", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:html-tags", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:react-element-to-jsx-string", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/semver", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/semver", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:synchronous-promise", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:detect-package-manager", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:fetch-retry", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:isomorphic-unfetch@3.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:@mole-inc/bin-wrapper", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:source-map@0.7.3", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/types", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-arm64@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-x64@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm-gnueabihf@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-gnu@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-musl@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-gnu@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-musl@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-arm64-msvc@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-ia32-msvc@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:@swc/helpers", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@swc/helpers", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + }, + { + "source": "npm:@szmarczak/http-timer@5.0.1", + "target": "npm:defer-to-connect", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:@types/aria-query", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:aria-query@5.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:dom-accessibility-api", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:lz-string", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:pretty-format@27.5.1", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:@types/aria-query", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:aria-query@5.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:dom-accessibility-api", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:lz-string", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:pretty-format@27.5.1", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:@types/aria-query", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:dom-accessibility-api", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:pretty-format@25.5.0", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@adobe/css-tools", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@types/testing-library__jest-dom", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:aria-query@5.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:css.escape", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:dom-accessibility-api", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@adobe/css-tools", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@types/testing-library__jest-dom", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:aria-query@5.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:css.escape", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:dom-accessibility-api", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:@types/react-dom@18.0.6", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:@types/react-test-renderer", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:react-error-boundary", + "type": "static" + }, + { + "source": "npm:@testing-library/react", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/react", + "target": "npm:@testing-library/dom", + "type": "static" + }, + { + "source": "npm:@testing-library/user-event", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:@textlint/ast-node-types", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:remark-frontmatter", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:remark-parse", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:structured-source", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:traverse", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:unified", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:@dsherret/to-absolute-glob", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:is-negated-glob", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:@tufjs/canonical-json", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:minimatch@9.0.1", + "type": "static" + }, + { + "source": "npm:@types/babel-plugin-tester", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:@types/babel-plugin-tester", + "target": "npm:@types/prettier", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__helper-plugin-utils", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:@types/babel__register", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/http-cache-semantics", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/keyv", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/http-cache-semantics", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/keyv", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:@types/chai-spies", + "target": "npm:@types/chai", + "type": "static" + }, + { + "source": "npm:@types/cheerio", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/cheerio", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/chrome-remote-interface", + "target": "npm:devtools-protocol", + "type": "static" + }, + { + "source": "npm:@types/circular-dependency-plugin", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/circular-dependency-plugin", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@types/color-convert", + "target": "npm:@types/color-name", + "type": "static" + }, + { + "source": "npm:@types/color", + "target": "npm:@types/color-convert", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/connect", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/copy-webpack-plugin", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@types/cors", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/d3-axis", + "target": "npm:@types/d3-selection", + "type": "static" + }, + { + "source": "npm:@types/d3-fetch", + "target": "npm:@types/d3-dsv", + "type": "static" + }, + { + "source": "npm:@types/d3-sankey", + "target": "npm:@types/d3-shape@1.3.8", + "type": "static" + }, + { + "source": "npm:@types/d3-scale", + "target": "npm:@types/d3-time", + "type": "static" + }, + { + "source": "npm:@types/d3-shape", + "target": "npm:@types/d3-path", + "type": "static" + }, + { + "source": "npm:@types/d3-shape@1.3.8", + "target": "npm:@types/d3-path", + "type": "static" + }, + { + "source": "npm:@types/enzyme", + "target": "npm:@types/cheerio", + "type": "static" + }, + { + "source": "npm:@types/enzyme", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@types/esquery", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/execa", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/fs-extra", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/glob-stream", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:@types/glob-stream", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/events", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/events", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/events", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/globby", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/graphviz", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-babel", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-cache", + "target": "npm:@types/gulp-util", + "type": "static" + }, + { + "source": "npm:@types/gulp-cache", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-cache", + "target": "npm:@types/vinyl", + "type": "static" + }, + { + "source": "npm:@types/gulp-remember", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-sourcemaps", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-sourcemaps", + "target": "npm:@types/vinyl", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/through2", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/vinyl", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/through2", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/vinyl", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@types/gulp", + "target": "npm:@types/undertaker", + "type": "static" + }, + { + "source": "npm:@types/gulp", + "target": "npm:@types/vinyl-fs", + "type": "static" + }, + { + "source": "npm:@types/gulp", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@types/handlebars", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:@types/hast", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/inquirer", + "target": "npm:@types/through", + "type": "static" + }, + { + "source": "npm:@types/inquirer", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports@1.1.1", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports@1.1.1", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@types/jest-axe", + "target": "npm:@types/jest", + "type": "static" + }, + { + "source": "npm:@types/jest-axe", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:@types/karma", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/karma", + "target": "npm:log4js", + "type": "static" + }, + { + "source": "npm:@types/keyv", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/loader-utils", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/loader-utils", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@types/mdast", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:@types/micromatch", + "target": "npm:@types/braces", + "type": "static" + }, + { + "source": "npm:@types/node-fetch", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/node-fetch", + "target": "npm:form-data@3.0.0", + "type": "static" + }, + { + "source": "npm:@types/node-fetch", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/node-fetch", + "target": "npm:form-data@3.0.0", + "type": "static" + }, + { + "source": "npm:@types/progress", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/prompts", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/react-addons-test-utils", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-custom-scrollbars", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-dom", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-dom@18.0.6", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-dom@18.0.6", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-frame-component", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-is", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react-router", + "type": "static" + }, + { + "source": "npm:@types/react-router", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-syntax-highlighter", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-table", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-test-renderer", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-test-renderer", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-transition-group", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-virtualized", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react-virtualized", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-window", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/react@18.0.14", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react@18.0.14", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react@18.0.14", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/request-promise-native", + "target": "npm:@types/request", + "type": "static" + }, + { + "source": "npm:@types/request", + "target": "npm:@types/caseless", + "type": "static" + }, + { + "source": "npm:@types/request", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/request", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/request", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:@types/resolve", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/responselike", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/responselike", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/testing-library__jest-dom", + "target": "npm:@types/jest", + "type": "static" + }, + { + "source": "npm:@types/through2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/through", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/tunnel", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/uglify-js", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@types/undertaker", + "target": "npm:@types/undertaker-registry", + "type": "static" + }, + { + "source": "npm:@types/vinyl-fs", + "target": "npm:@types/glob-stream", + "type": "static" + }, + { + "source": "npm:@types/vinyl-fs", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/vinyl-fs", + "target": "npm:@types/vinyl", + "type": "static" + }, + { + "source": "npm:@types/vinyl", + "target": "npm:@types/expect", + "type": "static" + }, + { + "source": "npm:@types/vinyl", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/vinyl", + "target": "npm:@types/expect", + "type": "static" + }, + { + "source": "npm:@types/vinyl", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack-bundle-analyzer", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack-bundle-analyzer", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:@types/webpack-bundle-analyzer", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@types/webpack-dev-middleware", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/webpack-dev-middleware", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@types/webpack-hot-middleware", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/webpack-hot-middleware", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:@types/webpack-hot-middleware", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@types/webpack-sources", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack-sources", + "target": "npm:@types/source-list-map", + "type": "static" + }, + { + "source": "npm:@types/webpack-sources", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@types/webpack-sources", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack-sources", + "target": "npm:@types/source-list-map", + "type": "static" + }, + { + "source": "npm:@types/webpack-sources", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/tapable", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/uglify-js", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/webpack-sources", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/tapable", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/uglify-js", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/webpack-sources", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/tapable", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/uglify-js", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/webpack-sources", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/tapable", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/uglify-js", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/webpack-sources", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@types/ws", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@types/yargs@15.0.13", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@types/yargs@17.0.22", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@types/yauzl", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@5.59.1", + "target": "npm:@typescript-eslint/types@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@5.59.1", + "target": "npm:@typescript-eslint/visitor-keys@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:@typescript-eslint/types@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:@typescript-eslint/visitor-keys@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/semver@7.3.13", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys@2.0.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.59.1", + "target": "npm:@typescript-eslint/types@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.59.1", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@uifabric/set-version", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast@1.9.0", + "target": "npm:@webassemblyjs/helper-module-context", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast@1.9.0", + "target": "npm:@webassemblyjs/wast-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-code-frame", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-module-context", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "target": "npm:@webassemblyjs/helper-buffer@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "target": "npm:@webassemblyjs/wasm-gen@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ieee754@1.9.0", + "target": "npm:@xtuc/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/leb128@1.9.0", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/helper-buffer@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/wasm-gen@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/wasm-opt@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/wasm-parser@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer@1.11.6", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/ieee754@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/leb128@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/utf8@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt@1.9.0", + "target": "npm:@webassemblyjs/helper-buffer@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt@1.9.0", + "target": "npm:@webassemblyjs/wasm-gen@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt@1.9.0", + "target": "npm:@webassemblyjs/wasm-parser@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/helper-api-error@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/ieee754@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/leb128@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/utf8@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/floating-point-hex-parser@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/helper-api-error@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/helper-code-frame", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/helper-fsm", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer@1.11.6", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer@1.11.6", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/wast-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webpack-cli/info", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:@wojtekmaj/enzyme-adapter-utils", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:enzyme-shallow-equal", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:react-test-renderer", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-utils", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-utils", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-utils", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-utils", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@xstate/react", + "target": "npm:use-isomorphic-layout-effect", + "type": "static" + }, + { + "source": "npm:@xstate/react", + "target": "npm:use-subscription", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:ability-attributes-generator", + "target": "npm:ability-attributes", + "type": "static" + }, + { + "source": "npm:ability-attributes-generator", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:ability-attributes-generator", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:ability-attributes", + "target": "npm:ability-attributes-js-constraints", + "type": "static" + }, + { + "source": "npm:abort-controller", + "target": "npm:event-target-shim", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:@xmldom/xmldom@0.7.9", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:axios@0.21.4", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:date-utils", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:jws", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:underscore", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:xpath.js", + "type": "static" + }, + { + "source": "npm:agent-base@4.3.0", + "target": "npm:es6-promisify", + "type": "static" + }, + { + "source": "npm:agent-base@4.3.0", + "target": "npm:es6-promisify", + "type": "static" + }, + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:humanize-ms", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:humanize-ms", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:clean-stack@4.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:indent-string@5.0.0", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:es5-shim", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:es6-shim", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:object.getownpropertydescriptors", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:promise.allsettled", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:promise.prototype.finally", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:string.prototype.padend", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:string.prototype.padstart", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:symbol.prototype.description", + "type": "static" + }, + { + "source": "npm:ajv-formats@2.1.1", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:ajv-keywords@5.1.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@4.11.8", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:ajv@4.11.8", + "target": "npm:json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@5.5.2", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:ajv@5.5.2", + "target": "npm:fast-deep-equal@1.1.0", + "type": "static" + }, + { + "source": "npm:ajv@5.5.2", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@5.5.2", + "target": "npm:json-schema-traverse@0.3.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:anchor-markdown-header", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:ansi-align@2.0.0", + "target": "npm:string-width@2.1.1", + "type": "static" + }, + { + "source": "npm:ansi-align", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:ansi-colors", + "target": "npm:ansi-wrap", + "type": "static" + }, + { + "source": "npm:ansi-cyan", + "target": "npm:ansi-wrap", + "type": "static" + }, + { + "source": "npm:ansi-escape-sequences", + "target": "npm:array-back@6.2.2", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.11.0", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.11.0", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.11.0", + "type": "static" + }, + { + "source": "npm:ansi-escapes@6.2.0", + "target": "npm:type-fest@3.11.0", + "type": "static" + }, + { + "source": "npm:ansi-gray", + "target": "npm:ansi-wrap", + "type": "static" + }, + { + "source": "npm:ansi-red", + "target": "npm:ansi-wrap", + "type": "static" + }, + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:ansi-styles", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:ansi-styles", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:ansi-to-html", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:anymatch@2.0.0", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:anymatch@2.0.0", + "target": "npm:normalize-path@2.1.1", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:append-buffer", + "target": "npm:buffer-equal", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@2.0.0", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@2.0.0", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@3.0.1", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@3.0.1", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:argparse", + "target": "npm:sprintf-js", + "type": "static" + }, + { + "source": "npm:argparse", + "target": "npm:sprintf-js", + "type": "static" + }, + { + "source": "npm:aria-query", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:aria-query", + "target": "npm:@babel/runtime-corejs3", + "type": "static" + }, + { + "source": "npm:arr-diff@1.1.0", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:arr-diff@1.1.0", + "target": "npm:array-slice@0.2.3", + "type": "static" + }, + { + "source": "npm:arr-filter", + "target": "npm:make-iterator", + "type": "static" + }, + { + "source": "npm:arr-map", + "target": "npm:make-iterator", + "type": "static" + }, + { + "source": "npm:arr-map", + "target": "npm:make-iterator", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-initial", + "target": "npm:array-slice", + "type": "static" + }, + { + "source": "npm:array-initial", + "target": "npm:is-number@4.0.0", + "type": "static" + }, + { + "source": "npm:array-last", + "target": "npm:is-number@4.0.0", + "type": "static" + }, + { + "source": "npm:array-sort", + "target": "npm:default-compare", + "type": "static" + }, + { + "source": "npm:array-sort", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:array-sort", + "target": "npm:kind-of@5.1.0", + "type": "static" + }, + { + "source": "npm:array-union@1.0.2", + "target": "npm:array-uniq", + "type": "static" + }, + { + "source": "npm:array-union@1.0.2", + "target": "npm:array-uniq", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:asn1.js", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:asn1.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:asn1.js", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:asn1", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:assert@1.5.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:assert@1.5.0", + "target": "npm:util@0.10.3", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:es6-object-assign", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:is-nan", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:util", + "type": "static" + }, + { + "source": "npm:ast-types", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:stream-exhaust", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:stream-exhaust", + "type": "static" + }, + { + "source": "npm:async-retry", + "target": "npm:retry", + "type": "static" + }, + { + "source": "npm:async-settle", + "target": "npm:async-done", + "type": "static" + }, + { + "source": "npm:async", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:async", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:async", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:num2fraction", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:available-typed-arrays", + "target": "npm:array-filter", + "type": "static" + }, + { + "source": "npm:axios@0.21.4", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:azure-devops-node-api", + "target": "npm:tunnel", + "type": "static" + }, + { + "source": "npm:azure-devops-node-api", + "target": "npm:typed-rest-client", + "type": "static" + }, + { + "source": "npm:azure-storage-simple", + "target": "npm:azure-storage", + "type": "static" + }, + { + "source": "npm:azure-storage-simple", + "target": "npm:fclone", + "type": "static" + }, + { + "source": "npm:azure-storage-simple", + "target": "npm:repromise", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:browserify-mime", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:json-edm-parser", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:request", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:underscore", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:xml2js@0.2.8", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:xmlbuilder@9.0.7", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:browserify-mime", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:json-edm-parser", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:request", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:underscore", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:xml2js@0.2.8", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:xmlbuilder@9.0.7", + "type": "static" + }, + { + "source": "npm:babel-code-frame", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:babel-code-frame", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:babel-code-frame", + "target": "npm:js-tokens@3.0.2", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:babel-messages", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:detect-indent@4.0.0", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:jsesc@1.3.0", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:trim-right", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:babel-messages", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-annotate-pure-imports", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-annotate-pure-imports", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:babel-plugin-annotate-pure-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:@emotion/hash", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:@emotion/serialize", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:babel-plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:find-root", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:babel-plugin-extract-import-names", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:babel-plugin-iife-wrap-react-components", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-iife-wrap-react-components", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:babel-plugin-iife-wrap-react-components", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:require-package-name", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:find-babel-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:reselect", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3@0.1.7", + "target": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3@0.1.7", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-react-docgen", + "target": "npm:ast-types", + "type": "static" + }, + { + "source": "npm:babel-plugin-react-docgen", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-plugin-react-docgen", + "target": "npm:react-docgen", + "type": "static" + }, + { + "source": "npm:babel-plugin-styled-components", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:babel-plugin-styled-components", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:babel-plugin-styled-components", + "target": "npm:babel-plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:babel-plugin-styled-components", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-plugin-tester", + "target": "npm:@types/babel-plugin-tester", + "type": "static" + }, + { + "source": "npm:babel-plugin-tester", + "target": "npm:lodash.mergewith", + "type": "static" + }, + { + "source": "npm:babel-plugin-tester", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:babel-plugin-tester", + "target": "npm:strip-indent", + "type": "static" + }, + { + "source": "npm:babel-plugin-transform-typescript-metadata", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-plugin-jest-hoist", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:babel-runtime", + "target": "npm:core-js@2.6.11", + "type": "static" + }, + { + "source": "npm:babel-runtime", + "target": "npm:regenerator-runtime@0.11.1", + "type": "static" + }, + { + "source": "npm:babel-runtime", + "target": "npm:core-js@2.6.11", + "type": "static" + }, + { + "source": "npm:babel-runtime", + "target": "npm:regenerator-runtime@0.11.1", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:babel-traverse", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:babylon", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-code-frame", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-messages", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babylon", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:globals@9.18.0", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-code-frame", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-messages", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babylon", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:globals@9.18.0", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:to-fast-properties@1.0.3", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:to-fast-properties@1.0.3", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:arr-filter", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:arr-map", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-each", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-initial", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-last", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:async-done", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:async-settle", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:now-and-later", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:arr-filter", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:arr-map", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-each", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-initial", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-last", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:async-done", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:async-settle", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:now-and-later", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:@azure/storage-blob", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:@rushstack/package-deps-hash", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:tar-fs", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:@azure/storage-blob", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:@rushstack/package-deps-hash", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:tar-fs", + "type": "static" + }, + { + "source": "npm:backfill-config", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill-config", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:backfill-config", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill-config", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:@rushstack/package-deps-hash", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:workspace-tools@0.27.0", + "type": "static" + }, + { + "source": "npm:backfill-logger", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:backfill-logger", + "target": "npm:filenamify", + "type": "static" + }, + { + "source": "npm:backfill-logger", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill-utils-dotenv", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:backfill-utils-dotenv", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-cache", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-hasher", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-utils-dotenv", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:cache-base", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:class-utils", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:component-emitter", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:define-property@1.0.0", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:mixin-deep", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:pascalcase", + "type": "static" + }, + { + "source": "npm:bcrypt-pbkdf", + "target": "npm:tweetnacl", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:toposort", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:uuid@9.0.0", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:workspace-tools@0.27.0", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:better-opn", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:bin-check", + "target": "npm:execa@0.7.0", + "type": "static" + }, + { + "source": "npm:bin-check", + "target": "npm:executable", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:bin-version", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver-truncate", + "type": "static" + }, + { + "source": "npm:bin-version", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:bin-version", + "target": "npm:find-versions", + "type": "static" + }, + { + "source": "npm:binary", + "target": "npm:buffers", + "type": "static" + }, + { + "source": "npm:binary", + "target": "npm:chainsaw", + "type": "static" + }, + { + "source": "npm:bindings@1.5.0", + "target": "npm:file-uri-to-path@1.0.0", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs@6.9.7", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs@6.9.7", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:array-flatten@2.1.2", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:dns-equal", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:dns-txt", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:multicast-dns", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:multicast-dns-service-types", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:ansi-align@2.0.0", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:camelcase@4.1.0", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:cli-boxes@1.0.0", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:string-width@2.1.1", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:term-size@1.2.0", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:widest-line@2.0.1", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:ansi-align", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:cli-boxes", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:term-size", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:type-fest@0.8.1", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:widest-line", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:ansi-align", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:cli-boxes", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:widest-line", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:bplist-parser", + "target": "npm:big-integer", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:concat-map", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:fill-range@4.0.0", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:repeat-element", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:snapdragon-node", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:split-string", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:to-regex", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:fill-range@4.0.0", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:repeat-element", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:snapdragon-node", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:split-string", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:to-regex", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:brotli-size", + "target": "npm:duplexer@0.1.1", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:buffer-xor", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:evp_bytestokey", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:buffer-xor", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:evp_bytestokey", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:browserify-cipher", + "target": "npm:browserify-aes", + "type": "static" + }, + { + "source": "npm:browserify-cipher", + "target": "npm:browserify-des", + "type": "static" + }, + { + "source": "npm:browserify-cipher", + "target": "npm:evp_bytestokey", + "type": "static" + }, + { + "source": "npm:browserify-des", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:browserify-des", + "target": "npm:des.js", + "type": "static" + }, + { + "source": "npm:browserify-des", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:browserify-des", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:browserify-rsa", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:browserify-rsa", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:browserify-rsa", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:create-hmac", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:elliptic", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:parse-asn1", + "type": "static" + }, + { + "source": "npm:browserify-zlib", + "target": "npm:pako", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:bs-logger", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + }, + { + "source": "npm:buffer@4.9.1", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer@4.9.1", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:buffer@4.9.1", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:builtins", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:chownr@1.1.4", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:figgy-pudding", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:mississippi", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:move-concurrently", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:ssri@6.0.2", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:@npmcli/move-file", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri@8.0.0", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:@npmcli/move-file", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri@8.0.0", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:@npmcli/fs@2.1.2", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:@npmcli/move-file@2.0.1", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:unique-filename@2.0.1", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:fs-minipass@3.0.2", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:unique-filename@3.0.0", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:collection-visit", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:component-emitter", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:has-value", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:set-value", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:to-object-path", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:union-value", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:unset-value", + "type": "static" + }, + { + "source": "npm:cache-content-type", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:cache-content-type", + "target": "npm:ylru", + "type": "static" + }, + { + "source": "npm:cache-swap", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:cache-swap", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:cache-swap", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:cache-swap", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:caller-callsite", + "target": "npm:callsites@2.0.0", + "type": "static" + }, + { + "source": "npm:caller-path", + "target": "npm:caller-callsite", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:camel-case@4.1.2", + "target": "npm:pascal-case@3.1.2", + "type": "static" + }, + { + "source": "npm:camel-case@4.1.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:camelcase-keys@2.1.0", + "target": "npm:camelcase@2.1.1", + "type": "static" + }, + { + "source": "npm:camelcase-keys@2.1.0", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:map-obj@4.1.0", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:quick-lru@4.0.1", + "type": "static" + }, + { + "source": "npm:capture-exit", + "target": "npm:rsvp", + "type": "static" + }, + { + "source": "npm:cardinal", + "target": "npm:ansicolors", + "type": "static" + }, + { + "source": "npm:cardinal", + "target": "npm:redeyed", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:assertion-error", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:check-error", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:deep-eql", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:get-func-name", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:loupe", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:pathval", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:chainsaw", + "target": "npm:traverse@0.3.9", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:ansi-styles@2.2.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:has-ansi", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:supports-color@2.0.0", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:ansi-styles@2.2.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:has-ansi", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:supports-color@2.0.0", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:ansi-styles@2.2.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:has-ansi", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:supports-color@2.0.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:constant-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:dot-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:header-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:is-lower-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:is-upper-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:lower-case-first", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:param-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:pascal-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:path-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:sentence-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:snake-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:swap-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:title-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:upper-case-first", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:htmlparser2@3.10.1", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:parse5@3.0.3", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:readdirp@3.2.0", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:fsevents@2.1.3", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:anymatch@2.0.0", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:async-each", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:braces@2.3.2", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:glob-parent@3.1.0", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:is-binary-path@1.0.1", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:readdirp@2.2.1", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:upath@1.1.2", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:fsevents@1.2.13", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:anymatch@2.0.0", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:async-each", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:braces@2.3.2", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:glob-parent@3.1.0", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:is-binary-path@1.0.1", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:readdirp@2.2.1", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:upath@1.1.2", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:fsevents@1.2.13", + "type": "static" + }, + { + "source": "npm:chrome-remote-interface", + "target": "npm:commander@2.11.0", + "type": "static" + }, + { + "source": "npm:chrome-remote-interface", + "target": "npm:ws@7.5.6", + "type": "static" + }, + { + "source": "npm:chrome-trace-event", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:cipher-base", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:cipher-base", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:cipher-base", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:cipher-base", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:cipher-base", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:cipher-base", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:class-utils", + "target": "npm:arr-union", + "type": "static" + }, + { + "source": "npm:class-utils", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:class-utils", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:class-utils", + "target": "npm:static-extend", + "type": "static" + }, + { + "source": "npm:clean-css", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:clean-css", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:clean-stack@4.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:clean-webpack-plugin", + "target": "npm:del@4.1.1", + "type": "static" + }, + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + }, + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + }, + { + "source": "npm:cli-cursor@2.1.0", + "target": "npm:restore-cursor@2.0.0", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:cli-table", + "target": "npm:colors@1.0.3", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi@3.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi@3.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:clipboard", + "target": "npm:good-listener", + "type": "static" + }, + { + "source": "npm:clipboard", + "target": "npm:select", + "type": "static" + }, + { + "source": "npm:clipboard", + "target": "npm:tiny-emitter", + "type": "static" + }, + { + "source": "npm:cliui@3.2.0", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:cliui@3.2.0", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:cliui@3.2.0", + "target": "npm:wrap-ansi@2.1.0", + "type": "static" + }, + { + "source": "npm:cliui@5.0.0", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:cliui@5.0.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:cliui@5.0.0", + "target": "npm:wrap-ansi@5.1.0", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + }, + { + "source": "npm:clone-response", + "target": "npm:mimic-response@1.0.1", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:co-body", + "target": "npm:inflation", + "type": "static" + }, + { + "source": "npm:co-body", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:co-body", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:co-body", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:codesandbox-import-utils", + "target": "npm:codesandbox-import-util-types", + "type": "static" + }, + { + "source": "npm:codesandbox-import-utils", + "target": "npm:istextorbinary", + "type": "static" + }, + { + "source": "npm:codesandbox-import-utils", + "target": "npm:lz-string", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:isomorphic-unfetch", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:lz-string", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:path-browserify", + "type": "static" + }, + { + "source": "npm:collection-map", + "target": "npm:arr-map", + "type": "static" + }, + { + "source": "npm:collection-map", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:collection-map", + "target": "npm:make-iterator", + "type": "static" + }, + { + "source": "npm:collection-visit", + "target": "npm:map-visit", + "type": "static" + }, + { + "source": "npm:collection-visit", + "target": "npm:object-visit", + "type": "static" + }, + { + "source": "npm:color-convert", + "target": "npm:color-name@1.1.3", + "type": "static" + }, + { + "source": "npm:color-convert", + "target": "npm:color-name@1.1.3", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-string", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + }, + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + }, + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + }, + { + "source": "npm:command-line-args", + "target": "npm:array-back", + "type": "static" + }, + { + "source": "npm:command-line-args", + "target": "npm:find-replace", + "type": "static" + }, + { + "source": "npm:command-line-args", + "target": "npm:lodash.camelcase", + "type": "static" + }, + { + "source": "npm:command-line-args", + "target": "npm:typical@4.0.0", + "type": "static" + }, + { + "source": "npm:command-line-usage", + "target": "npm:array-back@4.0.2", + "type": "static" + }, + { + "source": "npm:command-line-usage", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:command-line-usage", + "target": "npm:table-layout", + "type": "static" + }, + { + "source": "npm:command-line-usage", + "target": "npm:typical", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:array-ify", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:dot-prop@5.3.0", + "type": "static" + }, + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes@3.0.0", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + }, + { + "source": "npm:concat-stream@2.0.0", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream@2.0.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream@2.0.0", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:concat-stream@2.0.0", + "target": "npm:typedarray", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:dot-prop", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:make-dir@1.3.0", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:unique-string", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:xdg-basedir", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:constant-case", + "target": "npm:snake-case", + "type": "static" + }, + { + "source": "npm:constant-case", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:get-pkg-repo", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-remote-origin-url", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:normalize-package-data@3.0.3", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg-up@3.0.0", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:lodash.ismatch", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:modify-values", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:concat-stream@2.0.0", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-changelog-preset-loader", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:convert-source-map", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:convert-source-map", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:convert-source-map", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:convert-source-map", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:convert-source-map", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:cookies", + "target": "npm:depd@2.0.0", + "type": "static" + }, + { + "source": "npm:cookies", + "target": "npm:keygrip", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:fs-write-stream-atomic", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:iferr", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:run-queue", + "type": "static" + }, + { + "source": "npm:copy-props", + "target": "npm:each-props", + "type": "static" + }, + { + "source": "npm:copy-props", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:copy-to-clipboard", + "target": "npm:toggle-selection", + "type": "static" + }, + { + "source": "npm:copy-to-clipboard", + "target": "npm:toggle-selection", + "type": "static" + }, + { + "source": "npm:copy-to-clipboard", + "target": "npm:toggle-selection", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript@5.0.1", + "type": "static" + }, + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:cors", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:cors", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@5.2.1", + "target": "npm:import-fresh@2.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@5.2.1", + "target": "npm:is-directory", + "type": "static" + }, + { + "source": "npm:cosmiconfig@5.2.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@5.2.1", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:cp-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:cp-file", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:cp-file", + "target": "npm:nested-error-stacks", + "type": "static" + }, + { + "source": "npm:cp-file", + "target": "npm:p-event", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:cp-file", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:globby@9.2.0", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:has-glob", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:junk", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:nested-error-stacks", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:p-all", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:p-filter", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:p-map@3.0.0", + "type": "static" + }, + { + "source": "npm:create-ecdh", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:create-ecdh", + "target": "npm:elliptic", + "type": "static" + }, + { + "source": "npm:create-error-class", + "target": "npm:capture-stack-trace", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:sha.js", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:sha.js", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:sha.js", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:sha.js", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:sha.js", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:cross-env", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:cross-fetch", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:lru-cache@4.1.5", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command@2.0.0", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command@2.0.0", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command@2.0.0", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:browserify-cipher", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:browserify-sign", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-ecdh", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-hmac", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:diffie-hellman", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:pbkdf2", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:public-encrypt", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:randomfill", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:browserify-cipher", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:browserify-sign", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-ecdh", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-hmac", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:diffie-hellman", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:pbkdf2", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:public-encrypt", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:randomfill", + "type": "static" + }, + { + "source": "npm:css-in-js-utils", + "target": "npm:hyphenate-style-name", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils@5.1.0", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils@5.1.0", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-modules-extract-imports@2.0.0", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-modules-local-by-default@3.0.2", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-modules-scope@2.2.0", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-modules-values@3.0.0", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:css-what@5.0.1", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:nth-check@2.0.0", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils@1.5.1", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-to-react-native", + "target": "npm:camelize", + "type": "static" + }, + { + "source": "npm:css-to-react-native", + "target": "npm:css-color-keywords", + "type": "static" + }, + { + "source": "npm:css-to-react-native", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:source-map-resolve", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:urix", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:source-map-resolve", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:urix", + "type": "static" + }, + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + }, + { + "source": "npm:currently-unhandled", + "target": "npm:array-find-index", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@cypress/request", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@cypress/xvfb", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sinonjs__fake-timers", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sizzle", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:arch", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:blob-util", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cachedir", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:check-more-types", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:common-tags", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:dayjs", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:eventemitter2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:executable", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:getos", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-installed-globally", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lazy-ass", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:listr2@3.14.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:ospath", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:proxy-from-env@1.0.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:request-progress", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:untildify", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:d3-array@2.12.1", + "target": "npm:internmap", + "type": "static" + }, + { + "source": "npm:d3-array@2.12.1", + "target": "npm:internmap", + "type": "static" + }, + { + "source": "npm:d3-array@2.12.1", + "target": "npm:internmap", + "type": "static" + }, + { + "source": "npm:d3-array@2.12.1", + "target": "npm:internmap", + "type": "static" + }, + { + "source": "npm:d3-contour", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:d3-dsv", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:d3-dsv", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:d3-dsv", + "target": "npm:rw", + "type": "static" + }, + { + "source": "npm:d3-fetch", + "target": "npm:d3-dsv", + "type": "static" + }, + { + "source": "npm:d3-geo", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:d3-interpolate", + "target": "npm:d3-color", + "type": "static" + }, + { + "source": "npm:d3-interpolate", + "target": "npm:d3-color", + "type": "static" + }, + { + "source": "npm:d3-interpolate", + "target": "npm:d3-color", + "type": "static" + }, + { + "source": "npm:d3-sankey", + "target": "npm:d3-array@2.12.1", + "type": "static" + }, + { + "source": "npm:d3-sankey", + "target": "npm:d3-shape", + "type": "static" + }, + { + "source": "npm:d3-sankey@0.7.1", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:d3-sankey@0.7.1", + "target": "npm:d3-collection", + "type": "static" + }, + { + "source": "npm:d3-sankey@0.7.1", + "target": "npm:d3-shape", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-collection", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-color", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-interpolate", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-time@1.1.0", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-time-format@2.1.3", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-array@2.12.1", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-interpolate", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-time", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-time-format", + "type": "static" + }, + { + "source": "npm:d3-shape@3.2.0", + "target": "npm:d3-path@3.1.0", + "type": "static" + }, + { + "source": "npm:d3-shape", + "target": "npm:d3-path", + "type": "static" + }, + { + "source": "npm:d3-shape", + "target": "npm:d3-path", + "type": "static" + }, + { + "source": "npm:d3-time-format@2.1.3", + "target": "npm:d3-time@1.1.0", + "type": "static" + }, + { + "source": "npm:d3-time-format", + "target": "npm:d3-time", + "type": "static" + }, + { + "source": "npm:d3-time-format", + "target": "npm:d3-time", + "type": "static" + }, + { + "source": "npm:d3-time", + "target": "npm:d3-array@2.12.1", + "type": "static" + }, + { + "source": "npm:d3-time", + "target": "npm:d3-array@2.12.1", + "type": "static" + }, + { + "source": "npm:d3-time", + "target": "npm:d3-array@2.12.1", + "type": "static" + }, + { + "source": "npm:d", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:d", + "target": "npm:type", + "type": "static" + }, + { + "source": "npm:d", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:d", + "target": "npm:type", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:@babel/polyfill", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:async-retry", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:fast-json-patch", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:get-stdin", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:gitlab", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:http-proxy-agent@2.1.0", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:https-proxy-agent@2.2.4", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:hyperlinker", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:jsonpointer", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.find", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.includes", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.isobject", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.keys", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.mapvalues", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:memfs-or-file-map-to-github-branch", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:node-cleanup", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:override-require", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:parse-diff", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:parse-git-config", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:parse-github-url", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:parse-link-header", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:pinpoint", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:prettyjson", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:readline-sync", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:supports-hyperlinks", + "type": "static" + }, + { + "source": "npm:dashdash", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:debug-fabulous", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:debug-fabulous", + "target": "npm:memoizee", + "type": "static" + }, + { + "source": "npm:debug-fabulous", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@3.1.0", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@3.2.6", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug@4.1.1", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:decompress-response", + "target": "npm:mimic-response", + "type": "static" + }, + { + "source": "npm:deep-assign", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:deep-eql", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:default-browser-id", + "target": "npm:bplist-parser", + "type": "static" + }, + { + "source": "npm:default-browser-id", + "target": "npm:meow@3.7.0", + "type": "static" + }, + { + "source": "npm:default-browser-id", + "target": "npm:untildify@2.1.0", + "type": "static" + }, + { + "source": "npm:default-compare", + "target": "npm:kind-of@5.1.0", + "type": "static" + }, + { + "source": "npm:default-gateway", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:define-property", + "target": "npm:is-descriptor@0.1.6", + "type": "static" + }, + { + "source": "npm:define-property@1.0.0", + "target": "npm:is-descriptor", + "type": "static" + }, + { + "source": "npm:define-property@2.0.2", + "target": "npm:is-descriptor", + "type": "static" + }, + { + "source": "npm:define-property@2.0.2", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:globby@6.1.0", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:is-path-in-cwd", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:p-map@2.1.0", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:globby@10.0.2", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:p-map@3.0.0", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:globby@13.2.2", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:is-path-cwd@3.0.0", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:is-path-inside@4.0.0", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:p-map@5.5.0", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:slash@4.0.0", + "type": "static" + }, + { + "source": "npm:des.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:des.js", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:detab", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:detect-indent@4.0.0", + "target": "npm:repeating", + "type": "static" + }, + { + "source": "npm:detect-package-manager", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:diffie-hellman", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:diffie-hellman", + "target": "npm:miller-rabin", + "type": "static" + }, + { + "source": "npm:diffie-hellman", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:dir-glob@2.2.2", + "target": "npm:path-type@3.0.0", + "type": "static" + }, + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:dns-packet", + "target": "npm:ip@1.1.5", + "type": "static" + }, + { + "source": "npm:dns-packet", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:dns-txt", + "target": "npm:buffer-indexof", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:@textlint/markdown-to-ast", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:anchor-markdown-header", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:underscore", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:update-section", + "type": "static" + }, + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:doctrine@2.1.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:dom-converter", + "target": "npm:utila", + "type": "static" + }, + { + "source": "npm:dom-css", + "target": "npm:add-px-to-style", + "type": "static" + }, + { + "source": "npm:dom-css", + "target": "npm:prefix-style", + "type": "static" + }, + { + "source": "npm:dom-css", + "target": "npm:to-camel-case", + "type": "static" + }, + { + "source": "npm:dom-helpers", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:dom-helpers", + "target": "npm:csstype@2.6.19", + "type": "static" + }, + { + "source": "npm:dom-helpers", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:dom-helpers", + "target": "npm:csstype@2.6.19", + "type": "static" + }, + { + "source": "npm:dom-serialize", + "target": "npm:custom-event", + "type": "static" + }, + { + "source": "npm:dom-serialize", + "target": "npm:ent", + "type": "static" + }, + { + "source": "npm:dom-serialize", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:dom-serialize", + "target": "npm:void-elements", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype@1.3.1", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype@1.3.1", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:entities@2.0.0", + "type": "static" + }, + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:domhandler@2.4.2", + "target": "npm:domelementtype@1.3.1", + "type": "static" + }, + { + "source": "npm:domhandler@3.0.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler@3.0.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@1.5.1", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils@1.5.1", + "target": "npm:domelementtype@1.3.1", + "type": "static" + }, + { + "source": "npm:domutils@1.5.1", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils@1.5.1", + "target": "npm:domelementtype@1.3.1", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer@1.3.2", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer@1.3.2", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer@1.3.2", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:dot-case@3.0.4", + "target": "npm:no-case@3.0.4", + "type": "static" + }, + { + "source": "npm:dot-case@3.0.4", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:dot-prop", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:dot-prop@5.3.0", + "target": "npm:is-obj@2.0.0", + "type": "static" + }, + { + "source": "npm:downshift", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:downshift", + "target": "npm:compute-scroll-into-view", + "type": "static" + }, + { + "source": "npm:downshift", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:downshift", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:duplexer2", + "target": "npm:readable-stream@1.1.14", + "type": "static" + }, + { + "source": "npm:duplexer2@0.1.4", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:stream-shift", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:stream-shift", + "type": "static" + }, + { + "source": "npm:each-props", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:each-props", + "target": "npm:object.defaults", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:ecdsa-sig-formatter", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:editions", + "target": "npm:errlop", + "type": "static" + }, + { + "source": "npm:editions", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + }, + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + }, + { + "source": "npm:element-resize-detector", + "target": "npm:batch-processor", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:brorand", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:hash.js", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:hmac-drbg", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:minimalistic-crypto-utils", + "type": "static" + }, + { + "source": "npm:encoding", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:encoding", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:endent", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:endent", + "target": "npm:fast-json-parse", + "type": "static" + }, + { + "source": "npm:endent", + "target": "npm:objectorarray", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/cookie", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:engine.io-parser", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:ws@8.2.3", + "type": "static" + }, + { + "source": "npm:enhanced-resolve@4.5.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve@4.5.0", + "target": "npm:memory-fs@0.5.0", + "type": "static" + }, + { + "source": "npm:enhanced-resolve@4.5.0", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:ansi-colors@4.1.1", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:ansi-colors@4.1.1", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:ansi-colors@4.1.1", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:ansi-colors@4.1.1", + "type": "static" + }, + { + "source": "npm:enzyme-shallow-equal", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:enzyme-shallow-equal", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:enzyme-to-json", + "target": "npm:@types/cheerio", + "type": "static" + }, + { + "source": "npm:enzyme-to-json", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:enzyme-to-json", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:cheerio", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:html-element-map", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-subset", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:lodash.escape@4.0.1", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:raf", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:rst-selector-parser", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:string.prototype.trim", + "type": "static" + }, + { + "source": "npm:errno", + "target": "npm:prr", + "type": "static" + }, + { + "source": "npm:errno", + "target": "npm:prr", + "type": "static" + }, + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + }, + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + }, + { + "source": "npm:error-stack-parser", + "target": "npm:stackframe", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es6-promisify", + "target": "npm:es6-promise", + "type": "static" + }, + { + "source": "npm:es6-symbol", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-symbol", + "target": "npm:ext", + "type": "static" + }, + { + "source": "npm:es6-symbol", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-symbol", + "target": "npm:ext", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:esbuild-loader", + "target": "npm:esbuild@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild-loader", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:esbuild-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:esbuild-loader", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-android-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-android-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-darwin-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-darwin-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-freebsd-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-freebsd-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-32@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-arm@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-mips64le@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-ppc64le@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-riscv64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-s390x@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-netbsd-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-openbsd-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-sunos-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-windows-32@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-windows-64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-windows-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/android-arm@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/android-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/android-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/darwin-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/darwin-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/freebsd-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/freebsd-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-arm@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-ia32@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-loong64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-mips64el@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-ppc64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-riscv64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-s390x@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/netbsd-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/openbsd-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/sunos-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/win32-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/win32-ia32@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/win32-x64", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:esprima@2.7.3", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:estraverse@1.9.3", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:source-map@0.2.0", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb-base", + "target": "npm:confusing-browser-globals", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb-base", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb-base", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb", + "target": "npm:eslint-config-airbnb-base", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb", + "target": "npm:eslint-config-airbnb-base", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:tsconfig-paths@3.13.0", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:tsconfig-paths@3.13.0", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es@3.0.1", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es@3.0.1", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-import-resolver-node", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:tsconfig-paths@3.13.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-import-resolver-node", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:tsconfig-paths@3.13.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jest", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jest", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jest@25.2.4", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:@es-joy/jsdoccomment", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:comment-parser", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:@es-joy/jsdoccomment", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:comment-parser", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:ast-types-flow", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axobject-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:damerau-levenshtein", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:language-tags", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:ast-types-flow", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axobject-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:damerau-levenshtein", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:language-tags", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:eslint-plugin-es@3.0.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:resolve@2.0.0-next.3", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve@2.0.0-next.3", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve@2.0.0-next.3", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve@2.0.0-next.3", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-plugin-security", + "target": "npm:safe-regex", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.2.0", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.2.0", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.2.0", + "type": "static" + }, + { + "source": "npm:eslint-scope@4.0.3", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@4.0.3", + "target": "npm:estraverse@4.2.0", + "type": "static" + }, + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + }, + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@babel/code-frame@7.12.11", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys@2.0.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals@13.12.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore@4.0.6", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator@0.9.1", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn@7.4.1", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn@7.4.1", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + }, + { + "source": "npm:espree@9.6.1", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree@9.6.1", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree@9.6.1", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:esprima-extract-comments", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:event-emitter", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:event-emitter", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:evp_bytestokey", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:evp_bytestokey", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:evp_bytestokey", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:evp_bytestokey", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:human-signals@1.1.1", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:human-signals@1.1.1", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:human-signals@1.1.1", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:cross-spawn@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:get-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:strip-eof", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:get-stream@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:strip-eof", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:executable", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:executable", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:posix-character-classes", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:to-regex", + "type": "static" + }, + { + "source": "npm:expand-tilde", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:expand-tilde", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs@6.9.7", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs@6.9.7", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:ext-list", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:ext-name", + "target": "npm:ext-list", + "type": "static" + }, + { + "source": "npm:ext-name", + "target": "npm:sort-keys-length", + "type": "static" + }, + { + "source": "npm:ext", + "target": "npm:type@2.0.0", + "type": "static" + }, + { + "source": "npm:extend-shallow@1.1.4", + "target": "npm:kind-of@1.1.0", + "type": "static" + }, + { + "source": "npm:extend-shallow", + "target": "npm:is-extendable", + "type": "static" + }, + { + "source": "npm:extend-shallow@3.0.2", + "target": "npm:assign-symbols", + "type": "static" + }, + { + "source": "npm:extend-shallow@3.0.2", + "target": "npm:is-extendable@1.0.1", + "type": "static" + }, + { + "source": "npm:extend-shallow@3.0.2", + "target": "npm:assign-symbols", + "type": "static" + }, + { + "source": "npm:extend-shallow@3.0.2", + "target": "npm:is-extendable@1.0.1", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:tmp@0.0.33", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:define-property@1.0.0", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:expand-brackets", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:fragment-cache", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:to-regex", + "type": "static" + }, + { + "source": "npm:extract-comments", + "target": "npm:esprima-extract-comments", + "type": "static" + }, + { + "source": "npm:extract-comments", + "target": "npm:parse-code-context", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:@types/yauzl", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:ansi-gray", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:time-stamp", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:ansi-gray", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:time-stamp", + "type": "static" + }, + { + "source": "npm:fast-check", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:@mrmlnc/readdir-enhanced", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:@nodelib/fs.stat@1.1.3", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:glob-parent@3.1.0", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-png", + "target": "npm:@types/pako", + "type": "static" + }, + { + "source": "npm:fast-png", + "target": "npm:iobuffer", + "type": "static" + }, + { + "source": "npm:fast-png", + "target": "npm:pako@2.1.0", + "type": "static" + }, + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + }, + { + "source": "npm:fault", + "target": "npm:format", + "type": "static" + }, + { + "source": "npm:fault", + "target": "npm:format", + "type": "static" + }, + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + }, + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + }, + { + "source": "npm:fd-slicer", + "target": "npm:pend", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:fela-dom", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:fela-tools", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:react-addons-shallow-compare", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:shallow-equal", + "type": "static" + }, + { + "source": "npm:fela-dom", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-dom", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-dom", + "target": "npm:fela-utils", + "type": "static" + }, + { + "source": "npm:fela-dom@11.7.0", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-dom@11.7.0", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-dom@11.7.0", + "target": "npm:fela-utils@11.7.0", + "type": "static" + }, + { + "source": "npm:fela-dom@11.7.0", + "target": "npm:sort-css-media-queries", + "type": "static" + }, + { + "source": "npm:fela-plugin-custom-property", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-plugin-custom-property", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:fela-plugin-embedded", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-plugin-embedded", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:fela-plugin-fallback-value", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-plugin-fallback-value", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:fela-plugin-placeholder-prefixer", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-plugin-placeholder-prefixer", + "target": "npm:fela-plugin-custom-property", + "type": "static" + }, + { + "source": "npm:fela-plugin-rtl", + "target": "npm:rtl-css-js", + "type": "static" + }, + { + "source": "npm:fela-tools", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-tools", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-tools", + "target": "npm:fela", + "type": "static" + }, + { + "source": "npm:fela-tools", + "target": "npm:fela-utils", + "type": "static" + }, + { + "source": "npm:fela-utils", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-utils", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-utils@11.7.0", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-utils@11.7.0", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:csstype@2.6.19", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:fela-utils", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:node-domexception", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:web-streams-polyfill", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:node-domexception", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:web-streams-polyfill", + "type": "static" + }, + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + }, + { + "source": "npm:file-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:file-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:file-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:file-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:file-system-cache", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:file-system-cache", + "target": "npm:fs-extra@0.30.0", + "type": "static" + }, + { + "source": "npm:file-system-cache", + "target": "npm:ramda@0.21.0", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:readable-web-to-node-stream", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:strtok3", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:token-types", + "type": "static" + }, + { + "source": "npm:filelist", + "target": "npm:minimatch@5.0.1", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:filename-reserved-regex", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:strip-outer", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:trim-repeated", + "type": "static" + }, + { + "source": "npm:filenamify@5.1.1", + "target": "npm:filename-reserved-regex@3.0.0", + "type": "static" + }, + { + "source": "npm:filenamify@5.1.1", + "target": "npm:strip-outer@2.0.0", + "type": "static" + }, + { + "source": "npm:filenamify@5.1.1", + "target": "npm:trim-repeated@2.0.0", + "type": "static" + }, + { + "source": "npm:fill-range@4.0.0", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:fill-range@4.0.0", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:fill-range@4.0.0", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:fill-range@4.0.0", + "target": "npm:to-regex-range@2.1.1", + "type": "static" + }, + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:find-babel-config", + "target": "npm:json5@0.5.1", + "type": "static" + }, + { + "source": "npm:find-babel-config", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:pkg-dir@3.0.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:pkg-dir@3.0.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:find-replace", + "target": "npm:array-back", + "type": "static" + }, + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + }, + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + }, + { + "source": "npm:find-up@1.1.2", + "target": "npm:path-exists@2.1.0", + "type": "static" + }, + { + "source": "npm:find-up@1.1.2", + "target": "npm:pinkie-promise", + "type": "static" + }, + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "type": "static" + }, + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path@5.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists@4.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path@5.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists@4.0.0", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists@4.0.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.1.1", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.1.1", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + }, + { + "source": "npm:find-versions", + "target": "npm:semver-regex", + "type": "static" + }, + { + "source": "npm:find-webpack", + "target": "npm:debug@4.1.1", + "type": "static" + }, + { + "source": "npm:find-webpack", + "target": "npm:find-yarn-workspace-root@1.2.1", + "type": "static" + }, + { + "source": "npm:find-webpack", + "target": "npm:mocked-env", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root@1.2.1", + "target": "npm:fs-extra@4.0.3", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root@1.2.1", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:detect-file", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:is-glob@3.1.0", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:resolve-dir", + "type": "static" + }, + { + "source": "npm:findup-sync@3.0.0", + "target": "npm:detect-file", + "type": "static" + }, + { + "source": "npm:findup-sync@3.0.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:findup-sync@3.0.0", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:findup-sync@3.0.0", + "target": "npm:resolve-dir", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:object.defaults", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:parse-filepath", + "type": "static" + }, + { + "source": "npm:flamebearer", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:flamebearer", + "target": "npm:opn", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:concat-stream@2.0.0", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:flamebearer", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:n-readlines", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:puppeteer", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:flat@4.1.0", + "target": "npm:is-buffer@2.0.4", + "type": "static" + }, + { + "source": "npm:flush-write-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:flush-write-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:flush-write-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:flush-write-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:for-own", + "target": "npm:for-in", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.0.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs@3.4.1", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs@3.4.1", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:worker-rpc", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:form-data@3.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@3.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@3.0.0", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:formdata-polyfill", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:deepmerge@2.2.1", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:fragment-cache", + "target": "npm:map-cache", + "type": "static" + }, + { + "source": "npm:from2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:from2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:universalify@2.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:universalify@2.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:universalify@2.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:jsonfile@2.4.0", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:klaw", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:universalify@2.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:universalify@2.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@4.0.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@4.0.3", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@4.0.3", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify@2.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify@2.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify@2.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-minipass@1.2.7", + "target": "npm:minipass@2.9.0", + "type": "static" + }, + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:fs-minipass@3.0.2", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:fs-mkdirp-stream", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-mkdirp-stream", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:fs-write-stream-atomic", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-write-stream-atomic", + "target": "npm:iferr", + "type": "static" + }, + { + "source": "npm:fs-write-stream-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:fs-write-stream-atomic", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:fsevents@1.2.13", + "target": "npm:bindings@1.5.0", + "type": "static" + }, + { + "source": "npm:fsevents@1.2.13", + "target": "npm:nan@2.15.0", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:wide-align", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:wide-align", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:wide-align", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:adm-zip", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:https-proxy-agent@5.0.0", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:generic-names", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-lerna-packages", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:@hutson/parse-repository-url", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:get-stream@4.1.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:get-stream", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:get-stream", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:get-tsconfig", + "target": "npm:resolve-pkg-maps", + "type": "static" + }, + { + "source": "npm:getos", + "target": "npm:async@3.2.3", + "type": "static" + }, + { + "source": "npm:getpass", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:git-config-path", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:git-config-path", + "target": "npm:fs-exists-sync", + "type": "static" + }, + { + "source": "npm:git-config-path", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:dargs", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:gitconfiglocal", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:is-ssh", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:parse-url", + "type": "static" + }, + { + "source": "npm:git-url-parse", + "target": "npm:git-up", + "type": "static" + }, + { + "source": "npm:git-url-parse", + "target": "npm:git-up", + "type": "static" + }, + { + "source": "npm:gitconfiglocal", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:github-slugger", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:humps", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:ky", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:ky-universal", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:li", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:query-string", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:universal-url", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent@3.1.0", + "target": "npm:is-glob@3.1.0", + "type": "static" + }, + { + "source": "npm:glob-parent@3.1.0", + "target": "npm:path-dirname", + "type": "static" + }, + { + "source": "npm:glob-promise", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:glob-parent@3.1.0", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:is-negated-glob", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:ordered-read-streams", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:pumpify", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:to-absolute-glob", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:unique-stream", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:anymatch@2.0.0", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:async-done", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:chokidar@2.1.8", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:is-negated-glob", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:just-debounce", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:object.defaults", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minimatch@9.0.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.0.1", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.0.1", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.4", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.8", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:global-dirs@0.1.1", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-dirs", + "target": "npm:ini@2.0.0", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:global-prefix", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:resolve-dir", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:global", + "target": "npm:min-document", + "type": "static" + }, + { + "source": "npm:global", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:global", + "target": "npm:min-document", + "type": "static" + }, + { + "source": "npm:global", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:global", + "target": "npm:min-document", + "type": "static" + }, + { + "source": "npm:global", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:globals@13.12.0", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:globals@13.12.0", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:slash@4.0.0", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:array-union@1.0.2", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:pinkie-promise", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:array-union@1.0.2", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:dir-glob@2.2.2", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:fast-glob@2.2.7", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:ignore@4.0.6", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:slash@2.0.0", + "type": "static" + }, + { + "source": "npm:glogg", + "target": "npm:sparkles", + "type": "static" + }, + { + "source": "npm:good-listener", + "target": "npm:delegate", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-lookup", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:http2-wrapper", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-lookup", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:http2-wrapper", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:@sindresorhus/is@5.3.0", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:@szmarczak/http-timer@5.0.1", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:cacheable-lookup@6.1.0", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:form-data-encoder", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:http2-wrapper@2.1.11", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:lowercase-keys@3.0.0", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:p-cancelable@3.0.0", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:create-error-class", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:duplexer3", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:get-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:is-redirect", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:is-retry-allowed", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:lowercase-keys@1.0.0", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:timed-out", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:unzip-response", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:url-parse-lax", + "type": "static" + }, + { + "source": "npm:graphviz", + "target": "npm:temp", + "type": "static" + }, + { + "source": "npm:gulp-babel", + "target": "npm:plugin-error", + "type": "static" + }, + { + "source": "npm:gulp-babel", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:gulp-babel", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:gulp-babel", + "target": "npm:vinyl-sourcemaps-apply", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:cache-swap", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:plugin-error", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:through2@3.0.1", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:vinyl", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:archy", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:array-sort", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:copy-props", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:fancy-log", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:gulplog", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:liftoff@3.1.0", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:matchdep", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:mute-stdout", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:pretty-hrtime", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:replace-homedir", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:semver-greatest-satisfied-range", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:v8flags@3.1.3", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:yargs@7.1.0", + "type": "static" + }, + { + "source": "npm:gulp-remember", + "target": "npm:fancy-log", + "type": "static" + }, + { + "source": "npm:gulp-remember", + "target": "npm:plugin-error@0.1.2", + "type": "static" + }, + { + "source": "npm:gulp-remember", + "target": "npm:through2@0.5.1", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:@gulp-sourcemaps/identity-map", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:@gulp-sourcemaps/map-sources", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:acorn@5.7.4", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:css", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:debug-fabulous", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:detect-newline", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:strip-bom-string", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:array-differ", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:array-uniq", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:beeper", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:dateformat@2.2.0", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:fancy-log", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:gulplog", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:has-gulplog", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:lodash._reescape", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:lodash._reevaluate", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:lodash.template", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:multipipe", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:object-assign@3.0.0", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:replace-ext@0.0.1", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:vinyl@0.5.3", + "type": "static" + }, + { + "source": "npm:gulp", + "target": "npm:glob-watcher", + "type": "static" + }, + { + "source": "npm:gulp", + "target": "npm:gulp-cli", + "type": "static" + }, + { + "source": "npm:gulp", + "target": "npm:undertaker", + "type": "static" + }, + { + "source": "npm:gulp", + "target": "npm:vinyl-fs", + "type": "static" + }, + { + "source": "npm:gulplog", + "target": "npm:glogg", + "type": "static" + }, + { + "source": "npm:gzip-js", + "target": "npm:crc32", + "type": "static" + }, + { + "source": "npm:gzip-js", + "target": "npm:deflate-js", + "type": "static" + }, + { + "source": "npm:gzip-size", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:gzip-size", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:gzip-size@6.0.0", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:gzip-size@7.0.0", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + }, + { + "source": "npm:har-validator", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:har-validator", + "target": "npm:har-schema", + "type": "static" + }, + { + "source": "npm:has-ansi", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + }, + { + "source": "npm:has-glob", + "target": "npm:is-glob@3.1.0", + "type": "static" + }, + { + "source": "npm:has-gulplog", + "target": "npm:sparkles", + "type": "static" + }, + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:has-value@0.3.1", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:has-value@0.3.1", + "target": "npm:has-values@0.1.4", + "type": "static" + }, + { + "source": "npm:has-value@0.3.1", + "target": "npm:isobject@2.1.0", + "type": "static" + }, + { + "source": "npm:has-value", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:has-value", + "target": "npm:has-values", + "type": "static" + }, + { + "source": "npm:has-value", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:has-values", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:has-values", + "target": "npm:kind-of@4.0.0", + "type": "static" + }, + { + "source": "npm:has", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:has", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:hash-base", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hash-base", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:hash.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hash.js", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:hash.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hash.js", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:@types/parse5", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:hastscript@6.0.0", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:vfile-location", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:@types/hast", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:hast-util-from-parse5", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:hast-util-to-parse5", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:html-void-elements", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:parse5@6.0.1", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:unist-util-position", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:zwitch", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:hast-to-hyperscript", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:zwitch", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:hast-util-parse-selector", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:@types/hast", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:hast-util-parse-selector", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:header-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:header-case", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:resolve-pathname", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:value-equal", + "type": "static" + }, + { + "source": "npm:hmac-drbg", + "target": "npm:hash.js", + "type": "static" + }, + { + "source": "npm:hmac-drbg", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:hmac-drbg", + "target": "npm:minimalistic-crypto-utils", + "type": "static" + }, + { + "source": "npm:hoist-non-react-statics", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:hoist-non-react-statics", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:hoist-non-react-statics", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:homedir-polyfill", + "target": "npm:parse-passwd", + "type": "static" + }, + { + "source": "npm:homedir-polyfill", + "target": "npm:parse-passwd", + "type": "static" + }, + { + "source": "npm:hosted-git-info@3.0.8", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hosted-git-info@6.1.1", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:hosted-git-info@7.0.1", + "target": "npm:lru-cache@10.0.1", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:html-element-map", + "target": "npm:array-filter", + "type": "static" + }, + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:html-loader", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-loader", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:html-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:html-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:camel-case@4.1.2", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:commander@4.1.1", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:param-case@3.0.4", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:relateurl", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:terser@4.8.0", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:camel-case@4.1.2", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:commander@4.1.1", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:param-case@3.0.4", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:relateurl", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:terser@4.8.0", + "type": "static" + }, + { + "source": "npm:html-to-react", + "target": "npm:domhandler@3.0.0", + "type": "static" + }, + { + "source": "npm:html-to-react", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:html-to-react", + "target": "npm:lodash.camelcase", + "type": "static" + }, + { + "source": "npm:html-to-react", + "target": "npm:ramda", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:@types/tapable", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:util.promisify", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:domelementtype@1.3.1", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:domhandler@2.4.2", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:domutils@1.5.1", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler@3.0.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities@2.0.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler@3.0.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities@2.0.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler@3.0.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities@2.0.0", + "type": "static" + }, + { + "source": "npm:htmlparser2@6.1.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2@6.1.0", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2@6.1.0", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2@6.1.0", + "target": "npm:entities@2.0.0", + "type": "static" + }, + { + "source": "npm:http-assert", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:http-assert", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@2.1.0", + "target": "npm:agent-base@4.3.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@2.1.0", + "target": "npm:debug@3.1.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@4.0.1", + "target": "npm:@tootallnate/once@1.1.2", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@4.0.1", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@4.0.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + }, + { + "source": "npm:http-signature@1.2.0", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:http-signature@1.2.0", + "target": "npm:jsprim@1.4.1", + "type": "static" + }, + { + "source": "npm:http-signature@1.2.0", + "target": "npm:sshpk", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:jsprim", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:sshpk", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:resolve-alpn", + "type": "static" + }, + { + "source": "npm:http2-wrapper@2.1.11", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper@2.1.11", + "target": "npm:resolve-alpn", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@5.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@5.0.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@2.2.4", + "target": "npm:agent-base@4.3.0", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@2.2.4", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:humanize-ms", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.4.24", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.4.24", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:icss-utils", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:icss-utils", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:identity-obj-proxy", + "target": "npm:harmony-reflect", + "type": "static" + }, + { + "source": "npm:ignore-walk@3.0.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@5.0.1", + "type": "static" + }, + { + "source": "npm:ignore-walk@6.0.3", + "target": "npm:minimatch@9.0.1", + "type": "static" + }, + { + "source": "npm:import-fresh@2.0.0", + "target": "npm:caller-path", + "type": "static" + }, + { + "source": "npm:import-fresh@2.0.0", + "target": "npm:resolve-from@3.0.0", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + }, + { + "source": "npm:imports-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:imports-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:imports-loader", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:imports-loader", + "target": "npm:strip-comments", + "type": "static" + }, + { + "source": "npm:indent-string@2.1.0", + "target": "npm:repeating", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:promzard", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:rxjs@6.6.7", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:invariant", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:invariant", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:is-absolute", + "target": "npm:is-relative", + "type": "static" + }, + { + "source": "npm:is-absolute", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:is-accessor-descriptor@0.1.6", + "target": "npm:kind-of@3.2.2", + "type": "static" + }, + { + "source": "npm:is-accessor-descriptor", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:is-alphanumerical", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:is-alphanumerical", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:is-binary-path@1.0.1", + "target": "npm:binary-extensions@1.13.1", + "type": "static" + }, + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-ci", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:is-ci", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:is-ci@1.2.1", + "target": "npm:ci-info@1.6.0", + "type": "static" + }, + { + "source": "npm:is-ci@2.0.0", + "target": "npm:ci-info@2.0.0", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-data-descriptor@0.1.4", + "target": "npm:kind-of@3.2.2", + "type": "static" + }, + { + "source": "npm:is-data-descriptor", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:is-descriptor@0.1.6", + "target": "npm:is-accessor-descriptor@0.1.6", + "type": "static" + }, + { + "source": "npm:is-descriptor@0.1.6", + "target": "npm:is-data-descriptor@0.1.4", + "type": "static" + }, + { + "source": "npm:is-descriptor@0.1.6", + "target": "npm:kind-of@5.1.0", + "type": "static" + }, + { + "source": "npm:is-descriptor", + "target": "npm:is-accessor-descriptor", + "type": "static" + }, + { + "source": "npm:is-descriptor", + "target": "npm:is-data-descriptor", + "type": "static" + }, + { + "source": "npm:is-descriptor", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:is-descriptor", + "target": "npm:is-accessor-descriptor", + "type": "static" + }, + { + "source": "npm:is-descriptor", + "target": "npm:is-data-descriptor", + "type": "static" + }, + { + "source": "npm:is-descriptor", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:is-dom", + "target": "npm:is-object", + "type": "static" + }, + { + "source": "npm:is-dom", + "target": "npm:is-window", + "type": "static" + }, + { + "source": "npm:is-extendable@1.0.1", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:is-finite", + "target": "npm:number-is-nan", + "type": "static" + }, + { + "source": "npm:is-fullwidth-code-point@1.0.0", + "target": "npm:number-is-nan", + "type": "static" + }, + { + "source": "npm:is-glob@3.1.0", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob@3.1.0", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-installed-globally@0.1.0", + "target": "npm:global-dirs@0.1.1", + "type": "static" + }, + { + "source": "npm:is-installed-globally@0.1.0", + "target": "npm:is-path-inside@1.0.1", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:global-dirs", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:is-lower-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:is-nan", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-nan", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:is-number", + "target": "npm:kind-of@3.2.2", + "type": "static" + }, + { + "source": "npm:is-path-in-cwd", + "target": "npm:is-path-inside@2.1.0", + "type": "static" + }, + { + "source": "npm:is-path-inside@1.0.1", + "target": "npm:path-is-inside", + "type": "static" + }, + { + "source": "npm:is-path-inside@2.1.0", + "target": "npm:path-is-inside", + "type": "static" + }, + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:is-reference", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-relative", + "target": "npm:is-unc-path", + "type": "static" + }, + { + "source": "npm:is-ssh", + "target": "npm:protocols", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-text-path", + "target": "npm:text-extensions", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:foreach", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-unc-path", + "target": "npm:unc-path-regex", + "type": "static" + }, + { + "source": "npm:is-upper-case", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:is-weakref", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:isobject@2.1.0", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:isomorphic-unfetch", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:isomorphic-unfetch", + "target": "npm:unfetch@3.1.2", + "type": "static" + }, + { + "source": "npm:isomorphic-unfetch@3.1.0", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:isomorphic-unfetch@3.1.0", + "target": "npm:unfetch", + "type": "static" + }, + { + "source": "npm:istanbul-instrumenter-loader", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:istanbul-instrumenter-loader", + "target": "npm:istanbul-lib-instrument@1.10.2", + "type": "static" + }, + { + "source": "npm:istanbul-instrumenter-loader", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:istanbul-instrumenter-loader", + "target": "npm:schema-utils@0.3.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babel-generator", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babel-template", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babel-traverse", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babylon", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:istanbul-lib-coverage@1.2.1", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:istanbul-lib-coverage@2.0.5", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:async@1.5.2", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:escodegen@1.8.1", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:esprima@2.7.3", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:glob@5.0.15", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:resolve@1.1.7", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:supports-color@3.2.3", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:istextorbinary", + "target": "npm:binaryextensions", + "type": "static" + }, + { + "source": "npm:istextorbinary", + "target": "npm:editions", + "type": "static" + }, + { + "source": "npm:istextorbinary", + "target": "npm:textextensions", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@pkgjs/parseargs", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:async@3.2.3", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:jest-axe", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:jest-axe", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-axe", + "target": "npm:jest-matcher-utils@27.0.2", + "type": "static" + }, + { + "source": "npm:jest-axe", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:jest-canvas-mock", + "target": "npm:cssfontparser", + "type": "static" + }, + { + "source": "npm:jest-canvas-mock", + "target": "npm:moo-color", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent@1.5.1", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-each", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:stack-utils", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:create-jest", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:create-jest", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-diff@27.5.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff@27.5.1", + "target": "npm:diff-sequences@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-diff@27.5.1", + "target": "npm:jest-get-type@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-diff@27.5.1", + "target": "npm:pretty-format@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-docblock", + "target": "npm:detect-newline@3.1.0", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-node-single-context", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:jest-regex-util@26.0.0", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:jest-serializer", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:jest-util@26.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:jest-worker@26.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:sane", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@27.0.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@27.0.2", + "target": "npm:jest-diff@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@27.0.2", + "target": "npm:jest-get-type@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@27.0.2", + "target": "npm:pretty-format@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:stack-utils", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve.exports@2.0.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve.exports@2.0.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-docblock", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-leak-detector", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/globals", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/source-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:strip-bom@4.0.0", + "type": "static" + }, + { + "source": "npm:jest-serializer", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-serializer", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:is-ci@2.0.0", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:ansi-escapes@6.2.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:chalk@5.2.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:slash@5.1.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:string-length@5.0.1", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:jest-worker@24.9.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@24.9.0", + "target": "npm:supports-color@6.1.0", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:jest-cli", + "type": "static" + }, + { + "source": "npm:js-queue", + "target": "npm:easy-stack", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn-globals", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssom", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssstyle", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:data-urls", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:decimal.js", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:domexception", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:is-potential-custom-element-name", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:nwsapi", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:saxes", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:symbol-tree", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:tough-cookie@4.1.2", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:w3c-xmlserializer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:json-edm-parser", + "target": "npm:jsonparse@1.2.0", + "type": "static" + }, + { + "source": "npm:json-stable-stringify", + "target": "npm:jsonify", + "type": "static" + }, + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:espree@9.6.1", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:jsonfile@2.4.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jsonfile@6.0.1", + "target": "npm:universalify@1.0.0", + "type": "static" + }, + { + "source": "npm:jsonfile@6.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:jws", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.includes", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isboolean", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isinteger", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isnumber", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isstring", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.once", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:jws", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.includes", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isboolean", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isinteger", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isnumber", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isstring", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.once", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.1", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.1", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.1", + "target": "npm:json-schema@0.2.3", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.1", + "target": "npm:verror", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:verror", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jszip", + "target": "npm:lie", + "type": "static" + }, + { + "source": "npm:jszip", + "target": "npm:pako", + "type": "static" + }, + { + "source": "npm:jszip", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:jszip", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:just-task-logger", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:marked", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:marked-terminal", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:@types/node@10.17.13", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:diff-match-patch", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:just-scripts-utils", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:just-task", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:run-parallel-limit", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:just-task-logger", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:just-task-logger", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:just-task-logger", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:just-task-logger", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:@rushstack/package-deps-hash", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:bach", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:just-task-logger", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:undertaker", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:undertaker-registry", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:buffer-equal-constant-time", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:ecdsa-sig-formatter", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:jwa", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:jwa", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:karma-chrome-launcher", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:istanbul-lib-source-maps@3.0.6", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:karma-firefox-launcher", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:karma-mocha-reporter", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:karma-mocha-reporter", + "target": "npm:log-symbols@2.2.0", + "type": "static" + }, + { + "source": "npm:karma-mocha-reporter", + "target": "npm:strip-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:karma-mocha", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:karma-source-map-support", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:karma-sourcemap-loader", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:karma-webpack", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:karma-webpack", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:karma-webpack", + "target": "npm:webpack-merge@4.2.2", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:di", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:dom-serialize", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:isbinaryfile", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:log4js", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:qjobs", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:socket.io", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:ua-parser-js@0.7.33", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:keygrip", + "target": "npm:tsscmp", + "type": "static" + }, + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + }, + { + "source": "npm:kind-of@3.2.2", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:kind-of@3.2.2", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:kind-of@3.2.2", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:kind-of@4.0.0", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:klaw", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:koa-bodyparser", + "target": "npm:co-body", + "type": "static" + }, + { + "source": "npm:koa-bodyparser", + "target": "npm:copy-to", + "type": "static" + }, + { + "source": "npm:koa-convert", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:koa-convert", + "target": "npm:koa-compose", + "type": "static" + }, + { + "source": "npm:koa-mount", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:koa-mount", + "target": "npm:koa-compose", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@types/parse5", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:parse5@5.1.1", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:koa-send", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:koa-send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:koa-send", + "target": "npm:resolve-path", + "type": "static" + }, + { + "source": "npm:koa-static", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:koa-static", + "target": "npm:koa-send", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:cache-content-type", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:cookies", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:depd@2.0.0", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:http-assert", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:koa-compose", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:koa-convert", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:only", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:ky-universal", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:ky-universal", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:@lage-run/logger", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:@xmldom/xmldom", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:backfill", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:backfill-cache", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:p-graph", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:p-profiler", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:workspace-tools@0.27.0", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:yargs-parser@18.1.3", + "type": "static" + }, + { + "source": "npm:language-tags", + "target": "npm:language-subtag-registry", + "type": "static" + }, + { + "source": "npm:last-run", + "target": "npm:default-resolution", + "type": "static" + }, + { + "source": "npm:last-run", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "npm:latest-version", + "target": "npm:package-json", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:app-root-dir", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:dotenv-expand@5.1.0", + "type": "static" + }, + { + "source": "npm:lazystream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:lcid", + "target": "npm:invert-kv", + "type": "static" + }, + { + "source": "npm:lead", + "target": "npm:flush-write-stream", + "type": "static" + }, + { + "source": "npm:lerna-alias", + "target": "npm:get-lerna-packages", + "type": "static" + }, + { + "source": "npm:lerna-alias", + "target": "npm:get-lerna-packages", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@lerna/child-process", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@lerna/create", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@octokit/plugin-enterprise-rest", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@octokit/rest@19.0.11", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:byte-size", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-changelog-core", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-recommended-bump", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:cosmiconfig@8.2.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:execa@5.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:get-stream@6.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:inquirer@8.2.4", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:libnpmaccess", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:libnpmpublish", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npmlog@6.0.2", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-map-series", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-pipe", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-queue", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-waterfall", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:pify@5.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:read-cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:rimraf@4.4.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:upath", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:uuid@9.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:write-file-atomic@5.0.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:write-pkg", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:prelude-ls@1.2.1", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check@0.4.0", + "type": "static" + }, + { + "source": "npm:levn@0.3.0", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn@0.3.0", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:license-webpack-plugin", + "target": "npm:@types/webpack-sources", + "type": "static" + }, + { + "source": "npm:license-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:lie", + "target": "npm:immediate", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:findup-sync", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:fined", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:flagged-respawn", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:object.map", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:findup-sync@3.0.0", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:fined", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:flagged-respawn", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:object.map", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:please-upgrade-node", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:stringify-object", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rxjs@6.6.7", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:colorette@2.0.20", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:type-fest@0.6.0", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:parse-json@2.2.0", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:pinkie-promise", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:strip-bom@2.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:p-locate@2.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:locate-path@5.0.0", + "target": "npm:p-locate@4.1.0", + "type": "static" + }, + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + }, + { + "source": "npm:locate-path@7.1.1", + "target": "npm:p-locate@6.0.0", + "type": "static" + }, + { + "source": "npm:lodash.escape", + "target": "npm:lodash._root", + "type": "static" + }, + { + "source": "npm:lodash.keys@3.1.2", + "target": "npm:lodash._getnative", + "type": "static" + }, + { + "source": "npm:lodash.keys@3.1.2", + "target": "npm:lodash.isarguments", + "type": "static" + }, + { + "source": "npm:lodash.keys@3.1.2", + "target": "npm:lodash.isarray", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._basecopy", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._basetostring", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._basevalues", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._isiterateecall", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.escape", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.keys@3.1.2", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.restparam", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.templatesettings", + "type": "static" + }, + { + "source": "npm:lodash.templatesettings", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:lodash.templatesettings", + "target": "npm:lodash.escape", + "type": "static" + }, + { + "source": "npm:log-symbols@3.0.0", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:log-symbols@1.0.2", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:log-symbols@2.2.0", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:log-symbols@2.2.0", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:date-format", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:streamroller", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loud-rejection", + "target": "npm:currently-unhandled", + "type": "static" + }, + { + "source": "npm:loud-rejection", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:loupe", + "target": "npm:get-func-name", + "type": "static" + }, + { + "source": "npm:lower-case-first", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:lower-case@2.0.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lowlight", + "target": "npm:fault", + "type": "static" + }, + { + "source": "npm:lowlight", + "target": "npm:highlight.js", + "type": "static" + }, + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:pseudomap", + "type": "static" + }, + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:yallist@2.1.2", + "type": "static" + }, + { + "source": "npm:lru-cache@5.1.1", + "target": "npm:yallist@3.1.1", + "type": "static" + }, + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:lru-queue", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:magic-string", + "target": "npm:sourcemap-codec", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:make-dir@1.3.0", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:cacache@16.1.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-fetch@2.1.2", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache@17.1.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch@3.0.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache@17.1.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch@3.0.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache@17.1.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch@3.0.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:http-proxy-agent@4.0.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:promise-retry@1.1.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:socks-proxy-agent@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:ssri@8.0.0", + "type": "static" + }, + { + "source": "npm:make-iterator", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + }, + { + "source": "npm:map-age-cleaner", + "target": "npm:p-defer", + "type": "static" + }, + { + "source": "npm:map-visit", + "target": "npm:object-visit", + "type": "static" + }, + { + "source": "npm:markdown-table", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cardinal", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cli-table", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:node-emoji", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:supports-hyperlinks@2.2.0", + "type": "static" + }, + { + "source": "npm:matchdep", + "target": "npm:findup-sync", + "type": "static" + }, + { + "source": "npm:matchdep", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:matchdep", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:matchdep", + "target": "npm:stack-trace", + "type": "static" + }, + { + "source": "npm:md5.js", + "target": "npm:hash-base", + "type": "static" + }, + { + "source": "npm:md5.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:md5.js", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:mdast-add-list-metadata", + "target": "npm:unist-util-visit-parents@1.1.2", + "type": "static" + }, + { + "source": "npm:mdast-squeeze-paragraphs", + "target": "npm:unist-util-remove", + "type": "static" + }, + { + "source": "npm:mdast-util-definitions", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:mdast-util-definitions", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:mdurl", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-generated", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-position", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:mem", + "target": "npm:map-age-cleaner", + "type": "static" + }, + { + "source": "npm:mem", + "target": "npm:mimic-fn@3.1.0", + "type": "static" + }, + { + "source": "npm:memfs-or-file-map-to-github-branch", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + }, + { + "source": "npm:memfs@3.4.1", + "target": "npm:fs-monkey", + "type": "static" + }, + { + "source": "npm:memfs@3.4.1", + "target": "npm:fs-monkey", + "type": "static" + }, + { + "source": "npm:memfs@3.4.1", + "target": "npm:fs-monkey", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:event-emitter", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:lru-queue", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:timers-ext", + "type": "static" + }, + { + "source": "npm:memoizerific", + "target": "npm:map-or-similar", + "type": "static" + }, + { + "source": "npm:memory-fs", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:memory-fs", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:memory-fs@0.5.0", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:memory-fs@0.5.0", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:camelcase-keys@2.1.0", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:loud-rejection", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:read-pkg-up@1.0.1", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:redent@1.0.0", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:trim-newlines@1.0.0", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:camelcase-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:normalize-package-data@3.0.3", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:trim-newlines", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:type-fest@0.18.1", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:arr-diff", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:braces@2.3.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:extglob", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:fragment-cache", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:nanomatch", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:to-regex", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:arr-diff", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:braces@2.3.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:extglob", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:fragment-cache", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:nanomatch", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:to-regex", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:arr-diff", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:braces@2.3.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:extglob", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:fragment-cache", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:nanomatch", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:to-regex", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:miller-rabin", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:miller-rabin", + "target": "npm:brorand", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:min-document", + "target": "npm:dom-walk", + "type": "static" + }, + { + "source": "npm:mini-create-react-context", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:mini-create-react-context", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch@3.0.4", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.1", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.1", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.1", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@5.0.1", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@8.0.4", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:arrify@1.0.1", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.3", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.3", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.3", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.3", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-flush", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-sized", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass@2.9.0", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:minipass@2.9.0", + "target": "npm:yallist@3.1.1", + "type": "static" + }, + { + "source": "npm:minipass@2.9.0", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:minipass@2.9.0", + "target": "npm:yallist@3.1.1", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minizlib@1.3.3", + "target": "npm:minipass@2.9.0", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:duplexify", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:flush-write-stream", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:from2", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:parallel-transform", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:pumpify", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:stream-each", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:mixin-deep", + "target": "npm:for-in", + "type": "static" + }, + { + "source": "npm:mixin-deep", + "target": "npm:is-extendable@1.0.1", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:ansi-colors@3.2.3", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:browser-stdout", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:chokidar@3.3.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:debug@3.2.6", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:diff@3.5.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:glob@7.1.3", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:growl", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:log-symbols@3.0.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:minimatch@3.0.4", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:ms@2.1.1", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:node-environment-flags", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:object.assign@4.1.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:supports-color@6.0.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:wide-align@1.1.3", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:yargs-unparser@1.6.0", + "type": "static" + }, + { + "source": "npm:mocked-env", + "target": "npm:check-more-types", + "type": "static" + }, + { + "source": "npm:mocked-env", + "target": "npm:debug@4.1.1", + "type": "static" + }, + { + "source": "npm:mocked-env", + "target": "npm:lazy-ass", + "type": "static" + }, + { + "source": "npm:mocked-env", + "target": "npm:ramda", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:@azure/data-tables", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:monosize", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:node-fetch@3.3.1", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:del@7.0.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:find-up@6.3.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:gzip-size@7.0.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:pretty-bytes@6.1.1", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:workspace-tools", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:del@7.0.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:find-up@6.3.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:gzip-size@7.0.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:pretty-bytes@6.1.1", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:workspace-tools", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:moo-color", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:copy-concurrently", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:fs-write-stream-atomic", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:run-queue", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-differ@3.0.0", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-differ@3.0.0", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:multipipe", + "target": "npm:duplexer2", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:arr-diff", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:fragment-cache", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:to-regex", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:moo", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:railroad-diagrams", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:randexp", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:no-case@3.0.4", + "target": "npm:lower-case@2.0.2", + "type": "static" + }, + { + "source": "npm:no-case@3.0.4", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:node-dir", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:lodash.toarray", + "type": "static" + }, + { + "source": "npm:node-environment-flags", + "target": "npm:object.getownpropertydescriptors", + "type": "static" + }, + { + "source": "npm:node-environment-flags", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:data-uri-to-buffer", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:formdata-polyfill", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:nopt@4.0.1", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:request", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:tar@4.4.19", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen@10.2.1", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:nopt@5.0.0", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:npmlog@6.0.2", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:node-ipc", + "target": "npm:event-pubsub", + "type": "static" + }, + { + "source": "npm:node-ipc", + "target": "npm:js-message", + "type": "static" + }, + { + "source": "npm:node-ipc", + "target": "npm:js-queue", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:assert@1.5.0", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:browserify-zlib", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:buffer@4.9.1", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:console-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:constants-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:crypto-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:domain-browser@1.2.0", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:https-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:os-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:path-browserify@0.0.1", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:punycode@1.3.2", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:querystring-es3", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:stream-browserify@2.0.2", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:stream-http@2.8.3", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:timers-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:tty-browserify@0.0.0", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:url", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:util@0.11.1", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:vm-browserify", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:@types/globby", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:@types/handlebars", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:@types/inquirer", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:change-case", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:del@5.1.0", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:globby@10.0.2", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:isbinaryfile", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:@types/globby", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:@types/handlebars", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:@types/inquirer", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:change-case", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:del@5.1.0", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:globby@10.0.2", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:isbinaryfile", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:assert", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:browserify-zlib", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:buffer@6.0.3", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:console-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:constants-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:crypto-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:domain-browser", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:https-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:os-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:querystring-es3", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:stream-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:stream-http", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:timers-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:tty-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:url", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:util", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:vm-browserify", + "type": "static" + }, + { + "source": "npm:nopt", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:nopt@4.0.1", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:nopt@4.0.1", + "target": "npm:osenv", + "type": "static" + }, + { + "source": "npm:nopt@5.0.0", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-path@2.1.1", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:normalize-path@2.1.1", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:now-and-later", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-bundled@3.0.0", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:npm-install-checks", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-install-checks@6.1.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:hosted-git-info@3.0.8", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:validate-npm-package-name@3.0.0", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:hosted-git-info@3.0.8", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:validate-npm-package-name@3.0.0", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:hosted-git-info@3.0.8", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:validate-npm-package-name@3.0.0", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-packlist@2.1.2", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:npm-packlist@2.1.2", + "target": "npm:ignore-walk@3.0.3", + "type": "static" + }, + { + "source": "npm:npm-packlist@2.1.2", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:npm-packlist@2.1.2", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-packlist@7.0.4", + "target": "npm:ignore-walk@6.0.3", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@8.0.1", + "target": "npm:npm-install-checks@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@8.0.1", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@8.0.1", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@8.0.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch@3.0.3", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch@3.0.3", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch@3.0.3", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:@npmcli/ci-detect", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:make-fetch-happen@8.0.9", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:npm-run-path@2.0.2", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:npm-run-path", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:npm-run-path", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:are-we-there-yet", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:gauge", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:npmlog@5.0.1", + "target": "npm:are-we-there-yet@2.0.0", + "type": "static" + }, + { + "source": "npm:npmlog@5.0.1", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog@5.0.1", + "target": "npm:gauge@3.0.2", + "type": "static" + }, + { + "source": "npm:npmlog@5.0.1", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:are-we-there-yet@3.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:gauge@4.0.4", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:are-we-there-yet@3.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:gauge@4.0.4", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:nth-check@2.0.0", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nrwl/tao", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv@16.3.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:lines-and-columns@2.0.3", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tsconfig-paths@4.2.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-arm64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-freebsd-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nrwl/tao", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv@16.3.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:lines-and-columns@2.0.3", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tsconfig-paths@4.2.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-arm64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-freebsd-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:object-copy", + "target": "npm:copy-descriptor", + "type": "static" + }, + { + "source": "npm:object-copy", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:object-copy", + "target": "npm:kind-of@3.2.2", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object-visit", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:object.assign@4.1.0", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign@4.1.0", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:object.assign@4.1.0", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign@4.1.0", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:array-each", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:array-slice", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:array-each", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:array-slice", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.getownpropertydescriptors", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.getownpropertydescriptors", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.map", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:object.map", + "target": "npm:make-iterator", + "type": "static" + }, + { + "source": "npm:object.pick", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:object.pick", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:object.reduce", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:object.reduce", + "target": "npm:make-iterator", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + }, + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:onetime@2.0.1", + "target": "npm:mimic-fn@1.2.0", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:opn", + "target": "npm:is-wsl@1.1.0", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn@0.3.0", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:prelude-ls@1.2.1", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:type-check@0.4.0", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:word-wrap", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:cli-cursor@2.1.0", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:log-symbols@2.2.0", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:ordered-read-streams", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:os-filter-obj", + "target": "npm:arch", + "type": "static" + }, + { + "source": "npm:os-locale", + "target": "npm:lcid", + "type": "static" + }, + { + "source": "npm:osenv", + "target": "npm:os-homedir", + "type": "static" + }, + { + "source": "npm:osenv", + "target": "npm:os-tmpdir", + "type": "static" + }, + { + "source": "npm:p-all", + "target": "npm:p-map@2.1.0", + "type": "static" + }, + { + "source": "npm:p-event", + "target": "npm:p-timeout", + "type": "static" + }, + { + "source": "npm:p-filter", + "target": "npm:p-map@2.1.0", + "type": "static" + }, + { + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.0.0", + "type": "static" + }, + { + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", + "type": "static" + }, + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:p-locate@4.1.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:p-locate", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + }, + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-map@3.0.0", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-map@5.5.0", + "target": "npm:aggregate-error@4.0.1", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:p-timeout", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry@0.13.1", + "type": "static" + }, + { + "source": "npm:p-timeout", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:p-timeout", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:p-waterfall", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:got@6.7.1", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:registry-url", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:@npmcli/git@2.0.3", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:@npmcli/installed-package-contents@1.0.7", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:@npmcli/run-script@1.3.1", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:npm-packlist@2.1.2", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:npm-registry-fetch@8.1.3", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:promise-retry@1.1.1", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:ssri@8.0.0", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/promise-spawn@6.0.2", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:cacache@17.1.3", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:fs-minipass@3.0.2", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist@7.0.4", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-pick-manifest@8.0.1", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json-fast@3.0.2", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:parallel-transform", + "target": "npm:cyclist", + "type": "static" + }, + { + "source": "npm:parallel-transform", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:parallel-transform", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:ajv@4.11.8", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:lodash.assign", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:lodash.endswith", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:lodash.flatten", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:node-ipc", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:pluralize", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:supports-color@3.2.3", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:worker-farm", + "type": "static" + }, + { + "source": "npm:param-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:param-case@3.0.4", + "target": "npm:dot-case@3.0.4", + "type": "static" + }, + { + "source": "npm:param-case@3.0.4", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:asn1.js", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:browserify-aes", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:evp_bytestokey", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:pbkdf2", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-entities", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-entities-legacy", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-reference-invalid", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-alphanumerical", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-hexadecimal", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-entities", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-entities-legacy", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-reference-invalid", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-alphanumerical", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-hexadecimal", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:character-entities", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:character-entities-legacy", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:character-reference-invalid", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:is-alphanumerical", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:is-hexadecimal", + "type": "static" + }, + { + "source": "npm:parse-filepath", + "target": "npm:is-absolute", + "type": "static" + }, + { + "source": "npm:parse-filepath", + "target": "npm:map-cache", + "type": "static" + }, + { + "source": "npm:parse-filepath", + "target": "npm:path-root", + "type": "static" + }, + { + "source": "npm:parse-git-config", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:parse-git-config", + "target": "npm:git-config-path", + "type": "static" + }, + { + "source": "npm:parse-git-config", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:parse-json@2.2.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:parse-link-header", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:parse-path", + "target": "npm:protocols", + "type": "static" + }, + { + "source": "npm:parse-url", + "target": "npm:parse-path", + "type": "static" + }, + { + "source": "npm:parse5@3.0.3", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:parse5", + "target": "npm:entities@4.5.0", + "type": "static" + }, + { + "source": "npm:parse5", + "target": "npm:entities@4.5.0", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:upper-case-first", + "type": "static" + }, + { + "source": "npm:pascal-case@3.1.2", + "target": "npm:no-case@3.0.4", + "type": "static" + }, + { + "source": "npm:pascal-case@3.1.2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:path-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:path-exists@2.1.0", + "target": "npm:pinkie-promise", + "type": "static" + }, + { + "source": "npm:path-root", + "target": "npm:path-root-regex", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.0.1", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.0.1", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:path-to-regexp@1.7.0", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:path-type@1.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:path-type@1.1.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:path-type@1.1.0", + "target": "npm:pinkie-promise", + "type": "static" + }, + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:create-hmac", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:sha.js", + "type": "static" + }, + { + "source": "npm:pinkie-promise", + "target": "npm:pinkie", + "type": "static" + }, + { + "source": "npm:pixel-buffer-diff-folders", + "target": "npm:fast-png", + "type": "static" + }, + { + "source": "npm:pixel-buffer-diff-folders", + "target": "npm:jpeg-js", + "type": "static" + }, + { + "source": "npm:pixel-buffer-diff-folders", + "target": "npm:pixel-buffer-diff", + "type": "static" + }, + { + "source": "npm:pkg-dir@3.0.0", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:pkg-dir@5.0.0", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:pkg-install", + "target": "npm:@types/execa", + "type": "static" + }, + { + "source": "npm:pkg-install", + "target": "npm:@types/node@11.15.54", + "type": "static" + }, + { + "source": "npm:pkg-install", + "target": "npm:execa@1.0.0", + "type": "static" + }, + { + "source": "npm:pkg-up", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:pkg-up@4.0.0", + "target": "npm:find-up@6.3.0", + "type": "static" + }, + { + "source": "npm:playwright", + "target": "npm:playwright-core", + "type": "static" + }, + { + "source": "npm:please-upgrade-node", + "target": "npm:semver-compare", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:liftoff", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:node-plop", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:ora@3.4.0", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:v8flags", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:ansi-cyan", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:ansi-red", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:arr-diff@1.1.0", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:arr-union@2.1.0", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:extend-shallow@1.1.4", + "type": "static" + }, + { + "source": "npm:plugin-error", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:plugin-error", + "target": "npm:arr-diff", + "type": "static" + }, + { + "source": "npm:plugin-error", + "target": "npm:arr-union", + "type": "static" + }, + { + "source": "npm:plugin-error", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:pnp-webpack-plugin", + "target": "npm:ts-pnp", + "type": "static" + }, + { + "source": "npm:polished", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:postcss-flexbugs-fixes", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:postcss-modules-extract-imports@2.0.0", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default@3.0.2", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default@3.0.2", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default@3.0.2", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default@3.0.2", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils@5.1.0", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope@2.2.0", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope@2.2.0", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-values@3.0.0", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-values@3.0.0", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils@5.1.0", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:generic-names", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:icss-replace-symbols", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:lodash.camelcase", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:string-hash", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js@0.6.2", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js@0.6.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:supports-color@6.1.0", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:supports-color@6.1.0", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:supports-color@6.1.0", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:supports-color@6.1.0", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:supports-color@6.1.0", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:supports-color@6.1.0", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:supports-color@6.1.0", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:renderkid", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:utila", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:prettyjson", + "target": "npm:colors@1.4.0", + "type": "static" + }, + { + "source": "npm:prettyjson", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:prismjs", + "target": "npm:clipboard", + "type": "static" + }, + { + "source": "npm:prismjs", + "target": "npm:clipboard", + "type": "static" + }, + { + "source": "npm:prismjs", + "target": "npm:clipboard", + "type": "static" + }, + { + "source": "npm:promise-retry@1.1.1", + "target": "npm:err-code@1.1.2", + "type": "static" + }, + { + "source": "npm:promise-retry@1.1.1", + "target": "npm:retry@0.10.1", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry", + "type": "static" + }, + { + "source": "npm:promise.allsettled", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:promise.allsettled", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:promise.allsettled", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:promise.prototype.finally", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:promise.prototype.finally", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:promise.prototype.finally", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:promise", + "target": "npm:asap", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:promzard", + "target": "npm:read", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:property-information", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:property-information", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:property-information", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js@1.9.1", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:browserify-rsa", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:parse-asn1", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:pump@2.0.1", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump@2.0.1", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:pumpify", + "target": "npm:duplexify", + "type": "static" + }, + { + "source": "npm:pumpify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:pumpify", + "target": "npm:pump@2.0.1", + "type": "static" + }, + { + "source": "npm:pumpify", + "target": "npm:duplexify", + "type": "static" + }, + { + "source": "npm:pumpify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:pumpify", + "target": "npm:pump@2.0.1", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:cross-fetch", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:devtools-protocol@0.0.1082910", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:tar-fs", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:unbzip2-stream", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:cosmiconfig@8.0.0", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:puppeteer-core", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:cosmiconfig@8.0.0", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:puppeteer-core", + "type": "static" + }, + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:filter-obj", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:split-on-first", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:strict-uri-encode", + "type": "static" + }, + { + "source": "npm:raf", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:raf", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:raf", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:randexp", + "target": "npm:discontinuous-range", + "type": "static" + }, + { + "source": "npm:randexp", + "target": "npm:ret", + "type": "static" + }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:randomfill", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:randomfill", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:raw-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:raw-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:raw-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:raw-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:react-ace", + "target": "npm:brace", + "type": "static" + }, + { + "source": "npm:react-ace", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:react-ace", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:react-ace", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-addons-shallow-compare", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:promise", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:raf", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:whatwg-fetch@3.6.2", + "type": "static" + }, + { + "source": "npm:react-codesandboxer", + "target": "npm:codesandboxer", + "type": "static" + }, + { + "source": "npm:react-codesandboxer", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:react-codesandboxer", + "target": "npm:lodash.pick", + "type": "static" + }, + { + "source": "npm:react-codesandboxer", + "target": "npm:react-node-resolver", + "type": "static" + }, + { + "source": "npm:react-custom-scrollbars", + "target": "npm:dom-css", + "type": "static" + }, + { + "source": "npm:react-custom-scrollbars", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-custom-scrollbars", + "target": "npm:raf", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:ast-types@0.13.2", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:node-dir", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:strip-indent", + "type": "static" + }, + { + "source": "npm:react-document-title", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-document-title", + "target": "npm:react-side-effect", + "type": "static" + }, + { + "source": "npm:react-dom@16.14.0", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom@16.14.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-dom@16.14.0", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-dom@16.14.0", + "target": "npm:scheduler@0.19.1", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:react-dom@18.2.0", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom@18.2.0", + "target": "npm:scheduler@0.23.0", + "type": "static" + }, + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:@base2/pretty-print-object", + "type": "static" + }, + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:@base2/pretty-print-object", + "type": "static" + }, + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:react-error-boundary", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-fela", + "target": "npm:fela-bindings", + "type": "static" + }, + { + "source": "npm:react-fela", + "target": "npm:fela-dom", + "type": "static" + }, + { + "source": "npm:react-fela", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-hooks-testing-library", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:source-map@0.7.3", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:source-map@0.7.3", + "type": "static" + }, + { + "source": "npm:react-input-autosize", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-inspector", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-inspector", + "target": "npm:is-dom", + "type": "static" + }, + { + "source": "npm:react-inspector", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:html-to-react", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:mdast-add-list-metadata", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:remark-parse", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:unified", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:unist-util-visit@1.4.1", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:react-motion", + "target": "npm:performance-now@0.2.0", + "type": "static" + }, + { + "source": "npm:react-motion", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-motion", + "target": "npm:raf", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:react-router", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:mini-create-react-context", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:path-to-regexp@1.7.0", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:@emotion/cache", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:@emotion/core", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:@emotion/css", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:memoize-one", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:react-input-autosize", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:react-transition-group", + "type": "static" + }, + { + "source": "npm:react-shadow", + "target": "npm:humps", + "type": "static" + }, + { + "source": "npm:react-shallow-renderer", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-shallow-renderer", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:react-side-effect", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-sizeme", + "target": "npm:element-resize-detector", + "type": "static" + }, + { + "source": "npm:react-sizeme", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-sizeme", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-sizeme", + "target": "npm:throttle-debounce", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:deepmerge@2.2.1", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:highlight.js", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:lowlight", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:prismjs", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:refractor", + "type": "static" + }, + { + "source": "npm:react-table", + "target": "npm:@scarf/scarf", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-shallow-renderer", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-shallow-renderer", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:dom-helpers", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:dom-helpers", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:clsx", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:dom-helpers", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-collection", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-color", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-contour", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-geo", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-hexbin", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-hierarchy@1.1.9", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-interpolate", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-sankey@0.7.1", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-scale", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-shape", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-voronoi", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:hoek", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:react-motion", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-collection", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-color", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-contour", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-geo", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-hexbin", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-hierarchy@1.1.9", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-interpolate", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-sankey@0.7.1", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-scale", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-shape", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-voronoi", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:hoek", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:react-motion", + "type": "static" + }, + { + "source": "npm:react-window", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-window", + "target": "npm:memoize-one", + "type": "static" + }, + { + "source": "npm:react@16.14.0", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react@16.14.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react@16.14.0", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react@18.2.0", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:read-package-json-fast@3.0.2", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json-fast@3.0.2", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg@5.2.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:type-fest@0.8.1", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg@5.2.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:type-fest@0.8.1", + "type": "static" + }, + { + "source": "npm:read-pkg-up@1.0.1", + "target": "npm:find-up@1.1.2", + "type": "static" + }, + { + "source": "npm:read-pkg-up@1.0.1", + "target": "npm:read-pkg@1.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@3.0.0", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@3.0.0", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:read-pkg@1.1.0", + "target": "npm:load-json-file@1.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg@1.1.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@1.1.0", + "target": "npm:path-type@1.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:load-json-file@4.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:path-type@3.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:type-fest@0.6.0", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:strip-bom@4.0.0", + "type": "static" + }, + { + "source": "npm:read", + "target": "npm:mute-stream@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@1.0.34", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@1.0.34", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@1.0.34", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:readable-stream@1.0.34", + "target": "npm:string_decoder@0.10.31", + "type": "static" + }, + { + "source": "npm:readable-stream@1.1.14", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@1.1.14", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@1.1.14", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:readable-stream@1.1.14", + "target": "npm:string_decoder@0.10.31", + "type": "static" + }, + { + "source": "npm:readable-web-to-node-stream", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:readdirp@2.2.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:readdirp@2.2.1", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:readdirp@2.2.1", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:readdirp@3.2.0", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:readdirp", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:rechoir", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:rechoir@0.7.0", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:redent@1.0.0", + "target": "npm:indent-string@2.1.0", + "type": "static" + }, + { + "source": "npm:redent@1.0.0", + "target": "npm:strip-indent@1.0.1", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:strip-indent", + "type": "static" + }, + { + "source": "npm:redeyed", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:refractor", + "target": "npm:hastscript", + "type": "static" + }, + { + "source": "npm:refractor", + "target": "npm:parse-entities", + "type": "static" + }, + { + "source": "npm:refractor", + "target": "npm:prismjs", + "type": "static" + }, + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regenerator-transform", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:regex-not", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:regex-not", + "target": "npm:safe-regex", + "type": "static" + }, + { + "source": "npm:regex-not", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:regex-not", + "target": "npm:safe-regex", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + }, + { + "source": "npm:registry-auth-token", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:registry-auth-token", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:registry-url", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:regjsparser", + "target": "npm:jsesc@0.5.0", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:is-absolute-url", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:mdast-util-definitions", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:remark-frontmatter", + "target": "npm:fault", + "type": "static" + }, + { + "source": "npm:remark-frontmatter", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:remark-parse@8.0.3", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:unified@9.2.0", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:ccount", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:collapse-white-space", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:is-whitespace-character", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:is-word-character", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:markdown-escapes", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:parse-entities@2.0.0", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:state-toggle", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:trim", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:trim-trailing-lines", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:unherit", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:unist-util-remove-position@2.0.1", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:vfile-location", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:collapse-white-space", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-whitespace-character", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-word-character", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:markdown-escapes", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:parse-entities", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:state-toggle", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:trim", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:trim-trailing-lines", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:unherit", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:unist-util-remove-position", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:vfile-location@2.0.6", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:remark-slug", + "target": "npm:github-slugger", + "type": "static" + }, + { + "source": "npm:remark-slug", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:remark-slug", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:remark-squeeze-paragraphs", + "target": "npm:mdast-squeeze-paragraphs", + "type": "static" + }, + { + "source": "npm:remove-bom-buffer", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:remove-bom-buffer", + "target": "npm:is-utf8", + "type": "static" + }, + { + "source": "npm:remove-bom-stream", + "target": "npm:remove-bom-buffer", + "type": "static" + }, + { + "source": "npm:remove-bom-stream", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:remove-bom-stream", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:css-select@4.1.3", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:dom-converter", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:htmlparser2@6.1.0", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:repeating", + "target": "npm:is-finite", + "type": "static" + }, + { + "source": "npm:replace-homedir", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:replace-homedir", + "target": "npm:is-absolute", + "type": "static" + }, + { + "source": "npm:replace-homedir", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:replace-in-file", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:replace-in-file", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:replace-in-file", + "target": "npm:yargs@15.4.1", + "type": "static" + }, + { + "source": "npm:request-progress", + "target": "npm:throttleit", + "type": "static" + }, + { + "source": "npm:request-promise-core", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:request-promise-native", + "target": "npm:request-promise-core", + "type": "static" + }, + { + "source": "npm:request-promise-native", + "target": "npm:stealthy-require", + "type": "static" + }, + { + "source": "npm:request-promise-native", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:form-data@2.3.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:har-validator", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:http-signature@1.2.0", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:oauth-sign", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:qs@6.5.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:form-data@2.3.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:har-validator", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:http-signature@1.2.0", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:oauth-sign", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:qs@6.5.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:resolve-dir", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:resolve-dir", + "target": "npm:global-modules", + "type": "static" + }, + { + "source": "npm:resolve-dir", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:resolve-dir", + "target": "npm:global-modules", + "type": "static" + }, + { + "source": "npm:resolve-options", + "target": "npm:value-or-function", + "type": "static" + }, + { + "source": "npm:resolve-path", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:resolve-path", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:resolve@1.15.1", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.3", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.17.0", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.19.0", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@1.19.0", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:restore-cursor@2.0.0", + "target": "npm:onetime@2.0.1", + "type": "static" + }, + { + "source": "npm:restore-cursor@2.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:riceburn", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@4.4.1", + "target": "npm:glob@9.3.5", + "type": "static" + }, + { + "source": "npm:ripemd160", + "target": "npm:hash-base", + "type": "static" + }, + { + "source": "npm:ripemd160", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:ripemd160", + "target": "npm:hash-base", + "type": "static" + }, + { + "source": "npm:ripemd160", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:is-reference", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:rollup-pluginutils", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:boxen", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:brotli-size", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:colors@1.4.0", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:filesize", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:pacote@11.1.11", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:terser@4.8.0", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:@types/resolve", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:builtin-modules", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:is-module", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:rollup-pluginutils", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:jest-worker@24.9.0", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:rollup-pluginutils", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:terser@4.8.0", + "type": "static" + }, + { + "source": "npm:rollup-plugin-transform-tagged-template", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:rollup-plugin-transform-tagged-template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:rollup-plugin-transform-tagged-template", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:resolve@1.15.1", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:tslib@1.11.2", + "type": "static" + }, + { + "source": "npm:rollup-pluginutils", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:rollup-pluginutils", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:rollup", + "target": "npm:fsevents@2.3.3", + "type": "static" + }, + { + "source": "npm:rst-selector-parser", + "target": "npm:lodash.flattendeep", + "type": "static" + }, + { + "source": "npm:rst-selector-parser", + "target": "npm:nearley", + "type": "static" + }, + { + "source": "npm:rtl-css-js", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:rtl-css-js", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:run-queue", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:run-queue", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:rxjs@6.6.7", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:rxjs@6.6.7", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:safe-regex", + "target": "npm:ret", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:@cnakazawa/watch", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:anymatch@2.0.0", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:capture-exit", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:exec-sh", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:execa@1.0.0", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:sanitize-filename", + "target": "npm:truncate-utf8-bytes", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:halcyon", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:log-symbols@1.0.2", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:update-notifier", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:yargs@7.1.0", + "type": "static" + }, + { + "source": "npm:saxes", + "target": "npm:xmlchars", + "type": "static" + }, + { + "source": "npm:scheduler", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:scheduler", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:scheduler", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:scheduler", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:scheduler@0.19.1", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:scheduler@0.19.1", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:scheduler@0.23.0", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@0.3.0", + "target": "npm:ajv@5.5.2", + "type": "static" + }, + { + "source": "npm:schema-utils@1.0.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@1.0.0", + "target": "npm:ajv-errors@1.0.1", + "type": "static" + }, + { + "source": "npm:schema-utils@1.0.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv-formats@2.1.1", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv-keywords@5.1.0", + "type": "static" + }, + { + "source": "npm:selenium-webdriver", + "target": "npm:jszip", + "type": "static" + }, + { + "source": "npm:selenium-webdriver", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:selenium-webdriver", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + }, + { + "source": "npm:semver-diff", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:semver-greatest-satisfied-range", + "target": "npm:sver-compat", + "type": "static" + }, + { + "source": "npm:semver-truncate", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:semver@7.5.2", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver@7.3.8", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime@1.6.0", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:sentence-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:sentence-case", + "target": "npm:upper-case-first", + "type": "static" + }, + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serialize-javascript@5.0.1", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serialize-javascript@6.0.1", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:ms@2.1.1", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:safe-buffer@5.1.1", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:is-extendable", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:split-string", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:is-extendable", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:split-string", + "type": "static" + }, + { + "source": "npm:sha.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:sha.js", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:sha.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:sha.js", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + }, + { + "source": "npm:shebang-command@2.0.0", + "target": "npm:shebang-regex@3.0.0", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/bundle", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/bundle", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:simple-swizzle", + "target": "npm:is-arrayish@0.3.2", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:@polka/url", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:totalist", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:snake-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:snapdragon-node", + "target": "npm:define-property@1.0.0", + "type": "static" + }, + { + "source": "npm:snapdragon-node", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:snapdragon-node", + "target": "npm:snapdragon-util", + "type": "static" + }, + { + "source": "npm:snapdragon-util", + "target": "npm:kind-of@3.2.2", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:base", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:map-cache", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:source-map-resolve", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:use", + "type": "static" + }, + { + "source": "npm:socket.io-parser", + "target": "npm:@types/component-emitter", + "type": "static" + }, + { + "source": "npm:socket.io-parser", + "target": "npm:component-emitter", + "type": "static" + }, + { + "source": "npm:socket.io-parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:engine.io", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:socket.io-adapter", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:socket.io-parser", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@5.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@5.0.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@5.0.0", + "target": "npm:socks", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + }, + { + "source": "npm:sort-keys-length", + "target": "npm:sort-keys@1.1.2", + "type": "static" + }, + { + "source": "npm:sort-keys@1.1.2", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:atob", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:resolve-url", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:source-map-url", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:urix", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:atob", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:resolve-url", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:source-map-url", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:urix", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map@0.2.0", + "target": "npm:amdefine", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + }, + { + "source": "npm:split-string", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:split-string", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:split2", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:split", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:asn1", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:bcrypt-pbkdf", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:dashdash", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:ecc-jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:getpass", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:tweetnacl", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:asn1", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:bcrypt-pbkdf", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:dashdash", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:ecc-jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:getpass", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:tweetnacl", + "type": "static" + }, + { + "source": "npm:ssri", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:ssri", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:ssri@6.0.2", + "target": "npm:figgy-pudding", + "type": "static" + }, + { + "source": "npm:ssri@8.0.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:ssri@9.0.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:ssri@9.0.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + }, + { + "source": "npm:static-extend", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:static-extend", + "target": "npm:object-copy", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@testing-library/dom@7.22.3", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@testing-library/jest-dom", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@xstate/react", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:gzip-js", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:styled-components", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:xstate", + "type": "static" + }, + { + "source": "npm:storybook-addon-swc", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:storybook-addon-swc", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:storybook-addon-swc", + "target": "npm:swc-loader", + "type": "static" + }, + { + "source": "npm:storywright", + "target": "npm:playwright", + "type": "static" + }, + { + "source": "npm:storywright", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:storywright", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:stream-browserify@2.0.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:stream-browserify@2.0.2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:stream-browserify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:stream-browserify", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:stream-each", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:stream-each", + "target": "npm:stream-shift", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:builtin-status-codes", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:to-arraybuffer", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:stream-http", + "target": "npm:builtin-status-codes", + "type": "static" + }, + { + "source": "npm:stream-http", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:stream-http", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:stream-http", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:date-format", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-length@5.0.1", + "target": "npm:char-regex@2.0.1", + "type": "static" + }, + { + "source": "npm:string-length@5.0.1", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width@1.0.2", + "target": "npm:code-point-at", + "type": "static" + }, + { + "source": "npm:string-width@1.0.2", + "target": "npm:is-fullwidth-code-point@1.0.0", + "type": "static" + }, + { + "source": "npm:string-width@1.0.2", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:string-width@1.0.2", + "target": "npm:code-point-at", + "type": "static" + }, + { + "source": "npm:string-width@1.0.2", + "target": "npm:is-fullwidth-code-point@1.0.0", + "type": "static" + }, + { + "source": "npm:string-width@1.0.2", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:strip-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:strip-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:strip-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:string-width@3.1.0", + "target": "npm:emoji-regex@7.0.3", + "type": "static" + }, + { + "source": "npm:string-width@3.1.0", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@3.1.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:string-width@3.1.0", + "target": "npm:emoji-regex@7.0.3", + "type": "static" + }, + { + "source": "npm:string-width@3.1.0", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@3.1.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.padstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.padstart", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.padstart", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:string_decoder@1.1.1", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:get-own-enumerable-property-symbols", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-regexp", + "type": "static" + }, + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi@6.0.1", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi@6.0.1", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi@3.0.1", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@3.0.1", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@4.0.0", + "target": "npm:ansi-regex@3.0.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@5.2.0", + "target": "npm:ansi-regex@4.1.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@5.2.0", + "target": "npm:ansi-regex@4.1.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@5.2.0", + "target": "npm:ansi-regex@4.1.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@7.0.1", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@7.0.1", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + }, + { + "source": "npm:strip-bom@2.0.0", + "target": "npm:is-utf8", + "type": "static" + }, + { + "source": "npm:strip-indent@1.0.1", + "target": "npm:get-stdin@4.0.1", + "type": "static" + }, + { + "source": "npm:strip-indent", + "target": "npm:min-indent", + "type": "static" + }, + { + "source": "npm:strip-outer", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:strtok3", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:strtok3", + "target": "npm:peek-readable", + "type": "static" + }, + { + "source": "npm:structured-source", + "target": "npm:boundary", + "type": "static" + }, + { + "source": "npm:style-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:style-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:style-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:style-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:style-loader@1.3.0", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:style-loader@1.3.0", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:style-to-object", + "target": "npm:inline-style-parser", + "type": "static" + }, + { + "source": "npm:style-to-object", + "target": "npm:inline-style-parser", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@emotion/stylis", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@emotion/unitless", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:babel-plugin-styled-components", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:css-to-react-native", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:stylis-plugin-rtl", + "target": "npm:cssjanus", + "type": "static" + }, + { + "source": "npm:supports-color@6.0.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@3.2.3", + "target": "npm:has-flag@1.0.0", + "type": "static" + }, + { + "source": "npm:supports-color@3.2.3", + "target": "npm:has-flag@1.0.0", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@6.1.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:supports-color", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag@2.0.0", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks@2.2.0", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks@2.2.0", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:sver-compat", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:sver-compat", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:swap-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:swap-case", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:symbol.prototype.description", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:@effect/data@0.12.5", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:@effect/io", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:@effect/match", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:commander@11.0.0", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:cosmiconfig@8.2.0", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:minimatch@9.0.1", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:read-yaml-file", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:semver@7.5.2", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:tightrope", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:ts-toolbelt", + "type": "static" + }, + { + "source": "npm:table-layout", + "target": "npm:array-back@4.0.2", + "type": "static" + }, + { + "source": "npm:table-layout", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:table-layout", + "target": "npm:typical", + "type": "static" + }, + { + "source": "npm:table-layout", + "target": "npm:wordwrapjs", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:lodash.truncate", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:lodash.truncate", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:tabster", + "target": "npm:keyborg", + "type": "static" + }, + { + "source": "npm:tabster", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:ansi-escape-sequences", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:command-line-args", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:command-line-usage", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:csv-stringify", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:got@12.3.1", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:jsonschema", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:jstat", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-bodyparser", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-mount", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-node-resolve", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-send", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-static", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:pkg-install", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:pkg-up@4.0.0", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:sanitize-filename", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:selenium-webdriver", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:systeminformation", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:table", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:ua-parser-js", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:chownr@1.1.4", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:mkdirp-classic", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:chownr@1.1.4", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:mkdirp-classic", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:chownr@1.1.4", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:fs-minipass@1.2.7", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:minipass@2.9.0", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:minizlib@1.3.3", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:yallist@3.1.1", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:@types/is-function", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:is-function", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:isobject@4.0.0", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:term-size@1.2.0", + "target": "npm:execa@0.7.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript@6.0.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript@6.0.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript@6.0.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:cacache@12.0.3", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:find-cache-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:is-wsl@1.1.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:schema-utils@1.0.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:terser@4.8.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:worker-farm", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:jest-worker@26.6.2", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:serialize-javascript@5.0.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:through2-filter", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:through2-filter", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:through2@3.0.1", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:through2@0.5.1", + "target": "npm:readable-stream@1.0.34", + "type": "static" + }, + { + "source": "npm:through2@0.5.1", + "target": "npm:xtend@3.0.0", + "type": "static" + }, + { + "source": "npm:timers-browserify", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:timers-browserify", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:timers-ext", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:timers-ext", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:title-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:title-case", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + }, + { + "source": "npm:to-absolute-glob", + "target": "npm:is-absolute", + "type": "static" + }, + { + "source": "npm:to-absolute-glob", + "target": "npm:is-negated-glob", + "type": "static" + }, + { + "source": "npm:to-camel-case", + "target": "npm:to-space-case", + "type": "static" + }, + { + "source": "npm:to-object-path", + "target": "npm:kind-of@3.2.2", + "type": "static" + }, + { + "source": "npm:to-regex-range@2.1.1", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:to-regex-range@2.1.1", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:to-regex-range", + "target": "npm:is-number@7.0.0", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:safe-regex", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:safe-regex", + "type": "static" + }, + { + "source": "npm:to-space-case", + "target": "npm:to-no-case", + "type": "static" + }, + { + "source": "npm:to-through", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:token-types", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:token-types", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:url-parse", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:url-parse", + "type": "static" + }, + { + "source": "npm:tr46@1.0.1", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tr46", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:trim-repeated", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:trim-repeated@2.0.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + }, + { + "source": "npm:truncate-utf8-bytes", + "target": "npm:utf8-byte-length", + "type": "static" + }, + { + "source": "npm:ts-invariant", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:ts-morph", + "target": "npm:@dsherret/to-absolute-glob", + "type": "static" + }, + { + "source": "npm:ts-morph", + "target": "npm:@ts-morph/common", + "type": "static" + }, + { + "source": "npm:ts-morph", + "target": "npm:code-block-writer", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:tsconfig-paths@4.2.0", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:@tufjs/models", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:tunnel-agent", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:type-check@0.4.0", + "target": "npm:prelude-ls@1.2.1", + "type": "static" + }, + { + "source": "npm:type-check@0.4.0", + "target": "npm:prelude-ls@1.2.1", + "type": "static" + }, + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:typed-rest-client", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:typed-rest-client", + "target": "npm:tunnel", + "type": "static" + }, + { + "source": "npm:typed-rest-client", + "target": "npm:underscore", + "type": "static" + }, + { + "source": "npm:typedarray-to-buffer", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:unbzip2-stream", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:unbzip2-stream", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:arr-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:bach", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:collection-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:fast-levenshtein@1.1.4", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:last-run", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:object.defaults", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:object.reduce", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:undertaker-registry", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:arr-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:bach", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:collection-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:fast-levenshtein@1.1.4", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:last-run", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:object.defaults", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:object.reduce", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:undertaker-registry", + "type": "static" + }, + { + "source": "npm:unherit", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:unherit", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:is-buffer@2.0.4", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:is-plain-obj@2.1.0", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:vfile@2.3.0", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:x-is-string", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:vfile@2.3.0", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:x-is-string", + "type": "static" + }, + { + "source": "npm:union-value", + "target": "npm:arr-union", + "type": "static" + }, + { + "source": "npm:union-value", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:union-value", + "target": "npm:is-extendable", + "type": "static" + }, + { + "source": "npm:union-value", + "target": "npm:set-value", + "type": "static" + }, + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + }, + { + "source": "npm:unique-filename@2.0.1", + "target": "npm:unique-slug@3.0.0", + "type": "static" + }, + { + "source": "npm:unique-filename@3.0.0", + "target": "npm:unique-slug@4.0.0", + "type": "static" + }, + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unique-slug@3.0.0", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unique-slug@4.0.0", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unique-stream", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:unique-stream", + "target": "npm:through2-filter", + "type": "static" + }, + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string", + "type": "static" + }, + { + "source": "npm:unist-util-remove-position", + "target": "npm:unist-util-visit@1.4.1", + "type": "static" + }, + { + "source": "npm:unist-util-remove-position@2.0.1", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:unist-util-remove", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-stringify-position@2.0.2", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents@2.1.2", + "target": "npm:unist-util-is@3.0.0", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + }, + { + "source": "npm:unist-util-visit@1.4.1", + "target": "npm:unist-util-visit-parents@2.1.2", + "type": "static" + }, + { + "source": "npm:unist-util-visit@1.4.1", + "target": "npm:unist-util-visit-parents@2.1.2", + "type": "static" + }, + { + "source": "npm:universal-url", + "target": "npm:hasurl", + "type": "static" + }, + { + "source": "npm:universal-url", + "target": "npm:whatwg-url@7.0.0", + "type": "static" + }, + { + "source": "npm:unset-value", + "target": "npm:has-value@0.3.1", + "type": "static" + }, + { + "source": "npm:unset-value", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:untildify@2.1.0", + "target": "npm:os-homedir", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:big-integer", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:binary", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:bluebird@3.4.7", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:buffer-indexof-polyfill", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:duplexer2@0.1.4", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:fstream", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:listenercount", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:boxen@1.3.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:configstore", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:import-lazy@2.1.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-ci@1.2.1", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-installed-globally@0.1.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-npm", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:latest-version", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:semver-diff", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:xdg-basedir", + "type": "static" + }, + { + "source": "npm:upper-case-first", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:upper-case-first", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:url-loader@4.1.1", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:url-loader@4.1.1", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:url-loader@4.1.1", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:url-parse-lax", + "target": "npm:prepend-http", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:querystringify", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:requires-port", + "type": "static" + }, + { + "source": "npm:url", + "target": "npm:punycode@1.3.2", + "type": "static" + }, + { + "source": "npm:url", + "target": "npm:querystring", + "type": "static" + }, + { + "source": "npm:use-subscription", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:util.promisify", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:util.promisify", + "target": "npm:object.getownpropertydescriptors", + "type": "static" + }, + { + "source": "npm:util@0.10.3", + "target": "npm:inherits@2.0.1", + "type": "static" + }, + { + "source": "npm:util@0.11.1", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:v8flags", + "target": "npm:user-home", + "type": "static" + }, + { + "source": "npm:v8flags@3.1.3", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name@3.0.0", + "target": "npm:builtins@1.0.3", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:vfile-message@1.1.1", + "target": "npm:unist-util-stringify-position", + "type": "static" + }, + { + "source": "npm:vfile-message", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:vfile-message", + "target": "npm:unist-util-stringify-position@2.0.2", + "type": "static" + }, + { + "source": "npm:vfile@2.3.0", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:vfile@2.3.0", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:vfile@2.3.0", + "target": "npm:unist-util-stringify-position", + "type": "static" + }, + { + "source": "npm:vfile@2.3.0", + "target": "npm:vfile-message@1.1.1", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:is-buffer@2.0.4", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:unist-util-stringify-position@2.0.2", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:vfile-message", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:fs-mkdirp-stream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:glob-stream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:is-valid-glob", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:lazystream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:lead", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:pumpify", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:remove-bom-buffer", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:remove-bom-stream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:resolve-options", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:to-through", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:value-or-function", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:vinyl", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:vinyl-sourcemap", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:append-buffer", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:normalize-path@2.1.1", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:now-and-later", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:remove-bom-buffer", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:vinyl", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemaps-apply", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone@2.1.2", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-buffer", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-stats", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:cloneable-readable", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone@2.1.2", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-buffer", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-stats", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:cloneable-readable", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone@2.1.2", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-buffer", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-stats", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:cloneable-readable", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:vinyl@0.5.3", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:vinyl@0.5.3", + "target": "npm:clone-stats@0.0.1", + "type": "static" + }, + { + "source": "npm:vinyl@0.5.3", + "target": "npm:replace-ext@0.0.1", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:@octokit/rest@19.0.11", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:adal-node", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:azure-devops-node-api", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:azure-storage", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:azure-storage-simple", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:pixel-buffer-diff-folders", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:unzipper", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:w3c-xmlserializer", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + }, + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + }, + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + }, + { + "source": "npm:watchpack-chokidar2", + "target": "npm:chokidar@2.1.8", + "type": "static" + }, + { + "source": "npm:watchpack@1.7.5", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:watchpack@1.7.5", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:watchpack@1.7.5", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:watchpack@1.7.5", + "target": "npm:watchpack-chokidar2", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + }, + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:commander@6.2.1", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:gzip-size@6.0.0", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:sirv", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:ws@7.5.6", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/configtest", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/info", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/serve", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:colorette@2.0.20", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:fastest-levenshtein", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:interpret@2.2.0", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:rechoir@0.7.0", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mem", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs@3.4.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mem", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs@3.4.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:memory-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:webpack-log", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:colorette@2.0.20", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:memfs@3.4.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette@2.0.20", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:del", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:portfinder", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware@5.3.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:querystring", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:querystring", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:webpack-log", + "target": "npm:ansi-colors@3.2.3", + "type": "static" + }, + { + "source": "npm:webpack-log", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + }, + { + "source": "npm:webpack-merge@4.2.2", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-list-map", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-list-map", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-list-map", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-list-map", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:webpack-virtual-modules", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:@webassemblyjs/helper-module-context", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:@webassemblyjs/wasm-edit@1.9.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:@webassemblyjs/wasm-parser@1.9.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:acorn@6.4.1", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:enhanced-resolve@4.5.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:eslint-scope@4.0.3", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:json-parse-better-errors", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:loader-runner@2.4.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:memory-fs", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:node-libs-browser", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:schema-utils@1.0.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:terser-webpack-plugin@1.4.5", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:watchpack@1.7.5", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources@3.2.3", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources@3.2.3", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources@3.2.3", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources@3.2.3", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources@3.2.3", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources@3.2.3", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources@3.2.3", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + }, + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:tr46@0.0.3", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:webidl-conversions@3.0.1", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.0.0", + "target": "npm:lodash.sortby", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.0.0", + "target": "npm:tr46@1.0.1", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.0.0", + "target": "npm:webidl-conversions@4.0.2", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:foreach", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which@3.0.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:wide-align@1.1.3", + "target": "npm:string-width@2.1.1", + "type": "static" + }, + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:widest-line@2.0.1", + "target": "npm:string-width@2.1.1", + "type": "static" + }, + { + "source": "npm:widest-line", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wordwrapjs", + "target": "npm:reduce-flatten", + "type": "static" + }, + { + "source": "npm:wordwrapjs", + "target": "npm:typical", + "type": "static" + }, + { + "source": "npm:worker-farm", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:worker-farm", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:worker-rpc", + "target": "npm:microevent.ts", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@2.1.0", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@2.1.0", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@5.1.0", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@5.1.0", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi@5.1.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:signal-exit@4.0.2", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:typedarray-to-buffer", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:filesize@3.6.1", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:moment", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:detect-indent", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:type-fest@0.4.1", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:write-json-file", + "type": "static" + }, + { + "source": "npm:x-default-browser", + "target": "npm:default-browser-id", + "type": "static" + }, + { + "source": "npm:xml2js", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:xml2js", + "target": "npm:xmlbuilder", + "type": "static" + }, + { + "source": "npm:xml2js@0.2.8", + "target": "npm:sax@0.5.8", + "type": "static" + }, + { + "source": "npm:yargs-parser", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs-parser", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs-parser", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs-parser@5.0.0", + "target": "npm:camelcase@3.0.0", + "type": "static" + }, + { + "source": "npm:yargs-unparser@1.6.0", + "target": "npm:flat@4.1.0", + "type": "static" + }, + { + "source": "npm:yargs-unparser@1.6.0", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:yargs-unparser@1.6.0", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:decamelize@4.0.0", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:is-plain-obj@2.1.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui@5.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui@5.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui@5.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:y18n@5.0.5", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:y18n@5.0.5", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:y18n@5.0.5", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:cliui@6.0.0", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:yargs-parser@18.1.3", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:y18n@5.0.5", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:y18n@5.0.5", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:camelcase@3.0.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:cliui@3.2.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:get-caller-file@1.0.3", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:os-locale", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:read-pkg-up@1.0.1", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:require-main-filename@1.0.1", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:which-module@1.0.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:y18n@3.2.2", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:yargs-parser@5.0.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:camelcase@3.0.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:cliui@3.2.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:get-caller-file@1.0.3", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:os-locale", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:read-pkg-up@1.0.1", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:require-main-filename@1.0.1", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:which-module@1.0.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:y18n@3.2.2", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:yargs-parser@5.0.0", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:buffer-crc32", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:fd-slicer", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:commander", + "type": "static" + } + ] +} diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json new file mode 100644 index 0000000000000..764e533ceb4f0 --- /dev/null +++ b/.nx/cache/project-graph.json @@ -0,0 +1,101797 @@ +{ + "nodes": { + "@fluentui/react-storybook-addon-export-to-sandbox": { + "name": "@fluentui/react-storybook-addon-export-to-sandbox", + "type": "lib", + "data": { + "root": "packages/react-components/react-storybook-addon-export-to-sandbox", + "sourceRoot": "packages/react-components/react-storybook-addon-export-to-sandbox/src", + "name": "@fluentui/react-storybook-addon-export-to-sandbox", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/babel-preset-storybook-full-source": { + "name": "@fluentui/babel-preset-storybook-full-source", + "type": "lib", + "data": { + "root": "packages/react-components/babel-preset-storybook-full-source", + "sourceRoot": "packages/react-components/babel-preset-storybook-full-source/src", + "name": "@fluentui/babel-preset-storybook-full-source", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:node"] + } + }, + "@fluentui/react-timepicker-compat-preview": { + "name": "@fluentui/react-timepicker-compat-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-timepicker-compat-preview", + "sourceRoot": "packages/react-components/react-timepicker-compat-preview/src", + "name": "@fluentui/react-timepicker-compat-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext", "compat"], + "implicitDependencies": [] + } + }, + "@fluentui/react-teaching-popover-preview": { + "name": "@fluentui/react-teaching-popover-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-teaching-popover-preview", + "sourceRoot": "packages/react-components/react-teaching-popover-preview/src", + "name": "@fluentui/react-teaching-popover-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/babel-preset-global-context": { + "name": "@fluentui/babel-preset-global-context", + "type": "lib", + "data": { + "root": "packages/react-components/babel-preset-global-context", + "sourceRoot": "packages/react-components/babel-preset-global-context/src", + "name": "@fluentui/babel-preset-global-context", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "pree2e": { + "executor": "nx:run-script", + "options": { + "script": "pree2e" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:node"] + } + }, + "@fluentui/react-portal-compat-context": { + "name": "@fluentui/react-portal-compat-context", + "type": "lib", + "data": { + "root": "packages/react-components/react-portal-compat-context", + "sourceRoot": "packages/react-components/react-portal-compat-context/src", + "name": "@fluentui/react-portal-compat-context", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "ships-amd", "platform:web"] + } + }, + "@fluentui/react-swatch-picker-preview": { + "name": "@fluentui/react-swatch-picker-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-swatch-picker-preview", + "sourceRoot": "packages/react-components/react-swatch-picker-preview/src", + "name": "@fluentui/react-swatch-picker-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/react-conformance-griffel": { + "name": "@fluentui/react-conformance-griffel", + "type": "lib", + "data": { + "root": "packages/react-components/react-conformance-griffel", + "sourceRoot": "packages/react-components/react-conformance-griffel/src", + "name": "@fluentui/react-conformance-griffel", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:node"], + "implicitDependencies": [] + } + }, + "@fluentui/react-component-nesting-registry": { + "name": "@fluentui/react-component-nesting-registry", + "type": "lib", + "data": { + "root": "packages/fluentui/react-component-nesting-registry", + "sourceRoot": "packages/fluentui/react-component-nesting-registry", + "name": "@fluentui/react-component-nesting-registry", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-northstar-emotion-renderer": { + "name": "@fluentui/react-northstar-emotion-renderer", + "type": "lib", + "data": { + "root": "packages/fluentui/react-northstar-emotion-renderer", + "sourceRoot": "packages/fluentui/react-northstar-emotion-renderer", + "name": "@fluentui/react-northstar-emotion-renderer", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-colorpicker-compat": { + "name": "@fluentui/react-colorpicker-compat", + "type": "lib", + "data": { + "root": "packages/react-components/react-colorpicker-compat", + "sourceRoot": "packages/react-components/react-colorpicker-compat/src", + "name": "@fluentui/react-colorpicker-compat", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-northstar-styles-renderer": { + "name": "@fluentui/react-northstar-styles-renderer", + "type": "lib", + "data": { + "root": "packages/fluentui/react-northstar-styles-renderer", + "sourceRoot": "packages/fluentui/react-northstar-styles-renderer", + "name": "@fluentui/react-northstar-styles-renderer", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-datepicker-compat": { + "name": "@fluentui/react-datepicker-compat", + "type": "lib", + "data": { + "root": "packages/react-components/react-datepicker-compat", + "sourceRoot": "packages/react-components/react-datepicker-compat/src", + "name": "@fluentui/react-datepicker-compat", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web", "compat"] + } + }, + "@fluentui/react-timepicker-compat": { + "name": "@fluentui/react-timepicker-compat", + "type": "lib", + "data": { + "root": "packages/react-components/react-timepicker-compat", + "sourceRoot": "packages/react-components/react-timepicker-compat/src", + "name": "@fluentui/react-timepicker-compat", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext", "compat"], + "implicitDependencies": [] + } + }, + "@fluentui/react-context-selector": { + "name": "@fluentui/react-context-selector", + "type": "lib", + "data": { + "root": "packages/react-components/react-context-selector", + "sourceRoot": "packages/react-components/react-context-selector/src", + "name": "@fluentui/react-context-selector", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-component-event-listener": { + "name": "@fluentui/react-component-event-listener", + "type": "lib", + "data": { + "root": "packages/fluentui/react-component-event-listener", + "sourceRoot": "packages/fluentui/react-component-event-listener", + "name": "@fluentui/react-component-event-listener", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-northstar-fela-renderer": { + "name": "@fluentui/react-northstar-fela-renderer", + "type": "lib", + "data": { + "root": "packages/fluentui/react-northstar-fela-renderer", + "sourceRoot": "packages/fluentui/react-northstar-fela-renderer", + "name": "@fluentui/react-northstar-fela-renderer", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-motions-preview": { + "name": "@fluentui/react-motions-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-motions-preview", + "sourceRoot": "packages/react-components/react-motions-preview/src", + "name": "@fluentui/react-motions-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/react-migration-v0-v9": { + "name": "@fluentui/react-migration-v0-v9", + "type": "lib", + "data": { + "root": "packages/react-components/react-migration-v0-v9", + "sourceRoot": "packages/react-components/react-migration-v0-v9/src", + "name": "@fluentui/react-migration-v0-v9", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "react-northstar", "platform:web"] + } + }, + "@fluentui/react-calendar-compat": { + "name": "@fluentui/react-calendar-compat", + "type": "lib", + "data": { + "root": "packages/react-components/react-calendar-compat", + "sourceRoot": "packages/react-components/react-calendar-compat/src", + "name": "@fluentui/react-calendar-compat", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext", "compat"], + "implicitDependencies": [] + } + }, + "@fluentui/react-shared-contexts": { + "name": "@fluentui/react-shared-contexts", + "type": "lib", + "data": { + "root": "packages/react-components/react-shared-contexts", + "sourceRoot": "packages/react-components/react-shared-contexts/src", + "name": "@fluentui/react-shared-contexts", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-migration-v8-v9": { + "name": "@fluentui/react-migration-v8-v9", + "type": "lib", + "data": { + "root": "packages/react-components/react-migration-v8-v9", + "sourceRoot": "packages/react-components/react-migration-v8-v9/src", + "name": "@fluentui/react-migration-v8-v9", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "v8", "platform:web"] + } + }, + "@fluentui/react-storybook-addon": { + "name": "@fluentui/react-storybook-addon", + "type": "lib", + "data": { + "root": "packages/react-components/react-storybook-addon", + "sourceRoot": "packages/react-components/react-storybook-addon/src", + "name": "@fluentui/react-storybook-addon", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-motion-preview": { + "name": "@fluentui/react-motion-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-motion-preview", + "sourceRoot": "packages/react-components/react-motion-preview/src", + "name": "@fluentui/react-motion-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/react-rating-preview": { + "name": "@fluentui/react-rating-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-rating-preview", + "sourceRoot": "packages/react-components/react-rating-preview/src", + "name": "@fluentui/react-rating-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/react-search-preview": { + "name": "@fluentui/react-search-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-search-preview", + "sourceRoot": "packages/react-components/react-search-preview/src", + "name": "@fluentui/react-search-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-portal-compat": { + "name": "@fluentui/react-portal-compat", + "type": "lib", + "data": { + "root": "packages/react-components/react-portal-compat", + "sourceRoot": "packages/react-components/react-portal-compat/src", + "name": "@fluentui/react-portal-compat", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "ships-amd", "platform:web"] + } + }, + "@fluentui/react-northstar-prototypes": { + "name": "@fluentui/react-northstar-prototypes", + "type": "lib", + "data": { + "root": "packages/fluentui/react-northstar-prototypes", + "sourceRoot": "packages/fluentui/react-northstar-prototypes", + "name": "@fluentui/react-northstar-prototypes", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-list-preview": { + "name": "@fluentui/react-list-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-list-preview", + "sourceRoot": "packages/react-components/react-list-preview/src", + "name": "@fluentui/react-list-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/priority-overflow": { + "name": "@fluentui/priority-overflow", + "type": "lib", + "data": { + "root": "packages/react-components/priority-overflow", + "sourceRoot": "packages/react-components/priority-overflow/src", + "name": "@fluentui/priority-overflow", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-nav-preview": { + "name": "@fluentui/react-nav-preview", + "type": "lib", + "data": { + "root": "packages/react-components/react-nav-preview", + "sourceRoot": "packages/react-components/react-nav-preview/src", + "name": "@fluentui/react-nav-preview", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/react-positioning": { + "name": "@fluentui/react-positioning", + "type": "lib", + "data": { + "root": "packages/react-components/react-positioning", + "sourceRoot": "packages/react-components/react-positioning/src", + "name": "@fluentui/react-positioning", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-virtualizer": { + "name": "@fluentui/react-virtualizer", + "type": "lib", + "data": { + "root": "packages/react-components/react-virtualizer", + "sourceRoot": "packages/react-components/react-virtualizer/src", + "name": "@fluentui/react-virtualizer", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-jsx-runtime": { + "name": "@fluentui/react-jsx-runtime", + "type": "lib", + "data": { + "root": "packages/react-components/react-jsx-runtime", + "sourceRoot": "packages/react-components/react-jsx-runtime/src", + "name": "@fluentui/react-jsx-runtime", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-message-bar": { + "name": "@fluentui/react-message-bar", + "type": "lib", + "data": { + "root": "packages/react-components/react-message-bar", + "sourceRoot": "packages/react-components/react-message-bar/src", + "name": "@fluentui/react-message-bar", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/react-infobutton": { + "name": "@fluentui/react-infobutton", + "type": "lib", + "data": { + "root": "packages/react-components/react-infobutton", + "sourceRoot": "packages/react-components/react-infobutton/src", + "name": "@fluentui/react-infobutton", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-breadcrumb": { + "name": "@fluentui/react-breadcrumb", + "type": "lib", + "data": { + "root": "packages/react-components/react-breadcrumb", + "sourceRoot": "packages/react-components/react-breadcrumb/src", + "name": "@fluentui/react-breadcrumb", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-spinbutton": { + "name": "@fluentui/react-spinbutton", + "type": "lib", + "data": { + "root": "packages/react-components/react-spinbutton", + "sourceRoot": "packages/react-components/react-spinbutton/src", + "name": "@fluentui/react-spinbutton", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-components": { + "name": "@fluentui/react-components", + "type": "lib", + "data": { + "root": "packages/react-components/react-components", + "sourceRoot": "packages/react-components/react-components/src", + "name": "@fluentui/react-components", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "verify-packaging": { + "executor": "nx:run-script", + "options": { + "script": "verify-packaging" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-theme-sass": { + "name": "@fluentui/react-theme-sass", + "type": "lib", + "data": { + "root": "packages/react-components/react-theme-sass", + "sourceRoot": "packages/react-components/react-theme-sass/src", + "name": "@fluentui/react-theme-sass", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-accordion": { + "name": "@fluentui/react-accordion", + "type": "lib", + "data": { + "root": "packages/react-components/react-accordion", + "sourceRoot": "packages/react-components/react-accordion/src", + "name": "@fluentui/react-accordion", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-utilities": { + "name": "@fluentui/react-utilities", + "type": "lib", + "data": { + "root": "packages/react-components/react-utilities", + "sourceRoot": "packages/react-components/react-utilities/src", + "name": "@fluentui/react-utilities", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-infolabel": { + "name": "@fluentui/react-infolabel", + "type": "lib", + "data": { + "root": "packages/react-components/react-infolabel", + "sourceRoot": "packages/react-components/react-infolabel/src", + "name": "@fluentui/react-infolabel", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/react-skeleton": { + "name": "@fluentui/react-skeleton", + "type": "lib", + "data": { + "root": "packages/react-components/react-skeleton", + "sourceRoot": "packages/react-components/react-skeleton/src", + "name": "@fluentui/react-skeleton", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-textarea": { + "name": "@fluentui/react-textarea", + "type": "lib", + "data": { + "root": "packages/react-components/react-textarea", + "sourceRoot": "packages/react-components/react-textarea/src", + "name": "@fluentui/react-textarea", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-checkbox": { + "name": "@fluentui/react-checkbox", + "type": "lib", + "data": { + "root": "packages/react-components/react-checkbox", + "sourceRoot": "packages/react-components/react-checkbox/src", + "name": "@fluentui/react-checkbox", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-overflow": { + "name": "@fluentui/react-overflow", + "type": "lib", + "data": { + "root": "packages/react-components/react-overflow", + "sourceRoot": "packages/react-components/react-overflow/src", + "name": "@fluentui/react-overflow", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/global-context": { + "name": "@fluentui/global-context", + "type": "lib", + "data": { + "root": "packages/react-components/global-context", + "sourceRoot": "packages/react-components/global-context/src", + "name": "@fluentui/global-context", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-provider": { + "name": "@fluentui/react-provider", + "type": "lib", + "data": { + "root": "packages/react-components/react-provider", + "sourceRoot": "packages/react-components/react-provider/src", + "name": "@fluentui/react-provider", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-progress": { + "name": "@fluentui/react-progress", + "type": "lib", + "data": { + "root": "packages/react-components/react-progress", + "sourceRoot": "packages/react-components/react-progress/src", + "name": "@fluentui/react-progress", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-combobox": { + "name": "@fluentui/react-combobox", + "type": "lib", + "data": { + "root": "packages/react-components/react-combobox", + "sourceRoot": "packages/react-components/react-combobox/src", + "name": "@fluentui/react-combobox", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/theme-designer": { + "name": "@fluentui/theme-designer", + "type": "lib", + "data": { + "root": "packages/react-components/theme-designer", + "sourceRoot": "packages/react-components/theme-designer/src", + "name": "@fluentui/theme-designer", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "build-storybook": { + "executor": "nx:run-script", + "options": { + "script": "build-storybook" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-tooltip": { + "name": "@fluentui/react-tooltip", + "type": "lib", + "data": { + "root": "packages/react-components/react-tooltip", + "sourceRoot": "packages/react-components/react-tooltip/src", + "name": "@fluentui/react-tooltip", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/keyboard-keys": { + "name": "@fluentui/keyboard-keys", + "type": "lib", + "data": { + "root": "packages/react-components/keyboard-keys", + "sourceRoot": "packages/react-components/keyboard-keys/src", + "name": "@fluentui/keyboard-keys", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-toolbar": { + "name": "@fluentui/react-toolbar", + "type": "lib", + "data": { + "root": "packages/react-components/react-toolbar", + "sourceRoot": "packages/react-components/react-toolbar/src", + "name": "@fluentui/react-toolbar", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-popover": { + "name": "@fluentui/react-popover", + "type": "lib", + "data": { + "root": "packages/react-components/react-popover", + "sourceRoot": "packages/react-components/react-popover/src", + "name": "@fluentui/react-popover", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-icons-northstar": { + "name": "@fluentui/react-icons-northstar", + "type": "lib", + "data": { + "root": "packages/fluentui/react-icons-northstar", + "sourceRoot": "packages/fluentui/react-icons-northstar", + "name": "@fluentui/react-icons-northstar", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-divider": { + "name": "@fluentui/react-divider", + "type": "lib", + "data": { + "root": "packages/react-components/react-divider", + "sourceRoot": "packages/react-components/react-divider/src", + "name": "@fluentui/react-divider", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-tabster": { + "name": "@fluentui/react-tabster", + "type": "lib", + "data": { + "root": "packages/react-components/react-tabster", + "sourceRoot": "packages/react-components/react-tabster/src", + "name": "@fluentui/react-tabster", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-persona": { + "name": "@fluentui/react-persona", + "type": "lib", + "data": { + "root": "packages/react-components/react-persona", + "sourceRoot": "packages/react-components/react-persona/src", + "name": "@fluentui/react-persona", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-spinner": { + "name": "@fluentui/react-spinner", + "type": "lib", + "data": { + "root": "packages/react-components/react-spinner", + "sourceRoot": "packages/react-components/react-spinner/src", + "name": "@fluentui/react-spinner", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-drawer": { + "name": "@fluentui/react-drawer", + "type": "lib", + "data": { + "root": "packages/react-components/react-drawer", + "sourceRoot": "packages/react-components/react-drawer/src", + "name": "@fluentui/react-drawer", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-button": { + "name": "@fluentui/react-button", + "type": "lib", + "data": { + "root": "packages/react-components/react-button", + "sourceRoot": "packages/react-components/react-button/src", + "name": "@fluentui/react-button", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-slider": { + "name": "@fluentui/react-slider", + "type": "lib", + "data": { + "root": "packages/react-components/react-slider", + "sourceRoot": "packages/react-components/react-slider/src", + "name": "@fluentui/react-slider", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-select": { + "name": "@fluentui/react-select", + "type": "lib", + "data": { + "root": "packages/react-components/react-select", + "sourceRoot": "packages/react-components/react-select/src", + "name": "@fluentui/react-select", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-switch": { + "name": "@fluentui/react-switch", + "type": "lib", + "data": { + "root": "packages/react-components/react-switch", + "sourceRoot": "packages/react-components/react-switch/src", + "name": "@fluentui/react-switch", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-dialog": { + "name": "@fluentui/react-dialog", + "type": "lib", + "data": { + "root": "packages/react-components/react-dialog", + "sourceRoot": "packages/react-components/react-dialog/src", + "name": "@fluentui/react-dialog", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-avatar": { + "name": "@fluentui/react-avatar", + "type": "lib", + "data": { + "root": "packages/react-components/react-avatar", + "sourceRoot": "packages/react-components/react-avatar/src", + "name": "@fluentui/react-avatar", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-portal": { + "name": "@fluentui/react-portal", + "type": "lib", + "data": { + "root": "packages/react-components/react-portal", + "sourceRoot": "packages/react-components/react-portal/src", + "name": "@fluentui/react-portal", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-table": { + "name": "@fluentui/react-table", + "type": "lib", + "data": { + "root": "packages/react-components/react-table", + "sourceRoot": "packages/react-components/react-table/src", + "name": "@fluentui/react-table", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-badge": { + "name": "@fluentui/react-badge", + "type": "lib", + "data": { + "root": "packages/react-components/react-badge", + "sourceRoot": "packages/react-components/react-badge/src", + "name": "@fluentui/react-badge", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/perf-test-northstar": { + "name": "@fluentui/perf-test-northstar", + "type": "app", + "data": { + "root": "packages/fluentui/perf-test-northstar", + "sourceRoot": "packages/fluentui/perf-test-northstar", + "name": "@fluentui/perf-test-northstar", + "projectType": "application", + "targets": { + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "perf:test": { + "executor": "nx:run-script", + "options": { + "script": "perf:test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-field": { + "name": "@fluentui/react-field", + "type": "lib", + "data": { + "root": "packages/react-components/react-field", + "sourceRoot": "packages/react-components/react-field/src", + "name": "@fluentui/react-field", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-theme": { + "name": "@fluentui/react-theme", + "type": "lib", + "data": { + "root": "packages/react-components/react-theme", + "sourceRoot": "packages/react-components/react-theme/src", + "name": "@fluentui/react-theme", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-alert": { + "name": "@fluentui/react-alert", + "type": "lib", + "data": { + "root": "packages/react-components/react-alert", + "sourceRoot": "packages/react-components/react-alert/src", + "name": "@fluentui/react-alert", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-label": { + "name": "@fluentui/react-label", + "type": "lib", + "data": { + "root": "packages/react-components/react-label", + "sourceRoot": "packages/react-components/react-label/src", + "name": "@fluentui/react-label", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-toast": { + "name": "@fluentui/react-toast", + "type": "lib", + "data": { + "root": "packages/react-components/react-toast", + "sourceRoot": "packages/react-components/react-toast/src", + "name": "@fluentui/react-toast", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-input": { + "name": "@fluentui/react-input", + "type": "lib", + "data": { + "root": "packages/react-components/react-input", + "sourceRoot": "packages/react-components/react-input/src", + "name": "@fluentui/react-input", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-image": { + "name": "@fluentui/react-image", + "type": "lib", + "data": { + "root": "packages/react-components/react-image", + "sourceRoot": "packages/react-components/react-image/src", + "name": "@fluentui/react-image", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-component-ref": { + "name": "@fluentui/react-component-ref", + "type": "lib", + "data": { + "root": "packages/fluentui/react-component-ref", + "sourceRoot": "packages/fluentui/react-component-ref", + "name": "@fluentui/react-component-ref", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "build:info": { + "executor": "nx:run-script", + "options": { + "script": "build:info" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/jest-serializer-merge-styles": { + "name": "@fluentui/jest-serializer-merge-styles", + "type": "lib", + "data": { + "root": "packages/jest-serializer-merge-styles", + "sourceRoot": "packages/jest-serializer-merge-styles/src", + "name": "@fluentui/jest-serializer-merge-styles", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8", "platform:node"] + } + }, + "@fluentui/react-radio": { + "name": "@fluentui/react-radio", + "type": "lib", + "data": { + "root": "packages/react-components/react-radio", + "sourceRoot": "packages/react-components/react-radio/src", + "name": "@fluentui/react-radio", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-text": { + "name": "@fluentui/react-text", + "type": "lib", + "data": { + "root": "packages/react-components/react-text", + "sourceRoot": "packages/react-components/react-text/src", + "name": "@fluentui/react-text", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "verify-packaging": { + "executor": "nx:run-script", + "options": { + "script": "verify-packaging" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-menu": { + "name": "@fluentui/react-menu", + "type": "lib", + "data": { + "root": "packages/react-components/react-menu", + "sourceRoot": "packages/react-components/react-menu/src", + "name": "@fluentui/react-menu", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-aria": { + "name": "@fluentui/react-aria", + "type": "lib", + "data": { + "root": "packages/react-components/react-aria", + "sourceRoot": "packages/react-components/react-aria/src", + "name": "@fluentui/react-aria", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-tree": { + "name": "@fluentui/react-tree", + "type": "lib", + "data": { + "root": "packages/react-components/react-tree", + "sourceRoot": "packages/react-components/react-tree/src", + "name": "@fluentui/react-tree", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:web", "vNext"], + "implicitDependencies": [] + } + }, + "@fluentui/ability-attributes": { + "name": "@fluentui/ability-attributes", + "type": "lib", + "data": { + "root": "packages/fluentui/ability-attributes", + "sourceRoot": "packages/fluentui/ability-attributes", + "name": "@fluentui/ability-attributes", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "schema": { + "executor": "nx:run-script", + "options": { + "script": "schema" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-tags": { + "name": "@fluentui/react-tags", + "type": "lib", + "data": { + "root": "packages/react-components/react-tags", + "sourceRoot": "packages/react-components/react-tags/src", + "name": "@fluentui/react-tags", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/react-tabs": { + "name": "@fluentui/react-tabs", + "type": "lib", + "data": { + "root": "packages/react-components/react-tabs", + "sourceRoot": "packages/react-components/react-tabs/src", + "name": "@fluentui/react-tabs", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/ts-minbar-test-react-components": { + "name": "@fluentui/ts-minbar-test-react-components", + "type": "app", + "data": { + "root": "apps/ts-minbar-test-react-components", + "sourceRoot": "apps/ts-minbar-test-react-components", + "name": "@fluentui/ts-minbar-test-react-components", + "projectType": "application", + "targets": { + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-link": { + "name": "@fluentui/react-link", + "type": "lib", + "data": { + "root": "packages/react-components/react-link", + "sourceRoot": "packages/react-components/react-link/src", + "name": "@fluentui/react-link", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/react-card": { + "name": "@fluentui/react-card", + "type": "lib", + "data": { + "root": "packages/react-components/react-card", + "sourceRoot": "packages/react-components/react-card/src", + "name": "@fluentui/react-card", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle-size": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "tags": ["vNext", "platform:web"], + "implicitDependencies": [] + } + }, + "@fluentui/docs-components": { + "name": "@fluentui/docs-components", + "type": "lib", + "data": { + "root": "packages/fluentui/docs-components", + "sourceRoot": "packages/fluentui/docs-components", + "name": "@fluentui/docs-components", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-icons-mdl2-branded": { + "name": "@fluentui/react-icons-mdl2-branded", + "type": "lib", + "data": { + "root": "packages/react-icons-mdl2-branded", + "sourceRoot": "packages/react-icons-mdl2-branded", + "name": "@fluentui/react-icons-mdl2-branded", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-docsite-components": { + "name": "@fluentui/react-docsite-components", + "type": "lib", + "data": { + "root": "packages/react-docsite-components", + "sourceRoot": "packages/react-docsite-components/src", + "name": "@fluentui/react-docsite-components", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/react-proptypes": { + "name": "@fluentui/react-proptypes", + "type": "lib", + "data": { + "root": "packages/fluentui/react-proptypes", + "sourceRoot": "packages/fluentui/react-proptypes", + "name": "@fluentui/react-proptypes", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-telemetry": { + "name": "@fluentui/react-telemetry", + "type": "lib", + "data": { + "root": "packages/fluentui/react-telemetry", + "sourceRoot": "packages/fluentui/react-telemetry", + "name": "@fluentui/react-telemetry", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-northstar": { + "name": "@fluentui/react-northstar", + "type": "lib", + "data": { + "root": "packages/fluentui/react-northstar", + "sourceRoot": "packages/fluentui/react-northstar", + "name": "@fluentui/react-northstar", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "build:info": { + "executor": "nx:run-script", + "options": { + "script": "build:info" + }, + "configurations": {} + }, + "bundle-size-auditor": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size-auditor" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-bindings": { + "name": "@fluentui/react-bindings", + "type": "lib", + "data": { + "root": "packages/fluentui/react-bindings", + "sourceRoot": "packages/fluentui/react-bindings", + "name": "@fluentui/react-bindings", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "build:info": { + "executor": "nx:run-script", + "options": { + "script": "build:info" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/circulars-test": { + "name": "@fluentui/circulars-test", + "type": "app", + "data": { + "root": "packages/fluentui/circulars-test", + "sourceRoot": "packages/fluentui/circulars-test", + "name": "@fluentui/circulars-test", + "projectType": "application", + "targets": { + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/accessibility": { + "name": "@fluentui/accessibility", + "type": "lib", + "data": { + "root": "packages/fluentui/accessibility", + "sourceRoot": "packages/fluentui/accessibility", + "name": "@fluentui/accessibility", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/local-sandbox": { + "name": "@fluentui/local-sandbox", + "type": "app", + "data": { + "root": "packages/fluentui/local-sandbox", + "sourceRoot": "packages/fluentui/local-sandbox", + "name": "@fluentui/local-sandbox", + "projectType": "application", + "targets": { + "build:withdependencies": { + "executor": "nx:run-script", + "options": { + "script": "build:withdependencies" + }, + "configurations": {} + }, + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "build:production": { + "executor": "nx:run-script", + "options": { + "script": "build:production" + }, + "configurations": {} + }, + "serve": { + "executor": "nx:run-script", + "options": { + "script": "serve" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/perf-test-react-components": { + "name": "@fluentui/perf-test-react-components", + "type": "app", + "data": { + "root": "apps/perf-test-react-components", + "sourceRoot": "apps/perf-test-react-components", + "name": "@fluentui/perf-test-react-components", + "projectType": "application", + "targets": { + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "test:perf": { + "executor": "nx:run-script", + "options": { + "script": "test:perf" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-builder": { + "name": "@fluentui/react-builder", + "type": "lib", + "data": { + "root": "packages/fluentui/react-builder", + "sourceRoot": "packages/fluentui/react-builder", + "name": "@fluentui/react-builder", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/projects-test": { + "name": "@fluentui/projects-test", + "type": "app", + "data": { + "root": "packages/fluentui/projects-test", + "sourceRoot": "packages/fluentui/projects-test", + "name": "@fluentui/projects-test", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/react-file-type-icons": { + "name": "@fluentui/react-file-type-icons", + "type": "lib", + "data": { + "root": "packages/react-file-type-icons", + "sourceRoot": "packages/react-file-type-icons/src", + "name": "@fluentui/react-file-type-icons", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/vr-tests-react-components": { + "name": "@fluentui/vr-tests-react-components", + "type": "app", + "data": { + "root": "apps/vr-tests-react-components", + "sourceRoot": "apps/vr-tests-react-components", + "name": "@fluentui/vr-tests-react-components", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "vr:build": { + "executor": "nx:run-script", + "options": { + "script": "vr:build" + }, + "configurations": {} + }, + "vr:test": { + "executor": "nx:run-script", + "options": { + "script": "vr:test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext"] + } + }, + "@fluentui/react-window-provider": { + "name": "@fluentui/react-window-provider", + "type": "lib", + "data": { + "root": "packages/react-window-provider", + "sourceRoot": "packages/react-window-provider", + "name": "@fluentui/react-window-provider", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/code-sandbox": { + "name": "@fluentui/code-sandbox", + "type": "lib", + "data": { + "root": "packages/fluentui/code-sandbox", + "sourceRoot": "packages/fluentui/code-sandbox", + "name": "@fluentui/code-sandbox", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/public-docsite-setup": { + "name": "@fluentui/public-docsite-setup", + "type": "lib", + "data": { + "root": "packages/public-docsite-setup", + "sourceRoot": "packages/public-docsite-setup", + "name": "@fluentui/public-docsite-setup", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/recipes-react-components": { + "name": "@fluentui/recipes-react-components", + "type": "app", + "data": { + "root": "apps/recipes-react-components", + "sourceRoot": "apps/recipes-react-components/src", + "name": "@fluentui/recipes-react-components", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext"] + } + }, + "@fluentui/public-docsite-resources": { + "name": "@fluentui/public-docsite-resources", + "type": "app", + "data": { + "root": "apps/public-docsite-resources", + "sourceRoot": "apps/public-docsite-resources", + "name": "@fluentui/public-docsite-resources", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/scripts-update-release-notes": { + "name": "@fluentui/scripts-update-release-notes", + "type": "lib", + "data": { + "root": "scripts/update-release-notes", + "sourceRoot": "scripts/update-release-notes", + "name": "@fluentui/scripts-update-release-notes", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/react-monaco-editor": { + "name": "@fluentui/react-monaco-editor", + "type": "lib", + "data": { + "root": "packages/react-monaco-editor", + "sourceRoot": "packages/react-monaco-editor", + "name": "@fluentui/react-monaco-editor", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-icon-provider": { + "name": "@fluentui/react-icon-provider", + "type": "lib", + "data": { + "root": "packages/react-icon-provider", + "sourceRoot": "packages/react-icon-provider", + "name": "@fluentui/react-icon-provider", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/scripts-perf-test-flamegrill": { + "name": "@fluentui/scripts-perf-test-flamegrill", + "type": "lib", + "data": { + "root": "scripts/perf-test-flamegrill", + "sourceRoot": "scripts/perf-test-flamegrill/src", + "name": "@fluentui/scripts-perf-test-flamegrill", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools", "platform:any"], + "implicitDependencies": [] + } + }, + "@fluentui/date-time-utilities": { + "name": "@fluentui/date-time-utilities", + "type": "lib", + "data": { + "root": "packages/date-time-utilities", + "sourceRoot": "packages/date-time-utilities/src", + "name": "@fluentui/date-time-utilities", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/scripts-bundle-size-auditor": { + "name": "@fluentui/scripts-bundle-size-auditor", + "type": "lib", + "data": { + "root": "scripts/bundle-size-auditor", + "sourceRoot": "scripts/bundle-size-auditor/src", + "name": "@fluentui/scripts-bundle-size-auditor", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/react-experiments": { + "name": "@fluentui/react-experiments", + "type": "lib", + "data": { + "root": "packages/react-experiments", + "sourceRoot": "packages/react-experiments/src", + "name": "@fluentui/react-experiments", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "start:legacy": { + "executor": "nx:run-script", + "options": { + "script": "start:legacy" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/webpack-utilities": { + "name": "@fluentui/webpack-utilities", + "type": "lib", + "data": { + "root": "packages/webpack-utilities", + "sourceRoot": "packages/webpack-utilities/src", + "name": "@fluentui/webpack-utilities", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8", "platform:node"] + } + }, + "@fluentui/react-conformance": { + "name": "@fluentui/react-conformance", + "type": "lib", + "data": { + "root": "packages/react-conformance", + "sourceRoot": "packages/react-conformance/src", + "name": "@fluentui/react-conformance", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:node"] + } + }, + "@fluentui/foundation-legacy": { + "name": "@fluentui/foundation-legacy", + "type": "lib", + "data": { + "root": "packages/foundation-legacy", + "sourceRoot": "packages/foundation-legacy/src", + "name": "@fluentui/foundation-legacy", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/scheme-utilities": { + "name": "@fluentui/scheme-utilities", + "type": "lib", + "data": { + "root": "packages/scheme-utilities", + "sourceRoot": "packages/scheme-utilities/src", + "name": "@fluentui/scheme-utilities", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/ts-minbar-test-react": { + "name": "@fluentui/ts-minbar-test-react", + "type": "app", + "data": { + "root": "apps/ts-minbar-test-react", + "sourceRoot": "apps/ts-minbar-test-react", + "name": "@fluentui/ts-minbar-test-react", + "projectType": "application", + "targets": { + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-icons-mdl2": { + "name": "@fluentui/react-icons-mdl2", + "type": "lib", + "data": { + "root": "packages/react-icons-mdl2", + "sourceRoot": "packages/react-icons-mdl2", + "name": "@fluentui/react-icons-mdl2", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-date-time": { + "name": "@fluentui/react-date-time", + "type": "lib", + "data": { + "root": "packages/react-date-time", + "sourceRoot": "packages/react-date-time/src", + "name": "@fluentui/react-date-time", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/scripts-fluentui-publish": { + "name": "@fluentui/scripts-fluentui-publish", + "type": "lib", + "data": { + "root": "scripts/fluentui-publish", + "sourceRoot": "scripts/fluentui-publish", + "name": "@fluentui/scripts-fluentui-publish", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/style-utilities": { + "name": "@fluentui/style-utilities", + "type": "lib", + "data": { + "root": "packages/style-utilities", + "sourceRoot": "packages/style-utilities/src", + "name": "@fluentui/style-utilities", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/digest": { + "name": "@fluentui/digest", + "type": "lib", + "data": { + "root": "packages/fluentui/digest", + "sourceRoot": "packages/fluentui/digest", + "name": "@fluentui/digest", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/styles": { + "name": "@fluentui/styles", + "type": "lib", + "data": { + "root": "packages/fluentui/styles", + "sourceRoot": "packages/fluentui/styles", + "name": "@fluentui/styles", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/font-icons-mdl2": { + "name": "@fluentui/font-icons-mdl2", + "type": "lib", + "data": { + "root": "packages/font-icons-mdl2", + "sourceRoot": "packages/font-icons-mdl2/src", + "name": "@fluentui/font-icons-mdl2", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/web-components": { + "name": "@fluentui/web-components", + "type": "lib", + "data": { + "root": "packages/web-components", + "sourceRoot": "packages/web-components", + "name": "@fluentui/web-components", + "projectType": "library", + "targets": { + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "doc": { + "executor": "nx:run-script", + "options": { + "script": "doc" + }, + "configurations": {} + }, + "doc:ci": { + "executor": "nx:run-script", + "options": { + "script": "doc:ci" + }, + "configurations": {} + }, + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "dev": { + "executor": "nx:run-script", + "options": { + "script": "dev" + }, + "configurations": {} + }, + "tdd": { + "executor": "nx:run-script", + "options": { + "script": "tdd" + }, + "configurations": {} + }, + "prepare": { + "dependsOn": ["^prepare"], + "executor": "nx:run-script", + "options": { + "script": "prepare" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "start-storybook": { + "executor": "nx:run-script", + "options": { + "script": "start-storybook" + }, + "configurations": {} + }, + "build-storybook": { + "executor": "nx:run-script", + "options": { + "script": "build-storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-node": { + "executor": "nx:run-script", + "options": { + "script": "test-node" + }, + "configurations": {} + }, + "test-node:verbose": { + "executor": "nx:run-script", + "options": { + "script": "test-node:verbose" + }, + "configurations": {} + }, + "test-chrome": { + "executor": "nx:run-script", + "options": { + "script": "test-chrome" + }, + "configurations": {} + }, + "test-chrome:verbose": { + "executor": "nx:run-script", + "options": { + "script": "test-chrome:verbose" + }, + "configurations": {} + }, + "test-chrome:watch": { + "executor": "nx:run-script", + "options": { + "script": "test-chrome:watch" + }, + "configurations": {} + }, + "test-chrome:debugger": { + "executor": "nx:run-script", + "options": { + "script": "test-chrome:debugger" + }, + "configurations": {} + }, + "test-chrome:verbose:watch": { + "executor": "nx:run-script", + "options": { + "script": "test-chrome:verbose:watch" + }, + "configurations": {} + }, + "test-chrome:verbose:debugger": { + "executor": "nx:run-script", + "options": { + "script": "test-chrome:verbose:debugger" + }, + "configurations": {} + }, + "test-firefox": { + "executor": "nx:run-script", + "options": { + "script": "test-firefox" + }, + "configurations": {} + }, + "test-firefox:verbose": { + "executor": "nx:run-script", + "options": { + "script": "test-firefox:verbose" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-charting": { + "name": "@fluentui/react-charting", + "type": "lib", + "data": { + "root": "packages/react-charting", + "sourceRoot": "packages/react-charting", + "name": "@fluentui/react-charting", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "codepen": { + "executor": "nx:run-script", + "options": { + "script": "codepen" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "start:legacy": { + "executor": "nx:run-script", + "options": { + "script": "start:legacy" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-examples": { + "name": "@fluentui/react-examples", + "type": "lib", + "data": { + "root": "packages/react-examples", + "sourceRoot": "packages/react-examples/src", + "name": "@fluentui/react-examples", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/test-utilities": { + "name": "@fluentui/test-utilities", + "type": "lib", + "data": { + "root": "packages/test-utilities", + "sourceRoot": "packages/test-utilities/src", + "name": "@fluentui/test-utilities", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8", "platform:node"] + } + }, + "@fluentui/scripts-package-manager": { + "name": "@fluentui/scripts-package-manager", + "type": "lib", + "data": { + "root": "scripts/package-manager", + "sourceRoot": "scripts/package-manager", + "name": "@fluentui/scripts-package-manager", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/state": { + "name": "@fluentui/state", + "type": "lib", + "data": { + "root": "packages/fluentui/state", + "sourceRoot": "packages/fluentui/state", + "name": "@fluentui/state", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "test:watch": { + "executor": "nx:run-script", + "options": { + "script": "test:watch" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/common-styles": { + "name": "@fluentui/common-styles", + "type": "lib", + "data": { + "root": "packages/common-styles", + "sourceRoot": "packages/common-styles", + "name": "@fluentui/common-styles", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "update-sass-theme-files": { + "executor": "nx:run-script", + "options": { + "script": "update-sass-theme-files" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/theme-samples": { + "name": "@fluentui/theme-samples", + "type": "lib", + "data": { + "root": "packages/theme-samples", + "sourceRoot": "packages/theme-samples/src", + "name": "@fluentui/theme-samples", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/eslint-plugin": { + "name": "@fluentui/eslint-plugin", + "type": "lib", + "data": { + "root": "packages/eslint-plugin", + "sourceRoot": "packages/eslint-plugin", + "name": "@fluentui/eslint-plugin", + "projectType": "library", + "targets": { + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/perf": { + "name": "@fluentui/perf", + "type": "app", + "data": { + "root": "packages/fluentui/perf", + "sourceRoot": "packages/fluentui/perf", + "name": "@fluentui/perf", + "projectType": "application", + "targets": { + "perf:test": { + "executor": "nx:run-script", + "options": { + "script": "perf:test" + }, + "configurations": {} + }, + "perf:test:debug": { + "executor": "nx:run-script", + "options": { + "script": "perf:test:debug" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/docs": { + "name": "@fluentui/docs", + "type": "app", + "data": { + "root": "packages/fluentui/docs", + "sourceRoot": "packages/fluentui/docs", + "name": "@fluentui/docs", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "prebuild:storybook": { + "executor": "nx:run-script", + "options": { + "script": "prebuild:storybook" + }, + "configurations": {} + }, + "build:storybook": { + "executor": "nx:run-script", + "options": { + "script": "build:storybook" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "start:profile": { + "executor": "nx:run-script", + "options": { + "script": "start:profile" + }, + "configurations": {} + }, + "prestart:storybook": { + "executor": "nx:run-script", + "options": { + "script": "prestart:storybook" + }, + "configurations": {} + }, + "start:storybook": { + "executor": "nx:run-script", + "options": { + "script": "start:storybook" + }, + "configurations": {} + }, + "vr:build": { + "executor": "nx:run-script", + "options": { + "script": "vr:build" + }, + "configurations": {} + }, + "vr:test": { + "executor": "nx:run-script", + "options": { + "script": "vr:test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/monaco-editor": { + "name": "@fluentui/monaco-editor", + "type": "lib", + "data": { + "root": "packages/monaco-editor", + "sourceRoot": "packages/monaco-editor", + "name": "@fluentui/monaco-editor", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/dom-utilities": { + "name": "@fluentui/dom-utilities", + "type": "lib", + "data": { + "root": "packages/dom-utilities", + "sourceRoot": "packages/dom-utilities", + "name": "@fluentui/dom-utilities", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/public-docsite-v9": { + "name": "@fluentui/public-docsite-v9", + "type": "app", + "data": { + "root": "apps/public-docsite-v9", + "sourceRoot": "apps/public-docsite-v9", + "name": "@fluentui/public-docsite-v9", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "build-storybook": { + "executor": "nx:run-script", + "options": { + "script": "build-storybook" + }, + "configurations": {} + }, + "chromatic:branch": { + "executor": "nx:run-script", + "options": { + "script": "chromatic:branch" + }, + "configurations": {} + }, + "chromatic": { + "executor": "nx:run-script", + "options": { + "script": "chromatic" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "storybook:docs": { + "executor": "nx:run-script", + "options": { + "script": "storybook:docs" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["platform:web", "vNext"] + } + }, + "@fluentui/workspace-plugin": { + "name": "@fluentui/workspace-plugin", + "type": "lib", + "data": { + "root": "tools/workspace-plugin", + "sourceRoot": "tools/workspace-plugin/src", + "name": "@fluentui/workspace-plugin", + "projectType": "library", + "targets": { + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "@nx/jest:jest", + "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], + "options": { + "jestConfig": "tools/workspace-plugin/jest.config.ts", + "passWithNoTests": true + }, + "configurations": { + "ci": { + "ci": true, + "codeCoverage": true + } + } + }, + "type-check": { + "executor": "nx:run-commands", + "options": { + "command": "tsc -b tools/workspace-plugin/tsconfig.json" + }, + "configurations": {} + }, + "lint": { + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "tools/workspace-plugin/**/*.ts", + "tools/workspace-plugin/package.json", + "tools/workspace-plugin/generators.json" + ] + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + }, + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "@nx/js:tsc", + "outputs": ["{options.outputPath}"], + "options": { + "outputPath": "dist/tools/workspace-plugin", + "main": "tools/workspace-plugin/src/index.ts", + "tsConfig": "tools/workspace-plugin/tsconfig.lib.json", + "assets": [ + { + "input": "./tools/workspace-plugin/src", + "glob": "**/!(*.ts)", + "output": "./src" + }, + { + "input": "./tools/workspace-plugin/src", + "glob": "**/*.d.ts", + "output": "./src" + }, + { + "input": "./tools/workspace-plugin", + "glob": "generators.json", + "output": "." + }, + { + "input": "./tools/workspace-plugin", + "glob": "executors.json", + "output": "." + } + ], + "updateBuildableProjectDepsInPackageJson": true + }, + "configurations": {} + }, + "lint-old": { + "executor": "nx:run-commands", + "options": { + "command": "eslint tools/workspace-plugin/**/*.ts" + }, + "configurations": {} + }, + "check-graph": { + "executor": "nx:run-commands", + "options": { + "command": "node ./tools/workspace-plugin/scripts/check-dep-graph.js" + }, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:node", "tools"], + "implicitDependencies": [] + } + }, + "@fluentui/fluent2-theme": { + "name": "@fluentui/fluent2-theme", + "type": "lib", + "data": { + "root": "packages/fluent2-theme", + "sourceRoot": "packages/fluent2-theme/src", + "name": "@fluentui/fluent2-theme", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/react-18-tests-v9": { + "name": "@fluentui/react-18-tests-v9", + "type": "app", + "data": { + "root": "apps/react-18-tests-v9", + "sourceRoot": "apps/react-18-tests-v9", + "name": "@fluentui/react-18-tests-v9", + "projectType": "application", + "targets": { + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-18-tests-v8": { + "name": "@fluentui/react-18-tests-v8", + "type": "app", + "data": { + "root": "apps/react-18-tests-v8", + "sourceRoot": "apps/react-18-tests-v8", + "name": "@fluentui/react-18-tests-v8", + "projectType": "application", + "targets": { + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/azure-themes": { + "name": "@fluentui/azure-themes", + "type": "lib", + "data": { + "root": "packages/azure-themes", + "sourceRoot": "packages/azure-themes/src", + "name": "@fluentui/azure-themes", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/e2e": { + "name": "@fluentui/e2e", + "type": "app", + "data": { + "root": "packages/fluentui/e2e", + "sourceRoot": "packages/fluentui/e2e", + "name": "@fluentui/e2e", + "projectType": "application", + "targets": { + "serve": { + "executor": "nx:run-script", + "options": { + "script": "serve" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "lint:fix": { + "executor": "nx:run-script", + "options": { + "script": "lint:fix" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["react-northstar"] + } + }, + "@fluentui/theming-designer": { + "name": "@fluentui/theming-designer", + "type": "app", + "data": { + "root": "apps/theming-designer", + "sourceRoot": "apps/theming-designer", + "name": "@fluentui/theming-designer", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/merge-styles": { + "name": "@fluentui/merge-styles", + "type": "lib", + "data": { + "root": "packages/merge-styles", + "sourceRoot": "packages/merge-styles/src", + "name": "@fluentui/merge-styles", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/keyboard-key": { + "name": "@fluentui/keyboard-key", + "type": "lib", + "data": { + "root": "packages/keyboard-key", + "sourceRoot": "packages/keyboard-key", + "name": "@fluentui/keyboard-key", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/scripts-api-extractor": { + "name": "@fluentui/scripts-api-extractor", + "type": "lib", + "data": { + "root": "scripts/api-extractor", + "sourceRoot": "scripts/api-extractor", + "name": "@fluentui/scripts-api-extractor", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/cra-template": { + "name": "@fluentui/cra-template", + "type": "lib", + "data": { + "root": "packages/cra-template", + "sourceRoot": "packages/cra-template/src", + "name": "@fluentui/cra-template", + "projectType": "library", + "targets": { + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/example-data": { + "name": "@fluentui/example-data", + "type": "lib", + "data": { + "root": "packages/example-data", + "sourceRoot": "packages/example-data/src", + "name": "@fluentui/example-data", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/a11y-testing": { + "name": "@fluentui/a11y-testing", + "type": "lib", + "data": { + "root": "packages/a11y-testing", + "sourceRoot": "packages/a11y-testing", + "name": "@fluentui/a11y-testing", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["platform:node"] + } + }, + "@fluentui/scripts-projects-test": { + "name": "@fluentui/scripts-projects-test", + "type": "lib", + "data": { + "root": "scripts/projects-test", + "sourceRoot": "scripts/projects-test/src", + "name": "@fluentui/scripts-projects-test", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/set-version": { + "name": "@fluentui/set-version", + "type": "lib", + "data": { + "root": "packages/set-version", + "sourceRoot": "packages/set-version/src", + "name": "@fluentui/set-version", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/react-hooks": { + "name": "@fluentui/react-hooks", + "type": "lib", + "data": { + "root": "packages/react-hooks", + "sourceRoot": "packages/react-hooks/src", + "name": "@fluentui/react-hooks", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/react-cards": { + "name": "@fluentui/react-cards", + "type": "lib", + "data": { + "root": "packages/react-cards", + "sourceRoot": "packages/react-cards", + "name": "@fluentui/react-cards", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/react-focus": { + "name": "@fluentui/react-focus", + "type": "lib", + "data": { + "root": "packages/react-focus", + "sourceRoot": "packages/react-focus/src", + "name": "@fluentui/react-focus", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/scripts-lint-staged": { + "name": "@fluentui/scripts-lint-staged", + "type": "lib", + "data": { + "root": "scripts/lint-staged", + "sourceRoot": "scripts/lint-staged", + "name": "@fluentui/scripts-lint-staged", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/pr-deploy-site": { + "name": "@fluentui/pr-deploy-site", + "type": "app", + "data": { + "root": "apps/pr-deploy-site", + "sourceRoot": "apps/pr-deploy-site", + "name": "@fluentui/pr-deploy-site", + "projectType": "application", + "targets": { + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "generate:site": { + "executor": "nx:run-script", + "options": { + "script": "generate:site" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/public-docsite": { + "name": "@fluentui/public-docsite", + "type": "app", + "data": { + "root": "apps/public-docsite", + "sourceRoot": "apps/public-docsite", + "name": "@fluentui/public-docsite", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/utilities": { + "name": "@fluentui/utilities", + "type": "lib", + "data": { + "root": "packages/utilities", + "sourceRoot": "packages/utilities/src", + "name": "@fluentui/utilities", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "verify-packaging": { + "executor": "nx:run-script", + "options": { + "script": "verify-packaging" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/scripts-triage-bot": { + "name": "@fluentui/scripts-triage-bot", + "type": "lib", + "data": { + "root": "scripts/triage-bot", + "sourceRoot": "scripts/triage-bot/src", + "name": "@fluentui/scripts-triage-bot", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/storybook": { + "name": "@fluentui/storybook", + "type": "lib", + "data": { + "root": "packages/storybook", + "sourceRoot": "packages/storybook", + "name": "@fluentui/storybook", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8", "platform:web"] + } + }, + "@fluentui/scripts-generators": { + "name": "@fluentui/scripts-generators", + "type": "lib", + "data": { + "root": "scripts/generators", + "sourceRoot": "scripts/generators", + "name": "@fluentui/scripts-generators", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-beachball": { + "name": "@fluentui/scripts-beachball", + "type": "lib", + "data": { + "root": "scripts/beachball", + "sourceRoot": "scripts/beachball", + "name": "@fluentui/scripts-beachball", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-storybook": { + "name": "@fluentui/scripts-storybook", + "type": "lib", + "data": { + "root": "scripts/storybook", + "sourceRoot": "scripts/storybook/src", + "name": "@fluentui/scripts-storybook", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/codemods": { + "name": "@fluentui/codemods", + "type": "lib", + "data": { + "root": "packages/codemods", + "sourceRoot": "packages/codemods/src", + "name": "@fluentui/codemods", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8", "platform:node"] + } + }, + "@fluentui/ssr-tests-v9": { + "name": "@fluentui/ssr-tests-v9", + "type": "app", + "data": { + "root": "apps/ssr-tests-v9", + "sourceRoot": "apps/ssr-tests-v9/src", + "name": "@fluentui/ssr-tests-v9", + "projectType": "application", + "targets": { + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "storybook": { + "executor": "nx:run-script", + "options": { + "script": "storybook" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "test-ssr": { + "executor": "nx:run-script", + "options": { + "script": "test-ssr" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:node"] + } + }, + "@fluentui/api-docs": { + "name": "@fluentui/api-docs", + "type": "lib", + "data": { + "root": "packages/api-docs", + "sourceRoot": "packages/api-docs/src", + "name": "@fluentui/api-docs", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8", "platform:node"] + } + }, + "@fluentui/scripts-executors": { + "name": "@fluentui/scripts-executors", + "type": "lib", + "data": { + "root": "scripts/executors", + "sourceRoot": "scripts/executors", + "name": "@fluentui/scripts-executors", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-puppeteer": { + "name": "@fluentui/scripts-puppeteer", + "type": "lib", + "data": { + "root": "scripts/puppeteer", + "sourceRoot": "scripts/puppeteer/src", + "name": "@fluentui/scripts-puppeteer", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-prettier": { + "name": "@fluentui/scripts-prettier", + "type": "lib", + "data": { + "root": "scripts/prettier", + "sourceRoot": "scripts/prettier/src", + "name": "@fluentui/scripts-prettier", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-dangerjs": { + "name": "@fluentui/scripts-dangerjs", + "type": "lib", + "data": { + "root": "scripts/dangerjs", + "sourceRoot": "scripts/dangerjs/src", + "name": "@fluentui/scripts-dangerjs", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-test-ssr": { + "name": "@fluentui/scripts-test-ssr", + "type": "lib", + "data": { + "root": "scripts/test-ssr", + "sourceRoot": "scripts/test-ssr/src", + "name": "@fluentui/scripts-test-ssr", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-monorepo": { + "name": "@fluentui/scripts-monorepo", + "type": "lib", + "data": { + "root": "scripts/monorepo", + "sourceRoot": "scripts/monorepo/src", + "name": "@fluentui/scripts-monorepo", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/stress-test": { + "name": "@fluentui/stress-test", + "type": "app", + "data": { + "root": "apps/stress-test", + "sourceRoot": "apps/stress-test", + "name": "@fluentui/stress-test", + "projectType": "application", + "targets": { + "stress-test": { + "executor": "nx:run-script", + "options": { + "script": "stress-test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/scripts-cypress": { + "name": "@fluentui/scripts-cypress", + "type": "lib", + "data": { + "root": "scripts/cypress", + "sourceRoot": "scripts/cypress/src", + "name": "@fluentui/scripts-cypress", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-webpack": { + "name": "@fluentui/scripts-webpack", + "type": "lib", + "data": { + "root": "scripts/webpack", + "sourceRoot": "scripts/webpack/src", + "name": "@fluentui/scripts-webpack", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/tokens": { + "name": "@fluentui/tokens", + "type": "lib", + "data": { + "root": "packages/tokens", + "sourceRoot": "packages/tokens/src", + "name": "@fluentui/tokens", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "token-pipeline": { + "executor": "nx:run-script", + "options": { + "script": "token-pipeline" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "generate-api": { + "executor": "nx:run-script", + "options": { + "script": "generate-api" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["vNext", "platform:web"] + } + }, + "@fluentui/scripts-ts-node": { + "name": "@fluentui/scripts-ts-node", + "type": "lib", + "data": { + "root": "scripts/ts-node", + "sourceRoot": "scripts/ts-node", + "name": "@fluentui/scripts-ts-node", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/perf-test": { + "name": "@fluentui/perf-test", + "type": "app", + "data": { + "root": "apps/perf-test", + "sourceRoot": "apps/perf-test", + "name": "@fluentui/perf-test", + "projectType": "application", + "targets": { + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "test:perf": { + "executor": "nx:run-script", + "options": { + "script": "test:perf" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/theme": { + "name": "@fluentui/theme", + "type": "lib", + "data": { + "root": "packages/theme", + "sourceRoot": "packages/theme", + "name": "@fluentui/theme", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/scripts-github": { + "name": "@fluentui/scripts-github", + "type": "lib", + "data": { + "root": "scripts/github", + "sourceRoot": "scripts/github/src", + "name": "@fluentui/scripts-github", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/react": { + "name": "@fluentui/react", + "type": "lib", + "data": { + "root": "packages/react", + "sourceRoot": "packages/react/src", + "name": "@fluentui/react", + "projectType": "library", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "bundle-size-auditor": { + "executor": "nx:run-script", + "options": { + "script": "bundle-size-auditor" + }, + "configurations": {} + }, + "build-storybook": { + "executor": "nx:run-script", + "options": { + "script": "build-storybook" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "codepen": { + "executor": "nx:run-script", + "options": { + "script": "codepen" + }, + "configurations": {} + }, + "e2e": { + "executor": "nx:run-script", + "options": { + "script": "e2e" + }, + "configurations": {} + }, + "e2e:local": { + "executor": "nx:run-script", + "options": { + "script": "e2e:local" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "start:legacy": { + "executor": "nx:run-script", + "options": { + "script": "start:legacy" + }, + "configurations": {} + }, + "start-test": { + "executor": "nx:run-script", + "options": { + "script": "start-test" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "update-snapshots": { + "executor": "nx:run-script", + "options": { + "script": "update-snapshots" + }, + "configurations": {} + }, + "mf": { + "executor": "nx:run-script", + "options": { + "script": "mf" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": ["v8"] + } + }, + "@fluentui/ssr-tests": { + "name": "@fluentui/ssr-tests", + "type": "app", + "data": { + "root": "apps/ssr-tests", + "sourceRoot": "apps/ssr-tests", + "name": "@fluentui/ssr-tests", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "bundle": { + "executor": "nx:run-script", + "options": { + "script": "bundle" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/vr-tests": { + "name": "@fluentui/vr-tests", + "type": "app", + "data": { + "root": "apps/vr-tests", + "sourceRoot": "apps/vr-tests", + "name": "@fluentui/vr-tests", + "projectType": "application", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "code-style": { + "executor": "nx:run-script", + "options": { + "script": "code-style" + }, + "configurations": {} + }, + "just": { + "executor": "nx:run-script", + "options": { + "script": "just" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "vr:build": { + "executor": "nx:run-script", + "options": { + "script": "vr:build" + }, + "configurations": {} + }, + "vr:test": { + "executor": "nx:run-script", + "options": { + "script": "vr:test" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "implicitDependencies": [], + "tags": [] + } + }, + "@fluentui/scripts-utils": { + "name": "@fluentui/scripts-utils", + "type": "lib", + "data": { + "root": "scripts/utils", + "sourceRoot": "scripts/utils/src", + "name": "@fluentui/scripts-utils", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-tasks": { + "name": "@fluentui/scripts-tasks", + "type": "lib", + "data": { + "root": "scripts/tasks", + "sourceRoot": "scripts/tasks/src", + "name": "@fluentui/scripts-tasks", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-babel": { + "name": "@fluentui/scripts-babel", + "type": "lib", + "data": { + "root": "scripts/babel", + "sourceRoot": "scripts/babel", + "name": "@fluentui/scripts-babel", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-jest": { + "name": "@fluentui/scripts-jest", + "type": "lib", + "data": { + "root": "scripts/jest", + "sourceRoot": "scripts/jest/src", + "name": "@fluentui/scripts-jest", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/scripts-gulp": { + "name": "@fluentui/scripts-gulp", + "type": "lib", + "data": { + "root": "scripts/gulp", + "sourceRoot": "scripts/gulp/src", + "name": "@fluentui/scripts-gulp", + "projectType": "library", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "format:check": { + "executor": "nx:run-script", + "options": { + "script": "format:check" + }, + "configurations": {} + }, + "lint": { + "executor": "nx:run-script", + "options": { + "script": "lint" + }, + "configurations": {} + }, + "test": { + "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": ["tools"], + "implicitDependencies": [] + } + }, + "@fluentui/typings": { + "name": "@fluentui/typings", + "type": "lib", + "data": { + "root": "typings", + "sourceRoot": "typings", + "name": "@fluentui/typings", + "projectType": "library", + "targets": { + "type-check": { + "executor": "nx:run-script", + "options": { + "script": "type-check" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "$schema": "../node_modules/nx/schemas/project-schema.json", + "tags": ["platform:any"], + "implicitDependencies": [] + } + } + }, + "externalNodes": { + "npm:@types/color": { + "type": "npm", + "name": "npm:@types/color", + "data": { + "version": "3.0.1", + "packageName": "@types/color", + "hash": "sha512-oeUWVaAwI+xINDUx+3F2vJkl/vVB03VChFF/Gl3iQCdbcakjuoJyMOba+3BXRtnBhxZ7uBYqQBi9EpLnvSoztA==" + } + }, + "npm:camelize": { + "type": "npm", + "name": "npm:camelize", + "data": { + "version": "1.0.0", + "packageName": "camelize", + "hash": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + } + }, + "npm:arr-filter": { + "type": "npm", + "name": "npm:arr-filter", + "data": { + "version": "1.1.2", + "packageName": "arr-filter", + "hash": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=" + } + }, + "npm:add-stream": { + "type": "npm", + "name": "npm:add-stream", + "data": { + "version": "1.0.0", + "packageName": "add-stream", + "hash": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==" + } + }, + "npm:atob": { + "type": "npm", + "name": "npm:atob", + "data": { + "version": "2.1.2", + "packageName": "atob", + "hash": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + } + }, + "npm:estree-walker@1.0.1": { + "type": "npm", + "name": "npm:estree-walker@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "estree-walker", + "hash": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + } + }, + "npm:@babel/code-frame@7.12.11": { + "type": "npm", + "name": "npm:@babel/code-frame@7.12.11", + "data": { + "version": "7.12.11", + "packageName": "@babel/code-frame", + "hash": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==" + } + }, + "npm:glob@7.1.4": { + "type": "npm", + "name": "npm:glob@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "glob", + "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" + } + }, + "npm:braces@2.3.2": { + "type": "npm", + "name": "npm:braces@2.3.2", + "data": { + "version": "2.3.2", + "packageName": "braces", + "hash": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==" + } + }, + "npm:format": { + "type": "npm", + "name": "npm:format", + "data": { + "version": "0.2.2", + "packageName": "format", + "hash": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=" + } + }, + "npm:emoji-regex@7.0.3": { + "type": "npm", + "name": "npm:emoji-regex@7.0.3", + "data": { + "version": "7.0.3", + "packageName": "emoji-regex", + "hash": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + } + }, + "npm:indent-string@5.0.0": { + "type": "npm", + "name": "npm:indent-string@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "indent-string", + "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "1.1.6", + "packageName": "lines-and-columns", + "hash": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + } + }, + "npm:npmlog@5.0.1": { + "type": "npm", + "name": "npm:npmlog@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "npmlog", + "hash": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==" + } + }, + "npm:refractor": { + "type": "npm", + "name": "npm:refractor", + "data": { + "version": "2.9.0", + "packageName": "refractor", + "hash": "sha512-lCnCYvXpqd8hC7ksuvo516rz5q4NwzBbq0X5qjH5pxRfcQKiQxKZ8JctrSQmrR/7pcV2TRrs9TT+Whmq/wtluQ==" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "2.0.0", + "packageName": "responselike", + "hash": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==" + } + }, + "npm:split": { + "type": "npm", + "name": "npm:split", + "data": { + "version": "1.0.1", + "packageName": "split", + "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" + } + }, + "npm:@npmcli/installed-package-contents@1.0.7": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents@1.0.7", + "data": { + "version": "1.0.7", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==" + } + }, + "npm:escape-string-regexp@4.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:is-relative": { + "type": "npm", + "name": "npm:is-relative", + "data": { + "version": "1.0.0", + "packageName": "is-relative", + "hash": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "0.1.1", + "packageName": "dom-serializer", + "hash": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==" + } + }, + "npm:@microsoft/fast-web-utilities": { + "type": "npm", + "name": "npm:@microsoft/fast-web-utilities", + "data": { + "version": "5.4.1", + "packageName": "@microsoft/fast-web-utilities", + "hash": "sha512-ReWYncndjV3c8D8iq9tp7NcFNc1vbVHvcBFPME2nNFKNbS1XCesYZGlIlf3ot5EmuOXPlrzUHOWzQ2vFpIkqDg==" + } + }, + "npm:ansi-wrap": { + "type": "npm", + "name": "npm:ansi-wrap", + "data": { + "version": "0.1.0", + "packageName": "ansi-wrap", + "hash": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=" + } + }, + "npm:@babel/plugin-transform-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==" + } + }, + "npm:@babel/plugin-transform-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-numeric-separator", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-numeric-separator", + "hash": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==" + } + }, + "npm:@cypress/request": { + "type": "npm", + "name": "npm:@cypress/request", + "data": { + "version": "2.88.10", + "packageName": "@cypress/request", + "hash": "sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg==" + } + }, + "npm:unist-util-visit": { + "type": "npm", + "name": "npm:unist-util-visit", + "data": { + "version": "2.0.3", + "packageName": "unist-util-visit", + "hash": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==" + } + }, + "npm:@types/react-table": { + "type": "npm", + "name": "npm:@types/react-table", + "data": { + "version": "7.0.19", + "packageName": "@types/react-table", + "hash": "sha512-RYyEY7Yry6F2JsKhHeFsGdzuFF1hMqBStQrrazDzpBl4m/ECGHJxFVQjLBRzRwK+47ZKNPm79f7qEpHirbiCLA==" + } + }, + "npm:anymatch@2.0.0": { + "type": "npm", + "name": "npm:anymatch@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "anymatch", + "hash": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==" + } + }, + "npm:iferr": { + "type": "npm", + "name": "npm:iferr", + "data": { + "version": "0.1.5", + "packageName": "iferr", + "hash": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + } + }, + "npm:vinyl-sourcemap": { + "type": "npm", + "name": "npm:vinyl-sourcemap", + "data": { + "version": "1.1.0", + "packageName": "vinyl-sourcemap", + "hash": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=" + } + }, + "npm:@babel/plugin-transform-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-nullish-coalescing-operator", + "hash": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==" + } + }, + "npm:jest-watch-typeahead": { + "type": "npm", + "name": "npm:jest-watch-typeahead", + "data": { + "version": "2.2.2", + "packageName": "jest-watch-typeahead", + "hash": "sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" + } + }, + "npm:esbuild-linux-32@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-32@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-32", + "hash": "sha512-RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==" + } + }, + "npm:escape-string-regexp@5.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.2.5", + "packageName": "array.prototype.flatmap", + "hash": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==" + } + }, + "npm:har-schema": { + "type": "npm", + "name": "npm:har-schema", + "data": { + "version": "2.0.0", + "packageName": "har-schema", + "hash": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:streamroller": { + "type": "npm", + "name": "npm:streamroller", + "data": { + "version": "3.0.4", + "packageName": "streamroller", + "hash": "sha512-GI9NzeD+D88UFuIlJkKNDH/IsuR+qIN7Qh8EsmhoRZr9bQoehTraRgwtLUkZbpcAw+hLPfHOypmppz8YyGK68w==" + } + }, + "npm:npm-run-path@2.0.2": { + "type": "npm", + "name": "npm:npm-run-path@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "npm-run-path", + "hash": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" + } + }, + "npm:scheduler": { + "type": "npm", + "name": "npm:scheduler", + "data": { + "version": "0.20.2", + "packageName": "scheduler", + "hash": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==" + } + }, + "npm:d3-time@1.1.0": { + "type": "npm", + "name": "npm:d3-time@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "d3-time", + "hash": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + } + }, + "npm:human-signals@1.1.1": { + "type": "npm", + "name": "npm:human-signals@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "human-signals", + "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:react-fast-compare": { + "type": "npm", + "name": "npm:react-fast-compare", + "data": { + "version": "2.0.4", + "packageName": "react-fast-compare", + "hash": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" + } + }, + "npm:strtok3": { + "type": "npm", + "name": "npm:strtok3", + "data": { + "version": "7.0.0", + "packageName": "strtok3", + "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" + } + }, + "npm:@azure/abort-controller": { + "type": "npm", + "name": "npm:@azure/abort-controller", + "data": { + "version": "1.0.1", + "packageName": "@azure/abort-controller", + "hash": "sha512-wP2Jw6uPp8DEDy0n4KNidvwzDjyVV2xnycEIq7nPzj1rHyb/r+t3OPeNT1INZePP2wy5ZqlwyuyOMTi0ePyY1A==" + } + }, + "npm:convert-source-map@2.0.0": { + "type": "npm", + "name": "npm:convert-source-map@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:is-path-inside@2.1.0": { + "type": "npm", + "name": "npm:is-path-inside@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "is-path-inside", + "hash": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.22.20", + "packageName": "@babel/highlight", + "hash": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.0", + "packageName": "globalthis", + "hash": "sha512-vcCAZTJ3r5Qcu5l8/2oyVdoFwxKgfYnMTR2vwWeux/NAVZK3PwcMaWkdUIn4GJbmKuRK7xcvDsLuK+CKcXyodg==" + } + }, + "npm:constants-browserify": { + "type": "npm", + "name": "npm:constants-browserify", + "data": { + "version": "1.0.0", + "packageName": "constants-browserify", + "hash": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + } + }, + "npm:@storybook/builder-webpack5": { + "type": "npm", + "name": "npm:@storybook/builder-webpack5", + "data": { + "version": "6.5.15", + "packageName": "@storybook/builder-webpack5", + "hash": "sha512-BnSoAmI02pvbGBSyzCx+voXb/d5EopQ78zx/lYv4CeOspBFOYEfGvAgYHILFo04V12S2/k8aSOc/tCYw5AqPtw==" + } + }, + "npm:@microsoft/fast-foundation": { + "type": "npm", + "name": "npm:@microsoft/fast-foundation", + "data": { + "version": "2.48.1", + "packageName": "@microsoft/fast-foundation", + "hash": "sha512-gJR/26hhJipsZ4JD5DSOODb3GFYf7vgCnxS2ag4dj+Mi8ytkAwMPglTOv7v0zsJC2CHqOjY8Ixs66dhepgNkeQ==" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "2.1.0", + "packageName": "cli-truncate", + "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.9", + "packageName": "ejs", + "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.0", + "packageName": "env-paths", + "hash": "sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==" + } + }, + "npm:get-pkg-repo": { + "type": "npm", + "name": "npm:get-pkg-repo", + "data": { + "version": "4.2.1", + "packageName": "get-pkg-repo", + "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "29.7.0", + "packageName": "pretty-format", + "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" + } + }, + "npm:make-fetch-happen@10.2.1": { + "type": "npm", + "name": "npm:make-fetch-happen@10.2.1", + "data": { + "version": "10.2.1", + "packageName": "make-fetch-happen", + "hash": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" + } + }, + "npm:promzard": { + "type": "npm", + "name": "npm:promzard", + "data": { + "version": "1.0.0", + "packageName": "promzard", + "hash": "sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==" + } + }, + "npm:istanbul-lib-coverage@1.2.1": { + "type": "npm", + "name": "npm:istanbul-lib-coverage@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==" + } + }, + "npm:@storybook/theming": { + "type": "npm", + "name": "npm:@storybook/theming", + "data": { + "version": "6.5.15", + "packageName": "@storybook/theming", + "hash": "sha512-pgdW0lVZKKXQ4VhIfLHycMmwFSVOY7vLTKnytag4Y8Yz+aXm0bwDN/QxPntFzDH47F1Rcy2ywNnvty8ooDTvuA==" + } + }, + "npm:json5@0.5.1": { + "type": "npm", + "name": "npm:json5@0.5.1", + "data": { + "version": "0.5.1", + "packageName": "json5", + "hash": "sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + } + }, + "npm:marked-terminal": { + "type": "npm", + "name": "npm:marked-terminal", + "data": { + "version": "4.1.0", + "packageName": "marked-terminal", + "hash": "sha512-5KllfAOW02WS6hLRQ7cNvGOxvKW1BKuXELH4EtbWfyWgxQhROoMxEvuQ/3fTgkNjledR0J48F4HbapvYp1zWkQ==" + } + }, + "npm:es6-promisify": { + "type": "npm", + "name": "npm:es6-promisify", + "data": { + "version": "5.0.0", + "packageName": "es6-promisify", + "hash": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=" + } + }, + "npm:react-input-autosize": { + "type": "npm", + "name": "npm:react-input-autosize", + "data": { + "version": "3.0.0", + "packageName": "react-input-autosize", + "hash": "sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==" + } + }, + "npm:vinyl-sourcemaps-apply": { + "type": "npm", + "name": "npm:vinyl-sourcemaps-apply", + "data": { + "version": "0.2.1", + "packageName": "vinyl-sourcemaps-apply", + "hash": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=" + } + }, + "npm:which-module": { + "type": "npm", + "name": "npm:which-module", + "data": { + "version": "2.0.0", + "packageName": "which-module", + "hash": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + } + }, + "npm:findup-sync": { + "type": "npm", + "name": "npm:findup-sync", + "data": { + "version": "2.0.0", + "packageName": "findup-sync", + "hash": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=" + } + }, + "npm:@webassemblyjs/helper-fsm": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-fsm", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-fsm", + "hash": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + } + }, + "npm:strip-outer": { + "type": "npm", + "name": "npm:strip-outer", + "data": { + "version": "1.0.1", + "packageName": "strip-outer", + "hash": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==" + } + }, + "npm:is-path-cwd": { + "type": "npm", + "name": "npm:is-path-cwd", + "data": { + "version": "2.2.0", + "packageName": "is-path-cwd", + "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + } + }, + "npm:event-emitter": { + "type": "npm", + "name": "npm:event-emitter", + "data": { + "version": "0.3.5", + "packageName": "event-emitter", + "hash": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=" + } + }, + "npm:css.escape": { + "type": "npm", + "name": "npm:css.escape", + "data": { + "version": "1.5.1", + "packageName": "css.escape", + "hash": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "1.0.9", + "packageName": "abbrev", + "hash": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=" + } + }, + "npm:afterframe": { + "type": "npm", + "name": "npm:afterframe", + "data": { + "version": "1.0.2", + "packageName": "afterframe", + "hash": "sha512-0JeMZI7dIfVs5guqLgidQNV7c6jBC2HO0QNSekAUB82Hr7PdU9QXNAF3kpFkvATvHYDDTGto7FPsRu1ey+aKJQ==" + } + }, + "npm:detect-indent": { + "type": "npm", + "name": "npm:detect-indent", + "data": { + "version": "5.0.0", + "packageName": "detect-indent", + "hash": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=" + } + }, + "npm:eslint-plugin-react@7.24.0": { + "type": "npm", + "name": "npm:eslint-plugin-react@7.24.0", + "data": { + "version": "7.24.0", + "packageName": "eslint-plugin-react", + "hash": "sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q==" + } + }, + "npm:microevent.ts": { + "type": "npm", + "name": "npm:microevent.ts", + "data": { + "version": "0.1.1", + "packageName": "microevent.ts", + "hash": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + } + }, + "npm:eslint-import-resolver-node": { + "type": "npm", + "name": "npm:eslint-import-resolver-node", + "data": { + "version": "0.3.6", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==" + } + }, + "npm:hast-to-hyperscript": { + "type": "npm", + "name": "npm:hast-to-hyperscript", + "data": { + "version": "9.0.1", + "packageName": "hast-to-hyperscript", + "hash": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:@linaria/babel-preset": { + "type": "npm", + "name": "npm:@linaria/babel-preset", + "data": { + "version": "3.0.0-beta.23", + "packageName": "@linaria/babel-preset", + "hash": "sha512-NhxUZokEq12RLpDo4v/f59dB9A/1BbLgGLFotnrDzNBHfylm0qXSIIel68pZOXUB5lVdPJHqZWcT2zxbpGW6fA==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + } + }, + "npm:@octokit/endpoint@7.0.2": { + "type": "npm", + "name": "npm:@octokit/endpoint@7.0.2", + "data": { + "version": "7.0.2", + "packageName": "@octokit/endpoint", + "hash": "sha512-8/AUACfE9vpRpehE6ZLfEtzkibe5nfsSwFZVMsG8qabqRt1M81qZYUFRZa1B8w8lP6cdfDJfRq9HWS+MbmR7tw==" + } + }, + "npm:commander@4.1.1": { + "type": "npm", + "name": "npm:commander@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "commander", + "hash": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + } + }, + "npm:cyclist": { + "type": "npm", + "name": "npm:cyclist", + "data": { + "version": "0.2.2", + "packageName": "cyclist", + "hash": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=" + } + }, + "npm:@types/d3-hierarchy": { + "type": "npm", + "name": "npm:@types/d3-hierarchy", + "data": { + "version": "2.0.0", + "packageName": "@types/d3-hierarchy", + "hash": "sha512-YxdskUvwzqggpnSnDQj4KVkicgjpkgXn/g/9M9iGsiToLS3nG6Ytjo1FoYhYVAAElV/fJBGVL3cQ9Hb7tcv+lw==" + } + }, + "npm:http2-wrapper@2.1.11": { + "type": "npm", + "name": "npm:http2-wrapper@2.1.11", + "data": { + "version": "2.1.11", + "packageName": "http2-wrapper", + "hash": "sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==" + } + }, + "npm:@octokit/openapi-types@12.11.0": { + "type": "npm", + "name": "npm:@octokit/openapi-types@12.11.0", + "data": { + "version": "12.11.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==" + } + }, + "npm:@babel/preset-typescript": { + "type": "npm", + "name": "npm:@babel/preset-typescript", + "data": { + "version": "7.23.2", + "packageName": "@babel/preset-typescript", + "hash": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==" + } + }, + "npm:pinkie": { + "type": "npm", + "name": "npm:pinkie", + "data": { + "version": "2.0.4", + "packageName": "pinkie", + "hash": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + } + }, + "npm:postcss@7.0.36": { + "type": "npm", + "name": "npm:postcss@7.0.36", + "data": { + "version": "7.0.36", + "packageName": "postcss", + "hash": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:babel-plugin-iife-wrap-react-components": { + "type": "npm", + "name": "npm:babel-plugin-iife-wrap-react-components", + "data": { + "version": "1.0.0-5", + "packageName": "babel-plugin-iife-wrap-react-components", + "hash": "sha512-N91+hcZ98cm7AhqqC9zTwRCwziqEcljgXNuZXWeHRicDKeFASbzbyG5TuSGdgiRYm4oO0TLEEXWx2dxMNoXzaw==" + } + }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "4.1.0", + "packageName": "htmlparser2", + "hash": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==" + } + }, + "npm:file-uri-to-path@1.0.0": { + "type": "npm", + "name": "npm:file-uri-to-path@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "file-uri-to-path", + "hash": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + } + }, + "npm:d3-hexbin": { + "type": "npm", + "name": "npm:d3-hexbin", + "data": { + "version": "0.2.2", + "packageName": "d3-hexbin", + "hash": "sha1-nFg32s/UcasFM3qeke8Qv8T5iDE=" + } + }, + "npm:has-glob": { + "type": "npm", + "name": "npm:has-glob", + "data": { + "version": "1.0.0", + "packageName": "has-glob", + "hash": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=" + } + }, + "npm:@azure/core-tracing@1.0.0-preview.8": { + "type": "npm", + "name": "npm:@azure/core-tracing@1.0.0-preview.8", + "data": { + "version": "1.0.0-preview.8", + "packageName": "@azure/core-tracing", + "hash": "sha512-ZKUpCd7Dlyfn7bdc+/zC/sf0aRIaNQMDuSj2RhYRFe3p70hVAnYGp3TX4cnG2yoEALp/LTj/XnZGQ8Xzf6Ja/Q==" + } + }, + "npm:jest-regex-util": { + "type": "npm", + "name": "npm:jest-regex-util", + "data": { + "version": "29.6.3", + "packageName": "jest-regex-util", + "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" + } + }, + "npm:inherits@2.0.1": { + "type": "npm", + "name": "npm:inherits@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "inherits", + "hash": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + } + }, + "npm:@tufjs/canonical-json": { + "type": "npm", + "name": "npm:@tufjs/canonical-json", + "data": { + "version": "1.0.0", + "packageName": "@tufjs/canonical-json", + "hash": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==" + } + }, + "npm:bail": { + "type": "npm", + "name": "npm:bail", + "data": { + "version": "1.0.5", + "packageName": "bail", + "hash": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" + } + }, + "npm:jsonc-eslint-parser": { + "type": "npm", + "name": "npm:jsonc-eslint-parser", + "data": { + "version": "2.3.0", + "packageName": "jsonc-eslint-parser", + "hash": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==" + } + }, + "npm:karma-coverage": { + "type": "npm", + "name": "npm:karma-coverage", + "data": { + "version": "2.2.0", + "packageName": "karma-coverage", + "hash": "sha512-gPVdoZBNDZ08UCzdMHHhEImKrw1+PAOQOIiffv1YsvxFhBjqvo/SVXNk4tqn1SYqX0BJZT6S/59zgxiBe+9OuA==" + } + }, + "npm:acorn@5.7.4": { + "type": "npm", + "name": "npm:acorn@5.7.4", + "data": { + "version": "5.7.4", + "packageName": "acorn", + "hash": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:react-side-effect": { + "type": "npm", + "name": "npm:react-side-effect", + "data": { + "version": "1.2.0", + "packageName": "react-side-effect", + "hash": "sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==" + } + }, + "npm:circular-dependency-plugin": { + "type": "npm", + "name": "npm:circular-dependency-plugin", + "data": { + "version": "5.2.2", + "packageName": "circular-dependency-plugin", + "hash": "sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==" + } + }, + "npm:react-sizeme": { + "type": "npm", + "name": "npm:react-sizeme", + "data": { + "version": "3.0.1", + "packageName": "react-sizeme", + "hash": "sha512-9Hf1NLgSbny1bha77l9HwvwwxQUJxFUqi44Ih+y3evA+PezBpGdCGlnvye6avss2cIgs9PgdYgMnfuzJWn/RUw==" + } + }, + "npm:source-list-map": { + "type": "npm", + "name": "npm:source-list-map", + "data": { + "version": "2.0.1", + "packageName": "source-list-map", + "hash": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + } + }, + "npm:@storybook/manager-webpack5": { + "type": "npm", + "name": "npm:@storybook/manager-webpack5", + "data": { + "version": "6.5.15", + "packageName": "@storybook/manager-webpack5", + "hash": "sha512-yrHVFUHGdVRWq/oGJwQu+UOZzxELH5SS+Lpn5oIQ/Dblam9piQC0KmBZtFuA9X8acaw4BBVnXgF/aiqs9fOp/Q==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.15", + "packageName": "@types/express", + "hash": "sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + } + }, + "npm:buffers": { + "type": "npm", + "name": "npm:buffers", + "data": { + "version": "0.1.1", + "packageName": "buffers", + "hash": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=" + } + }, + "npm:cli-cursor@2.1.0": { + "type": "npm", + "name": "npm:cli-cursor@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "cli-cursor", + "hash": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=" + } + }, + "npm:react-is@18.2.0": { + "type": "npm", + "name": "npm:react-is@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:@babel/plugin-syntax-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-unicode-sets-regex", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-syntax-unicode-sets-regex", + "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" + } + }, + "npm:data-uri-to-buffer": { + "type": "npm", + "name": "npm:data-uri-to-buffer", + "data": { + "version": "4.0.1", + "packageName": "data-uri-to-buffer", + "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "10.1.0", + "packageName": "npm-package-arg", + "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" + } + }, + "npm:@azure/core-auth": { + "type": "npm", + "name": "npm:@azure/core-auth", + "data": { + "version": "1.3.0", + "packageName": "@azure/core-auth", + "hash": "sha512-kSDSZBL6c0CYdhb+7KuutnKGf2geeT+bCJAgccB0DD7wmNJSsQPcF7TcuoZX83B7VK4tLz/u+8sOO/CnCsYp8A==" + } + }, + "npm:@azure/core-http": { + "type": "npm", + "name": "npm:@azure/core-http", + "data": { + "version": "1.1.3", + "packageName": "@azure/core-http", + "hash": "sha512-GysW3+BRVV4L9cs3GsuCbnlyibrQU6hh5mcJ7hlnk7tdUBzWybUvJ8/P/nHX49PgwRmi81pD5v1ht2jF0IzxAQ==" + } + }, + "npm:camelcase@6.2.1": { + "type": "npm", + "name": "npm:camelcase@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "camelcase", + "hash": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==" + } + }, + "npm:clone@2.1.2": { + "type": "npm", + "name": "npm:clone@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "clone", + "hash": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + } + }, + "npm:esm": { + "type": "npm", + "name": "npm:esm", + "data": { + "version": "3.2.25", + "packageName": "esm", + "hash": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" + } + }, + "npm:fs-minipass@3.0.2": { + "type": "npm", + "name": "npm:fs-minipass@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "fs-minipass", + "hash": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==" + } + }, + "npm:halcyon": { + "type": "npm", + "name": "npm:halcyon", + "data": { + "version": "0.19.1", + "packageName": "halcyon", + "hash": "sha1-86aN7DydyKJ8Ot5pbol+GxSfCKc=" + } + }, + "npm:karma-webpack": { + "type": "npm", + "name": "npm:karma-webpack", + "data": { + "version": "5.0.0", + "packageName": "karma-webpack", + "hash": "sha512-+54i/cd3/piZuP3dr54+NcFeKOPnys5QeM1IY+0SPASwrtHsliXUiCL50iW+K9WWA7RvamC4macvvQ86l3KtaA==" + } + }, + "npm:react-document-title": { + "type": "npm", + "name": "npm:react-document-title", + "data": { + "version": "2.0.3", + "packageName": "react-document-title", + "hash": "sha1-u/kioNcUEvyUgkXkKDskEt9w8rk=" + } + }, + "npm:git-url-parse": { + "type": "npm", + "name": "npm:git-url-parse", + "data": { + "version": "13.1.0", + "packageName": "git-url-parse", + "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" + } + }, + "npm:stream-http": { + "type": "npm", + "name": "npm:stream-http", + "data": { + "version": "3.1.1", + "packageName": "stream-http", + "hash": "sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg==" + } + }, + "npm:to-space-case": { + "type": "npm", + "name": "npm:to-space-case", + "data": { + "version": "1.0.0", + "packageName": "to-space-case", + "hash": "sha1-sFLar7Gysp3HcM6gFj5ewOvJ/Bc=" + } + }, + "npm:only": { + "type": "npm", + "name": "npm:only", + "data": { + "version": "0.0.2", + "packageName": "only", + "hash": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==" + } + }, + "npm:has-unicode": { + "type": "npm", + "name": "npm:has-unicode", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "2.5.0", + "packageName": "tough-cookie", + "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" + } + }, + "npm:timers-ext": { + "type": "npm", + "name": "npm:timers-ext", + "data": { + "version": "0.1.7", + "packageName": "timers-ext", + "hash": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" + } + }, + "npm:jest-haste-map@26.6.2": { + "type": "npm", + "name": "npm:jest-haste-map@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "jest-haste-map", + "hash": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==" + } + }, + "npm:@esbuild/win32-ia32@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-47gL/ek1v36iN0wL9L4Q2MFdujR0poLZMJwhO2/N3gA89jgHp4MR8DKCmwYtGNksbfJb9JoTtbkoe6sDhg2QTA==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + }, + "npm:tr46@0.0.3": { + "type": "npm", + "name": "npm:tr46@0.0.3", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + } + }, + "npm:@storybook/addon-viewport": { + "type": "npm", + "name": "npm:@storybook/addon-viewport", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-viewport", + "hash": "sha512-oOiVzgFMlTnzPLVoHWQNzWdmpksrUyT6Aq8ZOyBPNMQ0RN2doIgFr7W53nZ1OBB5cPQx9q2FgWwzJ7Tawo+iVA==" + } + }, + "npm:tunnel-agent": { + "type": "npm", + "name": "npm:tunnel-agent", + "data": { + "version": "0.6.0", + "packageName": "tunnel-agent", + "hash": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=" + } + }, + "npm:@xmldom/xmldom@0.7.9": { + "type": "npm", + "name": "npm:@xmldom/xmldom@0.7.9", + "data": { + "version": "0.7.9", + "packageName": "@xmldom/xmldom", + "hash": "sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "6.0.1", + "packageName": "conventional-changelog-writer", + "hash": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + } + }, + "npm:safe-buffer@5.1.1": { + "type": "npm", + "name": "npm:safe-buffer@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "safe-buffer", + "hash": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + } + }, + "npm:humanize-ms": { + "type": "npm", + "name": "npm:humanize-ms", + "data": { + "version": "1.2.1", + "packageName": "humanize-ms", + "hash": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=" + } + }, + "npm:batch-processor": { + "type": "npm", + "name": "npm:batch-processor", + "data": { + "version": "1.0.0", + "packageName": "batch-processor", + "hash": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=" + } + }, + "npm:camel-case": { + "type": "npm", + "name": "npm:camel-case", + "data": { + "version": "3.0.0", + "packageName": "camel-case", + "hash": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=" + } + }, + "npm:is-buffer@2.0.4": { + "type": "npm", + "name": "npm:is-buffer@2.0.4", + "data": { + "version": "2.0.4", + "packageName": "is-buffer", + "hash": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==" + } + }, + "npm:@jest/types@26.6.2": { + "type": "npm", + "name": "npm:@jest/types@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "@jest/types", + "hash": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" + } + }, + "npm:@emotion/utils@1.0.0": { + "type": "npm", + "name": "npm:@emotion/utils@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "@emotion/utils", + "hash": "sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==" + } + }, + "npm:ansi-regex@4.1.1": { + "type": "npm", + "name": "npm:ansi-regex@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ansi-regex", + "hash": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@tsconfig/node12": { + "type": "npm", + "name": "npm:@tsconfig/node12", + "data": { + "version": "1.0.11", + "packageName": "@tsconfig/node12", + "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + } + }, + "npm:aria-query@5.0.0": { + "type": "npm", + "name": "npm:aria-query@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "aria-query", + "hash": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==" + } + }, + "npm:async-settle": { + "type": "npm", + "name": "npm:async-settle", + "data": { + "version": "1.0.0", + "packageName": "async-settle", + "hash": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=" + } + }, + "npm:change-case": { + "type": "npm", + "name": "npm:change-case", + "data": { + "version": "3.1.0", + "packageName": "change-case", + "hash": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==" + } + }, + "npm:fill-range@4.0.0": { + "type": "npm", + "name": "npm:fill-range@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "fill-range", + "hash": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=" + } + }, + "npm:jsonwebtoken": { + "type": "npm", + "name": "npm:jsonwebtoken", + "data": { + "version": "8.5.1", + "packageName": "jsonwebtoken", + "hash": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==" + } + }, + "npm:flamebearer": { + "type": "npm", + "name": "npm:flamebearer", + "data": { + "version": "1.1.3", + "packageName": "flamebearer", + "hash": "sha512-3AEti4HwtsVRQTHTB47kQZvXkenSn5YfmpGGZX/mRW8R+9ZDFO+iqgEC4W7Nb8PQvUceYVfbM7nqQxI/m6DeDA==" + } + }, + "npm:libnpmpublish": { + "type": "npm", + "name": "npm:libnpmpublish", + "data": { + "version": "7.3.0", + "packageName": "libnpmpublish", + "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:@types/yargs@15.0.13": { + "type": "npm", + "name": "npm:@types/yargs@15.0.13", + "data": { + "version": "15.0.13", + "packageName": "@types/yargs", + "hash": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==" + } + }, + "npm:clone-buffer": { + "type": "npm", + "name": "npm:clone-buffer", + "data": { + "version": "1.0.0", + "packageName": "clone-buffer", + "hash": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.2.2", + "packageName": "memfs", + "hash": "sha512-RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==" + } + }, + "npm:p-limit@1.3.0": { + "type": "npm", + "name": "npm:p-limit@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "p-limit", + "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:pseudomap": { + "type": "npm", + "name": "npm:pseudomap", + "data": { + "version": "1.0.2", + "packageName": "pseudomap", + "hash": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==" + } + }, + "npm:is-accessor-descriptor@0.1.6": { + "type": "npm", + "name": "npm:is-accessor-descriptor@0.1.6", + "data": { + "version": "0.1.6", + "packageName": "is-accessor-descriptor", + "hash": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=" + } + }, + "npm:sha.js": { + "type": "npm", + "name": "npm:sha.js", + "data": { + "version": "2.4.11", + "packageName": "sha.js", + "hash": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.3", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + } + }, + "npm:ansi-align": { + "type": "npm", + "name": "npm:ansi-align", + "data": { + "version": "3.0.0", + "packageName": "ansi-align", + "hash": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==" + } + }, + "npm:babel-plugin-jest-hoist": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist", + "data": { + "version": "29.6.3", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" + } + }, + "npm:gulp-remember": { + "type": "npm", + "name": "npm:gulp-remember", + "data": { + "version": "1.0.1", + "packageName": "gulp-remember", + "hash": "sha512-6OMSOzGeW05rl2TSFiBgXp6bV5r16n1CbZAT4t98vt1osQQ0UL76Y2M91xJTtMwppTo3Aj25Rle85jCP1eL9rQ==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "0.0.1", + "packageName": "isarray", + "hash": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + } + }, + "npm:lower-case-first": { + "type": "npm", + "name": "npm:lower-case-first", + "data": { + "version": "1.0.2", + "packageName": "lower-case-first", + "hash": "sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:@babel/plugin-transform-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==" + } + }, + "npm:just-scripts": { + "type": "npm", + "name": "npm:just-scripts", + "data": { + "version": "1.8.2", + "packageName": "just-scripts", + "hash": "sha512-ZTaWL/r2hdswji60HFrOP3FrqUCXrIr5ElgXH3sr1cySamOeP1aWsvfKXssc7c2gAP8xi3S5JFAAffDOV60/EA==" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + } + }, + "npm:console-control-strings": { + "type": "npm", + "name": "npm:console-control-strings", + "data": { + "version": "1.1.0", + "packageName": "console-control-strings", + "hash": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.23.2", + "packageName": "@babel/traverse", + "hash": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:@babel/plugin-transform-computed-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==" + } + }, + "npm:portfinder": { + "type": "npm", + "name": "npm:portfinder", + "data": { + "version": "1.0.28", + "packageName": "portfinder", + "hash": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==" + } + }, + "npm:cliui@7.0.4": { + "type": "npm", + "name": "npm:cliui@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "cliui", + "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" + } + }, + "npm:ajv-formats@2.1.1": { + "type": "npm", + "name": "npm:ajv-formats@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:@swc/core-linux-arm64-musl@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-musl@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-arm64-musl", + "hash": "sha512-WQ5tirVBiU8lUODQ25dt8JRCZHyRDInBe4fkGuxzImMa017zYPWa2WxrKK8LdDF7DzrAITlGl9VeoeE/l0WJbw==" + } + }, + "npm:replace-ext": { + "type": "npm", + "name": "npm:replace-ext", + "data": { + "version": "1.0.0", + "packageName": "replace-ext", + "hash": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=" + } + }, + "npm:duplexer2": { + "type": "npm", + "name": "npm:duplexer2", + "data": { + "version": "0.0.2", + "packageName": "duplexer2", + "hash": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=" + } + }, + "npm:executable": { + "type": "npm", + "name": "npm:executable", + "data": { + "version": "4.1.1", + "packageName": "executable", + "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" + } + }, + "npm:lodash.restparam": { + "type": "npm", + "name": "npm:lodash.restparam", + "data": { + "version": "3.6.1", + "packageName": "lodash.restparam", + "hash": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" + } + }, + "npm:@types/progress": { + "type": "npm", + "name": "npm:@types/progress", + "data": { + "version": "2.0.5", + "packageName": "@types/progress", + "hash": "sha512-ZYYVc/kSMkhH9W/4dNK/sLNra3cnkfT2nJyOAIDY+C2u6w72wa0s1aXAezVtbTsnN8HID1uhXCrLwDE2ZXpplg==" + } + }, + "npm:bplist-parser": { + "type": "npm", + "name": "npm:bplist-parser", + "data": { + "version": "0.1.1", + "packageName": "bplist-parser", + "hash": "sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.17.3", + "packageName": "express", + "hash": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.11", + "packageName": "@types/http-proxy", + "hash": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.1.0", + "packageName": "spdx-correct", + "hash": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==" + } + }, + "npm:strip-outer@2.0.0": { + "type": "npm", + "name": "npm:strip-outer@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "strip-outer", + "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" + } + }, + "npm:check-error": { + "type": "npm", + "name": "npm:check-error", + "data": { + "version": "1.0.2", + "packageName": "check-error", + "hash": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=" + } + }, + "npm:type-fest@0.11.0": { + "type": "npm", + "name": "npm:type-fest@0.11.0", + "data": { + "version": "0.11.0", + "packageName": "type-fest", + "hash": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" + } + }, + "npm:unist-util-is": { + "type": "npm", + "name": "npm:unist-util-is", + "data": { + "version": "4.0.1", + "packageName": "unist-util-is", + "hash": "sha512-7NYjErP4LJtkEptPR22wO5RsCPnHZZrop7t2SoQzjvpFedCFer4WW8ujj9GI5DkUX7yVcffXLjoURf6h2QUv6Q==" + } + }, + "npm:buffer@6.0.3": { + "type": "npm", + "name": "npm:buffer@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "buffer", + "hash": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==" + } + }, + "npm:body-scroll-lock": { + "type": "npm", + "name": "npm:body-scroll-lock", + "data": { + "version": "3.1.5", + "packageName": "body-scroll-lock", + "hash": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.12.1", + "packageName": "is-core-module", + "hash": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==" + } + }, + "npm:fast-glob@3.2.7": { + "type": "npm", + "name": "npm:fast-glob@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "fast-glob", + "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + } + }, + "npm:string.prototype.padstart": { + "type": "npm", + "name": "npm:string.prototype.padstart", + "data": { + "version": "3.0.0", + "packageName": "string.prototype.padstart", + "hash": "sha1-W8+tOfRkm7LQMSkuGbzwtRDUskI=" + } + }, + "npm:strip-bom@2.0.0": { + "type": "npm", + "name": "npm:strip-bom@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "strip-bom", + "hash": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + } + }, + "npm:is-window": { + "type": "npm", + "name": "npm:is-window", + "data": { + "version": "1.0.2", + "packageName": "is-window", + "hash": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=" + } + }, + "npm:object.reduce": { + "type": "npm", + "name": "npm:object.reduce", + "data": { + "version": "1.0.1", + "packageName": "object.reduce", + "hash": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=" + } + }, + "npm:pretty-error": { + "type": "npm", + "name": "npm:pretty-error", + "data": { + "version": "2.1.1", + "packageName": "pretty-error", + "hash": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=" + } + }, + "npm:isstream": { + "type": "npm", + "name": "npm:isstream", + "data": { + "version": "0.1.2", + "packageName": "isstream", + "hash": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + } + }, + "npm:react-shadow": { + "type": "npm", + "name": "npm:react-shadow", + "data": { + "version": "20.3.0", + "packageName": "react-shadow", + "hash": "sha512-oWi4W+FE6Puz+7+psL5l90wD9tu+OI1x+Uf1C2Y+O9J1AZzfaWVBbAQjvrDk/Sn8Nh0owCGSD0eemcr1ErtGzw==" + } + }, + "npm:babel-plugin-const-enum": { + "type": "npm", + "name": "npm:babel-plugin-const-enum", + "data": { + "version": "1.2.0", + "packageName": "babel-plugin-const-enum", + "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" + } + }, + "npm:fela-plugin-embedded": { + "type": "npm", + "name": "npm:fela-plugin-embedded", + "data": { + "version": "10.8.2", + "packageName": "fela-plugin-embedded", + "hash": "sha512-HeLyDJHQgpBEMbWjsCES1Jtptawtaqnp0Ml3zKebPMrryCQj4j0k4VdyzcS+QzE4M0JD1r0FYhKla+mpuMP5Qw==" + } + }, + "npm:@esbuild/linux-ia32@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-mLfp0ziRPOLSTek0Gd9T5B8AtzKAkoZE70fneiiyPlSnUKKI4lp+mGEnQXcQEHLJAcIYDPSyBvsUbKUG2ri/XQ==" + } + }, + "npm:is-module": { + "type": "npm", + "name": "npm:is-module", + "data": { + "version": "1.0.0", + "packageName": "is-module", + "hash": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.1", + "packageName": "has-bigints", + "hash": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + } + }, + "npm:is-glob@3.1.0": { + "type": "npm", + "name": "npm:is-glob@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "is-glob", + "hash": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=" + } + }, + "npm:@npmcli/ci-detect": { + "type": "npm", + "name": "npm:@npmcli/ci-detect", + "data": { + "version": "1.3.0", + "packageName": "@npmcli/ci-detect", + "hash": "sha512-oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q==" + } + }, + "npm:globby@9.2.0": { + "type": "npm", + "name": "npm:globby@9.2.0", + "data": { + "version": "9.2.0", + "packageName": "globby", + "hash": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==" + } + }, + "npm:mdast-util-definitions": { + "type": "npm", + "name": "npm:mdast-util-definitions", + "data": { + "version": "4.0.0", + "packageName": "mdast-util-definitions", + "hash": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "1.1.7", + "packageName": "tuf-js", + "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" + } + }, + "npm:pinpoint": { + "type": "npm", + "name": "npm:pinpoint", + "data": { + "version": "1.1.0", + "packageName": "pinpoint", + "hash": "sha1-DPd1eml38b9/ajIge3CeN3OI6HQ=" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" + } + }, + "npm:zwitch": { + "type": "npm", + "name": "npm:zwitch", + "data": { + "version": "1.0.5", + "packageName": "zwitch", + "hash": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" + } + }, + "npm:before-after-hook": { + "type": "npm", + "name": "npm:before-after-hook", + "data": { + "version": "2.2.2", + "packageName": "before-after-hook", + "hash": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "2.0.0", + "packageName": "p-cancelable", + "hash": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==" + } + }, + "npm:color-check": { + "type": "npm", + "name": "npm:color-check", + "data": { + "version": "0.0.2", + "packageName": "color-check", + "hash": "sha1-L07qW3QykYGtzAd+DOhF2UEbR8Q=" + } + }, + "npm:@types/cors": { + "type": "npm", + "name": "npm:@types/cors", + "data": { + "version": "2.8.13", + "packageName": "@types/cors", + "hash": "sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==" + } + }, + "npm:character-entities-legacy": { + "type": "npm", + "name": "npm:character-entities-legacy", + "data": { + "version": "1.1.3", + "packageName": "character-entities-legacy", + "hash": "sha512-YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww==" + } + }, + "npm:cypress-real-events": { + "type": "npm", + "name": "npm:cypress-real-events", + "data": { + "version": "1.7.1", + "packageName": "cypress-real-events", + "hash": "sha512-/Bg15RgJ0SYsuXc6lPqH08x19z6j2vmhWN4wXfJqm3z8BTAFiK2MvipZPzxT8Z0jJP0q7kuniWrLIvz/i/8lCQ==" + } + }, + "npm:vfile-message": { + "type": "npm", + "name": "npm:vfile-message", + "data": { + "version": "2.0.2", + "packageName": "vfile-message", + "hash": "sha512-gNV2Y2fDvDOOqq8bEe7cF3DXU6QgV4uA9zMR2P8tix11l1r7zju3zry3wZ8sx+BEfuO6WQ7z2QzfWTvqHQiwsA==" + } + }, + "npm:filenamify@5.1.1": { + "type": "npm", + "name": "npm:filenamify@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "filenamify", + "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" + } + }, + "npm:copy-descriptor": { + "type": "npm", + "name": "npm:copy-descriptor", + "data": { + "version": "0.1.1", + "packageName": "copy-descriptor", + "hash": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:errlop": { + "type": "npm", + "name": "npm:errlop", + "data": { + "version": "2.2.0", + "packageName": "errlop", + "hash": "sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==" + } + }, + "npm:p-timeout": { + "type": "npm", + "name": "npm:p-timeout", + "data": { + "version": "3.2.0", + "packageName": "p-timeout", + "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "5.2.0", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "4.1.0", + "packageName": "postcss-loader", + "hash": "sha512-vbCkP70F3Q9PIk6d47aBwjqAMI4LfkXCoyxj+7NPNuVIwfTGdzv2KVQes59/RuxMniIgsYQCFSY42P3+ykJfaw==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "npm:minimatch@9.0.1": { + "type": "npm", + "name": "npm:minimatch@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "minimatch", + "hash": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==" + } + }, + "npm:parse5@3.0.3": { + "type": "npm", + "name": "npm:parse5@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "parse5", + "hash": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==" + } + }, + "npm:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:swap-case": { + "type": "npm", + "name": "npm:swap-case", + "data": { + "version": "1.1.2", + "packageName": "swap-case", + "hash": "sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=" + } + }, + "npm:@babel/plugin-transform-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-transform-export-namespace-from", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-export-namespace-from", + "hash": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==" + } + }, + "npm:array-filter": { + "type": "npm", + "name": "npm:array-filter", + "data": { + "version": "1.0.0", + "packageName": "array-filter", + "hash": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.0", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" + } + }, + "npm:doctrine@2.1.0": { + "type": "npm", + "name": "npm:doctrine@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "1.0.0", + "packageName": "unique-string", + "hash": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.0", + "packageName": "@types/istanbul-reports", + "hash": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==" + } + }, + "npm:chai-spies": { + "type": "npm", + "name": "npm:chai-spies", + "data": { + "version": "1.0.0", + "packageName": "chai-spies", + "hash": "sha512-elF2ZUczBsFoP07qCfMO/zeggs8pqCf3fZGyK5+2X4AndS8jycZYID91ztD9oQ7d/0tnS963dPkd0frQEThDsg==" + } + }, + "npm:babel-plugin-polyfill-regenerator": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator", + "data": { + "version": "0.5.3", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==" + } + }, + "npm:d3-time": { + "type": "npm", + "name": "npm:d3-time", + "data": { + "version": "2.1.1", + "packageName": "d3-time", + "hash": "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==" + } + }, + "npm:xtend@3.0.0": { + "type": "npm", + "name": "npm:xtend@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "xtend", + "hash": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "6.2.3", + "packageName": "@types/semver", + "hash": "sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==" + } + }, + "npm:@babel/helper-environment-visitor": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "15.0.0", + "packageName": "@types/yargs-parser", + "hash": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "11.1.1", + "packageName": "make-fetch-happen", + "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" + } + }, + "npm:babel-messages": { + "type": "npm", + "name": "npm:babel-messages", + "data": { + "version": "6.23.0", + "packageName": "babel-messages", + "hash": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=" + } + }, + "npm:d3-scale": { + "type": "npm", + "name": "npm:d3-scale", + "data": { + "version": "1.0.7", + "packageName": "d3-scale", + "hash": "sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==" + } + }, + "npm:symbol-tree": { + "type": "npm", + "name": "npm:symbol-tree", + "data": { + "version": "3.2.4", + "packageName": "symbol-tree", + "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object", + "data": { + "version": "7.21.0-placeholder-for-preset-env.2", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" + } + }, + "npm:buffer-xor": { + "type": "npm", + "name": "npm:buffer-xor", + "data": { + "version": "1.0.3", + "packageName": "buffer-xor", + "hash": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + } + }, + "npm:memoize-one": { + "type": "npm", + "name": "npm:memoize-one", + "data": { + "version": "5.1.1", + "packageName": "memoize-one", + "hash": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + } + }, + "npm:@types/webpack-dev-middleware": { + "type": "npm", + "name": "npm:@types/webpack-dev-middleware", + "data": { + "version": "4.1.0", + "packageName": "@types/webpack-dev-middleware", + "hash": "sha512-cG/RhZcpAmVCQi7sGMc7bFyYGA2Yzu/+pWxTJezs7z2asjGZJ7j+0/+t39AuxQQbEuABWgYAwolg/DysGEcLyA==" + } + }, + "npm:create-require": { + "type": "npm", + "name": "npm:create-require", + "data": { + "version": "1.1.1", + "packageName": "create-require", + "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + } + }, + "npm:is-utf8": { + "type": "npm", + "name": "npm:is-utf8", + "data": { + "version": "0.2.1", + "packageName": "is-utf8", + "hash": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + } + }, + "npm:@types/keyv": { + "type": "npm", + "name": "npm:@types/keyv", + "data": { + "version": "3.1.1", + "packageName": "@types/keyv", + "hash": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==" + } + }, + "npm:deep-equal": { + "type": "npm", + "name": "npm:deep-equal", + "data": { + "version": "1.0.1", + "packageName": "deep-equal", + "hash": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" + } + }, + "npm:pacote@11.1.11": { + "type": "npm", + "name": "npm:pacote@11.1.11", + "data": { + "version": "11.1.11", + "packageName": "pacote", + "hash": "sha512-r6PHtCEhkaGv+QPx1JdE/xRdkSkZUG7dE2oloNk/CGTPGNOtaJyYqZPFeN6d6UcUrTPRvZXFo3IBzJIBopPuSA==" + } + }, + "npm:clone-stats": { + "type": "npm", + "name": "npm:clone-stats", + "data": { + "version": "1.0.0", + "packageName": "clone-stats", + "hash": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" + } + }, + "npm:@webassemblyjs/wasm-edit@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:is-alphabetical": { + "type": "npm", + "name": "npm:is-alphabetical", + "data": { + "version": "1.0.4", + "packageName": "is-alphabetical", + "hash": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" + } + }, + "npm:dom-converter": { + "type": "npm", + "name": "npm:dom-converter", + "data": { + "version": "0.2.0", + "packageName": "dom-converter", + "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + } + }, + "npm:@octokit/graphql@5.0.1": { + "type": "npm", + "name": "npm:@octokit/graphql@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "@octokit/graphql", + "hash": "sha512-sxmnewSwAixkP1TrLdE6yRG53eEhHhDTYUykUwdV9x8f91WcbhunIHk9x1PZLALdBZKRPUO2HRcm4kezZ79HoA==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "8.6.0", + "packageName": "dotenv", + "hash": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==" + } + }, + "npm:jest-matcher-utils": { + "type": "npm", + "name": "npm:jest-matcher-utils", + "data": { + "version": "29.7.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" + } + }, + "npm:jpeg-js": { + "type": "npm", + "name": "npm:jpeg-js", + "data": { + "version": "0.4.4", + "packageName": "jpeg-js", + "hash": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" + } + }, + "npm:log-symbols@1.0.2": { + "type": "npm", + "name": "npm:log-symbols@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "log-symbols", + "hash": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=" + } + }, + "npm:react-colorful": { + "type": "npm", + "name": "npm:react-colorful", + "data": { + "version": "5.3.0", + "packageName": "react-colorful", + "hash": "sha512-zWE5E88zmjPXFhv6mGnRZqKin9s5vip1O3IIGynY9EhZxN8MATUxZkT3e/9OwTEm4DjQBXc6PFWP6AetY+Px+A==" + } + }, + "npm:@esbuild/linux-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-oxzHTEv6VPm3XXNaHPyUTTte+3wGv7qVQtqaZCrgstI16gCuhNOtBXLEBkBREP57YTd68P0VgDgG73jSD8bwXQ==" + } + }, + "npm:commander@5.1.0": { + "type": "npm", + "name": "npm:commander@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "commander", + "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + } + }, + "npm:cpy": { + "type": "npm", + "name": "npm:cpy", + "data": { + "version": "8.1.2", + "packageName": "cpy", + "hash": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:find-free-port": { + "type": "npm", + "name": "npm:find-free-port", + "data": { + "version": "2.0.0", + "packageName": "find-free-port", + "hash": "sha512-J1j8gfEVf5FN4PR5w5wrZZ7NYs2IvqsHcd03cAeQx3Ec/mo+lKceaVNhpsRKoZpZKbId88o8qh+dwUwzBV6WCg==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:string-width@2.1.1": { + "type": "npm", + "name": "npm:string-width@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "string-width", + "hash": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==" + } + }, + "npm:symbol.prototype.description": { + "type": "npm", + "name": "npm:symbol.prototype.description", + "data": { + "version": "1.0.0", + "packageName": "symbol.prototype.description", + "hash": "sha512-I9mrbZ5M96s7QeJDv95toF1svkUjeBybe8ydhY7foPaBmr0SPJMFupArmMkDrOKTTj0sJVr+nvQNxWLziQ7nDQ==" + } + }, + "npm:tiny-emitter": { + "type": "npm", + "name": "npm:tiny-emitter", + "data": { + "version": "2.1.0", + "packageName": "tiny-emitter", + "hash": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "1.1.2", + "packageName": "entities", + "hash": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + } + }, + "npm:array-sort": { + "type": "npm", + "name": "npm:array-sort", + "data": { + "version": "1.0.0", + "packageName": "array-sort", + "hash": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==" + } + }, + "npm:execa@1.0.0": { + "type": "npm", + "name": "npm:execa@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "execa", + "hash": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:azure-devops-node-api": { + "type": "npm", + "name": "npm:azure-devops-node-api", + "data": { + "version": "10.2.2", + "packageName": "azure-devops-node-api", + "hash": "sha512-4TVv2X7oNStT0vLaEfExmy3J4/CzfuXolEcQl/BRUmvGySqKStTG2O55/hUQ0kM7UJlZBLgniM0SBq4d/WkKow==" + } + }, + "npm:untildify": { + "type": "npm", + "name": "npm:untildify", + "data": { + "version": "4.0.0", + "packageName": "untildify", + "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" + } + }, + "npm:aproba": { + "type": "npm", + "name": "npm:aproba", + "data": { + "version": "1.2.0", + "packageName": "aproba", + "hash": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + } + }, + "npm:es6-object-assign": { + "type": "npm", + "name": "npm:es6-object-assign", + "data": { + "version": "1.1.0", + "packageName": "es6-object-assign", + "hash": "sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=" + } + }, + "npm:bin-version-check": { + "type": "npm", + "name": "npm:bin-version-check", + "data": { + "version": "5.1.0", + "packageName": "bin-version-check", + "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + } + }, + "npm:define-property@2.0.2": { + "type": "npm", + "name": "npm:define-property@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "define-property", + "hash": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==" + } + }, + "npm:@types/webpack-sources": { + "type": "npm", + "name": "npm:@types/webpack-sources", + "data": { + "version": "0.1.6", + "packageName": "@types/webpack-sources", + "hash": "sha512-FtAWR7wR5ocJ9+nP137DV81tveD/ZgB1sadnJ/axUGM3BUVfRPx8oQNMtv3JNfTeHx3VP7cXiyfR/jmtEsVHsQ==" + } + }, + "npm:@microsoft/applicationinsights-shims": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-shims", + "data": { + "version": "3.0.1", + "packageName": "@microsoft/applicationinsights-shims", + "hash": "sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "3.6.0", + "packageName": "@octokit/core", + "hash": "sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==" + } + }, + "npm:babel-plugin-tester": { + "type": "npm", + "name": "npm:babel-plugin-tester", + "data": { + "version": "10.1.0", + "packageName": "babel-plugin-tester", + "hash": "sha512-4P2tNaM/Mtg6ytA9YAqmgONnMYqWvdbGDuwRTpIIC9yFZGQrEHoyvDPCx+X1QALAufVb5DKieOPGj5dffiEiNg==" + } + }, + "npm:koa-mount": { + "type": "npm", + "name": "npm:koa-mount", + "data": { + "version": "4.0.0", + "packageName": "koa-mount", + "hash": "sha512-rm71jaA/P+6HeCpoRhmCv8KVBIi0tfGuO/dMKicbQnQW/YJntJ6MnnspkodoA4QstMVEZArsCphmd0bJEtoMjQ==" + } + }, + "npm:typedarray-to-buffer": { + "type": "npm", + "name": "npm:typedarray-to-buffer", + "data": { + "version": "3.1.5", + "packageName": "typedarray-to-buffer", + "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + } + }, + "npm:@effect/data": { + "type": "npm", + "name": "npm:@effect/data", + "data": { + "version": "0.12.10", + "packageName": "@effect/data", + "hash": "sha512-zIz/DgumH2LgGdr1Wc9ChET5JSG0k/G5kDc8rn4a6yIJ0v2d5rfnbRWIJO2fWmdFvc+128JyaBvYguIyz9JaAQ==" + } + }, + "npm:urix": { + "type": "npm", + "name": "npm:urix", + "data": { + "version": "0.1.0", + "packageName": "urix", + "hash": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + } + }, + "npm:color-name@1.1.3": { + "type": "npm", + "name": "npm:color-name@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + } + }, + "npm:hash-base": { + "type": "npm", + "name": "npm:hash-base", + "data": { + "version": "3.0.4", + "packageName": "hash-base", + "hash": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=" + } + }, + "npm:p-graph": { + "type": "npm", + "name": "npm:p-graph", + "data": { + "version": "1.1.1", + "packageName": "p-graph", + "hash": "sha512-KdD5JEqSEbOYK5Yl4MKbHo8cNaJs+O6TW+HacoyPVau704KukYhJMhSXuC8tF332zqgB87pyAMf2FhQ54R0ugA==" + } + }, + "npm:v8flags": { + "type": "npm", + "name": "npm:v8flags", + "data": { + "version": "2.1.1", + "packageName": "v8flags", + "hash": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=" + } + }, + "npm:@storybook/client-api": { + "type": "npm", + "name": "npm:@storybook/client-api", + "data": { + "version": "6.5.15", + "packageName": "@storybook/client-api", + "hash": "sha512-0ZGpRgVz7rdbCguBqBpwObXbsVY5qlSTWDzzIBpmz8EkxW/MtK5wEyeq+0L0O+DTn41FwvH5yCGLAENpzWD8BQ==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.0.4", + "packageName": "destroy", + "hash": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + } + }, + "npm:@babel/preset-react": { + "type": "npm", + "name": "npm:@babel/preset-react", + "data": { + "version": "7.22.15", + "packageName": "@babel/preset-react", + "hash": "sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==" + } + }, + "npm:buffer-crc32": { + "type": "npm", + "name": "npm:buffer-crc32", + "data": { + "version": "0.2.13", + "packageName": "buffer-crc32", + "hash": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" + } + }, + "npm:strict-uri-encode": { + "type": "npm", + "name": "npm:strict-uri-encode", + "data": { + "version": "2.0.0", + "packageName": "strict-uri-encode", + "hash": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "4.0.2", + "packageName": "through2", + "hash": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.5", + "packageName": "jake", + "hash": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==" + } + }, + "npm:@uifabric/set-version": { + "type": "npm", + "name": "npm:@uifabric/set-version", + "data": { + "version": "7.0.23", + "packageName": "@uifabric/set-version", + "hash": "sha512-9E+YKtnH2kyMKnK9XZZsqyM8OCxEJIIfxtaThTlQpYOzrWAGJxQADFbZ7+Usi0U2xHnWNPFROjq+B9ocEzhqMA==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:fela-bindings": { + "type": "npm", + "name": "npm:fela-bindings", + "data": { + "version": "10.6.1", + "packageName": "fela-bindings", + "hash": "sha512-VY6PzkVHDpVHSvefa4AnfRYuzw1jgAheU+ePof4m8je3JgkoezKDiadI7uHD0teyzJhajDZ25nr2dOt2yCuMtA==" + } + }, + "npm:vinyl@0.5.3": { + "type": "npm", + "name": "npm:vinyl@0.5.3", + "data": { + "version": "0.5.3", + "packageName": "vinyl", + "hash": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.7.4", + "packageName": "webpack-dev-server", + "hash": "sha512-nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:get-stream@6.0.1": { + "type": "npm", + "name": "npm:get-stream@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:class-utils": { + "type": "npm", + "name": "npm:class-utils", + "data": { + "version": "0.3.6", + "packageName": "class-utils", + "hash": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==" + } + }, + "npm:codesandbox-import-util-types": { + "type": "npm", + "name": "npm:codesandbox-import-util-types", + "data": { + "version": "2.2.3", + "packageName": "codesandbox-import-util-types", + "hash": "sha512-Qj00p60oNExthP2oR3vvXmUGjukij+rxJGuiaKM6tyUmSyimdZsqHI/TUvFFClAffk9s7hxGnQgWQ8KCce27qQ==" + } + }, + "npm:@types/vinyl": { + "type": "npm", + "name": "npm:@types/vinyl", + "data": { + "version": "2.0.7", + "packageName": "@types/vinyl", + "hash": "sha512-4UqPv+2567NhMQuMLdKAyK4yzrfCqwaTt6bLhHEs8PFcxbHILsrxaY63n4wgE/BRLDWDQeI+WcTmkXKExh9hQg==" + } + }, + "npm:@griffel/webpack-extraction-plugin": { + "type": "npm", + "name": "npm:@griffel/webpack-extraction-plugin", + "data": { + "version": "0.3.18", + "packageName": "@griffel/webpack-extraction-plugin", + "hash": "sha512-FYqaacXXMG3ekAXdpkS6Snc/ECW095pMIvLY8bDtOkNZidslbbg5gF/KqVrOqRcR3gDPXLpT3GylfGEHVrvEgw==" + } + }, + "npm:ylru": { + "type": "npm", + "name": "npm:ylru", + "data": { + "version": "1.3.2", + "packageName": "ylru", + "hash": "sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA==" + } + }, + "npm:d3-array": { + "type": "npm", + "name": "npm:d3-array", + "data": { + "version": "1.2.1", + "packageName": "d3-array", + "hash": "sha512-CyINJQ0SOUHojDdFDH4JEM0552vCR1utGyLHegJHyYH0JyCpSeTPxi4OBqHMA2jJZq4NH782LtaJWBImqI/HBw==" + } + }, + "npm:@npmcli/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.0.2", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "2.7.0", + "packageName": "domutils", + "hash": "sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==" + } + }, + "npm:array-back@6.2.2": { + "type": "npm", + "name": "npm:array-back@6.2.2", + "data": { + "version": "6.2.2", + "packageName": "array-back", + "hash": "sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==" + } + }, + "npm:user-home": { + "type": "npm", + "name": "npm:user-home", + "data": { + "version": "1.1.1", + "packageName": "user-home", + "hash": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=" + } + }, + "npm:@babel/plugin-transform-block-scoping": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==" + } + }, + "npm:domelementtype@1.3.1": { + "type": "npm", + "name": "npm:domelementtype@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "domelementtype", + "hash": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + } + }, + "npm:js-queue": { + "type": "npm", + "name": "npm:js-queue", + "data": { + "version": "2.0.0", + "packageName": "js-queue", + "hash": "sha1-NiITz4YPRo8BJfxslqvBdCUx+Ug=" + } + }, + "npm:@lerna/create": { + "type": "npm", + "name": "npm:@lerna/create", + "data": { + "version": "7.1.3", + "packageName": "@lerna/create", + "hash": "sha512-i/xUmT7sMNTUhGpSUuQJ8N776YiT/fJaKPrzMSAoxqDBhyDryi4o4JUR+rrN9oELOEsO+SOXQEusBdkmUdVTMg==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:util@0.11.1": { + "type": "npm", + "name": "npm:util@0.11.1", + "data": { + "version": "0.11.1", + "packageName": "util", + "hash": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==" + } + }, + "npm:@babel/plugin-syntax-import-assertions": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "8.4.0", + "packageName": "ajv", + "hash": "sha512-7QD2l6+KBSLwf+7MuYocbWvRPdOu63/trReTLu2KFwkgctnub1auoF+Y1WYcm09CTM7quuscrzqmASaLHC/K4Q==" + } + }, + "npm:esbuild-android-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-android-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-android-arm64", + "hash": "sha512-vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==" + } + }, + "npm:webpack-bundle-analyzer": { + "type": "npm", + "name": "npm:webpack-bundle-analyzer", + "data": { + "version": "4.4.2", + "packageName": "webpack-bundle-analyzer", + "hash": "sha512-PIagMYhlEzFfhMYOzs5gFT55DkUdkyrJi/SxJp8EF3YMWhS+T9vvs2EoTetpk5qb6VsCq02eXTlRDOydRhDFAQ==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:babel-types": { + "type": "npm", + "name": "npm:babel-types", + "data": { + "version": "6.26.0", + "packageName": "babel-types", + "hash": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:@jest/fake-timers": { + "type": "npm", + "name": "npm:@jest/fake-timers", + "data": { + "version": "29.7.0", + "packageName": "@jest/fake-timers", + "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" + } + }, + "npm:node-polyfill-webpack-plugin": { + "type": "npm", + "name": "npm:node-polyfill-webpack-plugin", + "data": { + "version": "1.0.2", + "packageName": "node-polyfill-webpack-plugin", + "hash": "sha512-x4dNQ28D/kwvDbp52y6WBOuXs2QhGkIkv8RT2xhBj5JO21iUrNT4aSJyw41Jio3Ima/S0UKCTfHdS6mUOxjYmw==" + } + }, + "npm:postcss-modules": { + "type": "npm", + "name": "npm:postcss-modules", + "data": { + "version": "4.1.3", + "packageName": "postcss-modules", + "hash": "sha512-dBT39hrXe4OAVYJe/2ZuIZ9BzYhOe7t+IhedYeQ2OxKwDpAGlkEN/fR0fGnrbx4BvgbMReRX4hCubYK9cE/pJQ==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:tachometer": { + "type": "npm", + "name": "npm:tachometer", + "data": { + "version": "0.7.0", + "packageName": "tachometer", + "hash": "sha512-163DdzoNkjZlr/m3IpaPMYBOTUc54hzfGSUw7pv9ZoO3OkjDcoGqJGImcrfEDNsw3DD0J/FM5AWjEi2/0W4YZA==" + } + }, + "npm:@emotion/hash@0.9.1": { + "type": "npm", + "name": "npm:@emotion/hash@0.9.1", + "data": { + "version": "0.9.1", + "packageName": "@emotion/hash", + "hash": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" + } + }, + "npm:@babel/plugin-transform-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-rest-spread", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-object-rest-spread", + "hash": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:binary-extensions@1.13.1": { + "type": "npm", + "name": "npm:binary-extensions@1.13.1", + "data": { + "version": "1.13.1", + "packageName": "binary-extensions", + "hash": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + } + }, + "npm:babel-plugin-polyfill-corejs3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3", + "data": { + "version": "0.8.6", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==" + } + }, + "npm:camelcase-keys@2.1.0": { + "type": "npm", + "name": "npm:camelcase-keys@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "camelcase-keys", + "hash": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=" + } + }, + "npm:anchor-markdown-header": { + "type": "npm", + "name": "npm:anchor-markdown-header", + "data": { + "version": "0.5.7", + "packageName": "anchor-markdown-header", + "hash": "sha1-BFBj125qH5zTJ6V6ASaqD97Dcac=" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.7.0", + "packageName": "jest", + "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" + } + }, + "npm:@types/is-function": { + "type": "npm", + "name": "npm:@types/is-function", + "data": { + "version": "1.0.0", + "packageName": "@types/is-function", + "hash": "sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==" + } + }, + "npm:typedarray": { + "type": "npm", + "name": "npm:typedarray", + "data": { + "version": "0.0.6", + "packageName": "typedarray", + "hash": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + } + }, + "npm:@nevware21/ts-utils": { + "type": "npm", + "name": "npm:@nevware21/ts-utils", + "data": { + "version": "0.9.8", + "packageName": "@nevware21/ts-utils", + "hash": "sha512-kZ8s8hcn9jPVX/M7kSsBYrOGlHjqLahmxrG7QeKTk5paeVwfgKdvVCjj5Acb4UGb/ukU1G34U1Z3eb7bbVanyA==" + } + }, + "npm:babel-plugin-polyfill-corejs2": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2", + "data": { + "version": "0.4.6", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + } + }, + "npm:koa-bodyparser": { + "type": "npm", + "name": "npm:koa-bodyparser", + "data": { + "version": "4.3.0", + "packageName": "koa-bodyparser", + "hash": "sha512-uyV8G29KAGwZc4q/0WUAjH+Tsmuv9ImfBUF2oZVyZtaeo0husInagyn/JH85xMSxM0hEk/mbCII5ubLDuqW/Rw==" + } + }, + "npm:lodash.escape@4.0.1": { + "type": "npm", + "name": "npm:lodash.escape@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "lodash.escape", + "hash": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + } + }, + "npm:expand-tilde": { + "type": "npm", + "name": "npm:expand-tilde", + "data": { + "version": "2.0.2", + "packageName": "expand-tilde", + "hash": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=" + } + }, + "npm:slice-ansi@3.0.0": { + "type": "npm", + "name": "npm:slice-ansi@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "slice-ansi", + "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" + } + }, + "npm:@nrwl/jest": { + "type": "npm", + "name": "npm:@nrwl/jest", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/jest", + "hash": "sha512-hZuIK3xXh4HaE6/Ny8hGidjkJ4aLZjnQtPDxKD/423gznQe2FdHx3avoSlbOEOx5Oc6sJ9QGGZLcvckKQ5uWww==" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "8.3.0", + "packageName": "babel-loader", + "hash": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==" + } + }, + "npm:is-typedarray": { + "type": "npm", + "name": "npm:is-typedarray", + "data": { + "version": "1.0.0", + "packageName": "is-typedarray", + "hash": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + } + }, + "npm:monosize-storage-azure": { + "type": "npm", + "name": "npm:monosize-storage-azure", + "data": { + "version": "0.0.3", + "packageName": "monosize-storage-azure", + "hash": "sha512-KmivlWDprIdSSa59Ot9osXB/+niB3hQsbgLFq/SxNh0fOv7UkxIqC6HnnlRPD5aWq07XO6mP0S0iJOSxKLLuWA==" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "2.0.0", + "packageName": "ip", + "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + } + }, + "npm:array-initial": { + "type": "npm", + "name": "npm:array-initial", + "data": { + "version": "1.1.0", + "packageName": "array-initial", + "hash": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "5.1.1", + "packageName": "npm-packlist", + "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" + } + }, + "npm:strip-ansi@4.0.0": { + "type": "npm", + "name": "npm:strip-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-ansi", + "hash": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=" + } + }, + "npm:esbuild-netbsd-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-netbsd-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-netbsd-64", + "hash": "sha512-ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==" + } + }, + "npm:@babel/plugin-transform-flow-strip-types": { + "type": "npm", + "name": "npm:@babel/plugin-transform-flow-strip-types", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-transform-flow-strip-types", + "hash": "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==" + } + }, + "npm:codesandboxer": { + "type": "npm", + "name": "npm:codesandboxer", + "data": { + "version": "1.0.3", + "packageName": "codesandboxer", + "hash": "sha512-LRBGbQ707AsaC8cPEMEr5K5y2EGskg7T5K4RIC30wzgr1LKeLEtB2exy4P+QwUrQKwJOgxmiq1yKPLnKzXWJ+w==" + } + }, + "npm:@storybook/addon-measure": { + "type": "npm", + "name": "npm:@storybook/addon-measure", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-measure", + "hash": "sha512-j77WX/v6qpWK8ZuYscWLIc+Am4/WOJRsVgyXLIw1EZIviQsjoXPo7mmyoTneEIbbHfPtWlLRbtmkjh8DAVDrCA==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.3", + "packageName": "@types/eslint-scope", + "hash": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:@storybook/addon-controls": { + "type": "npm", + "name": "npm:@storybook/addon-controls", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-controls", + "hash": "sha512-q5y0TvD0stvQoJZ2PnFmmKIRNSOI4/k2NKyZq//J2cBUBcP1reYlFxdsNwLZWmAFpSIkc2+nsliEzNxU1WByoA==" + } + }, + "npm:chai": { + "type": "npm", + "name": "npm:chai", + "data": { + "version": "4.3.6", + "packageName": "chai", + "hash": "sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==" + } + }, + "npm:@microsoft/loader-load-themed-styles": { + "type": "npm", + "name": "npm:@microsoft/loader-load-themed-styles", + "data": { + "version": "2.0.17", + "packageName": "@microsoft/loader-load-themed-styles", + "hash": "sha512-FyQdwbnkgta2pJU4PjyeLp/1/V5OBpZKrUJgrQAhjO7ApCj3X7/eYCxn0DZ+EMNjJKBKF9PUoM0BDPtSZAzJjg==" + } + }, + "npm:@octokit/plugin-paginate-rest@6.1.2": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest@6.1.2", + "data": { + "version": "6.1.2", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" + } + }, + "npm:cors": { + "type": "npm", + "name": "npm:cors", + "data": { + "version": "2.8.5", + "packageName": "cors", + "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" + } + }, + "npm:is-plain-obj@2.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + } + }, + "npm:assert-plus": { + "type": "npm", + "name": "npm:assert-plus", + "data": { + "version": "1.0.0", + "packageName": "assert-plus", + "hash": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + }, + "npm:assertion-error": { + "type": "npm", + "name": "npm:assertion-error", + "data": { + "version": "1.1.0", + "packageName": "assertion-error", + "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" + } + }, + "npm:ansi-colors@3.2.3": { + "type": "npm", + "name": "npm:ansi-colors@3.2.3", + "data": { + "version": "3.2.3", + "packageName": "ansi-colors", + "hash": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==" + } + }, + "npm:@effect/data@0.12.5": { + "type": "npm", + "name": "npm:@effect/data@0.12.5", + "data": { + "version": "0.12.5", + "packageName": "@effect/data", + "hash": "sha512-gmHSsG4earpIWufwCNT1R1pZ5BIe7z0bMmexnAFOT9csc8bwTSzk1e5QAd/65/vyczf/cMMrXgjpasdxlJ5POA==" + } + }, + "npm:minipass-fetch@3.0.3": { + "type": "npm", + "name": "npm:minipass-fetch@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "minipass-fetch", + "hash": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "npm:lodash.templatesettings": { + "type": "npm", + "name": "npm:lodash.templatesettings", + "data": { + "version": "3.1.1", + "packageName": "lodash.templatesettings", + "hash": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=" + } + }, + "npm:proxy-from-env@1.0.0": { + "type": "npm", + "name": "npm:proxy-from-env@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "proxy-from-env", + "hash": "sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=" + } + }, + "npm:asn1.js": { + "type": "npm", + "name": "npm:asn1.js", + "data": { + "version": "4.10.1", + "packageName": "asn1.js", + "hash": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==" + } + }, + "npm:@npmcli/git": { + "type": "npm", + "name": "npm:@npmcli/git", + "data": { + "version": "4.1.0", + "packageName": "@npmcli/git", + "hash": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==" + } + }, + "npm:is-data-descriptor": { + "type": "npm", + "name": "npm:is-data-descriptor", + "data": { + "version": "1.0.0", + "packageName": "is-data-descriptor", + "hash": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:resolve-path": { + "type": "npm", + "name": "npm:resolve-path", + "data": { + "version": "1.4.0", + "packageName": "resolve-path", + "hash": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==" + } + }, + "npm:@esbuild/android-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/android-x64", + "hash": "sha512-qK/TpmHt2M/Hg82WXHRc/W/2SGo/l1thtDHZWqFq7oi24AjZ4O/CpPSu6ZuYKFkEgmZlFoa7CooAyYmuvnaG8w==" + } + }, + "npm:lower-case@2.0.2": { + "type": "npm", + "name": "npm:lower-case@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "lower-case", + "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + } + }, + "npm:esbuild-windows-32@0.14.51": { + "type": "npm", + "name": "npm:esbuild-windows-32@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-windows-32", + "hash": "sha512-4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==" + } + }, + "npm:stealthy-require": { + "type": "npm", + "name": "npm:stealthy-require", + "data": { + "version": "1.1.1", + "packageName": "stealthy-require", + "hash": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + } + }, + "npm:supports-color@6.1.0": { + "type": "npm", + "name": "npm:supports-color@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "supports-color", + "hash": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==" + } + }, + "npm:xml2js": { + "type": "npm", + "name": "npm:xml2js", + "data": { + "version": "0.4.23", + "packageName": "xml2js", + "hash": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" + } + }, + "npm:ramda@0.21.0": { + "type": "npm", + "name": "npm:ramda@0.21.0", + "data": { + "version": "0.21.0", + "packageName": "ramda", + "hash": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=" + } + }, + "npm:ignore-walk@3.0.3": { + "type": "npm", + "name": "npm:ignore-walk@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "ignore-walk", + "hash": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==" + } + }, + "npm:npm-registry-fetch@8.1.3": { + "type": "npm", + "name": "npm:npm-registry-fetch@8.1.3", + "data": { + "version": "8.1.3", + "packageName": "npm-registry-fetch", + "hash": "sha512-xpBFcg13wkFR0SsscvemmrIe1Sxe1SPgGUOAb7+5Uo6fR8SIRMenMHeDSjfyulv1px66/y0Ib40rtKO20PcgPg==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "7.3.1", + "packageName": "espree", + "hash": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" + } + }, + "npm:@emotion/cache@11.4.0": { + "type": "npm", + "name": "npm:@emotion/cache@11.4.0", + "data": { + "version": "11.4.0", + "packageName": "@emotion/cache", + "hash": "sha512-Zx70bjE7LErRO9OaZrhf22Qye1y4F7iDl+ITjet0J+i+B88PrAOBkKvaAWhxsZf72tDLajwCgfCjJ2dvH77C3g==" + } + }, + "npm:@jest/test-sequencer": { + "type": "npm", + "name": "npm:@jest/test-sequencer", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-sequencer", + "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" + } + }, + "npm:use-subscription": { + "type": "npm", + "name": "npm:use-subscription", + "data": { + "version": "1.4.1", + "packageName": "use-subscription", + "hash": "sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ==" + } + }, + "npm:date-utils": { + "type": "npm", + "name": "npm:date-utils", + "data": { + "version": "1.2.21", + "packageName": "date-utils", + "hash": "sha512-wJMBjqlwXR0Iv0wUo/lFbhSQ7MmG1hl36iuxuE91kW+5b5sWbase73manEqNH9sOLFAMG83B4ffNKq9/Iq0FVA==" + } + }, + "npm:html-to-react": { + "type": "npm", + "name": "npm:html-to-react", + "data": { + "version": "1.4.2", + "packageName": "html-to-react", + "hash": "sha512-TdTfxd95sRCo6QL8admCkE7mvNNrXtGoVr1dyS+7uvc8XCqAymnf/6ckclvnVbQNUo2Nh21VPwtfEHd0khiV7g==" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.2.5", + "packageName": "array.prototype.flat", + "hash": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==" + } + }, + "npm:invariant": { + "type": "npm", + "name": "npm:invariant", + "data": { + "version": "2.2.4", + "packageName": "invariant", + "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" + } + }, + "npm:lines-and-columns@2.0.3": { + "type": "npm", + "name": "npm:lines-and-columns@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "lines-and-columns", + "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + } + }, + "npm:kind-of@1.1.0": { + "type": "npm", + "name": "npm:kind-of@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "kind-of", + "hash": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=" + } + }, + "npm:load-json-file@4.0.0": { + "type": "npm", + "name": "npm:load-json-file@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=" + } + }, + "npm:lodash._reevaluate": { + "type": "npm", + "name": "npm:lodash._reevaluate", + "data": { + "version": "3.0.0", + "packageName": "lodash._reevaluate", + "hash": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=" + } + }, + "npm:postcss-flexbugs-fixes": { + "type": "npm", + "name": "npm:postcss-flexbugs-fixes", + "data": { + "version": "4.2.1", + "packageName": "postcss-flexbugs-fixes", + "hash": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==" + } + }, + "npm:character-entities": { + "type": "npm", + "name": "npm:character-entities", + "data": { + "version": "1.2.3", + "packageName": "character-entities", + "hash": "sha512-yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w==" + } + }, + "npm:@types/normalize-package-data": { + "type": "npm", + "name": "npm:@types/normalize-package-data", + "data": { + "version": "2.4.0", + "packageName": "@types/normalize-package-data", + "hash": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:flamegrill": { + "type": "npm", + "name": "npm:flamegrill", + "data": { + "version": "0.2.0", + "packageName": "flamegrill", + "hash": "sha512-p4TMMR47KjZCYy+rLucMfoVOXFPAwxvF+NmNKmDJV0bPzKM3Q19txSiHzIsOuCF9WDWrbTgyA97RT1HI+exQ1g==" + } + }, + "npm:postcss-modules-extract-imports@2.0.0": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==" + } + }, + "npm:regex-not": { + "type": "npm", + "name": "npm:regex-not", + "data": { + "version": "1.0.2", + "packageName": "regex-not", + "hash": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==" + } + }, + "npm:@types/aria-query": { + "type": "npm", + "name": "npm:@types/aria-query", + "data": { + "version": "4.2.1", + "packageName": "@types/aria-query", + "hash": "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:socket.io-adapter": { + "type": "npm", + "name": "npm:socket.io-adapter", + "data": { + "version": "2.4.0", + "packageName": "socket.io-adapter", + "hash": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + } + }, + "npm:parse-asn1": { + "type": "npm", + "name": "npm:parse-asn1", + "data": { + "version": "5.1.4", + "packageName": "parse-asn1", + "hash": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.23.0", + "packageName": "@babel/types", + "hash": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==" + } + }, + "npm:@szmarczak/http-timer@5.0.1": { + "type": "npm", + "name": "npm:@szmarczak/http-timer@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==" + } + }, + "npm:@webpack-cli/info": { + "type": "npm", + "name": "npm:@webpack-cli/info", + "data": { + "version": "1.5.0", + "packageName": "@webpack-cli/info", + "hash": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==" + } + }, + "npm:git-semver-tags": { + "type": "npm", + "name": "npm:git-semver-tags", + "data": { + "version": "5.0.1", + "packageName": "git-semver-tags", + "hash": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==" + } + }, + "npm:http2-wrapper": { + "type": "npm", + "name": "npm:http2-wrapper", + "data": { + "version": "1.0.0-beta.5.2", + "packageName": "http2-wrapper", + "hash": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:ssri@9.0.1": { + "type": "npm", + "name": "npm:ssri@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "ssri", + "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" + } + }, + "npm:is-extendable": { + "type": "npm", + "name": "npm:is-extendable", + "data": { + "version": "0.1.1", + "packageName": "is-extendable", + "hash": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + }, + "npm:mute-stream@1.0.0": { + "type": "npm", + "name": "npm:mute-stream@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "mute-stream", + "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:@ctrl/tinycolor": { + "type": "npm", + "name": "npm:@ctrl/tinycolor", + "data": { + "version": "3.3.4", + "packageName": "@ctrl/tinycolor", + "hash": "sha512-8vmPV/nIULFDWsnJalQJDqFLC2uTPx6A/ASA2t27QGp+7oXnbWWXCe0uV8xasIH2rGbI/XoB2vmkdP/94WvMrw==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "5.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:pify@5.0.0": { + "type": "npm", + "name": "npm:pify@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "pify", + "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" + } + }, + "npm:@types/react-virtualized": { + "type": "npm", + "name": "npm:@types/react-virtualized", + "data": { + "version": "9.21.8", + "packageName": "@types/react-virtualized", + "hash": "sha512-7fZoA0Azd2jLIE9XC37fMZgMqaJe3o3pfzGjvrzphoKjBCdT4oNl6wikvo4dDMESDnpkZ8DvVTc7aSe4DW86Ew==" + } + }, + "npm:domhandler@3.0.0": { + "type": "npm", + "name": "npm:domhandler@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "domhandler", + "hash": "sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==" + } + }, + "npm:source-map@0.7.3": { + "type": "npm", + "name": "npm:source-map@0.7.3", + "data": { + "version": "0.7.3", + "packageName": "source-map", + "hash": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + }, + "npm:@types/sizzle": { + "type": "npm", + "name": "npm:@types/sizzle", + "data": { + "version": "2.3.2", + "packageName": "@types/sizzle", + "hash": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==" + } + }, + "npm:progress": { + "type": "npm", + "name": "npm:progress", + "data": { + "version": "2.0.3", + "packageName": "progress", + "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + } + }, + "npm:randexp": { + "type": "npm", + "name": "npm:randexp", + "data": { + "version": "0.4.6", + "packageName": "randexp", + "hash": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==" + } + }, + "npm:unherit": { + "type": "npm", + "name": "npm:unherit", + "data": { + "version": "1.1.3", + "packageName": "unherit", + "hash": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==" + } + }, + "npm:@storybook/addon-actions": { + "type": "npm", + "name": "npm:@storybook/addon-actions", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-actions", + "hash": "sha512-cnLzVK1S+EydFDSuvxMmMAxVqNXijBGdV9QTgsu6ys5sOkoiXRETKZmxuN8/ZRbkfc4N+1KAylSCZOOHzBQTBQ==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:swc-plugin-de-indent-template-literal": { + "type": "npm", + "name": "npm:swc-plugin-de-indent-template-literal", + "data": { + "version": "1.0.0", + "packageName": "swc-plugin-de-indent-template-literal", + "hash": "sha512-Qb4G8h8hKlwWYFCJUVbmiELRmjzBM1hPmJh5+p0GiY/b6imGSIuEWV2zBAYcQyNvR2DI2MJ3OxJC2SCT9Ld7lA==" + } + }, + "npm:eslint-plugin-es@3.0.1": { + "type": "npm", + "name": "npm:eslint-plugin-es@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "eslint-plugin-es", + "hash": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" + } + }, + "npm:glob-to-regexp@0.3.0": { + "type": "npm", + "name": "npm:glob-to-regexp@0.3.0", + "data": { + "version": "0.3.0", + "packageName": "glob-to-regexp", + "hash": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" + } + }, + "npm:@scarf/scarf": { + "type": "npm", + "name": "npm:@scarf/scarf", + "data": { + "version": "1.0.5", + "packageName": "@scarf/scarf", + "hash": "sha512-9WKaGVpQH905Aqkk+BczFEeLQxS07rl04afFRPUG9IcSlOwmo5EVVuuNu0d4M9LMYucObvK0LoAe+5HfMW2QhQ==" + } + }, + "npm:mixin-deep": { + "type": "npm", + "name": "npm:mixin-deep", + "data": { + "version": "1.3.2", + "packageName": "mixin-deep", + "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:esbuild-linux-s390x@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-s390x@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-s390x", + "hash": "sha512-kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==" + } + }, + "npm:@types/d3-axis": { + "type": "npm", + "name": "npm:@types/d3-axis", + "data": { + "version": "1.0.10", + "packageName": "@types/d3-axis", + "hash": "sha512-5YF0wfdQMPKw01VAAupLIlg/T4pn5M3/vL9u0KZjiemnVnnKBEWE24na4X1iW+TfZiYJ8j+BgK2KFYnAAT54Ug==" + } + }, + "npm:strip-comments": { + "type": "npm", + "name": "npm:strip-comments", + "data": { + "version": "2.0.1", + "packageName": "strip-comments", + "hash": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.0-rc.46", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" + } + }, + "npm:caseless": { + "type": "npm", + "name": "npm:caseless", + "data": { + "version": "0.12.0", + "packageName": "caseless", + "hash": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + } + }, + "npm:unist-builder": { + "type": "npm", + "name": "npm:unist-builder", + "data": { + "version": "2.0.3", + "packageName": "unist-builder", + "hash": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:ts-invariant": { + "type": "npm", + "name": "npm:ts-invariant", + "data": { + "version": "0.10.3", + "packageName": "ts-invariant", + "hash": "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==" + } + }, + "npm:@types/circular-dependency-plugin": { + "type": "npm", + "name": "npm:@types/circular-dependency-plugin", + "data": { + "version": "5.0.5", + "packageName": "@types/circular-dependency-plugin", + "hash": "sha512-JU1sYQWNbUluWHseLUfokakx18+BXRA9Bxji56hdY5NW0nvrJSJd4SNAl0Btpm5ima9BnUkoGEcW/2PH1QuWQA==" + } + }, + "npm:is-text-path": { + "type": "npm", + "name": "npm:is-text-path", + "data": { + "version": "1.0.1", + "packageName": "is-text-path", + "hash": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@^7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:pascal-case@3.1.2": { + "type": "npm", + "name": "npm:pascal-case@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "pascal-case", + "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + } + }, + "npm:ansi-gray": { + "type": "npm", + "name": "npm:ansi-gray", + "data": { + "version": "0.1.1", + "packageName": "ansi-gray", + "hash": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:schema-utils@2.7.0": { + "type": "npm", + "name": "npm:schema-utils@2.7.0", + "data": { + "version": "2.7.0", + "packageName": "schema-utils", + "hash": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==" + } + }, + "npm:deflate-js": { + "type": "npm", + "name": "npm:deflate-js", + "data": { + "version": "0.2.3", + "packageName": "deflate-js", + "hash": "sha1-+Fq7WOvFFRowYUdHPVfD5PfkQms=" + } + }, + "npm:cacache@17.1.3": { + "type": "npm", + "name": "npm:cacache@17.1.3", + "data": { + "version": "17.1.3", + "packageName": "cacache", + "hash": "sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + } + }, + "npm:enzyme-shallow-equal": { + "type": "npm", + "name": "npm:enzyme-shallow-equal", + "data": { + "version": "1.0.4", + "packageName": "enzyme-shallow-equal", + "hash": "sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==" + } + }, + "npm:@phenomnomnominal/tsquery@5.0.1": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" + } + }, + "npm:big-integer": { + "type": "npm", + "name": "npm:big-integer", + "data": { + "version": "1.6.51", + "packageName": "big-integer", + "hash": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" + } + }, + "npm:extend-shallow": { + "type": "npm", + "name": "npm:extend-shallow", + "data": { + "version": "2.0.1", + "packageName": "extend-shallow", + "hash": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" + } + }, + "npm:buffer-indexof": { + "type": "npm", + "name": "npm:buffer-indexof", + "data": { + "version": "1.1.1", + "packageName": "buffer-indexof", + "hash": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + } + }, + "npm:hasurl": { + "type": "npm", + "name": "npm:hasurl", + "data": { + "version": "1.0.0", + "packageName": "hasurl", + "hash": "sha512-43ypUd3DbwyCT01UYpA99AEZxZ4aKtRxWGBHEIbjcOsUghd9YUON0C+JF6isNjaiwC/UF5neaUudy6JS9jZPZQ==" + } + }, + "npm:is-data-descriptor@0.1.4": { + "type": "npm", + "name": "npm:is-data-descriptor@0.1.4", + "data": { + "version": "0.1.4", + "packageName": "is-data-descriptor", + "hash": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=" + } + }, + "npm:just-task-logger": { + "type": "npm", + "name": "npm:just-task-logger", + "data": { + "version": "1.2.0", + "packageName": "just-task-logger", + "hash": "sha512-pa5FfJMiJ11KgCXDSfnbu/Enoiwm3ReOrSO9tP0CK69/yYtfsDhE8g6S0v6cCdDYGa4zpVkX7E4G1u3L7lAPTw==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "1.3.0", + "packageName": "minipass-fetch", + "hash": "sha512-Yb23ESZZ/8QxiBvSpJ4atbVMVDx2CXrerzrtQzQ67eLqKg+zFIkYFTagk3xh6fdo+e/FvDtVuCD4QcuYDRR3hw==" + } + }, + "npm:@types/events": { + "type": "npm", + "name": "npm:@types/events", + "data": { + "version": "3.0.0", + "packageName": "@types/events", + "hash": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" + } + }, + "npm:lodash._isiterateecall": { + "type": "npm", + "name": "npm:lodash._isiterateecall", + "data": { + "version": "3.0.9", + "packageName": "lodash._isiterateecall", + "hash": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" + } + }, + "npm:objectorarray": { + "type": "npm", + "name": "npm:objectorarray", + "data": { + "version": "1.0.4", + "packageName": "objectorarray", + "hash": "sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.3.0", + "packageName": "on-finished", + "hash": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "3.2.2", + "packageName": "split2", + "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" + } + }, + "npm:@types/d3-selection": { + "type": "npm", + "name": "npm:@types/d3-selection", + "data": { + "version": "1.4.1", + "packageName": "@types/d3-selection", + "hash": "sha512-bv8IfFYo/xG6dxri9OwDnK3yCagYPeRIjTlrcdYJSx+FDWlCeBDepIHUpqROmhPtZ53jyna0aUajZRk0I3rXNA==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.3.2", + "packageName": "type-check", + "hash": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=" + } + }, + "npm:write-json-file": { + "type": "npm", + "name": "npm:write-json-file", + "data": { + "version": "3.2.0", + "packageName": "write-json-file", + "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" + } + }, + "npm:configstore": { + "type": "npm", + "name": "npm:configstore", + "data": { + "version": "3.1.2", + "packageName": "configstore", + "hash": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==" + } + }, + "npm:react-error-boundary": { + "type": "npm", + "name": "npm:react-error-boundary", + "data": { + "version": "3.1.0", + "packageName": "react-error-boundary", + "hash": "sha512-lmPrdi5SLRJR+AeJkqdkGlW/CRkAUvZnETahK58J4xb5wpbfDngasEGu+w0T1iXEhVrYBJZeW+c4V1hILCnMWQ==" + } + }, + "npm:@types/through2": { + "type": "npm", + "name": "npm:@types/through2", + "data": { + "version": "2.0.34", + "packageName": "@types/through2", + "hash": "sha512-nhRG8+RuG/L+0fAZBQYaRflXKjTrHOKH8MFTChnf+dNVMxA3wHYYrfj0tztK0W51ABXjGfRCDc0vRkecCOrsow==" + } + }, + "npm:@linaria/logger": { + "type": "npm", + "name": "npm:@linaria/logger", + "data": { + "version": "3.0.0-beta.20", + "packageName": "@linaria/logger", + "hash": "sha512-wCxWnldCHf7HXdLG3QtbKyBur+z5V1qZTouSEvcVYDfd4aSRPOi/jLdwsZlsUq2PFGpA3jW6JnreZJ/vxuEl7g==" + } + }, + "npm:ansi-to-html": { + "type": "npm", + "name": "npm:ansi-to-html", + "data": { + "version": "0.6.13", + "packageName": "ansi-to-html", + "hash": "sha512-Ys2/umuaTlQvP9DLkaa7UzRKF2FLrfod/hNHXS9QhXCrw7seObG6ksOGmNz3UoK+adwM8L9vQfG7mvaxfJ3Jvw==" + } + }, + "npm:@esbuild/linux-s390x@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-U+RinR6aXXABFCcAY4gSlv4CL1oOVvSSCdseQmGO66H+XyuQGZIUdhG56SZaDJQcLmrSfRmx5XZOWyCJPRqS7g==" + } + }, + "npm:@azure/core-rest-pipeline": { + "type": "npm", + "name": "npm:@azure/core-rest-pipeline", + "data": { + "version": "1.3.2", + "packageName": "@azure/core-rest-pipeline", + "hash": "sha512-kymICKESeHBpVLgQiAxllgWdSTopkqtmfPac8ITwMCxNEC6hzbSpqApYbjzxbBNkBMgoD4GESo6LLhR/sPh6kA==" + } + }, + "npm:enhanced-resolve@4.5.0": { + "type": "npm", + "name": "npm:enhanced-resolve@4.5.0", + "data": { + "version": "4.5.0", + "packageName": "enhanced-resolve", + "hash": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==" + } + }, + "npm:extend-shallow@1.1.4": { + "type": "npm", + "name": "npm:extend-shallow@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "extend-shallow", + "hash": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=" + } + }, + "npm:default-browser-id": { + "type": "npm", + "name": "npm:default-browser-id", + "data": { + "version": "1.0.4", + "packageName": "default-browser-id", + "hash": "sha1-5Z0JpdFXuCi4dsJoFuYcPSosIDo=" + } + }, + "npm:npm-package-arg@8.1.1": { + "type": "npm", + "name": "npm:npm-package-arg@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "npm-package-arg", + "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" + } + }, + "npm:react-textarea-autosize": { + "type": "npm", + "name": "npm:react-textarea-autosize", + "data": { + "version": "7.0.4", + "packageName": "react-textarea-autosize", + "hash": "sha512-1cC8pFSrIVH92aE+UKxGQ2Gqq43qdIcMscJKScEFeBNemn6gHa+NwKqdXkHxxg5H6uuvW+cPpJPTes6zh90M+A==" + } + }, + "npm:whatwg-mimetype": { + "type": "npm", + "name": "npm:whatwg-mimetype", + "data": { + "version": "3.0.0", + "packageName": "whatwg-mimetype", + "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + } + }, + "npm:ws@8.2.3": { + "type": "npm", + "name": "npm:ws@8.2.3", + "data": { + "version": "8.2.3", + "packageName": "ws", + "hash": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==" + } + }, + "npm:@griffel/core": { + "type": "npm", + "name": "npm:@griffel/core", + "data": { + "version": "1.14.1", + "packageName": "@griffel/core", + "hash": "sha512-KQ6yueap1zff9TJrn7MdfSAHDMDVP6Ec97gnpCi4NOeKiyCyT13MwPCmkkK0o/poaV1f9MdHhUTQZCpK0QtxzQ==" + } + }, + "npm:d3-geo": { + "type": "npm", + "name": "npm:d3-geo", + "data": { + "version": "1.11.9", + "packageName": "d3-geo", + "hash": "sha512-9edcH6J3s/Aa3KJITWqFJbyB/8q3mMlA9Fi7z6yy+FAYMnRaxmC7jBhUnsINxVWD14GmqX3DK8uk7nV6/Ekt4A==" + } + }, + "npm:d3-sankey@0.7.1": { + "type": "npm", + "name": "npm:d3-sankey@0.7.1", + "data": { + "version": "0.7.1", + "packageName": "d3-sankey", + "hash": "sha1-0imDImj8aaf+yEgD6WwiVqYUxSE=" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.25.7", + "packageName": "magic-string", + "hash": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:x-is-string": { + "type": "npm", + "name": "npm:x-is-string", + "data": { + "version": "0.1.0", + "packageName": "x-is-string", + "hash": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=" + } + }, + "npm:number-is-nan": { + "type": "npm", + "name": "npm:number-is-nan", + "data": { + "version": "1.0.1", + "packageName": "number-is-nan", + "hash": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + } + }, + "npm:espree@9.6.1": { + "type": "npm", + "name": "npm:espree@9.6.1", + "data": { + "version": "9.6.1", + "packageName": "espree", + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" + } + }, + "npm:matchdep": { + "type": "npm", + "name": "npm:matchdep", + "data": { + "version": "2.0.0", + "packageName": "matchdep", + "hash": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=" + } + }, + "npm:camelcase@2.1.1": { + "type": "npm", + "name": "npm:camelcase@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "camelcase", + "hash": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" + } + }, + "npm:generic-names": { + "type": "npm", + "name": "npm:generic-names", + "data": { + "version": "2.0.1", + "packageName": "generic-names", + "hash": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==" + } + }, + "npm:@babel/helper-optimise-call-expression": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" + } + }, + "npm:ansi-escape-sequences": { + "type": "npm", + "name": "npm:ansi-escape-sequences", + "data": { + "version": "6.2.1", + "packageName": "ansi-escape-sequences", + "hash": "sha512-0gK95MrLXv+Vy5h4eKGvSX1yXopBqSYBi3/w4hekUxs/hHakF6asH9Gg7UXbb7IH9weAlVIrUzVOITNBr8Imag==" + } + }, + "npm:ripemd160": { + "type": "npm", + "name": "npm:ripemd160", + "data": { + "version": "2.0.2", + "packageName": "ripemd160", + "hash": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==" + } + }, + "npm:asap": { + "type": "npm", + "name": "npm:asap", + "data": { + "version": "2.0.6", + "packageName": "asap", + "hash": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:parse-entities@2.0.0": { + "type": "npm", + "name": "npm:parse-entities@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "parse-entities", + "hash": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==" + } + }, + "npm:@types/undertaker-registry": { + "type": "npm", + "name": "npm:@types/undertaker-registry", + "data": { + "version": "1.0.1", + "packageName": "@types/undertaker-registry", + "hash": "sha512-Z4TYuEKn9+RbNVk1Ll2SS4x1JeLHecolIbM/a8gveaHsW0Hr+RQMraZACwTO2VD7JvepgA6UO1A1VrbktQrIbQ==" + } + }, + "npm:babylon": { + "type": "npm", + "name": "npm:babylon", + "data": { + "version": "6.18.0", + "packageName": "babylon", + "hash": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + } + }, + "npm:repeat-element": { + "type": "npm", + "name": "npm:repeat-element", + "data": { + "version": "1.1.3", + "packageName": "repeat-element", + "hash": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + } + }, + "npm:os-homedir": { + "type": "npm", + "name": "npm:os-homedir", + "data": { + "version": "1.0.2", + "packageName": "os-homedir", + "hash": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + } + }, + "npm:stream-browserify@2.0.2": { + "type": "npm", + "name": "npm:stream-browserify@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "stream-browserify", + "hash": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==" + } + }, + "npm:ora@5.4.1": { + "type": "npm", + "name": "npm:ora@5.4.1", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, + "npm:default-compare": { + "type": "npm", + "name": "npm:default-compare", + "data": { + "version": "1.0.0", + "packageName": "default-compare", + "hash": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==" + } + }, + "npm:semver-greatest-satisfied-range": { + "type": "npm", + "name": "npm:semver-greatest-satisfied-range", + "data": { + "version": "1.1.0", + "packageName": "semver-greatest-satisfied-range", + "hash": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=" + } + }, + "npm:@rollup/pluginutils": { + "type": "npm", + "name": "npm:@rollup/pluginutils", + "data": { + "version": "3.1.0", + "packageName": "@rollup/pluginutils", + "hash": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "1.1.2", + "packageName": "npm-bundled", + "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" + } + }, + "npm:traverse@0.3.9": { + "type": "npm", + "name": "npm:traverse@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "traverse", + "hash": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=" + } + }, + "npm:diff-sequences@27.5.1": { + "type": "npm", + "name": "npm:diff-sequences@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "diff-sequences", + "hash": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" + } + }, + "npm:find-webpack": { + "type": "npm", + "name": "npm:find-webpack", + "data": { + "version": "2.2.1", + "packageName": "find-webpack", + "hash": "sha512-OdDtn2AzQvu3l9U1TS5ALc7uTVcLK/yv3fhjo+Pz7yuv4hG3ANKnbkKnPIPZ5ofd9mpYe6wRf5g5H4X9Lx48vQ==" + } + }, + "npm:@types/react-frame-component": { + "type": "npm", + "name": "npm:@types/react-frame-component", + "data": { + "version": "4.1.1", + "packageName": "@types/react-frame-component", + "hash": "sha512-7soxaTJ030rtC2lFlaFzzJyCY4rsPwOLxfw/eGnbEq/wq80e71outSL6dUXM9bOh2qMhM1xnp+EMEhjdVvIlkA==" + } + }, + "npm:find-yarn-workspace-root": { + "type": "npm", + "name": "npm:find-yarn-workspace-root", + "data": { + "version": "2.0.0", + "packageName": "find-yarn-workspace-root", + "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "1.1.3", + "packageName": "read-package-json-fast", + "hash": "sha512-MmFqiyfCXV2Dmm4jH24DEGhxdkUDFivJQj4oPZQPOKywxR7HWBE6WnMWDAapfFHi3wm1b+mhR+XHlUH0CL8axg==" + } + }, + "npm:constant-case": { + "type": "npm", + "name": "npm:constant-case", + "data": { + "version": "2.0.0", + "packageName": "constant-case", + "hash": "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "1.0.0", + "packageName": "shebang-regex", + "hash": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.4", + "packageName": "string.prototype.trimstart", + "hash": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==" + } + }, + "npm:azure-storage": { + "type": "npm", + "name": "npm:azure-storage", + "data": { + "version": "2.10.7", + "packageName": "azure-storage", + "hash": "sha512-4oeFGtn3Ziw/fGs/zkoIpKKtygnCVIcZwzJ7UQzKTxhkGQqVCByOFbYqMGYR3L+wOsunX9lNfD0jc51SQuKSSA==" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" + } + }, + "npm:@tsconfig/node10": { + "type": "npm", + "name": "npm:@tsconfig/node10", + "data": { + "version": "1.0.9", + "packageName": "@tsconfig/node10", + "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" + } + }, + "npm:@dnd-kit/core": { + "type": "npm", + "name": "npm:@dnd-kit/core", + "data": { + "version": "6.0.8", + "packageName": "@dnd-kit/core", + "hash": "sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA==" + } + }, + "npm:ast-types-flow": { + "type": "npm", + "name": "npm:ast-types-flow", + "data": { + "version": "0.0.7", + "packageName": "ast-types-flow", + "hash": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + } + }, + "npm:es5-shim": { + "type": "npm", + "name": "npm:es5-shim", + "data": { + "version": "4.5.13", + "packageName": "es5-shim", + "hash": "sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw==" + } + }, + "npm:execa@4.1.0": { + "type": "npm", + "name": "npm:execa@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "execa", + "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + } + }, + "npm:fs-minipass@1.2.7": { + "type": "npm", + "name": "npm:fs-minipass@1.2.7", + "data": { + "version": "1.2.7", + "packageName": "fs-minipass", + "hash": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "2.0.1", + "packageName": "defer-to-connect", + "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + } + }, + "npm:global-prefix": { + "type": "npm", + "name": "npm:global-prefix", + "data": { + "version": "1.0.2", + "packageName": "global-prefix", + "hash": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "4.1.1", + "packageName": "icss-utils", + "hash": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==" + } + }, + "npm:react": { + "type": "npm", + "name": "npm:react", + "data": { + "version": "17.0.2", + "packageName": "react", + "hash": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.2.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg==" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" + } + }, + "npm:split-on-first": { + "type": "npm", + "name": "npm:split-on-first", + "data": { + "version": "1.1.0", + "packageName": "split-on-first", + "hash": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.8.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==" + } + }, + "npm:typical@4.0.0": { + "type": "npm", + "name": "npm:typical@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "typical", + "hash": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" + } + }, + "npm:ajv@5.5.2": { + "type": "npm", + "name": "npm:ajv@5.5.2", + "data": { + "version": "5.5.2", + "packageName": "ajv", + "hash": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=" + } + }, + "npm:p-cancelable@3.0.0": { + "type": "npm", + "name": "npm:p-cancelable@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-cancelable", + "hash": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "7.3.3", + "packageName": "inquirer", + "hash": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.5", + "packageName": "stack-utils", + "hash": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==" + } + }, + "npm:@charlietango/use-script": { + "type": "npm", + "name": "npm:@charlietango/use-script", + "data": { + "version": "2.1.1", + "packageName": "@charlietango/use-script", + "hash": "sha512-g6sbWV4Vg0eqbhL1z90dO3ZsMrF0EHWCw0//M4iE9OwJf9r7x0y7a+KcPb2+Myu96tT35NsmNnIeww4rSG95jQ==" + } + }, + "npm:stream-each": { + "type": "npm", + "name": "npm:stream-each", + "data": { + "version": "1.2.3", + "packageName": "stream-each", + "hash": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==" + } + }, + "npm:stackframe": { + "type": "npm", + "name": "npm:stackframe", + "data": { + "version": "1.2.0", + "packageName": "stackframe", + "hash": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + } + }, + "npm:@swc/types": { + "type": "npm", + "name": "npm:@swc/types", + "data": { + "version": "0.1.5", + "packageName": "@swc/types", + "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.3.5", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==" + } + }, + "npm:glob-parent@3.1.0": { + "type": "npm", + "name": "npm:glob-parent@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "glob-parent", + "hash": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=" + } + }, + "npm:qs@6.5.3": { + "type": "npm", + "name": "npm:qs@6.5.3", + "data": { + "version": "6.5.3", + "packageName": "qs", + "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" + } + }, + "npm:@cnakazawa/watch": { + "type": "npm", + "name": "npm:@cnakazawa/watch", + "data": { + "version": "1.0.3", + "packageName": "@cnakazawa/watch", + "hash": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==" + } + }, + "npm:param-case": { + "type": "npm", + "name": "npm:param-case", + "data": { + "version": "2.1.1", + "packageName": "param-case", + "hash": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=" + } + }, + "npm:pixel-buffer-diff-folders": { + "type": "npm", + "name": "npm:pixel-buffer-diff-folders", + "data": { + "version": "1.3.0", + "packageName": "pixel-buffer-diff-folders", + "hash": "sha512-EYARjQXOAN/XKdnUiJC2JX6GdyJ1hv1MXZlGbPdB6sAKxFJJN4Cl1zZcHCVKh2eOAaWEvegTctx0VNRRrcqeog==" + } + }, + "npm:has-values": { + "type": "npm", + "name": "npm:has-values", + "data": { + "version": "1.0.0", + "packageName": "has-values", + "hash": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=" + } + }, + "npm:locate-path@7.1.1": { + "type": "npm", + "name": "npm:locate-path@7.1.1", + "data": { + "version": "7.1.1", + "packageName": "locate-path", + "hash": "sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==" + } + }, + "npm:w3c-xmlserializer": { + "type": "npm", + "name": "npm:w3c-xmlserializer", + "data": { + "version": "4.0.0", + "packageName": "w3c-xmlserializer", + "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" + } + }, + "npm:json-edm-parser": { + "type": "npm", + "name": "npm:json-edm-parser", + "data": { + "version": "0.1.2", + "packageName": "json-edm-parser", + "hash": "sha512-J1U9mk6lf8dPULcaMwALXB6yel3cJyyhk9Z8FQ4sMwiazNwjaUhegIcpZyZFNMvLRtnXwh+TkCjX9uYUObBBYA==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" + } + }, + "npm:@storybook/store": { + "type": "npm", + "name": "npm:@storybook/store", + "data": { + "version": "6.5.15", + "packageName": "@storybook/store", + "hash": "sha512-r6cYTf6GtbqgdI4ZG3xuWdJAAu5fJ3xAWMiDkHyoK2u+R2TeYXIsJvgn0BPrW87sZhELIkg4ckdFECmATs3kpQ==" + } + }, + "npm:event-pubsub": { + "type": "npm", + "name": "npm:event-pubsub", + "data": { + "version": "4.3.0", + "packageName": "event-pubsub", + "hash": "sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==" + } + }, + "npm:@azure/logger": { + "type": "npm", + "name": "npm:@azure/logger", + "data": { + "version": "1.0.0", + "packageName": "@azure/logger", + "hash": "sha512-g2qLDgvmhyIxR3JVS8N67CyIOeFRKQlX/llxYJQr1OSGQqM3HTpVP8MjmjcEKbL/OIt2N9C9UFaNQuKOw1laOA==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.1", + "packageName": "@types/serve-static", + "hash": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.2.0", + "packageName": "jsx-ast-utils", + "hash": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.6", + "packageName": "nanoid", + "hash": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + } + }, + "npm:supports-color@3.2.3": { + "type": "npm", + "name": "npm:supports-color@3.2.3", + "data": { + "version": "3.2.3", + "packageName": "supports-color", + "hash": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=" + } + }, + "npm:unist-util-remove-position": { + "type": "npm", + "name": "npm:unist-util-remove-position", + "data": { + "version": "1.1.4", + "packageName": "unist-util-remove-position", + "hash": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.2", + "packageName": "has-symbols", + "hash": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + } + }, + "npm:confusing-browser-globals": { + "type": "npm", + "name": "npm:confusing-browser-globals", + "data": { + "version": "1.0.10", + "packageName": "confusing-browser-globals", + "hash": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.1.0", + "packageName": "tsconfig-paths", + "hash": "sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==" + } + }, + "npm:unified": { + "type": "npm", + "name": "npm:unified", + "data": { + "version": "6.2.0", + "packageName": "unified", + "hash": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==" + } + }, + "npm:@types/node@11.15.54": { + "type": "npm", + "name": "npm:@types/node@11.15.54", + "data": { + "version": "11.15.54", + "packageName": "@types/node", + "hash": "sha512-1RWYiq+5UfozGsU6MwJyFX6BtktcT10XRjvcAQmskCtMcW3tPske88lM/nHv7BQG1w9KBXI1zPGuu5PnNCX14g==" + } + }, + "npm:jsprim": { + "type": "npm", + "name": "npm:jsprim", + "data": { + "version": "2.0.2", + "packageName": "jsprim", + "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" + } + }, + "npm:bytes@3.0.0": { + "type": "npm", + "name": "npm:bytes@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + } + }, + "npm:renderkid": { + "type": "npm", + "name": "npm:renderkid", + "data": { + "version": "2.0.7", + "packageName": "renderkid", + "hash": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.0", + "packageName": "strip-ansi", + "hash": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" + } + }, + "npm:webpack-virtual-modules": { + "type": "npm", + "name": "npm:webpack-virtual-modules", + "data": { + "version": "0.2.2", + "packageName": "webpack-virtual-modules", + "hash": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==" + } + }, + "npm:clone-stats@0.0.1": { + "type": "npm", + "name": "npm:clone-stats@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "clone-stats", + "hash": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.8.2", + "packageName": "optionator", + "hash": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=" + } + }, + "npm:@dnd-kit/accessibility": { + "type": "npm", + "name": "npm:@dnd-kit/accessibility", + "data": { + "version": "3.0.1", + "packageName": "@dnd-kit/accessibility", + "hash": "sha512-HXRrwS9YUYQO9lFRc/49uO/VICbM+O+ZRpFDe9Pd1rwVv2PCNkRiTZRdxrDgng/UkvdC3Re9r2vwPpXXrWeFzg==" + } + }, + "npm:@emotion/sheet@1.0.1": { + "type": "npm", + "name": "npm:@emotion/sheet@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "@emotion/sheet", + "hash": "sha512-GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g==" + } + }, + "npm:@webassemblyjs/helper-code-frame": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-code-frame", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-code-frame", + "hash": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==" + } + }, + "npm:core-js@2.6.11": { + "type": "npm", + "name": "npm:core-js@2.6.11", + "data": { + "version": "2.6.11", + "packageName": "core-js", + "hash": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==" + } + }, + "npm:license-webpack-plugin": { + "type": "npm", + "name": "npm:license-webpack-plugin", + "data": { + "version": "2.3.10", + "packageName": "license-webpack-plugin", + "hash": "sha512-WU+tVS0465NwdaV/DLb0t7GmQUwdaGI7QVWVKvvwLSlpYERKUD7DwcWIqSaXO+uoXM+6T3IAw3fCaGyVnI3DIQ==" + } + }, + "npm:path-exists@4.0.0": { + "type": "npm", + "name": "npm:path-exists@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.3", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==" + } + }, + "npm:array-slice": { + "type": "npm", + "name": "npm:array-slice", + "data": { + "version": "1.1.0", + "packageName": "array-slice", + "hash": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==" + } + }, + "npm:pumpify": { + "type": "npm", + "name": "npm:pumpify", + "data": { + "version": "1.5.1", + "packageName": "pumpify", + "hash": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==" + } + }, + "npm:has-flag@1.0.0": { + "type": "npm", + "name": "npm:has-flag@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "has-flag", + "hash": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + } + }, + "npm:posix-character-classes": { + "type": "npm", + "name": "npm:posix-character-classes", + "data": { + "version": "0.1.1", + "packageName": "posix-character-classes", + "hash": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + } + }, + "npm:react-is@16.13.1": { + "type": "npm", + "name": "npm:react-is@16.13.1", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.11.0", + "packageName": "ws", + "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" + } + }, + "npm:yargs-parser@20.2.4": { + "type": "npm", + "name": "npm:yargs-parser@20.2.4", + "data": { + "version": "20.2.4", + "packageName": "yargs-parser", + "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" + } + }, + "npm:@dsherret/to-absolute-glob": { + "type": "npm", + "name": "npm:@dsherret/to-absolute-glob", + "data": { + "version": "2.0.2", + "packageName": "@dsherret/to-absolute-glob", + "hash": "sha1-H2R13IvZdM6gei2vOGSzF7HdMyw=" + } + }, + "npm:lodash._basecopy": { + "type": "npm", + "name": "npm:lodash._basecopy", + "data": { + "version": "3.0.1", + "packageName": "lodash._basecopy", + "hash": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" + } + }, + "npm:minipass@5.0.0": { + "type": "npm", + "name": "npm:minipass@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:prepend-http": { + "type": "npm", + "name": "npm:prepend-http", + "data": { + "version": "1.0.4", + "packageName": "prepend-http", + "hash": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + } + }, + "npm:binaryextensions": { + "type": "npm", + "name": "npm:binaryextensions", + "data": { + "version": "2.3.0", + "packageName": "binaryextensions", + "hash": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==" + } + }, + "npm:interpret@2.2.0": { + "type": "npm", + "name": "npm:interpret@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "interpret", + "hash": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==" + } + }, + "npm:whatwg-fetch@3.6.2": { + "type": "npm", + "name": "npm:whatwg-fetch@3.6.2", + "data": { + "version": "3.6.2", + "packageName": "whatwg-fetch", + "hash": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + } + }, + "npm:got@12.3.1": { + "type": "npm", + "name": "npm:got@12.3.1", + "data": { + "version": "12.3.1", + "packageName": "got", + "hash": "sha512-tS6+JMhBh4iXMSXF6KkIsRxmloPln31QHDlcb6Ec3bzxjjFJFr/8aXdpyuLmVc9I4i2HyBHYw1QU5K1ruUdpkw==" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.1.11", + "packageName": "tar", + "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" + } + }, + "npm:web-streams-polyfill": { + "type": "npm", + "name": "npm:web-streams-polyfill", + "data": { + "version": "3.2.1", + "packageName": "web-streams-polyfill", + "hash": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==" + } + }, + "npm:d3-axis": { + "type": "npm", + "name": "npm:d3-axis", + "data": { + "version": "1.0.8", + "packageName": "d3-axis", + "hash": "sha1-MacFoLU15ldZ3hQXOjGTMTfxjvo=" + } + }, + "npm:@types/react@18.0.14": { + "type": "npm", + "name": "npm:@types/react@18.0.14", + "data": { + "version": "18.0.14", + "packageName": "@types/react", + "hash": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==" + } + }, + "npm:mini-create-react-context": { + "type": "npm", + "name": "npm:mini-create-react-context", + "data": { + "version": "0.4.0", + "packageName": "mini-create-react-context", + "hash": "sha512-b0TytUgFSbgFJGzJqXPKCFCBWigAjpjo+Fl7Vf7ZbKRDptszpppKxXH6DRXEABZ/gcEQczeb0iZ7JvL8e8jjCA==" + } + }, + "npm:unist-util-visit@1.4.1": { + "type": "npm", + "name": "npm:unist-util-visit@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "unist-util-visit", + "hash": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==" + } + }, + "npm:markdown-escapes": { + "type": "npm", + "name": "npm:markdown-escapes", + "data": { + "version": "1.0.4", + "packageName": "markdown-escapes", + "hash": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" + } + }, + "npm:@types/color-check": { + "type": "npm", + "name": "npm:@types/color-check", + "data": { + "version": "0.0.0", + "packageName": "@types/color-check", + "hash": "sha512-ZAm8KesT3hIm6I1vb5EbwD2C4f5XYawZjpE1UGlpfbMFOmLtBpYcZP0duGnsZY/6wzvw1y8MTofRqFzpzU2uOg==" + } + }, + "npm:isobject@4.0.0": { + "type": "npm", + "name": "npm:isobject@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "isobject", + "hash": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==" + } + }, + "npm:@esbuild/win32-x64": { + "type": "npm", + "name": "npm:@esbuild/win32-x64", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-tcuhV7ncXBqbt/Ybf0IyrMcwVOAPDckMK9rXNHtF17UTK18OKLpg08glminN06pt2WCoALhXdLfSPbVvK/6fxw==" + } + }, + "npm:@npmcli/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" + } + }, + "npm:array-differ@3.0.0": { + "type": "npm", + "name": "npm:array-differ@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "array-differ", + "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:esbuild-sunos-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-sunos-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-sunos-64", + "hash": "sha512-HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==" + } + }, + "npm:has-gulplog": { + "type": "npm", + "name": "npm:has-gulplog", + "data": { + "version": "0.1.0", + "packageName": "has-gulplog", + "hash": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=" + } + }, + "npm:@types/tmp": { + "type": "npm", + "name": "npm:@types/tmp", + "data": { + "version": "0.2.0", + "packageName": "@types/tmp", + "hash": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==" + } + }, + "npm:satisfied": { + "type": "npm", + "name": "npm:satisfied", + "data": { + "version": "1.1.2", + "packageName": "satisfied", + "hash": "sha512-4/p+apZMl0WJVH8/HGT4qu5nXey1SokSgGCuxXqFV8ntAXVqRjfjn0i5Zxbp7xh7NsRk2zy71xO+qADxXATLgw==" + } + }, + "npm:uuid-browser": { + "type": "npm", + "name": "npm:uuid-browser", + "data": { + "version": "3.1.0", + "packageName": "uuid-browser", + "hash": "sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:browserify-mime": { + "type": "npm", + "name": "npm:browserify-mime", + "data": { + "version": "1.2.9", + "packageName": "browserify-mime", + "hash": "sha512-uz+ItyJXBLb6wgon1ELEiVowJBEsy03PUWGRQU7cxxx9S+DW2hujPp+DaMYEOClRPzsn7NB99NtJ6pGnt8y+CQ==" + } + }, + "npm:has": { + "type": "npm", + "name": "npm:has", + "data": { + "version": "1.0.3", + "packageName": "has", + "hash": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:@storybook/postinstall": { + "type": "npm", + "name": "npm:@storybook/postinstall", + "data": { + "version": "6.5.15", + "packageName": "@storybook/postinstall", + "hash": "sha512-l7pApTgLD10OedNOyuf4vUdVCHLOSaIUIL9gdJl1WaSFHiUpJvvzBIh5M4aRICYPbnuExQc8y2GAjERKO4Ep+g==" + } + }, + "npm:internmap": { + "type": "npm", + "name": "npm:internmap", + "data": { + "version": "1.0.1", + "packageName": "internmap", + "hash": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" + } + }, + "npm:no-case@3.0.4": { + "type": "npm", + "name": "npm:no-case@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "no-case", + "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + } + }, + "npm:@types/chai-spies": { + "type": "npm", + "name": "npm:@types/chai-spies", + "data": { + "version": "1.0.3", + "packageName": "@types/chai-spies", + "hash": "sha512-RBZjhVuK7vrg4rWMt04UF5zHYwfHnpk5mIWu3nQvU3AKGDixXzSjZ6v0zke6pBcaJqMv3IBZ5ibLWPMRDL0sLw==" + } + }, + "npm:jstat": { + "type": "npm", + "name": "npm:jstat", + "data": { + "version": "1.9.5", + "packageName": "jstat", + "hash": "sha512-cWnp4vObF5GmB2XsIEzxI/1ZTcYlcfNqxQ/9Fp5KFUa0Jf/4tO0ZkGVnqoEHDisJvYgvn5n3eWZbd2xTVJJPUQ==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:fast-levenshtein@1.1.4": { + "type": "npm", + "name": "npm:fast-levenshtein@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "fast-levenshtein", + "hash": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=" + } + }, + "npm:esprima@2.7.3": { + "type": "npm", + "name": "npm:esprima@2.7.3", + "data": { + "version": "2.7.3", + "packageName": "esprima", + "hash": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.3", + "packageName": "is-symbol", + "hash": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==" + } + }, + "npm:esbuild-darwin-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-darwin-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-darwin-arm64", + "hash": "sha512-juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==" + } + }, + "npm:@griffel/babel-preset": { + "type": "npm", + "name": "npm:@griffel/babel-preset", + "data": { + "version": "1.4.20", + "packageName": "@griffel/babel-preset", + "hash": "sha512-fN3ntaNnshPY6rY8ysNrQgo/EdheZjcAi/xT8hBVV85VHFjuTkL+aKA2S3Ufea4gdSt9R4eGavMkPsO08r8dEA==" + } + }, + "npm:lodash.isplainobject": { + "type": "npm", + "name": "npm:lodash.isplainobject", + "data": { + "version": "4.0.6", + "packageName": "lodash.isplainobject", + "hash": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + } + }, + "npm:react-fela": { + "type": "npm", + "name": "npm:react-fela", + "data": { + "version": "10.6.1", + "packageName": "react-fela", + "hash": "sha512-HEtJXkvmwvvPJ4lbYrbttudgmacXnWSU9H3Syx4KiyiUBq9y/f0bn1YW/BLh4jQVVxAsbI6s6hSNornX/sdEzw==" + } + }, + "npm:@jridgewell/gen-mapping@0.1.1": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping@0.1.1", + "data": { + "version": "0.1.1", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==" + } + }, + "npm:argparse@2.0.1": { + "type": "npm", + "name": "npm:argparse@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:@npmcli/move-file@2.0.1": { + "type": "npm", + "name": "npm:@npmcli/move-file@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "@npmcli/move-file", + "hash": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" + } + }, + "npm:@griffel/react": { + "type": "npm", + "name": "npm:@griffel/react", + "data": { + "version": "1.5.14", + "packageName": "@griffel/react", + "hash": "sha512-/x6cy6xMtpow1r+Zrw/hMKHwo+imFAgKaZ3A/+M8GyT3L9AFxK1Kyg4JvARPjLBAn9Q2q5dkCr78jOguuVSScg==" + } + }, + "npm:import-fresh@2.0.0": { + "type": "npm", + "name": "npm:import-fresh@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "import-fresh", + "hash": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=" + } + }, + "npm:psl": { + "type": "npm", + "name": "npm:psl", + "data": { + "version": "1.8.0", + "packageName": "psl", + "hash": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.0", + "packageName": "resolve", + "hash": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:sirv": { + "type": "npm", + "name": "npm:sirv", + "data": { + "version": "1.0.10", + "packageName": "sirv", + "hash": "sha512-H5EZCoZaggEUQy8ocKsF7WAToGuZhjJlLvM3XOef46CbdIgbNeQ1p32N1PCuCjkVYwrAVOSMacN6CXXgIzuspg==" + } + }, + "npm:@storybook/csf-tools": { + "type": "npm", + "name": "npm:@storybook/csf-tools", + "data": { + "version": "6.5.15", + "packageName": "@storybook/csf-tools", + "hash": "sha512-2LwSD7yE/ccXBc58K4vdKw/oJJg6IpC4WD51rBt2mAl5JUCkxhOq7wG/Z8Wy1lZw2LVuKNTmjVou5blGRI/bTg==" + } + }, + "npm:@types/color-name": { + "type": "npm", + "name": "npm:@types/color-name", + "data": { + "version": "1.1.1", + "packageName": "@types/color-name", + "hash": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" + } + }, + "npm:@types/prettier": { + "type": "npm", + "name": "npm:@types/prettier", + "data": { + "version": "2.7.2", + "packageName": "@types/prettier", + "hash": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==" + } + }, + "npm:execa@0.7.0": { + "type": "npm", + "name": "npm:execa@0.7.0", + "data": { + "version": "0.7.0", + "packageName": "execa", + "hash": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=" + } + }, + "npm:hosted-git-info@7.0.1": { + "type": "npm", + "name": "npm:hosted-git-info@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "hosted-git-info", + "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + } + }, + "npm:jsesc@1.3.0": { + "type": "npm", + "name": "npm:jsesc@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "jsesc", + "hash": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" + } + }, + "npm:jsonfile@2.4.0": { + "type": "npm", + "name": "npm:jsonfile@2.4.0", + "data": { + "version": "2.4.0", + "packageName": "jsonfile", + "hash": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=" + } + }, + "npm:no-case": { + "type": "npm", + "name": "npm:no-case", + "data": { + "version": "2.3.2", + "packageName": "no-case", + "hash": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.1", + "packageName": "@types/estree", + "hash": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" + } + }, + "npm:@types/react-is": { + "type": "npm", + "name": "npm:@types/react-is", + "data": { + "version": "17.0.3", + "packageName": "@types/react-is", + "hash": "sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==" + } + }, + "npm:promise": { + "type": "npm", + "name": "npm:promise", + "data": { + "version": "8.1.0", + "packageName": "promise", + "hash": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.3.1", + "packageName": "regexp.prototype.flags", + "hash": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==" + } + }, + "npm:through2@2.0.5": { + "type": "npm", + "name": "npm:through2@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:ts-morph": { + "type": "npm", + "name": "npm:ts-morph", + "data": { + "version": "10.0.1", + "packageName": "ts-morph", + "hash": "sha512-T1zufImtp5goTLTFhzi7XuKR1y/f+Jwz1gSULzB045LFjXuoqVlR87sfkpyWow8u2JwgusCJrhOnwmHCFNutTQ==" + } + }, + "npm:webpack-hot-middleware": { + "type": "npm", + "name": "npm:webpack-hot-middleware", + "data": { + "version": "2.25.1", + "packageName": "webpack-hot-middleware", + "hash": "sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==" + } + }, + "npm:d3-contour": { + "type": "npm", + "name": "npm:d3-contour", + "data": { + "version": "1.3.2", + "packageName": "d3-contour", + "hash": "sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg==" + } + }, + "npm:@babel/plugin-transform-react-display-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-display-name", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-react-display-name", + "hash": "sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==" + } + }, + "npm:diff-match-patch": { + "type": "npm", + "name": "npm:diff-match-patch", + "data": { + "version": "1.0.5", + "packageName": "diff-match-patch", + "hash": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "7.0.2", + "packageName": "cacheable-request", + "hash": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==" + } + }, + "npm:@azure/data-tables": { + "type": "npm", + "name": "npm:@azure/data-tables", + "data": { + "version": "13.0.0", + "packageName": "@azure/data-tables", + "hash": "sha512-OA9X0rsTP7AM+cZENppMljihYWfn02Tkwa1IdbU8jNfCjV5SL8x2e76L7SN5z/sFxAJ3hdcyMa3sAOXvuSs6/Q==" + } + }, + "npm:custom-event": { + "type": "npm", + "name": "npm:custom-event", + "data": { + "version": "1.0.1", + "packageName": "custom-event", + "hash": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=" + } + }, + "npm:fela-plugin-custom-property": { + "type": "npm", + "name": "npm:fela-plugin-custom-property", + "data": { + "version": "10.8.2", + "packageName": "fela-plugin-custom-property", + "hash": "sha512-SFbuMRQpetEUYwMsG0ngZrdEB7N7ytH+jsXeWt54GKhdz68XcvbAEIoc5vWSPiNVBKH47jV3+dwXjhejd5AdaQ==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "4.0.0", + "packageName": "immutable", + "hash": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==" + } + }, + "npm:colorette@2.0.20": { + "type": "npm", + "name": "npm:colorette@2.0.20", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:copy-concurrently": { + "type": "npm", + "name": "npm:copy-concurrently", + "data": { + "version": "1.0.5", + "packageName": "copy-concurrently", + "hash": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==" + } + }, + "npm:@types/node@14.18.32": { + "type": "npm", + "name": "npm:@types/node@14.18.32", + "data": { + "version": "14.18.32", + "packageName": "@types/node", + "hash": "sha512-Y6S38pFr04yb13qqHf8uk1nHE3lXgQ30WZbv1mLliV9pt0NjvqdWttLcrOYLnXbOafknVYRHZGoMSpR9UwfYow==" + } + }, + "npm:@webassemblyjs/utf8@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + } + }, + "npm:jest-docblock": { + "type": "npm", + "name": "npm:jest-docblock", + "data": { + "version": "29.7.0", + "packageName": "jest-docblock", + "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" + } + }, + "npm:formdata-polyfill": { + "type": "npm", + "name": "npm:formdata-polyfill", + "data": { + "version": "4.0.10", + "packageName": "formdata-polyfill", + "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" + } + }, + "npm:react-window": { + "type": "npm", + "name": "npm:react-window", + "data": { + "version": "1.8.6", + "packageName": "react-window", + "hash": "sha512-8VwEEYyjz6DCnGBsd+MgkD0KJ2/OXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg==" + } + }, + "npm:word-wrap": { + "type": "npm", + "name": "npm:word-wrap", + "data": { + "version": "1.2.4", + "packageName": "word-wrap", + "hash": "sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==" + } + }, + "npm:performance-now@0.2.0": { + "type": "npm", + "name": "npm:performance-now@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "performance-now", + "hash": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=" + } + }, + "npm:jest-haste-map": { + "type": "npm", + "name": "npm:jest-haste-map", + "data": { + "version": "29.7.0", + "packageName": "jest-haste-map", + "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.0", + "packageName": "fast-glob", + "hash": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==" + } + }, + "npm:jest-validate": { + "type": "npm", + "name": "npm:jest-validate", + "data": { + "version": "29.7.0", + "packageName": "jest-validate", + "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:@nx/nx-freebsd-x64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.3", + "packageName": "@types/babel__core", + "hash": "sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "7.2.13", + "packageName": "@types/eslint", + "hash": "sha512-LKmQCWAlnVHvvXq4oasNUMTJJb2GwSyTY8+1C7OH5ILR8mPLaljv1jxL1bXW3xB3jFbQxTKxJAvI8PyjB09aBg==" + } + }, + "npm:colors": { + "type": "npm", + "name": "npm:colors", + "data": { + "version": "1.2.5", + "packageName": "colors", + "hash": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==" + } + }, + "npm:lodash.get": { + "type": "npm", + "name": "npm:lodash.get", + "data": { + "version": "4.4.2", + "packageName": "lodash.get", + "hash": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + } + }, + "npm:select": { + "type": "npm", + "name": "npm:select", + "data": { + "version": "1.1.2", + "packageName": "select", + "hash": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.22.13", + "packageName": "@babel/code-frame", + "hash": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + } + }, + "npm:@babel/plugin-transform-function-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:@emotion/memoize": { + "type": "npm", + "name": "npm:@emotion/memoize", + "data": { + "version": "0.7.4", + "packageName": "@emotion/memoize", + "hash": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.3", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==" + } + }, + "npm:@types/undertaker": { + "type": "npm", + "name": "npm:@types/undertaker", + "data": { + "version": "1.2.2", + "packageName": "@types/undertaker", + "hash": "sha512-j4iepCSuY2JGW/hShVtUBagic0klYNFIXP7VweavnYnNC2EjiKxJFeaS9uaJmAT0ty9sQSqTS1aagWMZMV0HyA==" + } + }, + "npm:array-differ": { + "type": "npm", + "name": "npm:array-differ", + "data": { + "version": "1.0.0", + "packageName": "array-differ", + "hash": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=" + } + }, + "npm:@opentelemetry/context-base": { + "type": "npm", + "name": "npm:@opentelemetry/context-base", + "data": { + "version": "0.6.1", + "packageName": "@opentelemetry/context-base", + "hash": "sha512-5bHhlTBBq82ti3qPT15TRxkYTFPPQWbnkkQkmHPtqiS1XcTB69cEKd3Jm7Cfi/vkPoyxapmePE9tyA7EzLt8SQ==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:@jest/globals": { + "type": "npm", + "name": "npm:@jest/globals", + "data": { + "version": "29.7.0", + "packageName": "@jest/globals", + "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" + } + }, + "npm:@testing-library/dom@7.22.3": { + "type": "npm", + "name": "npm:@testing-library/dom@7.22.3", + "data": { + "version": "7.22.3", + "packageName": "@testing-library/dom", + "hash": "sha512-IK6/eL1Xza/0goDKrwnBvlM06L+5eL9b1o+hUhX7HslfUvMETh0TYgXEr2LVpsVkHiOhRmUbUyml95KV/VlRNw==" + } + }, + "npm:append-buffer": { + "type": "npm", + "name": "npm:append-buffer", + "data": { + "version": "1.0.2", + "packageName": "append-buffer", + "hash": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.8.1", + "packageName": "envinfo", + "hash": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" + } + }, + "npm:@webassemblyjs/helper-wasm-section@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==" + } + }, + "npm:@babel/plugin-transform-new-target": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==" + } + }, + "npm:@octokit/rest@19.0.11": { + "type": "npm", + "name": "npm:@octokit/rest@19.0.11", + "data": { + "version": "19.0.11", + "packageName": "@octokit/rest", + "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:eslint-scope@4.0.3": { + "type": "npm", + "name": "npm:eslint-scope@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "eslint-scope", + "hash": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==" + } + }, + "npm:gzip-size@7.0.0": { + "type": "npm", + "name": "npm:gzip-size@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "gzip-size", + "hash": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==" + } + }, + "npm:@babel/plugin-syntax-export-default-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-default-from", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-export-default-from", + "hash": "sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q==" + } + }, + "npm:decode-uri-component": { + "type": "npm", + "name": "npm:decode-uri-component", + "data": { + "version": "0.2.2", + "packageName": "decode-uri-component", + "hash": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" + } + }, + "npm:is-retry-allowed": { + "type": "npm", + "name": "npm:is-retry-allowed", + "data": { + "version": "1.2.0", + "packageName": "is-retry-allowed", + "hash": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.4", + "packageName": "is-typed-array", + "hash": "sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==" + } + }, + "npm:@webassemblyjs/wasm-gen@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==" + } + }, + "npm:gzip-js": { + "type": "npm", + "name": "npm:gzip-js", + "data": { + "version": "0.3.2", + "packageName": "gzip-js", + "hash": "sha1-IxF+/usozzhSSN7/Df+tiUg22Ws=" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "5.1.1", + "packageName": "get-port", + "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" + } + }, + "npm:icss-utils@5.1.0": { + "type": "npm", + "name": "npm:icss-utils@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:@microsoft/dynamicproto-js": { + "type": "npm", + "name": "npm:@microsoft/dynamicproto-js", + "data": { + "version": "2.0.2", + "packageName": "@microsoft/dynamicproto-js", + "hash": "sha512-MB8trWaFREpmb037k/d0bB7T2BP7Ai24w1e1tbz3ASLB0/lwphsq3Nq8S9I5AsI5vs4zAQT+SB5nC5/dLYTiOg==" + } + }, + "npm:ipaddr.js@1.9.1": { + "type": "npm", + "name": "npm:ipaddr.js@1.9.1", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:mute-stdout": { + "type": "npm", + "name": "npm:mute-stdout", + "data": { + "version": "1.0.1", + "packageName": "mute-stdout", + "hash": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + } + }, + "npm:regenerator-runtime@0.11.1": { + "type": "npm", + "name": "npm:regenerator-runtime@0.11.1", + "data": { + "version": "0.11.1", + "packageName": "regenerator-runtime", + "hash": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + }, + "npm:har-validator": { + "type": "npm", + "name": "npm:har-validator", + "data": { + "version": "5.1.3", + "packageName": "har-validator", + "hash": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==" + } + }, + "npm:property-information": { + "type": "npm", + "name": "npm:property-information", + "data": { + "version": "5.4.0", + "packageName": "property-information", + "hash": "sha512-nmMWAm/3vKFGmmOWOcdLjgq/Hlxa+hsuR/px1Lp/UGEyc5A22A6l78Shc2C0E71sPmAqglni+HrS7L7VJ7AUCA==" + } + }, + "npm:remove-bom-stream": { + "type": "npm", + "name": "npm:remove-bom-stream", + "data": { + "version": "1.2.0", + "packageName": "remove-bom-stream", + "hash": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=" + } + }, + "npm:cross-spawn@6.0.5": { + "type": "npm", + "name": "npm:cross-spawn@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "cross-spawn", + "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + } + }, + "npm:require-main-filename@1.0.1": { + "type": "npm", + "name": "npm:require-main-filename@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "require-main-filename", + "hash": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:@babel/preset-modules": { + "type": "npm", + "name": "npm:@babel/preset-modules", + "data": { + "version": "0.1.6-no-external-plugins", + "packageName": "@babel/preset-modules", + "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" + } + }, + "npm:@actions/github": { + "type": "npm", + "name": "npm:@actions/github", + "data": { + "version": "5.0.3", + "packageName": "@actions/github", + "hash": "sha512-myjA/pdLQfhUGLtRZC/J4L1RXOG4o6aYdiEq+zr5wVVKljzbFld+xv10k1FX6IkIJtNxbAq44BdwSNpQ015P0A==" + } + }, + "npm:browserify-cipher": { + "type": "npm", + "name": "npm:browserify-cipher", + "data": { + "version": "1.0.1", + "packageName": "browserify-cipher", + "hash": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==" + } + }, + "npm:conventional-changelog-preset-loader": { + "type": "npm", + "name": "npm:conventional-changelog-preset-loader", + "data": { + "version": "3.0.0", + "packageName": "conventional-changelog-preset-loader", + "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" + } + }, + "npm:archy": { + "type": "npm", + "name": "npm:archy", + "data": { + "version": "1.0.0", + "packageName": "archy", + "hash": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=" + } + }, + "npm:cacache@12.0.3": { + "type": "npm", + "name": "npm:cacache@12.0.3", + "data": { + "version": "12.0.3", + "packageName": "cacache", + "hash": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==" + } + }, + "npm:github-slugger": { + "type": "npm", + "name": "npm:github-slugger", + "data": { + "version": "1.3.0", + "packageName": "github-slugger", + "hash": "sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==" + } + }, + "npm:lru-cache@7.14.0": { + "type": "npm", + "name": "npm:lru-cache@7.14.0", + "data": { + "version": "7.14.0", + "packageName": "lru-cache", + "hash": "sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ==" + } + }, + "npm:@types/sinonjs__fake-timers": { + "type": "npm", + "name": "npm:@types/sinonjs__fake-timers", + "data": { + "version": "8.1.1", + "packageName": "@types/sinonjs__fake-timers", + "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" + } + }, + "npm:event-target-shim": { + "type": "npm", + "name": "npm:event-target-shim", + "data": { + "version": "5.0.1", + "packageName": "event-target-shim", + "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:setimmediate": { + "type": "npm", + "name": "npm:setimmediate", + "data": { + "version": "1.0.5", + "packageName": "setimmediate", + "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:react-hooks-testing-library": { + "type": "npm", + "name": "npm:react-hooks-testing-library", + "data": { + "version": "0.5.1", + "packageName": "react-hooks-testing-library", + "hash": "sha512-wSwnVPceof2AOpdvZpiC3EX4gZiVVvY78foz0/44yYGXjC2AeaWvNAjyRH1UjlPqCfHTaEANvXCq+m9YCbWBfQ==" + } + }, + "npm:@babel/runtime-corejs3": { + "type": "npm", + "name": "npm:@babel/runtime-corejs3", + "data": { + "version": "7.12.13", + "packageName": "@babel/runtime-corejs3", + "hash": "sha512-8fSpqYRETHATtNitsCXq8QQbKJP31/KnDl2Wz2Vtui9nKzjss2ysuZtyVsWjBtvkeEFo346gkwjYPab1hvrXkQ==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.4", + "packageName": "@types/ws", + "hash": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==" + } + }, + "npm:bindings@1.5.0": { + "type": "npm", + "name": "npm:bindings@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "bindings", + "hash": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" + } + }, + "npm:lodash._basevalues": { + "type": "npm", + "name": "npm:lodash._basevalues", + "data": { + "version": "3.0.0", + "packageName": "lodash._basevalues", + "hash": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=" + } + }, + "npm:jsonify": { + "type": "npm", + "name": "npm:jsonify", + "data": { + "version": "0.0.0", + "packageName": "jsonify", + "hash": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" + } + }, + "npm:semver@5.7.1": { + "type": "npm", + "name": "npm:semver@5.7.1", + "data": { + "version": "5.7.1", + "packageName": "semver", + "hash": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "2.5.1", + "packageName": "form-data", + "hash": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.6.6", + "packageName": "traverse", + "hash": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:del": { + "type": "npm", + "name": "npm:del", + "data": { + "version": "6.0.0", + "packageName": "del", + "hash": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==" + } + }, + "npm:wrap-ansi@2.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "wrap-ansi", + "hash": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=" + } + }, + "npm:decamelize": { + "type": "npm", + "name": "npm:decamelize", + "data": { + "version": "1.2.0", + "packageName": "decamelize", + "hash": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + } + }, + "npm:eslint-visitor-keys@1.3.0": { + "type": "npm", + "name": "npm:eslint-visitor-keys@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "11.8.5", + "packageName": "got", + "hash": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==" + } + }, + "npm:run-async": { + "type": "npm", + "name": "npm:run-async", + "data": { + "version": "2.4.1", + "packageName": "run-async", + "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@^6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:iconv-lite@0.4.24": { + "type": "npm", + "name": "npm:iconv-lite@0.4.24", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:minimalistic-crypto-utils": { + "type": "npm", + "name": "npm:minimalistic-crypto-utils", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-crypto-utils", + "hash": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + } + }, + "npm:rollup-plugin-typescript2": { + "type": "npm", + "name": "npm:rollup-plugin-typescript2", + "data": { + "version": "0.27.1", + "packageName": "rollup-plugin-typescript2", + "hash": "sha512-RJl77Bbj1EunAQDC3dK/O2HWuSUX3oJbRGzyLoS5o9W4Hs1Nix3Gavqj1Lzs5Y6Ff4H2xXfmZ1WWUQCYocSbzQ==" + } + }, + "npm:@storybook/react": { + "type": "npm", + "name": "npm:@storybook/react", + "data": { + "version": "6.5.15", + "packageName": "@storybook/react", + "hash": "sha512-iQta2xOs/oK0sw/zpn3g/huvOmvggzi8z2/WholmUmmRiSQRo9lOhRXH0u13T4ja4fEa+u7m58G83xOG6i73Kw==" + } + }, + "npm:@types/lerna-alias": { + "type": "npm", + "name": "npm:@types/lerna-alias", + "data": { + "version": "3.0.0", + "packageName": "@types/lerna-alias", + "hash": "sha512-EfwEzSWxAxrZgUJT5sECi4RPFCIgOm/K9e5EWXp2hR9H6wzV1QIBgjGtGEl/OpOCcglNWzmqrVRX/qjvNwli9Q==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "13.0.11", + "packageName": "@types/yargs", + "hash": "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==" + } + }, + "npm:arrify": { + "type": "npm", + "name": "npm:arrify", + "data": { + "version": "2.0.1", + "packageName": "arrify", + "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + } + }, + "npm:@esbuild/freebsd-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-YbPY2kc0acfzL1VPVK6EnAlig4f+l8xmq36OZkU0jzBVHcOTyQDhnKQaLzZudNJQyymd9OqQezeaBgkTGdTGeQ==" + } + }, + "npm:is-promise": { + "type": "npm", + "name": "npm:is-promise", + "data": { + "version": "2.1.0", + "packageName": "is-promise", + "hash": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" + } + }, + "npm:array-last": { + "type": "npm", + "name": "npm:array-last", + "data": { + "version": "1.3.0", + "packageName": "array-last", + "hash": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==" + } + }, + "npm:@nx/nx-linux-arm64-musl@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==" + } + }, + "npm:brace-expansion@1.1.11": { + "type": "npm", + "name": "npm:brace-expansion@1.1.11", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:lodash.isboolean": { + "type": "npm", + "name": "npm:lodash.isboolean", + "data": { + "version": "3.0.3", + "packageName": "lodash.isboolean", + "hash": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + } + }, + "npm:timed-out": { + "type": "npm", + "name": "npm:timed-out", + "data": { + "version": "4.0.1", + "packageName": "timed-out", + "hash": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" + } + }, + "npm:node-ipc": { + "type": "npm", + "name": "npm:node-ipc", + "data": { + "version": "9.1.1", + "packageName": "node-ipc", + "hash": "sha512-FAyICv0sIRJxVp3GW5fzgaf9jwwRQxAKDJlmNFUL5hOy+W4X/I5AypyHoq0DXXbo9o/gt79gj++4cMr4jVWE/w==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:@babel/plugin-transform-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-catch-binding", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-optional-catch-binding", + "hash": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==" + } + }, + "npm:dotenv@16.3.1": { + "type": "npm", + "name": "npm:dotenv@16.3.1", + "data": { + "version": "16.3.1", + "packageName": "dotenv", + "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.2.4", + "packageName": "sax", + "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + } + }, + "npm:gulp": { + "type": "npm", + "name": "npm:gulp", + "data": { + "version": "4.0.2", + "packageName": "gulp", + "hash": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:ts-jest": { + "type": "npm", + "name": "npm:ts-jest", + "data": { + "version": "29.1.1", + "packageName": "ts-jest", + "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" + } + }, + "npm:validate-npm-package-name@3.0.0": { + "type": "npm", + "name": "npm:validate-npm-package-name@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=" + } + }, + "npm:gulp-cache": { + "type": "npm", + "name": "npm:gulp-cache", + "data": { + "version": "1.1.3", + "packageName": "gulp-cache", + "hash": "sha512-NE814LdX1NWQn2sMzn+Rf673o4mqlgg7OyLf92oQ4KEl6DdPfduEGLNH+HexLVcFZXH93DBuxFOvpv4/Js5VaA==" + } + }, + "npm:@types/minimatch": { + "type": "npm", + "name": "npm:@types/minimatch", + "data": { + "version": "3.0.3", + "packageName": "@types/minimatch", + "hash": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + } + }, + "npm:global": { + "type": "npm", + "name": "npm:global", + "data": { + "version": "4.4.0", + "packageName": "global", + "hash": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==" + } + }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.83.1", + "packageName": "webpack", + "hash": "sha512-TNsG9jDScbNuB+Lb/3+vYolPplCS3bbEaJf+Bj0Gw4DhP3ioAflBb1flcRt9zsWITyvOhM96wMQNRWlSX52DgA==" + } + }, + "npm:assert": { + "type": "npm", + "name": "npm:assert", + "data": { + "version": "2.0.0", + "packageName": "assert", + "hash": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:language-tags": { + "type": "npm", + "name": "npm:language-tags", + "data": { + "version": "1.0.5", + "packageName": "language-tags", + "hash": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=" + } + }, + "npm:which@3.0.1": { + "type": "npm", + "name": "npm:which@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "which", + "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" + } + }, + "npm:@types/d3-shape": { + "type": "npm", + "name": "npm:@types/d3-shape", + "data": { + "version": "3.1.1", + "packageName": "@types/d3-shape", + "hash": "sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==" + } + }, + "npm:wrap-ansi@5.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==" + } + }, + "npm:is-path-inside@4.0.0": { + "type": "npm", + "name": "npm:is-path-inside@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-path-inside", + "hash": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==" + } + }, + "npm:@types/faker": { + "type": "npm", + "name": "npm:@types/faker", + "data": { + "version": "4.1.9", + "packageName": "@types/faker", + "hash": "sha512-4ZFqA3CEXB6MgT8sDV8E5LhW+O9ndONsHeQXMbEwfOsjoQ4UXKqTJKru+BjDBUfobYEpQz1WYF9/uzQsvbY2wA==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.33", + "packageName": "@types/sockjs", + "hash": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" + } + }, + "npm:amdefine": { + "type": "npm", + "name": "npm:amdefine", + "data": { + "version": "1.0.1", + "packageName": "amdefine", + "hash": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + } + }, + "npm:arch": { + "type": "npm", + "name": "npm:arch", + "data": { + "version": "2.2.0", + "packageName": "arch", + "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" + } + }, + "npm:node-dir": { + "type": "npm", + "name": "npm:node-dir", + "data": { + "version": "0.1.17", + "packageName": "node-dir", + "hash": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.3", + "packageName": "faye-websocket", + "hash": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==" + } + }, + "npm:path-exists@2.1.0": { + "type": "npm", + "name": "npm:path-exists@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "path-exists", + "hash": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.2", + "packageName": "call-bind", + "hash": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:systeminformation": { + "type": "npm", + "name": "npm:systeminformation", + "data": { + "version": "5.21.8", + "packageName": "systeminformation", + "hash": "sha512-Xf1KDMUTQHLOT9Z7MjpSpsbaICOHcm4OZ9c9qqpkCoXuxq5MoyDrgu5GIQYpoiralXNPrqxDz3ND8MdllpXeQA==" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:md5.js": { + "type": "npm", + "name": "npm:md5.js", + "data": { + "version": "1.3.5", + "packageName": "md5.js", + "hash": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==" + } + }, + "npm:eslint-plugin-jest": { + "type": "npm", + "name": "npm:eslint-plugin-jest", + "data": { + "version": "23.20.0", + "packageName": "eslint-plugin-jest", + "hash": "sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==" + } + }, + "npm:parse5@6.0.1": { + "type": "npm", + "name": "npm:parse5@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "parse5", + "hash": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + } + }, + "npm:@jest/expect-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" + } + }, + "npm:dargs": { + "type": "npm", + "name": "npm:dargs", + "data": { + "version": "7.0.0", + "packageName": "dargs", + "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" + } + }, + "npm:fela-utils@11.7.0": { + "type": "npm", + "name": "npm:fela-utils@11.7.0", + "data": { + "version": "11.7.0", + "packageName": "fela-utils", + "hash": "sha512-s/3QJtkCesH+2/yJDpedHVAvMgKy9hSt2++6l7Xjio5BixiUnvkwbqdCV/fcAb4E3reJLNzYeatgPdcw4HVXRQ==" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.1", + "packageName": "@types/serve-index", + "hash": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" + } + }, + "npm:caller-path": { + "type": "npm", + "name": "npm:caller-path", + "data": { + "version": "2.0.0", + "packageName": "caller-path", + "hash": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=" + } + }, + "npm:fast-json-parse": { + "type": "npm", + "name": "npm:fast-json-parse", + "data": { + "version": "1.0.3", + "packageName": "fast-json-parse", + "hash": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==" + } + }, + "npm:react-source-render": { + "type": "npm", + "name": "npm:react-source-render", + "data": { + "version": "4.0.0-1", + "packageName": "react-source-render", + "hash": "sha512-JSL6Xs2mcHJ3jtLoe/K9aualo3XJSQW5nOqLthHkjTCrEvfb7jaSfpkjDVFGvgNCVOu7keClX7I/ZQaTP1gnVw==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:@types/react-transition-group": { + "type": "npm", + "name": "npm:@types/react-transition-group", + "data": { + "version": "4.4.6", + "packageName": "@types/react-transition-group", + "hash": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==" + } + }, + "npm:jsprim@1.4.1": { + "type": "npm", + "name": "npm:jsprim@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "jsprim", + "hash": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=" + } + }, + "npm:yargs-parser@5.0.0": { + "type": "npm", + "name": "npm:yargs-parser@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "yargs-parser", + "hash": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=" + } + }, + "npm:react@18.2.0": { + "type": "npm", + "name": "npm:react@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react", + "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" + } + }, + "npm:enzyme-to-json": { + "type": "npm", + "name": "npm:enzyme-to-json", + "data": { + "version": "3.6.2", + "packageName": "enzyme-to-json", + "hash": "sha512-Ynm6Z6R6iwQ0g2g1YToz6DWhxVnt8Dy1ijR2zynRKxTyBGA8rCDXU3rs2Qc4OKvUvc2Qoe1bcFK6bnPs20TrTg==" + } + }, + "npm:tar-fs": { + "type": "npm", + "name": "npm:tar-fs", + "data": { + "version": "2.1.1", + "packageName": "tar-fs", + "hash": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==" + } + }, + "npm:tty-browserify": { + "type": "npm", + "name": "npm:tty-browserify", + "data": { + "version": "0.0.1", + "packageName": "tty-browserify", + "hash": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" + } + }, + "npm:watchpack-chokidar2": { + "type": "npm", + "name": "npm:watchpack-chokidar2", + "data": { + "version": "2.0.1", + "packageName": "watchpack-chokidar2", + "hash": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==" + } + }, + "npm:endent": { + "type": "npm", + "name": "npm:endent", + "data": { + "version": "2.0.1", + "packageName": "endent", + "hash": "sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:@cypress/react": { + "type": "npm", + "name": "npm:@cypress/react", + "data": { + "version": "5.12.4", + "packageName": "@cypress/react", + "hash": "sha512-d44InxWKmwQKyCMQT/3n1UplYa39yKEQTPlb2HhXF6ickqtmhxw7kePv00yrJpBc9gy2jUkNUOfCbtt2uz1kUw==" + } + }, + "npm:state-toggle": { + "type": "npm", + "name": "npm:state-toggle", + "data": { + "version": "1.0.3", + "packageName": "state-toggle", + "hash": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" + } + }, + "npm:@types/node@10.17.13": { + "type": "npm", + "name": "npm:@types/node@10.17.13", + "data": { + "version": "10.17.13", + "packageName": "@types/node", + "hash": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.2.1", + "packageName": "autoprefixer", + "hash": "sha512-dwP0UjyYvROUvtU+boBx8ff5pPWami1NGTrJs9YUsS/oZVbRAcdNHOOuXSA1fc46tgKqe072cVaKD69rvCc3QQ==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.0", + "packageName": "is-stream", + "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + } + }, + "npm:@types/braces": { + "type": "npm", + "name": "npm:@types/braces", + "data": { + "version": "3.0.1", + "packageName": "@types/braces", + "hash": "sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==" + } + }, + "npm:error-stack-parser": { + "type": "npm", + "name": "npm:error-stack-parser", + "data": { + "version": "2.0.6", + "packageName": "error-stack-parser", + "hash": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==" + } + }, + "npm:jsdom": { + "type": "npm", + "name": "npm:jsdom", + "data": { + "version": "20.0.3", + "packageName": "jsdom", + "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" + } + }, + "npm:enzyme": { + "type": "npm", + "name": "npm:enzyme", + "data": { + "version": "3.10.0", + "packageName": "enzyme", + "hash": "sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg==" + } + }, + "npm:lodash.mapvalues": { + "type": "npm", + "name": "npm:lodash.mapvalues", + "data": { + "version": "4.6.0", + "packageName": "lodash.mapvalues", + "hash": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=" + } + }, + "npm:nanomatch": { + "type": "npm", + "name": "npm:nanomatch", + "data": { + "version": "1.2.13", + "packageName": "nanomatch", + "hash": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==" + } + }, + "npm:danger": { + "type": "npm", + "name": "npm:danger", + "data": { + "version": "11.0.2", + "packageName": "danger", + "hash": "sha512-TKE5E1Zrb0uV7Ft3mhbTA3bwVf4hZs7DVx6Mo8weVdIcaXJIIle3+aCjn259GX9/pF4ewoYuof7eLRPJligOgA==" + } + }, + "npm:@storybook/telemetry": { + "type": "npm", + "name": "npm:@storybook/telemetry", + "data": { + "version": "6.5.15", + "packageName": "@storybook/telemetry", + "hash": "sha512-WHMRG6xMkEGscn1q4SotwzV8hxM1g3zHyXPN77iosY5zpOIn/qAzvkmW28V1DPH9jPWMZMizBgG1TIQvUpduXg==" + } + }, + "npm:path-browserify@0.0.1": { + "type": "npm", + "name": "npm:path-browserify@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "path-browserify", + "hash": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + } + }, + "npm:pathval": { + "type": "npm", + "name": "npm:pathval", + "data": { + "version": "1.1.1", + "packageName": "pathval", + "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:resolve-options": { + "type": "npm", + "name": "npm:resolve-options", + "data": { + "version": "1.1.0", + "packageName": "resolve-options", + "hash": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + } + }, + "npm:lru-cache@5.1.1": { + "type": "npm", + "name": "npm:lru-cache@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:@microsoft/fast-colors": { + "type": "npm", + "name": "npm:@microsoft/fast-colors", + "data": { + "version": "5.3.1", + "packageName": "@microsoft/fast-colors", + "hash": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" + } + }, + "npm:lodash.ismatch": { + "type": "npm", + "name": "npm:lodash.ismatch", + "data": { + "version": "4.4.0", + "packageName": "lodash.ismatch", + "hash": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=" + } + }, + "npm:conventional-changelog-core": { + "type": "npm", + "name": "npm:conventional-changelog-core", + "data": { + "version": "5.0.1", + "packageName": "conventional-changelog-core", + "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" + } + }, + "npm:node-gyp@6.1.0": { + "type": "npm", + "name": "npm:node-gyp@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "node-gyp", + "hash": "sha512-h4A2zDlOujeeaaTx06r4Vy+8MZ1679lU+wbCKDS4ZtvY2A37DESo37oejIw0mtmR3+rvNwts5B6Kpt1KrNYdNw==" + } + }, + "npm:semver-diff": { + "type": "npm", + "name": "npm:semver-diff", + "data": { + "version": "2.1.0", + "packageName": "semver-diff", + "hash": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.14.2", + "packageName": "serve-static", + "hash": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "4.0.3", + "packageName": "y18n", + "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:@typescript-eslint/visitor-keys@5.59.1": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@5.59.1", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-6waEYwBTCWryx0VJmP7JaM4FpipLsFl9CvYf2foAE8Qh/Y0s+bxWysciwOs0LTBED4JCaNxTZ5rGadB14M6dwA==" + } + }, + "npm:fork-ts-checker-webpack-plugin@4.1.6": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "data": { + "version": "4.1.6", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + } + }, + "npm:polished": { + "type": "npm", + "name": "npm:polished", + "data": { + "version": "4.2.2", + "packageName": "polished", + "hash": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==" + } + }, + "npm:arr-flatten": { + "type": "npm", + "name": "npm:arr-flatten", + "data": { + "version": "1.1.0", + "packageName": "arr-flatten", + "hash": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + } + }, + "npm:lru-cache@4.1.5": { + "type": "npm", + "name": "npm:lru-cache@4.1.5", + "data": { + "version": "4.1.5", + "packageName": "lru-cache", + "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "1.0.2", + "packageName": "nth-check", + "hash": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==" + } + }, + "npm:through2@3.0.1": { + "type": "npm", + "name": "npm:through2@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "through2", + "hash": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==" + } + }, + "npm:clean-css": { + "type": "npm", + "name": "npm:clean-css", + "data": { + "version": "4.2.3", + "packageName": "clean-css", + "hash": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==" + } + }, + "npm:@emotion/is-prop-valid": { + "type": "npm", + "name": "npm:@emotion/is-prop-valid", + "data": { + "version": "0.8.8", + "packageName": "@emotion/is-prop-valid", + "hash": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:nth-check@2.0.0": { + "type": "npm", + "name": "npm:nth-check@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "nth-check", + "hash": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==" + } + }, + "npm:globals@13.12.0": { + "type": "npm", + "name": "npm:globals@13.12.0", + "data": { + "version": "13.12.0", + "packageName": "globals", + "hash": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==" + } + }, + "npm:ecdsa-sig-formatter": { + "type": "npm", + "name": "npm:ecdsa-sig-formatter", + "data": { + "version": "1.0.11", + "packageName": "ecdsa-sig-formatter", + "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" + } + }, + "npm:asn1": { + "type": "npm", + "name": "npm:asn1", + "data": { + "version": "0.2.4", + "packageName": "asn1", + "hash": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==" + } + }, + "npm:@babel/preset-flow": { + "type": "npm", + "name": "npm:@babel/preset-flow", + "data": { + "version": "7.14.5", + "packageName": "@babel/preset-flow", + "hash": "sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:compare-func": { + "type": "npm", + "name": "npm:compare-func", + "data": { + "version": "2.0.0", + "packageName": "compare-func", + "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "4.2.0", + "packageName": "domhandler", + "hash": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==" + } + }, + "npm:csstype@2.6.19": { + "type": "npm", + "name": "npm:csstype@2.6.19", + "data": { + "version": "2.6.19", + "packageName": "csstype", + "hash": "sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==" + } + }, + "npm:@storybook/addon-backgrounds": { + "type": "npm", + "name": "npm:@storybook/addon-backgrounds", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-backgrounds", + "hash": "sha512-9ddB3QIL8mRurf7TvYG1P9i1sW0b8Iik3kGlHggKogHER9WJPzbiUeH0XDjkASSa4rMCZdYn5CZKNkIAoJ2jdA==" + } + }, + "npm:@octokit/types@10.0.0": { + "type": "npm", + "name": "npm:@octokit/types@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "@octokit/types", + "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" + } + }, + "npm:object-is": { + "type": "npm", + "name": "npm:object-is", + "data": { + "version": "1.1.5", + "packageName": "object-is", + "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + } + }, + "npm:@jest/types": { + "type": "npm", + "name": "npm:@jest/types", + "data": { + "version": "29.6.3", + "packageName": "@jest/types", + "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" + } + }, + "npm:react-frame-component": { + "type": "npm", + "name": "npm:react-frame-component", + "data": { + "version": "4.1.1", + "packageName": "react-frame-component", + "hash": "sha512-NfJp90AvYA1R6+uSYafQ+n+UM2HjHqi4WGHeprVXa6quU9d8o6ZFRzQ36uemY82dlkZFzf2jigFx6E4UzNFajA==" + } + }, + "npm:jsonpointer": { + "type": "npm", + "name": "npm:jsonpointer", + "data": { + "version": "5.0.0", + "packageName": "jsonpointer", + "hash": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==" + } + }, + "npm:chalk@4.1.2": { + "type": "npm", + "name": "npm:chalk@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:@emotion/serialize": { + "type": "npm", + "name": "npm:@emotion/serialize", + "data": { + "version": "0.11.15", + "packageName": "@emotion/serialize", + "hash": "sha512-YE+qnrmGwyR+XB5j7Bi+0GT1JWsdcjM/d4POu+TXkcnrRs4RFCCsi3d/Ebf+wSStHqAlTT2+dfd+b9N9EO2KBg==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:fd-slicer": { + "type": "npm", + "name": "npm:fd-slicer", + "data": { + "version": "1.1.0", + "packageName": "fd-slicer", + "hash": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=" + } + }, + "npm:jest-circus": { + "type": "npm", + "name": "npm:jest-circus", + "data": { + "version": "29.7.0", + "packageName": "jest-circus", + "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" + } + }, + "npm:request-promise-native": { + "type": "npm", + "name": "npm:request-promise-native", + "data": { + "version": "1.0.9", + "packageName": "request-promise-native", + "hash": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==" + } + }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.1", + "packageName": "rxjs", + "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:plugin-error": { + "type": "npm", + "name": "npm:plugin-error", + "data": { + "version": "1.0.1", + "packageName": "plugin-error", + "hash": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:to-through": { + "type": "npm", + "name": "npm:to-through", + "data": { + "version": "2.0.0", + "packageName": "to-through", + "hash": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=" + } + }, + "npm:cross-fetch": { + "type": "npm", + "name": "npm:cross-fetch", + "data": { + "version": "3.1.5", + "packageName": "cross-fetch", + "hash": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==" + } + }, + "npm:@linaria/shaker": { + "type": "npm", + "name": "npm:@linaria/shaker", + "data": { + "version": "3.0.0-beta.22", + "packageName": "@linaria/shaker", + "hash": "sha512-NOi71i/XfBJpBOT5eepRvv6B64IMdjsKwv+vxLW+IuFHx3wnqXgZsgimNK2qoXbpqy9xWsSEeB/4QA4m8GCUKQ==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "1.2.2", + "packageName": "colorette", + "hash": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + } + }, + "npm:lodash.isequal": { + "type": "npm", + "name": "npm:lodash.isequal", + "data": { + "version": "4.5.0", + "packageName": "lodash.isequal", + "hash": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + } + }, + "npm:typed-rest-client": { + "type": "npm", + "name": "npm:typed-rest-client", + "data": { + "version": "1.8.9", + "packageName": "typed-rest-client", + "hash": "sha512-uSmjE38B80wjL85UFX3sTYEUlvZ1JgCRhsWj/fJ4rZ0FqDUFoIuodtiVeE+cUqiVTOKPdKrp/sdftD15MDek6g==" + } + }, + "npm:which@2.0.2": { + "type": "npm", + "name": "npm:which@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.2.0", + "packageName": "fraction.js", + "hash": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + } + }, + "npm:data-urls": { + "type": "npm", + "name": "npm:data-urls", + "data": { + "version": "3.0.2", + "packageName": "data-urls", + "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" + } + }, + "npm:html-webpack-plugin": { + "type": "npm", + "name": "npm:html-webpack-plugin", + "data": { + "version": "5.1.0", + "packageName": "html-webpack-plugin", + "hash": "sha512-2axkp+2NHmvHUWrKe1dY4LyM3WatQEdFChr42OY7R/Ad7f0AQzaKscGCcqN/FtQBxo8rdfJP7M3RMFDttqok3g==" + } + }, + "npm:lodash.endswith": { + "type": "npm", + "name": "npm:lodash.endswith", + "data": { + "version": "4.2.1", + "packageName": "lodash.endswith", + "hash": "sha1-/tWawXOO0+I27dcGTsRWRIs3vAk=" + } + }, + "npm:object.defaults": { + "type": "npm", + "name": "npm:object.defaults", + "data": { + "version": "1.1.0", + "packageName": "object.defaults", + "hash": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@types/unist": { + "type": "npm", + "name": "npm:@types/unist", + "data": { + "version": "2.0.6", + "packageName": "@types/unist", + "hash": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "2.6.4", + "packageName": "async", + "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" + } + }, + "npm:babel-runtime": { + "type": "npm", + "name": "npm:babel-runtime", + "data": { + "version": "6.26.0", + "packageName": "babel-runtime", + "hash": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=" + } + }, + "npm:formik": { + "type": "npm", + "name": "npm:formik", + "data": { + "version": "2.2.6", + "packageName": "formik", + "hash": "sha512-Kxk2zQRafy56zhLmrzcbryUpMBvT0tal5IvcifK5+4YNGelKsnrODFJ0sZQRMQboblWNym4lAW3bt+tf2vApSA==" + } + }, + "npm:dot-case": { + "type": "npm", + "name": "npm:dot-case", + "data": { + "version": "2.1.1", + "packageName": "dot-case", + "hash": "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:process": { + "type": "npm", + "name": "npm:process", + "data": { + "version": "0.11.10", + "packageName": "process", + "hash": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + } + }, + "npm:puppeteer": { + "type": "npm", + "name": "npm:puppeteer", + "data": { + "version": "19.6.0", + "packageName": "puppeteer", + "hash": "sha512-KpRjn/bosTWe8xOQ/F5J1UmQ4inR77ADddn8G6MqMPp/y9Tl+7EycXgrjO0/3i/OQfHi5bsvkTKXRkm0ieo/ew==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:synchronous-promise": { + "type": "npm", + "name": "npm:synchronous-promise", + "data": { + "version": "2.0.15", + "packageName": "synchronous-promise", + "hash": "sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "4.2.0", + "packageName": "webpack-dev-middleware", + "hash": "sha512-HVVpHw+5H4lfGasUKjpIkOy9TB27OyKiL13c+dhzVG1w77OQ87b408fp0qKDKQQkNGgShbStDzVJ8sK46JajXg==" + } + }, + "npm:liftoff": { + "type": "npm", + "name": "npm:liftoff", + "data": { + "version": "2.5.0", + "packageName": "liftoff", + "hash": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:@microsoft/tsdoc@0.14.2": { + "type": "npm", + "name": "npm:@microsoft/tsdoc@0.14.2", + "data": { + "version": "0.14.2", + "packageName": "@microsoft/tsdoc", + "hash": "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==" + } + }, + "npm:@dnd-kit/sortable": { + "type": "npm", + "name": "npm:@dnd-kit/sortable", + "data": { + "version": "7.0.2", + "packageName": "@dnd-kit/sortable", + "hash": "sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA==" + } + }, + "npm:@jest/transform@26.6.2": { + "type": "npm", + "name": "npm:@jest/transform@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "@jest/transform", + "hash": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==" + } + }, + "npm:memfs@3.4.1": { + "type": "npm", + "name": "npm:memfs@3.4.1", + "data": { + "version": "3.4.1", + "packageName": "memfs", + "hash": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==" + } + }, + "npm:functional-red-black-tree": { + "type": "npm", + "name": "npm:functional-red-black-tree", + "data": { + "version": "1.0.1", + "packageName": "functional-red-black-tree", + "hash": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + } + }, + "npm:@nevware21/ts-async": { + "type": "npm", + "name": "npm:@nevware21/ts-async", + "data": { + "version": "0.2.6", + "packageName": "@nevware21/ts-async", + "hash": "sha512-NCUqEZSbsy7LVtKlUScd/eTst6djkWauLlzoIPVKCOxalEBdO8lrgNRIm4Xy68JNudNN5faqa2WA12X8m0BVhA==" + } + }, + "npm:core-js-compat": { + "type": "npm", + "name": "npm:core-js-compat", + "data": { + "version": "3.33.1", + "packageName": "core-js-compat", + "hash": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==" + } + }, + "npm:ora@3.4.0": { + "type": "npm", + "name": "npm:ora@3.4.0", + "data": { + "version": "3.4.0", + "packageName": "ora", + "hash": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==" + } + }, + "npm:rsvp": { + "type": "npm", + "name": "npm:rsvp", + "data": { + "version": "4.8.5", + "packageName": "rsvp", + "hash": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" + } + }, + "npm:@types/loader-utils": { + "type": "npm", + "name": "npm:@types/loader-utils", + "data": { + "version": "2.0.3", + "packageName": "@types/loader-utils", + "hash": "sha512-sDXXzZnTLXgdso54/iOpAFSDgqhVXabCvwGAt77Agadh/Xk0QYgOk520r3tpOouI098gyqGIFywx8Op1voc3vQ==" + } + }, + "npm:axobject-query": { + "type": "npm", + "name": "npm:axobject-query", + "data": { + "version": "2.2.0", + "packageName": "axobject-query", + "hash": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + } + }, + "npm:globby@6.1.0": { + "type": "npm", + "name": "npm:globby@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "globby", + "hash": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=" + } + }, + "npm:react-hot-loader": { + "type": "npm", + "name": "npm:react-hot-loader", + "data": { + "version": "4.13.0", + "packageName": "react-hot-loader", + "hash": "sha512-JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA==" + } + }, + "npm:@types/react-router": { + "type": "npm", + "name": "npm:@types/react-router", + "data": { + "version": "5.1.4", + "packageName": "@types/react-router", + "hash": "sha512-PZtnBuyfL07sqCJvGg3z+0+kt6fobc/xmle08jBiezLS8FrmGeiGkJnuxL/8Zgy9L83ypUhniV5atZn/L8n9MQ==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:@microsoft/applicationinsights-common": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-common", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-common", + "hash": "sha512-y+WXWop+OVim954Cu1uyYMnNx6PWO8okHpZIQi/1YSqtqaYdtJVPv4P0AVzwJdohxzVfgzKvqj9nec/VWqE2Zg==" + } + }, + "npm:csv-stringify": { + "type": "npm", + "name": "npm:csv-stringify", + "data": { + "version": "6.2.0", + "packageName": "csv-stringify", + "hash": "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA==" + } + }, + "npm:@octokit/core@4.2.4": { + "type": "npm", + "name": "npm:@octokit/core@4.2.4", + "data": { + "version": "4.2.4", + "packageName": "@octokit/core", + "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:@azure/core-asynciterator-polyfill": { + "type": "npm", + "name": "npm:@azure/core-asynciterator-polyfill", + "data": { + "version": "1.0.0", + "packageName": "@azure/core-asynciterator-polyfill", + "hash": "sha512-kmv8CGrPfN9SwMwrkiBK9VTQYxdFQEGe0BmQk+M8io56P9KNzpAxcWE/1fxJj7uouwN4kXF0BHW8DNlgx+wtCg==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:webpack-virtual-modules@0.4.3": { + "type": "npm", + "name": "npm:webpack-virtual-modules@0.4.3", + "data": { + "version": "0.4.3", + "packageName": "webpack-virtual-modules", + "hash": "sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==" + } + }, + "npm:unified@9.2.0": { + "type": "npm", + "name": "npm:unified@9.2.0", + "data": { + "version": "9.2.0", + "packageName": "unified", + "hash": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==" + } + }, + "npm:@microsoft/tsdoc": { + "type": "npm", + "name": "npm:@microsoft/tsdoc", + "data": { + "version": "0.14.1", + "packageName": "@microsoft/tsdoc", + "hash": "sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==" + } + }, + "npm:css-loader@3.6.0": { + "type": "npm", + "name": "npm:css-loader@3.6.0", + "data": { + "version": "3.6.0", + "packageName": "css-loader", + "hash": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==" + } + }, + "npm:easy-stack": { + "type": "npm", + "name": "npm:easy-stack", + "data": { + "version": "1.0.0", + "packageName": "easy-stack", + "hash": "sha1-EskbMIWjfwuqM26UhurEv5Tj54g=" + } + }, + "npm:esbuild-linux-riscv64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-riscv64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-riscv64", + "hash": "sha512-syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==" + } + }, + "npm:@storybook/preview-web": { + "type": "npm", + "name": "npm:@storybook/preview-web", + "data": { + "version": "6.5.15", + "packageName": "@storybook/preview-web", + "hash": "sha512-gIHABSAD0JS0iRaG67BnSDq/q8Zf4fFwEWBQOSYgcEx2TzhAUeSkhGZUQHdlOTCwuA2PpXT0/cWDH8u2Ev+msg==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.17.1", + "packageName": "@types/body-parser", + "hash": "sha512-RoX2EZjMiFMjZh9lmYrwgoP9RTpAjSHiJxdp4oidAQVO02T7HER3xj9UKue5534ULWeqVEkujhWcyvUce+d68w==" + } + }, + "npm:z-schema": { + "type": "npm", + "name": "npm:z-schema", + "data": { + "version": "5.0.2", + "packageName": "z-schema", + "hash": "sha512-40TH47ukMHq5HrzkeVE40Ad7eIDKaRV2b+Qpi2prLc9X9eFJFzV7tMe5aH12e6avaSS/u5l653EQOv+J9PirPw==" + } + }, + "npm:are-we-there-yet": { + "type": "npm", + "name": "npm:are-we-there-yet", + "data": { + "version": "1.1.5", + "packageName": "are-we-there-yet", + "hash": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==" + } + }, + "npm:monaco-editor": { + "type": "npm", + "name": "npm:monaco-editor", + "data": { + "version": "0.33.0", + "packageName": "monaco-editor", + "hash": "sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==" + } + }, + "npm:@octokit/types": { + "type": "npm", + "name": "npm:@octokit/types", + "data": { + "version": "6.41.0", + "packageName": "@octokit/types", + "hash": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==" + } + }, + "npm:jest-get-type": { + "type": "npm", + "name": "npm:jest-get-type", + "data": { + "version": "29.6.3", + "packageName": "jest-get-type", + "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" + } + }, + "npm:lodash._reescape": { + "type": "npm", + "name": "npm:lodash._reescape", + "data": { + "version": "3.0.0", + "packageName": "lodash._reescape", + "hash": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=" + } + }, + "npm:node-plop": { + "type": "npm", + "name": "npm:node-plop", + "data": { + "version": "0.25.0", + "packageName": "node-plop", + "hash": "sha512-OFvnTsDw9nxNdLrYcveJhU2Hnzg+AxOz6xBk8uXsi0vCOSP7Rng98pdgfsuZKyCN+qrc+/fSwlNC5hkXhJ6gww==" + } + }, + "npm:@textlint/markdown-to-ast": { + "type": "npm", + "name": "npm:@textlint/markdown-to-ast", + "data": { + "version": "6.1.7", + "packageName": "@textlint/markdown-to-ast", + "hash": "sha512-B0QtokeQR4a9+4q0NQr8T9l7A1fFihTN5Ze57tVgqW+3ymzXEouh8DvPHeNQ4T6jEkAThvdjk95mxAMpGRJ79w==" + } + }, + "npm:hast-util-from-parse5": { + "type": "npm", + "name": "npm:hast-util-from-parse5", + "data": { + "version": "6.0.1", + "packageName": "hast-util-from-parse5", + "hash": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==" + } + }, + "npm:tunnel": { + "type": "npm", + "name": "npm:tunnel", + "data": { + "version": "0.0.6", + "packageName": "tunnel", + "hash": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:mkdirp-classic": { + "type": "npm", + "name": "npm:mkdirp-classic", + "data": { + "version": "0.5.3", + "packageName": "mkdirp-classic", + "hash": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" + } + }, + "npm:strip-indent": { + "type": "npm", + "name": "npm:strip-indent", + "data": { + "version": "3.0.0", + "packageName": "strip-indent", + "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + } + }, + "npm:onetime@2.0.1": { + "type": "npm", + "name": "npm:onetime@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "onetime", + "hash": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=" + } + }, + "npm:builtin-status-codes": { + "type": "npm", + "name": "npm:builtin-status-codes", + "data": { + "version": "3.0.0", + "packageName": "builtin-status-codes", + "hash": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + } + }, + "npm:querystring": { + "type": "npm", + "name": "npm:querystring", + "data": { + "version": "0.2.0", + "packageName": "querystring", + "hash": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + } + }, + "npm:rechoir@0.7.0": { + "type": "npm", + "name": "npm:rechoir@0.7.0", + "data": { + "version": "0.7.0", + "packageName": "rechoir", + "hash": "sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q==" + } + }, + "npm:tsconfig-paths@4.2.0": { + "type": "npm", + "name": "npm:tsconfig-paths@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "tsconfig-paths", + "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" + } + }, + "npm:eslint-visitor-keys@2.0.0": { + "type": "npm", + "name": "npm:eslint-visitor-keys@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" + } + }, + "npm:lie": { + "type": "npm", + "name": "npm:lie", + "data": { + "version": "3.3.0", + "packageName": "lie", + "hash": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:di": { + "type": "npm", + "name": "npm:di", + "data": { + "version": "0.0.1", + "packageName": "di", + "hash": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.13", + "packageName": "node-releases", + "hash": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.0.4", + "packageName": "detect-node", + "hash": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.2", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==" + } + }, + "npm:mdast-util-to-string": { + "type": "npm", + "name": "npm:mdast-util-to-string", + "data": { + "version": "1.1.0", + "packageName": "mdast-util-to-string", + "hash": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==" + } + }, + "npm:@babel/plugin-transform-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-methods", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-private-methods", + "hash": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==" + } + }, + "npm:parallel-transform": { + "type": "npm", + "name": "npm:parallel-transform", + "data": { + "version": "1.1.0", + "packageName": "parallel-transform", + "hash": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=" + } + }, + "npm:rimraf@2.7.1": { + "type": "npm", + "name": "npm:rimraf@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "rimraf", + "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + } + }, + "npm:node-domexception": { + "type": "npm", + "name": "npm:node-domexception", + "data": { + "version": "1.0.0", + "packageName": "node-domexception", + "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "1.6.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + } + }, + "npm:@babel/plugin-proposal-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==" + } + }, + "npm:@types/graphviz": { + "type": "npm", + "name": "npm:@types/graphviz", + "data": { + "version": "0.0.34", + "packageName": "@types/graphviz", + "hash": "sha512-5pyobgT+/NhwKy/LMLw14xFInvYXBPx4ITc2a5FvZbm6hcudcP73DpTKTlaZbjr8fdNAkaK9KdP8GAEF0iBwlQ==" + } + }, + "npm:@types/micromatch": { + "type": "npm", + "name": "npm:@types/micromatch", + "data": { + "version": "4.0.2", + "packageName": "@types/micromatch", + "hash": "sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==" + } + }, + "npm:d3-path@3.1.0": { + "type": "npm", + "name": "npm:d3-path@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "d3-path", + "hash": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==" + } + }, + "npm:node-machine-id": { + "type": "npm", + "name": "npm:node-machine-id", + "data": { + "version": "1.1.12", + "packageName": "node-machine-id", + "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" + } + }, + "npm:playwright": { + "type": "npm", + "name": "npm:playwright", + "data": { + "version": "1.27.1", + "packageName": "playwright", + "hash": "sha512-xXYZ7m36yTtC+oFgqH0eTgullGztKSRMb4yuwLPl8IYSmgBM88QiB+3IWb1mRIC9/NNwcgbG0RwtFlg+EAFQHQ==" + } + }, + "npm:html-webpack-plugin@4.5.2": { + "type": "npm", + "name": "npm:html-webpack-plugin@4.5.2", + "data": { + "version": "4.5.2", + "packageName": "html-webpack-plugin", + "hash": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==" + } + }, + "npm:plugin-error@0.1.2": { + "type": "npm", + "name": "npm:plugin-error@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "plugin-error", + "hash": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=" + } + }, + "npm:create-ecdh": { + "type": "npm", + "name": "npm:create-ecdh", + "data": { + "version": "4.0.3", + "packageName": "create-ecdh", + "hash": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==" + } + }, + "npm:are-we-there-yet@2.0.0": { + "type": "npm", + "name": "npm:are-we-there-yet@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "are-we-there-yet", + "hash": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==" + } + }, + "npm:camelcase@4.1.0": { + "type": "npm", + "name": "npm:camelcase@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "camelcase", + "hash": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" + } + }, + "npm:p-map@5.5.0": { + "type": "npm", + "name": "npm:p-map@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "p-map", + "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.19.2", + "packageName": "body-parser", + "hash": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==" + } + }, + "npm:ordered-read-streams": { + "type": "npm", + "name": "npm:ordered-read-streams", + "data": { + "version": "1.0.1", + "packageName": "ordered-read-streams", + "hash": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=" + } + }, + "npm:react-node-resolver": { + "type": "npm", + "name": "npm:react-node-resolver", + "data": { + "version": "1.0.1", + "packageName": "react-node-resolver", + "hash": "sha1-F5inKcDiGL8vDo3fecVQ1K9h2Do=" + } + }, + "npm:cssjanus": { + "type": "npm", + "name": "npm:cssjanus", + "data": { + "version": "2.1.0", + "packageName": "cssjanus", + "hash": "sha512-kAijbny3GmdOi9k+QT6DGIXqFvL96aksNlGr4Rhk9qXDZYWUojU4bRc3IHWxdaLNOqgEZHuXoe5Wl2l7dxLW5g==" + } + }, + "npm:run-queue": { + "type": "npm", + "name": "npm:run-queue", + "data": { + "version": "1.0.3", + "packageName": "run-queue", + "hash": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=" + } + }, + "npm:yallist@3.1.1": { + "type": "npm", + "name": "npm:yallist@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.22.15", + "packageName": "@babel/template", + "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" + } + }, + "npm:sort-keys@1.1.2": { + "type": "npm", + "name": "npm:sort-keys@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "sort-keys", + "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" + } + }, + "npm:is-installed-globally@0.1.0": { + "type": "npm", + "name": "npm:is-installed-globally@0.1.0", + "data": { + "version": "0.1.0", + "packageName": "is-installed-globally", + "hash": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=" + } + }, + "npm:jest-each": { + "type": "npm", + "name": "npm:jest-each", + "data": { + "version": "29.7.0", + "packageName": "jest-each", + "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" + } + }, + "npm:hast-util-to-parse5": { + "type": "npm", + "name": "npm:hast-util-to-parse5", + "data": { + "version": "6.0.0", + "packageName": "hast-util-to-parse5", + "hash": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:language-subtag-registry": { + "type": "npm", + "name": "npm:language-subtag-registry", + "data": { + "version": "0.3.21", + "packageName": "language-subtag-registry", + "hash": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:fsevents@2.3.3": { + "type": "npm", + "name": "npm:fsevents@2.3.3", + "data": { + "version": "2.3.3", + "packageName": "fsevents", + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "2.0.0", + "packageName": "sort-keys", + "hash": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=" + } + }, + "npm:gulplog": { + "type": "npm", + "name": "npm:gulplog", + "data": { + "version": "1.0.0", + "packageName": "gulplog", + "hash": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.2", + "packageName": "pure-rand", + "hash": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==" + } + }, + "npm:@esbuild/netbsd-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-WNa5zZk1XpTTwMDompZmvQLHszDDDN7lYjEHCUmAGB83Bgs20EMs7ICD+oKeT6xt4phV4NDdSi/8OfjPbSbZfQ==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "1.1.6", + "packageName": "is-buffer", + "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + } + }, + "npm:unique-slug@3.0.0": { + "type": "npm", + "name": "npm:unique-slug@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "unique-slug", + "hash": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" + } + }, + "npm:qs@6.9.7": { + "type": "npm", + "name": "npm:qs@6.9.7", + "data": { + "version": "6.9.7", + "packageName": "qs", + "hash": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==" + } + }, + "npm:write-file-atomic@3.0.3": { + "type": "npm", + "name": "npm:write-file-atomic@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "write-file-atomic", + "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + } + }, + "npm:unist-util-position": { + "type": "npm", + "name": "npm:unist-util-position", + "data": { + "version": "3.0.4", + "packageName": "unist-util-position", + "hash": "sha512-tWvIbV8goayTjobxDIr4zVTyG+Q7ragMSMeKC3xnPl9xzIc0+she8mxXLM3JVNDDsfARPbCd3XdzkyLdo7fF3g==" + } + }, + "npm:@types/enzyme": { + "type": "npm", + "name": "npm:@types/enzyme", + "data": { + "version": "3.10.7", + "packageName": "@types/enzyme", + "hash": "sha512-J+0wduPGAkzOvW7sr6hshGv1gBI3WXLRTczkRKzVPxLP3xAkYxZmvvagSBPw8Z452fZ8TGUxCmAXcb44yLQksw==" + } + }, + "npm:@types/gulp": { + "type": "npm", + "name": "npm:@types/gulp", + "data": { + "version": "4.0.9", + "packageName": "@types/gulp", + "hash": "sha512-zzT+wfQ8uwoXjDhRK9Zkmmk09/fbLLmN/yDHFizJiEKIve85qutOnXcP/TM2sKPBTU+Jc16vfPbOMkORMUBN7Q==" + } + }, + "npm:@npmcli/promise-spawn": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn", + "data": { + "version": "1.2.0", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-nFtqjVETliApiRdjbYwKwhlSHx2ZMagyj5b9YbNt0BWeeOVxJd47ZVE2u16vxDHyTOZvk+YLV7INwfAE9a2uow==" + } + }, + "npm:base64id": { + "type": "npm", + "name": "npm:base64id", + "data": { + "version": "2.0.0", + "packageName": "base64id", + "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" + } + }, + "npm:cloneable-readable": { + "type": "npm", + "name": "npm:cloneable-readable", + "data": { + "version": "1.1.3", + "packageName": "cloneable-readable", + "hash": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "3.4.1", + "packageName": "eslint-visitor-keys", + "hash": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==" + } + }, + "npm:comma-separated-tokens": { + "type": "npm", + "name": "npm:comma-separated-tokens", + "data": { + "version": "1.0.7", + "packageName": "comma-separated-tokens", + "hash": "sha512-Jrx3xsP4pPv4AwJUDWY9wOXGtwPXARej6Xd99h4TUGotmf8APuquKMpK+dnD3UgyxK7OEWaisjZz+3b5jtL6xQ==" + } + }, + "npm:react-test-renderer": { + "type": "npm", + "name": "npm:react-test-renderer", + "data": { + "version": "17.0.2", + "packageName": "react-test-renderer", + "hash": "sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==" + } + }, + "npm:rimraf@4.4.1": { + "type": "npm", + "name": "npm:rimraf@4.4.1", + "data": { + "version": "4.4.1", + "packageName": "rimraf", + "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" + } + }, + "npm:safe-regex": { + "type": "npm", + "name": "npm:safe-regex", + "data": { + "version": "1.1.0", + "packageName": "safe-regex", + "hash": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=" + } + }, + "npm:strip-ansi@5.2.0": { + "type": "npm", + "name": "npm:strip-ansi@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "strip-ansi", + "hash": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + } + }, + "npm:@storybook/router": { + "type": "npm", + "name": "npm:@storybook/router", + "data": { + "version": "6.5.15", + "packageName": "@storybook/router", + "hash": "sha512-9t8rI8t7/Krolau29gsdjdbRQ66orONIyP0efp0EukVgv6reNFzb/U14ARrl0uHys6Tl5Xyece9FoakQUdn8Kg==" + } + }, + "npm:columnify": { + "type": "npm", + "name": "npm:columnify", + "data": { + "version": "1.6.0", + "packageName": "columnify", + "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" + } + }, + "npm:devtools-protocol@0.0.1082910": { + "type": "npm", + "name": "npm:devtools-protocol@0.0.1082910", + "data": { + "version": "0.0.1082910", + "packageName": "devtools-protocol", + "hash": "sha512-RqoZ2GmqaNxyx+99L/RemY5CkwG9D0WEfOKxekwCRXOGrDCep62ngezEJUVMq6rISYQ+085fJnWDQqGHlxVNww==" + } + }, + "npm:d3-interpolate": { + "type": "npm", + "name": "npm:d3-interpolate", + "data": { + "version": "1.4.0", + "packageName": "d3-interpolate", + "hash": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==" + } + }, + "npm:faker": { + "type": "npm", + "name": "npm:faker", + "data": { + "version": "4.1.0", + "packageName": "faker", + "hash": "sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8=" + } + }, + "npm:@opentelemetry/api@1.0.3": { + "type": "npm", + "name": "npm:@opentelemetry/api@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "@opentelemetry/api", + "hash": "sha512-puWxACExDe9nxbBB3lOymQFrLYml2dVOrd7USiVRnSbgXE+KwBu+HxFvxrzfqsiSda9IWsXJG1ef7C1O2/GmKQ==" + } + }, + "npm:liftoff@3.1.0": { + "type": "npm", + "name": "npm:liftoff@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "liftoff", + "hash": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==" + } + }, + "npm:address": { + "type": "npm", + "name": "npm:address", + "data": { + "version": "1.1.2", + "packageName": "address", + "hash": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==" + } + }, + "npm:@esbuild/freebsd-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-nSO5uZT2clM6hosjWHAsS15hLrwCvIWx+b2e3lZ3MwbYSaXwvfO528OF+dLjas1g3bZonciivI8qKR/Hm7IWGw==" + } + }, + "npm:pbkdf2": { + "type": "npm", + "name": "npm:pbkdf2", + "data": { + "version": "3.0.17", + "packageName": "pbkdf2", + "hash": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==" + } + }, + "npm:each-props": { + "type": "npm", + "name": "npm:each-props", + "data": { + "version": "1.3.2", + "packageName": "each-props", + "hash": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:react-table": { + "type": "npm", + "name": "npm:react-table", + "data": { + "version": "7.1.0", + "packageName": "react-table", + "hash": "sha512-AZpgW0Xpo6Z7jxXZIBovzCGoYVkuBwATsJh7X4+JXwq9JtDaorOmxWC9gKx5Hui4d+n+I99enyyJS+LRtKydxA==" + } + }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "2.0.0", + "packageName": "style-loader", + "hash": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==" + } + }, + "npm:istanbul-instrumenter-loader": { + "type": "npm", + "name": "npm:istanbul-instrumenter-loader", + "data": { + "version": "3.0.1", + "packageName": "istanbul-instrumenter-loader", + "hash": "sha512-a5SPObZgS0jB/ixaKSMdn6n/gXSrK2S6q/UfRJBT3e6gQmVjwZROTODQsYW5ZNwOu78hG62Y3fWlebaVOL0C+w==" + } + }, + "npm:@azure/core-xml": { + "type": "npm", + "name": "npm:@azure/core-xml", + "data": { + "version": "1.0.0", + "packageName": "@azure/core-xml", + "hash": "sha512-VSM3wQomzRZk4SnDK5vKaROON/d3hgfl+D/pfLjpGR8gxRGuO0I8R+Rp/qj6Cq3x7HPgUqrii3/s/RRwDWWdvQ==" + } + }, + "npm:tsconfig-paths-webpack-plugin": { + "type": "npm", + "name": "npm:tsconfig-paths-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "tsconfig-paths-webpack-plugin", + "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" + } + }, + "npm:create-hash": { + "type": "npm", + "name": "npm:create-hash", + "data": { + "version": "1.2.0", + "packageName": "create-hash", + "hash": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==" + } + }, + "npm:flagged-respawn": { + "type": "npm", + "name": "npm:flagged-respawn", + "data": { + "version": "1.0.1", + "packageName": "flagged-respawn", + "hash": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==" + } + }, + "npm:tsscmp": { + "type": "npm", + "name": "npm:tsscmp", + "data": { + "version": "1.0.6", + "packageName": "tsscmp", + "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" + } + }, + "npm:require-package-name": { + "type": "npm", + "name": "npm:require-package-name", + "data": { + "version": "2.0.1", + "packageName": "require-package-name", + "hash": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=" + } + }, + "npm:underscore": { + "type": "npm", + "name": "npm:underscore", + "data": { + "version": "1.12.1", + "packageName": "underscore", + "hash": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + } + }, + "npm:inline-style-parser": { + "type": "npm", + "name": "npm:inline-style-parser", + "data": { + "version": "0.1.1", + "packageName": "inline-style-parser", + "hash": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.4.3", + "packageName": "raw-body", + "hash": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==" + } + }, + "npm:deep-assign": { + "type": "npm", + "name": "npm:deep-assign", + "data": { + "version": "2.0.0", + "packageName": "deep-assign", + "hash": "sha1-6+BrHwfwja5ZdiDj3RYi83GhxXI=" + } + }, + "npm:cli-boxes@1.0.0": { + "type": "npm", + "name": "npm:cli-boxes@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "cli-boxes", + "hash": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=" + } + }, + "npm:@rushstack/package-deps-hash": { + "type": "npm", + "name": "npm:@rushstack/package-deps-hash", + "data": { + "version": "3.2.40", + "packageName": "@rushstack/package-deps-hash", + "hash": "sha512-0nnhbWrYE8mdEZXYXY9wOGEMFW3VtZ7+vgh6CJeyY95MDqjz6Alx2PpAHM1T53TNDV/LNFagwl0AzivfJnjhCw==" + } + }, + "npm:airbnb-js-shims": { + "type": "npm", + "name": "npm:airbnb-js-shims", + "data": { + "version": "2.2.1", + "packageName": "airbnb-js-shims", + "hash": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.4", + "packageName": "@types/babel__generator", + "hash": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==" + } + }, + "npm:ansi-styles@3.2.1": { + "type": "npm", + "name": "npm:ansi-styles@3.2.1", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:ansi-regex@3.0.1": { + "type": "npm", + "name": "npm:ansi-regex@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "ansi-regex", + "hash": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" + } + }, + "npm:babel-plugin-annotate-pure-imports": { + "type": "npm", + "name": "npm:babel-plugin-annotate-pure-imports", + "data": { + "version": "1.0.0-1", + "packageName": "babel-plugin-annotate-pure-imports", + "hash": "sha512-BJk9paXY1qh7amBLwWfhWbvxFWsUCmiz6NSnpTbP5T4EAM0PwvCr6U5bz+0NbCADphziPMVgbt/M+/06oV+1GA==" + } + }, + "npm:@fluentui/react-icons": { + "type": "npm", + "name": "npm:@fluentui/react-icons", + "data": { + "version": "2.0.217", + "packageName": "@fluentui/react-icons", + "hash": "sha512-kTaocW+UuLTzEaTobzQTQZX5lamall7U8p4n9aibcGQYeNPtxhRvdNJK8SNkKoSGCukx46mB2hDfc0mKvky+wQ==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "3.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "1.2.0", + "packageName": "css-select", + "hash": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=" + } + }, + "npm:esbuild-freebsd-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-freebsd-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-freebsd-64", + "hash": "sha512-cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:are-we-there-yet@3.0.1": { + "type": "npm", + "name": "npm:are-we-there-yet@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "are-we-there-yet", + "hash": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:@nrwl/linter": { + "type": "npm", + "name": "npm:@nrwl/linter", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/linter", + "hash": "sha512-XvMuTeIc2I3630iaqhlV4w3qgABQIo+kv8mT0DbT1HfjjZDm4ST8hrvkdWSf9mCl24vShNL8GDVQVNOX0bZY5A==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:got@6.7.1": { + "type": "npm", + "name": "npm:got@6.7.1", + "data": { + "version": "6.7.1", + "packageName": "got", + "hash": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "7.25.0", + "packageName": "eslint", + "hash": "sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==" + } + }, + "npm:inflation": { + "type": "npm", + "name": "npm:inflation", + "data": { + "version": "2.0.0", + "packageName": "inflation", + "hash": "sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==" + } + }, + "npm:inquirer@8.2.4": { + "type": "npm", + "name": "npm:inquirer@8.2.4", + "data": { + "version": "8.2.4", + "packageName": "inquirer", + "hash": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==" + } + }, + "npm:is-whitespace-character": { + "type": "npm", + "name": "npm:is-whitespace-character", + "data": { + "version": "1.0.4", + "packageName": "is-whitespace-character", + "hash": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" + } + }, + "npm:keyborg": { + "type": "npm", + "name": "npm:keyborg", + "data": { + "version": "2.3.0", + "packageName": "keyborg", + "hash": "sha512-TU7VDxohtY7Rf4rTuCwa8QrHjya4eqKiSThI3lHF/wcBpm29gAui/vy0wY8l3ahcFEJ9tZhV+iduXPo6EkNQXw==" + } + }, + "npm:kind-of@4.0.0": { + "type": "npm", + "name": "npm:kind-of@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "kind-of", + "hash": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=" + } + }, + "npm:dom-walk": { + "type": "npm", + "name": "npm:dom-walk", + "data": { + "version": "0.1.1", + "packageName": "dom-walk", + "hash": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" + } + }, + "npm:is-stream@1.1.0": { + "type": "npm", + "name": "npm:is-stream@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-stream", + "hash": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + } + }, + "npm:crypto-random-string": { + "type": "npm", + "name": "npm:crypto-random-string", + "data": { + "version": "1.0.0", + "packageName": "crypto-random-string", + "hash": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" + } + }, + "npm:libnpmaccess": { + "type": "npm", + "name": "npm:libnpmaccess", + "data": { + "version": "7.0.2", + "packageName": "libnpmaccess", + "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" + } + }, + "npm:@emotion/core": { + "type": "npm", + "name": "npm:@emotion/core", + "data": { + "version": "10.1.1", + "packageName": "@emotion/core", + "hash": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==" + } + }, + "npm:@types/execa": { + "type": "npm", + "name": "npm:@types/execa", + "data": { + "version": "0.9.0", + "packageName": "@types/execa", + "hash": "sha512-mgfd93RhzjYBUHHV532turHC2j4l/qxsF/PbfDmprHDEUHmNZGlDn1CEsulGK3AfsPdhkWzZQT/S/k0UGhLGsA==" + } + }, + "npm:lodash.keys@3.1.2": { + "type": "npm", + "name": "npm:lodash.keys@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "lodash.keys", + "hash": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:ms@2.1.1": { + "type": "npm", + "name": "npm:ms@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ms", + "hash": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + }, + "npm:ky-universal": { + "type": "npm", + "name": "npm:ky-universal", + "data": { + "version": "0.3.0", + "packageName": "ky-universal", + "hash": "sha512-CM4Bgb2zZZpsprcjI6DNYTaH3oGHXL2u7BU4DK+lfCuC4snkt9/WRpMYeKbBbXscvKkeqBwzzjFX2WwmKY5K/A==" + } + }, + "npm:nan@2.15.0": { + "type": "npm", + "name": "npm:nan@2.15.0", + "data": { + "version": "2.15.0", + "packageName": "nan", + "hash": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" + } + }, + "npm:next-tick": { + "type": "npm", + "name": "npm:next-tick", + "data": { + "version": "1.0.0", + "packageName": "next-tick", + "hash": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + } + }, + "npm:path-type@3.0.0": { + "type": "npm", + "name": "npm:path-type@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-type", + "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" + } + }, + "npm:ramda": { + "type": "npm", + "name": "npm:ramda", + "data": { + "version": "0.26.1", + "packageName": "ramda", + "hash": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==" + } + }, + "npm:sass-loader": { + "type": "npm", + "name": "npm:sass-loader", + "data": { + "version": "12.4.0", + "packageName": "sass-loader", + "hash": "sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + } + }, + "npm:json-parse-even-better-errors@3.0.0": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==" + } + }, + "npm:util.promisify": { + "type": "npm", + "name": "npm:util.promisify", + "data": { + "version": "1.0.0", + "packageName": "util.promisify", + "hash": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==" + } + }, + "npm:@floating-ui/devtools": { + "type": "npm", + "name": "npm:@floating-ui/devtools", + "data": { + "version": "0.0.1", + "packageName": "@floating-ui/devtools", + "hash": "sha512-itUtNTkiHPfvRDOrAFKLCYEEZ3PrSIir44El6AoBBl7IbmciAx4CxXVfIWjSCIZdZnHFaeXg6vIfEukqC3Z6bw==" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:history": { + "type": "npm", + "name": "npm:history", + "data": { + "version": "4.10.1", + "packageName": "history", + "hash": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" + } + }, + "npm:cacache@16.1.3": { + "type": "npm", + "name": "npm:cacache@16.1.3", + "data": { + "version": "16.1.3", + "packageName": "cacache", + "hash": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==" + } + }, + "npm:lerna-alias": { + "type": "npm", + "name": "npm:lerna-alias", + "data": { + "version": "3.0.3-0", + "packageName": "lerna-alias", + "hash": "sha512-IX0c2QH3v4rkgE+iG7Ro0FSEWKqqrMhvbGbB1txrnaJ8YbcrNbJ0IPpcJi+uiiPLV3olNX74EO08x9hGZ+J5ig==" + } + }, + "npm:dot-prop@5.3.0": { + "type": "npm", + "name": "npm:dot-prop@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:tiny-invariant": { + "type": "npm", + "name": "npm:tiny-invariant", + "data": { + "version": "1.1.0", + "packageName": "tiny-invariant", + "hash": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + } + }, + "npm:@storybook/channel-postmessage": { + "type": "npm", + "name": "npm:@storybook/channel-postmessage", + "data": { + "version": "6.5.15", + "packageName": "@storybook/channel-postmessage", + "hash": "sha512-gMpA8LWT8lC4z5KWnaMh03aazEwtDO7GtY5kZVru+EEMgExGmaR82qgekwmLmgLj2nRJEv0o138o9IqYUcou8w==" + } + }, + "npm:dateformat@2.2.0": { + "type": "npm", + "name": "npm:dateformat@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "dateformat", + "hash": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=" + } + }, + "npm:@types/mdast": { + "type": "npm", + "name": "npm:@types/mdast", + "data": { + "version": "3.0.7", + "packageName": "@types/mdast", + "hash": "sha512-YwR7OK8aPmaBvMMUi+pZXBNoW2unbVbfok4YRqGMJBe1dpDlzpRkJrYEYmvjxgs5JhuQmKfDexrN98u941Zasg==" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:del@7.0.0": { + "type": "npm", + "name": "npm:del@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "del", + "hash": "sha512-tQbV/4u5WVB8HMJr08pgw0b6nG4RGt/tj+7Numvq+zqcvUFeMaIWWOUFltiU+6go8BSO2/ogsB4EasDaj0y68Q==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:@types/request-promise-native": { + "type": "npm", + "name": "npm:@types/request-promise-native", + "data": { + "version": "1.0.18", + "packageName": "@types/request-promise-native", + "hash": "sha512-tPnODeISFc/c1LjWyLuZUY+Z0uLB3+IMfNoQyDEi395+j6kTFTTRAqjENjoPJUid4vHRGEozoTrcTrfZM+AcbA==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:meow@3.7.0": { + "type": "npm", + "name": "npm:meow@3.7.0", + "data": { + "version": "3.7.0", + "packageName": "meow", + "hash": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + } + }, + "npm:is-redirect": { + "type": "npm", + "name": "npm:is-redirect", + "data": { + "version": "1.0.0", + "packageName": "is-redirect", + "hash": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" + } + }, + "npm:ansi-red": { + "type": "npm", + "name": "npm:ansi-red", + "data": { + "version": "0.1.1", + "packageName": "ansi-red", + "hash": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=" + } + }, + "npm:lodash.includes": { + "type": "npm", + "name": "npm:lodash.includes", + "data": { + "version": "4.3.0", + "packageName": "lodash.includes", + "hash": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" + } + }, + "npm:multicast-dns-service-types": { + "type": "npm", + "name": "npm:multicast-dns-service-types", + "data": { + "version": "1.1.0", + "packageName": "multicast-dns-service-types", + "hash": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + } + }, + "npm:object.assign@4.1.0": { + "type": "npm", + "name": "npm:object.assign@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "object.assign", + "hash": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "0.7.0", + "packageName": "dedent", + "hash": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.0.1", + "packageName": "aggregate-error", + "hash": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:quick-lru@4.0.1": { + "type": "npm", + "name": "npm:quick-lru@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "quick-lru", + "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==" + } + }, + "npm:remark-squeeze-paragraphs": { + "type": "npm", + "name": "npm:remark-squeeze-paragraphs", + "data": { + "version": "4.0.0", + "packageName": "remark-squeeze-paragraphs", + "hash": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==" + } + }, + "npm:@emotion/hash": { + "type": "npm", + "name": "npm:@emotion/hash", + "data": { + "version": "0.7.4", + "packageName": "@emotion/hash", + "hash": "sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A==" + } + }, + "npm:snapdragon-node": { + "type": "npm", + "name": "npm:snapdragon-node", + "data": { + "version": "2.1.1", + "packageName": "snapdragon-node", + "hash": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==" + } + }, + "npm:verror": { + "type": "npm", + "name": "npm:verror", + "data": { + "version": "1.10.0", + "packageName": "verror", + "hash": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=" + } + }, + "npm:debug@4.1.1": { + "type": "npm", + "name": "npm:debug@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "debug", + "hash": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.0.0", + "packageName": "escodegen", + "hash": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==" + } + }, + "npm:get-stdin": { + "type": "npm", + "name": "npm:get-stdin", + "data": { + "version": "6.0.0", + "packageName": "get-stdin", + "hash": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==" + } + }, + "npm:npm-pick-manifest@8.0.1": { + "type": "npm", + "name": "npm:npm-pick-manifest@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "npm-pick-manifest", + "hash": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==" + } + }, + "npm:ajv@6.12.6": { + "type": "npm", + "name": "npm:ajv@6.12.6", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.2", + "packageName": "esutils", + "hash": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" + } + }, + "npm:dotparser": { + "type": "npm", + "name": "npm:dotparser", + "data": { + "version": "1.1.1", + "packageName": "dotparser", + "hash": "sha512-8ojhUts0HbLnXJgjTiJOddwVVBUk6hg4SJ5kGiuhzgK/f+y79TiWvICwx1oCWlVbBC8YI3nEaIQg9fjGYbGBXw==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.1", + "packageName": "is-date-object", + "hash": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" + } + }, + "npm:brotli-size": { + "type": "npm", + "name": "npm:brotli-size", + "data": { + "version": "4.0.0", + "packageName": "brotli-size", + "hash": "sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.2", + "packageName": "object.assign", + "hash": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:is-lower-case": { + "type": "npm", + "name": "npm:is-lower-case", + "data": { + "version": "1.1.3", + "packageName": "is-lower-case", + "hash": "sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=" + } + }, + "npm:prefix-style": { + "type": "npm", + "name": "npm:prefix-style", + "data": { + "version": "2.0.1", + "packageName": "prefix-style", + "hash": "sha1-ZrupqHDP2jCKXcIOhekSCTLJWgY=" + } + }, + "npm:simple-swizzle": { + "type": "npm", + "name": "npm:simple-swizzle", + "data": { + "version": "0.2.2", + "packageName": "simple-swizzle", + "hash": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:unique-stream": { + "type": "npm", + "name": "npm:unique-stream", + "data": { + "version": "2.3.1", + "packageName": "unique-stream", + "hash": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.14.51", + "packageName": "esbuild", + "hash": "sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==" + } + }, + "npm:write-pkg": { + "type": "npm", + "name": "npm:write-pkg", + "data": { + "version": "4.0.0", + "packageName": "write-pkg", + "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" + } + }, + "npm:just-task": { + "type": "npm", + "name": "npm:just-task", + "data": { + "version": "1.5.0", + "packageName": "just-task", + "hash": "sha512-oamAeJBBfI3zbzEHjLCnPJJCeBeAJPLssRpAGO/C0vCa7Hf0p2UORBbR77irZTdNRzW/fSLV2ua6lsDJIz3mIA==" + } + }, + "npm:@babel/preset-env": { + "type": "npm", + "name": "npm:@babel/preset-env", + "data": { + "version": "7.23.2", + "packageName": "@babel/preset-env", + "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.4", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==" + } + }, + "npm:ext-list": { + "type": "npm", + "name": "npm:ext-list", + "data": { + "version": "2.2.2", + "packageName": "ext-list", + "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" + } + }, + "npm:git-raw-commits": { + "type": "npm", + "name": "npm:git-raw-commits", + "data": { + "version": "3.0.0", + "packageName": "git-raw-commits", + "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" + } + }, + "npm:@swc/core-linux-arm-gnueabihf@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-arm-gnueabihf@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-arm-gnueabihf", + "hash": "sha512-JVyNIO3tGLPSQ59rJXeKaykTpPhRNozB+7PtYMvMcxpUbYGpEzWxTPkFAX2KKPvl0ejBdA0GW5OXeuPMvTwE0w==" + } + }, + "npm:abort-controller": { + "type": "npm", + "name": "npm:abort-controller", + "data": { + "version": "3.0.0", + "packageName": "abort-controller", + "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.3", + "packageName": "filelist", + "hash": "sha512-LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:tough-cookie@4.1.2": { + "type": "npm", + "name": "npm:tough-cookie@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "tough-cookie", + "hash": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:eslint-config-airbnb-base": { + "type": "npm", + "name": "npm:eslint-config-airbnb-base", + "data": { + "version": "14.2.1", + "packageName": "eslint-config-airbnb-base", + "hash": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==" + } + }, + "npm:lodash.truncate": { + "type": "npm", + "name": "npm:lodash.truncate", + "data": { + "version": "4.4.2", + "packageName": "lodash.truncate", + "hash": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.1", + "packageName": "ansi-escapes", + "hash": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==" + } + }, + "npm:minimist-options": { + "type": "npm", + "name": "npm:minimist-options", + "data": { + "version": "4.1.0", + "packageName": "minimist-options", + "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" + } + }, + "npm:pkg-install": { + "type": "npm", + "name": "npm:pkg-install", + "data": { + "version": "1.0.0", + "packageName": "pkg-install", + "hash": "sha512-UGI8bfhrDb1KN01RZ7Bq08GRQc8rmVjxQ2up0g4mUHPCYDTK1FzQ0PMmLOBCHg3yaIijZ2U3Fn9ofLa4N392Ug==" + } + }, + "npm:jest-leak-detector": { + "type": "npm", + "name": "npm:jest-leak-detector", + "data": { + "version": "29.7.0", + "packageName": "jest-leak-detector", + "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" + } + }, + "npm:pretty-format@25.5.0": { + "type": "npm", + "name": "npm:pretty-format@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "pretty-format", + "hash": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" + } + }, + "npm:fela": { + "type": "npm", + "name": "npm:fela", + "data": { + "version": "10.6.1", + "packageName": "fela", + "hash": "sha512-Fp07Wst/BchfJAufCF+sfeMeIsB8hq+EHObpjUMrLfXcweqRtcJ5gg+47ncYO6W/HnRi1NBUzV+fY4tnMVm+MA==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:sourcemap-codec": { + "type": "npm", + "name": "npm:sourcemap-codec", + "data": { + "version": "1.4.8", + "packageName": "sourcemap-codec", + "hash": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + } + }, + "npm:lru-queue": { + "type": "npm", + "name": "npm:lru-queue", + "data": { + "version": "0.1.0", + "packageName": "lru-queue", + "hash": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "2.21.3", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==" + } + }, + "npm:parse-git-config": { + "type": "npm", + "name": "npm:parse-git-config", + "data": { + "version": "2.0.3", + "packageName": "parse-git-config", + "hash": "sha512-Js7ueMZOVSZ3tP8C7E3KZiHv6QQl7lnJ+OkbxoaFazzSa2KyEHqApfGbU3XboUgUnq4ZuUmskUpYKTNx01fm5A==" + } + }, + "npm:estree-walker": { + "type": "npm", + "name": "npm:estree-walker", + "data": { + "version": "0.6.1", + "packageName": "estree-walker", + "hash": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + } + }, + "npm:web-namespaces": { + "type": "npm", + "name": "npm:web-namespaces", + "data": { + "version": "1.1.4", + "packageName": "web-namespaces", + "hash": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:yargs-unparser@1.6.0": { + "type": "npm", + "name": "npm:yargs-unparser@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "yargs-unparser", + "hash": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==" + } + }, + "npm:common-tags": { + "type": "npm", + "name": "npm:common-tags", + "data": { + "version": "1.8.0", + "packageName": "common-tags", + "hash": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.5", + "packageName": "nwsapi", + "hash": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==" + } + }, + "npm:unzip-response": { + "type": "npm", + "name": "npm:unzip-response", + "data": { + "version": "2.0.1", + "packageName": "unzip-response", + "hash": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" + } + }, + "npm:koa-send": { + "type": "npm", + "name": "npm:koa-send", + "data": { + "version": "5.0.1", + "packageName": "koa-send", + "hash": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.7.3", + "packageName": "webpack-merge", + "hash": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "0.4.3", + "packageName": "@eslint/eslintrc", + "hash": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==" + } + }, + "npm:@types/gulp-babel": { + "type": "npm", + "name": "npm:@types/gulp-babel", + "data": { + "version": "6.1.32", + "packageName": "@types/gulp-babel", + "hash": "sha512-vonKyjPvqmVwJE85g2nnJ9UHND+R2snIXP/7mqMuHumHNTORHGLiqBUbbixlcKqurvWe5zJkZrZWeLiGT8L5yg==" + } + }, + "npm:@types/vinyl-fs": { + "type": "npm", + "name": "npm:@types/vinyl-fs", + "data": { + "version": "2.4.11", + "packageName": "@types/vinyl-fs", + "hash": "sha512-2OzQSfIr9CqqWMGqmcERE6Hnd2KY3eBVtFaulVo3sJghplUcaeMdL9ZjEiljcQQeHjheWY9RlNmumjIAvsBNaA==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.4", + "packageName": "is-callable", + "hash": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.23.2", + "packageName": "@babel/compat-data", + "hash": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==" + } + }, + "npm:karma-firefox-launcher": { + "type": "npm", + "name": "npm:karma-firefox-launcher", + "data": { + "version": "1.3.0", + "packageName": "karma-firefox-launcher", + "hash": "sha512-Fi7xPhwrRgr+94BnHX0F5dCl1miIW4RHnzjIGxF8GaIEp7rNqX7LSi7ok63VXs3PS/5MQaQMhGxw+bvD+pibBQ==" + } + }, + "npm:jws": { + "type": "npm", + "name": "npm:jws", + "data": { + "version": "3.2.2", + "packageName": "jws", + "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" + } + }, + "npm:split-string": { + "type": "npm", + "name": "npm:split-string", + "data": { + "version": "3.1.0", + "packageName": "split-string", + "hash": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==" + } + }, + "npm:is-ci@2.0.0": { + "type": "npm", + "name": "npm:is-ci@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-ci", + "hash": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" + } + }, + "npm:react-shallow-renderer": { + "type": "npm", + "name": "npm:react-shallow-renderer", + "data": { + "version": "16.15.0", + "packageName": "react-shallow-renderer", + "hash": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==" + } + }, + "npm:fela-plugin-rtl": { + "type": "npm", + "name": "npm:fela-plugin-rtl", + "data": { + "version": "10.8.2", + "packageName": "fela-plugin-rtl", + "hash": "sha512-Xc3uYTNU0TponAtMwqfJQc/F33gACCCPr7QOMqpJurlYUU9VaYhchgs7YMocqns6kBPRGrYc0mYiQqNCfpKsjw==" + } + }, + "npm:webpack@4.46.0": { + "type": "npm", + "name": "npm:webpack@4.46.0", + "data": { + "version": "4.46.0", + "packageName": "webpack", + "hash": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.1.1", + "packageName": "punycode", + "hash": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + } + }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.49.11", + "packageName": "sass", + "hash": "sha512-wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ==" + } + }, + "npm:form-data@2.3.3": { + "type": "npm", + "name": "npm:form-data@2.3.3", + "data": { + "version": "2.3.3", + "packageName": "form-data", + "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "2.1.0", + "packageName": "detect-newline", + "hash": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=" + } + }, + "npm:@octokit/request-error": { + "type": "npm", + "name": "npm:@octokit/request-error", + "data": { + "version": "2.1.0", + "packageName": "@octokit/request-error", + "hash": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==" + } + }, + "npm:is-function": { + "type": "npm", + "name": "npm:is-function", + "data": { + "version": "1.0.2", + "packageName": "is-function", + "hash": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + } + }, + "npm:last-run": { + "type": "npm", + "name": "npm:last-run", + "data": { + "version": "1.1.1", + "packageName": "last-run", + "hash": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=" + } + }, + "npm:postcss-modules-values@3.0.0": { + "type": "npm", + "name": "npm:postcss-modules-values@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "4.0.0", + "packageName": "jsonfile", + "hash": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + } + }, + "npm:escodegen@1.8.1": { + "type": "npm", + "name": "npm:escodegen@1.8.1", + "data": { + "version": "1.8.1", + "packageName": "escodegen", + "hash": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=" + } + }, + "npm:v8-compile-cache-lib": { + "type": "npm", + "name": "npm:v8-compile-cache-lib", + "data": { + "version": "3.0.1", + "packageName": "v8-compile-cache-lib", + "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" + } + }, + "npm:unfetch": { + "type": "npm", + "name": "npm:unfetch", + "data": { + "version": "4.2.0", + "packageName": "unfetch", + "hash": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "1.1.0", + "packageName": "resolve.exports", + "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:@webassemblyjs/wasm-opt@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==" + } + }, + "npm:js-string-escape": { + "type": "npm", + "name": "npm:js-string-escape", + "data": { + "version": "1.0.1", + "packageName": "js-string-escape", + "hash": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=" + } + }, + "npm:lazy-ass": { + "type": "npm", + "name": "npm:lazy-ass", + "data": { + "version": "1.6.0", + "packageName": "lazy-ass", + "hash": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "16.10.0", + "packageName": "nx", + "hash": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==" + } + }, + "npm:jest-config": { + "type": "npm", + "name": "npm:jest-config", + "data": { + "version": "29.7.0", + "packageName": "jest-config", + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.10", + "packageName": "@types/bonjour", + "hash": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "4.2.0", + "packageName": "dot-prop", + "hash": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==" + } + }, + "npm:jest-worker@24.9.0": { + "type": "npm", + "name": "npm:jest-worker@24.9.0", + "data": { + "version": "24.9.0", + "packageName": "jest-worker", + "hash": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==" + } + }, + "npm:read-pkg-up@3.0.0": { + "type": "npm", + "name": "npm:read-pkg-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "read-pkg-up", + "hash": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=" + } + }, + "npm:decamelize-keys": { + "type": "npm", + "name": "npm:decamelize-keys", + "data": { + "version": "1.1.0", + "packageName": "decamelize-keys", + "hash": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=" + } + }, + "npm:hastscript": { + "type": "npm", + "name": "npm:hastscript", + "data": { + "version": "5.1.0", + "packageName": "hastscript", + "hash": "sha512-7mOQX5VfVs/gmrOGlN8/EDfp1GqV6P3gTNVt+KnX4gbYhpASTM8bklFdFQCbFRAadURXAmw0R1QQdBdqp7jswQ==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.3", + "packageName": "http-parser-js", + "hash": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + } + }, + "npm:dotenv-expand@5.1.0": { + "type": "npm", + "name": "npm:dotenv-expand@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "dotenv-expand", + "hash": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + } + }, + "npm:hast-util-raw": { + "type": "npm", + "name": "npm:hast-util-raw", + "data": { + "version": "6.0.1", + "packageName": "hast-util-raw", + "hash": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "1.0.1", + "packageName": "is-obj", + "hash": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + } + }, + "npm:jwa": { + "type": "npm", + "name": "npm:jwa", + "data": { + "version": "1.4.1", + "packageName": "jwa", + "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" + } + }, + "npm:react-virtualized": { + "type": "npm", + "name": "npm:react-virtualized", + "data": { + "version": "9.21.2", + "packageName": "react-virtualized", + "hash": "sha512-oX7I7KYiUM7lVXQzmhtF4Xg/4UA5duSA+/ZcAvdWlTLFCoFYq1SbauJT5gZK9cZS/wdYR6TPGpX/dqzvTqQeBA==" + } + }, + "npm:@types/gulp-sourcemaps": { + "type": "npm", + "name": "npm:@types/gulp-sourcemaps", + "data": { + "version": "0.0.35", + "packageName": "@types/gulp-sourcemaps", + "hash": "sha512-vUBuizwA4CAV3Mke0DJYHQxyN4YOB1aAql284qAO7Et7fe0hmnPi/R9Fhu2UhxMuSxAwFktsJUOQk5dJHOU1eA==" + } + }, + "npm:array-back": { + "type": "npm", + "name": "npm:array-back", + "data": { + "version": "3.1.0", + "packageName": "array-back", + "hash": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.2.0", + "packageName": "spdx-exceptions", + "hash": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==" + } + }, + "npm:@cypress/webpack-dev-server": { + "type": "npm", + "name": "npm:@cypress/webpack-dev-server", + "data": { + "version": "1.8.3", + "packageName": "@cypress/webpack-dev-server", + "hash": "sha512-r5udgc5ZhXYsnjhen+CI3CRjAjqY2UszbLQcda0np2JjLfLQX+F/bTF6g5NYWr3BMurXalC8JAZUrsBgvE0Wqw==" + } + }, + "npm:@storybook/node-logger": { + "type": "npm", + "name": "npm:@storybook/node-logger", + "data": { + "version": "6.5.15", + "packageName": "@storybook/node-logger", + "hash": "sha512-LQjjbfMuUXm7wZTBKb+iGeCNnej4r1Jb2NxG3Svu2bVhaoB6u33jHAcbmhXpXW1jghzW3kQwOU7BoLuJiRRFIw==" + } + }, + "npm:path-browserify": { + "type": "npm", + "name": "npm:path-browserify", + "data": { + "version": "1.0.1", + "packageName": "path-browserify", + "hash": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + } + }, + "npm:@griffel/shadow-dom": { + "type": "npm", + "name": "npm:@griffel/shadow-dom", + "data": { + "version": "0.1.5", + "packageName": "@griffel/shadow-dom", + "hash": "sha512-/4MUZd1udyX7OMwqfjbZrBdAnjCbz/BqsIxsX/N/2yLMDA9lmiJonySi6NGLKzoGphGy+tAgBkCh2t4YBI1Phg==" + } + }, + "npm:detect-newline@3.1.0": { + "type": "npm", + "name": "npm:detect-newline@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:is-path-inside@1.0.1": { + "type": "npm", + "name": "npm:is-path-inside@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-path-inside", + "hash": "sha1-jvW33lBDej/cprToZe96pVy0gDY=" + } + }, + "npm:is-upper-case": { + "type": "npm", + "name": "npm:is-upper-case", + "data": { + "version": "1.1.2", + "packageName": "is-upper-case", + "hash": "sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=" + } + }, + "npm:locate-path@2.0.0": { + "type": "npm", + "name": "npm:locate-path@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "locate-path", + "hash": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" + } + }, + "npm:type": { + "type": "npm", + "name": "npm:type", + "data": { + "version": "1.0.1", + "packageName": "type", + "hash": "sha512-MAM5dBMJCJNKs9E7JXo4CXRAansRfG0nlJxW7Wf6GZzSOvH31zClSaHdIMWLehe/EGMBkqeC55rrkaOr5Oo7Nw==" + } + }, + "npm:arr-union": { + "type": "npm", + "name": "npm:arr-union", + "data": { + "version": "3.1.0", + "packageName": "arr-union", + "hash": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + } + }, + "npm:form-data@4.0.0": { + "type": "npm", + "name": "npm:form-data@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==" + } + }, + "npm:@babel/plugin-transform-modules-amd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==" + } + }, + "npm:fault": { + "type": "npm", + "name": "npm:fault", + "data": { + "version": "1.0.4", + "packageName": "fault", + "hash": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==" + } + }, + "npm:glob-stream": { + "type": "npm", + "name": "npm:glob-stream", + "data": { + "version": "6.1.0", + "packageName": "glob-stream", + "hash": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:@testing-library/user-event": { + "type": "npm", + "name": "npm:@testing-library/user-event", + "data": { + "version": "13.5.0", + "packageName": "@testing-library/user-event", + "hash": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==" + } + }, + "npm:string_decoder@1.1.1": { + "type": "npm", + "name": "npm:string_decoder@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:universal-user-agent": { + "type": "npm", + "name": "npm:universal-user-agent", + "data": { + "version": "6.0.0", + "packageName": "universal-user-agent", + "hash": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==" + } + }, + "npm:utf8-byte-length": { + "type": "npm", + "name": "npm:utf8-byte-length", + "data": { + "version": "1.0.4", + "packageName": "utf8-byte-length", + "hash": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==" + } + }, + "npm:@mdx-js/loader": { + "type": "npm", + "name": "npm:@mdx-js/loader", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/loader", + "hash": "sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==" + } + }, + "npm:rollup-pluginutils": { + "type": "npm", + "name": "npm:rollup-pluginutils", + "data": { + "version": "2.8.2", + "packageName": "rollup-pluginutils", + "hash": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==" + } + }, + "npm:@storybook/addon-outline": { + "type": "npm", + "name": "npm:@storybook/addon-outline", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-outline", + "hash": "sha512-8yGEZQOYypnliU3rsakoZlgT4Pkq8iOhX9JclVXZL/fJMQWFQGCsXqlLaRn8sx7qsa+21PPxY5bd2+Hv/Au4zQ==" + } + }, + "npm:fast-glob@2.2.7": { + "type": "npm", + "name": "npm:fast-glob@2.2.7", + "data": { + "version": "2.2.7", + "packageName": "fast-glob", + "hash": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "15.2.0", + "packageName": "pacote", + "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:babel-traverse": { + "type": "npm", + "name": "npm:babel-traverse", + "data": { + "version": "6.26.0", + "packageName": "babel-traverse", + "hash": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=" + } + }, + "npm:d3-dsv": { + "type": "npm", + "name": "npm:d3-dsv", + "data": { + "version": "3.0.1", + "packageName": "d3-dsv", + "hash": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==" + } + }, + "npm:beeper": { + "type": "npm", + "name": "npm:beeper", + "data": { + "version": "1.1.1", + "packageName": "beeper", + "hash": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=" + } + }, + "npm:@nx/nx-win32-arm64-msvc@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==" + } + }, + "npm:is-ci@1.2.1": { + "type": "npm", + "name": "npm:is-ci@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "is-ci", + "hash": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==" + } + }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + } + }, + "npm:move-concurrently": { + "type": "npm", + "name": "npm:move-concurrently", + "data": { + "version": "1.0.1", + "packageName": "move-concurrently", + "hash": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=" + } + }, + "npm:sparkles": { + "type": "npm", + "name": "npm:sparkles", + "data": { + "version": "1.0.1", + "packageName": "sparkles", + "hash": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==" + } + }, + "npm:ts-pnp": { + "type": "npm", + "name": "npm:ts-pnp", + "data": { + "version": "1.2.0", + "packageName": "ts-pnp", + "hash": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + } + }, + "npm:js-tokens@3.0.2": { + "type": "npm", + "name": "npm:js-tokens@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "js-tokens", + "hash": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" + } + }, + "npm:imports-loader": { + "type": "npm", + "name": "npm:imports-loader", + "data": { + "version": "1.2.0", + "packageName": "imports-loader", + "hash": "sha512-zPvangKEgrrPeqeUqH0Uhc59YqK07JqZBi9a9cQ3v/EKUIqrbJHY4CvUrDus2lgQa5AmPyXuGrWP8JJTqzE5RQ==" + } + }, + "npm:backfill": { + "type": "npm", + "name": "npm:backfill", + "data": { + "version": "6.1.23", + "packageName": "backfill", + "hash": "sha512-VidtpsjTnEFH5Vg7p+IR8F5Fko+FJWse9SWEmbufaflL/Jp9xQO5igReqIp+HX2qzz1JjpfrPmRzFwOyVFdkrA==" + } + }, + "npm:@types/chai": { + "type": "npm", + "name": "npm:@types/chai", + "data": { + "version": "4.3.3", + "packageName": "@types/chai", + "hash": "sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==" + } + }, + "npm:typescript@5.1.6": { + "type": "npm", + "name": "npm:typescript@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "typescript", + "hash": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==" + } + }, + "npm:@azure/core-tracing@1.0.0-preview.11": { + "type": "npm", + "name": "npm:@azure/core-tracing@1.0.0-preview.11", + "data": { + "version": "1.0.0-preview.11", + "packageName": "@azure/core-tracing", + "hash": "sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ==" + } + }, + "npm:cardinal": { + "type": "npm", + "name": "npm:cardinal", + "data": { + "version": "2.1.1", + "packageName": "cardinal", + "hash": "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=" + } + }, + "npm:hyphenate-style-name": { + "type": "npm", + "name": "npm:hyphenate-style-name", + "data": { + "version": "1.0.3", + "packageName": "hyphenate-style-name", + "hash": "sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==" + } + }, + "npm:karma-sourcemap-loader": { + "type": "npm", + "name": "npm:karma-sourcemap-loader", + "data": { + "version": "0.3.8", + "packageName": "karma-sourcemap-loader", + "hash": "sha512-zorxyAakYZuBcHRJE+vbrK2o2JXLFWK8VVjiT/6P+ltLBUGUvqTEkUiQ119MGdOrK7mrmxXHZF1/pfT6GgIZ6g==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:@testing-library/jest-dom": { + "type": "npm", + "name": "npm:@testing-library/jest-dom", + "data": { + "version": "5.16.5", + "packageName": "@testing-library/jest-dom", + "hash": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==" + } + }, + "npm:@types/d3-fetch": { + "type": "npm", + "name": "npm:@types/d3-fetch", + "data": { + "version": "3.0.1", + "packageName": "@types/d3-fetch", + "hash": "sha512-toZJNOwrOIqz7Oh6Q7l2zkaNfXkfR7mFSJvGvlD/Ciq/+SQ39d5gynHJZ/0fjt83ec3WL7+u3ssqIijQtBISsw==" + } + }, + "npm:eslint-plugin-node": { + "type": "npm", + "name": "npm:eslint-plugin-node", + "data": { + "version": "11.1.0", + "packageName": "eslint-plugin-node", + "hash": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" + } + }, + "npm:get-stdin@4.0.1": { + "type": "npm", + "name": "npm:get-stdin@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "get-stdin", + "hash": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" + } + }, + "npm:locate-path@5.0.0": { + "type": "npm", + "name": "npm:locate-path@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:osenv": { + "type": "npm", + "name": "npm:osenv", + "data": { + "version": "0.1.5", + "packageName": "osenv", + "hash": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:jest-message-util": { + "type": "npm", + "name": "npm:jest-message-util", + "data": { + "version": "29.7.0", + "packageName": "jest-message-util", + "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" + } + }, + "npm:jest-serializer": { + "type": "npm", + "name": "npm:jest-serializer", + "data": { + "version": "26.6.2", + "packageName": "jest-serializer", + "hash": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==" + } + }, + "npm:react-inspector": { + "type": "npm", + "name": "npm:react-inspector", + "data": { + "version": "5.1.1", + "packageName": "react-inspector", + "hash": "sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==" + } + }, + "npm:@nx/nx-linux-arm64-gnu@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==" + } + }, + "npm:@testing-library/react": { + "type": "npm", + "name": "npm:@testing-library/react", + "data": { + "version": "12.1.2", + "packageName": "@testing-library/react", + "hash": "sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g==" + } + }, + "npm:lodash.assign": { + "type": "npm", + "name": "npm:lodash.assign", + "data": { + "version": "4.2.0", + "packageName": "lodash.assign", + "hash": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" + } + }, + "npm:chrome-remote-interface": { + "type": "npm", + "name": "npm:chrome-remote-interface", + "data": { + "version": "0.28.2", + "packageName": "chrome-remote-interface", + "hash": "sha512-F7mjof7rWvRNsJqhVXuiFU/HWySCxTA9tzpLxUJxVfdLkljwFJ1aMp08AnwXRmmP7r12/doTDOMwaNhFCJsacw==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes", + "data": { + "version": "7.22.10", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.7", + "packageName": "minimist", + "hash": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" + } + }, + "npm:npm-packlist@7.0.4": { + "type": "npm", + "name": "npm:npm-packlist@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "npm-packlist", + "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" + } + }, + "npm:read-pkg-up@1.0.1": { + "type": "npm", + "name": "npm:read-pkg-up@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "read-pkg-up", + "hash": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=" + } + }, + "npm:karma": { + "type": "npm", + "name": "npm:karma", + "data": { + "version": "6.4.0", + "packageName": "karma", + "hash": "sha512-s8m7z0IF5g/bS5ONT7wsOavhW4i4aFkzD4u4wgzAQWT4HGUeWI3i21cK2Yz6jndMAeHETp5XuNsRoyGJZXVd4w==" + } + }, + "npm:find-up@6.3.0": { + "type": "npm", + "name": "npm:find-up@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.1", + "packageName": "function-bind", + "hash": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.27.8", + "packageName": "@sinclair/typebox", + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + } + }, + "npm:jest-snapshot": { + "type": "npm", + "name": "npm:jest-snapshot", + "data": { + "version": "29.7.0", + "packageName": "jest-snapshot", + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" + } + }, + "npm:n-readlines": { + "type": "npm", + "name": "npm:n-readlines", + "data": { + "version": "1.0.0", + "packageName": "n-readlines", + "hash": "sha512-ISDqGcspVu6U3VKqtJZG1uR55SmNNF9uK0EMq1IvNVVZOui6MW6VR0+pIZhqz85ORAGp+4zW+5fJ/SE7bwEibA==" + } + }, + "npm:is-regexp": { + "type": "npm", + "name": "npm:is-regexp", + "data": { + "version": "1.0.0", + "packageName": "is-regexp", + "hash": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + } + }, + "npm:schema-utils@1.0.0": { + "type": "npm", + "name": "npm:schema-utils@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "schema-utils", + "hash": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:ts-loader": { + "type": "npm", + "name": "npm:ts-loader", + "data": { + "version": "9.3.1", + "packageName": "ts-loader", + "hash": "sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==" + } + }, + "npm:unzipper": { + "type": "npm", + "name": "npm:unzipper", + "data": { + "version": "0.10.11", + "packageName": "unzipper", + "hash": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:isobject@2.1.0": { + "type": "npm", + "name": "npm:isobject@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "isobject", + "hash": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.1.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==" + } + }, + "npm:@babel/plugin-syntax-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "npm:@babel/plugin-transform-runtime": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" + } + }, + "npm:read-package-json-fast@3.0.2": { + "type": "npm", + "name": "npm:read-package-json-fast@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:supports-color@8.1.1": { + "type": "npm", + "name": "npm:supports-color@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.23.2", + "packageName": "@babel/helpers", + "hash": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==" + } + }, + "npm:commander@11.0.0": { + "type": "npm", + "name": "npm:commander@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "commander", + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + } + }, + "npm:cosmiconfig@5.2.1": { + "type": "npm", + "name": "npm:cosmiconfig@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "cosmiconfig", + "hash": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" + } + }, + "npm:throttleit": { + "type": "npm", + "name": "npm:throttleit", + "data": { + "version": "1.0.0", + "packageName": "throttleit", + "hash": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:office-ui-fabric-core": { + "type": "npm", + "name": "npm:office-ui-fabric-core", + "data": { + "version": "11.0.1", + "packageName": "office-ui-fabric-core", + "hash": "sha512-jcfycbVOm2aUoI+AGtHW24HvM7nUVFr44hR5NIE56EobK67bVwbNAQL15CJj3vNz5PBrnitsV9ROOB+KOEWn8g==" + } + }, + "npm:string-width@1.0.2": { + "type": "npm", + "name": "npm:string-width@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "string-width", + "hash": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=" + } + }, + "npm:parse-node-version": { + "type": "npm", + "name": "npm:parse-node-version", + "data": { + "version": "1.0.1", + "packageName": "parse-node-version", + "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:graphviz": { + "type": "npm", + "name": "npm:graphviz", + "data": { + "version": "0.0.9", + "packageName": "graphviz", + "hash": "sha512-SmoY2pOtcikmMCqCSy2NO1YsRfu9OO0wpTlOYW++giGjfX1a6gax/m1Fo8IdUd0/3H15cTOfR1SMKwohj4LKsg==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:lodash._getnative": { + "type": "npm", + "name": "npm:lodash._getnative", + "data": { + "version": "3.9.1", + "packageName": "lodash._getnative", + "hash": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:workspace-tools@0.27.0": { + "type": "npm", + "name": "npm:workspace-tools@0.27.0", + "data": { + "version": "0.27.0", + "packageName": "workspace-tools", + "hash": "sha512-5mtE5Vy0Se4brAUJXKfXNtaS9jcUcH+IGF4LNU1xJr4bW1o5bK2gV0pykodB+n6V84nRtaD/4I/9w98aujm7LA==" + } + }, + "npm:stylis": { + "type": "npm", + "name": "npm:stylis", + "data": { + "version": "4.3.0", + "packageName": "stylis", + "hash": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" + } + }, + "npm:@swc/core-win32-x64-msvc": { + "type": "npm", + "name": "npm:@swc/core-win32-x64-msvc", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-win32-x64-msvc", + "hash": "sha512-2Xak7TidlRuNQamLZC3fEOdUCmMiBzD2BW8+Dnn29f4odzamgAFfeYJ/PnqN7jdTWOINLn95tex4JBm3Pm11HQ==" + } + }, + "npm:riceburn": { + "type": "npm", + "name": "npm:riceburn", + "data": { + "version": "1.3.1", + "packageName": "riceburn", + "hash": "sha512-pjt5ION8z9sGIR4UHLO59Ow7ecgxJoraY+kxACzzap5bgDTSzJ8SSEOE2yxV335yfgrOkcck9JsxM2CdoiGq5A==" + } + }, + "npm:tty-browserify@0.0.0": { + "type": "npm", + "name": "npm:tty-browserify@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "tty-browserify", + "hash": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:postcss-loader@4.3.0": { + "type": "npm", + "name": "npm:postcss-loader@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "postcss-loader", + "hash": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==" + } + }, + "npm:peek-readable": { + "type": "npm", + "name": "npm:peek-readable", + "data": { + "version": "5.0.0", + "packageName": "peek-readable", + "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" + } + }, + "npm:trim-right": { + "type": "npm", + "name": "npm:trim-right", + "data": { + "version": "1.0.1", + "packageName": "trim-right", + "hash": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" + } + }, + "npm:devtools-protocol": { + "type": "npm", + "name": "npm:devtools-protocol", + "data": { + "version": "0.0.894172", + "packageName": "devtools-protocol", + "hash": "sha512-tL9V5hs9s8TBkSX/d0qy8PbHQ6rW9myDILIbDdCboJxenSwqgoVx+C/+qEmI1OZH/zQ7OREv6ic336wJ82cOXg==" + } + }, + "npm:@typescript-eslint/scope-manager@5.59.1": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@5.59.1", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-mau0waO5frJctPuAzcxiNWqJR5Z8V0190FTSqRw1Q4Euop6+zTwHAf8YIXNwDOT29tyUDrQ65jSg9aTU/H0omA==" + } + }, + "npm:cp-file": { + "type": "npm", + "name": "npm:cp-file", + "data": { + "version": "7.0.0", + "packageName": "cp-file", + "hash": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==" + } + }, + "npm:minipass-fetch@2.1.2": { + "type": "npm", + "name": "npm:minipass-fetch@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "minipass-fetch", + "hash": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@^4.2.0", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:@floating-ui/core": { + "type": "npm", + "name": "npm:@floating-ui/core", + "data": { + "version": "1.2.0", + "packageName": "@floating-ui/core", + "hash": "sha512-GHUXPEhMEmTpnpIfesFA2KAoMJPb1SPQw964tToQwt+BbGXdhqTCWT1rOb0VURGylsxsYxiGMnseJ3IlclVpVA==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + } + }, + "npm:minipass-json-stream": { + "type": "npm", + "name": "npm:minipass-json-stream", + "data": { + "version": "1.0.1", + "packageName": "minipass-json-stream", + "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:deep-eql": { + "type": "npm", + "name": "npm:deep-eql", + "data": { + "version": "3.0.1", + "packageName": "deep-eql", + "hash": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==" + } + }, + "npm:fela-dom": { + "type": "npm", + "name": "npm:fela-dom", + "data": { + "version": "10.6.1", + "packageName": "fela-dom", + "hash": "sha512-J/EbPv7w7GGEBwhwwohTNdBThS1CrVaO5t8eapuKg0GDUCulbpBHuL5fw1+TbpJKEL54h7GwaCV9RZKZPUOXGA==" + } + }, + "npm:@mole-inc/bin-wrapper": { + "type": "npm", + "name": "npm:@mole-inc/bin-wrapper", + "data": { + "version": "8.0.1", + "packageName": "@mole-inc/bin-wrapper", + "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" + } + }, + "npm:@swc/core-linux-arm64-gnu@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-gnu@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-arm64-gnu", + "hash": "sha512-gLdZKIoql5vjrNjrwwsiS7d3vOAIzYUWqN97iGCSscQOg0MgYbfUnSTO4UEvH4BYlwRNlHepfTZ7ALoG8areUQ==" + } + }, + "npm:mdurl": { + "type": "npm", + "name": "npm:mdurl", + "data": { + "version": "1.0.1", + "packageName": "mdurl", + "hash": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + } + }, + "npm:@dnd-kit/utilities": { + "type": "npm", + "name": "npm:@dnd-kit/utilities", + "data": { + "version": "3.2.1", + "packageName": "@dnd-kit/utilities", + "hash": "sha512-OOXqISfvBw/1REtkSK2N3Fi2EQiLMlWUlqnOK/UpOISqBZPWpE6TqL+jcPtMOkE8TqYGiURvRdPSI9hltNUjEA==" + } + }, + "npm:has-flag@2.0.0": { + "type": "npm", + "name": "npm:has-flag@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "has-flag", + "hash": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "6.1.0", + "packageName": "npm-pick-manifest", + "hash": "sha512-ygs4k6f54ZxJXrzT0x34NybRlLeZ4+6nECAIbr2i0foTnijtS1TJiyzpqtuUAJOps/hO0tNDr8fRV5g+BtRlTw==" + } + }, + "npm:replace-ext@0.0.1": { + "type": "npm", + "name": "npm:replace-ext@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "replace-ext", + "hash": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.0.4", + "packageName": "flat-cache", + "hash": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:bach": { + "type": "npm", + "name": "npm:bach", + "data": { + "version": "1.2.0", + "packageName": "bach", + "hash": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=" + } + }, + "npm:punycode@1.3.2": { + "type": "npm", + "name": "npm:punycode@1.3.2", + "data": { + "version": "1.3.2", + "packageName": "punycode", + "hash": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + } + }, + "npm:find-up@2.1.0": { + "type": "npm", + "name": "npm:find-up@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-up", + "hash": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" + } + }, + "npm:@octokit/rest": { + "type": "npm", + "name": "npm:@octokit/rest", + "data": { + "version": "18.12.0", + "packageName": "@octokit/rest", + "hash": "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==" + } + }, + "npm:@types/cheerio": { + "type": "npm", + "name": "npm:@types/cheerio", + "data": { + "version": "0.22.31", + "packageName": "@types/cheerio", + "hash": "sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw==" + } + }, + "npm:@types/estree@0.0.51": { + "type": "npm", + "name": "npm:@types/estree@0.0.51", + "data": { + "version": "0.0.51", + "packageName": "@types/estree", + "hash": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-MkTe7FE+K1/GxZkP5gRj3rCztg45bEhsd8HYjczBuYm+qFHP5vtZmjx3B0yUCDotceQ4sHgTyz60Ycl225njmA==" + } + }, + "npm:@nodelib/fs.stat@1.1.3": { + "type": "npm", + "name": "npm:@nodelib/fs.stat@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" + } + }, + "npm:read-package-json": { + "type": "npm", + "name": "npm:read-package-json", + "data": { + "version": "6.0.4", + "packageName": "read-package-json", + "hash": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.1.2", + "packageName": "string.prototype.trim", + "hash": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=" + } + }, + "npm:jest-diff@27.5.1": { + "type": "npm", + "name": "npm:jest-diff@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-diff", + "hash": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==" + } + }, + "npm:d3-hierarchy": { + "type": "npm", + "name": "npm:d3-hierarchy", + "data": { + "version": "2.0.0", + "packageName": "d3-hierarchy", + "hash": "sha512-SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw==" + } + }, + "npm:js-yaml@4.1.0": { + "type": "npm", + "name": "npm:js-yaml@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:now-and-later": { + "type": "npm", + "name": "npm:now-and-later", + "data": { + "version": "2.0.1", + "packageName": "now-and-later", + "hash": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==" + } + }, + "npm:find-up@4.1.0": { + "type": "npm", + "name": "npm:find-up@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:read-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "7.0.1", + "packageName": "read-pkg-up", + "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" + } + }, + "npm:koa-convert": { + "type": "npm", + "name": "npm:koa-convert", + "data": { + "version": "2.0.0", + "packageName": "koa-convert", + "hash": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==" + } + }, + "npm:lowercase-keys@1.0.0": { + "type": "npm", + "name": "npm:lowercase-keys@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "lowercase-keys", + "hash": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" + } + }, + "npm:@popperjs/core": { + "type": "npm", + "name": "npm:@popperjs/core", + "data": { + "version": "2.4.4", + "packageName": "@popperjs/core", + "hash": "sha512-1oO6+dN5kdIA3sKPZhRGJTfGVP4SWV6KqlMOwry4J3HfyD68sl/3KmG7DeYUzvN+RbhXDnv/D8vNNB8168tAMg==" + } + }, + "npm:puppeteer-core": { + "type": "npm", + "name": "npm:puppeteer-core", + "data": { + "version": "19.6.0", + "packageName": "puppeteer-core", + "hash": "sha512-GvqWdHr9eY/MFR5pXf9o0apnrTmG0hhS7/TtCPfeAvCbaUS1bsLMZWxNGvI/QbviRu4xxi6HrR7VW4x/4esq1Q==" + } + }, + "npm:readable-stream@1.0.34": { + "type": "npm", + "name": "npm:readable-stream@1.0.34", + "data": { + "version": "1.0.34", + "packageName": "readable-stream", + "hash": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=" + } + }, + "npm:@babel/plugin-transform-typeof-symbol": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==" + } + }, + "npm:@types/minimist": { + "type": "npm", + "name": "npm:@types/minimist", + "data": { + "version": "1.2.1", + "packageName": "@types/minimist", + "hash": "sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==" + } + }, + "npm:@tootallnate/once@1.1.2": { + "type": "npm", + "name": "npm:@tootallnate/once@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "@tootallnate/once", + "hash": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + } + }, + "npm:universal-url": { + "type": "npm", + "name": "npm:universal-url", + "data": { + "version": "2.0.0", + "packageName": "universal-url", + "hash": "sha512-3DLtXdm/G1LQMCnPj+Aw7uDoleQttNHp2g5FnNQKR6cP6taNWS1b/Ehjjx4PVyvejKi3TJyu8iBraKM4q3JQPg==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.1", + "packageName": "buffer-from", + "hash": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + } + }, + "npm:@babel/plugin-transform-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-properties", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-class-properties", + "hash": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==" + } + }, + "npm:harmony-reflect": { + "type": "npm", + "name": "npm:harmony-reflect", + "data": { + "version": "1.6.2", + "packageName": "harmony-reflect", + "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.1.1", + "packageName": "http-cache-semantics", + "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + } + }, + "npm:npm-install-checks": { + "type": "npm", + "name": "npm:npm-install-checks", + "data": { + "version": "4.0.0", + "packageName": "npm-install-checks", + "hash": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==" + } + }, + "npm:css-color-keywords": { + "type": "npm", + "name": "npm:css-color-keywords", + "data": { + "version": "1.0.0", + "packageName": "css-color-keywords", + "hash": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" + } + }, + "npm:style-to-object": { + "type": "npm", + "name": "npm:style-to-object", + "data": { + "version": "0.3.0", + "packageName": "style-to-object", + "hash": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" + } + }, + "npm:moo": { + "type": "npm", + "name": "npm:moo", + "data": { + "version": "0.4.3", + "packageName": "moo", + "hash": "sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw==" + } + }, + "npm:@esbuild/linux-riscv64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-7Z/jKNFufZ/bbu4INqqCN6DDlrmOTmdw6D0gH+6Y7auok2r02Ur661qPuXidPOJ+FSgbEeQnnAGgsVynfLuOEw==" + } + }, + "npm:detect-package-manager": { + "type": "npm", + "name": "npm:detect-package-manager", + "data": { + "version": "2.0.1", + "packageName": "detect-package-manager", + "hash": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==" + } + }, + "npm:header-case": { + "type": "npm", + "name": "npm:header-case", + "data": { + "version": "1.0.1", + "packageName": "header-case", + "hash": "sha1-lTWXMZfBRLCWE81l0xfvGZY70C0=" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:yocto-queue@1.0.0": { + "type": "npm", + "name": "npm:yocto-queue@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "yocto-queue", + "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" + } + }, + "npm:doctoc": { + "type": "npm", + "name": "npm:doctoc", + "data": { + "version": "2.0.1", + "packageName": "doctoc", + "hash": "sha512-JsxnSVZtLCThKehjFPBDhP1+ZLmdfXQynZH/0ABAwrnd1Zf3AV6LigC9oWJyaZ+c6RXCDnlGUNJ7I+1v8VaaRg==" + } + }, + "npm:p-map@3.0.0": { + "type": "npm", + "name": "npm:p-map@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-map", + "hash": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" + } + }, + "npm:boxen@5.1.2": { + "type": "npm", + "name": "npm:boxen@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "boxen", + "hash": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==" + } + }, + "npm:@nx/js": { + "type": "npm", + "name": "npm:@nx/js", + "data": { + "version": "16.10.0", + "packageName": "@nx/js", + "hash": "sha512-27AH0/+XTMzOxVS6oV8Zl7/Rr1UDMYsnCVqoCU9CXp087uxcD4VnBOEjsEUlJKh1RdwGE3K0hBkk7NC1LP+vYQ==" + } + }, + "npm:@types/react-dom@18.0.6": { + "type": "npm", + "name": "npm:@types/react-dom@18.0.6", + "data": { + "version": "18.0.6", + "packageName": "@types/react-dom", + "hash": "sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==" + } + }, + "npm:core-js-pure": { + "type": "npm", + "name": "npm:core-js-pure", + "data": { + "version": "3.21.1", + "packageName": "core-js-pure", + "hash": "sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==" + } + }, + "npm:hosted-git-info@6.1.1": { + "type": "npm", + "name": "npm:hosted-git-info@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "hosted-git-info", + "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" + } + }, + "npm:array-back@4.0.2": { + "type": "npm", + "name": "npm:array-back@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "array-back", + "hash": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" + } + }, + "npm:redent@1.0.0": { + "type": "npm", + "name": "npm:redent@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "redent", + "hash": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=" + } + }, + "npm:component-emitter": { + "type": "npm", + "name": "npm:component-emitter", + "data": { + "version": "1.3.0", + "packageName": "component-emitter", + "hash": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + } + }, + "npm:es6-shim": { + "type": "npm", + "name": "npm:es6-shim", + "data": { + "version": "0.35.5", + "packageName": "es6-shim", + "hash": "sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg==" + } + }, + "npm:regexpp": { + "type": "npm", + "name": "npm:regexpp", + "data": { + "version": "3.1.0", + "packageName": "regexpp", + "hash": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" + } + }, + "npm:serialize-javascript@6.0.1": { + "type": "npm", + "name": "npm:serialize-javascript@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + } + }, + "npm:style-loader@1.3.0": { + "type": "npm", + "name": "npm:style-loader@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "style-loader", + "hash": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "8.1.0", + "packageName": "fs-extra", + "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" + } + }, + "npm:webpack-dev-middleware@3.7.3": { + "type": "npm", + "name": "npm:webpack-dev-middleware@3.7.3", + "data": { + "version": "3.7.3", + "packageName": "webpack-dev-middleware", + "hash": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "13.1.2", + "packageName": "yargs-parser", + "hash": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:json-stringify-safe": { + "type": "npm", + "name": "npm:json-stringify-safe", + "data": { + "version": "5.0.1", + "packageName": "json-stringify-safe", + "hash": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + } + }, + "npm:fs-extra@7.0.1": { + "type": "npm", + "name": "npm:fs-extra@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "fs-extra", + "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" + } + }, + "npm:resolve-dir": { + "type": "npm", + "name": "npm:resolve-dir", + "data": { + "version": "1.0.1", + "packageName": "resolve-dir", + "hash": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.13", + "packageName": "update-browserslist-db", + "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" + } + }, + "npm:fined": { + "type": "npm", + "name": "npm:fined", + "data": { + "version": "1.2.0", + "packageName": "fined", + "hash": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==" + } + }, + "npm:esbuild-linux-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-arm64", + "hash": "sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==" + } + }, + "npm:moo-color": { + "type": "npm", + "name": "npm:moo-color", + "data": { + "version": "1.0.3", + "packageName": "moo-color", + "hash": "sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==" + } + }, + "npm:@storybook/channels": { + "type": "npm", + "name": "npm:@storybook/channels", + "data": { + "version": "6.5.15", + "packageName": "@storybook/channels", + "hash": "sha512-gPpsBgirv2NCXbH4WbYqdkI0JLE96aiVuu7UEWfn9yu071pQ9CLHbhXGD9fSFNrfOkyBBY10ppSE7uCXw3Wexg==" + } + }, + "npm:unset-value": { + "type": "npm", + "name": "npm:unset-value", + "data": { + "version": "1.0.0", + "packageName": "unset-value", + "hash": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=" + } + }, + "npm:webidl-conversions@4.0.2": { + "type": "npm", + "name": "npm:webidl-conversions@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "webidl-conversions", + "hash": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + } + }, + "npm:@types/parse-json": { + "type": "npm", + "name": "npm:@types/parse-json", + "data": { + "version": "4.0.0", + "packageName": "@types/parse-json", + "hash": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.2", + "packageName": "chrome-trace-event", + "hash": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==" + } + }, + "npm:babel-plugin-styled-components": { + "type": "npm", + "name": "npm:babel-plugin-styled-components", + "data": { + "version": "1.10.7", + "packageName": "babel-plugin-styled-components", + "hash": "sha512-MBMHGcIA22996n9hZRf/UJLVVgkEOITuR2SvjHLb5dSTUyR4ZRGn+ngITapes36FI3WLxZHfRhkA1ffHxihOrg==" + } + }, + "npm:discontinuous-range": { + "type": "npm", + "name": "npm:discontinuous-range", + "data": { + "version": "1.0.0", + "packageName": "discontinuous-range", + "hash": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=" + } + }, + "npm:@typescript-eslint/typescript-estree@5.59.1": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@5.59.1", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-lYLBBOCsFltFy7XVqzX0Ju+Lh3WPIAWxYpmH/Q7ZoqzbscLiCW00LeYCdsUnnfnj29/s1WovXKh2gwCoinHNGA==" + } + }, + "npm:backfill-cache": { + "type": "npm", + "name": "npm:backfill-cache", + "data": { + "version": "5.6.2", + "packageName": "backfill-cache", + "hash": "sha512-E2SjMLgHt8NJ9sPKL6djxPqQKvI3YEedT0q/fZ8uknQbNg9H6JAxjWlff6sB8UcoBmep4R99ACUuYqOfFEBglw==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.0", + "packageName": "chalk", + "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" + } + }, + "npm:ast-types@0.13.2": { + "type": "npm", + "name": "npm:ast-types@0.13.2", + "data": { + "version": "0.13.2", + "packageName": "ast-types", + "hash": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==" + } + }, + "npm:junk": { + "type": "npm", + "name": "npm:junk", + "data": { + "version": "3.1.0", + "packageName": "junk", + "hash": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==" + } + }, + "npm:syncpack": { + "type": "npm", + "name": "npm:syncpack", + "data": { + "version": "10.6.1", + "packageName": "syncpack", + "hash": "sha512-mnBo6PYffon2TKxzJmOy3V7srv1GRX9wdmi+FHiqkOw0r2mQMgu1nmM/covETqZzB2px//cSaYpcPW+rniT/0Q==" + } + }, + "npm:lodash.isarray": { + "type": "npm", + "name": "npm:lodash.isarray", + "data": { + "version": "3.0.4", + "packageName": "lodash.isarray", + "hash": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" + } + }, + "npm:to-camel-case": { + "type": "npm", + "name": "npm:to-camel-case", + "data": { + "version": "1.0.0", + "packageName": "to-camel-case", + "hash": "sha1-GlYFSy+daWKYzmamCJcyK29CPkY=" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:toposort": { + "type": "npm", + "name": "npm:toposort", + "data": { + "version": "2.0.2", + "packageName": "toposort", + "hash": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=" + } + }, + "npm:ccount": { + "type": "npm", + "name": "npm:ccount", + "data": { + "version": "1.1.0", + "packageName": "ccount", + "hash": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.2", + "packageName": "is-bigint", + "hash": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:write-file-webpack-plugin": { + "type": "npm", + "name": "npm:write-file-webpack-plugin", + "data": { + "version": "4.5.0", + "packageName": "write-file-webpack-plugin", + "hash": "sha512-k46VeERtaezbmjpDcMWATjKUWBrVe/ZEEm0cyvUm8FFP8A/r+dw5x3psRvkUOhqh9bqBLUlGYYbtr6luI+HeAg==" + } + }, + "npm:tar@4.4.19": { + "type": "npm", + "name": "npm:tar@4.4.19", + "data": { + "version": "4.4.19", + "packageName": "tar", + "hash": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==" + } + }, + "npm:@griffel/eslint-plugin": { + "type": "npm", + "name": "npm:@griffel/eslint-plugin", + "data": { + "version": "1.2.0", + "packageName": "@griffel/eslint-plugin", + "hash": "sha512-ThqQR1UIeM+WZH1z8RUrKHCDuSXrFEwRIL4nX0UmBZznV/36DiGzODOQl6ZoZ9eCGoGYxTnl6riwy/1cB/0yGA==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:lcid": { + "type": "npm", + "name": "npm:lcid", + "data": { + "version": "1.0.0", + "packageName": "lcid", + "hash": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=" + } + }, + "npm:@types/tough-cookie": { + "type": "npm", + "name": "npm:@types/tough-cookie", + "data": { + "version": "4.0.2", + "packageName": "@types/tough-cookie", + "hash": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==" + } + }, + "npm:fs-extra@0.30.0": { + "type": "npm", + "name": "npm:fs-extra@0.30.0", + "data": { + "version": "0.30.0", + "packageName": "fs-extra", + "hash": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=" + } + }, + "npm:@babel/plugin-transform-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dynamic-import", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-dynamic-import", + "hash": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==" + } + }, + "npm:find-versions": { + "type": "npm", + "name": "npm:find-versions", + "data": { + "version": "5.1.0", + "packageName": "find-versions", + "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" + } + }, + "npm:is-word-character": { + "type": "npm", + "name": "npm:is-word-character", + "data": { + "version": "1.0.4", + "packageName": "is-word-character", + "hash": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + } + }, + "npm:ignore-walk@6.0.3": { + "type": "npm", + "name": "npm:ignore-walk@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "ignore-walk", + "hash": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==" + } + }, + "npm:@types/gulp-remember": { + "type": "npm", + "name": "npm:@types/gulp-remember", + "data": { + "version": "0.0.31", + "packageName": "@types/gulp-remember", + "hash": "sha512-pULOyv3Nr3TCIqbrr0ecTkFn5iIPRoQIkvljYMJUIdfwN8JPbEdMemzt2XOlvqJ6xj5cxCVgFqv5zkWjQ3AVZw==" + } + }, + "npm:cross-spawn@5.1.0": { + "type": "npm", + "name": "npm:cross-spawn@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "cross-spawn", + "hash": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.1.3", + "packageName": "define-properties", + "hash": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" + } + }, + "npm:duplexer2@0.1.4": { + "type": "npm", + "name": "npm:duplexer2@0.1.4", + "data": { + "version": "0.1.4", + "packageName": "duplexer2", + "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" + } + }, + "npm:htmlparser2@3.10.1": { + "type": "npm", + "name": "npm:htmlparser2@3.10.1", + "data": { + "version": "3.10.1", + "packageName": "htmlparser2", + "hash": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==" + } + }, + "npm:@rnx-kit/eslint-plugin": { + "type": "npm", + "name": "npm:@rnx-kit/eslint-plugin", + "data": { + "version": "0.2.5", + "packageName": "@rnx-kit/eslint-plugin", + "hash": "sha512-69Xlsz7fMMAQqLJ9ghglH5fXvU5xXZR09gCkjoK4gephhnQR/i+QDyt0wlqKt2HBo0RUGFbO+EA8aNPcOrJDJg==" + } + }, + "npm:@types/node@12.20.24": { + "type": "npm", + "name": "npm:@types/node@12.20.24", + "data": { + "version": "12.20.24", + "packageName": "@types/node", + "hash": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.19.1", + "packageName": "es-abstract", + "hash": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==" + } + }, + "npm:@types/babel-plugin-tester": { + "type": "npm", + "name": "npm:@types/babel-plugin-tester", + "data": { + "version": "9.0.5", + "packageName": "@types/babel-plugin-tester", + "hash": "sha512-NRBPlhi5VkrTXMqDB1hSUnHs7vqLGRopeukC9u1zilOIFe9O1siwqeKZRiuJiVYakgpeDso/HE2Q5DU1aDqBog==" + } + }, + "npm:ability-attributes": { + "type": "npm", + "name": "npm:ability-attributes", + "data": { + "version": "0.0.8", + "packageName": "ability-attributes", + "hash": "sha512-GU2Gd1nAUzvTEu4+615DKCf7OkWf+rL5kLmsi3Fg+nY7fhjrMT1ZwsU8MJ8hqilipspq1Q2yIuUYj4q8l2W8nQ==" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.0", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" + } + }, + "npm:typical": { + "type": "npm", + "name": "npm:typical", + "data": { + "version": "5.2.0", + "packageName": "typical", + "hash": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" + } + }, + "npm:beachball": { + "type": "npm", + "name": "npm:beachball", + "data": { + "version": "2.31.0", + "packageName": "beachball", + "hash": "sha512-xi6xf9nLLp9dpXBhnQuDsWdM6k+I34CrSdtniW8Qlt/BdHoUdTGhFFk9ky30pgywCam/bgGQbMd2FOChaUvfjQ==" + } + }, + "npm:union-value": { + "type": "npm", + "name": "npm:union-value", + "data": { + "version": "1.0.1", + "packageName": "union-value", + "hash": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==" + } + }, + "npm:@hot-loader/react-dom@17.0.2": { + "type": "npm", + "name": "npm:@hot-loader/react-dom@17.0.2", + "data": { + "version": "17.0.2", + "packageName": "@hot-loader/react-dom", + "hash": "sha512-G2RZrFhsQClS+bdDh/Ojpk3SgocLPUGnvnJDTQYnmKSSwXtU+Yh+8QMs+Ia3zaAvBiOSpIIDSUxuN69cvKqrWg==" + } + }, + "npm:mem": { + "type": "npm", + "name": "npm:mem", + "data": { + "version": "8.1.1", + "packageName": "mem", + "hash": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.6", + "packageName": "@types/graceful-fs", + "hash": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==" + } + }, + "npm:@lage-run/logger": { + "type": "npm", + "name": "npm:@lage-run/logger", + "data": { + "version": "1.1.1", + "packageName": "@lage-run/logger", + "hash": "sha512-8ZWHKCnnOYdLlLS2sSrMRZ4PM3oY5uqc2JN1RptSaKg8tR8g6ITMRmJ04/J4OqqiXiWVv2vozGt9pgxJLI2i7A==" + } + }, + "npm:@webassemblyjs/ieee754@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==" + } + }, + "npm:@opencensus/web-types": { + "type": "npm", + "name": "npm:@opencensus/web-types", + "data": { + "version": "0.0.7", + "packageName": "@opencensus/web-types", + "hash": "sha512-xB+w7ZDAu3YBzqH44rCmG9/RlrOmFuDPt/bpf17eJr8eZSrLt7nc7LnWdxM9Mmoj/YKMHpxRg28txu3TcpiL+g==" + } + }, + "npm:currently-unhandled": { + "type": "npm", + "name": "npm:currently-unhandled", + "data": { + "version": "0.4.1", + "packageName": "currently-unhandled", + "hash": "sha1-mI3zP+qxke95mmE2nddsF635V+o=" + } + }, + "npm:d3-voronoi": { + "type": "npm", + "name": "npm:d3-voronoi", + "data": { + "version": "1.1.4", + "packageName": "d3-voronoi", + "hash": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" + } + }, + "npm:redeyed": { + "type": "npm", + "name": "npm:redeyed", + "data": { + "version": "2.1.1", + "packageName": "redeyed", + "hash": "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=" + } + }, + "npm:remark-frontmatter": { + "type": "npm", + "name": "npm:remark-frontmatter", + "data": { + "version": "1.3.2", + "packageName": "remark-frontmatter", + "hash": "sha512-2eayxITZ8rezsXdgcXnYB3iLivohm2V/ZT4Ne8uhua6A4pk6GdLE2ZzJnbnINtD1HRLaTdB7RwF9sgUbMptJZA==" + } + }, + "npm:shallowequal": { + "type": "npm", + "name": "npm:shallowequal", + "data": { + "version": "1.1.0", + "packageName": "shallowequal", + "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + } + }, + "npm:swc-loader": { + "type": "npm", + "name": "npm:swc-loader", + "data": { + "version": "0.2.3", + "packageName": "swc-loader", + "hash": "sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==" + } + }, + "npm:universalify@0.2.0": { + "type": "npm", + "name": "npm:universalify@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "universalify", + "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + }, + "npm:babel-plugin-transform-typescript-metadata": { + "type": "npm", + "name": "npm:babel-plugin-transform-typescript-metadata", + "data": { + "version": "0.3.2", + "packageName": "babel-plugin-transform-typescript-metadata", + "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" + } + }, + "npm:chownr@1.1.4": { + "type": "npm", + "name": "npm:chownr@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "chownr", + "hash": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.6.1", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==" + } + }, + "npm:@octokit/auth-token": { + "type": "npm", + "name": "npm:@octokit/auth-token", + "data": { + "version": "2.5.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==" + } + }, + "npm:agent-base@4.3.0": { + "type": "npm", + "name": "npm:agent-base@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "agent-base", + "hash": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.0.2", + "packageName": "@types/babel__template", + "hash": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==" + } + }, + "npm:copy-props": { + "type": "npm", + "name": "npm:copy-props", + "data": { + "version": "2.0.5", + "packageName": "copy-props", + "hash": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==" + } + }, + "npm:@types/dedent": { + "type": "npm", + "name": "npm:@types/dedent", + "data": { + "version": "0.7.0", + "packageName": "@types/dedent", + "hash": "sha512-EGlKlgMhnLt/cM4DbUSafFdrkeJoC9Mvnj0PUCU7tFmTjMjNRT957kXCx0wYm3JuEq4o4ZsS5vG+NlkM2DMd2A==" + } + }, + "npm:browserify-zlib": { + "type": "npm", + "name": "npm:browserify-zlib", + "data": { + "version": "0.2.0", + "packageName": "browserify-zlib", + "hash": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==" + } + }, + "npm:fclone": { + "type": "npm", + "name": "npm:fclone", + "data": { + "version": "1.0.11", + "packageName": "fclone", + "hash": "sha512-GDqVQezKzRABdeqflsgMr7ktzgF9CyS+p2oe0jJqUY6izSSbhPIQJDpoU4PtGcD7VPM9xh/dVrTu6z1nwgmEGw==" + } + }, + "npm:eslint-import-resolver-typescript": { + "type": "npm", + "name": "npm:eslint-import-resolver-typescript", + "data": { + "version": "2.5.0", + "packageName": "eslint-import-resolver-typescript", + "hash": "sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==" + } + }, + "npm:@azure/storage-blob": { + "type": "npm", + "name": "npm:@azure/storage-blob", + "data": { + "version": "12.1.2", + "packageName": "@azure/storage-blob", + "hash": "sha512-PCHgG4r3xLt5FaFj+uiMqrRpuzD3TD17cvxCeA1JKK2bJEf8b07H3QRLQVf0DM1MmvYY8FgQagkWZTp+jr9yew==" + } + }, + "npm:http-proxy-agent@2.1.0": { + "type": "npm", + "name": "npm:http-proxy-agent@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "http-proxy-agent", + "hash": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==" + } + }, + "npm:css-select@4.1.3": { + "type": "npm", + "name": "npm:css-select@4.1.3", + "data": { + "version": "4.1.3", + "packageName": "css-select", + "hash": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.2", + "packageName": "is-path-inside", + "hash": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==" + } + }, + "npm:normalize-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "2.5.0", + "packageName": "normalize-package-data", + "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + } + }, + "npm:object.hasown": { + "type": "npm", + "name": "npm:object.hasown", + "data": { + "version": "1.1.0", + "packageName": "object.hasown", + "hash": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==" + } + }, + "npm:snapdragon-util": { + "type": "npm", + "name": "npm:snapdragon-util", + "data": { + "version": "3.0.1", + "packageName": "snapdragon-util", + "hash": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==" + } + }, + "npm:uuid@3.4.0": { + "type": "npm", + "name": "npm:uuid@3.4.0", + "data": { + "version": "3.4.0", + "packageName": "uuid", + "hash": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + }, + "npm:code-block-writer": { + "type": "npm", + "name": "npm:code-block-writer", + "data": { + "version": "10.1.1", + "packageName": "code-block-writer", + "hash": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==" + } + }, + "npm:vfile": { + "type": "npm", + "name": "npm:vfile", + "data": { + "version": "4.0.2", + "packageName": "vfile", + "hash": "sha512-yhoTU5cDMSsaeaMfJ5g0bUKYkYmZhAh9fn9TZicxqn+Cw4Z439il2v3oT9S0yjlpqlI74aFOQCt3nOV+pxzlkw==" + } + }, + "npm:resolve-alpn": { + "type": "npm", + "name": "npm:resolve-alpn", + "data": { + "version": "1.2.1", + "packageName": "resolve-alpn", + "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + } + }, + "npm:wrap-ansi@6.2.0": { + "type": "npm", + "name": "npm:wrap-ansi@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:@opentelemetry/api": { + "type": "npm", + "name": "npm:@opentelemetry/api", + "data": { + "version": "0.6.1", + "packageName": "@opentelemetry/api", + "hash": "sha512-wpufGZa7tTxw7eAsjXJtiyIQ42IWQdX9iUQp7ACJcKo1hCtuhLU+K2Nv1U6oRwT1oAlZTE6m4CgWKZBhOiau3Q==" + } + }, + "npm:type-fest@0.6.0": { + "type": "npm", + "name": "npm:type-fest@0.6.0", + "data": { + "version": "0.6.0", + "packageName": "type-fest", + "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + }, + "npm:yargs@7.1.0": { + "type": "npm", + "name": "npm:yargs@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "yargs", + "hash": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=" + } + }, + "npm:storybook-addon-performance": { + "type": "npm", + "name": "npm:storybook-addon-performance", + "data": { + "version": "0.16.1", + "packageName": "storybook-addon-performance", + "hash": "sha512-hDMRXvZljwBXYKrNegB9+LvT1b0ZQlkvTEDqq4gbMovQcD9yR0mka1eDuhwZfzxcgY1PrhkN3EhNxLybA/ql9Q==" + } + }, + "npm:@storybook/addons": { + "type": "npm", + "name": "npm:@storybook/addons", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addons", + "hash": "sha512-xT31SuSX+kYGyxCNK2nqL7WTxucs3rSmhiCLovJcUjYk+QquV3c2c53Ki7lwwdDbzfXFcNAe0HJ4hoTN4jhn0Q==" + } + }, + "npm:is-obj@2.0.0": { + "type": "npm", + "name": "npm:is-obj@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + } + }, + "npm:fs-extra@10.1.0": { + "type": "npm", + "name": "npm:fs-extra@10.1.0", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:gzip-size@6.0.0": { + "type": "npm", + "name": "npm:gzip-size@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "gzip-size", + "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" + } + }, + "npm:pend": { + "type": "npm", + "name": "npm:pend", + "data": { + "version": "1.2.0", + "packageName": "pend", + "hash": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:stringify-object": { + "type": "npm", + "name": "npm:stringify-object", + "data": { + "version": "3.3.0", + "packageName": "stringify-object", + "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + } + }, + "npm:code-point-at": { + "type": "npm", + "name": "npm:code-point-at", + "data": { + "version": "1.1.0", + "packageName": "code-point-at", + "hash": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + } + }, + "npm:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.7.0", + "packageName": "jest-worker", + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "2.1.3", + "packageName": "css-what", + "hash": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" + } + }, + "npm:forever-agent": { + "type": "npm", + "name": "npm:forever-agent", + "data": { + "version": "0.6.1", + "packageName": "forever-agent", + "hash": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + } + }, + "npm:color-string": { + "type": "npm", + "name": "npm:color-string", + "data": { + "version": "1.5.5", + "packageName": "color-string", + "hash": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==" + } + }, + "npm:stream-http@2.8.3": { + "type": "npm", + "name": "npm:stream-http@2.8.3", + "data": { + "version": "2.8.3", + "packageName": "stream-http", + "hash": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==" + } + }, + "npm:@types/babel__helper-plugin-utils": { + "type": "npm", + "name": "npm:@types/babel__helper-plugin-utils", + "data": { + "version": "7.10.2", + "packageName": "@types/babel__helper-plugin-utils", + "hash": "sha512-Sa17cG0SKMedlH5bEozh0eXo/54iWpSxbxCoqknRJY0oGGTwO9/SCfIx1taDnG0dvkJnYW+/7tv+PTSFaQsRNA==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.2", + "packageName": "follow-redirects", + "hash": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + } + }, + "npm:semver@7.5.4": { + "type": "npm", + "name": "npm:semver@7.5.4", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" + } + }, + "npm:lodash._root": { + "type": "npm", + "name": "npm:lodash._root", + "data": { + "version": "3.0.1", + "packageName": "lodash._root", + "hash": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=" + } + }, + "npm:@rushstack/node-core-library@3.50.1": { + "type": "npm", + "name": "npm:@rushstack/node-core-library@3.50.1", + "data": { + "version": "3.50.1", + "packageName": "@rushstack/node-core-library", + "hash": "sha512-9d2xE7E9yQEBS6brTptdP8cslt6iL5+UnkY2lRxQQ4Q/jlXtsrWCCJCxwr56W/eJEe9YT/yHR4mMn5QY64Ps2w==" + } + }, + "npm:run-parallel-limit": { + "type": "npm", + "name": "npm:run-parallel-limit", + "data": { + "version": "1.0.6", + "packageName": "run-parallel-limit", + "hash": "sha512-yFFs4Q2kECi5mWXyyZj3UlAZ5OFq5E07opABC+EmhZdjEkrxXaUwFqOaaNF4tbayMnBxrsbujpeCYTVjGufZGQ==" + } + }, + "npm:connect": { + "type": "npm", + "name": "npm:connect", + "data": { + "version": "3.7.0", + "packageName": "connect", + "hash": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + } + }, + "npm:collapse-white-space": { + "type": "npm", + "name": "npm:collapse-white-space", + "data": { + "version": "1.0.6", + "packageName": "collapse-white-space", + "hash": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" + } + }, + "npm:@babel/helper-remap-async-to-generator": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" + } + }, + "npm:@types/webpack-env": { + "type": "npm", + "name": "npm:@types/webpack-env", + "data": { + "version": "1.16.0", + "packageName": "@types/webpack-env", + "hash": "sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==" + } + }, + "npm:json-schema@0.2.3": { + "type": "npm", + "name": "npm:json-schema@0.2.3", + "data": { + "version": "0.2.3", + "packageName": "json-schema", + "hash": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + } + }, + "npm:trim": { + "type": "npm", + "name": "npm:trim", + "data": { + "version": "0.0.1", + "packageName": "trim", + "hash": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:array-union@1.0.2": { + "type": "npm", + "name": "npm:array-union@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "array-union", + "hash": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.13.11", + "packageName": "regenerator-runtime", + "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } + }, + "npm:colors@1.0.3": { + "type": "npm", + "name": "npm:colors@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "colors", + "hash": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" + } + }, + "npm:default-resolution": { + "type": "npm", + "name": "npm:default-resolution", + "data": { + "version": "2.0.0", + "packageName": "default-resolution", + "hash": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=" + } + }, + "npm:@emotion/utils": { + "type": "npm", + "name": "npm:@emotion/utils", + "data": { + "version": "0.11.3", + "packageName": "@emotion/utils", + "hash": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + } + }, + "npm:@storybook/manager-webpack4": { + "type": "npm", + "name": "npm:@storybook/manager-webpack4", + "data": { + "version": "6.5.15", + "packageName": "@storybook/manager-webpack4", + "hash": "sha512-zRvBTMoaFO6MvHDsDLnt3tsFENhpY3k+e/UIPdqbIDMbUPGGQzxJucAM9aS/kbVSO5IVs8IflVxbeeB/uTIIfA==" + } + }, + "npm:acorn-walk@7.2.0": { + "type": "npm", + "name": "npm:acorn-walk@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "acorn-walk", + "hash": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + } + }, + "npm:@types/jest-axe": { + "type": "npm", + "name": "npm:@types/jest-axe", + "data": { + "version": "3.5.5", + "packageName": "@types/jest-axe", + "hash": "sha512-b8WDIdoeKtr/JDJ2+QjFXMuS8UhfdMA6+15Z5KjjIie3jQrSXD9KZWMSQxc0nPtx7L9rIFKdiDpQk+m7s4a/8w==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + } + }, + "npm:json-stable-stringify": { + "type": "npm", + "name": "npm:json-stable-stringify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify", + "hash": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=" + } + }, + "npm:p-event": { + "type": "npm", + "name": "npm:p-event", + "data": { + "version": "4.2.0", + "packageName": "p-event", + "hash": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==" + } + }, + "npm:geckodriver": { + "type": "npm", + "name": "npm:geckodriver", + "data": { + "version": "3.0.2", + "packageName": "geckodriver", + "hash": "sha512-GHOQzQnTeZOJdcdEXLuzmcRwkbHuei1VivXkn2BLyleKiT6lTvl0T7vm+d0wvr/EZC7jr0m1u1pBHSfqtuFuNQ==" + } + }, + "npm:glob@7.1.3": { + "type": "npm", + "name": "npm:glob@7.1.3", + "data": { + "version": "7.1.3", + "packageName": "glob", + "hash": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==" + } + }, + "npm:hastscript@6.0.0": { + "type": "npm", + "name": "npm:hastscript@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "hastscript", + "hash": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==" + } + }, + "npm:lodash.isobject": { + "type": "npm", + "name": "npm:lodash.isobject", + "data": { + "version": "3.0.2", + "packageName": "lodash.isobject", + "hash": "sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0=" + } + }, + "npm:has-values@0.1.4": { + "type": "npm", + "name": "npm:has-values@0.1.4", + "data": { + "version": "0.1.4", + "packageName": "has-values", + "hash": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + } + }, + "npm:has-value": { + "type": "npm", + "name": "npm:has-value", + "data": { + "version": "1.0.0", + "packageName": "has-value", + "hash": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=" + } + }, + "npm:rollup-plugin-node-resolve": { + "type": "npm", + "name": "npm:rollup-plugin-node-resolve", + "data": { + "version": "5.2.0", + "packageName": "rollup-plugin-node-resolve", + "hash": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==" + } + }, + "npm:cookies": { + "type": "npm", + "name": "npm:cookies", + "data": { + "version": "0.8.0", + "packageName": "cookies", + "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "18.0.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==" + } + }, + "npm:@types/expect": { + "type": "npm", + "name": "npm:@types/expect", + "data": { + "version": "1.20.4", + "packageName": "@types/expect", + "hash": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==" + } + }, + "npm:crypto-browserify": { + "type": "npm", + "name": "npm:crypto-browserify", + "data": { + "version": "3.12.0", + "packageName": "crypto-browserify", + "hash": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==" + } + }, + "npm:@types/gulp-cache": { + "type": "npm", + "name": "npm:@types/gulp-cache", + "data": { + "version": "0.4.5", + "packageName": "@types/gulp-cache", + "hash": "sha512-VUG4CILSTCrL6VV+6ZD7jxZN4kWkmd74h+fAw1gq9+t8gtBEMUHMBICOmmkMAOM+itsQDOlZC3AzUeUAcLw07w==" + } + }, + "npm:@babel/plugin-transform-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==" + } + }, + "npm:webpack-log": { + "type": "npm", + "name": "npm:webpack-log", + "data": { + "version": "2.0.0", + "packageName": "webpack-log", + "hash": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==" + } + }, + "npm:whatwg-fetch": { + "type": "npm", + "name": "npm:whatwg-fetch", + "data": { + "version": "2.0.4", + "packageName": "whatwg-fetch", + "hash": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" + } + }, + "npm:which-module@1.0.0": { + "type": "npm", + "name": "npm:which-module@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "which-module", + "hash": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:detect-port": { + "type": "npm", + "name": "npm:detect-port", + "data": { + "version": "1.5.1", + "packageName": "detect-port", + "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" + } + }, + "npm:downshift": { + "type": "npm", + "name": "npm:downshift", + "data": { + "version": "5.0.5", + "packageName": "downshift", + "hash": "sha512-V1idov3Rkvz1YWA1K67aIx51EgokIDvep4x6KmU7HhsayI8DvTEZBeH4O92zeFVGximKujRO7ChBzBAf4PKWFA==" + } + }, + "npm:eslint-plugin-react": { + "type": "npm", + "name": "npm:eslint-plugin-react", + "data": { + "version": "7.26.0", + "packageName": "eslint-plugin-react", + "hash": "sha512-dceliS5itjk4EZdQYtLMz6GulcsasguIs+VTXuiC7Q5IPIdGTkyfXVdmsQOqEhlD9MciofH4cMcT1bw1WWNxCQ==" + } + }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "6.1.0", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-xLNufWQ1dfQUdZe48TGQlER/0OkcMnUB6lfbN9Tt13wsYyo+2DwcCbnOaPBo1PoFow/WL8pJPktGIdbJaHxAnw==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:oauth-sign": { + "type": "npm", + "name": "npm:oauth-sign", + "data": { + "version": "0.9.0", + "packageName": "oauth-sign", + "hash": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + } + }, + "npm:p-profiler": { + "type": "npm", + "name": "npm:p-profiler", + "data": { + "version": "0.2.1", + "packageName": "p-profiler", + "hash": "sha512-/XDER5u19OrAJ283ofIgw9hsLSoyQnjzki+tmn42vdppHOfo8PgivSSZfwaiyRAzLC2h02+Q+MKiIuuSve+7nw==" + } + }, + "npm:sane": { + "type": "npm", + "name": "npm:sane", + "data": { + "version": "4.1.0", + "packageName": "sane", + "hash": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:lerna": { + "type": "npm", + "name": "npm:lerna", + "data": { + "version": "7.1.3", + "packageName": "lerna", + "hash": "sha512-LMs9HU0z5fNFMNOyDVinJcf04QaScReJ8Q2pqxO+nPOmbvNsBwykBgMTWLboL1rI1CCR0/WLdMnvObvR52MtTw==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "1.1.3", + "packageName": "tapable", + "hash": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + } + }, + "npm:ajv@4.11.8": { + "type": "npm", + "name": "npm:ajv@4.11.8", + "data": { + "version": "4.11.8", + "packageName": "ajv", + "hash": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=" + } + }, + "npm:arr-union@2.1.0": { + "type": "npm", + "name": "npm:arr-union@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "arr-union", + "hash": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=" + } + }, + "npm:markdown-to-jsx": { + "type": "npm", + "name": "npm:markdown-to-jsx", + "data": { + "version": "7.1.7", + "packageName": "markdown-to-jsx", + "hash": "sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==" + } + }, + "npm:path-root-regex": { + "type": "npm", + "name": "npm:path-root-regex", + "data": { + "version": "0.1.2", + "packageName": "path-root-regex", + "hash": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" + } + }, + "npm:is-potential-custom-element-name": { + "type": "npm", + "name": "npm:is-potential-custom-element-name", + "data": { + "version": "1.0.1", + "packageName": "is-potential-custom-element-name", + "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + } + }, + "npm:istextorbinary": { + "type": "npm", + "name": "npm:istextorbinary", + "data": { + "version": "2.6.0", + "packageName": "istextorbinary", + "hash": "sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==" + } + }, + "npm:rxjs@6.6.7": { + "type": "npm", + "name": "npm:rxjs@6.6.7", + "data": { + "version": "6.6.7", + "packageName": "rxjs", + "hash": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==" + } + }, + "npm:miller-rabin": { + "type": "npm", + "name": "npm:miller-rabin", + "data": { + "version": "4.0.1", + "packageName": "miller-rabin", + "hash": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==" + } + }, + "npm:npmlog@6.0.2": { + "type": "npm", + "name": "npm:npmlog@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "npmlog", + "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" + } + }, + "npm:string-hash": { + "type": "npm", + "name": "npm:string-hash", + "data": { + "version": "1.1.3", + "packageName": "string-hash", + "hash": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" + } + }, + "npm:tslib@1.11.2": { + "type": "npm", + "name": "npm:tslib@1.11.2", + "data": { + "version": "1.11.2", + "packageName": "tslib", + "hash": "sha512-tTSkux6IGPnUGUd1XAZHcpu85MOkIl5zX49pO+jfsie3eP0B6pyhOlLXm3cAC6T7s+euSDDUUV+Acop5WmtkVg==" + } + }, + "npm:stream-exhaust": { + "type": "npm", + "name": "npm:stream-exhaust", + "data": { + "version": "1.0.2", + "packageName": "stream-exhaust", + "hash": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==" + } + }, + "npm:azure-storage-simple": { + "type": "npm", + "name": "npm:azure-storage-simple", + "data": { + "version": "1.0.0", + "packageName": "azure-storage-simple", + "hash": "sha512-n9zaOEfoxKUNZaeT1fJKJRfns9yyckstLlRXSPVr32m4RXwMSarJQZYl0ePBxToPY/JxdRK4lwXE0r0hp1JP3w==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.2.1", + "packageName": "es-module-lexer", + "hash": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.1", + "packageName": "unbox-primitive", + "hash": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + } + }, + "npm:compute-scroll-into-view": { + "type": "npm", + "name": "npm:compute-scroll-into-view", + "data": { + "version": "1.0.11", + "packageName": "compute-scroll-into-view", + "hash": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" + } + }, + "npm:https-proxy-agent@5.0.0": { + "type": "npm", + "name": "npm:https-proxy-agent@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "https-proxy-agent", + "hash": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==" + } + }, + "npm:icss-replace-symbols": { + "type": "npm", + "name": "npm:icss-replace-symbols", + "data": { + "version": "1.1.0", + "packageName": "icss-replace-symbols", + "hash": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" + } + }, + "npm:fs-exists-sync": { + "type": "npm", + "name": "npm:fs-exists-sync", + "data": { + "version": "0.1.0", + "packageName": "fs-exists-sync", + "hash": "sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=" + } + }, + "npm:@typescript-eslint/experimental-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/experimental-utils", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/experimental-utils", + "hash": "sha512-xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==" + } + }, + "npm:@types/ejs": { + "type": "npm", + "name": "npm:@types/ejs", + "data": { + "version": "3.1.2", + "packageName": "@types/ejs", + "hash": "sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + } + }, + "npm:@types/caseless": { + "type": "npm", + "name": "npm:@types/caseless", + "data": { + "version": "0.12.2", + "packageName": "@types/caseless", + "hash": "sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w==" + } + }, + "npm:filter-obj": { + "type": "npm", + "name": "npm:filter-obj", + "data": { + "version": "1.1.0", + "packageName": "filter-obj", + "hash": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=" + } + }, + "npm:@nrwl/nx-plugin": { + "type": "npm", + "name": "npm:@nrwl/nx-plugin", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/nx-plugin", + "hash": "sha512-AZiQ+amECFQGcWKhvs+KbqOzGU2dcQydGd0j4Wlz3xlfkEmYfCk80dj26ypSFB+3O+0p+q+HPpJhD0fka3shtw==" + } + }, + "npm:@types/react-syntax-highlighter": { + "type": "npm", + "name": "npm:@types/react-syntax-highlighter", + "data": { + "version": "10.2.1", + "packageName": "@types/react-syntax-highlighter", + "hash": "sha512-M2BAOiiQ2KDkCiuhO1UxAsSNfrSegUfXL1MabRggOoqJoPpaoSuTxGF+TgLuAjMEVW8dJDtp7WpBjjRLMxWgrQ==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:cache-swap": { + "type": "npm", + "name": "npm:cache-swap", + "data": { + "version": "0.3.0", + "packageName": "cache-swap", + "hash": "sha1-HFQaoQilAQb2ML3Zj+HeyLoTP1E=" + } + }, + "npm:check-more-types": { + "type": "npm", + "name": "npm:check-more-types", + "data": { + "version": "2.24.0", + "packageName": "check-more-types", + "hash": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=" + } + }, + "npm:color-support": { + "type": "npm", + "name": "npm:color-support", + "data": { + "version": "1.1.3", + "packageName": "color-support", + "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + } + }, + "npm:storywright": { + "type": "npm", + "name": "npm:storywright", + "data": { + "version": "0.0.26-beta.1", + "packageName": "storywright", + "hash": "sha512-zNWRzTl8rOSDBFrbvozOcOshvLJPJzcSpm8sfZD6My24lsNK1xXsXDAykWZ7hh9y2XRtlXBL0Rewx82OoVKCXA==" + } + }, + "npm:is-nan": { + "type": "npm", + "name": "npm:is-nan", + "data": { + "version": "1.3.2", + "packageName": "is-nan", + "hash": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==" + } + }, + "npm:get-stream@4.1.0": { + "type": "npm", + "name": "npm:get-stream@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "get-stream", + "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + } + }, + "npm:type-check@0.4.0": { + "type": "npm", + "name": "npm:type-check@0.4.0", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:commander@7.2.0": { + "type": "npm", + "name": "npm:commander@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:@types/http-cache-semantics": { + "type": "npm", + "name": "npm:@types/http-cache-semantics", + "data": { + "version": "4.0.0", + "packageName": "@types/http-cache-semantics", + "hash": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==" + } + }, + "npm:resolve-url": { + "type": "npm", + "name": "npm:resolve-url", + "data": { + "version": "0.2.1", + "packageName": "resolve-url", + "hash": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + } + }, + "npm:snake-case": { + "type": "npm", + "name": "npm:snake-case", + "data": { + "version": "2.1.0", + "packageName": "snake-case", + "hash": "sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8=" + } + }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "4.0.0", + "packageName": "source-map-loader", + "hash": "sha512-i3KVgM3+QPAHNbGavK+VBq03YoJl24m9JWNbLgsjTj8aJzXG9M61bantBTNBt7CNwY2FYf+RJRYJ3pzalKjIrw==" + } + }, + "npm:@nx/nx-linux-x64-musl@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==" + } + }, + "npm:domutils@1.5.1": { + "type": "npm", + "name": "npm:domutils@1.5.1", + "data": { + "version": "1.5.1", + "packageName": "domutils", + "hash": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.1.1", + "packageName": "get-intrinsic", + "hash": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + } + }, + "npm:term-size@1.2.0": { + "type": "npm", + "name": "npm:term-size@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "term-size", + "hash": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=" + } + }, + "npm:map-age-cleaner": { + "type": "npm", + "name": "npm:map-age-cleaner", + "data": { + "version": "0.1.3", + "packageName": "map-age-cleaner", + "hash": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==" + } + }, + "npm:glob@8.1.0": { + "type": "npm", + "name": "npm:glob@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:acorn@7.4.1": { + "type": "npm", + "name": "npm:acorn@7.4.1", + "data": { + "version": "7.4.1", + "packageName": "acorn", + "hash": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + }, + "npm:kind-of@5.1.0": { + "type": "npm", + "name": "npm:kind-of@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "kind-of", + "hash": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + }, + "npm:prelude-ls@1.2.1": { + "type": "npm", + "name": "npm:prelude-ls@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:extend-shallow@3.0.2": { + "type": "npm", + "name": "npm:extend-shallow@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "extend-shallow", + "hash": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + } + }, + "npm:babel-plugin-emotion": { + "type": "npm", + "name": "npm:babel-plugin-emotion", + "data": { + "version": "10.0.27", + "packageName": "babel-plugin-emotion", + "hash": "sha512-SUNYcT4FqhOqvwv0z1oeYhqgheU8qrceLojuHyX17ngo7WtWqN5I9l3IGHzf21Xraj465CVzF4IvOlAF+3ed0A==" + } + }, + "npm:@babel/helper-wrap-function": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" + } + }, + "npm:classnames": { + "type": "npm", + "name": "npm:classnames", + "data": { + "version": "2.2.6", + "packageName": "classnames", + "hash": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:@emotion/hash@0.8.0": { + "type": "npm", + "name": "npm:@emotion/hash@0.8.0", + "data": { + "version": "0.8.0", + "packageName": "@emotion/hash", + "hash": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + } + }, + "npm:domhandler@2.4.2": { + "type": "npm", + "name": "npm:domhandler@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "domhandler", + "hash": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==" + } + }, + "npm:jest-canvas-mock": { + "type": "npm", + "name": "npm:jest-canvas-mock", + "data": { + "version": "2.4.0", + "packageName": "jest-canvas-mock", + "hash": "sha512-mmMpZzpmLzn5vepIaHk5HoH3Ka4WykbSoLuG/EKoJd0x0ID/t+INo1l8ByfcUJuDM+RIsL4QDg/gDnBbrj2/IQ==" + } + }, + "npm:jest-cli": { + "type": "npm", + "name": "npm:jest-cli", + "data": { + "version": "29.7.0", + "packageName": "jest-cli", + "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" + } + }, + "npm:minimatch@8.0.4": { + "type": "npm", + "name": "npm:minimatch@8.0.4", + "data": { + "version": "8.0.4", + "packageName": "minimatch", + "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.23.0", + "packageName": "@babel/generator", + "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" + } + }, + "npm:@emotion/sheet": { + "type": "npm", + "name": "npm:@emotion/sheet", + "data": { + "version": "0.9.4", + "packageName": "@emotion/sheet", + "hash": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + } + }, + "npm:@esbuild/linux-mips64el@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-KbXaC0Sejt7vD2fEgPoIKb6nxkfYW9OmFUK9XQE4//PvGIxNIfPk1NmlHmMg6f25x57rpmEFrn1OotASYIAaTg==" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:remove-bom-buffer": { + "type": "npm", + "name": "npm:remove-bom-buffer", + "data": { + "version": "3.0.0", + "packageName": "remove-bom-buffer", + "hash": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==" + } + }, + "npm:semver@7.3.8": { + "type": "npm", + "name": "npm:semver@7.3.8", + "data": { + "version": "7.3.8", + "packageName": "semver", + "hash": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==" + } + }, + "npm:@microsoft/api-extractor-model": { + "type": "npm", + "name": "npm:@microsoft/api-extractor-model", + "data": { + "version": "7.24.2", + "packageName": "@microsoft/api-extractor-model", + "hash": "sha512-uUvjqTCY7hYERWGks+joTioN1QYHIucCDy7I/JqLxFxLbFXE5dpc1X7L+FG4PN/s8QYL24DKt0fqJkgcrFKLTw==" + } + }, + "npm:node-emoji": { + "type": "npm", + "name": "npm:node-emoji", + "data": { + "version": "1.10.0", + "packageName": "node-emoji", + "hash": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "7.0.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" + } + }, + "npm:@webassemblyjs/ast@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/ast@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==" + } + }, + "npm:@types/prompts": { + "type": "npm", + "name": "npm:@types/prompts", + "data": { + "version": "2.4.1", + "packageName": "@types/prompts", + "hash": "sha512-1Mqzhzi9W5KlooNE4o0JwSXGUDeQXKldbGn9NO4tpxwZbHXYd+WcKpCksG2lbhH7U9I9LigfsdVsP2QAY0lNPA==" + } + }, + "npm:eslint-plugin-react-hooks": { + "type": "npm", + "name": "npm:eslint-plugin-react-hooks", + "data": { + "version": "4.2.0", + "packageName": "eslint-plugin-react-hooks", + "hash": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==" + } + }, + "npm:undertaker-registry": { + "type": "npm", + "name": "npm:undertaker-registry", + "data": { + "version": "1.0.1", + "packageName": "undertaker-registry", + "hash": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" + } + }, + "npm:@esbuild/darwin-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-Ora8JokrvrzEPEpZO18ZYXkH4asCdc1DLdcVy8TGf5eWtPO1Ie4WroEJzwI52ZGtpODy3+m0a2yEX9l+KUn0tA==" + } + }, + "npm:hard-rejection": { + "type": "npm", + "name": "npm:hard-rejection", + "data": { + "version": "2.1.0", + "packageName": "hard-rejection", + "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" + } + }, + "npm:char-regex@2.0.1": { + "type": "npm", + "name": "npm:char-regex@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "char-regex", + "hash": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" + } + }, + "npm:file-system-cache": { + "type": "npm", + "name": "npm:file-system-cache", + "data": { + "version": "1.0.5", + "packageName": "file-system-cache", + "hash": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.1", + "packageName": "p-retry", + "hash": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==" + } + }, + "npm:multimatch": { + "type": "npm", + "name": "npm:multimatch", + "data": { + "version": "5.0.0", + "packageName": "multimatch", + "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" + } + }, + "npm:@types/classnames": { + "type": "npm", + "name": "npm:@types/classnames", + "data": { + "version": "2.2.9", + "packageName": "@types/classnames", + "hash": "sha512-MNl+rT5UmZeilaPxAVs6YaPC2m6aA8rofviZbhbxpPpl61uKodfdQVsBtgJGTqGizEf02oW3tsVe7FYB8kK14A==" + } + }, + "npm:binary": { + "type": "npm", + "name": "npm:binary", + "data": { + "version": "0.3.0", + "packageName": "binary", + "hash": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==" + } + }, + "npm:eslint-plugin-es": { + "type": "npm", + "name": "npm:eslint-plugin-es", + "data": { + "version": "4.1.0", + "packageName": "eslint-plugin-es", + "hash": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==" + } + }, + "npm:bonjour": { + "type": "npm", + "name": "npm:bonjour", + "data": { + "version": "3.5.0", + "packageName": "bonjour", + "hash": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=" + } + }, + "npm:@babel/plugin-transform-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-transform-logical-assignment-operators", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-logical-assignment-operators", + "hash": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==" + } + }, + "npm:acorn@6.4.1": { + "type": "npm", + "name": "npm:acorn@6.4.1", + "data": { + "version": "6.4.1", + "packageName": "acorn", + "hash": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" + } + }, + "npm:extract-zip": { + "type": "npm", + "name": "npm:extract-zip", + "data": { + "version": "2.0.1", + "packageName": "extract-zip", + "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" + } + }, + "npm:call-me-maybe": { + "type": "npm", + "name": "npm:call-me-maybe", + "data": { + "version": "1.0.1", + "packageName": "call-me-maybe", + "hash": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" + } + }, + "npm:http-assert": { + "type": "npm", + "name": "npm:http-assert", + "data": { + "version": "1.5.0", + "packageName": "http-assert", + "hash": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==" + } + }, + "npm:parse5@5.1.1": { + "type": "npm", + "name": "npm:parse5@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "parse5", + "hash": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" + } + }, + "npm:path-dirname": { + "type": "npm", + "name": "npm:path-dirname", + "data": { + "version": "1.0.2", + "packageName": "path-dirname", + "hash": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "1.0.1", + "packageName": "supports-hyperlinks", + "hash": "sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:multipipe": { + "type": "npm", + "name": "npm:multipipe", + "data": { + "version": "0.1.2", + "packageName": "multipipe", + "hash": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=" + } + }, + "npm:@babel/plugin-transform-classes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==" + } + }, + "npm:js-message": { + "type": "npm", + "name": "npm:js-message", + "data": { + "version": "1.0.5", + "packageName": "js-message", + "hash": "sha1-IwDSSxrwjondCVvBpMnJz8uJLRU=" + } + }, + "npm:character-reference-invalid": { + "type": "npm", + "name": "npm:character-reference-invalid", + "data": { + "version": "1.1.3", + "packageName": "character-reference-invalid", + "hash": "sha512-VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg==" + } + }, + "npm:debug-fabulous": { + "type": "npm", + "name": "npm:debug-fabulous", + "data": { + "version": "1.1.0", + "packageName": "debug-fabulous", + "hash": "sha512-GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:debug@3.1.0": { + "type": "npm", + "name": "npm:debug@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "debug", + "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" + } + }, + "npm:ecc-jsbn": { + "type": "npm", + "name": "npm:ecc-jsbn", + "data": { + "version": "0.1.2", + "packageName": "ecc-jsbn", + "hash": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=" + } + }, + "npm:minipass@4.2.8": { + "type": "npm", + "name": "npm:minipass@4.2.8", + "data": { + "version": "4.2.8", + "packageName": "minipass", + "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" + } + }, + "npm:parse-entities": { + "type": "npm", + "name": "npm:parse-entities", + "data": { + "version": "1.2.2", + "packageName": "parse-entities", + "hash": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==" + } + }, + "npm:dom-serialize": { + "type": "npm", + "name": "npm:dom-serialize", + "data": { + "version": "2.2.1", + "packageName": "dom-serialize", + "hash": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=" + } + }, + "npm:pako@2.1.0": { + "type": "npm", + "name": "npm:pako@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "pako", + "hash": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" + } + }, + "npm:esbuild-freebsd-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-freebsd-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-freebsd-arm64", + "hash": "sha512-TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.13", + "packageName": "postcss-selector-parser", + "hash": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==" + } + }, + "npm:@types/d3-array": { + "type": "npm", + "name": "npm:@types/d3-array", + "data": { + "version": "2.12.1", + "packageName": "@types/d3-array", + "hash": "sha512-kVHqB3kfLpU0WYEmx5Y2hi3LRhUGIEIQXFdGazNNWQhyhzHx8xrgLtpAOKYzpfS3a+GjFMdKsI82QUH4q5dACQ==" + } + }, + "npm:d3-time-format@2.1.3": { + "type": "npm", + "name": "npm:d3-time-format@2.1.3", + "data": { + "version": "2.1.3", + "packageName": "d3-time-format", + "hash": "sha512-6k0a2rZryzGm5Ihx+aFMuO1GgelgIz+7HhB4PH4OEndD5q2zGn1mDfRdNrulspOfR6JXkb2sThhDK41CSK85QA==" + } + }, + "npm:monosize": { + "type": "npm", + "name": "npm:monosize", + "data": { + "version": "0.1.0", + "packageName": "monosize", + "hash": "sha512-+a8VUdzZwHlja72zs4Les4UTNu3H/kPrJT7L90DPZW4XLc9LNnMyU+6Sx731X/cdQe5utWBfcYv2DbCkWBPLRA==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==" + } + }, + "npm:@npmcli/node-gyp": { + "type": "npm", + "name": "npm:@npmcli/node-gyp", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/node-gyp", + "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" + } + }, + "npm:blob-util": { + "type": "npm", + "name": "npm:blob-util", + "data": { + "version": "2.0.2", + "packageName": "blob-util", + "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" + } + }, + "npm:react-ace": { + "type": "npm", + "name": "npm:react-ace", + "data": { + "version": "5.10.0", + "packageName": "react-ace", + "hash": "sha512-aEK/XZCowP8IXq91e2DYqOtGhabk1bbjt+fyeW0UBcIkzDzP/RX/MeJKeyW7wsZcwElACVwyy9nnwXBTqgky3A==" + } + }, + "npm:react-syntax-highlighter": { + "type": "npm", + "name": "npm:react-syntax-highlighter", + "data": { + "version": "10.3.5", + "packageName": "react-syntax-highlighter", + "hash": "sha512-KR4YE7Q91bHEhvIxuvs/J3tJWfxTyBAAMS4fcMOR9h0C6SoCZIr1OUkVamHOqHMDEck4tdS9gp0D/vlAyPLftA==" + } + }, + "npm:koa-node-resolve": { + "type": "npm", + "name": "npm:koa-node-resolve", + "data": { + "version": "1.0.0-pre.9", + "packageName": "koa-node-resolve", + "hash": "sha512-WKgqe5TGVD6zuR3NrKnmbb/NNHIbWOCezQVqqnyQLdtLLXWgiothlUQT23S5qQGE0Z623jp6jxpMjvAqyrcZFQ==" + } + }, + "npm:html-tags": { + "type": "npm", + "name": "npm:html-tags", + "data": { + "version": "3.1.0", + "packageName": "html-tags", + "hash": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==" + } + }, + "npm:babel-generator": { + "type": "npm", + "name": "npm:babel-generator", + "data": { + "version": "6.26.1", + "packageName": "babel-generator", + "hash": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==" + } + }, + "npm:@types/jsdom": { + "type": "npm", + "name": "npm:@types/jsdom", + "data": { + "version": "20.0.1", + "packageName": "@types/jsdom", + "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" + } + }, + "npm:css-to-react-native": { + "type": "npm", + "name": "npm:css-to-react-native", + "data": { + "version": "3.0.0", + "packageName": "css-to-react-native", + "hash": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "npm:esbuild-linux-ppc64le@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-ppc64le@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-ppc64le", + "hash": "sha512-xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==" + } + }, + "npm:find-root": { + "type": "npm", + "name": "npm:find-root", + "data": { + "version": "1.1.0", + "packageName": "find-root", + "hash": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "2.0.1", + "packageName": "ipaddr.js", + "hash": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" + } + }, + "npm:micromatch@3.1.10": { + "type": "npm", + "name": "npm:micromatch@3.1.10", + "data": { + "version": "3.1.10", + "packageName": "micromatch", + "hash": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==" + } + }, + "npm:mimic-response@1.0.1": { + "type": "npm", + "name": "npm:mimic-response@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:querystring-es3": { + "type": "npm", + "name": "npm:querystring-es3", + "data": { + "version": "0.2.1", + "packageName": "querystring-es3", + "hash": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + } + }, + "npm:schema-utils@3.1.2": { + "type": "npm", + "name": "npm:schema-utils@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "schema-utils", + "hash": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==" + } + }, + "npm:@azure/core-paging": { + "type": "npm", + "name": "npm:@azure/core-paging", + "data": { + "version": "1.1.1", + "packageName": "@azure/core-paging", + "hash": "sha512-hqEJBEGKan4YdOaL9ZG/GRG6PXaFd/Wb3SSjQW4LWotZzgl6xqG00h6wmkrpd2NNkbBkD1erLHBO3lPHApv+iQ==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:source-map-resolve": { + "type": "npm", + "name": "npm:source-map-resolve", + "data": { + "version": "0.5.3", + "packageName": "source-map-resolve", + "hash": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==" + } + }, + "npm:strong-log-transformer": { + "type": "npm", + "name": "npm:strong-log-transformer", + "data": { + "version": "2.1.0", + "packageName": "strong-log-transformer", + "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" + } + }, + "npm:tightrope": { + "type": "npm", + "name": "npm:tightrope", + "data": { + "version": "0.1.0", + "packageName": "tightrope", + "hash": "sha512-HHHNYdCAIYwl1jOslQBT455zQpdeSo8/A346xpIb/uuqhSg+tCvYNsP5f11QW+z9VZ3vSX8YIfzTApjjuGH63w==" + } + }, + "npm:timers-browserify": { + "type": "npm", + "name": "npm:timers-browserify", + "data": { + "version": "2.0.12", + "packageName": "timers-browserify", + "hash": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==" + } + }, + "npm:object.map": { + "type": "npm", + "name": "npm:object.map", + "data": { + "version": "1.0.1", + "packageName": "object.map", + "hash": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=" + } + }, + "npm:unbzip2-stream": { + "type": "npm", + "name": "npm:unbzip2-stream", + "data": { + "version": "1.4.3", + "packageName": "unbzip2-stream", + "hash": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==" + } + }, + "npm:p-locate@2.0.0": { + "type": "npm", + "name": "npm:p-locate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "p-locate", + "hash": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" + } + }, + "npm:trim-newlines@1.0.0": { + "type": "npm", + "name": "npm:trim-newlines@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "trim-newlines", + "hash": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" + } + }, + "npm:v8-compile-cache": { + "type": "npm", + "name": "npm:v8-compile-cache", + "data": { + "version": "2.3.0", + "packageName": "v8-compile-cache", + "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + } + }, + "npm:es5-ext": { + "type": "npm", + "name": "npm:es5-ext", + "data": { + "version": "0.10.53", + "packageName": "es5-ext", + "hash": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:shebang-regex@3.0.0": { + "type": "npm", + "name": "npm:shebang-regex@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:@swc/cli": { + "type": "npm", + "name": "npm:@swc/cli", + "data": { + "version": "0.1.62", + "packageName": "@swc/cli", + "hash": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==" + } + }, + "npm:keygrip": { + "type": "npm", + "name": "npm:keygrip", + "data": { + "version": "1.1.0", + "packageName": "keygrip", + "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" + } + }, + "npm:@babel/helper-define-polyfill-provider": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider", + "data": { + "version": "0.4.3", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.10.0", + "packageName": "acorn", + "hash": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" + } + }, + "npm:ini@2.0.0": { + "type": "npm", + "name": "npm:ini@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ini", + "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + } + }, + "npm:react@16.14.0": { + "type": "npm", + "name": "npm:react@16.14.0", + "data": { + "version": "16.14.0", + "packageName": "react", + "hash": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==" + } + }, + "npm:ts-dedent": { + "type": "npm", + "name": "npm:ts-dedent", + "data": { + "version": "2.2.0", + "packageName": "ts-dedent", + "hash": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==" + } + }, + "npm:@octokit/plugin-request-log": { + "type": "npm", + "name": "npm:@octokit/plugin-request-log", + "data": { + "version": "1.0.4", + "packageName": "@octokit/plugin-request-log", + "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" + } + }, + "npm:unist-util-visit-parents@1.1.2": { + "type": "npm", + "name": "npm:unist-util-visit-parents@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "unist-util-visit-parents", + "hash": "sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==" + } + }, + "npm:@swc/core-win32-arm64-msvc@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-win32-arm64-msvc@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-win32-arm64-msvc", + "hash": "sha512-AE7JKDJ0OsV9LsYGFfYKMTkGNfsy1au4RT5jT1rxr5MTOsmMD7P2mgiRF8drgc1WX3uOJbTHQfgdVTYroAGfdA==" + } + }, + "npm:@babel/helper-create-class-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==" + } + }, + "npm:webpack-sources@3.2.3": { + "type": "npm", + "name": "npm:webpack-sources@3.2.3", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:nearley": { + "type": "npm", + "name": "npm:nearley", + "data": { + "version": "2.16.0", + "packageName": "nearley", + "hash": "sha512-Tr9XD3Vt/EujXbZBv6UAHYoLUSMQAxSsTnm9K3koXzjzNWY195NqALeyrzLZBKzAkL3gl92BcSogqrHjD8QuUg==" + } + }, + "npm:elliptic": { + "type": "npm", + "name": "npm:elliptic", + "data": { + "version": "6.5.4", + "packageName": "elliptic", + "hash": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==" + } + }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.6", + "packageName": "klona", + "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" + } + }, + "npm:ssri@6.0.2": { + "type": "npm", + "name": "npm:ssri@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "ssri", + "hash": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==" + } + }, + "npm:@types/deep-assign": { + "type": "npm", + "name": "npm:@types/deep-assign", + "data": { + "version": "0.1.1", + "packageName": "@types/deep-assign", + "hash": "sha512-88jktQ7RJ96bJ4S8I2oeRylMXGeaZt/QBG0k8PiQ5UXCIliUQm0Pzlv3zcN1ZvEIuaLBgMkP0ynr8fAkwChgOQ==" + } + }, + "npm:@typescript-eslint/types@5.59.1": { + "type": "npm", + "name": "npm:@typescript-eslint/types@5.59.1", + "data": { + "version": "5.59.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg==" + } + }, + "npm:cache-base": { + "type": "npm", + "name": "npm:cache-base", + "data": { + "version": "1.0.1", + "packageName": "cache-base", + "hash": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==" + } + }, + "npm:cliui@3.2.0": { + "type": "npm", + "name": "npm:cliui@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "cliui", + "hash": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=" + } + }, + "npm:engine.io-parser": { + "type": "npm", + "name": "npm:engine.io-parser", + "data": { + "version": "5.0.4", + "packageName": "engine.io-parser", + "hash": "sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==" + } + }, + "npm:memory-fs": { + "type": "npm", + "name": "npm:memory-fs", + "data": { + "version": "0.4.1", + "packageName": "memory-fs", + "hash": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=" + } + }, + "npm:xmlbuilder@9.0.7": { + "type": "npm", + "name": "npm:xmlbuilder@9.0.7", + "data": { + "version": "9.0.7", + "packageName": "xmlbuilder", + "hash": "sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==" + } + }, + "npm:@babel/plugin-proposal-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-chaining", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-optional-chaining", + "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.23.2", + "packageName": "@babel/runtime", + "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "4.0.5", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==" + } + }, + "npm:railroad-diagrams": { + "type": "npm", + "name": "npm:railroad-diagrams", + "data": { + "version": "1.0.0", + "packageName": "railroad-diagrams", + "hash": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=" + } + }, + "npm:resolve-pkg-maps": { + "type": "npm", + "name": "npm:resolve-pkg-maps", + "data": { + "version": "1.0.0", + "packageName": "resolve-pkg-maps", + "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + } + }, + "npm:@swc/core-darwin-x64@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-darwin-x64@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-darwin-x64", + "hash": "sha512-hjSQNcW9BN8gEz3UQZ7Ye80ymbkFHLkUDeEek4lorRyq6S+uxvbL1f1mJAZnFPBpove7AXusykIalWMPvyOR2A==" + } + }, + "npm:lead": { + "type": "npm", + "name": "npm:lead", + "data": { + "version": "1.0.0", + "packageName": "lead", + "hash": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=" + } + }, + "npm:@webassemblyjs/helper-module-context": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-module-context", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-module-context", + "hash": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==" + } + }, + "npm:validator": { + "type": "npm", + "name": "npm:validator", + "data": { + "version": "13.7.0", + "packageName": "validator", + "hash": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.0.1", + "packageName": "builtins", + "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "2.1.7", + "packageName": "listr2", + "hash": "sha512-XCC1sWLkBFFIMIRwG/LedgHUzN2XLEo02ZqXn6fwuP0GlXGE5BCuL6EAbQFb4vZB+++YEonzEXDPWQe+jCoF6Q==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==" + } + }, + "npm:@emotion/weak-memoize": { + "type": "npm", + "name": "npm:@emotion/weak-memoize", + "data": { + "version": "0.2.5", + "packageName": "@emotion/weak-memoize", + "hash": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.4", + "packageName": "content-type", + "hash": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + } + }, + "npm:type-fest@0.8.1": { + "type": "npm", + "name": "npm:type-fest@0.8.1", + "data": { + "version": "0.8.1", + "packageName": "type-fest", + "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + }, + "npm:for-in": { + "type": "npm", + "name": "npm:for-in", + "data": { + "version": "1.0.2", + "packageName": "for-in", + "hash": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + } + }, + "npm:@babel/helper-replace-supers": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" + } + }, + "npm:get-stream@6.0.0": { + "type": "npm", + "name": "npm:get-stream@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "get-stream", + "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" + } + }, + "npm:log4js": { + "type": "npm", + "name": "npm:log4js", + "data": { + "version": "6.4.2", + "packageName": "log4js", + "hash": "sha512-k80cggS2sZQLBwllpT1p06GtfvzMmSdUCkW96f0Hj83rKGJDAu2vZjt9B9ag2vx8Zz1IXzxoLgqvRJCdMKybGg==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "3.1.0", + "packageName": "mimic-response", + "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + }, + "npm:camelcase@3.0.0": { + "type": "npm", + "name": "npm:camelcase@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "camelcase", + "hash": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:worker-farm": { + "type": "npm", + "name": "npm:worker-farm", + "data": { + "version": "1.7.0", + "packageName": "worker-farm", + "hash": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==" + } + }, + "npm:@types/color-convert": { + "type": "npm", + "name": "npm:@types/color-convert", + "data": { + "version": "1.9.0", + "packageName": "@types/color-convert", + "hash": "sha512-OKGEfULrvSL2VRbkl/gnjjgbbF7ycIlpSsX7Nkab4MOWi5XxmgBYvuiQ7lcCFY5cPDz7MUNaKgxte2VRmtr4Fg==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.2.4", + "packageName": "ignore", + "hash": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:isarray@1.0.0": { + "type": "npm", + "name": "npm:isarray@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + } + }, + "npm:@types/argparse": { + "type": "npm", + "name": "npm:@types/argparse", + "data": { + "version": "1.0.38", + "packageName": "@types/argparse", + "hash": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==" + } + }, + "npm:raf": { + "type": "npm", + "name": "npm:raf", + "data": { + "version": "3.4.1", + "packageName": "raf", + "hash": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==" + } + }, + "npm:getos": { + "type": "npm", + "name": "npm:getos", + "data": { + "version": "3.2.1", + "packageName": "getos", + "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" + } + }, + "npm:isomorphic-unfetch": { + "type": "npm", + "name": "npm:isomorphic-unfetch", + "data": { + "version": "2.1.1", + "packageName": "isomorphic-unfetch", + "hash": "sha512-nd8AULy4i2rA8dv0nOBT9xieIegd3xi7NDxTQ9+iNXDTyaG6VbUYW3F+TdMRqxqXhDFWM2k7fttKx9W2Wd8JpQ==" + } + }, + "npm:remark-footnotes": { + "type": "npm", + "name": "npm:remark-footnotes", + "data": { + "version": "2.0.0", + "packageName": "remark-footnotes", + "hash": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" + } + }, + "npm:source-map@0.2.0": { + "type": "npm", + "name": "npm:source-map@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "source-map", + "hash": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=" + } + }, + "npm:is-plain-object@5.0.0": { + "type": "npm", + "name": "npm:is-plain-object@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "is-plain-object", + "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" + } + }, + "npm:@types/glob": { + "type": "npm", + "name": "npm:@types/glob", + "data": { + "version": "7.1.1", + "packageName": "@types/glob", + "hash": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.1.2", + "packageName": "finalhandler", + "hash": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" + } + }, + "npm:http-signature@1.2.0": { + "type": "npm", + "name": "npm:http-signature@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "http-signature", + "hash": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=" + } + }, + "npm:is-absolute-url": { + "type": "npm", + "name": "npm:is-absolute-url", + "data": { + "version": "3.0.3", + "packageName": "is-absolute-url", + "hash": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + } + }, + "npm:npmlog": { + "type": "npm", + "name": "npm:npmlog", + "data": { + "version": "4.1.2", + "packageName": "npmlog", + "hash": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==" + } + }, + "npm:semver-compare": { + "type": "npm", + "name": "npm:semver-compare", + "data": { + "version": "1.0.0", + "packageName": "semver-compare", + "hash": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=" + } + }, + "npm:extract-comments": { + "type": "npm", + "name": "npm:extract-comments", + "data": { + "version": "1.1.0", + "packageName": "extract-comments", + "hash": "sha512-dzbZV2AdSSVW/4E7Ti5hZdHWbA+Z80RJsJhr5uiL10oyjl/gy7/o+HI1HwK4/WSZhlq4SNKU3oUzXlM13Qx02Q==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:is-finite": { + "type": "npm", + "name": "npm:is-finite", + "data": { + "version": "1.0.2", + "packageName": "is-finite", + "hash": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.0", + "packageName": "rfdc", + "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + } + }, + "npm:array-each": { + "type": "npm", + "name": "npm:array-each", + "data": { + "version": "1.0.1", + "packageName": "array-each", + "hash": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" + } + }, + "npm:make-dir@1.3.0": { + "type": "npm", + "name": "npm:make-dir@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "make-dir", + "hash": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.2", + "packageName": "cjs-module-lexer", + "hash": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + } + }, + "npm:mississippi": { + "type": "npm", + "name": "npm:mississippi", + "data": { + "version": "3.0.0", + "packageName": "mississippi", + "hash": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "10.0.4", + "packageName": "ssri", + "hash": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==" + } + }, + "npm:stream-browserify": { + "type": "npm", + "name": "npm:stream-browserify", + "data": { + "version": "3.0.0", + "packageName": "stream-browserify", + "hash": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==" + } + }, + "npm:ua-parser-js@0.7.33": { + "type": "npm", + "name": "npm:ua-parser-js@0.7.33", + "data": { + "version": "0.7.33", + "packageName": "ua-parser-js", + "hash": "sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==" + } + }, + "npm:vfile-location": { + "type": "npm", + "name": "npm:vfile-location", + "data": { + "version": "3.2.0", + "packageName": "vfile-location", + "hash": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" + } + }, + "npm:eventemitter2": { + "type": "npm", + "name": "npm:eventemitter2", + "data": { + "version": "6.4.5", + "packageName": "eventemitter2", + "hash": "sha512-bXE7Dyc1i6oQElDG0jMRZJrRAn9QR2xyyFGmBdZleNmyQX0FqGYmhZIrIrpPfm/w//LTo4tVQGOGQcGCb5q9uw==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "7.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "5.0.1", + "packageName": "ignore-walk", + "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" + } + }, + "npm:exec-sh": { + "type": "npm", + "name": "npm:exec-sh", + "data": { + "version": "0.3.2", + "packageName": "exec-sh", + "hash": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==" + } + }, + "npm:memoizerific": { + "type": "npm", + "name": "npm:memoizerific", + "data": { + "version": "1.11.3", + "packageName": "memoizerific", + "hash": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=" + } + }, + "npm:vrscreenshotdiff": { + "type": "npm", + "name": "npm:vrscreenshotdiff", + "data": { + "version": "0.0.17", + "packageName": "vrscreenshotdiff", + "hash": "sha512-zfL6eUs3FbJzNhmqih/YtciAh2tf8dz9427kn6BRpdo/VC/fnCTUSl2ZzaAW0/wJaQpkWnl24PPfCa2ptuZENQ==" + } + }, + "npm:minimatch@5.0.1": { + "type": "npm", + "name": "npm:minimatch@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "minimatch", + "hash": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==" + } + }, + "npm:domain-browser": { + "type": "npm", + "name": "npm:domain-browser", + "data": { + "version": "4.19.0", + "packageName": "domain-browser", + "hash": "sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ==" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:get-tsconfig": { + "type": "npm", + "name": "npm:get-tsconfig", + "data": { + "version": "4.7.0", + "packageName": "get-tsconfig", + "hash": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==" + } + }, + "npm:exenv-es6": { + "type": "npm", + "name": "npm:exenv-es6", + "data": { + "version": "1.1.1", + "packageName": "exenv-es6", + "hash": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" + } + }, + "npm:readable-web-to-node-stream": { + "type": "npm", + "name": "npm:readable-web-to-node-stream", + "data": { + "version": "3.0.2", + "packageName": "readable-web-to-node-stream", + "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" + } + }, + "npm:get-func-name": { + "type": "npm", + "name": "npm:get-func-name", + "data": { + "version": "2.0.2", + "packageName": "get-func-name", + "hash": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" + } + }, + "npm:request-progress": { + "type": "npm", + "name": "npm:request-progress", + "data": { + "version": "3.0.0", + "packageName": "request-progress", + "hash": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=" + } + }, + "npm:boxen": { + "type": "npm", + "name": "npm:boxen", + "data": { + "version": "4.2.0", + "packageName": "boxen", + "hash": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==" + } + }, + "npm:@base2/pretty-print-object": { + "type": "npm", + "name": "npm:@base2/pretty-print-object", + "data": { + "version": "1.0.1", + "packageName": "@base2/pretty-print-object", + "hash": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "1.1.1", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==" + } + }, + "npm:@effect/schema": { + "type": "npm", + "name": "npm:@effect/schema", + "data": { + "version": "0.20.3", + "packageName": "@effect/schema", + "hash": "sha512-pjJW9QkHZd2/fq7Bhd6pAOidMJ0OUODOeUlesPDK0jpo62AaU9g+IGXt3v5NU8rXSX77igZgfK08XhmofwHn0A==" + } + }, + "npm:@mdx-js/mdx": { + "type": "npm", + "name": "npm:@mdx-js/mdx", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/mdx", + "hash": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==" + } + }, + "npm:@microsoft/applicationinsights-core-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-core-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-core-js", + "hash": "sha512-WQhVhzlRlLDrQzn3OShCW/pL3BW5WC57t0oywSknX3q7lMzI3jDg7Ihh0iuIcNTzGCTbDkuqr4d6IjEDWIMtJQ==" + } + }, + "npm:camel-case@4.1.2": { + "type": "npm", + "name": "npm:camel-case@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "camel-case", + "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + } + }, + "npm:byte-size": { + "type": "npm", + "name": "npm:byte-size", + "data": { + "version": "8.1.1", + "packageName": "byte-size", + "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" + } + }, + "npm:ansi-cyan": { + "type": "npm", + "name": "npm:ansi-cyan", + "data": { + "version": "0.1.1", + "packageName": "ansi-cyan", + "hash": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=" + } + }, + "npm:is-decimal": { + "type": "npm", + "name": "npm:is-decimal", + "data": { + "version": "1.0.3", + "packageName": "is-decimal", + "hash": "sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:del@4.1.1": { + "type": "npm", + "name": "npm:del@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "del", + "hash": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" + } + }, + "npm:jest-environment-jsdom": { + "type": "npm", + "name": "npm:jest-environment-jsdom", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-jsdom", + "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" + } + }, + "npm:babel-plugin-react-docgen": { + "type": "npm", + "name": "npm:babel-plugin-react-docgen", + "data": { + "version": "4.2.1", + "packageName": "babel-plugin-react-docgen", + "hash": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==" + } + }, + "npm:better-opn": { + "type": "npm", + "name": "npm:better-opn", + "data": { + "version": "2.1.1", + "packageName": "better-opn", + "hash": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==" + } + }, + "npm:react-element-to-jsx-string": { + "type": "npm", + "name": "npm:react-element-to-jsx-string", + "data": { + "version": "14.3.4", + "packageName": "react-element-to-jsx-string", + "hash": "sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + } + }, + "npm:@microsoft/api-extractor": { + "type": "npm", + "name": "npm:@microsoft/api-extractor", + "data": { + "version": "7.31.2", + "packageName": "@microsoft/api-extractor", + "hash": "sha512-ZODCU9ckTS9brXiZpUW2iDrnAg7jLxeLBM1AkPpSZFcbG/8HGLvfKOKrd71VIJHjc52x2lB8xj7ZWksnP7AOBA==" + } + }, + "npm:dir-glob@2.2.2": { + "type": "npm", + "name": "npm:dir-glob@2.2.2", + "data": { + "version": "2.2.2", + "packageName": "dir-glob", + "hash": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==" + } + }, + "npm:babel-code-frame": { + "type": "npm", + "name": "npm:babel-code-frame", + "data": { + "version": "6.26.0", + "packageName": "babel-code-frame", + "hash": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=" + } + }, + "npm:@ts-morph/common": { + "type": "npm", + "name": "npm:@ts-morph/common", + "data": { + "version": "0.8.1", + "packageName": "@ts-morph/common", + "hash": "sha512-3TC91LfCKCNCW7zYpegoMnMa9VigXtZHQererUM9pCvZKN3ust3ioLA0kfX+UHSzIGln+UYYiRzfOsv0QoiUng==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + } + }, + "npm:store2": { + "type": "npm", + "name": "npm:store2", + "data": { + "version": "2.12.0", + "packageName": "store2", + "hash": "sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==" + } + }, + "npm:p-waterfall": { + "type": "npm", + "name": "npm:p-waterfall", + "data": { + "version": "2.1.1", + "packageName": "p-waterfall", + "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" + } + }, + "npm:supports-color@6.0.0": { + "type": "npm", + "name": "npm:supports-color@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "supports-color", + "hash": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:@types/cookie": { + "type": "npm", + "name": "npm:@types/cookie", + "data": { + "version": "0.4.1", + "packageName": "@types/cookie", + "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + } + }, + "npm:tmp@0.0.33": { + "type": "npm", + "name": "npm:tmp@0.0.33", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:conventional-changelog-angular": { + "type": "npm", + "name": "npm:conventional-changelog-angular", + "data": { + "version": "6.0.0", + "packageName": "conventional-changelog-angular", + "hash": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==" + } + }, + "npm:isbinaryfile": { + "type": "npm", + "name": "npm:isbinaryfile", + "data": { + "version": "4.0.8", + "packageName": "isbinaryfile", + "hash": "sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==" + } + }, + "npm:is-subset": { + "type": "npm", + "name": "npm:is-subset", + "data": { + "version": "0.1.1", + "packageName": "is-subset", + "hash": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + } + }, + "npm:yargs-unparser": { + "type": "npm", + "name": "npm:yargs-unparser", + "data": { + "version": "2.0.0", + "packageName": "yargs-unparser", + "hash": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==" + } + }, + "npm:@wojtekmaj/enzyme-adapter-react-17": { + "type": "npm", + "name": "npm:@wojtekmaj/enzyme-adapter-react-17", + "data": { + "version": "0.6.7", + "packageName": "@wojtekmaj/enzyme-adapter-react-17", + "hash": "sha512-B+byiwi/T1bx5hcj9wc0fUL5Hlb5giSXJzcnEfJVl2j6dGV2NJfcxDBYX0WWwIxlzNiFz8kAvlkFWI2y/nscZQ==" + } + }, + "npm:@babel/plugin-transform-modules-umd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==" + } + }, + "npm:@octokit/endpoint": { + "type": "npm", + "name": "npm:@octokit/endpoint", + "data": { + "version": "6.0.12", + "packageName": "@octokit/endpoint", + "hash": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==" + } + }, + "npm:element-resize-detector": { + "type": "npm", + "name": "npm:element-resize-detector", + "data": { + "version": "1.2.3", + "packageName": "element-resize-detector", + "hash": "sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods@7.2.3": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", + "data": { + "version": "7.2.3", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" + } + }, + "npm:performance-now": { + "type": "npm", + "name": "npm:performance-now", + "data": { + "version": "2.1.0", + "packageName": "performance-now", + "hash": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + } + }, + "npm:to-fast-properties@1.0.3": { + "type": "npm", + "name": "npm:to-fast-properties@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "to-fast-properties", + "hash": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.11.0", + "packageName": "qs", + "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "4.1.0", + "packageName": "hosted-git-info", + "hash": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.6.0", + "packageName": "fastq", + "hash": "sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA==" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:resolve.exports@2.0.2": { + "type": "npm", + "name": "npm:resolve.exports@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:boundary": { + "type": "npm", + "name": "npm:boundary", + "data": { + "version": "1.0.1", + "packageName": "boundary", + "hash": "sha1-TWfcJgLAzBbdm85+v4fpSCkPWBI=" + } + }, + "npm:snapdragon": { + "type": "npm", + "name": "npm:snapdragon", + "data": { + "version": "0.8.2", + "packageName": "snapdragon", + "hash": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==" + } + }, + "npm:ability-attributes-js-constraints": { + "type": "npm", + "name": "npm:ability-attributes-js-constraints", + "data": { + "version": "0.0.8", + "packageName": "ability-attributes-js-constraints", + "hash": "sha512-+TjS0GcQnFaX0thTs+sXiGtNelPcy6odeN8hKntd1KxsnFtqyrC3l2i55s+z3rRzei6BvkoSHvkKEOjk0E5UjA==" + } + }, + "npm:lowercase-keys@3.0.0": { + "type": "npm", + "name": "npm:lowercase-keys@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==" + } + }, + "npm:app-root-dir": { + "type": "npm", + "name": "npm:app-root-dir", + "data": { + "version": "1.0.2", + "packageName": "app-root-dir", + "hash": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=" + } + }, + "npm:@types/webpack-bundle-analyzer": { + "type": "npm", + "name": "npm:@types/webpack-bundle-analyzer", + "data": { + "version": "4.4.3", + "packageName": "@types/webpack-bundle-analyzer", + "hash": "sha512-7+4XhCMxc1XyQr2lwAbEEeWTax+FX70xMeskU0WtxrODczoOZXTo9vrYh/XF7pAOn+NxqR4yRKW5gfz1HHNnfw==" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:npm-packlist@2.1.2": { + "type": "npm", + "name": "npm:npm-packlist@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "npm-packlist", + "hash": "sha512-eByPaP+wsKai0BJX5pmb58d3mfR0zUATcnyuvSxIudTEn+swCPFLxh7srCmqB4hr7i9V24/DPjjq5b2qUtbgXQ==" + } + }, + "npm:pkg-dir@3.0.0": { + "type": "npm", + "name": "npm:pkg-dir@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pkg-dir", + "hash": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" + } + }, + "npm:object.pick": { + "type": "npm", + "name": "npm:object.pick", + "data": { + "version": "1.3.0", + "packageName": "object.pick", + "hash": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=" + } + }, + "npm:@jest/environment": { + "type": "npm", + "name": "npm:@jest/environment", + "data": { + "version": "29.7.0", + "packageName": "@jest/environment", + "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:karma-mocha": { + "type": "npm", + "name": "npm:karma-mocha", + "data": { + "version": "2.0.1", + "packageName": "karma-mocha", + "hash": "sha512-Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ==" + } + }, + "npm:@types/react-router-dom": { + "type": "npm", + "name": "npm:@types/react-router-dom", + "data": { + "version": "5.1.5", + "packageName": "@types/react-router-dom", + "hash": "sha512-ArBM4B1g3BWLGbaGvwBGO75GNFbLDUthrDojV2vHLih/Tq8M+tgvY1DSwkuNrPSwdp/GUL93WSEpTZs8nVyJLw==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "18.18.6", + "packageName": "@types/node", + "hash": "sha512-wf3Vz+jCmOQ2HV1YUJuCWdL64adYxumkrxtc+H1VUQlnQI04+5HtH+qZCOE21lBE7gIrt+CwX2Wv8Acrw5Ak6w==" + } + }, + "npm:find-cache-dir@2.1.0": { + "type": "npm", + "name": "npm:find-cache-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-cache-dir", + "hash": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" + } + }, + "npm:plop": { + "type": "npm", + "name": "npm:plop", + "data": { + "version": "2.6.0", + "packageName": "plop", + "hash": "sha512-faK3oVbWL7DYdC5ZjM+lJPrmXAPirN28QRFykPWwg6i7dv2T373JyxKlcO+XGMQcPlEYDFyKUXIuiY3Db5Ktkw==" + } + }, + "npm:rollup": { + "type": "npm", + "name": "npm:rollup", + "data": { + "version": "2.45.2", + "packageName": "rollup", + "hash": "sha512-kRRU7wXzFHUzBIv0GfoFFIN3m9oteY4uAsKllIpQDId5cfnkWF2J130l+27dzDju0E6MScKiV0ZM5Bw8m4blYQ==" + } + }, + "npm:vinyl": { + "type": "npm", + "name": "npm:vinyl", + "data": { + "version": "2.2.0", + "packageName": "vinyl", + "hash": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.0.3", + "packageName": "thunky", + "hash": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==" + } + }, + "npm:@floating-ui/dom": { + "type": "npm", + "name": "npm:@floating-ui/dom", + "data": { + "version": "1.2.0", + "packageName": "@floating-ui/dom", + "hash": "sha512-QXzg57o1cjLz3cGETzKXjI3kx1xyS49DW9l7kV2jw2c8Yftd434t2hllX0sVGn2Q8MtcW/4pNm8bfE1/4n6mng==" + } + }, + "npm:fela-plugin-fallback-value": { + "type": "npm", + "name": "npm:fela-plugin-fallback-value", + "data": { + "version": "10.8.2", + "packageName": "fela-plugin-fallback-value", + "hash": "sha512-pjNQ4TJVJz8rDS8kEB7afRDHelQFzi0kIOhLSR0/LWLLFC7CfaQ3Vop9/w5Ot7iJtH8oR1dAxSQEyk497QcyPw==" + } + }, + "npm:is-lambda": { + "type": "npm", + "name": "npm:is-lambda", + "data": { + "version": "1.0.1", + "packageName": "is-lambda", + "hash": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" + } + }, + "npm:@microsoft/load-themed-styles": { + "type": "npm", + "name": "npm:@microsoft/load-themed-styles", + "data": { + "version": "1.10.26", + "packageName": "@microsoft/load-themed-styles", + "hash": "sha512-N//pFTBL/iCSrMuDoLvBLpgGjlk+MgKX2kyFI3bJVb+LRozeyWCOZVRcR8aMKiYHdqwy5isu2Frp8drvWx7RbA==" + } + }, + "npm:d3-time-format": { + "type": "npm", + "name": "npm:d3-time-format", + "data": { + "version": "3.0.0", + "packageName": "d3-time-format", + "hash": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==" + } + }, + "npm:pnp-webpack-plugin": { + "type": "npm", + "name": "npm:pnp-webpack-plugin", + "data": { + "version": "1.6.4", + "packageName": "pnp-webpack-plugin", + "hash": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==" + } + }, + "npm:make-iterator": { + "type": "npm", + "name": "npm:make-iterator", + "data": { + "version": "1.0.1", + "packageName": "make-iterator", + "hash": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==" + } + }, + "npm:shallow-equal": { + "type": "npm", + "name": "npm:shallow-equal", + "data": { + "version": "1.2.1", + "packageName": "shallow-equal", + "hash": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=" + } + }, + "npm:y18n@5.0.5": { + "type": "npm", + "name": "npm:y18n@5.0.5", + "data": { + "version": "5.0.5", + "packageName": "y18n", + "hash": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==" + } + }, + "npm:assign-symbols": { + "type": "npm", + "name": "npm:assign-symbols", + "data": { + "version": "1.0.0", + "packageName": "assign-symbols", + "hash": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + } + }, + "npm:lodash._reinterpolate": { + "type": "npm", + "name": "npm:lodash._reinterpolate", + "data": { + "version": "3.0.0", + "packageName": "lodash._reinterpolate", + "hash": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + } + }, + "npm:array-uniq": { + "type": "npm", + "name": "npm:array-uniq", + "data": { + "version": "1.0.3", + "packageName": "array-uniq", + "hash": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.1", + "packageName": "@types/stack-utils", + "hash": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + } + }, + "npm:html-minifier-terser": { + "type": "npm", + "name": "npm:html-minifier-terser", + "data": { + "version": "5.1.1", + "packageName": "html-minifier-terser", + "hash": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==" + } + }, + "npm:just-scripts-utils": { + "type": "npm", + "name": "npm:just-scripts-utils", + "data": { + "version": "1.2.0", + "packageName": "just-scripts-utils", + "hash": "sha512-rJMNtMz4V6uyMyfx+a2CqdMh1X/C9cVJTOPegvEzSonYMOKsiZEw2L9VzKVIFwNteKGZT6D2hFjSMAle41MAgA==" + } + }, + "npm:expand-brackets": { + "type": "npm", + "name": "npm:expand-brackets", + "data": { + "version": "2.1.4", + "packageName": "expand-brackets", + "hash": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=" + } + }, + "npm:@esbuild/android-arm@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/android-arm", + "hash": "sha512-tM8yLeYVe7pRyAu9VMi/Q7aunpLwD139EY1S99xbQkT4/q2qa6eA4ige/WJQYdJ8GBL1K33pPFhPfPdJ/WzT8Q==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:@types/html-minifier-terser": { + "type": "npm", + "name": "npm:@types/html-minifier-terser", + "data": { + "version": "5.1.0", + "packageName": "@types/html-minifier-terser", + "hash": "sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA==" + } + }, + "npm:dns-equal": { + "type": "npm", + "name": "npm:dns-equal", + "data": { + "version": "1.0.0", + "packageName": "dns-equal", + "hash": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + } + }, + "npm:parse-code-context": { + "type": "npm", + "name": "npm:parse-code-context", + "data": { + "version": "1.0.0", + "packageName": "parse-code-context", + "hash": "sha512-OZQaqKaQnR21iqhlnPfVisFjBWjhnMl5J9MgbP8xC+EwoVqbXrq78lp+9Zb3ahmLzrIX5Us/qbvBnaS3hkH6OA==" + } + }, + "npm:mdast-add-list-metadata": { + "type": "npm", + "name": "npm:mdast-add-list-metadata", + "data": { + "version": "1.0.1", + "packageName": "mdast-add-list-metadata", + "hash": "sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==" + } + }, + "npm:rollup-plugin-commonjs": { + "type": "npm", + "name": "npm:rollup-plugin-commonjs", + "data": { + "version": "10.1.0", + "packageName": "rollup-plugin-commonjs", + "hash": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==" + } + }, + "npm:extsprintf": { + "type": "npm", + "name": "npm:extsprintf", + "data": { + "version": "1.3.0", + "packageName": "extsprintf", + "hash": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + } + }, + "npm:fast-loops": { + "type": "npm", + "name": "npm:fast-loops", + "data": { + "version": "1.1.2", + "packageName": "fast-loops", + "hash": "sha512-ql8BgnHFryLogmmzR5O3uobe+3Zzaq6h6MWn/VtAyL9OXb51r5PSTbCm9f56fvEvMWWGjbdkr4xyhT0/vLJkKw==" + } + }, + "npm:kind-of@3.2.2": { + "type": "npm", + "name": "npm:kind-of@3.2.2", + "data": { + "version": "3.2.2", + "packageName": "kind-of", + "hash": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:es6-weak-map": { + "type": "npm", + "name": "npm:es6-weak-map", + "data": { + "version": "2.0.3", + "packageName": "es6-weak-map", + "hash": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "1.0.2", + "packageName": "minipass-collect", + "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + } + }, + "npm:@babel/plugin-transform-object-super": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==" + } + }, + "npm:esprima-extract-comments": { + "type": "npm", + "name": "npm:esprima-extract-comments", + "data": { + "version": "1.1.0", + "packageName": "esprima-extract-comments", + "hash": "sha512-sBQUnvJwpeE9QnPrxh7dpI/dp67erYG4WXEAreAMoelPRpMR7NWb4YtwRPn9b+H1uLQKl/qS8WYmyaljTpjIsw==" + } + }, + "npm:detab": { + "type": "npm", + "name": "npm:detab", + "data": { + "version": "2.0.4", + "packageName": "detab", + "hash": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==" + } + }, + "npm:@swc/helpers": { + "type": "npm", + "name": "npm:@swc/helpers", + "data": { + "version": "0.5.1", + "packageName": "@swc/helpers", + "hash": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==" + } + }, + "npm:indent-string@2.1.0": { + "type": "npm", + "name": "npm:indent-string@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "indent-string", + "hash": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=" + } + }, + "npm:@textlint/ast-node-types": { + "type": "npm", + "name": "npm:@textlint/ast-node-types", + "data": { + "version": "4.4.3", + "packageName": "@textlint/ast-node-types", + "hash": "sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:browserify-aes": { + "type": "npm", + "name": "npm:browserify-aes", + "data": { + "version": "1.2.0", + "packageName": "browserify-aes", + "hash": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.2.0", + "packageName": "loader-runner", + "hash": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==" + } + }, + "npm:ssri@8.0.0": { + "type": "npm", + "name": "npm:ssri@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "ssri", + "hash": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==" + } + }, + "npm:li": { + "type": "npm", + "name": "npm:li", + "data": { + "version": "1.3.0", + "packageName": "li", + "hash": "sha1-IsWbyu+qmo7zWc91l4TkvxBq6hs=" + } + }, + "npm:@parcel/watcher": { + "type": "npm", + "name": "npm:@parcel/watcher", + "data": { + "version": "2.0.4", + "packageName": "@parcel/watcher", + "hash": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==" + } + }, + "npm:object-assign@3.0.0": { + "type": "npm", + "name": "npm:object-assign@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "object-assign", + "hash": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" + } + }, + "npm:axios@0.21.4": { + "type": "npm", + "name": "npm:axios@0.21.4", + "data": { + "version": "0.21.4", + "packageName": "axios", + "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" + } + }, + "npm:pkg-dir@5.0.0": { + "type": "npm", + "name": "npm:pkg-dir@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "pkg-dir", + "hash": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==" + } + }, + "npm:p-map@2.1.0": { + "type": "npm", + "name": "npm:p-map@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "p-map", + "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + } + }, + "npm:upper-case": { + "type": "npm", + "name": "npm:upper-case", + "data": { + "version": "1.1.3", + "packageName": "upper-case", + "hash": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@types/pretty-hrtime": { + "type": "npm", + "name": "npm:@types/pretty-hrtime", + "data": { + "version": "1.0.1", + "packageName": "@types/pretty-hrtime", + "hash": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==" + } + }, + "npm:@types/d3-time-format": { + "type": "npm", + "name": "npm:@types/d3-time-format", + "data": { + "version": "3.0.4", + "packageName": "@types/d3-time-format", + "hash": "sha512-or9DiDnYI1h38J9hxKEsw513+KVuFbEVhl7qdxcaudoiqWWepapUen+2vAriFGexr6W5+P4l9+HJrB39GG+oRg==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.5", + "packageName": "flatted", + "hash": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" + } + }, + "npm:is-installed-globally": { + "type": "npm", + "name": "npm:is-installed-globally", + "data": { + "version": "0.4.0", + "packageName": "is-installed-globally", + "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" + } + }, + "npm:path-key@3.1.1": { + "type": "npm", + "name": "npm:path-key@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:@npmcli/run-script@1.3.1": { + "type": "npm", + "name": "npm:@npmcli/run-script@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "@npmcli/run-script", + "hash": "sha512-9Ea57XJjNLtBFRAaiKqqdoqRrL2QkM0vvCbMjPecljhog5IHupStPtZULbl0CoGN00N3lhLWJ4PaIEC0MGjqJw==" + } + }, + "npm:@webassemblyjs/helper-buffer@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + } + }, + "npm:cssfontparser": { + "type": "npm", + "name": "npm:cssfontparser", + "data": { + "version": "1.2.1", + "packageName": "cssfontparser", + "hash": "sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==" + } + }, + "npm:@fluentui/dom-utilities@1.1.1": { + "type": "npm", + "name": "npm:@fluentui/dom-utilities@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "@fluentui/dom-utilities", + "hash": "sha512-w40gi8fzCpwa7U8cONiuu8rszPStkVOL/weDf5pCbYEb1gdaV7MDPSNkgM6IV0Kz+k017noDgK9Fv4ru1Dwz1g==" + } + }, + "npm:cypress": { + "type": "npm", + "name": "npm:cypress", + "data": { + "version": "10.6.0", + "packageName": "cypress", + "hash": "sha512-6sOpHjostp8gcLO34p6r/Ci342lBs8S5z9/eb3ZCQ22w2cIhMWGUoGKkosabPBfKcvRS9BE4UxybBtlIs8gTQA==" + } + }, + "npm:@esbuild/win32-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-5NayUlSAyb5PQYFAU9x3bHdsqB88RC3aM9lKDAz4X1mo/EchMIT1Q+pSeBXNgkfNmRecLXA0O8xP+x8V+g/LKg==" + } + }, + "npm:backfill-logger": { + "type": "npm", + "name": "npm:backfill-logger", + "data": { + "version": "5.1.3", + "packageName": "backfill-logger", + "hash": "sha512-S1QUP+q3WWqcXWfwVt/jpi3r61CGWWJBfxGpzLPbRE8vMUw71P8sA+zYSx7M8ZI1PNZrxSA/TKq/NhoiMYXnpA==" + } + }, + "npm:deepmerge@2.2.1": { + "type": "npm", + "name": "npm:deepmerge@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "deepmerge", + "hash": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" + } + }, + "npm:unique-filename@3.0.0": { + "type": "npm", + "name": "npm:unique-filename@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" + } + }, + "npm:ci-info@1.6.0": { + "type": "npm", + "name": "npm:ci-info@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "ci-info", + "hash": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.4", + "packageName": "which-typed-array", + "hash": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==" + } + }, + "npm:cacheable-lookup@6.1.0": { + "type": "npm", + "name": "npm:cacheable-lookup@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "cacheable-lookup", + "hash": "sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.14", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" + } + }, + "npm:babel-plugin-macros@3.1.0": { + "type": "npm", + "name": "npm:babel-plugin-macros@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:@actions/http-client": { + "type": "npm", + "name": "npm:@actions/http-client", + "data": { + "version": "2.0.1", + "packageName": "@actions/http-client", + "hash": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.0", + "packageName": "bser", + "hash": "sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==" + } + }, + "npm:@storybook/addon-essentials": { + "type": "npm", + "name": "npm:@storybook/addon-essentials", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-essentials", + "hash": "sha512-m3EY6BhUk6Z9Et7P5wGaRGNoEDHzJIOsLbGS/4IXvIoDfrqmNIilqUQl8kfDqpVdBSFprvpacHpKpLosu9H37w==" + } + }, + "npm:array-flatten@2.1.2": { + "type": "npm", + "name": "npm:array-flatten@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "array-flatten", + "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + }, + "npm:lazy-universal-dotenv": { + "type": "npm", + "name": "npm:lazy-universal-dotenv", + "data": { + "version": "3.0.1", + "packageName": "lazy-universal-dotenv", + "hash": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==" + } + }, + "npm:lodash.isinteger": { + "type": "npm", + "name": "npm:lodash.isinteger", + "data": { + "version": "4.0.4", + "packageName": "lodash.isinteger", + "hash": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:@rushstack/node-core-library": { + "type": "npm", + "name": "npm:@rushstack/node-core-library", + "data": { + "version": "3.52.0", + "packageName": "@rushstack/node-core-library", + "hash": "sha512-Z+MAP//G3rEGZd3JxJcBGcPYJlh8pvPoLMTLa5Sy6FTE6hRPzN+5J8DT7BbTmlqZaL6SZpXF30heRUbnYOvujw==" + } + }, + "npm:is-number@7.0.0": { + "type": "npm", + "name": "npm:is-number@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:storybook-addon-swc": { + "type": "npm", + "name": "npm:storybook-addon-swc", + "data": { + "version": "1.2.0", + "packageName": "storybook-addon-swc", + "hash": "sha512-PEpxhAH+407KTcVDC7uUH4S26qtuBDC/JlZI3NqFYu0Tm2uCBf56On+13lK4iE3Iz8FORl4aSXo2RricJ/UhPQ==" + } + }, + "npm:@types/d3-format": { + "type": "npm", + "name": "npm:@types/d3-format", + "data": { + "version": "1.3.1", + "packageName": "@types/d3-format", + "hash": "sha512-KAWvReOKMDreaAwOjdfQMm0HjcUMlQG47GwqdVKgmm20vTd2pucj0a70c3gUSHrnsmo6H2AMrkBsZU2UhJLq8A==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:@octokit/types@9.3.2": { + "type": "npm", + "name": "npm:@octokit/types@9.3.2", + "data": { + "version": "9.3.2", + "packageName": "@octokit/types", + "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" + } + }, + "npm:homedir-polyfill": { + "type": "npm", + "name": "npm:homedir-polyfill", + "data": { + "version": "1.0.3", + "packageName": "homedir-polyfill", + "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" + } + }, + "npm:css": { + "type": "npm", + "name": "npm:css", + "data": { + "version": "2.2.4", + "packageName": "css", + "hash": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==" + } + }, + "npm:marked": { + "type": "npm", + "name": "npm:marked", + "data": { + "version": "4.0.12", + "packageName": "marked", + "hash": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==" + } + }, + "npm:concat-stream": { + "type": "npm", + "name": "npm:concat-stream", + "data": { + "version": "1.6.2", + "packageName": "concat-stream", + "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" + } + }, + "npm:esbuild-darwin-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-darwin-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-darwin-64", + "hash": "sha512-YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==" + } + }, + "npm:@effect/io": { + "type": "npm", + "name": "npm:@effect/io", + "data": { + "version": "0.26.0", + "packageName": "@effect/io", + "hash": "sha512-umwZ/sRoV7zb/8WwoiK7xWoypqvY6C1EXWEGORpViAFUTx3/bXc9i7JtdttTWVokXb3qogrxGX2SHopB20I4vQ==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.33", + "packageName": "@types/connect", + "hash": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==" + } + }, + "npm:@nrwl/tao": { + "type": "npm", + "name": "npm:@nrwl/tao", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/tao", + "hash": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==" + } + }, + "npm:interpret": { + "type": "npm", + "name": "npm:interpret", + "data": { + "version": "1.2.0", + "packageName": "interpret", + "hash": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==" + } + }, + "npm:is-descriptor@0.1.6": { + "type": "npm", + "name": "npm:is-descriptor@0.1.6", + "data": { + "version": "0.1.6", + "packageName": "is-descriptor", + "hash": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==" + } + }, + "npm:jest-runtime": { + "type": "npm", + "name": "npm:jest-runtime", + "data": { + "version": "29.7.0", + "packageName": "jest-runtime", + "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" + } + }, + "npm:path-to-regexp@1.7.0": { + "type": "npm", + "name": "npm:path-to-regexp@1.7.0", + "data": { + "version": "1.7.0", + "packageName": "path-to-regexp", + "hash": "sha1-Wf3g9DW62suhA6hOnTvGTpa5k30=" + } + }, + "npm:istanbul": { + "type": "npm", + "name": "npm:istanbul", + "data": { + "version": "0.4.5", + "packageName": "istanbul", + "hash": "sha512-nMtdn4hvK0HjUlzr1DrKSUY8ychprt8dzHOgY2KXsIhHu5PuQQEOTM27gV9Xblyon7aUH/TSFIjRHEODF/FRPg==" + } + }, + "npm:unc-path-regex": { + "type": "npm", + "name": "npm:unc-path-regex", + "data": { + "version": "0.1.2", + "packageName": "unc-path-regex", + "hash": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.7", + "packageName": "@types/qs", + "hash": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + } + }, + "npm:html-loader": { + "type": "npm", + "name": "npm:html-loader", + "data": { + "version": "1.3.2", + "packageName": "html-loader", + "hash": "sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==" + } + }, + "npm:serve-favicon": { + "type": "npm", + "name": "npm:serve-favicon", + "data": { + "version": "2.5.0", + "packageName": "serve-favicon", + "hash": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=" + } + }, + "npm:vinyl-fs": { + "type": "npm", + "name": "npm:vinyl-fs", + "data": { + "version": "3.0.3", + "packageName": "vinyl-fs", + "hash": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==" + } + }, + "npm:object-visit": { + "type": "npm", + "name": "npm:object-visit", + "data": { + "version": "1.0.1", + "packageName": "object-visit", + "hash": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=" + } + }, + "npm:globals@9.18.0": { + "type": "npm", + "name": "npm:globals@9.18.0", + "data": { + "version": "9.18.0", + "packageName": "globals", + "hash": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" + } + }, + "npm:babel-jest": { + "type": "npm", + "name": "npm:babel-jest", + "data": { + "version": "29.7.0", + "packageName": "babel-jest", + "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" + } + }, + "npm:koa-compose": { + "type": "npm", + "name": "npm:koa-compose", + "data": { + "version": "4.1.0", + "packageName": "koa-compose", + "hash": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + } + }, + "npm:istanbul-lib-instrument@1.10.2": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@1.10.2", + "data": { + "version": "1.10.2", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:array-slice@0.2.3": { + "type": "npm", + "name": "npm:array-slice@0.2.3", + "data": { + "version": "0.2.3", + "packageName": "array-slice", + "hash": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=" + } + }, + "npm:@babel/plugin-proposal-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-namespace-from", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-proposal-export-namespace-from", + "hash": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" + } + }, + "npm:bn.js": { + "type": "npm", + "name": "npm:bn.js", + "data": { + "version": "4.11.9", + "packageName": "bn.js", + "hash": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + } + }, + "npm:jest-changed-files": { + "type": "npm", + "name": "npm:jest-changed-files", + "data": { + "version": "29.7.0", + "packageName": "jest-changed-files", + "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" + } + }, + "npm:p-try@1.0.0": { + "type": "npm", + "name": "npm:p-try@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "p-try", + "hash": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + } + }, + "npm:pkg-up": { + "type": "npm", + "name": "npm:pkg-up", + "data": { + "version": "3.1.0", + "packageName": "pkg-up", + "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + } + }, + "npm:postcss-modules-local-by-default@3.0.2": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==" + } + }, + "npm:esbuild@0.19.2": { + "type": "npm", + "name": "npm:esbuild@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "esbuild", + "hash": "sha512-G6hPax8UbFakEj3hWO0Vs52LQ8k3lnBhxZWomUJDxfz3rZTLqF5k/FCzuNdLx2RbpBiQQF9H9onlDDH1lZsnjg==" + } + }, + "npm:@nx/devkit": { + "type": "npm", + "name": "npm:@nx/devkit", + "data": { + "version": "16.10.0", + "packageName": "@nx/devkit", + "hash": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==" + } + }, + "npm:@storybook/mdx1-csf": { + "type": "npm", + "name": "npm:@storybook/mdx1-csf", + "data": { + "version": "0.0.1", + "packageName": "@storybook/mdx1-csf", + "hash": "sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==" + } + }, + "npm:babel-plugin-syntax-jsx": { + "type": "npm", + "name": "npm:babel-plugin-syntax-jsx", + "data": { + "version": "6.18.0", + "packageName": "babel-plugin-syntax-jsx", + "hash": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + } + }, + "npm:lodash.once": { + "type": "npm", + "name": "npm:lodash.once", + "data": { + "version": "4.1.1", + "packageName": "lodash.once", + "hash": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:p-pipe": { + "type": "npm", + "name": "npm:p-pipe", + "data": { + "version": "3.1.0", + "packageName": "p-pipe", + "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" + } + }, + "npm:is-ci": { + "type": "npm", + "name": "npm:is-ci", + "data": { + "version": "3.0.1", + "packageName": "is-ci", + "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.2.1", + "packageName": "import-fresh", + "hash": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==" + } + }, + "npm:@esbuild/linux-ppc64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-dJ0kE8KTqbiHtA3Fc/zn7lCd7pqVr4JcT0JqOnbj4LLzYnp+7h8Qi4yjfq42ZlHfhOCM42rBh0EwHYLL6LEzcw==" + } + }, + "npm:iobuffer": { + "type": "npm", + "name": "npm:iobuffer", + "data": { + "version": "5.2.1", + "packageName": "iobuffer", + "hash": "sha512-VcilIyf5iaeEEPwCdhDsVMpZuWJ94j9KYI1hQQz1z7k/m+WygYvOGc6s51sg5R4qzN2EfDGEIW9EUbTU0iJIXw==" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:karma-mocha-reporter": { + "type": "npm", + "name": "npm:karma-mocha-reporter", + "data": { + "version": "2.2.5", + "packageName": "karma-mocha-reporter", + "hash": "sha512-Hr6nhkIp0GIJJrvzY8JFeHpQZNseuIakGac4bpw8K1+5F0tLb6l7uvXRa8mt2Z+NVwYgCct4QAfp2R2QP6o00w==" + } + }, + "npm:get-caller-file@1.0.3": { + "type": "npm", + "name": "npm:get-caller-file@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "get-caller-file", + "hash": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:codesandbox-import-utils": { + "type": "npm", + "name": "npm:codesandbox-import-utils", + "data": { + "version": "2.2.3", + "packageName": "codesandbox-import-utils", + "hash": "sha512-ymtmcgZKU27U+nM2qUb21aO8Ut/u2S9s6KorOgG81weP+NA0UZkaHKlaRqbLJ9h4i/4FLvwmEXYAnTjNmp6ogg==" + } + }, + "npm:@nx/nx-linux-x64-gnu@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:@nx/nx-darwin-x64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==" + } + }, + "npm:@types/d3-time": { + "type": "npm", + "name": "npm:@types/d3-time", + "data": { + "version": "2.1.3", + "packageName": "@types/d3-time", + "hash": "sha512-9EOa1kDZ1f8v6C5Mepz5YpWrVikrywGTQQ6QaYiVonrN6Chmmji2/XEVF38gn4uId3f2j85Uod14OKsv7ITOhw==" + } + }, + "npm:ansi-align@2.0.0": { + "type": "npm", + "name": "npm:ansi-align@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ansi-align", + "hash": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=" + } + }, + "npm:ansi-regex@2.1.1": { + "type": "npm", + "name": "npm:ansi-regex@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ansi-regex", + "hash": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + } + }, + "npm:jest-util": { + "type": "npm", + "name": "npm:jest-util", + "data": { + "version": "29.7.0", + "packageName": "jest-util", + "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:prismjs": { + "type": "npm", + "name": "npm:prismjs", + "data": { + "version": "1.16.0", + "packageName": "prismjs", + "hash": "sha512-OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA==" + } + }, + "npm:read-pkg@1.1.0": { + "type": "npm", + "name": "npm:read-pkg@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "read-pkg", + "hash": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=" + } + }, + "npm:semver-regex": { + "type": "npm", + "name": "npm:semver-regex", + "data": { + "version": "4.0.5", + "packageName": "semver-regex", + "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" + } + }, + "npm:unist-util-visit-parents@2.1.2": { + "type": "npm", + "name": "npm:unist-util-visit-parents@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "unist-util-visit-parents", + "hash": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==" + } + }, + "npm:upper-case-first": { + "type": "npm", + "name": "npm:upper-case-first", + "data": { + "version": "1.1.2", + "packageName": "upper-case-first", + "hash": "sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=" + } + }, + "npm:is-descriptor": { + "type": "npm", + "name": "npm:is-descriptor", + "data": { + "version": "1.0.2", + "packageName": "is-descriptor", + "hash": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.31", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==" + } + }, + "npm:d3-color": { + "type": "npm", + "name": "npm:d3-color", + "data": { + "version": "1.4.0", + "packageName": "d3-color", + "hash": "sha512-TzNPeJy2+iEepfiL92LAAB7fvnp/dV2YwANPVHdDWmYMm23qIJBYww3qT8I8C1wXrmrg4UWs7BKc2tKIgyjzHg==" + } + }, + "npm:tslib@1.14.1": { + "type": "npm", + "name": "npm:tslib@1.14.1", + "data": { + "version": "1.14.1", + "packageName": "tslib", + "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.17.4", + "packageName": "uglify-js", + "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" + } + }, + "npm:@mrmlnc/readdir-enhanced": { + "type": "npm", + "name": "npm:@mrmlnc/readdir-enhanced", + "data": { + "version": "2.2.1", + "packageName": "@mrmlnc/readdir-enhanced", + "hash": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==" + } + }, + "npm:react-docgen": { + "type": "npm", + "name": "npm:react-docgen", + "data": { + "version": "5.1.0", + "packageName": "react-docgen", + "hash": "sha512-buAVMVqDEtvC7+VRDRlA9udS9cO9jFfb7yxRvKNYR9MXS0MJwaIe7OjSEydNzH9oH7LND3whDE+koFDUBtF3zA==" + } + }, + "npm:is-hexadecimal": { + "type": "npm", + "name": "npm:is-hexadecimal", + "data": { + "version": "1.0.3", + "packageName": "is-hexadecimal", + "hash": "sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA==" + } + }, + "npm:remark-slug": { + "type": "npm", + "name": "npm:remark-slug", + "data": { + "version": "6.0.0", + "packageName": "remark-slug", + "hash": "sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==" + } + }, + "npm:protocols": { + "type": "npm", + "name": "npm:protocols", + "data": { + "version": "2.0.1", + "packageName": "protocols", + "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" + } + }, + "npm:scheduler@0.23.0": { + "type": "npm", + "name": "npm:scheduler@0.23.0", + "data": { + "version": "0.23.0", + "packageName": "scheduler", + "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.0", + "packageName": "istanbul-lib-report", + "hash": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.1", + "packageName": "string-argv", + "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" + } + }, + "npm:backfill-utils-dotenv": { + "type": "npm", + "name": "npm:backfill-utils-dotenv", + "data": { + "version": "5.1.1", + "packageName": "backfill-utils-dotenv", + "hash": "sha512-hSdY1pflGFf4xXXpI51bnNPr8arS3ga5tSeyeTjIdohC5IwUf+Eldz2yeSMrbqtP3PKIuxHc2RcwTJfL5jSBfg==" + } + }, + "npm:supports-color@2.0.0": { + "type": "npm", + "name": "npm:supports-color@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "supports-color", + "hash": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + }, + "npm:wide-align@1.1.3": { + "type": "npm", + "name": "npm:wide-align@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "wide-align", + "hash": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==" + } + }, + "npm:lz-string": { + "type": "npm", + "name": "npm:lz-string", + "data": { + "version": "1.4.4", + "packageName": "lz-string", + "hash": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" + } + }, + "npm:commander@6.2.1": { + "type": "npm", + "name": "npm:commander@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "commander", + "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:sax@0.5.8": { + "type": "npm", + "name": "npm:sax@0.5.8", + "data": { + "version": "0.5.8", + "packageName": "sax", + "hash": "sha512-c0YL9VcSfcdH3F1Qij9qpYJFpKFKMXNOkLWFssBL3RuF7ZS8oZhllR2rWlCRjDTJsfq3R6wbSsaRU6o0rkEdNw==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "29.7.0", + "packageName": "jest-diff", + "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" + } + }, + "npm:esbuild-linux-mips64le@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-mips64le@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-mips64le", + "hash": "sha512-vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==" + } + }, + "npm:lodash.isnumber": { + "type": "npm", + "name": "npm:lodash.isnumber", + "data": { + "version": "3.0.3", + "packageName": "lodash.isnumber", + "hash": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + } + }, + "npm:d3-hierarchy@1.1.9": { + "type": "npm", + "name": "npm:d3-hierarchy@1.1.9", + "data": { + "version": "1.1.9", + "packageName": "d3-hierarchy", + "hash": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + } + }, + "npm:@adobe/css-tools": { + "type": "npm", + "name": "npm:@adobe/css-tools", + "data": { + "version": "4.3.1", + "packageName": "@adobe/css-tools", + "hash": "sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + } + }, + "npm:@storybook/api": { + "type": "npm", + "name": "npm:@storybook/api", + "data": { + "version": "6.5.15", + "packageName": "@storybook/api", + "hash": "sha512-BBE0KXKvj1/3jTghbIoWfrcDM0t+xO7EYtWWAXD6XlhGsZVD2Dy82Z52ONyLulMDRpMWl0OYy3h6A1YnFUH25w==" + } + }, + "npm:cachedir": { + "type": "npm", + "name": "npm:cachedir", + "data": { + "version": "2.3.0", + "packageName": "cachedir", + "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "2.1.0", + "packageName": "eslint-utils", + "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + } + }, + "npm:moment": { + "type": "npm", + "name": "npm:moment", + "data": { + "version": "2.29.4", + "packageName": "moment", + "hash": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" + } + }, + "npm:num2fraction": { + "type": "npm", + "name": "npm:num2fraction", + "data": { + "version": "1.2.2", + "packageName": "num2fraction", + "hash": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + } + }, + "npm:object-copy": { + "type": "npm", + "name": "npm:object-copy", + "data": { + "version": "0.1.0", + "packageName": "object-copy", + "hash": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:sort-keys-length": { + "type": "npm", + "name": "npm:sort-keys-length", + "data": { + "version": "1.0.1", + "packageName": "sort-keys-length", + "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" + } + }, + "npm:@types/istanbul-reports@1.1.1": { + "type": "npm", + "name": "npm:@types/istanbul-reports@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "@types/istanbul-reports", + "hash": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==" + } + }, + "npm:ip@1.1.5": { + "type": "npm", + "name": "npm:ip@1.1.5", + "data": { + "version": "1.1.5", + "packageName": "ip", + "hash": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + } + }, + "npm:@mdx-js/react": { + "type": "npm", + "name": "npm:@mdx-js/react", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/react", + "hash": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "5.1.0", + "packageName": "get-stream", + "hash": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "2.0.2", + "packageName": "unique-slug", + "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" + } + }, + "npm:write-file-atomic@4.0.2": { + "type": "npm", + "name": "npm:write-file-atomic@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:@types/hast": { + "type": "npm", + "name": "npm:@types/hast", + "data": { + "version": "2.3.1", + "packageName": "@types/hast", + "hash": "sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==" + } + }, + "npm:textextensions": { + "type": "npm", + "name": "npm:textextensions", + "data": { + "version": "2.6.0", + "packageName": "textextensions", + "hash": "sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.2", + "packageName": "jest-pnp-resolver", + "hash": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "3.0.0", + "packageName": "is-number", + "hash": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=" + } + }, + "npm:@microsoft/tsdoc-config": { + "type": "npm", + "name": "npm:@microsoft/tsdoc-config", + "data": { + "version": "0.16.2", + "packageName": "@microsoft/tsdoc-config", + "hash": "sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==" + } + }, + "npm:loader-runner@2.4.0": { + "type": "npm", + "name": "npm:loader-runner@2.4.0", + "data": { + "version": "2.4.0", + "packageName": "loader-runner", + "hash": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + } + }, + "npm:@types/source-list-map": { + "type": "npm", + "name": "npm:@types/source-list-map", + "data": { + "version": "0.1.2", + "packageName": "@types/source-list-map", + "hash": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + } + }, + "npm:clean-webpack-plugin": { + "type": "npm", + "name": "npm:clean-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "clean-webpack-plugin", + "hash": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==" + } + }, + "npm:gzip-size": { + "type": "npm", + "name": "npm:gzip-size", + "data": { + "version": "5.1.1", + "packageName": "gzip-size", + "hash": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@types/mocha": { + "type": "npm", + "name": "npm:@types/mocha", + "data": { + "version": "7.0.2", + "packageName": "@types/mocha", + "hash": "sha512-ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w==" + } + }, + "npm:toggle-selection": { + "type": "npm", + "name": "npm:toggle-selection", + "data": { + "version": "1.0.6", + "packageName": "toggle-selection", + "hash": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + } + }, + "npm:upath": { + "type": "npm", + "name": "npm:upath", + "data": { + "version": "2.0.1", + "packageName": "upath", + "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" + } + }, + "npm:os-filter-obj": { + "type": "npm", + "name": "npm:os-filter-obj", + "data": { + "version": "2.0.0", + "packageName": "os-filter-obj", + "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" + } + }, + "npm:watchpack@1.7.5": { + "type": "npm", + "name": "npm:watchpack@1.7.5", + "data": { + "version": "1.7.5", + "packageName": "watchpack", + "hash": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==" + } + }, + "npm:lage": { + "type": "npm", + "name": "npm:lage", + "data": { + "version": "1.8.8", + "packageName": "lage", + "hash": "sha512-rMXedlK1lvC69P+bVir6r9EaGqy/NZm1Rg4vE7LD1vlDzNLYkCnvD1JkMxxQHkbMjhKXBLwcB6JnAti79GdLgA==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:regenerator-runtime@0.14.0": { + "type": "npm", + "name": "npm:regenerator-runtime@0.14.0", + "data": { + "version": "0.14.0", + "packageName": "regenerator-runtime", + "hash": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + } + }, + "npm:@types/prop-types": { + "type": "npm", + "name": "npm:@types/prop-types", + "data": { + "version": "15.7.1", + "packageName": "@types/prop-types", + "hash": "sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg==" + } + }, + "npm:d3-shape@3.2.0": { + "type": "npm", + "name": "npm:d3-shape@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "d3-shape", + "hash": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==" + } + }, + "npm:whatwg-url@5.0.0": { + "type": "npm", + "name": "npm:whatwg-url@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=" + } + }, + "npm:get-value": { + "type": "npm", + "name": "npm:get-value", + "data": { + "version": "2.0.6", + "packageName": "get-value", + "hash": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + } + }, + "npm:arr-map": { + "type": "npm", + "name": "npm:arr-map", + "data": { + "version": "2.0.2", + "packageName": "arr-map", + "hash": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.2", + "packageName": "core-util-is", + "hash": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + } + }, + "npm:unist-util-stringify-position@2.0.2": { + "type": "npm", + "name": "npm:unist-util-stringify-position@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "unist-util-stringify-position", + "hash": "sha512-nK5n8OGhZ7ZgUwoUbL8uiVRwAbZyzBsB/Ddrlbu6jwwubFza4oe15KlyEaLNMXQW1svOQq4xesUeqA85YrIUQA==" + } + }, + "npm:brace": { + "type": "npm", + "name": "npm:brace", + "data": { + "version": "0.11.1", + "packageName": "brace", + "hash": "sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg=" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.0", + "packageName": "function.prototype.name", + "hash": "sha512-Bs0VRrTz4ghD8pTmbJQD1mZ8A/mN0ur/jGz+A6FBxPDUPkm1tNfF6bhTYPA7i7aF4lZJVr+OXTNNrnnIl58Wfg==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:regenerator-transform": { + "type": "npm", + "name": "npm:regenerator-transform", + "data": { + "version": "0.15.2", + "packageName": "regenerator-transform", + "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.0", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + } + }, + "npm:@storybook/ui": { + "type": "npm", + "name": "npm:@storybook/ui", + "data": { + "version": "6.5.15", + "packageName": "@storybook/ui", + "hash": "sha512-OO+TWZmI8ebWA1C3JBKNvbUbsgvt4GppqsGlkf5CTBZrT/MzmMlYiooLAtlY1ZPcMtTd5ynLxvroHWBEnMOk2A==" + } + }, + "npm:@types/tunnel": { + "type": "npm", + "name": "npm:@types/tunnel", + "data": { + "version": "0.0.1", + "packageName": "@types/tunnel", + "hash": "sha512-AOqu6bQu5MSWwYvehMXLukFHnupHrpZ8nvgae5Ggie9UwzDR1CCwoXgSSWNZJuyOlCdfdsWMA5F2LlmvyoTv8A==" + } + }, + "npm:arrify@1.0.1": { + "type": "npm", + "name": "npm:arrify@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "arrify", + "hash": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + } + }, + "npm:memoizee": { + "type": "npm", + "name": "npm:memoizee", + "data": { + "version": "0.4.14", + "packageName": "memoizee", + "hash": "sha512-/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:@types/semver@7.3.13": { + "type": "npm", + "name": "npm:@types/semver@7.3.13", + "data": { + "version": "7.3.13", + "packageName": "@types/semver", + "hash": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" + } + }, + "npm:@webpack-cli/serve": { + "type": "npm", + "name": "npm:@webpack-cli/serve", + "data": { + "version": "1.7.0", + "packageName": "@webpack-cli/serve", + "hash": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==" + } + }, + "npm:delegate": { + "type": "npm", + "name": "npm:delegate", + "data": { + "version": "3.2.0", + "packageName": "delegate", + "hash": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" + } + }, + "npm:@emotion/unitless": { + "type": "npm", + "name": "npm:@emotion/unitless", + "data": { + "version": "0.7.5", + "packageName": "@emotion/unitless", + "hash": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + } + }, + "npm:fela-utils": { + "type": "npm", + "name": "npm:fela-utils", + "data": { + "version": "10.8.2", + "packageName": "fela-utils", + "hash": "sha512-RmoDOIby14Zb3Xn03noLolyMC2528xcNO5KcNCaznyByd1Acq8DnvQn91Ph9nBLcLqdC1rGme5HwRcrCOHG+kA==" + } + }, + "npm:ospath": { + "type": "npm", + "name": "npm:ospath", + "data": { + "version": "1.2.2", + "packageName": "ospath", + "hash": "sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.2", + "packageName": "clone-response", + "hash": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" + } + }, + "npm:@types/d3-sankey": { + "type": "npm", + "name": "npm:@types/d3-sankey", + "data": { + "version": "0.11.2", + "packageName": "@types/d3-sankey", + "hash": "sha512-U6SrTWUERSlOhnpSrgvMX64WblX1AxX6nEjI2t3mLK2USpQrnbwYYK+AS9SwiE7wgYmOsSSKoSdr8aoKBH0HgQ==" + } + }, + "npm:pixel-buffer-diff": { + "type": "npm", + "name": "npm:pixel-buffer-diff", + "data": { + "version": "1.3.3", + "packageName": "pixel-buffer-diff", + "hash": "sha512-Idq8Wps2P5iKgvP3DEb0aZuKqqDuqsiqY0jJmqHMYfCzq4xuNPygFg1zdZSM5k5m14u8Ww72mTY39Bu2XtT2+A==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:emoji-regex@8.0.0": { + "type": "npm", + "name": "npm:emoji-regex@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:@types/doctrine": { + "type": "npm", + "name": "npm:@types/doctrine", + "data": { + "version": "0.0.5", + "packageName": "@types/doctrine", + "hash": "sha512-JJwEeFy8Sl9ctiugU4h4DGN9hCB47oyhUkM2H8g8xZr4tHTEXtmV4U6krKrU8Ng0S7RlG/J7fkta1rGu3pq+YQ==" + } + }, + "npm:dashdash": { + "type": "npm", + "name": "npm:dashdash", + "data": { + "version": "1.14.1", + "packageName": "dashdash", + "hash": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=" + } + }, + "npm:jsonschema": { + "type": "npm", + "name": "npm:jsonschema", + "data": { + "version": "1.4.1", + "packageName": "jsonschema", + "hash": "sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==" + } + }, + "npm:source-map@0.5.7": { + "type": "npm", + "name": "npm:source-map@0.5.7", + "data": { + "version": "0.5.7", + "packageName": "source-map", + "hash": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + }, + "npm:esbuild-loader": { + "type": "npm", + "name": "npm:esbuild-loader", + "data": { + "version": "3.2.0", + "packageName": "esbuild-loader", + "hash": "sha512-lnIdRMQpk50alCa0QoW0ozc0D3rjJXl02mtMsk9INIcW25RPZhDja332bu85ixwVNbhQ7VfBRcQyZ/qza8mWiA==" + } + }, + "npm:@microsoft/applicationinsights-properties-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-properties-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-properties-js", + "hash": "sha512-PFqicp8q4Tc0hqfPjwfqKo12gEqTk1l4lMyUUIU7ugE1XOuDkZcMPha05KnZWKj+F4zQXJcetcAHoVkyoyCFQw==" + } + }, + "npm:eslint-plugin-jsx-a11y": { + "type": "npm", + "name": "npm:eslint-plugin-jsx-a11y", + "data": { + "version": "6.4.1", + "packageName": "eslint-plugin-jsx-a11y", + "hash": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==" + } + }, + "npm:@octokit/request-error@3.0.1": { + "type": "npm", + "name": "npm:@octokit/request-error@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@octokit/request-error", + "hash": "sha512-ym4Bp0HTP7F3VFssV88WD1ZyCIRoE8H35pXSKwLeMizcdZAYc/t6N9X9Yr9n6t3aG9IH75XDnZ6UeZph0vHMWQ==" + } + }, + "npm:fastest-levenshtein": { + "type": "npm", + "name": "npm:fastest-levenshtein", + "data": { + "version": "1.0.12", + "packageName": "fastest-levenshtein", + "hash": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==" + } + }, + "npm:aria-query": { + "type": "npm", + "name": "npm:aria-query", + "data": { + "version": "4.2.2", + "packageName": "aria-query", + "hash": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==" + } + }, + "npm:global-modules": { + "type": "npm", + "name": "npm:global-modules", + "data": { + "version": "1.0.0", + "packageName": "global-modules", + "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" + } + }, + "npm:globby@13.2.2": { + "type": "npm", + "name": "npm:globby@13.2.2", + "data": { + "version": "13.2.2", + "packageName": "globby", + "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" + } + }, + "npm:loud-rejection": { + "type": "npm", + "name": "npm:loud-rejection", + "data": { + "version": "1.6.0", + "packageName": "loud-rejection", + "hash": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=" + } + }, + "npm:@tokenizer/token": { + "type": "npm", + "name": "npm:@tokenizer/token", + "data": { + "version": "0.3.0", + "packageName": "@tokenizer/token", + "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + } + }, + "npm:stylis@3.5.4": { + "type": "npm", + "name": "npm:stylis@3.5.4", + "data": { + "version": "3.5.4", + "packageName": "stylis", + "hash": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" + } + }, + "npm:url-parse-lax": { + "type": "npm", + "name": "npm:url-parse-lax", + "data": { + "version": "1.0.0", + "packageName": "url-parse-lax", + "hash": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=" + } + }, + "npm:globby@10.0.2": { + "type": "npm", + "name": "npm:globby@10.0.2", + "data": { + "version": "10.0.2", + "packageName": "globby", + "hash": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==" + } + }, + "npm:glogg": { + "type": "npm", + "name": "npm:glogg", + "data": { + "version": "1.0.2", + "packageName": "glogg", + "hash": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==" + } + }, + "npm:react-app-polyfill": { + "type": "npm", + "name": "npm:react-app-polyfill", + "data": { + "version": "2.0.0", + "packageName": "react-app-polyfill", + "hash": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:restore-cursor@2.0.0": { + "type": "npm", + "name": "npm:restore-cursor@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "restore-cursor", + "hash": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=" + } + }, + "npm:d3-collection": { + "type": "npm", + "name": "npm:d3-collection", + "data": { + "version": "1.0.7", + "packageName": "d3-collection", + "hash": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + } + }, + "npm:type-fest@0.18.1": { + "type": "npm", + "name": "npm:type-fest@0.18.1", + "data": { + "version": "0.18.1", + "packageName": "type-fest", + "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.0", + "packageName": "handle-thing", + "hash": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==" + } + }, + "npm:@swc/core-linux-x64-musl@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-musl@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-x64-musl", + "hash": "sha512-C1NUeISJDyMlIk4919bjcpHvjyjzbkjW7v53gUdN41Y4BPlEk7UKcLez7UHMjdMGA/o9721SLqYVp4/NrQErUw==" + } + }, + "npm:@griffel/webpack-loader": { + "type": "npm", + "name": "npm:@griffel/webpack-loader", + "data": { + "version": "2.1.20", + "packageName": "@griffel/webpack-loader", + "hash": "sha512-R4Sk64rZIkWuTQX0mpzOFm5ULJ0HpnD3GMxOvprqNTpQmaCaL89FHOMc1le90s25clQfmxTAZuCueBOJHYxNCA==" + } + }, + "npm:@types/glob-stream": { + "type": "npm", + "name": "npm:@types/glob-stream", + "data": { + "version": "6.1.0", + "packageName": "@types/glob-stream", + "hash": "sha512-RHv6ZQjcTncXo3thYZrsbAVwoy4vSKosSWhuhuQxLOTv74OJuFQxXkmUuZCr3q9uNBEVCvIzmZL/FeRNbHZGUg==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:opn": { + "type": "npm", + "name": "npm:opn", + "data": { + "version": "5.5.0", + "packageName": "opn", + "hash": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==" + } + }, + "npm:comment-parser": { + "type": "npm", + "name": "npm:comment-parser", + "data": { + "version": "1.3.1", + "packageName": "comment-parser", + "hash": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==" + } + }, + "npm:editions": { + "type": "npm", + "name": "npm:editions", + "data": { + "version": "2.3.1", + "packageName": "editions", + "hash": "sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==" + } + }, + "npm:ajv-errors@1.0.1": { + "type": "npm", + "name": "npm:ajv-errors@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "ajv-errors", + "hash": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + } + }, + "npm:os-locale": { + "type": "npm", + "name": "npm:os-locale", + "data": { + "version": "1.4.0", + "packageName": "os-locale", + "hash": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=" + } + }, + "npm:jest-mock": { + "type": "npm", + "name": "npm:jest-mock", + "data": { + "version": "29.7.0", + "packageName": "jest-mock", + "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" + } + }, + "npm:@tsconfig/node16": { + "type": "npm", + "name": "npm:@tsconfig/node16", + "data": { + "version": "1.0.3", + "packageName": "@tsconfig/node16", + "hash": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==" + } + }, + "npm:estraverse@1.9.3": { + "type": "npm", + "name": "npm:estraverse@1.9.3", + "data": { + "version": "1.9.3", + "packageName": "estraverse", + "hash": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.3", + "packageName": "internal-slot", + "hash": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" + } + }, + "npm:hash.js": { + "type": "npm", + "name": "npm:hash.js", + "data": { + "version": "1.1.7", + "packageName": "hash.js", + "hash": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==" + } + }, + "npm:is-arguments": { + "type": "npm", + "name": "npm:is-arguments", + "data": { + "version": "1.0.4", + "packageName": "is-arguments", + "hash": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==" + } + }, + "npm:is-path-in-cwd": { + "type": "npm", + "name": "npm:is-path-in-cwd", + "data": { + "version": "2.1.0", + "packageName": "is-path-in-cwd", + "hash": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" + } + }, + "npm:d3-scale@4.0.2": { + "type": "npm", + "name": "npm:d3-scale@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "d3-scale", + "hash": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==" + } + }, + "npm:dedent@1.5.1": { + "type": "npm", + "name": "npm:dedent@1.5.1", + "data": { + "version": "1.5.1", + "packageName": "dedent", + "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" + } + }, + "npm:lodash.escape": { + "type": "npm", + "name": "npm:lodash.escape", + "data": { + "version": "3.2.0", + "packageName": "lodash.escape", + "hash": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=" + } + }, + "npm:loupe": { + "type": "npm", + "name": "npm:loupe", + "data": { + "version": "2.3.4", + "packageName": "loupe", + "hash": "sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==" + } + }, + "npm:load-json-file@1.1.0": { + "type": "npm", + "name": "npm:load-json-file@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "load-json-file", + "hash": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=" + } + }, + "npm:parse-url": { + "type": "npm", + "name": "npm:parse-url", + "data": { + "version": "8.1.0", + "packageName": "parse-url", + "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" + } + }, + "npm:resolve-from@3.0.0": { + "type": "npm", + "name": "npm:resolve-from@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "resolve-from", + "hash": "sha1-six699nWiBvItuZTM17rywoYh0g=" + } + }, + "npm:tiny-warning": { + "type": "npm", + "name": "npm:tiny-warning", + "data": { + "version": "1.0.3", + "packageName": "tiny-warning", + "hash": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + } + }, + "npm:use": { + "type": "npm", + "name": "npm:use", + "data": { + "version": "3.1.1", + "packageName": "use", + "hash": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + } + }, + "npm:babel-plugin-extract-import-names": { + "type": "npm", + "name": "npm:babel-plugin-extract-import-names", + "data": { + "version": "1.6.22", + "packageName": "babel-plugin-extract-import-names", + "hash": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==" + } + }, + "npm:@babel/plugin-syntax-jsx@7.12.1": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx@7.12.1", + "data": { + "version": "7.12.1", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==" + } + }, + "npm:@npmcli/fs@2.1.2": { + "type": "npm", + "name": "npm:@npmcli/fs@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "@npmcli/fs", + "hash": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + } + }, + "npm:@types/parse5": { + "type": "npm", + "name": "npm:@types/parse5", + "data": { + "version": "5.0.3", + "packageName": "@types/parse5", + "hash": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:fsevents@1.2.13": { + "type": "npm", + "name": "npm:fsevents@1.2.13", + "data": { + "version": "1.2.13", + "packageName": "fsevents", + "hash": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==" + } + }, + "npm:pretty-hrtime": { + "type": "npm", + "name": "npm:pretty-hrtime", + "data": { + "version": "1.0.3", + "packageName": "pretty-hrtime", + "hash": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" + } + }, + "npm:unist-util-visit-parents": { + "type": "npm", + "name": "npm:unist-util-visit-parents", + "data": { + "version": "3.0.1", + "packageName": "unist-util-visit-parents", + "hash": "sha512-umEOTkm6/y1gIqPrqet55mYqlvGXCia/v1FSc5AveLAI7jFmOAIbqiwcHcviLcusAkEQt1bq2hixCKO9ltMb2Q==" + } + }, + "npm:@babel/plugin-transform-destructuring": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==" + } + }, + "npm:util": { + "type": "npm", + "name": "npm:util", + "data": { + "version": "0.12.3", + "packageName": "util", + "hash": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==" + } + }, + "npm:create-hmac": { + "type": "npm", + "name": "npm:create-hmac", + "data": { + "version": "1.1.7", + "packageName": "create-hmac", + "hash": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==" + } + }, + "npm:assert@1.5.0": { + "type": "npm", + "name": "npm:assert@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "assert", + "hash": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==" + } + }, + "npm:@babel/plugin-proposal-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", + "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" + } + }, + "npm:node-environment-flags": { + "type": "npm", + "name": "npm:node-environment-flags", + "data": { + "version": "1.0.6", + "packageName": "node-environment-flags", + "hash": "sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:react-transition-group": { + "type": "npm", + "name": "npm:react-transition-group", + "data": { + "version": "4.4.2", + "packageName": "react-transition-group", + "hash": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==" + } + }, + "npm:widest-line": { + "type": "npm", + "name": "npm:widest-line", + "data": { + "version": "3.1.0", + "packageName": "widest-line", + "hash": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.2", + "packageName": "available-typed-arrays", + "hash": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==" + } + }, + "npm:esbuild-android-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-android-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-android-64", + "hash": "sha512-6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==" + } + }, + "npm:lodash.camelcase": { + "type": "npm", + "name": "npm:lodash.camelcase", + "data": { + "version": "4.3.0", + "packageName": "lodash.camelcase", + "hash": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + } + }, + "npm:param-case@3.0.4": { + "type": "npm", + "name": "npm:param-case@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "param-case", + "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + } + }, + "npm:@nx/workspace": { + "type": "npm", + "name": "npm:@nx/workspace", + "data": { + "version": "16.10.0", + "packageName": "@nx/workspace", + "hash": "sha512-95Eq36bzq2hb095Zvg+Ru8o9oIeOE62tNGGpohBkZPKoK2CUTYEq0AZtdj1suXS82ukCFCyyZ/c/fwxL62HRZA==" + } + }, + "npm:browser-assert": { + "type": "npm", + "name": "npm:browser-assert", + "data": { + "version": "1.2.1", + "packageName": "browser-assert", + "hash": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==" + } + }, + "npm:wordwrapjs": { + "type": "npm", + "name": "npm:wordwrapjs", + "data": { + "version": "4.0.1", + "packageName": "wordwrapjs", + "hash": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.1.9", + "packageName": "run-parallel", + "hash": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" + } + }, + "npm:table": { + "type": "npm", + "name": "npm:table", + "data": { + "version": "6.8.0", + "packageName": "table", + "hash": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==" + } + }, + "npm:define-property": { + "type": "npm", + "name": "npm:define-property", + "data": { + "version": "0.2.5", + "packageName": "define-property", + "hash": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" + } + }, + "npm:lodash.isarguments": { + "type": "npm", + "name": "npm:lodash.isarguments", + "data": { + "version": "3.1.0", + "packageName": "lodash.isarguments", + "hash": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "1.8.0", + "packageName": "convert-source-map", + "hash": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==" + } + }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, + "npm:reduce-flatten": { + "type": "npm", + "name": "npm:reduce-flatten", + "data": { + "version": "2.0.0", + "packageName": "reduce-flatten", + "hash": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==" + } + }, + "npm:source-map-support@0.5.19": { + "type": "npm", + "name": "npm:source-map-support@0.5.19", + "data": { + "version": "0.5.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:to-object-path": { + "type": "npm", + "name": "npm:to-object-path", + "data": { + "version": "0.3.0", + "packageName": "to-object-path", + "hash": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=" + } + }, + "npm:@types/markdown-table": { + "type": "npm", + "name": "npm:@types/markdown-table", + "data": { + "version": "2.0.0", + "packageName": "@types/markdown-table", + "hash": "sha512-fVZN/DRjZvjuk+lo7ovlI/ZycS51gpYU5vw5EcFeqkcX6lucQ+UWgEOH2O4KJHkSck4DHAY7D7CkVLD0wzc5qw==" + } + }, + "npm:http-signature": { + "type": "npm", + "name": "npm:http-signature", + "data": { + "version": "1.3.6", + "packageName": "http-signature", + "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" + } + }, + "npm:@storybook/react-docgen-typescript-plugin": { + "type": "npm", + "name": "npm:@storybook/react-docgen-typescript-plugin", + "data": { + "version": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0", + "packageName": "@storybook/react-docgen-typescript-plugin", + "hash": "sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==" + } + }, + "npm:babel-plugin-apply-mdx-type-prop@1.6.22": { + "type": "npm", + "name": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "data": { + "version": "1.6.22", + "packageName": "babel-plugin-apply-mdx-type-prop", + "hash": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==" + } + }, + "npm:minizlib@1.3.3": { + "type": "npm", + "name": "npm:minizlib@1.3.3", + "data": { + "version": "1.3.3", + "packageName": "minizlib", + "hash": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==" + } + }, + "npm:p-locate@4.1.0": { + "type": "npm", + "name": "npm:p-locate@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:case-sensitive-paths-webpack-plugin": { + "type": "npm", + "name": "npm:case-sensitive-paths-webpack-plugin", + "data": { + "version": "2.4.0", + "packageName": "case-sensitive-paths-webpack-plugin", + "hash": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==" + } + }, + "npm:eslint-plugin-jest@25.2.4": { + "type": "npm", + "name": "npm:eslint-plugin-jest@25.2.4", + "data": { + "version": "25.2.4", + "packageName": "eslint-plugin-jest", + "hash": "sha512-HRyinpgmEdkVr7pNPaYPHCoGqEzpgk79X8pg/xCeoAdurbyQjntJQ4pTzHl7BiVEBlam/F1Qsn+Dk0HtJO7Aaw==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:@esbuild/openbsd-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-S6kI1aT3S++Dedb7vxIuUOb3oAxqxk2Rh5rOXOTYnzN8JzW1VzBd+IqPiSpgitu45042SYD3HCoEyhLKQcDFDw==" + } + }, + "npm:remark-mdx": { + "type": "npm", + "name": "npm:remark-mdx", + "data": { + "version": "1.6.22", + "packageName": "remark-mdx", + "hash": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "2.0.1", + "packageName": "@types/mime", + "hash": "sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw==" + } + }, + "npm:esbuild-linux-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-64", + "hash": "sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==" + } + }, + "npm:text-extensions": { + "type": "npm", + "name": "npm:text-extensions", + "data": { + "version": "1.9.0", + "packageName": "text-extensions", + "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" + } + }, + "npm:y18n@3.2.2": { + "type": "npm", + "name": "npm:y18n@3.2.2", + "data": { + "version": "3.2.2", + "packageName": "y18n", + "hash": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "1.0.3", + "packageName": "@sigstore/tuf", + "hash": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==" + } + }, + "npm:@babel/plugin-transform-unicode-property-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-property-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-unicode-property-regex", + "hash": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==" + } + }, + "npm:string-length@5.0.1": { + "type": "npm", + "name": "npm:string-length@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "string-length", + "hash": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==" + } + }, + "npm:@octokit/types@7.5.0": { + "type": "npm", + "name": "npm:@octokit/types@7.5.0", + "data": { + "version": "7.5.0", + "packageName": "@octokit/types", + "hash": "sha512-aHm+olfIZjQpzoODpl+RCZzchKOrdSLJs+yfI7pMMcmB19Li6vidgx0DwUDO/Ic4Q3fq/lOjJORVCcLZefcrJw==" + } + }, + "npm:builtins@1.0.3": { + "type": "npm", + "name": "npm:builtins@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "builtins", + "hash": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=" + } + }, + "npm:cssom@0.3.8": { + "type": "npm", + "name": "npm:cssom@0.3.8", + "data": { + "version": "0.3.8", + "packageName": "cssom", + "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + }, + "npm:@sigstore/protobuf-specs": { + "type": "npm", + "name": "npm:@sigstore/protobuf-specs", + "data": { + "version": "0.2.0", + "packageName": "@sigstore/protobuf-specs", + "hash": "sha512-8ZhZKAVfXjIspDWwm3D3Kvj0ddbJ0HqDZ/pOs5cx88HpT8mVsotFrg7H1UMnXOuDHz6Zykwxn4mxG3QLuN+RUg==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.3.2", + "packageName": "html-entities", + "hash": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==" + } + }, + "npm:strip-bom-string": { + "type": "npm", + "name": "npm:strip-bom-string", + "data": { + "version": "1.0.0", + "packageName": "strip-bom-string", + "hash": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" + } + }, + "npm:p-map-series": { + "type": "npm", + "name": "npm:p-map-series", + "data": { + "version": "2.1.0", + "packageName": "p-map-series", + "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" + } + }, + "npm:debug@3.2.6": { + "type": "npm", + "name": "npm:debug@3.2.6", + "data": { + "version": "3.2.6", + "packageName": "debug", + "hash": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==" + } + }, + "npm:mimic-fn@3.1.0": { + "type": "npm", + "name": "npm:mimic-fn@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "mimic-fn", + "hash": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==" + } + }, + "npm:css-what@5.0.1": { + "type": "npm", + "name": "npm:css-what@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "css-what", + "hash": "sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==" + } + }, + "npm:redent": { + "type": "npm", + "name": "npm:redent", + "data": { + "version": "3.0.0", + "packageName": "redent", + "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + } + }, + "npm:remark-external-links": { + "type": "npm", + "name": "npm:remark-external-links", + "data": { + "version": "8.0.0", + "packageName": "remark-external-links", + "hash": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==" + } + }, + "npm:static-extend": { + "type": "npm", + "name": "npm:static-extend", + "data": { + "version": "0.1.2", + "packageName": "static-extend", + "hash": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=" + } + }, + "npm:get-lerna-packages": { + "type": "npm", + "name": "npm:get-lerna-packages", + "data": { + "version": "0.1.1", + "packageName": "get-lerna-packages", + "hash": "sha512-venxkvga57gOUZoTmXZlJ0zHc8cmvsx7Y0GTMcoEK/7OCEK3PLpG5gVTbUUMJaLxbzK13AWQdKPf1LSkuEfWqA==" + } + }, + "npm:fragment-cache": { + "type": "npm", + "name": "npm:fragment-cache", + "data": { + "version": "0.2.1", + "packageName": "fragment-cache", + "hash": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "1.0.0", + "packageName": "temp-dir", + "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + } + }, + "npm:yauzl": { + "type": "npm", + "name": "npm:yauzl", + "data": { + "version": "2.10.0", + "packageName": "yauzl", + "hash": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=" + } + }, + "npm:@webassemblyjs/helper-api-error@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + } + }, + "npm:npm-package-arg@11.0.1": { + "type": "npm", + "name": "npm:npm-package-arg@11.0.1", + "data": { + "version": "11.0.1", + "packageName": "npm-package-arg", + "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" + } + }, + "npm:jest-watcher": { + "type": "npm", + "name": "npm:jest-watcher", + "data": { + "version": "29.7.0", + "packageName": "jest-watcher", + "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" + } + }, + "npm:react-dom@16.14.0": { + "type": "npm", + "name": "npm:react-dom@16.14.0", + "data": { + "version": "16.14.0", + "packageName": "react-dom", + "hash": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==" + } + }, + "npm:@microsoft/applicationinsights-web": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-web", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-web", + "hash": "sha512-pf2zz/3mmGy1RoyaiLZwhHoE2mFZ+AWR3Zf7xPW7HjTG7dEE4BnovNyW3f9Eu6WWkcHUAHmS/ATzqvVlpB3W6A==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.5.0", + "packageName": "@colors/colors", + "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods", + "data": { + "version": "5.16.2", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==" + } + }, + "npm:@rushstack/rig-package": { + "type": "npm", + "name": "npm:@rushstack/rig-package", + "data": { + "version": "0.3.15", + "packageName": "@rushstack/rig-package", + "hash": "sha512-jxVfvO5OnkRlYRhcVDZWvwiI2l4pv37HDJRtyg5HbD8Z/I8Xj32RICgrxS5xMeGGytobrg5S6OfPOHskg7Nw+A==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.23.2", + "packageName": "@babel/core", + "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" + } + }, + "npm:chalk@3.0.0": { + "type": "npm", + "name": "npm:chalk@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "chalk", + "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "6.0.0", + "packageName": "decompress-response", + "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:dns-txt": { + "type": "npm", + "name": "npm:dns-txt", + "data": { + "version": "2.0.2", + "packageName": "dns-txt", + "hash": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=" + } + }, + "npm:react-markdown": { + "type": "npm", + "name": "npm:react-markdown", + "data": { + "version": "4.3.1", + "packageName": "react-markdown", + "hash": "sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=" + } + }, + "npm:chokidar@2.1.8": { + "type": "npm", + "name": "npm:chokidar@2.1.8", + "data": { + "version": "2.1.8", + "packageName": "chokidar", + "hash": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==" + } + }, + "npm:@storybook/core-common": { + "type": "npm", + "name": "npm:@storybook/core-common", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core-common", + "hash": "sha512-uits9o6qwHTPnjsNZP25f7hWmUBGRJ7FXtxxtEaNSmtiwk50KWxBaro7wt505lJ1Gb9vOhpNPhS7y3IxdsXNmQ==" + } + }, + "npm:is-reference": { + "type": "npm", + "name": "npm:is-reference", + "data": { + "version": "1.2.1", + "packageName": "is-reference", + "hash": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==" + } + }, + "npm:jsonfile@6.0.1": { + "type": "npm", + "name": "npm:jsonfile@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "jsonfile", + "hash": "sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==" + } + }, + "npm:@types/jju": { + "type": "npm", + "name": "npm:@types/jju", + "data": { + "version": "1.4.1", + "packageName": "@types/jju", + "hash": "sha512-LFt+YA7Lv2IZROMwokZKiPNORAV5N3huMs3IKnzlE430HWhWYZ8b+78HiwJXJJP1V2IEjinyJURuRJfGoaFSIA==" + } + }, + "npm:entities@4.5.0": { + "type": "npm", + "name": "npm:entities@4.5.0", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:@nx/linter": { + "type": "npm", + "name": "npm:@nx/linter", + "data": { + "version": "16.10.0", + "packageName": "@nx/linter", + "hash": "sha512-G6XBfuMHNHoJDc4n2Gip4fsa9KssT91V5PF2Rd4hILkg4YU8B8mlmHN71stpzwbEyUJtyhyJc5SGgVLrSpRQew==" + } + }, + "npm:@types/responselike": { + "type": "npm", + "name": "npm:@types/responselike", + "data": { + "version": "1.0.0", + "packageName": "@types/responselike", + "hash": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==" + } + }, + "npm:esbuild-windows-arm64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-windows-arm64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-windows-arm64", + "hash": "sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==" + } + }, + "npm:jest-regex-util@26.0.0": { + "type": "npm", + "name": "npm:jest-regex-util@26.0.0", + "data": { + "version": "26.0.0", + "packageName": "jest-regex-util", + "hash": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" + } + }, + "npm:engine.io": { + "type": "npm", + "name": "npm:engine.io", + "data": { + "version": "6.2.1", + "packageName": "engine.io", + "hash": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==" + } + }, + "npm:@octokit/request@6.2.1": { + "type": "npm", + "name": "npm:@octokit/request@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "@octokit/request", + "hash": "sha512-gYKRCia3cpajRzDSU+3pt1q2OcuC6PK8PmFIyxZDWCzRXRSIBH8jXjFJ8ZceoygBIm0KsEUg4x1+XcYBz7dHPQ==" + } + }, + "npm:@storybook/core-events": { + "type": "npm", + "name": "npm:@storybook/core-events", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core-events", + "hash": "sha512-B1Ba6l5W7MeNclclqMMTMHgYgfdpB5SIhNCQFnzIz8blynzRhNFMdxvbAl6Je5G0S4xydYYd7Lno2kXQebs7HA==" + } + }, + "npm:form-data-encoder": { + "type": "npm", + "name": "npm:form-data-encoder", + "data": { + "version": "2.0.1", + "packageName": "form-data-encoder", + "hash": "sha512-Oy+P9w5mnO4TWXVgUiQvggNKPI9/ummcSt5usuIV6HkaLKigwzPpoenhEqmGmx3zHqm6ZLJ+CR/99N8JLinaEw==" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.4", + "packageName": "spdx-license-ids", + "hash": "sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "1.0.2", + "packageName": "ua-parser-js", + "hash": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==" + } + }, + "npm:utila": { + "type": "npm", + "name": "npm:utila", + "data": { + "version": "0.4.0", + "packageName": "utila", + "hash": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + } + }, + "npm:xmlchars": { + "type": "npm", + "name": "npm:xmlchars", + "data": { + "version": "2.2.0", + "packageName": "xmlchars", + "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + } + }, + "npm:@types/d3-path": { + "type": "npm", + "name": "npm:@types/d3-path", + "data": { + "version": "1.0.9", + "packageName": "@types/d3-path", + "hash": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:glob@5.0.15": { + "type": "npm", + "name": "npm:glob@5.0.15", + "data": { + "version": "5.0.15", + "packageName": "glob", + "hash": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=" + } + }, + "npm:trough": { + "type": "npm", + "name": "npm:trough", + "data": { + "version": "1.0.5", + "packageName": "trough", + "hash": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" + } + }, + "npm:markdown-table": { + "type": "npm", + "name": "npm:markdown-table", + "data": { + "version": "2.0.0", + "packageName": "markdown-table", + "hash": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==" + } + }, + "npm:@actions/core": { + "type": "npm", + "name": "npm:@actions/core", + "data": { + "version": "1.9.1", + "packageName": "@actions/core", + "hash": "sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==" + } + }, + "npm:jsdoc-type-pratt-parser": { + "type": "npm", + "name": "npm:jsdoc-type-pratt-parser", + "data": { + "version": "3.1.0", + "packageName": "jsdoc-type-pratt-parser", + "hash": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==" + } + }, + "npm:@types/testing-library__jest-dom": { + "type": "npm", + "name": "npm:@types/testing-library__jest-dom", + "data": { + "version": "5.9.5", + "packageName": "@types/testing-library__jest-dom", + "hash": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==" + } + }, + "npm:mdast-squeeze-paragraphs": { + "type": "npm", + "name": "npm:mdast-squeeze-paragraphs", + "data": { + "version": "4.0.0", + "packageName": "mdast-squeeze-paragraphs", + "hash": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "npm:simulant": { + "type": "npm", + "name": "npm:simulant", + "data": { + "version": "0.2.2", + "packageName": "simulant", + "hash": "sha1-8bzlJxK2p6DaON392n6DsgsdoB4=" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.0.3", + "packageName": "external-editor", + "hash": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==" + } + }, + "npm:p-filter": { + "type": "npm", + "name": "npm:p-filter", + "data": { + "version": "2.1.0", + "packageName": "p-filter", + "hash": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" + } + }, + "npm:react-custom-scrollbars": { + "type": "npm", + "name": "npm:react-custom-scrollbars", + "data": { + "version": "4.2.1", + "packageName": "react-custom-scrollbars", + "hash": "sha1-gw/ZUCkn6X6KeMIIaBOJmyqLZts=" + } + }, + "npm:use-isomorphic-layout-effect": { + "type": "npm", + "name": "npm:use-isomorphic-layout-effect", + "data": { + "version": "1.1.2", + "packageName": "use-isomorphic-layout-effect", + "hash": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==" + } + }, + "npm:xml2js@0.2.8": { + "type": "npm", + "name": "npm:xml2js@0.2.8", + "data": { + "version": "0.2.8", + "packageName": "xml2js", + "hash": "sha512-ZHZBIAO55GHCn2jBYByVPHvHS+o3j8/a/qmpEe6kxO3cTnTCWC3Htq9RYJ5G4XMwMMClD2QkXA9SNdPadLyn3Q==" + } + }, + "npm:trim-repeated@2.0.0": { + "type": "npm", + "name": "npm:trim-repeated@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "trim-repeated", + "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" + } + }, + "npm:pinkie-promise": { + "type": "npm", + "name": "npm:pinkie-promise", + "data": { + "version": "2.0.1", + "packageName": "pinkie-promise", + "hash": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=" + } + }, + "npm:schema-utils@0.3.0": { + "type": "npm", + "name": "npm:schema-utils@0.3.0", + "data": { + "version": "0.3.0", + "packageName": "schema-utils", + "hash": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=" + } + }, + "npm:normalize-package-data@5.0.0": { + "type": "npm", + "name": "npm:normalize-package-data@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "17.0.2", + "packageName": "react-is", + "hash": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + }, + "npm:promise.prototype.finally": { + "type": "npm", + "name": "npm:promise.prototype.finally", + "data": { + "version": "3.1.0", + "packageName": "promise.prototype.finally", + "hash": "sha512-7p/K2f6dI+dM8yjRQEGrTQs5hTQixUAdOGpMEA3+pVxpX5oHKRSKAXyLw9Q9HUWDTdwtoo39dSHGQtN90HcEwQ==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.3", + "packageName": "@types/babel__traverse", + "hash": "sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==" + } + }, + "npm:@cypress/mount-utils": { + "type": "npm", + "name": "npm:@cypress/mount-utils", + "data": { + "version": "1.0.2", + "packageName": "@cypress/mount-utils", + "hash": "sha512-Fn3fdTiyayHoy8Ol0RSu4MlBH2maQ2ZEXeEVKl/zHHXEQpld5HX3vdNLhK5YLij8cLynA4DxOT/nO9iEnIiOXw==" + } + }, + "npm:capture-stack-trace": { + "type": "npm", + "name": "npm:capture-stack-trace", + "data": { + "version": "1.0.1", + "packageName": "capture-stack-trace", + "hash": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==" + } + }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "6.1.1", + "packageName": "emoji-regex", + "hash": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=" + } + }, + "npm:@nrwl/js": { + "type": "npm", + "name": "npm:@nrwl/js", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/js", + "hash": "sha512-asybPpyPrxLLDWWdYzFqbgubLmDKLEhoMz8x9MPOm3CH8v2vlIE6hD0JT19GdJArBPxRB33nhjtu8wmJGz5czw==" + } + }, + "npm:gulp-sourcemaps": { + "type": "npm", + "name": "npm:gulp-sourcemaps", + "data": { + "version": "2.6.5", + "packageName": "gulp-sourcemaps", + "hash": "sha512-SYLBRzPTew8T5Suh2U8jCSDKY+4NARua4aqjj8HOysBh2tSgT9u4jc1FYirAdPx1akUxxDeK++fqw6Jg0LkQRg==" + } + }, + "npm:hoek": { + "type": "npm", + "name": "npm:hoek", + "data": { + "version": "4.2.1", + "packageName": "hoek", + "hash": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==" + } + }, + "npm:jsonparse@1.2.0": { + "type": "npm", + "name": "npm:jsonparse@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "jsonparse", + "hash": "sha512-LkDEYtKnPFI9hQ/IURETe6F1dUH80cbRkaF6RaViSwoSNPwaxQpi6TgJGvJKyLQ2/9pQW+XCxK3hBoR44RAjkg==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:vfile-message@1.1.1": { + "type": "npm", + "name": "npm:vfile-message@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "vfile-message", + "hash": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==" + } + }, + "npm:pify@3.0.0": { + "type": "npm", + "name": "npm:pify@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pify", + "hash": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + }, + "npm:read-cmd-shim": { + "type": "npm", + "name": "npm:read-cmd-shim", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" + } + }, + "npm:import-lazy@2.1.0": { + "type": "npm", + "name": "npm:import-lazy@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "import-lazy", + "hash": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + } + }, + "npm:ignore-not-found-export-webpack-plugin": { + "type": "npm", + "name": "npm:ignore-not-found-export-webpack-plugin", + "data": { + "version": "1.0.2", + "packageName": "ignore-not-found-export-webpack-plugin", + "hash": "sha512-CeMqul+L7fEEc59NpQhzr5sh/LRjbMW4cYmMUJWdCm3dYyWF8Big6qea0YSBHQvajKfrnKTcARmwzd9rTp+50w==" + } + }, + "npm:v8flags@3.1.3": { + "type": "npm", + "name": "npm:v8flags@3.1.3", + "data": { + "version": "3.1.3", + "packageName": "v8flags", + "hash": "sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect", + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" + } + }, + "npm:d3-array@2.12.1": { + "type": "npm", + "name": "npm:d3-array@2.12.1", + "data": { + "version": "2.12.1", + "packageName": "d3-array", + "hash": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==" + } + }, + "npm:truncate-utf8-bytes": { + "type": "npm", + "name": "npm:truncate-utf8-bytes", + "data": { + "version": "1.0.2", + "packageName": "truncate-utf8-bytes", + "hash": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==" + } + }, + "npm:undertaker": { + "type": "npm", + "name": "npm:undertaker", + "data": { + "version": "1.3.0", + "packageName": "undertaker", + "hash": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==" + } + }, + "npm:string-width@3.1.0": { + "type": "npm", + "name": "npm:string-width@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "string-width", + "hash": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==" + } + }, + "npm:universalify@1.0.0": { + "type": "npm", + "name": "npm:universalify@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "universalify", + "hash": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" + } + }, + "npm:sver-compat": { + "type": "npm", + "name": "npm:sver-compat", + "data": { + "version": "1.5.0", + "packageName": "sver-compat", + "hash": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=" + } + }, + "npm:@esbuild/linux-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-ig2P7GeG//zWlU0AggA3pV1h5gdix0MA3wgB+NsnBXViwiGgY77fuN9Wr5uoCrs2YzaYfogXgsWZbm+HGr09xg==" + } + }, + "npm:react-dom@18.2.0": { + "type": "npm", + "name": "npm:react-dom@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react-dom", + "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" + } + }, + "npm:@swc/core-darwin-arm64@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-darwin-arm64@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-darwin-arm64", + "hash": "sha512-/LxLjPat1LA9CXS7Cn2M4MIqwNOoDF4KjcikPkO08H54rd6WubhaJnr0sLDjms3adRr+pmcCL0yfsUBTX//85A==" + } + }, + "npm:d": { + "type": "npm", + "name": "npm:d", + "data": { + "version": "1.0.1", + "packageName": "d", + "hash": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:@mdx-js/util": { + "type": "npm", + "name": "npm:@mdx-js/util", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/util", + "hash": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" + } + }, + "npm:koa": { + "type": "npm", + "name": "npm:koa", + "data": { + "version": "2.13.4", + "packageName": "koa", + "hash": "sha512-43zkIKubNbnrULWlHdN5h1g3SEKXOEzoAlRsHOTFpnlDu8JlAOZSMJBLULusuXRequboiwJcj5vtYXKB3k7+2g==" + } + }, + "npm:p-queue": { + "type": "npm", + "name": "npm:p-queue", + "data": { + "version": "6.6.2", + "packageName": "p-queue", + "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" + } + }, + "npm:istanbul-lib-coverage@2.0.5": { + "type": "npm", + "name": "npm:istanbul-lib-coverage@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:term-size": { + "type": "npm", + "name": "npm:term-size", + "data": { + "version": "2.1.1", + "packageName": "term-size", + "hash": "sha512-UqvQSch04R+69g4RDhrslmGvGL3ucDRX/U+snYW0Mab4uCAyKSndUksaoqlJ81QKSpRnIsuOYQCbC2ZWx2896A==" + } + }, + "npm:@babel/plugin-transform-async-to-generator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.5.0", + "packageName": "tslib", + "hash": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + }, + "npm:array-find-index": { + "type": "npm", + "name": "npm:array-find-index", + "data": { + "version": "1.0.2", + "packageName": "array-find-index", + "hash": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" + } + }, + "npm:@types/tapable": { + "type": "npm", + "name": "npm:@types/tapable", + "data": { + "version": "1.0.6", + "packageName": "@types/tapable", + "hash": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:selenium-webdriver": { + "type": "npm", + "name": "npm:selenium-webdriver", + "data": { + "version": "4.3.1", + "packageName": "selenium-webdriver", + "hash": "sha512-TjH/ls1WKRQoFEHcqtn6UtwcLnA3yvx08v9cSSFYvyhp8hJWRtbe9ae2I8uXPisEZ2EaGKKoxBZ4EHv0BJM15g==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "13.3.2", + "packageName": "yargs", + "hash": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==" + } + }, + "npm:babel-plugin-named-exports-order": { + "type": "npm", + "name": "npm:babel-plugin-named-exports-order", + "data": { + "version": "0.0.2", + "packageName": "babel-plugin-named-exports-order", + "hash": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==" + } + }, + "npm:memfs-or-file-map-to-github-branch": { + "type": "npm", + "name": "npm:memfs-or-file-map-to-github-branch", + "data": { + "version": "1.2.1", + "packageName": "memfs-or-file-map-to-github-branch", + "hash": "sha512-I/hQzJ2a/pCGR8fkSQ9l5Yx+FQ4e7X6blNHyWBm2ojeFLT3GVzGkTj7xnyWpdclrr7Nq4dmx3xrvu70m3ypzAQ==" + } + }, + "npm:csstype": { + "type": "npm", + "name": "npm:csstype", + "data": { + "version": "3.1.2", + "packageName": "csstype", + "hash": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + } + }, + "npm:@babel/plugin-transform-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-property-in-object", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-private-property-in-object", + "hash": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==" + } + }, + "npm:ajv@8.12.0": { + "type": "npm", + "name": "npm:ajv@8.12.0", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:glob@10.3.3": { + "type": "npm", + "name": "npm:glob@10.3.3", + "data": { + "version": "10.3.3", + "packageName": "glob", + "hash": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==" + } + }, + "npm:@babel/helper-member-expression-to-functions": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" + } + }, + "npm:gitlab": { + "type": "npm", + "name": "npm:gitlab", + "data": { + "version": "10.2.1", + "packageName": "gitlab", + "hash": "sha512-z+DxRF1C9uayVbocs9aJkJz+kGy14TSm1noB/rAIEBbXOkOYbjKxyuqJzt+0zeFpXFdgA0yq6DVVbvM7HIfGwg==" + } + }, + "npm:ignore-loader": { + "type": "npm", + "name": "npm:ignore-loader", + "data": { + "version": "0.1.2", + "packageName": "ignore-loader", + "hash": "sha512-yOJQEKrNwoYqrWLS4DcnzM7SEQhRKis5mB+LdKKh4cPmGYlLPR0ozRzHV5jmEk2IxptqJNQA5Cc0gw8Fj12bXA==" + } + }, + "npm:@webassemblyjs/wast-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-parser", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wast-parser", + "hash": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:@npmcli/move-file": { + "type": "npm", + "name": "npm:@npmcli/move-file", + "data": { + "version": "1.0.1", + "packageName": "@npmcli/move-file", + "hash": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" + } + }, + "npm:collection-map": { + "type": "npm", + "name": "npm:collection-map", + "data": { + "version": "1.0.0", + "packageName": "collection-map", + "hash": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=" + } + }, + "npm:find-replace": { + "type": "npm", + "name": "npm:find-replace", + "data": { + "version": "3.0.0", + "packageName": "find-replace", + "hash": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==" + } + }, + "npm:ajv-keywords@5.1.0": { + "type": "npm", + "name": "npm:ajv-keywords@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:diff@3.5.0": { + "type": "npm", + "name": "npm:diff@3.5.0", + "data": { + "version": "3.5.0", + "packageName": "diff", + "hash": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" + } + }, + "npm:@types/through": { + "type": "npm", + "name": "npm:@types/through", + "data": { + "version": "0.0.30", + "packageName": "@types/through", + "hash": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==" + } + }, + "npm:foreach": { + "type": "npm", + "name": "npm:foreach", + "data": { + "version": "2.0.5", + "packageName": "foreach", + "hash": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.0.3", + "packageName": "keyv", + "hash": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==" + } + }, + "npm:lodash.pick": { + "type": "npm", + "name": "npm:lodash.pick", + "data": { + "version": "4.4.0", + "packageName": "lodash.pick", + "hash": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" + } + }, + "npm:@babel/core@7.12.9": { + "type": "npm", + "name": "npm:@babel/core@7.12.9", + "data": { + "version": "7.12.9", + "packageName": "@babel/core", + "hash": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==" + } + }, + "npm:@types/history": { + "type": "npm", + "name": "npm:@types/history", + "data": { + "version": "4.7.4", + "packageName": "@types/history", + "hash": "sha512-+o2igcuZA3xtOoFH56s+MCZVidwlJNcJID57DSCyawS2i910yG9vkwehCjJNZ6ImhCR5S9DbvIJKyYHcMyOfMw==" + } + }, + "npm:node-fetch@3.3.1": { + "type": "npm", + "name": "npm:node-fetch@3.3.1", + "data": { + "version": "3.3.1", + "packageName": "node-fetch", + "hash": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==" + } + }, + "npm:@types/component-emitter": { + "type": "npm", + "name": "npm:@types/component-emitter", + "data": { + "version": "1.2.11", + "packageName": "@types/component-emitter", + "hash": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==" + } + }, + "npm:file-type": { + "type": "npm", + "name": "npm:file-type", + "data": { + "version": "17.1.6", + "packageName": "file-type", + "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.4", + "packageName": "micromatch", + "hash": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + } + }, + "npm:copy-to": { + "type": "npm", + "name": "npm:copy-to", + "data": { + "version": "2.0.1", + "packageName": "copy-to", + "hash": "sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==" + } + }, + "npm:dayjs": { + "type": "npm", + "name": "npm:dayjs", + "data": { + "version": "1.11.0", + "packageName": "dayjs", + "hash": "sha512-JLC809s6Y948/FuCZPm5IX8rRhQwOiyMb2TfVVQEixG7P8Lm/gt5S7yoQZmC8x1UehI9Pb7sksEt4xx14m+7Ug==" + } + }, + "npm:npm-normalize-package-bin@3.0.1": { + "type": "npm", + "name": "npm:npm-normalize-package-bin@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" + } + }, + "npm:parse-github-url": { + "type": "npm", + "name": "npm:parse-github-url", + "data": { + "version": "1.0.2", + "packageName": "parse-github-url", + "hash": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==" + } + }, + "npm:read-yaml-file": { + "type": "npm", + "name": "npm:read-yaml-file", + "data": { + "version": "2.1.0", + "packageName": "read-yaml-file", + "hash": "sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==" + } + }, + "npm:readable-stream@3.6.0": { + "type": "npm", + "name": "npm:readable-stream@3.6.0", + "data": { + "version": "3.6.0", + "packageName": "readable-stream", + "hash": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + } + }, + "npm:bs-logger": { + "type": "npm", + "name": "npm:bs-logger", + "data": { + "version": "0.2.6", + "packageName": "bs-logger", + "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" + } + }, + "npm:duplexify": { + "type": "npm", + "name": "npm:duplexify", + "data": { + "version": "3.7.1", + "packageName": "duplexify", + "hash": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==" + } + }, + "npm:resolve@1.15.1": { + "type": "npm", + "name": "npm:resolve@1.15.1", + "data": { + "version": "1.15.1", + "packageName": "resolve", + "hash": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==" + } + }, + "npm:rollup-plugin-transform-tagged-template": { + "type": "npm", + "name": "npm:rollup-plugin-transform-tagged-template", + "data": { + "version": "0.0.3", + "packageName": "rollup-plugin-transform-tagged-template", + "hash": "sha512-IY8JwVTZxwOqQU1B1lqBAfvj0PXgy60pe480mgfs5CCbwytBMQCSrG1eHnD1o8+JCl+5gHdKK5wNXnFngCHxkw==" + } + }, + "npm:ansi-colors@4.1.1": { + "type": "npm", + "name": "npm:ansi-colors@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ansi-colors", + "hash": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:init-package-json": { + "type": "npm", + "name": "npm:init-package-json", + "data": { + "version": "5.0.0", + "packageName": "init-package-json", + "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" + } + }, + "npm:remark-parse@8.0.3": { + "type": "npm", + "name": "npm:remark-parse@8.0.3", + "data": { + "version": "8.0.3", + "packageName": "remark-parse", + "hash": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==" + } + }, + "npm:hosted-git-info@3.0.8": { + "type": "npm", + "name": "npm:hosted-git-info@3.0.8", + "data": { + "version": "3.0.8", + "packageName": "hosted-git-info", + "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" + } + }, + "npm:string.prototype.padend": { + "type": "npm", + "name": "npm:string.prototype.padend", + "data": { + "version": "3.0.0", + "packageName": "string.prototype.padend", + "hash": "sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA=" + } + }, + "npm:strip-ansi@7.0.1": { + "type": "npm", + "name": "npm:strip-ansi@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "strip-ansi", + "hash": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.2.2", + "packageName": "uri-js", + "hash": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==" + } + }, + "npm:chainsaw": { + "type": "npm", + "name": "npm:chainsaw", + "data": { + "version": "0.1.0", + "packageName": "chainsaw", + "hash": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve", + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" + } + }, + "npm:dateformat": { + "type": "npm", + "name": "npm:dateformat", + "data": { + "version": "3.0.3", + "packageName": "dateformat", + "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" + } + }, + "npm:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "10.2.10", + "packageName": "lint-staged", + "hash": "sha512-dgelFaNH6puUGAcU+OVMgbfpKSerNYsPSn6+nlbRDjovL0KigpsVpCu0PFZG6BJxX8gnHJqaZlR9krZamQsb0w==" + } + }, + "npm:querystringify": { + "type": "npm", + "name": "npm:querystringify", + "data": { + "version": "2.2.0", + "packageName": "querystringify", + "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + } + }, + "npm:@types/react-addons-test-utils": { + "type": "npm", + "name": "npm:@types/react-addons-test-utils", + "data": { + "version": "0.14.18", + "packageName": "@types/react-addons-test-utils", + "hash": "sha1-g+EK8dvl7CU1vC3FNz17w7gv3uE=" + } + }, + "npm:replace-in-file": { + "type": "npm", + "name": "npm:replace-in-file", + "data": { + "version": "6.1.0", + "packageName": "replace-in-file", + "hash": "sha512-URzjyF3nucvejuY13HFd7O+Q6tFJRLKGHLYVvSh+LiZj3gFXzSYGnIkQflnJJulCAI2/RTZaZkpOtdVdW0EhQA==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:strip-eof": { + "type": "npm", + "name": "npm:strip-eof", + "data": { + "version": "1.0.0", + "packageName": "strip-eof", + "hash": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + } + }, + "npm:bcrypt-pbkdf": { + "type": "npm", + "name": "npm:bcrypt-pbkdf", + "data": { + "version": "1.0.2", + "packageName": "bcrypt-pbkdf", + "hash": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=" + } + }, + "npm:crc32": { + "type": "npm", + "name": "npm:crc32", + "data": { + "version": "0.2.2", + "packageName": "crc32", + "hash": "sha1-etIg1v/c0Rn5/BJ6d3LKzqOQpLo=" + } + }, + "npm:invert-kv": { + "type": "npm", + "name": "npm:invert-kv", + "data": { + "version": "1.0.0", + "packageName": "invert-kv", + "hash": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:clipboard": { + "type": "npm", + "name": "npm:clipboard", + "data": { + "version": "2.0.4", + "packageName": "clipboard", + "hash": "sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==" + } + }, + "npm:dom-accessibility-api": { + "type": "npm", + "name": "npm:dom-accessibility-api", + "data": { + "version": "0.5.11", + "packageName": "dom-accessibility-api", + "hash": "sha512-7X6GvzjYf4yTdRKuCVScV+aA9Fvh5r8WzWrXBH9w82ZWB/eYDMGCnazoC/YAqAzUJWHzLOnZqr46K3iEyUhUvw==" + } + }, + "npm:bin-check": { + "type": "npm", + "name": "npm:bin-check", + "data": { + "version": "4.1.0", + "packageName": "bin-check", + "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" + } + }, + "npm:filename-reserved-regex": { + "type": "npm", + "name": "npm:filename-reserved-regex", + "data": { + "version": "2.0.0", + "packageName": "filename-reserved-regex", + "hash": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=" + } + }, + "npm:fsevents@2.1.3": { + "type": "npm", + "name": "npm:fsevents@2.1.3", + "data": { + "version": "2.1.3", + "packageName": "fsevents", + "hash": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==" + } + }, + "npm:lodash-es": { + "type": "npm", + "name": "npm:lodash-es", + "data": { + "version": "4.17.21", + "packageName": "lodash-es", + "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + } + }, + "npm:is-accessor-descriptor": { + "type": "npm", + "name": "npm:is-accessor-descriptor", + "data": { + "version": "1.0.0", + "packageName": "is-accessor-descriptor", + "hash": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:npm-registry-fetch": { + "type": "npm", + "name": "npm:npm-registry-fetch", + "data": { + "version": "14.0.5", + "packageName": "npm-registry-fetch", + "hash": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.1.2", + "packageName": "prelude-ls", + "hash": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + } + }, + "npm:request": { + "type": "npm", + "name": "npm:request", + "data": { + "version": "2.88.2", + "packageName": "request", + "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.1", + "packageName": "tmp", + "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" + } + }, + "npm:@babel/plugin-transform-sticky-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==" + } + }, + "npm:array-ify": { + "type": "npm", + "name": "npm:array-ify", + "data": { + "version": "1.0.0", + "packageName": "array-ify", + "hash": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + } + }, + "npm:react-codesandboxer": { + "type": "npm", + "name": "npm:react-codesandboxer", + "data": { + "version": "3.1.5", + "packageName": "react-codesandboxer", + "hash": "sha512-gao6ydAfVI9DlmxvXJb1poqWDZt4jCSi2DWvfUCLUBmJAxH8+DkoGtjrO3VJDjdwcCFvumWb+ztg3WxsvrsWJw==" + } + }, + "npm:update-notifier": { + "type": "npm", + "name": "npm:update-notifier", + "data": { + "version": "2.5.0", + "packageName": "update-notifier", + "hash": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==" + } + }, + "npm:url": { + "type": "npm", + "name": "npm:url", + "data": { + "version": "0.11.0", + "packageName": "url", + "hash": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=" + } + }, + "npm:@babel/plugin-transform-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-static-block", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-class-static-block", + "hash": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==" + } + }, + "npm:@types/pako": { + "type": "npm", + "name": "npm:@types/pako", + "data": { + "version": "1.0.4", + "packageName": "@types/pako", + "hash": "sha512-Z+5bJSm28EXBSUJEgx29ioWeEEHUh6TiMkZHDhLwjc9wVFH+ressbkmX6waUZc5R3Gobn4Qu5llGxaoflZ+yhA==" + } + }, + "npm:dom-helpers": { + "type": "npm", + "name": "npm:dom-helpers", + "data": { + "version": "5.1.3", + "packageName": "dom-helpers", + "hash": "sha512-nZD1OtwfWGRBWlpANxacBEZrEuLa16o1nh7YopFWeoF68Zt8GGEmzHu6Xv4F3XaFIC+YXtTLrzgqKxFgLEe4jw==" + } + }, + "npm:@babel/plugin-transform-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-chaining", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-optional-chaining", + "hash": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==" + } + }, + "npm:errno": { + "type": "npm", + "name": "npm:errno", + "data": { + "version": "0.1.8", + "packageName": "errno", + "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + } + }, + "npm:bluebird": { + "type": "npm", + "name": "npm:bluebird", + "data": { + "version": "3.7.2", + "packageName": "bluebird", + "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + } + }, + "npm:file-loader": { + "type": "npm", + "name": "npm:file-loader", + "data": { + "version": "6.2.0", + "packageName": "file-loader", + "hash": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==" + } + }, + "npm:registry-url": { + "type": "npm", + "name": "npm:registry-url", + "data": { + "version": "3.1.0", + "packageName": "registry-url", + "hash": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=" + } + }, + "npm:@linaria/utils": { + "type": "npm", + "name": "npm:@linaria/utils", + "data": { + "version": "3.0.0-beta.20", + "packageName": "@linaria/utils", + "hash": "sha512-SKRC9dBApzu0kTksVtGZ7eJz1vMu7xew/JEAjQj6XTQDblzWpTPyKQHBOGXNkqXjIB8PwAqWfvKzKapzaOwQaQ==" + } + }, + "npm:random-seedable": { + "type": "npm", + "name": "npm:random-seedable", + "data": { + "version": "1.0.8", + "packageName": "random-seedable", + "hash": "sha512-f6gzvNhAnZBht1Prn0e/tpukUNhkANntFF42uIdWDPriyEATYaRpyH8A9bYaGecUB3AL+dXeYtBUggy18fe3rw==" + } + }, + "npm:@testing-library/react-hooks": { + "type": "npm", + "name": "npm:@testing-library/react-hooks", + "data": { + "version": "7.0.2", + "packageName": "@testing-library/react-hooks", + "hash": "sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==" + } + }, + "npm:cross-env": { + "type": "npm", + "name": "npm:cross-env", + "data": { + "version": "5.2.1", + "packageName": "cross-env", + "hash": "sha512-1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==" + } + }, + "npm:@storybook/html@6.5.15": { + "type": "npm", + "name": "npm:@storybook/html@6.5.15", + "data": { + "version": "6.5.15", + "packageName": "@storybook/html", + "hash": "sha512-SFjhq9VqZNpocSLJ94j/CK9sT4g+Qt3gMixQSuhSvvNDEt2tN8T7dy/vB2IwnjIrMBdbtQZO4UDcX6kZvy0g8A==" + } + }, + "npm:gulp-cli": { + "type": "npm", + "name": "npm:gulp-cli", + "data": { + "version": "2.2.0", + "packageName": "gulp-cli", + "hash": "sha512-rGs3bVYHdyJpLqR0TUBnlcZ1O5O++Zs4bA0ajm+zr3WFCfiSLjGwoCBqFs18wzN+ZxahT9DkOK5nDf26iDsWjA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:ansicolors": { + "type": "npm", + "name": "npm:ansicolors", + "data": { + "version": "0.3.2", + "packageName": "ansicolors", + "hash": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.0", + "packageName": "fb-watchman", + "hash": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=" + } + }, + "npm:levn@0.3.0": { + "type": "npm", + "name": "npm:levn@0.3.0", + "data": { + "version": "0.3.0", + "packageName": "levn", + "hash": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.0", + "packageName": "html-escaper", + "hash": "sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==" + } + }, + "npm:dom-css": { + "type": "npm", + "name": "npm:dom-css", + "data": { + "version": "2.1.0", + "packageName": "dom-css", + "hash": "sha1-/bwtWgFdCj4YcuEUcrvQ57nmogI=" + } + }, + "npm:cliui@6.0.0": { + "type": "npm", + "name": "npm:cliui@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cliui", + "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" + } + }, + "npm:lodash.flatten": { + "type": "npm", + "name": "npm:lodash.flatten", + "data": { + "version": "4.4.0", + "packageName": "lodash.flatten", + "hash": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" + } + }, + "npm:@jest/test-result": { + "type": "npm", + "name": "npm:@jest/test-result", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-result", + "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" + } + }, + "npm:@storybook/core": { + "type": "npm", + "name": "npm:@storybook/core", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core", + "hash": "sha512-T9TjLxbb5P/XvLEoj0dnbtexJa0V3pqCifRlIUNkTJO0nU3PdGLMcKMSyIYWjkthAJ9oBrajnodV0UveM/epTg==" + } + }, + "npm:eslint-plugin-deprecation": { + "type": "npm", + "name": "npm:eslint-plugin-deprecation", + "data": { + "version": "1.2.1", + "packageName": "eslint-plugin-deprecation", + "hash": "sha512-8KFAWPO3AvF0szxIh1ivRtHotd1fzxVOuNR3NI8dfCsQKgcxu9fAgEY+eTKvCRLAwwI8kaDDfImMt+498+EgRw==" + } + }, + "npm:babel-plugin-transform-react-remove-prop-types": { + "type": "npm", + "name": "npm:babel-plugin-transform-react-remove-prop-types", + "data": { + "version": "0.4.24", + "packageName": "babel-plugin-transform-react-remove-prop-types", + "hash": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + } + }, + "npm:fela-dom@11.7.0": { + "type": "npm", + "name": "npm:fela-dom@11.7.0", + "data": { + "version": "11.7.0", + "packageName": "fela-dom", + "hash": "sha512-mYboADGGQc/EihhyPOs8Xo2aJ0cOQI4q3+aWQ11KPzaCAT3TTVdXuTslT5QeXoE6cT6nS77GvvrRzXb3U/gY6Q==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:@storybook/builder-webpack4": { + "type": "npm", + "name": "npm:@storybook/builder-webpack4", + "data": { + "version": "6.5.15", + "packageName": "@storybook/builder-webpack4", + "hash": "sha512-1ZkMECUUdiYplhlgyUF5fqW3XU7eWNDJbuPUguyDOeidgJ111WZzBcLuKj+SNrzdNNgXwROCWAFybiNnX33YHQ==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==" + } + }, + "npm:create-error-class": { + "type": "npm", + "name": "npm:create-error-class", + "data": { + "version": "3.0.2", + "packageName": "create-error-class", + "hash": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=" + } + }, + "npm:p-all": { + "type": "npm", + "name": "npm:p-all", + "data": { + "version": "2.1.0", + "packageName": "p-all", + "hash": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==" + } + }, + "npm:retry@0.13.1": { + "type": "npm", + "name": "npm:retry@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "1.8.0", + "packageName": "sigstore", + "hash": "sha512-ogU8qtQ3VFBawRJ8wjsBEX/vIFeHuGs1fm4jZtjWQwjo8pfAt7T/rh+udlAN4+QUe0IzA8qRSc/YZ7dHP6kh+w==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + } + }, + "npm:unique-slug@4.0.0": { + "type": "npm", + "name": "npm:unique-slug@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" + } + }, + "npm:url-loader@4.1.1": { + "type": "npm", + "name": "npm:url-loader@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "url-loader", + "hash": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + } + }, + "npm:add-px-to-style": { + "type": "npm", + "name": "npm:add-px-to-style", + "data": { + "version": "1.0.0", + "packageName": "add-px-to-style", + "hash": "sha1-0ME1RB+oAUqBN5BFMQlvZ/KPJjo=" + } + }, + "npm:@polka/url": { + "type": "npm", + "name": "npm:@polka/url", + "data": { + "version": "1.0.0-next.11", + "packageName": "@polka/url", + "hash": "sha512-3NsZsJIA/22P3QUyrEDNA2D133H4j224twJrdipXN38dpnIOzAbUDtOwkcJ5pXmn75w7LSQDjA4tO9dm1XlqlA==" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=" + } + }, + "npm:flush-write-stream": { + "type": "npm", + "name": "npm:flush-write-stream", + "data": { + "version": "1.1.1", + "packageName": "flush-write-stream", + "hash": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==" + } + }, + "npm:minimatch@3.0.4": { + "type": "npm", + "name": "npm:minimatch@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "minimatch", + "hash": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" + } + }, + "npm:base": { + "type": "npm", + "name": "npm:base", + "data": { + "version": "0.11.2", + "packageName": "base", + "hash": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==" + } + }, + "npm:@microsoft/eslint-plugin-sdl": { + "type": "npm", + "name": "npm:@microsoft/eslint-plugin-sdl", + "data": { + "version": "0.1.9", + "packageName": "@microsoft/eslint-plugin-sdl", + "hash": "sha512-g3XwhU/p/N9yzNWHm8453qraT74LOyCHY39ntHq+zNRn4B0KxSvKh6iXqhnnOYTZBNgsxSpFcejBmdzO47N3oA==" + } + }, + "npm:@octokit/request": { + "type": "npm", + "name": "npm:@octokit/request", + "data": { + "version": "5.6.3", + "packageName": "@octokit/request", + "hash": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==" + } + }, + "npm:expect": { + "type": "npm", + "name": "npm:expect", + "data": { + "version": "29.7.0", + "packageName": "expect", + "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" + } + }, + "npm:path-root": { + "type": "npm", + "name": "npm:path-root", + "data": { + "version": "0.1.1", + "packageName": "path-root", + "hash": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.7", + "packageName": "handlebars", + "hash": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" + } + }, + "npm:prettyjson": { + "type": "npm", + "name": "npm:prettyjson", + "data": { + "version": "1.2.5", + "packageName": "prettyjson", + "hash": "sha512-rksPWtoZb2ZpT5OVgtmy0KHVM+Dca3iVwWY9ifwhcexfjebtgjg3wmrUt9PvJ59XIYBcknQeYHD8IAnVlh9lAw==" + } + }, + "npm:es6-iterator": { + "type": "npm", + "name": "npm:es6-iterator", + "data": { + "version": "2.0.3", + "packageName": "es6-iterator", + "hash": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=" + } + }, + "npm:@babel/plugin-transform-parameters": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==" + } + }, + "npm:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.15.2", + "packageName": "core-js", + "hash": "sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.6", + "packageName": "string.prototype.matchall", + "hash": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==" + } + }, + "npm:jest-matcher-utils@27.0.2": { + "type": "npm", + "name": "npm:jest-matcher-utils@27.0.2", + "data": { + "version": "27.0.2", + "packageName": "jest-matcher-utils", + "hash": "sha512-Qczi5xnTNjkhcIB0Yy75Txt+Ez51xdhOxsukN7awzq2auZQGPHcQrJ623PZj0ECDEMOk2soxWx05EXdXGd1CbA==" + } + }, + "npm:token-types": { + "type": "npm", + "name": "npm:token-types", + "data": { + "version": "5.0.1", + "packageName": "token-types", + "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" + } + }, + "npm:d3-shape": { + "type": "npm", + "name": "npm:d3-shape", + "data": { + "version": "1.3.7", + "packageName": "d3-shape", + "hash": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==" + } + }, + "npm:@types/npmlog": { + "type": "npm", + "name": "npm:@types/npmlog", + "data": { + "version": "4.1.2", + "packageName": "@types/npmlog", + "hash": "sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==" + } + }, + "npm:unique-filename@2.0.1": { + "type": "npm", + "name": "npm:unique-filename@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "unique-filename", + "hash": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.2", + "packageName": "@jridgewell/source-map", + "hash": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==" + } + }, + "npm:dot-case@3.0.4": { + "type": "npm", + "name": "npm:dot-case@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "dot-case", + "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + } + }, + "npm:browserify-sign": { + "type": "npm", + "name": "npm:browserify-sign", + "data": { + "version": "4.0.4", + "packageName": "browserify-sign", + "hash": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=" + } + }, + "npm:@types/d3-dsv": { + "type": "npm", + "name": "npm:@types/d3-dsv", + "data": { + "version": "3.0.0", + "packageName": "@types/d3-dsv", + "hash": "sha512-o0/7RlMl9p5n6FQDptuJVMxDf/7EDEv2SYEO/CwdG2tr1hTfUVi0Iavkk2ax+VpaQ/1jVhpnj5rq1nj8vwhn2A==" + } + }, + "npm:@azure/core-lro": { + "type": "npm", + "name": "npm:@azure/core-lro", + "data": { + "version": "1.0.2", + "packageName": "@azure/core-lro", + "hash": "sha512-Yr0JD7GKryOmbcb5wHCQoQ4KCcH5QJWRNorofid+UvudLaxnbCfvKh/cUfQsGUqRjO9L/Bw4X7FP824DcHdMxw==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "7.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==" + } + }, + "npm:istanbul-lib-instrument@6.0.0": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==" + } + }, + "npm:esbuild-openbsd-64@0.14.51": { + "type": "npm", + "name": "npm:esbuild-openbsd-64@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-openbsd-64", + "hash": "sha512-7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==" + } + }, + "npm:get-stream@3.0.0": { + "type": "npm", + "name": "npm:get-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "get-stream", + "hash": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" + } + }, + "npm:@microsoft/applicationinsights-channel-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-channel-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-channel-js", + "hash": "sha512-jDBNKbCHsJgmpv0CKNhJ/uN9ZphvfGdb93Svk+R4LjO8L3apNNMbDDPxBvXXi0uigRmA1TBcmyBG4IRKjabGhw==" + } + }, + "npm:path-is-inside": { + "type": "npm", + "name": "npm:path-is-inside", + "data": { + "version": "1.0.2", + "packageName": "path-is-inside", + "hash": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "3.4.0", + "packageName": "registry-auth-token", + "hash": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==" + } + }, + "npm:sshpk": { + "type": "npm", + "name": "npm:sshpk", + "data": { + "version": "1.17.0", + "packageName": "sshpk", + "hash": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==" + } + }, + "npm:x-default-browser": { + "type": "npm", + "name": "npm:x-default-browser", + "data": { + "version": "0.4.0", + "packageName": "x-default-browser", + "hash": "sha1-cM8NqF2nwKtcsPFaiX8jIqa91IE=" + } + }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.0", + "packageName": "wildcard", + "hash": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" + } + }, + "npm:unfetch@3.1.2": { + "type": "npm", + "name": "npm:unfetch@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "unfetch", + "hash": "sha512-L0qrK7ZeAudGiKYw6nzFjnJ2D5WHblUBwmHIqtPS6oKUd+Hcpk7/hKsSmcHsTlpd1TbTNsiRBUKRq3bHLNIqIw==" + } + }, + "npm:xpath.js": { + "type": "npm", + "name": "npm:xpath.js", + "data": { + "version": "1.1.0", + "packageName": "xpath.js", + "hash": "sha512-jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ==" + } + }, + "npm:to-arraybuffer": { + "type": "npm", + "name": "npm:to-arraybuffer", + "data": { + "version": "1.0.1", + "packageName": "to-arraybuffer", + "hash": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.2.2", + "packageName": "deepmerge", + "hash": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.3", + "packageName": "defaults", + "hash": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=" + } + }, + "npm:@types/d3-shape@1.3.8": { + "type": "npm", + "name": "npm:@types/d3-shape@1.3.8", + "data": { + "version": "1.3.8", + "packageName": "@types/d3-shape", + "hash": "sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==" + } + }, + "npm:async@1.5.2": { + "type": "npm", + "name": "npm:async@1.5.2", + "data": { + "version": "1.5.2", + "packageName": "async", + "hash": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:browserify-des": { + "type": "npm", + "name": "npm:browserify-des", + "data": { + "version": "1.0.2", + "packageName": "browserify-des", + "hash": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==" + } + }, + "npm:slash@5.1.0": { + "type": "npm", + "name": "npm:slash@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:vfile@2.3.0": { + "type": "npm", + "name": "npm:vfile@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "vfile", + "hash": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==" + } + }, + "npm:fancy-log": { + "type": "npm", + "name": "npm:fancy-log", + "data": { + "version": "1.3.3", + "packageName": "fancy-log", + "hash": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==" + } + }, + "npm:json5@1.0.2": { + "type": "npm", + "name": "npm:json5@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json5", + "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "npm:webidl-conversions@3.0.1": { + "type": "npm", + "name": "npm:webidl-conversions@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" + } + }, + "npm:just-debounce": { + "type": "npm", + "name": "npm:just-debounce", + "data": { + "version": "1.0.0", + "packageName": "just-debounce", + "hash": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=" + } + }, + "npm:@npmcli/git@2.0.3": { + "type": "npm", + "name": "npm:@npmcli/git@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "@npmcli/git", + "hash": "sha512-c/ODsV5ppjB12VDXKc6hzVNgg6ZJX/etILUn3WgF5NLAYBhQLJ3fBq6uB2jQD4OwqOzJdPT1/xA3Xh3aaWGk5w==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:node-cleanup": { + "type": "npm", + "name": "npm:node-cleanup", + "data": { + "version": "2.1.2", + "packageName": "node-cleanup", + "hash": "sha1-esGavSl+Caf3KnFUXZUbUX5N3iw=" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "4.0.0", + "packageName": "serialize-javascript", + "hash": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" + } + }, + "npm:@babel/plugin-transform-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-sets-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-unicode-sets-regex", + "hash": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==" + } + }, + "npm:@types/inquirer": { + "type": "npm", + "name": "npm:@types/inquirer", + "data": { + "version": "6.0.1", + "packageName": "@types/inquirer", + "hash": "sha512-O9rEHE9iBvYaFAGS0fAlDzqY/3CsOrRKzni4zwnAEce2JrHUEbXAce2Pwwe8ZGzmQkucwSXn1tSiKig37INgfA==" + } + }, + "npm:modify-values": { + "type": "npm", + "name": "npm:modify-values", + "data": { + "version": "1.0.1", + "packageName": "modify-values", + "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" + } + }, + "npm:@types/scheduler": { + "type": "npm", + "name": "npm:@types/scheduler", + "data": { + "version": "0.16.2", + "packageName": "@types/scheduler", + "hash": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + } + }, + "npm:capture-exit": { + "type": "npm", + "name": "npm:capture-exit", + "data": { + "version": "2.0.0", + "packageName": "capture-exit", + "hash": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==" + } + }, + "npm:scheduler@0.19.1": { + "type": "npm", + "name": "npm:scheduler@0.19.1", + "data": { + "version": "0.19.1", + "packageName": "scheduler", + "hash": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==" + } + }, + "npm:tr46@1.0.1": { + "type": "npm", + "name": "npm:tr46@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "tr46", + "hash": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=" + } + }, + "npm:webpack-merge@4.2.2": { + "type": "npm", + "name": "npm:webpack-merge@4.2.2", + "data": { + "version": "4.2.2", + "packageName": "webpack-merge", + "hash": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==" + } + }, + "npm:find-up@1.1.2": { + "type": "npm", + "name": "npm:find-up@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "find-up", + "hash": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:@types/react-custom-scrollbars": { + "type": "npm", + "name": "npm:@types/react-custom-scrollbars", + "data": { + "version": "4.0.5", + "packageName": "@types/react-custom-scrollbars", + "hash": "sha512-Qdotjy9wbf9nrNRzGj0bFDlhYIvjMxwrxHR0V1zUSc2cqb74a8ujLWTfIQ6JBSUx+3hY74+tHgEOthRJLEMyKw==" + } + }, + "npm:brorand": { + "type": "npm", + "name": "npm:brorand", + "data": { + "version": "1.1.0", + "packageName": "brorand", + "hash": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + } + }, + "npm:@octokit/tsconfig": { + "type": "npm", + "name": "npm:@octokit/tsconfig", + "data": { + "version": "1.0.2", + "packageName": "@octokit/tsconfig", + "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" + } + }, + "npm:@rushstack/ts-command-line": { + "type": "npm", + "name": "npm:@rushstack/ts-command-line", + "data": { + "version": "4.12.3", + "packageName": "@rushstack/ts-command-line", + "hash": "sha512-Pdij22RotMXzI+HWHyYCvw0RMZhiP5a6Za/96XamZ1+mxmpSm4ujf8TROKxGAHySmR5A8iNVSlzhNMnUlFQE6g==" + } + }, + "npm:decamelize@4.0.0": { + "type": "npm", + "name": "npm:decamelize@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "decamelize", + "hash": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==" + } + }, + "npm:min-indent": { + "type": "npm", + "name": "npm:min-indent", + "data": { + "version": "1.0.0", + "packageName": "min-indent", + "hash": "sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY=" + } + }, + "npm:conventional-recommended-bump": { + "type": "npm", + "name": "npm:conventional-recommended-bump", + "data": { + "version": "7.0.1", + "packageName": "conventional-recommended-bump", + "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "7.2.0", + "packageName": "glob", + "hash": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==" + } + }, + "npm:react-hook-form": { + "type": "npm", + "name": "npm:react-hook-form", + "data": { + "version": "5.7.2", + "packageName": "react-hook-form", + "hash": "sha512-bJvY348vayIvEUmSK7Fvea/NgqbT2racA2IbnJz/aPlQ3GBtaTeDITH6rtCa6y++obZzG6E3Q8VuoXPir7QYUg==" + } + }, + "npm:es6-promise": { + "type": "npm", + "name": "npm:es6-promise", + "data": { + "version": "4.2.8", + "packageName": "es6-promise", + "hash": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.8.0", + "packageName": "ci-info", + "hash": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==" + } + }, + "npm:@storybook/addon-links": { + "type": "npm", + "name": "npm:@storybook/addon-links", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-links", + "hash": "sha512-L7Q3u/xEUuy1uPq8ttjDfvDj19Hr2Crq/Us0RfowfGAAzOb7fCoiUJDP37ADtRUlCYyuKM5V/nHxN8eGpWtugw==" + } + }, + "npm:estraverse@4.2.0": { + "type": "npm", + "name": "npm:estraverse@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "estraverse", + "hash": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" + } + }, + "npm:filename-reserved-regex@3.0.0": { + "type": "npm", + "name": "npm:filename-reserved-regex@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "filename-reserved-regex", + "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:isomorphic-unfetch@3.1.0": { + "type": "npm", + "name": "npm:isomorphic-unfetch@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "isomorphic-unfetch", + "hash": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + } + }, + "npm:@babel/standalone": { + "type": "npm", + "name": "npm:@babel/standalone", + "data": { + "version": "7.23.2", + "packageName": "@babel/standalone", + "hash": "sha512-VJNw7OS26JvB6rE9XpbT6uQeQIEBWU5eeHGS4VR/+/4ZoKdLBXLcy66ZVJ/9IBkK1RMp8B0cohvhzdKWtJAGmg==" + } + }, + "npm:@jest/transform": { + "type": "npm", + "name": "npm:@jest/transform", + "data": { + "version": "29.7.0", + "packageName": "@jest/transform", + "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.6.3", + "packageName": "diff-sequences", + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + } + }, + "npm:immediate": { + "type": "npm", + "name": "npm:immediate", + "data": { + "version": "3.0.6", + "packageName": "immediate", + "hash": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" + } + }, + "npm:lodash.keys": { + "type": "npm", + "name": "npm:lodash.keys", + "data": { + "version": "4.2.0", + "packageName": "lodash.keys", + "hash": "sha1-oIYCrBLk+4P5H8H7ejYKTZujUgU=" + } + }, + "npm:readdirp@2.2.1": { + "type": "npm", + "name": "npm:readdirp@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "readdirp", + "hash": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==" + } + }, + "npm:karma-source-map-support": { + "type": "npm", + "name": "npm:karma-source-map-support", + "data": { + "version": "1.4.0", + "packageName": "karma-source-map-support", + "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" + } + }, + "npm:throttle-debounce": { + "type": "npm", + "name": "npm:throttle-debounce", + "data": { + "version": "3.0.1", + "packageName": "throttle-debounce", + "hash": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==" + } + }, + "npm:ts-toolbelt": { + "type": "npm", + "name": "npm:ts-toolbelt", + "data": { + "version": "9.6.0", + "packageName": "ts-toolbelt", + "hash": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.2.0", + "packageName": "acorn-walk", + "hash": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" + } + }, + "npm:infer-owner": { + "type": "npm", + "name": "npm:infer-owner", + "data": { + "version": "1.0.4", + "packageName": "infer-owner", + "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + } + }, + "npm:is-object": { + "type": "npm", + "name": "npm:is-object", + "data": { + "version": "1.0.1", + "packageName": "is-object", + "hash": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=" + } + }, + "npm:filenamify": { + "type": "npm", + "name": "npm:filenamify", + "data": { + "version": "4.1.0", + "packageName": "filenamify", + "hash": "sha512-KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" + } + }, + "npm:caller-callsite": { + "type": "npm", + "name": "npm:caller-callsite", + "data": { + "version": "2.0.0", + "packageName": "caller-callsite", + "hash": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=" + } + }, + "npm:fstream": { + "type": "npm", + "name": "npm:fstream", + "data": { + "version": "1.0.12", + "packageName": "fstream", + "hash": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==" + } + }, + "npm:log-symbols@2.2.0": { + "type": "npm", + "name": "npm:log-symbols@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "log-symbols", + "hash": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" + } + }, + "npm:socket.io-parser": { + "type": "npm", + "name": "npm:socket.io-parser", + "data": { + "version": "4.0.5", + "packageName": "socket.io-parser", + "hash": "sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:co-body": { + "type": "npm", + "name": "npm:co-body", + "data": { + "version": "6.1.0", + "packageName": "co-body", + "hash": "sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==" + } + }, + "npm:webpack-cli": { + "type": "npm", + "name": "npm:webpack-cli", + "data": { + "version": "4.10.0", + "packageName": "webpack-cli", + "hash": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:@esbuild/darwin-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-tP+B5UuIbbFMj2hQaUr6EALlHOIOmlLM2FK7jeFBobPy2ERdohI4Ka6ZFjZ1ZYsrHE/hZimGuU90jusRE0pwDw==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "4.0.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:@opentelemetry/api@1.0.0-rc.0": { + "type": "npm", + "name": "npm:@opentelemetry/api@1.0.0-rc.0", + "data": { + "version": "1.0.0-rc.0", + "packageName": "@opentelemetry/api", + "hash": "sha512-iXKByCMfrlO5S6Oh97BuM56tM2cIBB0XsL/vWF/AtJrJEKx4MC/Xdu0xDsGXMGcNWpqF7ujMsjjnp0+UHBwnDQ==" + } + }, + "npm:write-file-atomic@5.0.1": { + "type": "npm", + "name": "npm:write-file-atomic@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:type-fest@3.11.0": { + "type": "npm", + "name": "npm:type-fest@3.11.0", + "data": { + "version": "3.11.0", + "packageName": "type-fest", + "hash": "sha512-JaPw5U9ixP0XcpUbQoVSbxSDcK/K4nww20C3kjm9yE6cDRRhptU28AH60VWf9ltXmCrIfIbtt9J+2OUk2Uqiaw==" + } + }, + "npm:array-unique": { + "type": "npm", + "name": "npm:array-unique", + "data": { + "version": "0.3.2", + "packageName": "array-unique", + "hash": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + } + }, + "npm:@storybook/addon-docs": { + "type": "npm", + "name": "npm:@storybook/addon-docs", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-docs", + "hash": "sha512-k3LAu+wVp6pNhfh6B1soCRl6+7sNTNxtqy6WTrIeVJVCGbXbyc5s7gQ48gJ4WAk6meoDEZbypiP4NK1El03YLg==" + } + }, + "npm:cipher-base": { + "type": "npm", + "name": "npm:cipher-base", + "data": { + "version": "1.0.4", + "packageName": "cipher-base", + "hash": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==" + } + }, + "npm:html-void-elements": { + "type": "npm", + "name": "npm:html-void-elements", + "data": { + "version": "1.0.5", + "packageName": "html-void-elements", + "hash": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" + } + }, + "npm:depd@2.0.0": { + "type": "npm", + "name": "npm:depd@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:@types/estree@0.0.39": { + "type": "npm", + "name": "npm:@types/estree@0.0.39", + "data": { + "version": "0.0.39", + "packageName": "@types/estree", + "hash": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + } + }, + "npm:lodash.toarray": { + "type": "npm", + "name": "npm:lodash.toarray", + "data": { + "version": "4.4.0", + "packageName": "lodash.toarray", + "hash": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" + } + }, + "npm:@types/globby": { + "type": "npm", + "name": "npm:@types/globby", + "data": { + "version": "9.1.0", + "packageName": "@types/globby", + "hash": "sha512-9du/HCA71EBz7syHRnM4Q/u4Fbx3SyN/Uu+4Of9lyPX4A6Xi+A8VMxvx8j5/CMTfrae2Zwdwg0fAaKvKXfRbAw==" + } + }, + "npm:react-docgen-typescript": { + "type": "npm", + "name": "npm:react-docgen-typescript", + "data": { + "version": "2.2.2", + "packageName": "react-docgen-typescript", + "hash": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.17.4", + "packageName": "terser", + "hash": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==" + } + }, + "npm:from2": { + "type": "npm", + "name": "npm:from2", + "data": { + "version": "2.3.0", + "packageName": "from2", + "hash": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:fs-write-stream-atomic": { + "type": "npm", + "name": "npm:fs-write-stream-atomic", + "data": { + "version": "1.0.10", + "packageName": "fs-write-stream-atomic", + "hash": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=" + } + }, + "npm:global-dirs": { + "type": "npm", + "name": "npm:global-dirs", + "data": { + "version": "3.0.0", + "packageName": "global-dirs", + "hash": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==" + } + }, + "npm:fast-png": { + "type": "npm", + "name": "npm:fast-png", + "data": { + "version": "6.1.0", + "packageName": "fast-png", + "hash": "sha512-v8e/40RKZbE1mALigoqBOkYnemCVSMmVlGSz8fawZAZg5UQ9OZeR00L++CPvrhIGm2F6TxV5u9lbWD0oOJHcCw==" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + } + }, + "npm:rw": { + "type": "npm", + "name": "npm:rw", + "data": { + "version": "1.3.3", + "packageName": "rw", + "hash": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" + } + }, + "npm:semver-truncate": { + "type": "npm", + "name": "npm:semver-truncate", + "data": { + "version": "3.0.0", + "packageName": "semver-truncate", + "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + } + }, + "npm:gulp-babel": { + "type": "npm", + "name": "npm:gulp-babel", + "data": { + "version": "8.0.0", + "packageName": "gulp-babel", + "hash": "sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ==" + } + }, + "npm:react-lifecycles-compat": { + "type": "npm", + "name": "npm:react-lifecycles-compat", + "data": { + "version": "3.0.4", + "packageName": "react-lifecycles-compat", + "hash": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + } + }, + "npm:serialize-javascript@5.0.1": { + "type": "npm", + "name": "npm:serialize-javascript@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==" + } + }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, + "npm:source-map-url": { + "type": "npm", + "name": "npm:source-map-url", + "data": { + "version": "0.4.0", + "packageName": "source-map-url", + "hash": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + } + }, + "npm:map-cache": { + "type": "npm", + "name": "npm:map-cache", + "data": { + "version": "0.2.2", + "packageName": "map-cache", + "hash": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.3", + "packageName": "fs-monkey", + "hash": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:xdg-basedir": { + "type": "npm", + "name": "npm:xdg-basedir", + "data": { + "version": "3.0.0", + "packageName": "xdg-basedir", + "hash": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" + } + }, + "npm:memory-fs@0.5.0": { + "type": "npm", + "name": "npm:memory-fs@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "memory-fs", + "hash": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.10", + "packageName": "@types/json-schema", + "hash": "sha512-BLO9bBq59vW3fxCpD4o0N4U+DXsvwvIcl+jofw0frQo/GrBFC+/jRZj1E7kgp6dvTyNmA4y6JCV5Id/r3mNP5A==" + } + }, + "npm:@types/yargs@17.0.22": { + "type": "npm", + "name": "npm:@types/yargs@17.0.22", + "data": { + "version": "17.0.22", + "packageName": "@types/yargs", + "hash": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==" + } + }, + "npm:table-layout": { + "type": "npm", + "name": "npm:table-layout", + "data": { + "version": "1.0.2", + "packageName": "table-layout", + "hash": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==" + } + }, + "npm:strip-indent@1.0.1": { + "type": "npm", + "name": "npm:strip-indent@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "strip-indent", + "hash": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=" + } + }, + "npm:@babel/plugin-proposal-export-default-from": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-default-from", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-proposal-export-default-from", + "hash": "sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==" + } + }, + "npm:buffer@4.9.1": { + "type": "npm", + "name": "npm:buffer@4.9.1", + "data": { + "version": "4.9.1", + "packageName": "buffer", + "hash": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=" + } + }, + "npm:@xmldom/xmldom": { + "type": "npm", + "name": "npm:@xmldom/xmldom", + "data": { + "version": "0.8.2", + "packageName": "@xmldom/xmldom", + "hash": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ==" + } + }, + "npm:schema-utils@4.0.0": { + "type": "npm", + "name": "npm:schema-utils@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "schema-utils", + "hash": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==" + } + }, + "npm:space-separated-tokens": { + "type": "npm", + "name": "npm:space-separated-tokens", + "data": { + "version": "1.1.4", + "packageName": "space-separated-tokens", + "hash": "sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.2", + "packageName": "anymatch", + "hash": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" + } + }, + "npm:untildify@2.1.0": { + "type": "npm", + "name": "npm:untildify@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "untildify", + "hash": "sha1-F+soB5h/dpUunASF/DEdBqgmouA=" + } + }, + "npm:array-includes": { + "type": "npm", + "name": "npm:array-includes", + "data": { + "version": "3.1.4", + "packageName": "array-includes", + "hash": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==" + } + }, + "npm:execa@5.0.0": { + "type": "npm", + "name": "npm:execa@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "execa", + "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" + } + }, + "npm:@swc/core-linux-x64-gnu@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-gnu@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-linux-x64-gnu", + "hash": "sha512-/vQSH7ZKOuT1It9GzpJ9UFnsOP/dQr1VLUrKQFBlHp9owIWNb2oUrZdNla+KhljCIIahh0JfQ08sycKeycCNzQ==" + } + }, + "npm:esbuild-windows-64": { + "type": "npm", + "name": "npm:esbuild-windows-64", + "data": { + "version": "0.14.51", + "packageName": "esbuild-windows-64", + "hash": "sha512-HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==" + } + }, + "npm:@babel/plugin-transform-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-generator-functions", + "data": { + "version": "7.23.2", + "packageName": "@babel/plugin-transform-async-generator-functions", + "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" + } + }, + "npm:git-remote-origin-url": { + "type": "npm", + "name": "npm:git-remote-origin-url", + "data": { + "version": "2.0.0", + "packageName": "git-remote-origin-url", + "hash": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=" + } + }, + "npm:is-path-cwd@3.0.0": { + "type": "npm", + "name": "npm:is-path-cwd@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-path-cwd", + "hash": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.1.5", + "packageName": "object.values", + "hash": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==" + } + }, + "npm:universalify@2.0.0": { + "type": "npm", + "name": "npm:universalify@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "universalify", + "hash": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + }, + "npm:@octokit/openapi-types@13.12.0": { + "type": "npm", + "name": "npm:@octokit/openapi-types@13.12.0", + "data": { + "version": "13.12.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-1QYzZrwnn3rTQE7ZoSxXrO8lhu0aIbac1c+qIPOPEaVXBWSaUyLV1x9yt4uDQOwmu6u5ywVS8OJgs+ErDLf6vQ==" + } + }, + "npm:@jest/types@25.5.0": { + "type": "npm", + "name": "npm:@jest/types@25.5.0", + "data": { + "version": "25.5.0", + "packageName": "@jest/types", + "hash": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==" + } + }, + "npm:is-unc-path": { + "type": "npm", + "name": "npm:is-unc-path", + "data": { + "version": "1.0.0", + "packageName": "is-unc-path", + "hash": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==" + } + }, + "npm:unist-util-remove-position@2.0.1": { + "type": "npm", + "name": "npm:unist-util-remove-position@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "unist-util-remove-position", + "hash": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==" + } + }, + "npm:lodash.sortby": { + "type": "npm", + "name": "npm:lodash.sortby", + "data": { + "version": "4.7.0", + "packageName": "lodash.sortby", + "hash": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + } + }, + "npm:tapable@2.2.1": { + "type": "npm", + "name": "npm:tapable@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:@azure/core-tracing": { + "type": "npm", + "name": "npm:@azure/core-tracing", + "data": { + "version": "1.0.0-preview.13", + "packageName": "@azure/core-tracing", + "hash": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==" + } + }, + "npm:entities@2.0.0": { + "type": "npm", + "name": "npm:entities@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "entities", + "hash": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.3", + "packageName": "deep-is", + "hash": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + } + }, + "npm:unist-util-generated": { + "type": "npm", + "name": "npm:unist-util-generated", + "data": { + "version": "1.1.6", + "packageName": "unist-util-generated", + "hash": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" + } + }, + "npm:@microsoft/applicationinsights-dependencies-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-dependencies-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-dependencies-js", + "hash": "sha512-b/YTonnbghg9DOFsLg4zdbYPafW8fPIzV+nZxfPPpxjA1LGvPhZz/zVx9YYWJg2RBXjojLQoJxLf1ro5eNGVig==" + } + }, + "npm:rollup-plugin-filesize": { + "type": "npm", + "name": "npm:rollup-plugin-filesize", + "data": { + "version": "8.0.2", + "packageName": "rollup-plugin-filesize", + "hash": "sha512-PcOYHPvpRh2sYWLX/1XbaLcRZ//rqwihl9iBiJWWo39XiyQlWv5623XWoXM9PjYcxP1q+7L7hjmlqzNx4kptlw==" + } + }, + "npm:webpack-filter-warnings-plugin@1.2.1": { + "type": "npm", + "name": "npm:webpack-filter-warnings-plugin@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "webpack-filter-warnings-plugin", + "hash": "sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==" + } + }, + "npm:json-schema-traverse@0.4.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:lodash.mergewith": { + "type": "npm", + "name": "npm:lodash.mergewith", + "data": { + "version": "4.6.2", + "packageName": "lodash.mergewith", + "hash": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" + } + }, + "npm:tabbable": { + "type": "npm", + "name": "npm:tabbable", + "data": { + "version": "5.2.0", + "packageName": "tabbable", + "hash": "sha512-0uyt8wbP0P3T4rrsfYg/5Rg3cIJ8Shl1RJ54QMqYxm1TLdWqJD1u6+RQjr2Lor3wmfT7JRHkirIwy99ydBsyPg==" + } + }, + "npm:node-libs-browser": { + "type": "npm", + "name": "npm:node-libs-browser", + "data": { + "version": "2.2.1", + "packageName": "node-libs-browser", + "hash": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==" + } + }, + "npm:nested-error-stacks": { + "type": "npm", + "name": "npm:nested-error-stacks", + "data": { + "version": "2.1.0", + "packageName": "nested-error-stacks", + "hash": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==" + } + }, + "npm:readable-stream@1.1.14": { + "type": "npm", + "name": "npm:readable-stream@1.1.14", + "data": { + "version": "1.1.14", + "packageName": "readable-stream", + "hash": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=" + } + }, + "npm:map-obj": { + "type": "npm", + "name": "npm:map-obj", + "data": { + "version": "1.0.1", + "packageName": "map-obj", + "hash": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:aws4": { + "type": "npm", + "name": "npm:aws4", + "data": { + "version": "1.8.0", + "packageName": "aws4", + "hash": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:growl": { + "type": "npm", + "name": "npm:growl", + "data": { + "version": "1.10.5", + "packageName": "growl", + "hash": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==" + } + }, + "npm:@types/chrome-remote-interface": { + "type": "npm", + "name": "npm:@types/chrome-remote-interface", + "data": { + "version": "0.30.0", + "packageName": "@types/chrome-remote-interface", + "hash": "sha512-j7LCipaiuft35hJqocb15a+zzL2/h3AaOnWlQin/SbVVj0i+I/dhgpJJmRsJFV6XtlkMyySI3WFOBvpYC7xhpg==" + } + }, + "npm:ansi-styles@2.2.1": { + "type": "npm", + "name": "npm:ansi-styles@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "ansi-styles", + "hash": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + } + }, + "npm:evp_bytestokey": { + "type": "npm", + "name": "npm:evp_bytestokey", + "data": { + "version": "1.0.3", + "packageName": "evp_bytestokey", + "hash": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==" + } + }, + "npm:@babel/plugin-transform-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-transform-json-strings", + "data": { + "version": "7.22.11", + "packageName": "@babel/plugin-transform-json-strings", + "hash": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-fetch-happen@8.0.9": { + "type": "npm", + "name": "npm:make-fetch-happen@8.0.9", + "data": { + "version": "8.0.9", + "packageName": "make-fetch-happen", + "hash": "sha512-uHa4gv/NIdm9cUvfOhYb57nxrCY08iyMRXru0jbpaH57Q3NCge/ypY7fOvgCr8tPyucKrGbVndKhjXE0IX0VfQ==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.3.0", + "packageName": "node-gyp-build", + "hash": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==" + } + }, + "npm:autoprefixer@9.8.6": { + "type": "npm", + "name": "npm:autoprefixer@9.8.6", + "data": { + "version": "9.8.6", + "packageName": "autoprefixer", + "hash": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==" + } + }, + "npm:react-select": { + "type": "npm", + "name": "npm:react-select", + "data": { + "version": "3.2.0", + "packageName": "react-select", + "hash": "sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==" + } + }, + "npm:require-main-filename": { + "type": "npm", + "name": "npm:require-main-filename", + "data": { + "version": "2.0.0", + "packageName": "require-main-filename", + "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + } + }, + "npm:type@2.0.0": { + "type": "npm", + "name": "npm:type@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "type", + "hash": "sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.19", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==" + } + }, + "npm:min-document": { + "type": "npm", + "name": "npm:min-document", + "data": { + "version": "2.19.0", + "packageName": "min-document", + "hash": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=" + } + }, + "npm:@babel/plugin-transform-for-of": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of", + "data": { + "version": "7.22.15", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==" + } + }, + "npm:nopt@4.0.1": { + "type": "npm", + "name": "npm:nopt@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "nopt", + "hash": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "0.7.0", + "packageName": "chardet", + "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + } + }, + "npm:playwright-core": { + "type": "npm", + "name": "npm:playwright-core", + "data": { + "version": "1.27.1", + "packageName": "playwright-core", + "hash": "sha512-9EmeXDncC2Pmp/z+teoVYlvmPWUC6ejSSYZUln7YaP89Z6lpAaiaAnqroUt/BoLo8tn7WYShcfaCh+xofZa44Q==" + } + }, + "npm:@storybook/core-server": { + "type": "npm", + "name": "npm:@storybook/core-server", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core-server", + "hash": "sha512-m+pZwHhCjwryeqTptyyKHSbIjnnPGKoRSnkqLTOpKQf8llZMnNQWUFrn4fx6UDKzxFQ2st2+laV8O2QbMs8qwQ==" + } + }, + "npm:jsdom-global": { + "type": "npm", + "name": "npm:jsdom-global", + "data": { + "version": "3.0.2", + "packageName": "jsdom-global", + "hash": "sha1-a9KZwTsMRiay2iwDk81DhdYGrLk=" + } + }, + "npm:is-ssh": { + "type": "npm", + "name": "npm:is-ssh", + "data": { + "version": "1.4.0", + "packageName": "is-ssh", + "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" + } + }, + "npm:d3-selection": { + "type": "npm", + "name": "npm:d3-selection", + "data": { + "version": "1.3.0", + "packageName": "d3-selection", + "hash": "sha512-qgpUOg9tl5CirdqESUAu0t9MU/t3O9klYfGfyKsXEmhyxyzLpzpeh08gaxBUTQw1uXIOkr/30Ut2YRjSSxlmHA==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.1", + "packageName": "collect-v8-coverage", + "hash": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:repeating": { + "type": "npm", + "name": "npm:repeating", + "data": { + "version": "2.0.1", + "packageName": "repeating", + "hash": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=" + } + }, + "npm:@nrwl/devkit": { + "type": "npm", + "name": "npm:@nrwl/devkit", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/devkit", + "hash": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==" + } + }, + "npm:react-dom": { + "type": "npm", + "name": "npm:react-dom", + "data": { + "version": "17.0.2", + "packageName": "react-dom", + "hash": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==" + } + }, + "npm:@emotion/stylis": { + "type": "npm", + "name": "npm:@emotion/stylis", + "data": { + "version": "0.8.5", + "packageName": "@emotion/stylis", + "hash": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-function-name", + "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" + } + }, + "npm:pump@2.0.1": { + "type": "npm", + "name": "npm:pump@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "pump", + "hash": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==" + } + }, + "npm:timsort": { + "type": "npm", + "name": "npm:timsort", + "data": { + "version": "0.3.0", + "packageName": "timsort", + "hash": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + } + }, + "npm:@storybook/client-logger": { + "type": "npm", + "name": "npm:@storybook/client-logger", + "data": { + "version": "6.5.15", + "packageName": "@storybook/client-logger", + "hash": "sha512-0uyxKvodq+FycGv6aUwC1wUR6suXf2+7ywMFAOlYolI4UvNj8NyU/5AfgKT5XnxYAgPmoCiAjOE700TrfHrosw==" + } + }, + "npm:yn": { + "type": "npm", + "name": "npm:yn", + "data": { + "version": "3.1.1", + "packageName": "yn", + "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + } + }, + "npm:upath@1.1.2": { + "type": "npm", + "name": "npm:upath@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "upath", + "hash": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:gauge": { + "type": "npm", + "name": "npm:gauge", + "data": { + "version": "2.7.4", + "packageName": "gauge", + "hash": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "1.1.0", + "packageName": "ansi-colors", + "hash": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==" + } + }, + "npm:find-babel-config": { + "type": "npm", + "name": "npm:find-babel-config", + "data": { + "version": "1.2.0", + "packageName": "find-babel-config", + "hash": "sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==" + } + }, + "npm:@linaria/core": { + "type": "npm", + "name": "npm:@linaria/core", + "data": { + "version": "3.0.0-beta.22", + "packageName": "@linaria/core", + "hash": "sha512-BPSecW8QmhQ0y+5cWXEja+MTmLsuo0T1PjqRlSWsmDgjJFFObqCnPEgbR1KNtQb3Msmx1/9q3dYKpA5Zk3g8KQ==" + } + }, + "npm:@babel/plugin-transform-arrow-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==" + } + }, + "npm:pkg-up@4.0.0": { + "type": "npm", + "name": "npm:pkg-up@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "pkg-up", + "hash": "sha512-N4zdA4sfOe6yCv+ulPCmpnIBQ5I60xfhDr1otdBBhKte9QtEf3bhfrfkW7dTb+IQ0iEx4ZDzas0kc1o5rdWpYg==" + } + }, + "npm:rollup-plugin-terser": { + "type": "npm", + "name": "npm:rollup-plugin-terser", + "data": { + "version": "5.3.1", + "packageName": "rollup-plugin-terser", + "hash": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread", + "data": { + "version": "7.12.1", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==" + } + }, + "npm:gulp-util": { + "type": "npm", + "name": "npm:gulp-util", + "data": { + "version": "3.0.8", + "packageName": "gulp-util", + "hash": "sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==" + } + }, + "npm:resolve@1.19.0": { + "type": "npm", + "name": "npm:resolve@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "resolve", + "hash": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.7.0", + "packageName": "socks", + "hash": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==" + } + }, + "npm:object.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.5", + "packageName": "object.fromentries", + "hash": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.4.563", + "packageName": "electron-to-chromium", + "hash": "sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==" + } + }, + "npm:@gulp-sourcemaps/identity-map": { + "type": "npm", + "name": "npm:@gulp-sourcemaps/identity-map", + "data": { + "version": "1.0.2", + "packageName": "@gulp-sourcemaps/identity-map", + "hash": "sha512-ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ==" + } + }, + "npm:@babel/plugin-transform-dotall-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==" + } + }, + "npm:ci-info@2.0.0": { + "type": "npm", + "name": "npm:ci-info@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ci-info", + "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + } + }, + "npm:delegates": { + "type": "npm", + "name": "npm:delegates", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + } + }, + "npm:is-absolute": { + "type": "npm", + "name": "npm:is-absolute", + "data": { + "version": "1.0.0", + "packageName": "is-absolute", + "hash": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==" + } + }, + "npm:vfile-location@2.0.6": { + "type": "npm", + "name": "npm:vfile-location@2.0.6", + "data": { + "version": "2.0.6", + "packageName": "vfile-location", + "hash": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==" + } + }, + "npm:@types/react-window": { + "type": "npm", + "name": "npm:@types/react-window", + "data": { + "version": "1.8.2", + "packageName": "@types/react-window", + "hash": "sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.23.0", + "packageName": "@babel/parser", + "hash": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" + } + }, + "npm:cosmiconfig@8.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==" + } + }, + "npm:@babel/register": { + "type": "npm", + "name": "npm:@babel/register", + "data": { + "version": "7.22.15", + "packageName": "@babel/register", + "hash": "sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==" + } + }, + "npm:domain-browser@1.2.0": { + "type": "npm", + "name": "npm:domain-browser@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "domain-browser", + "hash": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + } + }, + "npm:@gar/promisify": { + "type": "npm", + "name": "npm:@gar/promisify", + "data": { + "version": "1.1.3", + "packageName": "@gar/promisify", + "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + } + }, + "npm:find-yarn-workspace-root@1.2.1": { + "type": "npm", + "name": "npm:find-yarn-workspace-root@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "find-yarn-workspace-root", + "hash": "sha512-dVtfb0WuQG+8Ag2uWkbG79hOUzEsRrhBzgfn86g2sJPkzmcpGdghbNTfUKGTxymFrY/tLIodDzLoW9nOJ4FY8Q==" + } + }, + "npm:cache-content-type": { + "type": "npm", + "name": "npm:cache-content-type", + "data": { + "version": "1.0.1", + "packageName": "cache-content-type", + "hash": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==" + } + }, + "npm:glob@9.3.5": { + "type": "npm", + "name": "npm:glob@9.3.5", + "data": { + "version": "9.3.5", + "packageName": "glob", + "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" + } + }, + "npm:@octokit/auth-token@3.0.1": { + "type": "npm", + "name": "npm:@octokit/auth-token@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@octokit/auth-token", + "hash": "sha512-/USkK4cioY209wXRpund6HZzHo9GmjakpV9ycOkpMcMxMk7QVcVFVyCMtzvXYiHsB2crgDgrtNYSELYFBXhhaA==" + } + }, + "npm:@azure/core-client": { + "type": "npm", + "name": "npm:@azure/core-client", + "data": { + "version": "1.1.1", + "packageName": "@azure/core-client", + "hash": "sha512-SHW4H4I9IxzqaadHCUJLQPTD5jLfBOVNkWw1TSEZr4SGk0AzZzA3BG5q8Pr9L6WDK3MKCXdi6f9IViGYKGXjzw==" + } + }, + "npm:@sigstore/bundle": { + "type": "npm", + "name": "npm:@sigstore/bundle", + "data": { + "version": "1.0.0", + "packageName": "@sigstore/bundle", + "hash": "sha512-yLvrWDOh6uMOUlFCTJIZEnwOT9Xte7NPXUqVexEKGSF5XtBAuSg5du0kn3dRR0p47a4ah10Y0mNt8+uyeQXrBQ==" + } + }, + "npm:inline-style-expand-shorthand": { + "type": "npm", + "name": "npm:inline-style-expand-shorthand", + "data": { + "version": "1.2.0", + "packageName": "inline-style-expand-shorthand", + "hash": "sha512-YdteDMlG1StHeEXF7opaVfPMCIVO8B4TPjE6kZLwdhZdgjH3Q7lxwSe+89sMhdPN77F3quOYhBbqBE0+KXuHpA==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:log-update": { + "type": "npm", + "name": "npm:log-update", + "data": { + "version": "4.0.0", + "packageName": "log-update", + "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" + } + }, + "npm:mdast-util-to-hast": { + "type": "npm", + "name": "npm:mdast-util-to-hast", + "data": { + "version": "10.0.1", + "packageName": "mdast-util-to-hast", + "hash": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + } + }, + "npm:cosmiconfig@6.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + } + }, + "npm:@types/uglify-js": { + "type": "npm", + "name": "npm:@types/uglify-js", + "data": { + "version": "3.17.1", + "packageName": "@types/uglify-js", + "hash": "sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==" + } + }, + "npm:adal-node": { + "type": "npm", + "name": "npm:adal-node", + "data": { + "version": "0.2.3", + "packageName": "adal-node", + "hash": "sha512-gMKr8RuYEYvsj7jyfCv/4BfKToQThz20SP71N3AtFn3ia3yAR8Qt2T3aVQhuJzunWs2b38ZsQV0qsZPdwZr7VQ==" + } + }, + "npm:babel-plugin-add-react-displayname": { + "type": "npm", + "name": "npm:babel-plugin-add-react-displayname", + "data": { + "version": "0.0.5", + "packageName": "babel-plugin-add-react-displayname", + "hash": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "8.1.0", + "packageName": "copy-webpack-plugin", + "hash": "sha512-Soiq8kXI2AZkpw3dSp18u6oU2JonC7UKv3UdXsKOmT1A5QT46ku9+6c0Qy29JDbSavQJNN1/eKGpd3QNw+cZWg==" + } + }, + "npm:has-flag@4.0.0": { + "type": "npm", + "name": "npm:has-flag@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:@octokit/plugin-enterprise-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-enterprise-rest", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-enterprise-rest", + "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" + } + }, + "npm:is-binary-path@1.0.1": { + "type": "npm", + "name": "npm:is-binary-path@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-binary-path", + "hash": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=" + } + }, + "npm:gauge@4.0.4": { + "type": "npm", + "name": "npm:gauge@4.0.4", + "data": { + "version": "4.0.4", + "packageName": "gauge", + "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" + } + }, + "npm:readdirp@3.2.0": { + "type": "npm", + "name": "npm:readdirp@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "readdirp", + "hash": "sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:@linaria/preeval": { + "type": "npm", + "name": "npm:@linaria/preeval", + "data": { + "version": "3.0.0-beta.22", + "packageName": "@linaria/preeval", + "hash": "sha512-/PS86ljXBu3HVLTRd2sn/5wxD4ywnlTUGZPMMFlZDGuBCHlMZehD7xE6VbX6t/JZtOAylU8vDi2RYum96evHAw==" + } + }, + "npm:cmd-shim": { + "type": "npm", + "name": "npm:cmd-shim", + "data": { + "version": "6.0.1", + "packageName": "cmd-shim", + "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" + } + }, + "npm:concat-stream@2.0.0": { + "type": "npm", + "name": "npm:concat-stream@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "concat-stream", + "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" + } + }, + "npm:del@5.1.0": { + "type": "npm", + "name": "npm:del@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "del", + "hash": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:@jest/source-map": { + "type": "npm", + "name": "npm:@jest/source-map", + "data": { + "version": "29.6.3", + "packageName": "@jest/source-map", + "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001553", + "packageName": "caniuse-lite", + "hash": "sha512-N0ttd6TrFfuqKNi+pMgWJTb9qrdJu4JSpgPFLe/lrD19ugC6fZgF0pUewRowDwzdDnb9V41mFcdlYgl/PyKf4A==" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "1.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + } + }, + "npm:@storybook/core-client": { + "type": "npm", + "name": "npm:@storybook/core-client", + "data": { + "version": "6.5.15", + "packageName": "@storybook/core-client", + "hash": "sha512-i9t4WONy2MxJwLI1FIp5ck7b52EXyJfALnxUn4O/3GTkw09J0NOKi2DPjefUsi7IB5MzFpDjDH9vw/XiTM+OZw==" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=" + } + }, + "npm:css-in-js-utils": { + "type": "npm", + "name": "npm:css-in-js-utils", + "data": { + "version": "3.0.0", + "packageName": "css-in-js-utils", + "hash": "sha512-FSdC7hZIeSmEPANOZB/VHHeaYh+MiNvqLRP7MWVck6MQs2B5KHH3XmMU9Asb/6BdwDp+JTt1q+cGgSBCuFU1GQ==" + } + }, + "npm:shebang-command@2.0.0": { + "type": "npm", + "name": "npm:shebang-command@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "npm:telejson": { + "type": "npm", + "name": "npm:telejson", + "data": { + "version": "6.0.8", + "packageName": "telejson", + "hash": "sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:retry@0.10.1": { + "type": "npm", + "name": "npm:retry@0.10.1", + "data": { + "version": "0.10.1", + "packageName": "retry", + "hash": "sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=" + } + }, + "npm:to-no-case": { + "type": "npm", + "name": "npm:to-no-case", + "data": { + "version": "1.0.2", + "packageName": "to-no-case", + "hash": "sha1-xyKQcWTvaxeBMsjmmTAhLRtKoWo=" + } + }, + "npm:type-fest@0.4.1": { + "type": "npm", + "name": "npm:type-fest@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "type-fest", + "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" + } + }, + "npm:async-retry": { + "type": "npm", + "name": "npm:async-retry", + "data": { + "version": "1.2.3", + "packageName": "async-retry", + "hash": "sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==" + } + }, + "npm:gitconfiglocal": { + "type": "npm", + "name": "npm:gitconfiglocal", + "data": { + "version": "1.0.0", + "packageName": "gitconfiglocal", + "hash": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=" + } + }, + "npm:@babel/plugin-syntax-flow": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-flow", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-flow", + "hash": "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==" + } + }, + "npm:@lerna/child-process": { + "type": "npm", + "name": "npm:@lerna/child-process", + "data": { + "version": "7.1.3", + "packageName": "@lerna/child-process", + "hash": "sha512-ZXHo30G5Ia/RCWKVyBm+3kAe/liWy7KaRF+CPWZpxYo+ysFPBIJ/7XZlGMzmq8fQaMsPj1z61q4wyqeAlUwuvQ==" + } + }, + "npm:@types/cacheable-request": { + "type": "npm", + "name": "npm:@types/cacheable-request", + "data": { + "version": "6.0.2", + "packageName": "@types/cacheable-request", + "hash": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==" + } + }, + "npm:@types/esquery": { + "type": "npm", + "name": "npm:@types/esquery", + "data": { + "version": "1.5.0", + "packageName": "@types/esquery", + "hash": "sha512-MNQ5gCt3j1idWHlj/dEF+WPS1kl6Woe0Agzwy96JvrwDQdDadqeIBhY7mUca51CCUzxf7BsnXzcyKi6ENpEtmQ==" + } + }, + "npm:backfill-hasher": { + "type": "npm", + "name": "npm:backfill-hasher", + "data": { + "version": "6.4.3", + "packageName": "backfill-hasher", + "hash": "sha512-Btijbf5mC96bbFervlUMf5I14V9/bPPUiEFhWYO+XRyxlfbTejpvqzTpCDKEyCR/wMlt3AViAjZ3/UOZ6cMGsg==" + } + }, + "npm:html-element-map": { + "type": "npm", + "name": "npm:html-element-map", + "data": { + "version": "1.0.1", + "packageName": "html-element-map", + "hash": "sha512-BZSfdEm6n706/lBfXKWa4frZRZcT5k1cOusw95ijZsHlI+GdgY0v95h6IzO3iIDf2ROwq570YTwqNPqHcNMozw==" + } + }, + "npm:koa-static": { + "type": "npm", + "name": "npm:koa-static", + "data": { + "version": "5.0.0", + "packageName": "koa-static", + "hash": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + } + }, + "npm:rtl-css-js": { + "type": "npm", + "name": "npm:rtl-css-js", + "data": { + "version": "1.16.1", + "packageName": "rtl-css-js", + "hash": "sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==" + } + }, + "npm:lodash._basetostring": { + "type": "npm", + "name": "npm:lodash._basetostring", + "data": { + "version": "3.0.1", + "packageName": "lodash._basetostring", + "hash": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=" + } + }, + "npm:browserify-rsa": { + "type": "npm", + "name": "npm:browserify-rsa", + "data": { + "version": "4.0.1", + "packageName": "browserify-rsa", + "hash": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=" + } + }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, + "npm:callsites@2.0.0": { + "type": "npm", + "name": "npm:callsites@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "callsites", + "hash": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + } + }, + "npm:@cypress/xvfb": { + "type": "npm", + "name": "npm:@cypress/xvfb", + "data": { + "version": "1.2.4", + "packageName": "@cypress/xvfb", + "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" + } + }, + "npm:filesize@3.6.1": { + "type": "npm", + "name": "npm:filesize@3.6.1", + "data": { + "version": "3.6.1", + "packageName": "filesize", + "hash": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:ky": { + "type": "npm", + "name": "npm:ky", + "data": { + "version": "0.12.0", + "packageName": "ky", + "hash": "sha512-t9b7v3V2fGwAcQnnDDQwKQGF55eWrf4pwi1RN08Fy8b/9GEwV7Ea0xQiaSW6ZbeghBHIwl8kgnla4vVo9seepQ==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.2", + "packageName": "@istanbuljs/schema", + "hash": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==" + } + }, + "npm:lower-case": { + "type": "npm", + "name": "npm:lower-case", + "data": { + "version": "1.1.4", + "packageName": "lower-case", + "hash": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" + } + }, + "npm:normalize-path@2.1.1": { + "type": "npm", + "name": "npm:normalize-path@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "normalize-path", + "hash": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=" + } + }, + "npm:eslint-config-airbnb": { + "type": "npm", + "name": "npm:eslint-config-airbnb", + "data": { + "version": "18.2.1", + "packageName": "eslint-config-airbnb", + "hash": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==" + } + }, + "npm:@babel/plugin-transform-react-pure-annotations": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-pure-annotations", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-react-pure-annotations", + "hash": "sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + } + }, + "npm:jest-environment-node-single-context": { + "type": "npm", + "name": "npm:jest-environment-node-single-context", + "data": { + "version": "29.1.0", + "packageName": "jest-environment-node-single-context", + "hash": "sha512-sMQSq/b4aK9f0V1atn/ZfBgdrEQZzoZo95UzUTXaS/GtiCx9e62IFP4gX0GR+IGDu1k7UuqB/Xot46vJoOsoyg==" + } + }, + "npm:source-map-js@0.6.2": { + "type": "npm", + "name": "npm:source-map-js@0.6.2", + "data": { + "version": "0.6.2", + "packageName": "source-map-js", + "hash": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==" + } + }, + "npm:dom-serializer@1.3.2": { + "type": "npm", + "name": "npm:dom-serializer@1.3.2", + "data": { + "version": "1.3.2", + "packageName": "dom-serializer", + "hash": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" + } + }, + "npm:query-string": { + "type": "npm", + "name": "npm:query-string", + "data": { + "version": "6.14.1", + "packageName": "query-string", + "hash": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" + } + }, + "npm:@babel/plugin-proposal-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-methods", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-private-methods", + "hash": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" + } + }, + "npm:is-directory": { + "type": "npm", + "name": "npm:is-directory", + "data": { + "version": "0.3.1", + "packageName": "is-directory", + "hash": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + } + }, + "npm:@types/lodash": { + "type": "npm", + "name": "npm:@types/lodash", + "data": { + "version": "4.14.182", + "packageName": "@types/lodash", + "hash": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.2.0", + "packageName": "domelementtype", + "hash": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + } + }, + "npm:signal-exit@4.0.2": { + "type": "npm", + "name": "npm:signal-exit@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "signal-exit", + "hash": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" + } + }, + "npm:value-equal": { + "type": "npm", + "name": "npm:value-equal", + "data": { + "version": "1.0.1", + "packageName": "value-equal", + "hash": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + } + }, + "npm:@nx/jest": { + "type": "npm", + "name": "npm:@nx/jest", + "data": { + "version": "16.10.0", + "packageName": "@nx/jest", + "hash": "sha512-QseeLjDrl4c9q9Dd/057SXYqd47JVLhD2VQlQDraYwjsHz3lWkzlGaaHy0ZrVu8LSzY7lUUhJMPyYO3qo8wT6A==" + } + }, + "npm:@types/babel__register": { + "type": "npm", + "name": "npm:@types/babel__register", + "data": { + "version": "7.17.2", + "packageName": "@types/babel__register", + "hash": "sha512-vtX15ukwrteTilZGP2/qAKKQcydKHUSioiIVItmKQZAwGwTOH0ZFfJ2L4kei/lq6EmwBuYooipl+5bh5gtmQgQ==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==" + } + }, + "npm:babel-plugin-annotate-pure-calls": { + "type": "npm", + "name": "npm:babel-plugin-annotate-pure-calls", + "data": { + "version": "0.4.0", + "packageName": "babel-plugin-annotate-pure-calls", + "hash": "sha512-oi4M/PWUJOU9ZyRGoPTfPMqdyMp06jbJAomd3RcyYuzUtBOddv98BqLm96Lucpi2QFoQHkdGQt0ACvw7VzVEQA==" + } + }, + "npm:clean-stack@4.2.0": { + "type": "npm", + "name": "npm:clean-stack@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "clean-stack", + "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" + } + }, + "npm:err-code@1.1.2": { + "type": "npm", + "name": "npm:err-code@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "err-code", + "hash": "sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA=" + } + }, + "npm:es6-symbol": { + "type": "npm", + "name": "npm:es6-symbol", + "data": { + "version": "3.1.3", + "packageName": "es6-symbol", + "hash": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" + } + }, + "npm:@storybook/semver": { + "type": "npm", + "name": "npm:@storybook/semver", + "data": { + "version": "7.3.2", + "packageName": "@storybook/semver", + "hash": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==" + } + }, + "npm:color-convert@2.0.1": { + "type": "npm", + "name": "npm:color-convert@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "6.2.0", + "packageName": "load-json-file", + "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "2.2.2", + "packageName": "jackspeak", + "hash": "sha512-mgNtVv4vUuaKA97yxUHoA3+FkuhtxkjdXEWOyB/N76fjy0FjezEt34oy3epBtvCvS+7DyKwqCFWx/oJLV5+kCg==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.23.0", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==" + } + }, + "npm:to-regex-range@2.1.1": { + "type": "npm", + "name": "npm:to-regex-range@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "to-regex-range", + "hash": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=" + } + }, + "npm:socks-proxy-agent@5.0.0": { + "type": "npm", + "name": "npm:socks-proxy-agent@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-lEpa1zsWCChxiynk+lCycKuC502RxDWLKJZoIhnxrWNjLSDGYRFflHA1/228VkRcnv9TIb8w98derGbpKxJRgA==" + } + }, + "npm:fetch-blob": { + "type": "npm", + "name": "npm:fetch-blob", + "data": { + "version": "3.2.0", + "packageName": "fetch-blob", + "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:to-regex": { + "type": "npm", + "name": "npm:to-regex", + "data": { + "version": "3.0.2", + "packageName": "to-regex", + "hash": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.17", + "packageName": "compressible", + "hash": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==" + } + }, + "npm:@xstate/react": { + "type": "npm", + "name": "npm:@xstate/react", + "data": { + "version": "1.6.3", + "packageName": "@xstate/react", + "hash": "sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==" + } + }, + "npm:hast-util-parse-selector": { + "type": "npm", + "name": "npm:hast-util-parse-selector", + "data": { + "version": "2.2.5", + "packageName": "hast-util-parse-selector", + "hash": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" + } + }, + "npm:@babel/plugin-syntax-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators", + "data": { + "version": "7.22.10", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==" + } + }, + "npm:aggregate-error@4.0.1": { + "type": "npm", + "name": "npm:aggregate-error@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "aggregate-error", + "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.7.3", + "packageName": "eslint-module-utils", + "hash": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==" + } + }, + "npm:@hutson/parse-repository-url": { + "type": "npm", + "name": "npm:@hutson/parse-repository-url", + "data": { + "version": "3.0.2", + "packageName": "@hutson/parse-repository-url", + "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" + } + }, + "npm:@types/resolve": { + "type": "npm", + "name": "npm:@types/resolve", + "data": { + "version": "0.0.8", + "packageName": "@types/resolve", + "hash": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==" + } + }, + "npm:babel-plugin-module-resolver": { + "type": "npm", + "name": "npm:babel-plugin-module-resolver", + "data": { + "version": "4.1.0", + "packageName": "babel-plugin-module-resolver", + "hash": "sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==" + } + }, + "npm:colors@1.4.0": { + "type": "npm", + "name": "npm:colors@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "colors", + "hash": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + } + }, + "npm:duplexer@0.1.1": { + "type": "npm", + "name": "npm:duplexer@0.1.1", + "data": { + "version": "0.1.1", + "packageName": "duplexer", + "hash": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" + } + }, + "npm:flat@4.1.0": { + "type": "npm", + "name": "npm:flat@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "flat", + "hash": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==" + } + }, + "npm:lazystream": { + "type": "npm", + "name": "npm:lazystream", + "data": { + "version": "1.0.0", + "packageName": "lazystream", + "hash": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=" + } + }, + "npm:pascal-case": { + "type": "npm", + "name": "npm:pascal-case", + "data": { + "version": "2.0.1", + "packageName": "pascal-case", + "hash": "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.17.2", + "packageName": "send", + "hash": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + } + }, + "npm:util@0.10.3": { + "type": "npm", + "name": "npm:util@0.10.3", + "data": { + "version": "0.10.3", + "packageName": "util", + "hash": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=" + } + }, + "npm:@types/simulant": { + "type": "npm", + "name": "npm:@types/simulant", + "data": { + "version": "0.2.0", + "packageName": "@types/simulant", + "hash": "sha512-pQcnO5/JMR9KEnQGuYkDNQ9IDFAp0nrCfCjxqZ03WY2QDcuMPR6w0VpL6MO5VQEn93YkNCW9nTuRl/q0+iasVg==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" + } + }, + "npm:xmlbuilder": { + "type": "npm", + "name": "npm:xmlbuilder", + "data": { + "version": "11.0.1", + "packageName": "xmlbuilder", + "hash": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" + } + }, + "npm:yargs-parser@21.1.1": { + "type": "npm", + "name": "npm:yargs-parser@21.1.1", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:@storybook/addon-knobs": { + "type": "npm", + "name": "npm:@storybook/addon-knobs", + "data": { + "version": "6.4.0", + "packageName": "@storybook/addon-knobs", + "hash": "sha512-DiH1/5e2AFHoHrncl1qLu18ZHPHzRMMPvOLFz8AWvvmc+VCqTdIaE+tdxKr3e8rYylKllibgvDOzrLjfTNjF+Q==" + } + }, + "npm:mime@1.6.0": { + "type": "npm", + "name": "npm:mime@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:ms@2.1.2": { + "type": "npm", + "name": "npm:ms@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:os-browserify": { + "type": "npm", + "name": "npm:os-browserify", + "data": { + "version": "0.3.0", + "packageName": "os-browserify", + "hash": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + } + }, + "npm:package-json": { + "type": "npm", + "name": "npm:package-json", + "data": { + "version": "4.0.1", + "packageName": "package-json", + "hash": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=" + } + }, + "npm:react-motion": { + "type": "npm", + "name": "npm:react-motion", + "data": { + "version": "0.5.2", + "packageName": "react-motion", + "hash": "sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "9.1.0", + "packageName": "node-gyp", + "hash": "sha512-HkmN0ZpQJU7FLbJauJTHkHlSVAXlNGDAzH/VYFZGDOnFyn/Na3GlNJfkudmufOdS6/jNFhy88ObzL7ERz9es1g==" + } + }, + "npm:glob-promise": { + "type": "npm", + "name": "npm:glob-promise", + "data": { + "version": "3.4.0", + "packageName": "glob-promise", + "hash": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==" + } + }, + "npm:react-router": { + "type": "npm", + "name": "npm:react-router", + "data": { + "version": "5.2.0", + "packageName": "react-router", + "hash": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "3.1.1", + "packageName": "schema-utils", + "hash": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" + } + }, + "npm:@tsconfig/node14": { + "type": "npm", + "name": "npm:@tsconfig/node14", + "data": { + "version": "1.0.3", + "packageName": "@tsconfig/node14", + "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" + } + }, + "npm:cosmiconfig@8.2.0": { + "type": "npm", + "name": "npm:cosmiconfig@8.2.0", + "data": { + "version": "8.2.0", + "packageName": "cosmiconfig", + "hash": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.1", + "packageName": "is-weakref", + "hash": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==" + } + }, + "npm:lodash.flattendeep": { + "type": "npm", + "name": "npm:lodash.flattendeep", + "data": { + "version": "4.4.0", + "packageName": "lodash.flattendeep", + "hash": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" + } + }, + "npm:@esbuild/linux-arm@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-Odalh8hICg7SOD7XCj0YLpYCEc+6mkoq63UnExDCiRA2wXEmGlK5JVrW50vZR9Qz4qkvqnHcpH+OFEggO3PgTg==" + } + }, + "npm:color": { + "type": "npm", + "name": "npm:color", + "data": { + "version": "3.1.2", + "packageName": "color", + "hash": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "0.0.8", + "packageName": "mute-stream", + "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:temp": { + "type": "npm", + "name": "npm:temp", + "data": { + "version": "0.4.0", + "packageName": "temp", + "hash": "sha1-ZxrWPVe+D+nXKUZks/xABjZnimA=" + } + }, + "npm:listenercount": { + "type": "npm", + "name": "npm:listenercount", + "data": { + "version": "1.0.1", + "packageName": "listenercount", + "hash": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" + } + }, + "npm:@esbuild/sunos-x64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-VXSSMsmb+Z8LbsQGcBMiM+fYObDNRm8p7tkUDMPG/g4fhFX5DEFmjxIEa3N8Zr96SjsJ1woAhF0DUnS3MF3ARw==" + } + }, + "npm:is-negated-glob": { + "type": "npm", + "name": "npm:is-negated-glob", + "data": { + "version": "1.0.0", + "packageName": "is-negated-glob", + "hash": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" + } + }, + "npm:nopt@5.0.0": { + "type": "npm", + "name": "npm:nopt@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "nopt", + "hash": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==" + } + }, + "npm:terser-webpack-plugin@4.2.3": { + "type": "npm", + "name": "npm:terser-webpack-plugin@4.2.3", + "data": { + "version": "4.2.3", + "packageName": "terser-webpack-plugin", + "hash": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==" + } + }, + "npm:strip-ansi@3.0.1": { + "type": "npm", + "name": "npm:strip-ansi@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "strip-ansi", + "hash": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=" + } + }, + "npm:workspace-tools": { + "type": "npm", + "name": "npm:workspace-tools", + "data": { + "version": "0.29.1", + "packageName": "workspace-tools", + "hash": "sha512-BVPROxNszGmyaUD2ErLWP4BpCiIkG1P//CnziOvHd27o1TeBm+7T1HKlYu89T4XGAjgPL/NP+tZ4j6aBvG/p/A==" + } + }, + "npm:@babel/plugin-proposal-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-properties", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-class-properties", + "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + } + }, + "npm:is-alphanumerical": { + "type": "npm", + "name": "npm:is-alphanumerical", + "data": { + "version": "1.0.3", + "packageName": "is-alphanumerical", + "hash": "sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:@swc/core": { + "type": "npm", + "name": "npm:@swc/core", + "data": { + "version": "1.3.87", + "packageName": "@swc/core", + "hash": "sha512-u33Mi/EBvb+g/xpYKyxODB5XvKYqISmy81J+lhFS/Oahja0PbJWZdKEGwSQEFvBecp6E+PfaTOLPOoF1EWcRrw==" + } + }, + "npm:listr2@3.14.0": { + "type": "npm", + "name": "npm:listr2@3.14.0", + "data": { + "version": "3.14.0", + "packageName": "listr2", + "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" + } + }, + "npm:hyperlinker": { + "type": "npm", + "name": "npm:hyperlinker", + "data": { + "version": "1.0.0", + "packageName": "hyperlinker", + "hash": "sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==" + } + }, + "npm:react-vis": { + "type": "npm", + "name": "npm:react-vis", + "data": { + "version": "1.11.7", + "packageName": "react-vis", + "hash": "sha512-vJqS12l/6RHeSq8DVl4PzX0j8iPgbT8H8PtgTRsimKsBNcPjPseO4RICw1FUPrwj8MPrrna34LBtzyC4ATd5Ow==" + } + }, + "npm:is-npm": { + "type": "npm", + "name": "npm:is-npm", + "data": { + "version": "1.0.0", + "packageName": "is-npm", + "hash": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" + } + }, + "npm:use-immer": { + "type": "npm", + "name": "npm:use-immer", + "data": { + "version": "0.6.0", + "packageName": "use-immer", + "hash": "sha512-dFGRfvWCqPDTOt/S431ETYTg6+uxbpb7A1pptufwXVzGJY3RlXr38+3wyLNpc6SbbmAKjWl6+EP6uW74fkEsXQ==" + } + }, + "npm:@esbuild/android-arm64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-lsB65vAbe90I/Qe10OjkmrdxSX4UJDjosDgb8sZUKcg3oefEuW2OT2Vozz8ef7wrJbMcmhvCC+hciF8jY/uAkw==" + } + }, + "npm:is-arrayish@0.3.2": { + "type": "npm", + "name": "npm:is-arrayish@0.3.2", + "data": { + "version": "0.3.2", + "packageName": "is-arrayish", + "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.5", + "packageName": "pirates", + "hash": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" + } + }, + "npm:remove-trailing-separator": { + "type": "npm", + "name": "npm:remove-trailing-separator", + "data": { + "version": "1.1.0", + "packageName": "remove-trailing-separator", + "hash": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + } + }, + "npm:relateurl": { + "type": "npm", + "name": "npm:relateurl", + "data": { + "version": "0.2.7", + "packageName": "relateurl", + "hash": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:findup-sync@3.0.0": { + "type": "npm", + "name": "npm:findup-sync@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "findup-sync", + "hash": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==" + } + }, + "npm:normalize-package-data@3.0.3": { + "type": "npm", + "name": "npm:normalize-package-data@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "normalize-package-data", + "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" + } + }, + "npm:@cactuslab/usepubsub": { + "type": "npm", + "name": "npm:@cactuslab/usepubsub", + "data": { + "version": "1.0.2", + "packageName": "@cactuslab/usepubsub", + "hash": "sha512-xNl3YemJ+aTDgs7MRlmGla7TGDVowtZ/FAF5DaHfR5EJaM4tV5EvK0FIk9hz/lt3AHXL+vxnBoyf4z2Z1sYzJA==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:eslint-plugin-security": { + "type": "npm", + "name": "npm:eslint-plugin-security", + "data": { + "version": "1.4.0", + "packageName": "eslint-plugin-security", + "hash": "sha512-xlS7P2PLMXeqfhyf3NpqbvbnW04kN8M9NtmhpR3XGyOvt/vNKS7XPXT5EDbwKW9vCjWH4PpfQvgD/+JgN0VJKA==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==" + } + }, + "npm:chokidar@3.3.0": { + "type": "npm", + "name": "npm:chokidar@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "chokidar", + "hash": "sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A==" + } + }, + "npm:fast-check": { + "type": "npm", + "name": "npm:fast-check", + "data": { + "version": "3.11.0", + "packageName": "fast-check", + "hash": "sha512-H2tctb7AGfFQfz+DEr3UWhJ3s47LXsGp5g3jeJr5tHjnf4xUvpArIqiwcDmL2EXiv+auLHIpF5MqaIpIKvpxiA==" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:pluralize": { + "type": "npm", + "name": "npm:pluralize", + "data": { + "version": "1.2.1", + "packageName": "pluralize", + "hash": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=" + } + }, + "npm:public-encrypt": { + "type": "npm", + "name": "npm:public-encrypt", + "data": { + "version": "4.0.3", + "packageName": "public-encrypt", + "hash": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==" + } + }, + "npm:read": { + "type": "npm", + "name": "npm:read", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:@tufjs/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "1.0.4", + "packageName": "@tufjs/models", + "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" + } + }, + "npm:http-proxy-agent@4.0.1": { + "type": "npm", + "name": "npm:http-proxy-agent@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "http-proxy-agent", + "hash": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" + } + }, + "npm:request-promise-core": { + "type": "npm", + "name": "npm:request-promise-core", + "data": { + "version": "1.1.4", + "packageName": "request-promise-core", + "hash": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==" + } + }, + "npm:cliui@5.0.0": { + "type": "npm", + "name": "npm:cliui@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "cliui", + "hash": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==" + } + }, + "npm:arr-diff": { + "type": "npm", + "name": "npm:arr-diff", + "data": { + "version": "4.0.0", + "packageName": "arr-diff", + "hash": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + } + }, + "npm:is-generator-function": { + "type": "npm", + "name": "npm:is-generator-function", + "data": { + "version": "1.0.8", + "packageName": "is-generator-function", + "hash": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==" + } + }, + "npm:@types/fs-extra": { + "type": "npm", + "name": "npm:@types/fs-extra", + "data": { + "version": "8.0.1", + "packageName": "@types/fs-extra", + "hash": "sha512-J00cVDALmi/hJOYsunyT52Hva5TnJeKP5yd1r+mH/ZU0mbYZflR0Z5kw5kITtKTRYMhm1JMClOFYdHnQszEvqw==" + } + }, + "npm:@types/yargs-unparser": { + "type": "npm", + "name": "npm:@types/yargs-unparser", + "data": { + "version": "2.0.1", + "packageName": "@types/yargs-unparser", + "hash": "sha512-fAnDylacESFJBN4a1J2VnYCl2bTIMkwZ6f3CLCA04x/qCDalGR9aAec89KtS3K4zu05JxjQGn0aRWSPYQJ6zRQ==" + } + }, + "npm:through2@0.5.1": { + "type": "npm", + "name": "npm:through2@0.5.1", + "data": { + "version": "0.5.1", + "packageName": "through2", + "hash": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=" + } + }, + "npm:promise.allsettled": { + "type": "npm", + "name": "npm:promise.allsettled", + "data": { + "version": "1.0.1", + "packageName": "promise.allsettled", + "hash": "sha512-3ST7RS7TY3TYLOIe+OACZFvcWVe1osbgz2x07nTb446pa3t4GUZWidMDzQ4zf9jC2l6mRa1/3X81icFYbi+D/g==" + } + }, + "npm:date-format": { + "type": "npm", + "name": "npm:date-format", + "data": { + "version": "4.0.4", + "packageName": "date-format", + "hash": "sha512-/jyf4rhB17ge328HJuJjAcmRtCsGd+NDeAtahRBTaK6vSPR6MO5HlrAit3Nn7dVjaa6sowW0WXt8yQtLyZQFRg==" + } + }, + "npm:@storybook/channel-websocket": { + "type": "npm", + "name": "npm:@storybook/channel-websocket", + "data": { + "version": "6.5.15", + "packageName": "@storybook/channel-websocket", + "hash": "sha512-K85KEgzo5ahzJNJjyUbSNyuRmkeC8glJX2hCg2j9HiJ9rasX53qugkODrKDlWAeheulo3kR13VSuAqIuwVbmbw==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + } + }, + "npm:@types/react": { + "type": "npm", + "name": "npm:@types/react", + "data": { + "version": "17.0.44", + "packageName": "@types/react", + "hash": "sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==" + } + }, + "npm:parse-path": { + "type": "npm", + "name": "npm:parse-path", + "data": { + "version": "7.0.0", + "packageName": "parse-path", + "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" + } + }, + "npm:@octokit/graphql": { + "type": "npm", + "name": "npm:@octokit/graphql", + "data": { + "version": "4.8.0", + "packageName": "@octokit/graphql", + "hash": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==" + } + }, + "npm:@nrwl/node": { + "type": "npm", + "name": "npm:@nrwl/node", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/node", + "hash": "sha512-UZ1s02f2IpFRXzVZIBuDLXXB+obyP280RFHV9smYruhOHrj8iA5wXNSXcJJGorwpKP3WCUS/+KS49oVSHOkLUA==" + } + }, + "npm:widest-line@2.0.1": { + "type": "npm", + "name": "npm:widest-line@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "widest-line", + "hash": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==" + } + }, + "npm:@swc/core-win32-ia32-msvc@1.3.87": { + "type": "npm", + "name": "npm:@swc/core-win32-ia32-msvc@1.3.87", + "data": { + "version": "1.3.87", + "packageName": "@swc/core-win32-ia32-msvc", + "hash": "sha512-2V+5uvisaTPXd5lvTujNLNlEC2LPo07gEUQVGdKGsbhtLAYAggVXBnHjxU1TkuyA6NlciMS59tPKW+L2u2KpTw==" + } + }, + "npm:lodash.isstring": { + "type": "npm", + "name": "npm:lodash.isstring", + "data": { + "version": "4.0.1", + "packageName": "lodash.isstring", + "hash": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + } + }, + "npm:@emotion/cache": { + "type": "npm", + "name": "npm:@emotion/cache", + "data": { + "version": "10.0.27", + "packageName": "@emotion/cache", + "hash": "sha512-Zp8BEpbMunFsTcqAK4D7YTm3MvCp1SekflSLJH8lze2fCcSZ/yMkXHo8kb3t1/1Tdd3hAqf3Fb7z9VZ+FMiC9w==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:@babel/plugin-transform-property-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==" + } + }, + "npm:define-property@1.0.0": { + "type": "npm", + "name": "npm:define-property@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "define-property", + "hash": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" + } + }, + "npm:path-type@1.1.0": { + "type": "npm", + "name": "npm:path-type@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "path-type", + "hash": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=" + } + }, + "npm:read-pkg@5.2.0": { + "type": "npm", + "name": "npm:read-pkg@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "read-pkg", + "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" + } + }, + "npm:klaw": { + "type": "npm", + "name": "npm:klaw", + "data": { + "version": "1.3.1", + "packageName": "klaw", + "hash": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=" + } + }, + "npm:@babel/plugin-transform-unicode-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==" + } + }, + "npm:cacheable-lookup": { + "type": "npm", + "name": "npm:cacheable-lookup", + "data": { + "version": "5.0.4", + "packageName": "cacheable-lookup", + "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "1.3.4", + "packageName": "dns-packet", + "hash": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==" + } + }, + "npm:highlight.js": { + "type": "npm", + "name": "npm:highlight.js", + "data": { + "version": "9.13.1", + "packageName": "highlight.js", + "hash": "sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "3.13.1", + "packageName": "js-yaml", + "hash": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:detect-indent@4.0.0": { + "type": "npm", + "name": "npm:detect-indent@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "detect-indent", + "hash": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "5.0.1", + "packageName": "css-loader", + "hash": "sha512-cXc2ti9V234cq7rJzFKhirb2L2iPy8ZjALeVJAozXYz9te3r4eqLSixNAbMDJSgJEQywqXzs8gonxaboeKqwiw==" + } + }, + "npm:rechoir": { + "type": "npm", + "name": "npm:rechoir", + "data": { + "version": "0.6.2", + "packageName": "rechoir", + "hash": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" + } + }, + "npm:resolve@2.0.0-next.3": { + "type": "npm", + "name": "npm:resolve@2.0.0-next.3", + "data": { + "version": "2.0.0-next.3", + "packageName": "resolve", + "hash": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==" + } + }, + "npm:unist-util-remove": { + "type": "npm", + "name": "npm:unist-util-remove", + "data": { + "version": "2.1.0", + "packageName": "unist-util-remove", + "hash": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==" + } + }, + "npm:repromise": { + "type": "npm", + "name": "npm:repromise", + "data": { + "version": "4.0.0", + "packageName": "repromise", + "hash": "sha512-ad12PiDwzGOVD4Oc7j9cJPJuX700mquqsMWyoJ5HHysuIMh7jrF8c7lpCC6zRiKAe+ufOrD285KGPtExgAokTw==" + } + }, + "npm:update-section": { + "type": "npm", + "name": "npm:update-section", + "data": { + "version": "0.3.3", + "packageName": "update-section", + "hash": "sha1-RY8Xgg03gg3GDiC4bZQ5GwASMVg=" + } + }, + "npm:fela-tools": { + "type": "npm", + "name": "npm:fela-tools", + "data": { + "version": "10.6.1", + "packageName": "fela-tools", + "hash": "sha512-fywHZDZPY2jQoNA+COPn5ge4rq4uFYVEeNVsT/AKW/RtQNnr18JsHoO1kbn/n4N76NJcNKP6R8OM6jOcOdLiYQ==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:@gulp-sourcemaps/map-sources": { + "type": "npm", + "name": "npm:@gulp-sourcemaps/map-sources", + "data": { + "version": "1.0.0", + "packageName": "@gulp-sourcemaps/map-sources", + "hash": "sha1-iQrnxdjId/bThIYCFazp1+yUW9o=" + } + }, + "npm:ast-types": { + "type": "npm", + "name": "npm:ast-types", + "data": { + "version": "0.14.2", + "packageName": "ast-types", + "hash": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:jest-runner": { + "type": "npm", + "name": "npm:jest-runner", + "data": { + "version": "29.7.0", + "packageName": "jest-runner", + "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" + } + }, + "npm:jest-util@26.6.2": { + "type": "npm", + "name": "npm:jest-util@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "jest-util", + "hash": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==" + } + }, + "npm:parse-diff": { + "type": "npm", + "name": "npm:parse-diff", + "data": { + "version": "0.7.1", + "packageName": "parse-diff", + "hash": "sha512-1j3l8IKcy4yRK2W4o9EYvJLSzpAVwz4DXqCewYyx2vEwk2gcf3DBPqc8Fj4XV3K33OYJ08A8fWwyu/ykD/HUSg==" + } + }, + "npm:structured-source": { + "type": "npm", + "name": "npm:structured-source", + "data": { + "version": "3.0.2", + "packageName": "structured-source", + "hash": "sha1-3YAkJeD1PcSm56yjdSkBoczaevU=" + } + }, + "npm:totalist": { + "type": "npm", + "name": "npm:totalist", + "data": { + "version": "1.1.0", + "packageName": "totalist", + "hash": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" + } + }, + "npm:stylis-plugin-rtl": { + "type": "npm", + "name": "npm:stylis-plugin-rtl", + "data": { + "version": "2.1.0", + "packageName": "stylis-plugin-rtl", + "hash": "sha512-WGqhbQdlbXN3UelhOObu58+aG02jm8ACehr8iBDf7qLQ6lbUxD6YwM8t/5IcwLRjj7BVjIN8eA8YfwJuqwBVSg==" + } + }, + "npm:@types/react-test-renderer": { + "type": "npm", + "name": "npm:@types/react-test-renderer", + "data": { + "version": "17.0.2", + "packageName": "@types/react-test-renderer", + "hash": "sha512-+F1KONQTBHDBBhbHuT2GNydeMpPuviduXIVJRB7Y4nma4NR5DrTJfMMZ+jbhEHbpwL+Uqhs1WXh4KHiyrtYTPg==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.22.1", + "packageName": "browserslist", + "hash": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.0", + "packageName": "@ampproject/remapping", + "hash": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==" + } + }, + "npm:is-wsl@1.1.0": { + "type": "npm", + "name": "npm:is-wsl@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-wsl", + "hash": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + } + }, + "npm:@babel/plugin-transform-template-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==" + } + }, + "npm:map-obj@4.1.0": { + "type": "npm", + "name": "npm:map-obj@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "map-obj", + "hash": "sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "6.2.3", + "packageName": "multicast-dns", + "hash": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" + } + }, + "npm:diffie-hellman": { + "type": "npm", + "name": "npm:diffie-hellman", + "data": { + "version": "5.0.3", + "packageName": "diffie-hellman", + "hash": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "0.5.5", + "packageName": "mkdirp", + "hash": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==" + } + }, + "npm:prr": { + "type": "npm", + "name": "npm:prr", + "data": { + "version": "1.0.1", + "packageName": "prr", + "hash": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + } + }, + "npm:qjobs": { + "type": "npm", + "name": "npm:qjobs", + "data": { + "version": "1.2.0", + "packageName": "qjobs", + "hash": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "2.3.7", + "packageName": "readable-stream", + "hash": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@types/handlebars": { + "type": "npm", + "name": "npm:@types/handlebars", + "data": { + "version": "4.1.0", + "packageName": "@types/handlebars", + "hash": "sha512-gq9YweFKNNB1uFK71eRqsd4niVkXrxHugqWFQkeLRJvGjnxsLr16bYtcsG4tOFwmYi0Bax+wCkbf1reUfdl4kA==" + } + }, + "npm:ansi-escapes@6.2.0": { + "type": "npm", + "name": "npm:ansi-escapes@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "ansi-escapes", + "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.9", + "packageName": "terser-webpack-plugin", + "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" + } + }, + "npm:tweetnacl": { + "type": "npm", + "name": "npm:tweetnacl", + "data": { + "version": "0.14.5", + "packageName": "tweetnacl", + "hash": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + } + }, + "npm:hmac-drbg": { + "type": "npm", + "name": "npm:hmac-drbg", + "data": { + "version": "1.0.1", + "packageName": "hmac-drbg", + "hash": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=" + } + }, + "npm:glob-watcher": { + "type": "npm", + "name": "npm:glob-watcher", + "data": { + "version": "5.0.3", + "packageName": "glob-watcher", + "hash": "sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg==" + } + }, + "npm:buffer-equal-constant-time": { + "type": "npm", + "name": "npm:buffer-equal-constant-time", + "data": { + "version": "1.0.1", + "packageName": "buffer-equal-constant-time", + "hash": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" + } + }, + "npm:value-or-function": { + "type": "npm", + "name": "npm:value-or-function", + "data": { + "version": "3.0.0", + "packageName": "value-or-function", + "hash": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=" + } + }, + "npm:xstate": { + "type": "npm", + "name": "npm:xstate", + "data": { + "version": "4.33.1", + "packageName": "xstate", + "hash": "sha512-C9A3esyOuw/xRpwQUkG2e1Gjd8sZYh42t66COq8DaJgaaLOqmE8zWRH1ouL9mHtQ3WV//uT5Ki3ijHGSUdLiww==" + } + }, + "npm:@jest/console": { + "type": "npm", + "name": "npm:@jest/console", + "data": { + "version": "29.7.0", + "packageName": "@jest/console", + "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" + } + }, + "npm:@types/webpack": { + "type": "npm", + "name": "npm:@types/webpack", + "data": { + "version": "4.41.30", + "packageName": "@types/webpack", + "hash": "sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA==" + } + }, + "npm:ent": { + "type": "npm", + "name": "npm:ent", + "data": { + "version": "2.2.0", + "packageName": "ent", + "hash": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=" + } + }, + "npm:for-own": { + "type": "npm", + "name": "npm:for-own", + "data": { + "version": "1.0.0", + "packageName": "for-own", + "hash": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=" + } + }, + "npm:babel-template": { + "type": "npm", + "name": "npm:babel-template", + "data": { + "version": "6.26.0", + "packageName": "babel-template", + "hash": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=" + } + }, + "npm:async-done": { + "type": "npm", + "name": "npm:async-done", + "data": { + "version": "1.3.2", + "packageName": "async-done", + "hash": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==" + } + }, + "npm:cli-boxes": { + "type": "npm", + "name": "npm:cli-boxes", + "data": { + "version": "2.2.1", + "packageName": "cli-boxes", + "hash": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:@es-joy/jsdoccomment": { + "type": "npm", + "name": "npm:@es-joy/jsdoccomment", + "data": { + "version": "0.36.1", + "packageName": "@es-joy/jsdoccomment", + "hash": "sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==" + } + }, + "npm:@storybook/source-loader": { + "type": "npm", + "name": "npm:@storybook/source-loader", + "data": { + "version": "6.5.15", + "packageName": "@storybook/source-loader", + "hash": "sha512-MaWzki40g0/7NWmJgUBhOp+e7y8Ohw6G/bRr/rcDP7eXSnud6ThYylXv0QqBScLPPTy8txjmBClCoqdLGyvLWQ==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:fast-json-patch": { + "type": "npm", + "name": "npm:fast-json-patch", + "data": { + "version": "3.1.1", + "packageName": "fast-json-patch", + "hash": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==" + } + }, + "npm:fs-extra@11.1.1": { + "type": "npm", + "name": "npm:fs-extra@11.1.1", + "data": { + "version": "11.1.1", + "packageName": "fs-extra", + "hash": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==" + } + }, + "npm:git-up": { + "type": "npm", + "name": "npm:git-up", + "data": { + "version": "7.0.0", + "packageName": "git-up", + "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" + } + }, + "npm:humps": { + "type": "npm", + "name": "npm:humps", + "data": { + "version": "2.0.1", + "packageName": "humps", + "hash": "sha1-3QLqYIG9BWjcXQcxhEY5V7qe+ao=" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "3.2.1", + "packageName": "node-addon-api", + "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:command-line-args": { + "type": "npm", + "name": "npm:command-line-args", + "data": { + "version": "5.2.1", + "packageName": "command-line-args", + "hash": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==" + } + }, + "npm:figgy-pudding": { + "type": "npm", + "name": "npm:figgy-pudding", + "data": { + "version": "3.5.2", + "packageName": "figgy-pudding", + "hash": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + } + }, + "npm:styled-components": { + "type": "npm", + "name": "npm:styled-components", + "data": { + "version": "5.2.1", + "packageName": "styled-components", + "hash": "sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + } + }, + "npm:is-windows": { + "type": "npm", + "name": "npm:is-windows", + "data": { + "version": "1.0.2", + "packageName": "is-windows", + "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.1", + "packageName": "is-negative-zero", + "hash": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + } + }, + "npm:fast-deep-equal@1.1.0": { + "type": "npm", + "name": "npm:fast-deep-equal@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "fast-deep-equal", + "hash": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.5", + "packageName": "istanbul-reports", + "hash": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==" + } + }, + "npm:copy-to-clipboard": { + "type": "npm", + "name": "npm:copy-to-clipboard", + "data": { + "version": "3.3.1", + "packageName": "copy-to-clipboard", + "hash": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:raw-loader": { + "type": "npm", + "name": "npm:raw-loader", + "data": { + "version": "4.0.2", + "packageName": "raw-loader", + "hash": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@storybook/docs-tools": { + "type": "npm", + "name": "npm:@storybook/docs-tools", + "data": { + "version": "6.5.15", + "packageName": "@storybook/docs-tools", + "hash": "sha512-8w78NFOtlJGuIa9vPPsr87J9iQUGmLFh7CrMS2+t9LxW+0oH5MZ8QqPQUHNuTuKsYN3r+QAmmi2pj0auZmCoKA==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" + } + }, + "npm:@types/webpack-hot-middleware": { + "type": "npm", + "name": "npm:@types/webpack-hot-middleware", + "data": { + "version": "2.25.6", + "packageName": "@types/webpack-hot-middleware", + "hash": "sha512-1Q9ClNvZR30HIsEAHYQL3bXJK1K7IsrqjGMTfIureFjphsGOZ3TkbeoCupbCmi26pSLjVTPHp+pFrJNpOkBSVg==" + } + }, + "npm:babel-plugin-macros": { + "type": "npm", + "name": "npm:babel-plugin-macros", + "data": { + "version": "2.8.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + } + }, + "npm:getpass": { + "type": "npm", + "name": "npm:getpass", + "data": { + "version": "0.1.7", + "packageName": "getpass", + "hash": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=" + } + }, + "npm:has-ansi": { + "type": "npm", + "name": "npm:has-ansi", + "data": { + "version": "2.0.0", + "packageName": "has-ansi", + "hash": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=" + } + }, + "npm:hoist-non-react-statics": { + "type": "npm", + "name": "npm:hoist-non-react-statics", + "data": { + "version": "3.3.2", + "packageName": "hoist-non-react-statics", + "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + } + }, + "npm:jest-resolve-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" + } + }, + "npm:axe-core": { + "type": "npm", + "name": "npm:axe-core", + "data": { + "version": "4.4.3", + "packageName": "axe-core", + "hash": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" + } + }, + "npm:ext-name": { + "type": "npm", + "name": "npm:ext-name", + "data": { + "version": "5.0.0", + "packageName": "ext-name", + "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" + } + }, + "npm:@types/d3-scale": { + "type": "npm", + "name": "npm:@types/d3-scale", + "data": { + "version": "4.0.2", + "packageName": "@types/d3-scale", + "hash": "sha512-Yk4htunhPAwN0XGlIwArRomOjdoBFXC3+kCxK2Ubg7I9shQlVSJy/pG/Ht5ASN+gdMIalpk8TJ5xV74jFsetLA==" + } + }, + "npm:https-proxy-agent@2.2.4": { + "type": "npm", + "name": "npm:https-proxy-agent@2.2.4", + "data": { + "version": "2.2.4", + "packageName": "https-proxy-agent", + "hash": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==" + } + }, + "npm:@types/request": { + "type": "npm", + "name": "npm:@types/request", + "data": { + "version": "2.48.8", + "packageName": "@types/request", + "hash": "sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==" + } + }, + "npm:@wojtekmaj/enzyme-adapter-utils": { + "type": "npm", + "name": "npm:@wojtekmaj/enzyme-adapter-utils", + "data": { + "version": "0.1.4", + "packageName": "@wojtekmaj/enzyme-adapter-utils", + "hash": "sha512-ARGIQSIIv3oBia1m5Ihn1VU0FGmft6KPe39SBKTb8p7LSXO23YI4kNtc4M/cKoIY7P+IYdrZcgMObvedyjoSQA==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=" + } + }, + "npm:pako": { + "type": "npm", + "name": "npm:pako", + "data": { + "version": "1.0.11", + "packageName": "pako", + "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + } + }, + "npm:postcss-modules-scope@2.2.0": { + "type": "npm", + "name": "npm:postcss-modules-scope@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==" + } + }, + "npm:readline-sync": { + "type": "npm", + "name": "npm:readline-sync", + "data": { + "version": "1.4.10", + "packageName": "readline-sync", + "hash": "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==" + } + }, + "npm:backfill-config": { + "type": "npm", + "name": "npm:backfill-config", + "data": { + "version": "6.3.0", + "packageName": "backfill-config", + "hash": "sha512-4Pvqe4SIthHmlJi1yEyh8ThdZCh9SbNcf12Dx1TNkLii6um3Ez1P1rruPNQGW8jFtLb5kOWWkTnXPj6OXewXSA==" + } + }, + "npm:@microsoft/fast-element": { + "type": "npm", + "name": "npm:@microsoft/fast-element", + "data": { + "version": "1.11.1", + "packageName": "@microsoft/fast-element", + "hash": "sha512-qBGQ94V4ktMMXmxNdgF78TPNImv2ctXUi3Vzj3j2X71gpUcr+Fkat7mLcTNC3y/Jc4W63fAhK2vP3MkwYRS5kQ==" + } + }, + "npm:randomfill": { + "type": "npm", + "name": "npm:randomfill", + "data": { + "version": "1.0.4", + "packageName": "randomfill", + "hash": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==" + } + }, + "npm:replace-homedir": { + "type": "npm", + "name": "npm:replace-homedir", + "data": { + "version": "1.0.0", + "packageName": "replace-homedir", + "hash": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=" + } + }, + "npm:@discoveryjs/json-ext": { + "type": "npm", + "name": "npm:@discoveryjs/json-ext", + "data": { + "version": "0.5.6", + "packageName": "@discoveryjs/json-ext", + "hash": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "4.0.0", + "packageName": "slice-ansi", + "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + } + }, + "npm:tsconfig-paths@3.13.0": { + "type": "npm", + "name": "npm:tsconfig-paths@3.13.0", + "data": { + "version": "3.13.0", + "packageName": "tsconfig-paths", + "hash": "sha512-nWuffZppoaYK0vQ1SQmkSsQzJoHA4s6uzdb2waRpD806x9yfq153AdVsWz4je2qZcW+pENrMQXbGQ3sMCkXuhw==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "1.1.1", + "packageName": "unique-filename", + "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" + } + }, + "npm:@storybook/addon-toolbars": { + "type": "npm", + "name": "npm:@storybook/addon-toolbars", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-toolbars", + "hash": "sha512-btwDTgElmaaT0dBRASABbTpq6m1UiQXQmLUmxfjLxVC3I2SK5tyJKbPQ2hVLFAQHK4cQn4u45BxdZ5LDpJ830A==" + } + }, + "npm:git-config-path": { + "type": "npm", + "name": "npm:git-config-path", + "data": { + "version": "1.0.1", + "packageName": "git-config-path", + "hash": "sha1-bTP37WPbDQ4RgTFQO6s6ykfVRmQ=" + } + }, + "npm:bin-version": { + "type": "npm", + "name": "npm:bin-version", + "data": { + "version": "6.0.0", + "packageName": "bin-version", + "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" + } + }, + "npm:des.js": { + "type": "npm", + "name": "npm:des.js", + "data": { + "version": "1.0.0", + "packageName": "des.js", + "hash": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=" + } + }, + "npm:is-number@4.0.0": { + "type": "npm", + "name": "npm:is-number@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-number", + "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + } + }, + "npm:parse-passwd": { + "type": "npm", + "name": "npm:parse-passwd", + "data": { + "version": "1.0.0", + "packageName": "parse-passwd", + "hash": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.3.5", + "packageName": "postcss", + "hash": "sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.0", + "packageName": "open", + "hash": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==" + } + }, + "npm:filesize": { + "type": "npm", + "name": "npm:filesize", + "data": { + "version": "6.1.0", + "packageName": "filesize", + "hash": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + } + }, + "npm:@nrwl/workspace": { + "type": "npm", + "name": "npm:@nrwl/workspace", + "data": { + "version": "16.10.0", + "packageName": "@nrwl/workspace", + "hash": "sha512-fZeNxhFs/2cm326NebfJIgSI3W4KZN94WGS46wlIBrUUGP5/vwHYsi09Kx6sG1kRkAuZVtgJ33uU2F6xcAWzUA==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.1.1", + "packageName": "selfsigned", + "hash": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==" + } + }, + "npm:trim-trailing-lines": { + "type": "npm", + "name": "npm:trim-trailing-lines", + "data": { + "version": "1.1.3", + "packageName": "trim-trailing-lines", + "hash": "sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA==" + } + }, + "npm:@webpack-cli/configtest": { + "type": "npm", + "name": "npm:@webpack-cli/configtest", + "data": { + "version": "1.2.0", + "packageName": "@webpack-cli/configtest", + "hash": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==" + } + }, + "npm:adm-zip": { + "type": "npm", + "name": "npm:adm-zip", + "data": { + "version": "0.5.9", + "packageName": "adm-zip", + "hash": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "15.0.5", + "packageName": "cacache", + "hash": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==" + } + }, + "npm:@types/gulp-util": { + "type": "npm", + "name": "npm:@types/gulp-util", + "data": { + "version": "3.0.36", + "packageName": "@types/gulp-util", + "hash": "sha512-hR3troWx2qr8Hx2xXSn0SijTG83WRPNgWS5/h0OtN4Eyqxi3KW1ptLp+zxnO8Z7DCZj0Ij5SSgYBHACMES4VCg==" + } + }, + "npm:@webassemblyjs/wast-printer@1.11.6": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer@1.11.6", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" + } + }, + "npm:wide-align": { + "type": "npm", + "name": "npm:wide-align", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" + } + }, + "npm:@types/copy-webpack-plugin": { + "type": "npm", + "name": "npm:@types/copy-webpack-plugin", + "data": { + "version": "6.4.0", + "packageName": "@types/copy-webpack-plugin", + "hash": "sha512-f5mQG5c7xH3zLGrEmKgzLLFSGNB7Y4+4a+a1X4DvjgfbTEWEZUNNXUqGs5tBVCtb5qKPzm2z+6ixX3xirWmOCg==" + } + }, + "npm:clsx": { + "type": "npm", + "name": "npm:clsx", + "data": { + "version": "1.1.0", + "packageName": "clsx", + "hash": "sha512-3avwM37fSK5oP6M5rQ9CNe99lwxhXDOeSWVPAOYF6OazUTgZCMb0yWlJpmdD74REy1gkEaFiub2ULv4fq9GUhA==" + } + }, + "npm:@babel/plugin-transform-regenerator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator", + "data": { + "version": "7.22.10", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==" + } + }, + "npm:global-dirs@0.1.1": { + "type": "npm", + "name": "npm:global-dirs@0.1.1", + "data": { + "version": "0.1.1", + "packageName": "global-dirs", + "hash": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=" + } + }, + "npm:@babel/polyfill": { + "type": "npm", + "name": "npm:@babel/polyfill", + "data": { + "version": "7.12.1", + "packageName": "@babel/polyfill", + "hash": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==" + } + }, + "npm:ability-attributes-generator": { + "type": "npm", + "name": "npm:ability-attributes-generator", + "data": { + "version": "0.0.8", + "packageName": "ability-attributes-generator", + "hash": "sha512-GN7lfbyOnpYXBEH2BT6e9gsXwna3v+nOfojzHTKJKuo6HiT8seCSLxqWGbxLW/RMNacqIjJ2OA04d4ufzPx9yw==" + } + }, + "npm:agentkeepalive": { + "type": "npm", + "name": "npm:agentkeepalive", + "data": { + "version": "4.2.1", + "packageName": "agentkeepalive", + "hash": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.1", + "packageName": "is-boolean-object", + "hash": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==" + } + }, + "npm:semver@7.5.2": { + "type": "npm", + "name": "npm:semver@7.5.2", + "data": { + "version": "7.5.2", + "packageName": "semver", + "hash": "sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==" + } + }, + "npm:cli-table3": { + "type": "npm", + "name": "npm:cli-table3", + "data": { + "version": "0.6.3", + "packageName": "cli-table3", + "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.4", + "packageName": "string.prototype.trimend", + "hash": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==" + } + }, + "npm:trim-repeated": { + "type": "npm", + "name": "npm:trim-repeated", + "data": { + "version": "1.0.0", + "packageName": "trim-repeated", + "hash": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=" + } + }, + "npm:@types/node-fetch": { + "type": "npm", + "name": "npm:@types/node-fetch", + "data": { + "version": "2.5.7", + "packageName": "@types/node-fetch", + "hash": "sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.1.0", + "packageName": "binary-extensions", + "hash": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==" + } + }, + "npm:fetch-retry": { + "type": "npm", + "name": "npm:fetch-retry", + "data": { + "version": "5.0.2", + "packageName": "fetch-retry", + "hash": "sha512-57Hmu+1kc6pKFUGVIobT7qw3NeAzY/uNN26bSevERLVvf6VGFR/ooDCOFBHMNDgAxBiU2YJq1D0vFzc6U1DcPw==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.1", + "packageName": "is-shared-array-buffer", + "hash": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==" + } + }, + "npm:loader-utils@1.4.2": { + "type": "npm", + "name": "npm:loader-utils@1.4.2", + "data": { + "version": "1.4.2", + "packageName": "loader-utils", + "hash": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "3.3.4", + "packageName": "minipass", + "hash": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==" + } + }, + "npm:@babel/plugin-transform-react-jsx-development": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-development", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-react-jsx-development", + "hash": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==" + } + }, + "npm:yargs@16.2.0": { + "type": "npm", + "name": "npm:yargs@16.2.0", + "data": { + "version": "16.2.0", + "packageName": "yargs", + "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" + } + }, + "npm:@jest/reporters": { + "type": "npm", + "name": "npm:@jest/reporters", + "data": { + "version": "29.7.0", + "packageName": "@jest/reporters", + "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" + } + }, + "npm:@griffel/jest-serializer": { + "type": "npm", + "name": "npm:@griffel/jest-serializer", + "data": { + "version": "1.1.16", + "packageName": "@griffel/jest-serializer", + "hash": "sha512-43EK5EdX/xsSKQl7ObLfM/IxiZU6imlkFoJj7bzsP7aykMn6xePe11oAwMcZb+lMmiP/gtEsNMvsi1UBt+6NFw==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.5", + "packageName": "is-number-object", + "hash": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" + } + }, + "npm:yargs@17.7.2": { + "type": "npm", + "name": "npm:yargs@17.7.2", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:get-own-enumerable-property-symbols": { + "type": "npm", + "name": "npm:get-own-enumerable-property-symbols", + "data": { + "version": "3.0.0", + "packageName": "get-own-enumerable-property-symbols", + "hash": "sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.3", + "packageName": "@types/range-parser", + "hash": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" + } + }, + "npm:unist-util-is@3.0.0": { + "type": "npm", + "name": "npm:unist-util-is@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "unist-util-is", + "hash": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==" + } + }, + "npm:babel-plugin-polyfill-corejs3@0.1.7": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3@0.1.7", + "data": { + "version": "0.1.7", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:builtin-modules": { + "type": "npm", + "name": "npm:builtin-modules", + "data": { + "version": "3.1.0", + "packageName": "builtin-modules", + "hash": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==" + } + }, + "npm:@griffel/style-types": { + "type": "npm", + "name": "npm:@griffel/style-types", + "data": { + "version": "1.0.1", + "packageName": "@griffel/style-types", + "hash": "sha512-nhVryiNHhoBt5L93tfDYGoE4KtWvhBvY7y1yR1n6WKpRjasgw3GI2pBwiMiVt68bycnyvXIvcJjJTr0QM22VLQ==" + } + }, + "npm:collection-visit": { + "type": "npm", + "name": "npm:collection-visit", + "data": { + "version": "1.0.0", + "packageName": "collection-visit", + "hash": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=" + } + }, + "npm:karma-coverage-istanbul-reporter": { + "type": "npm", + "name": "npm:karma-coverage-istanbul-reporter", + "data": { + "version": "3.0.3", + "packageName": "karma-coverage-istanbul-reporter", + "hash": "sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "4.7.4", + "packageName": "typescript", + "hash": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==" + } + }, + "npm:vm-browserify": { + "type": "npm", + "name": "npm:vm-browserify", + "data": { + "version": "1.1.2", + "packageName": "vm-browserify", + "hash": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "2.4.3", + "packageName": "write-file-atomic", + "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" + } + }, + "npm:void-elements": { + "type": "npm", + "name": "npm:void-elements", + "data": { + "version": "2.0.1", + "packageName": "void-elements", + "hash": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" + } + }, + "npm:@emotion/serialize@1.0.2": { + "type": "npm", + "name": "npm:@emotion/serialize@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "@emotion/serialize", + "hash": "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==" + } + }, + "npm:@babel/helper-define-polyfill-provider@0.1.5": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "data": { + "version": "0.1.5", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==" + } + }, + "npm:cheerio": { + "type": "npm", + "name": "npm:cheerio", + "data": { + "version": "1.0.0-rc.3", + "packageName": "cheerio", + "hash": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==" + } + }, + "npm:commander@2.11.0": { + "type": "npm", + "name": "npm:commander@2.11.0", + "data": { + "version": "2.11.0", + "packageName": "commander", + "hash": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + }, + "npm:detect-file": { + "type": "npm", + "name": "npm:detect-file", + "data": { + "version": "1.0.0", + "packageName": "detect-file", + "hash": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==" + } + }, + "npm:terser@4.8.0": { + "type": "npm", + "name": "npm:terser@4.8.0", + "data": { + "version": "4.8.0", + "packageName": "terser", + "hash": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==" + } + }, + "npm:trim-newlines": { + "type": "npm", + "name": "npm:trim-newlines", + "data": { + "version": "3.0.0", + "packageName": "trim-newlines", + "hash": "sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==" + } + }, + "npm:strip-bom@4.0.0": { + "type": "npm", + "name": "npm:strip-bom@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + } + }, + "npm:uuid@9.0.0": { + "type": "npm", + "name": "npm:uuid@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "uuid", + "hash": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" + } + }, + "npm:use-disposable": { + "type": "npm", + "name": "npm:use-disposable", + "data": { + "version": "1.0.1", + "packageName": "use-disposable", + "hash": "sha512-5Sle1XEmK3lw3xyGqeIY7UKkiUgF+TxwUty7fTsqM5D5AxfQfo2ft+LY9xKCA+W5YbaBFbOkWfQsZY/y5JhInA==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:react-addons-shallow-compare": { + "type": "npm", + "name": "npm:react-addons-shallow-compare", + "data": { + "version": "15.6.3", + "packageName": "react-addons-shallow-compare", + "hash": "sha512-EDJbgKTtGRLhr3wiGDXK/+AEJ59yqGS+tKE6mue0aNXT6ZMR7VJbbzIiT6akotmHg1BLj46ElJSb+NBMp80XBg==" + } + }, + "npm:lodash.template": { + "type": "npm", + "name": "npm:lodash.template", + "data": { + "version": "3.6.2", + "packageName": "lodash.template", + "hash": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=" + } + }, + "npm:ret": { + "type": "npm", + "name": "npm:ret", + "data": { + "version": "0.1.15", + "packageName": "ret", + "hash": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + } + }, + "npm:title-case": { + "type": "npm", + "name": "npm:title-case", + "data": { + "version": "2.1.1", + "packageName": "title-case", + "hash": "sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=" + } + }, + "npm:yargs-parser@18.1.3": { + "type": "npm", + "name": "npm:yargs-parser@18.1.3", + "data": { + "version": "18.1.3", + "packageName": "yargs-parser", + "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" + } + }, + "npm:make-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.5", + "packageName": "make-error", + "hash": "sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==" + } + }, + "npm:parse-json@2.2.0": { + "type": "npm", + "name": "npm:parse-json@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "parse-json", + "hash": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=" + } + }, + "npm:stack-trace": { + "type": "npm", + "name": "npm:stack-trace", + "data": { + "version": "0.0.10", + "packageName": "stack-trace", + "hash": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.5.5", + "packageName": "@types/jest", + "hash": "sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==" + } + }, + "npm:yallist@2.1.2": { + "type": "npm", + "name": "npm:yallist@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "yallist", + "hash": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==" + } + }, + "npm:d3-sankey": { + "type": "npm", + "name": "npm:d3-sankey", + "data": { + "version": "0.12.3", + "packageName": "d3-sankey", + "hash": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==" + } + }, + "npm:ext": { + "type": "npm", + "name": "npm:ext", + "data": { + "version": "1.4.0", + "packageName": "ext", + "hash": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==" + } + }, + "npm:buffer-indexof-polyfill": { + "type": "npm", + "name": "npm:buffer-indexof-polyfill", + "data": { + "version": "1.0.2", + "packageName": "buffer-indexof-polyfill", + "hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" + } + }, + "npm:extglob": { + "type": "npm", + "name": "npm:extglob", + "data": { + "version": "2.0.4", + "packageName": "extglob", + "hash": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==" + } + }, + "npm:mkdirp@1.0.4": { + "type": "npm", + "name": "npm:mkdirp@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:browser-stdout": { + "type": "npm", + "name": "npm:browser-stdout", + "data": { + "version": "1.3.1", + "packageName": "browser-stdout", + "hash": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==" + } + }, + "npm:cypress-storybook": { + "type": "npm", + "name": "npm:cypress-storybook", + "data": { + "version": "0.5.1", + "packageName": "cypress-storybook", + "hash": "sha512-+CNDdcrFD3QRvHrjwpVclFpLtseyXA0NxeB3PDTheisvg/OJjLkP96t0I9R66IkZRYUUE3mLhqZpmpsv59FIIw==" + } + }, + "npm:damerau-levenshtein": { + "type": "npm", + "name": "npm:damerau-levenshtein", + "data": { + "version": "1.0.7", + "packageName": "damerau-levenshtein", + "hash": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==" + } + }, + "npm:latest-version": { + "type": "npm", + "name": "npm:latest-version", + "data": { + "version": "3.1.0", + "packageName": "latest-version", + "hash": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=" + } + }, + "npm:parse-filepath": { + "type": "npm", + "name": "npm:parse-filepath", + "data": { + "version": "1.0.2", + "packageName": "parse-filepath", + "hash": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=" + } + }, + "npm:react-refresh": { + "type": "npm", + "name": "npm:react-refresh", + "data": { + "version": "0.11.0", + "packageName": "react-refresh", + "hash": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.5", + "packageName": "object.entries", + "hash": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "1.4.0", + "packageName": "axios", + "hash": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==" + } + }, + "npm:@storybook/csf": { + "type": "npm", + "name": "npm:@storybook/csf", + "data": { + "version": "0.0.2--canary.4566f4d.1", + "packageName": "@storybook/csf", + "hash": "sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==" + } + }, + "npm:lowlight": { + "type": "npm", + "name": "npm:lowlight", + "data": { + "version": "1.11.0", + "packageName": "lowlight", + "hash": "sha512-xrGGN6XLL7MbTMdPD6NfWPwY43SNkjf/d0mecSx/CW36fUZTjRHEq0/Cdug3TWKtRXLWi7iMl1eP0olYxj/a4A==" + } + }, + "npm:repeat-string": { + "type": "npm", + "name": "npm:repeat-string", + "data": { + "version": "1.6.1", + "packageName": "repeat-string", + "hash": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + } + }, + "npm:fs-extra@4.0.3": { + "type": "npm", + "name": "npm:fs-extra@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "fs-extra", + "hash": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==" + } + }, + "npm:console-browserify": { + "type": "npm", + "name": "npm:console-browserify", + "data": { + "version": "1.2.0", + "packageName": "console-browserify", + "hash": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + } + }, + "npm:reselect": { + "type": "npm", + "name": "npm:reselect", + "data": { + "version": "4.1.7", + "packageName": "reselect", + "hash": "sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==" + } + }, + "npm:sentence-case": { + "type": "npm", + "name": "npm:sentence-case", + "data": { + "version": "2.1.1", + "packageName": "sentence-case", + "hash": "sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ=" + } + }, + "npm:socket.io": { + "type": "npm", + "name": "npm:socket.io", + "data": { + "version": "4.5.1", + "packageName": "socket.io", + "hash": "sha512-0y9pnIso5a9i+lJmsCdtmTTgJFFSvNQKDnPQRz28mGNnxbmqYg2QPtJTLFxhymFZhAIn50eHAKzJeiNaKr+yUQ==" + } + }, + "npm:sort-css-media-queries": { + "type": "npm", + "name": "npm:sort-css-media-queries", + "data": { + "version": "1.5.4", + "packageName": "sort-css-media-queries", + "hash": "sha512-YP5W/h4Sid/YP7Lp87ejJ5jP13/Mtqt2vx33XyhO+IAugKlufRPbOrPlIiEUuxmpNBSBd3EeeQpFhdu3RfI2Ag==" + } + }, + "npm:@nx/plugin": { + "type": "npm", + "name": "npm:@nx/plugin", + "data": { + "version": "16.10.0", + "packageName": "@nx/plugin", + "hash": "sha512-oTTl+yZBfj/EBvqp8vxzE/JhavT2lWaWNKBj1B8kNOYDG041Pf6jj7GazcQmPd+g1UM96Ut0HZit/rsoJOTdvQ==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:strip-ansi@6.0.1": { + "type": "npm", + "name": "npm:strip-ansi@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:webpack-dev-middleware@5.3.1": { + "type": "npm", + "name": "npm:webpack-dev-middleware@5.3.1", + "data": { + "version": "5.3.1", + "packageName": "webpack-dev-middleware", + "hash": "sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "4.22.0", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==" + } + }, + "npm:worker-rpc": { + "type": "npm", + "name": "npm:worker-rpc", + "data": { + "version": "0.1.1", + "packageName": "worker-rpc", + "hash": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==" + } + }, + "npm:@storybook/addon-a11y": { + "type": "npm", + "name": "npm:@storybook/addon-a11y", + "data": { + "version": "6.5.15", + "packageName": "@storybook/addon-a11y", + "hash": "sha512-4IgsCU7mrfooyGSgvyQdkZVu2iGJZqZ+2GDDIzzeIs1yXvuRy6QiHYNzesSrgeL52ykDXaPGuzKu2pcMKfDQHA==" + } + }, + "npm:esbuild-linux-arm@0.14.51": { + "type": "npm", + "name": "npm:esbuild-linux-arm@0.14.51", + "data": { + "version": "0.14.51", + "packageName": "esbuild-linux-arm", + "hash": "sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==" + } + }, + "npm:@microsoft/applicationinsights-analytics-js": { + "type": "npm", + "name": "npm:@microsoft/applicationinsights-analytics-js", + "data": { + "version": "3.0.2", + "packageName": "@microsoft/applicationinsights-analytics-js", + "hash": "sha512-vrgEiT6cKC2Yb0Y6rCp9CXjFStlRZLI/IhIiBEGYaUfzoytLxUj6F/AizUDYBuNQfE+CTYe0jNyqf+RJgEMkJQ==" + } + }, + "npm:duplexer3": { + "type": "npm", + "name": "npm:duplexer3", + "data": { + "version": "0.1.4", + "packageName": "duplexer3", + "hash": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + } + }, + "npm:to-absolute-glob": { + "type": "npm", + "name": "npm:to-absolute-glob", + "data": { + "version": "2.0.2", + "packageName": "to-absolute-glob", + "hash": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=" + } + }, + "npm:ws@7.5.6": { + "type": "npm", + "name": "npm:ws@7.5.6", + "data": { + "version": "7.5.6", + "packageName": "ws", + "hash": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==" + } + }, + "npm:@pmmmwh/react-refresh-webpack-plugin": { + "type": "npm", + "name": "npm:@pmmmwh/react-refresh-webpack-plugin", + "data": { + "version": "0.5.7", + "packageName": "@pmmmwh/react-refresh-webpack-plugin", + "hash": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==" + } + }, + "npm:arr-diff@1.1.0": { + "type": "npm", + "name": "npm:arr-diff@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "arr-diff", + "hash": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=" + } + }, + "npm:stable": { + "type": "npm", + "name": "npm:stable", + "data": { + "version": "0.1.8", + "packageName": "stable", + "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + } + }, + "npm:mimic-fn@1.2.0": { + "type": "npm", + "name": "npm:mimic-fn@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "mimic-fn", + "hash": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + } + }, + "npm:promise-retry@1.1.1": { + "type": "npm", + "name": "npm:promise-retry@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "promise-retry", + "hash": "sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0=" + } + }, + "npm:remark-parse": { + "type": "npm", + "name": "npm:remark-parse", + "data": { + "version": "5.0.0", + "packageName": "remark-parse", + "hash": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==" + } + }, + "npm:babel-plugin-lodash": { + "type": "npm", + "name": "npm:babel-plugin-lodash", + "data": { + "version": "3.3.4", + "packageName": "babel-plugin-lodash", + "hash": "sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==" + } + }, + "npm:istanbul-lib-source-maps@3.0.6": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps@3.0.6", + "data": { + "version": "3.0.6", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==" + } + }, + "npm:@types/yauzl": { + "type": "npm", + "name": "npm:@types/yauzl", + "data": { + "version": "2.9.2", + "packageName": "@types/yauzl", + "hash": "sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==" + } + }, + "npm:@jest/core": { + "type": "npm", + "name": "npm:@jest/core", + "data": { + "version": "29.7.0", + "packageName": "@jest/core", + "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" + } + }, + "npm:aws-sign2": { + "type": "npm", + "name": "npm:aws-sign2", + "data": { + "version": "0.7.0", + "packageName": "aws-sign2", + "hash": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + } + }, + "npm:parse-link-header": { + "type": "npm", + "name": "npm:parse-link-header", + "data": { + "version": "2.0.0", + "packageName": "parse-link-header", + "hash": "sha512-xjU87V0VyHZybn2RrCX5TIFGxTVZE6zqqZWMPlIKiSKuWh/X5WZdt+w1Ki1nXB+8L/KtL+nZ4iq+sfI6MrhhMw==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "2.8.8", + "packageName": "prettier", + "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" + } + }, + "npm:fela-plugin-placeholder-prefixer": { + "type": "npm", + "name": "npm:fela-plugin-placeholder-prefixer", + "data": { + "version": "10.6.1", + "packageName": "fela-plugin-placeholder-prefixer", + "hash": "sha512-yZcTYsjRXjNrDFeDvML5QalgeO9hHN6sqC3geAwC44GTpaw9BG22BKiuCInvzhkSYWuT+q8XSgPrW7wDwL1TRQ==" + } + }, + "npm:path-case": { + "type": "npm", + "name": "npm:path-case", + "data": { + "version": "2.1.1", + "packageName": "path-case", + "hash": "sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU=" + } + }, + "npm:camelcase-keys": { + "type": "npm", + "name": "npm:camelcase-keys", + "data": { + "version": "6.2.2", + "packageName": "camelcase-keys", + "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" + } + }, + "npm:@webassemblyjs/wasm-parser@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:map-or-similar": { + "type": "npm", + "name": "npm:map-or-similar", + "data": { + "version": "1.5.0", + "packageName": "map-or-similar", + "hash": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=" + } + }, + "npm:json-schema-traverse@0.3.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "json-schema-traverse", + "hash": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:mocha": { + "type": "npm", + "name": "npm:mocha", + "data": { + "version": "7.2.0", + "packageName": "mocha", + "hash": "sha512-O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==" + } + }, + "npm:@testing-library/dom": { + "type": "npm", + "name": "npm:@testing-library/dom", + "data": { + "version": "8.11.3", + "packageName": "@testing-library/dom", + "hash": "sha512-9LId28I+lx70wUiZjLvi1DB/WT2zGOxUh46glrSNMaWVx849kKAluezVzZrXJfTKKoQTmEOutLes/bHg4Bj3aA==" + } + }, + "npm:npm-install-checks@6.1.1": { + "type": "npm", + "name": "npm:npm-install-checks@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "npm-install-checks", + "hash": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==" + } + }, + "npm:@types/stylis": { + "type": "npm", + "name": "npm:@types/stylis", + "data": { + "version": "4.0.0", + "packageName": "@types/stylis", + "hash": "sha512-DB1wPXVDfTTyLO9tr4wTeAptinTGd+EemFDDJTdCfsLedYXuF1mRWpJtU74Rucqx7N7HecBmMwEERbPpLt1tGA==" + } + }, + "npm:jszip": { + "type": "npm", + "name": "npm:jszip", + "data": { + "version": "3.10.1", + "packageName": "jszip", + "hash": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=" + } + }, + "npm:bluebird@3.4.7": { + "type": "npm", + "name": "npm:bluebird@3.4.7", + "data": { + "version": "3.4.7", + "packageName": "bluebird", + "hash": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" + } + }, + "npm:import-lazy": { + "type": "npm", + "name": "npm:import-lazy", + "data": { + "version": "4.0.0", + "packageName": "import-lazy", + "hash": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==" + } + }, + "npm:chalk@5.2.0": { + "type": "npm", + "name": "npm:chalk@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "chalk", + "hash": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.14.0", + "packageName": "enhanced-resolve", + "hash": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==" + } + }, + "npm:babel-preset-jest": { + "type": "npm", + "name": "npm:babel-preset-jest", + "data": { + "version": "29.6.3", + "packageName": "babel-preset-jest", + "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" + } + }, + "npm:@nx/node": { + "type": "npm", + "name": "npm:@nx/node", + "data": { + "version": "16.10.0", + "packageName": "@nx/node", + "hash": "sha512-mOGxsZzLNg9kMy/FDkCQfhb/ig3WsttHxzG9+ynCHBV5svKOIqA3F+EUp1gre6wgRyi/qrEUhk6GER5ZTX2ygw==" + } + }, + "npm:@nx/nx-darwin-arm64@16.10.0": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64@16.10.0", + "data": { + "version": "16.10.0", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==" + } + }, + "npm:d3-fetch": { + "type": "npm", + "name": "npm:d3-fetch", + "data": { + "version": "3.0.1", + "packageName": "d3-fetch", + "hash": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==" + } + }, + "npm:eslint-plugin-import": { + "type": "npm", + "name": "npm:eslint-plugin-import", + "data": { + "version": "2.25.4", + "packageName": "eslint-plugin-import", + "hash": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==" + } + }, + "npm:meow": { + "type": "npm", + "name": "npm:meow", + "data": { + "version": "8.1.2", + "packageName": "meow", + "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" + } + }, + "npm:map-visit": { + "type": "npm", + "name": "npm:map-visit", + "data": { + "version": "1.0.0", + "packageName": "map-visit", + "hash": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=" + } + }, + "npm:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:npm-bundled@3.0.0": { + "type": "npm", + "name": "npm:npm-bundled@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "npm-bundled", + "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" + } + }, + "npm:object.getownpropertydescriptors": { + "type": "npm", + "name": "npm:object.getownpropertydescriptors", + "data": { + "version": "2.0.3", + "packageName": "object.getownpropertydescriptors", + "hash": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=" + } + }, + "npm:optionator@0.9.1": { + "type": "npm", + "name": "npm:optionator@0.9.1", + "data": { + "version": "0.9.1", + "packageName": "optionator", + "hash": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + } + }, + "npm:jest-get-type@27.5.1": { + "type": "npm", + "name": "npm:jest-get-type@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-get-type", + "hash": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + }, + "npm:terser-webpack-plugin@1.4.5": { + "type": "npm", + "name": "npm:terser-webpack-plugin@1.4.5", + "data": { + "version": "1.4.5", + "packageName": "terser-webpack-plugin", + "hash": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==" + } + }, + "npm:mocked-env": { + "type": "npm", + "name": "npm:mocked-env", + "data": { + "version": "1.3.2", + "packageName": "mocked-env", + "hash": "sha512-jwm3ziowCjpbLNhUNYwn2G0tawV/ZGRuWeEGt6PItrkQT74Nk3pDldL2pmwm9sQZw6a/x+ZBGeBVYq54acTauQ==" + } + }, + "npm:time-stamp": { + "type": "npm", + "name": "npm:time-stamp", + "data": { + "version": "1.1.0", + "packageName": "time-stamp", + "hash": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, + "npm:fs-mkdirp-stream": { + "type": "npm", + "name": "npm:fs-mkdirp-stream", + "data": { + "version": "1.0.0", + "packageName": "fs-mkdirp-stream", + "hash": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=" + } + }, + "npm:@webassemblyjs/leb128@1.9.0": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128@1.9.0", + "data": { + "version": "1.9.0", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.11.0", + "packageName": "object-inspect", + "hash": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + } + }, + "npm:@sindresorhus/is@5.3.0": { + "type": "npm", + "name": "npm:@sindresorhus/is@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==" + } + }, + "npm:immer": { + "type": "npm", + "name": "npm:immer", + "data": { + "version": "9.0.12", + "packageName": "immer", + "hash": "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" + } + }, + "npm:@charlietango/use-client-hydrated": { + "type": "npm", + "name": "npm:@charlietango/use-client-hydrated", + "data": { + "version": "1.8.2", + "packageName": "@charlietango/use-client-hydrated", + "hash": "sha512-Wlr6MvlCvmPVwAW8Hc/UZaAnNAKfRs2h3vkOFMFSqhaiQp+zix/ZQd+LhoY4iRGJNMhtNuOnht1ShOAz4odTIQ==" + } + }, + "npm:has-value@0.3.1": { + "type": "npm", + "name": "npm:has-value@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "has-value", + "hash": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=" + } + }, + "npm:is-fullwidth-code-point@2.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + } + }, + "npm:whatwg-url@7.0.0": { + "type": "npm", + "name": "npm:whatwg-url@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "whatwg-url", + "hash": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + } + }, + "npm:identity-obj-proxy": { + "type": "npm", + "name": "npm:identity-obj-proxy", + "data": { + "version": "3.0.0", + "packageName": "identity-obj-proxy", + "hash": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=" + } + }, + "npm:minipass@2.9.0": { + "type": "npm", + "name": "npm:minipass@2.9.0", + "data": { + "version": "2.9.0", + "packageName": "minipass", + "hash": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==" + } + }, + "npm:@emotion/css": { + "type": "npm", + "name": "npm:@emotion/css", + "data": { + "version": "10.0.27", + "packageName": "@emotion/css", + "hash": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==" + } + }, + "npm:pascalcase": { + "type": "npm", + "name": "npm:pascalcase", + "data": { + "version": "0.1.1", + "packageName": "pascalcase", + "hash": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + } + }, + "npm:d3-path": { + "type": "npm", + "name": "npm:d3-path", + "data": { + "version": "1.0.7", + "packageName": "d3-path", + "hash": "sha512-q0cW1RpvA5c5ma2rch62mX8AYaiLX0+bdaSM2wxSU9tXjU4DNvkx9qiUvjkuWCj3p22UO/hlPivujqMiR9PDzA==" + } + }, + "npm:@effect/match": { + "type": "npm", + "name": "npm:@effect/match", + "data": { + "version": "0.24.4", + "packageName": "@effect/match", + "hash": "sha512-oo0uzazHhlDm4shxiMQep5osHsEZmBX6uhB9GM2RXseDahwsKrOp5Q3cMr/J4ZfhruH/0/o7GEhLLHxpwhEtuA==" + } + }, + "npm:jest-axe": { + "type": "npm", + "name": "npm:jest-axe", + "data": { + "version": "6.0.1", + "packageName": "jest-axe", + "hash": "sha512-+KcRAdZeKXBbtHTmMkokRq5/hXHaVFpX+WS2o3uvhkmF3szdr4+TYAz+QuOTeM0B1d4YPoNmQWhGzSzxHJNZrA==" + } + }, + "npm:jest-worker@26.6.2": { + "type": "npm", + "name": "npm:jest-worker@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "jest-worker", + "hash": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==" + } + }, + "npm:@babel/plugin-transform-reserved-words": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==" + } + }, + "npm:boxen@1.3.0": { + "type": "npm", + "name": "npm:boxen@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "boxen", + "hash": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==" + } + }, + "npm:ignore@4.0.6": { + "type": "npm", + "name": "npm:ignore@4.0.6", + "data": { + "version": "4.0.6", + "packageName": "ignore", + "hash": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + } + }, + "npm:jsbn": { + "type": "npm", + "name": "npm:jsbn", + "data": { + "version": "0.1.1", + "packageName": "jsbn", + "hash": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + } + }, + "npm:rst-selector-parser": { + "type": "npm", + "name": "npm:rst-selector-parser", + "data": { + "version": "2.2.3", + "packageName": "rst-selector-parser", + "hash": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=" + } + }, + "npm:stream-shift": { + "type": "npm", + "name": "npm:stream-shift", + "data": { + "version": "1.0.0", + "packageName": "stream-shift", + "hash": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" + } + }, + "npm:through2-filter": { + "type": "npm", + "name": "npm:through2-filter", + "data": { + "version": "3.0.0", + "packageName": "through2-filter", + "hash": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==" + } + }, + "npm:resolve@1.1.7": { + "type": "npm", + "name": "npm:resolve@1.1.7", + "data": { + "version": "1.1.7", + "packageName": "resolve", + "hash": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" + } + }, + "npm:@esbuild/linux-loong64@0.19.2": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.19.2", + "data": { + "version": "0.19.2", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-hn28+JNDTxxCpnYjdDYVMNTR3SKavyLlCHHkufHV91fkewpIyQchS1d8wSbmXhs1fiYDpNww8KTFlJ1dHsxeSw==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:d3-format": { + "type": "npm", + "name": "npm:d3-format", + "data": { + "version": "1.4.4", + "packageName": "d3-format", + "hash": "sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw==" + } + }, + "npm:eslint-plugin-jsdoc": { + "type": "npm", + "name": "npm:eslint-plugin-jsdoc", + "data": { + "version": "39.9.1", + "packageName": "eslint-plugin-jsdoc", + "hash": "sha512-Rq2QY6BZP2meNIs48aZ3GlIlJgBqFCmR55+UBvaDkA3ZNQ0SvQXOs2QKkubakEijV8UbIVbVZKsOVN8G3MuqZw==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:set-value": { + "type": "npm", + "name": "npm:set-value", + "data": { + "version": "2.0.1", + "packageName": "set-value", + "hash": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.4.2", + "packageName": "cookie", + "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" + } + }, + "npm:unist-util-stringify-position": { + "type": "npm", + "name": "npm:unist-util-stringify-position", + "data": { + "version": "1.1.2", + "packageName": "unist-util-stringify-position", + "hash": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + } + }, + "npm:lru-cache@10.0.1": { + "type": "npm", + "name": "npm:lru-cache@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "lru-cache", + "hash": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==" + } + }, + "npm:override-require": { + "type": "npm", + "name": "npm:override-require", + "data": { + "version": "1.1.1", + "packageName": "override-require", + "hash": "sha1-auIvresfhQ/7DPTCD/e4fl62UN8=" + } + }, + "npm:camelcase-css": { + "type": "npm", + "name": "npm:camelcase-css", + "data": { + "version": "2.0.1", + "packageName": "camelcase-css", + "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:@storybook/components": { + "type": "npm", + "name": "npm:@storybook/components", + "data": { + "version": "6.5.15", + "packageName": "@storybook/components", + "hash": "sha512-bHTT0Oa3s4g+MBMaLBbX9ofMtb1AW59AzIUNGrfqW1XqJMGuUHMiJ7TSo+i5dRSFpbFygnwMEG9LfHxpR2Z0Dw==" + } + }, + "npm:async-each": { + "type": "npm", + "name": "npm:async-each", + "data": { + "version": "1.0.3", + "packageName": "async-each", + "hash": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:form-data@3.0.0": { + "type": "npm", + "name": "npm:form-data@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "form-data", + "hash": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==" + } + }, + "npm:htmlparser2@6.1.0": { + "type": "npm", + "name": "npm:htmlparser2@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "htmlparser2", + "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" + } + }, + "npm:@types/karma": { + "type": "npm", + "name": "npm:@types/karma", + "data": { + "version": "6.3.3", + "packageName": "@types/karma", + "hash": "sha512-nRMec4mTCt+tkpRqh5/pAxmnjzEgAaalIq7mdfLFH88gSRC8+bxejLiSjHMMT/vHIhJHqg4GPIGCnCFbwvDRww==" + } + }, + "npm:async@3.2.3": { + "type": "npm", + "name": "npm:async@3.2.3", + "data": { + "version": "3.2.3", + "packageName": "async", + "hash": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + } + }, + "npm:@phenomnomnominal/tsquery": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery", + "data": { + "version": "6.1.2", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-NahxUvas4D4iRV1NqlL6Z3mIl2Fo+rw1x77wgZpYyaQjQnS4svv6XoVzjcRRtnP5cfY6XuVKLZki8Zltkz8z0w==" + } + }, + "npm:command-line-usage": { + "type": "npm", + "name": "npm:command-line-usage", + "data": { + "version": "6.1.3", + "packageName": "command-line-usage", + "hash": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:chalk@1.1.3": { + "type": "npm", + "name": "npm:chalk@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "chalk", + "hash": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=" + } + }, + "npm:is-fullwidth-code-point@1.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:jest-environment-node": { + "type": "npm", + "name": "npm:jest-environment-node", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-node", + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" + } + }, + "npm:lodash.find": { + "type": "npm", + "name": "npm:lodash.find", + "data": { + "version": "4.6.0", + "packageName": "lodash.find", + "hash": "sha1-ywcE1Hq3F4n/oN6Ll92Sb7iLE7E=" + } + }, + "npm:cli-table": { + "type": "npm", + "name": "npm:cli-table", + "data": { + "version": "0.3.1", + "packageName": "cli-table", + "hash": "sha1-9TsFJmqLGguTSz0IIebi3FkUriM=" + } + }, + "npm:buffer-equal": { + "type": "npm", + "name": "npm:buffer-equal", + "data": { + "version": "1.0.0", + "packageName": "buffer-equal", + "hash": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "3.0.6", + "packageName": "nopt", + "hash": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=" + } + }, + "npm:parallel-webpack": { + "type": "npm", + "name": "npm:parallel-webpack", + "data": { + "version": "2.6.0", + "packageName": "parallel-webpack", + "hash": "sha512-aOOLfQ40yWWRt8214F0zNWp0DWbeCs7tJaEur0/XUlYU8Yht1sMTYt+eNrbY4VkM4O/SRSme7cdZJTtIantiOw==" + } + }, + "npm:is-extendable@1.0.1": { + "type": "npm", + "name": "npm:is-extendable@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-extendable", + "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" + } + }, + "npm:@npmcli/promise-spawn@6.0.2": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==" + } + }, + "npm:please-upgrade-node": { + "type": "npm", + "name": "npm:please-upgrade-node", + "data": { + "version": "3.2.0", + "packageName": "please-upgrade-node", + "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" + } + }, + "npm:@types/react-dom": { + "type": "npm", + "name": "npm:@types/react-dom", + "data": { + "version": "17.0.15", + "packageName": "@types/react-dom", + "hash": "sha512-Tr9VU9DvNoHDWlmecmcsE5ZZiUkYx+nKBzum4Oxe1K0yJVyBlfbq7H3eXjxXqJczBKqPGq3EgfTru4MgKb9+Yw==" + } + }, + "npm:good-listener": { + "type": "npm", + "name": "npm:good-listener", + "data": { + "version": "1.2.2", + "packageName": "good-listener", + "hash": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=" + } + }, + "npm:pretty-format@27.5.1": { + "type": "npm", + "name": "npm:pretty-format@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "pretty-format", + "hash": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==" + } + }, + "npm:react-router-dom": { + "type": "npm", + "name": "npm:react-router-dom", + "data": { + "version": "5.2.0", + "packageName": "react-router-dom", + "hash": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==" + } + }, + "npm:resolve-pathname": { + "type": "npm", + "name": "npm:resolve-pathname", + "data": { + "version": "3.0.0", + "packageName": "resolve-pathname", + "hash": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + } + }, + "npm:p-defer": { + "type": "npm", + "name": "npm:p-defer", + "data": { + "version": "1.0.0", + "packageName": "p-defer", + "hash": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" + } + }, + "npm:resolve@1.17.0": { + "type": "npm", + "name": "npm:resolve@1.17.0", + "data": { + "version": "1.17.0", + "packageName": "resolve", + "hash": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==" + } + }, + "npm:slash@2.0.0": { + "type": "npm", + "name": "npm:slash@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "slash", + "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "1.8.1", + "packageName": "http-errors", + "hash": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:supports-hyperlinks@2.2.0": { + "type": "npm", + "name": "npm:supports-hyperlinks@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==" + } + }, + "npm:fs-extra@9.1.0": { + "type": "npm", + "name": "npm:fs-extra@9.1.0", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:tabster": { + "type": "npm", + "name": "npm:tabster", + "data": { + "version": "5.0.1", + "packageName": "tabster", + "hash": "sha512-j5GGbN214MiPihGKemENq+fAHKoEpKZvVKakG/reUk3u+dPm/xvmlxYCQY8XayzxpvEu0i/6cMYjBMsEjcvdgA==" + } + }, + "npm:string_decoder@0.10.31": { + "type": "npm", + "name": "npm:string_decoder@0.10.31", + "data": { + "version": "0.10.31", + "packageName": "string_decoder", + "hash": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + }, + "npm:abab": { + "type": "npm", + "name": "npm:abab", + "data": { + "version": "2.0.6", + "packageName": "abab", + "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + } + }, + "npm:karma-chrome-launcher": { + "type": "npm", + "name": "npm:karma-chrome-launcher", + "data": { + "version": "3.1.1", + "packageName": "karma-chrome-launcher", + "hash": "sha512-hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "10.9.1", + "packageName": "ts-node", + "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "8.3.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "29.6.3", + "packageName": "@jest/schemas", + "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" + } + }, + "npm:pretty-bytes@6.1.1": { + "type": "npm", + "name": "npm:pretty-bytes@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "pretty-bytes", + "hash": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==" + } + }, + "npm:hosted-git-info@2.8.9": { + "type": "npm", + "name": "npm:hosted-git-info@2.8.9", + "data": { + "version": "2.8.9", + "packageName": "hosted-git-info", + "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + } + }, + "npm:https-browserify": { + "type": "npm", + "name": "npm:https-browserify", + "data": { + "version": "1.0.0", + "packageName": "https-browserify", + "hash": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "1.4.3", + "packageName": "webpack-sources", + "hash": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==" + } + }, + "npm:@babel/helper-plugin-utils@7.10.4": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils@7.10.4", + "data": { + "version": "7.10.4", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:jsesc@0.5.0": { + "type": "npm", + "name": "npm:jsesc@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + }, + "npm:log-symbols@3.0.0": { + "type": "npm", + "name": "npm:log-symbols@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "log-symbols", + "hash": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==" + } + }, + "npm:sanitize-filename": { + "type": "npm", + "name": "npm:sanitize-filename", + "data": { + "version": "1.6.3", + "packageName": "sanitize-filename", + "hash": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==" + } + }, + "npm:is-valid-glob": { + "type": "npm", + "name": "npm:is-valid-glob", + "data": { + "version": "1.0.0", + "packageName": "is-valid-glob", + "hash": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" + } + }, + "npm:is-dom": { + "type": "npm", + "name": "npm:is-dom", + "data": { + "version": "1.1.0", + "packageName": "is-dom", + "hash": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==" + } + }, + "npm:yargs@15.4.1": { + "type": "npm", + "name": "npm:yargs@15.4.1", + "data": { + "version": "15.4.1", + "packageName": "yargs", + "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" + } + }, + "npm:gauge@3.0.2": { + "type": "npm", + "name": "npm:gauge@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "gauge", + "hash": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==" + } + } + }, + "dependencies": { + "@fluentui/react-storybook-addon-export-to-sandbox": [ + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "npm:@types/dedent", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "npm:codesandbox-import-utils", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "@fluentui/babel-preset-storybook-full-source", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon-export-to-sandbox", + "target": "npm:@storybook/addons", + "type": "static" + } + ], + "@fluentui/babel-preset-storybook-full-source": [ + { + "source": "@fluentui/babel-preset-storybook-full-source", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-storybook-full-source", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-storybook-full-source", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-storybook-full-source", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-storybook-full-source", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-storybook-full-source", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-storybook-full-source", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-timepicker-compat-preview": [ + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/react-combobox", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-teaching-popover-preview": [ + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-popover", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-teaching-popover-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/babel-preset-global-context": [ + { + "source": "@fluentui/babel-preset-global-context", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "npm:@emotion/hash", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/babel-preset-global-context", + "target": "@fluentui/global-context", + "type": "static" + } + ], + "@fluentui/react-portal-compat-context": [ + { + "source": "@fluentui/react-portal-compat-context", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat-context", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat-context", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat-context", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat-context", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat-context", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-swatch-picker-preview": [ + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-swatch-picker-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-conformance-griffel": [ + { + "source": "@fluentui/react-conformance-griffel", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-conformance-griffel", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-conformance-griffel", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-conformance-griffel", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-conformance-griffel", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-conformance-griffel", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-conformance-griffel", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-conformance-griffel", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-conformance-griffel", + "target": "npm:typescript", + "type": "static" + } + ], + "@fluentui/react-component-nesting-registry": [ + { + "source": "@fluentui/react-component-nesting-registry", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-component-nesting-registry", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "@fluentui/react-component-nesting-registry", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-component-nesting-registry", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-component-nesting-registry", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-component-nesting-registry", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-component-nesting-registry", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-component-nesting-registry", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-component-nesting-registry", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-northstar-emotion-renderer": [ + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:@emotion/cache", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:@emotion/serialize", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:@emotion/sheet", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "@fluentui/react-northstar-styles-renderer", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "@fluentui/styles", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:stylis-plugin-rtl", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:@types/stylis", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-emotion-renderer", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-colorpicker-compat": [ + { + "source": "@fluentui/react-colorpicker-compat", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-colorpicker-compat", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-northstar-styles-renderer": [ + { + "source": "@fluentui/react-northstar-styles-renderer", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-styles-renderer", + "target": "@fluentui/styles", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-styles-renderer", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-styles-renderer", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-styles-renderer", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-styles-renderer", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-styles-renderer", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-datepicker-compat": [ + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-calendar-compat", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-input", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-popover", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-positioning", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-datepicker-compat", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-timepicker-compat": [ + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/react-combobox", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-timepicker-compat", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-context-selector": [ + { + "source": "@fluentui/react-context-selector", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-context-selector", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/react-component-event-listener": [ + { + "source": "@fluentui/react-component-event-listener", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "npm:@types/simulant", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "npm:simulant", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-component-event-listener", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-northstar-fela-renderer": [ + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "@fluentui/react-northstar-styles-renderer", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "@fluentui/styles", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:fela", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:fela-dom", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:fela-plugin-embedded", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:fela-plugin-fallback-value", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:fela-plugin-placeholder-prefixer", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:fela-plugin-rtl", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:fela-tools", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:fela-utils", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:inline-style-expand-shorthand", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:react-fela", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-fela-renderer", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-motions-preview": [ + { + "source": "@fluentui/react-motions-preview", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-motions-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-migration-v0-v9": [ + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "@fluentui/scripts-storybook", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v0-v9", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-calendar-compat": [ + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-calendar-compat", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-shared-contexts": [ + { + "source": "@fluentui/react-shared-contexts", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-shared-contexts", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-shared-contexts", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-shared-contexts", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-shared-contexts", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-shared-contexts", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-shared-contexts", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-migration-v8-v9": [ + { + "source": "@fluentui/react-migration-v8-v9", + "target": "npm:@ctrl/tinycolor", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/fluent2-theme", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-migration-v8-v9", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-storybook-addon": [ + { + "source": "@fluentui/react-storybook-addon", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "@fluentui/react-provider", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "@fluentui/react-storybook-addon", + "target": "npm:@storybook/theming", + "type": "static" + } + ], + "@fluentui/react-motion-preview": [ + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-motion-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-rating-preview": [ + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-rating-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-search-preview": [ + { + "source": "@fluentui/react-search-preview", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/react-input", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-search-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-portal-compat": [ + { + "source": "@fluentui/react-portal-compat", + "target": "@fluentui/react-portal-compat-context", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-portal-compat", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-northstar-prototypes": [ + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/accessibility", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/code-sandbox", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/docs-components", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/react-bindings", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/react-component-event-listener", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/react-component-ref", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/react-icons-northstar", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:classnames", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:copy-to-clipboard", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:faker", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:formik", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:moment", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:react-custom-scrollbars", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:react-document-title", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:react-hook-form", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:react-textarea-autosize", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:react-virtualized", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:react-window", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:@types/classnames", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:@types/faker", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:@types/react-custom-scrollbars", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:@types/react-virtualized", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:@types/react-window", + "type": "static" + }, + { + "source": "@fluentui/react-northstar-prototypes", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-list-preview": [ + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-list-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/priority-overflow": [ + { + "source": "@fluentui/priority-overflow", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/priority-overflow", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/priority-overflow", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/priority-overflow", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-nav-preview": [ + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-nav-preview", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-positioning": [ + { + "source": "@fluentui/react-positioning", + "target": "npm:@floating-ui/dom", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "npm:@floating-ui/devtools", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-positioning", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-virtualizer": [ + { + "source": "@fluentui/react-virtualizer", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-virtualizer", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-jsx-runtime": [ + { + "source": "@fluentui/react-jsx-runtime", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-jsx-runtime", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-message-bar": [ + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "npm:react-transition-group", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-message-bar", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-infobutton": [ + { + "source": "@fluentui/react-infobutton", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/react-popover", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-infobutton", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-breadcrumb": [ + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-link", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-breadcrumb", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-spinbutton": [ + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-spinbutton", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-components": [ + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-accordion", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-alert", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-avatar", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-badge", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-card", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-checkbox", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-combobox", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-dialog", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-divider", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-drawer", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-image", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-infobutton", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-infolabel", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-input", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-link", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-menu", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-overflow", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-persona", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-popover", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-positioning", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-progress", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-provider", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-radio", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-select", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-skeleton", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-slider", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-spinbutton", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-spinner", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-switch", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-table", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-tabs", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-tags", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-textarea", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-toast", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-toolbar", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-tooltip", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-text", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-virtualizer", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-tree", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-message-bar", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/react-breadcrumb", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "npm:react-hook-form", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-components", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/react-theme-sass": [ + { + "source": "@fluentui/react-theme-sass", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-theme-sass", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-theme-sass", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-theme-sass", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-theme-sass", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-accordion": [ + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-accordion", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/react-utilities": [ + { + "source": "@fluentui/react-utilities", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-utilities", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-utilities", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-utilities", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-utilities", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-utilities", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-utilities", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-utilities", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-infolabel": [ + { + "source": "@fluentui/react-infolabel", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/react-popover", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-infolabel", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-skeleton": [ + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-skeleton", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-textarea": [ + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-textarea", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-checkbox": [ + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-checkbox", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-overflow": [ + { + "source": "@fluentui/react-overflow", + "target": "@fluentui/priority-overflow", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-overflow", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/global-context": [ + { + "source": "@fluentui/global-context", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/global-context", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/react-provider": [ + { + "source": "@fluentui/react-provider", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-provider", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-progress": [ + { + "source": "@fluentui/react-progress", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-progress", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-combobox": [ + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-positioning", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-combobox", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/theme-designer": [ + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/react-alert", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/react-storybook-addon-export-to-sandbox", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:@types/dedent", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:codesandbox-import-utils", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/theme-designer", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-tooltip": [ + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-positioning", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-tooltip", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/keyboard-keys": [ + { + "source": "@fluentui/keyboard-keys", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/keyboard-keys", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/keyboard-keys", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/keyboard-keys", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-toolbar": [ + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-divider", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-radio", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-toolbar", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-popover": [ + { + "source": "@fluentui/react-popover", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-positioning", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-popover", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/react-icons-northstar": [ + { + "source": "@fluentui/react-icons-northstar", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "@fluentui/accessibility", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "@fluentui/react-bindings", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "@fluentui/styles", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "npm:classnames", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "npm:@types/classnames", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-icons-northstar", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-divider": [ + { + "source": "@fluentui/react-divider", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-divider", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-tabster": [ + { + "source": "@fluentui/react-tabster", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "npm:keyborg", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "npm:tabster", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-tabster", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-persona": [ + { + "source": "@fluentui/react-persona", + "target": "@fluentui/react-avatar", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/react-badge", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-persona", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-spinner": [ + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-spinner", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-drawer": [ + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-dialog", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-motion-preview", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-drawer", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-button": [ + { + "source": "@fluentui/react-button", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/a11y-testing", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-button", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-slider": [ + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-slider", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-select": [ + { + "source": "@fluentui/react-select", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-select", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-switch": [ + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-switch", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-dialog": [ + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "npm:react-transition-group", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-dialog", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-avatar": [ + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-badge", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-popover", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-tooltip", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-avatar", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/react-portal": [ + { + "source": "@fluentui/react-portal", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "npm:use-disposable", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-portal", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-table": [ + { + "source": "@fluentui/react-table", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-avatar", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-checkbox", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-radio", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-table", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-badge": [ + { + "source": "@fluentui/react-badge", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-badge", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/perf-test-northstar": [ + { + "source": "@fluentui/perf-test-northstar", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/perf-test-northstar", + "target": "@fluentui/react-northstar-prototypes", + "type": "static" + }, + { + "source": "@fluentui/perf-test-northstar", + "target": "@fluentui/digest", + "type": "static" + }, + { + "source": "@fluentui/perf-test-northstar", + "target": "npm:flamegrill", + "type": "static" + }, + { + "source": "@fluentui/perf-test-northstar", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-field": [ + { + "source": "@fluentui/react-field", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-field", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-theme": [ + { + "source": "@fluentui/react-theme", + "target": "@fluentui/tokens", + "type": "static" + }, + { + "source": "@fluentui/react-theme", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-theme", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-theme", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-theme", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-alert": [ + { + "source": "@fluentui/react-alert", + "target": "@fluentui/react-avatar", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-alert", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-label": [ + { + "source": "@fluentui/react-label", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-label", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-toast": [ + { + "source": "@fluentui/react-toast", + "target": "npm:react-transition-group", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-toast", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-input": [ + { + "source": "@fluentui/react-input", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/react-text", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-input", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-image": [ + { + "source": "@fluentui/react-image", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-image", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-component-ref": [ + { + "source": "@fluentui/react-component-ref", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-component-ref", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "@fluentui/react-component-ref", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-component-ref", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-component-ref", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-component-ref", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-component-ref", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-component-ref", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-component-ref", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/jest-serializer-merge-styles": [ + { + "source": "@fluentui/jest-serializer-merge-styles", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/jest-serializer-merge-styles", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/jest-serializer-merge-styles", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/jest-serializer-merge-styles", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-radio": [ + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-radio", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/react-text": [ + { + "source": "@fluentui/react-text", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-text", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-menu": [ + { + "source": "@fluentui/react-menu", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-positioning", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-menu", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/react-aria": [ + { + "source": "@fluentui/react-aria", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-aria", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-tree": [ + { + "source": "@fluentui/react-tree", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-avatar", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-checkbox", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-radio", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:@dnd-kit/core", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:@dnd-kit/sortable", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:@dnd-kit/utilities", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-tree", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/ability-attributes": [ + { + "source": "@fluentui/ability-attributes", + "target": "npm:ability-attributes", + "type": "static" + }, + { + "source": "@fluentui/ability-attributes", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/ability-attributes", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/ability-attributes", + "target": "npm:ability-attributes-generator", + "type": "static" + } + ], + "@fluentui/react-tags": [ + { + "source": "@fluentui/react-tags", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-aria", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-avatar", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-tags", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-tabs": [ + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-tabs", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/ts-minbar-test-react-components": [ + { + "source": "@fluentui/ts-minbar-test-react-components", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/ts-minbar-test-react-components", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/ts-minbar-test-react-components", + "target": "@fluentui/scripts-projects-test", + "type": "static" + } + ], + "@fluentui/react-link": [ + { + "source": "@fluentui/react-link", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/a11y-testing", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-link", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-card": [ + { + "source": "@fluentui/react-card", + "target": "@fluentui/keyboard-keys", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/react-tabster", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/react-jsx-runtime", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/react-conformance-griffel", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-card", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/docs-components": [ + { + "source": "@fluentui/docs-components", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:copy-to-clipboard", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:prismjs", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:react-ace", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:react-codesandboxer", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:react-element-to-jsx-string", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/docs-components", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-icons-mdl2-branded": [ + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "@fluentui/react-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2-branded", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-docsite-components": [ + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/theme", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/example-data", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/public-docsite-setup", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/react-hooks", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/react-monaco-editor", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:color-check", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:markdown-to-jsx", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:office-ui-fabric-core", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:react-custom-scrollbars", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:react-syntax-highlighter", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/common-styles", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:@types/color-check", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:@types/react-custom-scrollbars", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-docsite-components", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-proptypes": [ + { + "source": "@fluentui/react-proptypes", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-proptypes", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/react-proptypes", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "@fluentui/react-proptypes", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-proptypes", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-proptypes", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-proptypes", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-proptypes", + "target": "npm:lerna-alias", + "type": "static" + } + ], + "@fluentui/react-telemetry": [ + { + "source": "@fluentui/react-telemetry", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "@fluentui/react-bindings", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "@fluentui/react-component-event-listener", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "npm:react-table", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "npm:@types/react-table", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-telemetry", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-northstar": [ + { + "source": "@fluentui/react-northstar", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/accessibility", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/dom-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-bindings", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-component-event-listener", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-component-nesting-registry", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-component-ref", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-icons-northstar", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-northstar-styles-renderer", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-portal-compat-context", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-proptypes", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/state", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/styles", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:@popperjs/core", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:body-scroll-lock", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:classnames", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:compute-scroll-into-view", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:downshift", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:react-transition-group", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/a11y-testing", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:@types/classnames", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:@types/faker", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:@types/simulant", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:faker", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:fela-tools", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:qs", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:simulant", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-northstar", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-bindings": [ + { + "source": "@fluentui/react-bindings", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/accessibility", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/dom-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/react-component-event-listener", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/react-component-ref", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/react-northstar-fela-renderer", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/react-northstar-styles-renderer", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/state", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/styles", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:classnames", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:@types/classnames", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-bindings", + "target": "npm:scheduler", + "type": "static" + } + ], + "@fluentui/circulars-test": [ + { + "source": "@fluentui/circulars-test", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/circulars-test", + "target": "@fluentui/scripts-gulp", + "type": "static" + } + ], + "@fluentui/accessibility": [ + { + "source": "@fluentui/accessibility", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/accessibility", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/accessibility", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/accessibility", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/accessibility", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/accessibility", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/accessibility", + "target": "npm:lerna-alias", + "type": "static" + } + ], + "@fluentui/local-sandbox": [ + { + "source": "@fluentui/local-sandbox", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/local-sandbox", + "target": "@fluentui/scripts-babel", + "type": "static" + } + ], + "@fluentui/perf-test-react-components": [ + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/scripts-perf-test-flamegrill", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/react-avatar", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/react-persona", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/react-provider", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/react-spinbutton", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/perf-test-react-components", + "target": "@fluentui/scripts-storybook", + "type": "static" + } + ], + "@fluentui/react-builder": [ + { + "source": "@fluentui/react-builder", + "target": "@fluentui/accessibility", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/code-sandbox", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/docs-components", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/react-component-event-listener", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/react-component-ref", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/react-icons-northstar", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:immer", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:lz-string", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:react-document-title", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:react-frame-component", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:use-immer", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:@types/react-frame-component", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:@babel/standalone", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-builder", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/projects-test": [ + { + "source": "@fluentui/projects-test", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/projects-test", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/projects-test", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/projects-test", + "target": "@fluentui/scripts-projects-test", + "type": "static" + } + ], + "@fluentui/react-file-type-icons": [ + { + "source": "@fluentui/react-file-type-icons", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-file-type-icons", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-file-type-icons", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-file-type-icons", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-file-type-icons", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-file-type-icons", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-file-type-icons", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-file-type-icons", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/vr-tests-react-components": [ + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-accordion", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-avatar", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-badge", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-button", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-calendar-compat", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-card", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-checkbox", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-combobox", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-context-selector", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-datepicker-compat", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-dialog", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-divider", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-drawer", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-field", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-image", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-infolabel", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-input", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-label", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-link", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-menu", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-message-bar", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-persona", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-popover", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-portal", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-positioning", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-progress", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-provider", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-radio", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-search-preview", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-select", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-shared-contexts", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-skeleton", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-slider", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-spinner", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-spinbutton", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-storybook-addon", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-storybook-addon-export-to-sandbox", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-switch", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-table", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-tabs", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-tags", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-text", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-textarea", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-timepicker-compat-preview", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-toast", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-tooltip", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-toolbar", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-tree", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/react-breadcrumb", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/vr-tests-react-components", + "target": "@fluentui/scripts-storybook", + "type": "static" + } + ], + "@fluentui/react-window-provider": [ + { + "source": "@fluentui/react-window-provider", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-window-provider", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-window-provider", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-window-provider", + "target": "@fluentui/test-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-window-provider", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-window-provider", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-window-provider", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-window-provider", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-window-provider", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/code-sandbox": [ + { + "source": "@fluentui/code-sandbox", + "target": "@fluentui/docs-components", + "type": "static" + }, + { + "source": "@fluentui/code-sandbox", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/code-sandbox", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/code-sandbox", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/code-sandbox", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/code-sandbox", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/code-sandbox", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/code-sandbox", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/public-docsite-setup": [ + { + "source": "@fluentui/public-docsite-setup", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-setup", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/recipes-react-components": [ + { + "source": "@fluentui/recipes-react-components", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "@fluentui/react-theme", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "@fluentui/react-provider", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "@fluentui/react-storybook-addon", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "@fluentui/react-storybook-addon-export-to-sandbox", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/recipes-react-components", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/public-docsite-resources": [ + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/react-charting", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/react-examples", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/azure-themes", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/react-docsite-components", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/font-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/theme-samples", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/react-monaco-editor", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "npm:office-ui-fabric-core", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/api-docs", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-resources", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/scripts-update-release-notes": [ + { + "source": "@fluentui/scripts-update-release-notes", + "target": "@fluentui/scripts-github", + "type": "static" + } + ], + "@fluentui/react-monaco-editor": [ + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/example-data", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/monaco-editor", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/react-hooks", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/react-charting", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:raw-loader", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:react-syntax-highlighter", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:@types/react-syntax-highlighter", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-monaco-editor", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-icon-provider": [ + { + "source": "@fluentui/react-icon-provider", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-icon-provider", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/scripts-perf-test-flamegrill": [ + { + "source": "@fluentui/scripts-perf-test-flamegrill", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/scripts-perf-test-flamegrill", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/scripts-perf-test-flamegrill", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/scripts-perf-test-flamegrill", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/scripts-perf-test-flamegrill", + "target": "npm:webpack", + "type": "static" + } + ], + "@fluentui/date-time-utilities": [ + { + "source": "@fluentui/date-time-utilities", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/date-time-utilities", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/date-time-utilities", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/date-time-utilities", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/date-time-utilities", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/date-time-utilities", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/scripts-bundle-size-auditor": [], + "@fluentui/react-experiments": [ + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/theme", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/example-data", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/foundation-legacy", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/font-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/react-hooks", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:deep-assign", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/common-styles", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:@types/deep-assign", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:@types/react-addons-test-utils", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/jest-serializer-merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:react-hooks-testing-library", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-experiments", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/webpack-utilities": [ + { + "source": "@fluentui/webpack-utilities", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "@fluentui/webpack-utilities", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/webpack-utilities", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/webpack-utilities", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/webpack-utilities", + "target": "npm:webpack", + "type": "static" + } + ], + "@fluentui/react-conformance": [ + { + "source": "@fluentui/react-conformance", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:react-docgen-typescript", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:@testing-library/react", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:jest", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-conformance", + "target": "npm:typescript", + "type": "static" + } + ], + "@fluentui/foundation-legacy": [ + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/jest-serializer-merge-styles", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "npm:react-hooks-testing-library", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/foundation-legacy", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/scheme-utilities": [ + { + "source": "@fluentui/scheme-utilities", + "target": "@fluentui/theme", + "type": "static" + }, + { + "source": "@fluentui/scheme-utilities", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/scheme-utilities", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/scheme-utilities", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/scheme-utilities", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/scheme-utilities", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/ts-minbar-test-react": [ + { + "source": "@fluentui/ts-minbar-test-react", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/ts-minbar-test-react", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/ts-minbar-test-react", + "target": "@fluentui/scripts-projects-test", + "type": "static" + } + ], + "@fluentui/react-icons-mdl2": [ + { + "source": "@fluentui/react-icons-mdl2", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "@fluentui/react-icon-provider", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-icons-mdl2", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-date-time": [ + { + "source": "@fluentui/react-date-time", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-date-time", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/scripts-fluentui-publish": [ + { + "source": "@fluentui/scripts-fluentui-publish", + "target": "@fluentui/scripts-monorepo", + "type": "static" + } + ], + "@fluentui/style-utilities": [ + { + "source": "@fluentui/style-utilities", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "@fluentui/theme", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/style-utilities", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/digest": [ + { + "source": "@fluentui/digest", + "target": "npm:querystring", + "type": "static" + } + ], + "@fluentui/styles": [ + { + "source": "@fluentui/styles", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/styles", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "@fluentui/styles", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/styles", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/styles", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/styles", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/styles", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/styles", + "target": "npm:lerna-alias", + "type": "static" + } + ], + "@fluentui/font-icons-mdl2": [ + { + "source": "@fluentui/font-icons-mdl2", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/font-icons-mdl2", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/font-icons-mdl2", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/font-icons-mdl2", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/font-icons-mdl2", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/font-icons-mdl2", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/font-icons-mdl2", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/web-components": [ + { + "source": "@fluentui/web-components", + "target": "npm:@microsoft/fast-colors", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:@microsoft/fast-element", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:@microsoft/fast-foundation", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:@microsoft/fast-web-utilities", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:@types/chai", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:@types/chai-spies", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:@types/karma", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:@types/mocha", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:chai", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:chai-spies", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:esm", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:ignore-loader", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:istanbul", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:istanbul-instrumenter-loader", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:jsdom-global", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-chrome-launcher", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-coverage", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-coverage-istanbul-reporter", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-firefox-launcher", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-mocha", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-mocha-reporter", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-source-map-support", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-sourcemap-loader", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:karma-webpack", + "type": "static" + }, + { + "source": "@fluentui/web-components", + "target": "npm:mocha", + "type": "static" + } + ], + "@fluentui/react-charting": [ + { + "source": "@fluentui/react-charting", + "target": "@fluentui/react-focus", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/theme-samples", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-array", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-axis", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-format", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-hierarchy", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-sankey", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-scale", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-selection", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-shape", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-time-format", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/d3-time", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-axis", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-hierarchy", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-sankey", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-scale", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-selection", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-shape", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-time-format", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:d3-time", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/react-addons-test-utils", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/jest-serializer-merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:jest-canvas-mock", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-charting", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-examples": [ + { + "source": "@fluentui/react-examples", + "target": "@fluentui/azure-themes", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/date-time-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/dom-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/example-data", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/font-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/foundation-legacy", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react-cards", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react-charting", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react-docsite-components", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react-experiments", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react-file-type-icons", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react-focus", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react-hooks", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/react-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/scheme-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/theme", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/theme-samples", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "npm:d3-fetch", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/storybook", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "npm:@types/d3-format", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "npm:@types/d3-fetch", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-examples", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/test-utilities": [ + { + "source": "@fluentui/test-utilities", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/test-utilities", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/test-utilities", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/test-utilities", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/test-utilities", + "target": "npm:enzyme", + "type": "static" + }, + { + "source": "@fluentui/test-utilities", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/test-utilities", + "target": "npm:react-test-renderer", + "type": "static" + } + ], + "@fluentui/scripts-package-manager": [], + "@fluentui/state": [ + { + "source": "@fluentui/state", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "@fluentui/state", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/state", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/state", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/state", + "target": "npm:lerna-alias", + "type": "static" + } + ], + "@fluentui/common-styles": [ + { + "source": "@fluentui/common-styles", + "target": "npm:office-ui-fabric-core", + "type": "static" + }, + { + "source": "@fluentui/common-styles", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/common-styles", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/theme-samples": [ + { + "source": "@fluentui/theme-samples", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/theme-samples", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/theme-samples", + "target": "@fluentui/scheme-utilities", + "type": "static" + }, + { + "source": "@fluentui/theme-samples", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/theme-samples", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/theme-samples", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/theme-samples", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/eslint-plugin": [ + { + "source": "@fluentui/eslint-plugin", + "target": "npm:@griffel/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:@rnx-kit/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:@typescript-eslint/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-config-airbnb", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-import-resolver-typescript", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-plugin-deprecation", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-plugin-import", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-plugin-jest", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-plugin-jsdoc", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-plugin-jsx-a11y", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-plugin-react", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint-plugin-react-hooks", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:jju", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "@fluentui/eslint-plugin", + "target": "npm:typescript", + "type": "static" + } + ], + "@fluentui/perf": [ + { + "source": "@fluentui/perf", + "target": "npm:@babel/polyfill", + "type": "static" + }, + { + "source": "@fluentui/perf", + "target": "@fluentui/docs", + "type": "static" + }, + { + "source": "@fluentui/perf", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/perf", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/perf", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/perf", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "@fluentui/perf", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/perf", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/perf", + "target": "@fluentui/scripts-monorepo", + "type": "static" + } + ], + "@fluentui/docs": [ + { + "source": "@fluentui/docs", + "target": "npm:@charlietango/use-script", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/ability-attributes", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/accessibility", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/code-sandbox", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/docs-components", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-bindings", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-builder", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-component-event-listener", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-component-ref", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-icons-northstar", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-northstar-emotion-renderer", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-northstar-fela-renderer", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-northstar-prototypes", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-northstar-styles-renderer", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/react-telemetry", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/styles", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:@mdx-js/react", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:classnames", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:color", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:copy-to-clipboard", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:faker", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:formik", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:moment", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:qs", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-codesandboxer", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-custom-scrollbars", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-document-title", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-hook-form", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-hot-loader", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-markdown", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-router-dom", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-source-render", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-textarea-autosize", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-virtualized", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-vis", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:react-window", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:semver", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/scripts-gulp", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "@fluentui/scripts-storybook", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:@types/classnames", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:@types/color", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:@types/faker", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:@types/react-custom-scrollbars", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:@types/react-router-dom", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:@types/react-virtualized", + "type": "static" + }, + { + "source": "@fluentui/docs", + "target": "npm:@types/react-window", + "type": "static" + } + ], + "@fluentui/monaco-editor": [ + { + "source": "@fluentui/monaco-editor", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/monaco-editor", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/monaco-editor", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/monaco-editor", + "target": "npm:monaco-editor", + "type": "static" + }, + { + "source": "@fluentui/monaco-editor", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/dom-utilities": [ + { + "source": "@fluentui/dom-utilities", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/dom-utilities", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/dom-utilities", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/dom-utilities", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/dom-utilities", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/dom-utilities", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/public-docsite-v9": [ + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-calendar-compat", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-datepicker-compat", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-migration-v8-v9", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-migration-v0-v9", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-icons-northstar", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-storybook-addon", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-storybook-addon-export-to-sandbox", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/theme-designer", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-rating-preview", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-search-preview", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-motion-preview", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-teaching-popover-preview", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/react-timepicker-compat-preview", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "npm:@microsoft/applicationinsights-web", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "npm:react-window", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/scripts-storybook", + "type": "static" + }, + { + "source": "@fluentui/public-docsite-v9", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/workspace-plugin": [], + "@fluentui/fluent2-theme": [ + { + "source": "@fluentui/fluent2-theme", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/fluent2-theme", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/fluent2-theme", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/fluent2-theme", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/fluent2-theme", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/fluent2-theme", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/react-18-tests-v9": [ + { + "source": "@fluentui/react-18-tests-v9", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v9", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v9", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v9", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v9", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v9", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v9", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v9", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v9", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-18-tests-v8": [ + { + "source": "@fluentui/react-18-tests-v8", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "@fluentui/react-hooks", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "@fluentui/scripts-cypress", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-18-tests-v8", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/azure-themes": [ + { + "source": "@fluentui/azure-themes", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/azure-themes", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/azure-themes", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/azure-themes", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/azure-themes", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/azure-themes", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/e2e": [ + { + "source": "@fluentui/e2e", + "target": "@fluentui/accessibility", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "@fluentui/react-icons-northstar", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "@fluentui/react-northstar", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "@fluentui/react-northstar-prototypes", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "npm:@types/react-router-dom", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "npm:lerna-alias", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "npm:react-router-dom", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/e2e", + "target": "@fluentui/scripts-gulp", + "type": "static" + } + ], + "@fluentui/theming-designer": [ + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/react-docsite-components", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/foundation-legacy", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/scheme-utilities", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/font-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/theming-designer", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/merge-styles": [ + { + "source": "@fluentui/merge-styles", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/merge-styles", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/merge-styles", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/merge-styles", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/merge-styles", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/merge-styles", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/merge-styles", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/keyboard-key": [ + { + "source": "@fluentui/keyboard-key", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/keyboard-key", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/keyboard-key", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/keyboard-key", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/keyboard-key", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/scripts-api-extractor": [], + "@fluentui/cra-template": [ + { + "source": "@fluentui/cra-template", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/cra-template", + "target": "@fluentui/scripts-projects-test", + "type": "static" + } + ], + "@fluentui/example-data": [ + { + "source": "@fluentui/example-data", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/example-data", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/example-data", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/example-data", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/example-data", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/a11y-testing": [ + { + "source": "@fluentui/a11y-testing", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/a11y-testing", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/a11y-testing", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/a11y-testing", + "target": "npm:jest", + "type": "static" + }, + { + "source": "@fluentui/a11y-testing", + "target": "npm:@testing-library/react", + "type": "static" + }, + { + "source": "@fluentui/a11y-testing", + "target": "npm:@testing-library/user-event", + "type": "static" + }, + { + "source": "@fluentui/a11y-testing", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/scripts-projects-test": [ + { + "source": "@fluentui/scripts-projects-test", + "target": "@fluentui/scripts-utils", + "type": "static" + }, + { + "source": "@fluentui/scripts-projects-test", + "target": "@fluentui/scripts-puppeteer", + "type": "static" + }, + { + "source": "@fluentui/scripts-projects-test", + "target": "@fluentui/scripts-monorepo", + "type": "static" + } + ], + "@fluentui/set-version": [ + { + "source": "@fluentui/set-version", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/set-version", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/set-version", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/react-hooks": [ + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/react-window-provider", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/test-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-hooks", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/react-cards": [ + { + "source": "@fluentui/react-cards", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "@fluentui/foundation-legacy", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "@fluentui/jest-serializer-merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react-cards", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/react-focus": [ + { + "source": "@fluentui/react-focus", + "target": "@fluentui/keyboard-key", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/test-utilities", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/jest-serializer-merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react-focus", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/scripts-lint-staged": [ + { + "source": "@fluentui/scripts-lint-staged", + "target": "@fluentui/scripts-monorepo", + "type": "static" + } + ], + "@fluentui/pr-deploy-site": [ + { + "source": "@fluentui/pr-deploy-site", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/pr-deploy-site", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/pr-deploy-site", + "target": "@fluentui/scripts-monorepo", + "type": "static" + } + ], + "@fluentui/public-docsite": [ + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/font-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/public-docsite-resources", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/public-docsite-setup", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/react-docsite-components", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/react-examples", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/react-experiments", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/fluent2-theme", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/react-file-type-icons", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/react-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/react-icons-mdl2-branded", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/theme", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/theme-samples", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "npm:office-ui-fabric-core", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "npm:whatwg-fetch", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/common-styles", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/react-monaco-editor", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "npm:write-file-webpack-plugin", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/public-docsite", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/utilities": [ + { + "source": "@fluentui/utilities", + "target": "@fluentui/dom-utilities", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "@fluentui/jest-serializer-merge-styles", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "@fluentui/test-utilities", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/utilities", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/scripts-triage-bot": [], + "@fluentui/storybook": [ + { + "source": "@fluentui/storybook", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "@fluentui/theme", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "npm:@storybook/addon-knobs", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "npm:@storybook/addon-essentials", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "@fluentui/azure-themes", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "@fluentui/theme-samples", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/storybook", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/scripts-generators": [ + { + "source": "@fluentui/scripts-generators", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/scripts-generators", + "target": "@fluentui/scripts-projects-test", + "type": "static" + } + ], + "@fluentui/scripts-beachball": [ + { + "source": "@fluentui/scripts-beachball", + "target": "@fluentui/scripts-github", + "type": "static" + }, + { + "source": "@fluentui/scripts-beachball", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/scripts-beachball", + "target": "@fluentui/scripts-ts-node", + "type": "static" + } + ], + "@fluentui/scripts-storybook": [ + { + "source": "@fluentui/scripts-storybook", + "target": "@fluentui/scripts-monorepo", + "type": "static" + } + ], + "@fluentui/codemods": [ + { + "source": "@fluentui/codemods", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/codemods", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/codemods", + "target": "npm:ts-morph", + "type": "static" + }, + { + "source": "@fluentui/codemods", + "target": "npm:glob", + "type": "static" + }, + { + "source": "@fluentui/codemods", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "@fluentui/codemods", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/codemods", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/codemods", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/ssr-tests-v9": [ + { + "source": "@fluentui/ssr-tests-v9", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests-v9", + "target": "@fluentui/react-utilities", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests-v9", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests-v9", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests-v9", + "target": "@fluentui/scripts-storybook", + "type": "static" + } + ], + "@fluentui/api-docs": [ + { + "source": "@fluentui/api-docs", + "target": "npm:@microsoft/api-extractor-model", + "type": "static" + }, + { + "source": "@fluentui/api-docs", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "@fluentui/api-docs", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "@fluentui/api-docs", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/api-docs", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/scripts-executors": [ + { + "source": "@fluentui/scripts-executors", + "target": "@fluentui/scripts-utils", + "type": "static" + }, + { + "source": "@fluentui/scripts-executors", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/scripts-executors", + "target": "@fluentui/scripts-prettier", + "type": "static" + } + ], + "@fluentui/scripts-puppeteer": [], + "@fluentui/scripts-prettier": [ + { + "source": "@fluentui/scripts-prettier", + "target": "@fluentui/scripts-monorepo", + "type": "static" + } + ], + "@fluentui/scripts-dangerjs": [ + { + "source": "@fluentui/scripts-dangerjs", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/scripts-dangerjs", + "target": "@fluentui/scripts-utils", + "type": "static" + } + ], + "@fluentui/scripts-test-ssr": [ + { + "source": "@fluentui/scripts-test-ssr", + "target": "@fluentui/scripts-puppeteer", + "type": "static" + }, + { + "source": "@fluentui/scripts-test-ssr", + "target": "@fluentui/scripts-ts-node", + "type": "static" + } + ], + "@fluentui/scripts-monorepo": [ + { + "source": "@fluentui/scripts-monorepo", + "target": "@fluentui/scripts-utils", + "type": "static" + } + ], + "@fluentui/stress-test": [ + { + "source": "@fluentui/stress-test", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "@fluentui/react-components", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "npm:@fluentui/react-icons", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "@fluentui/web-components", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "npm:@microsoft/fast-element", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "npm:afterframe", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "npm:random-seedable", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/stress-test", + "target": "@fluentui/scripts-storybook", + "type": "static" + } + ], + "@fluentui/scripts-cypress": [], + "@fluentui/scripts-webpack": [ + { + "source": "@fluentui/scripts-webpack", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/scripts-webpack", + "target": "@fluentui/scripts-utils", + "type": "static" + } + ], + "@fluentui/tokens": [ + { + "source": "@fluentui/tokens", + "target": "npm:@swc/helpers", + "type": "static" + }, + { + "source": "@fluentui/tokens", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/tokens", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/tokens", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/scripts-ts-node": [], + "@fluentui/perf-test": [ + { + "source": "@fluentui/perf-test", + "target": "@fluentui/scripts-perf-test-flamegrill", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "@fluentui/example-data", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/perf-test", + "target": "@fluentui/scripts-storybook", + "type": "static" + } + ], + "@fluentui/theme": [ + { + "source": "@fluentui/theme", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/theme", + "target": "npm:react", + "type": "static" + } + ], + "@fluentui/scripts-github": [], + "@fluentui/react": [ + { + "source": "@fluentui/react", + "target": "@fluentui/date-time-utilities", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/foundation-legacy", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/font-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/react-focus", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/react-hooks", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/react-portal-compat-context", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/react-window-provider", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/set-version", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/style-utilities", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/theme", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/utilities", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/common-styles", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/example-data", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/jest-serializer-merge-styles", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/react-conformance", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/test-utilities", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/webpack-utilities", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "npm:office-ui-fabric-core", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/scripts-api-extractor", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/scripts-jest", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "@fluentui/scripts-webpack", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/react", + "target": "npm:react-dom", + "type": "static" + } + ], + "@fluentui/ssr-tests": [ + { + "source": "@fluentui/ssr-tests", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests", + "target": "npm:@microsoft/load-themed-styles", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests", + "target": "npm:@types/mocha", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests", + "target": "@fluentui/public-docsite-resources", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests", + "target": "npm:mocha", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests", + "target": "@fluentui/scripts-tasks", + "type": "static" + }, + { + "source": "@fluentui/ssr-tests", + "target": "@fluentui/scripts-webpack", + "type": "static" + } + ], + "@fluentui/vr-tests": [ + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/example-data", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/font-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/react", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/react-experiments", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/react-hooks", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/react-icons-mdl2", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/storybook", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/react-charting", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "npm:react", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/eslint-plugin", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/scripts-storybook", + "type": "static" + }, + { + "source": "@fluentui/vr-tests", + "target": "@fluentui/scripts-tasks", + "type": "static" + } + ], + "@fluentui/scripts-utils": [], + "@fluentui/scripts-tasks": [ + { + "source": "@fluentui/scripts-tasks", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/scripts-tasks", + "target": "@fluentui/scripts-utils", + "type": "static" + }, + { + "source": "@fluentui/scripts-tasks", + "target": "@fluentui/scripts-prettier", + "type": "static" + }, + { + "source": "@fluentui/scripts-tasks", + "target": "npm:flamegrill", + "type": "static" + } + ], + "@fluentui/scripts-babel": [], + "@fluentui/scripts-jest": [ + { + "source": "@fluentui/scripts-jest", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/scripts-jest", + "target": "@fluentui/scripts-utils", + "type": "static" + } + ], + "@fluentui/scripts-gulp": [ + { + "source": "@fluentui/scripts-gulp", + "target": "@fluentui/scripts-monorepo", + "type": "static" + }, + { + "source": "@fluentui/scripts-gulp", + "target": "@fluentui/scripts-utils", + "type": "static" + }, + { + "source": "@fluentui/scripts-gulp", + "target": "@fluentui/scripts-prettier", + "type": "static" + }, + { + "source": "@fluentui/scripts-gulp", + "target": "@fluentui/scripts-puppeteer", + "type": "static" + }, + { + "source": "@fluentui/scripts-gulp", + "target": "@fluentui/scripts-babel", + "type": "static" + }, + { + "source": "@fluentui/scripts-gulp", + "target": "@fluentui/scripts-projects-test", + "type": "static" + } + ], + "@fluentui/typings": [], + "npm:@actions/core": [ + { + "source": "npm:@actions/core", + "target": "npm:@actions/http-client", + "type": "static" + }, + { + "source": "npm:@actions/core", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@actions/github": [ + { + "source": "npm:@actions/github", + "target": "npm:@actions/http-client", + "type": "static" + }, + { + "source": "npm:@actions/github", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@actions/github", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@actions/github", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + } + ], + "npm:@actions/http-client": [ + { + "source": "npm:@actions/http-client", + "target": "npm:tunnel", + "type": "static" + } + ], + "npm:@ampproject/remapping": [ + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping@0.1.1", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@azure/abort-controller": [ + { + "source": "npm:@azure/abort-controller", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:@azure/core-auth": [ + { + "source": "npm:@azure/core-auth", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-auth", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/core-client": [ + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/core-asynciterator-polyfill", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/core-rest-pipeline", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:@azure/core-tracing@1.0.0-preview.11", + "type": "static" + }, + { + "source": "npm:@azure/core-client", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/core-http": [ + { + "source": "npm:@azure/core-http", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@azure/core-tracing@1.0.0-preview.8", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@types/node-fetch", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:@types/tunnel", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:form-data@3.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:tough-cookie@4.1.2", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:tunnel", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@azure/core-http", + "target": "npm:xml2js", + "type": "static" + } + ], + "npm:@azure/core-lro": [ + { + "source": "npm:@azure/core-lro", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-lro", + "target": "npm:@azure/core-http", + "type": "static" + }, + { + "source": "npm:@azure/core-lro", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:@azure/core-lro", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:@azure/core-paging": [ + { + "source": "npm:@azure/core-paging", + "target": "npm:@azure/core-asynciterator-polyfill", + "type": "static" + } + ], + "npm:@azure/core-rest-pipeline": [ + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:http-proxy-agent@4.0.1", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-rest-pipeline", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@azure/core-tracing@1.0.0-preview.11": [ + { + "source": "npm:@azure/core-tracing@1.0.0-preview.11", + "target": "npm:@opencensus/web-types", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.11", + "target": "npm:@opentelemetry/api@1.0.0-rc.0", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.11", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/core-tracing": [ + { + "source": "npm:@azure/core-tracing", + "target": "npm:@opentelemetry/api@1.0.3", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@azure/core-tracing@1.0.0-preview.8": [ + { + "source": "npm:@azure/core-tracing@1.0.0-preview.8", + "target": "npm:@opencensus/web-types", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.8", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@azure/core-tracing@1.0.0-preview.8", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:@azure/core-xml": [ + { + "source": "npm:@azure/core-xml", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/core-xml", + "target": "npm:xml2js", + "type": "static" + } + ], + "npm:@azure/data-tables": [ + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-auth", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-client", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-paging", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-rest-pipeline", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-tracing", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/core-xml", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@azure/data-tables", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@azure/logger": [ + { + "source": "npm:@azure/logger", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:@azure/storage-blob": [ + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/abort-controller", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/core-http", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/core-lro", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/core-paging", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/core-tracing@1.0.0-preview.8", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@azure/logger", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:@opentelemetry/api", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:@azure/storage-blob", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:@babel/code-frame@7.12.11": [ + { + "source": "npm:@babel/code-frame@7.12.11", + "target": "npm:@babel/highlight", + "type": "static" + } + ], + "npm:@babel/code-frame": [ + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + } + ], + "npm:@babel/core@7.12.9": [ + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:source-map@0.5.7", + "type": "static" + } + ], + "npm:@babel/core": [ + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/generator": [ + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:@babel/helper-annotate-as-pure": [ + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-builder-binary-assignment-operator-visitor": [ + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-compilation-targets": [ + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/helper-create-class-features-plugin": [ + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/helper-create-regexp-features-plugin": [ + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/helper-define-polyfill-provider@0.1.5": [ + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/helper-define-polyfill-provider": [ + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:@babel/helper-function-name": [ + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-hoist-variables": [ + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-member-expression-to-functions": [ + { + "source": "npm:@babel/helper-member-expression-to-functions", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-imports": [ + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-transforms": [ + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/helper-optimise-call-expression": [ + { + "source": "npm:@babel/helper-optimise-call-expression", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-remap-async-to-generator": [ + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + } + ], + "npm:@babel/helper-replace-supers": [ + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + } + ], + "npm:@babel/helper-simple-access": [ + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-skip-transparent-expression-wrappers": [ + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-split-export-declaration": [ + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-wrap-function": [ + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helpers": [ + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/highlight": [ + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-class-properties": [ + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-decorators": [ + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-export-default-from": [ + { + "source": "npm:@babel/plugin-proposal-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-default-from", + "target": "npm:@babel/plugin-syntax-export-default-from", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-export-namespace-from": [ + { + "source": "npm:@babel/plugin-proposal-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-object-rest-spread": [ + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-optional-chaining": [ + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-private-methods": [ + { + "source": "npm:@babel/plugin-proposal-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": [ + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-async-generators": [ + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-bigint": [ + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-properties": [ + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-static-block": [ + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-decorators": [ + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-dynamic-import": [ + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-export-default-from": [ + { + "source": "npm:@babel/plugin-syntax-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-export-namespace-from": [ + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-flow": [ + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-assertions": [ + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-attributes": [ + { + "source": "npm:@babel/plugin-syntax-import-attributes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-meta": [ + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-json-strings": [ + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-jsx@7.12.1": [ + { + "source": "npm:@babel/plugin-syntax-jsx@7.12.1", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-jsx": [ + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-numeric-separator": [ + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-object-rest-spread": [ + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-chaining": [ + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-private-property-in-object": [ + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-top-level-await": [ + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-typescript": [ + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-unicode-sets-regex": [ + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-arrow-functions": [ + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-generator-functions": [ + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-to-generator": [ + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoped-functions": [ + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoping": [ + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-class-properties": [ + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-class-static-block": [ + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + } + ], + "npm:@babel/plugin-transform-classes": [ + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals", + "type": "static" + } + ], + "npm:@babel/plugin-transform-computed-properties": [ + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/template", + "type": "static" + } + ], + "npm:@babel/plugin-transform-destructuring": [ + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dotall-regex": [ + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-duplicate-keys": [ + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dynamic-import": [ + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + } + ], + "npm:@babel/plugin-transform-exponentiation-operator": [ + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-export-namespace-from": [ + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + } + ], + "npm:@babel/plugin-transform-flow-strip-types": [ + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + } + ], + "npm:@babel/plugin-transform-for-of": [ + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-function-name": [ + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-json-strings": [ + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + } + ], + "npm:@babel/plugin-transform-literals": [ + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + } + ], + "npm:@babel/plugin-transform-member-expression-literals": [ + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-amd": [ + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-commonjs": [ + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-systemjs": [ + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-umd": [ + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-named-capturing-groups-regex": [ + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-new-target": [ + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-numeric-separator": [ + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-rest-spread": [ + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-super": [ + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + } + ], + "npm:@babel/plugin-transform-optional-chaining": [ + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-transform-parameters": [ + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-private-methods": [ + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-private-property-in-object": [ + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + } + ], + "npm:@babel/plugin-transform-property-literals": [ + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-display-name": [ + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx-development": [ + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx": [ + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-pure-annotations": [ + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-regenerator": [ + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:regenerator-transform", + "type": "static" + } + ], + "npm:@babel/plugin-transform-reserved-words": [ + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-runtime": [ + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/plugin-transform-shorthand-properties": [ + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-spread": [ + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-sticky-regex": [ + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-template-literals": [ + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typeof-symbol": [ + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typescript": [ + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-escapes": [ + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-property-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-sets-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/polyfill": [ + { + "source": "npm:@babel/polyfill", + "target": "npm:core-js@2.6.11", + "type": "static" + }, + { + "source": "npm:@babel/polyfill", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@babel/preset-env": [ + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/preset-flow": [ + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + } + ], + "npm:@babel/preset-modules": [ + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:@babel/preset-react": [ + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + } + ], + "npm:@babel/preset-typescript": [ + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + } + ], + "npm:@babel/register": [ + { + "source": "npm:@babel/register", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:find-cache-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:@babel/runtime-corejs3": [ + { + "source": "npm:@babel/runtime-corejs3", + "target": "npm:core-js-pure", + "type": "static" + }, + { + "source": "npm:@babel/runtime-corejs3", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@babel/runtime": [ + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.0", + "type": "static" + } + ], + "npm:@babel/template": [ + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/traverse": [ + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals", + "type": "static" + } + ], + "npm:@babel/types": [ + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + } + ], + "npm:@charlietango/use-script": [ + { + "source": "npm:@charlietango/use-script", + "target": "npm:@charlietango/use-client-hydrated", + "type": "static" + } + ], + "npm:@cnakazawa/watch": [ + { + "source": "npm:@cnakazawa/watch", + "target": "npm:exec-sh", + "type": "static" + }, + { + "source": "npm:@cnakazawa/watch", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:@cspotcode/source-map-support": [ + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + } + ], + "npm:@cypress/react": [ + { + "source": "npm:@cypress/react", + "target": "npm:@cypress/mount-utils", + "type": "static" + }, + { + "source": "npm:@cypress/react", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@cypress/react", + "target": "npm:find-webpack", + "type": "static" + }, + { + "source": "npm:@cypress/react", + "target": "npm:find-yarn-workspace-root", + "type": "static" + } + ], + "npm:@cypress/request": [ + { + "source": "npm:@cypress/request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:form-data@2.3.3", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:http-signature", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:qs@6.5.3", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:@cypress/request", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@cypress/webpack-dev-server": [ + { + "source": "npm:@cypress/webpack-dev-server", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@cypress/webpack-dev-server", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@cypress/webpack-dev-server", + "target": "npm:webpack-merge", + "type": "static" + } + ], + "npm:@cypress/xvfb": [ + { + "source": "npm:@cypress/xvfb", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:@cypress/xvfb", + "target": "npm:lodash.once", + "type": "static" + } + ], + "npm:@dnd-kit/accessibility": [ + { + "source": "npm:@dnd-kit/accessibility", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@dnd-kit/core": [ + { + "source": "npm:@dnd-kit/core", + "target": "npm:@dnd-kit/accessibility", + "type": "static" + }, + { + "source": "npm:@dnd-kit/core", + "target": "npm:@dnd-kit/utilities", + "type": "static" + }, + { + "source": "npm:@dnd-kit/core", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@dnd-kit/sortable": [ + { + "source": "npm:@dnd-kit/sortable", + "target": "npm:@dnd-kit/utilities", + "type": "static" + }, + { + "source": "npm:@dnd-kit/sortable", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@dnd-kit/utilities": [ + { + "source": "npm:@dnd-kit/utilities", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@dsherret/to-absolute-glob": [ + { + "source": "npm:@dsherret/to-absolute-glob", + "target": "npm:is-absolute", + "type": "static" + }, + { + "source": "npm:@dsherret/to-absolute-glob", + "target": "npm:is-negated-glob", + "type": "static" + } + ], + "npm:@effect/io": [ + { + "source": "npm:@effect/io", + "target": "npm:@effect/data", + "type": "static" + } + ], + "npm:@effect/match": [ + { + "source": "npm:@effect/match", + "target": "npm:@effect/data", + "type": "static" + }, + { + "source": "npm:@effect/match", + "target": "npm:@effect/schema", + "type": "static" + } + ], + "npm:@effect/schema": [ + { + "source": "npm:@effect/schema", + "target": "npm:@effect/data", + "type": "static" + }, + { + "source": "npm:@effect/schema", + "target": "npm:@effect/io", + "type": "static" + }, + { + "source": "npm:@effect/schema", + "target": "npm:fast-check", + "type": "static" + } + ], + "npm:@emotion/cache": [ + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/sheet", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/stylis", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/cache", + "target": "npm:@emotion/weak-memoize", + "type": "static" + } + ], + "npm:@emotion/cache@11.4.0": [ + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:@emotion/sheet@1.0.1", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:@emotion/utils@1.0.0", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:@emotion/weak-memoize", + "type": "static" + }, + { + "source": "npm:@emotion/cache@11.4.0", + "target": "npm:stylis", + "type": "static" + } + ], + "npm:@emotion/core": [ + { + "source": "npm:@emotion/core", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/cache", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/css", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/serialize", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/sheet", + "type": "static" + }, + { + "source": "npm:@emotion/core", + "target": "npm:@emotion/utils", + "type": "static" + } + ], + "npm:@emotion/css": [ + { + "source": "npm:@emotion/css", + "target": "npm:@emotion/serialize", + "type": "static" + }, + { + "source": "npm:@emotion/css", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/css", + "target": "npm:babel-plugin-emotion", + "type": "static" + } + ], + "npm:@emotion/is-prop-valid": [ + { + "source": "npm:@emotion/is-prop-valid", + "target": "npm:@emotion/memoize", + "type": "static" + } + ], + "npm:@emotion/serialize": [ + { + "source": "npm:@emotion/serialize", + "target": "npm:@emotion/hash", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:@emotion/unitless", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:@emotion/utils", + "type": "static" + }, + { + "source": "npm:@emotion/serialize", + "target": "npm:csstype@2.6.19", + "type": "static" + } + ], + "npm:@emotion/serialize@1.0.2": [ + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:@emotion/hash@0.8.0", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:@emotion/unitless", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:@emotion/utils@1.0.0", + "type": "static" + }, + { + "source": "npm:@emotion/serialize@1.0.2", + "target": "npm:csstype", + "type": "static" + } + ], + "npm:@es-joy/jsdoccomment": [ + { + "source": "npm:@es-joy/jsdoccomment", + "target": "npm:comment-parser", + "type": "static" + }, + { + "source": "npm:@es-joy/jsdoccomment", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:@es-joy/jsdoccomment", + "target": "npm:jsdoc-type-pratt-parser", + "type": "static" + } + ], + "npm:@eslint-community/eslint-utils": [ + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@eslint/eslintrc": [ + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals@13.12.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore@4.0.6", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:@floating-ui/dom": [ + { + "source": "npm:@floating-ui/dom", + "target": "npm:@floating-ui/core", + "type": "static" + } + ], + "npm:@fluentui/dom-utilities@1.1.1": [ + { + "source": "npm:@fluentui/dom-utilities@1.1.1", + "target": "npm:@uifabric/set-version", + "type": "static" + }, + { + "source": "npm:@fluentui/dom-utilities@1.1.1", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:@fluentui/react-icons": [ + { + "source": "npm:@fluentui/react-icons", + "target": "npm:@griffel/react", + "type": "static" + }, + { + "source": "npm:@fluentui/react-icons", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@griffel/babel-preset": [ + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@linaria/babel-preset", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:@linaria/shaker", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "npm:@griffel/babel-preset", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@griffel/core": [ + { + "source": "npm:@griffel/core", + "target": "npm:@emotion/hash@0.9.1", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:@griffel/style-types", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:rtl-css-js", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "npm:@griffel/core", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@griffel/eslint-plugin": [ + { + "source": "npm:@griffel/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@griffel/eslint-plugin", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@griffel/eslint-plugin", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@griffel/jest-serializer": [ + { + "source": "npm:@griffel/jest-serializer", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/jest-serializer", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@griffel/react": [ + { + "source": "npm:@griffel/react", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/react", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@griffel/shadow-dom": [ + { + "source": "npm:@griffel/shadow-dom", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/shadow-dom", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@griffel/style-types": [ + { + "source": "npm:@griffel/style-types", + "target": "npm:csstype", + "type": "static" + } + ], + "npm:@griffel/webpack-extraction-plugin": [ + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:@griffel/core", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:stylis", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-extraction-plugin", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@griffel/webpack-loader": [ + { + "source": "npm:@griffel/webpack-loader", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-loader", + "target": "npm:@griffel/babel-preset", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:@griffel/webpack-loader", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@gulp-sourcemaps/identity-map": [ + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:acorn@5.7.4", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:css", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:normalize-path@2.1.1", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/identity-map", + "target": "npm:through2@2.0.5", + "type": "static" + } + ], + "npm:@gulp-sourcemaps/map-sources": [ + { + "source": "npm:@gulp-sourcemaps/map-sources", + "target": "npm:normalize-path@2.1.1", + "type": "static" + }, + { + "source": "npm:@gulp-sourcemaps/map-sources", + "target": "npm:through2@2.0.5", + "type": "static" + } + ], + "npm:@hot-loader/react-dom@17.0.2": [ + { + "source": "npm:@hot-loader/react-dom@17.0.2", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:@hot-loader/react-dom@17.0.2", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:@hot-loader/react-dom@17.0.2", + "target": "npm:scheduler", + "type": "static" + } + ], + "npm:@isaacs/cliui": [ + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi-cjs", + "type": "static" + } + ], + "npm:@istanbuljs/load-nyc-config": [ + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@jest/console": [ + { + "source": "npm:@jest/console", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/core": [ + { + "source": "npm:@jest/core", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-changed-files", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve-dependencies", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:@jest/environment": [ + { + "source": "npm:@jest/environment", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:jest-mock", + "type": "static" + } + ], + "npm:@jest/expect-utils": [ + { + "source": "npm:@jest/expect-utils", + "target": "npm:jest-get-type", + "type": "static" + } + ], + "npm:@jest/expect": [ + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot", + "type": "static" + } + ], + "npm:@jest/fake-timers": [ + { + "source": "npm:@jest/fake-timers", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:@jest/globals": [ + { + "source": "npm:@jest/globals", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:jest-mock", + "type": "static" + } + ], + "npm:@jest/reporters": [ + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument@6.0.0", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + } + ], + "npm:@jest/schemas": [ + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + } + ], + "npm:@jest/source-map": [ + { + "source": "npm:@jest/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:@jest/test-result": [ + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:collect-v8-coverage", + "type": "static" + } + ], + "npm:@jest/test-sequencer": [ + { + "source": "npm:@jest/test-sequencer", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/transform@26.6.2": [ + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:jest-haste-map@26.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:jest-regex-util@26.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:jest-util@26.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@jest/transform@26.6.2", + "target": "npm:write-file-atomic@3.0.3", + "type": "static" + } + ], + "npm:@jest/transform": [ + { + "source": "npm:@jest/transform", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:write-file-atomic@4.0.2", + "type": "static" + } + ], + "npm:@jest/types@25.5.0": [ + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/istanbul-reports@1.1.1", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:@types/yargs@15.0.13", + "type": "static" + }, + { + "source": "npm:@jest/types@25.5.0", + "target": "npm:chalk@3.0.0", + "type": "static" + } + ], + "npm:@jest/types@26.6.2": [ + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/yargs@15.0.13", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + } + ], + "npm:@jest/types": [ + { + "source": "npm:@jest/types", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/yargs@17.0.22", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:chalk@4.1.2", + "type": "static" + } + ], + "npm:@jridgewell/gen-mapping@0.1.1": [ + { + "source": "npm:@jridgewell/gen-mapping@0.1.1", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping@0.1.1", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@jridgewell/gen-mapping": [ + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/source-map": [ + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping@0.3.9": [ + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping": [ + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@lerna/child-process": [ + { + "source": "npm:@lerna/child-process", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@lerna/child-process", + "target": "npm:strong-log-transformer", + "type": "static" + } + ], + "npm:@lerna/create": [ + { + "source": "npm:@lerna/create", + "target": "npm:@lerna/child-process", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:pify@5.0.0", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:@lerna/create", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + } + ], + "npm:@linaria/babel-preset": [ + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-proposal-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/core", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/logger", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:@linaria/utils", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:cosmiconfig@5.2.1", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:source-map@0.7.3", + "type": "static" + }, + { + "source": "npm:@linaria/babel-preset", + "target": "npm:stylis@3.5.4", + "type": "static" + } + ], + "npm:@linaria/core": [ + { + "source": "npm:@linaria/core", + "target": "npm:@linaria/logger", + "type": "static" + }, + { + "source": "npm:@linaria/core", + "target": "npm:@linaria/utils", + "type": "static" + } + ], + "npm:@linaria/logger": [ + { + "source": "npm:@linaria/logger", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@linaria/logger", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:@linaria/preeval": [ + { + "source": "npm:@linaria/preeval", + "target": "npm:@linaria/babel-preset", + "type": "static" + } + ], + "npm:@linaria/shaker": [ + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@linaria/babel-preset", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@linaria/logger", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:@linaria/preeval", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:babel-plugin-transform-react-remove-prop-types", + "type": "static" + }, + { + "source": "npm:@linaria/shaker", + "target": "npm:ts-invariant", + "type": "static" + } + ], + "npm:@mdx-js/loader": [ + { + "source": "npm:@mdx-js/loader", + "target": "npm:@mdx-js/mdx", + "type": "static" + }, + { + "source": "npm:@mdx-js/loader", + "target": "npm:@mdx-js/react", + "type": "static" + }, + { + "source": "npm:@mdx-js/loader", + "target": "npm:loader-utils", + "type": "static" + } + ], + "npm:@mdx-js/mdx": [ + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-extract-import-names", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:camelcase-css", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:detab", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:hast-util-raw", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:mdast-util-to-hast", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-footnotes", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-mdx", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-parse@8.0.3", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-squeeze-paragraphs", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unified@9.2.0", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:@microsoft/api-extractor-model": [ + { + "source": "npm:@microsoft/api-extractor-model", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model", + "target": "npm:@microsoft/tsdoc-config", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model", + "target": "npm:@rushstack/node-core-library", + "type": "static" + } + ], + "npm:@microsoft/api-extractor": [ + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@microsoft/api-extractor-model", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@microsoft/tsdoc-config", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@rushstack/node-core-library", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@rushstack/rig-package", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:@rushstack/ts-command-line", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:resolve@1.17.0", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:semver@7.3.8", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@microsoft/applicationinsights-analytics-js": [ + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-analytics-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/applicationinsights-channel-js": [ + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@nevware21/ts-async", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-channel-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/applicationinsights-common": [ + { + "source": "npm:@microsoft/applicationinsights-common", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-common", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-common", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-common", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/applicationinsights-core-js": [ + { + "source": "npm:@microsoft/applicationinsights-core-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-core-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-core-js", + "target": "npm:@nevware21/ts-async", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-core-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/applicationinsights-dependencies-js": [ + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@nevware21/ts-async", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-dependencies-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/applicationinsights-properties-js": [ + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-properties-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/applicationinsights-shims": [ + { + "source": "npm:@microsoft/applicationinsights-shims", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/applicationinsights-web": [ + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-analytics-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-channel-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-common", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-core-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-dependencies-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-properties-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/applicationinsights-shims", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@microsoft/dynamicproto-js", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@nevware21/ts-async", + "type": "static" + }, + { + "source": "npm:@microsoft/applicationinsights-web", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/dynamicproto-js": [ + { + "source": "npm:@microsoft/dynamicproto-js", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@microsoft/eslint-plugin-sdl": [ + { + "source": "npm:@microsoft/eslint-plugin-sdl", + "target": "npm:eslint-plugin-node", + "type": "static" + }, + { + "source": "npm:@microsoft/eslint-plugin-sdl", + "target": "npm:eslint-plugin-react@7.24.0", + "type": "static" + }, + { + "source": "npm:@microsoft/eslint-plugin-sdl", + "target": "npm:eslint-plugin-security", + "type": "static" + } + ], + "npm:@microsoft/fast-foundation": [ + { + "source": "npm:@microsoft/fast-foundation", + "target": "npm:@microsoft/fast-element", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-foundation", + "target": "npm:@microsoft/fast-web-utilities", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-foundation", + "target": "npm:tabbable", + "type": "static" + }, + { + "source": "npm:@microsoft/fast-foundation", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:@microsoft/fast-web-utilities": [ + { + "source": "npm:@microsoft/fast-web-utilities", + "target": "npm:exenv-es6", + "type": "static" + } + ], + "npm:@microsoft/loader-load-themed-styles": [ + { + "source": "npm:@microsoft/loader-load-themed-styles", + "target": "npm:loader-utils@1.4.2", + "type": "static" + } + ], + "npm:@microsoft/tsdoc-config": [ + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:@microsoft/tsdoc@0.14.2", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:resolve@1.19.0", + "type": "static" + } + ], + "npm:@mole-inc/bin-wrapper": [ + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:bin-version-check", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:ext-name", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:file-type", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:filenamify@5.1.1", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@mole-inc/bin-wrapper", + "target": "npm:os-filter-obj", + "type": "static" + } + ], + "npm:@mrmlnc/readdir-enhanced": [ + { + "source": "npm:@mrmlnc/readdir-enhanced", + "target": "npm:call-me-maybe", + "type": "static" + }, + { + "source": "npm:@mrmlnc/readdir-enhanced", + "target": "npm:glob-to-regexp@0.3.0", + "type": "static" + } + ], + "npm:@nevware21/ts-async": [ + { + "source": "npm:@nevware21/ts-async", + "target": "npm:@nevware21/ts-utils", + "type": "static" + } + ], + "npm:@nodelib/fs.scandir": [ + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + } + ], + "npm:@nodelib/fs.walk": [ + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + } + ], + "npm:@npmcli/fs@2.1.2": [ + { + "source": "npm:@npmcli/fs@2.1.2", + "target": "npm:@gar/promisify", + "type": "static" + }, + { + "source": "npm:@npmcli/fs@2.1.2", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:@npmcli/fs": [ + { + "source": "npm:@npmcli/fs", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:@npmcli/git@2.0.3": [ + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:promise-retry@1.1.1", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:@npmcli/git@2.0.3", + "target": "npm:which@2.0.2", + "type": "static" + } + ], + "npm:@npmcli/git": [ + { + "source": "npm:@npmcli/git", + "target": "npm:@npmcli/promise-spawn@6.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:npm-pick-manifest@8.0.1", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:which@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/installed-package-contents@1.0.7": [ + { + "source": "npm:@npmcli/installed-package-contents@1.0.7", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents@1.0.7", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:@npmcli/installed-package-contents": [ + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled@3.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/move-file": [ + { + "source": "npm:@npmcli/move-file", + "target": "npm:mkdirp@1.0.4", + "type": "static" + } + ], + "npm:@npmcli/move-file@2.0.1": [ + { + "source": "npm:@npmcli/move-file@2.0.1", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file@2.0.1", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:@npmcli/promise-spawn": [ + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:infer-owner", + "type": "static" + } + ], + "npm:@npmcli/promise-spawn@6.0.2": [ + { + "source": "npm:@npmcli/promise-spawn@6.0.2", + "target": "npm:which@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/run-script": [ + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn@6.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast@3.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which@3.0.1", + "type": "static" + } + ], + "npm:@npmcli/run-script@1.3.1": [ + { + "source": "npm:@npmcli/run-script@1.3.1", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@1.3.1", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@1.3.1", + "target": "npm:node-gyp@6.1.0", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script@1.3.1", + "target": "npm:read-package-json-fast", + "type": "static" + } + ], + "npm:@nrwl/devkit": [ + { + "source": "npm:@nrwl/devkit", + "target": "npm:@nx/devkit", + "type": "static" + } + ], + "npm:@nrwl/jest": [ + { + "source": "npm:@nrwl/jest", + "target": "npm:@nx/jest", + "type": "static" + } + ], + "npm:@nrwl/js": [ + { + "source": "npm:@nrwl/js", + "target": "npm:@nx/js", + "type": "static" + } + ], + "npm:@nrwl/linter": [ + { + "source": "npm:@nrwl/linter", + "target": "npm:@nx/linter", + "type": "static" + } + ], + "npm:@nrwl/node": [ + { + "source": "npm:@nrwl/node", + "target": "npm:@nx/node", + "type": "static" + } + ], + "npm:@nrwl/nx-plugin": [ + { + "source": "npm:@nrwl/nx-plugin", + "target": "npm:@nx/plugin", + "type": "static" + } + ], + "npm:@nrwl/tao": [ + { + "source": "npm:@nrwl/tao", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nrwl/tao", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nrwl/workspace": [ + { + "source": "npm:@nrwl/workspace", + "target": "npm:@nx/workspace", + "type": "static" + } + ], + "npm:@nx/devkit": [ + { + "source": "npm:@nx/devkit", + "target": "npm:@nrwl/devkit", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/jest": [ + { + "source": "npm:@nx/jest", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nrwl/jest", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:@phenomnomnominal/tsquery@5.0.1", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:identity-obj-proxy", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:@nx/jest", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/js": [ + { + "source": "npm:@nx/js", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nrwl/js", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:@phenomnomnominal/tsquery@5.0.1", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:npm-package-arg@11.0.1", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tsconfig-paths@4.2.0", + "type": "static" + }, + { + "source": "npm:@nx/js", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/linter": [ + { + "source": "npm:@nx/linter", + "target": "npm:@nrwl/linter", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:@phenomnomnominal/tsquery@5.0.1", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/linter", + "target": "npm:typescript@5.1.6", + "type": "static" + } + ], + "npm:@nx/node": [ + { + "source": "npm:@nx/node", + "target": "npm:@nrwl/node", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:@nx/workspace", + "type": "static" + }, + { + "source": "npm:@nx/node", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/plugin": [ + { + "source": "npm:@nx/plugin", + "target": "npm:@nrwl/nx-plugin", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/jest", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/js", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@nx/linter", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:@phenomnomnominal/tsquery@5.0.1", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@nx/plugin", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/workspace": [ + { + "source": "npm:@nx/workspace", + "target": "npm:@nrwl/workspace", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + } + ], + "npm:@octokit/auth-token": [ + { + "source": "npm:@octokit/auth-token", + "target": "npm:@octokit/types", + "type": "static" + } + ], + "npm:@octokit/auth-token@3.0.1": [ + { + "source": "npm:@octokit/auth-token@3.0.1", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + } + ], + "npm:@octokit/core": [ + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/auth-token", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/graphql", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/core@4.2.4": [ + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/auth-token@3.0.1", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/graphql@5.0.1", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/request@6.2.1", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/request-error@3.0.1", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:@octokit/types@9.3.2", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core@4.2.4", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/endpoint": [ + { + "source": "npm:@octokit/endpoint", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/endpoint@7.0.2": [ + { + "source": "npm:@octokit/endpoint@7.0.2", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.2", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.2", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/graphql": [ + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/request", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/graphql", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/graphql@5.0.1": [ + { + "source": "npm:@octokit/graphql@5.0.1", + "target": "npm:@octokit/request@6.2.1", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.1", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.1", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/plugin-paginate-rest": [ + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types", + "type": "static" + } + ], + "npm:@octokit/plugin-paginate-rest@6.1.2": [ + { + "source": "npm:@octokit/plugin-paginate-rest@6.1.2", + "target": "npm:@octokit/tsconfig", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest@6.1.2", + "target": "npm:@octokit/types@9.3.2", + "type": "static" + } + ], + "npm:@octokit/plugin-rest-endpoint-methods": [ + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:deprecation", + "type": "static" + } + ], + "npm:@octokit/plugin-rest-endpoint-methods@7.2.3": [ + { + "source": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", + "target": "npm:@octokit/types@10.0.0", + "type": "static" + } + ], + "npm:@octokit/request-error": [ + { + "source": "npm:@octokit/request-error", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error", + "target": "npm:once", + "type": "static" + } + ], + "npm:@octokit/request-error@3.0.1": [ + { + "source": "npm:@octokit/request-error@3.0.1", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.1", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.1", + "target": "npm:once", + "type": "static" + } + ], + "npm:@octokit/request": [ + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/endpoint", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/request-error", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:@octokit/types", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@octokit/request", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/request@6.2.1": [ + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:@octokit/endpoint@7.0.2", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:@octokit/request-error@3.0.1", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:@octokit/types@7.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.1", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/rest": [ + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + } + ], + "npm:@octokit/rest@19.0.11": [ + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/core@4.2.4", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-paginate-rest@6.1.2", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest@19.0.11", + "target": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", + "type": "static" + } + ], + "npm:@octokit/types@10.0.0": [ + { + "source": "npm:@octokit/types@10.0.0", + "target": "npm:@octokit/openapi-types", + "type": "static" + } + ], + "npm:@octokit/types": [ + { + "source": "npm:@octokit/types", + "target": "npm:@octokit/openapi-types@12.11.0", + "type": "static" + } + ], + "npm:@octokit/types@7.5.0": [ + { + "source": "npm:@octokit/types@7.5.0", + "target": "npm:@octokit/openapi-types@13.12.0", + "type": "static" + } + ], + "npm:@octokit/types@9.3.2": [ + { + "source": "npm:@octokit/types@9.3.2", + "target": "npm:@octokit/openapi-types", + "type": "static" + } + ], + "npm:@opentelemetry/api": [ + { + "source": "npm:@opentelemetry/api", + "target": "npm:@opentelemetry/context-base", + "type": "static" + } + ], + "npm:@parcel/watcher": [ + { + "source": "npm:@parcel/watcher", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-gyp-build", + "type": "static" + } + ], + "npm:@phenomnomnominal/tsquery": [ + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:@types/esquery", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:esquery", + "type": "static" + } + ], + "npm:@phenomnomnominal/tsquery@5.0.1": [ + { + "source": "npm:@phenomnomnominal/tsquery@5.0.1", + "target": "npm:esquery", + "type": "static" + } + ], + "npm:@pmmmwh/react-refresh-webpack-plugin": [ + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:core-js-pure", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:@pmmmwh/react-refresh-webpack-plugin", + "target": "npm:source-map@0.7.3", + "type": "static" + } + ], + "npm:@rnx-kit/eslint-plugin": [ + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:@typescript-eslint/eslint-plugin", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:eslint-plugin-jest@25.2.4", + "type": "static" + }, + { + "source": "npm:@rnx-kit/eslint-plugin", + "target": "npm:eslint-plugin-react", + "type": "static" + } + ], + "npm:@rollup/pluginutils": [ + { + "source": "npm:@rollup/pluginutils", + "target": "npm:@types/estree@0.0.39", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:estree-walker@1.0.1", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:@rushstack/node-core-library@3.50.1": [ + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:@types/node@12.20.24", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:import-lazy", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:resolve@1.17.0", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:semver@7.3.8", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:timsort", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.50.1", + "target": "npm:z-schema", + "type": "static" + } + ], + "npm:@rushstack/node-core-library": [ + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:@types/node@12.20.24", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:import-lazy", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:resolve@1.17.0", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:semver@7.3.8", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library", + "target": "npm:z-schema", + "type": "static" + } + ], + "npm:@rushstack/package-deps-hash": [ + { + "source": "npm:@rushstack/package-deps-hash", + "target": "npm:@rushstack/node-core-library@3.50.1", + "type": "static" + } + ], + "npm:@rushstack/rig-package": [ + { + "source": "npm:@rushstack/rig-package", + "target": "npm:resolve@1.17.0", + "type": "static" + }, + { + "source": "npm:@rushstack/rig-package", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:@rushstack/ts-command-line": [ + { + "source": "npm:@rushstack/ts-command-line", + "target": "npm:@types/argparse", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line", + "target": "npm:string-argv", + "type": "static" + } + ], + "npm:@sigstore/bundle": [ + { + "source": "npm:@sigstore/bundle", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + } + ], + "npm:@sigstore/tuf": [ + { + "source": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:tuf-js", + "type": "static" + } + ], + "npm:@sinonjs/commons": [ + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:@sinonjs/fake-timers": [ + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + } + ], + "npm:@storybook/addon-a11y": [ + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:react-sizeme", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-a11y", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/addon-actions": [ + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:polished", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:react-inspector", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/addon-actions", + "target": "npm:uuid-browser", + "type": "static" + } + ], + "npm:@storybook/addon-backgrounds": [ + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-backgrounds", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/addon-controls": [ + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-controls", + "target": "npm:ts-dedent", + "type": "static" + } + ], + "npm:@storybook/addon-docs": [ + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@jest/transform@26.6.2", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@mdx-js/react", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/docs-tools", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/mdx1-csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/postinstall", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/source-loader", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:remark-external-links", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:remark-slug", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/addon-docs", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/addon-essentials": [ + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-actions", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-backgrounds", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-controls", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-docs", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-measure", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-outline", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-toolbars", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addon-viewport", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-essentials", + "target": "npm:ts-dedent", + "type": "static" + } + ], + "npm:@storybook/addon-knobs": [ + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:copy-to-clipboard", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:react-colorful", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:@storybook/addon-knobs", + "target": "npm:react-select", + "type": "static" + } + ], + "npm:@storybook/addon-links": [ + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-links", + "target": "npm:ts-dedent", + "type": "static" + } + ], + "npm:@storybook/addon-measure": [ + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-measure", + "target": "npm:global", + "type": "static" + } + ], + "npm:@storybook/addon-outline": [ + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/addon-outline", + "target": "npm:ts-dedent", + "type": "static" + } + ], + "npm:@storybook/addon-toolbars": [ + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-toolbars", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@storybook/addon-viewport": [ + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/addon-viewport", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@storybook/addons": [ + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/addons", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@storybook/api": [ + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:store2", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/api", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/builder-webpack4": [ + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/client-api", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@storybook/ui", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:autoprefixer@9.8.6", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:case-sensitive-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:css-loader@3.6.0", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:glob-promise", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:html-webpack-plugin@4.5.2", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:pnp-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:postcss-flexbugs-fixes", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:postcss-loader@4.3.0", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:raw-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:style-loader@1.3.0", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:terser-webpack-plugin@4.2.3", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:url-loader@4.1.1", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack@4.46.0", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack-dev-middleware@3.7.3", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack-filter-warnings-plugin@1.2.1", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack-hot-middleware", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack4", + "target": "npm:webpack-virtual-modules", + "type": "static" + } + ], + "npm:@storybook/builder-webpack5": [ + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/client-api", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:babel-plugin-named-exports-order", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:browser-assert", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:case-sensitive-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:glob-promise", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:path-browserify", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:webpack-hot-middleware", + "type": "static" + }, + { + "source": "npm:@storybook/builder-webpack5", + "target": "npm:webpack-virtual-modules@0.4.3", + "type": "static" + } + ], + "npm:@storybook/channel-postmessage": [ + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/channel-postmessage", + "target": "npm:telejson", + "type": "static" + } + ], + "npm:@storybook/channel-websocket": [ + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/channel-websocket", + "target": "npm:telejson", + "type": "static" + } + ], + "npm:@storybook/channels": [ + { + "source": "npm:@storybook/channels", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/channels", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/channels", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/client-api": [ + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:store2", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:synchronous-promise", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/client-api", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/client-logger": [ + { + "source": "npm:@storybook/client-logger", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/client-logger", + "target": "npm:global", + "type": "static" + } + ], + "npm:@storybook/components": [ + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/components", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/core-client": [ + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/channel-websocket", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/client-api", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:@storybook/ui", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:airbnb-js-shims", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:ansi-to-html", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:unfetch", + "type": "static" + }, + { + "source": "npm:@storybook/core-client", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/core-common": [ + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-export-default-from", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-private-methods", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@babel/register", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:@types/pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:babel-plugin-macros@3.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:babel-plugin-polyfill-corejs3@0.1.7", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:file-system-cache", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:interpret@2.2.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:lazy-universal-dotenv", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:pkg-dir@5.0.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/core-common", + "target": "npm:webpack@4.46.0", + "type": "static" + } + ], + "npm:@storybook/core-events": [ + { + "source": "npm:@storybook/core-events", + "target": "npm:core-js", + "type": "static" + } + ], + "npm:@storybook/core-server": [ + { + "source": "npm:@storybook/core-server", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/builder-webpack4", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/core-client", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/csf-tools", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/manager-webpack4", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@storybook/telemetry", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@types/node-fetch", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@types/pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:better-opn", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:boxen@5.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:commander@6.2.1", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:cpy", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:pretty-hrtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:serve-favicon", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:webpack@4.46.0", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:@storybook/core-server", + "target": "npm:x-default-browser", + "type": "static" + } + ], + "npm:@storybook/core": [ + { + "source": "npm:@storybook/core", + "target": "npm:@storybook/core-client", + "type": "static" + }, + { + "source": "npm:@storybook/core", + "target": "npm:@storybook/core-server", + "type": "static" + } + ], + "npm:@storybook/csf-tools": [ + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:@storybook/mdx1-csf", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/csf-tools", + "target": "npm:ts-dedent", + "type": "static" + } + ], + "npm:@storybook/csf": [ + { + "source": "npm:@storybook/csf", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:@storybook/docs-tools": [ + { + "source": "npm:@storybook/docs-tools", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/docs-tools", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@storybook/html@6.5.15": [ + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/core", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/docs-tools", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/preview-web", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:html-loader", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:react@16.14.0", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:react-dom@16.14.0", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/html@6.5.15", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:@storybook/manager-webpack4": [ + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/core-client", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@storybook/ui", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:case-sensitive-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:css-loader@3.6.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:html-webpack-plugin@4.5.2", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:pnp-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:style-loader@1.3.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:terser-webpack-plugin@4.2.3", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:url-loader@4.1.1", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:webpack@4.46.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:webpack-dev-middleware@3.7.3", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack4", + "target": "npm:webpack-virtual-modules", + "type": "static" + } + ], + "npm:@storybook/manager-webpack5": [ + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/core-client", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@storybook/ui", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:case-sensitive-paths-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:telejson", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:@storybook/manager-webpack5", + "target": "npm:webpack-virtual-modules@0.4.3", + "type": "static" + } + ], + "npm:@storybook/mdx1-csf": [ + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@mdx-js/mdx", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:@types/lodash", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:js-string-escape", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:@storybook/mdx1-csf", + "target": "npm:ts-dedent", + "type": "static" + } + ], + "npm:@storybook/node-logger": [ + { + "source": "npm:@storybook/node-logger", + "target": "npm:@types/npmlog", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:npmlog@5.0.1", + "type": "static" + }, + { + "source": "npm:@storybook/node-logger", + "target": "npm:pretty-hrtime", + "type": "static" + } + ], + "npm:@storybook/postinstall": [ + { + "source": "npm:@storybook/postinstall", + "target": "npm:core-js", + "type": "static" + } + ], + "npm:@storybook/preview-web": [ + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/channel-postmessage", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:ansi-to-html", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:synchronous-promise", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:unfetch", + "type": "static" + }, + { + "source": "npm:@storybook/preview-web", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/react-docgen-typescript-plugin": [ + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:endent", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:flat-cache", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:react-docgen-typescript", + "type": "static" + }, + { + "source": "npm:@storybook/react-docgen-typescript-plugin", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@storybook/react": [ + { + "source": "npm:@storybook/react", + "target": "npm:@babel/preset-flow", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@pmmmwh/react-refresh-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/core", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/docs-tools", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/node-logger", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/react-docgen-typescript-plugin", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@storybook/store", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@types/estree@0.0.51", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:@types/webpack-env", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:acorn@7.4.1", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:acorn-walk@7.2.0", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:babel-plugin-add-react-displayname", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:babel-plugin-react-docgen", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:html-tags", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:react-element-to-jsx-string", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:@storybook/react", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:@storybook/router": [ + { + "source": "npm:@storybook/router", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/router", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@storybook/semver": [ + { + "source": "npm:@storybook/semver", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/semver", + "target": "npm:find-up@4.1.0", + "type": "static" + } + ], + "npm:@storybook/source-loader": [ + { + "source": "npm:@storybook/source-loader", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:@storybook/source-loader", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@storybook/store": [ + { + "source": "npm:@storybook/store", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:@storybook/csf", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:synchronous-promise", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:ts-dedent", + "type": "static" + }, + { + "source": "npm:@storybook/store", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:@storybook/telemetry": [ + { + "source": "npm:@storybook/telemetry", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:@storybook/core-common", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:detect-package-manager", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:fetch-retry", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:isomorphic-unfetch@3.1.0", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:@storybook/telemetry", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@storybook/theming": [ + { + "source": "npm:@storybook/theming", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/theming", + "target": "npm:regenerator-runtime", + "type": "static" + } + ], + "npm:@storybook/ui": [ + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/client-logger", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/router", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/semver", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:memoizerific", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:@storybook/ui", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@swc/cli": [ + { + "source": "npm:@swc/cli", + "target": "npm:@mole-inc/bin-wrapper", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@swc/cli", + "target": "npm:source-map@0.7.3", + "type": "static" + } + ], + "npm:@swc/core": [ + { + "source": "npm:@swc/core", + "target": "npm:@swc/types", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-arm64@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-darwin-x64@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm-gnueabihf@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-gnu@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-arm64-musl@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-gnu@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-linux-x64-musl@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-arm64-msvc@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-ia32-msvc@1.3.87", + "type": "static" + }, + { + "source": "npm:@swc/core", + "target": "npm:@swc/core-win32-x64-msvc", + "type": "static" + } + ], + "npm:@swc/helpers": [ + { + "source": "npm:@swc/helpers", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@szmarczak/http-timer": [ + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + } + ], + "npm:@szmarczak/http-timer@5.0.1": [ + { + "source": "npm:@szmarczak/http-timer@5.0.1", + "target": "npm:defer-to-connect", + "type": "static" + } + ], + "npm:@testing-library/dom": [ + { + "source": "npm:@testing-library/dom", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:@types/aria-query", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:aria-query@5.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:dom-accessibility-api", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:lz-string", + "type": "static" + }, + { + "source": "npm:@testing-library/dom", + "target": "npm:pretty-format@27.5.1", + "type": "static" + } + ], + "npm:@testing-library/dom@7.22.3": [ + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:@types/aria-query", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:dom-accessibility-api", + "type": "static" + }, + { + "source": "npm:@testing-library/dom@7.22.3", + "target": "npm:pretty-format@25.5.0", + "type": "static" + } + ], + "npm:@testing-library/jest-dom": [ + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@adobe/css-tools", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:@types/testing-library__jest-dom", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:aria-query@5.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:css.escape", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:dom-accessibility-api", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-dom", + "target": "npm:redent", + "type": "static" + } + ], + "npm:@testing-library/react-hooks": [ + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:@types/react-dom@18.0.6", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:@types/react-test-renderer", + "type": "static" + }, + { + "source": "npm:@testing-library/react-hooks", + "target": "npm:react-error-boundary", + "type": "static" + } + ], + "npm:@testing-library/react": [ + { + "source": "npm:@testing-library/react", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@testing-library/react", + "target": "npm:@testing-library/dom", + "type": "static" + } + ], + "npm:@testing-library/user-event": [ + { + "source": "npm:@testing-library/user-event", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:@textlint/markdown-to-ast": [ + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:@textlint/ast-node-types", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:remark-frontmatter", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:remark-parse", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:structured-source", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:traverse", + "type": "static" + }, + { + "source": "npm:@textlint/markdown-to-ast", + "target": "npm:unified", + "type": "static" + } + ], + "npm:@ts-morph/common": [ + { + "source": "npm:@ts-morph/common", + "target": "npm:@dsherret/to-absolute-glob", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:is-negated-glob", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:multimatch", + "type": "static" + } + ], + "npm:@tufjs/models": [ + { + "source": "npm:@tufjs/models", + "target": "npm:@tufjs/canonical-json", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:minimatch@9.0.1", + "type": "static" + } + ], + "npm:@types/babel-plugin-tester": [ + { + "source": "npm:@types/babel-plugin-tester", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:@types/babel-plugin-tester", + "target": "npm:@types/prettier", + "type": "static" + } + ], + "npm:@types/babel__core": [ + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:@types/babel__generator": [ + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__helper-plugin-utils": [ + { + "source": "npm:@types/babel__helper-plugin-utils", + "target": "npm:@types/babel__core", + "type": "static" + } + ], + "npm:@types/babel__register": [ + { + "source": "npm:@types/babel__register", + "target": "npm:@types/babel__core", + "type": "static" + } + ], + "npm:@types/babel__template": [ + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__traverse": [ + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/body-parser": [ + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/bonjour": [ + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/cacheable-request": [ + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/http-cache-semantics", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/keyv", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/responselike", + "type": "static" + } + ], + "npm:@types/chai-spies": [ + { + "source": "npm:@types/chai-spies", + "target": "npm:@types/chai", + "type": "static" + } + ], + "npm:@types/cheerio": [ + { + "source": "npm:@types/cheerio", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/chrome-remote-interface": [ + { + "source": "npm:@types/chrome-remote-interface", + "target": "npm:devtools-protocol", + "type": "static" + } + ], + "npm:@types/circular-dependency-plugin": [ + { + "source": "npm:@types/circular-dependency-plugin", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/circular-dependency-plugin", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:@types/color-convert": [ + { + "source": "npm:@types/color-convert", + "target": "npm:@types/color-name", + "type": "static" + } + ], + "npm:@types/color": [ + { + "source": "npm:@types/color", + "target": "npm:@types/color-convert", + "type": "static" + } + ], + "npm:@types/connect-history-api-fallback": [ + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/connect": [ + { + "source": "npm:@types/connect", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/copy-webpack-plugin": [ + { + "source": "npm:@types/copy-webpack-plugin", + "target": "npm:@types/webpack", + "type": "static" + } + ], + "npm:@types/cors": [ + { + "source": "npm:@types/cors", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/d3-axis": [ + { + "source": "npm:@types/d3-axis", + "target": "npm:@types/d3-selection", + "type": "static" + } + ], + "npm:@types/d3-fetch": [ + { + "source": "npm:@types/d3-fetch", + "target": "npm:@types/d3-dsv", + "type": "static" + } + ], + "npm:@types/d3-sankey": [ + { + "source": "npm:@types/d3-sankey", + "target": "npm:@types/d3-shape@1.3.8", + "type": "static" + } + ], + "npm:@types/d3-scale": [ + { + "source": "npm:@types/d3-scale", + "target": "npm:@types/d3-time", + "type": "static" + } + ], + "npm:@types/d3-shape": [ + { + "source": "npm:@types/d3-shape", + "target": "npm:@types/d3-path", + "type": "static" + } + ], + "npm:@types/d3-shape@1.3.8": [ + { + "source": "npm:@types/d3-shape@1.3.8", + "target": "npm:@types/d3-path", + "type": "static" + } + ], + "npm:@types/enzyme": [ + { + "source": "npm:@types/enzyme", + "target": "npm:@types/cheerio", + "type": "static" + }, + { + "source": "npm:@types/enzyme", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/eslint-scope": [ + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + } + ], + "npm:@types/eslint": [ + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + } + ], + "npm:@types/esquery": [ + { + "source": "npm:@types/esquery", + "target": "npm:@types/estree", + "type": "static" + } + ], + "npm:@types/execa": [ + { + "source": "npm:@types/execa", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/express-serve-static-core": [ + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + } + ], + "npm:@types/express": [ + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + } + ], + "npm:@types/fs-extra": [ + { + "source": "npm:@types/fs-extra", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/glob-stream": [ + { + "source": "npm:@types/glob-stream", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:@types/glob-stream", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/glob": [ + { + "source": "npm:@types/glob", + "target": "npm:@types/events", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/globby": [ + { + "source": "npm:@types/globby", + "target": "npm:globby", + "type": "static" + } + ], + "npm:@types/graceful-fs": [ + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/graphviz": [ + { + "source": "npm:@types/graphviz", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/gulp-babel": [ + { + "source": "npm:@types/gulp-babel", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/gulp-cache": [ + { + "source": "npm:@types/gulp-cache", + "target": "npm:@types/gulp-util", + "type": "static" + }, + { + "source": "npm:@types/gulp-cache", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-cache", + "target": "npm:@types/vinyl", + "type": "static" + } + ], + "npm:@types/gulp-remember": [ + { + "source": "npm:@types/gulp-remember", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/gulp-sourcemaps": [ + { + "source": "npm:@types/gulp-sourcemaps", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-sourcemaps", + "target": "npm:@types/vinyl", + "type": "static" + } + ], + "npm:@types/gulp-util": [ + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/through2", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:@types/vinyl", + "type": "static" + }, + { + "source": "npm:@types/gulp-util", + "target": "npm:chalk@2.4.2", + "type": "static" + } + ], + "npm:@types/gulp": [ + { + "source": "npm:@types/gulp", + "target": "npm:@types/undertaker", + "type": "static" + }, + { + "source": "npm:@types/gulp", + "target": "npm:@types/vinyl-fs", + "type": "static" + }, + { + "source": "npm:@types/gulp", + "target": "npm:chokidar", + "type": "static" + } + ], + "npm:@types/handlebars": [ + { + "source": "npm:@types/handlebars", + "target": "npm:handlebars", + "type": "static" + } + ], + "npm:@types/hast": [ + { + "source": "npm:@types/hast", + "target": "npm:@types/unist", + "type": "static" + } + ], + "npm:@types/http-proxy": [ + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/inquirer": [ + { + "source": "npm:@types/inquirer", + "target": "npm:@types/through", + "type": "static" + }, + { + "source": "npm:@types/inquirer", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:@types/istanbul-lib-report": [ + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + } + ], + "npm:@types/istanbul-reports@1.1.1": [ + { + "source": "npm:@types/istanbul-reports@1.1.1", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports@1.1.1", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + } + ], + "npm:@types/istanbul-reports": [ + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + } + ], + "npm:@types/jest-axe": [ + { + "source": "npm:@types/jest-axe", + "target": "npm:@types/jest", + "type": "static" + }, + { + "source": "npm:@types/jest-axe", + "target": "npm:axe-core", + "type": "static" + } + ], + "npm:@types/jest": [ + { + "source": "npm:@types/jest", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:@types/jsdom": [ + { + "source": "npm:@types/jsdom", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:@types/karma": [ + { + "source": "npm:@types/karma", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/karma", + "target": "npm:log4js", + "type": "static" + } + ], + "npm:@types/keyv": [ + { + "source": "npm:@types/keyv", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/loader-utils": [ + { + "source": "npm:@types/loader-utils", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/loader-utils", + "target": "npm:@types/webpack", + "type": "static" + } + ], + "npm:@types/mdast": [ + { + "source": "npm:@types/mdast", + "target": "npm:@types/unist", + "type": "static" + } + ], + "npm:@types/micromatch": [ + { + "source": "npm:@types/micromatch", + "target": "npm:@types/braces", + "type": "static" + } + ], + "npm:@types/node-fetch": [ + { + "source": "npm:@types/node-fetch", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/node-fetch", + "target": "npm:form-data@3.0.0", + "type": "static" + } + ], + "npm:@types/progress": [ + { + "source": "npm:@types/progress", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/prompts": [ + { + "source": "npm:@types/prompts", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/react-addons-test-utils": [ + { + "source": "npm:@types/react-addons-test-utils", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-custom-scrollbars": [ + { + "source": "npm:@types/react-custom-scrollbars", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-dom": [ + { + "source": "npm:@types/react-dom", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-dom@18.0.6": [ + { + "source": "npm:@types/react-dom@18.0.6", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-frame-component": [ + { + "source": "npm:@types/react-frame-component", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-is": [ + { + "source": "npm:@types/react-is", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-router-dom": [ + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react-router", + "type": "static" + } + ], + "npm:@types/react-router": [ + { + "source": "npm:@types/react-router", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-syntax-highlighter": [ + { + "source": "npm:@types/react-syntax-highlighter", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-table": [ + { + "source": "npm:@types/react-table", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-test-renderer": [ + { + "source": "npm:@types/react-test-renderer", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-transition-group": [ + { + "source": "npm:@types/react-transition-group", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-virtualized": [ + { + "source": "npm:@types/react-virtualized", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react-virtualized", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-window": [ + { + "source": "npm:@types/react-window", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react": [ + { + "source": "npm:@types/react", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + } + ], + "npm:@types/react@18.0.14": [ + { + "source": "npm:@types/react@18.0.14", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react@18.0.14", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react@18.0.14", + "target": "npm:csstype", + "type": "static" + } + ], + "npm:@types/request-promise-native": [ + { + "source": "npm:@types/request-promise-native", + "target": "npm:@types/request", + "type": "static" + } + ], + "npm:@types/request": [ + { + "source": "npm:@types/request", + "target": "npm:@types/caseless", + "type": "static" + }, + { + "source": "npm:@types/request", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/request", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/request", + "target": "npm:form-data", + "type": "static" + } + ], + "npm:@types/resolve": [ + { + "source": "npm:@types/resolve", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/responselike": [ + { + "source": "npm:@types/responselike", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/serve-index": [ + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + } + ], + "npm:@types/serve-static": [ + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/sockjs": [ + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/testing-library__jest-dom": [ + { + "source": "npm:@types/testing-library__jest-dom", + "target": "npm:@types/jest", + "type": "static" + } + ], + "npm:@types/through2": [ + { + "source": "npm:@types/through2", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/through": [ + { + "source": "npm:@types/through", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/tunnel": [ + { + "source": "npm:@types/tunnel", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/uglify-js": [ + { + "source": "npm:@types/uglify-js", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@types/undertaker": [ + { + "source": "npm:@types/undertaker", + "target": "npm:@types/undertaker-registry", + "type": "static" + } + ], + "npm:@types/vinyl-fs": [ + { + "source": "npm:@types/vinyl-fs", + "target": "npm:@types/glob-stream", + "type": "static" + }, + { + "source": "npm:@types/vinyl-fs", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/vinyl-fs", + "target": "npm:@types/vinyl", + "type": "static" + } + ], + "npm:@types/vinyl": [ + { + "source": "npm:@types/vinyl", + "target": "npm:@types/expect", + "type": "static" + }, + { + "source": "npm:@types/vinyl", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/webpack-bundle-analyzer": [ + { + "source": "npm:@types/webpack-bundle-analyzer", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack-bundle-analyzer", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:@types/webpack-bundle-analyzer", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:@types/webpack-dev-middleware": [ + { + "source": "npm:@types/webpack-dev-middleware", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/webpack-dev-middleware", + "target": "npm:@types/webpack", + "type": "static" + } + ], + "npm:@types/webpack-hot-middleware": [ + { + "source": "npm:@types/webpack-hot-middleware", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/webpack-hot-middleware", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:@types/webpack-hot-middleware", + "target": "npm:webpack", + "type": "static" + } + ], + "npm:@types/webpack-sources": [ + { + "source": "npm:@types/webpack-sources", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack-sources", + "target": "npm:@types/source-list-map", + "type": "static" + }, + { + "source": "npm:@types/webpack-sources", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@types/webpack": [ + { + "source": "npm:@types/webpack", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/tapable", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/uglify-js", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:@types/webpack-sources", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:@types/webpack", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:@types/ws": [ + { + "source": "npm:@types/ws", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@types/yargs": [ + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@types/yargs@15.0.13": [ + { + "source": "npm:@types/yargs@15.0.13", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@types/yargs@17.0.22": [ + { + "source": "npm:@types/yargs@17.0.22", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@types/yauzl": [ + { + "source": "npm:@types/yauzl", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:@typescript-eslint/eslint-plugin": [ + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:@typescript-eslint/experimental-utils": [ + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/experimental-utils", + "target": "npm:eslint-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/parser": [ + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager": [ + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager@5.59.1": [ + { + "source": "npm:@typescript-eslint/scope-manager@5.59.1", + "target": "npm:@typescript-eslint/types@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@5.59.1", + "target": "npm:@typescript-eslint/visitor-keys@5.59.1", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree": [ + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree@5.59.1": [ + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:@typescript-eslint/types@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:@typescript-eslint/visitor-keys@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.59.1", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:@typescript-eslint/utils": [ + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/semver@7.3.13", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys": [ + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys@2.0.0", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys@5.59.1": [ + { + "source": "npm:@typescript-eslint/visitor-keys@5.59.1", + "target": "npm:@typescript-eslint/types@5.59.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.59.1", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@uifabric/set-version": [ + { + "source": "npm:@uifabric/set-version", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:@webassemblyjs/ast": [ + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + } + ], + "npm:@webassemblyjs/ast@1.9.0": [ + { + "source": "npm:@webassemblyjs/ast@1.9.0", + "target": "npm:@webassemblyjs/helper-module-context", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast@1.9.0", + "target": "npm:@webassemblyjs/wast-parser", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-code-frame": [ + { + "source": "npm:@webassemblyjs/helper-code-frame", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-module-context": [ + { + "source": "npm:@webassemblyjs/helper-module-context", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-numbers": [ + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-wasm-section": [ + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-wasm-section@1.9.0": [ + { + "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "target": "npm:@webassemblyjs/helper-buffer@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "target": "npm:@webassemblyjs/wasm-gen@1.9.0", + "type": "static" + } + ], + "npm:@webassemblyjs/ieee754": [ + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + } + ], + "npm:@webassemblyjs/ieee754@1.9.0": [ + { + "source": "npm:@webassemblyjs/ieee754@1.9.0", + "target": "npm:@xtuc/ieee754", + "type": "static" + } + ], + "npm:@webassemblyjs/leb128": [ + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/leb128@1.9.0": [ + { + "source": "npm:@webassemblyjs/leb128@1.9.0", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-edit@1.9.0": [ + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/helper-buffer@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-section@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/wasm-gen@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/wasm-opt@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/wasm-parser@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit@1.9.0", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-edit": [ + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer@1.11.6", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-gen": [ + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-gen@1.9.0": [ + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/ieee754@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/leb128@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen@1.9.0", + "target": "npm:@webassemblyjs/utf8@1.9.0", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-opt": [ + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-opt@1.9.0": [ + { + "source": "npm:@webassemblyjs/wasm-opt@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt@1.9.0", + "target": "npm:@webassemblyjs/helper-buffer@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt@1.9.0", + "target": "npm:@webassemblyjs/wasm-gen@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt@1.9.0", + "target": "npm:@webassemblyjs/wasm-parser@1.9.0", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-parser": [ + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-parser@1.9.0": [ + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/helper-api-error@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/ieee754@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/leb128@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser@1.9.0", + "target": "npm:@webassemblyjs/utf8@1.9.0", + "type": "static" + } + ], + "npm:@webassemblyjs/wast-parser": [ + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/floating-point-hex-parser@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/helper-api-error@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/helper-code-frame", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@webassemblyjs/helper-fsm", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-parser", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/wast-printer@1.11.6": [ + { + "source": "npm:@webassemblyjs/wast-printer@1.11.6", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer@1.11.6", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/wast-printer": [ + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/wast-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webpack-cli/info": [ + { + "source": "npm:@webpack-cli/info", + "target": "npm:envinfo", + "type": "static" + } + ], + "npm:@wojtekmaj/enzyme-adapter-react-17": [ + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:@wojtekmaj/enzyme-adapter-utils", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:enzyme-shallow-equal", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-react-17", + "target": "npm:react-test-renderer", + "type": "static" + } + ], + "npm:@wojtekmaj/enzyme-adapter-utils": [ + { + "source": "npm:@wojtekmaj/enzyme-adapter-utils", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-utils", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-utils", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:@wojtekmaj/enzyme-adapter-utils", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:@xstate/react": [ + { + "source": "npm:@xstate/react", + "target": "npm:use-isomorphic-layout-effect", + "type": "static" + }, + { + "source": "npm:@xstate/react", + "target": "npm:use-subscription", + "type": "static" + } + ], + "npm:@yarnpkg/parsers": [ + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@zkochan/js-yaml": [ + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse@2.0.1", + "type": "static" + } + ], + "npm:JSONStream": [ + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + } + ], + "npm:ability-attributes-generator": [ + { + "source": "npm:ability-attributes-generator", + "target": "npm:ability-attributes", + "type": "static" + }, + { + "source": "npm:ability-attributes-generator", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:ability-attributes-generator", + "target": "npm:commander", + "type": "static" + } + ], + "npm:ability-attributes": [ + { + "source": "npm:ability-attributes", + "target": "npm:ability-attributes-js-constraints", + "type": "static" + } + ], + "npm:abort-controller": [ + { + "source": "npm:abort-controller", + "target": "npm:event-target-shim", + "type": "static" + } + ], + "npm:accepts": [ + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + } + ], + "npm:acorn-globals": [ + { + "source": "npm:acorn-globals", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + } + ], + "npm:adal-node": [ + { + "source": "npm:adal-node", + "target": "npm:@xmldom/xmldom@0.7.9", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:axios@0.21.4", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:date-utils", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:jws", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:underscore", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:adal-node", + "target": "npm:xpath.js", + "type": "static" + } + ], + "npm:agent-base@4.3.0": [ + { + "source": "npm:agent-base@4.3.0", + "target": "npm:es6-promisify", + "type": "static" + } + ], + "npm:agent-base": [ + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + } + ], + "npm:agentkeepalive": [ + { + "source": "npm:agentkeepalive", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:humanize-ms", + "type": "static" + } + ], + "npm:aggregate-error": [ + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + } + ], + "npm:aggregate-error@4.0.1": [ + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:clean-stack@4.2.0", + "type": "static" + }, + { + "source": "npm:aggregate-error@4.0.1", + "target": "npm:indent-string@5.0.0", + "type": "static" + } + ], + "npm:airbnb-js-shims": [ + { + "source": "npm:airbnb-js-shims", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:es5-shim", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:es6-shim", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:object.getownpropertydescriptors", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:promise.allsettled", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:promise.prototype.finally", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:string.prototype.padend", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:string.prototype.padstart", + "type": "static" + }, + { + "source": "npm:airbnb-js-shims", + "target": "npm:symbol.prototype.description", + "type": "static" + } + ], + "npm:ajv-formats@2.1.1": [ + { + "source": "npm:ajv-formats@2.1.1", + "target": "npm:ajv@8.12.0", + "type": "static" + } + ], + "npm:ajv-keywords@5.1.0": [ + { + "source": "npm:ajv-keywords@5.1.0", + "target": "npm:fast-deep-equal", + "type": "static" + } + ], + "npm:ajv": [ + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv@4.11.8": [ + { + "source": "npm:ajv@4.11.8", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:ajv@4.11.8", + "target": "npm:json-stable-stringify", + "type": "static" + } + ], + "npm:ajv@5.5.2": [ + { + "source": "npm:ajv@5.5.2", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:ajv@5.5.2", + "target": "npm:fast-deep-equal@1.1.0", + "type": "static" + }, + { + "source": "npm:ajv@5.5.2", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@5.5.2", + "target": "npm:json-schema-traverse@0.3.1", + "type": "static" + } + ], + "npm:ajv@6.12.6": [ + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv@6.12.6", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv@8.12.0": [ + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:anchor-markdown-header": [ + { + "source": "npm:anchor-markdown-header", + "target": "npm:emoji-regex", + "type": "static" + } + ], + "npm:ansi-align@2.0.0": [ + { + "source": "npm:ansi-align@2.0.0", + "target": "npm:string-width@2.1.1", + "type": "static" + } + ], + "npm:ansi-align": [ + { + "source": "npm:ansi-align", + "target": "npm:string-width@3.1.0", + "type": "static" + } + ], + "npm:ansi-colors": [ + { + "source": "npm:ansi-colors", + "target": "npm:ansi-wrap", + "type": "static" + } + ], + "npm:ansi-cyan": [ + { + "source": "npm:ansi-cyan", + "target": "npm:ansi-wrap", + "type": "static" + } + ], + "npm:ansi-escape-sequences": [ + { + "source": "npm:ansi-escape-sequences", + "target": "npm:array-back@6.2.2", + "type": "static" + } + ], + "npm:ansi-escapes": [ + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.11.0", + "type": "static" + } + ], + "npm:ansi-escapes@6.2.0": [ + { + "source": "npm:ansi-escapes@6.2.0", + "target": "npm:type-fest@3.11.0", + "type": "static" + } + ], + "npm:ansi-gray": [ + { + "source": "npm:ansi-gray", + "target": "npm:ansi-wrap", + "type": "static" + } + ], + "npm:ansi-red": [ + { + "source": "npm:ansi-red", + "target": "npm:ansi-wrap", + "type": "static" + } + ], + "npm:ansi-styles@3.2.1": [ + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert", + "type": "static" + } + ], + "npm:ansi-styles": [ + { + "source": "npm:ansi-styles", + "target": "npm:color-convert@2.0.1", + "type": "static" + } + ], + "npm:ansi-to-html": [ + { + "source": "npm:ansi-to-html", + "target": "npm:entities", + "type": "static" + } + ], + "npm:anymatch@2.0.0": [ + { + "source": "npm:anymatch@2.0.0", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:anymatch@2.0.0", + "target": "npm:normalize-path@2.1.1", + "type": "static" + } + ], + "npm:anymatch": [ + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:append-buffer": [ + { + "source": "npm:append-buffer", + "target": "npm:buffer-equal", + "type": "static" + } + ], + "npm:are-we-there-yet@2.0.0": [ + { + "source": "npm:are-we-there-yet@2.0.0", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@2.0.0", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:are-we-there-yet@3.0.1": [ + { + "source": "npm:are-we-there-yet@3.0.1", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet@3.0.1", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:are-we-there-yet": [ + { + "source": "npm:are-we-there-yet", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:argparse": [ + { + "source": "npm:argparse", + "target": "npm:sprintf-js", + "type": "static" + } + ], + "npm:aria-query": [ + { + "source": "npm:aria-query", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:aria-query", + "target": "npm:@babel/runtime-corejs3", + "type": "static" + } + ], + "npm:arr-diff@1.1.0": [ + { + "source": "npm:arr-diff@1.1.0", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:arr-diff@1.1.0", + "target": "npm:array-slice@0.2.3", + "type": "static" + } + ], + "npm:arr-filter": [ + { + "source": "npm:arr-filter", + "target": "npm:make-iterator", + "type": "static" + } + ], + "npm:arr-map": [ + { + "source": "npm:arr-map", + "target": "npm:make-iterator", + "type": "static" + } + ], + "npm:array-includes": [ + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + } + ], + "npm:array-initial": [ + { + "source": "npm:array-initial", + "target": "npm:array-slice", + "type": "static" + }, + { + "source": "npm:array-initial", + "target": "npm:is-number@4.0.0", + "type": "static" + } + ], + "npm:array-last": [ + { + "source": "npm:array-last", + "target": "npm:is-number@4.0.0", + "type": "static" + } + ], + "npm:array-sort": [ + { + "source": "npm:array-sort", + "target": "npm:default-compare", + "type": "static" + }, + { + "source": "npm:array-sort", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:array-sort", + "target": "npm:kind-of@5.1.0", + "type": "static" + } + ], + "npm:array-union@1.0.2": [ + { + "source": "npm:array-union@1.0.2", + "target": "npm:array-uniq", + "type": "static" + } + ], + "npm:array.prototype.flat": [ + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:array.prototype.flatmap": [ + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:asn1.js": [ + { + "source": "npm:asn1.js", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:asn1.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:asn1.js", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], + "npm:asn1": [ + { + "source": "npm:asn1", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:assert@1.5.0": [ + { + "source": "npm:assert@1.5.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:assert@1.5.0", + "target": "npm:util@0.10.3", + "type": "static" + } + ], + "npm:assert": [ + { + "source": "npm:assert", + "target": "npm:es6-object-assign", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:is-nan", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:util", + "type": "static" + } + ], + "npm:ast-types": [ + { + "source": "npm:ast-types", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:async-done": [ + { + "source": "npm:async-done", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:async-done", + "target": "npm:stream-exhaust", + "type": "static" + } + ], + "npm:async-retry": [ + { + "source": "npm:async-retry", + "target": "npm:retry", + "type": "static" + } + ], + "npm:async-settle": [ + { + "source": "npm:async-settle", + "target": "npm:async-done", + "type": "static" + } + ], + "npm:async": [ + { + "source": "npm:async", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:autoprefixer": [ + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:autoprefixer@9.8.6": [ + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:num2fraction", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:autoprefixer@9.8.6", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:available-typed-arrays": [ + { + "source": "npm:available-typed-arrays", + "target": "npm:array-filter", + "type": "static" + } + ], + "npm:axios@0.21.4": [ + { + "source": "npm:axios@0.21.4", + "target": "npm:follow-redirects", + "type": "static" + } + ], + "npm:axios": [ + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:proxy-from-env", + "type": "static" + } + ], + "npm:azure-devops-node-api": [ + { + "source": "npm:azure-devops-node-api", + "target": "npm:tunnel", + "type": "static" + }, + { + "source": "npm:azure-devops-node-api", + "target": "npm:typed-rest-client", + "type": "static" + } + ], + "npm:azure-storage-simple": [ + { + "source": "npm:azure-storage-simple", + "target": "npm:azure-storage", + "type": "static" + }, + { + "source": "npm:azure-storage-simple", + "target": "npm:fclone", + "type": "static" + }, + { + "source": "npm:azure-storage-simple", + "target": "npm:repromise", + "type": "static" + } + ], + "npm:azure-storage": [ + { + "source": "npm:azure-storage", + "target": "npm:browserify-mime", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:json-edm-parser", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:request", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:underscore", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:uuid@3.4.0", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:xml2js@0.2.8", + "type": "static" + }, + { + "source": "npm:azure-storage", + "target": "npm:xmlbuilder@9.0.7", + "type": "static" + } + ], + "npm:babel-code-frame": [ + { + "source": "npm:babel-code-frame", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:babel-code-frame", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:babel-code-frame", + "target": "npm:js-tokens@3.0.2", + "type": "static" + } + ], + "npm:babel-generator": [ + { + "source": "npm:babel-generator", + "target": "npm:babel-messages", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:detect-indent@4.0.0", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:jsesc@1.3.0", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:babel-generator", + "target": "npm:trim-right", + "type": "static" + } + ], + "npm:babel-jest": [ + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + } + ], + "npm:babel-loader": [ + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils@2.7.0", + "type": "static" + } + ], + "npm:babel-messages": [ + { + "source": "npm:babel-messages", + "target": "npm:babel-runtime", + "type": "static" + } + ], + "npm:babel-plugin-annotate-pure-imports": [ + { + "source": "npm:babel-plugin-annotate-pure-imports", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-annotate-pure-imports", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:babel-plugin-annotate-pure-imports", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:babel-plugin-apply-mdx-type-prop@1.6.22": [ + { + "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "target": "npm:@mdx-js/util", + "type": "static" + } + ], + "npm:babel-plugin-const-enum": [ + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/traverse", + "type": "static" + } + ], + "npm:babel-plugin-emotion": [ + { + "source": "npm:babel-plugin-emotion", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:@emotion/hash", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:@emotion/serialize", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:babel-plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:find-root", + "type": "static" + }, + { + "source": "npm:babel-plugin-emotion", + "target": "npm:source-map@0.5.7", + "type": "static" + } + ], + "npm:babel-plugin-extract-import-names": [ + { + "source": "npm:babel-plugin-extract-import-names", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + } + ], + "npm:babel-plugin-iife-wrap-react-components": [ + { + "source": "npm:babel-plugin-iife-wrap-react-components", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-iife-wrap-react-components", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:babel-plugin-iife-wrap-react-components", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:babel-plugin-istanbul": [ + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + } + ], + "npm:babel-plugin-jest-hoist": [ + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:babel-plugin-lodash": [ + { + "source": "npm:babel-plugin-lodash", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-plugin-lodash", + "target": "npm:require-package-name", + "type": "static" + } + ], + "npm:babel-plugin-macros": [ + { + "source": "npm:babel-plugin-macros", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:babel-plugin-macros@3.1.0": [ + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros@3.1.0", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:babel-plugin-module-resolver": [ + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:find-babel-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:reselect", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs2": [ + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:semver", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs3@0.1.7": [ + { + "source": "npm:babel-plugin-polyfill-corejs3@0.1.7", + "target": "npm:@babel/helper-define-polyfill-provider@0.1.5", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3@0.1.7", + "target": "npm:core-js-compat", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs3": [ + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:core-js-compat", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-regenerator": [ + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + } + ], + "npm:babel-plugin-react-docgen": [ + { + "source": "npm:babel-plugin-react-docgen", + "target": "npm:ast-types", + "type": "static" + }, + { + "source": "npm:babel-plugin-react-docgen", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-plugin-react-docgen", + "target": "npm:react-docgen", + "type": "static" + } + ], + "npm:babel-plugin-styled-components": [ + { + "source": "npm:babel-plugin-styled-components", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:babel-plugin-styled-components", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:babel-plugin-styled-components", + "target": "npm:babel-plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:babel-plugin-styled-components", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:babel-plugin-tester": [ + { + "source": "npm:babel-plugin-tester", + "target": "npm:@types/babel-plugin-tester", + "type": "static" + }, + { + "source": "npm:babel-plugin-tester", + "target": "npm:lodash.mergewith", + "type": "static" + }, + { + "source": "npm:babel-plugin-tester", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:babel-plugin-tester", + "target": "npm:strip-indent", + "type": "static" + } + ], + "npm:babel-plugin-transform-typescript-metadata": [ + { + "source": "npm:babel-plugin-transform-typescript-metadata", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:babel-preset-current-node-syntax": [ + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + } + ], + "npm:babel-preset-jest": [ + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-plugin-jest-hoist", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + } + ], + "npm:babel-runtime": [ + { + "source": "npm:babel-runtime", + "target": "npm:core-js@2.6.11", + "type": "static" + }, + { + "source": "npm:babel-runtime", + "target": "npm:regenerator-runtime@0.11.1", + "type": "static" + } + ], + "npm:babel-template": [ + { + "source": "npm:babel-template", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:babel-traverse", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:babylon", + "type": "static" + }, + { + "source": "npm:babel-template", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:babel-traverse": [ + { + "source": "npm:babel-traverse", + "target": "npm:babel-code-frame", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-messages", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:babylon", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:globals@9.18.0", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:babel-traverse", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:babel-types": [ + { + "source": "npm:babel-types", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:babel-types", + "target": "npm:to-fast-properties@1.0.3", + "type": "static" + } + ], + "npm:bach": [ + { + "source": "npm:bach", + "target": "npm:arr-filter", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:arr-map", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-each", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-initial", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:array-last", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:async-done", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:async-settle", + "type": "static" + }, + { + "source": "npm:bach", + "target": "npm:now-and-later", + "type": "static" + } + ], + "npm:backfill-cache": [ + { + "source": "npm:backfill-cache", + "target": "npm:@azure/storage-blob", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:@rushstack/package-deps-hash", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:backfill-cache", + "target": "npm:tar-fs", + "type": "static" + } + ], + "npm:backfill-config": [ + { + "source": "npm:backfill-config", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill-config", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:backfill-config", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill-config", + "target": "npm:pkg-dir", + "type": "static" + } + ], + "npm:backfill-hasher": [ + { + "source": "npm:backfill-hasher", + "target": "npm:@rushstack/package-deps-hash", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill-hasher", + "target": "npm:workspace-tools@0.27.0", + "type": "static" + } + ], + "npm:backfill-logger": [ + { + "source": "npm:backfill-logger", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:backfill-logger", + "target": "npm:filenamify", + "type": "static" + }, + { + "source": "npm:backfill-logger", + "target": "npm:fs-extra", + "type": "static" + } + ], + "npm:backfill-utils-dotenv": [ + { + "source": "npm:backfill-utils-dotenv", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:backfill-utils-dotenv", + "target": "npm:find-up", + "type": "static" + } + ], + "npm:backfill": [ + { + "source": "npm:backfill", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-cache", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-hasher", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:backfill-utils-dotenv", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:backfill", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:base": [ + { + "source": "npm:base", + "target": "npm:cache-base", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:class-utils", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:component-emitter", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:define-property@1.0.0", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:mixin-deep", + "type": "static" + }, + { + "source": "npm:base", + "target": "npm:pascalcase", + "type": "static" + } + ], + "npm:bcrypt-pbkdf": [ + { + "source": "npm:bcrypt-pbkdf", + "target": "npm:tweetnacl", + "type": "static" + } + ], + "npm:beachball": [ + { + "source": "npm:beachball", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:toposort", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:uuid@9.0.0", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:workspace-tools@0.27.0", + "type": "static" + }, + { + "source": "npm:beachball", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + } + ], + "npm:better-opn": [ + { + "source": "npm:better-opn", + "target": "npm:open@7.4.2", + "type": "static" + } + ], + "npm:bin-check": [ + { + "source": "npm:bin-check", + "target": "npm:execa@0.7.0", + "type": "static" + }, + { + "source": "npm:bin-check", + "target": "npm:executable", + "type": "static" + } + ], + "npm:bin-version-check": [ + { + "source": "npm:bin-version-check", + "target": "npm:bin-version", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:bin-version-check", + "target": "npm:semver-truncate", + "type": "static" + } + ], + "npm:bin-version": [ + { + "source": "npm:bin-version", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:bin-version", + "target": "npm:find-versions", + "type": "static" + } + ], + "npm:binary": [ + { + "source": "npm:binary", + "target": "npm:buffers", + "type": "static" + }, + { + "source": "npm:binary", + "target": "npm:chainsaw", + "type": "static" + } + ], + "npm:bindings@1.5.0": [ + { + "source": "npm:bindings@1.5.0", + "target": "npm:file-uri-to-path@1.0.0", + "type": "static" + } + ], + "npm:bl": [ + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:body-parser": [ + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs@6.9.7", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + } + ], + "npm:bonjour": [ + { + "source": "npm:bonjour", + "target": "npm:array-flatten@2.1.2", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:dns-equal", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:dns-txt", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:multicast-dns", + "type": "static" + }, + { + "source": "npm:bonjour", + "target": "npm:multicast-dns-service-types", + "type": "static" + } + ], + "npm:boxen@1.3.0": [ + { + "source": "npm:boxen@1.3.0", + "target": "npm:ansi-align@2.0.0", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:camelcase@4.1.0", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:cli-boxes@1.0.0", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:string-width@2.1.1", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:term-size@1.2.0", + "type": "static" + }, + { + "source": "npm:boxen@1.3.0", + "target": "npm:widest-line@2.0.1", + "type": "static" + } + ], + "npm:boxen": [ + { + "source": "npm:boxen", + "target": "npm:ansi-align", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:cli-boxes", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:term-size", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:type-fest@0.8.1", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:widest-line", + "type": "static" + } + ], + "npm:boxen@5.1.2": [ + { + "source": "npm:boxen@5.1.2", + "target": "npm:ansi-align", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:cli-boxes", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:widest-line", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:bplist-parser": [ + { + "source": "npm:bplist-parser", + "target": "npm:big-integer", + "type": "static" + } + ], + "npm:brace-expansion@1.1.11": [ + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:concat-map", + "type": "static" + } + ], + "npm:brace-expansion": [ + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + } + ], + "npm:braces@2.3.2": [ + { + "source": "npm:braces@2.3.2", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:fill-range@4.0.0", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:repeat-element", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:snapdragon-node", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:split-string", + "type": "static" + }, + { + "source": "npm:braces@2.3.2", + "target": "npm:to-regex", + "type": "static" + } + ], + "npm:braces": [ + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + } + ], + "npm:brotli-size": [ + { + "source": "npm:brotli-size", + "target": "npm:duplexer@0.1.1", + "type": "static" + } + ], + "npm:browserify-aes": [ + { + "source": "npm:browserify-aes", + "target": "npm:buffer-xor", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:evp_bytestokey", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:browserify-aes", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:browserify-cipher": [ + { + "source": "npm:browserify-cipher", + "target": "npm:browserify-aes", + "type": "static" + }, + { + "source": "npm:browserify-cipher", + "target": "npm:browserify-des", + "type": "static" + }, + { + "source": "npm:browserify-cipher", + "target": "npm:evp_bytestokey", + "type": "static" + } + ], + "npm:browserify-des": [ + { + "source": "npm:browserify-des", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:browserify-des", + "target": "npm:des.js", + "type": "static" + }, + { + "source": "npm:browserify-des", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:browserify-des", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:browserify-rsa": [ + { + "source": "npm:browserify-rsa", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:browserify-rsa", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:browserify-sign": [ + { + "source": "npm:browserify-sign", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:browserify-rsa", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:create-hmac", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:elliptic", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:browserify-sign", + "target": "npm:parse-asn1", + "type": "static" + } + ], + "npm:browserify-zlib": [ + { + "source": "npm:browserify-zlib", + "target": "npm:pako", + "type": "static" + } + ], + "npm:browserslist": [ + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + } + ], + "npm:bs-logger": [ + { + "source": "npm:bs-logger", + "target": "npm:fast-json-stable-stringify", + "type": "static" + } + ], + "npm:bser": [ + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + } + ], + "npm:buffer@4.9.1": [ + { + "source": "npm:buffer@4.9.1", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer@4.9.1", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:buffer@4.9.1", + "target": "npm:isarray@1.0.0", + "type": "static" + } + ], + "npm:buffer": [ + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:buffer@6.0.3": [ + { + "source": "npm:buffer@6.0.3", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer@6.0.3", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:builtins": [ + { + "source": "npm:builtins", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:cacache@12.0.3": [ + { + "source": "npm:cacache@12.0.3", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:chownr@1.1.4", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:figgy-pudding", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:mississippi", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:move-concurrently", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:ssri@6.0.2", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:cacache@12.0.3", + "target": "npm:y18n", + "type": "static" + } + ], + "npm:cacache": [ + { + "source": "npm:cacache", + "target": "npm:@npmcli/move-file", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri@8.0.0", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + } + ], + "npm:cacache@16.1.3": [ + { + "source": "npm:cacache@16.1.3", + "target": "npm:@npmcli/fs@2.1.2", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:@npmcli/move-file@2.0.1", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache@16.1.3", + "target": "npm:unique-filename@2.0.1", + "type": "static" + } + ], + "npm:cacache@17.1.3": [ + { + "source": "npm:cacache@17.1.3", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:fs-minipass@3.0.2", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache@17.1.3", + "target": "npm:unique-filename@3.0.0", + "type": "static" + } + ], + "npm:cache-base": [ + { + "source": "npm:cache-base", + "target": "npm:collection-visit", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:component-emitter", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:has-value", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:set-value", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:to-object-path", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:union-value", + "type": "static" + }, + { + "source": "npm:cache-base", + "target": "npm:unset-value", + "type": "static" + } + ], + "npm:cache-content-type": [ + { + "source": "npm:cache-content-type", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:cache-content-type", + "target": "npm:ylru", + "type": "static" + } + ], + "npm:cache-swap": [ + { + "source": "npm:cache-swap", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:cache-swap", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:cache-swap", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:cache-swap", + "target": "npm:rimraf@2.7.1", + "type": "static" + } + ], + "npm:cacheable-request": [ + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:call-bind": [ + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:caller-callsite": [ + { + "source": "npm:caller-callsite", + "target": "npm:callsites@2.0.0", + "type": "static" + } + ], + "npm:caller-path": [ + { + "source": "npm:caller-path", + "target": "npm:caller-callsite", + "type": "static" + } + ], + "npm:camel-case": [ + { + "source": "npm:camel-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:upper-case", + "type": "static" + } + ], + "npm:camel-case@4.1.2": [ + { + "source": "npm:camel-case@4.1.2", + "target": "npm:pascal-case@3.1.2", + "type": "static" + }, + { + "source": "npm:camel-case@4.1.2", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:camelcase-keys@2.1.0": [ + { + "source": "npm:camelcase-keys@2.1.0", + "target": "npm:camelcase@2.1.1", + "type": "static" + }, + { + "source": "npm:camelcase-keys@2.1.0", + "target": "npm:map-obj", + "type": "static" + } + ], + "npm:camelcase-keys": [ + { + "source": "npm:camelcase-keys", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:map-obj@4.1.0", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:quick-lru@4.0.1", + "type": "static" + } + ], + "npm:capture-exit": [ + { + "source": "npm:capture-exit", + "target": "npm:rsvp", + "type": "static" + } + ], + "npm:cardinal": [ + { + "source": "npm:cardinal", + "target": "npm:ansicolors", + "type": "static" + }, + { + "source": "npm:cardinal", + "target": "npm:redeyed", + "type": "static" + } + ], + "npm:chai": [ + { + "source": "npm:chai", + "target": "npm:assertion-error", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:check-error", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:deep-eql", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:get-func-name", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:loupe", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:pathval", + "type": "static" + }, + { + "source": "npm:chai", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:chainsaw": [ + { + "source": "npm:chainsaw", + "target": "npm:traverse@0.3.9", + "type": "static" + } + ], + "npm:chalk": [ + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:chalk@4.1.2": [ + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:chalk@1.1.3": [ + { + "source": "npm:chalk@1.1.3", + "target": "npm:ansi-styles@2.2.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:has-ansi", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:supports-color@2.0.0", + "type": "static" + } + ], + "npm:chalk@2.4.2": [ + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + } + ], + "npm:chalk@3.0.0": [ + { + "source": "npm:chalk@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:change-case": [ + { + "source": "npm:change-case", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:constant-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:dot-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:header-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:is-lower-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:is-upper-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:lower-case-first", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:param-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:pascal-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:path-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:sentence-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:snake-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:swap-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:title-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:upper-case", + "type": "static" + }, + { + "source": "npm:change-case", + "target": "npm:upper-case-first", + "type": "static" + } + ], + "npm:cheerio": [ + { + "source": "npm:cheerio", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:htmlparser2@3.10.1", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:parse5@3.0.3", + "type": "static" + } + ], + "npm:chokidar@3.3.0": [ + { + "source": "npm:chokidar@3.3.0", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:readdirp@3.2.0", + "type": "static" + }, + { + "source": "npm:chokidar@3.3.0", + "target": "npm:fsevents@2.1.3", + "type": "static" + } + ], + "npm:chokidar": [ + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.3", + "type": "static" + } + ], + "npm:chokidar@2.1.8": [ + { + "source": "npm:chokidar@2.1.8", + "target": "npm:anymatch@2.0.0", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:async-each", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:braces@2.3.2", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:glob-parent@3.1.0", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:is-binary-path@1.0.1", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:readdirp@2.2.1", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:upath@1.1.2", + "type": "static" + }, + { + "source": "npm:chokidar@2.1.8", + "target": "npm:fsevents@1.2.13", + "type": "static" + } + ], + "npm:chrome-remote-interface": [ + { + "source": "npm:chrome-remote-interface", + "target": "npm:commander@2.11.0", + "type": "static" + }, + { + "source": "npm:chrome-remote-interface", + "target": "npm:ws@7.5.6", + "type": "static" + } + ], + "npm:chrome-trace-event": [ + { + "source": "npm:chrome-trace-event", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:cipher-base": [ + { + "source": "npm:cipher-base", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:cipher-base", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:class-utils": [ + { + "source": "npm:class-utils", + "target": "npm:arr-union", + "type": "static" + }, + { + "source": "npm:class-utils", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:class-utils", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:class-utils", + "target": "npm:static-extend", + "type": "static" + } + ], + "npm:clean-css": [ + { + "source": "npm:clean-css", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:clean-stack@4.2.0": [ + { + "source": "npm:clean-stack@4.2.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + } + ], + "npm:clean-webpack-plugin": [ + { + "source": "npm:clean-webpack-plugin", + "target": "npm:del@4.1.1", + "type": "static" + } + ], + "npm:cli-cursor": [ + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + } + ], + "npm:cli-cursor@2.1.0": [ + { + "source": "npm:cli-cursor@2.1.0", + "target": "npm:restore-cursor@2.0.0", + "type": "static" + } + ], + "npm:cli-table3": [ + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + } + ], + "npm:cli-table": [ + { + "source": "npm:cli-table", + "target": "npm:colors@1.0.3", + "type": "static" + } + ], + "npm:cli-truncate": [ + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi@3.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:clipboard": [ + { + "source": "npm:clipboard", + "target": "npm:good-listener", + "type": "static" + }, + { + "source": "npm:clipboard", + "target": "npm:select", + "type": "static" + }, + { + "source": "npm:clipboard", + "target": "npm:tiny-emitter", + "type": "static" + } + ], + "npm:cliui@3.2.0": [ + { + "source": "npm:cliui@3.2.0", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:cliui@3.2.0", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:cliui@3.2.0", + "target": "npm:wrap-ansi@2.1.0", + "type": "static" + } + ], + "npm:cliui@5.0.0": [ + { + "source": "npm:cliui@5.0.0", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:cliui@5.0.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:cliui@5.0.0", + "target": "npm:wrap-ansi@5.1.0", + "type": "static" + } + ], + "npm:cliui@6.0.0": [ + { + "source": "npm:cliui@6.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + } + ], + "npm:cliui@7.0.4": [ + { + "source": "npm:cliui@7.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:cliui": [ + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:clone-deep": [ + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + } + ], + "npm:clone-response": [ + { + "source": "npm:clone-response", + "target": "npm:mimic-response@1.0.1", + "type": "static" + } + ], + "npm:cloneable-readable": [ + { + "source": "npm:cloneable-readable", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:cloneable-readable", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:co-body": [ + { + "source": "npm:co-body", + "target": "npm:inflation", + "type": "static" + }, + { + "source": "npm:co-body", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:co-body", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:co-body", + "target": "npm:type-is", + "type": "static" + } + ], + "npm:codesandbox-import-utils": [ + { + "source": "npm:codesandbox-import-utils", + "target": "npm:codesandbox-import-util-types", + "type": "static" + }, + { + "source": "npm:codesandbox-import-utils", + "target": "npm:istextorbinary", + "type": "static" + }, + { + "source": "npm:codesandbox-import-utils", + "target": "npm:lz-string", + "type": "static" + } + ], + "npm:codesandboxer": [ + { + "source": "npm:codesandboxer", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:isomorphic-unfetch", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:lz-string", + "type": "static" + }, + { + "source": "npm:codesandboxer", + "target": "npm:path-browserify", + "type": "static" + } + ], + "npm:collection-map": [ + { + "source": "npm:collection-map", + "target": "npm:arr-map", + "type": "static" + }, + { + "source": "npm:collection-map", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:collection-map", + "target": "npm:make-iterator", + "type": "static" + } + ], + "npm:collection-visit": [ + { + "source": "npm:collection-visit", + "target": "npm:map-visit", + "type": "static" + }, + { + "source": "npm:collection-visit", + "target": "npm:object-visit", + "type": "static" + } + ], + "npm:color-convert": [ + { + "source": "npm:color-convert", + "target": "npm:color-name@1.1.3", + "type": "static" + } + ], + "npm:color-convert@2.0.1": [ + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name", + "type": "static" + } + ], + "npm:color-string": [ + { + "source": "npm:color-string", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + } + ], + "npm:color": [ + { + "source": "npm:color", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-string", + "type": "static" + } + ], + "npm:columnify": [ + { + "source": "npm:columnify", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:combined-stream": [ + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + } + ], + "npm:command-line-args": [ + { + "source": "npm:command-line-args", + "target": "npm:array-back", + "type": "static" + }, + { + "source": "npm:command-line-args", + "target": "npm:find-replace", + "type": "static" + }, + { + "source": "npm:command-line-args", + "target": "npm:lodash.camelcase", + "type": "static" + }, + { + "source": "npm:command-line-args", + "target": "npm:typical@4.0.0", + "type": "static" + } + ], + "npm:command-line-usage": [ + { + "source": "npm:command-line-usage", + "target": "npm:array-back@4.0.2", + "type": "static" + }, + { + "source": "npm:command-line-usage", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:command-line-usage", + "target": "npm:table-layout", + "type": "static" + }, + { + "source": "npm:command-line-usage", + "target": "npm:typical", + "type": "static" + } + ], + "npm:compare-func": [ + { + "source": "npm:compare-func", + "target": "npm:array-ify", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:dot-prop@5.3.0", + "type": "static" + } + ], + "npm:compressible": [ + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:compression": [ + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes@3.0.0", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + } + ], + "npm:concat-stream": [ + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + } + ], + "npm:concat-stream@2.0.0": [ + { + "source": "npm:concat-stream@2.0.0", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream@2.0.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream@2.0.0", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:concat-stream@2.0.0", + "target": "npm:typedarray", + "type": "static" + } + ], + "npm:configstore": [ + { + "source": "npm:configstore", + "target": "npm:dot-prop", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:make-dir@1.3.0", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:unique-string", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:configstore", + "target": "npm:xdg-basedir", + "type": "static" + } + ], + "npm:connect": [ + { + "source": "npm:connect", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:utils-merge", + "type": "static" + } + ], + "npm:constant-case": [ + { + "source": "npm:constant-case", + "target": "npm:snake-case", + "type": "static" + }, + { + "source": "npm:constant-case", + "target": "npm:upper-case", + "type": "static" + } + ], + "npm:content-disposition": [ + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:conventional-changelog-angular": [ + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + } + ], + "npm:conventional-changelog-core": [ + { + "source": "npm:conventional-changelog-core", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:get-pkg-repo", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-remote-origin-url", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:normalize-package-data@3.0.3", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg-up@3.0.0", + "type": "static" + } + ], + "npm:conventional-changelog-writer": [ + { + "source": "npm:conventional-changelog-writer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split", + "type": "static" + } + ], + "npm:conventional-commits-filter": [ + { + "source": "npm:conventional-commits-filter", + "target": "npm:lodash.ismatch", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:modify-values", + "type": "static" + } + ], + "npm:conventional-commits-parser": [ + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + } + ], + "npm:conventional-recommended-bump": [ + { + "source": "npm:conventional-recommended-bump", + "target": "npm:concat-stream@2.0.0", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-changelog-preset-loader", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:meow", + "type": "static" + } + ], + "npm:convert-source-map": [ + { + "source": "npm:convert-source-map", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:cookies": [ + { + "source": "npm:cookies", + "target": "npm:depd@2.0.0", + "type": "static" + }, + { + "source": "npm:cookies", + "target": "npm:keygrip", + "type": "static" + } + ], + "npm:copy-concurrently": [ + { + "source": "npm:copy-concurrently", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:fs-write-stream-atomic", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:iferr", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:copy-concurrently", + "target": "npm:run-queue", + "type": "static" + } + ], + "npm:copy-props": [ + { + "source": "npm:copy-props", + "target": "npm:each-props", + "type": "static" + }, + { + "source": "npm:copy-props", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + } + ], + "npm:copy-to-clipboard": [ + { + "source": "npm:copy-to-clipboard", + "target": "npm:toggle-selection", + "type": "static" + } + ], + "npm:copy-webpack-plugin": [ + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript@5.0.1", + "type": "static" + } + ], + "npm:core-js-compat": [ + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + } + ], + "npm:cors": [ + { + "source": "npm:cors", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:cors", + "target": "npm:vary", + "type": "static" + } + ], + "npm:cosmiconfig@8.0.0": [ + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:cosmiconfig@8.2.0": [ + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.2.0", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:cosmiconfig@5.2.1": [ + { + "source": "npm:cosmiconfig@5.2.1", + "target": "npm:import-fresh@2.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig@5.2.1", + "target": "npm:is-directory", + "type": "static" + }, + { + "source": "npm:cosmiconfig@5.2.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@5.2.1", + "target": "npm:parse-json@4.0.0", + "type": "static" + } + ], + "npm:cosmiconfig@6.0.0": [ + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:cosmiconfig": [ + { + "source": "npm:cosmiconfig", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:cp-file": [ + { + "source": "npm:cp-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:cp-file", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:cp-file", + "target": "npm:nested-error-stacks", + "type": "static" + }, + { + "source": "npm:cp-file", + "target": "npm:p-event", + "type": "static" + } + ], + "npm:cpy": [ + { + "source": "npm:cpy", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:cp-file", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:globby@9.2.0", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:has-glob", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:junk", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:nested-error-stacks", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:p-all", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:p-filter", + "type": "static" + }, + { + "source": "npm:cpy", + "target": "npm:p-map@3.0.0", + "type": "static" + } + ], + "npm:create-ecdh": [ + { + "source": "npm:create-ecdh", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:create-ecdh", + "target": "npm:elliptic", + "type": "static" + } + ], + "npm:create-error-class": [ + { + "source": "npm:create-error-class", + "target": "npm:capture-stack-trace", + "type": "static" + } + ], + "npm:create-hash": [ + { + "source": "npm:create-hash", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:create-hash", + "target": "npm:sha.js", + "type": "static" + } + ], + "npm:create-hmac": [ + { + "source": "npm:create-hmac", + "target": "npm:cipher-base", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:create-hmac", + "target": "npm:sha.js", + "type": "static" + } + ], + "npm:create-jest": [ + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + } + ], + "npm:cross-env": [ + { + "source": "npm:cross-env", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + } + ], + "npm:cross-fetch": [ + { + "source": "npm:cross-fetch", + "target": "npm:node-fetch", + "type": "static" + } + ], + "npm:cross-spawn@5.1.0": [ + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:lru-cache@4.1.5", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn@5.1.0", + "target": "npm:which", + "type": "static" + } + ], + "npm:cross-spawn@6.0.5": [ + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which", + "type": "static" + } + ], + "npm:cross-spawn": [ + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command@2.0.0", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + } + ], + "npm:crypto-browserify": [ + { + "source": "npm:crypto-browserify", + "target": "npm:browserify-cipher", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:browserify-sign", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-ecdh", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:create-hmac", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:diffie-hellman", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:pbkdf2", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:public-encrypt", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:crypto-browserify", + "target": "npm:randomfill", + "type": "static" + } + ], + "npm:css-in-js-utils": [ + { + "source": "npm:css-in-js-utils", + "target": "npm:hyphenate-style-name", + "type": "static" + } + ], + "npm:css-loader": [ + { + "source": "npm:css-loader", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils@5.1.0", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:css-loader@3.6.0": [ + { + "source": "npm:css-loader@3.6.0", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-modules-extract-imports@2.0.0", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-modules-local-by-default@3.0.2", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-modules-scope@2.2.0", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-modules-values@3.0.0", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:css-loader@3.6.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:css-select@4.1.3": [ + { + "source": "npm:css-select@4.1.3", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:css-what@5.0.1", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select@4.1.3", + "target": "npm:nth-check@2.0.0", + "type": "static" + } + ], + "npm:css-select": [ + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils@1.5.1", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-to-react-native": [ + { + "source": "npm:css-to-react-native", + "target": "npm:camelize", + "type": "static" + }, + { + "source": "npm:css-to-react-native", + "target": "npm:css-color-keywords", + "type": "static" + }, + { + "source": "npm:css-to-react-native", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:css": [ + { + "source": "npm:css", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:source-map-resolve", + "type": "static" + }, + { + "source": "npm:css", + "target": "npm:urix", + "type": "static" + } + ], + "npm:cssstyle": [ + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + } + ], + "npm:currently-unhandled": [ + { + "source": "npm:currently-unhandled", + "target": "npm:array-find-index", + "type": "static" + } + ], + "npm:cypress": [ + { + "source": "npm:cypress", + "target": "npm:@cypress/request", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@cypress/xvfb", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sinonjs__fake-timers", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:@types/sizzle", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:arch", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:blob-util", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cachedir", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:check-more-types", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:common-tags", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:dayjs", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:eventemitter2", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:executable", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:getos", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:is-installed-globally", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lazy-ass", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:listr2@3.14.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:ospath", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:proxy-from-env@1.0.0", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:request-progress", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:untildify", + "type": "static" + }, + { + "source": "npm:cypress", + "target": "npm:yauzl", + "type": "static" + } + ], + "npm:d3-array@2.12.1": [ + { + "source": "npm:d3-array@2.12.1", + "target": "npm:internmap", + "type": "static" + } + ], + "npm:d3-contour": [ + { + "source": "npm:d3-contour", + "target": "npm:d3-array", + "type": "static" + } + ], + "npm:d3-dsv": [ + { + "source": "npm:d3-dsv", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:d3-dsv", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:d3-dsv", + "target": "npm:rw", + "type": "static" + } + ], + "npm:d3-fetch": [ + { + "source": "npm:d3-fetch", + "target": "npm:d3-dsv", + "type": "static" + } + ], + "npm:d3-geo": [ + { + "source": "npm:d3-geo", + "target": "npm:d3-array", + "type": "static" + } + ], + "npm:d3-interpolate": [ + { + "source": "npm:d3-interpolate", + "target": "npm:d3-color", + "type": "static" + } + ], + "npm:d3-sankey": [ + { + "source": "npm:d3-sankey", + "target": "npm:d3-array@2.12.1", + "type": "static" + }, + { + "source": "npm:d3-sankey", + "target": "npm:d3-shape", + "type": "static" + } + ], + "npm:d3-sankey@0.7.1": [ + { + "source": "npm:d3-sankey@0.7.1", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:d3-sankey@0.7.1", + "target": "npm:d3-collection", + "type": "static" + }, + { + "source": "npm:d3-sankey@0.7.1", + "target": "npm:d3-shape", + "type": "static" + } + ], + "npm:d3-scale": [ + { + "source": "npm:d3-scale", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-collection", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-color", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-interpolate", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-time@1.1.0", + "type": "static" + }, + { + "source": "npm:d3-scale", + "target": "npm:d3-time-format@2.1.3", + "type": "static" + } + ], + "npm:d3-scale@4.0.2": [ + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-array@2.12.1", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-interpolate", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-time", + "type": "static" + }, + { + "source": "npm:d3-scale@4.0.2", + "target": "npm:d3-time-format", + "type": "static" + } + ], + "npm:d3-shape@3.2.0": [ + { + "source": "npm:d3-shape@3.2.0", + "target": "npm:d3-path@3.1.0", + "type": "static" + } + ], + "npm:d3-shape": [ + { + "source": "npm:d3-shape", + "target": "npm:d3-path", + "type": "static" + } + ], + "npm:d3-time-format@2.1.3": [ + { + "source": "npm:d3-time-format@2.1.3", + "target": "npm:d3-time@1.1.0", + "type": "static" + } + ], + "npm:d3-time-format": [ + { + "source": "npm:d3-time-format", + "target": "npm:d3-time", + "type": "static" + } + ], + "npm:d3-time": [ + { + "source": "npm:d3-time", + "target": "npm:d3-array@2.12.1", + "type": "static" + } + ], + "npm:d": [ + { + "source": "npm:d", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:d", + "target": "npm:type", + "type": "static" + } + ], + "npm:danger": [ + { + "source": "npm:danger", + "target": "npm:@babel/polyfill", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:async-retry", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:fast-json-patch", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:get-stdin", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:gitlab", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:http-proxy-agent@2.1.0", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:https-proxy-agent@2.2.4", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:hyperlinker", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:jsonpointer", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.find", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.includes", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.isobject", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.keys", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.mapvalues", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:memfs-or-file-map-to-github-branch", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:node-cleanup", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:override-require", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:parse-diff", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:parse-git-config", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:parse-github-url", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:parse-link-header", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:pinpoint", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:prettyjson", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:readline-sync", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:danger", + "target": "npm:supports-hyperlinks", + "type": "static" + } + ], + "npm:dashdash": [ + { + "source": "npm:dashdash", + "target": "npm:assert-plus", + "type": "static" + } + ], + "npm:data-urls": [ + { + "source": "npm:data-urls", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-url", + "type": "static" + } + ], + "npm:debug-fabulous": [ + { + "source": "npm:debug-fabulous", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:debug-fabulous", + "target": "npm:memoizee", + "type": "static" + }, + { + "source": "npm:debug-fabulous", + "target": "npm:object-assign", + "type": "static" + } + ], + "npm:debug@2.6.9": [ + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + } + ], + "npm:debug@3.1.0": [ + { + "source": "npm:debug@3.1.0", + "target": "npm:ms@2.0.0", + "type": "static" + } + ], + "npm:debug@3.2.6": [ + { + "source": "npm:debug@3.2.6", + "target": "npm:ms", + "type": "static" + } + ], + "npm:debug@3.2.7": [ + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + } + ], + "npm:debug": [ + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + } + ], + "npm:debug@4.1.1": [ + { + "source": "npm:debug@4.1.1", + "target": "npm:ms", + "type": "static" + } + ], + "npm:decamelize-keys": [ + { + "source": "npm:decamelize-keys", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:map-obj", + "type": "static" + } + ], + "npm:decompress-response": [ + { + "source": "npm:decompress-response", + "target": "npm:mimic-response", + "type": "static" + } + ], + "npm:deep-assign": [ + { + "source": "npm:deep-assign", + "target": "npm:is-obj", + "type": "static" + } + ], + "npm:deep-eql": [ + { + "source": "npm:deep-eql", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:default-browser-id": [ + { + "source": "npm:default-browser-id", + "target": "npm:bplist-parser", + "type": "static" + }, + { + "source": "npm:default-browser-id", + "target": "npm:meow@3.7.0", + "type": "static" + }, + { + "source": "npm:default-browser-id", + "target": "npm:untildify@2.1.0", + "type": "static" + } + ], + "npm:default-compare": [ + { + "source": "npm:default-compare", + "target": "npm:kind-of@5.1.0", + "type": "static" + } + ], + "npm:default-gateway": [ + { + "source": "npm:default-gateway", + "target": "npm:execa", + "type": "static" + } + ], + "npm:defaults": [ + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + } + ], + "npm:define-properties": [ + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:define-property": [ + { + "source": "npm:define-property", + "target": "npm:is-descriptor@0.1.6", + "type": "static" + } + ], + "npm:define-property@1.0.0": [ + { + "source": "npm:define-property@1.0.0", + "target": "npm:is-descriptor", + "type": "static" + } + ], + "npm:define-property@2.0.2": [ + { + "source": "npm:define-property@2.0.2", + "target": "npm:is-descriptor", + "type": "static" + }, + { + "source": "npm:define-property@2.0.2", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:del": [ + { + "source": "npm:del", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:slash", + "type": "static" + } + ], + "npm:del@4.1.1": [ + { + "source": "npm:del@4.1.1", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:globby@6.1.0", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:is-path-in-cwd", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:p-map@2.1.0", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:del@4.1.1", + "target": "npm:rimraf@2.7.1", + "type": "static" + } + ], + "npm:del@5.1.0": [ + { + "source": "npm:del@5.1.0", + "target": "npm:globby@10.0.2", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:p-map@3.0.0", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del@5.1.0", + "target": "npm:slash", + "type": "static" + } + ], + "npm:del@7.0.0": [ + { + "source": "npm:del@7.0.0", + "target": "npm:globby@13.2.2", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:is-path-cwd@3.0.0", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:is-path-inside@4.0.0", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:p-map@5.5.0", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del@7.0.0", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], + "npm:des.js": [ + { + "source": "npm:des.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:des.js", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], + "npm:detab": [ + { + "source": "npm:detab", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:detect-indent@4.0.0": [ + { + "source": "npm:detect-indent@4.0.0", + "target": "npm:repeating", + "type": "static" + } + ], + "npm:detect-package-manager": [ + { + "source": "npm:detect-package-manager", + "target": "npm:execa", + "type": "static" + } + ], + "npm:detect-port": [ + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + } + ], + "npm:diffie-hellman": [ + { + "source": "npm:diffie-hellman", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:diffie-hellman", + "target": "npm:miller-rabin", + "type": "static" + }, + { + "source": "npm:diffie-hellman", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:dir-glob@2.2.2": [ + { + "source": "npm:dir-glob@2.2.2", + "target": "npm:path-type@3.0.0", + "type": "static" + } + ], + "npm:dir-glob": [ + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:dns-packet": [ + { + "source": "npm:dns-packet", + "target": "npm:ip@1.1.5", + "type": "static" + }, + { + "source": "npm:dns-packet", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:dns-txt": [ + { + "source": "npm:dns-txt", + "target": "npm:buffer-indexof", + "type": "static" + } + ], + "npm:doctoc": [ + { + "source": "npm:doctoc", + "target": "npm:@textlint/markdown-to-ast", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:anchor-markdown-header", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:underscore", + "type": "static" + }, + { + "source": "npm:doctoc", + "target": "npm:update-section", + "type": "static" + } + ], + "npm:doctrine": [ + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:doctrine@2.1.0": [ + { + "source": "npm:doctrine@2.1.0", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:dom-converter": [ + { + "source": "npm:dom-converter", + "target": "npm:utila", + "type": "static" + } + ], + "npm:dom-css": [ + { + "source": "npm:dom-css", + "target": "npm:add-px-to-style", + "type": "static" + }, + { + "source": "npm:dom-css", + "target": "npm:prefix-style", + "type": "static" + }, + { + "source": "npm:dom-css", + "target": "npm:to-camel-case", + "type": "static" + } + ], + "npm:dom-helpers": [ + { + "source": "npm:dom-helpers", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:dom-helpers", + "target": "npm:csstype@2.6.19", + "type": "static" + } + ], + "npm:dom-serialize": [ + { + "source": "npm:dom-serialize", + "target": "npm:custom-event", + "type": "static" + }, + { + "source": "npm:dom-serialize", + "target": "npm:ent", + "type": "static" + }, + { + "source": "npm:dom-serialize", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:dom-serialize", + "target": "npm:void-elements", + "type": "static" + } + ], + "npm:dom-serializer": [ + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype@1.3.1", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + } + ], + "npm:dom-serializer@1.3.2": [ + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:entities@2.0.0", + "type": "static" + } + ], + "npm:domexception": [ + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:domhandler@2.4.2": [ + { + "source": "npm:domhandler@2.4.2", + "target": "npm:domelementtype@1.3.1", + "type": "static" + } + ], + "npm:domhandler@3.0.0": [ + { + "source": "npm:domhandler@3.0.0", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domhandler": [ + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domutils@1.5.1": [ + { + "source": "npm:domutils@1.5.1", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils@1.5.1", + "target": "npm:domelementtype@1.3.1", + "type": "static" + } + ], + "npm:domutils": [ + { + "source": "npm:domutils", + "target": "npm:dom-serializer@1.3.2", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + } + ], + "npm:dot-case": [ + { + "source": "npm:dot-case", + "target": "npm:no-case", + "type": "static" + } + ], + "npm:dot-case@3.0.4": [ + { + "source": "npm:dot-case@3.0.4", + "target": "npm:no-case@3.0.4", + "type": "static" + }, + { + "source": "npm:dot-case@3.0.4", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:dot-prop": [ + { + "source": "npm:dot-prop", + "target": "npm:is-obj", + "type": "static" + } + ], + "npm:dot-prop@5.3.0": [ + { + "source": "npm:dot-prop@5.3.0", + "target": "npm:is-obj@2.0.0", + "type": "static" + } + ], + "npm:downshift": [ + { + "source": "npm:downshift", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:downshift", + "target": "npm:compute-scroll-into-view", + "type": "static" + }, + { + "source": "npm:downshift", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:downshift", + "target": "npm:react-is@16.13.1", + "type": "static" + } + ], + "npm:duplexer2": [ + { + "source": "npm:duplexer2", + "target": "npm:readable-stream@1.1.14", + "type": "static" + } + ], + "npm:duplexer2@0.1.4": [ + { + "source": "npm:duplexer2@0.1.4", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:duplexify": [ + { + "source": "npm:duplexify", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:duplexify", + "target": "npm:stream-shift", + "type": "static" + } + ], + "npm:each-props": [ + { + "source": "npm:each-props", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:each-props", + "target": "npm:object.defaults", + "type": "static" + } + ], + "npm:ecc-jsbn": [ + { + "source": "npm:ecc-jsbn", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:ecc-jsbn", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:ecdsa-sig-formatter": [ + { + "source": "npm:ecdsa-sig-formatter", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:editions": [ + { + "source": "npm:editions", + "target": "npm:errlop", + "type": "static" + }, + { + "source": "npm:editions", + "target": "npm:semver", + "type": "static" + } + ], + "npm:ejs": [ + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + } + ], + "npm:element-resize-detector": [ + { + "source": "npm:element-resize-detector", + "target": "npm:batch-processor", + "type": "static" + } + ], + "npm:elliptic": [ + { + "source": "npm:elliptic", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:brorand", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:hash.js", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:hmac-drbg", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:elliptic", + "target": "npm:minimalistic-crypto-utils", + "type": "static" + } + ], + "npm:encoding": [ + { + "source": "npm:encoding", + "target": "npm:iconv-lite", + "type": "static" + } + ], + "npm:end-of-stream": [ + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + } + ], + "npm:endent": [ + { + "source": "npm:endent", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:endent", + "target": "npm:fast-json-parse", + "type": "static" + }, + { + "source": "npm:endent", + "target": "npm:objectorarray", + "type": "static" + } + ], + "npm:engine.io": [ + { + "source": "npm:engine.io", + "target": "npm:@types/cookie", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:cors", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:engine.io-parser", + "type": "static" + }, + { + "source": "npm:engine.io", + "target": "npm:ws@8.2.3", + "type": "static" + } + ], + "npm:enhanced-resolve@4.5.0": [ + { + "source": "npm:enhanced-resolve@4.5.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve@4.5.0", + "target": "npm:memory-fs@0.5.0", + "type": "static" + }, + { + "source": "npm:enhanced-resolve@4.5.0", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:enhanced-resolve": [ + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable@2.2.1", + "type": "static" + } + ], + "npm:enquirer": [ + { + "source": "npm:enquirer", + "target": "npm:ansi-colors@4.1.1", + "type": "static" + } + ], + "npm:enzyme-shallow-equal": [ + { + "source": "npm:enzyme-shallow-equal", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:enzyme-shallow-equal", + "target": "npm:object-is", + "type": "static" + } + ], + "npm:enzyme-to-json": [ + { + "source": "npm:enzyme-to-json", + "target": "npm:@types/cheerio", + "type": "static" + }, + { + "source": "npm:enzyme-to-json", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:enzyme-to-json", + "target": "npm:react-is@16.13.1", + "type": "static" + } + ], + "npm:enzyme": [ + { + "source": "npm:enzyme", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:cheerio", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:html-element-map", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:is-subset", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:lodash.escape@4.0.1", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:raf", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:rst-selector-parser", + "type": "static" + }, + { + "source": "npm:enzyme", + "target": "npm:string.prototype.trim", + "type": "static" + } + ], + "npm:errno": [ + { + "source": "npm:errno", + "target": "npm:prr", + "type": "static" + } + ], + "npm:error-ex": [ + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + } + ], + "npm:error-stack-parser": [ + { + "source": "npm:error-stack-parser", + "target": "npm:stackframe", + "type": "static" + } + ], + "npm:es-abstract": [ + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + } + ], + "npm:es-to-primitive": [ + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:es5-ext": [ + { + "source": "npm:es5-ext", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:es6-symbol", + "type": "static" + }, + { + "source": "npm:es5-ext", + "target": "npm:next-tick", + "type": "static" + } + ], + "npm:es6-iterator": [ + { + "source": "npm:es6-iterator", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-iterator", + "target": "npm:es6-symbol", + "type": "static" + } + ], + "npm:es6-promisify": [ + { + "source": "npm:es6-promisify", + "target": "npm:es6-promise", + "type": "static" + } + ], + "npm:es6-symbol": [ + { + "source": "npm:es6-symbol", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-symbol", + "target": "npm:ext", + "type": "static" + } + ], + "npm:es6-weak-map": [ + { + "source": "npm:es6-weak-map", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:es6-weak-map", + "target": "npm:es6-symbol", + "type": "static" + } + ], + "npm:esbuild-loader": [ + { + "source": "npm:esbuild-loader", + "target": "npm:esbuild@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild-loader", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:esbuild-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:esbuild-loader", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:esbuild": [ + { + "source": "npm:esbuild", + "target": "npm:esbuild-android-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-android-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-darwin-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-darwin-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-freebsd-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-freebsd-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-32@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-arm@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-arm64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-mips64le@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-ppc64le@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-riscv64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-linux-s390x@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-netbsd-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-openbsd-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-sunos-64@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-windows-32@0.14.51", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-windows-64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:esbuild-windows-arm64@0.14.51", + "type": "static" + } + ], + "npm:esbuild@0.19.2": [ + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/android-arm@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/android-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/android-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/darwin-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/darwin-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/freebsd-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/freebsd-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-arm@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-ia32@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-loong64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-mips64el@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-ppc64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-riscv64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-s390x@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/linux-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/netbsd-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/openbsd-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/sunos-x64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/win32-arm64@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/win32-ia32@0.19.2", + "type": "static" + }, + { + "source": "npm:esbuild@0.19.2", + "target": "npm:@esbuild/win32-x64", + "type": "static" + } + ], + "npm:escodegen@1.8.1": [ + { + "source": "npm:escodegen@1.8.1", + "target": "npm:esprima@2.7.3", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:estraverse@1.9.3", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:escodegen@1.8.1", + "target": "npm:source-map@0.2.0", + "type": "static" + } + ], + "npm:escodegen": [ + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:eslint-config-airbnb-base": [ + { + "source": "npm:eslint-config-airbnb-base", + "target": "npm:confusing-browser-globals", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb-base", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb-base", + "target": "npm:object.entries", + "type": "static" + } + ], + "npm:eslint-config-airbnb": [ + { + "source": "npm:eslint-config-airbnb", + "target": "npm:eslint-config-airbnb-base", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:eslint-config-airbnb", + "target": "npm:object.entries", + "type": "static" + } + ], + "npm:eslint-import-resolver-node": [ + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:eslint-import-resolver-typescript": [ + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-typescript", + "target": "npm:tsconfig-paths@3.13.0", + "type": "static" + } + ], + "npm:eslint-module-utils": [ + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:find-up@2.1.0", + "type": "static" + } + ], + "npm:eslint-plugin-deprecation": [ + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:eslint-plugin-es": [ + { + "source": "npm:eslint-plugin-es", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:regexpp", + "type": "static" + } + ], + "npm:eslint-plugin-es@3.0.1": [ + { + "source": "npm:eslint-plugin-es@3.0.1", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es@3.0.1", + "target": "npm:regexpp", + "type": "static" + } + ], + "npm:eslint-plugin-import": [ + { + "source": "npm:eslint-plugin-import", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-import-resolver-node", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:tsconfig-paths@3.13.0", + "type": "static" + } + ], + "npm:eslint-plugin-jest": [ + { + "source": "npm:eslint-plugin-jest", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + } + ], + "npm:eslint-plugin-jest@25.2.4": [ + { + "source": "npm:eslint-plugin-jest@25.2.4", + "target": "npm:@typescript-eslint/experimental-utils", + "type": "static" + } + ], + "npm:eslint-plugin-jsdoc": [ + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:@es-joy/jsdoccomment", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:comment-parser", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsdoc", + "target": "npm:spdx-expression-parse", + "type": "static" + } + ], + "npm:eslint-plugin-jsx-a11y": [ + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:ast-types-flow", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axobject-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:damerau-levenshtein", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:language-tags", + "type": "static" + } + ], + "npm:eslint-plugin-node": [ + { + "source": "npm:eslint-plugin-node", + "target": "npm:eslint-plugin-es@3.0.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:semver", + "type": "static" + } + ], + "npm:eslint-plugin-react@7.24.0": [ + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:resolve@2.0.0-next.3", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.24.0", + "target": "npm:string.prototype.matchall", + "type": "static" + } + ], + "npm:eslint-plugin-react": [ + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine@2.1.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve@2.0.0-next.3", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + } + ], + "npm:eslint-plugin-security": [ + { + "source": "npm:eslint-plugin-security", + "target": "npm:safe-regex", + "type": "static" + } + ], + "npm:eslint-scope": [ + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.2.0", + "type": "static" + } + ], + "npm:eslint-scope@4.0.3": [ + { + "source": "npm:eslint-scope@4.0.3", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@4.0.3", + "target": "npm:estraverse@4.2.0", + "type": "static" + } + ], + "npm:eslint-utils": [ + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + } + ], + "npm:eslint": [ + { + "source": "npm:eslint", + "target": "npm:@babel/code-frame@7.12.11", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys@2.0.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:functional-red-black-tree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals@13.12.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore@4.0.6", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator@0.9.1", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:v8-compile-cache", + "type": "static" + } + ], + "npm:espree": [ + { + "source": "npm:espree", + "target": "npm:acorn@7.4.1", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + } + ], + "npm:espree@9.6.1": [ + { + "source": "npm:espree@9.6.1", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree@9.6.1", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree@9.6.1", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:esprima-extract-comments": [ + { + "source": "npm:esprima-extract-comments", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:esquery": [ + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:esrecurse": [ + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:event-emitter": [ + { + "source": "npm:event-emitter", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:event-emitter", + "target": "npm:es5-ext", + "type": "static" + } + ], + "npm:evp_bytestokey": [ + { + "source": "npm:evp_bytestokey", + "target": "npm:md5.js", + "type": "static" + }, + { + "source": "npm:evp_bytestokey", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:execa@4.1.0": [ + { + "source": "npm:execa@4.1.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:human-signals@1.1.1", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@4.1.0", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:execa@5.0.0": [ + { + "source": "npm:execa@5.0.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:execa@0.7.0": [ + { + "source": "npm:execa@0.7.0", + "target": "npm:cross-spawn@5.1.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:get-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@0.7.0", + "target": "npm:strip-eof", + "type": "static" + } + ], + "npm:execa@1.0.0": [ + { + "source": "npm:execa@1.0.0", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:get-stream@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:strip-eof", + "type": "static" + } + ], + "npm:execa": [ + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:executable": [ + { + "source": "npm:executable", + "target": "npm:pify", + "type": "static" + } + ], + "npm:expand-brackets": [ + { + "source": "npm:expand-brackets", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:posix-character-classes", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:expand-brackets", + "target": "npm:to-regex", + "type": "static" + } + ], + "npm:expand-tilde": [ + { + "source": "npm:expand-tilde", + "target": "npm:homedir-polyfill", + "type": "static" + } + ], + "npm:expect": [ + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:express": [ + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs@6.9.7", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + } + ], + "npm:ext-list": [ + { + "source": "npm:ext-list", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:ext-name": [ + { + "source": "npm:ext-name", + "target": "npm:ext-list", + "type": "static" + }, + { + "source": "npm:ext-name", + "target": "npm:sort-keys-length", + "type": "static" + } + ], + "npm:ext": [ + { + "source": "npm:ext", + "target": "npm:type@2.0.0", + "type": "static" + } + ], + "npm:extend-shallow@1.1.4": [ + { + "source": "npm:extend-shallow@1.1.4", + "target": "npm:kind-of@1.1.0", + "type": "static" + } + ], + "npm:extend-shallow": [ + { + "source": "npm:extend-shallow", + "target": "npm:is-extendable", + "type": "static" + } + ], + "npm:extend-shallow@3.0.2": [ + { + "source": "npm:extend-shallow@3.0.2", + "target": "npm:assign-symbols", + "type": "static" + }, + { + "source": "npm:extend-shallow@3.0.2", + "target": "npm:is-extendable@1.0.1", + "type": "static" + } + ], + "npm:external-editor": [ + { + "source": "npm:external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:tmp@0.0.33", + "type": "static" + } + ], + "npm:extglob": [ + { + "source": "npm:extglob", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:define-property@1.0.0", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:expand-brackets", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:fragment-cache", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:extglob", + "target": "npm:to-regex", + "type": "static" + } + ], + "npm:extract-comments": [ + { + "source": "npm:extract-comments", + "target": "npm:esprima-extract-comments", + "type": "static" + }, + { + "source": "npm:extract-comments", + "target": "npm:parse-code-context", + "type": "static" + } + ], + "npm:extract-zip": [ + { + "source": "npm:extract-zip", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:@types/yauzl", + "type": "static" + } + ], + "npm:fancy-log": [ + { + "source": "npm:fancy-log", + "target": "npm:ansi-gray", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:parse-node-version", + "type": "static" + }, + { + "source": "npm:fancy-log", + "target": "npm:time-stamp", + "type": "static" + } + ], + "npm:fast-check": [ + { + "source": "npm:fast-check", + "target": "npm:pure-rand", + "type": "static" + } + ], + "npm:fast-glob@3.2.7": [ + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:fast-glob@2.2.7": [ + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:@mrmlnc/readdir-enhanced", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:@nodelib/fs.stat@1.1.3", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:glob-parent@3.1.0", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@2.2.7", + "target": "npm:micromatch@3.1.10", + "type": "static" + } + ], + "npm:fast-glob": [ + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:fast-png": [ + { + "source": "npm:fast-png", + "target": "npm:@types/pako", + "type": "static" + }, + { + "source": "npm:fast-png", + "target": "npm:iobuffer", + "type": "static" + }, + { + "source": "npm:fast-png", + "target": "npm:pako@2.1.0", + "type": "static" + } + ], + "npm:fastq": [ + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + } + ], + "npm:fault": [ + { + "source": "npm:fault", + "target": "npm:format", + "type": "static" + } + ], + "npm:faye-websocket": [ + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:fb-watchman": [ + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + } + ], + "npm:fd-slicer": [ + { + "source": "npm:fd-slicer", + "target": "npm:pend", + "type": "static" + } + ], + "npm:fela-bindings": [ + { + "source": "npm:fela-bindings", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:fela-dom", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:fela-tools", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:react-addons-shallow-compare", + "type": "static" + }, + { + "source": "npm:fela-bindings", + "target": "npm:shallow-equal", + "type": "static" + } + ], + "npm:fela-dom": [ + { + "source": "npm:fela-dom", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-dom", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-dom", + "target": "npm:fela-utils", + "type": "static" + } + ], + "npm:fela-dom@11.7.0": [ + { + "source": "npm:fela-dom@11.7.0", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-dom@11.7.0", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-dom@11.7.0", + "target": "npm:fela-utils@11.7.0", + "type": "static" + }, + { + "source": "npm:fela-dom@11.7.0", + "target": "npm:sort-css-media-queries", + "type": "static" + } + ], + "npm:fela-plugin-custom-property": [ + { + "source": "npm:fela-plugin-custom-property", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-plugin-custom-property", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:fela-plugin-embedded": [ + { + "source": "npm:fela-plugin-embedded", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-plugin-embedded", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:fela-plugin-fallback-value": [ + { + "source": "npm:fela-plugin-fallback-value", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-plugin-fallback-value", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:fela-plugin-placeholder-prefixer": [ + { + "source": "npm:fela-plugin-placeholder-prefixer", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-plugin-placeholder-prefixer", + "target": "npm:fela-plugin-custom-property", + "type": "static" + } + ], + "npm:fela-plugin-rtl": [ + { + "source": "npm:fela-plugin-rtl", + "target": "npm:rtl-css-js", + "type": "static" + } + ], + "npm:fela-tools": [ + { + "source": "npm:fela-tools", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-tools", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela-tools", + "target": "npm:fela", + "type": "static" + }, + { + "source": "npm:fela-tools", + "target": "npm:fela-utils", + "type": "static" + } + ], + "npm:fela-utils": [ + { + "source": "npm:fela-utils", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-utils", + "target": "npm:fast-loops", + "type": "static" + } + ], + "npm:fela-utils@11.7.0": [ + { + "source": "npm:fela-utils@11.7.0", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela-utils@11.7.0", + "target": "npm:fast-loops", + "type": "static" + } + ], + "npm:fela": [ + { + "source": "npm:fela", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:csstype@2.6.19", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:fela-utils", + "type": "static" + }, + { + "source": "npm:fela", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:fetch-blob": [ + { + "source": "npm:fetch-blob", + "target": "npm:node-domexception", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:web-streams-polyfill", + "type": "static" + } + ], + "npm:figures": [ + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + } + ], + "npm:file-entry-cache": [ + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + } + ], + "npm:file-loader": [ + { + "source": "npm:file-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:file-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + } + ], + "npm:file-system-cache": [ + { + "source": "npm:file-system-cache", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:file-system-cache", + "target": "npm:fs-extra@0.30.0", + "type": "static" + }, + { + "source": "npm:file-system-cache", + "target": "npm:ramda@0.21.0", + "type": "static" + } + ], + "npm:file-type": [ + { + "source": "npm:file-type", + "target": "npm:readable-web-to-node-stream", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:strtok3", + "type": "static" + }, + { + "source": "npm:file-type", + "target": "npm:token-types", + "type": "static" + } + ], + "npm:filelist": [ + { + "source": "npm:filelist", + "target": "npm:minimatch@5.0.1", + "type": "static" + } + ], + "npm:filenamify": [ + { + "source": "npm:filenamify", + "target": "npm:filename-reserved-regex", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:strip-outer", + "type": "static" + }, + { + "source": "npm:filenamify", + "target": "npm:trim-repeated", + "type": "static" + } + ], + "npm:filenamify@5.1.1": [ + { + "source": "npm:filenamify@5.1.1", + "target": "npm:filename-reserved-regex@3.0.0", + "type": "static" + }, + { + "source": "npm:filenamify@5.1.1", + "target": "npm:strip-outer@2.0.0", + "type": "static" + }, + { + "source": "npm:filenamify@5.1.1", + "target": "npm:trim-repeated@2.0.0", + "type": "static" + } + ], + "npm:fill-range@4.0.0": [ + { + "source": "npm:fill-range@4.0.0", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:fill-range@4.0.0", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:fill-range@4.0.0", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:fill-range@4.0.0", + "target": "npm:to-regex-range@2.1.1", + "type": "static" + } + ], + "npm:fill-range": [ + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + } + ], + "npm:finalhandler": [ + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:find-babel-config": [ + { + "source": "npm:find-babel-config", + "target": "npm:json5@0.5.1", + "type": "static" + }, + { + "source": "npm:find-babel-config", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:find-cache-dir@2.1.0": [ + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:pkg-dir@3.0.0", + "type": "static" + } + ], + "npm:find-cache-dir": [ + { + "source": "npm:find-cache-dir", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + } + ], + "npm:find-replace": [ + { + "source": "npm:find-replace", + "target": "npm:array-back", + "type": "static" + } + ], + "npm:find-up@3.0.0": [ + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + } + ], + "npm:find-up@1.1.2": [ + { + "source": "npm:find-up@1.1.2", + "target": "npm:path-exists@2.1.0", + "type": "static" + }, + { + "source": "npm:find-up@1.1.2", + "target": "npm:pinkie-promise", + "type": "static" + } + ], + "npm:find-up@2.1.0": [ + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "type": "static" + } + ], + "npm:find-up@4.1.0": [ + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path@5.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists@4.0.0", + "type": "static" + } + ], + "npm:find-up": [ + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists@4.0.0", + "type": "static" + } + ], + "npm:find-up@6.3.0": [ + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.1.1", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + } + ], + "npm:find-versions": [ + { + "source": "npm:find-versions", + "target": "npm:semver-regex", + "type": "static" + } + ], + "npm:find-webpack": [ + { + "source": "npm:find-webpack", + "target": "npm:debug@4.1.1", + "type": "static" + }, + { + "source": "npm:find-webpack", + "target": "npm:find-yarn-workspace-root@1.2.1", + "type": "static" + }, + { + "source": "npm:find-webpack", + "target": "npm:mocked-env", + "type": "static" + } + ], + "npm:find-yarn-workspace-root@1.2.1": [ + { + "source": "npm:find-yarn-workspace-root@1.2.1", + "target": "npm:fs-extra@4.0.3", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root@1.2.1", + "target": "npm:micromatch@3.1.10", + "type": "static" + } + ], + "npm:find-yarn-workspace-root": [ + { + "source": "npm:find-yarn-workspace-root", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:findup-sync": [ + { + "source": "npm:findup-sync", + "target": "npm:detect-file", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:is-glob@3.1.0", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:findup-sync", + "target": "npm:resolve-dir", + "type": "static" + } + ], + "npm:findup-sync@3.0.0": [ + { + "source": "npm:findup-sync@3.0.0", + "target": "npm:detect-file", + "type": "static" + }, + { + "source": "npm:findup-sync@3.0.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:findup-sync@3.0.0", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:findup-sync@3.0.0", + "target": "npm:resolve-dir", + "type": "static" + } + ], + "npm:fined": [ + { + "source": "npm:fined", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:object.defaults", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:fined", + "target": "npm:parse-filepath", + "type": "static" + } + ], + "npm:flamebearer": [ + { + "source": "npm:flamebearer", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:flamebearer", + "target": "npm:opn", + "type": "static" + } + ], + "npm:flamegrill": [ + { + "source": "npm:flamegrill", + "target": "npm:concat-stream@2.0.0", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:flamebearer", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:n-readlines", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:puppeteer", + "type": "static" + }, + { + "source": "npm:flamegrill", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:flat-cache": [ + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:flat@4.1.0": [ + { + "source": "npm:flat@4.1.0", + "target": "npm:is-buffer@2.0.4", + "type": "static" + } + ], + "npm:flush-write-stream": [ + { + "source": "npm:flush-write-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:flush-write-stream", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:for-own": [ + { + "source": "npm:for-own", + "target": "npm:for-in", + "type": "static" + } + ], + "npm:foreground-child": [ + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.0.2", + "type": "static" + } + ], + "npm:fork-ts-checker-webpack-plugin": [ + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs@3.4.1", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:fork-ts-checker-webpack-plugin@4.1.6": [ + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", + "target": "npm:worker-rpc", + "type": "static" + } + ], + "npm:form-data": [ + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:form-data@3.0.0": [ + { + "source": "npm:form-data@3.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@3.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@3.0.0", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:form-data@4.0.0": [ + { + "source": "npm:form-data@4.0.0", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@4.0.0", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:form-data@2.3.3": [ + { + "source": "npm:form-data@2.3.3", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@2.3.3", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:formdata-polyfill": [ + { + "source": "npm:formdata-polyfill", + "target": "npm:fetch-blob", + "type": "static" + } + ], + "npm:formik": [ + { + "source": "npm:formik", + "target": "npm:deepmerge@2.2.1", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:formik", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:fragment-cache": [ + { + "source": "npm:fragment-cache", + "target": "npm:map-cache", + "type": "static" + } + ], + "npm:from2": [ + { + "source": "npm:from2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:from2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:fs-extra@11.1.1": [ + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:universalify@2.0.0", + "type": "static" + } + ], + "npm:fs-extra": [ + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-extra@0.30.0": [ + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:jsonfile@2.4.0", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:klaw", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:fs-extra@0.30.0", + "target": "npm:rimraf@2.7.1", + "type": "static" + } + ], + "npm:fs-extra@10.1.0": [ + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@10.1.0", + "target": "npm:universalify@2.0.0", + "type": "static" + } + ], + "npm:fs-extra@4.0.3": [ + { + "source": "npm:fs-extra@4.0.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@4.0.3", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@4.0.3", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-extra@9.1.0": [ + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile@6.0.1", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify@2.0.0", + "type": "static" + } + ], + "npm:fs-extra@7.0.1": [ + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-minipass@1.2.7": [ + { + "source": "npm:fs-minipass@1.2.7", + "target": "npm:minipass@2.9.0", + "type": "static" + } + ], + "npm:fs-minipass": [ + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:fs-minipass@3.0.2": [ + { + "source": "npm:fs-minipass@3.0.2", + "target": "npm:minipass@5.0.0", + "type": "static" + } + ], + "npm:fs-mkdirp-stream": [ + { + "source": "npm:fs-mkdirp-stream", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-mkdirp-stream", + "target": "npm:through2@2.0.5", + "type": "static" + } + ], + "npm:fs-write-stream-atomic": [ + { + "source": "npm:fs-write-stream-atomic", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-write-stream-atomic", + "target": "npm:iferr", + "type": "static" + }, + { + "source": "npm:fs-write-stream-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:fs-write-stream-atomic", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:fsevents@1.2.13": [ + { + "source": "npm:fsevents@1.2.13", + "target": "npm:bindings@1.5.0", + "type": "static" + }, + { + "source": "npm:fsevents@1.2.13", + "target": "npm:nan@2.15.0", + "type": "static" + } + ], + "npm:fstream": [ + { + "source": "npm:fstream", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:fstream", + "target": "npm:rimraf@2.7.1", + "type": "static" + } + ], + "npm:function.prototype.name": [ + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:is-callable", + "type": "static" + } + ], + "npm:gauge@3.0.2": [ + { + "source": "npm:gauge@3.0.2", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:gauge@3.0.2", + "target": "npm:wide-align", + "type": "static" + } + ], + "npm:gauge@4.0.4": [ + { + "source": "npm:gauge@4.0.4", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:gauge@4.0.4", + "target": "npm:wide-align", + "type": "static" + } + ], + "npm:gauge": [ + { + "source": "npm:gauge", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:wide-align", + "type": "static" + } + ], + "npm:geckodriver": [ + { + "source": "npm:geckodriver", + "target": "npm:adm-zip", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:https-proxy-agent@5.0.0", + "type": "static" + }, + { + "source": "npm:geckodriver", + "target": "npm:tar", + "type": "static" + } + ], + "npm:generic-names": [ + { + "source": "npm:generic-names", + "target": "npm:loader-utils@1.4.2", + "type": "static" + } + ], + "npm:get-intrinsic": [ + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:get-lerna-packages": [ + { + "source": "npm:get-lerna-packages", + "target": "npm:glob", + "type": "static" + } + ], + "npm:get-pkg-repo": [ + { + "source": "npm:get-pkg-repo", + "target": "npm:@hutson/parse-repository-url", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:get-stream@4.1.0": [ + { + "source": "npm:get-stream@4.1.0", + "target": "npm:pump", + "type": "static" + } + ], + "npm:get-stream": [ + { + "source": "npm:get-stream", + "target": "npm:pump", + "type": "static" + } + ], + "npm:get-symbol-description": [ + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:get-tsconfig": [ + { + "source": "npm:get-tsconfig", + "target": "npm:resolve-pkg-maps", + "type": "static" + } + ], + "npm:getos": [ + { + "source": "npm:getos", + "target": "npm:async@3.2.3", + "type": "static" + } + ], + "npm:getpass": [ + { + "source": "npm:getpass", + "target": "npm:assert-plus", + "type": "static" + } + ], + "npm:git-config-path": [ + { + "source": "npm:git-config-path", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:git-config-path", + "target": "npm:fs-exists-sync", + "type": "static" + }, + { + "source": "npm:git-config-path", + "target": "npm:homedir-polyfill", + "type": "static" + } + ], + "npm:git-raw-commits": [ + { + "source": "npm:git-raw-commits", + "target": "npm:dargs", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:split2", + "type": "static" + } + ], + "npm:git-remote-origin-url": [ + { + "source": "npm:git-remote-origin-url", + "target": "npm:gitconfiglocal", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:pify", + "type": "static" + } + ], + "npm:git-semver-tags": [ + { + "source": "npm:git-semver-tags", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:git-up": [ + { + "source": "npm:git-up", + "target": "npm:is-ssh", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:parse-url", + "type": "static" + } + ], + "npm:git-url-parse": [ + { + "source": "npm:git-url-parse", + "target": "npm:git-up", + "type": "static" + } + ], + "npm:gitconfiglocal": [ + { + "source": "npm:gitconfiglocal", + "target": "npm:ini", + "type": "static" + } + ], + "npm:github-slugger": [ + { + "source": "npm:github-slugger", + "target": "npm:emoji-regex", + "type": "static" + } + ], + "npm:gitlab": [ + { + "source": "npm:gitlab", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:humps", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:ky", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:ky-universal", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:li", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:query-string", + "type": "static" + }, + { + "source": "npm:gitlab", + "target": "npm:universal-url", + "type": "static" + } + ], + "npm:glob-parent": [ + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:glob-parent@3.1.0": [ + { + "source": "npm:glob-parent@3.1.0", + "target": "npm:is-glob@3.1.0", + "type": "static" + }, + { + "source": "npm:glob-parent@3.1.0", + "target": "npm:path-dirname", + "type": "static" + } + ], + "npm:glob-promise": [ + { + "source": "npm:glob-promise", + "target": "npm:@types/glob", + "type": "static" + } + ], + "npm:glob-stream": [ + { + "source": "npm:glob-stream", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:glob-parent@3.1.0", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:is-negated-glob", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:ordered-read-streams", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:pumpify", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:to-absolute-glob", + "type": "static" + }, + { + "source": "npm:glob-stream", + "target": "npm:unique-stream", + "type": "static" + } + ], + "npm:glob-watcher": [ + { + "source": "npm:glob-watcher", + "target": "npm:anymatch@2.0.0", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:async-done", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:chokidar@2.1.8", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:is-negated-glob", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:just-debounce", + "type": "static" + }, + { + "source": "npm:glob-watcher", + "target": "npm:object.defaults", + "type": "static" + } + ], + "npm:glob@7.1.3": [ + { + "source": "npm:glob@7.1.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.3", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@7.1.4": [ + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob": [ + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@10.3.3": [ + { + "source": "npm:glob@10.3.3", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minimatch@9.0.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:glob@5.0.15": [ + { + "source": "npm:glob@5.0.15", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@5.0.15", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@8.1.0": [ + { + "source": "npm:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.0.1", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + } + ], + "npm:glob@9.3.5": [ + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.4", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.8", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:global-dirs@0.1.1": [ + { + "source": "npm:global-dirs@0.1.1", + "target": "npm:ini", + "type": "static" + } + ], + "npm:global-dirs": [ + { + "source": "npm:global-dirs", + "target": "npm:ini@2.0.0", + "type": "static" + } + ], + "npm:global-modules": [ + { + "source": "npm:global-modules", + "target": "npm:global-prefix", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:resolve-dir", + "type": "static" + } + ], + "npm:global-prefix": [ + { + "source": "npm:global-prefix", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:which", + "type": "static" + } + ], + "npm:global": [ + { + "source": "npm:global", + "target": "npm:min-document", + "type": "static" + }, + { + "source": "npm:global", + "target": "npm:process", + "type": "static" + } + ], + "npm:globals@13.12.0": [ + { + "source": "npm:globals@13.12.0", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:globalthis": [ + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:globby": [ + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + } + ], + "npm:globby@10.0.2": [ + { + "source": "npm:globby@10.0.2", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@10.0.2", + "target": "npm:slash", + "type": "static" + } + ], + "npm:globby@13.2.2": [ + { + "source": "npm:globby@13.2.2", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@13.2.2", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], + "npm:globby@6.1.0": [ + { + "source": "npm:globby@6.1.0", + "target": "npm:array-union@1.0.2", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:pinkie-promise", + "type": "static" + } + ], + "npm:globby@9.2.0": [ + { + "source": "npm:globby@9.2.0", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:array-union@1.0.2", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:dir-glob@2.2.2", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:fast-glob@2.2.7", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:ignore@4.0.6", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:globby@9.2.0", + "target": "npm:slash@2.0.0", + "type": "static" + } + ], + "npm:glogg": [ + { + "source": "npm:glogg", + "target": "npm:sparkles", + "type": "static" + } + ], + "npm:good-listener": [ + { + "source": "npm:good-listener", + "target": "npm:delegate", + "type": "static" + } + ], + "npm:got": [ + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-lookup", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:http2-wrapper", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:got@12.3.1": [ + { + "source": "npm:got@12.3.1", + "target": "npm:@sindresorhus/is@5.3.0", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:@szmarczak/http-timer@5.0.1", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:cacheable-lookup@6.1.0", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:form-data-encoder", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:http2-wrapper@2.1.11", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:lowercase-keys@3.0.0", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:p-cancelable@3.0.0", + "type": "static" + }, + { + "source": "npm:got@12.3.1", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:got@6.7.1": [ + { + "source": "npm:got@6.7.1", + "target": "npm:create-error-class", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:duplexer3", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:get-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:is-redirect", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:is-retry-allowed", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:lowercase-keys@1.0.0", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:timed-out", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:unzip-response", + "type": "static" + }, + { + "source": "npm:got@6.7.1", + "target": "npm:url-parse-lax", + "type": "static" + } + ], + "npm:graphviz": [ + { + "source": "npm:graphviz", + "target": "npm:temp", + "type": "static" + } + ], + "npm:gulp-babel": [ + { + "source": "npm:gulp-babel", + "target": "npm:plugin-error", + "type": "static" + }, + { + "source": "npm:gulp-babel", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:gulp-babel", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:gulp-babel", + "target": "npm:vinyl-sourcemaps-apply", + "type": "static" + } + ], + "npm:gulp-cache": [ + { + "source": "npm:gulp-cache", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:cache-swap", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:plugin-error", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:through2@3.0.1", + "type": "static" + }, + { + "source": "npm:gulp-cache", + "target": "npm:vinyl", + "type": "static" + } + ], + "npm:gulp-cli": [ + { + "source": "npm:gulp-cli", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:archy", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:array-sort", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:copy-props", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:fancy-log", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:gulplog", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:liftoff@3.1.0", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:matchdep", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:mute-stdout", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:pretty-hrtime", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:replace-homedir", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:semver-greatest-satisfied-range", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:v8flags@3.1.3", + "type": "static" + }, + { + "source": "npm:gulp-cli", + "target": "npm:yargs@7.1.0", + "type": "static" + } + ], + "npm:gulp-remember": [ + { + "source": "npm:gulp-remember", + "target": "npm:fancy-log", + "type": "static" + }, + { + "source": "npm:gulp-remember", + "target": "npm:plugin-error@0.1.2", + "type": "static" + }, + { + "source": "npm:gulp-remember", + "target": "npm:through2@0.5.1", + "type": "static" + } + ], + "npm:gulp-sourcemaps": [ + { + "source": "npm:gulp-sourcemaps", + "target": "npm:@gulp-sourcemaps/identity-map", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:@gulp-sourcemaps/map-sources", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:acorn@5.7.4", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:css", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:debug-fabulous", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:detect-newline", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:strip-bom-string", + "type": "static" + }, + { + "source": "npm:gulp-sourcemaps", + "target": "npm:through2@2.0.5", + "type": "static" + } + ], + "npm:gulp-util": [ + { + "source": "npm:gulp-util", + "target": "npm:array-differ", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:array-uniq", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:beeper", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:dateformat@2.2.0", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:fancy-log", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:gulplog", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:has-gulplog", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:lodash._reescape", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:lodash._reevaluate", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:lodash.template", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:multipipe", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:object-assign@3.0.0", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:replace-ext@0.0.1", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:gulp-util", + "target": "npm:vinyl@0.5.3", + "type": "static" + } + ], + "npm:gulp": [ + { + "source": "npm:gulp", + "target": "npm:glob-watcher", + "type": "static" + }, + { + "source": "npm:gulp", + "target": "npm:gulp-cli", + "type": "static" + }, + { + "source": "npm:gulp", + "target": "npm:undertaker", + "type": "static" + }, + { + "source": "npm:gulp", + "target": "npm:vinyl-fs", + "type": "static" + } + ], + "npm:gulplog": [ + { + "source": "npm:gulplog", + "target": "npm:glogg", + "type": "static" + } + ], + "npm:gzip-js": [ + { + "source": "npm:gzip-js", + "target": "npm:crc32", + "type": "static" + }, + { + "source": "npm:gzip-js", + "target": "npm:deflate-js", + "type": "static" + } + ], + "npm:gzip-size": [ + { + "source": "npm:gzip-size", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:gzip-size", + "target": "npm:pify@4.0.1", + "type": "static" + } + ], + "npm:gzip-size@6.0.0": [ + { + "source": "npm:gzip-size@6.0.0", + "target": "npm:duplexer", + "type": "static" + } + ], + "npm:gzip-size@7.0.0": [ + { + "source": "npm:gzip-size@7.0.0", + "target": "npm:duplexer", + "type": "static" + } + ], + "npm:handlebars": [ + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + } + ], + "npm:har-validator": [ + { + "source": "npm:har-validator", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:har-validator", + "target": "npm:har-schema", + "type": "static" + } + ], + "npm:has-ansi": [ + { + "source": "npm:has-ansi", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + } + ], + "npm:has-glob": [ + { + "source": "npm:has-glob", + "target": "npm:is-glob@3.1.0", + "type": "static" + } + ], + "npm:has-gulplog": [ + { + "source": "npm:has-gulplog", + "target": "npm:sparkles", + "type": "static" + } + ], + "npm:has-tostringtag": [ + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:has-value@0.3.1": [ + { + "source": "npm:has-value@0.3.1", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:has-value@0.3.1", + "target": "npm:has-values@0.1.4", + "type": "static" + }, + { + "source": "npm:has-value@0.3.1", + "target": "npm:isobject@2.1.0", + "type": "static" + } + ], + "npm:has-value": [ + { + "source": "npm:has-value", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:has-value", + "target": "npm:has-values", + "type": "static" + }, + { + "source": "npm:has-value", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:has-values": [ + { + "source": "npm:has-values", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:has-values", + "target": "npm:kind-of@4.0.0", + "type": "static" + } + ], + "npm:has": [ + { + "source": "npm:has", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:hash-base": [ + { + "source": "npm:hash-base", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hash-base", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:hash.js": [ + { + "source": "npm:hash.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hash.js", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], + "npm:hast-to-hyperscript": [ + { + "source": "npm:hast-to-hyperscript", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:web-namespaces", + "type": "static" + } + ], + "npm:hast-util-from-parse5": [ + { + "source": "npm:hast-util-from-parse5", + "target": "npm:@types/parse5", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:hastscript@6.0.0", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:vfile-location", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:web-namespaces", + "type": "static" + } + ], + "npm:hast-util-raw": [ + { + "source": "npm:hast-util-raw", + "target": "npm:@types/hast", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:hast-util-from-parse5", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:hast-util-to-parse5", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:html-void-elements", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:parse5@6.0.1", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:unist-util-position", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:zwitch", + "type": "static" + } + ], + "npm:hast-util-to-parse5": [ + { + "source": "npm:hast-util-to-parse5", + "target": "npm:hast-to-hyperscript", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:zwitch", + "type": "static" + } + ], + "npm:hastscript": [ + { + "source": "npm:hastscript", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:hast-util-parse-selector", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:space-separated-tokens", + "type": "static" + } + ], + "npm:hastscript@6.0.0": [ + { + "source": "npm:hastscript@6.0.0", + "target": "npm:@types/hast", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:hast-util-parse-selector", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hastscript@6.0.0", + "target": "npm:space-separated-tokens", + "type": "static" + } + ], + "npm:header-case": [ + { + "source": "npm:header-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:header-case", + "target": "npm:upper-case", + "type": "static" + } + ], + "npm:history": [ + { + "source": "npm:history", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:resolve-pathname", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:value-equal", + "type": "static" + } + ], + "npm:hmac-drbg": [ + { + "source": "npm:hmac-drbg", + "target": "npm:hash.js", + "type": "static" + }, + { + "source": "npm:hmac-drbg", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:hmac-drbg", + "target": "npm:minimalistic-crypto-utils", + "type": "static" + } + ], + "npm:hoist-non-react-statics": [ + { + "source": "npm:hoist-non-react-statics", + "target": "npm:react-is@16.13.1", + "type": "static" + } + ], + "npm:homedir-polyfill": [ + { + "source": "npm:homedir-polyfill", + "target": "npm:parse-passwd", + "type": "static" + } + ], + "npm:hosted-git-info@3.0.8": [ + { + "source": "npm:hosted-git-info@3.0.8", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:hosted-git-info": [ + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:hosted-git-info@6.1.1": [ + { + "source": "npm:hosted-git-info@6.1.1", + "target": "npm:lru-cache@7.14.0", + "type": "static" + } + ], + "npm:hosted-git-info@7.0.1": [ + { + "source": "npm:hosted-git-info@7.0.1", + "target": "npm:lru-cache@10.0.1", + "type": "static" + } + ], + "npm:hpack.js": [ + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:html-element-map": [ + { + "source": "npm:html-element-map", + "target": "npm:array-filter", + "type": "static" + } + ], + "npm:html-encoding-sniffer": [ + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + } + ], + "npm:html-loader": [ + { + "source": "npm:html-loader", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-loader", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:html-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:html-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + } + ], + "npm:html-minifier-terser": [ + { + "source": "npm:html-minifier-terser", + "target": "npm:camel-case@4.1.2", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:commander@4.1.1", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:param-case@3.0.4", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:relateurl", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:terser@4.8.0", + "type": "static" + } + ], + "npm:html-to-react": [ + { + "source": "npm:html-to-react", + "target": "npm:domhandler@3.0.0", + "type": "static" + }, + { + "source": "npm:html-to-react", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:html-to-react", + "target": "npm:lodash.camelcase", + "type": "static" + }, + { + "source": "npm:html-to-react", + "target": "npm:ramda", + "type": "static" + } + ], + "npm:html-webpack-plugin": [ + { + "source": "npm:html-webpack-plugin", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:tapable@2.2.1", + "type": "static" + } + ], + "npm:html-webpack-plugin@4.5.2": [ + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:@types/tapable", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:@types/webpack", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin@4.5.2", + "target": "npm:util.promisify", + "type": "static" + } + ], + "npm:htmlparser2@3.10.1": [ + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:domelementtype@1.3.1", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:domhandler@2.4.2", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:domutils@1.5.1", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:htmlparser2@3.10.1", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:htmlparser2": [ + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler@3.0.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities@2.0.0", + "type": "static" + } + ], + "npm:htmlparser2@6.1.0": [ + { + "source": "npm:htmlparser2@6.1.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2@6.1.0", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2@6.1.0", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2@6.1.0", + "target": "npm:entities@2.0.0", + "type": "static" + } + ], + "npm:http-assert": [ + { + "source": "npm:http-assert", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:http-assert", + "target": "npm:http-errors", + "type": "static" + } + ], + "npm:http-errors": [ + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + } + ], + "npm:http-errors@1.6.3": [ + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses", + "type": "static" + } + ], + "npm:http-proxy-agent@2.1.0": [ + { + "source": "npm:http-proxy-agent@2.1.0", + "target": "npm:agent-base@4.3.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@2.1.0", + "target": "npm:debug@3.1.0", + "type": "static" + } + ], + "npm:http-proxy-agent@4.0.1": [ + { + "source": "npm:http-proxy-agent@4.0.1", + "target": "npm:@tootallnate/once@1.1.2", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@4.0.1", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent@4.0.1", + "target": "npm:debug", + "type": "static" + } + ], + "npm:http-proxy-agent": [ + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:http-proxy-middleware": [ + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:http-proxy": [ + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:http-signature@1.2.0": [ + { + "source": "npm:http-signature@1.2.0", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:http-signature@1.2.0", + "target": "npm:jsprim@1.4.1", + "type": "static" + }, + { + "source": "npm:http-signature@1.2.0", + "target": "npm:sshpk", + "type": "static" + } + ], + "npm:http-signature": [ + { + "source": "npm:http-signature", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:jsprim", + "type": "static" + }, + { + "source": "npm:http-signature", + "target": "npm:sshpk", + "type": "static" + } + ], + "npm:http2-wrapper": [ + { + "source": "npm:http2-wrapper", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:resolve-alpn", + "type": "static" + } + ], + "npm:http2-wrapper@2.1.11": [ + { + "source": "npm:http2-wrapper@2.1.11", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper@2.1.11", + "target": "npm:resolve-alpn", + "type": "static" + } + ], + "npm:https-proxy-agent@5.0.0": [ + { + "source": "npm:https-proxy-agent@5.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@5.0.0", + "target": "npm:debug", + "type": "static" + } + ], + "npm:https-proxy-agent": [ + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:https-proxy-agent@2.2.4": [ + { + "source": "npm:https-proxy-agent@2.2.4", + "target": "npm:agent-base@4.3.0", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@2.2.4", + "target": "npm:debug@3.2.7", + "type": "static" + } + ], + "npm:humanize-ms": [ + { + "source": "npm:humanize-ms", + "target": "npm:ms", + "type": "static" + } + ], + "npm:iconv-lite@0.4.24": [ + { + "source": "npm:iconv-lite@0.4.24", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:iconv-lite": [ + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:icss-utils": [ + { + "source": "npm:icss-utils", + "target": "npm:postcss@7.0.36", + "type": "static" + } + ], + "npm:identity-obj-proxy": [ + { + "source": "npm:identity-obj-proxy", + "target": "npm:harmony-reflect", + "type": "static" + } + ], + "npm:ignore-walk@3.0.3": [ + { + "source": "npm:ignore-walk@3.0.3", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:ignore-walk": [ + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@5.0.1", + "type": "static" + } + ], + "npm:ignore-walk@6.0.3": [ + { + "source": "npm:ignore-walk@6.0.3", + "target": "npm:minimatch@9.0.1", + "type": "static" + } + ], + "npm:import-fresh@2.0.0": [ + { + "source": "npm:import-fresh@2.0.0", + "target": "npm:caller-path", + "type": "static" + }, + { + "source": "npm:import-fresh@2.0.0", + "target": "npm:resolve-from@3.0.0", + "type": "static" + } + ], + "npm:import-fresh": [ + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + } + ], + "npm:import-local": [ + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + } + ], + "npm:imports-loader": [ + { + "source": "npm:imports-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:imports-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:imports-loader", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:imports-loader", + "target": "npm:strip-comments", + "type": "static" + } + ], + "npm:indent-string@2.1.0": [ + { + "source": "npm:indent-string@2.1.0", + "target": "npm:repeating", + "type": "static" + } + ], + "npm:inflight": [ + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:init-package-json": [ + { + "source": "npm:init-package-json", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:promzard", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:inquirer": [ + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:rxjs@6.6.7", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:through", + "type": "static" + } + ], + "npm:inquirer@8.2.4": [ + { + "source": "npm:inquirer@8.2.4", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer@8.2.4", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:internal-slot": [ + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:invariant": [ + { + "source": "npm:invariant", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:is-absolute": [ + { + "source": "npm:is-absolute", + "target": "npm:is-relative", + "type": "static" + }, + { + "source": "npm:is-absolute", + "target": "npm:is-windows", + "type": "static" + } + ], + "npm:is-accessor-descriptor@0.1.6": [ + { + "source": "npm:is-accessor-descriptor@0.1.6", + "target": "npm:kind-of@3.2.2", + "type": "static" + } + ], + "npm:is-accessor-descriptor": [ + { + "source": "npm:is-accessor-descriptor", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:is-alphanumerical": [ + { + "source": "npm:is-alphanumerical", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:is-alphanumerical", + "target": "npm:is-decimal", + "type": "static" + } + ], + "npm:is-binary-path@1.0.1": [ + { + "source": "npm:is-binary-path@1.0.1", + "target": "npm:binary-extensions@1.13.1", + "type": "static" + } + ], + "npm:is-binary-path": [ + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + } + ], + "npm:is-boolean-object": [ + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-ci": [ + { + "source": "npm:is-ci", + "target": "npm:ci-info", + "type": "static" + } + ], + "npm:is-ci@1.2.1": [ + { + "source": "npm:is-ci@1.2.1", + "target": "npm:ci-info@1.6.0", + "type": "static" + } + ], + "npm:is-ci@2.0.0": [ + { + "source": "npm:is-ci@2.0.0", + "target": "npm:ci-info@2.0.0", + "type": "static" + } + ], + "npm:is-core-module": [ + { + "source": "npm:is-core-module", + "target": "npm:has", + "type": "static" + } + ], + "npm:is-data-descriptor@0.1.4": [ + { + "source": "npm:is-data-descriptor@0.1.4", + "target": "npm:kind-of@3.2.2", + "type": "static" + } + ], + "npm:is-data-descriptor": [ + { + "source": "npm:is-data-descriptor", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:is-descriptor@0.1.6": [ + { + "source": "npm:is-descriptor@0.1.6", + "target": "npm:is-accessor-descriptor@0.1.6", + "type": "static" + }, + { + "source": "npm:is-descriptor@0.1.6", + "target": "npm:is-data-descriptor@0.1.4", + "type": "static" + }, + { + "source": "npm:is-descriptor@0.1.6", + "target": "npm:kind-of@5.1.0", + "type": "static" + } + ], + "npm:is-descriptor": [ + { + "source": "npm:is-descriptor", + "target": "npm:is-accessor-descriptor", + "type": "static" + }, + { + "source": "npm:is-descriptor", + "target": "npm:is-data-descriptor", + "type": "static" + }, + { + "source": "npm:is-descriptor", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:is-dom": [ + { + "source": "npm:is-dom", + "target": "npm:is-object", + "type": "static" + }, + { + "source": "npm:is-dom", + "target": "npm:is-window", + "type": "static" + } + ], + "npm:is-extendable@1.0.1": [ + { + "source": "npm:is-extendable@1.0.1", + "target": "npm:is-plain-object", + "type": "static" + } + ], + "npm:is-finite": [ + { + "source": "npm:is-finite", + "target": "npm:number-is-nan", + "type": "static" + } + ], + "npm:is-fullwidth-code-point@1.0.0": [ + { + "source": "npm:is-fullwidth-code-point@1.0.0", + "target": "npm:number-is-nan", + "type": "static" + } + ], + "npm:is-glob@3.1.0": [ + { + "source": "npm:is-glob@3.1.0", + "target": "npm:is-extglob", + "type": "static" + } + ], + "npm:is-glob": [ + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + } + ], + "npm:is-installed-globally@0.1.0": [ + { + "source": "npm:is-installed-globally@0.1.0", + "target": "npm:global-dirs@0.1.1", + "type": "static" + }, + { + "source": "npm:is-installed-globally@0.1.0", + "target": "npm:is-path-inside@1.0.1", + "type": "static" + } + ], + "npm:is-installed-globally": [ + { + "source": "npm:is-installed-globally", + "target": "npm:global-dirs", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:is-path-inside", + "type": "static" + } + ], + "npm:is-lower-case": [ + { + "source": "npm:is-lower-case", + "target": "npm:lower-case", + "type": "static" + } + ], + "npm:is-nan": [ + { + "source": "npm:is-nan", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-nan", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:is-number": [ + { + "source": "npm:is-number", + "target": "npm:kind-of@3.2.2", + "type": "static" + } + ], + "npm:is-path-in-cwd": [ + { + "source": "npm:is-path-in-cwd", + "target": "npm:is-path-inside@2.1.0", + "type": "static" + } + ], + "npm:is-path-inside@1.0.1": [ + { + "source": "npm:is-path-inside@1.0.1", + "target": "npm:path-is-inside", + "type": "static" + } + ], + "npm:is-path-inside@2.1.0": [ + { + "source": "npm:is-path-inside@2.1.0", + "target": "npm:path-is-inside", + "type": "static" + } + ], + "npm:is-plain-object": [ + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:is-reference": [ + { + "source": "npm:is-reference", + "target": "npm:@types/estree", + "type": "static" + } + ], + "npm:is-regex": [ + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-relative": [ + { + "source": "npm:is-relative", + "target": "npm:is-unc-path", + "type": "static" + } + ], + "npm:is-ssh": [ + { + "source": "npm:is-ssh", + "target": "npm:protocols", + "type": "static" + } + ], + "npm:is-string": [ + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-symbol": [ + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:is-text-path": [ + { + "source": "npm:is-text-path", + "target": "npm:text-extensions", + "type": "static" + } + ], + "npm:is-typed-array": [ + { + "source": "npm:is-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:foreach", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:is-unc-path": [ + { + "source": "npm:is-unc-path", + "target": "npm:unc-path-regex", + "type": "static" + } + ], + "npm:is-upper-case": [ + { + "source": "npm:is-upper-case", + "target": "npm:upper-case", + "type": "static" + } + ], + "npm:is-weakref": [ + { + "source": "npm:is-weakref", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-wsl": [ + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + } + ], + "npm:isobject@2.1.0": [ + { + "source": "npm:isobject@2.1.0", + "target": "npm:isarray@1.0.0", + "type": "static" + } + ], + "npm:isomorphic-unfetch": [ + { + "source": "npm:isomorphic-unfetch", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:isomorphic-unfetch", + "target": "npm:unfetch@3.1.2", + "type": "static" + } + ], + "npm:isomorphic-unfetch@3.1.0": [ + { + "source": "npm:isomorphic-unfetch@3.1.0", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:isomorphic-unfetch@3.1.0", + "target": "npm:unfetch", + "type": "static" + } + ], + "npm:istanbul-instrumenter-loader": [ + { + "source": "npm:istanbul-instrumenter-loader", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:istanbul-instrumenter-loader", + "target": "npm:istanbul-lib-instrument@1.10.2", + "type": "static" + }, + { + "source": "npm:istanbul-instrumenter-loader", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:istanbul-instrumenter-loader", + "target": "npm:schema-utils@0.3.0", + "type": "static" + } + ], + "npm:istanbul-lib-instrument@1.10.2": [ + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babel-generator", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babel-template", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babel-traverse", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babel-types", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:babylon", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:istanbul-lib-coverage@1.2.1", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@1.10.2", + "target": "npm:semver@5.7.1", + "type": "static" + } + ], + "npm:istanbul-lib-instrument": [ + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver", + "type": "static" + } + ], + "npm:istanbul-lib-instrument@6.0.0": [ + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@6.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:istanbul-lib-report": [ + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:istanbul-lib-source-maps@3.0.6": [ + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:istanbul-lib-coverage@2.0.5", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps@3.0.6", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:istanbul-lib-source-maps": [ + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:istanbul-reports": [ + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + } + ], + "npm:istanbul": [ + { + "source": "npm:istanbul", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:async@1.5.2", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:escodegen@1.8.1", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:esprima@2.7.3", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:glob@5.0.15", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:resolve@1.1.7", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:supports-color@3.2.3", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:istanbul", + "target": "npm:wordwrap", + "type": "static" + } + ], + "npm:istextorbinary": [ + { + "source": "npm:istextorbinary", + "target": "npm:binaryextensions", + "type": "static" + }, + { + "source": "npm:istextorbinary", + "target": "npm:editions", + "type": "static" + }, + { + "source": "npm:istextorbinary", + "target": "npm:textextensions", + "type": "static" + } + ], + "npm:jackspeak": [ + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@pkgjs/parseargs", + "type": "static" + } + ], + "npm:jake": [ + { + "source": "npm:jake", + "target": "npm:async@3.2.3", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:jest-axe": [ + { + "source": "npm:jest-axe", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:jest-axe", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-axe", + "target": "npm:jest-matcher-utils@27.0.2", + "type": "static" + }, + { + "source": "npm:jest-axe", + "target": "npm:lodash.merge", + "type": "static" + } + ], + "npm:jest-canvas-mock": [ + { + "source": "npm:jest-canvas-mock", + "target": "npm:cssfontparser", + "type": "static" + }, + { + "source": "npm:jest-canvas-mock", + "target": "npm:moo-color", + "type": "static" + } + ], + "npm:jest-changed-files": [ + { + "source": "npm:jest-changed-files", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:jest-circus": [ + { + "source": "npm:jest-circus", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent@1.5.1", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-each", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:jest-cli": [ + { + "source": "npm:jest-cli", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:create-jest", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:yargs@17.7.2", + "type": "static" + } + ], + "npm:jest-config": [ + { + "source": "npm:jest-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:jest-diff": [ + { + "source": "npm:jest-diff", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-diff@27.5.1": [ + { + "source": "npm:jest-diff@27.5.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff@27.5.1", + "target": "npm:diff-sequences@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-diff@27.5.1", + "target": "npm:jest-get-type@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-diff@27.5.1", + "target": "npm:pretty-format@27.5.1", + "type": "static" + } + ], + "npm:jest-docblock": [ + { + "source": "npm:jest-docblock", + "target": "npm:detect-newline@3.1.0", + "type": "static" + } + ], + "npm:jest-each": [ + { + "source": "npm:jest-each", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-environment-jsdom": [ + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jsdom", + "type": "static" + } + ], + "npm:jest-environment-node-single-context": [ + { + "source": "npm:jest-environment-node-single-context", + "target": "npm:jest-environment-node", + "type": "static" + } + ], + "npm:jest-environment-node": [ + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-haste-map@26.6.2": [ + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:jest-regex-util@26.0.0", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:jest-serializer", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:jest-util@26.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:jest-worker@26.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:sane", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map@26.6.2", + "target": "npm:fsevents@2.3.3", + "type": "static" + } + ], + "npm:jest-haste-map": [ + { + "source": "npm:jest-haste-map", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fsevents@2.3.3", + "type": "static" + } + ], + "npm:jest-leak-detector": [ + { + "source": "npm:jest-leak-detector", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-matcher-utils@27.0.2": [ + { + "source": "npm:jest-matcher-utils@27.0.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@27.0.2", + "target": "npm:jest-diff@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@27.0.2", + "target": "npm:jest-get-type@27.5.1", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@27.0.2", + "target": "npm:pretty-format@27.5.1", + "type": "static" + } + ], + "npm:jest-matcher-utils": [ + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-message-util": [ + { + "source": "npm:jest-message-util", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:jest-mock": [ + { + "source": "npm:jest-mock", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-resolve-dependencies": [ + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-snapshot", + "type": "static" + } + ], + "npm:jest-resolve": [ + { + "source": "npm:jest-resolve", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve.exports@2.0.2", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "type": "static" + } + ], + "npm:jest-runner": [ + { + "source": "npm:jest-runner", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-docblock", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-leak-detector", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "type": "static" + } + ], + "npm:jest-runtime": [ + { + "source": "npm:jest-runtime", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/globals", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/source-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:strip-bom@4.0.0", + "type": "static" + } + ], + "npm:jest-serializer": [ + { + "source": "npm:jest-serializer", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-serializer", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jest-snapshot": [ + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:jest-util@26.6.2": [ + { + "source": "npm:jest-util@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:is-ci@2.0.0", + "type": "static" + }, + { + "source": "npm:jest-util@26.6.2", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:jest-util": [ + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:jest-validate": [ + { + "source": "npm:jest-validate", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-watch-typeahead": [ + { + "source": "npm:jest-watch-typeahead", + "target": "npm:ansi-escapes@6.2.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:chalk@5.2.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:slash@5.1.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:string-length@5.0.1", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + } + ], + "npm:jest-watcher": [ + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + } + ], + "npm:jest-worker@24.9.0": [ + { + "source": "npm:jest-worker@24.9.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@24.9.0", + "target": "npm:supports-color@6.1.0", + "type": "static" + } + ], + "npm:jest-worker@26.6.2": [ + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:jest-worker@27.5.1": [ + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], + "npm:jest-worker": [ + { + "source": "npm:jest-worker", + "target": "npm:@types/node@14.18.32", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], + "npm:jest": [ + { + "source": "npm:jest", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:jest-cli", + "type": "static" + } + ], + "npm:js-queue": [ + { + "source": "npm:js-queue", + "target": "npm:easy-stack", + "type": "static" + } + ], + "npm:js-yaml": [ + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:js-yaml@4.1.0": [ + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse@2.0.1", + "type": "static" + } + ], + "npm:jsdom": [ + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn-globals", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssom", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssstyle", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:data-urls", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:decimal.js", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:domexception", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:form-data@4.0.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:is-potential-custom-element-name", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:nwsapi", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:saxes", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:symbol-tree", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:tough-cookie@4.1.2", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:w3c-xmlserializer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:json-edm-parser": [ + { + "source": "npm:json-edm-parser", + "target": "npm:jsonparse@1.2.0", + "type": "static" + } + ], + "npm:json-stable-stringify": [ + { + "source": "npm:json-stable-stringify", + "target": "npm:jsonify", + "type": "static" + } + ], + "npm:json5@1.0.2": [ + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:jsonc-eslint-parser": [ + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:espree@9.6.1", + "type": "static" + }, + { + "source": "npm:jsonc-eslint-parser", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:jsonfile@2.4.0": [ + { + "source": "npm:jsonfile@2.4.0", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jsonfile": [ + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jsonfile@6.0.1": [ + { + "source": "npm:jsonfile@6.0.1", + "target": "npm:universalify@1.0.0", + "type": "static" + }, + { + "source": "npm:jsonfile@6.0.1", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jsonwebtoken": [ + { + "source": "npm:jsonwebtoken", + "target": "npm:jws", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.includes", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isboolean", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isinteger", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isnumber", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isplainobject", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.isstring", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:lodash.once", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:jsonwebtoken", + "target": "npm:semver@5.7.1", + "type": "static" + } + ], + "npm:jsprim@1.4.1": [ + { + "source": "npm:jsprim@1.4.1", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.1", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.1", + "target": "npm:json-schema@0.2.3", + "type": "static" + }, + { + "source": "npm:jsprim@1.4.1", + "target": "npm:verror", + "type": "static" + } + ], + "npm:jsprim": [ + { + "source": "npm:jsprim", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:extsprintf", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:jsprim", + "target": "npm:verror", + "type": "static" + } + ], + "npm:jsx-ast-utils": [ + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + } + ], + "npm:jszip": [ + { + "source": "npm:jszip", + "target": "npm:lie", + "type": "static" + }, + { + "source": "npm:jszip", + "target": "npm:pako", + "type": "static" + }, + { + "source": "npm:jszip", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:jszip", + "target": "npm:setimmediate", + "type": "static" + } + ], + "npm:just-scripts-utils": [ + { + "source": "npm:just-scripts-utils", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:just-task-logger", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:marked", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:marked-terminal", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:just-scripts-utils", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:just-scripts": [ + { + "source": "npm:just-scripts", + "target": "npm:@types/node@10.17.13", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:diff-match-patch", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:just-scripts-utils", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:just-task", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:run-parallel-limit", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:just-scripts", + "target": "npm:webpack-merge", + "type": "static" + } + ], + "npm:just-task-logger": [ + { + "source": "npm:just-task-logger", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:just-task-logger", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:just-task": [ + { + "source": "npm:just-task", + "target": "npm:@rushstack/package-deps-hash", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:bach", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:just-task-logger", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:undertaker", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:undertaker-registry", + "type": "static" + }, + { + "source": "npm:just-task", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + } + ], + "npm:jwa": [ + { + "source": "npm:jwa", + "target": "npm:buffer-equal-constant-time", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:ecdsa-sig-formatter", + "type": "static" + }, + { + "source": "npm:jwa", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:jws": [ + { + "source": "npm:jws", + "target": "npm:jwa", + "type": "static" + }, + { + "source": "npm:jws", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:karma-chrome-launcher": [ + { + "source": "npm:karma-chrome-launcher", + "target": "npm:which", + "type": "static" + } + ], + "npm:karma-coverage-istanbul-reporter": [ + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:istanbul-lib-source-maps@3.0.6", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:karma-coverage-istanbul-reporter", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:karma-coverage": [ + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:karma-coverage", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:karma-firefox-launcher": [ + { + "source": "npm:karma-firefox-launcher", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:karma-mocha-reporter": [ + { + "source": "npm:karma-mocha-reporter", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:karma-mocha-reporter", + "target": "npm:log-symbols@2.2.0", + "type": "static" + }, + { + "source": "npm:karma-mocha-reporter", + "target": "npm:strip-ansi@4.0.0", + "type": "static" + } + ], + "npm:karma-mocha": [ + { + "source": "npm:karma-mocha", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:karma-source-map-support": [ + { + "source": "npm:karma-source-map-support", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:karma-sourcemap-loader": [ + { + "source": "npm:karma-sourcemap-loader", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:karma-webpack": [ + { + "source": "npm:karma-webpack", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:karma-webpack", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:karma-webpack", + "target": "npm:webpack-merge@4.2.2", + "type": "static" + } + ], + "npm:karma": [ + { + "source": "npm:karma", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:di", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:dom-serialize", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:isbinaryfile", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:log4js", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:qjobs", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:socket.io", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:ua-parser-js@0.7.33", + "type": "static" + }, + { + "source": "npm:karma", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:keygrip": [ + { + "source": "npm:keygrip", + "target": "npm:tsscmp", + "type": "static" + } + ], + "npm:keyv": [ + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + } + ], + "npm:kind-of@3.2.2": [ + { + "source": "npm:kind-of@3.2.2", + "target": "npm:is-buffer", + "type": "static" + } + ], + "npm:kind-of@4.0.0": [ + { + "source": "npm:kind-of@4.0.0", + "target": "npm:is-buffer", + "type": "static" + } + ], + "npm:klaw": [ + { + "source": "npm:klaw", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:koa-bodyparser": [ + { + "source": "npm:koa-bodyparser", + "target": "npm:co-body", + "type": "static" + }, + { + "source": "npm:koa-bodyparser", + "target": "npm:copy-to", + "type": "static" + } + ], + "npm:koa-convert": [ + { + "source": "npm:koa-convert", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:koa-convert", + "target": "npm:koa-compose", + "type": "static" + } + ], + "npm:koa-mount": [ + { + "source": "npm:koa-mount", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:koa-mount", + "target": "npm:koa-compose", + "type": "static" + } + ], + "npm:koa-node-resolve": [ + { + "source": "npm:koa-node-resolve", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:@types/parse5", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:parse5@5.1.1", + "type": "static" + }, + { + "source": "npm:koa-node-resolve", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:koa-send": [ + { + "source": "npm:koa-send", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:koa-send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:koa-send", + "target": "npm:resolve-path", + "type": "static" + } + ], + "npm:koa-static": [ + { + "source": "npm:koa-static", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:koa-static", + "target": "npm:koa-send", + "type": "static" + } + ], + "npm:koa": [ + { + "source": "npm:koa", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:cache-content-type", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:cookies", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:depd@2.0.0", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:http-assert", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:koa-compose", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:koa-convert", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:only", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:koa", + "target": "npm:vary", + "type": "static" + } + ], + "npm:ky-universal": [ + { + "source": "npm:ky-universal", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:ky-universal", + "target": "npm:node-fetch", + "type": "static" + } + ], + "npm:lage": [ + { + "source": "npm:lage", + "target": "npm:@lage-run/logger", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:@xmldom/xmldom", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:backfill", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:backfill-cache", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:backfill-config", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:backfill-logger", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:p-graph", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:p-profiler", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:workspace-tools@0.27.0", + "type": "static" + }, + { + "source": "npm:lage", + "target": "npm:yargs-parser@18.1.3", + "type": "static" + } + ], + "npm:language-tags": [ + { + "source": "npm:language-tags", + "target": "npm:language-subtag-registry", + "type": "static" + } + ], + "npm:last-run": [ + { + "source": "npm:last-run", + "target": "npm:default-resolution", + "type": "static" + }, + { + "source": "npm:last-run", + "target": "npm:es6-weak-map", + "type": "static" + } + ], + "npm:latest-version": [ + { + "source": "npm:latest-version", + "target": "npm:package-json", + "type": "static" + } + ], + "npm:lazy-universal-dotenv": [ + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:app-root-dir", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "npm:lazy-universal-dotenv", + "target": "npm:dotenv-expand@5.1.0", + "type": "static" + } + ], + "npm:lazystream": [ + { + "source": "npm:lazystream", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:lcid": [ + { + "source": "npm:lcid", + "target": "npm:invert-kv", + "type": "static" + } + ], + "npm:lead": [ + { + "source": "npm:lead", + "target": "npm:flush-write-stream", + "type": "static" + } + ], + "npm:lerna-alias": [ + { + "source": "npm:lerna-alias", + "target": "npm:get-lerna-packages", + "type": "static" + } + ], + "npm:lerna": [ + { + "source": "npm:lerna", + "target": "npm:@lerna/child-process", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@lerna/create", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@nx/devkit", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@octokit/plugin-enterprise-rest", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:@octokit/rest@19.0.11", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:byte-size", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-changelog-core", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:conventional-recommended-bump", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:cosmiconfig@8.2.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:execa@5.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:get-stream@6.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:inquirer@8.2.4", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:libnpmaccess", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:libnpmpublish", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:npmlog@6.0.2", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:nx", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-map-series", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-pipe", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-queue", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:p-waterfall", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:pify@5.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:read-cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:rimraf@4.4.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:upath", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:uuid@9.0.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:write-file-atomic@5.0.1", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:write-pkg", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:yargs@16.2.0", + "type": "static" + }, + { + "source": "npm:lerna", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + } + ], + "npm:levn": [ + { + "source": "npm:levn", + "target": "npm:prelude-ls@1.2.1", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check@0.4.0", + "type": "static" + } + ], + "npm:levn@0.3.0": [ + { + "source": "npm:levn@0.3.0", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn@0.3.0", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:libnpmaccess": [ + { + "source": "npm:libnpmaccess", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmpublish": [ + { + "source": "npm:libnpmpublish", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:license-webpack-plugin": [ + { + "source": "npm:license-webpack-plugin", + "target": "npm:@types/webpack-sources", + "type": "static" + }, + { + "source": "npm:license-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:lie": [ + { + "source": "npm:lie", + "target": "npm:immediate", + "type": "static" + } + ], + "npm:liftoff": [ + { + "source": "npm:liftoff", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:findup-sync", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:fined", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:flagged-respawn", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:object.map", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:liftoff", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:liftoff@3.1.0": [ + { + "source": "npm:liftoff@3.1.0", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:findup-sync@3.0.0", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:fined", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:flagged-respawn", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:object.map", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:liftoff@3.1.0", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:lint-staged": [ + { + "source": "npm:lint-staged", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@4.1.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:please-upgrade-node", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:stringify-object", + "type": "static" + } + ], + "npm:listr2": [ + { + "source": "npm:listr2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rxjs@6.6.7", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:through", + "type": "static" + } + ], + "npm:listr2@3.14.0": [ + { + "source": "npm:listr2@3.14.0", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:colorette@2.0.20", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2@3.14.0", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:load-json-file": [ + { + "source": "npm:load-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:type-fest@0.6.0", + "type": "static" + } + ], + "npm:load-json-file@1.1.0": [ + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:parse-json@2.2.0", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:pinkie-promise", + "type": "static" + }, + { + "source": "npm:load-json-file@1.1.0", + "target": "npm:strip-bom@2.0.0", + "type": "static" + } + ], + "npm:load-json-file@4.0.0": [ + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:loader-utils@1.4.2": [ + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils@1.4.2", + "target": "npm:json5@1.0.2", + "type": "static" + } + ], + "npm:loader-utils": [ + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + } + ], + "npm:locate-path@2.0.0": [ + { + "source": "npm:locate-path@2.0.0", + "target": "npm:p-locate@2.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:locate-path@3.0.0": [ + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:locate-path@5.0.0": [ + { + "source": "npm:locate-path@5.0.0", + "target": "npm:p-locate@4.1.0", + "type": "static" + } + ], + "npm:locate-path": [ + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + } + ], + "npm:locate-path@7.1.1": [ + { + "source": "npm:locate-path@7.1.1", + "target": "npm:p-locate@6.0.0", + "type": "static" + } + ], + "npm:lodash.escape": [ + { + "source": "npm:lodash.escape", + "target": "npm:lodash._root", + "type": "static" + } + ], + "npm:lodash.keys@3.1.2": [ + { + "source": "npm:lodash.keys@3.1.2", + "target": "npm:lodash._getnative", + "type": "static" + }, + { + "source": "npm:lodash.keys@3.1.2", + "target": "npm:lodash.isarguments", + "type": "static" + }, + { + "source": "npm:lodash.keys@3.1.2", + "target": "npm:lodash.isarray", + "type": "static" + } + ], + "npm:lodash.template": [ + { + "source": "npm:lodash.template", + "target": "npm:lodash._basecopy", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._basetostring", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._basevalues", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._isiterateecall", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.escape", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.keys@3.1.2", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.restparam", + "type": "static" + }, + { + "source": "npm:lodash.template", + "target": "npm:lodash.templatesettings", + "type": "static" + } + ], + "npm:lodash.templatesettings": [ + { + "source": "npm:lodash.templatesettings", + "target": "npm:lodash._reinterpolate", + "type": "static" + }, + { + "source": "npm:lodash.templatesettings", + "target": "npm:lodash.escape", + "type": "static" + } + ], + "npm:log-symbols@3.0.0": [ + { + "source": "npm:log-symbols@3.0.0", + "target": "npm:chalk@2.4.2", + "type": "static" + } + ], + "npm:log-symbols@1.0.2": [ + { + "source": "npm:log-symbols@1.0.2", + "target": "npm:chalk@1.1.3", + "type": "static" + } + ], + "npm:log-symbols@2.2.0": [ + { + "source": "npm:log-symbols@2.2.0", + "target": "npm:chalk@2.4.2", + "type": "static" + } + ], + "npm:log-symbols": [ + { + "source": "npm:log-symbols", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + } + ], + "npm:log-update": [ + { + "source": "npm:log-update", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + } + ], + "npm:log4js": [ + { + "source": "npm:log4js", + "target": "npm:date-format", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:log4js", + "target": "npm:streamroller", + "type": "static" + } + ], + "npm:loose-envify": [ + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:loud-rejection": [ + { + "source": "npm:loud-rejection", + "target": "npm:currently-unhandled", + "type": "static" + }, + { + "source": "npm:loud-rejection", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:loupe": [ + { + "source": "npm:loupe", + "target": "npm:get-func-name", + "type": "static" + } + ], + "npm:lower-case-first": [ + { + "source": "npm:lower-case-first", + "target": "npm:lower-case", + "type": "static" + } + ], + "npm:lower-case@2.0.2": [ + { + "source": "npm:lower-case@2.0.2", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:lowlight": [ + { + "source": "npm:lowlight", + "target": "npm:fault", + "type": "static" + }, + { + "source": "npm:lowlight", + "target": "npm:highlight.js", + "type": "static" + } + ], + "npm:lru-cache@4.1.5": [ + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:pseudomap", + "type": "static" + }, + { + "source": "npm:lru-cache@4.1.5", + "target": "npm:yallist@2.1.2", + "type": "static" + } + ], + "npm:lru-cache@5.1.1": [ + { + "source": "npm:lru-cache@5.1.1", + "target": "npm:yallist@3.1.1", + "type": "static" + } + ], + "npm:lru-cache": [ + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:lru-queue": [ + { + "source": "npm:lru-queue", + "target": "npm:es5-ext", + "type": "static" + } + ], + "npm:magic-string": [ + { + "source": "npm:magic-string", + "target": "npm:sourcemap-codec", + "type": "static" + } + ], + "npm:make-dir": [ + { + "source": "npm:make-dir", + "target": "npm:semver", + "type": "static" + } + ], + "npm:make-dir@1.3.0": [ + { + "source": "npm:make-dir@1.3.0", + "target": "npm:pify@3.0.0", + "type": "static" + } + ], + "npm:make-dir@2.1.0": [ + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.1", + "type": "static" + } + ], + "npm:make-fetch-happen@10.2.1": [ + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:cacache@16.1.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-fetch@2.1.2", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.2.1", + "target": "npm:ssri@9.0.1", + "type": "static" + } + ], + "npm:make-fetch-happen": [ + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache@17.1.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.14.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch@3.0.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:make-fetch-happen@8.0.9": [ + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:http-proxy-agent@4.0.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:promise-retry@1.1.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:socks-proxy-agent@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@8.0.9", + "target": "npm:ssri@8.0.0", + "type": "static" + } + ], + "npm:make-iterator": [ + { + "source": "npm:make-iterator", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:makeerror": [ + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + } + ], + "npm:map-age-cleaner": [ + { + "source": "npm:map-age-cleaner", + "target": "npm:p-defer", + "type": "static" + } + ], + "npm:map-visit": [ + { + "source": "npm:map-visit", + "target": "npm:object-visit", + "type": "static" + } + ], + "npm:markdown-table": [ + { + "source": "npm:markdown-table", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:marked-terminal": [ + { + "source": "npm:marked-terminal", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cardinal", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:cli-table", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:node-emoji", + "type": "static" + }, + { + "source": "npm:marked-terminal", + "target": "npm:supports-hyperlinks@2.2.0", + "type": "static" + } + ], + "npm:matchdep": [ + { + "source": "npm:matchdep", + "target": "npm:findup-sync", + "type": "static" + }, + { + "source": "npm:matchdep", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:matchdep", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:matchdep", + "target": "npm:stack-trace", + "type": "static" + } + ], + "npm:md5.js": [ + { + "source": "npm:md5.js", + "target": "npm:hash-base", + "type": "static" + }, + { + "source": "npm:md5.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:md5.js", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:mdast-add-list-metadata": [ + { + "source": "npm:mdast-add-list-metadata", + "target": "npm:unist-util-visit-parents@1.1.2", + "type": "static" + } + ], + "npm:mdast-squeeze-paragraphs": [ + { + "source": "npm:mdast-squeeze-paragraphs", + "target": "npm:unist-util-remove", + "type": "static" + } + ], + "npm:mdast-util-definitions": [ + { + "source": "npm:mdast-util-definitions", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:mdast-util-to-hast": [ + { + "source": "npm:mdast-util-to-hast", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:mdast-util-definitions", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:mdurl", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-generated", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-position", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:mem": [ + { + "source": "npm:mem", + "target": "npm:map-age-cleaner", + "type": "static" + }, + { + "source": "npm:mem", + "target": "npm:mimic-fn@3.1.0", + "type": "static" + } + ], + "npm:memfs-or-file-map-to-github-branch": [ + { + "source": "npm:memfs-or-file-map-to-github-branch", + "target": "npm:@octokit/rest", + "type": "static" + } + ], + "npm:memfs": [ + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + } + ], + "npm:memfs@3.4.1": [ + { + "source": "npm:memfs@3.4.1", + "target": "npm:fs-monkey", + "type": "static" + } + ], + "npm:memoizee": [ + { + "source": "npm:memoizee", + "target": "npm:d", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:event-emitter", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:lru-queue", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:next-tick", + "type": "static" + }, + { + "source": "npm:memoizee", + "target": "npm:timers-ext", + "type": "static" + } + ], + "npm:memoizerific": [ + { + "source": "npm:memoizerific", + "target": "npm:map-or-similar", + "type": "static" + } + ], + "npm:memory-fs": [ + { + "source": "npm:memory-fs", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:memory-fs", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:memory-fs@0.5.0": [ + { + "source": "npm:memory-fs@0.5.0", + "target": "npm:errno", + "type": "static" + }, + { + "source": "npm:memory-fs@0.5.0", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:meow@3.7.0": [ + { + "source": "npm:meow@3.7.0", + "target": "npm:camelcase-keys@2.1.0", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:loud-rejection", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:read-pkg-up@1.0.1", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:redent@1.0.0", + "type": "static" + }, + { + "source": "npm:meow@3.7.0", + "target": "npm:trim-newlines@1.0.0", + "type": "static" + } + ], + "npm:meow": [ + { + "source": "npm:meow", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:camelcase-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:normalize-package-data@3.0.3", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:trim-newlines", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:type-fest@0.18.1", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + } + ], + "npm:micromatch@3.1.10": [ + { + "source": "npm:micromatch@3.1.10", + "target": "npm:arr-diff", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:braces@2.3.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:extglob", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:fragment-cache", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:nanomatch", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:micromatch@3.1.10", + "target": "npm:to-regex", + "type": "static" + } + ], + "npm:micromatch": [ + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:miller-rabin": [ + { + "source": "npm:miller-rabin", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:miller-rabin", + "target": "npm:brorand", + "type": "static" + } + ], + "npm:mime-types": [ + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:min-document": [ + { + "source": "npm:min-document", + "target": "npm:dom-walk", + "type": "static" + } + ], + "npm:mini-create-react-context": [ + { + "source": "npm:mini-create-react-context", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:mini-create-react-context", + "target": "npm:tiny-warning", + "type": "static" + } + ], + "npm:mini-css-extract-plugin": [ + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils@4.0.0", + "type": "static" + } + ], + "npm:minimatch": [ + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + } + ], + "npm:minimatch@3.0.4": [ + { + "source": "npm:minimatch@3.0.4", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + } + ], + "npm:minimatch@9.0.1": [ + { + "source": "npm:minimatch@9.0.1", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch@5.0.1": [ + { + "source": "npm:minimatch@5.0.1", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch@8.0.4": [ + { + "source": "npm:minimatch@8.0.4", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimist-options": [ + { + "source": "npm:minimist-options", + "target": "npm:arrify@1.0.1", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:minipass-collect": [ + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-fetch": [ + { + "source": "npm:minipass-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-fetch@2.1.2": [ + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.2", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-fetch@3.0.3": [ + { + "source": "npm:minipass-fetch@3.0.3", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.3", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.3", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@3.0.3", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-flush": [ + { + "source": "npm:minipass-flush", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-json-stream": [ + { + "source": "npm:minipass-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-pipeline": [ + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-sized": [ + { + "source": "npm:minipass-sized", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass@2.9.0": [ + { + "source": "npm:minipass@2.9.0", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:minipass@2.9.0", + "target": "npm:yallist@3.1.1", + "type": "static" + } + ], + "npm:minipass": [ + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:minizlib@1.3.3": [ + { + "source": "npm:minizlib@1.3.3", + "target": "npm:minipass@2.9.0", + "type": "static" + } + ], + "npm:minizlib": [ + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:mississippi": [ + { + "source": "npm:mississippi", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:duplexify", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:flush-write-stream", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:from2", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:parallel-transform", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:pumpify", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:stream-each", + "type": "static" + }, + { + "source": "npm:mississippi", + "target": "npm:through2@2.0.5", + "type": "static" + } + ], + "npm:mixin-deep": [ + { + "source": "npm:mixin-deep", + "target": "npm:for-in", + "type": "static" + }, + { + "source": "npm:mixin-deep", + "target": "npm:is-extendable@1.0.1", + "type": "static" + } + ], + "npm:mkdirp": [ + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:mocha": [ + { + "source": "npm:mocha", + "target": "npm:ansi-colors@3.2.3", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:browser-stdout", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:chokidar@3.3.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:debug@3.2.6", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:diff@3.5.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:glob@7.1.3", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:growl", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:log-symbols@3.0.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:minimatch@3.0.4", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:ms@2.1.1", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:node-environment-flags", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:object.assign@4.1.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:supports-color@6.0.0", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:wide-align@1.1.3", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:mocha", + "target": "npm:yargs-unparser@1.6.0", + "type": "static" + } + ], + "npm:mocked-env": [ + { + "source": "npm:mocked-env", + "target": "npm:check-more-types", + "type": "static" + }, + { + "source": "npm:mocked-env", + "target": "npm:debug@4.1.1", + "type": "static" + }, + { + "source": "npm:mocked-env", + "target": "npm:lazy-ass", + "type": "static" + }, + { + "source": "npm:mocked-env", + "target": "npm:ramda", + "type": "static" + } + ], + "npm:monosize-storage-azure": [ + { + "source": "npm:monosize-storage-azure", + "target": "npm:@azure/data-tables", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:monosize", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:node-fetch@3.3.1", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:monosize-storage-azure", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:monosize": [ + { + "source": "npm:monosize", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:del@7.0.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:find-up@6.3.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:gzip-size@7.0.0", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:pretty-bytes@6.1.1", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:workspace-tools", + "type": "static" + }, + { + "source": "npm:monosize", + "target": "npm:yargs@17.7.2", + "type": "static" + } + ], + "npm:moo-color": [ + { + "source": "npm:moo-color", + "target": "npm:color-name", + "type": "static" + } + ], + "npm:move-concurrently": [ + { + "source": "npm:move-concurrently", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:copy-concurrently", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:fs-write-stream-atomic", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:move-concurrently", + "target": "npm:run-queue", + "type": "static" + } + ], + "npm:multicast-dns": [ + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + } + ], + "npm:multimatch": [ + { + "source": "npm:multimatch", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-differ@3.0.0", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:multipipe": [ + { + "source": "npm:multipipe", + "target": "npm:duplexer2", + "type": "static" + } + ], + "npm:nanomatch": [ + { + "source": "npm:nanomatch", + "target": "npm:arr-diff", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:array-unique", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:fragment-cache", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:is-windows", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:object.pick", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:snapdragon", + "type": "static" + }, + { + "source": "npm:nanomatch", + "target": "npm:to-regex", + "type": "static" + } + ], + "npm:nearley": [ + { + "source": "npm:nearley", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:moo", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:railroad-diagrams", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:randexp", + "type": "static" + }, + { + "source": "npm:nearley", + "target": "npm:semver@5.7.1", + "type": "static" + } + ], + "npm:no-case": [ + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + } + ], + "npm:no-case@3.0.4": [ + { + "source": "npm:no-case@3.0.4", + "target": "npm:lower-case@2.0.2", + "type": "static" + }, + { + "source": "npm:no-case@3.0.4", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:node-dir": [ + { + "source": "npm:node-dir", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:node-emoji": [ + { + "source": "npm:node-emoji", + "target": "npm:lodash.toarray", + "type": "static" + } + ], + "npm:node-environment-flags": [ + { + "source": "npm:node-environment-flags", + "target": "npm:object.getownpropertydescriptors", + "type": "static" + }, + { + "source": "npm:node-environment-flags", + "target": "npm:semver@5.7.1", + "type": "static" + } + ], + "npm:node-fetch": [ + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + } + ], + "npm:node-fetch@3.3.1": [ + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:data-uri-to-buffer", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:formdata-polyfill", + "type": "static" + } + ], + "npm:node-gyp@6.1.0": [ + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:nopt@4.0.1", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:request", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:tar@4.4.19", + "type": "static" + }, + { + "source": "npm:node-gyp@6.1.0", + "target": "npm:which", + "type": "static" + } + ], + "npm:node-gyp": [ + { + "source": "npm:node-gyp", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen@10.2.1", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:nopt@5.0.0", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:npmlog@6.0.2", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:which@2.0.2", + "type": "static" + } + ], + "npm:node-ipc": [ + { + "source": "npm:node-ipc", + "target": "npm:event-pubsub", + "type": "static" + }, + { + "source": "npm:node-ipc", + "target": "npm:js-message", + "type": "static" + }, + { + "source": "npm:node-ipc", + "target": "npm:js-queue", + "type": "static" + } + ], + "npm:node-libs-browser": [ + { + "source": "npm:node-libs-browser", + "target": "npm:assert@1.5.0", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:browserify-zlib", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:buffer@4.9.1", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:console-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:constants-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:crypto-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:domain-browser@1.2.0", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:https-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:os-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:path-browserify@0.0.1", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:punycode@1.3.2", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:querystring-es3", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:stream-browserify@2.0.2", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:stream-http@2.8.3", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:timers-browserify", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:tty-browserify@0.0.0", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:url", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:util@0.11.1", + "type": "static" + }, + { + "source": "npm:node-libs-browser", + "target": "npm:vm-browserify", + "type": "static" + } + ], + "npm:node-plop": [ + { + "source": "npm:node-plop", + "target": "npm:@types/globby", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:@types/handlebars", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:@types/inquirer", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:change-case", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:del@5.1.0", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:globby@10.0.2", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:isbinaryfile", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:node-plop", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:node-polyfill-webpack-plugin": [ + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:assert", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:browserify-zlib", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:buffer@6.0.3", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:console-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:constants-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:crypto-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:domain-browser", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:https-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:os-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:process", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:querystring-es3", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:stream-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:stream-http", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:timers-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:tty-browserify", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:url", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:util", + "type": "static" + }, + { + "source": "npm:node-polyfill-webpack-plugin", + "target": "npm:vm-browserify", + "type": "static" + } + ], + "npm:nopt": [ + { + "source": "npm:nopt", + "target": "npm:abbrev", + "type": "static" + } + ], + "npm:nopt@4.0.1": [ + { + "source": "npm:nopt@4.0.1", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:nopt@4.0.1", + "target": "npm:osenv", + "type": "static" + } + ], + "npm:nopt@5.0.0": [ + { + "source": "npm:nopt@5.0.0", + "target": "npm:abbrev", + "type": "static" + } + ], + "npm:normalize-package-data": [ + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:normalize-package-data@3.0.3": [ + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:normalize-package-data@3.0.3", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:normalize-package-data@5.0.0": [ + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:normalize-path@2.1.1": [ + { + "source": "npm:normalize-path@2.1.1", + "target": "npm:remove-trailing-separator", + "type": "static" + } + ], + "npm:now-and-later": [ + { + "source": "npm:now-and-later", + "target": "npm:once", + "type": "static" + } + ], + "npm:npm-bundled": [ + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:npm-bundled@3.0.0": [ + { + "source": "npm:npm-bundled@3.0.0", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + } + ], + "npm:npm-install-checks": [ + { + "source": "npm:npm-install-checks", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:npm-install-checks@6.1.1": [ + { + "source": "npm:npm-install-checks@6.1.1", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:npm-package-arg@11.0.1": [ + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:hosted-git-info@7.0.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@11.0.1", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:npm-package-arg@8.1.1": [ + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:hosted-git-info@3.0.8", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:validate-npm-package-name@3.0.0", + "type": "static" + } + ], + "npm:npm-package-arg": [ + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:npm-packlist": [ + { + "source": "npm:npm-packlist", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:npm-packlist@2.1.2": [ + { + "source": "npm:npm-packlist@2.1.2", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:npm-packlist@2.1.2", + "target": "npm:ignore-walk@3.0.3", + "type": "static" + }, + { + "source": "npm:npm-packlist@2.1.2", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:npm-packlist@2.1.2", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:npm-packlist@7.0.4": [ + { + "source": "npm:npm-packlist@7.0.4", + "target": "npm:ignore-walk@6.0.3", + "type": "static" + } + ], + "npm:npm-pick-manifest": [ + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:npm-pick-manifest@8.0.1": [ + { + "source": "npm:npm-pick-manifest@8.0.1", + "target": "npm:npm-install-checks@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@8.0.1", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@8.0.1", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest@8.0.1", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:npm-registry-fetch": [ + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch@3.0.3", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + } + ], + "npm:npm-registry-fetch@8.1.3": [ + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:@npmcli/ci-detect", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:make-fetch-happen@8.0.9", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch@8.1.3", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + } + ], + "npm:npm-run-path@2.0.2": [ + { + "source": "npm:npm-run-path@2.0.2", + "target": "npm:path-key", + "type": "static" + } + ], + "npm:npm-run-path": [ + { + "source": "npm:npm-run-path", + "target": "npm:path-key@3.1.1", + "type": "static" + } + ], + "npm:npmlog": [ + { + "source": "npm:npmlog", + "target": "npm:are-we-there-yet", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:gauge", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:set-blocking", + "type": "static" + } + ], + "npm:npmlog@5.0.1": [ + { + "source": "npm:npmlog@5.0.1", + "target": "npm:are-we-there-yet@2.0.0", + "type": "static" + }, + { + "source": "npm:npmlog@5.0.1", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog@5.0.1", + "target": "npm:gauge@3.0.2", + "type": "static" + }, + { + "source": "npm:npmlog@5.0.1", + "target": "npm:set-blocking", + "type": "static" + } + ], + "npm:npmlog@6.0.2": [ + { + "source": "npm:npmlog@6.0.2", + "target": "npm:are-we-there-yet@3.0.1", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:gauge@4.0.4", + "type": "static" + }, + { + "source": "npm:npmlog@6.0.2", + "target": "npm:set-blocking", + "type": "static" + } + ], + "npm:nth-check@2.0.0": [ + { + "source": "npm:nth-check@2.0.0", + "target": "npm:boolbase", + "type": "static" + } + ], + "npm:nth-check": [ + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + } + ], + "npm:nx": [ + { + "source": "npm:nx", + "target": "npm:@nrwl/tao", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv@16.3.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:lines-and-columns@2.0.3", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tsconfig-paths@4.2.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs@17.7.2", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-arm64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-freebsd-x64@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-musl@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-x64-msvc", + "type": "static" + } + ], + "npm:object-copy": [ + { + "source": "npm:object-copy", + "target": "npm:copy-descriptor", + "type": "static" + }, + { + "source": "npm:object-copy", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:object-copy", + "target": "npm:kind-of@3.2.2", + "type": "static" + } + ], + "npm:object-is": [ + { + "source": "npm:object-is", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:object-visit": [ + { + "source": "npm:object-visit", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:object.assign@4.1.0": [ + { + "source": "npm:object.assign@4.1.0", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign@4.1.0", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:object.assign@4.1.0", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign@4.1.0", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:object.assign": [ + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:object.defaults": [ + { + "source": "npm:object.defaults", + "target": "npm:array-each", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:array-slice", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:object.defaults", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:object.entries": [ + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:object.fromentries": [ + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:object.getownpropertydescriptors": [ + { + "source": "npm:object.getownpropertydescriptors", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.getownpropertydescriptors", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:object.hasown": [ + { + "source": "npm:object.hasown", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:object.map": [ + { + "source": "npm:object.map", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:object.map", + "target": "npm:make-iterator", + "type": "static" + } + ], + "npm:object.pick": [ + { + "source": "npm:object.pick", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:object.reduce": [ + { + "source": "npm:object.reduce", + "target": "npm:for-own", + "type": "static" + }, + { + "source": "npm:object.reduce", + "target": "npm:make-iterator", + "type": "static" + } + ], + "npm:object.values": [ + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:on-finished": [ + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:once": [ + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:onetime@2.0.1": [ + { + "source": "npm:onetime@2.0.1", + "target": "npm:mimic-fn@1.2.0", + "type": "static" + } + ], + "npm:onetime": [ + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + } + ], + "npm:open@7.4.2": [ + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:open": [ + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:opn": [ + { + "source": "npm:opn", + "target": "npm:is-wsl@1.1.0", + "type": "static" + } + ], + "npm:optionator": [ + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn@0.3.0", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:wordwrap", + "type": "static" + } + ], + "npm:optionator@0.9.1": [ + { + "source": "npm:optionator@0.9.1", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:prelude-ls@1.2.1", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:type-check@0.4.0", + "type": "static" + }, + { + "source": "npm:optionator@0.9.1", + "target": "npm:word-wrap", + "type": "static" + } + ], + "npm:ora": [ + { + "source": "npm:ora", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:ora@3.4.0": [ + { + "source": "npm:ora@3.4.0", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:cli-cursor@2.1.0", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:log-symbols@2.2.0", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:ora@3.4.0", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:ora@5.4.1": [ + { + "source": "npm:ora@5.4.1", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:ordered-read-streams": [ + { + "source": "npm:ordered-read-streams", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:os-filter-obj": [ + { + "source": "npm:os-filter-obj", + "target": "npm:arch", + "type": "static" + } + ], + "npm:os-locale": [ + { + "source": "npm:os-locale", + "target": "npm:lcid", + "type": "static" + } + ], + "npm:osenv": [ + { + "source": "npm:osenv", + "target": "npm:os-homedir", + "type": "static" + }, + { + "source": "npm:osenv", + "target": "npm:os-tmpdir", + "type": "static" + } + ], + "npm:p-all": [ + { + "source": "npm:p-all", + "target": "npm:p-map@2.1.0", + "type": "static" + } + ], + "npm:p-event": [ + { + "source": "npm:p-event", + "target": "npm:p-timeout", + "type": "static" + } + ], + "npm:p-filter": [ + { + "source": "npm:p-filter", + "target": "npm:p-map@2.1.0", + "type": "static" + } + ], + "npm:p-limit@1.3.0": [ + { + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", + "type": "static" + } + ], + "npm:p-limit@2.3.0": [ + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + } + ], + "npm:p-limit": [ + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + } + ], + "npm:p-limit@4.0.0": [ + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.0.0", + "type": "static" + } + ], + "npm:p-locate@2.0.0": [ + { + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", + "type": "static" + } + ], + "npm:p-locate@3.0.0": [ + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-locate@4.1.0": [ + { + "source": "npm:p-locate@4.1.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-locate": [ + { + "source": "npm:p-locate", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:p-locate@6.0.0": [ + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + } + ], + "npm:p-map": [ + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + } + ], + "npm:p-map@3.0.0": [ + { + "source": "npm:p-map@3.0.0", + "target": "npm:aggregate-error", + "type": "static" + } + ], + "npm:p-map@5.5.0": [ + { + "source": "npm:p-map@5.5.0", + "target": "npm:aggregate-error@4.0.1", + "type": "static" + } + ], + "npm:p-queue": [ + { + "source": "npm:p-queue", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:p-timeout", + "type": "static" + } + ], + "npm:p-retry": [ + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry@0.13.1", + "type": "static" + } + ], + "npm:p-timeout": [ + { + "source": "npm:p-timeout", + "target": "npm:p-finally", + "type": "static" + } + ], + "npm:p-waterfall": [ + { + "source": "npm:p-waterfall", + "target": "npm:p-reduce", + "type": "static" + } + ], + "npm:package-json": [ + { + "source": "npm:package-json", + "target": "npm:got@6.7.1", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:registry-url", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:semver@5.7.1", + "type": "static" + } + ], + "npm:pacote@11.1.11": [ + { + "source": "npm:pacote@11.1.11", + "target": "npm:@npmcli/git@2.0.3", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:@npmcli/installed-package-contents@1.0.7", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:@npmcli/run-script@1.3.1", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:npm-packlist@2.1.2", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:npm-registry-fetch@8.1.3", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:promise-retry@1.1.1", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:ssri@8.0.0", + "type": "static" + }, + { + "source": "npm:pacote@11.1.11", + "target": "npm:tar", + "type": "static" + } + ], + "npm:pacote": [ + { + "source": "npm:pacote", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/promise-spawn@6.0.2", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:cacache@17.1.3", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:fs-minipass@3.0.2", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist@7.0.4", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-pick-manifest@8.0.1", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json-fast@3.0.2", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:tar", + "type": "static" + } + ], + "npm:parallel-transform": [ + { + "source": "npm:parallel-transform", + "target": "npm:cyclist", + "type": "static" + }, + { + "source": "npm:parallel-transform", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:parallel-transform", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:parallel-webpack": [ + { + "source": "npm:parallel-webpack", + "target": "npm:ajv@4.11.8", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:bluebird", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:lodash.assign", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:lodash.endswith", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:lodash.flatten", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:node-ipc", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:pluralize", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:supports-color@3.2.3", + "type": "static" + }, + { + "source": "npm:parallel-webpack", + "target": "npm:worker-farm", + "type": "static" + } + ], + "npm:param-case": [ + { + "source": "npm:param-case", + "target": "npm:no-case", + "type": "static" + } + ], + "npm:param-case@3.0.4": [ + { + "source": "npm:param-case@3.0.4", + "target": "npm:dot-case@3.0.4", + "type": "static" + }, + { + "source": "npm:param-case@3.0.4", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:parent-module": [ + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + } + ], + "npm:parse-asn1": [ + { + "source": "npm:parse-asn1", + "target": "npm:asn1.js", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:browserify-aes", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:evp_bytestokey", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:pbkdf2", + "type": "static" + }, + { + "source": "npm:parse-asn1", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:parse-entities": [ + { + "source": "npm:parse-entities", + "target": "npm:character-entities", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-entities-legacy", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-reference-invalid", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-alphanumerical", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-hexadecimal", + "type": "static" + } + ], + "npm:parse-entities@2.0.0": [ + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:character-entities", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:character-entities-legacy", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:character-reference-invalid", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:is-alphanumerical", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:parse-entities@2.0.0", + "target": "npm:is-hexadecimal", + "type": "static" + } + ], + "npm:parse-filepath": [ + { + "source": "npm:parse-filepath", + "target": "npm:is-absolute", + "type": "static" + }, + { + "source": "npm:parse-filepath", + "target": "npm:map-cache", + "type": "static" + }, + { + "source": "npm:parse-filepath", + "target": "npm:path-root", + "type": "static" + } + ], + "npm:parse-git-config": [ + { + "source": "npm:parse-git-config", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:parse-git-config", + "target": "npm:git-config-path", + "type": "static" + }, + { + "source": "npm:parse-git-config", + "target": "npm:ini", + "type": "static" + } + ], + "npm:parse-json@2.2.0": [ + { + "source": "npm:parse-json@2.2.0", + "target": "npm:error-ex", + "type": "static" + } + ], + "npm:parse-json@4.0.0": [ + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + } + ], + "npm:parse-json": [ + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns", + "type": "static" + } + ], + "npm:parse-link-header": [ + { + "source": "npm:parse-link-header", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:parse-path": [ + { + "source": "npm:parse-path", + "target": "npm:protocols", + "type": "static" + } + ], + "npm:parse-url": [ + { + "source": "npm:parse-url", + "target": "npm:parse-path", + "type": "static" + } + ], + "npm:parse5@3.0.3": [ + { + "source": "npm:parse5@3.0.3", + "target": "npm:@types/node@14.18.32", + "type": "static" + } + ], + "npm:parse5": [ + { + "source": "npm:parse5", + "target": "npm:entities@4.5.0", + "type": "static" + } + ], + "npm:pascal-case": [ + { + "source": "npm:pascal-case", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:upper-case-first", + "type": "static" + } + ], + "npm:pascal-case@3.1.2": [ + { + "source": "npm:pascal-case@3.1.2", + "target": "npm:no-case@3.0.4", + "type": "static" + }, + { + "source": "npm:pascal-case@3.1.2", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:path-case": [ + { + "source": "npm:path-case", + "target": "npm:no-case", + "type": "static" + } + ], + "npm:path-exists@2.1.0": [ + { + "source": "npm:path-exists@2.1.0", + "target": "npm:pinkie-promise", + "type": "static" + } + ], + "npm:path-root": [ + { + "source": "npm:path-root", + "target": "npm:path-root-regex", + "type": "static" + } + ], + "npm:path-scurry": [ + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.0.1", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@5.0.0", + "type": "static" + } + ], + "npm:path-to-regexp@1.7.0": [ + { + "source": "npm:path-to-regexp@1.7.0", + "target": "npm:isarray", + "type": "static" + } + ], + "npm:path-type@1.1.0": [ + { + "source": "npm:path-type@1.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:path-type@1.1.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:path-type@1.1.0", + "target": "npm:pinkie-promise", + "type": "static" + } + ], + "npm:path-type@3.0.0": [ + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify@3.0.0", + "type": "static" + } + ], + "npm:pbkdf2": [ + { + "source": "npm:pbkdf2", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:create-hmac", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:ripemd160", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:pbkdf2", + "target": "npm:sha.js", + "type": "static" + } + ], + "npm:pinkie-promise": [ + { + "source": "npm:pinkie-promise", + "target": "npm:pinkie", + "type": "static" + } + ], + "npm:pixel-buffer-diff-folders": [ + { + "source": "npm:pixel-buffer-diff-folders", + "target": "npm:fast-png", + "type": "static" + }, + { + "source": "npm:pixel-buffer-diff-folders", + "target": "npm:jpeg-js", + "type": "static" + }, + { + "source": "npm:pixel-buffer-diff-folders", + "target": "npm:pixel-buffer-diff", + "type": "static" + } + ], + "npm:pkg-dir@3.0.0": [ + { + "source": "npm:pkg-dir@3.0.0", + "target": "npm:find-up@3.0.0", + "type": "static" + } + ], + "npm:pkg-dir": [ + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + } + ], + "npm:pkg-dir@5.0.0": [ + { + "source": "npm:pkg-dir@5.0.0", + "target": "npm:find-up", + "type": "static" + } + ], + "npm:pkg-install": [ + { + "source": "npm:pkg-install", + "target": "npm:@types/execa", + "type": "static" + }, + { + "source": "npm:pkg-install", + "target": "npm:@types/node@11.15.54", + "type": "static" + }, + { + "source": "npm:pkg-install", + "target": "npm:execa@1.0.0", + "type": "static" + } + ], + "npm:pkg-up": [ + { + "source": "npm:pkg-up", + "target": "npm:find-up@3.0.0", + "type": "static" + } + ], + "npm:pkg-up@4.0.0": [ + { + "source": "npm:pkg-up@4.0.0", + "target": "npm:find-up@6.3.0", + "type": "static" + } + ], + "npm:playwright": [ + { + "source": "npm:playwright", + "target": "npm:playwright-core", + "type": "static" + } + ], + "npm:please-upgrade-node": [ + { + "source": "npm:please-upgrade-node", + "target": "npm:semver-compare", + "type": "static" + } + ], + "npm:plop": [ + { + "source": "npm:plop", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:liftoff", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:node-plop", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:ora@3.4.0", + "type": "static" + }, + { + "source": "npm:plop", + "target": "npm:v8flags", + "type": "static" + } + ], + "npm:plugin-error@0.1.2": [ + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:ansi-cyan", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:ansi-red", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:arr-diff@1.1.0", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:arr-union@2.1.0", + "type": "static" + }, + { + "source": "npm:plugin-error@0.1.2", + "target": "npm:extend-shallow@1.1.4", + "type": "static" + } + ], + "npm:plugin-error": [ + { + "source": "npm:plugin-error", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:plugin-error", + "target": "npm:arr-diff", + "type": "static" + }, + { + "source": "npm:plugin-error", + "target": "npm:arr-union", + "type": "static" + }, + { + "source": "npm:plugin-error", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + } + ], + "npm:pnp-webpack-plugin": [ + { + "source": "npm:pnp-webpack-plugin", + "target": "npm:ts-pnp", + "type": "static" + } + ], + "npm:polished": [ + { + "source": "npm:polished", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:portfinder": [ + { + "source": "npm:portfinder", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:mkdirp", + "type": "static" + } + ], + "npm:postcss-flexbugs-fixes": [ + { + "source": "npm:postcss-flexbugs-fixes", + "target": "npm:postcss@7.0.36", + "type": "static" + } + ], + "npm:postcss-loader": [ + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:postcss-loader@4.3.0": [ + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:postcss-loader@4.3.0", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:postcss-modules-extract-imports@2.0.0": [ + { + "source": "npm:postcss-modules-extract-imports@2.0.0", + "target": "npm:postcss@7.0.36", + "type": "static" + } + ], + "npm:postcss-modules-local-by-default@3.0.2": [ + { + "source": "npm:postcss-modules-local-by-default@3.0.2", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default@3.0.2", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default@3.0.2", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default@3.0.2", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-modules-local-by-default": [ + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils@5.1.0", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-modules-scope@2.2.0": [ + { + "source": "npm:postcss-modules-scope@2.2.0", + "target": "npm:postcss@7.0.36", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope@2.2.0", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-scope": [ + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-values@3.0.0": [ + { + "source": "npm:postcss-modules-values@3.0.0", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-values@3.0.0", + "target": "npm:postcss@7.0.36", + "type": "static" + } + ], + "npm:postcss-modules-values": [ + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils@5.1.0", + "type": "static" + } + ], + "npm:postcss-modules": [ + { + "source": "npm:postcss-modules", + "target": "npm:generic-names", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:icss-replace-symbols", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:lodash.camelcase", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:postcss-modules", + "target": "npm:string-hash", + "type": "static" + } + ], + "npm:postcss-selector-parser": [ + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:postcss": [ + { + "source": "npm:postcss", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js@0.6.2", + "type": "static" + } + ], + "npm:postcss@7.0.36": [ + { + "source": "npm:postcss@7.0.36", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:postcss@7.0.36", + "target": "npm:supports-color@6.1.0", + "type": "static" + } + ], + "npm:pretty-error": [ + { + "source": "npm:pretty-error", + "target": "npm:renderkid", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:utila", + "type": "static" + } + ], + "npm:pretty-format@25.5.0": [ + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:@jest/types@25.5.0", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:pretty-format@25.5.0", + "target": "npm:react-is@16.13.1", + "type": "static" + } + ], + "npm:pretty-format@27.5.1": [ + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@27.5.1", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:pretty-format": [ + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.2.0", + "type": "static" + } + ], + "npm:prettyjson": [ + { + "source": "npm:prettyjson", + "target": "npm:colors@1.4.0", + "type": "static" + }, + { + "source": "npm:prettyjson", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:prismjs": [ + { + "source": "npm:prismjs", + "target": "npm:clipboard", + "type": "static" + } + ], + "npm:promise-retry@1.1.1": [ + { + "source": "npm:promise-retry@1.1.1", + "target": "npm:err-code@1.1.2", + "type": "static" + }, + { + "source": "npm:promise-retry@1.1.1", + "target": "npm:retry@0.10.1", + "type": "static" + } + ], + "npm:promise-retry": [ + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry", + "type": "static" + } + ], + "npm:promise.allsettled": [ + { + "source": "npm:promise.allsettled", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:promise.allsettled", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:promise.allsettled", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:promise.prototype.finally": [ + { + "source": "npm:promise.prototype.finally", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:promise.prototype.finally", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:promise.prototype.finally", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:promise": [ + { + "source": "npm:promise", + "target": "npm:asap", + "type": "static" + } + ], + "npm:prompts": [ + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + } + ], + "npm:promzard": [ + { + "source": "npm:promzard", + "target": "npm:read", + "type": "static" + } + ], + "npm:prop-types": [ + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is@16.13.1", + "type": "static" + } + ], + "npm:property-information": [ + { + "source": "npm:property-information", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:proxy-addr": [ + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js@1.9.1", + "type": "static" + } + ], + "npm:public-encrypt": [ + { + "source": "npm:public-encrypt", + "target": "npm:bn.js", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:browserify-rsa", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:create-hash", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:parse-asn1", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:public-encrypt", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:pump@2.0.1": [ + { + "source": "npm:pump@2.0.1", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump@2.0.1", + "target": "npm:once", + "type": "static" + } + ], + "npm:pump": [ + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + } + ], + "npm:pumpify": [ + { + "source": "npm:pumpify", + "target": "npm:duplexify", + "type": "static" + }, + { + "source": "npm:pumpify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:pumpify", + "target": "npm:pump@2.0.1", + "type": "static" + } + ], + "npm:puppeteer-core": [ + { + "source": "npm:puppeteer-core", + "target": "npm:cross-fetch", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:devtools-protocol@0.0.1082910", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:tar-fs", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:unbzip2-stream", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:ws", + "type": "static" + } + ], + "npm:puppeteer": [ + { + "source": "npm:puppeteer", + "target": "npm:cosmiconfig@8.0.0", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:puppeteer-core", + "type": "static" + } + ], + "npm:qs": [ + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:query-string": [ + { + "source": "npm:query-string", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:filter-obj", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:split-on-first", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:strict-uri-encode", + "type": "static" + } + ], + "npm:raf": [ + { + "source": "npm:raf", + "target": "npm:performance-now", + "type": "static" + } + ], + "npm:randexp": [ + { + "source": "npm:randexp", + "target": "npm:discontinuous-range", + "type": "static" + }, + { + "source": "npm:randexp", + "target": "npm:ret", + "type": "static" + } + ], + "npm:randombytes": [ + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:randomfill": [ + { + "source": "npm:randomfill", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:randomfill", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:raw-body": [ + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:raw-loader": [ + { + "source": "npm:raw-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:raw-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + } + ], + "npm:rc": [ + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + } + ], + "npm:react-ace": [ + { + "source": "npm:react-ace", + "target": "npm:brace", + "type": "static" + }, + { + "source": "npm:react-ace", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:react-ace", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:react-ace", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-addons-shallow-compare": [ + { + "source": "npm:react-addons-shallow-compare", + "target": "npm:object-assign", + "type": "static" + } + ], + "npm:react-app-polyfill": [ + { + "source": "npm:react-app-polyfill", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:promise", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:raf", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:react-app-polyfill", + "target": "npm:whatwg-fetch@3.6.2", + "type": "static" + } + ], + "npm:react-codesandboxer": [ + { + "source": "npm:react-codesandboxer", + "target": "npm:codesandboxer", + "type": "static" + }, + { + "source": "npm:react-codesandboxer", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:react-codesandboxer", + "target": "npm:lodash.pick", + "type": "static" + }, + { + "source": "npm:react-codesandboxer", + "target": "npm:react-node-resolver", + "type": "static" + } + ], + "npm:react-custom-scrollbars": [ + { + "source": "npm:react-custom-scrollbars", + "target": "npm:dom-css", + "type": "static" + }, + { + "source": "npm:react-custom-scrollbars", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-custom-scrollbars", + "target": "npm:raf", + "type": "static" + } + ], + "npm:react-docgen": [ + { + "source": "npm:react-docgen", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:ast-types@0.13.2", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:node-dir", + "type": "static" + }, + { + "source": "npm:react-docgen", + "target": "npm:strip-indent", + "type": "static" + } + ], + "npm:react-document-title": [ + { + "source": "npm:react-document-title", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-document-title", + "target": "npm:react-side-effect", + "type": "static" + } + ], + "npm:react-dom@16.14.0": [ + { + "source": "npm:react-dom@16.14.0", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom@16.14.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-dom@16.14.0", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-dom@16.14.0", + "target": "npm:scheduler@0.19.1", + "type": "static" + } + ], + "npm:react-dom": [ + { + "source": "npm:react-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:scheduler", + "type": "static" + } + ], + "npm:react-dom@18.2.0": [ + { + "source": "npm:react-dom@18.2.0", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom@18.2.0", + "target": "npm:scheduler@0.23.0", + "type": "static" + } + ], + "npm:react-element-to-jsx-string": [ + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:@base2/pretty-print-object", + "type": "static" + }, + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:is-plain-object@5.0.0", + "type": "static" + }, + { + "source": "npm:react-element-to-jsx-string", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:react-error-boundary": [ + { + "source": "npm:react-error-boundary", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:react-fela": [ + { + "source": "npm:react-fela", + "target": "npm:fela-bindings", + "type": "static" + }, + { + "source": "npm:react-fela", + "target": "npm:fela-dom", + "type": "static" + }, + { + "source": "npm:react-fela", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-hooks-testing-library": [ + { + "source": "npm:react-hooks-testing-library", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:react-hot-loader": [ + { + "source": "npm:react-hot-loader", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-hot-loader", + "target": "npm:source-map@0.7.3", + "type": "static" + } + ], + "npm:react-input-autosize": [ + { + "source": "npm:react-input-autosize", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-inspector": [ + { + "source": "npm:react-inspector", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-inspector", + "target": "npm:is-dom", + "type": "static" + }, + { + "source": "npm:react-inspector", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-markdown": [ + { + "source": "npm:react-markdown", + "target": "npm:html-to-react", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:mdast-add-list-metadata", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:remark-parse", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:unified", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:unist-util-visit@1.4.1", + "type": "static" + }, + { + "source": "npm:react-markdown", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:react-motion": [ + { + "source": "npm:react-motion", + "target": "npm:performance-now@0.2.0", + "type": "static" + }, + { + "source": "npm:react-motion", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-motion", + "target": "npm:raf", + "type": "static" + } + ], + "npm:react-router-dom": [ + { + "source": "npm:react-router-dom", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:react-router", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:tiny-warning", + "type": "static" + } + ], + "npm:react-router": [ + { + "source": "npm:react-router", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:mini-create-react-context", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:path-to-regexp@1.7.0", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:react-is@16.13.1", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-warning", + "type": "static" + } + ], + "npm:react-select": [ + { + "source": "npm:react-select", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:@emotion/cache", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:@emotion/core", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:@emotion/css", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:memoize-one", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:react-input-autosize", + "type": "static" + }, + { + "source": "npm:react-select", + "target": "npm:react-transition-group", + "type": "static" + } + ], + "npm:react-shadow": [ + { + "source": "npm:react-shadow", + "target": "npm:humps", + "type": "static" + } + ], + "npm:react-shallow-renderer": [ + { + "source": "npm:react-shallow-renderer", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-shallow-renderer", + "target": "npm:react-is@16.13.1", + "type": "static" + } + ], + "npm:react-side-effect": [ + { + "source": "npm:react-side-effect", + "target": "npm:shallowequal", + "type": "static" + } + ], + "npm:react-sizeme": [ + { + "source": "npm:react-sizeme", + "target": "npm:element-resize-detector", + "type": "static" + }, + { + "source": "npm:react-sizeme", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-sizeme", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-sizeme", + "target": "npm:throttle-debounce", + "type": "static" + } + ], + "npm:react-source-render": [ + { + "source": "npm:react-source-render", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:deepmerge@2.2.1", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:react-source-render", + "target": "npm:react-is@16.13.1", + "type": "static" + } + ], + "npm:react-syntax-highlighter": [ + { + "source": "npm:react-syntax-highlighter", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:highlight.js", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:lowlight", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:prismjs", + "type": "static" + }, + { + "source": "npm:react-syntax-highlighter", + "target": "npm:refractor", + "type": "static" + } + ], + "npm:react-table": [ + { + "source": "npm:react-table", + "target": "npm:@scarf/scarf", + "type": "static" + } + ], + "npm:react-test-renderer": [ + { + "source": "npm:react-test-renderer", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-shallow-renderer", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:scheduler", + "type": "static" + } + ], + "npm:react-textarea-autosize": [ + { + "source": "npm:react-textarea-autosize", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-transition-group": [ + { + "source": "npm:react-transition-group", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:dom-helpers", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-transition-group", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-virtualized": [ + { + "source": "npm:react-virtualized", + "target": "npm:babel-runtime", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:clsx", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:dom-helpers", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-virtualized", + "target": "npm:react-lifecycles-compat", + "type": "static" + } + ], + "npm:react-vis": [ + { + "source": "npm:react-vis", + "target": "npm:d3-array", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-collection", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-color", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-contour", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-format", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-geo", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-hexbin", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-hierarchy@1.1.9", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-interpolate", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-sankey@0.7.1", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-scale", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-shape", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:d3-voronoi", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:hoek", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-vis", + "target": "npm:react-motion", + "type": "static" + } + ], + "npm:react-window": [ + { + "source": "npm:react-window", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-window", + "target": "npm:memoize-one", + "type": "static" + } + ], + "npm:react@16.14.0": [ + { + "source": "npm:react@16.14.0", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react@16.14.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react@16.14.0", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react": [ + { + "source": "npm:react", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react", + "target": "npm:object-assign", + "type": "static" + } + ], + "npm:react@18.2.0": [ + { + "source": "npm:react@18.2.0", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:read-package-json-fast": [ + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:read-package-json-fast@3.0.2": [ + { + "source": "npm:read-package-json-fast@3.0.2", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json-fast@3.0.2", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + } + ], + "npm:read-package-json": [ + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin@3.0.1", + "type": "static" + } + ], + "npm:read-pkg-up": [ + { + "source": "npm:read-pkg-up", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg@5.2.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:type-fest@0.8.1", + "type": "static" + } + ], + "npm:read-pkg-up@1.0.1": [ + { + "source": "npm:read-pkg-up@1.0.1", + "target": "npm:find-up@1.1.2", + "type": "static" + }, + { + "source": "npm:read-pkg-up@1.0.1", + "target": "npm:read-pkg@1.1.0", + "type": "static" + } + ], + "npm:read-pkg-up@3.0.0": [ + { + "source": "npm:read-pkg-up@3.0.0", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@3.0.0", + "target": "npm:read-pkg", + "type": "static" + } + ], + "npm:read-pkg@1.1.0": [ + { + "source": "npm:read-pkg@1.1.0", + "target": "npm:load-json-file@1.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg@1.1.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@1.1.0", + "target": "npm:path-type@1.1.0", + "type": "static" + } + ], + "npm:read-pkg": [ + { + "source": "npm:read-pkg", + "target": "npm:load-json-file@4.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:path-type@3.0.0", + "type": "static" + } + ], + "npm:read-pkg@5.2.0": [ + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:type-fest@0.6.0", + "type": "static" + } + ], + "npm:read-yaml-file": [ + { + "source": "npm:read-yaml-file", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:read-yaml-file", + "target": "npm:strip-bom@4.0.0", + "type": "static" + } + ], + "npm:read": [ + { + "source": "npm:read", + "target": "npm:mute-stream@1.0.0", + "type": "static" + } + ], + "npm:readable-stream": [ + { + "source": "npm:readable-stream", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readable-stream@3.6.0": [ + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream@3.6.0", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readable-stream@1.0.34": [ + { + "source": "npm:readable-stream@1.0.34", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@1.0.34", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@1.0.34", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:readable-stream@1.0.34", + "target": "npm:string_decoder@0.10.31", + "type": "static" + } + ], + "npm:readable-stream@1.1.14": [ + { + "source": "npm:readable-stream@1.1.14", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@1.1.14", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@1.1.14", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:readable-stream@1.1.14", + "target": "npm:string_decoder@0.10.31", + "type": "static" + } + ], + "npm:readable-web-to-node-stream": [ + { + "source": "npm:readable-web-to-node-stream", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:readdirp@2.2.1": [ + { + "source": "npm:readdirp@2.2.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:readdirp@2.2.1", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:readdirp@2.2.1", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:readdirp@3.2.0": [ + { + "source": "npm:readdirp@3.2.0", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:readdirp": [ + { + "source": "npm:readdirp", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:rechoir": [ + { + "source": "npm:rechoir", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:rechoir@0.7.0": [ + { + "source": "npm:rechoir@0.7.0", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:redent@1.0.0": [ + { + "source": "npm:redent@1.0.0", + "target": "npm:indent-string@2.1.0", + "type": "static" + }, + { + "source": "npm:redent@1.0.0", + "target": "npm:strip-indent@1.0.1", + "type": "static" + } + ], + "npm:redent": [ + { + "source": "npm:redent", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:strip-indent", + "type": "static" + } + ], + "npm:redeyed": [ + { + "source": "npm:redeyed", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:refractor": [ + { + "source": "npm:refractor", + "target": "npm:hastscript", + "type": "static" + }, + { + "source": "npm:refractor", + "target": "npm:parse-entities", + "type": "static" + }, + { + "source": "npm:refractor", + "target": "npm:prismjs", + "type": "static" + } + ], + "npm:regenerate-unicode-properties": [ + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + } + ], + "npm:regenerator-transform": [ + { + "source": "npm:regenerator-transform", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:regex-not": [ + { + "source": "npm:regex-not", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:regex-not", + "target": "npm:safe-regex", + "type": "static" + } + ], + "npm:regexp.prototype.flags": [ + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:regexpu-core": [ + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + } + ], + "npm:registry-auth-token": [ + { + "source": "npm:registry-auth-token", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:registry-auth-token", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:registry-url": [ + { + "source": "npm:registry-url", + "target": "npm:rc", + "type": "static" + } + ], + "npm:regjsparser": [ + { + "source": "npm:regjsparser", + "target": "npm:jsesc@0.5.0", + "type": "static" + } + ], + "npm:remark-external-links": [ + { + "source": "npm:remark-external-links", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:is-absolute-url", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:mdast-util-definitions", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:remark-external-links", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:remark-frontmatter": [ + { + "source": "npm:remark-frontmatter", + "target": "npm:fault", + "type": "static" + }, + { + "source": "npm:remark-frontmatter", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:remark-mdx": [ + { + "source": "npm:remark-mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:remark-parse@8.0.3", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:unified@9.2.0", + "type": "static" + } + ], + "npm:remark-parse@8.0.3": [ + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:ccount", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:collapse-white-space", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:is-whitespace-character", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:is-word-character", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:markdown-escapes", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:parse-entities@2.0.0", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:state-toggle", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:trim", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:trim-trailing-lines", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:unherit", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:unist-util-remove-position@2.0.1", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:vfile-location", + "type": "static" + }, + { + "source": "npm:remark-parse@8.0.3", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:remark-parse": [ + { + "source": "npm:remark-parse", + "target": "npm:collapse-white-space", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-whitespace-character", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-word-character", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:markdown-escapes", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:parse-entities", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:state-toggle", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:trim", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:trim-trailing-lines", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:unherit", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:unist-util-remove-position", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:vfile-location@2.0.6", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:remark-slug": [ + { + "source": "npm:remark-slug", + "target": "npm:github-slugger", + "type": "static" + }, + { + "source": "npm:remark-slug", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:remark-slug", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:remark-squeeze-paragraphs": [ + { + "source": "npm:remark-squeeze-paragraphs", + "target": "npm:mdast-squeeze-paragraphs", + "type": "static" + } + ], + "npm:remove-bom-buffer": [ + { + "source": "npm:remove-bom-buffer", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:remove-bom-buffer", + "target": "npm:is-utf8", + "type": "static" + } + ], + "npm:remove-bom-stream": [ + { + "source": "npm:remove-bom-stream", + "target": "npm:remove-bom-buffer", + "type": "static" + }, + { + "source": "npm:remove-bom-stream", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:remove-bom-stream", + "target": "npm:through2@2.0.5", + "type": "static" + } + ], + "npm:renderkid": [ + { + "source": "npm:renderkid", + "target": "npm:css-select@4.1.3", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:dom-converter", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:htmlparser2@6.1.0", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + } + ], + "npm:repeating": [ + { + "source": "npm:repeating", + "target": "npm:is-finite", + "type": "static" + } + ], + "npm:replace-homedir": [ + { + "source": "npm:replace-homedir", + "target": "npm:homedir-polyfill", + "type": "static" + }, + { + "source": "npm:replace-homedir", + "target": "npm:is-absolute", + "type": "static" + }, + { + "source": "npm:replace-homedir", + "target": "npm:remove-trailing-separator", + "type": "static" + } + ], + "npm:replace-in-file": [ + { + "source": "npm:replace-in-file", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:replace-in-file", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:replace-in-file", + "target": "npm:yargs@15.4.1", + "type": "static" + } + ], + "npm:request-progress": [ + { + "source": "npm:request-progress", + "target": "npm:throttleit", + "type": "static" + } + ], + "npm:request-promise-core": [ + { + "source": "npm:request-promise-core", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:request-promise-native": [ + { + "source": "npm:request-promise-native", + "target": "npm:request-promise-core", + "type": "static" + }, + { + "source": "npm:request-promise-native", + "target": "npm:stealthy-require", + "type": "static" + }, + { + "source": "npm:request-promise-native", + "target": "npm:tough-cookie", + "type": "static" + } + ], + "npm:request": [ + { + "source": "npm:request", + "target": "npm:aws-sign2", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:aws4", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:caseless", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:forever-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:form-data@2.3.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:har-validator", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:http-signature@1.2.0", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:isstream", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:oauth-sign", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:performance-now", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:qs@6.5.3", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:request", + "target": "npm:uuid@3.4.0", + "type": "static" + } + ], + "npm:resolve-cwd": [ + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:resolve-dir": [ + { + "source": "npm:resolve-dir", + "target": "npm:expand-tilde", + "type": "static" + }, + { + "source": "npm:resolve-dir", + "target": "npm:global-modules", + "type": "static" + } + ], + "npm:resolve-options": [ + { + "source": "npm:resolve-options", + "target": "npm:value-or-function", + "type": "static" + } + ], + "npm:resolve-path": [ + { + "source": "npm:resolve-path", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:resolve-path", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:resolve@1.15.1": [ + { + "source": "npm:resolve@1.15.1", + "target": "npm:path-parse", + "type": "static" + } + ], + "npm:resolve": [ + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:resolve@2.0.0-next.3": [ + { + "source": "npm:resolve@2.0.0-next.3", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.3", + "target": "npm:path-parse", + "type": "static" + } + ], + "npm:resolve@1.17.0": [ + { + "source": "npm:resolve@1.17.0", + "target": "npm:path-parse", + "type": "static" + } + ], + "npm:resolve@1.19.0": [ + { + "source": "npm:resolve@1.19.0", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@1.19.0", + "target": "npm:path-parse", + "type": "static" + } + ], + "npm:responselike": [ + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + } + ], + "npm:restore-cursor@2.0.0": [ + { + "source": "npm:restore-cursor@2.0.0", + "target": "npm:onetime@2.0.1", + "type": "static" + }, + { + "source": "npm:restore-cursor@2.0.0", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:restore-cursor": [ + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:riceburn": [ + { + "source": "npm:riceburn", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rimraf@2.7.1": [ + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rimraf": [ + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rimraf@4.4.1": [ + { + "source": "npm:rimraf@4.4.1", + "target": "npm:glob@9.3.5", + "type": "static" + } + ], + "npm:ripemd160": [ + { + "source": "npm:ripemd160", + "target": "npm:hash-base", + "type": "static" + }, + { + "source": "npm:ripemd160", + "target": "npm:inherits", + "type": "static" + } + ], + "npm:rollup-plugin-commonjs": [ + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:is-reference", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:rollup-plugin-commonjs", + "target": "npm:rollup-pluginutils", + "type": "static" + } + ], + "npm:rollup-plugin-filesize": [ + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:boxen", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:brotli-size", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:colors@1.4.0", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:filesize", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:pacote@11.1.11", + "type": "static" + }, + { + "source": "npm:rollup-plugin-filesize", + "target": "npm:terser@4.8.0", + "type": "static" + } + ], + "npm:rollup-plugin-node-resolve": [ + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:@types/resolve", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:builtin-modules", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:is-module", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:rollup-plugin-node-resolve", + "target": "npm:rollup-pluginutils", + "type": "static" + } + ], + "npm:rollup-plugin-terser": [ + { + "source": "npm:rollup-plugin-terser", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:jest-worker@24.9.0", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:rollup-pluginutils", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:terser@4.8.0", + "type": "static" + } + ], + "npm:rollup-plugin-transform-tagged-template": [ + { + "source": "npm:rollup-plugin-transform-tagged-template", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:rollup-plugin-transform-tagged-template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:rollup-plugin-transform-tagged-template", + "target": "npm:@babel/traverse", + "type": "static" + } + ], + "npm:rollup-plugin-typescript2": [ + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:resolve@1.15.1", + "type": "static" + }, + { + "source": "npm:rollup-plugin-typescript2", + "target": "npm:tslib@1.11.2", + "type": "static" + } + ], + "npm:rollup-pluginutils": [ + { + "source": "npm:rollup-pluginutils", + "target": "npm:estree-walker", + "type": "static" + } + ], + "npm:rollup": [ + { + "source": "npm:rollup", + "target": "npm:fsevents@2.3.3", + "type": "static" + } + ], + "npm:rst-selector-parser": [ + { + "source": "npm:rst-selector-parser", + "target": "npm:lodash.flattendeep", + "type": "static" + }, + { + "source": "npm:rst-selector-parser", + "target": "npm:nearley", + "type": "static" + } + ], + "npm:rtl-css-js": [ + { + "source": "npm:rtl-css-js", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:run-queue": [ + { + "source": "npm:run-queue", + "target": "npm:aproba", + "type": "static" + } + ], + "npm:rxjs": [ + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:rxjs@6.6.7": [ + { + "source": "npm:rxjs@6.6.7", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:safe-regex": [ + { + "source": "npm:safe-regex", + "target": "npm:ret", + "type": "static" + } + ], + "npm:sane": [ + { + "source": "npm:sane", + "target": "npm:@cnakazawa/watch", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:anymatch@2.0.0", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:capture-exit", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:exec-sh", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:execa@1.0.0", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:sane", + "target": "npm:walker", + "type": "static" + } + ], + "npm:sanitize-filename": [ + { + "source": "npm:sanitize-filename", + "target": "npm:truncate-utf8-bytes", + "type": "static" + } + ], + "npm:sass-loader": [ + { + "source": "npm:sass-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:sass-loader", + "target": "npm:neo-async", + "type": "static" + } + ], + "npm:sass": [ + { + "source": "npm:sass", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:satisfied": [ + { + "source": "npm:satisfied", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:halcyon", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:log-symbols@1.0.2", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:update-notifier", + "type": "static" + }, + { + "source": "npm:satisfied", + "target": "npm:yargs@7.1.0", + "type": "static" + } + ], + "npm:saxes": [ + { + "source": "npm:saxes", + "target": "npm:xmlchars", + "type": "static" + } + ], + "npm:scheduler": [ + { + "source": "npm:scheduler", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:scheduler", + "target": "npm:object-assign", + "type": "static" + } + ], + "npm:scheduler@0.19.1": [ + { + "source": "npm:scheduler@0.19.1", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:scheduler@0.19.1", + "target": "npm:object-assign", + "type": "static" + } + ], + "npm:scheduler@0.23.0": [ + { + "source": "npm:scheduler@0.23.0", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:schema-utils@2.7.0": [ + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils": [ + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils@0.3.0": [ + { + "source": "npm:schema-utils@0.3.0", + "target": "npm:ajv@5.5.2", + "type": "static" + } + ], + "npm:schema-utils@1.0.0": [ + { + "source": "npm:schema-utils@1.0.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@1.0.0", + "target": "npm:ajv-errors@1.0.1", + "type": "static" + }, + { + "source": "npm:schema-utils@1.0.0", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils@3.1.2": [ + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:schema-utils@3.1.2", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils@4.0.0": [ + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv-formats@2.1.1", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv-keywords@5.1.0", + "type": "static" + } + ], + "npm:selenium-webdriver": [ + { + "source": "npm:selenium-webdriver", + "target": "npm:jszip", + "type": "static" + }, + { + "source": "npm:selenium-webdriver", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:selenium-webdriver", + "target": "npm:ws", + "type": "static" + } + ], + "npm:selfsigned": [ + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + } + ], + "npm:semver-diff": [ + { + "source": "npm:semver-diff", + "target": "npm:semver@5.7.1", + "type": "static" + } + ], + "npm:semver-greatest-satisfied-range": [ + { + "source": "npm:semver-greatest-satisfied-range", + "target": "npm:sver-compat", + "type": "static" + } + ], + "npm:semver-truncate": [ + { + "source": "npm:semver-truncate", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:semver@7.5.2": [ + { + "source": "npm:semver@7.5.2", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:semver@7.5.3": [ + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:semver@7.5.4": [ + { + "source": "npm:semver@7.5.4", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:semver@7.3.8": [ + { + "source": "npm:semver@7.3.8", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:send": [ + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime@1.6.0", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + } + ], + "npm:sentence-case": [ + { + "source": "npm:sentence-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:sentence-case", + "target": "npm:upper-case-first", + "type": "static" + } + ], + "npm:serialize-javascript": [ + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serialize-javascript@5.0.1": [ + { + "source": "npm:serialize-javascript@5.0.1", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serialize-javascript@6.0.1": [ + { + "source": "npm:serialize-javascript@6.0.1", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serve-favicon": [ + { + "source": "npm:serve-favicon", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:ms@2.1.1", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-favicon", + "target": "npm:safe-buffer@5.1.1", + "type": "static" + } + ], + "npm:serve-index": [ + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + } + ], + "npm:serve-static": [ + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + } + ], + "npm:set-value": [ + { + "source": "npm:set-value", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:is-extendable", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:set-value", + "target": "npm:split-string", + "type": "static" + } + ], + "npm:sha.js": [ + { + "source": "npm:sha.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:sha.js", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:shallow-clone": [ + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:shebang-command": [ + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + } + ], + "npm:shebang-command@2.0.0": [ + { + "source": "npm:shebang-command@2.0.0", + "target": "npm:shebang-regex@3.0.0", + "type": "static" + } + ], + "npm:side-channel": [ + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + } + ], + "npm:sigstore": [ + { + "source": "npm:sigstore", + "target": "npm:@sigstore/bundle", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + } + ], + "npm:simple-swizzle": [ + { + "source": "npm:simple-swizzle", + "target": "npm:is-arrayish@0.3.2", + "type": "static" + } + ], + "npm:sirv": [ + { + "source": "npm:sirv", + "target": "npm:@polka/url", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:totalist", + "type": "static" + } + ], + "npm:slice-ansi@3.0.0": [ + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:is-fullwidth-code-point", + "type": "static" + } + ], + "npm:slice-ansi": [ + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point", + "type": "static" + } + ], + "npm:snake-case": [ + { + "source": "npm:snake-case", + "target": "npm:no-case", + "type": "static" + } + ], + "npm:snapdragon-node": [ + { + "source": "npm:snapdragon-node", + "target": "npm:define-property@1.0.0", + "type": "static" + }, + { + "source": "npm:snapdragon-node", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:snapdragon-node", + "target": "npm:snapdragon-util", + "type": "static" + } + ], + "npm:snapdragon-util": [ + { + "source": "npm:snapdragon-util", + "target": "npm:kind-of@3.2.2", + "type": "static" + } + ], + "npm:snapdragon": [ + { + "source": "npm:snapdragon", + "target": "npm:base", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:map-cache", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:source-map-resolve", + "type": "static" + }, + { + "source": "npm:snapdragon", + "target": "npm:use", + "type": "static" + } + ], + "npm:socket.io-parser": [ + { + "source": "npm:socket.io-parser", + "target": "npm:@types/component-emitter", + "type": "static" + }, + { + "source": "npm:socket.io-parser", + "target": "npm:component-emitter", + "type": "static" + }, + { + "source": "npm:socket.io-parser", + "target": "npm:debug", + "type": "static" + } + ], + "npm:socket.io": [ + { + "source": "npm:socket.io", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:base64id", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:engine.io", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:socket.io-adapter", + "type": "static" + }, + { + "source": "npm:socket.io", + "target": "npm:socket.io-parser", + "type": "static" + } + ], + "npm:sockjs": [ + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:socks-proxy-agent@5.0.0": [ + { + "source": "npm:socks-proxy-agent@5.0.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@5.0.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@5.0.0", + "target": "npm:socks", + "type": "static" + } + ], + "npm:socks-proxy-agent": [ + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + } + ], + "npm:socks": [ + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + } + ], + "npm:sort-keys-length": [ + { + "source": "npm:sort-keys-length", + "target": "npm:sort-keys@1.1.2", + "type": "static" + } + ], + "npm:sort-keys@1.1.2": [ + { + "source": "npm:sort-keys@1.1.2", + "target": "npm:is-plain-obj", + "type": "static" + } + ], + "npm:sort-keys": [ + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj", + "type": "static" + } + ], + "npm:source-map-loader": [ + { + "source": "npm:source-map-loader", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:source-map-resolve": [ + { + "source": "npm:source-map-resolve", + "target": "npm:atob", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:resolve-url", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:source-map-url", + "type": "static" + }, + { + "source": "npm:source-map-resolve", + "target": "npm:urix", + "type": "static" + } + ], + "npm:source-map-support@0.5.13": [ + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:source-map-support@0.5.19": [ + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:source-map-support": [ + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:source-map@0.2.0": [ + { + "source": "npm:source-map@0.2.0", + "target": "npm:amdefine", + "type": "static" + } + ], + "npm:spdx-correct": [ + { + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids", + "type": "static" + } + ], + "npm:spdx-expression-parse": [ + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", + "type": "static" + } + ], + "npm:spdy-transport": [ + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:spdy": [ + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + } + ], + "npm:split-string": [ + { + "source": "npm:split-string", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + } + ], + "npm:split2": [ + { + "source": "npm:split2", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:split": [ + { + "source": "npm:split", + "target": "npm:through", + "type": "static" + } + ], + "npm:sshpk": [ + { + "source": "npm:sshpk", + "target": "npm:asn1", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:bcrypt-pbkdf", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:dashdash", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:ecc-jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:getpass", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:jsbn", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:sshpk", + "target": "npm:tweetnacl", + "type": "static" + } + ], + "npm:ssri": [ + { + "source": "npm:ssri", + "target": "npm:minipass@5.0.0", + "type": "static" + } + ], + "npm:ssri@6.0.2": [ + { + "source": "npm:ssri@6.0.2", + "target": "npm:figgy-pudding", + "type": "static" + } + ], + "npm:ssri@8.0.0": [ + { + "source": "npm:ssri@8.0.0", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:ssri@9.0.1": [ + { + "source": "npm:ssri@9.0.1", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:stack-utils": [ + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + } + ], + "npm:static-extend": [ + { + "source": "npm:static-extend", + "target": "npm:define-property", + "type": "static" + }, + { + "source": "npm:static-extend", + "target": "npm:object-copy", + "type": "static" + } + ], + "npm:storybook-addon-performance": [ + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/addons", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/api", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/channels", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/components", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/core-events", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@storybook/theming", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@testing-library/dom@7.22.3", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@testing-library/jest-dom", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:@xstate/react", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:gzip-js", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:styled-components", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:storybook-addon-performance", + "target": "npm:xstate", + "type": "static" + } + ], + "npm:storybook-addon-swc": [ + { + "source": "npm:storybook-addon-swc", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:storybook-addon-swc", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:storybook-addon-swc", + "target": "npm:swc-loader", + "type": "static" + } + ], + "npm:storywright": [ + { + "source": "npm:storywright", + "target": "npm:playwright", + "type": "static" + }, + { + "source": "npm:storywright", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:storywright", + "target": "npm:yargs@16.2.0", + "type": "static" + } + ], + "npm:stream-browserify@2.0.2": [ + { + "source": "npm:stream-browserify@2.0.2", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:stream-browserify@2.0.2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:stream-browserify": [ + { + "source": "npm:stream-browserify", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:stream-browserify", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:stream-each": [ + { + "source": "npm:stream-each", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:stream-each", + "target": "npm:stream-shift", + "type": "static" + } + ], + "npm:stream-http@2.8.3": [ + { + "source": "npm:stream-http@2.8.3", + "target": "npm:builtin-status-codes", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:to-arraybuffer", + "type": "static" + }, + { + "source": "npm:stream-http@2.8.3", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:stream-http": [ + { + "source": "npm:stream-http", + "target": "npm:builtin-status-codes", + "type": "static" + }, + { + "source": "npm:stream-http", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:stream-http", + "target": "npm:readable-stream@3.6.0", + "type": "static" + }, + { + "source": "npm:stream-http", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:streamroller": [ + { + "source": "npm:streamroller", + "target": "npm:date-format", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:streamroller", + "target": "npm:fs-extra@10.1.0", + "type": "static" + } + ], + "npm:string-length": [ + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:string-length@5.0.1": [ + { + "source": "npm:string-length@5.0.1", + "target": "npm:char-regex@2.0.1", + "type": "static" + }, + { + "source": "npm:string-length@5.0.1", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + } + ], + "npm:string-width-cjs": [ + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:string-width": [ + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:string-width@1.0.2": [ + { + "source": "npm:string-width@1.0.2", + "target": "npm:code-point-at", + "type": "static" + }, + { + "source": "npm:string-width@1.0.2", + "target": "npm:is-fullwidth-code-point@1.0.0", + "type": "static" + }, + { + "source": "npm:string-width@1.0.2", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + } + ], + "npm:string-width@2.1.1": [ + { + "source": "npm:string-width@2.1.1", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:strip-ansi@4.0.0", + "type": "static" + } + ], + "npm:string-width@3.1.0": [ + { + "source": "npm:string-width@3.1.0", + "target": "npm:emoji-regex@7.0.3", + "type": "static" + }, + { + "source": "npm:string-width@3.1.0", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@3.1.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + } + ], + "npm:string-width@5.1.2": [ + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + } + ], + "npm:string.prototype.matchall": [ + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:string.prototype.padend": [ + { + "source": "npm:string.prototype.padend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.padend", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:string.prototype.padstart": [ + { + "source": "npm:string.prototype.padstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.padstart", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.padstart", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:string.prototype.trim": [ + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:string.prototype.trimend": [ + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:string.prototype.trimstart": [ + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:string_decoder": [ + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:string_decoder@1.1.1": [ + { + "source": "npm:string_decoder@1.1.1", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:stringify-object": [ + { + "source": "npm:stringify-object", + "target": "npm:get-own-enumerable-property-symbols", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-regexp", + "type": "static" + } + ], + "npm:strip-ansi-cjs": [ + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi@6.0.1": [ + { + "source": "npm:strip-ansi@6.0.1", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi": [ + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi@3.0.1": [ + { + "source": "npm:strip-ansi@3.0.1", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + } + ], + "npm:strip-ansi@4.0.0": [ + { + "source": "npm:strip-ansi@4.0.0", + "target": "npm:ansi-regex@3.0.1", + "type": "static" + } + ], + "npm:strip-ansi@5.2.0": [ + { + "source": "npm:strip-ansi@5.2.0", + "target": "npm:ansi-regex@4.1.1", + "type": "static" + } + ], + "npm:strip-ansi@7.0.1": [ + { + "source": "npm:strip-ansi@7.0.1", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + } + ], + "npm:strip-bom@2.0.0": [ + { + "source": "npm:strip-bom@2.0.0", + "target": "npm:is-utf8", + "type": "static" + } + ], + "npm:strip-indent@1.0.1": [ + { + "source": "npm:strip-indent@1.0.1", + "target": "npm:get-stdin@4.0.1", + "type": "static" + } + ], + "npm:strip-indent": [ + { + "source": "npm:strip-indent", + "target": "npm:min-indent", + "type": "static" + } + ], + "npm:strip-outer": [ + { + "source": "npm:strip-outer", + "target": "npm:escape-string-regexp", + "type": "static" + } + ], + "npm:strong-log-transformer": [ + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + } + ], + "npm:strtok3": [ + { + "source": "npm:strtok3", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:strtok3", + "target": "npm:peek-readable", + "type": "static" + } + ], + "npm:structured-source": [ + { + "source": "npm:structured-source", + "target": "npm:boundary", + "type": "static" + } + ], + "npm:style-loader": [ + { + "source": "npm:style-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:style-loader", + "target": "npm:schema-utils@3.1.2", + "type": "static" + } + ], + "npm:style-loader@1.3.0": [ + { + "source": "npm:style-loader@1.3.0", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:style-loader@1.3.0", + "target": "npm:schema-utils@2.7.0", + "type": "static" + } + ], + "npm:style-to-object": [ + { + "source": "npm:style-to-object", + "target": "npm:inline-style-parser", + "type": "static" + } + ], + "npm:styled-components": [ + { + "source": "npm:styled-components", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@emotion/stylis", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:@emotion/unitless", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:babel-plugin-styled-components", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:css-to-react-native", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:styled-components", + "target": "npm:supports-color@5.5.0", + "type": "static" + } + ], + "npm:stylis-plugin-rtl": [ + { + "source": "npm:stylis-plugin-rtl", + "target": "npm:cssjanus", + "type": "static" + } + ], + "npm:supports-color@6.0.0": [ + { + "source": "npm:supports-color@6.0.0", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-color@3.2.3": [ + { + "source": "npm:supports-color@3.2.3", + "target": "npm:has-flag@1.0.0", + "type": "static" + } + ], + "npm:supports-color@5.5.0": [ + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-color@6.1.0": [ + { + "source": "npm:supports-color@6.1.0", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-color": [ + { + "source": "npm:supports-color", + "target": "npm:has-flag@4.0.0", + "type": "static" + } + ], + "npm:supports-color@8.1.1": [ + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag@4.0.0", + "type": "static" + } + ], + "npm:supports-hyperlinks": [ + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag@2.0.0", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color@5.5.0", + "type": "static" + } + ], + "npm:supports-hyperlinks@2.2.0": [ + { + "source": "npm:supports-hyperlinks@2.2.0", + "target": "npm:has-flag@4.0.0", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks@2.2.0", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:sver-compat": [ + { + "source": "npm:sver-compat", + "target": "npm:es6-iterator", + "type": "static" + }, + { + "source": "npm:sver-compat", + "target": "npm:es6-symbol", + "type": "static" + } + ], + "npm:swap-case": [ + { + "source": "npm:swap-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:swap-case", + "target": "npm:upper-case", + "type": "static" + } + ], + "npm:symbol.prototype.description": [ + { + "source": "npm:symbol.prototype.description", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:syncpack": [ + { + "source": "npm:syncpack", + "target": "npm:@effect/data@0.12.5", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:@effect/io", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:@effect/match", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:commander@11.0.0", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:cosmiconfig@8.2.0", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:minimatch@9.0.1", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:read-yaml-file", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:semver@7.5.2", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:tightrope", + "type": "static" + }, + { + "source": "npm:syncpack", + "target": "npm:ts-toolbelt", + "type": "static" + } + ], + "npm:table-layout": [ + { + "source": "npm:table-layout", + "target": "npm:array-back@4.0.2", + "type": "static" + }, + { + "source": "npm:table-layout", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:table-layout", + "target": "npm:typical", + "type": "static" + }, + { + "source": "npm:table-layout", + "target": "npm:wordwrapjs", + "type": "static" + } + ], + "npm:table": [ + { + "source": "npm:table", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:lodash.truncate", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:tabster": [ + { + "source": "npm:tabster", + "target": "npm:keyborg", + "type": "static" + }, + { + "source": "npm:tabster", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:tachometer": [ + { + "source": "npm:tachometer", + "target": "npm:ansi-escape-sequences", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:command-line-args", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:command-line-usage", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:csv-stringify", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:fs-extra@10.1.0", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:get-stream@6.0.1", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:got@12.3.1", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:jsonschema", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:jsonwebtoken", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:jstat", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-bodyparser", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-mount", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-node-resolve", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-send", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:koa-static", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:pkg-install", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:pkg-up@4.0.0", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:sanitize-filename", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:selenium-webdriver", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:systeminformation", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:table", + "type": "static" + }, + { + "source": "npm:tachometer", + "target": "npm:ua-parser-js", + "type": "static" + } + ], + "npm:tar-fs": [ + { + "source": "npm:tar-fs", + "target": "npm:chownr@1.1.4", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:mkdirp-classic", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:tar-stream", + "type": "static" + } + ], + "npm:tar-stream": [ + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:tar": [ + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:tar@4.4.19": [ + { + "source": "npm:tar@4.4.19", + "target": "npm:chownr@1.1.4", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:fs-minipass@1.2.7", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:minipass@2.9.0", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:minizlib@1.3.3", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:tar@4.4.19", + "target": "npm:yallist@3.1.1", + "type": "static" + } + ], + "npm:telejson": [ + { + "source": "npm:telejson", + "target": "npm:@types/is-function", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:global", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:is-function", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:isobject@4.0.0", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:telejson", + "target": "npm:memoizerific", + "type": "static" + } + ], + "npm:term-size@1.2.0": [ + { + "source": "npm:term-size@1.2.0", + "target": "npm:execa@0.7.0", + "type": "static" + } + ], + "npm:terser-webpack-plugin": [ + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript@6.0.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + } + ], + "npm:terser-webpack-plugin@1.4.5": [ + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:cacache@12.0.3", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:find-cache-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:is-wsl@1.1.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:schema-utils@1.0.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:terser@4.8.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@1.4.5", + "target": "npm:worker-farm", + "type": "static" + } + ], + "npm:terser-webpack-plugin@4.2.3": [ + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:jest-worker@26.6.2", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:serialize-javascript@5.0.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin@4.2.3", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:terser": [ + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:terser@4.8.0": [ + { + "source": "npm:terser@4.8.0", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:terser@4.8.0", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:test-exclude": [ + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:through2-filter": [ + { + "source": "npm:through2-filter", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:through2-filter", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:through2@2.0.5": [ + { + "source": "npm:through2@2.0.5", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:through2@2.0.5", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:through2@3.0.1": [ + { + "source": "npm:through2@3.0.1", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:through2": [ + { + "source": "npm:through2", + "target": "npm:readable-stream@3.6.0", + "type": "static" + } + ], + "npm:through2@0.5.1": [ + { + "source": "npm:through2@0.5.1", + "target": "npm:readable-stream@1.0.34", + "type": "static" + }, + { + "source": "npm:through2@0.5.1", + "target": "npm:xtend@3.0.0", + "type": "static" + } + ], + "npm:timers-browserify": [ + { + "source": "npm:timers-browserify", + "target": "npm:setimmediate", + "type": "static" + } + ], + "npm:timers-ext": [ + { + "source": "npm:timers-ext", + "target": "npm:es5-ext", + "type": "static" + }, + { + "source": "npm:timers-ext", + "target": "npm:next-tick", + "type": "static" + } + ], + "npm:title-case": [ + { + "source": "npm:title-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:title-case", + "target": "npm:upper-case", + "type": "static" + } + ], + "npm:tmp": [ + { + "source": "npm:tmp", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:tmp@0.0.33": [ + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + } + ], + "npm:to-absolute-glob": [ + { + "source": "npm:to-absolute-glob", + "target": "npm:is-absolute", + "type": "static" + }, + { + "source": "npm:to-absolute-glob", + "target": "npm:is-negated-glob", + "type": "static" + } + ], + "npm:to-camel-case": [ + { + "source": "npm:to-camel-case", + "target": "npm:to-space-case", + "type": "static" + } + ], + "npm:to-object-path": [ + { + "source": "npm:to-object-path", + "target": "npm:kind-of@3.2.2", + "type": "static" + } + ], + "npm:to-regex-range@2.1.1": [ + { + "source": "npm:to-regex-range@2.1.1", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:to-regex-range@2.1.1", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:to-regex-range": [ + { + "source": "npm:to-regex-range", + "target": "npm:is-number@7.0.0", + "type": "static" + } + ], + "npm:to-regex": [ + { + "source": "npm:to-regex", + "target": "npm:define-property@2.0.2", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:extend-shallow@3.0.2", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:regex-not", + "type": "static" + }, + { + "source": "npm:to-regex", + "target": "npm:safe-regex", + "type": "static" + } + ], + "npm:to-space-case": [ + { + "source": "npm:to-space-case", + "target": "npm:to-no-case", + "type": "static" + } + ], + "npm:to-through": [ + { + "source": "npm:to-through", + "target": "npm:through2@2.0.5", + "type": "static" + } + ], + "npm:token-types": [ + { + "source": "npm:token-types", + "target": "npm:@tokenizer/token", + "type": "static" + }, + { + "source": "npm:token-types", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:tough-cookie": [ + { + "source": "npm:tough-cookie", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:tough-cookie@4.1.2": [ + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie@4.1.2", + "target": "npm:url-parse", + "type": "static" + } + ], + "npm:tr46@1.0.1": [ + { + "source": "npm:tr46@1.0.1", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:tr46": [ + { + "source": "npm:tr46", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:trim-repeated": [ + { + "source": "npm:trim-repeated", + "target": "npm:escape-string-regexp", + "type": "static" + } + ], + "npm:trim-repeated@2.0.0": [ + { + "source": "npm:trim-repeated@2.0.0", + "target": "npm:escape-string-regexp@5.0.0", + "type": "static" + } + ], + "npm:truncate-utf8-bytes": [ + { + "source": "npm:truncate-utf8-bytes", + "target": "npm:utf8-byte-length", + "type": "static" + } + ], + "npm:ts-invariant": [ + { + "source": "npm:ts-invariant", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:ts-jest": [ + { + "source": "npm:ts-jest", + "target": "npm:bs-logger", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:semver@7.5.4", + "type": "static" + }, + { + "source": "npm:ts-jest", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + } + ], + "npm:ts-loader": [ + { + "source": "npm:ts-loader", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:ts-loader", + "target": "npm:semver@7.5.4", + "type": "static" + } + ], + "npm:ts-morph": [ + { + "source": "npm:ts-morph", + "target": "npm:@dsherret/to-absolute-glob", + "type": "static" + }, + { + "source": "npm:ts-morph", + "target": "npm:@ts-morph/common", + "type": "static" + }, + { + "source": "npm:ts-morph", + "target": "npm:code-block-writer", + "type": "static" + } + ], + "npm:ts-node": [ + { + "source": "npm:ts-node", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + } + ], + "npm:tsconfig-paths-webpack-plugin": [ + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:tsconfig-paths-webpack-plugin", + "target": "npm:tsconfig-paths@4.2.0", + "type": "static" + } + ], + "npm:tsconfig-paths": [ + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:tsconfig-paths@3.13.0": [ + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.13.0", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:tsconfig-paths@4.2.0": [ + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@4.2.0", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:tsutils": [ + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:tuf-js": [ + { + "source": "npm:tuf-js", + "target": "npm:@tufjs/models", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:make-fetch-happen", + "type": "static" + } + ], + "npm:tunnel-agent": [ + { + "source": "npm:tunnel-agent", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:type-check@0.4.0": [ + { + "source": "npm:type-check@0.4.0", + "target": "npm:prelude-ls@1.2.1", + "type": "static" + } + ], + "npm:type-check": [ + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + } + ], + "npm:type-is": [ + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:typed-rest-client": [ + { + "source": "npm:typed-rest-client", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:typed-rest-client", + "target": "npm:tunnel", + "type": "static" + }, + { + "source": "npm:typed-rest-client", + "target": "npm:underscore", + "type": "static" + } + ], + "npm:typedarray-to-buffer": [ + { + "source": "npm:typedarray-to-buffer", + "target": "npm:is-typedarray", + "type": "static" + } + ], + "npm:unbox-primitive": [ + { + "source": "npm:unbox-primitive", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + } + ], + "npm:unbzip2-stream": [ + { + "source": "npm:unbzip2-stream", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:unbzip2-stream", + "target": "npm:through", + "type": "static" + } + ], + "npm:undertaker": [ + { + "source": "npm:undertaker", + "target": "npm:arr-flatten", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:arr-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:bach", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:collection-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:es6-weak-map", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:fast-levenshtein@1.1.4", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:last-run", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:object.defaults", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:object.reduce", + "type": "static" + }, + { + "source": "npm:undertaker", + "target": "npm:undertaker-registry", + "type": "static" + } + ], + "npm:unherit": [ + { + "source": "npm:unherit", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:unherit", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:unicode-match-property-ecmascript": [ + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + } + ], + "npm:unified@9.2.0": [ + { + "source": "npm:unified@9.2.0", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:is-buffer@2.0.4", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:is-plain-obj@2.1.0", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified@9.2.0", + "target": "npm:vfile", + "type": "static" + } + ], + "npm:unified": [ + { + "source": "npm:unified", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:vfile@2.3.0", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:x-is-string", + "type": "static" + } + ], + "npm:union-value": [ + { + "source": "npm:union-value", + "target": "npm:arr-union", + "type": "static" + }, + { + "source": "npm:union-value", + "target": "npm:get-value", + "type": "static" + }, + { + "source": "npm:union-value", + "target": "npm:is-extendable", + "type": "static" + }, + { + "source": "npm:union-value", + "target": "npm:set-value", + "type": "static" + } + ], + "npm:unique-filename": [ + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + } + ], + "npm:unique-filename@2.0.1": [ + { + "source": "npm:unique-filename@2.0.1", + "target": "npm:unique-slug@3.0.0", + "type": "static" + } + ], + "npm:unique-filename@3.0.0": [ + { + "source": "npm:unique-filename@3.0.0", + "target": "npm:unique-slug@4.0.0", + "type": "static" + } + ], + "npm:unique-slug": [ + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unique-slug@3.0.0": [ + { + "source": "npm:unique-slug@3.0.0", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unique-slug@4.0.0": [ + { + "source": "npm:unique-slug@4.0.0", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unique-stream": [ + { + "source": "npm:unique-stream", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:unique-stream", + "target": "npm:through2-filter", + "type": "static" + } + ], + "npm:unique-string": [ + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string", + "type": "static" + } + ], + "npm:unist-util-remove-position": [ + { + "source": "npm:unist-util-remove-position", + "target": "npm:unist-util-visit@1.4.1", + "type": "static" + } + ], + "npm:unist-util-remove-position@2.0.1": [ + { + "source": "npm:unist-util-remove-position@2.0.1", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:unist-util-remove": [ + { + "source": "npm:unist-util-remove", + "target": "npm:unist-util-is", + "type": "static" + } + ], + "npm:unist-util-stringify-position@2.0.2": [ + { + "source": "npm:unist-util-stringify-position@2.0.2", + "target": "npm:@types/unist", + "type": "static" + } + ], + "npm:unist-util-visit-parents@2.1.2": [ + { + "source": "npm:unist-util-visit-parents@2.1.2", + "target": "npm:unist-util-is@3.0.0", + "type": "static" + } + ], + "npm:unist-util-visit-parents": [ + { + "source": "npm:unist-util-visit-parents", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:unist-util-is", + "type": "static" + } + ], + "npm:unist-util-visit": [ + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + } + ], + "npm:unist-util-visit@1.4.1": [ + { + "source": "npm:unist-util-visit@1.4.1", + "target": "npm:unist-util-visit-parents@2.1.2", + "type": "static" + } + ], + "npm:universal-url": [ + { + "source": "npm:universal-url", + "target": "npm:hasurl", + "type": "static" + }, + { + "source": "npm:universal-url", + "target": "npm:whatwg-url@7.0.0", + "type": "static" + } + ], + "npm:unset-value": [ + { + "source": "npm:unset-value", + "target": "npm:has-value@0.3.1", + "type": "static" + }, + { + "source": "npm:unset-value", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:untildify@2.1.0": [ + { + "source": "npm:untildify@2.1.0", + "target": "npm:os-homedir", + "type": "static" + } + ], + "npm:unzipper": [ + { + "source": "npm:unzipper", + "target": "npm:big-integer", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:binary", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:bluebird@3.4.7", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:buffer-indexof-polyfill", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:duplexer2@0.1.4", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:fstream", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:listenercount", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:unzipper", + "target": "npm:setimmediate", + "type": "static" + } + ], + "npm:update-browserslist-db": [ + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:update-notifier": [ + { + "source": "npm:update-notifier", + "target": "npm:boxen@1.3.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:configstore", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:import-lazy@2.1.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-ci@1.2.1", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-installed-globally@0.1.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-npm", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:latest-version", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:semver-diff", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:xdg-basedir", + "type": "static" + } + ], + "npm:upper-case-first": [ + { + "source": "npm:upper-case-first", + "target": "npm:upper-case", + "type": "static" + } + ], + "npm:uri-js": [ + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:url-loader@4.1.1": [ + { + "source": "npm:url-loader@4.1.1", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:url-loader@4.1.1", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:url-loader@4.1.1", + "target": "npm:schema-utils@3.1.2", + "type": "static" + } + ], + "npm:url-parse-lax": [ + { + "source": "npm:url-parse-lax", + "target": "npm:prepend-http", + "type": "static" + } + ], + "npm:url-parse": [ + { + "source": "npm:url-parse", + "target": "npm:querystringify", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:url": [ + { + "source": "npm:url", + "target": "npm:punycode@1.3.2", + "type": "static" + }, + { + "source": "npm:url", + "target": "npm:querystring", + "type": "static" + } + ], + "npm:use-subscription": [ + { + "source": "npm:use-subscription", + "target": "npm:object-assign", + "type": "static" + } + ], + "npm:util.promisify": [ + { + "source": "npm:util.promisify", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:util.promisify", + "target": "npm:object.getownpropertydescriptors", + "type": "static" + } + ], + "npm:util@0.10.3": [ + { + "source": "npm:util@0.10.3", + "target": "npm:inherits@2.0.1", + "type": "static" + } + ], + "npm:util@0.11.1": [ + { + "source": "npm:util@0.11.1", + "target": "npm:inherits@2.0.3", + "type": "static" + } + ], + "npm:util": [ + { + "source": "npm:util", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:v8-to-istanbul": [ + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map", + "type": "static" + } + ], + "npm:v8flags": [ + { + "source": "npm:v8flags", + "target": "npm:user-home", + "type": "static" + } + ], + "npm:v8flags@3.1.3": [ + { + "source": "npm:v8flags@3.1.3", + "target": "npm:homedir-polyfill", + "type": "static" + } + ], + "npm:validate-npm-package-license": [ + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + } + ], + "npm:validate-npm-package-name": [ + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + } + ], + "npm:validate-npm-package-name@3.0.0": [ + { + "source": "npm:validate-npm-package-name@3.0.0", + "target": "npm:builtins@1.0.3", + "type": "static" + } + ], + "npm:verror": [ + { + "source": "npm:verror", + "target": "npm:assert-plus", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:verror", + "target": "npm:extsprintf", + "type": "static" + } + ], + "npm:vfile-message@1.1.1": [ + { + "source": "npm:vfile-message@1.1.1", + "target": "npm:unist-util-stringify-position", + "type": "static" + } + ], + "npm:vfile-message": [ + { + "source": "npm:vfile-message", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:vfile-message", + "target": "npm:unist-util-stringify-position@2.0.2", + "type": "static" + } + ], + "npm:vfile@2.3.0": [ + { + "source": "npm:vfile@2.3.0", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:vfile@2.3.0", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:vfile@2.3.0", + "target": "npm:unist-util-stringify-position", + "type": "static" + }, + { + "source": "npm:vfile@2.3.0", + "target": "npm:vfile-message@1.1.1", + "type": "static" + } + ], + "npm:vfile": [ + { + "source": "npm:vfile", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:is-buffer@2.0.4", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:replace-ext", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:unist-util-stringify-position@2.0.2", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:vfile-message", + "type": "static" + } + ], + "npm:vinyl-fs": [ + { + "source": "npm:vinyl-fs", + "target": "npm:fs-mkdirp-stream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:glob-stream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:is-valid-glob", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:lazystream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:lead", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:pumpify", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:remove-bom-buffer", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:remove-bom-stream", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:resolve-options", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:through2@2.0.5", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:to-through", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:value-or-function", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:vinyl", + "type": "static" + }, + { + "source": "npm:vinyl-fs", + "target": "npm:vinyl-sourcemap", + "type": "static" + } + ], + "npm:vinyl-sourcemap": [ + { + "source": "npm:vinyl-sourcemap", + "target": "npm:append-buffer", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:normalize-path@2.1.1", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:now-and-later", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:remove-bom-buffer", + "type": "static" + }, + { + "source": "npm:vinyl-sourcemap", + "target": "npm:vinyl", + "type": "static" + } + ], + "npm:vinyl-sourcemaps-apply": [ + { + "source": "npm:vinyl-sourcemaps-apply", + "target": "npm:source-map@0.5.7", + "type": "static" + } + ], + "npm:vinyl": [ + { + "source": "npm:vinyl", + "target": "npm:clone@2.1.2", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-buffer", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:clone-stats", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:cloneable-readable", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:remove-trailing-separator", + "type": "static" + }, + { + "source": "npm:vinyl", + "target": "npm:replace-ext", + "type": "static" + } + ], + "npm:vinyl@0.5.3": [ + { + "source": "npm:vinyl@0.5.3", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:vinyl@0.5.3", + "target": "npm:clone-stats@0.0.1", + "type": "static" + }, + { + "source": "npm:vinyl@0.5.3", + "target": "npm:replace-ext@0.0.1", + "type": "static" + } + ], + "npm:vrscreenshotdiff": [ + { + "source": "npm:vrscreenshotdiff", + "target": "npm:@octokit/rest@19.0.11", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:adal-node", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:azure-devops-node-api", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:azure-storage", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:azure-storage-simple", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:pixel-buffer-diff-folders", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:unzipper", + "type": "static" + }, + { + "source": "npm:vrscreenshotdiff", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:w3c-xmlserializer": [ + { + "source": "npm:w3c-xmlserializer", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:walker": [ + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + } + ], + "npm:watchpack-chokidar2": [ + { + "source": "npm:watchpack-chokidar2", + "target": "npm:chokidar@2.1.8", + "type": "static" + } + ], + "npm:watchpack@1.7.5": [ + { + "source": "npm:watchpack@1.7.5", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:watchpack@1.7.5", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:watchpack@1.7.5", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:watchpack@1.7.5", + "target": "npm:watchpack-chokidar2", + "type": "static" + } + ], + "npm:watchpack": [ + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:wbuf": [ + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], + "npm:wcwidth": [ + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + } + ], + "npm:webpack-bundle-analyzer": [ + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:commander@6.2.1", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:gzip-size@6.0.0", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:sirv", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:ws@7.5.6", + "type": "static" + } + ], + "npm:webpack-cli": [ + { + "source": "npm:webpack-cli", + "target": "npm:@discoveryjs/json-ext", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/configtest", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/info", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:@webpack-cli/serve", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:colorette@2.0.20", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:fastest-levenshtein", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:interpret@2.2.0", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:rechoir@0.7.0", + "type": "static" + }, + { + "source": "npm:webpack-cli", + "target": "npm:webpack-merge", + "type": "static" + } + ], + "npm:webpack-dev-middleware": [ + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mem", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs@3.4.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils@3.1.2", + "type": "static" + } + ], + "npm:webpack-dev-middleware@3.7.3": [ + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:memory-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@3.7.3", + "target": "npm:webpack-log", + "type": "static" + } + ], + "npm:webpack-dev-middleware@5.3.1": [ + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:colorette@2.0.20", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:memfs@3.4.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware@5.3.1", + "target": "npm:schema-utils@4.0.0", + "type": "static" + } + ], + "npm:webpack-dev-server": [ + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette@2.0.20", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:del", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:portfinder", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware@5.3.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws", + "type": "static" + } + ], + "npm:webpack-hot-middleware": [ + { + "source": "npm:webpack-hot-middleware", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:querystring", + "type": "static" + }, + { + "source": "npm:webpack-hot-middleware", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:webpack-log": [ + { + "source": "npm:webpack-log", + "target": "npm:ansi-colors@3.2.3", + "type": "static" + }, + { + "source": "npm:webpack-log", + "target": "npm:uuid@3.4.0", + "type": "static" + } + ], + "npm:webpack-merge": [ + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + } + ], + "npm:webpack-merge@4.2.2": [ + { + "source": "npm:webpack-merge@4.2.2", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:webpack-sources": [ + { + "source": "npm:webpack-sources", + "target": "npm:source-list-map", + "type": "static" + }, + { + "source": "npm:webpack-sources", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:webpack-virtual-modules": [ + { + "source": "npm:webpack-virtual-modules", + "target": "npm:debug@3.2.7", + "type": "static" + } + ], + "npm:webpack@4.46.0": [ + { + "source": "npm:webpack@4.46.0", + "target": "npm:@webassemblyjs/ast@1.9.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:@webassemblyjs/helper-module-context", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:@webassemblyjs/wasm-edit@1.9.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:@webassemblyjs/wasm-parser@1.9.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:acorn@6.4.1", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:ajv@6.12.6", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:enhanced-resolve@4.5.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:eslint-scope@4.0.3", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:json-parse-better-errors", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:loader-runner@2.4.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:loader-utils@1.4.2", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:memory-fs", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:micromatch@3.1.10", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:node-libs-browser", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:schema-utils@1.0.0", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:terser-webpack-plugin@1.4.5", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:watchpack@1.7.5", + "type": "static" + }, + { + "source": "npm:webpack@4.46.0", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:webpack": [ + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.1.2", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable@2.2.1", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources@3.2.3", + "type": "static" + } + ], + "npm:websocket-driver": [ + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + } + ], + "npm:whatwg-encoding": [ + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite", + "type": "static" + } + ], + "npm:whatwg-url": [ + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:whatwg-url@5.0.0": [ + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:tr46@0.0.3", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:webidl-conversions@3.0.1", + "type": "static" + } + ], + "npm:whatwg-url@7.0.0": [ + { + "source": "npm:whatwg-url@7.0.0", + "target": "npm:lodash.sortby", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.0.0", + "target": "npm:tr46@1.0.1", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.0.0", + "target": "npm:webidl-conversions@4.0.2", + "type": "static" + } + ], + "npm:which-boxed-primitive": [ + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:which-typed-array": [ + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:foreach", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:which": [ + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:which@2.0.2": [ + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:which@3.0.1": [ + { + "source": "npm:which@3.0.1", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:wide-align@1.1.3": [ + { + "source": "npm:wide-align@1.1.3", + "target": "npm:string-width@2.1.1", + "type": "static" + } + ], + "npm:wide-align": [ + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:widest-line@2.0.1": [ + { + "source": "npm:widest-line@2.0.1", + "target": "npm:string-width@2.1.1", + "type": "static" + } + ], + "npm:widest-line": [ + { + "source": "npm:widest-line", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:wordwrapjs": [ + { + "source": "npm:wordwrapjs", + "target": "npm:reduce-flatten", + "type": "static" + }, + { + "source": "npm:wordwrapjs", + "target": "npm:typical", + "type": "static" + } + ], + "npm:worker-farm": [ + { + "source": "npm:worker-farm", + "target": "npm:errno", + "type": "static" + } + ], + "npm:worker-rpc": [ + { + "source": "npm:worker-rpc", + "target": "npm:microevent.ts", + "type": "static" + } + ], + "npm:workspace-tools": [ + { + "source": "npm:workspace-tools", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:workspace-tools", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:workspace-tools@0.27.0": [ + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:workspace-tools@0.27.0", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:wrap-ansi-cjs": [ + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:wrap-ansi": [ + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:wrap-ansi@2.1.0": [ + { + "source": "npm:wrap-ansi@2.1.0", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@2.1.0", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + } + ], + "npm:wrap-ansi@5.1.0": [ + { + "source": "npm:wrap-ansi@5.1.0", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@5.1.0", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi@5.1.0", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + } + ], + "npm:wrap-ansi@6.2.0": [ + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:wrap-ansi@8.1.0": [ + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + } + ], + "npm:write-file-atomic@5.0.1": [ + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@5.0.1", + "target": "npm:signal-exit@4.0.2", + "type": "static" + } + ], + "npm:write-file-atomic": [ + { + "source": "npm:write-file-atomic", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:write-file-atomic@3.0.3": [ + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:typedarray-to-buffer", + "type": "static" + } + ], + "npm:write-file-atomic@4.0.2": [ + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:write-file-webpack-plugin": [ + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:filesize@3.6.1", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:moment", + "type": "static" + }, + { + "source": "npm:write-file-webpack-plugin", + "target": "npm:write-file-atomic", + "type": "static" + } + ], + "npm:write-json-file": [ + { + "source": "npm:write-json-file", + "target": "npm:detect-indent", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:write-file-atomic", + "type": "static" + } + ], + "npm:write-pkg": [ + { + "source": "npm:write-pkg", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:type-fest@0.4.1", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:write-json-file", + "type": "static" + } + ], + "npm:x-default-browser": [ + { + "source": "npm:x-default-browser", + "target": "npm:default-browser-id", + "type": "static" + } + ], + "npm:xml2js": [ + { + "source": "npm:xml2js", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:xml2js", + "target": "npm:xmlbuilder", + "type": "static" + } + ], + "npm:xml2js@0.2.8": [ + { + "source": "npm:xml2js@0.2.8", + "target": "npm:sax@0.5.8", + "type": "static" + } + ], + "npm:yargs-parser": [ + { + "source": "npm:yargs-parser", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser", + "target": "npm:decamelize", + "type": "static" + } + ], + "npm:yargs-parser@18.1.3": [ + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:decamelize", + "type": "static" + } + ], + "npm:yargs-parser@5.0.0": [ + { + "source": "npm:yargs-parser@5.0.0", + "target": "npm:camelcase@3.0.0", + "type": "static" + } + ], + "npm:yargs-unparser@1.6.0": [ + { + "source": "npm:yargs-unparser@1.6.0", + "target": "npm:flat@4.1.0", + "type": "static" + }, + { + "source": "npm:yargs-unparser@1.6.0", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:yargs-unparser@1.6.0", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:yargs-unparser": [ + { + "source": "npm:yargs-unparser", + "target": "npm:camelcase@6.2.1", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:decamelize@4.0.0", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:is-plain-obj@2.1.0", + "type": "static" + } + ], + "npm:yargs": [ + { + "source": "npm:yargs", + "target": "npm:cliui@5.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width@3.1.0", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:yargs@16.2.0": [ + { + "source": "npm:yargs@16.2.0", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:y18n@5.0.5", + "type": "static" + }, + { + "source": "npm:yargs@16.2.0", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + } + ], + "npm:yargs@15.4.1": [ + { + "source": "npm:yargs@15.4.1", + "target": "npm:cliui@6.0.0", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:yargs-parser@18.1.3", + "type": "static" + } + ], + "npm:yargs@17.7.2": [ + { + "source": "npm:yargs@17.7.2", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:y18n@5.0.5", + "type": "static" + }, + { + "source": "npm:yargs@17.7.2", + "target": "npm:yargs-parser@21.1.1", + "type": "static" + } + ], + "npm:yargs@7.1.0": [ + { + "source": "npm:yargs@7.1.0", + "target": "npm:camelcase@3.0.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:cliui@3.2.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:get-caller-file@1.0.3", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:os-locale", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:read-pkg-up@1.0.1", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:require-main-filename@1.0.1", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:string-width@1.0.2", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:which-module@1.0.0", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:y18n@3.2.2", + "type": "static" + }, + { + "source": "npm:yargs@7.1.0", + "target": "npm:yargs-parser@5.0.0", + "type": "static" + } + ], + "npm:yauzl": [ + { + "source": "npm:yauzl", + "target": "npm:buffer-crc32", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:fd-slicer", + "type": "static" + } + ], + "npm:z-schema": [ + { + "source": "npm:z-schema", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:commander", + "type": "static" + } + ] + }, + "version": "6.0" +} diff --git a/.nx/cache/run.json b/.nx/cache/run.json new file mode 100644 index 0000000000000..95e6a40cdd482 --- /dev/null +++ b/.nx/cache/run.json @@ -0,0 +1,43 @@ +{ + "run": { + "command": "cli run build:info", + "startTime": "2024-01-04T20:23:26.790Z", + "endTime": "2024-01-04T20:28:19.706Z", + "inner": false + }, + "tasks": [ + { + "taskId": "@fluentui/react-component-ref:build:info", + "target": "build:info", + "projectName": "@fluentui/react-component-ref", + "hash": "6676604441482990855", + "startTime": "2024-01-04T20:23:26.820Z", + "endTime": "2024-01-04T20:25:56.329Z", + "params": "", + "cacheStatus": "cache-miss", + "status": 0 + }, + { + "taskId": "@fluentui/react-bindings:build:info", + "target": "build:info", + "projectName": "@fluentui/react-bindings", + "hash": "1491914349901281437", + "startTime": "2024-01-04T20:25:56.330Z", + "endTime": "2024-01-04T20:26:37.923Z", + "params": "", + "cacheStatus": "cache-miss", + "status": 0 + }, + { + "taskId": "@fluentui/react-northstar:build:info", + "target": "build:info", + "projectName": "@fluentui/react-northstar", + "hash": "12681223089485204946", + "startTime": "2024-01-04T20:26:37.923Z", + "endTime": "2024-01-04T20:28:19.706Z", + "params": "", + "cacheStatus": "cache-miss", + "status": 0 + } + ] +} diff --git a/.nx/cache/terminalOutputs/12681223089485204946 b/.nx/cache/terminalOutputs/12681223089485204946 new file mode 100644 index 0000000000000..e87ca269dd84d --- /dev/null +++ b/.nx/cache/terminalOutputs/12681223089485204946 @@ -0,0 +1,8 @@ + +> @fluentui/react-northstar@0.66.4 build:info +> gulp build:component-info + +[12:27:27] Requiring external module @fluentui/scripts-babel/register +[12:28:15] Using gulpfile C:\git1\office-ui-fabric-react\packages\fluentui\react-northstar\gulpfile.ts +[12:28:15] Starting 'build:component-info'... +[12:28:19] Finished 'build:component-info' after 4.3 s diff --git a/.nx/cache/terminalOutputs/1491914349901281437 b/.nx/cache/terminalOutputs/1491914349901281437 new file mode 100644 index 0000000000000..ac25298b61542 --- /dev/null +++ b/.nx/cache/terminalOutputs/1491914349901281437 @@ -0,0 +1,8 @@ + +> @fluentui/react-bindings@0.66.4 build:info +> gulp build:component-info + +[12:26:09] Requiring external module @fluentui/scripts-babel/register +[12:26:36] Using gulpfile C:\git1\office-ui-fabric-react\packages\fluentui\react-bindings\gulpfile.ts +[12:26:36] Starting 'build:component-info'... +[12:26:36] Finished 'build:component-info' after 619 ms diff --git a/.nx/cache/terminalOutputs/6676604441482990855 b/.nx/cache/terminalOutputs/6676604441482990855 new file mode 100644 index 0000000000000..6ef4a65ac752e --- /dev/null +++ b/.nx/cache/terminalOutputs/6676604441482990855 @@ -0,0 +1,8 @@ + +> @fluentui/react-component-ref@0.66.4 build:info +> gulp build:component-info + +[12:24:18] Requiring external module @fluentui/scripts-babel/register +[12:25:55] Using gulpfile C:\git1\office-ui-fabric-react\packages\fluentui\react-component-ref\gulpfile.ts +[12:25:55] Starting 'build:component-info'... +[12:25:56] Finished 'build:component-info' after 179 ms diff --git a/packages/react-components/react-nav-preview/etc/react-nav-preview.api.md b/packages/react-components/react-nav-preview/etc/react-nav-preview.api.md index 3eccc2b49257a..c2521e9b53d69 100644 --- a/packages/react-components/react-nav-preview/etc/react-nav-preview.api.md +++ b/packages/react-components/react-nav-preview/etc/react-nav-preview.api.md @@ -14,6 +14,12 @@ import { SlotClassNames } from '@fluentui/react-utilities'; // @public export const Nav: ForwardRefComponent; +// @public +export const NavCategory: ForwardRefComponent; + +// @public (undocumented) +export const navCategoryClassNames: SlotClassNames; + // @public export const NavCategoryItem: ForwardRefComponent; @@ -36,6 +42,17 @@ export type NavCategoryItemState = ComponentState & Pick & {}; + +// @public (undocumented) +export type NavCategorySlots = { + root: Slot<'div'>; +}; + +// @public +export type NavCategoryState = ComponentState; + // @public (undocumented) export const navClassNames: SlotClassNames; @@ -90,6 +107,23 @@ export const NavSubItem: ForwardRefComponent; // @public (undocumented) export const navSubItemClassNames: SlotClassNames; +// @public +export const NavSubItemGroup: ForwardRefComponent; + +// @public (undocumented) +export const navSubItemGroupClassNames: SlotClassNames; + +// @public +export type NavSubItemGroupProps = ComponentProps & {}; + +// @public (undocumented) +export type NavSubItemGroupSlots = { + root: Slot<'div'>; +}; + +// @public +export type NavSubItemGroupState = ComponentState; + // @public export type NavSubItemProps = ComponentProps & {}; @@ -107,27 +141,48 @@ export type RegisterNavItemEventHandler = (data: NavItemRegisterData) => void; // @public (undocumented) export const renderNav_unstable: (state: NavState, contextValues: NavContextValues) => JSX.Element; +// @public +export const renderNavCategory_unstable: (state: NavCategoryState) => JSX.Element; + // @public export const renderNavCategoryItem_unstable: (state: NavCategoryItemState) => JSX.Element; // @public export const renderNavSubItem_unstable: (state: NavSubItemState) => JSX.Element; +// @public +export const renderNavSubItemGroup_unstable: (state: NavSubItemGroupState) => JSX.Element; + // @public export const useNav_unstable: (props: NavProps, ref: React_2.Ref) => NavState; +// @public +export const useNavCategory_unstable: (props: NavCategoryProps, ref: React_2.Ref) => NavCategoryState; + // @public export const useNavCategoryItem_unstable: (props: NavCategoryItemProps, ref: React_2.Ref) => NavCategoryItemState; // @public export const useNavCategoryItemStyles_unstable: (state: NavCategoryItemState) => NavCategoryItemState; +// @public +export const useNavCategoryStyles_unstable: (state: NavCategoryState) => NavCategoryState; + // @public (undocumented) export const useNavContext_unstable: () => NavContextValue; +// @public +export const useNavStyles_unstable: (state: NavState) => NavState; + // @public export const useNavSubItem_unstable: (props: NavSubItemProps, ref: React_2.Ref) => NavSubItemState; +// @public +export const useNavSubItemGroup_unstable: (props: NavSubItemGroupProps, ref: React_2.Ref) => NavSubItemGroupState; + +// @public +export const useNavSubItemGroupStyles_unstable: (state: NavSubItemGroupState) => NavSubItemGroupState; + // @public export const useNavSubItemStyles_unstable: (state: NavSubItemState) => NavSubItemState; From be7cfea86dd627db9f20621b44c7594aa513156c Mon Sep 17 00:00:00 2001 From: Mason Tejera Date: Thu, 4 Jan 2024 15:13:40 -0800 Subject: [PATCH 4/5] remove nx cache --- .nx/cache/file-map.json | 73928 ------- .nx/cache/lockfile.hash | 1 - .../project-graph.html | 35 - .../static/3rdpartylicenses.txt | 665 - .../static/environment.js | 148884 --------------- .../static/favicon.ico | Bin 15086 -> 0 bytes .../nx-console-project-graph/static/main.js | 43344 ----- .../static/polyfills.js | 6951 - .../static/runtime.js | 75 - .../static/styles.css | 1233 - .../nx-console-project-graph/static/styles.js | 9 - .nx/cache/parsed-lock-file.json | 86639 --------- .nx/cache/project-graph.json | 101797 ---------- .nx/cache/run.json | 43 - .../terminalOutputs/12681223089485204946 | 8 - .nx/cache/terminalOutputs/1491914349901281437 | 8 - .nx/cache/terminalOutputs/6676604441482990855 | 8 - 17 files changed, 463628 deletions(-) delete mode 100644 .nx/cache/file-map.json delete mode 100644 .nx/cache/lockfile.hash delete mode 100644 .nx/cache/nx-console-project-graph/project-graph.html delete mode 100644 .nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt delete mode 100644 .nx/cache/nx-console-project-graph/static/environment.js delete mode 100644 .nx/cache/nx-console-project-graph/static/favicon.ico delete mode 100644 .nx/cache/nx-console-project-graph/static/main.js delete mode 100644 .nx/cache/nx-console-project-graph/static/polyfills.js delete mode 100644 .nx/cache/nx-console-project-graph/static/runtime.js delete mode 100644 .nx/cache/nx-console-project-graph/static/styles.css delete mode 100644 .nx/cache/nx-console-project-graph/static/styles.js delete mode 100644 .nx/cache/parsed-lock-file.json delete mode 100644 .nx/cache/project-graph.json delete mode 100644 .nx/cache/run.json delete mode 100644 .nx/cache/terminalOutputs/12681223089485204946 delete mode 100644 .nx/cache/terminalOutputs/1491914349901281437 delete mode 100644 .nx/cache/terminalOutputs/6676604441482990855 diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json deleted file mode 100644 index ec874d0abad9f..0000000000000 --- a/.nx/cache/file-map.json +++ /dev/null @@ -1,73928 +0,0 @@ -{ - "version": "6.0", - "nxVersion": "16.10.0", - "deps": { - "copy-to-clipboard": "3.3.1", - "@actions/core": "1.9.1", - "@actions/github": "5.0.3", - "@babel/core": "7.23.2", - "@babel/generator": "7.23.0", - "@babel/parser": "7.23.0", - "@babel/plugin-proposal-class-properties": "7.18.6", - "@babel/plugin-proposal-decorators": "7.23.2", - "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6", - "@babel/plugin-proposal-optional-chaining": "7.21.0", - "@babel/plugin-syntax-dynamic-import": "7.8.3", - "@babel/plugin-syntax-object-rest-spread": "7.8.3", - "@babel/plugin-transform-runtime": "7.23.2", - "@babel/preset-env": "7.23.2", - "@babel/preset-react": "7.22.15", - "@babel/preset-typescript": "7.23.2", - "@babel/register": "7.22.15", - "@babel/standalone": "7.23.2", - "@babel/traverse": "7.23.2", - "@babel/types": "7.23.0", - "@cactuslab/usepubsub": "^1.0.2", - "@ctrl/tinycolor": "3.3.4", - "@cypress/react": "5.12.4", - "@cypress/webpack-dev-server": "1.8.3", - "@fluentui/react-icons": "^2.0.217", - "@griffel/babel-preset": "1.4.20", - "@griffel/eslint-plugin": "^1.2.0", - "@griffel/jest-serializer": "1.1.16", - "@griffel/react": "^1.5.14", - "@griffel/shadow-dom": "0.1.5", - "@griffel/webpack-extraction-plugin": "0.3.18", - "@griffel/webpack-loader": "2.1.20", - "@jest/reporters": "29.7.0", - "@mdx-js/loader": "1.6.22", - "@microsoft/api-extractor": "7.31.2", - "@microsoft/api-extractor-model": "7.24.2", - "@microsoft/eslint-plugin-sdl": "0.1.9", - "@microsoft/load-themed-styles": "1.10.26", - "@microsoft/loader-load-themed-styles": "2.0.17", - "@microsoft/tsdoc": "0.14.1", - "@nx/devkit": "16.10.0", - "@nx/jest": "16.10.0", - "@nx/js": "16.10.0", - "@nx/node": "16.10.0", - "@nx/plugin": "16.10.0", - "@nx/workspace": "16.10.0", - "@octokit/rest": "18.12.0", - "@phenomnomnominal/tsquery": "6.1.2", - "@storybook/addon-a11y": "6.5.15", - "@storybook/addon-actions": "6.5.15", - "@storybook/addon-docs": "6.5.15", - "@storybook/addon-essentials": "6.5.15", - "@storybook/addon-knobs": "6.4.0", - "@storybook/addon-links": "6.5.15", - "@storybook/addons": "6.5.15", - "@storybook/api": "6.5.15", - "@storybook/builder-webpack5": "6.5.15", - "@storybook/channels": "6.5.15", - "@storybook/client-api": "6.5.15", - "@storybook/components": "6.5.15", - "@storybook/core": "6.5.15", - "@storybook/core-events": "6.5.15", - "@storybook/manager-webpack5": "6.5.15", - "@storybook/react": "6.5.15", - "@storybook/theming": "6.5.15", - "@swc/cli": "0.1.62", - "@swc/core": "1.3.87", - "@swc/helpers": "0.5.1", - "@testing-library/dom": "8.11.3", - "@testing-library/jest-dom": "5.16.5", - "@testing-library/react": "12.1.2", - "@testing-library/react-hooks": "7.0.2", - "@testing-library/user-event": "13.5.0", - "@tsconfig/node14": "1.0.3", - "@types/babel__core": "7.20.3", - "@types/babel__helper-plugin-utils": "7.10.2", - "@types/babel__register": "7.17.2", - "@types/babel__traverse": "7.20.3", - "@types/chrome-remote-interface": "0.30.0", - "@types/circular-dependency-plugin": "5.0.5", - "@types/copy-webpack-plugin": "6.4.0", - "@types/dedent": "0.7.0", - "@types/doctrine": "0.0.5", - "@types/ejs": "3.1.2", - "@types/enzyme": "3.10.7", - "@types/eslint": "7.2.13", - "@types/express": "4.17.15", - "@types/fs-extra": "8.0.1", - "@types/glob": "7.1.1", - "@types/graphviz": "0.0.34", - "@types/gulp": "4.0.9", - "@types/gulp-babel": "6.1.32", - "@types/gulp-cache": "0.4.5", - "@types/gulp-remember": "0.0.31", - "@types/gulp-sourcemaps": "0.0.35", - "@types/gulp-util": "3.0.36", - "@types/jest": "29.5.5", - "@types/jest-axe": "3.5.5", - "@types/jju": "1.4.1", - "@types/json-schema": "^7.0.8", - "@types/lerna-alias": "3.0.0", - "@types/loader-utils": "2.0.3", - "@types/lodash": "4.14.182", - "@types/markdown-table": "2.0.0", - "@types/micromatch": "4.0.2", - "@types/node": "18.18.6", - "@types/prettier": "2.7.2", - "@types/progress": "2.0.5", - "@types/prompts": "2.4.1", - "@types/react": "17.0.44", - "@types/react-dom": "17.0.15", - "@types/react-is": "17.0.3", - "@types/react-test-renderer": "17.0.2", - "@types/react-transition-group": "4.4.6", - "@types/request-promise-native": "1.0.18", - "@types/scheduler": "0.16.2", - "@types/semver": "^6.2.0", - "@types/tmp": "0.2.0", - "@types/vinyl": "2.0.7", - "@types/webpack-bundle-analyzer": "4.4.3", - "@types/webpack-dev-middleware": "4.1.0", - "@types/webpack-env": "1.16.0", - "@types/webpack-hot-middleware": "2.25.6", - "@types/yargs": "13.0.11", - "@types/yargs-unparser": "2.0.1", - "@typescript-eslint/eslint-plugin": "4.22.0", - "@typescript-eslint/experimental-utils": "4.22.0", - "@typescript-eslint/parser": "4.22.0", - "@wojtekmaj/enzyme-adapter-react-17": "0.6.7", - "ajv": "8.4.0", - "autoprefixer": "10.2.1", - "babel-jest": "29.7.0", - "babel-loader": "8.3.0", - "babel-plugin-annotate-pure-calls": "0.4.0", - "babel-plugin-annotate-pure-imports": "1.0.0-1", - "babel-plugin-iife-wrap-react-components": "1.0.0-5", - "babel-plugin-lodash": "3.3.4", - "babel-plugin-module-resolver": "4.1.0", - "babel-plugin-tester": "10.1.0", - "beachball": "2.31.0", - "chalk": "4.1.0", - "chrome-remote-interface": "0.28.2", - "ci-info": "3.8.0", - "circular-dependency-plugin": "5.2.2", - "clean-css": "4.2.3", - "clean-webpack-plugin": "4.0.0", - "connect-history-api-fallback": "1.6.0", - "copy-webpack-plugin": "8.1.0", - "cross-env": "^5.1.4", - "css-loader": "5.0.1", - "cypress": "10.6.0", - "cypress-real-events": "1.7.1", - "cypress-storybook": "0.5.1", - "danger": "^11.0.0", - "dedent": "0.7.0", - "del": "6.0.0", - "doctoc": "2.0.1", - "doctrine": "3.0.0", - "dotparser": "1.1.1", - "ejs": "3.1.9", - "enquirer": "2.3.6", - "enzyme": "3.10.0", - "enzyme-to-json": "3.6.2", - "esbuild": "0.14.51", - "esbuild-loader": "3.2.0", - "eslint": "7.25.0", - "eslint-config-airbnb": "18.2.1", - "eslint-config-prettier": "8.3.0", - "eslint-import-resolver-typescript": "2.5.0", - "eslint-plugin-deprecation": "1.2.1", - "eslint-plugin-es": "4.1.0", - "eslint-plugin-import": "2.25.4", - "eslint-plugin-jest": "23.20.0", - "eslint-plugin-jsdoc": "39.9.1", - "eslint-plugin-jsx-a11y": "6.4.1", - "eslint-plugin-react": "7.26.0", - "eslint-plugin-react-hooks": "4.2.0", - "express": "4.17.3", - "extract-comments": "1.1.0", - "file-loader": "6.2.0", - "find-free-port": "2.0.0", - "flamegrill": "0.2.0", - "fork-ts-checker-webpack-plugin": "6.1.0", - "fs-extra": "8.1.0", - "geckodriver": "3.0.2", - "glob": "7.2.0", - "graphviz": "0.0.9", - "gulp": "4.0.2", - "gulp-babel": "8.0.0", - "gulp-cache": "1.1.3", - "gulp-remember": "1.0.1", - "gulp-sourcemaps": "2.6.5", - "gulp-util": "3.0.8", - "html-webpack-plugin": "5.1.0", - "ignore-not-found-export-webpack-plugin": "1.0.2", - "imports-loader": "1.2.0", - "jest": "29.7.0", - "jest-axe": "6.0.1", - "jest-cli": "29.7.0", - "jest-environment-jsdom": "29.7.0", - "jest-environment-node-single-context": "29.1.0", - "jest-snapshot": "29.7.0", - "jest-watch-typeahead": "2.2.2", - "jju": "1.4.0", - "json-schema": "0.4.0", - "json-stable-stringify-without-jsonify": "1.0.1", - "jsonc-eslint-parser": "2.3.0", - "just-scripts": "1.8.2", - "lage": "1.8.8", - "lerna": "7.1.3", - "lerna-alias": "3.0.3-0", - "license-webpack-plugin": "2.3.10", - "lint-staged": "10.2.10", - "loader-utils": "2.0.4", - "lodash": "4.17.21", - "markdown-table": "2.0.0", - "memfs": "3.2.2", - "mini-css-extract-plugin": "2.6.1", - "monosize": "0.1.0", - "monosize-storage-azure": "0.0.3", - "node-plop": "0.25.0", - "node-polyfill-webpack-plugin": "1.0.2", - "nx": "16.10.0", - "p-queue": "6.6.2", - "parallel-webpack": "2.6.0", - "parse-diff": "0.7.1", - "path-browserify": "1.0.1", - "plop": "2.6.0", - "portfinder": "1.0.28", - "postcss": "8.3.5", - "postcss-loader": "4.1.0", - "postcss-modules": "4.1.3", - "prettier": "2.8.8", - "progress": "2.0.3", - "prompts": "2.4.2", - "puppeteer": "19.6.0", - "raw-loader": "4.0.2", - "react": "17.0.2", - "react-app-polyfill": "2.0.0", - "react-dom": "17.0.2", - "react-hot-loader": "4.13.0", - "react-is": "17.0.2", - "react-shadow": "20.3.0", - "react-test-renderer": "17.0.2", - "react-vis": "1.11.7", - "read-pkg-up": "7.0.1", - "replace-in-file": "6.1.0", - "request-promise-native": "1.0.9", - "resolve": "1.22.0", - "riceburn": "1.3.1", - "rollup": "2.45.2", - "rollup-plugin-commonjs": "10.1.0", - "rollup-plugin-filesize": "8.0.2", - "rollup-plugin-node-resolve": "5.2.0", - "rollup-plugin-terser": "5.3.1", - "rollup-plugin-transform-tagged-template": "0.0.3", - "rollup-plugin-typescript2": "0.27.1", - "sass": "1.49.11", - "sass-loader": "12.4.0", - "satisfied": "^1.1.1", - "scheduler": "0.20.2", - "schema-utils": "3.1.1", - "semver": "^6.2.0", - "source-map-loader": "4.0.0", - "storybook-addon-performance": "0.16.1", - "storybook-addon-swc": "1.2.0", - "storywright": "0.0.26-beta.1", - "strip-ansi": "6.0.0", - "style-loader": "2.0.0", - "swc-loader": "0.2.3", - "swc-plugin-de-indent-template-literal": "1.0.0", - "syncpack": "10.6.1", - "tachometer": "0.7.0", - "terser": "5.17.4", - "terser-webpack-plugin": "5.3.9", - "through2": "4.0.2", - "tmp": "0.2.1", - "ts-jest": "29.1.1", - "ts-loader": "9.3.1", - "ts-node": "10.9.1", - "tsconfig-paths": "4.1.0", - "tsconfig-paths-webpack-plugin": "4.0.0", - "tslib": "2.5.0", - "typescript": "4.7.4", - "vinyl": "2.2.0", - "vrscreenshotdiff": "0.0.17", - "webpack": "5.83.1", - "webpack-bundle-analyzer": "4.4.2", - "webpack-cli": "4.10.0", - "webpack-dev-middleware": "4.2.0", - "webpack-dev-server": "4.7.4", - "webpack-hot-middleware": "2.25.1", - "webpack-merge": "5.7.3", - "workspace-tools": "0.29.1", - "yargs": "13.3.2", - "yargs-parser": "13.1.2", - "yargs-unparser": "2.0.0" - }, - "pathMappings": { - "@fluentui/babel-preset-global-context": ["packages/react-components/babel-preset-global-context/src/index.ts"], - "@fluentui/babel-preset-storybook-full-source": [ - "packages/react-components/babel-preset-storybook-full-source/src/index.ts" - ], - "@fluentui/global-context": ["packages/react-components/global-context/src/index.ts"], - "@fluentui/keyboard-key": ["packages/keyboard-key/src/index.ts"], - "@fluentui/keyboard-keys": ["packages/react-components/keyboard-keys/src/index.ts"], - "@fluentui/priority-overflow": ["packages/react-components/priority-overflow/src/index.ts"], - "@fluentui/react-accordion": ["packages/react-components/react-accordion/src/index.ts"], - "@fluentui/react-alert": ["packages/react-components/react-alert/src/index.ts"], - "@fluentui/react-aria": ["packages/react-components/react-aria/src/index.ts"], - "@fluentui/react-avatar": ["packages/react-components/react-avatar/src/index.ts"], - "@fluentui/react-badge": ["packages/react-components/react-badge/src/index.ts"], - "@fluentui/react-breadcrumb": ["packages/react-components/react-breadcrumb/src/index.ts"], - "@fluentui/react-button": ["packages/react-components/react-button/src/index.ts"], - "@fluentui/react-calendar-compat": ["packages/react-components/react-calendar-compat/src/index.ts"], - "@fluentui/react-card": ["packages/react-components/react-card/src/index.ts"], - "@fluentui/react-checkbox": ["packages/react-components/react-checkbox/src/index.ts"], - "@fluentui/react-colorpicker-compat": ["packages/react-components/react-colorpicker-compat/src/index.ts"], - "@fluentui/react-combobox": ["packages/react-components/react-combobox/src/index.ts"], - "@fluentui/react-components": ["packages/react-components/react-components/src/index.ts"], - "@fluentui/react-components/unstable": ["packages/react-components/react-components/src/unstable/index.ts"], - "@fluentui/react-conformance": ["packages/react-conformance/src/index.ts"], - "@fluentui/react-conformance-griffel": ["packages/react-components/react-conformance-griffel/src/index.ts"], - "@fluentui/react-context-selector": ["packages/react-components/react-context-selector/src/index.ts"], - "@fluentui/react-datepicker-compat": ["packages/react-components/react-datepicker-compat/src/index.ts"], - "@fluentui/react-dialog": ["packages/react-components/react-dialog/src/index.ts"], - "@fluentui/react-divider": ["packages/react-components/react-divider/src/index.ts"], - "@fluentui/react-drawer": ["packages/react-components/react-drawer/src/index.ts"], - "@fluentui/react-field": ["packages/react-components/react-field/src/index.ts"], - "@fluentui/react-focus-management": ["packages/react-focus-management/src/index.ts"], - "@fluentui/react-image": ["packages/react-components/react-image/src/index.ts"], - "@fluentui/react-infobutton": ["packages/react-components/react-infobutton/src/index.ts"], - "@fluentui/react-infolabel": ["packages/react-components/react-infolabel/src/index.ts"], - "@fluentui/react-input": ["packages/react-components/react-input/src/index.ts"], - "@fluentui/react-jsx-runtime": ["packages/react-components/react-jsx-runtime/src/index.ts"], - "@fluentui/react-jsx-runtime/jsx-dev-runtime": [ - "packages/react-components/react-jsx-runtime/src/jsx-dev-runtime.ts" - ], - "@fluentui/react-jsx-runtime/jsx-runtime": ["packages/react-components/react-jsx-runtime/src/jsx-runtime.ts"], - "@fluentui/react-label": ["packages/react-components/react-label/src/index.ts"], - "@fluentui/react-link": ["packages/react-components/react-link/src/index.ts"], - "@fluentui/react-list-preview": ["packages/react-components/react-list-preview/src/index.ts"], - "@fluentui/react-menu": ["packages/react-components/react-menu/src/index.ts"], - "@fluentui/react-message-bar": ["packages/react-components/react-message-bar/src/index.ts"], - "@fluentui/react-migration-v0-v9": ["packages/react-components/react-migration-v0-v9/src/index.ts"], - "@fluentui/react-migration-v8-v9": ["packages/react-components/react-migration-v8-v9/src/index.ts"], - "@fluentui/react-motion-preview": ["packages/react-components/react-motion-preview/src/index.ts"], - "@fluentui/react-motions-preview": ["packages/react-components/react-motions-preview/src/index.ts"], - "@fluentui/react-nav-preview": ["packages/react-components/react-nav-preview/src/index.ts"], - "@fluentui/react-overflow": ["packages/react-components/react-overflow/src/index.ts"], - "@fluentui/react-persona": ["packages/react-components/react-persona/src/index.ts"], - "@fluentui/react-popover": ["packages/react-components/react-popover/src/index.ts"], - "@fluentui/react-portal": ["packages/react-components/react-portal/src/index.ts"], - "@fluentui/react-portal-compat": ["packages/react-components/react-portal-compat/src/index.ts"], - "@fluentui/react-portal-compat-context": ["packages/react-components/react-portal-compat-context/src/index.ts"], - "@fluentui/react-positioning": ["packages/react-components/react-positioning/src/index.ts"], - "@fluentui/react-progress": ["packages/react-components/react-progress/src/index.ts"], - "@fluentui/react-provider": ["packages/react-components/react-provider/src/index.ts"], - "@fluentui/react-radio": ["packages/react-components/react-radio/src/index.ts"], - "@fluentui/react-rating-preview": ["packages/react-components/react-rating-preview/src/index.ts"], - "@fluentui/react-search-preview": ["packages/react-components/react-search-preview/src/index.ts"], - "@fluentui/react-select": ["packages/react-components/react-select/src/index.ts"], - "@fluentui/react-shared-contexts": ["packages/react-components/react-shared-contexts/src/index.ts"], - "@fluentui/react-skeleton": ["packages/react-components/react-skeleton/src/index.ts"], - "@fluentui/react-slider": ["packages/react-components/react-slider/src/index.ts"], - "@fluentui/react-spinbutton": ["packages/react-components/react-spinbutton/src/index.ts"], - "@fluentui/react-spinner": ["packages/react-components/react-spinner/src/index.ts"], - "@fluentui/react-storybook-addon": ["packages/react-components/react-storybook-addon/src/index.ts"], - "@fluentui/react-storybook-addon-export-to-sandbox": [ - "packages/react-components/react-storybook-addon-export-to-sandbox/src/index.ts" - ], - "@fluentui/react-swatch-picker-preview": ["packages/react-components/react-swatch-picker-preview/src/index.ts"], - "@fluentui/react-switch": ["packages/react-components/react-switch/src/index.ts"], - "@fluentui/react-table": ["packages/react-components/react-table/src/index.ts"], - "@fluentui/react-tabs": ["packages/react-components/react-tabs/src/index.ts"], - "@fluentui/react-tabster": ["packages/react-components/react-tabster/src/index.ts"], - "@fluentui/react-tags": ["packages/react-components/react-tags/src/index.ts"], - "@fluentui/react-teaching-popover-preview": [ - "packages/react-components/react-teaching-popover-preview/src/index.ts" - ], - "@fluentui/react-text": ["packages/react-components/react-text/src/index.ts"], - "@fluentui/react-textarea": ["packages/react-components/react-textarea/src/index.ts"], - "@fluentui/react-theme": ["packages/react-components/react-theme/src/index.ts"], - "@fluentui/react-theme-sass": ["packages/react-components/react-theme-sass/src/index.ts"], - "@fluentui/react-timepicker-compat": ["packages/react-components/react-timepicker-compat/src/index.ts"], - "@fluentui/react-timepicker-compat-preview": [ - "packages/react-components/react-timepicker-compat-preview/src/index.ts" - ], - "@fluentui/react-toast": ["packages/react-components/react-toast/src/index.ts"], - "@fluentui/react-toolbar": ["packages/react-components/react-toolbar/src/index.ts"], - "@fluentui/react-tooltip": ["packages/react-components/react-tooltip/src/index.ts"], - "@fluentui/react-tree": ["packages/react-components/react-tree/src/index.ts"], - "@fluentui/react-utilities": ["packages/react-components/react-utilities/src/index.ts"], - "@fluentui/react-virtualizer": ["packages/react-components/react-virtualizer/src/index.ts"], - "@fluentui/theme-designer": ["packages/react-components/theme-designer/src/index.ts"], - "@fluentui/tokens": ["packages/tokens/src/index.ts"], - "@fluentui/workspace-plugin": ["tools/workspace-plugin/src/index.ts"] - }, - "nxJsonPlugins": [], - "pluginsConfig": { - "@nx/js": { - "analyzeSourceFiles": false - } - }, - "fileMap": { - "projectFileMap": { - "@fluentui/cra-template": [ - { - "file": "packages/cra-template/.eslintrc.json", - "hash": "13251576554014608349" - }, - { - "file": "packages/cra-template/CHANGELOG.json", - "hash": "1129702337645733471" - }, - { - "file": "packages/cra-template/CHANGELOG.md", - "hash": "5106358608425566554" - }, - { - "file": "packages/cra-template/LICENSE", - "hash": "1636749174329294352" - }, - { - "file": "packages/cra-template/README.md", - "hash": "6730490654183036004" - }, - { - "file": "packages/cra-template/package.json", - "hash": "3922138108394395761", - "deps": ["@fluentui/react", "@fluentui/scripts-projects-test"] - }, - { - "file": "packages/cra-template/project.json", - "hash": "17234406872818167309" - }, - { - "file": "packages/cra-template/scripts/test.ts", - "hash": "290681558778133128" - }, - { - "file": "packages/cra-template/template/LICENSE", - "hash": "8375661779484895636" - }, - { - "file": "packages/cra-template/template/README.md", - "hash": "6288567372830560670" - }, - { - "file": "packages/cra-template/template/gitignore", - "hash": "1381922197083867790" - }, - { - "file": "packages/cra-template/template/public/favicon.ico", - "hash": "2949791817221603359" - }, - { - "file": "packages/cra-template/template/public/index.html", - "hash": "6909331186721011181" - }, - { - "file": "packages/cra-template/template/public/manifest.json", - "hash": "14151889650470291185" - }, - { - "file": "packages/cra-template/template/src/App.css", - "hash": "16457583553712152214" - }, - { - "file": "packages/cra-template/template/src/App.test.tsx", - "hash": "1523758530738999894" - }, - { - "file": "packages/cra-template/template/src/App.tsx", - "hash": "17897325894100752891" - }, - { - "file": "packages/cra-template/template/src/index.css", - "hash": "11080820211780778568" - }, - { - "file": "packages/cra-template/template/src/index.tsx", - "hash": "272227226428571209" - }, - { - "file": "packages/cra-template/template/src/logo.svg", - "hash": "6417502148039611605" - }, - { - "file": "packages/cra-template/template/src/react-app-env.d.ts", - "hash": "4668673524524593686" - }, - { - "file": "packages/cra-template/template/src/reportWebVitals.ts", - "hash": "10503513403266688488" - }, - { - "file": "packages/cra-template/template/src/setupTests.ts", - "hash": "56515321623462775" - }, - { - "file": "packages/cra-template/template.json", - "hash": "860757225757618039" - }, - { - "file": "packages/cra-template/tsconfig.json", - "hash": "4217186867484741619" - } - ], - "@fluentui/react-tabs": [ - { - "file": "packages/react-components/react-tabs/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-tabs/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-tabs/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-tabs/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-tabs/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-tabs/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-tabs/CHANGELOG.json", - "hash": "16653990280561800435" - }, - { - "file": "packages/react-components/react-tabs/CHANGELOG.md", - "hash": "5147253273970416832" - }, - { - "file": "packages/react-components/react-tabs/LICENSE", - "hash": "4740908718758378364" - }, - { - "file": "packages/react-components/react-tabs/README.md", - "hash": "18127596344126903308" - }, - { - "file": "packages/react-components/react-tabs/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-tabs/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-tabs/docs/MIGRATION.md", - "hash": "15527478377883104682" - }, - { - "file": "packages/react-components/react-tabs/docs/Spec.md", - "hash": "5069091585937724395" - }, - { - "file": "packages/react-components/react-tabs/etc/react-tabs.api.md", - "hash": "7006711000172869136" - }, - { - "file": "packages/react-components/react-tabs/jest.config.js", - "hash": "14708845933115558170" - }, - { - "file": "packages/react-components/react-tabs/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-tabs/package.json", - "hash": "2435507149752619818", - "deps": [ - "@fluentui/react-context-selector", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-tabs/project.json", - "hash": "2488794906819146532" - }, - { - "file": "packages/react-components/react-tabs/src/Tab.ts", - "hash": "18052715041612667837" - }, - { - "file": "packages/react-components/react-tabs/src/TabList.ts", - "hash": "14259566883412751833" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/Tab.test.tsx", - "hash": "5284346870856331647" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/Tab.tsx", - "hash": "14262278411334138962" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/Tab.types.ts", - "hash": "13892973305630266674" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/__snapshots__/Tab.test.tsx.snap", - "hash": "16130306086249008716" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/index.ts", - "hash": "571853373705559422" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/renderTab.tsx", - "hash": "438513960010848710" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/useTab.ts", - "hash": "17930474082868536927" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/useTabAnimatedIndicator.styles.ts", - "hash": "17878737750085263788" - }, - { - "file": "packages/react-components/react-tabs/src/components/Tab/useTabStyles.styles.ts", - "hash": "3339130946495387865" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/TabList.test.tsx", - "hash": "248552595994159964" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/TabList.tsx", - "hash": "16824515058622491938" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/TabList.types.ts", - "hash": "15050565246393575960" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/TabListContext.ts", - "hash": "3869552624891089499" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/__snapshots__/TabList.test.tsx.snap", - "hash": "17408894838225022682" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/index.ts", - "hash": "14418839090107905003" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/renderTabList.tsx", - "hash": "13702244115276528829" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/useTabList.ts", - "hash": "11356167478206479845" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/useTabListContextValues.tsx", - "hash": "5865239856627346423" - }, - { - "file": "packages/react-components/react-tabs/src/components/TabList/useTabListStyles.styles.ts", - "hash": "12502061653707237914" - }, - { - "file": "packages/react-components/react-tabs/src/index.ts", - "hash": "4303965408378135432" - }, - { - "file": "packages/react-components/react-tabs/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListAppearance.stories.tsx", - "hash": "1756544703328115970" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListBestPractices.md", - "hash": "9690510840193383523" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListDefault.stories.tsx", - "hash": "6373688234211709605" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListDescription.md", - "hash": "9843865439273724282" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListDisabled.stories.tsx", - "hash": "1181981537502838116" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListHorizontal.stories.tsx", - "hash": "1364604632286623277" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListIconOnly.stories.tsx", - "hash": "13443109350217072013" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListSelectTabOnFocus.stories.tsx", - "hash": "10089458872641528139" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListSizeLarge.stories.tsx", - "hash": "9903831177196541741" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListSizeMedium.stories.tsx", - "hash": "12348057756948710175" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListSizeSmall.stories.tsx", - "hash": "130845448440742280" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListVertical.stories.tsx", - "hash": "9914209083956496614" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListWithIcon.stories.tsx", - "hash": "9957205148378025404" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListWithOverflow.stories.tsx", - "hash": "17612162312056098804" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/TabListWithPanels.stories.tsx", - "hash": "4021389843633563591" - }, - { - "file": "packages/react-components/react-tabs/stories/Tabs/index.stories.tsx", - "hash": "1465033720456171245" - }, - { - "file": "packages/react-components/react-tabs/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-tabs/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-tabs/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-utilities": [ - { - "file": "packages/react-components/react-utilities/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-utilities/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-utilities/.swcrc", - "hash": "471348148265161299" - }, - { - "file": "packages/react-components/react-utilities/CHANGELOG.json", - "hash": "12606149671536690059" - }, - { - "file": "packages/react-components/react-utilities/CHANGELOG.md", - "hash": "5718490295303643193" - }, - { - "file": "packages/react-components/react-utilities/LICENSE", - "hash": "4548592527434132508" - }, - { - "file": "packages/react-components/react-utilities/README.md", - "hash": "13947731880378270631" - }, - { - "file": "packages/react-components/react-utilities/bundle-size/SSRProvider.fixture.js", - "hash": "2639532017254723484" - }, - { - "file": "packages/react-components/react-utilities/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-utilities/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-utilities/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-utilities/etc/react-utilities.api.md", - "hash": "841069789972448649" - }, - { - "file": "packages/react-components/react-utilities/jest.config.js", - "hash": "13468661421719128629" - }, - { - "file": "packages/react-components/react-utilities/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-utilities/package.json", - "hash": "1280488417604585260", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-shared-contexts", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-components/react-utilities/project.json", - "hash": "10086645969078851081" - }, - { - "file": "packages/react-components/react-utilities/src/compose/README.md", - "hash": "14625676054464334966" - }, - { - "file": "packages/react-components/react-utilities/src/compose/assertSlots.test.tsx", - "hash": "5114753890814650553" - }, - { - "file": "packages/react-components/react-utilities/src/compose/assertSlots.ts", - "hash": "12263589124078345064" - }, - { - "file": "packages/react-components/react-utilities/src/compose/constants.ts", - "hash": "12568670464554309203" - }, - { - "file": "packages/react-components/react-utilities/src/compose/deprecated/getSlots.test.tsx", - "hash": "2001730957259217194" - }, - { - "file": "packages/react-components/react-utilities/src/compose/deprecated/getSlots.ts", - "hash": "1830296453746714796" - }, - { - "file": "packages/react-components/react-utilities/src/compose/deprecated/getSlotsNext.test.tsx", - "hash": "15481611158559264587" - }, - { - "file": "packages/react-components/react-utilities/src/compose/deprecated/getSlotsNext.ts", - "hash": "17468126332557367034" - }, - { - "file": "packages/react-components/react-utilities/src/compose/deprecated/resolveShorthand.test.tsx", - "hash": "12027460737839448450" - }, - { - "file": "packages/react-components/react-utilities/src/compose/deprecated/resolveShorthand.ts", - "hash": "4085975625642820386" - }, - { - "file": "packages/react-components/react-utilities/src/compose/getIntrinsicElementProps.test.ts", - "hash": "17625783833610049783" - }, - { - "file": "packages/react-components/react-utilities/src/compose/getIntrinsicElementProps.ts", - "hash": "9196198849778326580" - }, - { - "file": "packages/react-components/react-utilities/src/compose/index.ts", - "hash": "6238139875353986739" - }, - { - "file": "packages/react-components/react-utilities/src/compose/isResolvedShorthand.ts", - "hash": "10041723076556072661" - }, - { - "file": "packages/react-components/react-utilities/src/compose/isSlot.test.tsx", - "hash": "1686130142285675914" - }, - { - "file": "packages/react-components/react-utilities/src/compose/isSlot.ts", - "hash": "8873396891138973958" - }, - { - "file": "packages/react-components/react-utilities/src/compose/slot.test.tsx", - "hash": "6275674688381333524" - }, - { - "file": "packages/react-components/react-utilities/src/compose/slot.ts", - "hash": "17764427704923751237" - }, - { - "file": "packages/react-components/react-utilities/src/compose/types.test.ts", - "hash": "12006846578958764927" - }, - { - "file": "packages/react-components/react-utilities/src/compose/types.ts", - "hash": "6998235074462254421" - }, - { - "file": "packages/react-components/react-utilities/src/events/index.ts", - "hash": "5494215381271956158" - }, - { - "file": "packages/react-components/react-utilities/src/events/mouseTouchHelpers.test.ts", - "hash": "8235155130433892375" - }, - { - "file": "packages/react-components/react-utilities/src/events/mouseTouchHelpers.ts", - "hash": "7032968851854609969" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/index.ts", - "hash": "17204401905706147577" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useAnimationFrame.test.ts", - "hash": "5036573002543609992" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useAnimationFrame.ts", - "hash": "46044635345141684" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useBrowserTimer.test.ts", - "hash": "14389068346546567828" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useBrowserTimer.ts", - "hash": "11577709440845443589" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useControllableState.test.ts", - "hash": "7501091402152166732" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useControllableState.ts", - "hash": "4183798484252782583" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useEventCallback.test.ts", - "hash": "1424756617434420204" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useEventCallback.ts", - "hash": "4086500801223235507" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useFirstMount.test.ts", - "hash": "15489772157742840375" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useFirstMount.ts", - "hash": "10062658339272667832" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useForceUpdate.ts", - "hash": "15749428460651352441" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useId.test.tsx", - "hash": "8540968448007643942" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useId.ts", - "hash": "16791315725109884855" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useIsomorphicLayoutEffect.ts", - "hash": "12527101582470470210" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useMergedRefs.test.tsx", - "hash": "15625524889530719378" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useMergedRefs.ts", - "hash": "15582394188849760782" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useOnClickOutside.cy.tsx", - "hash": "9729146114040589542" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useOnClickOutside.test.ts", - "hash": "13195861638677596652" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useOnClickOutside.ts", - "hash": "2917971710023603742" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useOnScrollOutside.cy.tsx", - "hash": "111388682322343975" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useOnScrollOutside.test.ts", - "hash": "4403438015055961322" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useOnScrollOutside.ts", - "hash": "16339052801423405307" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/usePrevious.test.ts", - "hash": "11052424330262721985" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/usePrevious.ts", - "hash": "7814650654110052238" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useScrollbarWidth.ts", - "hash": "18297843172923507130" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useTimeout.test.ts", - "hash": "6143183876150228738" - }, - { - "file": "packages/react-components/react-utilities/src/hooks/useTimeout.ts", - "hash": "551248724631042442" - }, - { - "file": "packages/react-components/react-utilities/src/index.ts", - "hash": "10881091974104498336" - }, - { - "file": "packages/react-components/react-utilities/src/selection/index.ts", - "hash": "18175758767152219244" - }, - { - "file": "packages/react-components/react-utilities/src/selection/types.ts", - "hash": "7956389095795649433" - }, - { - "file": "packages/react-components/react-utilities/src/selection/useSelection.test.ts", - "hash": "16458769859979828472" - }, - { - "file": "packages/react-components/react-utilities/src/selection/useSelection.ts", - "hash": "804144186603019901" - }, - { - "file": "packages/react-components/react-utilities/src/ssr/SSRContext-node.test.tsx", - "hash": "17839409682341273470" - }, - { - "file": "packages/react-components/react-utilities/src/ssr/SSRContext.test.tsx", - "hash": "9881450806150617637" - }, - { - "file": "packages/react-components/react-utilities/src/ssr/SSRContext.tsx", - "hash": "1113275880901853979" - }, - { - "file": "packages/react-components/react-utilities/src/ssr/canUseDOM.ts", - "hash": "9966677476416266386" - }, - { - "file": "packages/react-components/react-utilities/src/ssr/index.ts", - "hash": "13577532512706846200" - }, - { - "file": "packages/react-components/react-utilities/src/testing/mockSyntheticEvent.ts", - "hash": "1212352037375346170" - }, - { - "file": "packages/react-components/react-utilities/src/trigger/applyTriggerPropsToChildren.test.tsx", - "hash": "10562372782750022367" - }, - { - "file": "packages/react-components/react-utilities/src/trigger/applyTriggerPropsToChildren.ts", - "hash": "7123990353661499142" - }, - { - "file": "packages/react-components/react-utilities/src/trigger/getTriggerChild.test.tsx", - "hash": "8599437159744729593" - }, - { - "file": "packages/react-components/react-utilities/src/trigger/getTriggerChild.ts", - "hash": "14656456857362872393" - }, - { - "file": "packages/react-components/react-utilities/src/trigger/index.ts", - "hash": "12347105081516068977" - }, - { - "file": "packages/react-components/react-utilities/src/trigger/isFluentTrigger.ts", - "hash": "14723355846450886312" - }, - { - "file": "packages/react-components/react-utilities/src/trigger/types.ts", - "hash": "14818087122904783134" - }, - { - "file": "packages/react-components/react-utilities/src/utils/clamp.test.ts", - "hash": "14460305721269143852" - }, - { - "file": "packages/react-components/react-utilities/src/utils/clamp.ts", - "hash": "5651646545287775562" - }, - { - "file": "packages/react-components/react-utilities/src/utils/createSetFromIterable.ts", - "hash": "5272994368316459991" - }, - { - "file": "packages/react-components/react-utilities/src/utils/getNativeElementProps.test.ts", - "hash": "4200849153460230731" - }, - { - "file": "packages/react-components/react-utilities/src/utils/getNativeElementProps.ts", - "hash": "11790897451229125905" - }, - { - "file": "packages/react-components/react-utilities/src/utils/getRTLSafeKey.test.ts", - "hash": "4315321514077746401" - }, - { - "file": "packages/react-components/react-utilities/src/utils/getRTLSafeKey.ts", - "hash": "10064884271406195450" - }, - { - "file": "packages/react-components/react-utilities/src/utils/getReactCallbackName.test.tsx", - "hash": "3201101536537757353" - }, - { - "file": "packages/react-components/react-utilities/src/utils/getReactCallbackName.ts", - "hash": "6579455818455583984" - }, - { - "file": "packages/react-components/react-utilities/src/utils/index.ts", - "hash": "13403671928297468691" - }, - { - "file": "packages/react-components/react-utilities/src/utils/isHTMLElement.test.ts", - "hash": "11482981990848453903" - }, - { - "file": "packages/react-components/react-utilities/src/utils/isHTMLElement.ts", - "hash": "1282709590511722740" - }, - { - "file": "packages/react-components/react-utilities/src/utils/isInteractiveHTMLElement.test.ts", - "hash": "16371310108984842884" - }, - { - "file": "packages/react-components/react-utilities/src/utils/isInteractiveHTMLElement.ts", - "hash": "8021585456494828017" - }, - { - "file": "packages/react-components/react-utilities/src/utils/mergeCallbacks.test.ts", - "hash": "18114696197479197623" - }, - { - "file": "packages/react-components/react-utilities/src/utils/mergeCallbacks.ts", - "hash": "798883161576461363" - }, - { - "file": "packages/react-components/react-utilities/src/utils/omit.test.ts", - "hash": "5161657923836885101" - }, - { - "file": "packages/react-components/react-utilities/src/utils/omit.ts", - "hash": "15464314669185068450" - }, - { - "file": "packages/react-components/react-utilities/src/utils/priorityQueue.test.ts", - "hash": "16760683918500211316" - }, - { - "file": "packages/react-components/react-utilities/src/utils/priorityQueue.ts", - "hash": "17476738038850897309" - }, - { - "file": "packages/react-components/react-utilities/src/utils/properties.test.ts", - "hash": "18102240430945997965" - }, - { - "file": "packages/react-components/react-utilities/src/utils/properties.ts", - "hash": "11898160952975282576" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/elementContains.test.ts", - "hash": "5170255865647103248" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/elementContains.ts", - "hash": "8217646841775655084" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/getParent.test.ts", - "hash": "3751432664303618425" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/getParent.ts", - "hash": "963679372623875089" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/index.ts", - "hash": "4831600202384909779" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/isVirtualElement.test.ts", - "hash": "14328481756165127483" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/isVirtualElement.ts", - "hash": "13999461821148654425" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/setVirtualParent.test.ts", - "hash": "15866095696536342231" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/setVirtualParent.ts", - "hash": "12573458924066224208" - }, - { - "file": "packages/react-components/react-utilities/src/virtualParent/types.ts", - "hash": "6862881665933269116" - }, - { - "file": "packages/react-components/react-utilities/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-utilities/tsconfig.json", - "hash": "5596071008249197618" - }, - { - "file": "packages/react-components/react-utilities/tsconfig.lib.json", - "hash": "4109592473830538944" - }, - { - "file": "packages/react-components/react-utilities/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/webpack-utilities": [ - { - "file": "packages/webpack-utilities/.eslintrc.json", - "hash": "3822933907657161418" - }, - { - "file": "packages/webpack-utilities/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/webpack-utilities/CHANGELOG.json", - "hash": "3147647764206316685" - }, - { - "file": "packages/webpack-utilities/CHANGELOG.md", - "hash": "9984789422986868432" - }, - { - "file": "packages/webpack-utilities/LICENSE", - "hash": "2164827662511184675" - }, - { - "file": "packages/webpack-utilities/README.md", - "hash": "6604358329591510428" - }, - { - "file": "packages/webpack-utilities/just.config.ts", - "hash": "7929889154186778640" - }, - { - "file": "packages/webpack-utilities/package.json", - "hash": "4032820640168261114", - "deps": ["npm:loader-utils", "npm:tslib", "@fluentui/eslint-plugin", "@fluentui/scripts-tasks", "npm:webpack"] - }, - { - "file": "packages/webpack-utilities/project.json", - "hash": "12787831108535473542" - }, - { - "file": "packages/webpack-utilities/src/fabricAsyncLoader.ts", - "hash": "9895115907536178426" - }, - { - "file": "packages/webpack-utilities/src/fabricAsyncLoaderInclude.ts", - "hash": "11145807179976432354" - }, - { - "file": "packages/webpack-utilities/src/index.ts", - "hash": "9127318911146067856" - }, - { - "file": "packages/webpack-utilities/tsconfig.json", - "hash": "13744738655515373811" - } - ], - "@fluentui/jest-serializer-merge-styles": [ - { - "file": "packages/jest-serializer-merge-styles/.eslintrc.json", - "hash": "9627670268003919245" - }, - { - "file": "packages/jest-serializer-merge-styles/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/jest-serializer-merge-styles/CHANGELOG.json", - "hash": "10954018229298175588" - }, - { - "file": "packages/jest-serializer-merge-styles/CHANGELOG.md", - "hash": "4453963391801474619" - }, - { - "file": "packages/jest-serializer-merge-styles/LICENSE", - "hash": "2632243039952250986" - }, - { - "file": "packages/jest-serializer-merge-styles/README.md", - "hash": "8547473322085278538" - }, - { - "file": "packages/jest-serializer-merge-styles/jest.config.js", - "hash": "17670261926655605039" - }, - { - "file": "packages/jest-serializer-merge-styles/just.config.ts", - "hash": "2411455081002746933" - }, - { - "file": "packages/jest-serializer-merge-styles/package.json", - "hash": "17303012843352115746", - "deps": [ - "@fluentui/merge-styles", - "@fluentui/eslint-plugin", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/jest-serializer-merge-styles/project.json", - "hash": "9258619144494602857" - }, - { - "file": "packages/jest-serializer-merge-styles/src/__snapshots__/index.test.tsx.snap", - "hash": "4400590441458842461" - }, - { - "file": "packages/jest-serializer-merge-styles/src/index.test.tsx", - "hash": "2012814102331462398" - }, - { - "file": "packages/jest-serializer-merge-styles/src/index.ts", - "hash": "15427981283161703159" - }, - { - "file": "packages/jest-serializer-merge-styles/tsconfig.json", - "hash": "18031699838750159282" - } - ], - "@fluentui/react-positioning": [ - { - "file": "packages/react-components/react-positioning/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-positioning/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-positioning/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-positioning/CHANGELOG.json", - "hash": "4356248270442561023" - }, - { - "file": "packages/react-components/react-positioning/CHANGELOG.md", - "hash": "4847233942356914741" - }, - { - "file": "packages/react-components/react-positioning/LICENSE", - "hash": "5089922527070038048" - }, - { - "file": "packages/react-components/react-positioning/README.md", - "hash": "2417768606010098926" - }, - { - "file": "packages/react-components/react-positioning/bundle-size/usePopper.fixture.js", - "hash": "5183258026047587937" - }, - { - "file": "packages/react-components/react-positioning/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-positioning/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-positioning/etc/react-positioning.api.md", - "hash": "18364179009656134909" - }, - { - "file": "packages/react-components/react-positioning/jest.config.js", - "hash": "1911801824510823535" - }, - { - "file": "packages/react-components/react-positioning/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-positioning/package.json", - "hash": "11419968880051446930", - "deps": [ - "npm:@floating-ui/dom", - "npm:@floating-ui/devtools", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-positioning/project.json", - "hash": "5245284538107226970" - }, - { - "file": "packages/react-components/react-positioning/src/constants.ts", - "hash": "4812450824066108556" - }, - { - "file": "packages/react-components/react-positioning/src/createArrowStyles.ts", - "hash": "4816621363801924689" - }, - { - "file": "packages/react-components/react-positioning/src/createPositionManager.ts", - "hash": "10300998202434588247" - }, - { - "file": "packages/react-components/react-positioning/src/createSlideStyles.ts", - "hash": "3653766009363043840" - }, - { - "file": "packages/react-components/react-positioning/src/createVirtualElementFromClick.ts", - "hash": "2923071022768484245" - }, - { - "file": "packages/react-components/react-positioning/src/index.ts", - "hash": "3889687764181437663" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/coverTarget.ts", - "hash": "11446814345254290307" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/flip.ts", - "hash": "4128332339311583311" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/index.ts", - "hash": "10004993199977720656" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/intersecting.ts", - "hash": "10280650566629227467" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/matchTargetSize.test.ts", - "hash": "15419830195167683077" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/matchTargetSize.ts", - "hash": "15376750943530628376" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/maxSize.test.ts", - "hash": "11847409733577590675" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/maxSize.ts", - "hash": "10958991407201312433" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/offset.ts", - "hash": "1347711306628883277" - }, - { - "file": "packages/react-components/react-positioning/src/middleware/shift.ts", - "hash": "13982566745452618280" - }, - { - "file": "packages/react-components/react-positioning/src/types.test.ts", - "hash": "16061796271944754604" - }, - { - "file": "packages/react-components/react-positioning/src/types.ts", - "hash": "4162330794092529449" - }, - { - "file": "packages/react-components/react-positioning/src/usePositioning.ts", - "hash": "17591020286304693906" - }, - { - "file": "packages/react-components/react-positioning/src/usePositioningMouseTarget.ts", - "hash": "8779354366062893755" - }, - { - "file": "packages/react-components/react-positioning/src/utils/debounce.ts", - "hash": "13930592765832964864" - }, - { - "file": "packages/react-components/react-positioning/src/utils/devtools.ts", - "hash": "6102556645022930270" - }, - { - "file": "packages/react-components/react-positioning/src/utils/fromFloatingUIPlacement.test.ts", - "hash": "14530768433800914418" - }, - { - "file": "packages/react-components/react-positioning/src/utils/fromFloatingUIPlacement.ts", - "hash": "5306564900046691192" - }, - { - "file": "packages/react-components/react-positioning/src/utils/getBoundary.ts", - "hash": "3368949379853203911" - }, - { - "file": "packages/react-components/react-positioning/src/utils/getFloatingUIOffset.test.ts", - "hash": "7575841896073806048" - }, - { - "file": "packages/react-components/react-positioning/src/utils/getFloatingUIOffset.ts", - "hash": "9985513219821945968" - }, - { - "file": "packages/react-components/react-positioning/src/utils/getReactFiberFromNode.ts", - "hash": "8959436210742527297" - }, - { - "file": "packages/react-components/react-positioning/src/utils/getScrollParent.ts", - "hash": "18070071901955288061" - }, - { - "file": "packages/react-components/react-positioning/src/utils/hasAutoFocusFilter.ts", - "hash": "2112971738028654481" - }, - { - "file": "packages/react-components/react-positioning/src/utils/index.ts", - "hash": "998032976871910048" - }, - { - "file": "packages/react-components/react-positioning/src/utils/listScrollParents.test.ts", - "hash": "11927392465683226617" - }, - { - "file": "packages/react-components/react-positioning/src/utils/listScrollParents.ts", - "hash": "1611437915141190212" - }, - { - "file": "packages/react-components/react-positioning/src/utils/mergeArrowOffset.test.ts", - "hash": "12878054589651221300" - }, - { - "file": "packages/react-components/react-positioning/src/utils/mergeArrowOffset.ts", - "hash": "14933934374399891510" - }, - { - "file": "packages/react-components/react-positioning/src/utils/normalizeAutoSize.test.ts", - "hash": "3117602037330931432" - }, - { - "file": "packages/react-components/react-positioning/src/utils/normalizeAutoSize.ts", - "hash": "990736725046059569" - }, - { - "file": "packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.test.ts", - "hash": "1498123558613702867" - }, - { - "file": "packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.ts", - "hash": "13333945119299100587" - }, - { - "file": "packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.test.ts", - "hash": "4826160436314984224" - }, - { - "file": "packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.ts", - "hash": "16730999955673908650" - }, - { - "file": "packages/react-components/react-positioning/src/utils/toFloatingUIPadding.test.ts", - "hash": "1971653496535654260" - }, - { - "file": "packages/react-components/react-positioning/src/utils/toFloatingUIPadding.ts", - "hash": "14419864248559003091" - }, - { - "file": "packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.test.ts", - "hash": "11727863645223188803" - }, - { - "file": "packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.ts", - "hash": "6079489230626652709" - }, - { - "file": "packages/react-components/react-positioning/src/utils/toggleScrollListener.test.ts", - "hash": "10649142849159055061" - }, - { - "file": "packages/react-components/react-positioning/src/utils/toggleScrollListener.ts", - "hash": "2156607211095016409" - }, - { - "file": "packages/react-components/react-positioning/src/utils/useCallbackRef.test.ts", - "hash": "4294465573577228095" - }, - { - "file": "packages/react-components/react-positioning/src/utils/useCallbackRef.ts", - "hash": "9531693418244808481" - }, - { - "file": "packages/react-components/react-positioning/src/utils/writeArrowUpdates.ts", - "hash": "6018473284504345707" - }, - { - "file": "packages/react-components/react-positioning/src/utils/writeContainerupdates.ts", - "hash": "4817679150978717204" - }, - { - "file": "packages/react-components/react-positioning/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/react-positioning/tsconfig.lib.json", - "hash": "14975475306433073951" - }, - { - "file": "packages/react-components/react-positioning/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/recipes-react-components": [ - { - "file": "apps/recipes-react-components/.eslintrc.json", - "hash": "6745579680639719580" - }, - { - "file": "apps/recipes-react-components/.storybook/main.js", - "hash": "3573351146020217563" - }, - { - "file": "apps/recipes-react-components/.storybook/preview.js", - "hash": "13060507936672259436" - }, - { - "file": "apps/recipes-react-components/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "apps/recipes-react-components/package.json", - "hash": "10025438426730395084", - "deps": [ - "@fluentui/react-components", - "npm:@fluentui/react-icons", - "@fluentui/react-theme", - "@fluentui/react-provider", - "@fluentui/react-storybook-addon", - "@fluentui/react-storybook-addon-export-to-sandbox", - "npm:@griffel/react", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "apps/recipes-react-components/project.json", - "hash": "16331129437784993323" - }, - { - "file": "apps/recipes-react-components/src/DocComponents/FluentDocsContainer.stories.tsx", - "hash": "2324064054925248616" - }, - { - "file": "apps/recipes-react-components/src/index.ts", - "hash": "15555827964896839803" - }, - { - "file": "apps/recipes-react-components/src/recipes/media-object/MediaObject.stories.mdx", - "hash": "2100852699300778383" - }, - { - "file": "apps/recipes-react-components/src/recipes/media-object/code-snippets/MediaObject.tsx", - "hash": "15951393116113450384" - }, - { - "file": "apps/recipes-react-components/src/recipes/media-object/code-snippets/index.ts", - "hash": "9585924820972516427" - }, - { - "file": "apps/recipes-react-components/src/templates/Example.tsx", - "hash": "270058714944668880" - }, - { - "file": "apps/recipes-react-components/src/templates/index.ts", - "hash": "6433543791903200750" - }, - { - "file": "apps/recipes-react-components/tsconfig.app.json", - "hash": "7286160734465805905" - }, - { - "file": "apps/recipes-react-components/tsconfig.json", - "hash": "820111550898000748" - } - ], - "@fluentui/theme": [ - { - "file": "packages/theme/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/theme/.npmignore", - "hash": "7699079327417375383" - }, - { - "file": "packages/theme/CHANGELOG.json", - "hash": "8694526630624738678" - }, - { - "file": "packages/theme/CHANGELOG.md", - "hash": "5405190803702508355" - }, - { - "file": "packages/theme/LICENSE", - "hash": "15786973076553793748" - }, - { - "file": "packages/theme/README.md", - "hash": "9513324721564020061" - }, - { - "file": "packages/theme/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/theme/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/theme/etc/theme.api.md", - "hash": "11990291598636491933" - }, - { - "file": "packages/theme/jest.config.js", - "hash": "8193037916930093299" - }, - { - "file": "packages/theme/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/theme/package.json", - "hash": "4880658300010728294", - "deps": [ - "@fluentui/merge-styles", - "@fluentui/utilities", - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/theme/project.json", - "hash": "5594824764663362836" - }, - { - "file": "packages/theme/src/FluentTheme.ts", - "hash": "8872927701412996736" - }, - { - "file": "packages/theme/src/__snapshots__/createTheme.test.ts.snap", - "hash": "1620181105913435241" - }, - { - "file": "packages/theme/src/__snapshots__/mergeThemes.test.ts.snap", - "hash": "3437625483425530701" - }, - { - "file": "packages/theme/src/colors/DefaultPalette.ts", - "hash": "9047280692656939649" - }, - { - "file": "packages/theme/src/colors/FluentColors.ts", - "hash": "3901943768402102586" - }, - { - "file": "packages/theme/src/colors/index.ts", - "hash": "17068496585037409656" - }, - { - "file": "packages/theme/src/createTheme.test.ts", - "hash": "13146216824160332649" - }, - { - "file": "packages/theme/src/createTheme.ts", - "hash": "165150282001144514" - }, - { - "file": "packages/theme/src/effects/DefaultEffects.ts", - "hash": "12509924764455750919" - }, - { - "file": "packages/theme/src/effects/FluentDepths.ts", - "hash": "17261250879660942101" - }, - { - "file": "packages/theme/src/effects/index.ts", - "hash": "11784798050056506025" - }, - { - "file": "packages/theme/src/fonts/DefaultFontStyles.ts", - "hash": "7513078596996372857" - }, - { - "file": "packages/theme/src/fonts/FluentFonts.ts", - "hash": "15183035779480308768" - }, - { - "file": "packages/theme/src/fonts/__snapshots__/createFontStyles.test.ts.snap", - "hash": "13260755682867724243" - }, - { - "file": "packages/theme/src/fonts/createFontStyles.test.ts", - "hash": "342084165563790114" - }, - { - "file": "packages/theme/src/fonts/createFontStyles.ts", - "hash": "6054997297777341246" - }, - { - "file": "packages/theme/src/fonts/index.ts", - "hash": "7989996203233507146" - }, - { - "file": "packages/theme/src/index.ts", - "hash": "5096156196141648071" - }, - { - "file": "packages/theme/src/mergeThemes.test.ts", - "hash": "1854964498231524841" - }, - { - "file": "packages/theme/src/mergeThemes.ts", - "hash": "8066733853025885142" - }, - { - "file": "packages/theme/src/motion/AnimationStyles.ts", - "hash": "6009016863933539960" - }, - { - "file": "packages/theme/src/motion/FluentMotion.ts", - "hash": "14434753786724348979" - }, - { - "file": "packages/theme/src/motion/index.ts", - "hash": "11675984740600839755" - }, - { - "file": "packages/theme/src/spacing/DefaultSpacing.ts", - "hash": "10219715360821251712" - }, - { - "file": "packages/theme/src/spacing/index.ts", - "hash": "3486351936943740825" - }, - { - "file": "packages/theme/src/types/IAnimationStyles.ts", - "hash": "12653971684196105051" - }, - { - "file": "packages/theme/src/types/IEffects.ts", - "hash": "10026907101397233905" - }, - { - "file": "packages/theme/src/types/IFabricConfig.ts", - "hash": "5071856735493168297" - }, - { - "file": "packages/theme/src/types/IFontStyles.ts", - "hash": "2182319282794586696" - }, - { - "file": "packages/theme/src/types/IPalette.ts", - "hash": "2529464931097454784" - }, - { - "file": "packages/theme/src/types/IScheme.ts", - "hash": "9513225299507328404" - }, - { - "file": "packages/theme/src/types/ISemanticColors.ts", - "hash": "4202804278930620465" - }, - { - "file": "packages/theme/src/types/ISemanticTextColors.ts", - "hash": "14306295845370698813" - }, - { - "file": "packages/theme/src/types/ISpacing.ts", - "hash": "15242286375604099718" - }, - { - "file": "packages/theme/src/types/ITheme.ts", - "hash": "3909617946113210701" - }, - { - "file": "packages/theme/src/types/Theme.ts", - "hash": "10290910868267444293" - }, - { - "file": "packages/theme/src/types/index.ts", - "hash": "11830819220037665655" - }, - { - "file": "packages/theme/src/utilities/makeSemanticColors.ts", - "hash": "7063463176732882313" - }, - { - "file": "packages/theme/src/version.ts", - "hash": "14766332737427891807" - }, - { - "file": "packages/theme/tsconfig.json", - "hash": "12924358714988094235" - } - ], - "@fluentui/react-input": [ - { - "file": "packages/react-components/react-input/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-input/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-input/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-input/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-input/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-input/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-input/CHANGELOG.json", - "hash": "16902776417506954393" - }, - { - "file": "packages/react-components/react-input/CHANGELOG.md", - "hash": "12659363144881103523" - }, - { - "file": "packages/react-components/react-input/LICENSE", - "hash": "17921975243735857791" - }, - { - "file": "packages/react-components/react-input/README.md", - "hash": "5789151720033807483" - }, - { - "file": "packages/react-components/react-input/bundle-size/Input.fixture.js", - "hash": "15446350093573765852" - }, - { - "file": "packages/react-components/react-input/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-input/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-input/docs/Spec-styling.md", - "hash": "12893795690828629797" - }, - { - "file": "packages/react-components/react-input/docs/Spec-variants.md", - "hash": "14494830944240525083" - }, - { - "file": "packages/react-components/react-input/docs/Spec.md", - "hash": "5306108129554253618" - }, - { - "file": "packages/react-components/react-input/etc/react-input.api.md", - "hash": "8395695789212950644" - }, - { - "file": "packages/react-components/react-input/jest.config.js", - "hash": "8466466753515983120" - }, - { - "file": "packages/react-components/react-input/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-input/package.json", - "hash": "10777907370065733381", - "deps": [ - "@fluentui/react-field", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/react-text", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-input/project.json", - "hash": "10199176759041895704" - }, - { - "file": "packages/react-components/react-input/src/Input.ts", - "hash": "10429882019873203426" - }, - { - "file": "packages/react-components/react-input/src/components/Input/Input.test.tsx", - "hash": "9943754574556771396" - }, - { - "file": "packages/react-components/react-input/src/components/Input/Input.tsx", - "hash": "2593076107497856454" - }, - { - "file": "packages/react-components/react-input/src/components/Input/Input.types.ts", - "hash": "5991618772507553577" - }, - { - "file": "packages/react-components/react-input/src/components/Input/__snapshots__/Input.test.tsx.snap", - "hash": "8696547501521471701" - }, - { - "file": "packages/react-components/react-input/src/components/Input/index.ts", - "hash": "9629035020677552243" - }, - { - "file": "packages/react-components/react-input/src/components/Input/renderInput.tsx", - "hash": "17464159116055354529" - }, - { - "file": "packages/react-components/react-input/src/components/Input/useInput.ts", - "hash": "7096296182051013434" - }, - { - "file": "packages/react-components/react-input/src/components/Input/useInputStyles.styles.ts", - "hash": "17030352388227783114" - }, - { - "file": "packages/react-components/react-input/src/index.ts", - "hash": "1860518375733372751" - }, - { - "file": "packages/react-components/react-input/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputAppearance.stories.tsx", - "hash": "16605839565629747390" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputBestPractices.md", - "hash": "84526309930099766" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputContentBeforeAfter.stories.tsx", - "hash": "8269160108933136866" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputControlled.stories.tsx", - "hash": "1485009000094407100" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputDefault.stories.tsx", - "hash": "5448587894533551399" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputDescription.md", - "hash": "11217759867033227655" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputDisabled.stories.tsx", - "hash": "10764757400929231557" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputInline.stories.tsx", - "hash": "9245622638907234352" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputPlaceholder.stories.tsx", - "hash": "7248062527841234398" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputSize.stories.tsx", - "hash": "18091173436190785431" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputType.stories.tsx", - "hash": "13006764319554437671" - }, - { - "file": "packages/react-components/react-input/stories/Input/InputUncontrolled.stories.tsx", - "hash": "3016126986246343470" - }, - { - "file": "packages/react-components/react-input/stories/Input/index.stories.tsx", - "hash": "668131335390485946" - }, - { - "file": "packages/react-components/react-input/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-input/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-input/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-bundle-size-auditor": [ - { - "file": "scripts/bundle-size-auditor/README.md", - "hash": "7308971503050426778" - }, - { - "file": "scripts/bundle-size-auditor/__fixtures__/proj-one/bundle-size-auditor.config.js", - "hash": "7435363296352118388" - }, - { - "file": "scripts/bundle-size-auditor/__fixtures__/proj-one/lib-dist/hello.js", - "hash": "3025962609255239884" - }, - { - "file": "scripts/bundle-size-auditor/__fixtures__/proj-one/lib-dist/index.js", - "hash": "9471299597521760475" - }, - { - "file": "scripts/bundle-size-auditor/__fixtures__/proj-one/package.json", - "hash": "9762295079143560402" - }, - { - "file": "scripts/bundle-size-auditor/bin/bundle-size-auditor.js", - "hash": "4162646536432802739" - }, - { - "file": "scripts/bundle-size-auditor/jest.config.js", - "hash": "8276958337121510907" - }, - { - "file": "scripts/bundle-size-auditor/package.json", - "hash": "13938274440693939530" - }, - { - "file": "scripts/bundle-size-auditor/project.json", - "hash": "5867454910317339913" - }, - { - "file": "scripts/bundle-size-auditor/src/bundle-size-collect.ts", - "hash": "6441554579105820293" - }, - { - "file": "scripts/bundle-size-auditor/src/cli.spec.ts", - "hash": "4157129729123491570" - }, - { - "file": "scripts/bundle-size-auditor/src/cli.ts", - "hash": "8957246201282732872" - }, - { - "file": "scripts/bundle-size-auditor/src/index.dev.js", - "hash": "9260712020448791085" - }, - { - "file": "scripts/bundle-size-auditor/src/index.ts", - "hash": "12839598562953646843" - }, - { - "file": "scripts/bundle-size-auditor/src/merge-bundlesizes.ts", - "hash": "6240773769950594795" - }, - { - "file": "scripts/bundle-size-auditor/src/types.ts", - "hash": "8251796727224552861" - }, - { - "file": "scripts/bundle-size-auditor/src/typings.d.ts", - "hash": "14694322115759458648" - }, - { - "file": "scripts/bundle-size-auditor/src/utils.ts", - "hash": "9195238259767401168" - }, - { - "file": "scripts/bundle-size-auditor/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/bundle-size-auditor/tsconfig.lib.json", - "hash": "1724195388906143280" - }, - { - "file": "scripts/bundle-size-auditor/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/stress-test": [ - { - "file": "apps/stress-test/.babelrc", - "hash": "12862917896289059134" - }, - { - "file": "apps/stress-test/.eslintrc.json", - "hash": "17415001537957764759" - }, - { - "file": "apps/stress-test/.gitignore", - "hash": "15381081997006216537" - }, - { - "file": "apps/stress-test/.npmignore", - "hash": "6985117138208138805" - }, - { - "file": "apps/stress-test/CHANGELOG.json", - "hash": "3437580707295011777" - }, - { - "file": "apps/stress-test/CHANGELOG.md", - "hash": "11176202236824542392" - }, - { - "file": "apps/stress-test/README.md", - "hash": "6390444478274191284" - }, - { - "file": "apps/stress-test/config/tests.js", - "hash": "11168571691074990614" - }, - { - "file": "apps/stress-test/jest.config.js", - "hash": "9458445199894798693" - }, - { - "file": "apps/stress-test/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "apps/stress-test/package.json", - "hash": "15481262008595934140", - "deps": [ - "@fluentui/react", - "@fluentui/react-components", - "npm:@fluentui/react-icons", - "@fluentui/web-components", - "npm:@microsoft/fast-element", - "npm:afterframe", - "npm:react", - "npm:react-dom", - "npm:random-seedable", - "@fluentui/scripts-tasks", - "@fluentui/scripts-storybook" - ] - }, - { - "file": "apps/stress-test/project.json", - "hash": "8519279046864749978" - }, - { - "file": "apps/stress-test/scenarios/default.js", - "hash": "5667652972228170629" - }, - { - "file": "apps/stress-test/scripts/commands/build.ts", - "hash": "9419308908411865324" - }, - { - "file": "apps/stress-test/scripts/commands/buildFixture.ts", - "hash": "4525318911210783745" - }, - { - "file": "apps/stress-test/scripts/commands/buildTestConfig.ts", - "hash": "10914442217612715419" - }, - { - "file": "apps/stress-test/scripts/commands/dev.ts", - "hash": "717550860288446011" - }, - { - "file": "apps/stress-test/scripts/commands/processResults.ts", - "hash": "12562565022016957121" - }, - { - "file": "apps/stress-test/scripts/commands/run.ts", - "hash": "4847220144281690301" - }, - { - "file": "apps/stress-test/scripts/commands/runServer.ts", - "hash": "1695533053367418885" - }, - { - "file": "apps/stress-test/scripts/commands/runTachometer.ts", - "hash": "14114252202943153800" - }, - { - "file": "apps/stress-test/scripts/stressTest.ts", - "hash": "11797513512940166661" - }, - { - "file": "apps/stress-test/scripts/utils/configureYargs.ts", - "hash": "16260029187749751820" - }, - { - "file": "apps/stress-test/scripts/utils/fixtures.ts", - "hash": "10863951851903674631" - }, - { - "file": "apps/stress-test/scripts/utils/getBrowsers.ts", - "hash": "2767025493846740149" - }, - { - "file": "apps/stress-test/scripts/utils/paths.ts", - "hash": "5278825876081271854" - }, - { - "file": "apps/stress-test/scripts/utils/server.ts", - "hash": "822087886506422870" - }, - { - "file": "apps/stress-test/scripts/utils/tachometer.ts", - "hash": "3168697832787878755" - }, - { - "file": "apps/stress-test/scripts/utils/tree/RandomSelectorTreeNode.ts", - "hash": "6146005535267643186" - }, - { - "file": "apps/stress-test/scripts/utils/tree/RandomTree.ts", - "hash": "13001941047399227604" - }, - { - "file": "apps/stress-test/scripts/utils/types.ts", - "hash": "5655566756638933089" - }, - { - "file": "apps/stress-test/src/components/v8/StressApp.tsx", - "hash": "18116729224501891286" - }, - { - "file": "apps/stress-test/src/components/v8/StressComponent.tsx", - "hash": "4244808785460217124" - }, - { - "file": "apps/stress-test/src/components/v8/StressContainer.tsx", - "hash": "9963871457639355036" - }, - { - "file": "apps/stress-test/src/components/v9/StressApp.tsx", - "hash": "8514184576449260536" - }, - { - "file": "apps/stress-test/src/components/v9/StressComponent.tsx", - "hash": "2111244307928688142" - }, - { - "file": "apps/stress-test/src/components/v9/StressContainer.tsx", - "hash": "13765506946664693107" - }, - { - "file": "apps/stress-test/src/components/wc/stressApp.ts", - "hash": "4924957931395796051" - }, - { - "file": "apps/stress-test/src/components/wc/stressComponent.ts", - "hash": "17691895993458559136" - }, - { - "file": "apps/stress-test/src/components/wc/stressContainer.ts", - "hash": "6793612953422835054" - }, - { - "file": "apps/stress-test/src/fixtures/.gitignore", - "hash": "5942482769455841618" - }, - { - "file": "apps/stress-test/src/pages/v8/simple-stress/index.html", - "hash": "17054045918937358546" - }, - { - "file": "apps/stress-test/src/pages/v8/simple-stress/index.tsx", - "hash": "8145014336300914316" - }, - { - "file": "apps/stress-test/src/pages/v8/stress-tree/index.html", - "hash": "15931849501101204950" - }, - { - "file": "apps/stress-test/src/pages/v8/stress-tree/index.tsx", - "hash": "10784484438983706757" - }, - { - "file": "apps/stress-test/src/pages/v9/simple-stress/index.html", - "hash": "17996328833487928766" - }, - { - "file": "apps/stress-test/src/pages/v9/simple-stress/index.tsx", - "hash": "5275492453195147599" - }, - { - "file": "apps/stress-test/src/pages/v9/stress-tree/index.html", - "hash": "16355370479256157553" - }, - { - "file": "apps/stress-test/src/pages/v9/stress-tree/index.tsx", - "hash": "5258794036800619415" - }, - { - "file": "apps/stress-test/src/pages/wc/simple-stress/index.html", - "hash": "1270571087989138208" - }, - { - "file": "apps/stress-test/src/pages/wc/simple-stress/index.ts", - "hash": "15556660320515370092" - }, - { - "file": "apps/stress-test/src/pages/wc/stress-tree/index.html", - "hash": "11835810937514846385" - }, - { - "file": "apps/stress-test/src/pages/wc/stress-tree/index.ts", - "hash": "15833416144539563430" - }, - { - "file": "apps/stress-test/src/renderers/v8/button.tsx", - "hash": "9045728902588530340" - }, - { - "file": "apps/stress-test/src/renderers/v8/checkbox.tsx", - "hash": "6539321948897356327" - }, - { - "file": "apps/stress-test/src/renderers/v8/spinButton.tsx", - "hash": "16265282132677230376" - }, - { - "file": "apps/stress-test/src/renderers/v8/stress.tsx", - "hash": "11516277076088170648" - }, - { - "file": "apps/stress-test/src/renderers/v8/textField.tsx", - "hash": "15777792370713890617" - }, - { - "file": "apps/stress-test/src/renderers/v8/textarea.tsx", - "hash": "5651749419672941671" - }, - { - "file": "apps/stress-test/src/renderers/v9/btn/basic.tsx", - "hash": "7135601453948143150" - }, - { - "file": "apps/stress-test/src/renderers/v9/btn/idiomatic.tsx", - "hash": "17785011319006702868" - }, - { - "file": "apps/stress-test/src/renderers/v9/btn/override.tsx", - "hash": "5832742309068265507" - }, - { - "file": "apps/stress-test/src/renderers/v9/btn/styles.ts", - "hash": "2372224596345633038" - }, - { - "file": "apps/stress-test/src/renderers/v9/button.tsx", - "hash": "12612410767034293702" - }, - { - "file": "apps/stress-test/src/renderers/v9/checkbox.tsx", - "hash": "3401473945961708472" - }, - { - "file": "apps/stress-test/src/renderers/v9/input.tsx", - "hash": "8820280999885685987" - }, - { - "file": "apps/stress-test/src/renderers/v9/spinButton/noPseudos.tsx", - "hash": "2688120599484118925" - }, - { - "file": "apps/stress-test/src/renderers/v9/spinButton/vanilla.tsx", - "hash": "13829098914655280350" - }, - { - "file": "apps/stress-test/src/renderers/v9/spinButton.tsx", - "hash": "6121116104547615511" - }, - { - "file": "apps/stress-test/src/renderers/v9/stress.tsx", - "hash": "14702699307755792534" - }, - { - "file": "apps/stress-test/src/renderers/v9/textarea/noPseudo.tsx", - "hash": "1389311219434304303" - }, - { - "file": "apps/stress-test/src/renderers/v9/textarea.tsx", - "hash": "12873383168720038622" - }, - { - "file": "apps/stress-test/src/renderers/v9/vanillaButton.tsx", - "hash": "4516616351088856213" - }, - { - "file": "apps/stress-test/src/renderers/wc/btn/vanillaButton.ts", - "hash": "10811222679811356956" - }, - { - "file": "apps/stress-test/src/renderers/wc/btn/wcBasicButton.ts", - "hash": "11539836511375251289" - }, - { - "file": "apps/stress-test/src/renderers/wc/button.ts", - "hash": "6999027257311316012" - }, - { - "file": "apps/stress-test/src/renderers/wc/checkbox.ts", - "hash": "15970545569051510853" - }, - { - "file": "apps/stress-test/src/renderers/wc/numberField/vanilla.ts", - "hash": "8959457943263928112" - }, - { - "file": "apps/stress-test/src/renderers/wc/numberField.ts", - "hash": "16321108348585429551" - }, - { - "file": "apps/stress-test/src/renderers/wc/stress.ts", - "hash": "10883422701119623451" - }, - { - "file": "apps/stress-test/src/renderers/wc/textField.ts", - "hash": "291657744163180278" - }, - { - "file": "apps/stress-test/src/shared/css/RandomSelector.ts", - "hash": "16765679475685581804" - }, - { - "file": "apps/stress-test/src/shared/css/injectStyles.ts", - "hash": "874717523769405550" - }, - { - "file": "apps/stress-test/src/shared/react/ReactSelectorTree.tsx", - "hash": "1904747251329859137" - }, - { - "file": "apps/stress-test/src/shared/react/ReactTest.tsx", - "hash": "15293360124561503855" - }, - { - "file": "apps/stress-test/src/shared/react/ReactTree.tsx", - "hash": "7152825019561051430" - }, - { - "file": "apps/stress-test/src/shared/react/TestAdd.tsx", - "hash": "12303512287437308333" - }, - { - "file": "apps/stress-test/src/shared/react/TestInjectStyles.tsx", - "hash": "15879335621216282780" - }, - { - "file": "apps/stress-test/src/shared/react/TestMount.tsx", - "hash": "7958151074071589670" - }, - { - "file": "apps/stress-test/src/shared/react/TestReRenderAll.tsx", - "hash": "11165957533216239885" - }, - { - "file": "apps/stress-test/src/shared/react/TestRemoveAll.tsx", - "hash": "9728966942634649684" - }, - { - "file": "apps/stress-test/src/shared/react/onRender.ts", - "hash": "13278968105407979487" - }, - { - "file": "apps/stress-test/src/shared/react/types.ts", - "hash": "17179176776844544347" - }, - { - "file": "apps/stress-test/src/shared/tree/iterators/dfs.ts", - "hash": "12875190868999900583" - }, - { - "file": "apps/stress-test/src/shared/tree/types.ts", - "hash": "7464791436826229288" - }, - { - "file": "apps/stress-test/src/shared/utils/performanceMeasure.ts", - "hash": "3012816799120387809" - }, - { - "file": "apps/stress-test/src/shared/utils/random.ts", - "hash": "16404106474801088880" - }, - { - "file": "apps/stress-test/src/shared/utils/testOptions.ts", - "hash": "17341661357557143378" - }, - { - "file": "apps/stress-test/src/shared/utils/testUtils.ts", - "hash": "12817262226704966804" - }, - { - "file": "apps/stress-test/src/shared/vanilla/TestAdd.ts", - "hash": "9408687668738176897" - }, - { - "file": "apps/stress-test/src/shared/vanilla/TestInjectStyles.ts", - "hash": "14944531061658898293" - }, - { - "file": "apps/stress-test/src/shared/vanilla/TestMount.ts", - "hash": "4062758155564446044" - }, - { - "file": "apps/stress-test/src/shared/vanilla/TestReRenderAll.ts", - "hash": "505702295482162602" - }, - { - "file": "apps/stress-test/src/shared/vanilla/TestRemoveAll.ts", - "hash": "6839898938459418030" - }, - { - "file": "apps/stress-test/src/shared/vanilla/VanillaSelectorTree.ts", - "hash": "13281375955283748015" - }, - { - "file": "apps/stress-test/src/shared/vanilla/VanillaTree.ts", - "hash": "577304213019575576" - }, - { - "file": "apps/stress-test/src/shared/vanilla/types.ts", - "hash": "11716853905215850052" - }, - { - "file": "apps/stress-test/src/shared/wc/TestAdd.ts", - "hash": "7712416855864373058" - }, - { - "file": "apps/stress-test/src/shared/wc/TestInjectStyles.ts", - "hash": "17649406931455398846" - }, - { - "file": "apps/stress-test/src/shared/wc/TestMount.ts", - "hash": "12906067654388519872" - }, - { - "file": "apps/stress-test/src/shared/wc/TestReRenderAll.ts", - "hash": "5312913760596417727" - }, - { - "file": "apps/stress-test/src/shared/wc/TestRemoveAll.ts", - "hash": "18443864224568875877" - }, - { - "file": "apps/stress-test/src/shared/wc/WCSelectorTree.ts", - "hash": "14790884250663509401" - }, - { - "file": "apps/stress-test/src/shared/wc/WCTest.ts", - "hash": "16321518401394895901" - }, - { - "file": "apps/stress-test/src/shared/wc/WCTree.ts", - "hash": "6417409144636896365" - }, - { - "file": "apps/stress-test/src/shared/wc/types.ts", - "hash": "16914982769205636568" - }, - { - "file": "apps/stress-test/tsconfig.json", - "hash": "14768176472458847426" - }, - { - "file": "apps/stress-test/tsconfig.scripts.json", - "hash": "14672983425013350832" - }, - { - "file": "apps/stress-test/tsconfig.type.json", - "hash": "14876708043234667071" - }, - { - "file": "apps/stress-test/webpack/griffelConfig.ts", - "hash": "5590847160006798528" - }, - { - "file": "apps/stress-test/webpack/pageConfig.ts", - "hash": "49920576016816112" - }, - { - "file": "apps/stress-test/webpack/webpack.config.ts", - "hash": "12028734856447424120" - } - ], - "@fluentui/react-spinner": [ - { - "file": "packages/react-components/react-spinner/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-spinner/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-spinner/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-spinner/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-spinner/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-spinner/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-spinner/CHANGELOG.json", - "hash": "3280890749163842627" - }, - { - "file": "packages/react-components/react-spinner/CHANGELOG.md", - "hash": "12792390149026574823" - }, - { - "file": "packages/react-components/react-spinner/LICENSE", - "hash": "14553388487284712078" - }, - { - "file": "packages/react-components/react-spinner/README.md", - "hash": "10087843760024113769" - }, - { - "file": "packages/react-components/react-spinner/bundle-size/Spinner.fixture.js", - "hash": "5992710611579886911" - }, - { - "file": "packages/react-components/react-spinner/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-spinner/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-spinner/docs/MIGRATION.md", - "hash": "4271430718709456187" - }, - { - "file": "packages/react-components/react-spinner/docs/Spec.md", - "hash": "8108242124769863167" - }, - { - "file": "packages/react-components/react-spinner/etc/react-spinner.api.md", - "hash": "6943912974007911651" - }, - { - "file": "packages/react-components/react-spinner/jest.config.js", - "hash": "11572584267529988690" - }, - { - "file": "packages/react-components/react-spinner/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-spinner/package.json", - "hash": "12596561334443842269", - "deps": [ - "@fluentui/react-jsx-runtime", - "@fluentui/react-label", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-spinner/project.json", - "hash": "16333624156321919677" - }, - { - "file": "packages/react-components/react-spinner/src/Spinner.ts", - "hash": "17775753931591747303" - }, - { - "file": "packages/react-components/react-spinner/src/components/Spinner/DefaultSvg.tsx", - "hash": "2492171149641849851" - }, - { - "file": "packages/react-components/react-spinner/src/components/Spinner/Spinner.test.tsx", - "hash": "16612308379317311160" - }, - { - "file": "packages/react-components/react-spinner/src/components/Spinner/Spinner.tsx", - "hash": "11487284038740981348" - }, - { - "file": "packages/react-components/react-spinner/src/components/Spinner/Spinner.types.ts", - "hash": "11615634852342602324" - }, - { - "file": "packages/react-components/react-spinner/src/components/Spinner/index.ts", - "hash": "5479350457561490387" - }, - { - "file": "packages/react-components/react-spinner/src/components/Spinner/renderSpinner.tsx", - "hash": "5967742638171182429" - }, - { - "file": "packages/react-components/react-spinner/src/components/Spinner/useSpinner.tsx", - "hash": "5315405786166520951" - }, - { - "file": "packages/react-components/react-spinner/src/components/Spinner/useSpinnerStyles.styles.ts", - "hash": "9739165177237335620" - }, - { - "file": "packages/react-components/react-spinner/src/contexts/SpinnerContext.ts", - "hash": "15656672469164403534" - }, - { - "file": "packages/react-components/react-spinner/src/contexts/index.ts", - "hash": "18421418232924887404" - }, - { - "file": "packages/react-components/react-spinner/src/index.ts", - "hash": "12925949466018778405" - }, - { - "file": "packages/react-components/react-spinner/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerAppearance.stories.tsx", - "hash": "2553746132280526795" - }, - { - "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerBestPractices.md", - "hash": "14494351965436565766" - }, - { - "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerDefault.stories.tsx", - "hash": "5947288127862564020" - }, - { - "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerDescription.md", - "hash": "2258339333508008098" - }, - { - "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerLabel.stories.tsx", - "hash": "15822432114109503670" - }, - { - "file": "packages/react-components/react-spinner/stories/Spinner/SpinnerSize.stories.tsx", - "hash": "3317730365577270949" - }, - { - "file": "packages/react-components/react-spinner/stories/Spinner/index.stories.tsx", - "hash": "17876671725641816133" - }, - { - "file": "packages/react-components/react-spinner/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-spinner/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-spinner/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-teaching-popover-preview": [ - { - "file": "packages/react-components/react-teaching-popover-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/CHANGELOG.json", - "hash": "8994884635951557618" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/CHANGELOG.md", - "hash": "14480893186605819528" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/LICENSE", - "hash": "8318516742902246056" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/README.md", - "hash": "4815969679662335124" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/docs/Spec.md", - "hash": "16256309628029914774" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/etc/images/swapImage.png", - "hash": "12876338665092853890" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/etc/react-teaching-popover-preview.api.md", - "hash": "11243623359092034041" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/jest.config.js", - "hash": "13584371025946738595" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/package.json", - "hash": "17670663144617569278", - "deps": [ - "@fluentui/react-jsx-runtime", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/react-shared-contexts", - "@fluentui/react-popover", - "@fluentui/react-button", - "@fluentui/react-tabster", - "npm:@fluentui/react-icons", - "@fluentui/react-aria", - "@fluentui/react-context-selector", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-teaching-popover-preview/project.json", - "hash": "14616591285923787189" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopover.ts", - "hash": "7389541180256976710" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverActions.ts", - "hash": "5358762121561117822" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverBody.ts", - "hash": "1131558293591082898" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverButton.ts", - "hash": "7413929216130545088" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverCarousel.ts", - "hash": "12601511764903480892" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverContext.ts", - "hash": "13481016016250248226" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverHeader.ts", - "hash": "15529787251709216705" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverPageCount.ts", - "hash": "17073836279869371730" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverSurface.ts", - "hash": "14483713832663730605" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverTitle.ts", - "hash": "13840095734895178938" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/TeachingPopoverTrigger.ts", - "hash": "9281431365623494399" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.test.tsx", - "hash": "112626277921287604" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.tsx", - "hash": "14097696607211212505" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.types.ts", - "hash": "12289824331777302830" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/index.ts", - "hash": "1226227490827364046" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/renderTeachingPopover.tsx", - "hash": "11005122137749609355" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/useTeachingPopover.ts", - "hash": "9421874386964730109" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/useTeachingPopoverContext.ts", - "hash": "15884992890186760431" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.test.tsx", - "hash": "15349775667547186854" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.tsx", - "hash": "14030510950857980014" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.types.ts", - "hash": "16827896840583128219" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/__snapshots__/TeachingPopoverActions.test.tsx.snap", - "hash": "18337752677565992943" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/index.ts", - "hash": "18435084670675140657" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/renderTeachingPopoverActions.tsx", - "hash": "14266117732360718671" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/useTeachingPopoverActions.ts", - "hash": "4096968893721737403" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/useTeachingPopoverActionsStyles.styles.ts", - "hash": "17255966558997131615" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.test.tsx", - "hash": "11495521293989665067" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.tsx", - "hash": "7858610052521811915" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.types.ts", - "hash": "17319835197952734098" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/__snapshots__/TeachingPopoverBody.test.tsx.snap", - "hash": "4314797497538624872" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/index.ts", - "hash": "9472987200176136993" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/renderTeachingPopoverBody.tsx", - "hash": "7235475384754499998" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/useTeachingPopoverBody.ts", - "hash": "15612610339406533157" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.ts", - "hash": "11908879224221270510" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.test.tsx", - "hash": "12558548386874541122" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.tsx", - "hash": "4404208766411340943" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.types.ts", - "hash": "732387137400908009" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/index.ts", - "hash": "11272611281483058771" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/renderTeachingPopoverButton.tsx", - "hash": "14249489053108298165" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/useTeachingPopoverButton.ts", - "hash": "10608687828497095226" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/useTeachingPopoverButtonStyles.styles.ts", - "hash": "7486815103861852465" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.test.tsx", - "hash": "15114064730783324960" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.tsx", - "hash": "15064373276874971387" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.ts", - "hash": "6173872613171697428" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/__snapshots__/TeachingPopoverCarousel.test.tsx.snap", - "hash": "10518328939545785520" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/index.ts", - "hash": "12454703240467593591" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.tsx", - "hash": "14124941062994286254" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.ts", - "hash": "6437048122874103933" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.ts", - "hash": "7582112356649397034" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.test.tsx", - "hash": "2708718707606539991" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.tsx", - "hash": "7770809662350163780" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.types.ts", - "hash": "1284598022225209861" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/__snapshots__/TeachingPopoverHeader.test.tsx.snap", - "hash": "66542911360758428" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/index.ts", - "hash": "15576869881896674472" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/renderTeachingPopoverHeader.tsx", - "hash": "18321155974286134670" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/useTeachingPopoverHeader.tsx", - "hash": "9762382604091848558" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.ts", - "hash": "3852469850417217256" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.test.tsx", - "hash": "4837419775547071769" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.tsx", - "hash": "17504625350392450179" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.types.ts", - "hash": "2843113478541239823" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/__snapshots__/TeachingPopoverPageCount.test.tsx.snap", - "hash": "11407218936841546097" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/index.ts", - "hash": "13686490779487932487" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/renderTeachingPopoverPageCount.tsx", - "hash": "3192186327141850669" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/useTeachingPopoverPageCount.ts", - "hash": "1970193870854102598" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/useTeachingPopoverPageCountStyles.styles.ts", - "hash": "10634833093274167840" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.test.tsx", - "hash": "5724934428492091490" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.tsx", - "hash": "11272575543697199841" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.types.ts", - "hash": "14003263876187418803" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/__snapshots__/TeachingPopoverSurface.test.tsx.snap", - "hash": "9489208442087234503" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/index.ts", - "hash": "11298545263727765591" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/renderTeachingPopoverSurface.tsx", - "hash": "5159387223578862066" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/useTeachingPopoverSurface.ts", - "hash": "8311099309561251981" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.ts", - "hash": "14065583085885253091" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.test.tsx", - "hash": "17768990193341551114" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.tsx", - "hash": "525328514845513715" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.types.ts", - "hash": "3090372936974350401" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/__snapshots__/TeachingPopoverTitle.test.tsx.snap", - "hash": "4146139576376363143" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/index.ts", - "hash": "6417325189862749957" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/renderTeachingPopoverTitle.tsx", - "hash": "1606987935364254240" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/useTeachingPopoverTitle.tsx", - "hash": "1009662058008658141" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.ts", - "hash": "3770385461668929171" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.test.tsx", - "hash": "5471836767446183674" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.tsx", - "hash": "14008566932184133972" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.ts", - "hash": "14896345722113243352" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/__snapshots__/TeachingPopoverTrigger.test.tsx.snap", - "hash": "6172078088319873378" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/index.ts", - "hash": "7072858892780895633" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.tsx", - "hash": "11095981190180064218" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.ts", - "hash": "16849029819529451671" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/index.ts", - "hash": "12678804439345883397" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/src/testing/mockTeachingPopoverContext.ts", - "hash": "14032699750228718615" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverBestPractices.md", - "hash": "13132854725403121719" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverBranded.stories.tsx", - "hash": "17521116200124480646" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarousel.stories.tsx", - "hash": "5192604369618065969" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarouselBranded.stories.tsx", - "hash": "13345141870510142666" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarouselText.stories.tsx", - "hash": "18260449879385146338" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDefault.stories.tsx", - "hash": "4876509690720671779" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDefaultBranded.stories.tsx", - "hash": "17297757085466422856" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/index.stories.tsx", - "hash": "13975208357646002979" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-teaching-popover-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/babel-preset-storybook-full-source": [ - { - "file": "packages/react-components/babel-preset-storybook-full-source/.babelrc.json", - "hash": "8174012058119950495" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/.eslintignore", - "hash": "9846005931812453978" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/.eslintrc.json", - "hash": "11018738359270224912" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/LICENSE", - "hash": "2851101912028128850" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/README.md", - "hash": "10822226558355648087" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/etc/babel-preset-storybook-full-source.api.md", - "hash": "10134344240064969487" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/jest.config.js", - "hash": "17998182148295247129" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/package.json", - "hash": "16304265586387765120", - "deps": [ - "npm:@babel/core", - "npm:@swc/helpers", - "npm:prettier", - "npm:pkg-up", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/project.json", - "hash": "16617351147562126074" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-inner-assignments-from-exported/code.js", - "hash": "12250846775050869646" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-inner-assignments-from-exported/output.js", - "hash": "3913454441417757431" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-params-from-not-exported/code.js", - "hash": "5377692644416536257" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-params-from-not-exported/output.js", - "hash": "5359392563189908938" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/removes-assigns-from-exported/code.js", - "hash": "14695982501113684921" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/removes-assigns-from-exported/output.js", - "hash": "1765868221018401588" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/add-parameter/code.js", - "hash": "6315840616906615" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/add-parameter/output.js", - "hash": "15744114046571496255" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/keep-sourcecode-spacing/code.js", - "hash": "6397343963531239775" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/keep-sourcecode-spacing/output.js", - "hash": "2870614453866614178" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/import-override/code.js", - "hash": "8331756490526386489" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/import-override/output.js", - "hash": "1104668652453585821" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-declarations/code.js", - "hash": "11266463562398618277" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-declarations/output.js", - "hash": "12987886010279186167" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-specifiers/code.js", - "hash": "5428787723527841401" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-specifiers/output.js", - "hash": "16810803813997568777" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/no-import-declarations/code.js", - "hash": "17946180769179213796" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/no-import-declarations/output.js", - "hash": "17946180769179213796" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/non-fluent-import-declaration/code.js", - "hash": "3590937219013626819" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/non-fluent-import-declaration/output.js", - "hash": "6032116881122134529" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/code.js", - "hash": "11406060193416782004" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/output.js", - "hash": "9437463913197939329" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/package.json", - "hash": "16793539485026835037" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/single-import-declaration/code.js", - "hash": "17372187984601639124" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/single-import-declaration/output.js", - "hash": "6432025930017863990" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/fullsource.test.ts", - "hash": "5856907194449946095" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/fullsource.ts", - "hash": "4310623060008865206" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/index.ts", - "hash": "6047420778112851575" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/modifyImports.test.ts", - "hash": "2149201365036783550" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/modifyImports.ts", - "hash": "10423675854161091140" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/removeStorybookParameters.test.ts", - "hash": "2032450309373789045" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/removeStorybookParameters.ts", - "hash": "3606776635662219250" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/src/types.ts", - "hash": "10005011061873778871" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/tsconfig.lib.json", - "hash": "6215804205440595574" - }, - { - "file": "packages/react-components/babel-preset-storybook-full-source/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-context-selector": [ - { - "file": "packages/react-components/react-context-selector/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-context-selector/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-context-selector/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-context-selector/CHANGELOG.json", - "hash": "12357456438201883679" - }, - { - "file": "packages/react-components/react-context-selector/CHANGELOG.md", - "hash": "1688705207205191806" - }, - { - "file": "packages/react-components/react-context-selector/LICENSE", - "hash": "14418648610861842636" - }, - { - "file": "packages/react-components/react-context-selector/README.md", - "hash": "4793703731858594212" - }, - { - "file": "packages/react-components/react-context-selector/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-context-selector/config/tests.js", - "hash": "9971916367882244724" - }, - { - "file": "packages/react-components/react-context-selector/etc/react-context-selector.api.md", - "hash": "817145045488550826" - }, - { - "file": "packages/react-components/react-context-selector/jest.config.js", - "hash": "396823205152653422" - }, - { - "file": "packages/react-components/react-context-selector/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-context-selector/package.json", - "hash": "14209163811172208834", - "deps": [ - "@fluentui/react-utilities", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-context-selector/project.json", - "hash": "10672805380923032364" - }, - { - "file": "packages/react-components/react-context-selector/src/createContext.test.tsx", - "hash": "4604017868584066298" - }, - { - "file": "packages/react-components/react-context-selector/src/createContext.ts", - "hash": "1937703165389642557" - }, - { - "file": "packages/react-components/react-context-selector/src/index.ts", - "hash": "15808868075184724918" - }, - { - "file": "packages/react-components/react-context-selector/src/types.ts", - "hash": "3342966834093442693" - }, - { - "file": "packages/react-components/react-context-selector/src/useContextSelector.test.tsx", - "hash": "2957338539505755381" - }, - { - "file": "packages/react-components/react-context-selector/src/useContextSelector.ts", - "hash": "5840336099139347811" - }, - { - "file": "packages/react-components/react-context-selector/src/useHasParentContext.test.tsx", - "hash": "1290164710762769818" - }, - { - "file": "packages/react-components/react-context-selector/src/useHasParentContext.ts", - "hash": "6039941632328716696" - }, - { - "file": "packages/react-components/react-context-selector/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/react-context-selector/tsconfig.lib.json", - "hash": "14975475306433073951" - }, - { - "file": "packages/react-components/react-context-selector/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-shared-contexts": [ - { - "file": "packages/react-components/react-shared-contexts/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-shared-contexts/.eslintrc.json", - "hash": "2655957677577488347" - }, - { - "file": "packages/react-components/react-shared-contexts/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-shared-contexts/CHANGELOG.json", - "hash": "11450723176664332258" - }, - { - "file": "packages/react-components/react-shared-contexts/CHANGELOG.md", - "hash": "8041467250161143580" - }, - { - "file": "packages/react-components/react-shared-contexts/LICENSE", - "hash": "13088925295509647167" - }, - { - "file": "packages/react-components/react-shared-contexts/README.md", - "hash": "4751810605471065515" - }, - { - "file": "packages/react-components/react-shared-contexts/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-shared-contexts/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-shared-contexts/etc/react-shared-contexts.api.md", - "hash": "11556634729467213907" - }, - { - "file": "packages/react-components/react-shared-contexts/jest.config.js", - "hash": "538613335903488751" - }, - { - "file": "packages/react-components/react-shared-contexts/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-shared-contexts/package.json", - "hash": "13537722509734511610", - "deps": [ - "@fluentui/react-theme", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-components/react-shared-contexts/project.json", - "hash": "5371634384165049691" - }, - { - "file": "packages/react-components/react-shared-contexts/src/AnnounceContext/AnnounceContext.ts", - "hash": "2101100231139745435" - }, - { - "file": "packages/react-components/react-shared-contexts/src/AnnounceContext/index.ts", - "hash": "11793601976036868298" - }, - { - "file": "packages/react-components/react-shared-contexts/src/BackgroundAppearanceContext/BackgroundAppearanceContext.ts", - "hash": "11073209310416173040" - }, - { - "file": "packages/react-components/react-shared-contexts/src/BackgroundAppearanceContext/index.ts", - "hash": "4791795188203536339" - }, - { - "file": "packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/CustomStyleHooksContext.ts", - "hash": "8144953372014138588" - }, - { - "file": "packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/index.ts", - "hash": "9912580371128432978" - }, - { - "file": "packages/react-components/react-shared-contexts/src/CustomStyleHooksContext.ts", - "hash": "8242274099778806427" - }, - { - "file": "packages/react-components/react-shared-contexts/src/OverridesContext/OverridesContext.ts", - "hash": "11500774440824693477" - }, - { - "file": "packages/react-components/react-shared-contexts/src/OverridesContext/index.ts", - "hash": "11711806393149686484" - }, - { - "file": "packages/react-components/react-shared-contexts/src/PortalMountNodeContext.ts", - "hash": "11399465082133766208" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ProviderContext/ProviderContext.ts", - "hash": "9227668728843902181" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ProviderContext/index.ts", - "hash": "7579138418481595432" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ProviderContext.ts", - "hash": "7037424765520462353" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ThemeClassNameContext/ThemeClassNameContext.ts", - "hash": "3418753637748263121" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ThemeClassNameContext/index.ts", - "hash": "17327136154859927590" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ThemeClassNameContext.ts", - "hash": "16685286281086879188" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ThemeContext/ThemeContext.ts", - "hash": "17138251330974077870" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ThemeContext/index.ts", - "hash": "8055522461387744849" - }, - { - "file": "packages/react-components/react-shared-contexts/src/ThemeContext.ts", - "hash": "5803292591144406153" - }, - { - "file": "packages/react-components/react-shared-contexts/src/TooltipVisibilityContext/TooltipContext.ts", - "hash": "6624600191869567184" - }, - { - "file": "packages/react-components/react-shared-contexts/src/TooltipVisibilityContext/index.ts", - "hash": "17125185529833455986" - }, - { - "file": "packages/react-components/react-shared-contexts/src/TooltipVisibilityContext.ts", - "hash": "6523660209536733373" - }, - { - "file": "packages/react-components/react-shared-contexts/src/index.ts", - "hash": "9275468125053272462" - }, - { - "file": "packages/react-components/react-shared-contexts/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/react-shared-contexts/tsconfig.lib.json", - "hash": "14975475306433073951" - }, - { - "file": "packages/react-components/react-shared-contexts/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-datepicker-compat": [ - { - "file": "packages/react-components/react-datepicker-compat/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-datepicker-compat/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-datepicker-compat/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-datepicker-compat/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-datepicker-compat/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-datepicker-compat/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-datepicker-compat/CHANGELOG.json", - "hash": "11013446861406926313" - }, - { - "file": "packages/react-components/react-datepicker-compat/CHANGELOG.md", - "hash": "12357247949196268869" - }, - { - "file": "packages/react-components/react-datepicker-compat/LICENSE", - "hash": "15467235041157898768" - }, - { - "file": "packages/react-components/react-datepicker-compat/README.md", - "hash": "14965536454179875946" - }, - { - "file": "packages/react-components/react-datepicker-compat/bundle-size/DatePicker.fixture.js", - "hash": "5780478783270741987" - }, - { - "file": "packages/react-components/react-datepicker-compat/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-datepicker-compat/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-datepicker-compat/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-datepicker-compat/etc/react-datepicker-compat.api.md", - "hash": "6017916360745789326" - }, - { - "file": "packages/react-components/react-datepicker-compat/jest.config.js", - "hash": "15440392279685094633" - }, - { - "file": "packages/react-components/react-datepicker-compat/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-datepicker-compat/package.json", - "hash": "12713229717479939122", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-calendar-compat", - "@fluentui/react-field", - "npm:@fluentui/react-icons", - "@fluentui/react-input", - "@fluentui/react-jsx-runtime", - "@fluentui/react-popover", - "@fluentui/react-portal", - "@fluentui/react-positioning", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-datepicker-compat/project.json", - "hash": "11680857818498676120" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/DatePicker.ts", - "hash": "14140387775859161252" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.cy.tsx", - "hash": "12630229637117863596" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.test.tsx", - "hash": "12404958269483653272" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.tsx", - "hash": "8759052501401237921" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.types.ts", - "hash": "8659224020186844831" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap", - "hash": "7292979735761155863" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/defaults.ts", - "hash": "9663199247101225899" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/index.ts", - "hash": "2306196274500634021" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/renderDatePicker.tsx", - "hash": "4545229128790594608" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/useDatePicker.tsx", - "hash": "8805471839390216809" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/components/DatePicker/useDatePickerStyles.styles.ts", - "hash": "1151934265857114204" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/index.ts", - "hash": "11139978793168257780" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-datepicker-compat/src/utils/usePopupPositioning.ts", - "hash": "8552065050899537438" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerBestPractices.md", - "hash": "15284497134478716193" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerControlled.stories.tsx", - "hash": "17703752551334714090" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerCustomDateFormatting.stories.tsx", - "hash": "17923939141629207493" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDateBoundaries.stories.tsx", - "hash": "7939700521736332519" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDateRange.stories.tsx", - "hash": "6776886943573250862" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDefault.stories.tsx", - "hash": "8542138294343046914" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDescription.md", - "hash": "1753461532339200045" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDisabled.stories.tsx", - "hash": "7534425957894004424" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerErrorHandling.stories.tsx", - "hash": "3115559528923035285" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerFirstDayOfTheWeek.stories.tsx", - "hash": "2591018952854976305" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerLocalized.stories.tsx", - "hash": "11758139077848427607" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerRequired.stories.tsx", - "hash": "8512856872562400035" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerTextInput.stories.tsx", - "hash": "16850430938666912680" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerWeekNumbers.stories.tsx", - "hash": "2856056823419360247" - }, - { - "file": "packages/react-components/react-datepicker-compat/stories/DatePicker/index.stories.tsx", - "hash": "8278766610962775166" - }, - { - "file": "packages/react-components/react-datepicker-compat/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-datepicker-compat/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-datepicker-compat/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-datepicker-compat/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-storybook-addon": [ - { - "file": "packages/react-components/react-storybook-addon/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-storybook-addon/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-storybook-addon/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-storybook-addon/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-storybook-addon/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-storybook-addon/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-storybook-addon/CHANGELOG.json", - "hash": "3474712915487995213" - }, - { - "file": "packages/react-components/react-storybook-addon/CHANGELOG.md", - "hash": "8184359278978525016" - }, - { - "file": "packages/react-components/react-storybook-addon/LICENSE", - "hash": "6669073305911860467" - }, - { - "file": "packages/react-components/react-storybook-addon/README.md", - "hash": "8064450981890936119" - }, - { - "file": "packages/react-components/react-storybook-addon/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-storybook-addon/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-storybook-addon/etc/react-storybook-addon.api.md", - "hash": "11258033129711696263" - }, - { - "file": "packages/react-components/react-storybook-addon/jest.config.js", - "hash": "7521503279647251132" - }, - { - "file": "packages/react-components/react-storybook-addon/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-storybook-addon/package.json", - "hash": "8384255895641764171", - "deps": [ - "@fluentui/react-theme", - "@fluentui/react-provider", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:@storybook/addons", - "npm:@storybook/api", - "npm:@storybook/components", - "npm:@storybook/core-events", - "npm:@storybook/theming" - ] - }, - { - "file": "packages/react-components/react-storybook-addon/preset.js", - "hash": "2087058436361447367" - }, - { - "file": "packages/react-components/react-storybook-addon/project.json", - "hash": "1682233284854212766" - }, - { - "file": "packages/react-components/react-storybook-addon/src/components/ReactStrictMode.tsx", - "hash": "1709717175354952452" - }, - { - "file": "packages/react-components/react-storybook-addon/src/components/ThemePicker.tsx", - "hash": "3302378609426153071" - }, - { - "file": "packages/react-components/react-storybook-addon/src/constants.ts", - "hash": "6964172751209884361" - }, - { - "file": "packages/react-components/react-storybook-addon/src/decorators/withFluentProvider.tsx", - "hash": "4816286417694522871" - }, - { - "file": "packages/react-components/react-storybook-addon/src/decorators/withReactStrictMode.tsx", - "hash": "16425806883864595845" - }, - { - "file": "packages/react-components/react-storybook-addon/src/hooks.ts", - "hash": "586825407018303425" - }, - { - "file": "packages/react-components/react-storybook-addon/src/index.ts", - "hash": "18114374399441569147" - }, - { - "file": "packages/react-components/react-storybook-addon/src/preset/manager.ts", - "hash": "13384330975042902281" - }, - { - "file": "packages/react-components/react-storybook-addon/src/preset/preview.ts", - "hash": "14589431869663794454" - }, - { - "file": "packages/react-components/react-storybook-addon/src/theme.ts", - "hash": "11652898211575247400" - }, - { - "file": "packages/react-components/react-storybook-addon/stories/index.stories.tsx", - "hash": "8107404018508303844" - }, - { - "file": "packages/react-components/react-storybook-addon/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-storybook-addon/tsconfig.lib.json", - "hash": "2330431448937249608" - }, - { - "file": "packages/react-components/react-storybook-addon/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/scripts-fluentui-publish": [ - { - "file": "scripts/fluentui-publish/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/fluentui-publish/index.ts", - "hash": "1957588669308405884" - }, - { - "file": "scripts/fluentui-publish/jest.config.js", - "hash": "5846928013675828309" - }, - { - "file": "scripts/fluentui-publish/package.json", - "hash": "6624435746520159601", - "deps": ["@fluentui/scripts-monorepo"] - }, - { - "file": "scripts/fluentui-publish/project.json", - "hash": "6709988330732270986" - }, - { - "file": "scripts/fluentui-publish/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/fluentui-publish/tsconfig.lib.json", - "hash": "3753806828268919288" - }, - { - "file": "scripts/fluentui-publish/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/circulars-test": [ - { - "file": "packages/fluentui/circulars-test/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/circulars-test/README.md", - "hash": "16627736154734360742" - }, - { - "file": "packages/fluentui/circulars-test/gulpfile.ts", - "hash": "8697200394590035566" - }, - { - "file": "packages/fluentui/circulars-test/package.json", - "hash": "12258503670094856879", - "deps": ["@fluentui/react-northstar", "@fluentui/scripts-gulp"] - }, - { - "file": "packages/fluentui/circulars-test/project.json", - "hash": "14472453665394675939" - } - ], - "@fluentui/react-icon-provider": [ - { - "file": "packages/react-icon-provider/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-icon-provider/.npmignore", - "hash": "7699079327417375383" - }, - { - "file": "packages/react-icon-provider/CHANGELOG.json", - "hash": "7676443020765681429" - }, - { - "file": "packages/react-icon-provider/CHANGELOG.md", - "hash": "4138333685783748774" - }, - { - "file": "packages/react-icon-provider/LICENSE", - "hash": "3916819357349058896" - }, - { - "file": "packages/react-icon-provider/README.md", - "hash": "11260395080290584789" - }, - { - "file": "packages/react-icon-provider/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/react-icon-provider/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-icon-provider/etc/react-icon-provider.api.md", - "hash": "2639769618235613758" - }, - { - "file": "packages/react-icon-provider/jest.config.js", - "hash": "12858682342254308337" - }, - { - "file": "packages/react-icon-provider/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-icon-provider/package.json", - "hash": "16700522927875202724", - "deps": [ - "@fluentui/set-version", - "@fluentui/style-utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-icon-provider/project.json", - "hash": "11213610105968358891" - }, - { - "file": "packages/react-icon-provider/src/IconProvider.test.tsx", - "hash": "9471100122187543170" - }, - { - "file": "packages/react-icon-provider/src/IconProvider.tsx", - "hash": "5846544110297203840" - }, - { - "file": "packages/react-icon-provider/src/IconProvider.types.ts", - "hash": "18141011749410796467" - }, - { - "file": "packages/react-icon-provider/src/index.ts", - "hash": "14545138585849154184" - }, - { - "file": "packages/react-icon-provider/src/version.ts", - "hash": "14409932537788799216" - }, - { - "file": "packages/react-icon-provider/tsconfig.json", - "hash": "5979352251281818134" - }, - { - "file": "packages/react-icon-provider/webpack.config.js", - "hash": "15864044479926769048" - } - ], - "@fluentui/public-docsite-setup": [ - { - "file": "packages/public-docsite-setup/.eslintrc.json", - "hash": "11992839191132505596" - }, - { - "file": "packages/public-docsite-setup/.npmignore", - "hash": "3740656116866054585" - }, - { - "file": "packages/public-docsite-setup/CHANGELOG.json", - "hash": "8618547025339672593" - }, - { - "file": "packages/public-docsite-setup/CHANGELOG.md", - "hash": "16215403087015415764" - }, - { - "file": "packages/public-docsite-setup/LICENSE", - "hash": "16265811467916620523" - }, - { - "file": "packages/public-docsite-setup/README.md", - "hash": "18053332391643812672" - }, - { - "file": "packages/public-docsite-setup/bin/create-site-manifests.js", - "hash": "2399047235238828921" - }, - { - "file": "packages/public-docsite-setup/homepage.htm", - "hash": "981869816544868480" - }, - { - "file": "packages/public-docsite-setup/index.html", - "hash": "12007521206803077125" - }, - { - "file": "packages/public-docsite-setup/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/public-docsite-setup/package.json", - "hash": "16349764460524795731", - "deps": ["@fluentui/eslint-plugin", "@fluentui/scripts-tasks"] - }, - { - "file": "packages/public-docsite-setup/project.json", - "hash": "3891386790338302307" - }, - { - "file": "packages/public-docsite-setup/scripts/generateHomepage.js", - "hash": "14016511638093064764" - }, - { - "file": "packages/public-docsite-setup/scripts/getLoadSiteConfig.js", - "hash": "8884841564332900835" - }, - { - "file": "packages/public-docsite-setup/src/constants.ts", - "hash": "16801533152691260155" - }, - { - "file": "packages/public-docsite-setup/src/index.ts", - "hash": "10886664963278811071" - }, - { - "file": "packages/public-docsite-setup/src/loadSite.ts", - "hash": "12087338822941859946" - }, - { - "file": "packages/public-docsite-setup/src/types.ts", - "hash": "17941423265517989148" - }, - { - "file": "packages/public-docsite-setup/tsconfig.json", - "hash": "5177948260028589190" - } - ], - "@fluentui/react-badge": [ - { - "file": "packages/react-components/react-badge/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-badge/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-badge/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-badge/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-badge/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-badge/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-badge/CHANGELOG.json", - "hash": "3838142065842905213" - }, - { - "file": "packages/react-components/react-badge/CHANGELOG.md", - "hash": "8328083364379344161" - }, - { - "file": "packages/react-components/react-badge/LICENSE", - "hash": "5659285969361613184" - }, - { - "file": "packages/react-components/react-badge/README.md", - "hash": "741049524515709119" - }, - { - "file": "packages/react-components/react-badge/bundle-size/Badge.fixture.js", - "hash": "18016310058213888091" - }, - { - "file": "packages/react-components/react-badge/bundle-size/CounterBadge.fixture.js", - "hash": "11116175457104908609" - }, - { - "file": "packages/react-components/react-badge/bundle-size/PresenseBadge.fixture.js", - "hash": "14243990803293442333" - }, - { - "file": "packages/react-components/react-badge/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-badge/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-badge/docs/MIGRATION.md", - "hash": "12718996084650884249" - }, - { - "file": "packages/react-components/react-badge/docs/Spec.md", - "hash": "4981436966355345762" - }, - { - "file": "packages/react-components/react-badge/etc/react-badge.api.md", - "hash": "17669930272481993235" - }, - { - "file": "packages/react-components/react-badge/jest.config.js", - "hash": "5702010820628736971" - }, - { - "file": "packages/react-components/react-badge/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-badge/package.json", - "hash": "13596268650071717014", - "deps": [ - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-badge/project.json", - "hash": "1247452013363452004" - }, - { - "file": "packages/react-components/react-badge/src/Badge.ts", - "hash": "2510791038021244676" - }, - { - "file": "packages/react-components/react-badge/src/CounterBadge.ts", - "hash": "6039544832911443106" - }, - { - "file": "packages/react-components/react-badge/src/PresenceBadge.ts", - "hash": "966139791510714730" - }, - { - "file": "packages/react-components/react-badge/src/components/Badge/Badge.test.tsx", - "hash": "2291120686699126936" - }, - { - "file": "packages/react-components/react-badge/src/components/Badge/Badge.tsx", - "hash": "5730875022532459229" - }, - { - "file": "packages/react-components/react-badge/src/components/Badge/Badge.types.ts", - "hash": "4284246403350811291" - }, - { - "file": "packages/react-components/react-badge/src/components/Badge/__snapshots__/Badge.test.tsx.snap", - "hash": "6711022694333634888" - }, - { - "file": "packages/react-components/react-badge/src/components/Badge/index.ts", - "hash": "1476629210370430931" - }, - { - "file": "packages/react-components/react-badge/src/components/Badge/renderBadge.tsx", - "hash": "9996716902381900230" - }, - { - "file": "packages/react-components/react-badge/src/components/Badge/useBadge.ts", - "hash": "6249942987623297178" - }, - { - "file": "packages/react-components/react-badge/src/components/Badge/useBadgeStyles.styles.ts", - "hash": "2198511761615120709" - }, - { - "file": "packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.test.tsx", - "hash": "16785701196245371781" - }, - { - "file": "packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.tsx", - "hash": "1852761979729563729" - }, - { - "file": "packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.types.ts", - "hash": "13654828388063681108" - }, - { - "file": "packages/react-components/react-badge/src/components/CounterBadge/__snapshots__/CounterBadge.test.tsx.snap", - "hash": "8082377041564993844" - }, - { - "file": "packages/react-components/react-badge/src/components/CounterBadge/index.ts", - "hash": "6547105508262150940" - }, - { - "file": "packages/react-components/react-badge/src/components/CounterBadge/useCounterBadge.ts", - "hash": "14338285655892039809" - }, - { - "file": "packages/react-components/react-badge/src/components/CounterBadge/useCounterBadgeStyles.styles.ts", - "hash": "10120133273911278700" - }, - { - "file": "packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.test.tsx", - "hash": "5815693297904013980" - }, - { - "file": "packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.tsx", - "hash": "9644698475507516468" - }, - { - "file": "packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.types.ts", - "hash": "16229658686092641977" - }, - { - "file": "packages/react-components/react-badge/src/components/PresenceBadge/__snapshots__/PresenceBadge.test.tsx.snap", - "hash": "15228924334910826003" - }, - { - "file": "packages/react-components/react-badge/src/components/PresenceBadge/index.ts", - "hash": "11517521578520876854" - }, - { - "file": "packages/react-components/react-badge/src/components/PresenceBadge/presenceIcons.ts", - "hash": "14406401175654278430" - }, - { - "file": "packages/react-components/react-badge/src/components/PresenceBadge/usePresenceBadge.tsx", - "hash": "7288458005042661885" - }, - { - "file": "packages/react-components/react-badge/src/components/PresenceBadge/usePresenceBadgeStyles.styles.ts", - "hash": "15934854199050763595" - }, - { - "file": "packages/react-components/react-badge/src/index.ts", - "hash": "16013987246277682438" - }, - { - "file": "packages/react-components/react-badge/src/testing/isConformant.ts", - "hash": "14447437808059758114" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/BadgeAppearance.stories.tsx", - "hash": "9157737770137255570" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/BadgeBestPractices.md", - "hash": "7394302782434059313" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/BadgeColor.stories.tsx", - "hash": "8736371573721917301" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/BadgeDefault.stories.tsx", - "hash": "16490059828019383252" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/BadgeDescription.md", - "hash": "10544040785170591815" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/BadgeIcon.stories.tsx", - "hash": "3092952115653825428" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/BadgeShapes.stories.tsx", - "hash": "3012525196355438962" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/BadgeSizes.stories.tsx", - "hash": "8996124492394830949" - }, - { - "file": "packages/react-components/react-badge/stories/Badge/index.stories.tsx", - "hash": "9336081823336802656" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeAppearance.stories.tsx", - "hash": "1132782369760502827" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeColor.stories.tsx", - "hash": "3726008495638286061" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDefault.stories.tsx", - "hash": "12495911009820026675" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDescription.md", - "hash": "17199299847592287892" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDot.stories.tsx", - "hash": "11304165446131649687" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeShapes.stories.tsx", - "hash": "2293809520768402959" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/CounterBadgeSizes.stories.tsx", - "hash": "16654987495768560853" - }, - { - "file": "packages/react-components/react-badge/stories/CounterBadge/index.stories.tsx", - "hash": "8535943447027099881" - }, - { - "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeDefault.stories.tsx", - "hash": "15264240781375830137" - }, - { - "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeDescription.md", - "hash": "2055988351009907164" - }, - { - "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeOutOfOffice.stories.tsx", - "hash": "14955421743325613433" - }, - { - "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeSizes.stories.tsx", - "hash": "12704301323912754084" - }, - { - "file": "packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeStatus.stories.tsx", - "hash": "13799869294717671623" - }, - { - "file": "packages/react-components/react-badge/stories/PresenceBadge/index.stories.tsx", - "hash": "2602818216760981976" - }, - { - "file": "packages/react-components/react-badge/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-badge/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-badge/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/a11y-testing": [ - { - "file": "packages/a11y-testing/.eslintrc.json", - "hash": "11018738359270224912" - }, - { - "file": "packages/a11y-testing/.npmignore", - "hash": "15779616407447347661" - }, - { - "file": "packages/a11y-testing/CHANGELOG.json", - "hash": "15739043855444223084" - }, - { - "file": "packages/a11y-testing/CHANGELOG.md", - "hash": "17183189538011835521" - }, - { - "file": "packages/a11y-testing/LICENSE", - "hash": "7816564243463356568" - }, - { - "file": "packages/a11y-testing/README.md", - "hash": "10607231298984649280" - }, - { - "file": "packages/a11y-testing/just.config.ts", - "hash": "2411455081002746933" - }, - { - "file": "packages/a11y-testing/package.json", - "hash": "10737859425586630111", - "deps": [ - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "npm:jest", - "npm:@testing-library/react", - "npm:@testing-library/user-event", - "npm:react" - ] - }, - { - "file": "packages/a11y-testing/project.json", - "hash": "15648457560038035197" - }, - { - "file": "packages/a11y-testing/src/definitions/Button/buttonBehaviorDefinition.ts", - "hash": "7565738243156893217" - }, - { - "file": "packages/a11y-testing/src/definitions/Button/buttonGroupBehaviorDefinition.ts", - "hash": "3095800935524043018" - }, - { - "file": "packages/a11y-testing/src/definitions/Button/toggleButtonBehaviorDefinition.ts", - "hash": "580307916176779069" - }, - { - "file": "packages/a11y-testing/src/definitions/Link/linkBehaviorDefinition.ts", - "hash": "17397047756957383010" - }, - { - "file": "packages/a11y-testing/src/definitions/MenuButton/menuButtonBehaviorDefinition.ts", - "hash": "10953865562518239252" - }, - { - "file": "packages/a11y-testing/src/definitions/Pill/pillActionBehaviorDefinition.ts", - "hash": "6109436761723475906" - }, - { - "file": "packages/a11y-testing/src/definitions/Pill/pillBehaviorDefinition.ts", - "hash": "4554347345570701865" - }, - { - "file": "packages/a11y-testing/src/definitions/Pill/pillGroupBehaviorDefinition.ts", - "hash": "5989295955207284539" - }, - { - "file": "packages/a11y-testing/src/definitions/Pill/pillIconBehaviorDefinition.ts", - "hash": "3073001734700112300" - }, - { - "file": "packages/a11y-testing/src/definitions/Pill/pillImageBehaviorDefinition.ts", - "hash": "12369440037446817587" - }, - { - "file": "packages/a11y-testing/src/definitions/Pill/pillOptionBehaviorDefinition.ts", - "hash": "12091950550049802064" - }, - { - "file": "packages/a11y-testing/src/definitions/Popup/popupBehaviorDefinition.ts", - "hash": "7515556976799700459" - }, - { - "file": "packages/a11y-testing/src/definitions/index.ts", - "hash": "8697171680261455903" - }, - { - "file": "packages/a11y-testing/src/definitions/react-button/buttonAccessibilityBehaviorDefinition.ts", - "hash": "7074093598013342483" - }, - { - "file": "packages/a11y-testing/src/facades/ComponentTestFacade.tsx", - "hash": "5617571999278826429" - }, - { - "file": "packages/a11y-testing/src/facades/index.ts", - "hash": "8916232850542568642" - }, - { - "file": "packages/a11y-testing/src/index.ts", - "hash": "13336121115230139564" - }, - { - "file": "packages/a11y-testing/src/rules/index.ts", - "hash": "7218533088751468820" - }, - { - "file": "packages/a11y-testing/src/rules/rules.tsx", - "hash": "2997048678189845806" - }, - { - "file": "packages/a11y-testing/src/types.ts", - "hash": "17656570443003494391" - }, - { - "file": "packages/a11y-testing/src/validators/index.ts", - "hash": "4005811543520166967" - }, - { - "file": "packages/a11y-testing/src/validators/validate.ts", - "hash": "777267130200413044" - }, - { - "file": "packages/a11y-testing/tsconfig.json", - "hash": "8076373707397502125" - } - ], - "@fluentui/react-icons-northstar": [ - { - "file": "packages/fluentui/react-icons-northstar/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-icons-northstar/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-icons-northstar/README.md", - "hash": "13053638770459338997" - }, - { - "file": "packages/fluentui/react-icons-northstar/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-icons-northstar/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-icons-northstar/jest.config.js", - "hash": "3465031014798019550" - }, - { - "file": "packages/fluentui/react-icons-northstar/package.json", - "hash": "5931091629939874207", - "deps": [ - "npm:@babel/runtime", - "@fluentui/accessibility", - "@fluentui/react-bindings", - "@fluentui/styles", - "npm:classnames", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:@types/classnames", - "npm:lerna-alias", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-icons-northstar/project.json", - "hash": "2673713012878548677" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AcceptIcon.tsx", - "hash": "9767330132588126669" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AccessibilityIcon.tsx", - "hash": "3275560913924857013" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AddIcon.tsx", - "hash": "11874085924420919079" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AppFolderIcon.tsx", - "hash": "10312148648643735481" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ApprovalsAppbarIcon.tsx", - "hash": "1745626736151144385" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AppsIcon.tsx", - "hash": "15069474369474712622" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ArchiveIcon.tsx", - "hash": "11398532143434039339" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ArrowDownIcon.tsx", - "hash": "16325271689891166155" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ArrowLeftIcon.tsx", - "hash": "9221250842331686875" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ArrowRightIcon.tsx", - "hash": "2730967691145257400" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ArrowSortIcon.tsx", - "hash": "6094461093423187241" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ArrowSyncIcon.tsx", - "hash": "15766013812821710444" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ArrowUpIcon.tsx", - "hash": "4939672875425989341" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AttendeeIcon.tsx", - "hash": "14285830896017378869" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AudienceIcon.tsx", - "hash": "12250647430848484332" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AudioLoadingIcon.tsx", - "hash": "8012047090057191654" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/AudioOffIcon.tsx", - "hash": "946032617944927617" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BanIcon.tsx", - "hash": "593464898756515555" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BellIcon.tsx", - "hash": "11033097208023853390" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BellSlashIcon.tsx", - "hash": "7591509515225408307" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BellSnoozeIcon.tsx", - "hash": "6369921584818208554" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BluetoothIcon.tsx", - "hash": "15334535281749150230" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BoldIcon.tsx", - "hash": "8003201425970891211" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BookmarkIcon.tsx", - "hash": "15690454909475339837" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BreakoutRoomIcon.tsx", - "hash": "17054383108180468005" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BriefcaseIcon.tsx", - "hash": "10478364328091420482" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BroadcastIcon.tsx", - "hash": "3981239034303992809" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BroadcastViewFullscreenIcon.tsx", - "hash": "4249857887748612938" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BroadcastViewLeftIcon.tsx", - "hash": "14309947931521573574" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BuildingIcon.tsx", - "hash": "9863410715723811575" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/BulletsIcon.tsx", - "hash": "3553116472011548812" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CalendarAgendaIcon.tsx", - "hash": "13486160168791571840" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CalendarIcon.tsx", - "hash": "7908939309068871488" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CalendarWorkWeekIcon.tsx", - "hash": "15012893111927043994" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallBlockedIcon.tsx", - "hash": "11812511166458128842" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallControlCloseTrayIcon.tsx", - "hash": "13321761086561697169" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallControlPresentNewIcon.tsx", - "hash": "12300930260009159328" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallControlReleaseIcon.tsx", - "hash": "11474115645162748616" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallControlRequestIcon.tsx", - "hash": "17337124854225199349" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallControlShareIcon.tsx", - "hash": "13243426694714208518" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallControlStopPresentingNewIcon.tsx", - "hash": "6923024728426196189" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallDialpadIcon.tsx", - "hash": "18173546005506602826" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallEndIcon.tsx", - "hash": "6807397170524399524" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallIcon.tsx", - "hash": "13101657994810936681" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallMissedLineIcon.tsx", - "hash": "14382010946281942185" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallParkingIcon.tsx", - "hash": "9041753200234911760" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallPstnIcon.tsx", - "hash": "892374354652057083" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallRecordingIcon.tsx", - "hash": "1338496657346481805" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallVideoIcon.tsx", - "hash": "1747790287814309140" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CallVideoOffIcon.tsx", - "hash": "5569040523138575316" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CameraIcon.tsx", - "hash": "17772892043983818358" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CanvasAddPageIcon.tsx", - "hash": "11563591390427260327" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CartIcon.tsx", - "hash": "11772369317245466398" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CastingIcon.tsx", - "hash": "2794796235077473811" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ChannelShareIcon.tsx", - "hash": "133952854926906356" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ChatIcon.tsx", - "hash": "5891127100155450348" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ChatOffIcon.tsx", - "hash": "513054842676894271" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CheckmarkCircleIcon.tsx", - "hash": "13370034776084101658" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ChevronDownIcon.tsx", - "hash": "10679410130761146727" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ChevronDownMediumIcon.tsx", - "hash": "9881308937778058022" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ChevronEndIcon.tsx", - "hash": "14157278717926177046" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ChevronEndMediumIcon.tsx", - "hash": "9609092908967679756" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ChevronStartIcon.tsx", - "hash": "10619632485351580681" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CircleIcon.tsx", - "hash": "17759723735001282331" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ClipboardCopiedToIcon.tsx", - "hash": "17269187814463163724" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CloseIcon.tsx", - "hash": "5883069793501621836" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ClosedCaptionsIcon.tsx", - "hash": "8588005992574030043" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CodeSnippetIcon.tsx", - "hash": "3266125077547908119" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CollapseIcon.tsx", - "hash": "16990795667701224833" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CompanionIcon.tsx", - "hash": "16903738527604991088" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ComposeIcon.tsx", - "hash": "16911298295284661493" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ComputerAudioIcon.tsx", - "hash": "18002388544616103388" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ComputerAudioOffIcon.tsx", - "hash": "8092469846987677739" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ConferenceRoomDeviceIcon.tsx", - "hash": "6522927528427907880" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ContactCardIcon.tsx", - "hash": "5649466021280702633" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ContactGroupCallIcon.tsx", - "hash": "5357983575802334698" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ContactGroupIcon.tsx", - "hash": "967883254810176102" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ContentIcon.tsx", - "hash": "10364024546703268814" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ContentViewGalleryIcon.tsx", - "hash": "16956658867308258911" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/CustomerHubIcon.tsx", - "hash": "13327677392159958520" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/DesktopIcon.tsx", - "hash": "2290498536661256806" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/DoorArrowLeftIcon.tsx", - "hash": "11232970802031723674" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/DownloadIcon.tsx", - "hash": "9696663328514966811" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EditIcon.tsx", - "hash": "2445579134889833192" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EmailIcon.tsx", - "hash": "1358538480708497908" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EmailWithDotIcon.tsx", - "hash": "7629466379447640863" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EmojiAddIcon.tsx", - "hash": "16634487114604226561" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EmojiIcon.tsx", - "hash": "13544428296413020078" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EmojiSadIcon.tsx", - "hash": "16526152327799207932" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EmojiSurprisedIcon.tsx", - "hash": "17468242374398486398" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ErrorIcon.tsx", - "hash": "8264038088873975391" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ExcelColorIcon.tsx", - "hash": "5719703865902159961" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ExcelIcon.tsx", - "hash": "3091121359113518045" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ExclamationCircleIcon.tsx", - "hash": "5273179690351575014" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ExclamationTriangleIcon.tsx", - "hash": "7219678797532383065" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ExpandIcon.tsx", - "hash": "3478030962395266149" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EyeFriendlierIcon.tsx", - "hash": "12541816809773727614" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EyeIcon.tsx", - "hash": "5482205975972830342" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/EyeSlashIcon.tsx", - "hash": "14239087446261045134" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesAftereffectsIcon.tsx", - "hash": "15234785057276085979" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesCodeIcon.tsx", - "hash": "14171478505845468304" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesEmptyIcon.tsx", - "hash": "1160213663175422320" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesErrorIcon.tsx", - "hash": "11320107944649831249" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesFlashIcon.tsx", - "hash": "7938923755537745595" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesGenericColoredIcon.tsx", - "hash": "10103625455006717209" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesGifIcon.tsx", - "hash": "4457380569030031220" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesHtmlColoredIcon.tsx", - "hash": "18194598359668222388" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesIllustratorIcon.tsx", - "hash": "9403246467131235895" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesImageIcon.tsx", - "hash": "350148135600628262" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesIndesignIcon.tsx", - "hash": "5071194216838704901" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesOneNoteIcon.tsx", - "hash": "4576820073937361616" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesPdfColoredIcon.tsx", - "hash": "11369050801446260972" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesPdfIcon.tsx", - "hash": "15222484695233621043" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesPhotoshopIcon.tsx", - "hash": "8179122537363325570" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesPictureColoredIcon.tsx", - "hash": "10282255315995378774" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesSketchIcon.tsx", - "hash": "9747966208026329651" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesSoundIcon.tsx", - "hash": "13188911702512882018" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesTextColoredIcon.tsx", - "hash": "12525606082974032738" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesTxtIcon.tsx", - "hash": "11269954298617713317" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesUploadIcon.tsx", - "hash": "9955614448869579325" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesVideoIcon.tsx", - "hash": "11855260788037384210" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilesZipIcon.tsx", - "hash": "1368690835135742044" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FilterIcon.tsx", - "hash": "10501478521564293561" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FlagIcon.tsx", - "hash": "18309094007557461671" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FluidFileIcon.tsx", - "hash": "4818272200759283627" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FluidIcon.tsx", - "hash": "10327622295325099017" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FontColorIcon.tsx", - "hash": "1744684789516328003" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FontSizeIcon.tsx", - "hash": "38683636174248486" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/FormatIcon.tsx", - "hash": "1137153821765498269" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GalleryIcon.tsx", - "hash": "14131618810771546774" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GalleryNewIcon.tsx", - "hash": "16132451069627052985" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GalleryNewLargeIcon.tsx", - "hash": "12076589306496788140" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GeofenceArrivesIcon.tsx", - "hash": "4186510871357557845" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GeofenceArrivesOrLeavesIcon.tsx", - "hash": "9536982863141470609" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GeofenceLeavesIcon.tsx", - "hash": "15064869923803265193" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GiphyIcon.tsx", - "hash": "8256504984347443867" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GlassesIcon.tsx", - "hash": "18325767604386777180" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GlobeIcon.tsx", - "hash": "9653404386244516448" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GridIcon.tsx", - "hash": "1969174477760596194" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/GroupVideoCallGridIcon.tsx", - "hash": "1585568485104188562" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/HandIcon.tsx", - "hash": "16025566820558289292" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/HeadsetIcon.tsx", - "hash": "16153525151219761413" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/HighlightIcon.tsx", - "hash": "15885863172528029399" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/HorizontalRuleIcon.tsx", - "hash": "15541103414851377406" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx", - "hash": "13059579967633397450" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ImageLibraryIcon.tsx", - "hash": "7278742991513259939" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ImageUnavailableIcon.tsx", - "hash": "15118908578271240233" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/IndentIcon.tsx", - "hash": "3154547386263760649" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/InfoIcon.tsx", - "hash": "7499704622321949637" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ItalicIcon.tsx", - "hash": "5523477001534623087" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LeaveIcon.tsx", - "hash": "9574849704589104795" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LightningIcon.tsx", - "hash": "1795826485660131267" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LikeIcon.tsx", - "hash": "7063557235739393599" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LinkIcon.tsx", - "hash": "9504475344765367420" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LinkedInIcon.tsx", - "hash": "10057424091842677050" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ListIcon.tsx", - "hash": "1016000382589170647" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LiveIcon.tsx", - "hash": "5488215966531474142" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LiveOffIcon.tsx", - "hash": "16575361601864172959" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LocationIcon.tsx", - "hash": "8780492650668547069" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/LockIcon.tsx", - "hash": "4581542167815224919" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MarkAsUnreadIcon.tsx", - "hash": "8550877769355651073" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MeetingNewIcon.tsx", - "hash": "13618933089732729211" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MeetingTimeIcon.tsx", - "hash": "3462760770398000331" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MegaphoneIcon.tsx", - "hash": "13477115110126199760" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MentionIcon.tsx", - "hash": "10671365619704977659" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MenuIcon.tsx", - "hash": "15054434194038008137" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MergeCallsIcon.tsx", - "hash": "15676851599195598115" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MessageSeenIcon.tsx", - "hash": "5696795887902525033" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MicIcon.tsx", - "hash": "10360671465174889588" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MicOffIcon.tsx", - "hash": "7040357597540731851" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MicPulseIcon.tsx", - "hash": "7164242050306518142" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MicPulseOffIcon.tsx", - "hash": "7613420464512654680" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MicrophoneDisabledIcon.tsx", - "hash": "13505275375360955053" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MicrosoftStreamIcon.tsx", - "hash": "12399236842930770166" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MoleculeIcon.tsx", - "hash": "3716543851177200931" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/MoreIcon.tsx", - "hash": "16908136912455579545" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/NoPresenterIcon.tsx", - "hash": "15973919177186017219" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/NotepadPersonIcon.tsx", - "hash": "17977894304893167867" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/NotesIcon.tsx", - "hash": "16759640413579287848" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/NotificationsMutedIcon.tsx", - "hash": "5875687961337145635" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/NumberListIcon.tsx", - "hash": "1882868947842711159" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/NumberSymbolIcon.tsx", - "hash": "16604922701678220517" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OcrOffIcon.tsx", - "hash": "7440654068161564006" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OcrOnIcon.tsx", - "hash": "12156383114689500379" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OneDriveIcon.tsx", - "hash": "16545193094314310937" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OneNoteColorIcon.tsx", - "hash": "6922862962983788010" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OneNoteIcon.tsx", - "hash": "2068993209377571963" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OneNoteMonoIcon.tsx", - "hash": "2343842219262811176" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OpenOutsideIcon.tsx", - "hash": "9092134134437612636" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OptionsIcon.tsx", - "hash": "18060907312452018719" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OutdentIcon.tsx", - "hash": "18265199933622407843" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/OutlookColorIcon.tsx", - "hash": "5105630249207417895" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PageFitIcon.tsx", - "hash": "16900179939925437545" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PanoramaIcon.tsx", - "hash": "17105386830337265958" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PanoramaOffIcon.tsx", - "hash": "9219110978377875691" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PaperclipIcon.tsx", - "hash": "4239239177416059508" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ParticipantAddIcon.tsx", - "hash": "7735796838205869154" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ParticipantRemoveIcon.tsx", - "hash": "11325167042710733689" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PauseIcon.tsx", - "hash": "13917837797811056510" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PauseThickIcon.tsx", - "hash": "16173831918942597630" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PersonIcon.tsx", - "hash": "18052122118522564842" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PhoneArrowIcon.tsx", - "hash": "11801537605593537815" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PhoneClockIcon.tsx", - "hash": "6533652891516124895" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PhoneIcon.tsx", - "hash": "3382340320172925285" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PlayIcon.tsx", - "hash": "13165464782933234218" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PlugsIcon.tsx", - "hash": "11855916397961252431" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PollIcon.tsx", - "hash": "7075189384486642197" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PopupIcon.tsx", - "hash": "2065406050477623398" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PowerPointColorIcon.tsx", - "hash": "17874363582960773501" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PowerPointIcon.tsx", - "hash": "16137608827629885801" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PresenceAvailableIcon.tsx", - "hash": "9990957245604778132" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PresenceStrokeIcon.tsx", - "hash": "17824949820148605299" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/PresenterIcon.tsx", - "hash": "1698604231272056754" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/QnaIcon.tsx", - "hash": "8914778651417679270" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/QuestionCircleIcon.tsx", - "hash": "16459415809426073717" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/QuoteIcon.tsx", - "hash": "4434162689560226434" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RadioButtonIcon.tsx", - "hash": "5290220217869871570" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RaiseHandColoredIcon.tsx", - "hash": "13933793441697151098" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RaiseHandDisabledIcon.tsx", - "hash": "16001206708325701191" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RaiseHandIcon.tsx", - "hash": "10779312542230995138" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ReactionsIcon.tsx", - "hash": "6999409792852000504" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ReadAloudIcon.tsx", - "hash": "11043178403681303772" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RedbangIcon.tsx", - "hash": "16705215518281200085" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RedoIcon.tsx", - "hash": "14558141566220753769" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RemoveFormatIcon.tsx", - "hash": "18387780868820154748" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ReplyIcon.tsx", - "hash": "9946554331864851333" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RetryIcon.tsx", - "hash": "3854698078201679751" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/RobotIcon.tsx", - "hash": "2840301155558261180" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SaveIcon.tsx", - "hash": "10241612031127787183" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ScreencastIcon.tsx", - "hash": "8563482560859964140" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ScreenshareIcon.tsx", - "hash": "3541086519960619212" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SearchIcon.tsx", - "hash": "16949364921472168680" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SendIcon.tsx", - "hash": "16565582621699205586" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SettingsAudioIcon.tsx", - "hash": "8455142933026254255" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SettingsIcon.tsx", - "hash": "7451909565077434790" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ShareAltIcon.tsx", - "hash": "15780648612269482585" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ShareGenericIcon.tsx", - "hash": "10938679578550444171" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ShareLocationIcon.tsx", - "hash": "3246386558480608952" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ShareToIcon.tsx", - "hash": "8053903581216909211" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ShieldKeyholeIcon.tsx", - "hash": "14317516207879380558" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/Shift24hIcon.tsx", - "hash": "1576029036422660201" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ShiftActivityIcon.tsx", - "hash": "12476450379725202270" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SignatureIcon.tsx", - "hash": "6069221599925336926" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SkypeColorIcon.tsx", - "hash": "11964495383061464903" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SkypeLogoIcon.tsx", - "hash": "16297684578405621843" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SpeakerMuteIcon.tsx", - "hash": "10273594272555337023" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SpeakerPersonIcon.tsx", - "hash": "7942492364252775925" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SpotlightIcon.tsx", - "hash": "16387817515735522462" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SpotlightStopIcon.tsx", - "hash": "13011299275377774274" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/StarIcon.tsx", - "hash": "4739112390899235218" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/StickerIcon.tsx", - "hash": "9345777383730561198" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/StrikeIcon.tsx", - "hash": "385334962548583817" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SubtractIcon.tsx", - "hash": "8703089811411508672" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SurveyIcon.tsx", - "hash": "10594815324984023274" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SwitchCameraIcon.tsx", - "hash": "9644599959041167274" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/SyncIcon.tsx", - "hash": "3421771998885069070" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TableAddIcon.tsx", - "hash": "11081295009511690813" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TableDeleteIcon.tsx", - "hash": "11267456222392107793" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TableIcon.tsx", - "hash": "3122419123285994046" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TabsIcon.tsx", - "hash": "7652898168959998238" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TagIcon.tsx", - "hash": "17937754368960392939" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TaskListIcon.tsx", - "hash": "1664418548428026528" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TeamCreateIcon.tsx", - "hash": "270974819210504825" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TeamsIcon.tsx", - "hash": "7949896722513612029" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TeamsMonochromeIcon.tsx", - "hash": "14992713721668347008" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TenantPersonalIcon.tsx", - "hash": "6954339634002974222" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TenantWorkIcon.tsx", - "hash": "8507358463993447821" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TextBulletListTreeIcon.tsx", - "hash": "3709655949577500987" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ThumbtackIcon.tsx", - "hash": "2709424317170429241" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ThumbtackSlashIcon.tsx", - "hash": "14540796032563155748" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TiltPanZoomIcon.tsx", - "hash": "2371688619901089057" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ToDoListIcon.tsx", - "hash": "18434469593499531550" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TranscriptIcon.tsx", - "hash": "18087935866566701673" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TranslationIcon.tsx", - "hash": "11755231279667369736" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TrashCanIcon.tsx", - "hash": "1686967991801065474" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TriangleDownIcon.tsx", - "hash": "3886014635713707142" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TriangleEndIcon.tsx", - "hash": "3047775475417718304" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TriangleUpIcon.tsx", - "hash": "17735367172971239835" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TvIcon.tsx", - "hash": "10048426132113526467" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/TwitterIcon.tsx", - "hash": "1248041826801414084" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/UnderlineIcon.tsx", - "hash": "11124854209253009616" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/UndoIcon.tsx", - "hash": "15462322573799626280" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/UrgentIcon.tsx", - "hash": "4744484572233672521" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/UserBlurIcon.tsx", - "hash": "11390409467504388733" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/UserFriendsIcon.tsx", - "hash": "17291066650707229650" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/UserPhoneIcon.tsx", - "hash": "8901679073035539244" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VideoCameraEmphasisIcon.tsx", - "hash": "6451348667520126362" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VideoLoadingIcon.tsx", - "hash": "353970034285485305" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VideoPersonSparkleIcon.tsx", - "hash": "16532618699662540314" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VideoProhibitedIcon.tsx", - "hash": "6999552347189846573" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VideomailIcon.tsx", - "hash": "12381422681028134585" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VisioColorIcon.tsx", - "hash": "5000929538397412882" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VisioIcon.tsx", - "hash": "17345353077477829764" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VolumeDownIcon.tsx", - "hash": "8043599976898455867" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VolumeIcon.tsx", - "hash": "4727927519744567505" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/VolumeUpIcon.tsx", - "hash": "17041260730894082739" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/WandIcon.tsx", - "hash": "204054122499858724" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/WhiteboardIcon.tsx", - "hash": "12517907840141658211" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/WindowMaximizeIcon.tsx", - "hash": "6107504875620614835" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/WindowMinimizeIcon.tsx", - "hash": "8004388668609149200" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/WindowRestoreIcon.tsx", - "hash": "5810889239601404730" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/WordColorIcon.tsx", - "hash": "1919537979474435213" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/WordIcon.tsx", - "hash": "7577785938802895256" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/WorkOrSchoolIcon.tsx", - "hash": "13892222244017065102" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/YammerIcon.tsx", - "hash": "7970035682296632848" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ZoomInIcon.tsx", - "hash": "1687715738875566323" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ZoomOutIcon.tsx", - "hash": "11548925219174581327" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/components/ZoomToFitIcon.tsx", - "hash": "4663294501472986168" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/index.ts", - "hash": "10079002047266926316" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/utils/createSvgIcon.ts", - "hash": "8789639293750363611" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/utils/iconClassNames.ts", - "hash": "11445529543360569059" - }, - { - "file": "packages/fluentui/react-icons-northstar/src/utils/types.ts", - "hash": "15588436095144492247" - }, - { - "file": "packages/fluentui/react-icons-northstar/test/components/components-test.tsx", - "hash": "16260613535254906323" - }, - { - "file": "packages/fluentui/react-icons-northstar/test/utils/createSvgIcon-test.tsx", - "hash": "15904652190730318413" - }, - { - "file": "packages/fluentui/react-icons-northstar/tsconfig.json", - "hash": "15943827806802977490" - } - ], - "@fluentui/react-file-type-icons": [ - { - "file": "packages/react-file-type-icons/.eslintrc.json", - "hash": "777445592424795063" - }, - { - "file": "packages/react-file-type-icons/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/react-file-type-icons/CHANGELOG.json", - "hash": "1048374655728006466" - }, - { - "file": "packages/react-file-type-icons/CHANGELOG.md", - "hash": "11341487553535181736" - }, - { - "file": "packages/react-file-type-icons/LICENSE", - "hash": "6940075935154849214" - }, - { - "file": "packages/react-file-type-icons/README.md", - "hash": "4637521409527549815" - }, - { - "file": "packages/react-file-type-icons/jest.config.js", - "hash": "3240558433730290797" - }, - { - "file": "packages/react-file-type-icons/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-file-type-icons/package.json", - "hash": "2459179631925974315", - "deps": [ - "@fluentui/set-version", - "@fluentui/style-utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-file-type-icons/project.json", - "hash": "2426325572864020670" - }, - { - "file": "packages/react-file-type-icons/src/FileIconType.test.ts", - "hash": "8074533597091093516" - }, - { - "file": "packages/react-file-type-icons/src/FileIconType.ts", - "hash": "8669219161781017165" - }, - { - "file": "packages/react-file-type-icons/src/FileTypeIconMap.ts", - "hash": "1622694735442508136" - }, - { - "file": "packages/react-file-type-icons/src/getFileTypeIconAsHTMLString.test.ts", - "hash": "18012845855654093679" - }, - { - "file": "packages/react-file-type-icons/src/getFileTypeIconAsHTMLString.ts", - "hash": "17339860703958407032" - }, - { - "file": "packages/react-file-type-icons/src/getFileTypeIconAsUrl.test.ts", - "hash": "18070267997367805681" - }, - { - "file": "packages/react-file-type-icons/src/getFileTypeIconAsUrl.ts", - "hash": "12536579509046942436" - }, - { - "file": "packages/react-file-type-icons/src/getFileTypeIconProps.test.ts", - "hash": "2641647765184063437" - }, - { - "file": "packages/react-file-type-icons/src/getFileTypeIconProps.ts", - "hash": "6769978776431673776" - }, - { - "file": "packages/react-file-type-icons/src/index.ts", - "hash": "6043353553269314684" - }, - { - "file": "packages/react-file-type-icons/src/initializeFileTypeIcons.tsx", - "hash": "5377391151793324776" - }, - { - "file": "packages/react-file-type-icons/src/version.ts", - "hash": "17270333248350866991" - }, - { - "file": "packages/react-file-type-icons/tsconfig.json", - "hash": "3737244395638680036" - } - ], - "@fluentui/react-provider": [ - { - "file": "packages/react-components/react-provider/.babelrc.json", - "hash": "2096462375136904521" - }, - { - "file": "packages/react-components/react-provider/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-provider/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-provider/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-provider/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-provider/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-provider/CHANGELOG.json", - "hash": "108417590726351912" - }, - { - "file": "packages/react-components/react-provider/CHANGELOG.md", - "hash": "1116526773130530825" - }, - { - "file": "packages/react-components/react-provider/LICENSE", - "hash": "13549150797464198841" - }, - { - "file": "packages/react-components/react-provider/README.md", - "hash": "3720615893207556971" - }, - { - "file": "packages/react-components/react-provider/bundle-size/FluentProvider.fixture.js", - "hash": "12527860066414405224" - }, - { - "file": "packages/react-components/react-provider/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-provider/config/tests.js", - "hash": "14010006175392234982" - }, - { - "file": "packages/react-components/react-provider/etc/react-provider.api.md", - "hash": "5506599900252811007" - }, - { - "file": "packages/react-components/react-provider/jest.config.js", - "hash": "5036142973094437254" - }, - { - "file": "packages/react-components/react-provider/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-provider/package.json", - "hash": "1619886676318507914", - "deps": [ - "npm:@fluentui/react-icons", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/core", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-provider/project.json", - "hash": "9180676873197508756" - }, - { - "file": "packages/react-components/react-provider/src/FluentProvider.ts", - "hash": "3850447221714993967" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider-hydrate.test.tsx", - "hash": "13880435843164414546" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider-node.test.tsx", - "hash": "7793367056400359495" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.test.tsx", - "hash": "3377541994227020635" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.tsx", - "hash": "2751246076442384735" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.types.ts", - "hash": "6772065816773142755" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/__snapshots__/FluentProvider.test.tsx.snap", - "hash": "10433890136069603039" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/createCSSRuleFromTheme.test.ts", - "hash": "2527967971133399553" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/createCSSRuleFromTheme.ts", - "hash": "13841534288587055296" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/index.ts", - "hash": "6883603651365901962" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/renderFluentProvider.tsx", - "hash": "16727318347714133982" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProvider.test.tsx", - "hash": "15464636707560200947" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProvider.ts", - "hash": "11108514811781860865" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderContextValues.test.ts", - "hash": "4277988110613911860" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderContextValues.ts", - "hash": "16628905926299651978" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderStyles.styles.ts", - "hash": "4840669889939752003" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderThemeStyleTag.test.tsx", - "hash": "8101357930343770428" - }, - { - "file": "packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderThemeStyleTag.ts", - "hash": "10077234436893861533" - }, - { - "file": "packages/react-components/react-provider/src/index.ts", - "hash": "17864331557252480625" - }, - { - "file": "packages/react-components/react-provider/src/testing/isConformant.ts", - "hash": "3528474470343364133" - }, - { - "file": "packages/react-components/react-provider/stories/Provider/FluentProviderApplyStylesToPortals.stories.tsx", - "hash": "15066956984639683240" - }, - { - "file": "packages/react-components/react-provider/stories/Provider/FluentProviderBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-provider/stories/Provider/FluentProviderDefault.stories.tsx", - "hash": "1104809821168894069" - }, - { - "file": "packages/react-components/react-provider/stories/Provider/FluentProviderDescription.md", - "hash": "10297569764496749529" - }, - { - "file": "packages/react-components/react-provider/stories/Provider/FluentProviderDir.stories.tsx", - "hash": "5915476121845915577" - }, - { - "file": "packages/react-components/react-provider/stories/Provider/FluentProviderFrame.stories.tsx", - "hash": "17764123855331912505" - }, - { - "file": "packages/react-components/react-provider/stories/Provider/FluentProviderNested.stories.tsx", - "hash": "18297391744563059933" - }, - { - "file": "packages/react-components/react-provider/stories/Provider/index.stories.tsx", - "hash": "3190944166615926852" - }, - { - "file": "packages/react-components/react-provider/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-provider/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-provider/tsconfig.spec.json", - "hash": "6578707152334499940" - } - ], - "@fluentui/keyboard-key": [ - { - "file": "packages/keyboard-key/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/keyboard-key/.npmignore", - "hash": "7699079327417375383" - }, - { - "file": "packages/keyboard-key/CHANGELOG.json", - "hash": "10179365370606137091" - }, - { - "file": "packages/keyboard-key/CHANGELOG.md", - "hash": "147863297539555338" - }, - { - "file": "packages/keyboard-key/LICENSE", - "hash": "8930695425710127949" - }, - { - "file": "packages/keyboard-key/README.md", - "hash": "17220773256264690709" - }, - { - "file": "packages/keyboard-key/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/keyboard-key/etc/keyboard-key.api.md", - "hash": "10686124383883084997" - }, - { - "file": "packages/keyboard-key/jest.config.js", - "hash": "9635769799634201842" - }, - { - "file": "packages/keyboard-key/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/keyboard-key/package.json", - "hash": "1170975034285432666", - "deps": [ - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/keyboard-key/project.json", - "hash": "15756375364528527746" - }, - { - "file": "packages/keyboard-key/src/codes.ts", - "hash": "8066867947356659420" - }, - { - "file": "packages/keyboard-key/src/index.test.ts", - "hash": "11586213541177350052" - }, - { - "file": "packages/keyboard-key/src/index.ts", - "hash": "11633495272869031359" - }, - { - "file": "packages/keyboard-key/tsconfig.json", - "hash": "17161308168961447910" - } - ], - "@fluentui/react-component-nesting-registry": [ - { - "file": "packages/fluentui/react-component-nesting-registry/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/jest.config.js", - "hash": "13298147580513423019" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/package.json", - "hash": "18111405337855078839", - "deps": [ - "npm:@babel/runtime", - "npm:prop-types", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:lerna-alias", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-component-nesting-registry/project.json", - "hash": "13374112547541503236" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/NestingAuto.tsx", - "hash": "7526141950771152923" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/NestingChild.tsx", - "hash": "4246445019697112634" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/NestingContext.ts", - "hash": "16669676149117498549" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/NestingRoot.tsx", - "hash": "9446161289264562444" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/hooks/types.ts", - "hash": "10645677914917889256" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/hooks/useNestingAuto.ts", - "hash": "15907268444011966955" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/hooks/useNestingChild.ts", - "hash": "3316617878321338048" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/hooks/useNestingRoot.ts", - "hash": "6707493236734176145" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/index.ts", - "hash": "12115957419553385299" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/types.ts", - "hash": "7610298870192453020" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/src/utils/RefStack.ts", - "hash": "15272540730817118615" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/test/NestingAuto-test.tsx", - "hash": "3355074948005691137" - }, - { - "file": "packages/fluentui/react-component-nesting-registry/tsconfig.json", - "hash": "12214264623402812273" - } - ], - "@fluentui/projects-test": [ - { - "file": "packages/fluentui/projects-test/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/projects-test/README.md", - "hash": "7712439429583937954" - }, - { - "file": "packages/fluentui/projects-test/assets/.eslintrc.json", - "hash": "9463757486019526557" - }, - { - "file": "packages/fluentui/projects-test/assets/cra/src/App.tsx", - "hash": "13975067287482039525" - }, - { - "file": "packages/fluentui/projects-test/assets/nextjs/pages/index.js", - "hash": "16720790296375983707" - }, - { - "file": "packages/fluentui/projects-test/assets/rollup/app.js", - "hash": "13611222878904424794" - }, - { - "file": "packages/fluentui/projects-test/assets/rollup/index.html", - "hash": "11741015068606122975" - }, - { - "file": "packages/fluentui/projects-test/assets/rollup/rollup.config.js", - "hash": "13323537449881479399" - }, - { - "file": "packages/fluentui/projects-test/assets/typings/src/index.tsx", - "hash": "9172007156886044749" - }, - { - "file": "packages/fluentui/projects-test/assets/typings/tsconfig.json", - "hash": "3933573742264779466" - }, - { - "file": "packages/fluentui/projects-test/babel.config.js", - "hash": "7654395597360391156" - }, - { - "file": "packages/fluentui/projects-test/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/projects-test/package.json", - "hash": "4974496406254325970", - "deps": [ - "@fluentui/react-northstar", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-projects-test" - ] - }, - { - "file": "packages/fluentui/projects-test/project.json", - "hash": "11570660909808003153" - }, - { - "file": "packages/fluentui/projects-test/src/createReactApp.ts", - "hash": "14019440883191487480" - }, - { - "file": "packages/fluentui/projects-test/src/index.ts", - "hash": "6599092941110334536" - }, - { - "file": "packages/fluentui/projects-test/src/nextjs.ts", - "hash": "13103653866778791666" - }, - { - "file": "packages/fluentui/projects-test/src/rollup.ts", - "hash": "15862608973975210540" - }, - { - "file": "packages/fluentui/projects-test/src/typings.ts", - "hash": "1801624949097448713" - }, - { - "file": "packages/fluentui/projects-test/tsconfig.json", - "hash": "16064600855511744168" - } - ], - "@fluentui/react-cards": [ - { - "file": "packages/react-cards/.eslintrc.json", - "hash": "16931605920801268830" - }, - { - "file": "packages/react-cards/.npmignore", - "hash": "17767374615507000718" - }, - { - "file": "packages/react-cards/.npmrc", - "hash": "12117094813882964499" - }, - { - "file": "packages/react-cards/CHANGELOG.json", - "hash": "3202147163405935073" - }, - { - "file": "packages/react-cards/CHANGELOG.md", - "hash": "8747396549153497235" - }, - { - "file": "packages/react-cards/LICENSE", - "hash": "6253960424893387650" - }, - { - "file": "packages/react-cards/README.md", - "hash": "3477479143146211668" - }, - { - "file": "packages/react-cards/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/react-cards/config/tests.js", - "hash": "13209895427940926327" - }, - { - "file": "packages/react-cards/etc/react-cards.api.md", - "hash": "16727656835047585474" - }, - { - "file": "packages/react-cards/jest.config.js", - "hash": "8193037916930093299" - }, - { - "file": "packages/react-cards/just.config.ts", - "hash": "1545929909583215690" - }, - { - "file": "packages/react-cards/package.json", - "hash": "16789738612353226731", - "deps": [ - "@fluentui/react", - "@fluentui/foundation-legacy", - "@fluentui/set-version", - "npm:@microsoft/load-themed-styles", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/jest-serializer-merge-styles", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-cards/project.json", - "hash": "16529944636819246352" - }, - { - "file": "packages/react-cards/src/Card.ts", - "hash": "18296053792853651864" - }, - { - "file": "packages/react-cards/src/components/Card/Card.styles.ts", - "hash": "4685103703702010267" - }, - { - "file": "packages/react-cards/src/components/Card/Card.ts", - "hash": "1929423536789811973" - }, - { - "file": "packages/react-cards/src/components/Card/Card.types.ts", - "hash": "10662042676040928081" - }, - { - "file": "packages/react-cards/src/components/Card/Card.view.test.tsx", - "hash": "2651085214474441422" - }, - { - "file": "packages/react-cards/src/components/Card/Card.view.tsx", - "hash": "9706861711378212277" - }, - { - "file": "packages/react-cards/src/components/Card/CardItem/CardItem.styles.ts", - "hash": "11849349042222325569" - }, - { - "file": "packages/react-cards/src/components/Card/CardItem/CardItem.test.tsx", - "hash": "5993415043714882287" - }, - { - "file": "packages/react-cards/src/components/Card/CardItem/CardItem.ts", - "hash": "13327635575716341322" - }, - { - "file": "packages/react-cards/src/components/Card/CardItem/CardItem.types.ts", - "hash": "7220844002946880497" - }, - { - "file": "packages/react-cards/src/components/Card/CardItem/CardItem.view.tsx", - "hash": "11750096245423007155" - }, - { - "file": "packages/react-cards/src/components/Card/CardItem/__snapshots__/CardItem.test.tsx.snap", - "hash": "14582495706397215933" - }, - { - "file": "packages/react-cards/src/components/Card/CardSection/CardSection.styles.ts", - "hash": "9502018824459970625" - }, - { - "file": "packages/react-cards/src/components/Card/CardSection/CardSection.test.tsx", - "hash": "8362349948071743185" - }, - { - "file": "packages/react-cards/src/components/Card/CardSection/CardSection.ts", - "hash": "14518757228773854290" - }, - { - "file": "packages/react-cards/src/components/Card/CardSection/CardSection.types.ts", - "hash": "6877821299742157632" - }, - { - "file": "packages/react-cards/src/components/Card/CardSection/CardSection.view.tsx", - "hash": "10937983149567166874" - }, - { - "file": "packages/react-cards/src/components/Card/CardSection/__snapshots__/CardSection.test.tsx.snap", - "hash": "9695464788230094255" - }, - { - "file": "packages/react-cards/src/components/Card/__snapshots__/Card.view.test.tsx.snap", - "hash": "12038355267061100924" - }, - { - "file": "packages/react-cards/src/components/Card/index.ts", - "hash": "14729802027828598904" - }, - { - "file": "packages/react-cards/src/index.ts", - "hash": "8179513586981371037" - }, - { - "file": "packages/react-cards/src/version.ts", - "hash": "389976962689502133" - }, - { - "file": "packages/react-cards/tsconfig.json", - "hash": "15516134720009168635" - }, - { - "file": "packages/react-cards/webpack.config.js", - "hash": "17634613195548132917" - } - ], - "@fluentui/react-toolbar": [ - { - "file": "packages/react-components/react-toolbar/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-toolbar/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-toolbar/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-toolbar/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-toolbar/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-toolbar/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-toolbar/CHANGELOG.json", - "hash": "2679299470989409940" - }, - { - "file": "packages/react-components/react-toolbar/CHANGELOG.md", - "hash": "7443287667751919479" - }, - { - "file": "packages/react-components/react-toolbar/LICENSE", - "hash": "11699752302272615156" - }, - { - "file": "packages/react-components/react-toolbar/README.md", - "hash": "17327849331251576092" - }, - { - "file": "packages/react-components/react-toolbar/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-toolbar/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-toolbar/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-toolbar/docs/Spec.md", - "hash": "6230791134705908197" - }, - { - "file": "packages/react-components/react-toolbar/etc/react-toolbar.api.md", - "hash": "14892045251414762508" - }, - { - "file": "packages/react-components/react-toolbar/jest.config.js", - "hash": "1491522759465693041" - }, - { - "file": "packages/react-components/react-toolbar/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-toolbar/package.json", - "hash": "4069504963295153829", - "deps": [ - "@fluentui/react-button", - "@fluentui/react-divider", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "@fluentui/react-context-selector", - "@fluentui/react-radio", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-toolbar/project.json", - "hash": "15938424473686317514" - }, - { - "file": "packages/react-components/react-toolbar/src/Toolbar.ts", - "hash": "8394812810816711041" - }, - { - "file": "packages/react-components/react-toolbar/src/ToolbarButton.ts", - "hash": "15095606044855941967" - }, - { - "file": "packages/react-components/react-toolbar/src/ToolbarDivider.ts", - "hash": "5910102740128292344" - }, - { - "file": "packages/react-components/react-toolbar/src/ToolbarGroup.ts", - "hash": "1334304663874257745" - }, - { - "file": "packages/react-components/react-toolbar/src/ToolbarRadioButton.ts", - "hash": "16683479119449201369" - }, - { - "file": "packages/react-components/react-toolbar/src/ToolbarRadioGroup.ts", - "hash": "11025653910760393630" - }, - { - "file": "packages/react-components/react-toolbar/src/ToolbarToggleButton.ts", - "hash": "11558050513028606074" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.cy.tsx", - "hash": "18190796771724329956" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.test.tsx", - "hash": "13039308109964193960" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.tsx", - "hash": "6125519897848849531" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.types.ts", - "hash": "5769296385799820899" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/ToolbarContext.ts", - "hash": "16254330530638847001" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/__snapshots__/Toolbar.test.tsx.snap", - "hash": "3213917547931842953" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/index.ts", - "hash": "738351043517473027" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/renderToolbar.tsx", - "hash": "5344923693916361181" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/useToolbar.ts", - "hash": "16259873341228918636" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/useToolbarContextValues.tsx", - "hash": "12166336615514259420" - }, - { - "file": "packages/react-components/react-toolbar/src/components/Toolbar/useToolbarStyles.styles.ts", - "hash": "603069451744682951" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.test.tsx", - "hash": "13745661509449217165" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.tsx", - "hash": "6836800995793072290" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.types.ts", - "hash": "6180758115617748565" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/__snapshots__/ToolbarButton.test.tsx.snap", - "hash": "10247478132621931341" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/index.ts", - "hash": "11524062334948930900" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButton.ts", - "hash": "1039717625327272054" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButtonStyles.styles.ts", - "hash": "2967340636566566587" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.test.tsx", - "hash": "7264474627499337873" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.tsx", - "hash": "16225773209810846008" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.types.ts", - "hash": "14744270117949556840" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/__snapshots__/ToolbarDivider.test.tsx.snap", - "hash": "14415100046558031978" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/index.ts", - "hash": "1526444007332312428" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/useToolbarDivider.ts", - "hash": "17605264207797018150" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarDivider/useToolbarDividerStyles.styles.ts", - "hash": "5137750223570700400" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.test.tsx", - "hash": "3652445854445709654" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.tsx", - "hash": "10022688157462161383" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.types.ts", - "hash": "16010779742453253805" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/__snapshots__/ToolbarGroup.test.tsx.snap", - "hash": "16684155283501614261" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/index.ts", - "hash": "11269338224905271946" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/renderToolbarGroup.tsx", - "hash": "8478142400781213724" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroup.ts", - "hash": "16077103092893388185" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroupStyles.styles.ts", - "hash": "16900409052136883615" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.test.tsx", - "hash": "15085146305304111742" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.tsx", - "hash": "13585266228605300355" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.types.ts", - "hash": "1084262974156884328" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/__snapshots__/ToolbarRadioButton.test.tsx.snap", - "hash": "16686308830081031237" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/index.ts", - "hash": "1287773747565266338" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/useToolbarRadioButton.ts", - "hash": "13585520412147692119" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioButton/useToolbarRadioButtonStyles.styles.ts", - "hash": "882772897875100667" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.test.tsx", - "hash": "1666645086624633077" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.tsx", - "hash": "11597493060405972029" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.types.ts", - "hash": "5362057759819616453" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/__snapshots__/ToolbarRadioGroup.test.tsx.snap", - "hash": "6778642779289195059" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/index.ts", - "hash": "6797519109209546610" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.test.tsx", - "hash": "2785987815279519313" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.tsx", - "hash": "17286377178801905329" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.types.ts", - "hash": "2799630108927680878" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/__snapshots__/ToolbarToggleButton.test.tsx.snap", - "hash": "6448662158044233507" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/index.ts", - "hash": "3726334219305394579" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/useToolbarToggleButton.ts", - "hash": "10839425491090565227" - }, - { - "file": "packages/react-components/react-toolbar/src/components/ToolbarToggleButton/useToolbarToggleButtonStyles.styles.ts", - "hash": "4298852610540032162" - }, - { - "file": "packages/react-components/react-toolbar/src/index.ts", - "hash": "13436624389201452827" - }, - { - "file": "packages/react-components/react-toolbar/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarBestPractices.md", - "hash": "15729850903231663767" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarControlledToggleButton.stories.tsx", - "hash": "2229491058474026133" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarDefault.stories.tsx", - "hash": "12754270821430915606" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarDescription.md", - "hash": "11864277242571194941" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarFarGroup.stories.tsx", - "hash": "15410378090287586604" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarLarge.stories.tsx", - "hash": "1969991914501961647" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarMedium.stories.tsx", - "hash": "10266984033920926402" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarOverflow.stories.tsx", - "hash": "7713723578793215758" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarRadio.stories.tsx", - "hash": "2319780391350821451" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarRadioControlled.stories.tsx", - "hash": "6752560067054092764" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarSmall.stories.tsx", - "hash": "16300341684049215640" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarSubtle.stories.tsx", - "hash": "11114266572266597332" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarVertical.stories.tsx", - "hash": "112779657426848656" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarVerticalButton.stories.tsx", - "hash": "1450220188507366907" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarWithPopover.stories.tsx", - "hash": "15385353564918673854" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/ToolbarWithTooltip.stories.tsx", - "hash": "14225052960477459882" - }, - { - "file": "packages/react-components/react-toolbar/stories/Toolbar/index.stories.tsx", - "hash": "8744702613617176196" - }, - { - "file": "packages/react-components/react-toolbar/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-toolbar/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-toolbar/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-toolbar/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/pr-deploy-site": [ - { - "file": "apps/pr-deploy-site/.eslintrc.json", - "hash": "13367636068836493348" - }, - { - "file": "apps/pr-deploy-site/CHANGELOG.json", - "hash": "10223425423810861213" - }, - { - "file": "apps/pr-deploy-site/CHANGELOG.md", - "hash": "14685531263075523780" - }, - { - "file": "apps/pr-deploy-site/README.md", - "hash": "6722478197317014790" - }, - { - "file": "apps/pr-deploy-site/chiclet-test.html", - "hash": "9993395785341340820" - }, - { - "file": "apps/pr-deploy-site/index.html", - "hash": "100795799416268803" - }, - { - "file": "apps/pr-deploy-site/just.config.ts", - "hash": "17822963251943017025" - }, - { - "file": "apps/pr-deploy-site/package.json", - "hash": "15767832108474548373", - "deps": ["@fluentui/eslint-plugin", "@fluentui/scripts-tasks", "@fluentui/scripts-monorepo"] - }, - { - "file": "apps/pr-deploy-site/pr-deploy-site.css", - "hash": "4709491619076049329" - }, - { - "file": "apps/pr-deploy-site/pr-deploy-site.js", - "hash": "6526057395852723073" - }, - { - "file": "apps/pr-deploy-site/project.json", - "hash": "15758273448551696582" - }, - { - "file": "apps/pr-deploy-site/tsconfig.json", - "hash": "5982494929140394036" - } - ], - "@fluentui/react-select": [ - { - "file": "packages/react-components/react-select/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-select/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-select/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-select/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-select/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-select/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-select/CHANGELOG.json", - "hash": "17220450743865662035" - }, - { - "file": "packages/react-components/react-select/CHANGELOG.md", - "hash": "446421807821873597" - }, - { - "file": "packages/react-components/react-select/LICENSE", - "hash": "17145807327024823464" - }, - { - "file": "packages/react-components/react-select/README.md", - "hash": "10145820909930644942" - }, - { - "file": "packages/react-components/react-select/bundle-size/Select.fixture.js", - "hash": "17495459788921235447" - }, - { - "file": "packages/react-components/react-select/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-select/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-select/docs/Spec.md", - "hash": "5722250028980261869" - }, - { - "file": "packages/react-components/react-select/etc/react-select.api.md", - "hash": "3809105998633819686" - }, - { - "file": "packages/react-components/react-select/jest.config.js", - "hash": "11826049106570097430" - }, - { - "file": "packages/react-components/react-select/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-select/package.json", - "hash": "12286932727227470358", - "deps": [ - "@fluentui/react-field", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-select/project.json", - "hash": "15892150223184549744" - }, - { - "file": "packages/react-components/react-select/src/Select.ts", - "hash": "13526045668201639069" - }, - { - "file": "packages/react-components/react-select/src/components/Select/Select.test.tsx", - "hash": "932831788378200454" - }, - { - "file": "packages/react-components/react-select/src/components/Select/Select.tsx", - "hash": "7280199275130289075" - }, - { - "file": "packages/react-components/react-select/src/components/Select/Select.types.ts", - "hash": "16980961641113520849" - }, - { - "file": "packages/react-components/react-select/src/components/Select/__snapshots__/Select.test.tsx.snap", - "hash": "13921980301158282062" - }, - { - "file": "packages/react-components/react-select/src/components/Select/index.ts", - "hash": "4417052697791773506" - }, - { - "file": "packages/react-components/react-select/src/components/Select/renderSelect.tsx", - "hash": "13711059602504439985" - }, - { - "file": "packages/react-components/react-select/src/components/Select/useSelect.tsx", - "hash": "11162270922758090163" - }, - { - "file": "packages/react-components/react-select/src/components/Select/useSelectStyles.styles.ts", - "hash": "16121165471199880480" - }, - { - "file": "packages/react-components/react-select/src/index.ts", - "hash": "9960025239165988400" - }, - { - "file": "packages/react-components/react-select/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-select/stories/Select/SelectAppearance.stories.tsx", - "hash": "17338091775052657526" - }, - { - "file": "packages/react-components/react-select/stories/Select/SelectBestPractices.md", - "hash": "3732417789999507960" - }, - { - "file": "packages/react-components/react-select/stories/Select/SelectControlled.stories.tsx", - "hash": "18142795900071240816" - }, - { - "file": "packages/react-components/react-select/stories/Select/SelectDefault.stories.tsx", - "hash": "12697183069620726717" - }, - { - "file": "packages/react-components/react-select/stories/Select/SelectDescription.md", - "hash": "10480618255513286510" - }, - { - "file": "packages/react-components/react-select/stories/Select/SelectDisabled.stories.tsx", - "hash": "15695391597017870010" - }, - { - "file": "packages/react-components/react-select/stories/Select/SelectInitialValue.stories.tsx", - "hash": "15522135501908703756" - }, - { - "file": "packages/react-components/react-select/stories/Select/SelectSize.stories.tsx", - "hash": "4277834054578622137" - }, - { - "file": "packages/react-components/react-select/stories/Select/index.stories.tsx", - "hash": "10137669799075046942" - }, - { - "file": "packages/react-components/react-select/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-select/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-select/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-skeleton": [ - { - "file": "packages/react-components/react-skeleton/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-skeleton/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-skeleton/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-skeleton/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-skeleton/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-skeleton/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-skeleton/CHANGELOG.json", - "hash": "679359539185323451" - }, - { - "file": "packages/react-components/react-skeleton/CHANGELOG.md", - "hash": "6334137216127598218" - }, - { - "file": "packages/react-components/react-skeleton/LICENSE", - "hash": "6250075351376405297" - }, - { - "file": "packages/react-components/react-skeleton/README.md", - "hash": "9945271824711735043" - }, - { - "file": "packages/react-components/react-skeleton/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-skeleton/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-skeleton/docs/Spec.md", - "hash": "13897816479466826881" - }, - { - "file": "packages/react-components/react-skeleton/etc/react-skeleton.api.md", - "hash": "12992069425819779816" - }, - { - "file": "packages/react-components/react-skeleton/jest.config.js", - "hash": "16818982385918863004" - }, - { - "file": "packages/react-components/react-skeleton/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-skeleton/package.json", - "hash": "9881502438741616805", - "deps": [ - "@fluentui/react-field", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-skeleton/project.json", - "hash": "6832058475924967679" - }, - { - "file": "packages/react-components/react-skeleton/src/Skeleton.ts", - "hash": "9461944777064965632" - }, - { - "file": "packages/react-components/react-skeleton/src/SkeletonItem.ts", - "hash": "665334022754508154" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.test.tsx", - "hash": "13394572200286725794" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.tsx", - "hash": "18086715874337061343" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.types.ts", - "hash": "13299571602345388126" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/__snapshots__/Skeleton.test.tsx.snap", - "hash": "3334217445587362770" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/index.ts", - "hash": "13841092410544054723" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/renderSkeleton.tsx", - "hash": "7305045366474573892" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/useSkeleton.ts", - "hash": "2740017611819742026" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/useSkeletonContextValues.ts", - "hash": "11854161295718927797" - }, - { - "file": "packages/react-components/react-skeleton/src/components/Skeleton/useSkeletonStyles.ts", - "hash": "6689079878448742591" - }, - { - "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.test.tsx", - "hash": "4791116720155630220" - }, - { - "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.tsx", - "hash": "13870262086932997147" - }, - { - "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.types.ts", - "hash": "8046039834720139265" - }, - { - "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/__snapshots__/SkeletonItem.test.tsx.snap", - "hash": "6578516573999757376" - }, - { - "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/index.ts", - "hash": "6483213234680238457" - }, - { - "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/renderSkeletonItem.tsx", - "hash": "770450448065870423" - }, - { - "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/useSkeletonItem.tsx", - "hash": "7107674077111646501" - }, - { - "file": "packages/react-components/react-skeleton/src/components/SkeletonItem/useSkeletonItemStyles.styles.ts", - "hash": "13609891270571949523" - }, - { - "file": "packages/react-components/react-skeleton/src/contexts/SkeletonContext.ts", - "hash": "2682913424966864288" - }, - { - "file": "packages/react-components/react-skeleton/src/contexts/index.ts", - "hash": "1181885011368758139" - }, - { - "file": "packages/react-components/react-skeleton/src/index.ts", - "hash": "12430779751846790640" - }, - { - "file": "packages/react-components/react-skeleton/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonAnimation.stories.tsx", - "hash": "1551141379498317756" - }, - { - "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonAppearance.stories.tsx", - "hash": "3606600594729972921" - }, - { - "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonBestPractices.md", - "hash": "647232277873355848" - }, - { - "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonDefault.stories.tsx", - "hash": "4735990163474792631" - }, - { - "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonDescription.md", - "hash": "4308074357904685784" - }, - { - "file": "packages/react-components/react-skeleton/stories/Skeleton/SkeletonRow.stories.tsx", - "hash": "1889883679642715937" - }, - { - "file": "packages/react-components/react-skeleton/stories/Skeleton/index.stories.tsx", - "hash": "3159015755476887438" - }, - { - "file": "packages/react-components/react-skeleton/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-skeleton/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-skeleton/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/public-docsite-v9": [ - { - "file": "apps/public-docsite-v9/.eslintrc.json", - "hash": "12497812907571400468" - }, - { - "file": "apps/public-docsite-v9/.storybook/docs-root-v9.css", - "hash": "16563406447022184093" - }, - { - "file": "apps/public-docsite-v9/.storybook/fix-title.js", - "hash": "17599399265234770426" - }, - { - "file": "apps/public-docsite-v9/.storybook/main.js", - "hash": "6496718208363723616" - }, - { - "file": "apps/public-docsite-v9/.storybook/manager-head.html", - "hash": "13902987237282594488" - }, - { - "file": "apps/public-docsite-v9/.storybook/manager.js", - "hash": "540459751487629314" - }, - { - "file": "apps/public-docsite-v9/.storybook/preview.js", - "hash": "628810804158154204" - }, - { - "file": "apps/public-docsite-v9/.storybook/theme.js", - "hash": "7607713174807756313" - }, - { - "file": "apps/public-docsite-v9/.storybook/tsconfig.json", - "hash": "15192856431060810840" - }, - { - "file": "apps/public-docsite-v9/CHANGELOG.json", - "hash": "5406493558112367419" - }, - { - "file": "apps/public-docsite-v9/CHANGELOG.md", - "hash": "8062893342931727325" - }, - { - "file": "apps/public-docsite-v9/README.md", - "hash": "537846658286629306" - }, - { - "file": "apps/public-docsite-v9/just.config.ts", - "hash": "2411455081002746933" - }, - { - "file": "apps/public-docsite-v9/package.json", - "hash": "16525272186147476408", - "deps": [ - "@fluentui/react-calendar-compat", - "@fluentui/react-datepicker-compat", - "@fluentui/react-migration-v8-v9", - "@fluentui/react-migration-v0-v9", - "@fluentui/react", - "@fluentui/react-northstar", - "@fluentui/react-icons-northstar", - "@fluentui/react-components", - "@fluentui/react-storybook-addon", - "@fluentui/react-storybook-addon-export-to-sandbox", - "@fluentui/theme-designer", - "@fluentui/react-rating-preview", - "@fluentui/react-search-preview", - "@fluentui/react-motion-preview", - "@fluentui/react-teaching-popover-preview", - "@fluentui/react-timepicker-compat-preview", - "npm:@griffel/react", - "npm:@microsoft/applicationinsights-web", - "npm:react", - "npm:react-dom", - "npm:react-window", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-storybook", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "apps/public-docsite-v9/project.json", - "hash": "1043518714100618396" - }, - { - "file": "apps/public-docsite-v9/public/brand-ramp-example.png", - "hash": "15610878053853781255" - }, - { - "file": "apps/public-docsite-v9/public/favicon-192.ico", - "hash": "8084905982277287563" - }, - { - "file": "apps/public-docsite-v9/public/favicon.ico", - "hash": "16917280242094002623" - }, - { - "file": "apps/public-docsite-v9/public/fluent.svg", - "hash": "18218964943649168724" - }, - { - "file": "apps/public-docsite-v9/public/fluent9-chevrons.png", - "hash": "12840033210156090801" - }, - { - "file": "apps/public-docsite-v9/public/fluent9-spring.png", - "hash": "11573364905124166842" - }, - { - "file": "apps/public-docsite-v9/public/fluent9-stars.png", - "hash": "9893314943427985760" - }, - { - "file": "apps/public-docsite-v9/public/fluent9.png", - "hash": "5704881173370893026" - }, - { - "file": "apps/public-docsite-v9/public/fluentui-banner-meta.png", - "hash": "1719012936996521465" - }, - { - "file": "apps/public-docsite-v9/public/fluentui-banner2.jpg", - "hash": "18306632541452318124" - }, - { - "file": "apps/public-docsite-v9/public/fluentui-logo.svg", - "hash": "15653200647526419127" - }, - { - "file": "apps/public-docsite-v9/public/fluentui-wide-banner.webp", - "hash": "7418162448352499674" - }, - { - "file": "apps/public-docsite-v9/public/lightweight.svg", - "hash": "5657497639188991046" - }, - { - "file": "apps/public-docsite-v9/public/shell.css", - "hash": "5646785212764741393" - }, - { - "file": "apps/public-docsite-v9/public/spring.svg", - "hash": "1151285431788351073" - }, - { - "file": "apps/public-docsite-v9/public/style-resolution.excalidraw", - "hash": "1279300784780131453" - }, - { - "file": "apps/public-docsite-v9/public/style-resolution.png", - "hash": "3903023650636210804" - }, - { - "file": "apps/public-docsite-v9/public/tokens.svg", - "hash": "13691732948447367898" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/AdvancedConfiguration.stories.mdx", - "hash": "6027268182050122246" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/BrowserSupportMatrix.stories.mdx", - "hash": "1228607429917320857" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/BuildTimeStyles.stories.mdx", - "hash": "12437946029172170614" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Introduction.stories.mdx", - "hash": "3509193672195860507" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Avatar.stories.mdx", - "hash": "7500159876916604705" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Box.stories.mdx", - "hash": "17726929489974387754" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Button.stories.mdx", - "hash": "5165102981189121498" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/Card.stories.mdx", - "hash": "14151972520219956278" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardBody.stories.mdx", - "hash": "18162109570330781614" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardFooter.stories.mdx", - "hash": "4687093865631735497" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardHeader.stories.mdx", - "hash": "2050221457843558006" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardPreview.stories.mdx", - "hash": "11621837033913569045" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Checkbox.stories.mdx", - "hash": "18407956735545093769" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Divider.stories.mdx", - "hash": "13595048683221264730" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Flex.stories.mdx", - "hash": "11954588101481249892" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/FlexItem.stories.mdx", - "hash": "8420309599134924583" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Grid.stories.mdx", - "hash": "6700576905807336071" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Header.stories.mdx", - "hash": "4058145472704301164" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/ComparisonTile.styles.ts", - "hash": "1623254964187684935" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/ComparisonTile.tsx", - "hash": "6031510467069933075" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconCatalog.styles.ts", - "hash": "14720705468818279735" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconCatalog.tsx", - "hash": "10029602955996080382" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconGrid.tsx", - "hash": "13375498134383154357" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/iconMapping.ts", - "hash": "17191414831423116710" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/types.ts", - "hash": "13320189052275250119" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/useDebounce.ts", - "hash": "1627091520647089283" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Image.stories.mdx", - "hash": "9617825166794162424" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Input.stories.mdx", - "hash": "8366871421104612219" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/ItemLayout.stories.mdx", - "hash": "2291507764460056594" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Label.stories.mdx", - "hash": "10055988712162174323" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Loader.stories.mdx", - "hash": "14988360606182076802" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Menu.stories.mdx", - "hash": "13915961584180156834" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Popup.stories.mdx", - "hash": "18317202100908469848" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/RadioGroup.stories.mdx", - "hash": "2435464880236261514" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Ref.stories.mdx", - "hash": "6423583874536323626" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Segment.stories.mdx", - "hash": "5477278039908075779" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Slider.stories.mdx", - "hash": "18101668614946165878" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Spinner.stories.mdx", - "hash": "15312019235072516276" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/SplitButton.stories.mdx", - "hash": "1847294588723170087" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/TabList.stories.mdx", - "hash": "8391983318858567681" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Text.stories.mdx", - "hash": "10058089897799736192" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Textarea.stories.mdx", - "hash": "9208490595500693037" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Toolbar.stories.mdx", - "hash": "17071380723254082436" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Tooltip.stories.mdx", - "hash": "17455365854773573149" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/Icons.stories.mdx", - "hash": "17010056017852607842" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-custom-accessibility.stories.mdx", - "hash": "2596856736038670889" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-positioning.stories.mdx", - "hash": "17529793891355272427" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-styles.stories.mdx", - "hash": "17794812762778613022" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ComponentMapping.stories.mdx", - "hash": "16243915867913704219" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/AvatarGroup.stories.mdx", - "hash": "10119565970722557988" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Button.stories.mdx", - "hash": "11656382532750115105" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/Card.stories.mdx", - "hash": "14903830942748763588" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardFooter.stories.mdx", - "hash": "4062734561496252096" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardHeader.stories.mdx", - "hash": "10725482604752600152" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardPreview.stories.mdx", - "hash": "2059119778639415486" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Checkbox.stories.mdx", - "hash": "6823461108728301975" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Divider.stories.mdx", - "hash": "17785455521448078061" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Input.stories.mdx", - "hash": "15431601912224865768" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Label.stories.mdx", - "hash": "9054058141062094741" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Menu.stories.mdx", - "hash": "2558282556221331632" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/RadioGroup.stories.mdx", - "hash": "12226839331106575731" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Slider.stories.mdx", - "hash": "8003497693586564560" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv8Examples.stories.tsx", - "hash": "14715459287100320010" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv9Examples.stories.tsx", - "hash": "5673282445582931303" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/SpinButton.stories.mdx", - "hash": "9332700504183803319" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Spinner.stories.mdx", - "hash": "1809941066840167935" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Tabs.stories.mdx", - "hash": "4052626642361921649" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Textarea.stories.mdx", - "hash": "17808685935793411891" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Theme.stories.mdx", - "hash": "4384252736065296258" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/BrandColors.stories.tsx", - "hash": "16329563639900296559" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorBlock.styles.ts", - "hash": "3160347553800729901" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorBlock.tsx", - "hash": "8565745042529971498" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorCompare.tsx", - "hash": "15976953488790079976" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorMapping.stories.mdx", - "hash": "3020894949684801504" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/NamedColors.stories.tsx", - "hash": "11934418843702881095" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/NeutralColors.stories.tsx", - "hash": "2966669084201347416" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/SemanticColors.stories.tsx", - "hash": "5560789208522828535" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/colorMap.ts", - "hash": "1488055267438205957" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/colorUtils.ts", - "hash": "11801248277102989709" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/themeMap.ts", - "hash": "17925504785797383915" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/types.ts", - "hash": "13063420644715283401" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/FromV8/Troubleshooting.stories.mdx", - "hash": "8747907334094583065" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/GettingStarted.stories.mdx", - "hash": "9451779699191391096" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/HandlingBreakingChanges.stories.mdx", - "hash": "13000995019411734332" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Migration/KeepingDesignConsistent.stories.mdx", - "hash": "4274985729871756294" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/AreaCard.styles.ts", - "hash": "11383167343776703189" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/AreaCard.tsx", - "hash": "6998504548639232531" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/CodeItemCard.styles.ts", - "hash": "5690225079957065794" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/CodeItemCard.tsx", - "hash": "11390534584125618959" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/CodeItemIcons.tsx", - "hash": "1009357634118917580" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/Legend.styles.ts", - "hash": "10289947676290531535" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/Legend.tsx", - "hash": "13163962968913761556" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/OverviewCard.styles.ts", - "hash": "13023911342358279998" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/OverviewCard.tsx", - "hash": "3896737839883874452" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/PackageCard.styles.ts", - "hash": "3178517568105324799" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/PackageCard.tsx", - "hash": "8149333433858496621" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/Poster.stories.mdx", - "hash": "11768706133390347465" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/Poster.styles.ts", - "hash": "10078616957021919379" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/Poster.tsx", - "hash": "13510609166964038907" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/metadata.ts", - "hash": "246122072962373895" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Poster/types.ts", - "hash": "18096539967471875526" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/QuickStart.stories.mdx", - "hash": "3639996361033081603" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/SSR/MenuSSRDefaultOpen.stories.tsx", - "hash": "17417466496504427195" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/SSR/NextJSAppDir.stories.mdx", - "hash": "5618765040692212335" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/SSR/Nextjs.stories.mdx", - "hash": "6329398926014210453" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/SSR/Portals.stories.mdx", - "hash": "14703143921670652091" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/SSR/SSR.stories.mdx", - "hash": "17007025667679716727" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Slots/SlotSketch.stories.tsx", - "hash": "15629017638520325281" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Slots/Slots.stories.mdx", - "hash": "3201251314176313597" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/StylingComponents.stories.mdx", - "hash": "14475903966694824475" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/ThemeDesigner.stories.mdx", - "hash": "10163196227003295423" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/Theming.stories.mdx", - "hash": "18265015977572975070" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/components/WhatsNewBoxes.styles.ts", - "hash": "3505954724490374240" - }, - { - "file": "apps/public-docsite-v9/src/Concepts/components/WhatsNewBoxes.tsx", - "hash": "5997681001706950540" - }, - { - "file": "apps/public-docsite-v9/src/DocsComponents/DirSwitch.stories.tsx", - "hash": "17835614396368939615" - }, - { - "file": "apps/public-docsite-v9/src/DocsComponents/FluentDocsContainer.stories.tsx", - "hash": "7165188870592901014" - }, - { - "file": "apps/public-docsite-v9/src/DocsComponents/FluentDocsPage.stories.tsx", - "hash": "7081773190048278332" - }, - { - "file": "apps/public-docsite-v9/src/DocsComponents/ThemePicker.stories.tsx", - "hash": "15694390206129851378" - }, - { - "file": "apps/public-docsite-v9/src/DocsComponents/Toc.stories.tsx", - "hash": "12094141171645307537" - }, - { - "file": "apps/public-docsite-v9/src/shims/ThemeShim/themeDuplicates.ts", - "hash": "11231048427901921409" - }, - { - "file": "apps/public-docsite-v9/src/shims/ThemeShim/v8ThemeShim.ts", - "hash": "11884523527404188288" - }, - { - "file": "apps/public-docsite-v9/src/shims/ThemeShim/v9BrandVariantsShim.ts", - "hash": "6259229093326138167" - }, - { - "file": "apps/public-docsite-v9/src/shims/ThemeShim/v9ThemeShim.ts", - "hash": "9946586764904553104" - }, - { - "file": "apps/public-docsite-v9/tsconfig.app.json", - "hash": "2683353677112626789" - }, - { - "file": "apps/public-docsite-v9/tsconfig.json", - "hash": "12149056959744678629" - } - ], - "@fluentui/react-icons-mdl2-branded": [ - { - "file": "packages/react-icons-mdl2-branded/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-icons-mdl2-branded/.npmignore", - "hash": "7699079327417375383" - }, - { - "file": "packages/react-icons-mdl2-branded/CHANGELOG.json", - "hash": "5572846064800558832" - }, - { - "file": "packages/react-icons-mdl2-branded/CHANGELOG.md", - "hash": "6004498992866846212" - }, - { - "file": "packages/react-icons-mdl2-branded/LICENSE", - "hash": "7874699040565754716" - }, - { - "file": "packages/react-icons-mdl2-branded/README.md", - "hash": "6559004903633966452" - }, - { - "file": "packages/react-icons-mdl2-branded/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-icons-mdl2-branded/package.json", - "hash": "4013216088192523680", - "deps": [ - "@fluentui/set-version", - "@fluentui/react-icons-mdl2", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-icons-mdl2-branded/project.json", - "hash": "182356497911993089" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AADLogoIcon.tsx", - "hash": "286612657429892804" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ATPLogoIcon.tsx", - "hash": "13784004784877289281" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminALogo32Icon.tsx", - "hash": "13918755500788848136" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminALogoFill32Icon.tsx", - "hash": "1271871821797964572" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminALogoInverse32Icon.tsx", - "hash": "15572356902705291320" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminCLogoInverse32Icon.tsx", - "hash": "8291878645804224665" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminDLogoInverse32Icon.tsx", - "hash": "12605925310702167699" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminELogoInverse32Icon.tsx", - "hash": "2055064523378402409" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminIcon.tsx", - "hash": "17249102460938666539" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminLLogoInverse32Icon.tsx", - "hash": "5186632936760569047" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminMLogoInverse32Icon.tsx", - "hash": "534894712628818082" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminOLogoInverse32Icon.tsx", - "hash": "7077310521163798320" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminPLogoInverse32Icon.tsx", - "hash": "10023240628776751568" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminSLogoInverse32Icon.tsx", - "hash": "16725812218512154502" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AdminYLogoInverse32Icon.tsx", - "hash": "10971688238831377884" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AnalyticsLogoIcon.tsx", - "hash": "9146491538898029640" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AppIconDefaultAddIcon.tsx", - "hash": "3057290352682393613" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AppIconDefaultIcon.tsx", - "hash": "16322368519595134458" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AppIconDefaultListIcon.tsx", - "hash": "1875525878736528866" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AuthenticatorAppIcon.tsx", - "hash": "9035246704413886179" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AzureAPIManagementIcon.tsx", - "hash": "16863931877328318762" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AzureDataExplorerIcon.tsx", - "hash": "16715482426408220220" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AzureKeyVaultIcon.tsx", - "hash": "1876735140795216492" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AzureLogoIcon.tsx", - "hash": "1157520540581726064" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/AzureServiceEndpointIcon.tsx", - "hash": "10791926301689612077" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/BingLogoIcon.tsx", - "hash": "11095005553524243037" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/BookingsLogoIcon.tsx", - "hash": "16237838276555695215" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/BusinessCenterLogoIcon.tsx", - "hash": "1992258361865159624" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CSharpIcon.tsx", - "hash": "1218562371043262076" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CSharpLanguageIcon.tsx", - "hash": "4486900751399342960" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogo16Icon.tsx", - "hash": "1306772457103002006" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogo32Icon.tsx", - "hash": "13082486700176205468" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoFill16Icon.tsx", - "hash": "8096526662570019166" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoFill32Icon.tsx", - "hash": "4902069909469199769" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverse16Icon.tsx", - "hash": "11289604115372825136" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverse32Icon.tsx", - "hash": "9762210137361100029" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverseIcon.tsx", - "hash": "5659327487607017490" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ClassroomLogoIcon.tsx", - "hash": "2658662134413257154" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CloudAddIcon.tsx", - "hash": "8823984491201494189" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CloudDownloadIcon.tsx", - "hash": "11447080274954114683" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CloudEditIcon.tsx", - "hash": "15998901405605389656" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CloudIcon.tsx", - "hash": "12803745667366798375" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CloudImportExportIcon.tsx", - "hash": "11520403045238624252" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CloudLinkIcon.tsx", - "hash": "4528047515277517448" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CloudUploadIcon.tsx", - "hash": "12111269655658299111" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoBeckonInnerIcon.tsx", - "hash": "11204650693827031651" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoBeckonOuterIcon.tsx", - "hash": "1506803459583441120" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoInnerIcon.tsx", - "hash": "4993027430341599346" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoOuterIcon.tsx", - "hash": "6570916997666699040" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoReadyInnerIcon.tsx", - "hash": "5007601663442040819" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/CortanaLogoReadyOuterIcon.tsx", - "hash": "14586333191546845230" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/D365CoreHRIcon.tsx", - "hash": "11675479994053164507" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/D365CustomerInsightsIcon.tsx", - "hash": "7696962140726350337" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/D365ProjectOperationsIcon.tsx", - "hash": "12689837804929752593" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/D365TalentInsightIcon.tsx", - "hash": "8722510368816735518" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/D365TalentLearnIcon.tsx", - "hash": "9505091097402717202" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/DefenderTVMIcon.tsx", - "hash": "4870644410769153894" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/DelveAnalyticsIcon.tsx", - "hash": "5106396823492780885" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/DelveAnalyticsLogoIcon.tsx", - "hash": "17437764083205864353" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/DelveLogoFillIcon.tsx", - "hash": "4378901451898008002" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/DelveLogoIcon.tsx", - "hash": "11889962662708226215" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/DelveLogoInverseIcon.tsx", - "hash": "5563017822461835114" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/DocsLogoInverseIcon.tsx", - "hash": "17612230936000509677" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/DynamicSMBLogoIcon.tsx", - "hash": "8650766395468311932" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/Dynamics365LogoIcon.tsx", - "hash": "11964817414736042899" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/EaseOfAccessIcon.tsx", - "hash": "6782831925933246445" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/EdgeOldLogoIcon.tsx", - "hash": "12981348315562520653" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ExcelDocumentIcon.tsx", - "hash": "1953182811326908426" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ExcelLogo16Icon.tsx", - "hash": "15451858074289665199" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ExcelLogoIcon.tsx", - "hash": "4503561444784775358" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ExcelLogoInverse16Icon.tsx", - "hash": "10418691375627201464" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ExcelLogoInverseIcon.tsx", - "hash": "7408811467511219483" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ExchangeLogoIcon.tsx", - "hash": "1190109571660363185" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ExchangeLogoInverseIcon.tsx", - "hash": "10929102413050619142" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FSharpIcon.tsx", - "hash": "9700048294343458887" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FSharpLanguageIcon.tsx", - "hash": "12352319661851991875" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricAssetLibraryIcon.tsx", - "hash": "6355542684163004314" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricDataConnectionLibraryIcon.tsx", - "hash": "5654902665584785444" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricDocLibraryIcon.tsx", - "hash": "7635512283992981007" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderConfirmIcon.tsx", - "hash": "2211349472694303988" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderFillIcon.tsx", - "hash": "964294498720132834" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderIcon.tsx", - "hash": "10695342211099874865" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderLinkIcon.tsx", - "hash": "10429063494726626085" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderSearchIcon.tsx", - "hash": "6667557297700479924" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricFolderUploadIcon.tsx", - "hash": "1910850107847332198" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricFormLibraryIcon.tsx", - "hash": "393856321422346232" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricFormLibraryMirroredIcon.tsx", - "hash": "2107238495815253044" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricMovetoFolderIcon.tsx", - "hash": "15441331751229855364" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricNetworkFolderIcon.tsx", - "hash": "4937769319823027311" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricNewFolderIcon.tsx", - "hash": "5011754760717216363" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricOpenFolderHorizontalIcon.tsx", - "hash": "16101556240934332161" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricPictureLibraryIcon.tsx", - "hash": "7702059312920065229" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricPublicFolderIcon.tsx", - "hash": "1406354717120035387" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricReportLibraryIcon.tsx", - "hash": "15366135833518195967" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricReportLibraryMirroredIcon.tsx", - "hash": "587360560589104239" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricSyncFolderIcon.tsx", - "hash": "11849917451986376708" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricTextHighlightCompositeIcon.tsx", - "hash": "8764540473589052096" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricTextHighlightIcon.tsx", - "hash": "16283610349878347893" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricUnsyncFolderIcon.tsx", - "hash": "15422480604060536911" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FabricUserFolderIcon.tsx", - "hash": "1192153107196064422" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FileTypeSolutionIcon.tsx", - "hash": "3662559790348026514" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/FluidLogoIcon.tsx", - "hash": "17370571241108674595" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/GallatinLogoIcon.tsx", - "hash": "395239581866816777" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/KaizalaLogoIcon.tsx", - "hash": "12996616918427120232" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/LinkedInLogoIcon.tsx", - "hash": "12410113133867699448" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/LyncLogoIcon.tsx", - "hash": "12427794773746552395" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/M365InvoicingLogoIcon.tsx", - "hash": "6432220689512606158" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MSNLogoIcon.tsx", - "hash": "997872328623258600" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MSNVideosIcon.tsx", - "hash": "3837439073069506492" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MSNVideosSolidIcon.tsx", - "hash": "6558132186060318074" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MTMLogoIcon.tsx", - "hash": "1617837189040859513" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftFlowLogoIcon.tsx", - "hash": "12738157357695453070" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftStaffhubLogoIcon.tsx", - "hash": "11635328036602536226" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoBlueIcon.tsx", - "hash": "13131018300687774701" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoGreenIcon.tsx", - "hash": "7995428099799207563" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoIcon.tsx", - "hash": "17740888294142646264" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/MixerLogoIcon.tsx", - "hash": "2066196399332209055" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/NUIFaceIcon.tsx", - "hash": "15740059719288959586" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/NugetLogoIcon.tsx", - "hash": "7248304310428830654" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeAddinsLogoIcon.tsx", - "hash": "6014758584722489650" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeAssistantLogoIcon.tsx", - "hash": "15148982425841752965" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogo16Icon.tsx", - "hash": "11563564485285736203" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogo24Icon.tsx", - "hash": "5199176739895186676" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoIcon.tsx", - "hash": "14251883998842401693" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverse16Icon.tsx", - "hash": "16828025945656129995" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverse24Icon.tsx", - "hash": "8691064696395649094" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverseIcon.tsx", - "hash": "13561091795038698825" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeLogoIcon.tsx", - "hash": "18326076488817609104" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeStoreLogoIcon.tsx", - "hash": "7632809471286021588" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoFillIcon.tsx", - "hash": "12326348413282257076" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoIcon.tsx", - "hash": "18042148677451131857" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoInverseIcon.tsx", - "hash": "9111845006778088774" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfflineOneDriveParachuteDisabledIcon.tsx", - "hash": "4569305382823957773" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OfflineOneDriveParachuteIcon.tsx", - "hash": "11708134621038314260" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneDriveAddIcon.tsx", - "hash": "1339929739213542352" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneDriveFileVaultIcon.tsx", - "hash": "7691382481774395461" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneDriveFolder16Icon.tsx", - "hash": "15118961307125957626" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneDriveLogoIcon.tsx", - "hash": "15202151660658133990" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneNoteEduLogoInverseIcon.tsx", - "hash": "5073802520265164743" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneNoteLogo16Icon.tsx", - "hash": "8126472621555093392" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneNoteLogoIcon.tsx", - "hash": "10168387188200397957" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneNoteLogoInverse16Icon.tsx", - "hash": "4050397123839257559" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OneNoteLogoInverseIcon.tsx", - "hash": "15289706149754656126" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OutlookLogo16Icon.tsx", - "hash": "7133650664491934421" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OutlookLogoIcon.tsx", - "hash": "11060465217645778207" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OutlookLogoInverse16Icon.tsx", - "hash": "17275945938623363109" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OutlookLogoInverseIcon.tsx", - "hash": "14540781013559732269" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/OutlookSpacesBucketIcon.tsx", - "hash": "12512134648162524854" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PlannerLogoIcon.tsx", - "hash": "13881355230438925573" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerApps2LogoIcon.tsx", - "hash": "9147199073187918517" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerAppsIcon.tsx", - "hash": "15945765988151351445" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerAppsLogoIcon.tsx", - "hash": "4108964653569237085" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerBILogo16Icon.tsx", - "hash": "1705883498391270004" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerBILogoBackplate16Icon.tsx", - "hash": "16863750704521208261" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerBILogoIcon.tsx", - "hash": "11744984325483917702" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerPointDocumentIcon.tsx", - "hash": "13413889276743138496" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerPointLogo16Icon.tsx", - "hash": "15159308528546989637" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerPointLogoIcon.tsx", - "hash": "1161549358748291781" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerPointLogoInverse16Icon.tsx", - "hash": "14572773921008382391" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerPointLogoInverseIcon.tsx", - "hash": "5515315351698523797" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerShell2Icon.tsx", - "hash": "9607241218249762348" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PowerShellIcon.tsx", - "hash": "1215366400765232443" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/Project2019DocumentIcon.tsx", - "hash": "2947526506141893256" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ProjectCollectionIcon.tsx", - "hash": "9137480349369194321" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ProjectDocumentIcon.tsx", - "hash": "4824514570525933892" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ProjectLogo16Icon.tsx", - "hash": "17897242666248559019" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ProjectLogo32Icon.tsx", - "hash": "17335364980672858735" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ProjectLogoInverseIcon.tsx", - "hash": "9639893396035436074" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ProtectionCenterLogo32Icon.tsx", - "hash": "5415769882865013432" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PublisherLogo16Icon.tsx", - "hash": "11547496209099992938" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PublisherLogoIcon.tsx", - "hash": "12224610314668748743" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/PublisherLogoInverse16Icon.tsx", - "hash": "10768589395164248513" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/RecycleBinIcon.tsx", - "hash": "4431919377309825291" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SchoolDataSyncLogoIcon.tsx", - "hash": "7329348036185854951" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SharepointAppIcon16Icon.tsx", - "hash": "11913691047292805113" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SharepointLogoIcon.tsx", - "hash": "2973253366437178853" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SharepointLogoInverseIcon.tsx", - "hash": "547323045296380184" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ShieldAlertIcon.tsx", - "hash": "16953362426179349363" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ShieldIcon.tsx", - "hash": "12222566642242764707" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ShieldSolidIcon.tsx", - "hash": "5674612406598905196" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleArrowIcon.tsx", - "hash": "16212602154023944478" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleCheckIcon.tsx", - "hash": "16698736842509718563" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleClockIcon.tsx", - "hash": "11187044799816934889" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleMinusIcon.tsx", - "hash": "13491166295728586000" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeCircleSlashIcon.tsx", - "hash": "12478069904088362976" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogo16Icon.tsx", - "hash": "11717893424251261207" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoFill16Icon.tsx", - "hash": "8575456796504640227" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoFillIcon.tsx", - "hash": "3211676103062894506" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoIcon.tsx", - "hash": "3328870468482787133" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeLogo16Icon.tsx", - "hash": "4216393599475392793" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeLogoIcon.tsx", - "hash": "10970989583765084564" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeMessageIcon.tsx", - "hash": "3891774845871204894" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SkypeSlashIcon.tsx", - "hash": "15728439011720121890" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SocialListeningLogoIcon.tsx", - "hash": "9734123862450723424" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogo16Icon.tsx", - "hash": "7244885805437496064" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogo32Icon.tsx", - "hash": "12096858272751002311" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoFill16Icon.tsx", - "hash": "387841461450406720" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoFill32Icon.tsx", - "hash": "7990858656352105381" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoInverted16Icon.tsx", - "hash": "1699636953066137992" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoInverted32Icon.tsx", - "hash": "8411199570320499133" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StickyNotesOutlineAppIconIcon.tsx", - "hash": "7508617851836741600" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StickyNotesSolidAppIconIcon.tsx", - "hash": "4519535920540625805" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StoreLogo16Icon.tsx", - "hash": "3730154522145728562" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StoreLogoMed20Icon.tsx", - "hash": "16218634217032109378" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/StreamLogoIcon.tsx", - "hash": "5114054364460018332" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SwayLogo16Icon.tsx", - "hash": "13142288730916211955" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SwayLogo32Icon.tsx", - "hash": "7015704915605563198" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SwayLogoFill16Icon.tsx", - "hash": "5440418177171701369" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SwayLogoFill32Icon.tsx", - "hash": "9383255395977678826" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/SwayLogoInverseIcon.tsx", - "hash": "1651266669379649298" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/TFVCLogoIcon.tsx", - "hash": "4522981229589531678" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/TaskLogoIcon.tsx", - "hash": "6937125034367876098" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/TeamsLogo16Icon.tsx", - "hash": "4518194404707385484" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/TeamsLogoIcon.tsx", - "hash": "2058189545298767077" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/TeamsLogoInverseIcon.tsx", - "hash": "6880701599345693655" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ToDoLogoBottomIcon.tsx", - "hash": "2586784011837635459" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ToDoLogoInverseIcon.tsx", - "hash": "5713704551578775823" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ToDoLogoOutlineIcon.tsx", - "hash": "17289038086286653881" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/ToDoLogoTopIcon.tsx", - "hash": "5119451226450060347" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/TypeScriptLanguageIcon.tsx", - "hash": "4965199824729399882" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VSTSAltLogo1Icon.tsx", - "hash": "16122007415797523884" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VSTSAltLogo2Icon.tsx", - "hash": "14342687992320244536" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VSTSLogoIcon.tsx", - "hash": "5067263600814696839" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisioDiagramIcon.tsx", - "hash": "12955868772798195807" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisioDiagramSyncIcon.tsx", - "hash": "2684076828907175078" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisioDocumentIcon.tsx", - "hash": "11451545399228857597" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisioLogo16Icon.tsx", - "hash": "15699950363884732544" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisioLogoIcon.tsx", - "hash": "11277632155737288079" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisioLogoInverse16Icon.tsx", - "hash": "6579132367741458351" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisioLogoInverseIcon.tsx", - "hash": "6141482260623012289" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisualBasicLanguageIcon.tsx", - "hash": "17351361460595550751" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisualStudioIDELogo32Icon.tsx", - "hash": "3297659863569634452" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VisualStudioLogoIcon.tsx", - "hash": "3921352685862917392" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/VivaEngageIcon.tsx", - "hash": "15738913926237603580" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WaffleOffice365Icon.tsx", - "hash": "2252766351274000701" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WebAppBuilderFragmentCreateIcon.tsx", - "hash": "1463616614984543493" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WebAppBuilderFragmentIcon.tsx", - "hash": "14848667160233281856" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WebAppBuilderModuleIcon.tsx", - "hash": "9260469117886312397" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WebAppBuilderSlotIcon.tsx", - "hash": "72036574105245107" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WhiteBoardApp16Icon.tsx", - "hash": "15901343271537059202" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WhiteBoardApp32Icon.tsx", - "hash": "13969726970012006484" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WindowsLogoIcon.tsx", - "hash": "3971496456219229417" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WordDocumentIcon.tsx", - "hash": "9906863102417860978" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WordLogo16Icon.tsx", - "hash": "13294245168007756326" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WordLogoIcon.tsx", - "hash": "10758064000164288561" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WordLogoInverse16Icon.tsx", - "hash": "2761116872095713698" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/WordLogoInverseIcon.tsx", - "hash": "3972220353064318114" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/XboxLogoIcon.tsx", - "hash": "14069322545871919082" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/XboxOneConsoleIcon.tsx", - "hash": "16771077986371339927" - }, - { - "file": "packages/react-icons-mdl2-branded/src/components/YammerLogoIcon.tsx", - "hash": "15020404209578345557" - }, - { - "file": "packages/react-icons-mdl2-branded/src/index.ts", - "hash": "2586773828929508699" - }, - { - "file": "packages/react-icons-mdl2-branded/src/version.ts", - "hash": "1378911257610677358" - }, - { - "file": "packages/react-icons-mdl2-branded/tsconfig.json", - "hash": "16918675067402812126" - } - ], - "@fluentui/react-components": [ - { - "file": "packages/react-components/react-components/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-components/.eslintrc.json", - "hash": "16150242168540975786" - }, - { - "file": "packages/react-components/react-components/.gitignore", - "hash": "13372735117233221667" - }, - { - "file": "packages/react-components/react-components/.storybook/main.js", - "hash": "5645485037555221482" - }, - { - "file": "packages/react-components/react-components/.storybook/preview.js", - "hash": "8038481416891966773" - }, - { - "file": "packages/react-components/react-components/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-components/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-components/CHANGELOG.json", - "hash": "3933417667138973232" - }, - { - "file": "packages/react-components/react-components/CHANGELOG.md", - "hash": "15663227018170933658" - }, - { - "file": "packages/react-components/react-components/LICENSE", - "hash": "10255657226477075794" - }, - { - "file": "packages/react-components/react-components/README.md", - "hash": "11587884417356817137" - }, - { - "file": "packages/react-components/react-components/assets/alert-keyboard.png", - "hash": "15249732195573034994" - }, - { - "file": "packages/react-components/react-components/assets/alert-mouse-touch.png", - "hash": "12249460593997234403" - }, - { - "file": "packages/react-components/react-components/assets/dialog-anatomy.png", - "hash": "9790416628323586517" - }, - { - "file": "packages/react-components/react-components/assets/modal-keyboard.png", - "hash": "9012292467073880542" - }, - { - "file": "packages/react-components/react-components/assets/modal-mouse-touch.png", - "hash": "3033643199014309546" - }, - { - "file": "packages/react-components/react-components/assets/non-modal-keyboard.png", - "hash": "11384655701996986210" - }, - { - "file": "packages/react-components/react-components/assets/non-modal-mouse-touch.png", - "hash": "16247262641136131571" - }, - { - "file": "packages/react-components/react-components/bundle-size/ButtonProviderAndTheme.fixture.js", - "hash": "17019747510632370214" - }, - { - "file": "packages/react-components/react-components/bundle-size/MultipleComponents.fixture.js", - "hash": "7427445305648856257" - }, - { - "file": "packages/react-components/react-components/bundle-size/ProviderAndTheme.fixture.js", - "hash": "12914286093854360655" - }, - { - "file": "packages/react-components/react-components/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-components/config/api-extractor.unstable.json", - "hash": "9512960027067289088" - }, - { - "file": "packages/react-components/react-components/config/pre-copy.json", - "hash": "8933244511250124822" - }, - { - "file": "packages/react-components/react-components/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-components/docs/MIGRATION-NOTES.md", - "hash": "4521324631345225068" - }, - { - "file": "packages/react-components/react-components/etc/react-components.api.md", - "hash": "18095309827241643254" - }, - { - "file": "packages/react-components/react-components/etc/react-components.unstable.api.md", - "hash": "4109143100580997913" - }, - { - "file": "packages/react-components/react-components/jest.config.js", - "hash": "11810330001400121529" - }, - { - "file": "packages/react-components/react-components/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-components/package.json", - "hash": "6821435458712997046", - "deps": [ - "@fluentui/react-accordion", - "@fluentui/react-alert", - "@fluentui/react-avatar", - "@fluentui/react-badge", - "@fluentui/react-button", - "@fluentui/react-card", - "@fluentui/react-checkbox", - "@fluentui/react-combobox", - "@fluentui/react-dialog", - "@fluentui/react-divider", - "@fluentui/react-drawer", - "@fluentui/react-field", - "@fluentui/react-image", - "@fluentui/react-infobutton", - "@fluentui/react-infolabel", - "@fluentui/react-input", - "@fluentui/react-label", - "@fluentui/react-link", - "@fluentui/react-menu", - "@fluentui/react-overflow", - "@fluentui/react-persona", - "@fluentui/react-portal", - "@fluentui/react-popover", - "@fluentui/react-positioning", - "@fluentui/react-progress", - "@fluentui/react-provider", - "@fluentui/react-radio", - "@fluentui/react-select", - "@fluentui/react-shared-contexts", - "@fluentui/react-skeleton", - "@fluentui/react-slider", - "@fluentui/react-spinbutton", - "@fluentui/react-spinner", - "@fluentui/react-switch", - "@fluentui/react-table", - "@fluentui/react-tabs", - "@fluentui/react-tabster", - "@fluentui/react-tags", - "@fluentui/react-textarea", - "@fluentui/react-theme", - "@fluentui/react-toast", - "@fluentui/react-toolbar", - "@fluentui/react-tooltip", - "@fluentui/react-utilities", - "@fluentui/react-text", - "@fluentui/react-virtualizer", - "@fluentui/react-tree", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/react-message-bar", - "@fluentui/react-breadcrumb", - "@fluentui/eslint-plugin", - "npm:react-hook-form", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-components/project.json", - "hash": "15915132305255283070" - }, - { - "file": "packages/react-components/react-components/src/Concepts/Icons/ReactIconGrid.tsx", - "hash": "15648366075411592656" - }, - { - "file": "packages/react-components/react-components/src/index.ts", - "hash": "9602633354990534895" - }, - { - "file": "packages/react-components/react-components/src/unstable/index.ts", - "hash": "17127110014653250113" - }, - { - "file": "packages/react-components/react-components/src/unstable/package.json__tmpl__", - "hash": "14469017445902889019" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Accordion.stories.tsx", - "hash": "5261274850033724196" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/AccordionFaq.stories.tsx", - "hash": "3711296761758539461" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Button.stories.tsx", - "hash": "9135053873053394162" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Checkbox.stories.tsx", - "hash": "18422225923861027839" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Input.stories.tsx", - "hash": "13031699296131987255" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Link.stories.tsx", - "hash": "9284047790819060564" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/ListOfScenarios.stories.mdx", - "hash": "18008776474087302263" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Menu.stories.tsx", - "hash": "5496036381131988450" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/MenuSplitGroup.stories.tsx", - "hash": "13714132678203560925" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Popover.stories.tsx", - "hash": "1484726241091602586" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/RadioGroup.stories.tsx", - "hash": "7308888334073459506" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Slider.stories.tsx", - "hash": "13192574564934461371" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Spinner.stories.tsx", - "hash": "6986065893612221448" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/SplitButton.stories.tsx", - "hash": "7176544829687519936" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Switch.stories.tsx", - "hash": "15970436396001209984" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/TabListHorizontal.stories.tsx", - "hash": "9938150602800442377" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/TabListOverflow.stories.tsx", - "hash": "15038822242040527851" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/TabListVertical.stories.tsx", - "hash": "16057335239807774657" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Textarea.stories.tsx", - "hash": "9635748482005322625" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/ToggleButton.stories.tsx", - "hash": "17407275276966444104" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/Tooltip.stories.tsx", - "hash": "17546321637487339355" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/index.stories.tsx", - "hash": "14658705870973190500" - }, - { - "file": "packages/react-components/react-components/stories/AccessibilityScenarios/utils.tsx", - "hash": "7215302430949320194" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Accessibility/AccessibleComponents.stories.mdx", - "hash": "3295771942860848592" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Accessibility/AccessibleExperiences.stories.mdx", - "hash": "2900291657079817589" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Accessibility/FocusIndicator.stories.mdx", - "hash": "1717337186527803258" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Axis.stories.tsx", - "hash": "10318348332393326457" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/CircularNavigation.stories.tsx", - "hash": "6781750418223870091" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Default.stories.tsx", - "hash": "13313594812236532657" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Memorize.stories.tsx", - "hash": "1820798249934632278" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/index.stories.tsx", - "hash": "6967816180948552799" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/useArrowNavigationGroupDescription.md", - "hash": "2031447657270072240" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/Default.stories.tsx", - "hash": "13224545909870604584" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindAllWhere.stories.tsx", - "hash": "9017130571781111926" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindFirst.stories.tsx", - "hash": "317264299185587249" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindLast.stories.tsx", - "hash": "18052296652579568309" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindNext.stories.tsx", - "hash": "17925103578502891443" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindPrevious.stories.tsx", - "hash": "10084829099646404716" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/index.stories.tsx", - "hash": "9794805248352104971" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/useFocusFindersDescription.md", - "hash": "9049217529934217066" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/Default.stories.tsx", - "hash": "9065252716333350570" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/Limited.stories.tsx", - "hash": "9555705919210714710" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/LimitedTrapFocus.stories.tsx", - "hash": "13702213217400448084" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/index.stories.tsx", - "hash": "157374974440116360" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/useFocusableGroupDescription.md", - "hash": "8837756520973428757" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/Default.stories.tsx", - "hash": "12297290380505646340" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/InertFocusTrap.stories.tsx", - "hash": "18201555536110422598" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/index.stories.tsx", - "hash": "6330308829316680025" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/useModalAttributesDescription.md", - "hash": "8341388369435401062" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/Default.stories.tsx", - "hash": "10152294546566560089" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/MultipleNames.stories.tsx", - "hash": "9397108312180853844" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/index.stories.tsx", - "hash": "2051553537147974031" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/useObservedElementDescription.md", - "hash": "9542011707964967918" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/Default.stories.stories.tsx", - "hash": "11494446748156496224" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/FocusRestoreHistory.stories.tsx", - "hash": "3681364596967862819" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/UserRestoreFocus.stories.stories.tsx", - "hash": "9793947365179708427" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/index.stories.tsx", - "hash": "1448366491964554873" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/useRestoreFocusSourceDescription.md", - "hash": "727321225129794077" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/Default.stories.tsx", - "hash": "6326143576473960437" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/index.stories.tsx", - "hash": "5639657332615332719" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/useUncontrolledFocusDescription.md", - "hash": "9882522118220737320" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Icons/Icon.stories.mdx", - "hash": "1197053246392928276" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Icons/IconTable.stories.mdx", - "hash": "4896154475220076794" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/MatchTargetSize.stories.tsx", - "hash": "4487974487102015866" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/OverflowBoundaryPadding.stories.tsx", - "hash": "14304319794708833793" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningAnchorToTarget.stories.tsx", - "hash": "12152022627674249494" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningBestPractices.md", - "hash": "4693427405734490301" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningCoverTarget.stories.tsx", - "hash": "15984490079701264594" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningDefault.stories.tsx", - "hash": "14129962775143693627" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningDescription.md", - "hash": "12862623453561421564" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningDisableTransform.stories.tsx", - "hash": "6806805123184905778" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningFlipBoundary.stories.tsx", - "hash": "15305995841896426816" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningImperativeAnchorTarget.stories.tsx", - "hash": "6229434466729398121" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningImperativePositionUpdate.stories.tsx", - "hash": "12186453763733206915" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningOffsetFunction.stories.tsx", - "hash": "11624576393760387377" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningOffsetValue.stories.tsx", - "hash": "13170786133550262509" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningOverflowBoundary.stories.tsx", - "hash": "8317968229863701716" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/PositioningShorthandPositions.stories.tsx", - "hash": "7414638675247295275" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/index.stories.tsx", - "hash": "9056885794431434983" - }, - { - "file": "packages/react-components/react-components/stories/Concepts/Positioning/utils.stories.tsx", - "hash": "9474602900711575872" - }, - { - "file": "packages/react-components/react-components/stories/Migrations/Flex.Stack.stories.mdx", - "hash": "828823711976364144" - }, - { - "file": "packages/react-components/react-components/stories/Migrations/Flex.StackItem.stories.mdx", - "hash": "7377444694311401484" - }, - { - "file": "packages/react-components/react-components/stories/Migrations/utils.stories.test.tsx", - "hash": "15201130176337142924" - }, - { - "file": "packages/react-components/react-components/stories/Migrations/utils.stories.tsx", - "hash": "10595453595829049863" - }, - { - "file": "packages/react-components/react-components/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-components/tsconfig.lib.json", - "hash": "2330431448937249608" - }, - { - "file": "packages/react-components/react-components/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-portal-compat-context": [ - { - "file": "packages/react-components/react-portal-compat-context/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-portal-compat-context/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-portal-compat-context/.swcrc", - "hash": "246811047642206189" - }, - { - "file": "packages/react-components/react-portal-compat-context/CHANGELOG.json", - "hash": "3286043060232160725" - }, - { - "file": "packages/react-components/react-portal-compat-context/CHANGELOG.md", - "hash": "16083951032521964094" - }, - { - "file": "packages/react-components/react-portal-compat-context/LICENSE", - "hash": "15132429679533339073" - }, - { - "file": "packages/react-components/react-portal-compat-context/README.md", - "hash": "12732380853969159320" - }, - { - "file": "packages/react-components/react-portal-compat-context/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-portal-compat-context/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-portal-compat-context/docs/Spec.md", - "hash": "12839968031342266899" - }, - { - "file": "packages/react-components/react-portal-compat-context/etc/react-portal-compat-context.api.md", - "hash": "11239910211046275802" - }, - { - "file": "packages/react-components/react-portal-compat-context/jest.config.js", - "hash": "8444108561492533698" - }, - { - "file": "packages/react-components/react-portal-compat-context/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-portal-compat-context/package.json", - "hash": "11825902232626046996", - "deps": [ - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-components/react-portal-compat-context/project.json", - "hash": "16365174501960435076" - }, - { - "file": "packages/react-components/react-portal-compat-context/src/PortalCompatContext.ts", - "hash": "2242893524372144892" - }, - { - "file": "packages/react-components/react-portal-compat-context/src/index.ts", - "hash": "16361580812256184490" - }, - { - "file": "packages/react-components/react-portal-compat-context/src/types.ts", - "hash": "15037039190645892516" - }, - { - "file": "packages/react-components/react-portal-compat-context/tsconfig.json", - "hash": "1281030173985602576" - }, - { - "file": "packages/react-components/react-portal-compat-context/tsconfig.lib.json", - "hash": "7009046833260972717" - }, - { - "file": "packages/react-components/react-portal-compat-context/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-avatar": [ - { - "file": "packages/react-components/react-avatar/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-avatar/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-avatar/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-avatar/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-avatar/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-avatar/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-avatar/CHANGELOG.json", - "hash": "17359224246229139817" - }, - { - "file": "packages/react-components/react-avatar/CHANGELOG.md", - "hash": "13775367118916418634" - }, - { - "file": "packages/react-components/react-avatar/LICENSE", - "hash": "1561472303802842351" - }, - { - "file": "packages/react-components/react-avatar/README-AvatarGroup.md", - "hash": "6635177105173945453" - }, - { - "file": "packages/react-components/react-avatar/README.md", - "hash": "3417364935367193895" - }, - { - "file": "packages/react-components/react-avatar/bundle-size/Avatar.fixture.js", - "hash": "5791018364621035780" - }, - { - "file": "packages/react-components/react-avatar/bundle-size/AvatarGroup.fixture.js", - "hash": "2351286029785799155" - }, - { - "file": "packages/react-components/react-avatar/bundle-size/AvatarGroupItem.fixture.js", - "hash": "2729519475190533563" - }, - { - "file": "packages/react-components/react-avatar/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-avatar/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-avatar/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-avatar/docs/MIGRATION.md", - "hash": "3195958884814768437" - }, - { - "file": "packages/react-components/react-avatar/docs/SPEC-AvatarGroup.md", - "hash": "11426133715399943569" - }, - { - "file": "packages/react-components/react-avatar/docs/SPEC.md", - "hash": "4287805402968502679" - }, - { - "file": "packages/react-components/react-avatar/etc/react-avatar.api.md", - "hash": "17662099340512427639" - }, - { - "file": "packages/react-components/react-avatar/jest.config.js", - "hash": "6376176729770622848" - }, - { - "file": "packages/react-components/react-avatar/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-avatar/package.json", - "hash": "8265612536199943469", - "deps": [ - "@fluentui/react-badge", - "@fluentui/react-context-selector", - "npm:@fluentui/react-icons", - "@fluentui/react-popover", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-tooltip", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "npm:es6-weak-map", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-avatar/project.json", - "hash": "15962836208333366159" - }, - { - "file": "packages/react-components/react-avatar/src/Avatar.ts", - "hash": "7635867096605850206" - }, - { - "file": "packages/react-components/react-avatar/src/AvatarGroup.ts", - "hash": "6984127121712003934" - }, - { - "file": "packages/react-components/react-avatar/src/AvatarGroupItem.ts", - "hash": "9295176073013264238" - }, - { - "file": "packages/react-components/react-avatar/src/AvatarGroupPopover.ts", - "hash": "10828507195645538418" - }, - { - "file": "packages/react-components/react-avatar/src/components/Avatar/Avatar.test.tsx", - "hash": "3799793463774131037" - }, - { - "file": "packages/react-components/react-avatar/src/components/Avatar/Avatar.tsx", - "hash": "4286195710387072464" - }, - { - "file": "packages/react-components/react-avatar/src/components/Avatar/Avatar.types.ts", - "hash": "3502910881682367236" - }, - { - "file": "packages/react-components/react-avatar/src/components/Avatar/index.ts", - "hash": "1955269048664210261" - }, - { - "file": "packages/react-components/react-avatar/src/components/Avatar/renderAvatar.tsx", - "hash": "17085450580548719997" - }, - { - "file": "packages/react-components/react-avatar/src/components/Avatar/useAvatar.tsx", - "hash": "17265171031077561605" - }, - { - "file": "packages/react-components/react-avatar/src/components/Avatar/useAvatarStyles.styles.ts", - "hash": "9237444740068646329" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.cy.tsx", - "hash": "9396486021626927639" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.test.tsx", - "hash": "667562290854564595" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.tsx", - "hash": "12574745185973390309" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.types.ts", - "hash": "11445543023522684177" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/index.ts", - "hash": "8395078397697710402" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/renderAvatarGroup.tsx", - "hash": "906681850248904049" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroup.tsx", - "hash": "9748744777328738202" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroupContextValues.ts", - "hash": "7762097512239166845" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroupStyles.styles.ts", - "hash": "14767535204413912450" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.test.tsx", - "hash": "10693309452718169000" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.tsx", - "hash": "7048541463080468607" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.types.ts", - "hash": "13088512575982029284" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/index.ts", - "hash": "282603665069963077" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/renderAvatarGroupItem.tsx", - "hash": "14044015495498541840" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItem.ts", - "hash": "6698825707962161686" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItemStyles.styles.ts", - "hash": "51869593395452064" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.test.tsx", - "hash": "3568582866102004130" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.tsx", - "hash": "17770210227374180685" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.types.ts", - "hash": "16101743792578847966" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/index.ts", - "hash": "16771975726213604396" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/renderAvatarGroupPopover.tsx", - "hash": "10757030829615508783" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopover.tsx", - "hash": "2555256022131750635" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.ts", - "hash": "6728840970785876253" - }, - { - "file": "packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.ts", - "hash": "11153103963870430610" - }, - { - "file": "packages/react-components/react-avatar/src/contexts/AvatarContext.ts", - "hash": "590498634812227243" - }, - { - "file": "packages/react-components/react-avatar/src/contexts/AvatarGroupContext.ts", - "hash": "6848247087059396651" - }, - { - "file": "packages/react-components/react-avatar/src/contexts/index.ts", - "hash": "2367898825323850098" - }, - { - "file": "packages/react-components/react-avatar/src/index.ts", - "hash": "17396567248118398568" - }, - { - "file": "packages/react-components/react-avatar/src/testing/isConformant.ts", - "hash": "14447437808059758114" - }, - { - "file": "packages/react-components/react-avatar/src/utils/getInitials.test.ts", - "hash": "1680373439266347581" - }, - { - "file": "packages/react-components/react-avatar/src/utils/getInitials.ts", - "hash": "8327067548509255430" - }, - { - "file": "packages/react-components/react-avatar/src/utils/index.ts", - "hash": "12640729207052328910" - }, - { - "file": "packages/react-components/react-avatar/src/utils/partitionAvatarGroupItems.test.ts", - "hash": "9020780588609051149" - }, - { - "file": "packages/react-components/react-avatar/src/utils/partitionAvatarGroupItems.ts", - "hash": "543320327366877998" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarActive.stories.tsx", - "hash": "11500606915849458094" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarActiveAppearance.stories.tsx", - "hash": "6182092775061915836" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarBadge.stories.tsx", - "hash": "11737232360515773548" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarBadgeIcon.stories.tsx", - "hash": "8242903931583202526" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarColorBrand.stories.tsx", - "hash": "18386464499879542692" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarColorColorful.stories.tsx", - "hash": "1485807022761171712" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarColorPalette.stories.tsx", - "hash": "3082620768392145900" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarDefault.stories.tsx", - "hash": "879195072404448224" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarDescription.md", - "hash": "13383169207186333246" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarIcon.stories.tsx", - "hash": "5602542620961988143" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarImage.stories.tsx", - "hash": "18370734978373805725" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarInitials.stories.tsx", - "hash": "6358033680498150005" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarName.stories.tsx", - "hash": "8073892423041068966" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarSize.stories.tsx", - "hash": "16769822324005143226" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/AvatarSquare.stories.tsx", - "hash": "10756829190493281080" - }, - { - "file": "packages/react-components/react-avatar/stories/Avatar/index.stories.tsx", - "hash": "14429406280611309106" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupBestPractices.md", - "hash": "2259983816839514735" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupDefault.stories.tsx", - "hash": "18379733445475677697" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupDescription.md", - "hash": "5437435466472005639" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupIndicator.stories.tsx", - "hash": "17517750698648452574" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupLayout.stories.tsx", - "hash": "16809663284413994087" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizePie.stories.tsx", - "hash": "4328408042847102333" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizeSpread.stories.tsx", - "hash": "15556124444323653952" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizeStack.stories.tsx", - "hash": "17922874870636889465" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupTooltip.stories.tsx", - "hash": "10320557607960243438" - }, - { - "file": "packages/react-components/react-avatar/stories/AvatarGroup/index.stories.tsx", - "hash": "8538042635878276171" - }, - { - "file": "packages/react-components/react-avatar/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-avatar/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-avatar/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-avatar/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-icons-mdl2": [ - { - "file": "packages/react-icons-mdl2/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/react-icons-mdl2/.npmignore", - "hash": "7699079327417375383" - }, - { - "file": "packages/react-icons-mdl2/CHANGELOG.json", - "hash": "1430423070199017856" - }, - { - "file": "packages/react-icons-mdl2/CHANGELOG.md", - "hash": "1264357153435679050" - }, - { - "file": "packages/react-icons-mdl2/LICENSE", - "hash": "9395811624481750314" - }, - { - "file": "packages/react-icons-mdl2/README.md", - "hash": "12012648870062646297" - }, - { - "file": "packages/react-icons-mdl2/config/tests.js", - "hash": "2484785926023527183" - }, - { - "file": "packages/react-icons-mdl2/jest.config.js", - "hash": "8193037916930093299" - }, - { - "file": "packages/react-icons-mdl2/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-icons-mdl2/package.json", - "hash": "12554934536586602710", - "deps": [ - "npm:@microsoft/load-themed-styles", - "@fluentui/react-icon-provider", - "@fluentui/set-version", - "@fluentui/utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:react" - ] - }, - { - "file": "packages/react-icons-mdl2/project.json", - "hash": "9405952407540858057" - }, - { - "file": "packages/react-icons-mdl2/src/components/AcceptIcon.tsx", - "hash": "13272820529719697754" - }, - { - "file": "packages/react-icons-mdl2/src/components/AcceptMediumIcon.tsx", - "hash": "233759165174457955" - }, - { - "file": "packages/react-icons-mdl2/src/components/AccessLogoIcon.tsx", - "hash": "10076820615385413143" - }, - { - "file": "packages/react-icons-mdl2/src/components/AccessibiltyCheckerIcon.tsx", - "hash": "17163154328238480502" - }, - { - "file": "packages/react-icons-mdl2/src/components/AccountActivityIcon.tsx", - "hash": "10083780395725044448" - }, - { - "file": "packages/react-icons-mdl2/src/components/AccountBrowserIcon.tsx", - "hash": "4886838405698581415" - }, - { - "file": "packages/react-icons-mdl2/src/components/AccountManagementIcon.tsx", - "hash": "14240924682416561361" - }, - { - "file": "packages/react-icons-mdl2/src/components/AccountsIcon.tsx", - "hash": "5091094539386694432" - }, - { - "file": "packages/react-icons-mdl2/src/components/ActionCenterIcon.tsx", - "hash": "7299586471180464700" - }, - { - "file": "packages/react-icons-mdl2/src/components/ActivateOrdersIcon.tsx", - "hash": "4724335180979374061" - }, - { - "file": "packages/react-icons-mdl2/src/components/ActivityFeedIcon.tsx", - "hash": "9930772763792149030" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddBookmarkIcon.tsx", - "hash": "9685299498471779185" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddEventIcon.tsx", - "hash": "9223382545511878618" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddFavoriteFillIcon.tsx", - "hash": "13153789552411326133" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddFavoriteIcon.tsx", - "hash": "16108295555277104516" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddFriendIcon.tsx", - "hash": "11602302526096078759" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddGroupIcon.tsx", - "hash": "8297395296545127141" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddHomeIcon.tsx", - "hash": "11775157314316771124" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddIcon.tsx", - "hash": "649995549095629328" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddInIcon.tsx", - "hash": "5951209157788023487" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddLinkIcon.tsx", - "hash": "7371973306206784109" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddNotesIcon.tsx", - "hash": "4656052725575234588" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddOnlineMeetingIcon.tsx", - "hash": "14406263341432389439" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddPhoneIcon.tsx", - "hash": "3625529200821399716" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddReactionIcon.tsx", - "hash": "13460751958280979491" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddSpaceAfterIcon.tsx", - "hash": "15074348565770991976" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddSpaceBeforeIcon.tsx", - "hash": "3142131346206110407" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddToIcon.tsx", - "hash": "538841695346118641" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddToShoppingListIcon.tsx", - "hash": "8565378581856667931" - }, - { - "file": "packages/react-icons-mdl2/src/components/AddWorkIcon.tsx", - "hash": "7602013393075909897" - }, - { - "file": "packages/react-icons-mdl2/src/components/AirTicketsIcon.tsx", - "hash": "17373350328176895637" - }, - { - "file": "packages/react-icons-mdl2/src/components/AirplaneIcon.tsx", - "hash": "5054051762224313358" - }, - { - "file": "packages/react-icons-mdl2/src/components/AirplaneSolidIcon.tsx", - "hash": "3959451231147223815" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlarmClockIcon.tsx", - "hash": "4729092436626120955" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlbumIcon.tsx", - "hash": "3945464638930199870" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlbumRemoveIcon.tsx", - "hash": "11070708387356752287" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlertSettingsIcon.tsx", - "hash": "16533100387166307350" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlertSolidIcon.tsx", - "hash": "13010023221781344193" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignCenterIcon.tsx", - "hash": "17076325177021464640" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignHorizontalCenterIcon.tsx", - "hash": "14349572761959928148" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignHorizontalLeftIcon.tsx", - "hash": "9773512587719486081" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignHorizontalRightIcon.tsx", - "hash": "16947375829587998009" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignJustifyIcon.tsx", - "hash": "4802981133282120135" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignLeftIcon.tsx", - "hash": "17564125727224245385" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignRightIcon.tsx", - "hash": "5970481821484554499" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignVerticalBottomIcon.tsx", - "hash": "9971142954072746645" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignVerticalCenterIcon.tsx", - "hash": "351673482399466793" - }, - { - "file": "packages/react-icons-mdl2/src/components/AlignVerticalTopIcon.tsx", - "hash": "8851249200156919191" - }, - { - "file": "packages/react-icons-mdl2/src/components/AllAppsIcon.tsx", - "hash": "16292576204589409158" - }, - { - "file": "packages/react-icons-mdl2/src/components/AllAppsMirroredIcon.tsx", - "hash": "4672918375225717266" - }, - { - "file": "packages/react-icons-mdl2/src/components/AllCurrencyIcon.tsx", - "hash": "4596000769812652830" - }, - { - "file": "packages/react-icons-mdl2/src/components/AltTextIcon.tsx", - "hash": "17657616199898733800" - }, - { - "file": "packages/react-icons-mdl2/src/components/AmazonWebServicesLogoIcon.tsx", - "hash": "11765565114057427639" - }, - { - "file": "packages/react-icons-mdl2/src/components/AnalyticsQueryIcon.tsx", - "hash": "11433855487017698147" - }, - { - "file": "packages/react-icons-mdl2/src/components/AnalyticsReportIcon.tsx", - "hash": "18354054869655929023" - }, - { - "file": "packages/react-icons-mdl2/src/components/AnalyticsViewIcon.tsx", - "hash": "10418305492179508701" - }, - { - "file": "packages/react-icons-mdl2/src/components/AnchorLockIcon.tsx", - "hash": "3423082534614830402" - }, - { - "file": "packages/react-icons-mdl2/src/components/AndroidLogoIcon.tsx", - "hash": "14686412471023102815" - }, - { - "file": "packages/react-icons-mdl2/src/components/AnnotationIcon.tsx", - "hash": "11342377332737430043" - }, - { - "file": "packages/react-icons-mdl2/src/components/ApacheIvyLogo32Icon.tsx", - "hash": "2918134896312448658" - }, - { - "file": "packages/react-icons-mdl2/src/components/ApacheMavenLogoIcon.tsx", - "hash": "16399596079327715994" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArchiveIcon.tsx", - "hash": "12280332357717161867" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArchiveUndoIcon.tsx", - "hash": "10856545521803800470" - }, - { - "file": "packages/react-icons-mdl2/src/components/AreaChartIcon.tsx", - "hash": "5179382537274327584" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrangeBringForwardIcon.tsx", - "hash": "5433898051558651326" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrangeBringToFrontIcon.tsx", - "hash": "1505051143939122001" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrangeByFromIcon.tsx", - "hash": "11165324307950102881" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrangeSendBackwardIcon.tsx", - "hash": "3571562683944194254" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrangeSendToBackIcon.tsx", - "hash": "17278998742575976905" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrivalsIcon.tsx", - "hash": "18235477685319469615" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowDownRight8Icon.tsx", - "hash": "12907225691599052628" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowDownRightMirrored8Icon.tsx", - "hash": "4497171579545271048" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowTallDownLeftIcon.tsx", - "hash": "17174274091977555889" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowTallDownRightIcon.tsx", - "hash": "12343213447484503186" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowTallUpLeftIcon.tsx", - "hash": "5438583383881980943" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowTallUpRightIcon.tsx", - "hash": "5856822185825999666" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowUpRight8Icon.tsx", - "hash": "15423363474761989994" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowUpRightIcon.tsx", - "hash": "5633293037068413854" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArrowUpRightMirrored8Icon.tsx", - "hash": "16226342630129853713" - }, - { - "file": "packages/react-icons-mdl2/src/components/ArticlesIcon.tsx", - "hash": "4505935511685500431" - }, - { - "file": "packages/react-icons-mdl2/src/components/AscendingIcon.tsx", - "hash": "17273836348684464916" - }, - { - "file": "packages/react-icons-mdl2/src/components/AspectRatioIcon.tsx", - "hash": "9472692140636682439" - }, - { - "file": "packages/react-icons-mdl2/src/components/AssessmentGroupIcon.tsx", - "hash": "9990042987655129422" - }, - { - "file": "packages/react-icons-mdl2/src/components/AssessmentGroupTemplateIcon.tsx", - "hash": "2062691050575372150" - }, - { - "file": "packages/react-icons-mdl2/src/components/AssetLibraryIcon.tsx", - "hash": "7791059590913763172" - }, - { - "file": "packages/react-icons-mdl2/src/components/AssignIcon.tsx", - "hash": "14743301672967242916" - }, - { - "file": "packages/react-icons-mdl2/src/components/AssignPolicyIcon.tsx", - "hash": "1142747429676413857" - }, - { - "file": "packages/react-icons-mdl2/src/components/AsteriskIcon.tsx", - "hash": "14432692334937635758" - }, - { - "file": "packages/react-icons-mdl2/src/components/AsteriskSolidIcon.tsx", - "hash": "10298288423353384806" - }, - { - "file": "packages/react-icons-mdl2/src/components/AttachIcon.tsx", - "hash": "11845773719191763640" - }, - { - "file": "packages/react-icons-mdl2/src/components/AustralianRulesIcon.tsx", - "hash": "4152554014500550815" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutoDeploySettingsIcon.tsx", - "hash": "5682077687972027110" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutoEnhanceOffIcon.tsx", - "hash": "3171393689469182643" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutoEnhanceOnIcon.tsx", - "hash": "698710895866528245" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutoFillTemplateIcon.tsx", - "hash": "13695873113605750361" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutoFitContentsIcon.tsx", - "hash": "2501936783055150056" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutoFitWindowIcon.tsx", - "hash": "13452477990359238332" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutoHeightIcon.tsx", - "hash": "2752523469179302565" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutoRacingIcon.tsx", - "hash": "3132079180733486488" - }, - { - "file": "packages/react-icons-mdl2/src/components/AutomateFlowIcon.tsx", - "hash": "16831072257370889941" - }, - { - "file": "packages/react-icons-mdl2/src/components/AwayStatusIcon.tsx", - "hash": "16196688126001285506" - }, - { - "file": "packages/react-icons-mdl2/src/components/BIDashboardIcon.tsx", - "hash": "18233375696995378311" - }, - { - "file": "packages/react-icons-mdl2/src/components/BackIcon.tsx", - "hash": "9049703118809299925" - }, - { - "file": "packages/react-icons-mdl2/src/components/BackToWindowIcon.tsx", - "hash": "11285424535009773565" - }, - { - "file": "packages/react-icons-mdl2/src/components/BackgroundColorIcon.tsx", - "hash": "13239767601679223355" - }, - { - "file": "packages/react-icons-mdl2/src/components/BacklogBoardIcon.tsx", - "hash": "15475298857584077772" - }, - { - "file": "packages/react-icons-mdl2/src/components/BacklogIcon.tsx", - "hash": "8025374010749681963" - }, - { - "file": "packages/react-icons-mdl2/src/components/BacklogListIcon.tsx", - "hash": "12282522729595068441" - }, - { - "file": "packages/react-icons-mdl2/src/components/BadgeIcon.tsx", - "hash": "18225924514525553158" - }, - { - "file": "packages/react-icons-mdl2/src/components/BalloonsIcon.tsx", - "hash": "13689663511218690347" - }, - { - "file": "packages/react-icons-mdl2/src/components/BankIcon.tsx", - "hash": "1418173345319401536" - }, - { - "file": "packages/react-icons-mdl2/src/components/BankSolidIcon.tsx", - "hash": "15889746559469221934" - }, - { - "file": "packages/react-icons-mdl2/src/components/BarChart4Icon.tsx", - "hash": "14519428920477073539" - }, - { - "file": "packages/react-icons-mdl2/src/components/BarChartHorizontalIcon.tsx", - "hash": "15035881198223458022" - }, - { - "file": "packages/react-icons-mdl2/src/components/BarChartVerticalEditIcon.tsx", - "hash": "10723949843818994593" - }, - { - "file": "packages/react-icons-mdl2/src/components/BarChartVerticalFillIcon.tsx", - "hash": "3129620341778946443" - }, - { - "file": "packages/react-icons-mdl2/src/components/BarChartVerticalFilterIcon.tsx", - "hash": "18371318246119377910" - }, - { - "file": "packages/react-icons-mdl2/src/components/BarChartVerticalFilterSolidIcon.tsx", - "hash": "14678037970012215655" - }, - { - "file": "packages/react-icons-mdl2/src/components/BarChartVerticalIcon.tsx", - "hash": "12226677053677932853" - }, - { - "file": "packages/react-icons-mdl2/src/components/BaseballIcon.tsx", - "hash": "12818296635193741142" - }, - { - "file": "packages/react-icons-mdl2/src/components/BeerMugIcon.tsx", - "hash": "12665371620776874704" - }, - { - "file": "packages/react-icons-mdl2/src/components/BidiLtrIcon.tsx", - "hash": "10928894856767197769" - }, - { - "file": "packages/react-icons-mdl2/src/components/BidiRtlIcon.tsx", - "hash": "3395616160090573366" - }, - { - "file": "packages/react-icons-mdl2/src/components/BirthdayCakeIcon.tsx", - "hash": "576834721585654637" - }, - { - "file": "packages/react-icons-mdl2/src/components/BitbucketLogo32Icon.tsx", - "hash": "6575071044668833382" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlobStorageIcon.tsx", - "hash": "13514398799207035118" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlockContactIcon.tsx", - "hash": "11565246906910685738" - }, - { - "file": "packages/react-icons-mdl2/src/components/Blocked12Icon.tsx", - "hash": "13462460695764374955" - }, - { - "file": "packages/react-icons-mdl2/src/components/Blocked2Icon.tsx", - "hash": "2520160366904418187" - }, - { - "file": "packages/react-icons-mdl2/src/components/Blocked2SolidIcon.tsx", - "hash": "8458365681183234441" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlockedIcon.tsx", - "hash": "3749446691227940562" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlockedSiteIcon.tsx", - "hash": "12610611766096702608" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlockedSiteSolid12Icon.tsx", - "hash": "13735398763025222883" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlockedSolidIcon.tsx", - "hash": "11543517390104023728" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlogIcon.tsx", - "hash": "15238138213428866603" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlowingSnowIcon.tsx", - "hash": "15016544739088464871" - }, - { - "file": "packages/react-icons-mdl2/src/components/BlurIcon.tsx", - "hash": "15939225359960098363" - }, - { - "file": "packages/react-icons-mdl2/src/components/BoardsIcon.tsx", - "hash": "10829570643337490973" - }, - { - "file": "packages/react-icons-mdl2/src/components/BoldIcon.tsx", - "hash": "10380225123111595334" - }, - { - "file": "packages/react-icons-mdl2/src/components/BookAnswersIcon.tsx", - "hash": "14791394905429321702" - }, - { - "file": "packages/react-icons-mdl2/src/components/BookmarkReportIcon.tsx", - "hash": "4210713580408367132" - }, - { - "file": "packages/react-icons-mdl2/src/components/BookmarksIcon.tsx", - "hash": "15356635029801629161" - }, - { - "file": "packages/react-icons-mdl2/src/components/BookmarksMirroredIcon.tsx", - "hash": "875828057988760076" - }, - { - "file": "packages/react-icons-mdl2/src/components/BorderDashIcon.tsx", - "hash": "8829457069107821324" - }, - { - "file": "packages/react-icons-mdl2/src/components/BorderDotIcon.tsx", - "hash": "9240317214925189417" - }, - { - "file": "packages/react-icons-mdl2/src/components/BoxAdditionSolidIcon.tsx", - "hash": "11350503466850356760" - }, - { - "file": "packages/react-icons-mdl2/src/components/BoxCheckmarkSolidIcon.tsx", - "hash": "3993984423108653768" - }, - { - "file": "packages/react-icons-mdl2/src/components/BoxLogoIcon.tsx", - "hash": "3477822992375579248" - }, - { - "file": "packages/react-icons-mdl2/src/components/BoxMultiplySolidIcon.tsx", - "hash": "3025940095014892577" - }, - { - "file": "packages/react-icons-mdl2/src/components/BoxPlaySolidIcon.tsx", - "hash": "651778939019116633" - }, - { - "file": "packages/react-icons-mdl2/src/components/BoxSubtractSolidIcon.tsx", - "hash": "15828442106320112550" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchCommitIcon.tsx", - "hash": "1701598958667655873" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchCompareIcon.tsx", - "hash": "7455107304051907662" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchFork2Icon.tsx", - "hash": "16019747120871666258" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchForkIcon.tsx", - "hash": "11917755225984172871" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchLockedIcon.tsx", - "hash": "11676671461632403921" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchMergeIcon.tsx", - "hash": "11636727331798320000" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchPullRequestIcon.tsx", - "hash": "18185688154471541900" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchSearchIcon.tsx", - "hash": "15942190495184577267" - }, - { - "file": "packages/react-icons-mdl2/src/components/BranchShelvesetIcon.tsx", - "hash": "9506880191029106661" - }, - { - "file": "packages/react-icons-mdl2/src/components/BreadcrumbIcon.tsx", - "hash": "16302978875050387015" - }, - { - "file": "packages/react-icons-mdl2/src/components/BreakfastIcon.tsx", - "hash": "4434316272013442903" - }, - { - "file": "packages/react-icons-mdl2/src/components/BrightnessIcon.tsx", - "hash": "4502688003795424689" - }, - { - "file": "packages/react-icons-mdl2/src/components/BroomIcon.tsx", - "hash": "15601692763557396697" - }, - { - "file": "packages/react-icons-mdl2/src/components/BrowserScreenShotIcon.tsx", - "hash": "387157802078007804" - }, - { - "file": "packages/react-icons-mdl2/src/components/BrowserTabIcon.tsx", - "hash": "16720728111746037477" - }, - { - "file": "packages/react-icons-mdl2/src/components/BrowserTabScreenshotIcon.tsx", - "hash": "9486182720700898248" - }, - { - "file": "packages/react-icons-mdl2/src/components/BrunchIcon.tsx", - "hash": "9304993816741728195" - }, - { - "file": "packages/react-icons-mdl2/src/components/BrushIcon.tsx", - "hash": "2083197491638533728" - }, - { - "file": "packages/react-icons-mdl2/src/components/BucketColorFillIcon.tsx", - "hash": "9533337610559240832" - }, - { - "file": "packages/react-icons-mdl2/src/components/BucketColorIcon.tsx", - "hash": "7483666238641885831" - }, - { - "file": "packages/react-icons-mdl2/src/components/BufferTimeAfterIcon.tsx", - "hash": "7575934789210637908" - }, - { - "file": "packages/react-icons-mdl2/src/components/BufferTimeBeforeIcon.tsx", - "hash": "10657985189959504185" - }, - { - "file": "packages/react-icons-mdl2/src/components/BufferTimeBothIcon.tsx", - "hash": "15953428896414748271" - }, - { - "file": "packages/react-icons-mdl2/src/components/BugBlockIcon.tsx", - "hash": "14977946201663289590" - }, - { - "file": "packages/react-icons-mdl2/src/components/BugIcon.tsx", - "hash": "7308488488840840943" - }, - { - "file": "packages/react-icons-mdl2/src/components/BugSolidIcon.tsx", - "hash": "13965227196570703817" - }, - { - "file": "packages/react-icons-mdl2/src/components/BugSyncIcon.tsx", - "hash": "11993139694121706389" - }, - { - "file": "packages/react-icons-mdl2/src/components/BuildDefinitionIcon.tsx", - "hash": "7405946235420127193" - }, - { - "file": "packages/react-icons-mdl2/src/components/BuildIcon.tsx", - "hash": "5745313003747949584" - }, - { - "file": "packages/react-icons-mdl2/src/components/BuildIssueIcon.tsx", - "hash": "15729409904590152849" - }, - { - "file": "packages/react-icons-mdl2/src/components/BuildQueueIcon.tsx", - "hash": "1045754058954301815" - }, - { - "file": "packages/react-icons-mdl2/src/components/BuildQueueNewIcon.tsx", - "hash": "16937549947035433544" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulkUploadIcon.tsx", - "hash": "13960447598965911434" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedList2Icon.tsx", - "hash": "10178406528500791691" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedList2MirroredIcon.tsx", - "hash": "2258742585605214586" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedListBulletIcon.tsx", - "hash": "1388559911534605379" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedListBulletMirroredIcon.tsx", - "hash": "13952921300372285478" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedListIcon.tsx", - "hash": "7216178630996754817" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedListMirroredIcon.tsx", - "hash": "6002486582315584292" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedListTextIcon.tsx", - "hash": "6332928603076498646" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedListTextMirroredIcon.tsx", - "hash": "13827292519455109191" - }, - { - "file": "packages/react-icons-mdl2/src/components/BulletedTreeListIcon.tsx", - "hash": "17841013603095641202" - }, - { - "file": "packages/react-icons-mdl2/src/components/BullseyeIcon.tsx", - "hash": "16080619879843331969" - }, - { - "file": "packages/react-icons-mdl2/src/components/BullseyeTargetEditIcon.tsx", - "hash": "6635034443595197483" - }, - { - "file": "packages/react-icons-mdl2/src/components/BullseyeTargetIcon.tsx", - "hash": "985692057574074255" - }, - { - "file": "packages/react-icons-mdl2/src/components/BusIcon.tsx", - "hash": "12406265701944432854" - }, - { - "file": "packages/react-icons-mdl2/src/components/BusSolidIcon.tsx", - "hash": "3315766964639000487" - }, - { - "file": "packages/react-icons-mdl2/src/components/BusinessHoursSignIcon.tsx", - "hash": "10489361169986732175" - }, - { - "file": "packages/react-icons-mdl2/src/components/ButtonControlIcon.tsx", - "hash": "6206420526372154740" - }, - { - "file": "packages/react-icons-mdl2/src/components/CPlusPlusIcon.tsx", - "hash": "8979710346279727933" - }, - { - "file": "packages/react-icons-mdl2/src/components/CPlusPlusLanguageIcon.tsx", - "hash": "4941896980217157487" - }, - { - "file": "packages/react-icons-mdl2/src/components/CRMProcessesIcon.tsx", - "hash": "2938521056354911192" - }, - { - "file": "packages/react-icons-mdl2/src/components/CRMReportIcon.tsx", - "hash": "9112533953352470445" - }, - { - "file": "packages/react-icons-mdl2/src/components/CRMServicesIcon.tsx", - "hash": "12711185398904941315" - }, - { - "file": "packages/react-icons-mdl2/src/components/CSSIcon.tsx", - "hash": "3945126511682309994" - }, - { - "file": "packages/react-icons-mdl2/src/components/CafeIcon.tsx", - "hash": "7242226240974353393" - }, - { - "file": "packages/react-icons-mdl2/src/components/CakeIcon.tsx", - "hash": "4772879894474086202" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorAdditionIcon.tsx", - "hash": "10209418255044745710" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorDeltaIcon.tsx", - "hash": "7288234815715793986" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorEqualToIcon.tsx", - "hash": "17995372526080182029" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorGroupIcon.tsx", - "hash": "7666201474766909219" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorIcon.tsx", - "hash": "10526111833223188068" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorMultiplyIcon.tsx", - "hash": "7337527738134685536" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorNotEqualToIcon.tsx", - "hash": "14515316967948697658" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorPercentageIcon.tsx", - "hash": "12714490605531493306" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalculatorSubtractIcon.tsx", - "hash": "7830007881922087373" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarAgendaIcon.tsx", - "hash": "9891795127440824099" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarDayIcon.tsx", - "hash": "11055456678255689564" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarIcon.tsx", - "hash": "9228334659105536946" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarMirroredIcon.tsx", - "hash": "16974288181652211965" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarReplyIcon.tsx", - "hash": "13500005999876734340" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarSettingsIcon.tsx", - "hash": "17100028494597246284" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarSettingsMirroredIcon.tsx", - "hash": "7879742555155452791" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarWeekIcon.tsx", - "hash": "10398595753853743173" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarWorkWeekIcon.tsx", - "hash": "11045818085162155973" - }, - { - "file": "packages/react-icons-mdl2/src/components/CalendarYearIcon.tsx", - "hash": "16838791748025679221" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaloriesAddIcon.tsx", - "hash": "4303229413379001786" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaloriesIcon.tsx", - "hash": "5463516468239336469" - }, - { - "file": "packages/react-icons-mdl2/src/components/CameraIcon.tsx", - "hash": "4195313564462257519" - }, - { - "file": "packages/react-icons-mdl2/src/components/CampaignTemplateIcon.tsx", - "hash": "3719909990425432023" - }, - { - "file": "packages/react-icons-mdl2/src/components/CancelIcon.tsx", - "hash": "10317700657146339525" - }, - { - "file": "packages/react-icons-mdl2/src/components/CannedChatIcon.tsx", - "hash": "15835322069038419693" - }, - { - "file": "packages/react-icons-mdl2/src/components/CarIcon.tsx", - "hash": "16485912454163323039" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretBottomLeftCenter8Icon.tsx", - "hash": "4973559050578265754" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretBottomLeftSolid8Icon.tsx", - "hash": "3785565672890408237" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretBottomRightCenter8Icon.tsx", - "hash": "5405021413196033014" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretBottomRightSolid8Icon.tsx", - "hash": "10231170155544951846" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretDown8Icon.tsx", - "hash": "12671861183780382583" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretDownSolid8Icon.tsx", - "hash": "3509733715106366075" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretHollowIcon.tsx", - "hash": "17702062177780790927" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretHollowMirroredIcon.tsx", - "hash": "16063090921609294476" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretLeft8Icon.tsx", - "hash": "1327169153711640634" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretLeftSolid8Icon.tsx", - "hash": "11402471956695437421" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretRight8Icon.tsx", - "hash": "2201211074827386143" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretRightIcon.tsx", - "hash": "11036717627633799736" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretRightSolid8Icon.tsx", - "hash": "18306534689265925179" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretSolid16Icon.tsx", - "hash": "14410687348052949902" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretSolidDownIcon.tsx", - "hash": "16375333673336697431" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretSolidIcon.tsx", - "hash": "17873238766448089274" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretSolidLeftIcon.tsx", - "hash": "17428990906911923042" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretSolidMirroredIcon.tsx", - "hash": "1243666110724694783" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretSolidRightIcon.tsx", - "hash": "7084165137666742875" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretSolidUpIcon.tsx", - "hash": "15884194277471378635" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretTopLeftCenter8Icon.tsx", - "hash": "11022898863557850878" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretTopLeftSolid8Icon.tsx", - "hash": "5263494152959946163" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretTopRightCenter8Icon.tsx", - "hash": "2686558306914655194" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretTopRightSolid8Icon.tsx", - "hash": "6964924610046017557" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretUp8Icon.tsx", - "hash": "1258617837263280580" - }, - { - "file": "packages/react-icons-mdl2/src/components/CaretUpSolid8Icon.tsx", - "hash": "9775824517440082506" - }, - { - "file": "packages/react-icons-mdl2/src/components/CatIcon.tsx", - "hash": "1307423506134103033" - }, - { - "file": "packages/react-icons-mdl2/src/components/CellPhoneIcon.tsx", - "hash": "11744883050395067387" - }, - { - "file": "packages/react-icons-mdl2/src/components/CertificateIcon.tsx", - "hash": "11098577087768643512" - }, - { - "file": "packages/react-icons-mdl2/src/components/CertifiedDatabaseIcon.tsx", - "hash": "3268197506929327507" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChangeEntitlementsIcon.tsx", - "hash": "15952062856069144014" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChartIcon.tsx", - "hash": "18370750908098125836" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChartSeriesIcon.tsx", - "hash": "13748079417130253292" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChartTemplateIcon.tsx", - "hash": "5187461118188430376" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChartXAngleIcon.tsx", - "hash": "702266279550083036" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChartYAngleIcon.tsx", - "hash": "3018945442186707874" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChatBotIcon.tsx", - "hash": "18082123027226981785" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChatIcon.tsx", - "hash": "6946313934754875430" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChatInviteFriendIcon.tsx", - "hash": "1143757992597114980" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChatSolidIcon.tsx", - "hash": "17207532252608704526" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckListCheckIcon.tsx", - "hash": "13976979216990533746" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckListCheckMirroredIcon.tsx", - "hash": "2823743636131034514" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckListIcon.tsx", - "hash": "11788721469608473297" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckListTextIcon.tsx", - "hash": "14074386913156541324" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckListTextMirroredIcon.tsx", - "hash": "15363031630517891306" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckMarkIcon.tsx", - "hash": "17574435840898453412" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckboxCompositeIcon.tsx", - "hash": "3700817757984051146" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckboxCompositeReversedIcon.tsx", - "hash": "2417548281134889934" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckboxFillIcon.tsx", - "hash": "5705636971628196823" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckboxIcon.tsx", - "hash": "13025963719826327705" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckboxIndeterminateIcon.tsx", - "hash": "9025144963287070040" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckedOutByOther12Icon.tsx", - "hash": "7597136235526734925" - }, - { - "file": "packages/react-icons-mdl2/src/components/CheckedOutByYou12Icon.tsx", - "hash": "9202668097808352856" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronDownEnd6Icon.tsx", - "hash": "1506321891243306814" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronDownIcon.tsx", - "hash": "11856688968333907060" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronDownMedIcon.tsx", - "hash": "3739656185100519795" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronDownSmallIcon.tsx", - "hash": "3912213855241788999" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronFold10Icon.tsx", - "hash": "7741275830037417768" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronLeftEnd6Icon.tsx", - "hash": "10190919535291550235" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronLeftIcon.tsx", - "hash": "8188154068860645136" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronLeftMedIcon.tsx", - "hash": "12287503609853250159" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronLeftSmallIcon.tsx", - "hash": "4861024202375522754" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronRightEnd6Icon.tsx", - "hash": "1000325959569808691" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronRightIcon.tsx", - "hash": "7320161935500998060" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronRightMedIcon.tsx", - "hash": "15746619642856054936" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronRightSmallIcon.tsx", - "hash": "17577741214588845828" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronUnfold10Icon.tsx", - "hash": "5432534879181972370" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronUpEnd6Icon.tsx", - "hash": "17078105125300754063" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronUpIcon.tsx", - "hash": "17634438659387761604" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronUpMedIcon.tsx", - "hash": "4243233577030550262" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChevronUpSmallIcon.tsx", - "hash": "11900635987956573641" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChildofIcon.tsx", - "hash": "3083904410355819819" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChopsticksIcon.tsx", - "hash": "12625847592625114711" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChromeBackIcon.tsx", - "hash": "6919618187088778088" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChromeBackMirroredIcon.tsx", - "hash": "10591631473798040220" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChromeCloseIcon.tsx", - "hash": "16206970251003091389" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChromeFullScreenIcon.tsx", - "hash": "2062494960606940699" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChromeMinimizeIcon.tsx", - "hash": "17056646203191558710" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChromeRestoreIcon.tsx", - "hash": "225347269264565974" - }, - { - "file": "packages/react-icons-mdl2/src/components/ChronosLogoIcon.tsx", - "hash": "3449218141873443765" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleAdditionIcon.tsx", - "hash": "15650364575169129058" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleAdditionSolidIcon.tsx", - "hash": "17176571996376701633" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleFillIcon.tsx", - "hash": "635408020464104748" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleHalfFullIcon.tsx", - "hash": "13078515937468162613" - }, - { - "file": "packages/react-icons-mdl2/src/components/CirclePauseIcon.tsx", - "hash": "10423095171760345779" - }, - { - "file": "packages/react-icons-mdl2/src/components/CirclePauseSolidIcon.tsx", - "hash": "201342975848082306" - }, - { - "file": "packages/react-icons-mdl2/src/components/CirclePlusIcon.tsx", - "hash": "16048474883211561128" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleRingIcon.tsx", - "hash": "13932617260710316939" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleShapeIcon.tsx", - "hash": "10337641278022257801" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleShapeSolidIcon.tsx", - "hash": "5947548758375999968" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleStopIcon.tsx", - "hash": "1746423648542538736" - }, - { - "file": "packages/react-icons-mdl2/src/components/CircleStopSolidIcon.tsx", - "hash": "17837113459357032578" - }, - { - "file": "packages/react-icons-mdl2/src/components/CityNext2Icon.tsx", - "hash": "1763087302644378770" - }, - { - "file": "packages/react-icons-mdl2/src/components/CityNextIcon.tsx", - "hash": "5006818496716556497" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClearFilterIcon.tsx", - "hash": "18094972209246152564" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClearFormattingAIcon.tsx", - "hash": "7989722697092274864" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClearFormattingEraserIcon.tsx", - "hash": "12773764554699946939" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClearFormattingIcon.tsx", - "hash": "1502190740290008586" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClearIcon.tsx", - "hash": "17999460206231765560" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClearNightIcon.tsx", - "hash": "8981354330252798935" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClearSelectionIcon.tsx", - "hash": "8882426128133630838" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClearSelectionMirroredIcon.tsx", - "hash": "3689265543794296852" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClipboardListIcon.tsx", - "hash": "9949364234238621675" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClipboardListMirroredIcon.tsx", - "hash": "7507542986998954617" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClipboardSolidIcon.tsx", - "hash": "4016618141286983825" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClockIcon.tsx", - "hash": "7108679265632247294" - }, - { - "file": "packages/react-icons-mdl2/src/components/CloneToDesktopIcon.tsx", - "hash": "16300739152915666307" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClosePaneIcon.tsx", - "hash": "737646660074456284" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClosePaneMirroredIcon.tsx", - "hash": "12926614467006734660" - }, - { - "file": "packages/react-icons-mdl2/src/components/ClosedCaptionIcon.tsx", - "hash": "3551295924436979273" - }, - { - "file": "packages/react-icons-mdl2/src/components/CloudWeatherIcon.tsx", - "hash": "11576958249735124404" - }, - { - "file": "packages/react-icons-mdl2/src/components/CloudyIcon.tsx", - "hash": "17413852503268998504" - }, - { - "file": "packages/react-icons-mdl2/src/components/CocktailsIcon.tsx", - "hash": "18417245516501428895" - }, - { - "file": "packages/react-icons-mdl2/src/components/CodeEditIcon.tsx", - "hash": "17489331345713312538" - }, - { - "file": "packages/react-icons-mdl2/src/components/CodeIcon.tsx", - "hash": "14096608821262520464" - }, - { - "file": "packages/react-icons-mdl2/src/components/CoffeeIcon.tsx", - "hash": "8186344784075218361" - }, - { - "file": "packages/react-icons-mdl2/src/components/CoffeeScriptIcon.tsx", - "hash": "4585287023832242224" - }, - { - "file": "packages/react-icons-mdl2/src/components/CollapseContentIcon.tsx", - "hash": "2764738467455020992" - }, - { - "file": "packages/react-icons-mdl2/src/components/CollapseContentSingleIcon.tsx", - "hash": "7832927660457611682" - }, - { - "file": "packages/react-icons-mdl2/src/components/CollapseMenuIcon.tsx", - "hash": "15690932050925209701" - }, - { - "file": "packages/react-icons-mdl2/src/components/CollegeFootballIcon.tsx", - "hash": "2165529139282588287" - }, - { - "file": "packages/react-icons-mdl2/src/components/CollegeHoopsIcon.tsx", - "hash": "5971236503493505870" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColorIcon.tsx", - "hash": "12876084734020488421" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColorSolidIcon.tsx", - "hash": "8778203053351823905" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColumnIcon.tsx", - "hash": "14550024425629291177" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColumnLeftTwoThirdsEditIcon.tsx", - "hash": "4510690927811420875" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColumnLeftTwoThirdsIcon.tsx", - "hash": "10422959551643051765" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColumnOptionsIcon.tsx", - "hash": "11806481398288836965" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColumnRightTwoThirdsEditIcon.tsx", - "hash": "12696569162881326759" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColumnRightTwoThirdsIcon.tsx", - "hash": "7766809221375275712" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColumnVerticalSectionEditIcon.tsx", - "hash": "5193286935066942189" - }, - { - "file": "packages/react-icons-mdl2/src/components/ColumnVerticalSectionIcon.tsx", - "hash": "16260772812663125171" - }, - { - "file": "packages/react-icons-mdl2/src/components/CombineIcon.tsx", - "hash": "2646162695904339986" - }, - { - "file": "packages/react-icons-mdl2/src/components/ComboboxIcon.tsx", - "hash": "16457432093153970010" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommandPromptIcon.tsx", - "hash": "15673370497459872355" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommentActiveIcon.tsx", - "hash": "14547628466497745489" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommentAddIcon.tsx", - "hash": "7354878907854091305" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommentIcon.tsx", - "hash": "84187469314459891" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommentNextIcon.tsx", - "hash": "14934145650932481133" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommentPreviousIcon.tsx", - "hash": "11977205977425684281" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommentSolidIcon.tsx", - "hash": "8048573688429425426" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommentUrgentIcon.tsx", - "hash": "12154048446593945708" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommitmentsIcon.tsx", - "hash": "12777910001507088329" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommonDataServiceCDSIcon.tsx", - "hash": "10573383667002356640" - }, - { - "file": "packages/react-icons-mdl2/src/components/CommunicationsIcon.tsx", - "hash": "2616929262148546398" - }, - { - "file": "packages/react-icons-mdl2/src/components/CompanyDirectoryIcon.tsx", - "hash": "13229678923851993044" - }, - { - "file": "packages/react-icons-mdl2/src/components/CompanyDirectoryMirroredIcon.tsx", - "hash": "17662995171579934161" - }, - { - "file": "packages/react-icons-mdl2/src/components/CompareIcon.tsx", - "hash": "8908469758530488215" - }, - { - "file": "packages/react-icons-mdl2/src/components/CompareUnevenIcon.tsx", - "hash": "1166031646701734056" - }, - { - "file": "packages/react-icons-mdl2/src/components/CompassNWIcon.tsx", - "hash": "15545334371181703758" - }, - { - "file": "packages/react-icons-mdl2/src/components/CompletedIcon.tsx", - "hash": "13803484294149978788" - }, - { - "file": "packages/react-icons-mdl2/src/components/CompletedSolidIcon.tsx", - "hash": "13245474842797249698" - }, - { - "file": "packages/react-icons-mdl2/src/components/ComplianceAuditIcon.tsx", - "hash": "16180906599517909755" - }, - { - "file": "packages/react-icons-mdl2/src/components/ConfigurationSolidIcon.tsx", - "hash": "18029601955623297912" - }, - { - "file": "packages/react-icons-mdl2/src/components/ConnectContactsIcon.tsx", - "hash": "12318593344407479499" - }, - { - "file": "packages/react-icons-mdl2/src/components/ConnectVirtualMachineIcon.tsx", - "hash": "15465924176916549286" - }, - { - "file": "packages/react-icons-mdl2/src/components/ConstructionConeIcon.tsx", - "hash": "3273716421616658463" - }, - { - "file": "packages/react-icons-mdl2/src/components/ConstructionConeSolidIcon.tsx", - "hash": "586555395824016181" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactCardIcon.tsx", - "hash": "15211984991523126093" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactCardSettingsIcon.tsx", - "hash": "16272932285940802787" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactCardSettingsMirroredIcon.tsx", - "hash": "6977373102157537623" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactHeartIcon.tsx", - "hash": "7536220108992365098" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactIcon.tsx", - "hash": "18132497067285314627" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactInfoIcon.tsx", - "hash": "15701291551790808988" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactLinkIcon.tsx", - "hash": "7472781293705724966" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactListIcon.tsx", - "hash": "10816086027455427927" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContactLockIcon.tsx", - "hash": "2009772246809814970" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContentFeedIcon.tsx", - "hash": "17789668203001170336" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContentSettingsIcon.tsx", - "hash": "4091778186971523972" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContextMenuIcon.tsx", - "hash": "4889107644686224881" - }, - { - "file": "packages/react-icons-mdl2/src/components/ContrastIcon.tsx", - "hash": "7174159877536029563" - }, - { - "file": "packages/react-icons-mdl2/src/components/CopyEditIcon.tsx", - "hash": "15774444388513629603" - }, - { - "file": "packages/react-icons-mdl2/src/components/CopyIcon.tsx", - "hash": "10619559648487427597" - }, - { - "file": "packages/react-icons-mdl2/src/components/CottonIcon.tsx", - "hash": "18209531163290041460" - }, - { - "file": "packages/react-icons-mdl2/src/components/CouponIcon.tsx", - "hash": "3611873400401667095" - }, - { - "file": "packages/react-icons-mdl2/src/components/CreateMailRuleIcon.tsx", - "hash": "6571912614160142078" - }, - { - "file": "packages/react-icons-mdl2/src/components/CricketIcon.tsx", - "hash": "532957463090142947" - }, - { - "file": "packages/react-icons-mdl2/src/components/CropIcon.tsx", - "hash": "3165893832516880279" - }, - { - "file": "packages/react-icons-mdl2/src/components/CrownIcon.tsx", - "hash": "2168070742611806496" - }, - { - "file": "packages/react-icons-mdl2/src/components/CrownSolidIcon.tsx", - "hash": "1596557615099764967" - }, - { - "file": "packages/react-icons-mdl2/src/components/CubeShapeIcon.tsx", - "hash": "4069367604900402339" - }, - { - "file": "packages/react-icons-mdl2/src/components/CubeShapeSolidIcon.tsx", - "hash": "6848415574728862623" - }, - { - "file": "packages/react-icons-mdl2/src/components/CurrencyIcon.tsx", - "hash": "198131067017148195" - }, - { - "file": "packages/react-icons-mdl2/src/components/CustomListIcon.tsx", - "hash": "5133831396031101349" - }, - { - "file": "packages/react-icons-mdl2/src/components/CustomListMirroredIcon.tsx", - "hash": "7095106435472983257" - }, - { - "file": "packages/react-icons-mdl2/src/components/CustomizeToolbarIcon.tsx", - "hash": "6290254269650954141" - }, - { - "file": "packages/react-icons-mdl2/src/components/CutIcon.tsx", - "hash": "14916081014776173377" - }, - { - "file": "packages/react-icons-mdl2/src/components/CyclingIcon.tsx", - "hash": "13683378182102682960" - }, - { - "file": "packages/react-icons-mdl2/src/components/DOMIcon.tsx", - "hash": "12906128418122963318" - }, - { - "file": "packages/react-icons-mdl2/src/components/DRMIcon.tsx", - "hash": "4407261542633884651" - }, - { - "file": "packages/react-icons-mdl2/src/components/DashboardAddIcon.tsx", - "hash": "1539717290960865228" - }, - { - "file": "packages/react-icons-mdl2/src/components/DataConnectionLibraryIcon.tsx", - "hash": "14933785751434321440" - }, - { - "file": "packages/react-icons-mdl2/src/components/DataManagementSettingsIcon.tsx", - "hash": "6818008293843099093" - }, - { - "file": "packages/react-icons-mdl2/src/components/DatabaseIcon.tsx", - "hash": "11588229290270208748" - }, - { - "file": "packages/react-icons-mdl2/src/components/DatabaseSyncIcon.tsx", - "hash": "15094968328211527615" - }, - { - "file": "packages/react-icons-mdl2/src/components/DatabaseViewIcon.tsx", - "hash": "843483723858348348" - }, - { - "file": "packages/react-icons-mdl2/src/components/DataflowsIcon.tsx", - "hash": "8136763344477157282" - }, - { - "file": "packages/react-icons-mdl2/src/components/DataflowsLinkIcon.tsx", - "hash": "15298746876672502190" - }, - { - "file": "packages/react-icons-mdl2/src/components/DateTime12Icon.tsx", - "hash": "6627149704556179487" - }, - { - "file": "packages/react-icons-mdl2/src/components/DateTime2Icon.tsx", - "hash": "17375769868341167560" - }, - { - "file": "packages/react-icons-mdl2/src/components/DateTimeIcon.tsx", - "hash": "10442348742589426501" - }, - { - "file": "packages/react-icons-mdl2/src/components/DateTimeMirroredIcon.tsx", - "hash": "18073453778555505627" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeactivateOrdersIcon.tsx", - "hash": "6649839772695767699" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecimalsIcon.tsx", - "hash": "17081099173842890308" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecisionSolidIcon.tsx", - "hash": "17081738077200227352" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeclineCallIcon.tsx", - "hash": "452032942065278201" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecreaseIndentArrowIcon.tsx", - "hash": "13870574334268841884" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecreaseIndentArrowMirroredIcon.tsx", - "hash": "15011548357798424123" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecreaseIndentIcon.tsx", - "hash": "13065577369695178636" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecreaseIndentLegacyIcon.tsx", - "hash": "9104839253663370211" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecreaseIndentMirroredIcon.tsx", - "hash": "13014325612888836477" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecreaseIndentTextIcon.tsx", - "hash": "18373508170355261206" - }, - { - "file": "packages/react-icons-mdl2/src/components/DecreaseIndentTextMirroredIcon.tsx", - "hash": "2564754211783847726" - }, - { - "file": "packages/react-icons-mdl2/src/components/DefaultRatioIcon.tsx", - "hash": "738622148229922878" - }, - { - "file": "packages/react-icons-mdl2/src/components/DefectSolidIcon.tsx", - "hash": "16558742789062669957" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeleteColumnsIcon.tsx", - "hash": "6313488992643060020" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeleteIcon.tsx", - "hash": "10792912710594963359" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeleteRowsIcon.tsx", - "hash": "587318337482175522" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeleteRowsMirroredIcon.tsx", - "hash": "643304616330280781" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeleteTableIcon.tsx", - "hash": "12778033820978051742" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeliveryTruckIcon.tsx", - "hash": "7364374569024104758" - }, - { - "file": "packages/react-icons-mdl2/src/components/DependencyAddIcon.tsx", - "hash": "8354637014378472414" - }, - { - "file": "packages/react-icons-mdl2/src/components/DependencyRemoveIcon.tsx", - "hash": "1599367741390634032" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeployIcon.tsx", - "hash": "12556496360695971026" - }, - { - "file": "packages/react-icons-mdl2/src/components/DescendingIcon.tsx", - "hash": "8325601826213020045" - }, - { - "file": "packages/react-icons-mdl2/src/components/DesignIcon.tsx", - "hash": "1235725354522916293" - }, - { - "file": "packages/react-icons-mdl2/src/components/DesktopScreenshotIcon.tsx", - "hash": "16279311035412850738" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeveloperToolsIcon.tsx", - "hash": "5233866801892475567" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeviceBugIcon.tsx", - "hash": "4458294965863833774" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeviceOffIcon.tsx", - "hash": "2548122455670673767" - }, - { - "file": "packages/react-icons-mdl2/src/components/DeviceRunIcon.tsx", - "hash": "6663728061603578123" - }, - { - "file": "packages/react-icons-mdl2/src/components/Devices2Icon.tsx", - "hash": "13195787250915366201" - }, - { - "file": "packages/react-icons-mdl2/src/components/Devices3Icon.tsx", - "hash": "2195077419375007119" - }, - { - "file": "packages/react-icons-mdl2/src/components/Devices4Icon.tsx", - "hash": "9032833672927497181" - }, - { - "file": "packages/react-icons-mdl2/src/components/DiagnosticDataBarTooltipIcon.tsx", - "hash": "7308105095845127562" - }, - { - "file": "packages/react-icons-mdl2/src/components/DiagnosticIcon.tsx", - "hash": "3943560896905082647" - }, - { - "file": "packages/react-icons-mdl2/src/components/DialpadIcon.tsx", - "hash": "1595420172598995832" - }, - { - "file": "packages/react-icons-mdl2/src/components/DiamondIcon.tsx", - "hash": "15385166146377920364" - }, - { - "file": "packages/react-icons-mdl2/src/components/DiamondSolidIcon.tsx", - "hash": "13946867766219515064" - }, - { - "file": "packages/react-icons-mdl2/src/components/DictionaryIcon.tsx", - "hash": "12118255852228972890" - }, - { - "file": "packages/react-icons-mdl2/src/components/DictionaryRemoveIcon.tsx", - "hash": "13370862255201060675" - }, - { - "file": "packages/react-icons-mdl2/src/components/DietPlanNotebookIcon.tsx", - "hash": "3826030876867074456" - }, - { - "file": "packages/react-icons-mdl2/src/components/DiffInlineIcon.tsx", - "hash": "15011859094277716599" - }, - { - "file": "packages/react-icons-mdl2/src/components/DiffSideBySideIcon.tsx", - "hash": "178459671925869865" - }, - { - "file": "packages/react-icons-mdl2/src/components/DisableUpdatesIcon.tsx", - "hash": "16137860201828138151" - }, - { - "file": "packages/react-icons-mdl2/src/components/DisconnectVirtualMachineIcon.tsx", - "hash": "2930597107750432543" - }, - { - "file": "packages/react-icons-mdl2/src/components/DislikeIcon.tsx", - "hash": "18225817531545216062" - }, - { - "file": "packages/react-icons-mdl2/src/components/DislikeSolidIcon.tsx", - "hash": "14087480645264709742" - }, - { - "file": "packages/react-icons-mdl2/src/components/DistributeDownIcon.tsx", - "hash": "1548125120911779786" - }, - { - "file": "packages/react-icons-mdl2/src/components/DocLibraryIcon.tsx", - "hash": "11591439189986323684" - }, - { - "file": "packages/react-icons-mdl2/src/components/DockLeftIcon.tsx", - "hash": "16847431728497961728" - }, - { - "file": "packages/react-icons-mdl2/src/components/DockLeftMirroredIcon.tsx", - "hash": "15710463884680529297" - }, - { - "file": "packages/react-icons-mdl2/src/components/DockRightIcon.tsx", - "hash": "6658426372807392828" - }, - { - "file": "packages/react-icons-mdl2/src/components/DockerLogoIcon.tsx", - "hash": "356095859023745588" - }, - { - "file": "packages/react-icons-mdl2/src/components/DocumentApprovalIcon.tsx", - "hash": "1072757051443608965" - }, - { - "file": "packages/react-icons-mdl2/src/components/DocumentIcon.tsx", - "hash": "7350668992681437371" - }, - { - "file": "packages/react-icons-mdl2/src/components/DocumentManagementIcon.tsx", - "hash": "12832475181564272735" - }, - { - "file": "packages/react-icons-mdl2/src/components/DocumentReplyIcon.tsx", - "hash": "5580080027402339929" - }, - { - "file": "packages/react-icons-mdl2/src/components/DocumentSearchIcon.tsx", - "hash": "18194129163128018046" - }, - { - "file": "packages/react-icons-mdl2/src/components/DocumentSetIcon.tsx", - "hash": "13231352338473935499" - }, - { - "file": "packages/react-icons-mdl2/src/components/DocumentationIcon.tsx", - "hash": "1944399801209430445" - }, - { - "file": "packages/react-icons-mdl2/src/components/DonutChartIcon.tsx", - "hash": "6013093794290304399" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoorIcon.tsx", - "hash": "5093568903579292976" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleBookmarkIcon.tsx", - "hash": "580642304868621494" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronDown12Icon.tsx", - "hash": "17862630360870678403" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronDown8Icon.tsx", - "hash": "3718988317405081816" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronDownIcon.tsx", - "hash": "4060633296743134167" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeft12Icon.tsx", - "hash": "12129472693083176351" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeft8Icon.tsx", - "hash": "3479157522484228650" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeftIcon.tsx", - "hash": "5239193503131271211" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeftMedIcon.tsx", - "hash": "18421213284534102233" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronLeftMedMirroredIcon.tsx", - "hash": "14826784435274098125" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronRight12Icon.tsx", - "hash": "8787847077895803394" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronRight8Icon.tsx", - "hash": "5185405441418862327" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronRightIcon.tsx", - "hash": "4370086810030902255" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronUp12Icon.tsx", - "hash": "4319255572784241793" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronUp8Icon.tsx", - "hash": "3769547499968682415" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleChevronUpIcon.tsx", - "hash": "6295237240279208030" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleColumnEditIcon.tsx", - "hash": "338044593060043662" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleColumnIcon.tsx", - "hash": "4963904430013447512" - }, - { - "file": "packages/react-icons-mdl2/src/components/DoubleDownArrowIcon.tsx", - "hash": "12947437490613649800" - }, - { - "file": "packages/react-icons-mdl2/src/components/DownIcon.tsx", - "hash": "1830363173706684750" - }, - { - "file": "packages/react-icons-mdl2/src/components/DownloadDocumentIcon.tsx", - "hash": "1550953316812736269" - }, - { - "file": "packages/react-icons-mdl2/src/components/DownloadIcon.tsx", - "hash": "11905139494507468856" - }, - { - "file": "packages/react-icons-mdl2/src/components/DragObjectIcon.tsx", - "hash": "16313792608666370824" - }, - { - "file": "packages/react-icons-mdl2/src/components/DrillDownIcon.tsx", - "hash": "3192472893310371370" - }, - { - "file": "packages/react-icons-mdl2/src/components/DrillDownSolidIcon.tsx", - "hash": "17814311297808427278" - }, - { - "file": "packages/react-icons-mdl2/src/components/DrillExpandIcon.tsx", - "hash": "12023259070909879851" - }, - { - "file": "packages/react-icons-mdl2/src/components/DrillShowIcon.tsx", - "hash": "907855544090803318" - }, - { - "file": "packages/react-icons-mdl2/src/components/DrillThroughIcon.tsx", - "hash": "270564848319592953" - }, - { - "file": "packages/react-icons-mdl2/src/components/DriverOffIcon.tsx", - "hash": "2646796161699213401" - }, - { - "file": "packages/react-icons-mdl2/src/components/DropIcon.tsx", - "hash": "2500983101290595010" - }, - { - "file": "packages/react-icons-mdl2/src/components/DropShapeIcon.tsx", - "hash": "4656051841581653680" - }, - { - "file": "packages/react-icons-mdl2/src/components/DropShapeSolidIcon.tsx", - "hash": "3848711829998676861" - }, - { - "file": "packages/react-icons-mdl2/src/components/DropboxLogoIcon.tsx", - "hash": "9875714476061571" - }, - { - "file": "packages/react-icons-mdl2/src/components/DropdownIcon.tsx", - "hash": "3555689926512850428" - }, - { - "file": "packages/react-icons-mdl2/src/components/DuplicateRowIcon.tsx", - "hash": "13697707925593633752" - }, - { - "file": "packages/react-icons-mdl2/src/components/DuststormIcon.tsx", - "hash": "292901588076733830" - }, - { - "file": "packages/react-icons-mdl2/src/components/EMIIcon.tsx", - "hash": "7026920700117073739" - }, - { - "file": "packages/react-icons-mdl2/src/components/EatDrinkIcon.tsx", - "hash": "405852760394722860" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditContactIcon.tsx", - "hash": "1150372315902143826" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditCreateIcon.tsx", - "hash": "13907203705880503221" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditIcon.tsx", - "hash": "17431200438072034596" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditMailIcon.tsx", - "hash": "15970390906079408472" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditMirroredIcon.tsx", - "hash": "6262748336865108686" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditNoteIcon.tsx", - "hash": "1286799354555306996" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditPhotoIcon.tsx", - "hash": "661536436530324462" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditSolid12Icon.tsx", - "hash": "10589666406189014261" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditSolidMirrored12Icon.tsx", - "hash": "10665478881594893882" - }, - { - "file": "packages/react-icons-mdl2/src/components/EditStyleIcon.tsx", - "hash": "2678806848845973724" - }, - { - "file": "packages/react-icons-mdl2/src/components/EducationIcon.tsx", - "hash": "498702559917801758" - }, - { - "file": "packages/react-icons-mdl2/src/components/EgnyteLogoIcon.tsx", - "hash": "11787586365363039828" - }, - { - "file": "packages/react-icons-mdl2/src/components/EllipseIcon.tsx", - "hash": "7563388097856529345" - }, - { - "file": "packages/react-icons-mdl2/src/components/EmbedIcon.tsx", - "hash": "12421049566526858297" - }, - { - "file": "packages/react-icons-mdl2/src/components/Emoji2Icon.tsx", - "hash": "9632797341218035400" - }, - { - "file": "packages/react-icons-mdl2/src/components/EmojiDisappointedIcon.tsx", - "hash": "11292699018502769948" - }, - { - "file": "packages/react-icons-mdl2/src/components/EmojiIcon.tsx", - "hash": "3527785752414452552" - }, - { - "file": "packages/react-icons-mdl2/src/components/EmojiNeutralIcon.tsx", - "hash": "4832038927171425591" - }, - { - "file": "packages/react-icons-mdl2/src/components/EmojiTabSymbolsIcon.tsx", - "hash": "14052316026912103488" - }, - { - "file": "packages/react-icons-mdl2/src/components/EmptyRecycleBinIcon.tsx", - "hash": "14995044938165035199" - }, - { - "file": "packages/react-icons-mdl2/src/components/EncryptionIcon.tsx", - "hash": "15075199846642749840" - }, - { - "file": "packages/react-icons-mdl2/src/components/EndPointSolidIcon.tsx", - "hash": "3167677454794359558" - }, - { - "file": "packages/react-icons-mdl2/src/components/EngineeringGroupIcon.tsx", - "hash": "998933366201572470" - }, - { - "file": "packages/react-icons-mdl2/src/components/EntitlementPolicyIcon.tsx", - "hash": "1793133232166007266" - }, - { - "file": "packages/react-icons-mdl2/src/components/EntitlementRedemptionIcon.tsx", - "hash": "16842033997814526566" - }, - { - "file": "packages/react-icons-mdl2/src/components/EntryDeclineIcon.tsx", - "hash": "6195158794810210978" - }, - { - "file": "packages/react-icons-mdl2/src/components/EntryViewIcon.tsx", - "hash": "6340409500225097365" - }, - { - "file": "packages/react-icons-mdl2/src/components/EqualizerIcon.tsx", - "hash": "5020681445912180101" - }, - { - "file": "packages/react-icons-mdl2/src/components/EraseToolIcon.tsx", - "hash": "1207971189339545279" - }, - { - "file": "packages/react-icons-mdl2/src/components/ErrorBadgeIcon.tsx", - "hash": "8777689618958285548" - }, - { - "file": "packages/react-icons-mdl2/src/components/ErrorIcon.tsx", - "hash": "12165290586267258948" - }, - { - "file": "packages/react-icons-mdl2/src/components/Event12Icon.tsx", - "hash": "2431490381627945469" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventAcceptedIcon.tsx", - "hash": "5320856392963509965" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventDateIcon.tsx", - "hash": "13151646515665406908" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventDateMissed12Icon.tsx", - "hash": "6189471729333629318" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventDeclinedIcon.tsx", - "hash": "14114511301469755687" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventIcon.tsx", - "hash": "13625411325414082247" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventInfoIcon.tsx", - "hash": "1391354774988071725" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventTentativeIcon.tsx", - "hash": "11989511012280391708" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventTentativeMirroredIcon.tsx", - "hash": "1553750628165621737" - }, - { - "file": "packages/react-icons-mdl2/src/components/EventToDoLogoIcon.tsx", - "hash": "1732699839277899742" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExerciseTrackerIcon.tsx", - "hash": "11619246031913373899" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExpandMenuIcon.tsx", - "hash": "2883637658086310412" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExploreContentIcon.tsx", - "hash": "15939418160088449230" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExploreContentSingleIcon.tsx", - "hash": "1357890855973722731" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExploreDataIcon.tsx", - "hash": "13240326137614761264" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExportIcon.tsx", - "hash": "6176838404383274226" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExportMirroredIcon.tsx", - "hash": "17058149608204609598" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExternalBuildIcon.tsx", - "hash": "7805834724391293006" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExternalGitIcon.tsx", - "hash": "2979922376124883597" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExternalTFVCIcon.tsx", - "hash": "8770119390497201960" - }, - { - "file": "packages/react-icons-mdl2/src/components/ExternalXAMLIcon.tsx", - "hash": "14897169727878082254" - }, - { - "file": "packages/react-icons-mdl2/src/components/EyeShadowIcon.tsx", - "hash": "11547250779044996711" - }, - { - "file": "packages/react-icons-mdl2/src/components/EyedropperIcon.tsx", - "hash": "17489759088299487201" - }, - { - "file": "packages/react-icons-mdl2/src/components/F12DevToolsIcon.tsx", - "hash": "15795590193304864300" - }, - { - "file": "packages/react-icons-mdl2/src/components/FacebookLogoIcon.tsx", - "hash": "3945007834451489679" - }, - { - "file": "packages/react-icons-mdl2/src/components/FamilyIcon.tsx", - "hash": "1944465575896356847" - }, - { - "file": "packages/react-icons-mdl2/src/components/FangBodyIcon.tsx", - "hash": "17642602016488988479" - }, - { - "file": "packages/react-icons-mdl2/src/components/FastForwardEightXIcon.tsx", - "hash": "18178309367561894583" - }, - { - "file": "packages/react-icons-mdl2/src/components/FastForwardFourXIcon.tsx", - "hash": "6705881211608202785" - }, - { - "file": "packages/react-icons-mdl2/src/components/FastForwardIcon.tsx", - "hash": "16351946631805874388" - }, - { - "file": "packages/react-icons-mdl2/src/components/FastForwardOneFiveXIcon.tsx", - "hash": "9945217581225705551" - }, - { - "file": "packages/react-icons-mdl2/src/components/FastForwardOneXIcon.tsx", - "hash": "1275773114276841049" - }, - { - "file": "packages/react-icons-mdl2/src/components/FastForwardPointFiveXIcon.tsx", - "hash": "17652874859284714523" - }, - { - "file": "packages/react-icons-mdl2/src/components/FastForwardTwoXIcon.tsx", - "hash": "6288769981516574323" - }, - { - "file": "packages/react-icons-mdl2/src/components/FastModeIcon.tsx", - "hash": "8565396335278143488" - }, - { - "file": "packages/react-icons-mdl2/src/components/FaviconIcon.tsx", - "hash": "12942536079808820041" - }, - { - "file": "packages/react-icons-mdl2/src/components/FavoriteListIcon.tsx", - "hash": "12205614405595495904" - }, - { - "file": "packages/react-icons-mdl2/src/components/FavoriteStarFillIcon.tsx", - "hash": "11957377664756637903" - }, - { - "file": "packages/react-icons-mdl2/src/components/FavoriteStarIcon.tsx", - "hash": "276723320467206854" - }, - { - "file": "packages/react-icons-mdl2/src/components/FaxIcon.tsx", - "hash": "15174575052554189774" - }, - { - "file": "packages/react-icons-mdl2/src/components/FeedbackIcon.tsx", - "hash": "14179107003696613703" - }, - { - "file": "packages/react-icons-mdl2/src/components/FeedbackRequestMirroredSolidIcon.tsx", - "hash": "6167066386013211705" - }, - { - "file": "packages/react-icons-mdl2/src/components/FeedbackRequestSolidIcon.tsx", - "hash": "11345199070943455551" - }, - { - "file": "packages/react-icons-mdl2/src/components/FeedbackResponseSolidIcon.tsx", - "hash": "844989139249440000" - }, - { - "file": "packages/react-icons-mdl2/src/components/FerryIcon.tsx", - "hash": "3927782908157924236" - }, - { - "file": "packages/react-icons-mdl2/src/components/FerrySolidIcon.tsx", - "hash": "16922795746977067197" - }, - { - "file": "packages/react-icons-mdl2/src/components/FieldChangedIcon.tsx", - "hash": "6362867984287681842" - }, - { - "file": "packages/react-icons-mdl2/src/components/FieldEmptyIcon.tsx", - "hash": "12951541487822180241" - }, - { - "file": "packages/react-icons-mdl2/src/components/FieldFilledIcon.tsx", - "hash": "2829813208719522960" - }, - { - "file": "packages/react-icons-mdl2/src/components/FieldNotChangedIcon.tsx", - "hash": "9143517295368689068" - }, - { - "file": "packages/react-icons-mdl2/src/components/FieldReadOnlyIcon.tsx", - "hash": "1383806378416658822" - }, - { - "file": "packages/react-icons-mdl2/src/components/FieldRequiredIcon.tsx", - "hash": "9874506948980735455" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileASPXIcon.tsx", - "hash": "6895839686502133855" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileBugIcon.tsx", - "hash": "7640769980279416101" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileCSSIcon.tsx", - "hash": "1050684036460858812" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileCodeIcon.tsx", - "hash": "16719505228843895462" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileCommentIcon.tsx", - "hash": "606968050369362343" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileHTMLIcon.tsx", - "hash": "765214480847777695" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileImageIcon.tsx", - "hash": "4844641701165238743" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileJAVAIcon.tsx", - "hash": "4450722937973378228" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileLessIcon.tsx", - "hash": "8881253924066945591" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileOffIcon.tsx", - "hash": "9345742102333117451" - }, - { - "file": "packages/react-icons-mdl2/src/components/FilePDBIcon.tsx", - "hash": "5282290141971118284" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileRequestIcon.tsx", - "hash": "7269778805807155600" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileSQLIcon.tsx", - "hash": "4971825357918078797" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileSassIcon.tsx", - "hash": "6262095417547644767" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileSymlinkIcon.tsx", - "hash": "6888643214960891177" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileSystemIcon.tsx", - "hash": "4586503443833768744" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileTemplateIcon.tsx", - "hash": "102524233678650" - }, - { - "file": "packages/react-icons-mdl2/src/components/FileYMLIcon.tsx", - "hash": "7373943771233632903" - }, - { - "file": "packages/react-icons-mdl2/src/components/FilterAscendingIcon.tsx", - "hash": "7986231996921620159" - }, - { - "file": "packages/react-icons-mdl2/src/components/FilterDescendingIcon.tsx", - "hash": "9036833625296158708" - }, - { - "file": "packages/react-icons-mdl2/src/components/FilterIcon.tsx", - "hash": "15632557997728755643" - }, - { - "file": "packages/react-icons-mdl2/src/components/FilterSettingsIcon.tsx", - "hash": "18384344814770433702" - }, - { - "file": "packages/react-icons-mdl2/src/components/FilterSolidIcon.tsx", - "hash": "16527487026441098924" - }, - { - "file": "packages/react-icons-mdl2/src/components/FiltersIcon.tsx", - "hash": "17788291567474260736" - }, - { - "file": "packages/react-icons-mdl2/src/components/FiltersSolidIcon.tsx", - "hash": "2955836481941787615" - }, - { - "file": "packages/react-icons-mdl2/src/components/FinancialIcon.tsx", - "hash": "6417373302479088294" - }, - { - "file": "packages/react-icons-mdl2/src/components/FinancialMirroredSolidIcon.tsx", - "hash": "12472787632715591727" - }, - { - "file": "packages/react-icons-mdl2/src/components/FinancialSolidIcon.tsx", - "hash": "16759164632230079118" - }, - { - "file": "packages/react-icons-mdl2/src/components/FingerprintIcon.tsx", - "hash": "1814464459187160317" - }, - { - "file": "packages/react-icons-mdl2/src/components/FitPageIcon.tsx", - "hash": "18087310676152160539" - }, - { - "file": "packages/react-icons-mdl2/src/components/FitWidthIcon.tsx", - "hash": "3330934962504444846" - }, - { - "file": "packages/react-icons-mdl2/src/components/FiveTileGridIcon.tsx", - "hash": "4303387150744159805" - }, - { - "file": "packages/react-icons-mdl2/src/components/FixedAssetManagementIcon.tsx", - "hash": "4450397116994178154" - }, - { - "file": "packages/react-icons-mdl2/src/components/FixedColumnWidthIcon.tsx", - "hash": "1282486324231742294" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlagIcon.tsx", - "hash": "1404061495096326413" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlameSolidIcon.tsx", - "hash": "1580665274438723795" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlashAutoIcon.tsx", - "hash": "6815009142415122429" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlashOffIcon.tsx", - "hash": "6505550303339807125" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlashlightIcon.tsx", - "hash": "3477643417563353345" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlickDownIcon.tsx", - "hash": "3353038571830785712" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlickLeftIcon.tsx", - "hash": "15950772530127709782" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlickRightIcon.tsx", - "hash": "10771208732872140808" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlickUpIcon.tsx", - "hash": "8892451043636875937" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlowChartIcon.tsx", - "hash": "226511449971238124" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlowIcon.tsx", - "hash": "1235278112582679794" - }, - { - "file": "packages/react-icons-mdl2/src/components/FlowerIcon.tsx", - "hash": "4427719849604199650" - }, - { - "file": "packages/react-icons-mdl2/src/components/FocalPointIcon.tsx", - "hash": "15911317157455942097" - }, - { - "file": "packages/react-icons-mdl2/src/components/FocusIcon.tsx", - "hash": "5539639720883062777" - }, - { - "file": "packages/react-icons-mdl2/src/components/FocusViewIcon.tsx", - "hash": "3939117956871096782" - }, - { - "file": "packages/react-icons-mdl2/src/components/FogIcon.tsx", - "hash": "1980192386355863521" - }, - { - "file": "packages/react-icons-mdl2/src/components/FolderFillIcon.tsx", - "hash": "9389817415866479663" - }, - { - "file": "packages/react-icons-mdl2/src/components/FolderHorizontalIcon.tsx", - "hash": "6956772245809174415" - }, - { - "file": "packages/react-icons-mdl2/src/components/FolderIcon.tsx", - "hash": "1712208359337412229" - }, - { - "file": "packages/react-icons-mdl2/src/components/FolderListIcon.tsx", - "hash": "9551306821671813083" - }, - { - "file": "packages/react-icons-mdl2/src/components/FolderListMirroredIcon.tsx", - "hash": "9938125311101616247" - }, - { - "file": "packages/react-icons-mdl2/src/components/FolderOpenIcon.tsx", - "hash": "16236857408621192617" - }, - { - "file": "packages/react-icons-mdl2/src/components/FolderQueryIcon.tsx", - "hash": "757534951338790000" - }, - { - "file": "packages/react-icons-mdl2/src/components/FolderSearchIcon.tsx", - "hash": "15912130893073646850" - }, - { - "file": "packages/react-icons-mdl2/src/components/FollowUserIcon.tsx", - "hash": "6727622312615324985" - }, - { - "file": "packages/react-icons-mdl2/src/components/FontColorAIcon.tsx", - "hash": "11470237927172903368" - }, - { - "file": "packages/react-icons-mdl2/src/components/FontColorIcon.tsx", - "hash": "15275041937967336194" - }, - { - "file": "packages/react-icons-mdl2/src/components/FontColorSwatchIcon.tsx", - "hash": "12200134352683161273" - }, - { - "file": "packages/react-icons-mdl2/src/components/FontDecreaseIcon.tsx", - "hash": "13742892961586592786" - }, - { - "file": "packages/react-icons-mdl2/src/components/FontIcon.tsx", - "hash": "13724598167896502006" - }, - { - "file": "packages/react-icons-mdl2/src/components/FontIncreaseIcon.tsx", - "hash": "11026524880036930460" - }, - { - "file": "packages/react-icons-mdl2/src/components/FontSize2Icon.tsx", - "hash": "17809756178006834445" - }, - { - "file": "packages/react-icons-mdl2/src/components/FontSizeIcon.tsx", - "hash": "5696547717711169794" - }, - { - "file": "packages/react-icons-mdl2/src/components/FooterIcon.tsx", - "hash": "2763034011155046097" - }, - { - "file": "packages/react-icons-mdl2/src/components/FormLibraryIcon.tsx", - "hash": "16894238111626919263" - }, - { - "file": "packages/react-icons-mdl2/src/components/FormLibraryMirroredIcon.tsx", - "hash": "1164345260899139517" - }, - { - "file": "packages/react-icons-mdl2/src/components/FormatPainterIcon.tsx", - "hash": "15912854457010730699" - }, - { - "file": "packages/react-icons-mdl2/src/components/ForumIcon.tsx", - "hash": "14594499032992496602" - }, - { - "file": "packages/react-icons-mdl2/src/components/ForwardEventIcon.tsx", - "hash": "12838663604244959435" - }, - { - "file": "packages/react-icons-mdl2/src/components/ForwardIcon.tsx", - "hash": "8618057237755943493" - }, - { - "file": "packages/react-icons-mdl2/src/components/FreezingIcon.tsx", - "hash": "7147821662650477276" - }, - { - "file": "packages/react-icons-mdl2/src/components/FrigidIcon.tsx", - "hash": "9172736073466509726" - }, - { - "file": "packages/react-icons-mdl2/src/components/FrontCameraIcon.tsx", - "hash": "7890552227182908605" - }, - { - "file": "packages/react-icons-mdl2/src/components/FullCircleMaskIcon.tsx", - "hash": "4033135983242084915" - }, - { - "file": "packages/react-icons-mdl2/src/components/FullHistoryIcon.tsx", - "hash": "12488798171462511493" - }, - { - "file": "packages/react-icons-mdl2/src/components/FullScreenIcon.tsx", - "hash": "12958098732161905706" - }, - { - "file": "packages/react-icons-mdl2/src/components/FullViewIcon.tsx", - "hash": "5235475494113882152" - }, - { - "file": "packages/react-icons-mdl2/src/components/FullWidthEditIcon.tsx", - "hash": "5465637594615076102" - }, - { - "file": "packages/react-icons-mdl2/src/components/FullWidthIcon.tsx", - "hash": "15366904044629970765" - }, - { - "file": "packages/react-icons-mdl2/src/components/FunctionalManagerDashboardIcon.tsx", - "hash": "12203260525418953853" - }, - { - "file": "packages/react-icons-mdl2/src/components/FunnelChartIcon.tsx", - "hash": "10790643609584269218" - }, - { - "file": "packages/react-icons-mdl2/src/components/GIFIcon.tsx", - "hash": "9632731809471011174" - }, - { - "file": "packages/react-icons-mdl2/src/components/GUIDIcon.tsx", - "hash": "15534661867014684872" - }, - { - "file": "packages/react-icons-mdl2/src/components/GameIcon.tsx", - "hash": "15746196390646228787" - }, - { - "file": "packages/react-icons-mdl2/src/components/GatherIcon.tsx", - "hash": "15848159200387148602" - }, - { - "file": "packages/react-icons-mdl2/src/components/GenerateIcon.tsx", - "hash": "8156502823136479518" - }, - { - "file": "packages/react-icons-mdl2/src/components/GenericScanFilledIcon.tsx", - "hash": "11097470524340453746" - }, - { - "file": "packages/react-icons-mdl2/src/components/GenericScanIcon.tsx", - "hash": "5566996355092293666" - }, - { - "file": "packages/react-icons-mdl2/src/components/GiftBoxSolidIcon.tsx", - "hash": "7571481021195839227" - }, - { - "file": "packages/react-icons-mdl2/src/components/GiftCardIcon.tsx", - "hash": "2807842151596238352" - }, - { - "file": "packages/react-icons-mdl2/src/components/GiftboxIcon.tsx", - "hash": "17845510496809357564" - }, - { - "file": "packages/react-icons-mdl2/src/components/GiftboxOpenIcon.tsx", - "hash": "14201350368078001710" - }, - { - "file": "packages/react-icons-mdl2/src/components/GitForkIcon.tsx", - "hash": "16940210332522310039" - }, - { - "file": "packages/react-icons-mdl2/src/components/GitGraphIcon.tsx", - "hash": "16374940073848176332" - }, - { - "file": "packages/react-icons-mdl2/src/components/GitHubLogoIcon.tsx", - "hash": "11928675214469758864" - }, - { - "file": "packages/react-icons-mdl2/src/components/GitLogoIcon.tsx", - "hash": "11522156507346313112" - }, - { - "file": "packages/react-icons-mdl2/src/components/GlassesIcon.tsx", - "hash": "8565278624735671618" - }, - { - "file": "packages/react-icons-mdl2/src/components/GlimmerIcon.tsx", - "hash": "10243000354255117688" - }, - { - "file": "packages/react-icons-mdl2/src/components/GlobalNavButtonActiveIcon.tsx", - "hash": "565660960618390405" - }, - { - "file": "packages/react-icons-mdl2/src/components/GlobalNavButtonIcon.tsx", - "hash": "9326193492154063760" - }, - { - "file": "packages/react-icons-mdl2/src/components/Globe2Icon.tsx", - "hash": "14479270011036253116" - }, - { - "file": "packages/react-icons-mdl2/src/components/GlobeFavoriteIcon.tsx", - "hash": "6439401632011068110" - }, - { - "file": "packages/react-icons-mdl2/src/components/GlobeIcon.tsx", - "hash": "13412169222349203733" - }, - { - "file": "packages/react-icons-mdl2/src/components/GoIcon.tsx", - "hash": "3851795450163977084" - }, - { - "file": "packages/react-icons-mdl2/src/components/GoMirroredIcon.tsx", - "hash": "10247853145577366265" - }, - { - "file": "packages/react-icons-mdl2/src/components/GoToDashboardIcon.tsx", - "hash": "15740169657036959208" - }, - { - "file": "packages/react-icons-mdl2/src/components/GolfIcon.tsx", - "hash": "10545511422697821400" - }, - { - "file": "packages/react-icons-mdl2/src/components/GoogleDriveLogoBottomBlueIcon.tsx", - "hash": "3001119224492718906" - }, - { - "file": "packages/react-icons-mdl2/src/components/GoogleDriveLogoIcon.tsx", - "hash": "18004521176360559242" - }, - { - "file": "packages/react-icons-mdl2/src/components/GoogleDriveLogoLeftGreenIcon.tsx", - "hash": "14815230303350470687" - }, - { - "file": "packages/react-icons-mdl2/src/components/GoogleDriveLogoRightYellowIcon.tsx", - "hash": "17655187547932670362" - }, - { - "file": "packages/react-icons-mdl2/src/components/GotoTodayIcon.tsx", - "hash": "11786306560619474198" - }, - { - "file": "packages/react-icons-mdl2/src/components/GradleLogo32Icon.tsx", - "hash": "5235762091848188661" - }, - { - "file": "packages/react-icons-mdl2/src/components/GreetingCardIcon.tsx", - "hash": "2652324495810548652" - }, - { - "file": "packages/react-icons-mdl2/src/components/GridViewLargeIcon.tsx", - "hash": "7773270874283410534" - }, - { - "file": "packages/react-icons-mdl2/src/components/GridViewMediumIcon.tsx", - "hash": "11534935878292624677" - }, - { - "file": "packages/react-icons-mdl2/src/components/GridViewSmallIcon.tsx", - "hash": "12237242453908160281" - }, - { - "file": "packages/react-icons-mdl2/src/components/GripperBarHorizontalIcon.tsx", - "hash": "6308142595012791984" - }, - { - "file": "packages/react-icons-mdl2/src/components/GripperBarVerticalIcon.tsx", - "hash": "7470598359065919341" - }, - { - "file": "packages/react-icons-mdl2/src/components/GripperDotsVerticalIcon.tsx", - "hash": "15307366740827741066" - }, - { - "file": "packages/react-icons-mdl2/src/components/GripperToolIcon.tsx", - "hash": "716840007844796444" - }, - { - "file": "packages/react-icons-mdl2/src/components/GroupIcon.tsx", - "hash": "13608367865003462107" - }, - { - "file": "packages/react-icons-mdl2/src/components/GroupListIcon.tsx", - "hash": "6518290500881406538" - }, - { - "file": "packages/react-icons-mdl2/src/components/GroupObjectIcon.tsx", - "hash": "1586879418830404806" - }, - { - "file": "packages/react-icons-mdl2/src/components/GroupedAscendingIcon.tsx", - "hash": "6856150591813394404" - }, - { - "file": "packages/react-icons-mdl2/src/components/GroupedDescendingIcon.tsx", - "hash": "13375481586542023244" - }, - { - "file": "packages/react-icons-mdl2/src/components/GroupedListIcon.tsx", - "hash": "7376169769524108343" - }, - { - "file": "packages/react-icons-mdl2/src/components/GuitarIcon.tsx", - "hash": "17314515334492037841" - }, - { - "file": "packages/react-icons-mdl2/src/components/HailDayIcon.tsx", - "hash": "12947649342042611772" - }, - { - "file": "packages/react-icons-mdl2/src/components/HailNightIcon.tsx", - "hash": "18391447311035016800" - }, - { - "file": "packages/react-icons-mdl2/src/components/HalfAlphaIcon.tsx", - "hash": "6922565485971119060" - }, - { - "file": "packages/react-icons-mdl2/src/components/HalfCircleIcon.tsx", - "hash": "2897520889126335567" - }, - { - "file": "packages/react-icons-mdl2/src/components/HandsFreeIcon.tsx", - "hash": "11239064513804798904" - }, - { - "file": "packages/react-icons-mdl2/src/components/HandwritingIcon.tsx", - "hash": "15421536123762955104" - }, - { - "file": "packages/react-icons-mdl2/src/components/HardDriveGroupIcon.tsx", - "hash": "7633148961616627245" - }, - { - "file": "packages/react-icons-mdl2/src/components/HardDriveIcon.tsx", - "hash": "5939750842377694100" - }, - { - "file": "packages/react-icons-mdl2/src/components/HardDriveLockIcon.tsx", - "hash": "17656948361291404624" - }, - { - "file": "packages/react-icons-mdl2/src/components/HardDriveUnlockIcon.tsx", - "hash": "8004000311676833368" - }, - { - "file": "packages/react-icons-mdl2/src/components/Header1Icon.tsx", - "hash": "8351749191063511306" - }, - { - "file": "packages/react-icons-mdl2/src/components/Header2Icon.tsx", - "hash": "5390568727727418817" - }, - { - "file": "packages/react-icons-mdl2/src/components/Header3Icon.tsx", - "hash": "840488768817872929" - }, - { - "file": "packages/react-icons-mdl2/src/components/Header4Icon.tsx", - "hash": "14967090543487683017" - }, - { - "file": "packages/react-icons-mdl2/src/components/HeaderIcon.tsx", - "hash": "2899809964069853826" - }, - { - "file": "packages/react-icons-mdl2/src/components/HeadsetIcon.tsx", - "hash": "1913138919122316805" - }, - { - "file": "packages/react-icons-mdl2/src/components/HeadsetSolidIcon.tsx", - "hash": "1680033626700166228" - }, - { - "file": "packages/react-icons-mdl2/src/components/HealthIcon.tsx", - "hash": "14799223708863617884" - }, - { - "file": "packages/react-icons-mdl2/src/components/HealthRefreshIcon.tsx", - "hash": "14799706733515662794" - }, - { - "file": "packages/react-icons-mdl2/src/components/HealthSolidIcon.tsx", - "hash": "15046539076256353862" - }, - { - "file": "packages/react-icons-mdl2/src/components/HeartBrokenIcon.tsx", - "hash": "1070767128146372350" - }, - { - "file": "packages/react-icons-mdl2/src/components/HeartFillIcon.tsx", - "hash": "2370001366264079587" - }, - { - "file": "packages/react-icons-mdl2/src/components/HeartIcon.tsx", - "hash": "14890364970617740611" - }, - { - "file": "packages/react-icons-mdl2/src/components/HelpIcon.tsx", - "hash": "17388551513070667300" - }, - { - "file": "packages/react-icons-mdl2/src/components/HelpMirroredIcon.tsx", - "hash": "8186137454020037762" - }, - { - "file": "packages/react-icons-mdl2/src/components/HexaditeInvestigationCancelIcon.tsx", - "hash": "8670293296701721833" - }, - { - "file": "packages/react-icons-mdl2/src/components/HexaditeInvestigationIcon.tsx", - "hash": "14080127459799947212" - }, - { - "file": "packages/react-icons-mdl2/src/components/HexaditeInvestigationSemiAutoIcon.tsx", - "hash": "10609077070546900329" - }, - { - "file": "packages/react-icons-mdl2/src/components/HexagonIcon.tsx", - "hash": "3897459486326302618" - }, - { - "file": "packages/react-icons-mdl2/src/components/Hide2Icon.tsx", - "hash": "5182329091472537173" - }, - { - "file": "packages/react-icons-mdl2/src/components/Hide3Icon.tsx", - "hash": "2906922485346461460" - }, - { - "file": "packages/react-icons-mdl2/src/components/HideIcon.tsx", - "hash": "12862215902863030841" - }, - { - "file": "packages/react-icons-mdl2/src/components/HighlightIcon.tsx", - "hash": "15762583331867575297" - }, - { - "file": "packages/react-icons-mdl2/src/components/HighlightMappedShapesIcon.tsx", - "hash": "16132141732380379547" - }, - { - "file": "packages/react-icons-mdl2/src/components/HintTextIcon.tsx", - "hash": "4279486080758729787" - }, - { - "file": "packages/react-icons-mdl2/src/components/HistoricalWeatherIcon.tsx", - "hash": "13818466974725287815" - }, - { - "file": "packages/react-icons-mdl2/src/components/HistoryIcon.tsx", - "hash": "16030330658754714190" - }, - { - "file": "packages/react-icons-mdl2/src/components/HomeDropdownIcon.tsx", - "hash": "2488444561259964042" - }, - { - "file": "packages/react-icons-mdl2/src/components/HomeGroupIcon.tsx", - "hash": "14908559223308932072" - }, - { - "file": "packages/react-icons-mdl2/src/components/HomeIcon.tsx", - "hash": "12724622983047291653" - }, - { - "file": "packages/react-icons-mdl2/src/components/HomeSolidIcon.tsx", - "hash": "11148478484135002227" - }, - { - "file": "packages/react-icons-mdl2/src/components/HomeVerifyIcon.tsx", - "hash": "15066446849328693732" - }, - { - "file": "packages/react-icons-mdl2/src/components/HorizontalDistributeCenterIcon.tsx", - "hash": "13579758295283409353" - }, - { - "file": "packages/react-icons-mdl2/src/components/HorizontalTabKeyIcon.tsx", - "hash": "2735500143879888466" - }, - { - "file": "packages/react-icons-mdl2/src/components/HospitalIcon.tsx", - "hash": "16954429495584924657" - }, - { - "file": "packages/react-icons-mdl2/src/components/HotelIcon.tsx", - "hash": "1602330941386012729" - }, - { - "file": "packages/react-icons-mdl2/src/components/HourGlassIcon.tsx", - "hash": "3191346496426536019" - }, - { - "file": "packages/react-icons-mdl2/src/components/IDBadgeIcon.tsx", - "hash": "897528330211741886" - }, - { - "file": "packages/react-icons-mdl2/src/components/IOTIcon.tsx", - "hash": "5285884083806935808" - }, - { - "file": "packages/react-icons-mdl2/src/components/IRMForwardIcon.tsx", - "hash": "362575832829977312" - }, - { - "file": "packages/react-icons-mdl2/src/components/IRMForwardMirroredIcon.tsx", - "hash": "13155918519999883784" - }, - { - "file": "packages/react-icons-mdl2/src/components/IRMReplyIcon.tsx", - "hash": "13947164312188832822" - }, - { - "file": "packages/react-icons-mdl2/src/components/IRMReplyMirroredIcon.tsx", - "hash": "1145353507746735981" - }, - { - "file": "packages/react-icons-mdl2/src/components/IconSetsFlagIcon.tsx", - "hash": "15214257063406701202" - }, - { - "file": "packages/react-icons-mdl2/src/components/IgnoreConversationIcon.tsx", - "hash": "9335776128620278432" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImageCrosshairIcon.tsx", - "hash": "5138187599671604052" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImageDiffIcon.tsx", - "hash": "13599864074318182656" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImageInARIcon.tsx", - "hash": "13855592006667470306" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImagePixelIcon.tsx", - "hash": "9154411159137130252" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImageSearchIcon.tsx", - "hash": "9041697212803531685" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImportAllMirroredIcon.tsx", - "hash": "3025801446152077118" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImportIcon.tsx", - "hash": "13040661219662628437" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImportMirroredIcon.tsx", - "hash": "12908089643626136740" - }, - { - "file": "packages/react-icons-mdl2/src/components/ImportantIcon.tsx", - "hash": "7826677808925451366" - }, - { - "file": "packages/react-icons-mdl2/src/components/InboxCheckIcon.tsx", - "hash": "13209492309610537868" - }, - { - "file": "packages/react-icons-mdl2/src/components/InboxIcon.tsx", - "hash": "16589216967091416154" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncidentTriangleIcon.tsx", - "hash": "9235238053814830523" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncomingCallIcon.tsx", - "hash": "4007250706804841898" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentArrowIcon.tsx", - "hash": "5427824453044875567" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentArrowMirroredIcon.tsx", - "hash": "16626271714978007440" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentHangingIcon.tsx", - "hash": "3186950272609104279" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentHangingMirroredIcon.tsx", - "hash": "9996178347351637205" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentIcon.tsx", - "hash": "9678011342676446086" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentLegacyIcon.tsx", - "hash": "13386453491918711782" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentMirroredIcon.tsx", - "hash": "1303278817606075548" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentTextIcon.tsx", - "hash": "9430603589597575034" - }, - { - "file": "packages/react-icons-mdl2/src/components/IncreaseIndentTextMirroredIcon.tsx", - "hash": "6756712163376617801" - }, - { - "file": "packages/react-icons-mdl2/src/components/IndentFirstLineIcon.tsx", - "hash": "370488840276189328" - }, - { - "file": "packages/react-icons-mdl2/src/components/Info2Icon.tsx", - "hash": "14020597724569194775" - }, - { - "file": "packages/react-icons-mdl2/src/components/InfoIcon.tsx", - "hash": "3721390302452091834" - }, - { - "file": "packages/react-icons-mdl2/src/components/InfoSolidIcon.tsx", - "hash": "2432153378739515036" - }, - { - "file": "packages/react-icons-mdl2/src/components/InformationBarriersIcon.tsx", - "hash": "8696582436277744629" - }, - { - "file": "packages/react-icons-mdl2/src/components/InkingToolIcon.tsx", - "hash": "11459756636301925682" - }, - { - "file": "packages/react-icons-mdl2/src/components/InputAddressIcon.tsx", - "hash": "13812358188248488657" - }, - { - "file": "packages/react-icons-mdl2/src/components/InsertColumnsLeftIcon.tsx", - "hash": "13708775557086203284" - }, - { - "file": "packages/react-icons-mdl2/src/components/InsertColumnsRightIcon.tsx", - "hash": "11557471302491603282" - }, - { - "file": "packages/react-icons-mdl2/src/components/InsertIcon.tsx", - "hash": "12107165173487530471" - }, - { - "file": "packages/react-icons-mdl2/src/components/InsertRowsAboveIcon.tsx", - "hash": "13485979422068241069" - }, - { - "file": "packages/react-icons-mdl2/src/components/InsertRowsBelowIcon.tsx", - "hash": "5877492448004420133" - }, - { - "file": "packages/react-icons-mdl2/src/components/InsertSignatureLineIcon.tsx", - "hash": "12840188565611841260" - }, - { - "file": "packages/react-icons-mdl2/src/components/InsertTextBoxIcon.tsx", - "hash": "879948278558379041" - }, - { - "file": "packages/react-icons-mdl2/src/components/InsightsIcon.tsx", - "hash": "15701471209360575195" - }, - { - "file": "packages/react-icons-mdl2/src/components/InstallToDriveIcon.tsx", - "hash": "1266954311457013518" - }, - { - "file": "packages/react-icons-mdl2/src/components/InstallationIcon.tsx", - "hash": "168933430430857110" - }, - { - "file": "packages/react-icons-mdl2/src/components/InternalInvestigationIcon.tsx", - "hash": "14733996250043645076" - }, - { - "file": "packages/react-icons-mdl2/src/components/InternetSharingIcon.tsx", - "hash": "231211082630324067" - }, - { - "file": "packages/react-icons-mdl2/src/components/IssueSolidIcon.tsx", - "hash": "10205135659021210842" - }, - { - "file": "packages/react-icons-mdl2/src/components/IssueTrackingIcon.tsx", - "hash": "13078163167098961521" - }, - { - "file": "packages/react-icons-mdl2/src/components/IssueTrackingMirroredIcon.tsx", - "hash": "6853285071464396522" - }, - { - "file": "packages/react-icons-mdl2/src/components/ItalicIcon.tsx", - "hash": "10688617757439753808" - }, - { - "file": "packages/react-icons-mdl2/src/components/JSIcon.tsx", - "hash": "7001057569749280823" - }, - { - "file": "packages/react-icons-mdl2/src/components/JavaLogoIcon.tsx", - "hash": "12341234154489462799" - }, - { - "file": "packages/react-icons-mdl2/src/components/JavaScriptLanguageIcon.tsx", - "hash": "2734361147194257907" - }, - { - "file": "packages/react-icons-mdl2/src/components/JenkinsLogoIcon.tsx", - "hash": "2671724868545436197" - }, - { - "file": "packages/react-icons-mdl2/src/components/JoinOnlineMeetingIcon.tsx", - "hash": "11532035316407786879" - }, - { - "file": "packages/react-icons-mdl2/src/components/KeubernetesLogoIcon.tsx", - "hash": "2977458046132010956" - }, - { - "file": "packages/react-icons-mdl2/src/components/KeyPhraseExtractionIcon.tsx", - "hash": "17790650281198840541" - }, - { - "file": "packages/react-icons-mdl2/src/components/KeyboardClassicIcon.tsx", - "hash": "411576966672510523" - }, - { - "file": "packages/react-icons-mdl2/src/components/KnowledgeArticleIcon.tsx", - "hash": "12469477897422924243" - }, - { - "file": "packages/react-icons-mdl2/src/components/LabelIcon.tsx", - "hash": "3378231475701239352" - }, - { - "file": "packages/react-icons-mdl2/src/components/LadybugSolidIcon.tsx", - "hash": "2255768388802589476" - }, - { - "file": "packages/react-icons-mdl2/src/components/LampIcon.tsx", - "hash": "2980312443538296758" - }, - { - "file": "packages/react-icons-mdl2/src/components/LandscapeOrientationIcon.tsx", - "hash": "4067546757606619660" - }, - { - "file": "packages/react-icons-mdl2/src/components/LaptopSecureIcon.tsx", - "hash": "6296328661135281654" - }, - { - "file": "packages/react-icons-mdl2/src/components/LaptopSelectedIcon.tsx", - "hash": "16074226251523455567" - }, - { - "file": "packages/react-icons-mdl2/src/components/LargeGridIcon.tsx", - "hash": "5229171462323349257" - }, - { - "file": "packages/react-icons-mdl2/src/components/LearningToolsIcon.tsx", - "hash": "1478670133257245649" - }, - { - "file": "packages/react-icons-mdl2/src/components/LeaveIcon.tsx", - "hash": "3413862808121824360" - }, - { - "file": "packages/react-icons-mdl2/src/components/LeaveUserIcon.tsx", - "hash": "12989890662915153188" - }, - { - "file": "packages/react-icons-mdl2/src/components/LibraryIcon.tsx", - "hash": "1291483442627924261" - }, - { - "file": "packages/react-icons-mdl2/src/components/LifesaverIcon.tsx", - "hash": "15719069419304250576" - }, - { - "file": "packages/react-icons-mdl2/src/components/LifesaverLockIcon.tsx", - "hash": "8818896047143933430" - }, - { - "file": "packages/react-icons-mdl2/src/components/LightIcon.tsx", - "hash": "5156483312012830102" - }, - { - "file": "packages/react-icons-mdl2/src/components/LightWeightIcon.tsx", - "hash": "3865104666332960985" - }, - { - "file": "packages/react-icons-mdl2/src/components/LightbulbIcon.tsx", - "hash": "2436163697764661261" - }, - { - "file": "packages/react-icons-mdl2/src/components/LightningBoltIcon.tsx", - "hash": "13485616252088130492" - }, - { - "file": "packages/react-icons-mdl2/src/components/LightningBoltSolidIcon.tsx", - "hash": "15054961729375683944" - }, - { - "file": "packages/react-icons-mdl2/src/components/LikeIcon.tsx", - "hash": "9032546788293939018" - }, - { - "file": "packages/react-icons-mdl2/src/components/LikeSolidIcon.tsx", - "hash": "18382395873982313140" - }, - { - "file": "packages/react-icons-mdl2/src/components/LineChartIcon.tsx", - "hash": "794669679327992310" - }, - { - "file": "packages/react-icons-mdl2/src/components/LineIcon.tsx", - "hash": "9556042467546249456" - }, - { - "file": "packages/react-icons-mdl2/src/components/LineSpacingIcon.tsx", - "hash": "15896967001335665868" - }, - { - "file": "packages/react-icons-mdl2/src/components/LineStyleIcon.tsx", - "hash": "18211431930869399084" - }, - { - "file": "packages/react-icons-mdl2/src/components/LineThicknessIcon.tsx", - "hash": "14859153643587611765" - }, - { - "file": "packages/react-icons-mdl2/src/components/Link12Icon.tsx", - "hash": "16081584489473752658" - }, - { - "file": "packages/react-icons-mdl2/src/components/LinkIcon.tsx", - "hash": "1908750425081902690" - }, - { - "file": "packages/react-icons-mdl2/src/components/LinkedDatabaseIcon.tsx", - "hash": "4325267157746077126" - }, - { - "file": "packages/react-icons-mdl2/src/components/LinuxLogo32Icon.tsx", - "hash": "12568846083970101391" - }, - { - "file": "packages/react-icons-mdl2/src/components/ListIcon.tsx", - "hash": "16023719582074195209" - }, - { - "file": "packages/react-icons-mdl2/src/components/ListMirroredIcon.tsx", - "hash": "5098251431463116358" - }, - { - "file": "packages/react-icons-mdl2/src/components/LiveSiteIcon.tsx", - "hash": "14048768654735729185" - }, - { - "file": "packages/react-icons-mdl2/src/components/LocaleLanguageIcon.tsx", - "hash": "12337575125571454357" - }, - { - "file": "packages/react-icons-mdl2/src/components/LocationCircleIcon.tsx", - "hash": "9758846971576171370" - }, - { - "file": "packages/react-icons-mdl2/src/components/LocationDotIcon.tsx", - "hash": "3278405111715028294" - }, - { - "file": "packages/react-icons-mdl2/src/components/LocationFillIcon.tsx", - "hash": "2138561064316564498" - }, - { - "file": "packages/react-icons-mdl2/src/components/LocationIcon.tsx", - "hash": "5208443676669918505" - }, - { - "file": "packages/react-icons-mdl2/src/components/LocationOutlineIcon.tsx", - "hash": "13218853813874807588" - }, - { - "file": "packages/react-icons-mdl2/src/components/Lock12Icon.tsx", - "hash": "16013286017315295053" - }, - { - "file": "packages/react-icons-mdl2/src/components/LockIcon.tsx", - "hash": "4801981410903331805" - }, - { - "file": "packages/react-icons-mdl2/src/components/LockShareIcon.tsx", - "hash": "10342601556498003565" - }, - { - "file": "packages/react-icons-mdl2/src/components/LockSolidIcon.tsx", - "hash": "9752255275577661679" - }, - { - "file": "packages/react-icons-mdl2/src/components/LogRemoveIcon.tsx", - "hash": "18249700207254304282" - }, - { - "file": "packages/react-icons-mdl2/src/components/LookupEntitiesIcon.tsx", - "hash": "14469241137300715864" - }, - { - "file": "packages/react-icons-mdl2/src/components/LowerBrightnessIcon.tsx", - "hash": "13419595406937683625" - }, - { - "file": "packages/react-icons-mdl2/src/components/MachineLearningIcon.tsx", - "hash": "760629027388695268" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailAlertIcon.tsx", - "hash": "15677037478095270277" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailAttachedIcon.tsx", - "hash": "4025552307791860117" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailCheckIcon.tsx", - "hash": "15178557980211822363" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailFillIcon.tsx", - "hash": "11483268666054294702" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailForwardIcon.tsx", - "hash": "3527035253875913326" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailForwardMirroredIcon.tsx", - "hash": "2291238011890235092" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailIcon.tsx", - "hash": "17100991757315805198" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailLowImportanceIcon.tsx", - "hash": "567478396963195491" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailOptionsIcon.tsx", - "hash": "200921925700068875" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailPauseIcon.tsx", - "hash": "5629390760476035405" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailReminderIcon.tsx", - "hash": "10098715243774779943" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailRepeatIcon.tsx", - "hash": "17862325693321671302" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailReplyAllIcon.tsx", - "hash": "7702777610664294929" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailReplyAllMirroredIcon.tsx", - "hash": "11280323338549747454" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailReplyIcon.tsx", - "hash": "6802930256440607638" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailReplyMirroredIcon.tsx", - "hash": "2233973513224742586" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailScheduleIcon.tsx", - "hash": "757776144436321925" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailSolidIcon.tsx", - "hash": "4634490987071651103" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailTentativeIcon.tsx", - "hash": "5135978347665218306" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailTentativeMirroredIcon.tsx", - "hash": "4300182470474070687" - }, - { - "file": "packages/react-icons-mdl2/src/components/MailUndeliveredIcon.tsx", - "hash": "14903593936856019428" - }, - { - "file": "packages/react-icons-mdl2/src/components/ManagerSelfServiceIcon.tsx", - "hash": "1848510673883736166" - }, - { - "file": "packages/react-icons-mdl2/src/components/ManufacturingIcon.tsx", - "hash": "18047977118807371741" - }, - { - "file": "packages/react-icons-mdl2/src/components/MapDirectionsIcon.tsx", - "hash": "4747623359582002035" - }, - { - "file": "packages/react-icons-mdl2/src/components/MapLayersIcon.tsx", - "hash": "8481507691523574033" - }, - { - "file": "packages/react-icons-mdl2/src/components/MapPin12Icon.tsx", - "hash": "211162128284100738" - }, - { - "file": "packages/react-icons-mdl2/src/components/MapPinIcon.tsx", - "hash": "17733996541851463646" - }, - { - "file": "packages/react-icons-mdl2/src/components/MapPinSolidIcon.tsx", - "hash": "10658541521136810339" - }, - { - "file": "packages/react-icons-mdl2/src/components/MarkAsProtectedIcon.tsx", - "hash": "3760294448808538624" - }, - { - "file": "packages/react-icons-mdl2/src/components/MarkDownLanguageIcon.tsx", - "hash": "10998137402310667703" - }, - { - "file": "packages/react-icons-mdl2/src/components/MarketDownIcon.tsx", - "hash": "1927915898613886495" - }, - { - "file": "packages/react-icons-mdl2/src/components/MarketIcon.tsx", - "hash": "9428958624159950454" - }, - { - "file": "packages/react-icons-mdl2/src/components/MasterDatabaseIcon.tsx", - "hash": "12765781549694057240" - }, - { - "file": "packages/react-icons-mdl2/src/components/MaximumValueIcon.tsx", - "hash": "9548851655060404668" - }, - { - "file": "packages/react-icons-mdl2/src/components/MedalIcon.tsx", - "hash": "9016574582699757751" - }, - { - "file": "packages/react-icons-mdl2/src/components/MedalSolidIcon.tsx", - "hash": "9775549943191019333" - }, - { - "file": "packages/react-icons-mdl2/src/components/MediaAddIcon.tsx", - "hash": "1530213724134119045" - }, - { - "file": "packages/react-icons-mdl2/src/components/MediaIcon.tsx", - "hash": "13693312563984438343" - }, - { - "file": "packages/react-icons-mdl2/src/components/MedicalIcon.tsx", - "hash": "17678556182467551513" - }, - { - "file": "packages/react-icons-mdl2/src/components/MegaphoneIcon.tsx", - "hash": "16847710342780168526" - }, - { - "file": "packages/react-icons-mdl2/src/components/MegaphoneSolidIcon.tsx", - "hash": "9812427839658596847" - }, - { - "file": "packages/react-icons-mdl2/src/components/MemoIcon.tsx", - "hash": "2637519265040979218" - }, - { - "file": "packages/react-icons-mdl2/src/components/MergeDuplicateIcon.tsx", - "hash": "14987944302662535701" - }, - { - "file": "packages/react-icons-mdl2/src/components/MergeIcon.tsx", - "hash": "16459949698224202006" - }, - { - "file": "packages/react-icons-mdl2/src/components/MessageFillIcon.tsx", - "hash": "7028167948487732677" - }, - { - "file": "packages/react-icons-mdl2/src/components/MessageFriendRequestIcon.tsx", - "hash": "10447816732492443022" - }, - { - "file": "packages/react-icons-mdl2/src/components/MessageIcon.tsx", - "hash": "9016057551501316676" - }, - { - "file": "packages/react-icons-mdl2/src/components/MicOff2Icon.tsx", - "hash": "831218772748006399" - }, - { - "file": "packages/react-icons-mdl2/src/components/MicOffIcon.tsx", - "hash": "10987570889496568468" - }, - { - "file": "packages/react-icons-mdl2/src/components/MicrophoneIcon.tsx", - "hash": "14513278060535966782" - }, - { - "file": "packages/react-icons-mdl2/src/components/MiniContractIcon.tsx", - "hash": "16511800240076613720" - }, - { - "file": "packages/react-icons-mdl2/src/components/MiniContractMirroredIcon.tsx", - "hash": "10630210747251287634" - }, - { - "file": "packages/react-icons-mdl2/src/components/MiniExpandIcon.tsx", - "hash": "13680889919501484112" - }, - { - "file": "packages/react-icons-mdl2/src/components/MiniExpandMirroredIcon.tsx", - "hash": "2291813261765776362" - }, - { - "file": "packages/react-icons-mdl2/src/components/MiniLinkIcon.tsx", - "hash": "248848982504484274" - }, - { - "file": "packages/react-icons-mdl2/src/components/MinimumValueIcon.tsx", - "hash": "13613713551566134421" - }, - { - "file": "packages/react-icons-mdl2/src/components/MiracastLogoLargeIcon.tsx", - "hash": "13842928032969802526" - }, - { - "file": "packages/react-icons-mdl2/src/components/MobileAngledIcon.tsx", - "hash": "2757052120309127402" - }, - { - "file": "packages/react-icons-mdl2/src/components/MobileReportIcon.tsx", - "hash": "9428374822461622031" - }, - { - "file": "packages/react-icons-mdl2/src/components/MobileSelectedIcon.tsx", - "hash": "16784153577217981592" - }, - { - "file": "packages/react-icons-mdl2/src/components/ModelingViewIcon.tsx", - "hash": "11311555510747362676" - }, - { - "file": "packages/react-icons-mdl2/src/components/MoneyIcon.tsx", - "hash": "1393140136935152030" - }, - { - "file": "packages/react-icons-mdl2/src/components/MoreIcon.tsx", - "hash": "4658167228466283777" - }, - { - "file": "packages/react-icons-mdl2/src/components/MoreSportsIcon.tsx", - "hash": "9221304452546249716" - }, - { - "file": "packages/react-icons-mdl2/src/components/MoreVerticalIcon.tsx", - "hash": "6230043297841631422" - }, - { - "file": "packages/react-icons-mdl2/src/components/MountainClimbingIcon.tsx", - "hash": "621750915275139874" - }, - { - "file": "packages/react-icons-mdl2/src/components/MoveIcon.tsx", - "hash": "2987620761554093824" - }, - { - "file": "packages/react-icons-mdl2/src/components/MoveToFolderIcon.tsx", - "hash": "12206384036935632470" - }, - { - "file": "packages/react-icons-mdl2/src/components/MoversIcon.tsx", - "hash": "17572755030686178354" - }, - { - "file": "packages/react-icons-mdl2/src/components/MultiSelectIcon.tsx", - "hash": "16169117549836272193" - }, - { - "file": "packages/react-icons-mdl2/src/components/MultiSelectMirroredIcon.tsx", - "hash": "10970075712547181569" - }, - { - "file": "packages/react-icons-mdl2/src/components/MusicInCollectionFillIcon.tsx", - "hash": "11485106460390186839" - }, - { - "file": "packages/react-icons-mdl2/src/components/MusicInCollectionIcon.tsx", - "hash": "16669926402142356515" - }, - { - "file": "packages/react-icons-mdl2/src/components/MusicNoteIcon.tsx", - "hash": "7789904933433989372" - }, - { - "file": "packages/react-icons-mdl2/src/components/MuteChatIcon.tsx", - "hash": "3631919255804943778" - }, - { - "file": "packages/react-icons-mdl2/src/components/MyMoviesTVIcon.tsx", - "hash": "6406183886708476503" - }, - { - "file": "packages/react-icons-mdl2/src/components/MyNetworkIcon.tsx", - "hash": "15556630167642081635" - }, - { - "file": "packages/react-icons-mdl2/src/components/NPMLogoIcon.tsx", - "hash": "15938419132213830913" - }, - { - "file": "packages/react-icons-mdl2/src/components/Nav2DMapViewIcon.tsx", - "hash": "1861942974503405839" - }, - { - "file": "packages/react-icons-mdl2/src/components/NavigateBackIcon.tsx", - "hash": "15249469567878012490" - }, - { - "file": "packages/react-icons-mdl2/src/components/NavigateBackMirroredIcon.tsx", - "hash": "1817649965554632624" - }, - { - "file": "packages/react-icons-mdl2/src/components/NavigateExternalInlineIcon.tsx", - "hash": "6636555198967266856" - }, - { - "file": "packages/react-icons-mdl2/src/components/NavigateForwardIcon.tsx", - "hash": "14548222247030754116" - }, - { - "file": "packages/react-icons-mdl2/src/components/NavigateForwardMirroredIcon.tsx", - "hash": "9630908319510065411" - }, - { - "file": "packages/react-icons-mdl2/src/components/NavigationFlipperIcon.tsx", - "hash": "16780771950942383103" - }, - { - "file": "packages/react-icons-mdl2/src/components/NetworkTowerIcon.tsx", - "hash": "8956230440629168518" - }, - { - "file": "packages/react-icons-mdl2/src/components/NewAnalyticsQueryIcon.tsx", - "hash": "5795625520702608746" - }, - { - "file": "packages/react-icons-mdl2/src/components/NewFolderIcon.tsx", - "hash": "638387074709881957" - }, - { - "file": "packages/react-icons-mdl2/src/components/NewMailIcon.tsx", - "hash": "10242820263861230200" - }, - { - "file": "packages/react-icons-mdl2/src/components/NewTeamProjectIcon.tsx", - "hash": "2354857052378159660" - }, - { - "file": "packages/react-icons-mdl2/src/components/NewsIcon.tsx", - "hash": "9041237247619422980" - }, - { - "file": "packages/react-icons-mdl2/src/components/NewsSearchIcon.tsx", - "hash": "6774536564163043043" - }, - { - "file": "packages/react-icons-mdl2/src/components/NextIcon.tsx", - "hash": "1434721563549479484" - }, - { - "file": "packages/react-icons-mdl2/src/components/NonprofitLogo32Icon.tsx", - "hash": "17298146378948801665" - }, - { - "file": "packages/react-icons-mdl2/src/components/NormalWeightIcon.tsx", - "hash": "15211035032334837971" - }, - { - "file": "packages/react-icons-mdl2/src/components/NotExecutedIcon.tsx", - "hash": "6112908944121663220" - }, - { - "file": "packages/react-icons-mdl2/src/components/NotImpactedSolidIcon.tsx", - "hash": "9668204014136724574" - }, - { - "file": "packages/react-icons-mdl2/src/components/NoteForwardIcon.tsx", - "hash": "2033093137143398401" - }, - { - "file": "packages/react-icons-mdl2/src/components/NotePinnedIcon.tsx", - "hash": "15308229896399402511" - }, - { - "file": "packages/react-icons-mdl2/src/components/NoteReplyIcon.tsx", - "hash": "5397651241606373899" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberFieldIcon.tsx", - "hash": "1073357588587963185" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberIcon.tsx", - "hash": "17254717544082558121" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberSequenceIcon.tsx", - "hash": "2062763852355939642" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberSymbolIcon.tsx", - "hash": "600780750503080926" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberedListIcon.tsx", - "hash": "13513586621250451638" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberedListMirroredIcon.tsx", - "hash": "10445687537115426123" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberedListNumberIcon.tsx", - "hash": "15541807436844196483" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberedListNumberMirroredIcon.tsx", - "hash": "7523321592675558698" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberedListTextIcon.tsx", - "hash": "17348478231420593090" - }, - { - "file": "packages/react-icons-mdl2/src/components/NumberedListTextMirroredIcon.tsx", - "hash": "9358275100316027589" - }, - { - "file": "packages/react-icons-mdl2/src/components/OEMIcon.tsx", - "hash": "16884975489193646219" - }, - { - "file": "packages/react-icons-mdl2/src/components/OctagonIcon.tsx", - "hash": "7051997867406169889" - }, - { - "file": "packages/react-icons-mdl2/src/components/OfficeChatIcon.tsx", - "hash": "3135032991082863206" - }, - { - "file": "packages/react-icons-mdl2/src/components/OfficeChatSolidIcon.tsx", - "hash": "7579003419417093508" - }, - { - "file": "packages/react-icons-mdl2/src/components/OfflineStorageIcon.tsx", - "hash": "351924355410058825" - }, - { - "file": "packages/react-icons-mdl2/src/components/OfflineStorageSolidIcon.tsx", - "hash": "2163296287816341950" - }, - { - "file": "packages/react-icons-mdl2/src/components/OnboardingIcon.tsx", - "hash": "17978163123947726803" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenEnrollmentIcon.tsx", - "hash": "9409831895624258892" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenFileIcon.tsx", - "hash": "13716013895282716360" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenFolderHorizontalIcon.tsx", - "hash": "4720433802176078702" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenInNewTabIcon.tsx", - "hash": "12616026608623184577" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenInNewWindowIcon.tsx", - "hash": "16709764145623596082" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenPaneIcon.tsx", - "hash": "14167942678189328958" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenPaneMirroredIcon.tsx", - "hash": "17902852270134103661" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenSourceIcon.tsx", - "hash": "6022581724396109402" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenWithIcon.tsx", - "hash": "16757941053329032655" - }, - { - "file": "packages/react-icons-mdl2/src/components/OpenWithMirroredIcon.tsx", - "hash": "1238747352425009933" - }, - { - "file": "packages/react-icons-mdl2/src/components/OrgIcon.tsx", - "hash": "17958497940558097203" - }, - { - "file": "packages/react-icons-mdl2/src/components/Orientation2Icon.tsx", - "hash": "9165835761068707409" - }, - { - "file": "packages/react-icons-mdl2/src/components/OrientationIcon.tsx", - "hash": "2261330004914625799" - }, - { - "file": "packages/react-icons-mdl2/src/components/OutOfOfficeIcon.tsx", - "hash": "9033234528837519595" - }, - { - "file": "packages/react-icons-mdl2/src/components/PC1Icon.tsx", - "hash": "17118061778132244317" - }, - { - "file": "packages/react-icons-mdl2/src/components/PDFIcon.tsx", - "hash": "16953159234422781856" - }, - { - "file": "packages/react-icons-mdl2/src/components/POIIcon.tsx", - "hash": "17081025063363847104" - }, - { - "file": "packages/react-icons-mdl2/src/components/POISolidIcon.tsx", - "hash": "17987066840688022197" - }, - { - "file": "packages/react-icons-mdl2/src/components/PYIcon.tsx", - "hash": "15062122769409242350" - }, - { - "file": "packages/react-icons-mdl2/src/components/PackageIcon.tsx", - "hash": "8188806034944821664" - }, - { - "file": "packages/react-icons-mdl2/src/components/PackagesIcon.tsx", - "hash": "7530672802951546585" - }, - { - "file": "packages/react-icons-mdl2/src/components/PaddingBottomIcon.tsx", - "hash": "16329407378974243459" - }, - { - "file": "packages/react-icons-mdl2/src/components/PaddingIcon.tsx", - "hash": "3693454047174570108" - }, - { - "file": "packages/react-icons-mdl2/src/components/PaddingLeftIcon.tsx", - "hash": "1940723243895739869" - }, - { - "file": "packages/react-icons-mdl2/src/components/PaddingRightIcon.tsx", - "hash": "15575572852872359348" - }, - { - "file": "packages/react-icons-mdl2/src/components/PaddingTopIcon.tsx", - "hash": "3059126148886145452" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageAddIcon.tsx", - "hash": "1028128955597352055" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageArrowRightIcon.tsx", - "hash": "10299368263307558240" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageCheckedOutIcon.tsx", - "hash": "5540250238565489701" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageCheckedinIcon.tsx", - "hash": "8733252113380883530" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageDataIcon.tsx", - "hash": "5429006082615274734" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageEditIcon.tsx", - "hash": "1302190554096056533" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageHeaderEditIcon.tsx", - "hash": "2745440594367033058" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageHeaderIcon.tsx", - "hash": "484643801273417624" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageIcon.tsx", - "hash": "13143986509256477909" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageLeftIcon.tsx", - "hash": "5225179526940112834" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageLinkIcon.tsx", - "hash": "2235935547175998368" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageListFilterIcon.tsx", - "hash": "4958536397877730157" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageListIcon.tsx", - "hash": "15592393887722894984" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageListMirroredSolidIcon.tsx", - "hash": "7072452421696131187" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageListSolidIcon.tsx", - "hash": "3011846427870316812" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageLockIcon.tsx", - "hash": "8328618170239710913" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageRemoveIcon.tsx", - "hash": "15226280653443240296" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageRightIcon.tsx", - "hash": "3409547421310272122" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageSharedIcon.tsx", - "hash": "18303121269314325046" - }, - { - "file": "packages/react-icons-mdl2/src/components/PageSolidIcon.tsx", - "hash": "11681020525884514699" - }, - { - "file": "packages/react-icons-mdl2/src/components/PanoIndicatorIcon.tsx", - "hash": "2581465768954382431" - }, - { - "file": "packages/react-icons-mdl2/src/components/ParachuteIcon.tsx", - "hash": "12501200481557600275" - }, - { - "file": "packages/react-icons-mdl2/src/components/ParachuteSolidIcon.tsx", - "hash": "1192630446492557179" - }, - { - "file": "packages/react-icons-mdl2/src/components/ParameterIcon.tsx", - "hash": "4042220669581533546" - }, - { - "file": "packages/react-icons-mdl2/src/components/ParatureLogoIcon.tsx", - "hash": "11611626752464336572" - }, - { - "file": "packages/react-icons-mdl2/src/components/ParkingLocationIcon.tsx", - "hash": "8568967650502471935" - }, - { - "file": "packages/react-icons-mdl2/src/components/ParkingLocationMirroredIcon.tsx", - "hash": "17018586187571511755" - }, - { - "file": "packages/react-icons-mdl2/src/components/ParkingMirroredSolidIcon.tsx", - "hash": "8427913959764438159" - }, - { - "file": "packages/react-icons-mdl2/src/components/ParkingSolidIcon.tsx", - "hash": "1262591929795560141" - }, - { - "file": "packages/react-icons-mdl2/src/components/PartlyCloudyDayIcon.tsx", - "hash": "8716126962689890947" - }, - { - "file": "packages/react-icons-mdl2/src/components/PartlyCloudyNightIcon.tsx", - "hash": "16235715570424586919" - }, - { - "file": "packages/react-icons-mdl2/src/components/PartyLeaderIcon.tsx", - "hash": "12711893955536705188" - }, - { - "file": "packages/react-icons-mdl2/src/components/PassiveAuthenticationIcon.tsx", - "hash": "14002588332142220944" - }, - { - "file": "packages/react-icons-mdl2/src/components/PasswordFieldIcon.tsx", - "hash": "3131426377826399559" - }, - { - "file": "packages/react-icons-mdl2/src/components/PasteAsCodeIcon.tsx", - "hash": "4805260552399940501" - }, - { - "file": "packages/react-icons-mdl2/src/components/PasteAsTextIcon.tsx", - "hash": "12623295337668507458" - }, - { - "file": "packages/react-icons-mdl2/src/components/PasteIcon.tsx", - "hash": "5004523753740808524" - }, - { - "file": "packages/react-icons-mdl2/src/components/PauseIcon.tsx", - "hash": "9059877663732204795" - }, - { - "file": "packages/react-icons-mdl2/src/components/PaymentCardIcon.tsx", - "hash": "8072989350727579864" - }, - { - "file": "packages/react-icons-mdl2/src/components/PenWorkspaceIcon.tsx", - "hash": "16399862149305076952" - }, - { - "file": "packages/react-icons-mdl2/src/components/PencilReplyIcon.tsx", - "hash": "7964544734391619918" - }, - { - "file": "packages/react-icons-mdl2/src/components/PentagonIcon.tsx", - "hash": "12576470515379649977" - }, - { - "file": "packages/react-icons-mdl2/src/components/PeopleAddIcon.tsx", - "hash": "740077196701986885" - }, - { - "file": "packages/react-icons-mdl2/src/components/PeopleAlertIcon.tsx", - "hash": "1200751904829860538" - }, - { - "file": "packages/react-icons-mdl2/src/components/PeopleBlockIcon.tsx", - "hash": "11520566292680214548" - }, - { - "file": "packages/react-icons-mdl2/src/components/PeopleIcon.tsx", - "hash": "5546815075608181083" - }, - { - "file": "packages/react-icons-mdl2/src/components/PeoplePauseIcon.tsx", - "hash": "2384543899794990203" - }, - { - "file": "packages/react-icons-mdl2/src/components/PeopleRepeatIcon.tsx", - "hash": "14144925183828792268" - }, - { - "file": "packages/react-icons-mdl2/src/components/PermissionsIcon.tsx", - "hash": "8360012995862892653" - }, - { - "file": "packages/react-icons-mdl2/src/components/PermissionsSolidIcon.tsx", - "hash": "2616240249421986755" - }, - { - "file": "packages/react-icons-mdl2/src/components/PersonalizeIcon.tsx", - "hash": "14943945156655188411" - }, - { - "file": "packages/react-icons-mdl2/src/components/PhishingIcon.tsx", - "hash": "9518959580653265457" - }, - { - "file": "packages/react-icons-mdl2/src/components/PhoneIcon.tsx", - "hash": "10123189969608843806" - }, - { - "file": "packages/react-icons-mdl2/src/components/Photo2AddIcon.tsx", - "hash": "12890535897327362569" - }, - { - "file": "packages/react-icons-mdl2/src/components/Photo2FillIcon.tsx", - "hash": "11916973734202296104" - }, - { - "file": "packages/react-icons-mdl2/src/components/Photo2Icon.tsx", - "hash": "6217669434528424813" - }, - { - "file": "packages/react-icons-mdl2/src/components/Photo2RemoveIcon.tsx", - "hash": "11045243933391741734" - }, - { - "file": "packages/react-icons-mdl2/src/components/PhotoCollectionIcon.tsx", - "hash": "14853854378220941481" - }, - { - "file": "packages/react-icons-mdl2/src/components/PhotoErrorIcon.tsx", - "hash": "15843725646187763745" - }, - { - "file": "packages/react-icons-mdl2/src/components/PhotoIcon.tsx", - "hash": "2410398483773033272" - }, - { - "file": "packages/react-icons-mdl2/src/components/PhotoVideoMediaIcon.tsx", - "hash": "11327066028793385582" - }, - { - "file": "packages/react-icons-mdl2/src/components/PictureCenterIcon.tsx", - "hash": "84076699459718279" - }, - { - "file": "packages/react-icons-mdl2/src/components/PictureFillIcon.tsx", - "hash": "14181410728380315086" - }, - { - "file": "packages/react-icons-mdl2/src/components/PictureIcon.tsx", - "hash": "15806894766658361974" - }, - { - "file": "packages/react-icons-mdl2/src/components/PictureLibraryIcon.tsx", - "hash": "5311483414434365136" - }, - { - "file": "packages/react-icons-mdl2/src/components/PicturePositionIcon.tsx", - "hash": "17409430305773109518" - }, - { - "file": "packages/react-icons-mdl2/src/components/PictureStretchIcon.tsx", - "hash": "9909515815194791190" - }, - { - "file": "packages/react-icons-mdl2/src/components/PictureTileIcon.tsx", - "hash": "5991148569776167026" - }, - { - "file": "packages/react-icons-mdl2/src/components/PieDoubleIcon.tsx", - "hash": "16668444301135366429" - }, - { - "file": "packages/react-icons-mdl2/src/components/PieSingleIcon.tsx", - "hash": "11084927429971105756" - }, - { - "file": "packages/react-icons-mdl2/src/components/PieSingleSolidIcon.tsx", - "hash": "14776155998409612678" - }, - { - "file": "packages/react-icons-mdl2/src/components/PillIcon.tsx", - "hash": "6256599255750287452" - }, - { - "file": "packages/react-icons-mdl2/src/components/PinIcon.tsx", - "hash": "1983240911784268789" - }, - { - "file": "packages/react-icons-mdl2/src/components/PinSolid12Icon.tsx", - "hash": "15020687617927332339" - }, - { - "file": "packages/react-icons-mdl2/src/components/PinSolidOff12Icon.tsx", - "hash": "3499118347569957809" - }, - { - "file": "packages/react-icons-mdl2/src/components/PinnedFillIcon.tsx", - "hash": "10585700449523261373" - }, - { - "file": "packages/react-icons-mdl2/src/components/PinnedIcon.tsx", - "hash": "9070205068592037520" - }, - { - "file": "packages/react-icons-mdl2/src/components/PinnedSolidIcon.tsx", - "hash": "5936043922736609729" - }, - { - "file": "packages/react-icons-mdl2/src/components/PivotChartIcon.tsx", - "hash": "4259767106459863102" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlainTextIcon.tsx", - "hash": "7745879903020174346" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlanViewIcon.tsx", - "hash": "15229642606192990519" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlayIcon.tsx", - "hash": "13347942971552831209" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlayResumeIcon.tsx", - "hash": "6978019009270265637" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlayReverseIcon.tsx", - "hash": "886294037536270616" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlayReverseResumeIcon.tsx", - "hash": "11828144696321574113" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlaySolidIcon.tsx", - "hash": "16883681959444751019" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlaybackRate1xIcon.tsx", - "hash": "11422776004876274435" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlayerSettingsIcon.tsx", - "hash": "2891640004616963952" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlugConnectedIcon.tsx", - "hash": "15231900144038686883" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlugDisconnectedIcon.tsx", - "hash": "9482677610736263718" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlugIcon.tsx", - "hash": "14457238032728110736" - }, - { - "file": "packages/react-icons-mdl2/src/components/PlugSolidIcon.tsx", - "hash": "14985347379238626930" - }, - { - "file": "packages/react-icons-mdl2/src/components/PollResultsIcon.tsx", - "hash": "4372641809118635212" - }, - { - "file": "packages/react-icons-mdl2/src/components/PostUpdateIcon.tsx", - "hash": "13690140920683735685" - }, - { - "file": "packages/react-icons-mdl2/src/components/PowerButtonIcon.tsx", - "hash": "13473089005670940816" - }, - { - "file": "packages/react-icons-mdl2/src/components/PrecipitationIcon.tsx", - "hash": "8700523600035334889" - }, - { - "file": "packages/react-icons-mdl2/src/components/PresenceChickletVideoIcon.tsx", - "hash": "6520898751220495588" - }, - { - "file": "packages/react-icons-mdl2/src/components/Presentation12Icon.tsx", - "hash": "12739060340199533788" - }, - { - "file": "packages/react-icons-mdl2/src/components/PresentationIcon.tsx", - "hash": "5580057635504441568" - }, - { - "file": "packages/react-icons-mdl2/src/components/PreviewIcon.tsx", - "hash": "15795109478497264543" - }, - { - "file": "packages/react-icons-mdl2/src/components/PreviewLinkIcon.tsx", - "hash": "10029955962533993761" - }, - { - "file": "packages/react-icons-mdl2/src/components/PreviousIcon.tsx", - "hash": "6343179605604117917" - }, - { - "file": "packages/react-icons-mdl2/src/components/PrimaryCalendarIcon.tsx", - "hash": "4012658748296620011" - }, - { - "file": "packages/react-icons-mdl2/src/components/PrintIcon.tsx", - "hash": "6855816325772339277" - }, - { - "file": "packages/react-icons-mdl2/src/components/PrintfaxPrinterFileIcon.tsx", - "hash": "2412318128665022986" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProFootballIcon.tsx", - "hash": "7394168027841297393" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProHockeyIcon.tsx", - "hash": "8132842062475414845" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProcessMetaTaskIcon.tsx", - "hash": "1761377875794956459" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProcessingCancelIcon.tsx", - "hash": "9583304782707343752" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProcessingIcon.tsx", - "hash": "12905437028183494715" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProcessingPauseIcon.tsx", - "hash": "10446149742784483989" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProcessingRunIcon.tsx", - "hash": "5844569557443581261" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProductCatalogIcon.tsx", - "hash": "3464921564878584487" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProductIcon.tsx", - "hash": "6348565145369557334" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProductListIcon.tsx", - "hash": "3024724900075315777" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProductReleaseIcon.tsx", - "hash": "7348620547503983607" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProductVariantIcon.tsx", - "hash": "14137645095470379174" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProductionFloorManagementIcon.tsx", - "hash": "8211043819524321465" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProfileSearchIcon.tsx", - "hash": "5360651681193046320" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProgressLoopInnerIcon.tsx", - "hash": "7344307724570892451" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProgressLoopOuterIcon.tsx", - "hash": "14115966853268295239" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProgressRingDotsIcon.tsx", - "hash": "8827595993003570158" - }, - { - "file": "packages/react-icons-mdl2/src/components/PromotedDatabaseIcon.tsx", - "hash": "13494185727052834572" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProtectRestrictIcon.tsx", - "hash": "12593153285092641043" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProtectedDocumentIcon.tsx", - "hash": "17116528624998015036" - }, - { - "file": "packages/react-icons-mdl2/src/components/ProvisioningPackageIcon.tsx", - "hash": "10104819019290694702" - }, - { - "file": "packages/react-icons-mdl2/src/components/PublicCalendarIcon.tsx", - "hash": "7928576299592465227" - }, - { - "file": "packages/react-icons-mdl2/src/components/PublicContactCardIcon.tsx", - "hash": "17137969832944727124" - }, - { - "file": "packages/react-icons-mdl2/src/components/PublicContactCardMirroredIcon.tsx", - "hash": "10653560057174265194" - }, - { - "file": "packages/react-icons-mdl2/src/components/PublicEmailIcon.tsx", - "hash": "16125961118093947862" - }, - { - "file": "packages/react-icons-mdl2/src/components/PublicFolderIcon.tsx", - "hash": "10615570374849555494" - }, - { - "file": "packages/react-icons-mdl2/src/components/PublishContentIcon.tsx", - "hash": "7418653213081864290" - }, - { - "file": "packages/react-icons-mdl2/src/components/PublishCourseIcon.tsx", - "hash": "7778181979101581966" - }, - { - "file": "packages/react-icons-mdl2/src/components/PuzzleIcon.tsx", - "hash": "16331125217924665582" - }, - { - "file": "packages/react-icons-mdl2/src/components/PythonLanguageIcon.tsx", - "hash": "12740295932941603018" - }, - { - "file": "packages/react-icons-mdl2/src/components/PythonLogoBlueIcon.tsx", - "hash": "10897963344070205190" - }, - { - "file": "packages/react-icons-mdl2/src/components/PythonLogoYellowIcon.tsx", - "hash": "10740076806574036198" - }, - { - "file": "packages/react-icons-mdl2/src/components/QRCodeIcon.tsx", - "hash": "4193817246005580075" - }, - { - "file": "packages/react-icons-mdl2/src/components/QandAIcon.tsx", - "hash": "7090567364829688083" - }, - { - "file": "packages/react-icons-mdl2/src/components/QandAMirrorIcon.tsx", - "hash": "14649054812286063495" - }, - { - "file": "packages/react-icons-mdl2/src/components/QuadColumnIcon.tsx", - "hash": "7779026997445231794" - }, - { - "file": "packages/react-icons-mdl2/src/components/QuantityIcon.tsx", - "hash": "13475748671267665668" - }, - { - "file": "packages/react-icons-mdl2/src/components/QuarterCircleIcon.tsx", - "hash": "301889233684729556" - }, - { - "file": "packages/react-icons-mdl2/src/components/QueryListIcon.tsx", - "hash": "17188232317815383853" - }, - { - "file": "packages/react-icons-mdl2/src/components/QuestionnaireIcon.tsx", - "hash": "8292236868458306187" - }, - { - "file": "packages/react-icons-mdl2/src/components/QuestionnaireMirroredIcon.tsx", - "hash": "16353546243071202079" - }, - { - "file": "packages/react-icons-mdl2/src/components/QuickNoteIcon.tsx", - "hash": "14698033081490920685" - }, - { - "file": "packages/react-icons-mdl2/src/components/QuickNoteSolidIcon.tsx", - "hash": "3853804771265454467" - }, - { - "file": "packages/react-icons-mdl2/src/components/RIcon.tsx", - "hash": "3642147187287238543" - }, - { - "file": "packages/react-icons-mdl2/src/components/RadioBtnOffIcon.tsx", - "hash": "15968365517372088454" - }, - { - "file": "packages/react-icons-mdl2/src/components/RadioBtnOnIcon.tsx", - "hash": "10401097749420578475" - }, - { - "file": "packages/react-icons-mdl2/src/components/RadioBulletIcon.tsx", - "hash": "1948109167659139504" - }, - { - "file": "packages/react-icons-mdl2/src/components/RainIcon.tsx", - "hash": "1224377299511878005" - }, - { - "file": "packages/react-icons-mdl2/src/components/RainShowersDayIcon.tsx", - "hash": "18140602978554118692" - }, - { - "file": "packages/react-icons-mdl2/src/components/RainShowersNightIcon.tsx", - "hash": "772223889186546672" - }, - { - "file": "packages/react-icons-mdl2/src/components/RainSnowIcon.tsx", - "hash": "18316749923815146432" - }, - { - "file": "packages/react-icons-mdl2/src/components/RawSourceIcon.tsx", - "hash": "2346521877928885898" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReactLogoIcon.tsx", - "hash": "11478464493583554511" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReadIcon.tsx", - "hash": "16339774116571551264" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReadOutLoudIcon.tsx", - "hash": "15512938224017499748" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReadingModeIcon.tsx", - "hash": "11225680917459055690" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReadingModeSolidIcon.tsx", - "hash": "13630184717491842494" - }, - { - "file": "packages/react-icons-mdl2/src/components/RealEstateIcon.tsx", - "hash": "12132961416106915656" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReceiptCheckIcon.tsx", - "hash": "14861339649639821612" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReceiptForwardIcon.tsx", - "hash": "16249487772177911246" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReceiptReplyIcon.tsx", - "hash": "6675712624277309058" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReceiptTentativeIcon.tsx", - "hash": "1827539807926652219" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReceiptTentativeMirroredIcon.tsx", - "hash": "10058669923175591734" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReceiptUndeliveredIcon.tsx", - "hash": "7138586237687849925" - }, - { - "file": "packages/react-icons-mdl2/src/components/RecentIcon.tsx", - "hash": "4974316867987717424" - }, - { - "file": "packages/react-icons-mdl2/src/components/Record2Icon.tsx", - "hash": "6887536974244129139" - }, - { - "file": "packages/react-icons-mdl2/src/components/RecruitmentManagementIcon.tsx", - "hash": "8365263359070724006" - }, - { - "file": "packages/react-icons-mdl2/src/components/RectangleShapeIcon.tsx", - "hash": "4970472544847083318" - }, - { - "file": "packages/react-icons-mdl2/src/components/RectangleShapeSolidIcon.tsx", - "hash": "16095443467310730950" - }, - { - "file": "packages/react-icons-mdl2/src/components/RectangularClippingIcon.tsx", - "hash": "1887047080859169150" - }, - { - "file": "packages/react-icons-mdl2/src/components/RecurringEventIcon.tsx", - "hash": "10689152471386577241" - }, - { - "file": "packages/react-icons-mdl2/src/components/RecurringTaskIcon.tsx", - "hash": "17696826538813074695" - }, - { - "file": "packages/react-icons-mdl2/src/components/RedEye12Icon.tsx", - "hash": "9382944788646394558" - }, - { - "file": "packages/react-icons-mdl2/src/components/RedEyeIcon.tsx", - "hash": "10003350948056097541" - }, - { - "file": "packages/react-icons-mdl2/src/components/RedeployIcon.tsx", - "hash": "3176549235353100481" - }, - { - "file": "packages/react-icons-mdl2/src/components/RedoIcon.tsx", - "hash": "17889709285162817999" - }, - { - "file": "packages/react-icons-mdl2/src/components/RefreshIcon.tsx", - "hash": "1584001357827257939" - }, - { - "file": "packages/react-icons-mdl2/src/components/RegistryEditorIcon.tsx", - "hash": "9576647226559022693" - }, - { - "file": "packages/react-icons-mdl2/src/components/RelationshipIcon.tsx", - "hash": "6771934588418170257" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReleaseDefinitionIcon.tsx", - "hash": "4343117846936556152" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReleaseGateCheckIcon.tsx", - "hash": "9227000183618148389" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReleaseGateErrorIcon.tsx", - "hash": "4769541476719542996" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReleaseGateIcon.tsx", - "hash": "1338124056235790076" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReminderGroupIcon.tsx", - "hash": "15062653789748442733" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReminderPersonIcon.tsx", - "hash": "14076556494330434589" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReminderTimeIcon.tsx", - "hash": "14963898626635056410" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoteIcon.tsx", - "hash": "1119526599082208697" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveContentIcon.tsx", - "hash": "10095104375646589464" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveEventIcon.tsx", - "hash": "1770474505220109854" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveFilterIcon.tsx", - "hash": "14826721607759685205" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveFromShoppingListIcon.tsx", - "hash": "5120763859319093342" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveFromTrashIcon.tsx", - "hash": "16437043087880572921" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveIcon.tsx", - "hash": "3340436694186455162" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveLinkChainIcon.tsx", - "hash": "5246466319381276908" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveLinkIcon.tsx", - "hash": "4934873079743891604" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveLinkXIcon.tsx", - "hash": "13933265474745522070" - }, - { - "file": "packages/react-icons-mdl2/src/components/RemoveOccurrenceIcon.tsx", - "hash": "17596365826540530619" - }, - { - "file": "packages/react-icons-mdl2/src/components/RenameIcon.tsx", - "hash": "8779737737100377722" - }, - { - "file": "packages/react-icons-mdl2/src/components/RenewalCurrentIcon.tsx", - "hash": "17155907495199144621" - }, - { - "file": "packages/react-icons-mdl2/src/components/RenewalFutureIcon.tsx", - "hash": "18040312749706135716" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReopenPagesIcon.tsx", - "hash": "4527483304029555468" - }, - { - "file": "packages/react-icons-mdl2/src/components/RepairIcon.tsx", - "hash": "6712323806304165735" - }, - { - "file": "packages/react-icons-mdl2/src/components/RepeatAllIcon.tsx", - "hash": "4738265788125894750" - }, - { - "file": "packages/react-icons-mdl2/src/components/RepeatHeaderRowsIcon.tsx", - "hash": "281035913588419001" - }, - { - "file": "packages/react-icons-mdl2/src/components/RepeatOneIcon.tsx", - "hash": "10153655218457688238" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReplyAllAltIcon.tsx", - "hash": "15130769254717827934" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReplyAllIcon.tsx", - "hash": "3511993612472050835" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReplyAllMirroredIcon.tsx", - "hash": "14234054208958806201" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReplyAltIcon.tsx", - "hash": "933229403573599355" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReplyIcon.tsx", - "hash": "18009439126632338426" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReplyMirroredIcon.tsx", - "hash": "4500588386003863876" - }, - { - "file": "packages/react-icons-mdl2/src/components/RepoIcon.tsx", - "hash": "7678565709884576038" - }, - { - "file": "packages/react-icons-mdl2/src/components/RepoSolidIcon.tsx", - "hash": "1226700904681954769" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReportAddIcon.tsx", - "hash": "9850194945981834406" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReportDocumentIcon.tsx", - "hash": "8565569295537691921" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReportHackedIcon.tsx", - "hash": "1554548226913281174" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReportLibraryIcon.tsx", - "hash": "7939213985314856280" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReportLibraryMirroredIcon.tsx", - "hash": "15909586393315648358" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReportLockIcon.tsx", - "hash": "6301977591104010011" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReportWarningIcon.tsx", - "hash": "85910912891216710" - }, - { - "file": "packages/react-icons-mdl2/src/components/RerunIcon.tsx", - "hash": "15819459681624916149" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReservationOrdersIcon.tsx", - "hash": "5956032173693218776" - }, - { - "file": "packages/react-icons-mdl2/src/components/ResetDeviceIcon.tsx", - "hash": "18311413279124365488" - }, - { - "file": "packages/react-icons-mdl2/src/components/ResetIcon.tsx", - "hash": "11078483500098772524" - }, - { - "file": "packages/react-icons-mdl2/src/components/ResponsesMenuIcon.tsx", - "hash": "12905327334886469706" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReturnKeyIcon.tsx", - "hash": "778062027127388163" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReturnToSessionIcon.tsx", - "hash": "13767458985926589178" - }, - { - "file": "packages/react-icons-mdl2/src/components/RevToggleKeyIcon.tsx", - "hash": "17268417034066985821" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReviewRequestMirroredSolidIcon.tsx", - "hash": "4198469853792849307" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReviewRequestSolidIcon.tsx", - "hash": "6789506402724558845" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReviewResponseSolidIcon.tsx", - "hash": "13746903940658559773" - }, - { - "file": "packages/react-icons-mdl2/src/components/ReviewSolidIcon.tsx", - "hash": "10405471729572573818" - }, - { - "file": "packages/react-icons-mdl2/src/components/RewindEightXIcon.tsx", - "hash": "5440996717647720617" - }, - { - "file": "packages/react-icons-mdl2/src/components/RewindFourXIcon.tsx", - "hash": "5950063720265872760" - }, - { - "file": "packages/react-icons-mdl2/src/components/RewindIcon.tsx", - "hash": "2976542701811024713" - }, - { - "file": "packages/react-icons-mdl2/src/components/RewindOneFiveXIcon.tsx", - "hash": "14597450931488491666" - }, - { - "file": "packages/react-icons-mdl2/src/components/RewindOneXIcon.tsx", - "hash": "96598580019507794" - }, - { - "file": "packages/react-icons-mdl2/src/components/RewindPointFiveXIcon.tsx", - "hash": "6816021643797619988" - }, - { - "file": "packages/react-icons-mdl2/src/components/RewindTwoXIcon.tsx", - "hash": "2597622895947953652" - }, - { - "file": "packages/react-icons-mdl2/src/components/RibbonIcon.tsx", - "hash": "12505056453875423322" - }, - { - "file": "packages/react-icons-mdl2/src/components/RibbonSolidIcon.tsx", - "hash": "4925073625398304103" - }, - { - "file": "packages/react-icons-mdl2/src/components/RightDoubleQuoteIcon.tsx", - "hash": "13228962573922254349" - }, - { - "file": "packages/react-icons-mdl2/src/components/RightTriangleIcon.tsx", - "hash": "8631049789896987274" - }, - { - "file": "packages/react-icons-mdl2/src/components/RingerIcon.tsx", - "hash": "10812818586902825629" - }, - { - "file": "packages/react-icons-mdl2/src/components/RingerOffIcon.tsx", - "hash": "15465109539414954011" - }, - { - "file": "packages/react-icons-mdl2/src/components/RingerRemoveIcon.tsx", - "hash": "12710104732587573905" - }, - { - "file": "packages/react-icons-mdl2/src/components/RingerSolidIcon.tsx", - "hash": "3455581175423440233" - }, - { - "file": "packages/react-icons-mdl2/src/components/RobotIcon.tsx", - "hash": "10547657026122777550" - }, - { - "file": "packages/react-icons-mdl2/src/components/RocketIcon.tsx", - "hash": "6980348616626812903" - }, - { - "file": "packages/react-icons-mdl2/src/components/RoomIcon.tsx", - "hash": "981533212673309040" - }, - { - "file": "packages/react-icons-mdl2/src/components/Rotate90ClockwiseIcon.tsx", - "hash": "1915276215806620306" - }, - { - "file": "packages/react-icons-mdl2/src/components/Rotate90CounterClockwiseIcon.tsx", - "hash": "3094633106778963512" - }, - { - "file": "packages/react-icons-mdl2/src/components/RotateIcon.tsx", - "hash": "3085258773834909203" - }, - { - "file": "packages/react-icons-mdl2/src/components/RowsChildIcon.tsx", - "hash": "4916625815271698479" - }, - { - "file": "packages/react-icons-mdl2/src/components/RowsGroupIcon.tsx", - "hash": "38971737369893317" - }, - { - "file": "packages/react-icons-mdl2/src/components/RubyGemsLogoIcon.tsx", - "hash": "1188502604572156228" - }, - { - "file": "packages/react-icons-mdl2/src/components/RugbyIcon.tsx", - "hash": "4096135401668474396" - }, - { - "file": "packages/react-icons-mdl2/src/components/RunningIcon.tsx", - "hash": "2732066696930349364" - }, - { - "file": "packages/react-icons-mdl2/src/components/RustLanguageLogoIcon.tsx", - "hash": "16245091142252201879" - }, - { - "file": "packages/react-icons-mdl2/src/components/SDCardIcon.tsx", - "hash": "16779381262121573745" - }, - { - "file": "packages/react-icons-mdl2/src/components/SIPMoveIcon.tsx", - "hash": "1292993801675064692" - }, - { - "file": "packages/react-icons-mdl2/src/components/SQLAnalyticsPoolIcon.tsx", - "hash": "16632034557361220597" - }, - { - "file": "packages/react-icons-mdl2/src/components/SVNLogoIcon.tsx", - "hash": "14471498460908665124" - }, - { - "file": "packages/react-icons-mdl2/src/components/SadIcon.tsx", - "hash": "10257664822202938065" - }, - { - "file": "packages/react-icons-mdl2/src/components/SadSolidIcon.tsx", - "hash": "2704558455731967475" - }, - { - "file": "packages/react-icons-mdl2/src/components/SaveAllIcon.tsx", - "hash": "13407768255962734586" - }, - { - "file": "packages/react-icons-mdl2/src/components/SaveAndCloseIcon.tsx", - "hash": "8461015559875601893" - }, - { - "file": "packages/react-icons-mdl2/src/components/SaveAsIcon.tsx", - "hash": "14980452498052129489" - }, - { - "file": "packages/react-icons-mdl2/src/components/SaveIcon.tsx", - "hash": "18446627481487444184" - }, - { - "file": "packages/react-icons-mdl2/src/components/SaveTemplateIcon.tsx", - "hash": "3826771779893005564" - }, - { - "file": "packages/react-icons-mdl2/src/components/SaveToMobileIcon.tsx", - "hash": "15319590927912761851" - }, - { - "file": "packages/react-icons-mdl2/src/components/SavingsIcon.tsx", - "hash": "8290884341068876497" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScaleUpIcon.tsx", - "hash": "4668475401339689006" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScaleVolumeIcon.tsx", - "hash": "7057780815839547310" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScatterChartIcon.tsx", - "hash": "11542201772664481956" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScheduleEventActionIcon.tsx", - "hash": "1143339648876710002" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScopeTemplateIcon.tsx", - "hash": "13578920299653898424" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScreenCastIcon.tsx", - "hash": "13459668514947933080" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScreenTimeIcon.tsx", - "hash": "10830108454758817807" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScriptIcon.tsx", - "hash": "14893943413659353151" - }, - { - "file": "packages/react-icons-mdl2/src/components/ScrollUpDownIcon.tsx", - "hash": "14808730472109868911" - }, - { - "file": "packages/react-icons-mdl2/src/components/SearchAndAppsIcon.tsx", - "hash": "12029624657504546412" - }, - { - "file": "packages/react-icons-mdl2/src/components/SearchBookmarkIcon.tsx", - "hash": "4453953204921014339" - }, - { - "file": "packages/react-icons-mdl2/src/components/SearchCalendarIcon.tsx", - "hash": "14309122506085434499" - }, - { - "file": "packages/react-icons-mdl2/src/components/SearchDataIcon.tsx", - "hash": "7405319181413241696" - }, - { - "file": "packages/react-icons-mdl2/src/components/SearchIcon.tsx", - "hash": "4737552673585211755" - }, - { - "file": "packages/react-icons-mdl2/src/components/SearchIssueIcon.tsx", - "hash": "12314263131119293997" - }, - { - "file": "packages/react-icons-mdl2/src/components/SearchIssueMirroredIcon.tsx", - "hash": "3761166264222642810" - }, - { - "file": "packages/react-icons-mdl2/src/components/SearchNearbyIcon.tsx", - "hash": "1744408291289346365" - }, - { - "file": "packages/react-icons-mdl2/src/components/SecondaryNavIcon.tsx", - "hash": "15282810402009236543" - }, - { - "file": "packages/react-icons-mdl2/src/components/SectionIcon.tsx", - "hash": "14395512304549333743" - }, - { - "file": "packages/react-icons-mdl2/src/components/SectionsIcon.tsx", - "hash": "9340033941601416787" - }, - { - "file": "packages/react-icons-mdl2/src/components/SecurityGroupIcon.tsx", - "hash": "8368168062014436270" - }, - { - "file": "packages/react-icons-mdl2/src/components/SeeDoIcon.tsx", - "hash": "864327855801395180" - }, - { - "file": "packages/react-icons-mdl2/src/components/SelectAllIcon.tsx", - "hash": "2167693616497991928" - }, - { - "file": "packages/react-icons-mdl2/src/components/SellIcon.tsx", - "hash": "6706494628509969641" - }, - { - "file": "packages/react-icons-mdl2/src/components/SemiboldWeightIcon.tsx", - "hash": "12437959718188817198" - }, - { - "file": "packages/react-icons-mdl2/src/components/SendIcon.tsx", - "hash": "163473083102885524" - }, - { - "file": "packages/react-icons-mdl2/src/components/SendMirroredIcon.tsx", - "hash": "8070310300829844729" - }, - { - "file": "packages/react-icons-mdl2/src/components/SentimentAnalysisIcon.tsx", - "hash": "17008129519430365444" - }, - { - "file": "packages/react-icons-mdl2/src/components/SeparatorIcon.tsx", - "hash": "14584941974872368354" - }, - { - "file": "packages/react-icons-mdl2/src/components/ServerEnviromentIcon.tsx", - "hash": "1750681348992383196" - }, - { - "file": "packages/react-icons-mdl2/src/components/ServerIcon.tsx", - "hash": "18418596094918028176" - }, - { - "file": "packages/react-icons-mdl2/src/components/ServerProcessesIcon.tsx", - "hash": "2626435703916635677" - }, - { - "file": "packages/react-icons-mdl2/src/components/ServiceOffIcon.tsx", - "hash": "7398322484195335319" - }, - { - "file": "packages/react-icons-mdl2/src/components/SetActionIcon.tsx", - "hash": "10759412809435968518" - }, - { - "file": "packages/react-icons-mdl2/src/components/SettingsIcon.tsx", - "hash": "5137684744719239592" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShakeDeviceIcon.tsx", - "hash": "1835023828739771936" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShapeSolidIcon.tsx", - "hash": "17617902965165026156" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShapesIcon.tsx", - "hash": "6072476137017589863" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShareIcon.tsx", - "hash": "14422464686258237836" - }, - { - "file": "packages/react-icons-mdl2/src/components/SharedDatabaseIcon.tsx", - "hash": "14493329677068654487" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShareiOSIcon.tsx", - "hash": "10752875289514497033" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShirtIcon.tsx", - "hash": "7533321663603564465" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShopIcon.tsx", - "hash": "1486282593886927215" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShopServerIcon.tsx", - "hash": "13775298968890066560" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShoppingCartIcon.tsx", - "hash": "6101534900506134985" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShoppingCartSolidIcon.tsx", - "hash": "15153900375002037428" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShowGridIcon.tsx", - "hash": "16948102533089602630" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShowResultsIcon.tsx", - "hash": "4042039513768687844" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShowResultsMirroredIcon.tsx", - "hash": "4971854075298613045" - }, - { - "file": "packages/react-icons-mdl2/src/components/ShowTimeAsIcon.tsx", - "hash": "10802116526854333441" - }, - { - "file": "packages/react-icons-mdl2/src/components/SidePanelIcon.tsx", - "hash": "5230482954554972066" - }, - { - "file": "packages/react-icons-mdl2/src/components/SidePanelMirroredIcon.tsx", - "hash": "13194465453275835615" - }, - { - "file": "packages/react-icons-mdl2/src/components/SignOutIcon.tsx", - "hash": "5833233050480284596" - }, - { - "file": "packages/react-icons-mdl2/src/components/SigninIcon.tsx", - "hash": "16397904076306255883" - }, - { - "file": "packages/react-icons-mdl2/src/components/SingleBookmarkIcon.tsx", - "hash": "13733961213117870249" - }, - { - "file": "packages/react-icons-mdl2/src/components/SingleBookmarkSolidIcon.tsx", - "hash": "13761241669223380881" - }, - { - "file": "packages/react-icons-mdl2/src/components/SingleColumnEditIcon.tsx", - "hash": "11657131149938670241" - }, - { - "file": "packages/react-icons-mdl2/src/components/SingleColumnIcon.tsx", - "hash": "10036499463712198961" - }, - { - "file": "packages/react-icons-mdl2/src/components/SiteScanIcon.tsx", - "hash": "15691472348770795130" - }, - { - "file": "packages/react-icons-mdl2/src/components/SixPointStarIcon.tsx", - "hash": "640268993964068647" - }, - { - "file": "packages/react-icons-mdl2/src/components/SizeLegacyIcon.tsx", - "hash": "3291225599099704555" - }, - { - "file": "packages/react-icons-mdl2/src/components/SkiResortsIcon.tsx", - "hash": "6555314944313474416" - }, - { - "file": "packages/react-icons-mdl2/src/components/SkipBack10Icon.tsx", - "hash": "17395500014457854958" - }, - { - "file": "packages/react-icons-mdl2/src/components/SkipForward30Icon.tsx", - "hash": "12807473448559234229" - }, - { - "file": "packages/react-icons-mdl2/src/components/SkypeArrowIcon.tsx", - "hash": "651592052032054337" - }, - { - "file": "packages/react-icons-mdl2/src/components/SkypeCheckIcon.tsx", - "hash": "12254126427628535507" - }, - { - "file": "packages/react-icons-mdl2/src/components/SkypeClockIcon.tsx", - "hash": "8988849702104238369" - }, - { - "file": "packages/react-icons-mdl2/src/components/SkypeMinusIcon.tsx", - "hash": "1855910970699005054" - }, - { - "file": "packages/react-icons-mdl2/src/components/SliderHandleSizeIcon.tsx", - "hash": "15024772977431511613" - }, - { - "file": "packages/react-icons-mdl2/src/components/SliderIcon.tsx", - "hash": "15128534207791862157" - }, - { - "file": "packages/react-icons-mdl2/src/components/SliderThumbIcon.tsx", - "hash": "513949632778702932" - }, - { - "file": "packages/react-icons-mdl2/src/components/SlideshowIcon.tsx", - "hash": "5071345657789319507" - }, - { - "file": "packages/react-icons-mdl2/src/components/SmartGlassRemoteIcon.tsx", - "hash": "10303634573842614020" - }, - { - "file": "packages/react-icons-mdl2/src/components/SnapToGridIcon.tsx", - "hash": "15414810379784499860" - }, - { - "file": "packages/react-icons-mdl2/src/components/SnoozeIcon.tsx", - "hash": "4519353568915020605" - }, - { - "file": "packages/react-icons-mdl2/src/components/SnowIcon.tsx", - "hash": "7951985243083773438" - }, - { - "file": "packages/react-icons-mdl2/src/components/SnowShowerDayIcon.tsx", - "hash": "9897566426056788277" - }, - { - "file": "packages/react-icons-mdl2/src/components/SnowShowerNightIcon.tsx", - "hash": "9605588432192508244" - }, - { - "file": "packages/react-icons-mdl2/src/components/SnowflakeIcon.tsx", - "hash": "11706543066981683239" - }, - { - "file": "packages/react-icons-mdl2/src/components/SoccerIcon.tsx", - "hash": "17852056075053764593" - }, - { - "file": "packages/react-icons-mdl2/src/components/SortDownIcon.tsx", - "hash": "3485561566724709043" - }, - { - "file": "packages/react-icons-mdl2/src/components/SortIcon.tsx", - "hash": "7609051582730240082" - }, - { - "file": "packages/react-icons-mdl2/src/components/SortLinesAscendingIcon.tsx", - "hash": "14233191291534846813" - }, - { - "file": "packages/react-icons-mdl2/src/components/SortLinesIcon.tsx", - "hash": "11891192657420845013" - }, - { - "file": "packages/react-icons-mdl2/src/components/SortUpIcon.tsx", - "hash": "10961926071507470926" - }, - { - "file": "packages/react-icons-mdl2/src/components/SourceIcon.tsx", - "hash": "2728937754359467002" - }, - { - "file": "packages/react-icons-mdl2/src/components/SpacerIcon.tsx", - "hash": "7050828993623671572" - }, - { - "file": "packages/react-icons-mdl2/src/components/SpeakersIcon.tsx", - "hash": "2440059018986861119" - }, - { - "file": "packages/react-icons-mdl2/src/components/SpecialEventIcon.tsx", - "hash": "16554944522040486282" - }, - { - "file": "packages/react-icons-mdl2/src/components/SpeedHighIcon.tsx", - "hash": "1870364148806547670" - }, - { - "file": "packages/react-icons-mdl2/src/components/SpellingIcon.tsx", - "hash": "5150751164294727237" - }, - { - "file": "packages/react-icons-mdl2/src/components/SplitIcon.tsx", - "hash": "5645423701987504952" - }, - { - "file": "packages/react-icons-mdl2/src/components/SplitObjectIcon.tsx", - "hash": "7696917508827033867" - }, - { - "file": "packages/react-icons-mdl2/src/components/SprintIcon.tsx", - "hash": "14509685609150224857" - }, - { - "file": "packages/react-icons-mdl2/src/components/SquallsIcon.tsx", - "hash": "13790844818296483669" - }, - { - "file": "packages/react-icons-mdl2/src/components/SquareShapeIcon.tsx", - "hash": "14194069350332456557" - }, - { - "file": "packages/react-icons-mdl2/src/components/SquareShapeSolidIcon.tsx", - "hash": "6091668410091044064" - }, - { - "file": "packages/react-icons-mdl2/src/components/StackColumnChartIcon.tsx", - "hash": "5750033709428168935" - }, - { - "file": "packages/react-icons-mdl2/src/components/StackIcon.tsx", - "hash": "2508613136410619416" - }, - { - "file": "packages/react-icons-mdl2/src/components/StackIndicatorIcon.tsx", - "hash": "17350034510560911365" - }, - { - "file": "packages/react-icons-mdl2/src/components/StackedBarChartIcon.tsx", - "hash": "2818483888288699403" - }, - { - "file": "packages/react-icons-mdl2/src/components/StackedColumnChart2FillIcon.tsx", - "hash": "6161322009720672112" - }, - { - "file": "packages/react-icons-mdl2/src/components/StackedColumnChart2Icon.tsx", - "hash": "3000388554856050094" - }, - { - "file": "packages/react-icons-mdl2/src/components/StackedLineChartIcon.tsx", - "hash": "1107216935189249093" - }, - { - "file": "packages/react-icons-mdl2/src/components/StarburstIcon.tsx", - "hash": "10780411602915789659" - }, - { - "file": "packages/react-icons-mdl2/src/components/StarburstSolidIcon.tsx", - "hash": "12448992283496117374" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleBlock2Icon.tsx", - "hash": "17684175596652858312" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleBlockIcon.tsx", - "hash": "16024578287257359985" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleCheckmarkIcon.tsx", - "hash": "13588980792697650161" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleErrorXIcon.tsx", - "hash": "8297623033959191316" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleExclamationIcon.tsx", - "hash": "1627855386051443053" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleInfoIcon.tsx", - "hash": "8350899233453241488" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleInnerIcon.tsx", - "hash": "12712482180441686353" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleOuterIcon.tsx", - "hash": "11708521576305204729" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleQuestionMarkIcon.tsx", - "hash": "13112912123387201026" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleRingIcon.tsx", - "hash": "5409734124201155449" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusCircleSyncIcon.tsx", - "hash": "7621020559065265920" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusErrorFullIcon.tsx", - "hash": "5355917476705477943" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusTriangleExclamationIcon.tsx", - "hash": "4611265576263259478" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusTriangleIcon.tsx", - "hash": "12461641900645362306" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusTriangleInnerIcon.tsx", - "hash": "15395814127262114514" - }, - { - "file": "packages/react-icons-mdl2/src/components/StatusTriangleOuterIcon.tsx", - "hash": "16298246760123913593" - }, - { - "file": "packages/react-icons-mdl2/src/components/StepIcon.tsx", - "hash": "215624494747363591" - }, - { - "file": "packages/react-icons-mdl2/src/components/StepInsertIcon.tsx", - "hash": "10138403059801626484" - }, - { - "file": "packages/react-icons-mdl2/src/components/StepSharedAddIcon.tsx", - "hash": "16344984184801001506" - }, - { - "file": "packages/react-icons-mdl2/src/components/StepSharedIcon.tsx", - "hash": "11206024398945775038" - }, - { - "file": "packages/react-icons-mdl2/src/components/StepSharedInsertIcon.tsx", - "hash": "1106979598169663081" - }, - { - "file": "packages/react-icons-mdl2/src/components/StockDownIcon.tsx", - "hash": "11921382229344091863" - }, - { - "file": "packages/react-icons-mdl2/src/components/StockUpIcon.tsx", - "hash": "1919785388202511728" - }, - { - "file": "packages/react-icons-mdl2/src/components/StopIcon.tsx", - "hash": "11185447640838295692" - }, - { - "file": "packages/react-icons-mdl2/src/components/StopSolidIcon.tsx", - "hash": "5531259320411293803" - }, - { - "file": "packages/react-icons-mdl2/src/components/StopwatchIcon.tsx", - "hash": "10549353697781477510" - }, - { - "file": "packages/react-icons-mdl2/src/components/StorageAcountIcon.tsx", - "hash": "15183665518429330152" - }, - { - "file": "packages/react-icons-mdl2/src/components/StorageOpticalIcon.tsx", - "hash": "16875020361414625799" - }, - { - "file": "packages/react-icons-mdl2/src/components/StoryboardIcon.tsx", - "hash": "10240115390494074559" - }, - { - "file": "packages/react-icons-mdl2/src/components/StreamingIcon.tsx", - "hash": "14590603862509932730" - }, - { - "file": "packages/react-icons-mdl2/src/components/StreamingOffIcon.tsx", - "hash": "18153643219661865252" - }, - { - "file": "packages/react-icons-mdl2/src/components/StreetIcon.tsx", - "hash": "15770083353298191910" - }, - { - "file": "packages/react-icons-mdl2/src/components/StreetsideSplitMinimizeIcon.tsx", - "hash": "16797873411790734665" - }, - { - "file": "packages/react-icons-mdl2/src/components/StrikethroughIcon.tsx", - "hash": "17843657592475299928" - }, - { - "file": "packages/react-icons-mdl2/src/components/SubscribeIcon.tsx", - "hash": "15333737165870772998" - }, - { - "file": "packages/react-icons-mdl2/src/components/SubscriptIcon.tsx", - "hash": "4287449504425088846" - }, - { - "file": "packages/react-icons-mdl2/src/components/SubstitutionsInIcon.tsx", - "hash": "15877960703464877683" - }, - { - "file": "packages/react-icons-mdl2/src/components/SuitcaseIcon.tsx", - "hash": "8990696133843045428" - }, - { - "file": "packages/react-icons-mdl2/src/components/SunAddIcon.tsx", - "hash": "12992348011854256285" - }, - { - "file": "packages/react-icons-mdl2/src/components/SunQuestionMarkIcon.tsx", - "hash": "11469911801746140277" - }, - { - "file": "packages/react-icons-mdl2/src/components/SunnyIcon.tsx", - "hash": "15889047483369918896" - }, - { - "file": "packages/react-icons-mdl2/src/components/SuperscriptIcon.tsx", - "hash": "16578034173194686970" - }, - { - "file": "packages/react-icons-mdl2/src/components/SurveyQuestionsIcon.tsx", - "hash": "4132590427036402223" - }, - { - "file": "packages/react-icons-mdl2/src/components/SwiftLogoIcon.tsx", - "hash": "1081384326788574017" - }, - { - "file": "packages/react-icons-mdl2/src/components/SwitchIcon.tsx", - "hash": "8855533022142411121" - }, - { - "file": "packages/react-icons-mdl2/src/components/SwitchUserIcon.tsx", - "hash": "122057253456993291" - }, - { - "file": "packages/react-icons-mdl2/src/components/SwitcherStartEndIcon.tsx", - "hash": "2850956600846505452" - }, - { - "file": "packages/react-icons-mdl2/src/components/SyncFolderIcon.tsx", - "hash": "485126926028164730" - }, - { - "file": "packages/react-icons-mdl2/src/components/SyncIcon.tsx", - "hash": "16599196910082932774" - }, - { - "file": "packages/react-icons-mdl2/src/components/SyncOccurenceIcon.tsx", - "hash": "17681248839885934426" - }, - { - "file": "packages/react-icons-mdl2/src/components/SyncStatusIcon.tsx", - "hash": "8831246306662635170" - }, - { - "file": "packages/react-icons-mdl2/src/components/SyncStatusSolidIcon.tsx", - "hash": "8739424996180616133" - }, - { - "file": "packages/react-icons-mdl2/src/components/SyncToPCIcon.tsx", - "hash": "15438372302526567778" - }, - { - "file": "packages/react-icons-mdl2/src/components/SystemIcon.tsx", - "hash": "2334158159692651821" - }, - { - "file": "packages/react-icons-mdl2/src/components/TVMonitorIcon.tsx", - "hash": "7695717662123278557" - }, - { - "file": "packages/react-icons-mdl2/src/components/TVMonitorSelectedIcon.tsx", - "hash": "18154342861238382312" - }, - { - "file": "packages/react-icons-mdl2/src/components/TabCenterIcon.tsx", - "hash": "16365803943440280956" - }, - { - "file": "packages/react-icons-mdl2/src/components/TabIcon.tsx", - "hash": "11709620884374064982" - }, - { - "file": "packages/react-icons-mdl2/src/components/TabOneColumnIcon.tsx", - "hash": "662354409894200120" - }, - { - "file": "packages/react-icons-mdl2/src/components/TabThreeColumnIcon.tsx", - "hash": "4409269179587711443" - }, - { - "file": "packages/react-icons-mdl2/src/components/TabTwoColumnIcon.tsx", - "hash": "12412377849340051037" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableBrandedColumnIcon.tsx", - "hash": "16290784899039879524" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableBrandedRowIcon.tsx", - "hash": "13986843412325957834" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableComputedIcon.tsx", - "hash": "3949507090249516656" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableFirstColumnIcon.tsx", - "hash": "1884071651585108751" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableGroupIcon.tsx", - "hash": "21416960461031223" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableHeaderRowIcon.tsx", - "hash": "10415755673543766256" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableIcon.tsx", - "hash": "7979377382125911255" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableLastColumnIcon.tsx", - "hash": "10783688531401041457" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableLinkIcon.tsx", - "hash": "5973576160447014475" - }, - { - "file": "packages/react-icons-mdl2/src/components/TableTotalRowIcon.tsx", - "hash": "4092767187779916452" - }, - { - "file": "packages/react-icons-mdl2/src/components/TabletIcon.tsx", - "hash": "9899473991876600081" - }, - { - "file": "packages/react-icons-mdl2/src/components/TabletModeIcon.tsx", - "hash": "13921024654679220987" - }, - { - "file": "packages/react-icons-mdl2/src/components/TabletSelectedIcon.tsx", - "hash": "6712523699481882152" - }, - { - "file": "packages/react-icons-mdl2/src/components/TagGroupIcon.tsx", - "hash": "17594586503679999232" - }, - { - "file": "packages/react-icons-mdl2/src/components/TagIcon.tsx", - "hash": "13685325487298013991" - }, - { - "file": "packages/react-icons-mdl2/src/components/TagSolidIcon.tsx", - "hash": "2495836356536292545" - }, - { - "file": "packages/react-icons-mdl2/src/components/TagUnknown12Icon.tsx", - "hash": "2598473569960929343" - }, - { - "file": "packages/react-icons-mdl2/src/components/TagUnknown12MirrorIcon.tsx", - "hash": "5777145997851759824" - }, - { - "file": "packages/react-icons-mdl2/src/components/TagUnknownIcon.tsx", - "hash": "14497305695419693170" - }, - { - "file": "packages/react-icons-mdl2/src/components/TagUnknownMirrorIcon.tsx", - "hash": "17711266976664051055" - }, - { - "file": "packages/react-icons-mdl2/src/components/TaskGroupIcon.tsx", - "hash": "11785630834522752706" - }, - { - "file": "packages/react-icons-mdl2/src/components/TaskGroupMirroredIcon.tsx", - "hash": "4676750509033243593" - }, - { - "file": "packages/react-icons-mdl2/src/components/TaskListIcon.tsx", - "hash": "5954157389475038868" - }, - { - "file": "packages/react-icons-mdl2/src/components/TaskManagerIcon.tsx", - "hash": "18017696453288394664" - }, - { - "file": "packages/react-icons-mdl2/src/components/TaskManagerMirroredIcon.tsx", - "hash": "17364828386753924183" - }, - { - "file": "packages/react-icons-mdl2/src/components/TaskSolidIcon.tsx", - "hash": "16676768704629323954" - }, - { - "file": "packages/react-icons-mdl2/src/components/TaskboardIcon.tsx", - "hash": "1465072882454830290" - }, - { - "file": "packages/react-icons-mdl2/src/components/TaxiIcon.tsx", - "hash": "9939668690623139701" - }, - { - "file": "packages/react-icons-mdl2/src/components/TeamFavoriteIcon.tsx", - "hash": "8834906264133174991" - }, - { - "file": "packages/react-icons-mdl2/src/components/TeamworkIcon.tsx", - "hash": "1385894294154520673" - }, - { - "file": "packages/react-icons-mdl2/src/components/TeethIcon.tsx", - "hash": "1039096284028888661" - }, - { - "file": "packages/react-icons-mdl2/src/components/TelemarketerIcon.tsx", - "hash": "6202991518436709224" - }, - { - "file": "packages/react-icons-mdl2/src/components/TemporaryUserIcon.tsx", - "hash": "2390283079187540413" - }, - { - "file": "packages/react-icons-mdl2/src/components/TennisIcon.tsx", - "hash": "9939280365510716542" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestAutoSolidIcon.tsx", - "hash": "17552513329626189757" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestBeakerIcon.tsx", - "hash": "5724817032542410021" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestBeakerSolidIcon.tsx", - "hash": "16039530830701812924" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestCaseIcon.tsx", - "hash": "3361764228168393807" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestExploreSolidIcon.tsx", - "hash": "15688596397733369335" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestImpactSolidIcon.tsx", - "hash": "4838804235311193529" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestParameterIcon.tsx", - "hash": "13233135773568991009" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestPlanIcon.tsx", - "hash": "5840777192923539247" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestStepIcon.tsx", - "hash": "2539868854009493894" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestSuiteIcon.tsx", - "hash": "11612852314150027326" - }, - { - "file": "packages/react-icons-mdl2/src/components/TestUserSolidIcon.tsx", - "hash": "17021241125114305919" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextAlignBottomIcon.tsx", - "hash": "15595304680101858004" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextAlignMiddleIcon.tsx", - "hash": "13088597654272774899" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextAlignTopIcon.tsx", - "hash": "12409789330926784540" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextBoxIcon.tsx", - "hash": "12640038380248915976" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextCalloutIcon.tsx", - "hash": "8768374329086488041" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextDocumentEditIcon.tsx", - "hash": "14033498016627891288" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextDocumentIcon.tsx", - "hash": "15681509163935654252" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextDocumentSettingsIcon.tsx", - "hash": "243054128054786567" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextDocumentSharedIcon.tsx", - "hash": "10056072914160791288" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextFieldIcon.tsx", - "hash": "16554991455092500846" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextOverflowIcon.tsx", - "hash": "14266834217281845925" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextParagraphOptionIcon.tsx", - "hash": "10524706672158436483" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextRecognitionIcon.tsx", - "hash": "5475597562621601112" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextRotate270DegreesIcon.tsx", - "hash": "3868367543183284951" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextRotate90DegreesIcon.tsx", - "hash": "7709931387604465793" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextRotateHorizontalIcon.tsx", - "hash": "9332426960722168438" - }, - { - "file": "packages/react-icons-mdl2/src/components/TextRotationIcon.tsx", - "hash": "5024976556154126592" - }, - { - "file": "packages/react-icons-mdl2/src/components/ThisPCIcon.tsx", - "hash": "4762656769096430490" - }, - { - "file": "packages/react-icons-mdl2/src/components/ThreeQuarterCircleIcon.tsx", - "hash": "14952954392359190791" - }, - { - "file": "packages/react-icons-mdl2/src/components/ThumbnailViewIcon.tsx", - "hash": "360297995023738561" - }, - { - "file": "packages/react-icons-mdl2/src/components/ThumbnailViewMirroredIcon.tsx", - "hash": "17846539039875697634" - }, - { - "file": "packages/react-icons-mdl2/src/components/ThunderstormsIcon.tsx", - "hash": "9106945935558199340" - }, - { - "file": "packages/react-icons-mdl2/src/components/TicketIcon.tsx", - "hash": "13190640847014651075" - }, - { - "file": "packages/react-icons-mdl2/src/components/Tiles2Icon.tsx", - "hash": "17203248268860884999" - }, - { - "file": "packages/react-icons-mdl2/src/components/TilesIcon.tsx", - "hash": "2672010188457684975" - }, - { - "file": "packages/react-icons-mdl2/src/components/TimeEntryIcon.tsx", - "hash": "12031904183135700464" - }, - { - "file": "packages/react-icons-mdl2/src/components/TimePickerIcon.tsx", - "hash": "8958829646877776263" - }, - { - "file": "packages/react-icons-mdl2/src/components/TimeSheetIcon.tsx", - "hash": "15539474987423139369" - }, - { - "file": "packages/react-icons-mdl2/src/components/TimelineDeliveryIcon.tsx", - "hash": "514264487208080729" - }, - { - "file": "packages/react-icons-mdl2/src/components/TimelineIcon.tsx", - "hash": "2940680805171877867" - }, - { - "file": "packages/react-icons-mdl2/src/components/TimelineMatrixViewIcon.tsx", - "hash": "5163027931014784165" - }, - { - "file": "packages/react-icons-mdl2/src/components/TimelineProgressIcon.tsx", - "hash": "12837504728733867949" - }, - { - "file": "packages/react-icons-mdl2/src/components/TimerIcon.tsx", - "hash": "10813898219243920306" - }, - { - "file": "packages/react-icons-mdl2/src/components/ToggleBorderIcon.tsx", - "hash": "14032634263947972089" - }, - { - "file": "packages/react-icons-mdl2/src/components/ToggleFilledIcon.tsx", - "hash": "15135642495766784714" - }, - { - "file": "packages/react-icons-mdl2/src/components/ToggleLeftIcon.tsx", - "hash": "2486283043481064334" - }, - { - "file": "packages/react-icons-mdl2/src/components/ToggleRightIcon.tsx", - "hash": "10855279613245750547" - }, - { - "file": "packages/react-icons-mdl2/src/components/ToggleThumbIcon.tsx", - "hash": "2749474144310917420" - }, - { - "file": "packages/react-icons-mdl2/src/components/TollIcon.tsx", - "hash": "3314679699864345856" - }, - { - "file": "packages/react-icons-mdl2/src/components/ToolboxIcon.tsx", - "hash": "4839246670380035611" - }, - { - "file": "packages/react-icons-mdl2/src/components/TotalIcon.tsx", - "hash": "4185728115118303116" - }, - { - "file": "packages/react-icons-mdl2/src/components/TouchIcon.tsx", - "hash": "10861349985175317319" - }, - { - "file": "packages/react-icons-mdl2/src/components/TouchPointerIcon.tsx", - "hash": "9852648877114095369" - }, - { - "file": "packages/react-icons-mdl2/src/components/TrackersIcon.tsx", - "hash": "13770614269976701744" - }, - { - "file": "packages/react-icons-mdl2/src/components/TrackersMirroredIcon.tsx", - "hash": "1805565580387664998" - }, - { - "file": "packages/react-icons-mdl2/src/components/TrainIcon.tsx", - "hash": "15721639617417914895" - }, - { - "file": "packages/react-icons-mdl2/src/components/TrainSolidIcon.tsx", - "hash": "976821243448214259" - }, - { - "file": "packages/react-icons-mdl2/src/components/TransferCallIcon.tsx", - "hash": "16048110274897933973" - }, - { - "file": "packages/react-icons-mdl2/src/components/TransitionEffectIcon.tsx", - "hash": "16289364194199249024" - }, - { - "file": "packages/react-icons-mdl2/src/components/TransitionIcon.tsx", - "hash": "2619796789854161438" - }, - { - "file": "packages/react-icons-mdl2/src/components/TransitionPopIcon.tsx", - "hash": "10155185082051010804" - }, - { - "file": "packages/react-icons-mdl2/src/components/TransitionPushIcon.tsx", - "hash": "16646538414614373831" - }, - { - "file": "packages/react-icons-mdl2/src/components/TranslateIcon.tsx", - "hash": "10526960969593700992" - }, - { - "file": "packages/react-icons-mdl2/src/components/Trending12Icon.tsx", - "hash": "2106873409364248506" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleDown12Icon.tsx", - "hash": "171981401139167507" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleLeft12Icon.tsx", - "hash": "16648485182410559664" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleRight12Icon.tsx", - "hash": "5798641180598467117" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleShapeIcon.tsx", - "hash": "17092372385959061650" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleShapeSolidIcon.tsx", - "hash": "688773254519750686" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleSolidDown12Icon.tsx", - "hash": "12573133610066222696" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleSolidIcon.tsx", - "hash": "6797382738731967916" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleSolidLeft12Icon.tsx", - "hash": "10900009224046619716" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleSolidRight12Icon.tsx", - "hash": "6567523118415963780" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleSolidUp12Icon.tsx", - "hash": "5329892573400991169" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriangleUp12Icon.tsx", - "hash": "5945898828306457746" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriggerApprovalIcon.tsx", - "hash": "10529063875031607672" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriggerAutoIcon.tsx", - "hash": "11476050854862480564" - }, - { - "file": "packages/react-icons-mdl2/src/components/TriggerUserIcon.tsx", - "hash": "4184658008236004234" - }, - { - "file": "packages/react-icons-mdl2/src/components/TrimEndIcon.tsx", - "hash": "4965514454211828622" - }, - { - "file": "packages/react-icons-mdl2/src/components/TrimIcon.tsx", - "hash": "4807443960521026868" - }, - { - "file": "packages/react-icons-mdl2/src/components/TrimStartIcon.tsx", - "hash": "17844194230036320959" - }, - { - "file": "packages/react-icons-mdl2/src/components/TripleColumnEditIcon.tsx", - "hash": "12058208683152277294" - }, - { - "file": "packages/react-icons-mdl2/src/components/TripleColumnIcon.tsx", - "hash": "13361733788665401723" - }, - { - "file": "packages/react-icons-mdl2/src/components/TripleColumnWideIcon.tsx", - "hash": "15774745564128248294" - }, - { - "file": "packages/react-icons-mdl2/src/components/Trophy2Icon.tsx", - "hash": "3673672684917614623" - }, - { - "file": "packages/react-icons-mdl2/src/components/Trophy2SolidIcon.tsx", - "hash": "12793846497707369710" - }, - { - "file": "packages/react-icons-mdl2/src/components/TrophyIcon.tsx", - "hash": "6385230499807289860" - }, - { - "file": "packages/react-icons-mdl2/src/components/TurnRightIcon.tsx", - "hash": "15099009340328704249" - }, - { - "file": "packages/react-icons-mdl2/src/components/TwelvePointStarIcon.tsx", - "hash": "2615911893080009096" - }, - { - "file": "packages/react-icons-mdl2/src/components/TwitterLogoIcon.tsx", - "hash": "14191461990643700502" - }, - { - "file": "packages/react-icons-mdl2/src/components/URLBlockIcon.tsx", - "hash": "1925379512545042518" - }, - { - "file": "packages/react-icons-mdl2/src/components/USBIcon.tsx", - "hash": "15098287371858184580" - }, - { - "file": "packages/react-icons-mdl2/src/components/UmbrellaIcon.tsx", - "hash": "9137237141480703628" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnSetColorIcon.tsx", - "hash": "4950692113525656602" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnderlineIcon.tsx", - "hash": "14365306570852551521" - }, - { - "file": "packages/react-icons-mdl2/src/components/UndoIcon.tsx", - "hash": "5047100941423645842" - }, - { - "file": "packages/react-icons-mdl2/src/components/Uneditable2Icon.tsx", - "hash": "9311493851993525006" - }, - { - "file": "packages/react-icons-mdl2/src/components/Uneditable2MirroredIcon.tsx", - "hash": "3871595863416323192" - }, - { - "file": "packages/react-icons-mdl2/src/components/UneditableIcon.tsx", - "hash": "6404617348036391786" - }, - { - "file": "packages/react-icons-mdl2/src/components/UneditableMirroredIcon.tsx", - "hash": "8726101644786177988" - }, - { - "file": "packages/react-icons-mdl2/src/components/UneditableSolid12Icon.tsx", - "hash": "7635003590489640246" - }, - { - "file": "packages/react-icons-mdl2/src/components/UneditableSolidMirrored12Icon.tsx", - "hash": "9921092478533934651" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnfavoriteIcon.tsx", - "hash": "17681077919815737489" - }, - { - "file": "packages/react-icons-mdl2/src/components/UngroupObjectIcon.tsx", - "hash": "14882233682302492470" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnknownCallIcon.tsx", - "hash": "5029389003388271009" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnknownIcon.tsx", - "hash": "1735921039361749128" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnknownMirroredIcon.tsx", - "hash": "9296861312750383545" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnknownMirroredSolidIcon.tsx", - "hash": "2077397235634052500" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnknownSolidIcon.tsx", - "hash": "12375948387710609319" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnlockIcon.tsx", - "hash": "3440807599248599373" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnlockSolidIcon.tsx", - "hash": "6894086335639184342" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnpinIcon.tsx", - "hash": "7061079865495252339" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnpublishContentIcon.tsx", - "hash": "8092480453385525234" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnstackSelectedIcon.tsx", - "hash": "12346661599890970553" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnsubscribeIcon.tsx", - "hash": "3774803546099902552" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnsyncFolderIcon.tsx", - "hash": "15440579740730076712" - }, - { - "file": "packages/react-icons-mdl2/src/components/UnsyncOccurenceIcon.tsx", - "hash": "1425590890607565353" - }, - { - "file": "packages/react-icons-mdl2/src/components/UntagIcon.tsx", - "hash": "8416428745272919438" - }, - { - "file": "packages/react-icons-mdl2/src/components/UpIcon.tsx", - "hash": "1277400271266174921" - }, - { - "file": "packages/react-icons-mdl2/src/components/UpdateRestoreIcon.tsx", - "hash": "549519074071086844" - }, - { - "file": "packages/react-icons-mdl2/src/components/UpgradeAnalysisIcon.tsx", - "hash": "16560770761218336942" - }, - { - "file": "packages/react-icons-mdl2/src/components/UploadIcon.tsx", - "hash": "11995652079479661348" - }, - { - "file": "packages/react-icons-mdl2/src/components/UserEventIcon.tsx", - "hash": "3769311157832514887" - }, - { - "file": "packages/react-icons-mdl2/src/components/UserFollowedIcon.tsx", - "hash": "5966706362599236619" - }, - { - "file": "packages/react-icons-mdl2/src/components/UserGaugeIcon.tsx", - "hash": "18432081529086621043" - }, - { - "file": "packages/react-icons-mdl2/src/components/UserOptionalIcon.tsx", - "hash": "5662138790735657746" - }, - { - "file": "packages/react-icons-mdl2/src/components/UserPauseIcon.tsx", - "hash": "6151704219333905884" - }, - { - "file": "packages/react-icons-mdl2/src/components/UserRemoveIcon.tsx", - "hash": "11588591275980118322" - }, - { - "file": "packages/react-icons-mdl2/src/components/UserSyncIcon.tsx", - "hash": "17310207728181411047" - }, - { - "file": "packages/react-icons-mdl2/src/components/UserWarningIcon.tsx", - "hash": "14669492216490763227" - }, - { - "file": "packages/react-icons-mdl2/src/components/VBIcon.tsx", - "hash": "9829828778039629487" - }, - { - "file": "packages/react-icons-mdl2/src/components/VacationIcon.tsx", - "hash": "8022110324115674063" - }, - { - "file": "packages/react-icons-mdl2/src/components/VaccinationIcon.tsx", - "hash": "1178726231502318145" - }, - { - "file": "packages/react-icons-mdl2/src/components/Variable2Icon.tsx", - "hash": "755960883817735294" - }, - { - "file": "packages/react-icons-mdl2/src/components/VariableGroupIcon.tsx", - "hash": "8436465373430061460" - }, - { - "file": "packages/react-icons-mdl2/src/components/VariableIcon.tsx", - "hash": "2609031573367013787" - }, - { - "file": "packages/react-icons-mdl2/src/components/VennDiagramIcon.tsx", - "hash": "6647072432606819893" - }, - { - "file": "packages/react-icons-mdl2/src/components/VerifiedBrandIcon.tsx", - "hash": "505586560668839378" - }, - { - "file": "packages/react-icons-mdl2/src/components/VerifiedBrandSolidIcon.tsx", - "hash": "8937652609160012839" - }, - { - "file": "packages/react-icons-mdl2/src/components/VersionControlPushIcon.tsx", - "hash": "1300042390675965738" - }, - { - "file": "packages/react-icons-mdl2/src/components/VerticalDistributeCenterIcon.tsx", - "hash": "13794147682172231350" - }, - { - "file": "packages/react-icons-mdl2/src/components/Video360GenericIcon.tsx", - "hash": "17226930219280265807" - }, - { - "file": "packages/react-icons-mdl2/src/components/VideoIcon.tsx", - "hash": "12278496161795627048" - }, - { - "file": "packages/react-icons-mdl2/src/components/VideoLightOffIcon.tsx", - "hash": "8856116492274615799" - }, - { - "file": "packages/react-icons-mdl2/src/components/VideoOff2Icon.tsx", - "hash": "6271894715959040359" - }, - { - "file": "packages/react-icons-mdl2/src/components/VideoOffIcon.tsx", - "hash": "10226797869303350920" - }, - { - "file": "packages/react-icons-mdl2/src/components/VideoSearchIcon.tsx", - "hash": "7205577982062949833" - }, - { - "file": "packages/react-icons-mdl2/src/components/VideoSolidIcon.tsx", - "hash": "8537354773411979077" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewAll2Icon.tsx", - "hash": "11868068469109024683" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewAllIcon.tsx", - "hash": "16818098509911006179" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewDashboardIcon.tsx", - "hash": "17093070343339581297" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewIcon.tsx", - "hash": "3174608005014370504" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewInARIcon.tsx", - "hash": "2288265271718830259" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewListGroupIcon.tsx", - "hash": "16872704757062896557" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewListIcon.tsx", - "hash": "13188750737974225743" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewListTreeIcon.tsx", - "hash": "18233067532528468437" - }, - { - "file": "packages/react-icons-mdl2/src/components/ViewOriginalIcon.tsx", - "hash": "3170951622338842638" - }, - { - "file": "packages/react-icons-mdl2/src/components/VisuallyImpairedIcon.tsx", - "hash": "4029080719537829282" - }, - { - "file": "packages/react-icons-mdl2/src/components/VisualsFolderIcon.tsx", - "hash": "15342863668915656662" - }, - { - "file": "packages/react-icons-mdl2/src/components/VisualsStoreIcon.tsx", - "hash": "3301177936267219314" - }, - { - "file": "packages/react-icons-mdl2/src/components/VivaEngageIcon.tsx", - "hash": "342057237145551020" - }, - { - "file": "packages/react-icons-mdl2/src/components/VoicemailForwardIcon.tsx", - "hash": "11252099681565531834" - }, - { - "file": "packages/react-icons-mdl2/src/components/VoicemailIRMIcon.tsx", - "hash": "5784027932985602268" - }, - { - "file": "packages/react-icons-mdl2/src/components/VoicemailReplyIcon.tsx", - "hash": "2670152969925082360" - }, - { - "file": "packages/react-icons-mdl2/src/components/Volume0Icon.tsx", - "hash": "14711966802494310008" - }, - { - "file": "packages/react-icons-mdl2/src/components/Volume1Icon.tsx", - "hash": "8628403532537549482" - }, - { - "file": "packages/react-icons-mdl2/src/components/Volume2Icon.tsx", - "hash": "10947955841676995522" - }, - { - "file": "packages/react-icons-mdl2/src/components/Volume3Icon.tsx", - "hash": "6255732894877839840" - }, - { - "file": "packages/react-icons-mdl2/src/components/VolumeDisabledIcon.tsx", - "hash": "15274266247179145671" - }, - { - "file": "packages/react-icons-mdl2/src/components/WaffleIcon.tsx", - "hash": "2950068325310779157" - }, - { - "file": "packages/react-icons-mdl2/src/components/WaitlistConfirmIcon.tsx", - "hash": "16350565265423816673" - }, - { - "file": "packages/react-icons-mdl2/src/components/WaitlistConfirmMirroredIcon.tsx", - "hash": "3192900391078337040" - }, - { - "file": "packages/react-icons-mdl2/src/components/Warning12Icon.tsx", - "hash": "10414927247423762544" - }, - { - "file": "packages/react-icons-mdl2/src/components/WarningIcon.tsx", - "hash": "11558870242564616294" - }, - { - "file": "packages/react-icons-mdl2/src/components/WarningSolidIcon.tsx", - "hash": "4806809002654438437" - }, - { - "file": "packages/react-icons-mdl2/src/components/WavingHandIcon.tsx", - "hash": "5328126403369927808" - }, - { - "file": "packages/react-icons-mdl2/src/components/WebComponentsIcon.tsx", - "hash": "6368115053369553368" - }, - { - "file": "packages/react-icons-mdl2/src/components/WebEnvironmentIcon.tsx", - "hash": "381704530527454706" - }, - { - "file": "packages/react-icons-mdl2/src/components/WebPublishIcon.tsx", - "hash": "14472183168093975238" - }, - { - "file": "packages/react-icons-mdl2/src/components/WebTemplateIcon.tsx", - "hash": "7673288651544450874" - }, - { - "file": "packages/react-icons-mdl2/src/components/Webcam2Icon.tsx", - "hash": "11408324897112205977" - }, - { - "file": "packages/react-icons-mdl2/src/components/Webcam2OffIcon.tsx", - "hash": "11112019980159583410" - }, - { - "file": "packages/react-icons-mdl2/src/components/WebsiteIcon.tsx", - "hash": "109363059098112457" - }, - { - "file": "packages/react-icons-mdl2/src/components/WeightsIcon.tsx", - "hash": "9131258169715892532" - }, - { - "file": "packages/react-icons-mdl2/src/components/WheelchairIcon.tsx", - "hash": "16945724465006768625" - }, - { - "file": "packages/react-icons-mdl2/src/components/WifiEthernetIcon.tsx", - "hash": "5960548132930795026" - }, - { - "file": "packages/react-icons-mdl2/src/components/WifiWarning4Icon.tsx", - "hash": "7927677858534751771" - }, - { - "file": "packages/react-icons-mdl2/src/components/WindDirectionIcon.tsx", - "hash": "9221883227530736535" - }, - { - "file": "packages/react-icons-mdl2/src/components/WindowEditIcon.tsx", - "hash": "4076965312930675053" - }, - { - "file": "packages/react-icons-mdl2/src/components/WinesIcon.tsx", - "hash": "1465806768413311133" - }, - { - "file": "packages/react-icons-mdl2/src/components/WipePhoneIcon.tsx", - "hash": "12670699704701586796" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorkFlowIcon.tsx", - "hash": "4175996887759720125" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorkIcon.tsx", - "hash": "7487163304911749789" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorkItemAlertIcon.tsx", - "hash": "18002172167790808215" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorkItemBarIcon.tsx", - "hash": "10251941423352191173" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorkItemBarSolidIcon.tsx", - "hash": "8361787609476204851" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorkItemBugIcon.tsx", - "hash": "16243598830165268723" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorkItemIcon.tsx", - "hash": "7038981634753058738" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorkforceManagementIcon.tsx", - "hash": "358477104320586984" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorldClockIcon.tsx", - "hash": "3089081544197638278" - }, - { - "file": "packages/react-icons-mdl2/src/components/WorldIcon.tsx", - "hash": "649726162345103873" - }, - { - "file": "packages/react-icons-mdl2/src/components/XamarinLogoIcon.tsx", - "hash": "14047036378370404231" - }, - { - "file": "packages/react-icons-mdl2/src/components/XboxControllerIcon.tsx", - "hash": "9369385320898542725" - }, - { - "file": "packages/react-icons-mdl2/src/components/ZipFolderIcon.tsx", - "hash": "9100929772659195530" - }, - { - "file": "packages/react-icons-mdl2/src/components/ZoomIcon.tsx", - "hash": "5661510962276466081" - }, - { - "file": "packages/react-icons-mdl2/src/components/ZoomInIcon.tsx", - "hash": "6270376369614251228" - }, - { - "file": "packages/react-icons-mdl2/src/components/ZoomOutIcon.tsx", - "hash": "3454829544366928700" - }, - { - "file": "packages/react-icons-mdl2/src/components/ZoomToFitIcon.tsx", - "hash": "3268567365489041315" - }, - { - "file": "packages/react-icons-mdl2/src/components/eDiscoveryIcon.tsx", - "hash": "7159112877709818566" - }, - { - "file": "packages/react-icons-mdl2/src/components/iOSAppStoreLogoIcon.tsx", - "hash": "7627089926395288748" - }, - { - "file": "packages/react-icons-mdl2/src/components.test.tsx", - "hash": "6663979517663972277" - }, - { - "file": "packages/react-icons-mdl2/src/index.ts", - "hash": "10045948948610575782" - }, - { - "file": "packages/react-icons-mdl2/src/utils/SvgIcon.scss", - "hash": "17239050675246297646" - }, - { - "file": "packages/react-icons-mdl2/src/utils/SvgIcon.types.ts", - "hash": "6367189759970436552" - }, - { - "file": "packages/react-icons-mdl2/src/utils/createSvgIcon.test.tsx", - "hash": "2001542643760954125" - }, - { - "file": "packages/react-icons-mdl2/src/utils/createSvgIcon.ts", - "hash": "11651772376542528354" - }, - { - "file": "packages/react-icons-mdl2/src/utils/types.ts", - "hash": "14103007282502894067" - }, - { - "file": "packages/react-icons-mdl2/src/version.ts", - "hash": "1883088086173265942" - }, - { - "file": "packages/react-icons-mdl2/tsconfig.json", - "hash": "10956001999050876945" - }, - { - "file": "packages/react-icons-mdl2/webpack.config.js", - "hash": "3997384588979449621" - } - ], - "@fluentui/react-switch": [ - { - "file": "packages/react-components/react-switch/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-switch/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-switch/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-switch/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-switch/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-switch/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-switch/CHANGELOG.json", - "hash": "93480200567092769" - }, - { - "file": "packages/react-components/react-switch/CHANGELOG.md", - "hash": "4993373179594467646" - }, - { - "file": "packages/react-components/react-switch/LICENSE", - "hash": "7758643350479616012" - }, - { - "file": "packages/react-components/react-switch/README.md", - "hash": "6695124769051641866" - }, - { - "file": "packages/react-components/react-switch/bundle-size/Switch.fixture.js", - "hash": "18142234447983599749" - }, - { - "file": "packages/react-components/react-switch/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-switch/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-switch/docs/MIGRATION.md", - "hash": "15118859291030401714" - }, - { - "file": "packages/react-components/react-switch/docs/Spec.md", - "hash": "17548703377455617725" - }, - { - "file": "packages/react-components/react-switch/etc/react-switch.api.md", - "hash": "10388195155800950811" - }, - { - "file": "packages/react-components/react-switch/jest.config.js", - "hash": "11796909119431137923" - }, - { - "file": "packages/react-components/react-switch/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-switch/package.json", - "hash": "13345183038821483661", - "deps": [ - "@fluentui/react-field", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-label", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-switch/project.json", - "hash": "17239642703487167945" - }, - { - "file": "packages/react-components/react-switch/src/Switch.ts", - "hash": "4931084963559363607" - }, - { - "file": "packages/react-components/react-switch/src/components/Switch/Switch.test.tsx", - "hash": "7606500747307139081" - }, - { - "file": "packages/react-components/react-switch/src/components/Switch/Switch.tsx", - "hash": "159146658299780809" - }, - { - "file": "packages/react-components/react-switch/src/components/Switch/Switch.types.ts", - "hash": "3218403624876301764" - }, - { - "file": "packages/react-components/react-switch/src/components/Switch/index.ts", - "hash": "792032061260370567" - }, - { - "file": "packages/react-components/react-switch/src/components/Switch/renderSwitch.tsx", - "hash": "10093392201553883072" - }, - { - "file": "packages/react-components/react-switch/src/components/Switch/useSwitch.tsx", - "hash": "12151981653417627061" - }, - { - "file": "packages/react-components/react-switch/src/components/Switch/useSwitchStyles.styles.ts", - "hash": "5898159194979167501" - }, - { - "file": "packages/react-components/react-switch/src/index.ts", - "hash": "13437810719619271071" - }, - { - "file": "packages/react-components/react-switch/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/SwitchBestPractices.md", - "hash": "8459364606907620813" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/SwitchChecked.stories.tsx", - "hash": "3140098803061046154" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/SwitchDefault.stories.tsx", - "hash": "3109229446861735999" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/SwitchDescription.md", - "hash": "16734928102220688292" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/SwitchDisabled.stories.tsx", - "hash": "2972558941372219207" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/SwitchLabel.stories.tsx", - "hash": "6846171252178115747" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/SwitchLabelWrapping.stories.tsx", - "hash": "13592280099387883871" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/SwitchRequired.stories.tsx", - "hash": "341782030343560004" - }, - { - "file": "packages/react-components/react-switch/stories/Switch/index.stories.tsx", - "hash": "8026541863353447357" - }, - { - "file": "packages/react-components/react-switch/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-switch/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-switch/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/e2e": [ - { - "file": "packages/fluentui/e2e/.eslintrc.json", - "hash": "4582290292281873136" - }, - { - "file": "packages/fluentui/e2e/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/e2e/README.md", - "hash": "7359165508010786092" - }, - { - "file": "packages/fluentui/e2e/babel.config.js", - "hash": "7654395597360391156" - }, - { - "file": "packages/fluentui/e2e/cypress/support/commands.js", - "hash": "4346932210195998935" - }, - { - "file": "packages/fluentui/e2e/cypress/support/e2e.js", - "hash": "8958390892426780845" - }, - { - "file": "packages/fluentui/e2e/cypress/support/index.d.ts", - "hash": "1050349724913102223" - }, - { - "file": "packages/fluentui/e2e/cypress.config.ts", - "hash": "10650622636735033301" - }, - { - "file": "packages/fluentui/e2e/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/e2e/package.json", - "hash": "12477681538209041201", - "deps": [ - "@fluentui/accessibility", - "@fluentui/react", - "@fluentui/react-icons-northstar", - "@fluentui/react-northstar", - "@fluentui/react-northstar-prototypes", - "npm:@types/react-router-dom", - "npm:lerna-alias", - "npm:lodash", - "npm:react-router-dom", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp" - ] - }, - { - "file": "packages/fluentui/e2e/project.json", - "hash": "16913508845340459099" - }, - { - "file": "packages/fluentui/e2e/server/E2EExample.tsx", - "hash": "3499014286167000988" - }, - { - "file": "packages/fluentui/e2e/server/app.tsx", - "hash": "16202489186045223673" - }, - { - "file": "packages/fluentui/e2e/server/index.html", - "hash": "15258269720062780830" - }, - { - "file": "packages/fluentui/e2e/server/routes.ts", - "hash": "11057375900294827994" - }, - { - "file": "packages/fluentui/e2e/tests/carouselClickableContent-example.tsx", - "hash": "4743069259029583882" - }, - { - "file": "packages/fluentui/e2e/tests/carouselClickableContent.spec.ts", - "hash": "16237255077237516656" - }, - { - "file": "packages/fluentui/e2e/tests/chatMessageActionMenu-example.tsx", - "hash": "5076963271459573150" - }, - { - "file": "packages/fluentui/e2e/tests/chatMessageActionMenu.spec.ts", - "hash": "5324476327709994437" - }, - { - "file": "packages/fluentui/e2e/tests/datepicker-example.tsx", - "hash": "1803629627979009758" - }, - { - "file": "packages/fluentui/e2e/tests/datepicker.spec.ts", - "hash": "5328620499026462603" - }, - { - "file": "packages/fluentui/e2e/tests/datepickerWithControlledSelectedDate-example.tsx", - "hash": "17232189297346500144" - }, - { - "file": "packages/fluentui/e2e/tests/datepickerWithControlledSelectedDate.spec.ts", - "hash": "9972000812362213438" - }, - { - "file": "packages/fluentui/e2e/tests/dialog-example.tsx", - "hash": "14670395535679878228" - }, - { - "file": "packages/fluentui/e2e/tests/dialog.spec.ts", - "hash": "9080139584052903217" - }, - { - "file": "packages/fluentui/e2e/tests/dialogInDialog-example.tsx", - "hash": "5368077115082155956" - }, - { - "file": "packages/fluentui/e2e/tests/dialogInDialog.spec.ts", - "hash": "9403986057790407239" - }, - { - "file": "packages/fluentui/e2e/tests/dialogInDialogWithDropdown-example.tsx", - "hash": "10611038361335342361" - }, - { - "file": "packages/fluentui/e2e/tests/dialogInDialogWithDropdown.spec.ts", - "hash": "6276305052387579257" - }, - { - "file": "packages/fluentui/e2e/tests/dialogInPopup-example.tsx", - "hash": "7674716831651329345" - }, - { - "file": "packages/fluentui/e2e/tests/dialogInPopup.spec.ts", - "hash": "14897258850010389359" - }, - { - "file": "packages/fluentui/e2e/tests/dialogPreventScroll-example.tsx", - "hash": "5559084864562935041" - }, - { - "file": "packages/fluentui/e2e/tests/dialogPreventScroll.spec.ts", - "hash": "9250859085534201583" - }, - { - "file": "packages/fluentui/e2e/tests/dialogWithDropdown-example.tsx", - "hash": "9967621738597251618" - }, - { - "file": "packages/fluentui/e2e/tests/dialogWithDropdown.spec.ts", - "hash": "10460346809481457060" - }, - { - "file": "packages/fluentui/e2e/tests/dropdown-example.tsx", - "hash": "7085571512538860924" - }, - { - "file": "packages/fluentui/e2e/tests/dropdown.spec.ts", - "hash": "12180675537760796473" - }, - { - "file": "packages/fluentui/e2e/tests/dropdownMoveFocusOnTab-example.tsx", - "hash": "1590492383482503996" - }, - { - "file": "packages/fluentui/e2e/tests/dropdownMoveFocusOnTab.spec.ts", - "hash": "16366076377253442699" - }, - { - "file": "packages/fluentui/e2e/tests/dropdownSearch-example.tsx", - "hash": "2243581698923060983" - }, - { - "file": "packages/fluentui/e2e/tests/dropdownSearch.spec.ts", - "hash": "8222488631505443553" - }, - { - "file": "packages/fluentui/e2e/tests/fabricLayerInPopup-example.tsx", - "hash": "5654558685761775986" - }, - { - "file": "packages/fluentui/e2e/tests/fabricLayerInPopup.spec.ts", - "hash": "13704094458215714046" - }, - { - "file": "packages/fluentui/e2e/tests/menuDismissOnItemClick-example.tsx", - "hash": "14437376863888489746" - }, - { - "file": "packages/fluentui/e2e/tests/menuDismissOnItemClick.spec.ts", - "hash": "9686476550271301697" - }, - { - "file": "packages/fluentui/e2e/tests/menuDismissScroll-example.tsx", - "hash": "13874781962939393061" - }, - { - "file": "packages/fluentui/e2e/tests/menuDismissScroll.spec.ts", - "hash": "14223321295916642370" - }, - { - "file": "packages/fluentui/e2e/tests/popupClickHandling-example.tsx", - "hash": "13213920161361176518" - }, - { - "file": "packages/fluentui/e2e/tests/popupClickHandling.spec.ts", - "hash": "2885575729341377987" - }, - { - "file": "packages/fluentui/e2e/tests/popupDismissScroll-example.tsx", - "hash": "7328442500399212185" - }, - { - "file": "packages/fluentui/e2e/tests/popupDismissScroll.spec.ts", - "hash": "5254233567644407063" - }, - { - "file": "packages/fluentui/e2e/tests/popupEscHandling-example.tsx", - "hash": "6592433637981138545" - }, - { - "file": "packages/fluentui/e2e/tests/popupEscHandling.spec.ts", - "hash": "1420963620788681365" - }, - { - "file": "packages/fluentui/e2e/tests/popupIframeDismiss-example.tsx", - "hash": "16346724390930618534" - }, - { - "file": "packages/fluentui/e2e/tests/popupIframeDismiss.spec.ts", - "hash": "6795602607780227830" - }, - { - "file": "packages/fluentui/e2e/tests/popupIframeInContent-example.tsx", - "hash": "4283302905232813226" - }, - { - "file": "packages/fluentui/e2e/tests/popupIframeInContent.spec.ts", - "hash": "17137734889454790279" - }, - { - "file": "packages/fluentui/e2e/tests/popupInMenu-example.tsx", - "hash": "16013900017767357976" - }, - { - "file": "packages/fluentui/e2e/tests/popupInMenu.spec.ts", - "hash": "7044470440674261311" - }, - { - "file": "packages/fluentui/e2e/tests/popupInPopup-example.tsx", - "hash": "9668277406755016860" - }, - { - "file": "packages/fluentui/e2e/tests/popupInPopup.spec.ts", - "hash": "1201516165930426055" - }, - { - "file": "packages/fluentui/e2e/tests/popupInSubmenuInToolbarMenu-example.tsx", - "hash": "15332631901223067083" - }, - { - "file": "packages/fluentui/e2e/tests/popupInSubmenuInToolbarMenu.spec.ts", - "hash": "1637590511583110830" - }, - { - "file": "packages/fluentui/e2e/tests/popupInToolbarMenu-example.tsx", - "hash": "17370124098474055427" - }, - { - "file": "packages/fluentui/e2e/tests/popupInToolbarMenu.spec.ts", - "hash": "17677000527941342638" - }, - { - "file": "packages/fluentui/e2e/tests/popupMouseDownSelecting-example.tsx", - "hash": "3023855540168575913" - }, - { - "file": "packages/fluentui/e2e/tests/popupMouseDownSelecting.spec.ts", - "hash": "7209143637156518437" - }, - { - "file": "packages/fluentui/e2e/tests/popupWithCloseInContent-example.tsx", - "hash": "138822329630966902" - }, - { - "file": "packages/fluentui/e2e/tests/popupWithCloseInContent.spec.ts", - "hash": "17534692300788679823" - }, - { - "file": "packages/fluentui/e2e/tests/popupWithTooltipTrigger-example.tsx", - "hash": "11807861820707471620" - }, - { - "file": "packages/fluentui/e2e/tests/popupWithTooltipTrigger.spec.ts", - "hash": "8697303816170122801" - }, - { - "file": "packages/fluentui/e2e/tests/popupWithoutTrigger-example.tsx", - "hash": "11139766354954965358" - }, - { - "file": "packages/fluentui/e2e/tests/popupWithoutTrigger.spec.ts", - "hash": "13246623807056887583" - }, - { - "file": "packages/fluentui/e2e/tests/submenuInToolbarMenu-example.tsx", - "hash": "575582352463613891" - }, - { - "file": "packages/fluentui/e2e/tests/submenuInToolbarMenu.spec.ts", - "hash": "1027166173685153422" - }, - { - "file": "packages/fluentui/e2e/tests/tableNavigable-example.tsx", - "hash": "14905569497518850229" - }, - { - "file": "packages/fluentui/e2e/tests/tableNavigable.spec.ts", - "hash": "12594198720782866612" - }, - { - "file": "packages/fluentui/e2e/tests/toolbarMenu-example.tsx", - "hash": "13362869464990240922" - }, - { - "file": "packages/fluentui/e2e/tests/toolbarMenu.spec.ts", - "hash": "11350393418665355075" - }, - { - "file": "packages/fluentui/e2e/tests/toolbarMenuOverflow-example.tsx", - "hash": "10545456953613671616" - }, - { - "file": "packages/fluentui/e2e/tests/toolbarMenuOverflow.spec.ts", - "hash": "7996186393233017896" - }, - { - "file": "packages/fluentui/e2e/tests/toolbarMenuOverflowWrapped-example.tsx", - "hash": "14754152518540080632" - }, - { - "file": "packages/fluentui/e2e/tests/toolbarMenuOverflowWrapped.spec.ts", - "hash": "706311342140479878" - }, - { - "file": "packages/fluentui/e2e/tests/toolbarWithPopupTooltip-example.tsx", - "hash": "2005065269202164843" - }, - { - "file": "packages/fluentui/e2e/tests/toolbarWithPopupTooltip.spec.ts", - "hash": "5925650631025544121" - }, - { - "file": "packages/fluentui/e2e/tests/tooltipDismissOnHoverContent-example.tsx", - "hash": "9489541278644546841" - }, - { - "file": "packages/fluentui/e2e/tests/tooltipDismissOnHoverContent.ts", - "hash": "9737872412877402347" - }, - { - "file": "packages/fluentui/e2e/tests/tooltipUnhandledProps-example.tsx", - "hash": "17958332038007928519" - }, - { - "file": "packages/fluentui/e2e/tests/tooltipUnhandledProps.spec.ts", - "hash": "5538405689313863866" - }, - { - "file": "packages/fluentui/e2e/tests/treeKeyboardNavigation-example.tsx", - "hash": "6918808607628651153" - }, - { - "file": "packages/fluentui/e2e/tests/treeKeyboardNavigation.spec.ts", - "hash": "14204769954003254618" - }, - { - "file": "packages/fluentui/e2e/tests/treeVirtualizedKeyboardNavigation-example.tsx", - "hash": "10207361172658324571" - }, - { - "file": "packages/fluentui/e2e/tests/treeVirtualizedKeyboardNavigation.spec.ts", - "hash": "38611835611465959" - }, - { - "file": "packages/fluentui/e2e/tsconfig.json", - "hash": "10977915997837140135" - } - ], - "@fluentui/scripts-babel": [ - { - "file": "scripts/babel/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/babel/index.js", - "hash": "7993737580679407702" - }, - { - "file": "scripts/babel/jest.config.js", - "hash": "1277314660710374279" - }, - { - "file": "scripts/babel/package.json", - "hash": "14364435620713749886" - }, - { - "file": "scripts/babel/plugins/index.ts", - "hash": "483902564153285887" - }, - { - "file": "scripts/babel/plugins/transform-star-import-plugin.ts", - "hash": "497207983086485622" - }, - { - "file": "scripts/babel/plugins/types.ts", - "hash": "16362335534208576628" - }, - { - "file": "scripts/babel/preset-v9.js", - "hash": "18020626006821864392" - }, - { - "file": "scripts/babel/preset-v9.spec.ts", - "hash": "1556910749991715657" - }, - { - "file": "scripts/babel/project.json", - "hash": "6727545952869869660" - }, - { - "file": "scripts/babel/register.js", - "hash": "18183864298469557088" - }, - { - "file": "scripts/babel/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/babel/tsconfig.lib.json", - "hash": "3753806828268919288" - }, - { - "file": "scripts/babel/tsconfig.spec.json", - "hash": "16242416785763058919" - }, - { - "file": "scripts/babel/types.ts", - "hash": "4791608823641193595" - } - ], - "@fluentui/react-northstar-prototypes": [ - { - "file": "packages/fluentui/react-northstar-prototypes/.eslintrc.json", - "hash": "3016770829865385537" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/README.md", - "hash": "9816779029527592217" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/package.json", - "hash": "16036884325989784037", - "deps": [ - "npm:@babel/runtime", - "@fluentui/accessibility", - "@fluentui/code-sandbox", - "@fluentui/docs-components", - "@fluentui/react-bindings", - "@fluentui/react-component-event-listener", - "@fluentui/react-component-ref", - "@fluentui/react-icons-northstar", - "@fluentui/react-northstar", - "npm:classnames", - "npm:copy-to-clipboard", - "npm:csstype", - "npm:faker", - "npm:formik", - "npm:lodash", - "npm:moment", - "npm:react-custom-scrollbars", - "npm:react-document-title", - "npm:react-dom", - "npm:react-hook-form", - "npm:react-textarea-autosize", - "npm:react-virtualized", - "npm:react-window", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "npm:@types/classnames", - "npm:@types/faker", - "npm:@types/react-custom-scrollbars", - "npm:@types/react-virtualized", - "npm:@types/react-window", - "npm:react" - ] - }, - { - "file": "packages/fluentui/react-northstar-prototypes/project.json", - "hash": "6886430218315295405" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/index.ts", - "hash": "15523276757469001647" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/AsyncShorthand/AsyncShorthand.tsx", - "hash": "4666694168826124059" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/AsyncShorthand/index.ts", - "hash": "16572492250719503250" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/CopyToClipboard.tsx", - "hash": "16139491727209802991" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/NotificationProvider.tsx", - "hash": "2013404344230368604" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/index.tsx", - "hash": "8498148850336520649" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/themeOverrides.ts", - "hash": "12351912667975777465" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/EditorToolbar.tsx", - "hash": "5151494454522358996" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/EditorToolbarTable.tsx", - "hash": "3640519683252577060" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/PortalWindow.tsx", - "hash": "5792280337595091743" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/editorToolbarReducer.ts", - "hash": "9583114788120990687" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/index.tsx", - "hash": "7397171196134146399" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/FormHooks.tsx", - "hash": "2494698095444226618" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/Formik.tsx", - "hash": "9102962171879800100" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/index.tsx", - "hash": "7274259884984694722" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/Menu.tsx", - "hash": "8629232587523790782" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuButton.tsx", - "hash": "9006084202427548109" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuItem.tsx", - "hash": "13103428700998832060" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuList.tsx", - "hash": "2487141510217772541" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuTrigger.tsx", - "hash": "10976183634001532481" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/index.tsx", - "hash": "18332154448991086610" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/menuContext.ts", - "hash": "17782320631648149413" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/menuListContext.tsx", - "hash": "14993198406917925287" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/NestedPopupsAndDialogs/index.tsx", - "hash": "1786212070449744493" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/ParticipantsList/index.tsx", - "hash": "11122842396313230268" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Prototypes.tsx", - "hash": "11002418107785047261" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/animations.tsx", - "hash": "8011321726213482462" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/index.tsx", - "hash": "9750242519854799147" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/participant.tsx", - "hash": "1908497880154833078" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/participantData.tsx", - "hash": "16995079246413273861" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/presentersData.tsx", - "hash": "11413443463145832458" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/styles.tsx", - "hash": "8681317249512926709" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/SearchPage/SearchPage.tsx", - "hash": "10043146942965451830" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/SearchPage/index.ts", - "hash": "5111008576834445045" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/TextAreaAutoSize/TextAreaAutoResize.tsx", - "hash": "5899564604445925894" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/TextAreaAutoSize/index.tsx", - "hash": "12960044669039013142" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/VirtualStickyTree.tsx", - "hash": "18312785735105369972" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/VirtualStickyTreePrototype.tsx", - "hash": "15487238422160188716" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/index.tsx", - "hash": "9119716162571119978" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/itemsGenerator.ts", - "hash": "13610599499519671039" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/VirtualizedTable.tsx", - "hash": "15908692109639964535" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/VirtualizedTables.tsx", - "hash": "5363058945850172332" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/index.tsx", - "hash": "1129921799744469312" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/itemsGenerator.ts", - "hash": "7508346131761412752" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/VirtualTree.tsx", - "hash": "3954137309594916393" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/VirtualTreePrototype.tsx", - "hash": "7421258757962426229" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/index.tsx", - "hash": "2218309949858402834" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/itemsGenerator.ts", - "hash": "15771527193717335030" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/AnimatedBannerAlert.tsx", - "hash": "17051906888739797582" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/BannerAlerts.tsx", - "hash": "164096548589224380" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/index.tsx", - "hash": "542944501762417749" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/ChatWithPopover.tsx", - "hash": "7719768216659998424" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/Popover.tsx", - "hash": "7110368926253847972" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/ReactionPopup.tsx", - "hash": "1809282408748721844" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/index.tsx", - "hash": "2363228290761620536" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/ControlMessage.tsx", - "hash": "9083963234031169891" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/GroupControlMessages.tsx", - "hash": "15712001723372243367" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/controlMessagesGroupBehavior.ts", - "hash": "363546636055422204" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/index.tsx", - "hash": "8124578659080196615" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/mockData.tsx", - "hash": "13929098419252934815" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ImportantAndMentionMessages/index.tsx", - "hash": "7229266695634489078" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ScreenReaderHeaderText.tsx", - "hash": "10353957772979700593" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadReplies.tsx", - "hash": "1942287349317638581" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadReplyEditor.tsx", - "hash": "9957383241598274658" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadedMessage.tsx", - "hash": "7837775770648961687" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/classNames.ts", - "hash": "3650699319544402311" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/index.tsx", - "hash": "7871235040883754343" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/mockData.tsx", - "hash": "14452775535735897762" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/repliesButtonBehavior.ts", - "hash": "12128219743725138914" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/theme.tsx", - "hash": "11066989221639267136" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/threadChatBehavior.ts", - "hash": "1441781496556702753" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/threadedMessageBehavior.ts", - "hash": "3858861000785802665" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/index.tsx", - "hash": "9449896320086879311" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneContent.tsx", - "hash": "6658772003455648363" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneHeader.tsx", - "hash": "643323282552019782" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneLayout.tsx", - "hash": "14116176100758089028" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatProtoStyle.ts", - "hash": "475572491409726938" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/composeMessage.tsx", - "hash": "12541651470084120461" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/index.tsx", - "hash": "163284684608788454" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/dataMock.ts", - "hash": "11566122887388108984" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/dateUtils.ts", - "hash": "9986525303334363468" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/index.ts", - "hash": "9049264600443968590" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/messageFactoryMock.tsx", - "hash": "14942065203643453962" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/types.ts", - "hash": "14861415723836622381" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshSimple.tsx", - "hash": "13663591883845115261" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshStressTest.tsx", - "hash": "15770991472046356681" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshTimestampTooltip.tsx", - "hash": "17200046557466620008" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/index.tsx", - "hash": "6314076623887472756" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatErrorState.tsx", - "hash": "8306663112845027098" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatSlots.tsx", - "hash": "15622079419906473134" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithAuthor.tsx", - "hash": "10933173294027489801" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithBadges.tsx", - "hash": "10067159577153996227" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithDetails.tsx", - "hash": "12176481734681230005" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithReactions.tsx", - "hash": "12675957219152936570" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithReadReceipts.tsx", - "hash": "8201566125102339683" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/compactAvatars.ts", - "hash": "11621426604052727034" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/index.tsx", - "hash": "4222694708370470229" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customScrollbar/index.tsx", - "hash": "16423493249816236908" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/CustomToolbar.tsx", - "hash": "14798705590211106914" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/darkThemeOverrides.ts", - "hash": "1765730341598063989" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/highContrastThemeOverrides.ts", - "hash": "7341831179174477997" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/index.tsx", - "hash": "3818480630864383081" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/dropdowns/AsyncDropdownSearch.tsx", - "hash": "4245437456080655048" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/dropdowns/index.tsx", - "hash": "10504698972700931271" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/AvatarEmployeeCard.tsx", - "hash": "18080501605845941120" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/CustomText.tsx", - "hash": "15147690821457289889" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/EmployeeCard.tsx", - "hash": "17647767873511892219" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/index.tsx", - "hash": "12239498765757344987" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/hexagonalAvatar/CustomAvatar.tsx", - "hash": "5584088432540470900" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/hexagonalAvatar/index.tsx", - "hash": "8379883381403321309" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsFooter.tsx", - "hash": "4813121796634612750" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsHeader.tsx", - "hash": "7945036494904555092" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsLink.tsx", - "hash": "15822692067236061508" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsLogo.tsx", - "hash": "15193117497529466118" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsMeetingOptions.tsx", - "hash": "5195077200654195155" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/TransparentDivider.tsx", - "hash": "11355458298767631749" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/index.tsx", - "hash": "8044441448311472388" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/styles.ts", - "hash": "6968770458826471464" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/MentionsDropdown.tsx", - "hash": "8803027406609593843" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/MentionsEditor.tsx", - "hash": "10665932680699585384" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/PortalAtCursorPosition.ts", - "hash": "15136805012626452053" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/dataMocks.ts", - "hash": "3503103682131204402" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/index.tsx", - "hash": "33233848936932089" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/utils.ts", - "hash": "11455328573947869477" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/GridImagePicker/GridImagePicker.tsx", - "hash": "5931266799517865445" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/GridImagePicker/GridImagePickerItem.tsx", - "hash": "2326425296192747302" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/dataMocks.ts", - "hash": "16378935872851174954" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/emojiPicker.tsx", - "hash": "17257330712623278054" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/index.tsx", - "hash": "3156365344886310754" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/popups/stickerPicker.tsx", - "hash": "16248346637506964495" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/AdvancedTable.tsx", - "hash": "13074602433465138810" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/InteractiveTable.tsx", - "hash": "17153306276689477036" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/ResponsiveTableContainer.tsx", - "hash": "4594526012647494857" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/SelectableTable.tsx", - "hash": "2077966948058956818" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/calculateBreakpoints.ts", - "hash": "17045471959855509527" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/src/prototypes/table/index.tsx", - "hash": "13735701997417262705" - }, - { - "file": "packages/fluentui/react-northstar-prototypes/tsconfig.json", - "hash": "253585536554020032" - } - ], - "@fluentui/merge-styles": [ - { - "file": "packages/merge-styles/.eslintrc.json", - "hash": "7788135779233596637" - }, - { - "file": "packages/merge-styles/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/merge-styles/CHANGELOG.json", - "hash": "14519500364564262199" - }, - { - "file": "packages/merge-styles/CHANGELOG.md", - "hash": "5079020724245270269" - }, - { - "file": "packages/merge-styles/LICENSE", - "hash": "815830957326308777" - }, - { - "file": "packages/merge-styles/README.md", - "hash": "16105783888956655297" - }, - { - "file": "packages/merge-styles/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/merge-styles/etc/merge-styles.api.md", - "hash": "4006799045914192092" - }, - { - "file": "packages/merge-styles/jest.config.js", - "hash": "3240558433730290797" - }, - { - "file": "packages/merge-styles/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/merge-styles/package.json", - "hash": "6801726133528920040", - "deps": [ - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "packages/merge-styles/project.json", - "hash": "7472429389665071083" - }, - { - "file": "packages/merge-styles/src/DeepPartial.ts", - "hash": "15403652248930272332" - }, - { - "file": "packages/merge-styles/src/IKeyframes.ts", - "hash": "5082581657992946140" - }, - { - "file": "packages/merge-styles/src/IRawStyle.ts", - "hash": "9178367776936796482" - }, - { - "file": "packages/merge-styles/src/IRawStyleBase.ts", - "hash": "14075360098318767891" - }, - { - "file": "packages/merge-styles/src/IStyle.ts", - "hash": "16366386667546584254" - }, - { - "file": "packages/merge-styles/src/IStyleFunction.ts", - "hash": "17786864697711385839" - }, - { - "file": "packages/merge-styles/src/IStyleOptions.ts", - "hash": "3576511368376128738" - }, - { - "file": "packages/merge-styles/src/IStyleSet.ts", - "hash": "12275969819165855980" - }, - { - "file": "packages/merge-styles/src/ObjectOnly.ts", - "hash": "7192624357398241626" - }, - { - "file": "packages/merge-styles/src/StyleOptionsState.ts", - "hash": "13663652144977743975" - }, - { - "file": "packages/merge-styles/src/Stylesheet.test.ts", - "hash": "9000703876191062841" - }, - { - "file": "packages/merge-styles/src/Stylesheet.ts", - "hash": "6265891817547056926" - }, - { - "file": "packages/merge-styles/src/concatStyleSets.test.ts", - "hash": "17199879701993332183" - }, - { - "file": "packages/merge-styles/src/concatStyleSets.ts", - "hash": "6102742474386530601" - }, - { - "file": "packages/merge-styles/src/concatStyleSetsWithProps.test.ts", - "hash": "10140930549319677976" - }, - { - "file": "packages/merge-styles/src/concatStyleSetsWithProps.ts", - "hash": "17386815918035826575" - }, - { - "file": "packages/merge-styles/src/extractStyleParts.test.ts", - "hash": "12818094951126093006" - }, - { - "file": "packages/merge-styles/src/extractStyleParts.ts", - "hash": "13216560657869606108" - }, - { - "file": "packages/merge-styles/src/fontFace.test.ts", - "hash": "4830155305419350516" - }, - { - "file": "packages/merge-styles/src/fontFace.ts", - "hash": "18171437276766485053" - }, - { - "file": "packages/merge-styles/src/getVendorSettings.ts", - "hash": "17712460932352389426" - }, - { - "file": "packages/merge-styles/src/index.ts", - "hash": "2179480601942243073" - }, - { - "file": "packages/merge-styles/src/keyframes.test.ts", - "hash": "16939692635795227731" - }, - { - "file": "packages/merge-styles/src/keyframes.ts", - "hash": "15229455629128638112" - }, - { - "file": "packages/merge-styles/src/mergeCss.test.ts", - "hash": "2692449794265662204" - }, - { - "file": "packages/merge-styles/src/mergeCssSets.test.ts", - "hash": "5716085156824388044" - }, - { - "file": "packages/merge-styles/src/mergeStyleSets.test.ts", - "hash": "10196256844054668807" - }, - { - "file": "packages/merge-styles/src/mergeStyleSets.ts", - "hash": "2171161145484021112" - }, - { - "file": "packages/merge-styles/src/mergeStyles.test.ts", - "hash": "1026104081850829361" - }, - { - "file": "packages/merge-styles/src/mergeStyles.ts", - "hash": "17412756440920485348" - }, - { - "file": "packages/merge-styles/src/server.test.ts", - "hash": "6400343995946700252" - }, - { - "file": "packages/merge-styles/src/server.ts", - "hash": "6363853718485863544" - }, - { - "file": "packages/merge-styles/src/styleToClassName.test.ts", - "hash": "7801431564365181732" - }, - { - "file": "packages/merge-styles/src/styleToClassName.ts", - "hash": "3054023107822799465" - }, - { - "file": "packages/merge-styles/src/tokenizeWithParentheses.test.ts", - "hash": "18391684658944695176" - }, - { - "file": "packages/merge-styles/src/tokenizeWithParentheses.ts", - "hash": "17064764508063973069" - }, - { - "file": "packages/merge-styles/src/transforms/kebabRules.test.ts", - "hash": "5637365605019891583" - }, - { - "file": "packages/merge-styles/src/transforms/kebabRules.ts", - "hash": "7834985428724123977" - }, - { - "file": "packages/merge-styles/src/transforms/prefixRules.test.ts", - "hash": "17108740823848277505" - }, - { - "file": "packages/merge-styles/src/transforms/prefixRules.ts", - "hash": "10825527420894611070" - }, - { - "file": "packages/merge-styles/src/transforms/provideUnits.test.ts", - "hash": "3636386315637903392" - }, - { - "file": "packages/merge-styles/src/transforms/provideUnits.ts", - "hash": "8082799170974129277" - }, - { - "file": "packages/merge-styles/src/transforms/rtlifyRules.test.ts", - "hash": "339048301821636658" - }, - { - "file": "packages/merge-styles/src/transforms/rtlifyRules.ts", - "hash": "5076345400622292378" - }, - { - "file": "packages/merge-styles/src/version.ts", - "hash": "1460361919700822627" - }, - { - "file": "packages/merge-styles/tsconfig.json", - "hash": "17469839658577306420" - }, - { - "file": "packages/merge-styles/webpack.config.js", - "hash": "7491670909379831444" - } - ], - "@fluentui/react-northstar": [ - { - "file": "packages/fluentui/react-northstar/.eslintrc.json", - "hash": "13803004907869012609" - }, - { - "file": "packages/fluentui/react-northstar/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-northstar/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-northstar/bundle-size-auditor.config.js", - "hash": "8028542614695662015" - }, - { - "file": "packages/fluentui/react-northstar/gulpfile.ts", - "hash": "14333776487082390359" - }, - { - "file": "packages/fluentui/react-northstar/jest-setup.js", - "hash": "17870551335504754824" - }, - { - "file": "packages/fluentui/react-northstar/jest.config.js", - "hash": "4825447735539633911" - }, - { - "file": "packages/fluentui/react-northstar/package.json", - "hash": "499347416330387156", - "deps": [ - "npm:@babel/runtime", - "@fluentui/accessibility", - "@fluentui/dom-utilities", - "@fluentui/react-bindings", - "@fluentui/react-component-event-listener", - "@fluentui/react-component-nesting-registry", - "@fluentui/react-component-ref", - "@fluentui/react-icons-northstar", - "@fluentui/react-northstar-styles-renderer", - "@fluentui/react-portal-compat-context", - "@fluentui/react-proptypes", - "@fluentui/state", - "@fluentui/styles", - "npm:@popperjs/core", - "npm:body-scroll-lock", - "npm:classnames", - "npm:compute-scroll-into-view", - "npm:downshift", - "npm:lodash", - "npm:prop-types", - "npm:react-is", - "npm:react-transition-group", - "@fluentui/a11y-testing", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:@types/classnames", - "npm:@types/faker", - "npm:@types/simulant", - "npm:csstype", - "npm:faker", - "npm:fela-tools", - "npm:lerna-alias", - "npm:qs", - "npm:simulant", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-northstar/project.json", - "hash": "7507003061923116844" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Accordion/Accordion.tsx", - "hash": "7847851307995452672" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Accordion/AccordionContent.tsx", - "hash": "5958238493847788660" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Accordion/AccordionTitle.tsx", - "hash": "11415776891352447674" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Alert/Alert.tsx", - "hash": "9224562400260505665" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Alert/AlertDismissAction.tsx", - "hash": "7141232459421707385" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Animation/Animation.tsx", - "hash": "4846505342841501437" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Animation/useAnimationStyles.ts", - "hash": "14061391268464766749" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Attachment/Attachment.tsx", - "hash": "6863685528312287349" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentAction.tsx", - "hash": "9228082367920242983" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentBody.tsx", - "hash": "5925296059771866051" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentDescription.tsx", - "hash": "6198469028872251324" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentHeader.tsx", - "hash": "3372430972652335250" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Attachment/AttachmentIcon.tsx", - "hash": "8521330284142418811" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Avatar/Avatar.tsx", - "hash": "748495765262535632" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarIcon.tsx", - "hash": "6356413093529093028" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarImage.tsx", - "hash": "10099046153004731582" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarLabel.tsx", - "hash": "6515048819985511977" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarStatus.tsx", - "hash": "12428186955649381416" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarStatusIcon.tsx", - "hash": "23743443202367657" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Avatar/AvatarStatusImage.tsx", - "hash": "7400669439155618306" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Box/Box.tsx", - "hash": "17633032765631059213" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/Breadcrumb.tsx", - "hash": "14104155212011880671" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbDivider.tsx", - "hash": "8114640623799863659" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbItem.tsx", - "hash": "17240006574900530403" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbLink.tsx", - "hash": "1048134297688410819" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Breadcrumb/breadcrumbContext.ts", - "hash": "1438190142722133938" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Button/Button.tsx", - "hash": "4311649433023922831" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Button/ButtonContent.tsx", - "hash": "3931831893392389213" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Button/ButtonGroup.tsx", - "hash": "7402632697949078434" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Card/Card.tsx", - "hash": "9533175431319145381" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Card/CardBody.tsx", - "hash": "3806087985347141687" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Card/CardColumn.tsx", - "hash": "2871691175852794018" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Card/CardExpandableBox.tsx", - "hash": "17304646012266738418" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Card/CardFooter.tsx", - "hash": "6069914877925460964" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Card/CardHeader.tsx", - "hash": "14899392316230501271" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Card/CardPreview.tsx", - "hash": "1386160146759486587" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Card/CardTopControls.tsx", - "hash": "17777570770525993895" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Carousel/Carousel.tsx", - "hash": "11520270933550892655" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselItem.tsx", - "hash": "1704241988545725264" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselNavigation.tsx", - "hash": "4510245105983260686" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselNavigationItem.tsx", - "hash": "10603463667236101339" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselPaddle.tsx", - "hash": "9122961265585463134" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Carousel/CarouselPaddlesContainer.tsx", - "hash": "5884466783611926198" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Carousel/utils.ts", - "hash": "6646904547431357450" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/Chat.tsx", - "hash": "13880991049888535467" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/ChatItem.tsx", - "hash": "1137720096355947257" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessage.tsx", - "hash": "8979923955515009671" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessageContent.tsx", - "hash": "2975300193933132172" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessageDetails.tsx", - "hash": "10975285986126230325" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessageHeader.tsx", - "hash": "4772325511787546898" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/ChatMessageReadStatus.tsx", - "hash": "17571050160211548251" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/chatContext.ts", - "hash": "5000819501526969887" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/chatDensity.ts", - "hash": "5054885706948365266" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Chat/chatItemContext.ts", - "hash": "13614626662989007113" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Checkbox/Checkbox.tsx", - "hash": "14439246164524684209" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/Datepicker.tsx", - "hash": "9534980117701527084" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendar.tsx", - "hash": "3211241399984334245" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarCell.tsx", - "hash": "16785975453348029131" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarCellButton.tsx", - "hash": "2761189948651095557" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarGrid.tsx", - "hash": "5019574059023183656" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarGridRow.tsx", - "hash": "12416200835622390859" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeader.tsx", - "hash": "17486710640239626226" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeaderAction.tsx", - "hash": "8284481544334173905" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeaderCell.tsx", - "hash": "8518396826686737330" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/navigateToNewDate.tsx", - "hash": "7051424537855326066" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Datepicker/validateDate.tsx", - "hash": "9396488240033088261" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/Debug.tsx", - "hash": "14065203870232706053" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/DebugComponentViewer.tsx", - "hash": "312272768687233713" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/DebugLine.tsx", - "hash": "6997002265541711848" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/DebugPanel.tsx", - "hash": "2098947295622538161" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/DebugPanelData.tsx", - "hash": "8428394548659896147" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/DebugPanelItem.tsx", - "hash": "9645300271690604629" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/DebugRect.tsx", - "hash": "16625045838109269939" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/DebugSelector.tsx", - "hash": "3361885019360260680" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/FiberNavigator.ts", - "hash": "10855844848543490871" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/ScrollToBottom.tsx", - "hash": "14726500017049937957" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Debug/utils.ts", - "hash": "9684972719826588233" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Design/Design.tsx", - "hash": "6229896215043380269" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Dialog/Dialog.tsx", - "hash": "18211608977012615962" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Dialog/DialogFooter.tsx", - "hash": "1435085386463972271" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Divider/Divider.tsx", - "hash": "6350215477669300948" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Divider/DividerContent.tsx", - "hash": "9591743889610800047" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Dropdown/Dropdown.tsx", - "hash": "13599762255086408029" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Dropdown/DropdownItem.tsx", - "hash": "3323611497200258084" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Dropdown/DropdownSearchInput.tsx", - "hash": "17164119620919997898" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Dropdown/DropdownSelectedItem.tsx", - "hash": "2904683542301281280" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Embed/Embed.tsx", - "hash": "12376322776372112440" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Flex/Flex.tsx", - "hash": "6982818452667314494" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Flex/FlexItem.tsx", - "hash": "7403794678590116362" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/Form.tsx", - "hash": "8800910644203565529" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormButton.tsx", - "hash": "6828241720533638517" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormCheckbox.tsx", - "hash": "8436042708466632685" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormDatepicker.tsx", - "hash": "9982491292209506743" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormDropdown.tsx", - "hash": "18343620127439352258" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormField.tsx", - "hash": "9850188118835358297" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormFieldCustom.tsx", - "hash": "16478427839518575650" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormInput.tsx", - "hash": "4163778940666564276" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormLabel.tsx", - "hash": "17043166478578447646" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormMessage.tsx", - "hash": "14582622186573458664" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormRadioGroup.tsx", - "hash": "13787505355590378398" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormSlider.tsx", - "hash": "2295018312442464350" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/FormTextArea.tsx", - "hash": "11999103602418495457" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/utils/formFieldBase.tsx", - "hash": "16744216472522332613" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Form/utils/formFieldBaseContext.ts", - "hash": "6795608341138352021" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Grid/Grid.tsx", - "hash": "17829217997130257266" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Header/Header.tsx", - "hash": "8321592622301865843" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Header/HeaderDescription.tsx", - "hash": "12329129616562820040" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Image/Image.tsx", - "hash": "11715297073047328469" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Input/Input.tsx", - "hash": "17524959832323688861" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Input/InputLabel.tsx", - "hash": "3206187582738539858" - }, - { - "file": "packages/fluentui/react-northstar/src/components/ItemLayout/ItemLayout.tsx", - "hash": "12259100651728852178" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Label/Label.tsx", - "hash": "5574878035520448894" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Layout/Layout.tsx", - "hash": "15086000609764124919" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/List.tsx", - "hash": "6719230630130939027" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/ListItem.tsx", - "hash": "10782306238570299215" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/ListItemContent.tsx", - "hash": "48301783195265259" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/ListItemContentMedia.tsx", - "hash": "5598481049636795501" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/ListItemEndMedia.tsx", - "hash": "6789731293643721633" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/ListItemHeader.tsx", - "hash": "7891876198223932068" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/ListItemHeaderMedia.tsx", - "hash": "17353093073515839995" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/ListItemMedia.tsx", - "hash": "1839407672304566822" - }, - { - "file": "packages/fluentui/react-northstar/src/components/List/listContext.ts", - "hash": "5582826283619864480" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Loader/Loader.tsx", - "hash": "15483985739222235559" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Menu/Menu.tsx", - "hash": "12313766017894638815" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Menu/MenuDivider.tsx", - "hash": "17427088955008148713" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItem.tsx", - "hash": "11169096155311292931" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItemContent.tsx", - "hash": "157525961668173349" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItemIcon.tsx", - "hash": "762586184035746897" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItemIndicator.tsx", - "hash": "6320687466613633373" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Menu/MenuItemWrapper.tsx", - "hash": "782835574565158855" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Menu/menuContext.ts", - "hash": "15576168683242631358" - }, - { - "file": "packages/fluentui/react-northstar/src/components/MenuButton/MenuButton.tsx", - "hash": "17186151859409294592" - }, - { - "file": "packages/fluentui/react-northstar/src/components/MenuButton/focusUtils.ts", - "hash": "4021202567179231632" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Pill/Pill.tsx", - "hash": "6737044775224698236" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Pill/PillAction.tsx", - "hash": "16439491134552422595" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Pill/PillContent.tsx", - "hash": "15130144542802390574" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Pill/PillGroup.tsx", - "hash": "2031881207353659816" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Pill/PillIcon.tsx", - "hash": "2997520707141875519" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Pill/PillImage.tsx", - "hash": "10744709375563168633" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Pill/pillContext.ts", - "hash": "2505511281109627168" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Popup/Popup.tsx", - "hash": "2116950962772469808" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Popup/PopupContent.tsx", - "hash": "13214942977844333994" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Portal/Portal.tsx", - "hash": "4059113526247197181" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Portal/PortalInner.tsx", - "hash": "15771138805122631486" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Portal/usePortalBox.ts", - "hash": "7292873357741174388" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Provider/Provider.tsx", - "hash": "17319200045661840105" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Provider/ProviderConsumer.tsx", - "hash": "9577051673823507002" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Provider/portalContext.ts", - "hash": "2790279822616713840" - }, - { - "file": "packages/fluentui/react-northstar/src/components/RadioGroup/RadioGroup.tsx", - "hash": "8185987492309397036" - }, - { - "file": "packages/fluentui/react-northstar/src/components/RadioGroup/RadioGroupItem.tsx", - "hash": "17763337922187266080" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Reaction/Reaction.tsx", - "hash": "9855657459992333918" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Reaction/ReactionGroup.tsx", - "hash": "12898639338834562081" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Segment/Segment.tsx", - "hash": "10802148962264378566" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Skeleton/Skeleton.tsx", - "hash": "9194215087688328488" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonAvatar.tsx", - "hash": "1752780832066126053" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonButton.tsx", - "hash": "13776964169747188024" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonInput.tsx", - "hash": "10520006317011318873" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonLine.tsx", - "hash": "6189182797866988357" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonShape.tsx", - "hash": "12564093305001034373" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Skeleton/SkeletonText.tsx", - "hash": "16689091522861482541" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Slider/Slider.tsx", - "hash": "12542593756393248009" - }, - { - "file": "packages/fluentui/react-northstar/src/components/SplitButton/SplitButton.tsx", - "hash": "4787098714518653252" - }, - { - "file": "packages/fluentui/react-northstar/src/components/SplitButton/SplitButtonDivider.tsx", - "hash": "175848223623461295" - }, - { - "file": "packages/fluentui/react-northstar/src/components/SplitButton/SplitButtonToggle.tsx", - "hash": "2707343881608045507" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Status/Status.tsx", - "hash": "10821702057553428900" - }, - { - "file": "packages/fluentui/react-northstar/src/components/SvgIcon/SvgIcon.tsx", - "hash": "3109903244853284027" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Table/Table.tsx", - "hash": "778871863897788019" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Table/TableCell.tsx", - "hash": "8238803278213630517" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Table/TableRow.tsx", - "hash": "6734512422896790121" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Text/Text.tsx", - "hash": "9973884439099941954" - }, - { - "file": "packages/fluentui/react-northstar/src/components/TextArea/TextArea.tsx", - "hash": "5641130885212054333" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/Toolbar.tsx", - "hash": "11935729523711567724" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarCustomItem.tsx", - "hash": "1279085528159215065" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarDivider.tsx", - "hash": "5043878662361527710" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItem.tsx", - "hash": "12695800097714476460" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItemIcon.tsx", - "hash": "16151370246926301063" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItemWrapper.tsx", - "hash": "9012982409637720351" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenu.tsx", - "hash": "6478316462425984571" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuDivider.tsx", - "hash": "6546410737380971683" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItem.tsx", - "hash": "15769073730736985424" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemActiveIndicator.tsx", - "hash": "14041778004530243120" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemContent.tsx", - "hash": "3998710959312647803" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemIcon.tsx", - "hash": "16155135638075618501" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemSubmenuIndicator.tsx", - "hash": "13302511047352503675" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuRadioGroup.tsx", - "hash": "5603033942394130558" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuRadioGroupWrapper.tsx", - "hash": "8466623792113768046" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/ToolbarRadioGroup.tsx", - "hash": "3123593901161826064" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/toolbarMenuContext.ts", - "hash": "1238926081544242605" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Toolbar/toolbarVariablesContext.ts", - "hash": "13932160866218966251" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tooltip/Tooltip.tsx", - "hash": "13070181950608226518" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tooltip/TooltipContent.tsx", - "hash": "4939757598129192274" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tree/Tree.tsx", - "hash": "12771547015248644605" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tree/TreeItem.tsx", - "hash": "15202258227432023831" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tree/TreeTitle.tsx", - "hash": "16953890156543402421" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tree/context.ts", - "hash": "8437912965928316617" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tree/hooks/flattenTree.ts", - "hash": "4113590590764830277" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tree/hooks/useTree.ts", - "hash": "6320206367937777801" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Tree/hooks/useVirtualTree.ts", - "hash": "9631571422855687019" - }, - { - "file": "packages/fluentui/react-northstar/src/components/Video/Video.tsx", - "hash": "18023367418046249698" - }, - { - "file": "packages/fluentui/react-northstar/src/index.ts", - "hash": "6778225692631498331" - }, - { - "file": "packages/fluentui/react-northstar/src/styles/debugStyles.ts", - "hash": "7688079653834349124" - }, - { - "file": "packages/fluentui/react-northstar/src/styles/translateAlignProp.ts", - "hash": "752370909825380216" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/colorUtils.ts", - "hash": "8838768133109851282" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/animations/durations.ts", - "hash": "14771948159306756204" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/animations/fade.ts", - "hash": "14454986281428325810" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/animations/index.ts", - "hash": "5678496085930231257" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/animations/scale.ts", - "hash": "5109538634901918243" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/animations/slide.ts", - "hash": "14163477310393579173" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/animations/timingFunctions.ts", - "hash": "14028571513420355031" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/categoryColors.ts", - "hash": "15037112319325605062" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/colors.ts", - "hash": "9976161978364344114" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/componentStyles.ts", - "hash": "16362963385923622430" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/componentVariables.ts", - "hash": "6218887021869389764" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionContentStyles.ts", - "hash": "17970759815785909371" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionStyles.ts", - "hash": "10413457414052477945" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionTitleStyles.ts", - "hash": "295522687558612603" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionTitleVariables.ts", - "hash": "3774561873064648852" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionVariables.ts", - "hash": "2912430932263239034" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Accordion/activeIndicatorUrl.ts", - "hash": "16959025885783912107" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertDismissActionStyles.ts", - "hash": "8883629395591772539" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertDismissActionVariables.ts", - "hash": "10804710916761328142" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertStyles.ts", - "hash": "4347489529828032292" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertVariables.ts", - "hash": "12020207677689671077" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Alert/dismissIndicatorUrl.ts", - "hash": "17196885391107542824" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentActionStyles.ts", - "hash": "3122251545754751723" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentActionVariables.ts", - "hash": "596237278780895444" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentBodyStyles.ts", - "hash": "1236954075014915745" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentBodyVariables.ts", - "hash": "12990805591124852936" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionStyles.ts", - "hash": "14860428913123777034" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionVariables.ts", - "hash": "12291059340948640249" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentHeaderStyles.ts", - "hash": "12349457700947533899" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentHeaderVariables.ts", - "hash": "4518110835309799445" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentIconStyles.ts", - "hash": "11569135969451134352" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentIconVariables.ts", - "hash": "9483175780455240001" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentStyles.ts", - "hash": "15779846505997170050" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentVariables.ts", - "hash": "3257016234041658496" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarIconStyles.ts", - "hash": "4028758838427045017" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarIconVariables.ts", - "hash": "2591587808385506936" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarImageStyles.ts", - "hash": "96468916043586572" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarImageVariables.ts", - "hash": "364078636829947123" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarLabelStyles.ts", - "hash": "13782254950157830747" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarLabelVariables.ts", - "hash": "15759326830419612042" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarSizes.ts", - "hash": "17627426635900559520" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusIconStyles.ts", - "hash": "7312150310195387786" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusIconVariables.ts", - "hash": "17985283974275043652" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusImageStyles.ts", - "hash": "17469601204550358676" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusImageVariables.ts", - "hash": "11925769658427898988" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusStyles.ts", - "hash": "332835912119700268" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusVariables.ts", - "hash": "2572589371592075388" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStyles.ts", - "hash": "7585220263493020546" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarVariables.ts", - "hash": "1013220856886105656" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbDividerStyles.ts", - "hash": "4926331907265324786" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbDividerVariables.ts", - "hash": "796340858591518739" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbItemStyles.ts", - "hash": "13388667582142870191" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbItemVariables.ts", - "hash": "18399125144127877635" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbLinkStyles.ts", - "hash": "15716129793825526055" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbLinkVariables.ts", - "hash": "10738404229116591081" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbStyles.ts", - "hash": "4179557242661646205" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbVariables.ts", - "hash": "17363705806688584245" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonContentStyles.ts", - "hash": "4077583070496852803" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonContentVariables.ts", - "hash": "3289841248962264502" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonGroupStyles.ts", - "hash": "9666507498286403452" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonGroupVariables.ts", - "hash": "10499263055740846178" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonStyles.ts", - "hash": "17973504828742089357" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonVariables.ts", - "hash": "2640286218711607201" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardBodyStyles.ts", - "hash": "14909172558254849017" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardBodyVariables.ts", - "hash": "2437497254977026043" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardExpandableBoxStyles.ts", - "hash": "980512905984835656" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardExpandableBoxVariables.ts", - "hash": "7021338153745781003" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardFooterStyles.ts", - "hash": "17580288039580491037" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardFooterVariables.ts", - "hash": "12358596455283625937" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardHeaderStyles.ts", - "hash": "14086292031994645477" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardHeaderVariables.ts", - "hash": "2022030864723901395" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardPreviewStyles.ts", - "hash": "5004518115363761937" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardPreviewVariables.ts", - "hash": "16953706850035132585" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardStyles.ts", - "hash": "8302957385846401488" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardTopControlsStyles.ts", - "hash": "13727651601497210158" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardTopControlsVariables.ts", - "hash": "16228876906977315452" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Card/cardVariables.ts", - "hash": "16781711713357575232" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselItemStyles.ts", - "hash": "11574307512058055804" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselItemVariables.ts", - "hash": "1924793607788525017" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationItemStyles.ts", - "hash": "10541311879922069072" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationItemVariables.ts", - "hash": "17505837565706332131" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationStyles.ts", - "hash": "17465257619175089673" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationVariables.ts", - "hash": "14862644286814505112" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddleStyles.ts", - "hash": "15768400598026354031" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddleVariables.ts", - "hash": "7026837716515901632" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddlesContainerStyles.ts", - "hash": "1218307281472286341" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddlesContainerVariables.ts", - "hash": "13329330458608992530" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselStyles.ts", - "hash": "7060921143444106976" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselVariables.ts", - "hash": "11487998778791836037" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Carousel/paddleIndicatorUrl.ts", - "hash": "8627628437681655368" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStyles.ts", - "hash": "1582706642481936333" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStylesComfy.ts", - "hash": "11386244492140747182" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStylesCompact.ts", - "hash": "5016674558785701877" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemVariables.ts", - "hash": "16688620331680813181" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageContentStyles.ts", - "hash": "11540241569015783983" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageContentVariables.ts", - "hash": "5708450603124165917" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageDetailsStyles.ts", - "hash": "6048357409017311258" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageDetailsVariables.ts", - "hash": "16718678480987624974" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageReadStatusStyles.ts", - "hash": "5475193133926447801" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageReadStatusVariables.ts", - "hash": "15740441158743863734" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStyles.ts", - "hash": "17222338827680820446" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesComfy.ts", - "hash": "16595188472100188261" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesComfyRefresh.ts", - "hash": "4128950085386110082" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesCompact.ts", - "hash": "757629473240833905" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageVariables.ts", - "hash": "8007373764332878604" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatStyles.ts", - "hash": "15390513661512796187" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatVariables.ts", - "hash": "6419897043496563561" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxIndeterminateIndicatorUrl.ts", - "hash": "12604005374596722201" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxIndicatorUrl.ts", - "hash": "2353877159274223154" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxStyles.ts", - "hash": "7878158666403457041" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxVariables.ts", - "hash": "364391724717931561" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellButtonStyles.ts", - "hash": "3176373166612231046" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellButtonVariables.ts", - "hash": "15696217644406185001" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellStyles.ts", - "hash": "3042327811010476138" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellVariables.ts", - "hash": "4640561316133584018" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridRowStyles.ts", - "hash": "16537271159983756821" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridRowVariables.ts", - "hash": "9947680763140590997" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridStyles.ts", - "hash": "15005502310321623331" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridVariables.ts", - "hash": "2746967052288976729" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderCellStyles.ts", - "hash": "16834387999097607022" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderCellVariables.ts", - "hash": "5137706892589995908" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderStyles.ts", - "hash": "3409270825204207165" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderVariables.ts", - "hash": "17773754208072779203" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarStyles.ts", - "hash": "11348966078360204974" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarVariables.ts", - "hash": "17049658367728325474" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerStyles.ts", - "hash": "11904634714735254465" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerVariables.ts", - "hash": "1230329683489056098" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogFooterStyles.ts", - "hash": "8619218828106996268" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogStyles.ts", - "hash": "8701768500376985092" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogVariables.ts", - "hash": "14149951396267779743" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerContentStyles.ts", - "hash": "7008797215036081870" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerStyles.ts", - "hash": "13628850534872246317" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerVariables.ts", - "hash": "6700241170430353431" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/checkableIndicatorUrl.ts", - "hash": "8426540039198534384" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownItemStyles.ts", - "hash": "452058418927530843" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownItemVariables.ts", - "hash": "12518581659264948700" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSearchInputStyles.ts", - "hash": "17403407436454230120" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSearchInputVariables.ts", - "hash": "4778959973055463483" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSelectedItemStyles.ts", - "hash": "5036604166569706092" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSelectedItemVariables.ts", - "hash": "14555252578886112431" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownStyles.ts", - "hash": "12075814017562592102" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownVariables.ts", - "hash": "11773654079465347425" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Embed/embedStyles.ts", - "hash": "11157393565182874186" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Embed/embedVariables.ts", - "hash": "10946929391434652119" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Embed/pauseIndicatorUrl.ts", - "hash": "14163463494638038708" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Embed/playIndicatorUrl.ts", - "hash": "1165694472322477497" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexItemStyles.ts", - "hash": "2381351329806131630" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexItemVariables.ts", - "hash": "11530360091302042085" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexStyles.ts", - "hash": "5534555220898109500" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexVariables.ts", - "hash": "5828825052348643989" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Flex/utils.ts", - "hash": "4853854352747265011" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formFieldStyles.ts", - "hash": "17727513840262178993" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formFieldVariables.ts", - "hash": "18442808810925646135" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formLabelStyles.ts", - "hash": "6489034326455172577" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formLabelVariables.ts", - "hash": "9967727401450345621" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formMessageStyles.ts", - "hash": "11729883337119568865" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formMessageVariables.ts", - "hash": "8869872308474735363" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formStyles.ts", - "hash": "14707309113461419683" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Form/formVariables.tsx", - "hash": "2786566580798801176" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Grid/gridStyles.ts", - "hash": "10049913074815360538" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Grid/gridVariables.ts", - "hash": "12210096003294268830" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Header/headerDescriptionStyles.ts", - "hash": "11898695898065277973" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Header/headerDescriptionVariables.ts", - "hash": "3619509329923923644" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Header/headerStyles.ts", - "hash": "16835135212128136021" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Header/headerVariables.ts", - "hash": "7758571779047444865" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Image/imageStyles.ts", - "hash": "17845919072455127529" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Image/imageVariables.ts", - "hash": "1845819916963201984" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Input/inputLabelStyles.ts", - "hash": "15104638982297733077" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Input/inputLabelVariables.ts", - "hash": "11133331271628197753" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Input/inputStyles.ts", - "hash": "16976371114124373927" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Input/inputVariables.ts", - "hash": "11698651023241377505" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/ItemLayout/itemLayoutStyles.ts", - "hash": "100148364675088556" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/ItemLayout/itemLayoutVariables.ts", - "hash": "14521132758200335944" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Label/labelStyles.ts", - "hash": "14608065136488682405" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Label/labelVariables.ts", - "hash": "7479397155226657895" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Layout/layoutStyles.ts", - "hash": "13744831783491541854" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Layout/layoutVariables.ts", - "hash": "7302828397390671261" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentMediaStyles.ts", - "hash": "1727630438167673409" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentMediaVariables.ts", - "hash": "6423418385782322076" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentStyles.ts", - "hash": "7860236970815947468" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentVariables.ts", - "hash": "17891798796238203862" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemEndMediaStyles.ts", - "hash": "246926601143118644" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemEndMediaVariables.ts", - "hash": "7729472269563542419" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderMediaStyles.ts", - "hash": "12777502619116582480" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderMediaVariables.ts", - "hash": "7507427195942104304" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderStyles.ts", - "hash": "14906219517476433568" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderVariables.ts", - "hash": "12344372430050573068" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemMediaStyles.ts", - "hash": "17898380125799493607" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemMediaVariables.ts", - "hash": "6861309937633703425" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemStyles.ts", - "hash": "205333425101367318" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listItemVariables.ts", - "hash": "7222413230872375070" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/List/listStyles.ts", - "hash": "5463710304513147120" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Loader/loaderStyles.ts", - "hash": "5135493479101604144" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Loader/loaderVariables.ts", - "hash": "1883827659536054756" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuDividerStyles.ts", - "hash": "15828338080211425311" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuDividerVariables.ts", - "hash": "11560978881139451417" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemContentStyles.ts", - "hash": "1918897226975957072" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemContentVariables.ts", - "hash": "621507624809262373" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIconStyles.ts", - "hash": "1657821507101974044" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIconVariables.ts", - "hash": "6954194845806585307" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIndicatorStyles.ts", - "hash": "4334389388364090134" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIndicatorVariables.ts", - "hash": "8707343247379130288" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemStyles.ts", - "hash": "10906382449999724608" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemVariables.ts", - "hash": "9114105854017503869" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemWrapperStyles.ts", - "hash": "6570713768429180434" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemWrapperVariables.ts", - "hash": "6034023239339142317" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuStyles.ts", - "hash": "11330709786324826763" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuVariables.ts", - "hash": "12202973407267122016" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Menu/submenuIndicatorDirection.ts", - "hash": "16676013216713793391" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/MenuButton/menuButtonStyles.ts", - "hash": "14056489040055258236" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillActionStyles.ts", - "hash": "8218667687715450430" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillContentStyles.ts", - "hash": "5988198946627089021" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillGroupStyles.ts", - "hash": "14234046157967030444" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillIconStyles.ts", - "hash": "4833084607297422898" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillImageStyles.ts", - "hash": "5722176440840103726" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillStyles.ts", - "hash": "7875089542439177635" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillVariables.ts", - "hash": "16970434371176489441" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Popup/popupContentStyles.ts", - "hash": "11551065107006703006" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Popup/popupContentVariables.ts", - "hash": "15155299609498501605" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Provider/providerStyles.ts", - "hash": "12246946909178636635" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Provider/providerVariables.ts", - "hash": "4237050843596393851" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupItemStyles.ts", - "hash": "11733141247895106973" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupItemVariables.ts", - "hash": "1410963406810642414" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupStyles.ts", - "hash": "11216109689208890084" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionGroupStyles.ts", - "hash": "15600202085985659691" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionGroupVariables.ts", - "hash": "18279501337260248711" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionStyles.ts", - "hash": "16702933675759395312" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionVariables.ts", - "hash": "2326991576926697453" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Segment/segmentStyles.ts", - "hash": "6018260944382324087" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Segment/segmentVariables.ts", - "hash": "2340445252375615581" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonAvatarStyles.ts", - "hash": "4671061646797557270" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonAvatarVariables.ts", - "hash": "14164441955309142561" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonButtonStyles.ts", - "hash": "11213343765328628389" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonButtonVariables.ts", - "hash": "14164441955309142561" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonInputStyles.ts", - "hash": "9558645324788876370" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonInputVariables.ts", - "hash": "14164441955309142561" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonLineStyles.ts", - "hash": "72797108529890029" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonLineVariables.ts", - "hash": "14164441955309142561" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonShapeStyles.ts", - "hash": "10985309027364307359" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonShapeVariables.ts", - "hash": "14164441955309142561" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonStyles.ts", - "hash": "11582752166254840270" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonTextStyles.ts", - "hash": "10892819700266300746" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonTextVariables.ts", - "hash": "14164441955309142561" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonVariables.ts", - "hash": "12261413425486166426" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/utils/animations.ts", - "hash": "1544522978559374540" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/utils/keyframes.ts", - "hash": "10955688557993146324" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Slider/sliderStyles.ts", - "hash": "6775086548562939701" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Slider/sliderVariables.ts", - "hash": "12781842405418282858" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonDividerStyles.ts", - "hash": "14170254709512265654" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonDividerVariables.ts", - "hash": "13873446195431433000" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonStyles.ts", - "hash": "11310296505673783875" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonToggleStyles.ts", - "hash": "140511560137775517" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonToggleVariables.ts", - "hash": "9706228838613710649" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonVariables.ts", - "hash": "14969065795237070330" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/toggleIndicatorUrl.ts", - "hash": "17515531167061030155" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Status/statusStyles.ts", - "hash": "7498377440803947079" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Status/statusVariables.ts", - "hash": "5995887502689944116" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SvgIcon/svgIconStyles.ts", - "hash": "13789787697452677280" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/SvgIcon/svgIconVariables.ts", - "hash": "16830963035373843584" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableCellStyles.ts", - "hash": "9998047582789173077" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableCellVariables.ts", - "hash": "17179676172813842787" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableRowStyles.ts", - "hash": "569206166407569943" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableRowVariables.ts", - "hash": "7014195797531800777" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableStyles.ts", - "hash": "11099077070308203536" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Table/tableVariables.ts", - "hash": "14836140358238840768" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Text/textStyles.ts", - "hash": "13098771883429361252" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Text/textVariables.ts", - "hash": "7484315766041928064" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/TextArea/textAreaStyles.ts", - "hash": "12699271763260628640" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/TextArea/textAreaVariables.ts", - "hash": "7855750672377342463" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/activeIndicatorUrl.ts", - "hash": "2132244196695703598" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarCustomItemStyles.ts", - "hash": "11824158878246713951" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarCustomItemVariables.ts", - "hash": "17800092133851657140" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarDividerStyles.ts", - "hash": "9220078841634176508" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarDividerVariables.ts", - "hash": "13693107050922161757" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarItemStyles.ts", - "hash": "3328062806257722365" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarItemVariables.ts", - "hash": "17798359867619653287" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuDividerStyles.ts", - "hash": "18250406595810300819" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuDividerVariables.ts", - "hash": "13636735754107782600" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemActiveIndicatorStyles.ts", - "hash": "17858199384397461495" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemActiveIndicatorVariables.ts", - "hash": "4530719691202493349" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemIconStyles.ts", - "hash": "17700533519447906336" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemIconVariables.ts", - "hash": "5608597360865866046" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemStyles.ts", - "hash": "5949064902679255671" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemSubmenuIndicatorStyles.ts", - "hash": "15101458209206663075" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemSubmenuIndicatorVariables.ts", - "hash": "17449689611987700443" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemVariables.ts", - "hash": "8470828041757837184" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupStyles.ts", - "hash": "15990216618563936162" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupVariables.ts", - "hash": "17782808359179237346" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupWrapperStyles.ts", - "hash": "8420482674146878097" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupWrapperVariables.ts", - "hash": "6053349822566342387" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuStyles.ts", - "hash": "8946254653014395366" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuVariables.ts", - "hash": "6550857273809841135" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarRadioGroupStyles.ts", - "hash": "14314529550618535408" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarStyles.ts", - "hash": "9226371412509812252" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarVariables.ts", - "hash": "3149192147963050155" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tooltip/tooltipContentStyles.ts", - "hash": "16289553962671155894" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tooltip/tooltipContentVariables.ts", - "hash": "4629835890193990737" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/checkboxIndicatorIndeterminatedUrl.ts", - "hash": "16599601719567193527" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeItemStyles.ts", - "hash": "12208941305020675428" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeStyles.ts", - "hash": "8258447660898337239" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeTitleStyles.ts", - "hash": "14461539179534007204" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeTitleVariables.ts", - "hash": "10503889573482266724" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Video/videoStyles.ts", - "hash": "10973700802785870748" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/components/Video/videoVariables.ts", - "hash": "7696286689663916995" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/fontFaces.ts", - "hash": "5974686039723308038" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/getBorderFocusStyles.ts", - "hash": "9125604089500988430" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/getIconFillOrOutlineStyles.ts", - "hash": "8643445364266943120" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/getPointerStyles.ts", - "hash": "4467874883863290210" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/index.tsx", - "hash": "1581374776596636836" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/pointerSvgUrl.ts", - "hash": "2857368959516864884" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/siteVariables.ts", - "hash": "14661460717873001608" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/staticStyles/globalStyles.ts", - "hash": "15748922728945704003" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/staticStyles/index.ts", - "hash": "12265298600364461032" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/staticStyles/normalizeCSS.ts", - "hash": "17217307756892067800" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams/types.ts", - "hash": "7556703929819539276" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/colors.ts", - "hash": "14687655991173518735" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/componentVariables.ts", - "hash": "2041102859363169439" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Avatar/avatarVariables.ts", - "hash": "7485469476929669546" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Chat/chatMessageVariables.ts", - "hash": "10541089496613679112" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Datepicker/datepickerCalendarCellButtonVariables.ts", - "hash": "13743134975937251199" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Datepicker/datepickerCalendarCellVariables.ts", - "hash": "13635538325655268603" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Dialog/dialogVariables.ts", - "hash": "16661416746382876765" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Divider/dividerVariables.ts", - "hash": "457606091003616472" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Header/headerDescriptionVariables.ts", - "hash": "13740213389422477604" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Header/headerVariables.ts", - "hash": "15951103257039214959" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Label/labelVariables.ts", - "hash": "12614290507403279127" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuDividerVariables.ts", - "hash": "11560978881139451417" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemContentVariables.ts", - "hash": "621507624809262373" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemIconVariables.ts", - "hash": "6954194845806585307" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemIndicatorVariables.ts", - "hash": "8707343247379130288" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemVariables.ts", - "hash": "9114105854017503869" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemWrapperVariables.ts", - "hash": "6034023239339142317" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuVariables.ts", - "hash": "18299115008131538027" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Provider/providerVariables.ts", - "hash": "8926038134835895724" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/RadioGroup/radioGroupItemVariables.ts", - "hash": "2019025478424256877" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Reaction/reactionVariables.ts", - "hash": "7086243477847928114" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Segment/segmentVariables.ts", - "hash": "3470197313996434519" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/SplitButton/splitButtonVariables.ts", - "hash": "4894562380788390580" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/SvgIcon/svgIconVariables.ts", - "hash": "10250719142105668304" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/components/Text/textVariables.ts", - "hash": "7219713579841817306" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/index.ts", - "hash": "8831629279983580483" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark/siteVariables.ts", - "hash": "13865421087482632956" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/componentVariables.ts", - "hash": "33620482670618895" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Chat/chatMessageDetailsVariables.ts", - "hash": "10294568132566105829" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Chat/chatMessageVariables.ts", - "hash": "12838676128597460041" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Datepicker/datepickerCalendarCellButtonVariables.ts", - "hash": "17272841726990664443" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Dialog/dialogVariables.ts", - "hash": "12638905351755113117" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Text/textVariables.ts", - "hash": "6345058832963791127" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/index.ts", - "hash": "9797885670991484222" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-dark-v2/siteVariables.ts", - "hash": "9936863096117855431" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/componentStyles.ts", - "hash": "2359425232917487546" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/componentVariables.ts", - "hash": "1708402668906207631" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Button/buttonStyles.ts", - "hash": "7008985540648425028" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Checkbox/checkboxStyles.ts", - "hash": "15138412880018022295" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarCellButtonStyles.ts", - "hash": "7870619796997738972" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarCellStyles.ts", - "hash": "6206233104341220487" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarGridRowStyles.ts", - "hash": "2119543217722202588" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Dropdown/dropdownItemStyles.ts", - "hash": "4165428385506424575" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Embed/embedVariables.ts", - "hash": "7897291940205825257" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Menu/menuItemWrapperStyles.ts", - "hash": "13211947306758208686" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Slider/sliderStyles.ts", - "hash": "2080253347622693642" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SplitButton/splitButtonDividerStyles.ts", - "hash": "5778044792599420671" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SplitButton/splitButtonToggleStyles.ts", - "hash": "12593872137564797775" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SvgIcon/svgIconStyles.ts", - "hash": "1467745510690848118" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Toolbar/toolbarItemStyles.ts", - "hash": "6529203507339313836" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-forced-colors/index.ts", - "hash": "13828693508172020337" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/colors.ts", - "hash": "13380170100585365255" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/componentVariables.ts", - "hash": "12850886699449788115" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Avatar/avatarVariables.ts", - "hash": "5929945505833645363" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Button/buttonVariables.ts", - "hash": "4230100176295354725" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Card/cardVariables.ts", - "hash": "4441392006693378487" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Chat/chatMessageVariables.ts", - "hash": "10277153225320233374" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Chat/chatVariables.ts", - "hash": "15428558076173865476" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Checkbox/checkboxVariables.ts", - "hash": "1438647470493103546" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarCellButtonVariables.ts", - "hash": "5108786434431634510" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarCellVariables.ts", - "hash": "15882597416321592805" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarGridRowVariables.ts", - "hash": "3274762635991417057" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dialog/dialogVariables.ts", - "hash": "800524904879833383" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Divider/dividerVariables.ts", - "hash": "7016648034119248666" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownItemVariables.ts", - "hash": "12518581659264948700" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownSelectedItemVariables.ts", - "hash": "14555252578886112431" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownVariables.ts", - "hash": "13983034283305393777" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Embed/embedVariables.ts", - "hash": "13092970836696786627" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Header/headerVariables.ts", - "hash": "8503267197439685170" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Input/inputVariables.ts", - "hash": "520353307861641229" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Label/labelVariables.ts", - "hash": "11589864746261847205" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Loader/loaderVariables.ts", - "hash": "9405199539273439418" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuDividerVariables.ts", - "hash": "11560978881139451417" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemContentVariables.ts", - "hash": "621507624809262373" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemIconVariables.ts", - "hash": "6954194845806585307" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemIndicatorVariables.ts", - "hash": "8707343247379130288" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemVariables.ts", - "hash": "9114105854017503869" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemWrapperVariables.ts", - "hash": "6034023239339142317" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuVariables.ts", - "hash": "1277746220742188888" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Provider/providerVariables.ts", - "hash": "10571309971208651489" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/RadioGroup/radioGroupItemVariables.ts", - "hash": "1439639555343322710" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Reaction/reactionVariables.ts", - "hash": "5062189662819961655" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Segment/segmentVariables.ts", - "hash": "14062126404753888651" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/SplitButton/splitButtonVariables.ts", - "hash": "2324856329243342733" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Text/textVariables.ts", - "hash": "7369839868744494882" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/TextArea/textAreaVariables.ts", - "hash": "5737337775538968850" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarCustomItemVariables.ts", - "hash": "17800092133851657140" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarDividerVariables.ts", - "hash": "13693107050922161757" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarItemVariables.ts", - "hash": "17798359867619653287" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuDividerVariables.ts", - "hash": "13636735754107782600" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemActiveIndicatorVariables.ts", - "hash": "4530719691202493349" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemIconVariables.ts", - "hash": "5608597360865866046" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemSubmenuIndicatorVariables.ts", - "hash": "17449689611987700443" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemVariables.ts", - "hash": "8470828041757837184" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuRadioGroupVariables.ts", - "hash": "17782808359179237346" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuRadioGroupWrapperVariables.ts", - "hash": "6053349822566342387" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuVariables.ts", - "hash": "6550857273809841135" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarVariables.ts", - "hash": "15415334169765226340" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Tooltip/tooltipContentVariables.ts", - "hash": "11033527039317202465" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/index.ts", - "hash": "10952774136721087966" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-high-contrast/siteVariables.ts", - "hash": "4549791645439227052" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-v2/componentVariables.ts", - "hash": "15533000153074961336" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-v2/components/Chat/chatMessageDetailsVariables.ts", - "hash": "10294568132566105829" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-v2/components/Chat/chatMessageVariables.ts", - "hash": "4391401100274700451" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-v2/components/Text/textVariables.ts", - "hash": "6345058832963791127" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-v2/index.ts", - "hash": "4177525779689153766" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/teams-v2/siteVariables.ts", - "hash": "17867815598183882592" - }, - { - "file": "packages/fluentui/react-northstar/src/themes/types.ts", - "hash": "4007152926719875180" - }, - { - "file": "packages/fluentui/react-northstar/src/types.ts", - "hash": "8034626796951276018" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/accessibility/FocusHandling/FocusContainer.ts", - "hash": "8373133028965064743" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/accessibility/Styles/accessibilityStyles.ts", - "hash": "3664069971041003478" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/commonPropInterfaces.ts", - "hash": "1867192726082976183" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/commonPropTypes.ts", - "hash": "9865645421311194631" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/constants.ts", - "hash": "16875657864767821301" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/createComponent.tsx", - "hash": "13489270601672849222" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/createComponentInternal.ts", - "hash": "4922907263354399064" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/dateFormatting.defaults.ts", - "hash": "13692590557899151685" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/dateFormatting.types.ts", - "hash": "16508226785106265770" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatDay.ts", - "hash": "18225295570491744117" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatMonthDayYear.ts", - "hash": "13079395079301750418" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatMonthYear.ts", - "hash": "8693233030079857638" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatYear.ts", - "hash": "11737192759499506409" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/index.ts", - "hash": "17338481091946929409" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/dateGrid.types.ts", - "hash": "9429451993053819858" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/findAvailableDate.ts", - "hash": "17812579345659974705" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getBoundedDateRange.ts", - "hash": "5151142947748778290" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getDateRangeTypeToUse.ts", - "hash": "16696959932960635992" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getDayGrid.ts", - "hash": "8170172914110350314" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/index.ts", - "hash": "12957004530838335926" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isAfterMaxDate.ts", - "hash": "4879284728703250347" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isBeforeMinDate.ts", - "hash": "9762482266014451107" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isContiguous.ts", - "hash": "17889414780369493822" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isRestrictedDate.ts", - "hash": "8608321153134897550" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateMath/dateMath.ts", - "hash": "1559935868198869990" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateValues/dateValues.ts", - "hash": "6136428444968832474" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/dateValues/timeConstants.ts", - "hash": "11246283356384718781" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/date-time-utilities/index.ts", - "hash": "9964063213143333808" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/doesNodeContainClick.tsx", - "hash": "12125759582258943223" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/factories.ts", - "hash": "17858959541041954517" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/fontSizeUtility.ts", - "hash": "8951310441334447681" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/format.ts", - "hash": "660643786560617444" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/getKindProp.ts", - "hash": "10668323006325811482" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/getOrGenerateIdFromShorthand.ts", - "hash": "7159609441996775627" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/getReactFiberFromNode.ts", - "hash": "15887164690270712100" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/htmlPropsUtils.tsx", - "hash": "8492245048141318554" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/index.ts", - "hash": "10809702915518222560" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/isBrowser.tsx", - "hash": "8377252813388330231" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/isRightClick.ts", - "hash": "9229416080838438451" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/mergeProviderContexts.ts", - "hash": "5994964037716514132" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/Popper.tsx", - "hash": "6388171080340640615" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/createReferenceFromClick.ts", - "hash": "7463861146748463910" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/getBasePlacement.ts", - "hash": "9075466749088351681" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/getBoundary.ts", - "hash": "4063574645465863990" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/getScrollParent.ts", - "hash": "6406857083616074429" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/index.ts", - "hash": "16741470065971830342" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/isIntersectingModifier.ts", - "hash": "14996281385889671915" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/partitionPopperPropsFromShorthand.ts", - "hash": "60902350216586212" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/positioningHelper.ts", - "hash": "11838972231834093918" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/types.internal.ts", - "hash": "8041393692256519971" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/types.ts", - "hash": "10059359397654935976" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/positioner/usePopper.ts", - "hash": "5361783124069308182" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/providerMissingHandler.ts", - "hash": "1279551015713903316" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/renderComponent.tsx", - "hash": "16927930450112016967" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/rtlTextContainer.tsx", - "hash": "4868725216145875527" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/shouldPreventDefaultOnKeyDown.ts", - "hash": "5655537719905651960" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/stringLiteralsArray.ts", - "hash": "10689007480493641009" - }, - { - "file": "packages/fluentui/react-northstar/src/utils/whatInput.ts", - "hash": "15905753664237270166" - }, - { - "file": "packages/fluentui/react-northstar/test/__mocks__/@popperjs/core.ts", - "hash": "7478175262164732181" - }, - { - "file": "packages/fluentui/react-northstar/test/__mocks__/lodash.ts", - "hash": "17131456654501248151" - }, - { - "file": "packages/fluentui/react-northstar/test/__mocks__/react-transition-group.ts", - "hash": "12729441849589802586" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/commonHelpers.ts", - "hash": "15161560263721820605" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/eventTarget.ts", - "hash": "10879088653306825915" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/extraConformanceTests.tsx", - "hash": "7660913897739216792" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/handlesAccessibility.tsx", - "hash": "14547718182071292892" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/htmlIsAccessibilityCompliant.ts", - "hash": "10577071958328154685" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/implementsCollectionShorthandProp.tsx", - "hash": "3217428025445274887" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/implementsPopperProps.tsx", - "hash": "9652296180090228330" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/implementsShorthandProp.tsx", - "hash": "17761144056956912361" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/implementsWrapperProp.tsx", - "hash": "3773268252436089902" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/index.ts", - "hash": "2058280329446324209" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/commonTests/isConformant.tsx", - "hash": "10778236703368157250" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Accordion/Accordion-test.tsx", - "hash": "16603233108252648288" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Accordion/AccordionContent-test.tsx", - "hash": "8235180871538684066" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Accordion/AccordionTitle-test.tsx", - "hash": "1913859106925668364" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Alert/Alert-test.tsx", - "hash": "17921665851972536059" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Alert/AlertDismissAction-test.tsx", - "hash": "10345856310136386920" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Animation/Animation-test.tsx", - "hash": "13826604861874426066" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/Attachment-test.tsx", - "hash": "16957293851459536363" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentAction-test.tsx", - "hash": "14620159586847349890" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentBody-test.tsx", - "hash": "7772374243305788108" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentDescription-test.tsx", - "hash": "17209875525350538285" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentHeader-test.tsx", - "hash": "1651566118295417225" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentIcon-test.tsx", - "hash": "17933537462765513484" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Avatar/Avatar-test.tsx", - "hash": "4322381528047759922" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Avatar/AvatarStatusIcon-test.tsx", - "hash": "6251030996757450195" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Box/Box-test.tsx", - "hash": "17835161325052902783" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Breadcrumb/Breadcrumb-test.ts", - "hash": "16386882857663541002" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbDivider-test.ts", - "hash": "8035817973357532220" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbItem-test.ts", - "hash": "3181156825954883132" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbLink-test.ts", - "hash": "11147658363668547992" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Button/Button-test.tsx", - "hash": "1326436848149099376" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Button/ButtonContent-test.tsx", - "hash": "10169093068037721396" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Button/ButtonGroup-test.tsx", - "hash": "13404732748774538333" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Card/Card-test.tsx", - "hash": "14872801092154452183" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardBody-test.tsx", - "hash": "4961802290389165907" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardColumn-test.tsx", - "hash": "2946857707153904783" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardExpandableBox-test.tsx", - "hash": "18081246896977472476" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardFooter-test.tsx", - "hash": "4568333006684685536" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardHeader-test.tsx", - "hash": "5973905523470608280" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardPreview-test.tsx", - "hash": "15380903345359050138" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Card/CardTopControls-test.tsx", - "hash": "12718460699447619691" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/Carousel-test.tsx", - "hash": "6512271293541251118" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselItem-test.tsx", - "hash": "15488894922033434421" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselNavigation-test.tsx", - "hash": "1989696240370193656" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselNavigationItem-test.tsx", - "hash": "4630459689601325689" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselPaddle-test.tsx", - "hash": "17284552819210128139" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Chat/Chat-test.tsx", - "hash": "16240544497376105969" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatItem-test.tsx", - "hash": "9317815919826984931" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessage-test.tsx", - "hash": "15704714301524573565" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageContent-test.tsx", - "hash": "12206648926544507089" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageDetails-test.tsx", - "hash": "3897749336843958446" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageHeader-test.tsx", - "hash": "12042384580656900705" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageReadStatus-test.tsx", - "hash": "13588198715754619111" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Checkbox/Checkbox-test.tsx", - "hash": "7825630663755003476" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/Datepicker-test.tsx", - "hash": "1861003246359552439" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendar-test.tsx", - "hash": "2233720293546010797" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarCell-test.tsx", - "hash": "15892486420343153903" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarCellButton-test.tsx", - "hash": "8997437747079875984" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarGrid-test.tsx", - "hash": "12491487181544275019" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarGridRow-test.tsx", - "hash": "6748518535575405844" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeader-test.tsx", - "hash": "15227031319512760357" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeaderAction-test.tsx", - "hash": "14664648722850097564" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeaderCell-test.tsx", - "hash": "8616588072472146297" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/navigateToNewDate-test.tsx", - "hash": "8732936018653634364" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Datepicker/validateDate-test.tsx", - "hash": "2834079238353411400" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Debug/utils-test.ts", - "hash": "1339206635125466021" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Dialog/Dialog-test.tsx", - "hash": "9237941996732807559" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Dialog/DialogFooter-test.tsx", - "hash": "9235047452155095681" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Divider/Divider-test.tsx", - "hash": "12854080868881418619" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Divider/DividerContent-test.tsx", - "hash": "14342575122727540692" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/Dropdown-test.tsx", - "hash": "7604599215403052112" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownItem-test.tsx", - "hash": "1473585089237751717" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownSearchInput-test.tsx", - "hash": "3925975303508541947" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownSelectedItem-test.tsx", - "hash": "12109862275815818659" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Dropdown/test-utils.tsx", - "hash": "9778718411390596817" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Embed/Embed-test.tsx", - "hash": "18004703066055679324" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/Form-test.tsx", - "hash": "4357145295874511821" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormButton-test.tsx", - "hash": "2480530927011052275" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormCheckbox-test.tsx", - "hash": "16595455459410141480" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormDatepicker-test.tsx", - "hash": "6123129437006011085" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormDropdown-test.tsx", - "hash": "3439503302665132723" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormField-test.tsx", - "hash": "9414094539119391119" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormFieldCustom-test.tsx", - "hash": "7542078810202115053" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormInput-test.tsx", - "hash": "8382766727191067703" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormLabel-test.tsx", - "hash": "2042354020208887865" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormMessage-test.tsx", - "hash": "15906543573128503902" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormRadioGroup-test.tsx", - "hash": "5056958632862126533" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormSlider-test.tsx", - "hash": "364414860270359616" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Form/FormTextArea-test.tsx", - "hash": "14998274972297178761" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Grid/Grid-test.tsx", - "hash": "17892297248944202229" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Header/Header-test.ts", - "hash": "9487762096743194623" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Header/HeaderDescription-test.ts", - "hash": "15842708465317391877" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Image/Image-test.tsx", - "hash": "12851937568039079063" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Input/Input-test.tsx", - "hash": "1691823196277230616" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Input/InputLabel-test.tsx", - "hash": "877087592278268379" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/ItemLayout/ItemLayout-test.ts", - "hash": "8485818133839845423" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Label/Label-test.tsx", - "hash": "9474396410541813616" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Layout/Layout-test.ts", - "hash": "1900237706348259417" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/List/List-test.tsx", - "hash": "3097287775703992573" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItem-test.tsx", - "hash": "9928356118452444044" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemContent-test.tsx", - "hash": "1095048506653080069" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemContentMedia-test.tsx", - "hash": "17371151810202432116" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemEndMedia-test.tsx", - "hash": "1322925889570751378" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemHeader-test.tsx", - "hash": "2846611475396535397" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemHeaderMedia-test.tsx", - "hash": "4877505627170088792" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/List/ListItemMedia-test.tsx", - "hash": "18069936088151066910" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Loader/Loader-test.tsx", - "hash": "9449749231197165968" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Menu/Menu-test.tsx", - "hash": "12165382481008066044" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuDivider-test.ts", - "hash": "11686102310312265839" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItem-test.tsx", - "hash": "2654099299647523812" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemContent-test.tsx", - "hash": "7715872639743413366" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemIcon-test.tsx", - "hash": "14320571732615103337" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemIndicator-test.tsx", - "hash": "8332513050282139750" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemWrapper-test.tsx", - "hash": "5853615396637177252" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/MenuButton/MenuButton-test.tsx", - "hash": "10459616558362422535" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Pill/Pill-test.tsx", - "hash": "9581060234870722120" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Pill/PillAction-test.ts", - "hash": "6179880651922626996" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Pill/PillGroup-test.ts", - "hash": "11981612515295806007" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Popup/Popup-test.tsx", - "hash": "8434777514512007216" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Popup/PopupContent-test.ts", - "hash": "13638739475903005750" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Portal/Portal-test.tsx", - "hash": "15465996118162269272" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Portal/PortalInner-test.tsx", - "hash": "5754434891661785018" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Provider/Provider-test.tsx", - "hash": "2240640287140070383" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Provider/ProviderConsumer-test.tsx", - "hash": "13002904769286609320" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/RadioGroup/RadioGroup-test.tsx", - "hash": "17457288701005817085" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/RadioGroup/RadioGroupItem-test.ts", - "hash": "3694787136224530727" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Reaction/Reaction-test.tsx", - "hash": "17460569499475553055" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Reaction/ReactionGroup-test.tsx", - "hash": "8891288184075771422" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Segment/Segment-test.ts", - "hash": "18342948157651185262" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/Skeleton-test.tsx", - "hash": "5431693271941474537" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonAvatar-test.tsx", - "hash": "633215657105970504" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonButton-test.tsx", - "hash": "857912520415791019" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonInput-test.tsx", - "hash": "16014302676971243686" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonLine-test.tsx", - "hash": "6710987888418158263" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonShape-test.tsx", - "hash": "417051666742724868" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonText-test.tsx", - "hash": "13342668590815722830" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Slider/Slider-test.tsx", - "hash": "17195985081238689502" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/SplitButton/SplitButton-test.tsx", - "hash": "6285634676352090825" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/SplitButton/SplitButtonToggle-test.tsx", - "hash": "17168430121306085647" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Status/Status-test.tsx", - "hash": "9207495202148573899" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Table/Table-test.tsx", - "hash": "14320851970052755336" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Table/TableCell-test.tsx", - "hash": "13268733205756804476" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Table/TableRow-test.tsx", - "hash": "15721665457219970259" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Text/Text-test.tsx", - "hash": "15774609461339472960" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/TextArea/TextArea-test.tsx", - "hash": "10904772413893805454" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/Toolbar-test.tsx", - "hash": "3273080662216660222" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarCustomItem-test.ts", - "hash": "1971629901099191306" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarDivider-test.ts", - "hash": "1961608604314474618" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItem-test.tsx", - "hash": "18244914693327485303" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItemIcon-test.tsx", - "hash": "13596680737528963805" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItemWrapper-test.tsx", - "hash": "13156786441078339060" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenu-test.tsx", - "hash": "17322254714369170926" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuDivider-test.ts", - "hash": "2317588345846814381" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItem-test.ts", - "hash": "14252176927580183276" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemActiveIndicator-test.ts", - "hash": "7338121822972968481" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemContent-test.ts", - "hash": "16940688787172569278" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemIcon-test.ts", - "hash": "12036502141770290712" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemSubmenuIndicator-test.ts", - "hash": "17060725767436850200" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuRadioGroup-test.ts", - "hash": "13251209218976290123" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuRadioGroupWrapper-test.ts", - "hash": "12304408542935772201" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarRadioGroup-test.tsx", - "hash": "10137003306110435359" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Tooltip/Tooltip-test.tsx", - "hash": "8889331025271088718" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Tooltip/TooltipContent-test.ts", - "hash": "7678283977980244711" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Tree/Tree-test.tsx", - "hash": "10244675648720734018" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Tree/TreeItem-test.tsx", - "hash": "4945161483942705254" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Tree/TreeTitle-test.tsx", - "hash": "8773859907745772342" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Tree/useTree-test.tsx", - "hash": "5793822819577735110" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Tree/useVirtualTree-test.tsx", - "hash": "5626760577217895360" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/components/Video/Video-test.tsx", - "hash": "1926816928517605541" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/themes/colorUtils-test.ts", - "hash": "7657706024055204904" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/accessibility/FocusContainer-test.ts", - "hash": "223800887962504547" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/createComponent-test.tsx", - "hash": "7246460273016057939" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatDay-test.ts", - "hash": "2311094940376933322" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatMonthDayYear-test.ts", - "hash": "1872098968821842300" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatMonthYear-test.ts", - "hash": "2459189009262561277" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatYear-test.ts", - "hash": "16280194774285350298" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/__snapshots__/getDayGrid-test.ts.snap", - "hash": "2311635867604483689" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/findAvailableDate-test.ts", - "hash": "15572784148609697340" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getBoundedDateRange-test.ts", - "hash": "2623791697737703526" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getDateRangeTypeToUse-test.ts", - "hash": "14573867150223039839" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getDayGrid-test.ts", - "hash": "6975924948134206302" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isAfterMaxDate-test.ts", - "hash": "12815467872040329995" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isBeforeMinDate-test.ts", - "hash": "3803387967835514747" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isContiguous-test.ts", - "hash": "16494931337448801984" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isRestrictedDate-test.ts", - "hash": "3940731087686096730" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateMath/dateMath-test.ts", - "hash": "10661094989801549340" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/doesNodeContainClick-test.ts", - "hash": "16229342285576678393" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/factories-test.tsx", - "hash": "15646126022037774298" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/fontSizeUtility-test.ts", - "hash": "17646536945264760221" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/getReactFiberFromNode-test.tsx", - "hash": "14994895051922141272" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/htmlInputPropsUtils-test.ts", - "hash": "7674098100722179265" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/isBrowser-test.ts", - "hash": "17150880185040762390" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/mergeProviderContexts/mergeBooleanValues-test.ts", - "hash": "16868530262621193395" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/mergeProviderContexts/mergeProviderContexts-test.ts", - "hash": "15934990098831498959" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/positioner/getScrollParent-test.ts", - "hash": "15923669357357889226" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/positioner/positioningHelper-test.ts", - "hash": "12724373629963656299" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/shouldPreventDefaultOnKeyDown-test.ts", - "hash": "284482009341561469" - }, - { - "file": "packages/fluentui/react-northstar/test/specs/utils/whatInput-test.tsx", - "hash": "4965920864058832888" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/assertNodeContains.ts", - "hash": "16326988012836660074" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/consoleUtil.ts", - "hash": "1538858825893602837" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/domEvent.ts", - "hash": "1337068844579757941" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/findIntrinsicElement.ts", - "hash": "11574652103696867807" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/getDisplayName.ts", - "hash": "13697273738737733112" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/index.ts", - "hash": "1972489484976587726" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/nextFrame.ts", - "hash": "7596599917002412285" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/syntheticEvent.ts", - "hash": "10249353881461568646" - }, - { - "file": "packages/fluentui/react-northstar/test/utils/withProvider.tsx", - "hash": "14725531562489182975" - }, - { - "file": "packages/fluentui/react-northstar/tsconfig.json", - "hash": "3307365675788742834" - }, - { - "file": "packages/fluentui/react-northstar/tsconfig.spec.json", - "hash": "8498668848331699403" - } - ], - "@fluentui/react-conformance-griffel": [ - { - "file": "packages/react-components/react-conformance-griffel/.babelrc.json", - "hash": "8174012058119950495" - }, - { - "file": "packages/react-components/react-conformance-griffel/.eslintrc.json", - "hash": "11018738359270224912" - }, - { - "file": "packages/react-components/react-conformance-griffel/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-conformance-griffel/CHANGELOG.json", - "hash": "1599448451519957366" - }, - { - "file": "packages/react-components/react-conformance-griffel/CHANGELOG.md", - "hash": "15963932008129979815" - }, - { - "file": "packages/react-components/react-conformance-griffel/LICENSE", - "hash": "9276497511127924988" - }, - { - "file": "packages/react-components/react-conformance-griffel/README.md", - "hash": "17310260780896769631" - }, - { - "file": "packages/react-components/react-conformance-griffel/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-conformance-griffel/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-conformance-griffel/etc/react-conformance-griffel.api.md", - "hash": "17760332850409220085" - }, - { - "file": "packages/react-components/react-conformance-griffel/jest.config.js", - "hash": "15227294323143014741" - }, - { - "file": "packages/react-components/react-conformance-griffel/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-conformance-griffel/package.json", - "hash": "13528663482705912139", - "deps": [ - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:typescript" - ] - }, - { - "file": "packages/react-components/react-conformance-griffel/project.json", - "hash": "13900267515539558779" - }, - { - "file": "packages/react-components/react-conformance-griffel/src/index.ts", - "hash": "7791951983184089960" - }, - { - "file": "packages/react-components/react-conformance-griffel/src/matchers/index.ts", - "hash": "12326396871232725303" - }, - { - "file": "packages/react-components/react-conformance-griffel/src/matchers/toContainClassNameLastInCalls.test.ts", - "hash": "8633457890093301366" - }, - { - "file": "packages/react-components/react-conformance-griffel/src/matchers/toContainClassNameLastInCalls.ts", - "hash": "419654042826238667" - }, - { - "file": "packages/react-components/react-conformance-griffel/src/matchers/toHaveMergeClassesCalledTimesWithClassName.test.ts", - "hash": "17095451530468328915" - }, - { - "file": "packages/react-components/react-conformance-griffel/src/matchers/toHaveMergeClassesCalledTimesWithClassName.ts", - "hash": "10742531573460176078" - }, - { - "file": "packages/react-components/react-conformance-griffel/src/overridesWin.ts", - "hash": "5177685846648410797" - }, - { - "file": "packages/react-components/react-conformance-griffel/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/react-conformance-griffel/tsconfig.lib.json", - "hash": "13650566283900444399" - }, - { - "file": "packages/react-components/react-conformance-griffel/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/style-utilities": [ - { - "file": "packages/style-utilities/.eslintrc.json", - "hash": "777445592424795063" - }, - { - "file": "packages/style-utilities/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/style-utilities/CHANGELOG.json", - "hash": "16559089319701978657" - }, - { - "file": "packages/style-utilities/CHANGELOG.md", - "hash": "11293021336094530000" - }, - { - "file": "packages/style-utilities/LICENSE", - "hash": "10631102846389405471" - }, - { - "file": "packages/style-utilities/README.md", - "hash": "8785584383498049932" - }, - { - "file": "packages/style-utilities/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/style-utilities/config/config.json", - "hash": "492575458105150550" - }, - { - "file": "packages/style-utilities/config/write-manifests.json", - "hash": "9493299321895719529" - }, - { - "file": "packages/style-utilities/etc/style-utilities.api.md", - "hash": "1346941679710414993" - }, - { - "file": "packages/style-utilities/jest.config.js", - "hash": "3240558433730290797" - }, - { - "file": "packages/style-utilities/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/style-utilities/package.json", - "hash": "10054612952908139680", - "deps": [ - "npm:@microsoft/load-themed-styles", - "@fluentui/theme", - "@fluentui/merge-styles", - "@fluentui/set-version", - "@fluentui/utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/style-utilities/project.json", - "hash": "2354001145725204558" - }, - { - "file": "packages/style-utilities/src/MergeStyles.ts", - "hash": "12687567316096870855" - }, - { - "file": "packages/style-utilities/src/Utilities.ts", - "hash": "7452799764049456122" - }, - { - "file": "packages/style-utilities/src/cdn.ts", - "hash": "2068649209194047104" - }, - { - "file": "packages/style-utilities/src/classNames/AnimationClassNames.ts", - "hash": "10911362795623760003" - }, - { - "file": "packages/style-utilities/src/classNames/ColorClassNames.ts", - "hash": "15467006911252499549" - }, - { - "file": "packages/style-utilities/src/classNames/FontClassNames.ts", - "hash": "12726977663961178186" - }, - { - "file": "packages/style-utilities/src/classNames/index.ts", - "hash": "14430502139131911936" - }, - { - "file": "packages/style-utilities/src/index.ts", - "hash": "16923130164332550840" - }, - { - "file": "packages/style-utilities/src/interfaces/IAnimationStyles.ts", - "hash": "12986432637445274053" - }, - { - "file": "packages/style-utilities/src/interfaces/IGetFocusStyles.ts", - "hash": "6841339027325532436" - }, - { - "file": "packages/style-utilities/src/interfaces/index.ts", - "hash": "4233406151298891077" - }, - { - "file": "packages/style-utilities/src/styles/AnimationStyles.ts", - "hash": "13873762751663857941" - }, - { - "file": "packages/style-utilities/src/styles/CommonStyles.ts", - "hash": "17789799438239226639" - }, - { - "file": "packages/style-utilities/src/styles/DefaultEffects.ts", - "hash": "17737879615641440019" - }, - { - "file": "packages/style-utilities/src/styles/DefaultFontStyles.ts", - "hash": "16110133181151166893" - }, - { - "file": "packages/style-utilities/src/styles/DefaultPalette.ts", - "hash": "308226778033962556" - }, - { - "file": "packages/style-utilities/src/styles/DefaultSpacing.ts", - "hash": "9920566915208494979" - }, - { - "file": "packages/style-utilities/src/styles/GeneralStyles.ts", - "hash": "351343555411730221" - }, - { - "file": "packages/style-utilities/src/styles/PulsingBeaconAnimationStyles.ts", - "hash": "1690259696892853135" - }, - { - "file": "packages/style-utilities/src/styles/fonts.ts", - "hash": "8465894030987436105" - }, - { - "file": "packages/style-utilities/src/styles/getFadedOverflowStyle.ts", - "hash": "2192178636602906456" - }, - { - "file": "packages/style-utilities/src/styles/getFocusStyle.ts", - "hash": "14892328874399091488" - }, - { - "file": "packages/style-utilities/src/styles/getGlobalClassNames.test.ts", - "hash": "15322990379229959297" - }, - { - "file": "packages/style-utilities/src/styles/getGlobalClassNames.ts", - "hash": "11769296658838531911" - }, - { - "file": "packages/style-utilities/src/styles/getPlaceholderStyles.ts", - "hash": "1528620556961214673" - }, - { - "file": "packages/style-utilities/src/styles/hiddenContentStyle.ts", - "hash": "15085522144708332270" - }, - { - "file": "packages/style-utilities/src/styles/index.ts", - "hash": "13699769295309937200" - }, - { - "file": "packages/style-utilities/src/styles/scheme.test.ts", - "hash": "14291007267009640848" - }, - { - "file": "packages/style-utilities/src/styles/scheme.ts", - "hash": "7384403392194222555" - }, - { - "file": "packages/style-utilities/src/styles/theme.test.ts", - "hash": "17085591667890151459" - }, - { - "file": "packages/style-utilities/src/styles/theme.ts", - "hash": "6368189951590670151" - }, - { - "file": "packages/style-utilities/src/styles/zIndexes.ts", - "hash": "5466025012238433759" - }, - { - "file": "packages/style-utilities/src/utilities/buildClassMap.ts", - "hash": "8219739827132639559" - }, - { - "file": "packages/style-utilities/src/utilities/getIconClassName.ts", - "hash": "7401286075380243893" - }, - { - "file": "packages/style-utilities/src/utilities/icons.test.ts", - "hash": "13392146120626313866" - }, - { - "file": "packages/style-utilities/src/utilities/icons.ts", - "hash": "11770390318349620343" - }, - { - "file": "packages/style-utilities/src/utilities/index.ts", - "hash": "14587868060223513086" - }, - { - "file": "packages/style-utilities/src/version.ts", - "hash": "571632617522871792" - }, - { - "file": "packages/style-utilities/tsconfig.json", - "hash": "1525836875762683581" - } - ], - "@fluentui/scripts-ts-node": [ - { - "file": "scripts/ts-node/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/ts-node/jest.config.js", - "hash": "17845001107193385709" - }, - { - "file": "scripts/ts-node/package.json", - "hash": "12828502435875523151" - }, - { - "file": "scripts/ts-node/project.json", - "hash": "2171572583854711182" - }, - { - "file": "scripts/ts-node/register.js", - "hash": "7326554617006767970" - }, - { - "file": "scripts/ts-node/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/ts-node/tsconfig.lib.json", - "hash": "3753806828268919288" - }, - { - "file": "scripts/ts-node/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/react-northstar-emotion-renderer": [ - { - "file": "packages/fluentui/react-northstar-emotion-renderer/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/jest.config.js", - "hash": "10065914605359659073" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/package.json", - "hash": "16057095585920927971", - "deps": [ - "npm:@babel/runtime", - "npm:@emotion/cache", - "npm:@emotion/serialize", - "npm:@emotion/sheet", - "npm:@emotion/utils", - "@fluentui/react-northstar-styles-renderer", - "@fluentui/styles", - "npm:stylis", - "npm:stylis-plugin-rtl", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:@types/stylis", - "npm:lerna-alias", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/project.json", - "hash": "5988446854191171584" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/src/createEmotionRenderer.tsx", - "hash": "3527459238388368320" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/src/disableAnimations.ts", - "hash": "15169298850039687481" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/src/focusVisiblePlugin.ts", - "hash": "15882127862814043576" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/src/fontUtils.ts", - "hash": "2024523837323362739" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/src/index.ts", - "hash": "4595283533174490101" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/src/invokeKeyframes.ts", - "hash": "8615174738355072265" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/src/utils.ts", - "hash": "4045080220261049628" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/test/__snapshots__/emotionRenderer-test.ts.snap", - "hash": "10413787701503712849" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/test/emotionRenderer-test.ts", - "hash": "13586919140231825454" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/test/focusVisiblePlugin-test.ts", - "hash": "13336232390182493707" - }, - { - "file": "packages/fluentui/react-northstar-emotion-renderer/tsconfig.json", - "hash": "17948747254354210464" - } - ], - "@fluentui/react-table": [ - { - "file": "packages/react-components/react-table/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-table/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-table/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-table/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-table/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-table/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-table/CHANGELOG.json", - "hash": "15976043308258216480" - }, - { - "file": "packages/react-components/react-table/CHANGELOG.md", - "hash": "12284887034328568848" - }, - { - "file": "packages/react-components/react-table/LICENSE", - "hash": "4345477832354288605" - }, - { - "file": "packages/react-components/react-table/README.md", - "hash": "4901443484789913206" - }, - { - "file": "packages/react-components/react-table/bundle-size/DataGrid.fixture.js", - "hash": "3853986990699722698" - }, - { - "file": "packages/react-components/react-table/bundle-size/PrimitivesOnly.fixture.js", - "hash": "2453502332089171285" - }, - { - "file": "packages/react-components/react-table/bundle-size/TableAsDataGrid.fixture.js", - "hash": "3489469272183983884" - }, - { - "file": "packages/react-components/react-table/bundle-size/TableSelectionOnly.fixture.js", - "hash": "15101770674769534092" - }, - { - "file": "packages/react-components/react-table/bundle-size/TableSortOnly.fixture.js", - "hash": "16772869715114899305" - }, - { - "file": "packages/react-components/react-table/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-table/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-table/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-table/docs/Spec.md", - "hash": "6293734900932760050" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide1.PNG", - "hash": "12816229816120791114" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide10.PNG", - "hash": "507403483594248181" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide11.PNG", - "hash": "10821002649331152305" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide12.PNG", - "hash": "16044207046169017904" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide13.PNG", - "hash": "4558085957645872825" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide14.PNG", - "hash": "15784983474924862966" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide15.PNG", - "hash": "3911357198091251632" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide16.PNG", - "hash": "16044207046169017904" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide17.PNG", - "hash": "3771765972594141142" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide18.PNG", - "hash": "1847454647595839912" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide19.PNG", - "hash": "378265804099762004" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide2.PNG", - "hash": "2013925037770347199" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide20.PNG", - "hash": "11286961965291772510" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide21.PNG", - "hash": "12780997597152140914" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide22.PNG", - "hash": "11635355027693465335" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide23.PNG", - "hash": "6091420021788820418" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide24.PNG", - "hash": "185692542212997928" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide25.PNG", - "hash": "765679849171402571" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide26.PNG", - "hash": "14966586126216280425" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide27.PNG", - "hash": "659754405265581401" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide28.PNG", - "hash": "7909581484454979875" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide29.PNG", - "hash": "15406246910192488097" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide3.PNG", - "hash": "5018292620786143049" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide30.PNG", - "hash": "8445475416143163908" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide4.PNG", - "hash": "1410512037832003271" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide5.PNG", - "hash": "7251737589323072305" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide6.PNG", - "hash": "3097621861574444839" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide7.PNG", - "hash": "7233386375010557980" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide8.PNG", - "hash": "14959995681332803620" - }, - { - "file": "packages/react-components/react-table/etc/images/table-interactions/Slide9.PNG", - "hash": "6476023258270782882" - }, - { - "file": "packages/react-components/react-table/etc/react-table.api.md", - "hash": "17698100367778503037" - }, - { - "file": "packages/react-components/react-table/jest.config.js", - "hash": "6598540019410527330" - }, - { - "file": "packages/react-components/react-table/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-table/package.json", - "hash": "7942069547503742693", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-aria", - "@fluentui/react-avatar", - "@fluentui/react-checkbox", - "@fluentui/react-context-selector", - "npm:@fluentui/react-icons", - "@fluentui/react-radio", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-table/project.json", - "hash": "4794127214983829980" - }, - { - "file": "packages/react-components/react-table/src/DataGrid.ts", - "hash": "17079061606149660778" - }, - { - "file": "packages/react-components/react-table/src/DataGridBody.ts", - "hash": "8672044046349703751" - }, - { - "file": "packages/react-components/react-table/src/DataGridCell.ts", - "hash": "15985493277395717549" - }, - { - "file": "packages/react-components/react-table/src/DataGridHeader.ts", - "hash": "4414606268997421070" - }, - { - "file": "packages/react-components/react-table/src/DataGridHeaderCell.ts", - "hash": "4464250898020673551" - }, - { - "file": "packages/react-components/react-table/src/DataGridRow.ts", - "hash": "4969572224027565081" - }, - { - "file": "packages/react-components/react-table/src/DataGridSelectionCell.ts", - "hash": "9370795542556916127" - }, - { - "file": "packages/react-components/react-table/src/Table.ts", - "hash": "14778241596221356404" - }, - { - "file": "packages/react-components/react-table/src/TableBody.ts", - "hash": "586474510137933838" - }, - { - "file": "packages/react-components/react-table/src/TableCell.ts", - "hash": "13156803246933880197" - }, - { - "file": "packages/react-components/react-table/src/TableCellActions.ts", - "hash": "11397146158367149472" - }, - { - "file": "packages/react-components/react-table/src/TableCellLayout.ts", - "hash": "4640880441986165945" - }, - { - "file": "packages/react-components/react-table/src/TableCellPrimaryLayout.ts", - "hash": "4640880441986165945" - }, - { - "file": "packages/react-components/react-table/src/TableHeader.ts", - "hash": "838114321023204504" - }, - { - "file": "packages/react-components/react-table/src/TableHeaderCell.ts", - "hash": "6850659350249070005" - }, - { - "file": "packages/react-components/react-table/src/TableResizeHandle.ts", - "hash": "3108675560738752517" - }, - { - "file": "packages/react-components/react-table/src/TableRow.ts", - "hash": "3608582872695367179" - }, - { - "file": "packages/react-components/react-table/src/TableSelectionCell.ts", - "hash": "12503410089805101497" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/DataGrid.cy.tsx", - "hash": "3350411529027605508" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/DataGrid.test.tsx", - "hash": "3121991208076853892" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/DataGrid.tsx", - "hash": "17321264386000624870" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/DataGrid.types.ts", - "hash": "709704323174809435" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/__snapshots__/DataGrid.test.tsx.snap", - "hash": "17976811616864604250" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/index.ts", - "hash": "14447930360764847420" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/renderDataGrid.tsx", - "hash": "15762584639505010258" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/useDataGrid.ts", - "hash": "18296519326555141072" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/useDataGridContextValues.ts", - "hash": "4001850224425972488" - }, - { - "file": "packages/react-components/react-table/src/components/DataGrid/useDataGridStyles.styles.ts", - "hash": "15924802483199645208" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridBody/DataGridBody.test.tsx", - "hash": "365690180230643745" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridBody/DataGridBody.tsx", - "hash": "13092328809030939159" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridBody/DataGridBody.types.ts", - "hash": "989688156850890464" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridBody/__snapshots__/DataGridBody.test.tsx.snap", - "hash": "12795865007847060242" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridBody/index.ts", - "hash": "8074172754573827448" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridBody/renderDataGridBody.tsx", - "hash": "13006146274395870229" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridBody/useDataGridBody.tsx", - "hash": "2490474312124892640" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridBody/useDataGridBodyStyles.styles.ts", - "hash": "3088072580687221418" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridCell/DataGridCell.test.tsx", - "hash": "14284493750094275925" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridCell/DataGridCell.tsx", - "hash": "5979950167817855884" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridCell/DataGridCell.types.ts", - "hash": "1469647611878513101" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridCell/__snapshots__/DataGridCell.test.tsx.snap", - "hash": "13297941497219637881" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridCell/index.ts", - "hash": "1950686883714060159" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridCell/renderDataGridCell.tsx", - "hash": "15672771230460021783" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridCell/useDataGridCell.ts", - "hash": "5633900691479417673" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridCell/useDataGridCellStyles.styles.ts", - "hash": "17197964593221316773" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.test.tsx", - "hash": "4388468238184479221" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.tsx", - "hash": "13625463631116259235" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.types.ts", - "hash": "16511931732912371303" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeader/__snapshots__/DataGridHeader.test.tsx.snap", - "hash": "9406093122186695703" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeader/index.ts", - "hash": "3201680452232731904" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeader/renderDataGridHeader.tsx", - "hash": "7782227593392993150" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeader/useDataGridHeader.ts", - "hash": "8544879729013780740" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeader/useDataGridHeaderStyles.styles.ts", - "hash": "5887884145834485645" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.test.tsx", - "hash": "8046473821173442128" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.tsx", - "hash": "15401726210547002467" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.types.ts", - "hash": "10061728147229226131" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/__snapshots__/DataGridHeaderCell.test.tsx.snap", - "hash": "15607676364797409456" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/index.ts", - "hash": "11744360188312949192" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/renderDataGridHeaderCell.tsx", - "hash": "9804925281648575111" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/useDataGridHeaderCell.ts", - "hash": "8322177597417145595" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridHeaderCell/useDataGridHeaderCellStyles.styles.ts", - "hash": "3064467005010167574" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridRow/DataGridRow.test.tsx", - "hash": "609493596336427704" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridRow/DataGridRow.tsx", - "hash": "2583011202432098234" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridRow/DataGridRow.types.ts", - "hash": "11184462291089499466" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridRow/__snapshots__/DataGridRow.test.tsx.snap", - "hash": "1090916004093623854" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridRow/index.ts", - "hash": "3088124891029267509" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridRow/renderDataGridRow.tsx", - "hash": "5595776796766230678" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridRow/useDataGridRow.tsx", - "hash": "10140518523773109235" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridRow/useDataGridRowStyles.styles.ts", - "hash": "16017903646265286705" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.test.tsx", - "hash": "13797254308524947112" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.tsx", - "hash": "3499170646948071005" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.types.ts", - "hash": "15778410513528664058" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/index.ts", - "hash": "4837457285516816283" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/renderDataGridSelectionCell.tsx", - "hash": "4778904848491643018" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/useDataGridSelectionCell.ts", - "hash": "9424237769629002853" - }, - { - "file": "packages/react-components/react-table/src/components/DataGridSelectionCell/useDataGridSelectionCellStyles.styles.ts", - "hash": "14851722426357391505" - }, - { - "file": "packages/react-components/react-table/src/components/Table/Table.test.tsx", - "hash": "3988653820926313102" - }, - { - "file": "packages/react-components/react-table/src/components/Table/Table.tsx", - "hash": "2616887241723560373" - }, - { - "file": "packages/react-components/react-table/src/components/Table/Table.types.ts", - "hash": "1207824533076839058" - }, - { - "file": "packages/react-components/react-table/src/components/Table/__snapshots__/Table.test.tsx.snap", - "hash": "12819927518323792222" - }, - { - "file": "packages/react-components/react-table/src/components/Table/index.ts", - "hash": "7246842283080963730" - }, - { - "file": "packages/react-components/react-table/src/components/Table/renderTable.tsx", - "hash": "8231460164589478020" - }, - { - "file": "packages/react-components/react-table/src/components/Table/useTable.ts", - "hash": "4091732233640072596" - }, - { - "file": "packages/react-components/react-table/src/components/Table/useTableContextValues.test.ts", - "hash": "17213058547749828900" - }, - { - "file": "packages/react-components/react-table/src/components/Table/useTableContextValues.ts", - "hash": "1963700558737794813" - }, - { - "file": "packages/react-components/react-table/src/components/Table/useTableStyles.styles.ts", - "hash": "14779006953385619770" - }, - { - "file": "packages/react-components/react-table/src/components/TableBody/TableBody.test.tsx", - "hash": "7329165518323718931" - }, - { - "file": "packages/react-components/react-table/src/components/TableBody/TableBody.tsx", - "hash": "16817188515472471544" - }, - { - "file": "packages/react-components/react-table/src/components/TableBody/TableBody.types.ts", - "hash": "14083323400314851537" - }, - { - "file": "packages/react-components/react-table/src/components/TableBody/__snapshots__/TableBody.test.tsx.snap", - "hash": "1975112668078964741" - }, - { - "file": "packages/react-components/react-table/src/components/TableBody/index.ts", - "hash": "10642595759435101538" - }, - { - "file": "packages/react-components/react-table/src/components/TableBody/renderTableBody.tsx", - "hash": "4826167259779664753" - }, - { - "file": "packages/react-components/react-table/src/components/TableBody/useTableBody.ts", - "hash": "9253008564346211435" - }, - { - "file": "packages/react-components/react-table/src/components/TableBody/useTableBodyStyles.styles.ts", - "hash": "15817108164807954583" - }, - { - "file": "packages/react-components/react-table/src/components/TableCell/TableCell.test.tsx", - "hash": "11051355167652939228" - }, - { - "file": "packages/react-components/react-table/src/components/TableCell/TableCell.tsx", - "hash": "11710651907704353877" - }, - { - "file": "packages/react-components/react-table/src/components/TableCell/TableCell.types.ts", - "hash": "17804113583782862038" - }, - { - "file": "packages/react-components/react-table/src/components/TableCell/__snapshots__/TableCell.test.tsx.snap", - "hash": "6687739069799966419" - }, - { - "file": "packages/react-components/react-table/src/components/TableCell/index.ts", - "hash": "16281915016360298866" - }, - { - "file": "packages/react-components/react-table/src/components/TableCell/renderTableCell.tsx", - "hash": "2144713445527733389" - }, - { - "file": "packages/react-components/react-table/src/components/TableCell/useTableCell.ts", - "hash": "1756265038339941425" - }, - { - "file": "packages/react-components/react-table/src/components/TableCell/useTableCellStyles.styles.ts", - "hash": "17128545363356648646" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellActions/TableCellActions.test.tsx", - "hash": "12709244819248138161" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellActions/TableCellActions.tsx", - "hash": "14339356881426535917" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellActions/TableCellActions.types.ts", - "hash": "7023150195642875227" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellActions/__snapshots__/TableCellActions.test.tsx.snap", - "hash": "13335438201516937847" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellActions/index.ts", - "hash": "6025687967602825335" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellActions/renderTableCellActions.tsx", - "hash": "8725034395046660102" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellActions/useTableCellActions.ts", - "hash": "551858063680153270" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellActions/useTableCellActionsStyles.styles.ts", - "hash": "13342768590814720244" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.test.tsx", - "hash": "2653762218990098068" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.tsx", - "hash": "593798165276555146" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.types.ts", - "hash": "8930913243964287427" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/__snapshots__/TableCellLayout.test.tsx.snap", - "hash": "5152227318550539174" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/index.ts", - "hash": "11647574449621743593" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/renderTableCellLayout.tsx", - "hash": "6392547495725436491" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayout.ts", - "hash": "4174329990714482289" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayoutContextValues.ts", - "hash": "13285913200028190631" - }, - { - "file": "packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayoutStyles.styles.ts", - "hash": "9106906690843979872" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeader/TableHeader.test.tsx", - "hash": "2390014384311299291" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeader/TableHeader.tsx", - "hash": "4148101233480039052" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeader/TableHeader.types.ts", - "hash": "12959063516863293240" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeader/__snapshots__/TableHeader.test.tsx.snap", - "hash": "7035183146798587016" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeader/index.ts", - "hash": "3410642880769399092" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeader/renderTableHeader.tsx", - "hash": "7047894267214818202" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeader/useTableHeader.ts", - "hash": "12447444909845573720" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeader/useTableHeaderStyles.styles.ts", - "hash": "14320945159865933979" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.test.tsx", - "hash": "88312877306148306" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.tsx", - "hash": "11824252066886075845" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.types.ts", - "hash": "5064822055977353598" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeaderCell/__snapshots__/TableHeaderCell.test.tsx.snap", - "hash": "17461620234162290241" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeaderCell/index.ts", - "hash": "16326026053823034514" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeaderCell/renderTableHeaderCell.tsx", - "hash": "12533290613338772096" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCell.tsx", - "hash": "1186488255705582440" - }, - { - "file": "packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCellStyles.styles.ts", - "hash": "4722792324071201971" - }, - { - "file": "packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.test.tsx", - "hash": "4908009169325787003" - }, - { - "file": "packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.tsx", - "hash": "4119029624056477906" - }, - { - "file": "packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.types.ts", - "hash": "3788214349953356490" - }, - { - "file": "packages/react-components/react-table/src/components/TableResizeHandle/__snapshots__/TableResizeHandle.test.tsx.snap", - "hash": "9257042895276257861" - }, - { - "file": "packages/react-components/react-table/src/components/TableResizeHandle/index.ts", - "hash": "7452972912560494075" - }, - { - "file": "packages/react-components/react-table/src/components/TableResizeHandle/renderTableResizeHandle.tsx", - "hash": "5219167715943845526" - }, - { - "file": "packages/react-components/react-table/src/components/TableResizeHandle/useTableResizeHandle.ts", - "hash": "7328222721425120839" - }, - { - "file": "packages/react-components/react-table/src/components/TableResizeHandle/useTableResizeHandleStyles.styles.ts", - "hash": "15733935328878813985" - }, - { - "file": "packages/react-components/react-table/src/components/TableRow/TableRow.test.tsx", - "hash": "15478826047233568881" - }, - { - "file": "packages/react-components/react-table/src/components/TableRow/TableRow.tsx", - "hash": "18444837132530435350" - }, - { - "file": "packages/react-components/react-table/src/components/TableRow/TableRow.types.ts", - "hash": "6367169166660505131" - }, - { - "file": "packages/react-components/react-table/src/components/TableRow/__snapshots__/TableRow.test.tsx.snap", - "hash": "15440056760632672248" - }, - { - "file": "packages/react-components/react-table/src/components/TableRow/index.ts", - "hash": "16433222686764991881" - }, - { - "file": "packages/react-components/react-table/src/components/TableRow/renderTableRow.tsx", - "hash": "9020356206322865233" - }, - { - "file": "packages/react-components/react-table/src/components/TableRow/useTableRow.ts", - "hash": "11761709334920900157" - }, - { - "file": "packages/react-components/react-table/src/components/TableRow/useTableRowStyles.styles.ts", - "hash": "12531923330452599881" - }, - { - "file": "packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.test.tsx", - "hash": "6411551806011869763" - }, - { - "file": "packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.tsx", - "hash": "650480750958853" - }, - { - "file": "packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.types.ts", - "hash": "18184138947631542698" - }, - { - "file": "packages/react-components/react-table/src/components/TableSelectionCell/__snapshots__/TableSelectionCell.test.tsx.snap", - "hash": "4876836364386778508" - }, - { - "file": "packages/react-components/react-table/src/components/TableSelectionCell/index.ts", - "hash": "12366029392607972381" - }, - { - "file": "packages/react-components/react-table/src/components/TableSelectionCell/renderTableSelectionCell.tsx", - "hash": "10405033063074637043" - }, - { - "file": "packages/react-components/react-table/src/components/TableSelectionCell/useTableSelectionCell.tsx", - "hash": "13549839021610253427" - }, - { - "file": "packages/react-components/react-table/src/components/TableSelectionCell/useTableSelectionCellStyles.styles.ts", - "hash": "9336811611325446753" - }, - { - "file": "packages/react-components/react-table/src/contexts/columnIdContext.ts", - "hash": "1084340240683719750" - }, - { - "file": "packages/react-components/react-table/src/contexts/dataGridContext.ts", - "hash": "5570658827395223292" - }, - { - "file": "packages/react-components/react-table/src/contexts/rowIdContext.ts", - "hash": "3534861151135745095" - }, - { - "file": "packages/react-components/react-table/src/contexts/tableContext.ts", - "hash": "1391145068294881469" - }, - { - "file": "packages/react-components/react-table/src/contexts/tableHeaderContext.ts", - "hash": "13631502139309569843" - }, - { - "file": "packages/react-components/react-table/src/hooks/createColumn.ts", - "hash": "1982242325429104491" - }, - { - "file": "packages/react-components/react-table/src/hooks/index.ts", - "hash": "13799373635655725354" - }, - { - "file": "packages/react-components/react-table/src/hooks/types.ts", - "hash": "6174182288606230308" - }, - { - "file": "packages/react-components/react-table/src/hooks/useKeyboardResizing.ts", - "hash": "15626054918149148172" - }, - { - "file": "packages/react-components/react-table/src/hooks/useMeasureElement.test.tsx", - "hash": "15127064510536374752" - }, - { - "file": "packages/react-components/react-table/src/hooks/useMeasureElement.ts", - "hash": "4021244669807144498" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableColumnResizeMouseHandler.ts", - "hash": "15338397319447945983" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableColumnResizeState.test.ts", - "hash": "14299849820910707739" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableColumnResizeState.ts", - "hash": "14235677586849461204" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableColumnSizing.test.ts", - "hash": "5213967468781703495" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableColumnSizing.tsx", - "hash": "12200350387517053981" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableCompositeNavigation.ts", - "hash": "12883916471074441744" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableFeatures.test.ts", - "hash": "14407794722332764337" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableFeatures.ts", - "hash": "11316047060762564043" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableSelection.test.ts", - "hash": "10642268899411474511" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableSelection.ts", - "hash": "274106747344727539" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableSort.test.ts", - "hash": "4876939199901475944" - }, - { - "file": "packages/react-components/react-table/src/hooks/useTableSort.ts", - "hash": "3031703309871912592" - }, - { - "file": "packages/react-components/react-table/src/index.ts", - "hash": "15694762333787260772" - }, - { - "file": "packages/react-components/react-table/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-table/src/testing/mockDataGridContext.ts", - "hash": "12345405769834274534" - }, - { - "file": "packages/react-components/react-table/src/testing/mockSyntheticEvent.ts", - "hash": "1212352037375346170" - }, - { - "file": "packages/react-components/react-table/src/testing/mockTableState.ts", - "hash": "15042778666285051569" - }, - { - "file": "packages/react-components/react-table/src/utils/columnResizeUtils.test.ts", - "hash": "6011727881236160373" - }, - { - "file": "packages/react-components/react-table/src/utils/columnResizeUtils.ts", - "hash": "15912676873764422519" - }, - { - "file": "packages/react-components/react-table/src/utils/isColumnSortable.ts", - "hash": "17332718086331285738" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/CompositeNavigation.stories.tsx", - "hash": "462497658692016730" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/CustomRowId.stories.tsx", - "hash": "7200996654339205885" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/DataGridDescription.md", - "hash": "14297991401899578735" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/Default.stories.tsx", - "hash": "12603562064528492256" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/FocusableElementsInCells.stories.tsx", - "hash": "8698941837297046634" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/MultipleSelect.stories.tsx", - "hash": "12528499231255362163" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/MultipleSelectControlled.stories.tsx", - "hash": "17764972028460656409" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/ResizableColumns.stories.tsx", - "hash": "17972472683075739426" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/SelectionAppearance.stories.tsx", - "hash": "5103565752129711868" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/SingleSelect.stories.tsx", - "hash": "5263004353615079277" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/SingleSelectControlled.stories.tsx", - "hash": "10982877708572451543" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/Sort.stories.tsx", - "hash": "514907417437481165" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/SortControlled.stories.tsx", - "hash": "18333722598813021923" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/SubtleSelection.stories.tsx", - "hash": "16193231600548811672" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/Virtualization.stories.tsx", - "hash": "12648284986353904171" - }, - { - "file": "packages/react-components/react-table/stories/DataGrid/index.stories.tsx", - "hash": "9938818216767215778" - }, - { - "file": "packages/react-components/react-table/stories/Table/CellActions.stories.tsx", - "hash": "6452579492109796205" - }, - { - "file": "packages/react-components/react-table/stories/Table/CellNavigation.stories.tsx", - "hash": "5784594627376239400" - }, - { - "file": "packages/react-components/react-table/stories/Table/CompositeNavigation.stories.tsx", - "hash": "4853594687376691180" - }, - { - "file": "packages/react-components/react-table/stories/Table/DataGrid.stories.tsx", - "hash": "10870920636539121573" - }, - { - "file": "packages/react-components/react-table/stories/Table/Default.stories.tsx", - "hash": "12771585741670131315" - }, - { - "file": "packages/react-components/react-table/stories/Table/FocusableElements.Cells.stories.tsx", - "hash": "4563520350364841246" - }, - { - "file": "packages/react-components/react-table/stories/Table/Memoization.stories.tsx", - "hash": "9716844619909358490" - }, - { - "file": "packages/react-components/react-table/stories/Table/MultipleSelect.stories.tsx", - "hash": "18256653912049404303" - }, - { - "file": "packages/react-components/react-table/stories/Table/MultipleSelectControlled.stories.tsx", - "hash": "17511909197299034459" - }, - { - "file": "packages/react-components/react-table/stories/Table/NonNativeElements.stories.tsx", - "hash": "8410279079044763167" - }, - { - "file": "packages/react-components/react-table/stories/Table/PrimaryCell.stories.tsx", - "hash": "6210883377837677944" - }, - { - "file": "packages/react-components/react-table/stories/Table/ResizableColumnsControlled.stories.tsx", - "hash": "11377008235631273853" - }, - { - "file": "packages/react-components/react-table/stories/Table/ResizableColumnsUncontrolled.stories.tsx", - "hash": "10073256218889568076" - }, - { - "file": "packages/react-components/react-table/stories/Table/SelectionWithCellActions.stories.tsx", - "hash": "14166585273063843176" - }, - { - "file": "packages/react-components/react-table/stories/Table/SingleSelect.stories.tsx", - "hash": "16735239486844118885" - }, - { - "file": "packages/react-components/react-table/stories/Table/SingleSelectControlled.stories.tsx", - "hash": "4263285025688012103" - }, - { - "file": "packages/react-components/react-table/stories/Table/SizeExtraSmall.stories.tsx", - "hash": "16418257672340977129" - }, - { - "file": "packages/react-components/react-table/stories/Table/SizeSmall.stories.tsx", - "hash": "18012367151988365241" - }, - { - "file": "packages/react-components/react-table/stories/Table/Sort.stories.tsx", - "hash": "4414973333139307988" - }, - { - "file": "packages/react-components/react-table/stories/Table/SortControlled.stories.tsx", - "hash": "1218547722178532512" - }, - { - "file": "packages/react-components/react-table/stories/Table/SubtleSelection.stories.tsx", - "hash": "9363051409608050544" - }, - { - "file": "packages/react-components/react-table/stories/Table/TableDescription.md", - "hash": "8803727497508721727" - }, - { - "file": "packages/react-components/react-table/stories/Table/Virtualization.stories.tsx", - "hash": "11309226498381645330" - }, - { - "file": "packages/react-components/react-table/stories/Table/index.stories.tsx", - "hash": "1915606669720448584" - }, - { - "file": "packages/react-components/react-table/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-table/tsconfig.json", - "hash": "17847181103745608939" - }, - { - "file": "packages/react-components/react-table/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-table/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/priority-overflow": [ - { - "file": "packages/react-components/priority-overflow/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/priority-overflow/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/priority-overflow/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/priority-overflow/CHANGELOG.json", - "hash": "4333659162810779590" - }, - { - "file": "packages/react-components/priority-overflow/CHANGELOG.md", - "hash": "4398841463571116898" - }, - { - "file": "packages/react-components/priority-overflow/LICENSE", - "hash": "11030407222875521344" - }, - { - "file": "packages/react-components/priority-overflow/README.md", - "hash": "10857736672267528914" - }, - { - "file": "packages/react-components/priority-overflow/bundle-size/overflow-manager.fixture.js", - "hash": "8551267840124202928" - }, - { - "file": "packages/react-components/priority-overflow/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/priority-overflow/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/priority-overflow/etc/priority-overflow.api.md", - "hash": "7306121779845882287" - }, - { - "file": "packages/react-components/priority-overflow/jest.config.js", - "hash": "2868823370633145472" - }, - { - "file": "packages/react-components/priority-overflow/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/priority-overflow/package.json", - "hash": "15007389892501600147", - "deps": [ - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/react-components/priority-overflow/project.json", - "hash": "14779383503117085597" - }, - { - "file": "packages/react-components/priority-overflow/src/consts.ts", - "hash": "6620526346221759496" - }, - { - "file": "packages/react-components/priority-overflow/src/createResizeObserver.ts", - "hash": "4909053736922267358" - }, - { - "file": "packages/react-components/priority-overflow/src/debounce.test.ts", - "hash": "5063760544945907806" - }, - { - "file": "packages/react-components/priority-overflow/src/debounce.ts", - "hash": "17670239388147233622" - }, - { - "file": "packages/react-components/priority-overflow/src/index.ts", - "hash": "3206036393944881754" - }, - { - "file": "packages/react-components/priority-overflow/src/overflowManager.ts", - "hash": "9555740708619762309" - }, - { - "file": "packages/react-components/priority-overflow/src/priorityQueue.test.ts", - "hash": "16760683918500211316" - }, - { - "file": "packages/react-components/priority-overflow/src/priorityQueue.ts", - "hash": "12058761107106633401" - }, - { - "file": "packages/react-components/priority-overflow/src/types.ts", - "hash": "3269039576612425811" - }, - { - "file": "packages/react-components/priority-overflow/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/priority-overflow/tsconfig.lib.json", - "hash": "14975475306433073951" - }, - { - "file": "packages/react-components/priority-overflow/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/ssr-tests": [ - { - "file": "apps/ssr-tests/CHANGELOG.json", - "hash": "1972360179664073596" - }, - { - "file": "apps/ssr-tests/CHANGELOG.md", - "hash": "10968265984611611699" - }, - { - "file": "apps/ssr-tests/just.config.ts", - "hash": "994669034758141798" - }, - { - "file": "apps/ssr-tests/package.json", - "hash": "7229768634367163191", - "deps": [ - "npm:tslib", - "@fluentui/react", - "npm:@microsoft/load-themed-styles", - "npm:@types/mocha", - "@fluentui/public-docsite-resources", - "npm:mocha", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "apps/ssr-tests/project.json", - "hash": "1374228985476810396" - }, - { - "file": "apps/ssr-tests/test/test.js", - "hash": "13862241030754584160" - }, - { - "file": "apps/ssr-tests/webpack.config.js", - "hash": "4897565737584022724" - } - ], - "@fluentui/scripts-api-extractor": [ - { - "file": "scripts/api-extractor/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/api-extractor/api-extractor.common.json", - "hash": "2748281453618585856" - }, - { - "file": "scripts/api-extractor/api-extractor.common.v-next.json", - "hash": "13189487548181031930" - }, - { - "file": "scripts/api-extractor/jest.config.js", - "hash": "9107139503166004092" - }, - { - "file": "scripts/api-extractor/package.json", - "hash": "6434448276705142187" - }, - { - "file": "scripts/api-extractor/project.json", - "hash": "10051297786450075718" - }, - { - "file": "scripts/api-extractor/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/api-extractor/tsconfig.lib.json", - "hash": "3753806828268919288" - }, - { - "file": "scripts/api-extractor/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/theme-designer": [ - { - "file": "packages/react-components/theme-designer/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/theme-designer/.eslintrc.json", - "hash": "8960568516666702720" - }, - { - "file": "packages/react-components/theme-designer/.storybook/docs-root-theme-designer.css", - "hash": "18108071375275259207" - }, - { - "file": "packages/react-components/theme-designer/.storybook/main.js", - "hash": "8606236827640245693" - }, - { - "file": "packages/react-components/theme-designer/.storybook/preview.js", - "hash": "1921063914901244173" - }, - { - "file": "packages/react-components/theme-designer/.storybook/tsconfig.json", - "hash": "14109446059604296292" - }, - { - "file": "packages/react-components/theme-designer/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/theme-designer/CHANGELOG.json", - "hash": "5851783219770066992" - }, - { - "file": "packages/react-components/theme-designer/CHANGELOG.md", - "hash": "8975015774552523747" - }, - { - "file": "packages/react-components/theme-designer/LICENSE", - "hash": "10180586615754479660" - }, - { - "file": "packages/react-components/theme-designer/README.md", - "hash": "14064362199792243849" - }, - { - "file": "packages/react-components/theme-designer/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/theme-designer/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/theme-designer/etc/theme-designer.api.md", - "hash": "11098378957995542872" - }, - { - "file": "packages/react-components/theme-designer/jest.config.js", - "hash": "16512775771668900261" - }, - { - "file": "packages/react-components/theme-designer/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/theme-designer/package.json", - "hash": "7658291426595211212", - "deps": [ - "@fluentui/react-alert", - "@fluentui/react-components", - "@fluentui/react-context-selector", - "npm:@fluentui/react-icons", - "@fluentui/react-storybook-addon-export-to-sandbox", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "npm:@types/dedent", - "npm:codesandbox-import-utils", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/theme-designer/project.json", - "hash": "2501994155968039113" - }, - { - "file": "packages/react-components/theme-designer/public/favicon.ico", - "hash": "16917280242094002623" - }, - { - "file": "packages/react-components/theme-designer/src/Context/ThemeDesignerContext.tsx", - "hash": "6521680253608875060" - }, - { - "file": "packages/react-components/theme-designer/src/ThemeDesigner.stories.mdx", - "hash": "17563249137426555093" - }, - { - "file": "packages/react-components/theme-designer/src/ThemeDesigner.styles.ts", - "hash": "10646684073193415474" - }, - { - "file": "packages/react-components/theme-designer/src/ThemeDesigner.tsx", - "hash": "6850157977355746733" - }, - { - "file": "packages/react-components/theme-designer/src/ThemeDesigner.types.ts", - "hash": "7008675520752455334" - }, - { - "file": "packages/react-components/theme-designer/src/colors/csswg.ts", - "hash": "14081639457171883273" - }, - { - "file": "packages/react-components/theme-designer/src/colors/geometry.ts", - "hash": "5151745733028687223" - }, - { - "file": "packages/react-components/theme-designer/src/colors/hueMap.ts", - "hash": "6840317620183457137" - }, - { - "file": "packages/react-components/theme-designer/src/colors/index.ts", - "hash": "10120776492809956055" - }, - { - "file": "packages/react-components/theme-designer/src/colors/palettes.ts", - "hash": "594085197204633186" - }, - { - "file": "packages/react-components/theme-designer/src/colors/templates.ts", - "hash": "7173519415315531121" - }, - { - "file": "packages/react-components/theme-designer/src/colors/types.ts", - "hash": "3696924197174361435" - }, - { - "file": "packages/react-components/theme-designer/src/components/ColorTokens/AccessibilityList.tsx", - "hash": "13584096774872756219" - }, - { - "file": "packages/react-components/theme-designer/src/components/ColorTokens/AccessiblePairs.ts", - "hash": "9980370910954070894" - }, - { - "file": "packages/react-components/theme-designer/src/components/ColorTokens/ColorTokens.stories.tsx", - "hash": "17717517716066720300" - }, - { - "file": "packages/react-components/theme-designer/src/components/ColorTokens/ColorTokens.tsx", - "hash": "15029148600024713618" - }, - { - "file": "packages/react-components/theme-designer/src/components/ColorTokens/TokenIssueList.tsx", - "hash": "456852385357751599" - }, - { - "file": "packages/react-components/theme-designer/src/components/ColorTokens/TokenList.style.ts", - "hash": "6110208615250697552" - }, - { - "file": "packages/react-components/theme-designer/src/components/ColorTokens/TokenList.tsx", - "hash": "6839783308263373433" - }, - { - "file": "packages/react-components/theme-designer/src/components/ColorTokens/UsageList.ts", - "hash": "6471683859253310231" - }, - { - "file": "packages/react-components/theme-designer/src/components/Content/Content.tsx", - "hash": "8865181677608404415" - }, - { - "file": "packages/react-components/theme-designer/src/components/Demo/Demo.tsx", - "hash": "9430858355440318210" - }, - { - "file": "packages/react-components/theme-designer/src/components/Export/ExportLink.tsx", - "hash": "7106033445972881846" - }, - { - "file": "packages/react-components/theme-designer/src/components/Export/ExportPanel.tsx", - "hash": "6672747784401972674" - }, - { - "file": "packages/react-components/theme-designer/src/components/Header/Header.tsx", - "hash": "1884392546660410312" - }, - { - "file": "packages/react-components/theme-designer/src/components/Nav/Nav.tsx", - "hash": "17160060027347264573" - }, - { - "file": "packages/react-components/theme-designer/src/components/Palette/Palette.stories.tsx", - "hash": "6708215907448994313" - }, - { - "file": "packages/react-components/theme-designer/src/components/Palette/Palette.tsx", - "hash": "4659580268217856921" - }, - { - "file": "packages/react-components/theme-designer/src/components/Sidebar/AccessibilityPanel.tsx", - "hash": "6455399193904547699" - }, - { - "file": "packages/react-components/theme-designer/src/components/Sidebar/Form.tsx", - "hash": "11931296187612905580" - }, - { - "file": "packages/react-components/theme-designer/src/components/Sidebar/Sidebar.tsx", - "hash": "17598468332394862702" - }, - { - "file": "packages/react-components/theme-designer/src/components/TokenBoxes/TokenBoxes.stories.tsx", - "hash": "9135371313045620466" - }, - { - "file": "packages/react-components/theme-designer/src/components/TokenBoxes/TokenBoxes.tsx", - "hash": "13667538306866313466" - }, - { - "file": "packages/react-components/theme-designer/src/index.ts", - "hash": "13556419056930201248" - }, - { - "file": "packages/react-components/theme-designer/src/utils/brandColors.ts", - "hash": "4703220043784343979" - }, - { - "file": "packages/react-components/theme-designer/src/utils/getAccessibilityChecker.ts", - "hash": "1858552788568779359" - }, - { - "file": "packages/react-components/theme-designer/src/utils/getBrandTokensFromPalette.ts", - "hash": "11734162430969398099" - }, - { - "file": "packages/react-components/theme-designer/src/utils/getOverridableTokenBrandColors.ts", - "hash": "13942400570012229410" - }, - { - "file": "packages/react-components/theme-designer/src/utils/themeList.ts", - "hash": "16498805653931489221" - }, - { - "file": "packages/react-components/theme-designer/src/utils/toString.ts", - "hash": "15697896118709132521" - }, - { - "file": "packages/react-components/theme-designer/src/utils/useDebounce.ts", - "hash": "8761248074653183998" - }, - { - "file": "packages/react-components/theme-designer/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/theme-designer/tsconfig.lib.json", - "hash": "2330431448937249608" - }, - { - "file": "packages/react-components/theme-designer/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/scripts-tasks": [ - { - "file": "scripts/tasks/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/tasks/jest.config.js", - "hash": "4708879655841723493" - }, - { - "file": "scripts/tasks/package.json", - "hash": "1141372761188294099", - "deps": [ - "@fluentui/scripts-monorepo", - "@fluentui/scripts-utils", - "@fluentui/scripts-prettier", - "npm:flamegrill" - ] - }, - { - "file": "scripts/tasks/project.json", - "hash": "965696958534677795" - }, - { - "file": "scripts/tasks/src/api-extractor.ts", - "hash": "9347093659713672189" - }, - { - "file": "scripts/tasks/src/argv.spec.ts", - "hash": "10864686402712112244" - }, - { - "file": "scripts/tasks/src/argv.ts", - "hash": "9089616204911607118" - }, - { - "file": "scripts/tasks/src/babel.ts", - "hash": "15123611823011343405" - }, - { - "file": "scripts/tasks/src/clean.ts", - "hash": "15254131685435404356" - }, - { - "file": "scripts/tasks/src/copy.ts", - "hash": "7659902067209473182" - }, - { - "file": "scripts/tasks/src/eslint.ts", - "hash": "8568875961692972591" - }, - { - "file": "scripts/tasks/src/generate-api.ts", - "hash": "9894536861852274383" - }, - { - "file": "scripts/tasks/src/index.ts", - "hash": "8224622240191636854" - }, - { - "file": "scripts/tasks/src/jest.ts", - "hash": "10455500877410106889" - }, - { - "file": "scripts/tasks/src/lint-imports.ts", - "hash": "12249387039371508759" - }, - { - "file": "scripts/tasks/src/perf-task/env.ts", - "hash": "12915350541218118666" - }, - { - "file": "scripts/tasks/src/perf-task/index.ts", - "hash": "5355819150311401782" - }, - { - "file": "scripts/tasks/src/perf-task/perf-test.ts", - "hash": "11772931894476179226" - }, - { - "file": "scripts/tasks/src/perf-task/settings.ts", - "hash": "277930756461011304" - }, - { - "file": "scripts/tasks/src/postprocess-amd.ts", - "hash": "16748273849080544377" - }, - { - "file": "scripts/tasks/src/postprocess.ts", - "hash": "8523540960661454852" - }, - { - "file": "scripts/tasks/src/presets.ts", - "hash": "1602287635639050721" - }, - { - "file": "scripts/tasks/src/prettier.ts", - "hash": "7736749199691527952" - }, - { - "file": "scripts/tasks/src/sass.ts", - "hash": "1665001166635814228" - }, - { - "file": "scripts/tasks/src/storybook.ts", - "hash": "6223916877426257565" - }, - { - "file": "scripts/tasks/src/swc.ts", - "hash": "9077529349977385172" - }, - { - "file": "scripts/tasks/src/ts.ts", - "hash": "6299748037607840284" - }, - { - "file": "scripts/tasks/src/type-check.ts", - "hash": "257376398191037736" - }, - { - "file": "scripts/tasks/src/utils.spec.ts", - "hash": "5122114332452916234" - }, - { - "file": "scripts/tasks/src/utils.ts", - "hash": "12065994095118738331" - }, - { - "file": "scripts/tasks/src/verify-packaging.ts", - "hash": "11797726481686014501" - }, - { - "file": "scripts/tasks/src/webpack.ts", - "hash": "13272387079461955495" - }, - { - "file": "scripts/tasks/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/tasks/tsconfig.lib.json", - "hash": "12941910922159424720" - }, - { - "file": "scripts/tasks/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/vr-tests-react-components": [ - { - "file": "apps/vr-tests-react-components/.eslintrc.json", - "hash": "17051087815880730676" - }, - { - "file": "apps/vr-tests-react-components/.storybook/main.js", - "hash": "16447464207126584132" - }, - { - "file": "apps/vr-tests-react-components/.storybook/manager.js", - "hash": "8031267414392898657" - }, - { - "file": "apps/vr-tests-react-components/.storybook/preview.js", - "hash": "1405562776238959726" - }, - { - "file": "apps/vr-tests-react-components/CHANGELOG.json", - "hash": "8713462158622485954" - }, - { - "file": "apps/vr-tests-react-components/CHANGELOG.md", - "hash": "922481796685944490" - }, - { - "file": "apps/vr-tests-react-components/jest.config.js", - "hash": "18250610868151833128" - }, - { - "file": "apps/vr-tests-react-components/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "apps/vr-tests-react-components/package.json", - "hash": "15467568357846093319", - "deps": [ - "@fluentui/react-accordion", - "@fluentui/react-avatar", - "@fluentui/react-badge", - "@fluentui/react-button", - "@fluentui/react-calendar-compat", - "@fluentui/react-card", - "@fluentui/react-checkbox", - "@fluentui/react-combobox", - "@fluentui/react-context-selector", - "@fluentui/react-datepicker-compat", - "@fluentui/react-dialog", - "@fluentui/react-divider", - "@fluentui/react-drawer", - "@fluentui/react-field", - "npm:@fluentui/react-icons", - "@fluentui/react-image", - "@fluentui/react-infolabel", - "@fluentui/react-input", - "@fluentui/react-label", - "@fluentui/react-link", - "@fluentui/react-menu", - "@fluentui/react-message-bar", - "@fluentui/react-persona", - "@fluentui/react-popover", - "@fluentui/react-portal", - "@fluentui/react-positioning", - "@fluentui/react-progress", - "@fluentui/react-provider", - "@fluentui/react-radio", - "@fluentui/react-search-preview", - "@fluentui/react-select", - "@fluentui/react-shared-contexts", - "@fluentui/react-skeleton", - "@fluentui/react-slider", - "@fluentui/react-spinner", - "@fluentui/react-spinbutton", - "@fluentui/react-storybook-addon", - "@fluentui/react-storybook-addon-export-to-sandbox", - "@fluentui/react-switch", - "@fluentui/react-table", - "@fluentui/react-tabs", - "@fluentui/react-tags", - "@fluentui/react-text", - "@fluentui/react-textarea", - "@fluentui/react-theme", - "@fluentui/react-timepicker-compat-preview", - "@fluentui/react-toast", - "@fluentui/react-tooltip", - "@fluentui/react-toolbar", - "@fluentui/react-tree", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/react-breadcrumb", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-storybook" - ] - }, - { - "file": "apps/vr-tests-react-components/project.json", - "hash": "17568527081165183056" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Accordion/Accordion.stories.tsx", - "hash": "10802056647365454387" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Accordion/AccordionFocusInteractions.stories.tsx", - "hash": "12477522633746407895" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Avatar.stories.tsx", - "hash": "11835834961897487764" - }, - { - "file": "apps/vr-tests-react-components/src/stories/AvatarGroup.stories.tsx", - "hash": "4929814886456362496" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Badge/BadgeAppearance.stories.tsx", - "hash": "10168539343704943738" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Badge/BadgeSize.stories.tsx", - "hash": "16160796655612161127" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Badge/utils.ts", - "hash": "6118267633036591097" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Breadcrumb/Breadcrumb.stories.tsx", - "hash": "17471728733473708203" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Breadcrumb/utils.tsx", - "hash": "8994666879173275795" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Button/Button.stories.tsx", - "hash": "8952848022067892547" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Button/CompoundButton.stories.tsx", - "hash": "5035074194925427883" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Button/CompoundButtonDefault.stories.tsx", - "hash": "1305553845183934325" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Button/MenuButton.stories.tsx", - "hash": "13965237860398268503" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Button/ToggleButton.stories.tsx", - "hash": "893838250947943192" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Button/utils.ts", - "hash": "17518265861498153706" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Card/Card.stories.tsx", - "hash": "14477985068019565096" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Card/CardInteractive.stories.tsx", - "hash": "186550975270387769" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Card/CardSelectable.stories.tsx", - "hash": "5785195401617980058" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Card/utils.tsx", - "hash": "5969705096698007032" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Checkbox.stories.tsx", - "hash": "14302551104030304517" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Combobox.stories.tsx", - "hash": "4653018683490688054" - }, - { - "file": "apps/vr-tests-react-components/src/stories/CounterBadge/CounterBadge.stories.tsx", - "hash": "239199618520874280" - }, - { - "file": "apps/vr-tests-react-components/src/stories/CustomStyleHooks.stories.tsx", - "hash": "236060052935181185" - }, - { - "file": "apps/vr-tests-react-components/src/stories/DatePickerCompat.stories.tsx", - "hash": "6549687002867576038" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Dialog/Dialog.stories.tsx", - "hash": "10532256696189809745" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Divider.stories.tsx", - "hash": "7482775426741585443" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Drawer/Drawer.stories.tsx", - "hash": "5294822480024344223" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Dropdown.stories.tsx", - "hash": "5679345717914244801" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Field.stories.tsx", - "hash": "2654387542189040184" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Image/Image.stories.tsx", - "hash": "9028033951370882415" - }, - { - "file": "apps/vr-tests-react-components/src/stories/InfoLabel.stories.tsx", - "hash": "9018757720315450699" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Input.stories.tsx", - "hash": "6082880859858442107" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Label.stories.tsx", - "hash": "7365811914943309065" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Link.stories.tsx", - "hash": "11164254909120924736" - }, - { - "file": "apps/vr-tests-react-components/src/stories/MakeStyles.stories.tsx", - "hash": "5374078103145095337" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Menu/Menu.stories.tsx", - "hash": "662425745359612659" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Menu/NestedMenuSmallViewportFlipped.stories.tsx", - "hash": "4207061815563668430" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Menu/NestedMenuSmallViewportStacked.stories.tsx", - "hash": "10843562005475523999" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Menu/ScrollableMenuSmallViewport.stories.tsx", - "hash": "13072984958963346506" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Menu/index.stories.tsx", - "hash": "1566494951297209959" - }, - { - "file": "apps/vr-tests-react-components/src/stories/MessageBar/MessageBar.stories.tsx", - "hash": "15938873440241031592" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Persona.stories.tsx", - "hash": "5574790192439785115" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Popover.stories.tsx", - "hash": "9052399005531340378" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Portal.stories.tsx", - "hash": "1005202949174245424" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Positioning.stories.tsx", - "hash": "7715953737126353587" - }, - { - "file": "apps/vr-tests-react-components/src/stories/PresenceBadge.stories.tsx", - "hash": "2647256473336266202" - }, - { - "file": "apps/vr-tests-react-components/src/stories/ProgressBar.stories.tsx", - "hash": "10031985096183867134" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Radio.stories.tsx", - "hash": "9787853735635171255" - }, - { - "file": "apps/vr-tests-react-components/src/stories/SearchBox.stories.tsx", - "hash": "6689146726273525192" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Select.stories.tsx", - "hash": "13570490118904764464" - }, - { - "file": "apps/vr-tests-react-components/src/stories/ShadowDOM/ShadowDOMDefault.stories.tsx", - "hash": "5123752633212812486" - }, - { - "file": "apps/vr-tests-react-components/src/stories/ShadowDOM/ShadowDOMPortal.stories.tsx", - "hash": "3054045323519028786" - }, - { - "file": "apps/vr-tests-react-components/src/stories/ShadowDOM/index.stories.tsx", - "hash": "14320345630061803079" - }, - { - "file": "apps/vr-tests-react-components/src/stories/ShadowDOM/utils.tsx", - "hash": "1966017359067066561" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Skeleton.stories.tsx", - "hash": "10611661155375095131" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Slider.stories.tsx", - "hash": "7314685389185684835" - }, - { - "file": "apps/vr-tests-react-components/src/stories/SpinButton.stories.tsx", - "hash": "9292538058178901686" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Spinner.stories.tsx", - "hash": "2744820722201482553" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Switch.stories.tsx", - "hash": "14911403922953624770" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Table.stories.tsx", - "hash": "1638611668631605166" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tabs.stories.tsx", - "hash": "13601518669064467851" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tag/InteractionTag.stories.tsx", - "hash": "4840942032152646191" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tag/InteractionTagAppearances.stories.tsx", - "hash": "8980561851146009031" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tag/InteractionTagShape.stories.tsx", - "hash": "4929897156362970104" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tag/Tag.stories.tsx", - "hash": "12870879108242600931" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tag/TagAppearances.stories.tsx", - "hash": "15571718618318180513" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tag/TagGroup.stories.tsx", - "hash": "16134648819693825642" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tag/TagShape.stories.tsx", - "hash": "12356360998116909355" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Text.stories.tsx", - "hash": "2693658843261750616" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Textarea.stories.tsx", - "hash": "10747023707033333684" - }, - { - "file": "apps/vr-tests-react-components/src/stories/TimePicker.stories.tsx", - "hash": "16205435768899076152" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Toast/Toast.stories.tsx", - "hash": "17283697070771380505" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Toolbar/Toolbar.stories.tsx", - "hash": "1049562789492471246" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Toolbar/utils.ts", - "hash": "17710412857489277107" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tooltip.stories.tsx", - "hash": "2877402368872042170" - }, - { - "file": "apps/vr-tests-react-components/src/stories/Tree.stories.tsx", - "hash": "8798218328353603049" - }, - { - "file": "apps/vr-tests-react-components/src/utilities/TestWrapperDecorator.tsx", - "hash": "17367712127918236987" - }, - { - "file": "apps/vr-tests-react-components/src/utilities/getStoryVariant.ts", - "hash": "306062868073991727" - }, - { - "file": "apps/vr-tests-react-components/src/utilities/index.ts", - "hash": "4163392530867960544" - }, - { - "file": "apps/vr-tests-react-components/src/utilities/types.ts", - "hash": "12540806464937045320" - }, - { - "file": "apps/vr-tests-react-components/src/utilities/utilities.test.tsx", - "hash": "12678737986393557967" - }, - { - "file": "apps/vr-tests-react-components/src/utilities/withStoryWrightSteps.tsx", - "hash": "9632377530298948430" - }, - { - "file": "apps/vr-tests-react-components/tsconfig.json", - "hash": "14896982538111972183" - } - ], - "@fluentui/react-window-provider": [ - { - "file": "packages/react-window-provider/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-window-provider/.npmignore", - "hash": "7699079327417375383" - }, - { - "file": "packages/react-window-provider/CHANGELOG.json", - "hash": "17196202453103955991" - }, - { - "file": "packages/react-window-provider/CHANGELOG.md", - "hash": "14116626830318945402" - }, - { - "file": "packages/react-window-provider/LICENSE", - "hash": "11661279664396385797" - }, - { - "file": "packages/react-window-provider/README.md", - "hash": "7476292892779210215" - }, - { - "file": "packages/react-window-provider/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/react-window-provider/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-window-provider/etc/react-window-provider.api.md", - "hash": "17731887639684768729" - }, - { - "file": "packages/react-window-provider/jest.config.js", - "hash": "12858682342254308337" - }, - { - "file": "packages/react-window-provider/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-window-provider/package.json", - "hash": "16162568207572742971", - "deps": [ - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/test-utilities", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-window-provider/project.json", - "hash": "9373053046562156021" - }, - { - "file": "packages/react-window-provider/src/WindowProvider.test.tsx", - "hash": "2877876259272044445" - }, - { - "file": "packages/react-window-provider/src/WindowProvider.tsx", - "hash": "2732980198195700826" - }, - { - "file": "packages/react-window-provider/src/index.ts", - "hash": "9447988520403946318" - }, - { - "file": "packages/react-window-provider/src/version.ts", - "hash": "11880968333285263790" - }, - { - "file": "packages/react-window-provider/tsconfig.json", - "hash": "17912118017775714616" - } - ], - "@fluentui/react-storybook-addon-export-to-sandbox": [ - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/.eslintrc.json", - "hash": "11018738359270224912" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/LICENSE", - "hash": "5967641454269899786" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/README.md", - "hash": "2499909989248215183" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/etc/react-storybook-addon-export-to-sandbox.api.md", - "hash": "5494337558277006328" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/jest.config.js", - "hash": "9919031605228870875" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/package.json", - "hash": "5155999668375146046", - "deps": [ - "npm:@swc/helpers", - "npm:@types/dedent", - "npm:codesandbox-import-utils", - "@fluentui/babel-preset-storybook-full-source", - "npm:dedent", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@storybook/addons" - ] - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/preset.js", - "hash": "6822632498536641539" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/project.json", - "hash": "6370982920554095857" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/decorators/with-export-to-sandbox-button.ts", - "hash": "466454051426915967" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/getDependencies.test.ts", - "hash": "17898521010029603023" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/getDependencies.ts", - "hash": "15483781329479952564" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/index.ts", - "hash": "15555827964896839803" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preset.ts", - "hash": "17366032390171216343" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preview.ts", - "hash": "6360847473423006182" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/public-types.ts", - "hash": "12101660067213946265" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-factory.spec.ts", - "hash": "14851454481375425606" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-factory.ts", - "hash": "3768624125514363470" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-scaffold.spec.ts", - "hash": "904384803371274770" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-scaffold.ts", - "hash": "8649250263437017824" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-utils.spec.ts", - "hash": "5331689109961892313" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-utils.ts", - "hash": "16034308923572524868" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/styles.css", - "hash": "18413253947347252396" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/types.ts", - "hash": "15294403858832099609" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/utils.ts", - "hash": "1265135705758458783" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/webpack.spec.ts", - "hash": "11999431958700731244" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/src/webpack.ts", - "hash": "14753243909660912317" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.lib.json", - "hash": "12699777983452779566" - }, - { - "file": "packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-conformance": [ - { - "file": "packages/react-conformance/.eslintrc.json", - "hash": "11018738359270224912" - }, - { - "file": "packages/react-conformance/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-conformance/CHANGELOG.json", - "hash": "6578657003336071113" - }, - { - "file": "packages/react-conformance/CHANGELOG.md", - "hash": "66641472905235873" - }, - { - "file": "packages/react-conformance/LICENSE", - "hash": "7780562789533159941" - }, - { - "file": "packages/react-conformance/README.md", - "hash": "6556208184847558914" - }, - { - "file": "packages/react-conformance/config/api-extractor.json", - "hash": "13718895879978423572" - }, - { - "file": "packages/react-conformance/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-conformance/etc/react-conformance.api.md", - "hash": "840228627974102754" - }, - { - "file": "packages/react-conformance/jest.config.js", - "hash": "5527543839095969732" - }, - { - "file": "packages/react-conformance/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-conformance/package.json", - "hash": "58094267094777417", - "deps": [ - "npm:lodash", - "npm:chalk", - "npm:react-docgen-typescript", - "npm:react-is", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:@testing-library/react", - "npm:jest", - "npm:react", - "npm:react-dom", - "npm:typescript" - ] - }, - { - "file": "packages/react-conformance/project.json", - "hash": "214209136939617400" - }, - { - "file": "packages/react-conformance/src/defaultErrorMessages.tsx", - "hash": "1214813805605604373" - }, - { - "file": "packages/react-conformance/src/defaultTests.tsx", - "hash": "214491534434202084" - }, - { - "file": "packages/react-conformance/src/index.ts", - "hash": "13966697755180852351" - }, - { - "file": "packages/react-conformance/src/isConformant.ts", - "hash": "2029686572280398735" - }, - { - "file": "packages/react-conformance/src/types.ts", - "hash": "1086329725081600766" - }, - { - "file": "packages/react-conformance/src/utils/createTsProgram.ts", - "hash": "15323993820830846187" - }, - { - "file": "packages/react-conformance/src/utils/errorMessages.ts", - "hash": "12936357018639293921" - }, - { - "file": "packages/react-conformance/src/utils/getCallbackArguments.test.ts", - "hash": "3190033166404173726" - }, - { - "file": "packages/react-conformance/src/utils/getCallbackArguments.ts", - "hash": "10149531500130398942" - }, - { - "file": "packages/react-conformance/src/utils/getComponentDoc.ts", - "hash": "16416622701949776911" - }, - { - "file": "packages/react-conformance/src/utils/getPackagePath.ts", - "hash": "14010501437001551216" - }, - { - "file": "packages/react-conformance/src/utils/index.ts", - "hash": "17773056335241924487" - }, - { - "file": "packages/react-conformance/src/utils/merge.test.ts", - "hash": "11835591977761030799" - }, - { - "file": "packages/react-conformance/src/utils/merge.ts", - "hash": "16613229026682068851" - }, - { - "file": "packages/react-conformance/src/utils/validateCallbackArguments.test.ts", - "hash": "3119507892883401399" - }, - { - "file": "packages/react-conformance/src/utils/validateCallbackArguments.ts", - "hash": "14962630765061713958" - }, - { - "file": "packages/react-conformance/tsconfig.json", - "hash": "1064149269220154025" - }, - { - "file": "packages/react-conformance/tsconfig.lib.json", - "hash": "16857783929210866443" - }, - { - "file": "packages/react-conformance/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-calendar-compat": [ - { - "file": "packages/react-components/react-calendar-compat/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-calendar-compat/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-calendar-compat/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-calendar-compat/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-calendar-compat/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-calendar-compat/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-calendar-compat/CHANGELOG.json", - "hash": "7092211169174649637" - }, - { - "file": "packages/react-components/react-calendar-compat/CHANGELOG.md", - "hash": "2828901146932446647" - }, - { - "file": "packages/react-components/react-calendar-compat/LICENSE", - "hash": "8614029084732105219" - }, - { - "file": "packages/react-components/react-calendar-compat/README.md", - "hash": "4014635926778646785" - }, - { - "file": "packages/react-components/react-calendar-compat/bundle-size/Calendar.fixture.js", - "hash": "10845155123644884091" - }, - { - "file": "packages/react-components/react-calendar-compat/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-calendar-compat/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-calendar-compat/etc/react-calendar-compat.api.md", - "hash": "11280265714401482809" - }, - { - "file": "packages/react-components/react-calendar-compat/jest.config.js", - "hash": "17594938369918384400" - }, - { - "file": "packages/react-components/react-calendar-compat/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-calendar-compat/package.json", - "hash": "12780475791619375299", - "deps": [ - "@fluentui/keyboard-keys", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-calendar-compat/project.json", - "hash": "10336287111758931158" - }, - { - "file": "packages/react-components/react-calendar-compat/src/Calendar.ts", - "hash": "569100325234550221" - }, - { - "file": "packages/react-components/react-calendar-compat/src/CalendarDay.ts", - "hash": "8597632098014907945" - }, - { - "file": "packages/react-components/react-calendar-compat/src/CalendarDayGrid.ts", - "hash": "9006730546358771150" - }, - { - "file": "packages/react-components/react-calendar-compat/src/CalendarMonth.ts", - "hash": "15700967951441475220" - }, - { - "file": "packages/react-components/react-calendar-compat/src/CalendarPicker.ts", - "hash": "14523906469553885140" - }, - { - "file": "packages/react-components/react-calendar-compat/src/CalendarYear.ts", - "hash": "5034780660418317532" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.test.tsx", - "hash": "13664934943248530105" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.tsx", - "hash": "12075814383556349697" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.types.ts", - "hash": "6962729070181472361" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/Calendar/defaults.ts", - "hash": "12150049920056951841" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/Calendar/index.ts", - "hash": "280614579109648880" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/Calendar/useCalendarStyles.styles.ts", - "hash": "1006542229430292590" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDay/CalendarDay.tsx", - "hash": "7046653937375099156" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDay/CalendarDay.types.ts", - "hash": "7254463921971646205" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDay/index.ts", - "hash": "5069320966498210852" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDay/useCalendarDayStyles.styles.ts", - "hash": "14296708635223528064" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.test.tsx", - "hash": "5166513198801435477" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.tsx", - "hash": "14150020809682641348" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.types.ts", - "hash": "16844172177097176878" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarGridDayCell.tsx", - "hash": "8539280218068598115" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarGridRow.tsx", - "hash": "12406916342262678923" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarMonthHeaderRow.tsx", - "hash": "4731438398885101298" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/index.ts", - "hash": "8094953342360531716" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useCalendarDayGridStyles.styles.ts", - "hash": "9465252406194562240" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useWeekCornerStyles.styles.ts", - "hash": "14768584383717911854" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useWeeks.ts", - "hash": "5738594502898152200" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarMonth/CalendarMonth.tsx", - "hash": "16366612975234214650" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarMonth/CalendarMonth.types.ts", - "hash": "17523810711583792348" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarMonth/index.ts", - "hash": "17307579052286375469" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarMonth/useCalendarMonthStyles.ts", - "hash": "4576688148791858990" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarPicker/CalendarPicker.types.ts", - "hash": "4275469484249014334" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarPicker/index.ts", - "hash": "14592164704749861149" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarPicker/useCalendarPickerStyles.styles.ts", - "hash": "8049535238955487663" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarYear/CalendarYear.tsx", - "hash": "2490533279016265988" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarYear/CalendarYear.types.ts", - "hash": "11446533358687332984" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarYear/index.ts", - "hash": "18404670979156991646" - }, - { - "file": "packages/react-components/react-calendar-compat/src/components/CalendarYear/useCalendarYearStyles.styles.ts", - "hash": "8791019775600337052" - }, - { - "file": "packages/react-components/react-calendar-compat/src/index.ts", - "hash": "11058792551302697956" - }, - { - "file": "packages/react-components/react-calendar-compat/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/animations.ts", - "hash": "11768504868995077808" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/constants.ts", - "hash": "6954577135884407208" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.defaults.ts", - "hash": "960516216584631364" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.test.ts", - "hash": "1328095693882055479" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.types.ts", - "hash": "3964238463408131802" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateFormatting/index.ts", - "hash": "11444866860731853863" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/dateGrid.types.ts", - "hash": "13869017007540650023" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/findAvailableDate.ts", - "hash": "1044521199169079412" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/getBoundedDateRange.ts", - "hash": "5151142947748778290" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/getDateRangeTypeToUse.ts", - "hash": "6352858266315262616" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/getDayGrid.ts", - "hash": "10043549393078829484" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/index.ts", - "hash": "10066372923074331696" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/isAfterMaxDate.ts", - "hash": "5477043376904704413" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/isBeforeMinDate.ts", - "hash": "7418121542564448874" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/isContiguous.ts", - "hash": "5454231782673888564" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateGrid/isRestrictedDate.ts", - "hash": "17835191090077548002" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateMath/dateMath.test.ts", - "hash": "10841282865769457042" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateMath/dateMath.ts", - "hash": "15051247567906633079" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/dateMath/index.ts", - "hash": "12772919650999189149" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/focus.ts", - "hash": "7882318112925005824" - }, - { - "file": "packages/react-components/react-calendar-compat/src/utils/index.ts", - "hash": "2304887399068246115" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarBestPractices.md", - "hash": "12332716352476795030" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarContiguousWork.stories.tsx", - "hash": "9107126930642284008" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarCustomDayCellRef.stories.tsx", - "hash": "1634922785720367782" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarDateBoundaries.stories.tsx", - "hash": "12778969296532591271" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarDefault.stories.tsx", - "hash": "1209565745415093032" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarDescription.md", - "hash": "621070059803414892" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarMarkedDays.stories.tsx", - "hash": "14380631099370286571" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarMonthOnly.stories.tsx", - "hash": "18071268346481390719" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarMonthSelection.stories.tsx", - "hash": "4355438240880441608" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarMultiDayView.stories.tsx", - "hash": "15852493648870531727" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarNonContiguousWorkWeekDays.stories.tsx", - "hash": "6659257569324158817" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarOverlaidMonthPicker.stories.tsx", - "hash": "6466716036656954449" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarSixWeeks.stories.tsx", - "hash": "4478784017377594668" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarWeekNumbers.stories.tsx", - "hash": "8784780254995702862" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/CalendarWeekSelection.stories.tsx", - "hash": "16213513011473001401" - }, - { - "file": "packages/react-components/react-calendar-compat/stories/Calendar/index.stories.tsx", - "hash": "16088818829018348985" - }, - { - "file": "packages/react-components/react-calendar-compat/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-calendar-compat/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-calendar-compat/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/fluent2-theme": [ - { - "file": "packages/fluent2-theme/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/fluent2-theme/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/fluent2-theme/CHANGELOG.json", - "hash": "14000262545189246502" - }, - { - "file": "packages/fluent2-theme/CHANGELOG.md", - "hash": "12092648922828663973" - }, - { - "file": "packages/fluent2-theme/LICENSE", - "hash": "13314032916801402668" - }, - { - "file": "packages/fluent2-theme/README.md", - "hash": "5178866690875074267" - }, - { - "file": "packages/fluent2-theme/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/fluent2-theme/package.json", - "hash": "15050535793510851951", - "deps": [ - "@fluentui/react", - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "packages/fluent2-theme/project.json", - "hash": "4537333210814173348" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/BasePicker.styles.ts", - "hash": "15260600776551767882" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Breadcrumb.styles.ts", - "hash": "15372291180115099675" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Button.styles.ts", - "hash": "17753640107838954652" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Callout.styles.ts", - "hash": "16077482378149077721" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Check.styles.ts", - "hash": "13810909077831846777" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Checkbox.styles.ts", - "hash": "3424414869442365214" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/ChoiceGroup.styles.ts", - "hash": "7308999010808507589" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/ChoiceGroupOption.styles.ts", - "hash": "15788544625313028693" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/ColorPickerGridStyles.styles.ts", - "hash": "16658141192552402060" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/CommandBar.styles.ts", - "hash": "12555985599653262034" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/CommandBarButton.styles.ts", - "hash": "6257552873011644753" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/ContextualMenu.styles.ts", - "hash": "6595251738348705689" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/DetailsRowCheck.styles.ts", - "hash": "15893703503136844888" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Dialog.styles.ts", - "hash": "15676106242050735701" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Dropdown.styles.ts", - "hash": "17429374229032292005" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/HoverCard.styles.ts", - "hash": "11420731975731615304" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/MessageBar.styles.ts", - "hash": "6970817193015414941" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Modal.styles.ts", - "hash": "6149565223591052328" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Pivot.styles.ts", - "hash": "17110489539848042310" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/SearchBox.styles.ts", - "hash": "11165416111356502027" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Slider.styles.ts", - "hash": "1801686107186612471" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/SpinButton.styles.ts", - "hash": "5436783297629394729" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Spinner.styles.ts", - "hash": "2297587064235108640" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/TagItem.styles.ts", - "hash": "8562803234129863321" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/TextField.styles.ts", - "hash": "4531925913638019222" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/Toggle.styles.ts", - "hash": "1148580698831778292" - }, - { - "file": "packages/fluent2-theme/src/componentStyles/inputStyleHelpers.utils.ts", - "hash": "10599679107732509558" - }, - { - "file": "packages/fluent2-theme/src/fluent2ComponentStyles.ts", - "hash": "4167974845032497451" - }, - { - "file": "packages/fluent2-theme/src/fluent2SharedColors.ts", - "hash": "17417864239864681637" - }, - { - "file": "packages/fluent2-theme/src/fluent2WebDarkTheme.ts", - "hash": "4115228166445543492" - }, - { - "file": "packages/fluent2-theme/src/fluent2WebLightTheme.ts", - "hash": "6879190915920168265" - }, - { - "file": "packages/fluent2-theme/src/index.ts", - "hash": "10220108571584631462" - }, - { - "file": "packages/fluent2-theme/src/types.ts", - "hash": "6590217542999449010" - }, - { - "file": "packages/fluent2-theme/src/version.ts", - "hash": "16446534884769303039" - }, - { - "file": "packages/fluent2-theme/tsconfig.json", - "hash": "6054155811259967380" - }, - { - "file": "packages/fluent2-theme/webpack.config.js", - "hash": "203595246380395220" - } - ], - "@fluentui/scripts-generators": [ - { - "file": "scripts/generators/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/generators/README.md", - "hash": "3244421341483603138" - }, - { - "file": "scripts/generators/copy-notices.js", - "hash": "8339956232807130894" - }, - { - "file": "scripts/generators/create-package/index.ts", - "hash": "1023464366955464488" - }, - { - "file": "scripts/generators/create-package/plop-templates/.npmignore", - "hash": "15779616407447347661" - }, - { - "file": "scripts/generators/create-package/plop-templates/LICENSE", - "hash": "7784678994578688470" - }, - { - "file": "scripts/generators/create-package/plop-templates-node/.eslintrc.json", - "hash": "11018738359270224912" - }, - { - "file": "scripts/generators/create-package/plop-templates-node/README.md", - "hash": "11488531901706867964" - }, - { - "file": "scripts/generators/create-package/plop-templates-node/jest.config.js", - "hash": "5767287689832801759" - }, - { - "file": "scripts/generators/create-package/plop-templates-node/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "scripts/generators/create-package/plop-templates-node/package.json.hbs", - "hash": "1858263664827995967" - }, - { - "file": "scripts/generators/create-package/plop-templates-node/src/index.ts", - "hash": "3244421341483603138" - }, - { - "file": "scripts/generators/create-package/plop-templates-node/tsconfig.json", - "hash": "14003963471471549059" - }, - { - "file": "scripts/generators/generate-package-manifest.js", - "hash": "829917185810683924" - }, - { - "file": "scripts/generators/generate-version-files.spec.ts", - "hash": "11734705974912052662" - }, - { - "file": "scripts/generators/generate-version-files.ts", - "hash": "16599489589663836752" - }, - { - "file": "scripts/generators/jest.config.js", - "hash": "17142233150211201331" - }, - { - "file": "scripts/generators/package.json", - "hash": "17736771304901104740", - "deps": ["@fluentui/scripts-monorepo", "@fluentui/scripts-projects-test"] - }, - { - "file": "scripts/generators/project.json", - "hash": "13911854573080798778" - }, - { - "file": "scripts/generators/rename-package.ts", - "hash": "18400035219499976562" - }, - { - "file": "scripts/generators/token-pipeline.ts", - "hash": "3747370135770113790" - }, - { - "file": "scripts/generators/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/generators/tsconfig.lib.json", - "hash": "504082678461750961" - }, - { - "file": "scripts/generators/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/scripts-cypress": [ - { - "file": "scripts/cypress/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/cypress/jest.config.js", - "hash": "518561776419926196" - }, - { - "file": "scripts/cypress/package.json", - "hash": "17552627759162863426" - }, - { - "file": "scripts/cypress/project.json", - "hash": "3565894995875395203" - }, - { - "file": "scripts/cypress/src/base.config.ts", - "hash": "15157171578083653468" - }, - { - "file": "scripts/cypress/src/fixtures/example.json", - "hash": "13882982864087580737" - }, - { - "file": "scripts/cypress/src/index.ts", - "hash": "16896299082554130027" - }, - { - "file": "scripts/cypress/src/support/commands.js", - "hash": "11219619752715906948" - }, - { - "file": "scripts/cypress/src/support/component-index.html", - "hash": "1832624220235093789" - }, - { - "file": "scripts/cypress/src/support/component.js", - "hash": "7239146018917213442" - }, - { - "file": "scripts/cypress/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/cypress/tsconfig.lib.json", - "hash": "7437868646531824504" - }, - { - "file": "scripts/cypress/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/code-sandbox": [ - { - "file": "packages/fluentui/code-sandbox/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/code-sandbox/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/code-sandbox/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/code-sandbox/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/code-sandbox/package.json", - "hash": "11253220741395450065", - "deps": [ - "@fluentui/docs-components", - "npm:lodash", - "@fluentui/eslint-plugin", - "@fluentui/react-northstar", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/code-sandbox/project.json", - "hash": "5162402659160918655" - }, - { - "file": "packages/fluentui/code-sandbox/src/KnobsSnippet.tsx", - "hash": "1773927934854982206" - }, - { - "file": "packages/fluentui/code-sandbox/src/SandboxApp.tsx", - "hash": "3987921530467467936" - }, - { - "file": "packages/fluentui/code-sandbox/src/createCallbackLogFormatter.ts", - "hash": "5527801291715599944" - }, - { - "file": "packages/fluentui/code-sandbox/src/index.ts", - "hash": "3876221794154391346" - }, - { - "file": "packages/fluentui/code-sandbox/src/knobComponents.tsx", - "hash": "12929511866022094531" - }, - { - "file": "packages/fluentui/code-sandbox/tsconfig.json", - "hash": "10710169321765083407" - } - ], - "@fluentui/react-combobox": [ - { - "file": "packages/react-components/react-combobox/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-combobox/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-combobox/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-combobox/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-combobox/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-combobox/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-combobox/CHANGELOG.json", - "hash": "3985528873419017670" - }, - { - "file": "packages/react-components/react-combobox/CHANGELOG.md", - "hash": "9154813673257028545" - }, - { - "file": "packages/react-components/react-combobox/LICENSE", - "hash": "9860549950015593842" - }, - { - "file": "packages/react-components/react-combobox/README.md", - "hash": "9155355691234160061" - }, - { - "file": "packages/react-components/react-combobox/bundle-size/Combobox.fixture.js", - "hash": "9982117868040139071" - }, - { - "file": "packages/react-components/react-combobox/bundle-size/Dropdown.fixture.js", - "hash": "8112300604899923822" - }, - { - "file": "packages/react-components/react-combobox/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-combobox/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-combobox/docs/Migration.md", - "hash": "15736839676233684150" - }, - { - "file": "packages/react-components/react-combobox/docs/Spec.md", - "hash": "13792868429925902060" - }, - { - "file": "packages/react-components/react-combobox/etc/react-combobox.api.md", - "hash": "12110621555092127445" - }, - { - "file": "packages/react-components/react-combobox/jest.config.js", - "hash": "14434437269927222502" - }, - { - "file": "packages/react-components/react-combobox/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-combobox/package.json", - "hash": "8415023961919121570", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-context-selector", - "@fluentui/react-field", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-portal", - "@fluentui/react-positioning", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-combobox/project.json", - "hash": "17856213337526301744" - }, - { - "file": "packages/react-components/react-combobox/src/Combobox.ts", - "hash": "13212991580912314567" - }, - { - "file": "packages/react-components/react-combobox/src/Dropdown.ts", - "hash": "18194367805350925119" - }, - { - "file": "packages/react-components/react-combobox/src/Listbox.ts", - "hash": "2994750780024488790" - }, - { - "file": "packages/react-components/react-combobox/src/Option.ts", - "hash": "8134140143396359331" - }, - { - "file": "packages/react-components/react-combobox/src/OptionGroup.ts", - "hash": "3135556529192386201" - }, - { - "file": "packages/react-components/react-combobox/src/Selection.ts", - "hash": "9515203752361595812" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/Combobox.test.tsx", - "hash": "11060583859767248781" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/Combobox.tsx", - "hash": "10311117368400437139" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/Combobox.types.ts", - "hash": "6722880387444505841" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/__snapshots__/Combobox.test.tsx.snap", - "hash": "84774976154997620" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/index.ts", - "hash": "6601828869047344697" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/renderCombobox.tsx", - "hash": "6280296408622563178" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/useCombobox.tsx", - "hash": "520267582978251132" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/useComboboxStyles.styles.ts", - "hash": "15274002347501714576" - }, - { - "file": "packages/react-components/react-combobox/src/components/Combobox/useInputTriggerSlot.ts", - "hash": "9223211072539326676" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/Dropdown.test.tsx", - "hash": "627380512353886242" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/Dropdown.tsx", - "hash": "5534345575162447099" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/Dropdown.types.ts", - "hash": "14900938450773068428" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/__snapshots__/Dropdown.test.tsx.snap", - "hash": "14529732928227940878" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/index.ts", - "hash": "2679793517316704607" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/renderDropdown.tsx", - "hash": "2334816031473000713" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/useButtonTriggerSlot.ts", - "hash": "17670001280220951598" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/useDropdown.tsx", - "hash": "7158597820481445308" - }, - { - "file": "packages/react-components/react-combobox/src/components/Dropdown/useDropdownStyles.styles.ts", - "hash": "8988619665109997777" - }, - { - "file": "packages/react-components/react-combobox/src/components/Listbox/Listbox.test.tsx", - "hash": "5240177981222686361" - }, - { - "file": "packages/react-components/react-combobox/src/components/Listbox/Listbox.tsx", - "hash": "11961102491274010486" - }, - { - "file": "packages/react-components/react-combobox/src/components/Listbox/Listbox.types.ts", - "hash": "2057681249960441904" - }, - { - "file": "packages/react-components/react-combobox/src/components/Listbox/__snapshots__/Listbox.test.tsx.snap", - "hash": "16313140357488500172" - }, - { - "file": "packages/react-components/react-combobox/src/components/Listbox/index.ts", - "hash": "10149829330954397429" - }, - { - "file": "packages/react-components/react-combobox/src/components/Listbox/renderListbox.tsx", - "hash": "9529356921915895894" - }, - { - "file": "packages/react-components/react-combobox/src/components/Listbox/useListbox.ts", - "hash": "9517705189017094768" - }, - { - "file": "packages/react-components/react-combobox/src/components/Listbox/useListboxStyles.styles.ts", - "hash": "10512360566143520474" - }, - { - "file": "packages/react-components/react-combobox/src/components/Option/Option.test.tsx", - "hash": "5177864859865280746" - }, - { - "file": "packages/react-components/react-combobox/src/components/Option/Option.tsx", - "hash": "12671939144116063908" - }, - { - "file": "packages/react-components/react-combobox/src/components/Option/Option.types.ts", - "hash": "3862608407678106174" - }, - { - "file": "packages/react-components/react-combobox/src/components/Option/__snapshots__/Option.test.tsx.snap", - "hash": "12111334467294524539" - }, - { - "file": "packages/react-components/react-combobox/src/components/Option/index.ts", - "hash": "3914311942511823178" - }, - { - "file": "packages/react-components/react-combobox/src/components/Option/renderOption.tsx", - "hash": "16662341201277600348" - }, - { - "file": "packages/react-components/react-combobox/src/components/Option/useOption.tsx", - "hash": "2142576164571353029" - }, - { - "file": "packages/react-components/react-combobox/src/components/Option/useOptionStyles.styles.ts", - "hash": "5670469110030125289" - }, - { - "file": "packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.test.tsx", - "hash": "4384866626424502977" - }, - { - "file": "packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.tsx", - "hash": "3182087730059989119" - }, - { - "file": "packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.types.ts", - "hash": "8445554751423183315" - }, - { - "file": "packages/react-components/react-combobox/src/components/OptionGroup/__snapshots__/OptionGroup.test.tsx.snap", - "hash": "163861498277196073" - }, - { - "file": "packages/react-components/react-combobox/src/components/OptionGroup/index.ts", - "hash": "16578744468575825163" - }, - { - "file": "packages/react-components/react-combobox/src/components/OptionGroup/renderOptionGroup.tsx", - "hash": "3110647036943882995" - }, - { - "file": "packages/react-components/react-combobox/src/components/OptionGroup/useOptionGroup.ts", - "hash": "11097943236829005456" - }, - { - "file": "packages/react-components/react-combobox/src/components/OptionGroup/useOptionGroupStyles.styles.ts", - "hash": "17434221321981968949" - }, - { - "file": "packages/react-components/react-combobox/src/contexts/ComboboxContext.ts", - "hash": "929963705666598824" - }, - { - "file": "packages/react-components/react-combobox/src/contexts/ListboxContext.ts", - "hash": "3439369373193236577" - }, - { - "file": "packages/react-components/react-combobox/src/contexts/useComboboxContextValues.ts", - "hash": "13340091498314471026" - }, - { - "file": "packages/react-components/react-combobox/src/contexts/useListboxContextValues.ts", - "hash": "13800266999970494762" - }, - { - "file": "packages/react-components/react-combobox/src/index.ts", - "hash": "9936586546212580500" - }, - { - "file": "packages/react-components/react-combobox/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-combobox/src/utils/ComboboxBase.types.ts", - "hash": "16300109512749709073" - }, - { - "file": "packages/react-components/react-combobox/src/utils/OptionCollection.types.ts", - "hash": "6054787405511182417" - }, - { - "file": "packages/react-components/react-combobox/src/utils/Selection.types.ts", - "hash": "11972870952754376840" - }, - { - "file": "packages/react-components/react-combobox/src/utils/dropdownKeyActions.ts", - "hash": "1316510657660803656" - }, - { - "file": "packages/react-components/react-combobox/src/utils/internalTokens.ts", - "hash": "14963293680083608660" - }, - { - "file": "packages/react-components/react-combobox/src/utils/useComboboxBaseState.ts", - "hash": "8250739279614188233" - }, - { - "file": "packages/react-components/react-combobox/src/utils/useComboboxPositioning.ts", - "hash": "2550337742911701970" - }, - { - "file": "packages/react-components/react-combobox/src/utils/useListboxSlot.ts", - "hash": "13952757643081324859" - }, - { - "file": "packages/react-components/react-combobox/src/utils/useOptionCollection.ts", - "hash": "7314571815979167399" - }, - { - "file": "packages/react-components/react-combobox/src/utils/useScrollOptionsIntoView.ts", - "hash": "4142049665632735367" - }, - { - "file": "packages/react-components/react-combobox/src/utils/useSelection.ts", - "hash": "14996013758550257473" - }, - { - "file": "packages/react-components/react-combobox/src/utils/useTriggerSlot.ts", - "hash": "9101709088659355024" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxAppearance.stories.tsx", - "hash": "8548703503941685749" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxBestPractices.md", - "hash": "744684511504791082" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxComplexOptions.stories.tsx", - "hash": "297723454355376697" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxControlled.stories.tsx", - "hash": "3456633706628545626" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxCustomOptions.stories.tsx", - "hash": "12685238925861146979" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxDefault.stories.tsx", - "hash": "18266674055953269566" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxDescription.md", - "hash": "17843666779395466277" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxDisabled.stories.tsx", - "hash": "3128410187237974780" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxFiltering.stories.tsx", - "hash": "17936456203850376223" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxFreeform.stories.tsx", - "hash": "18323167836197074615" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxGrouped.stories.tsx", - "hash": "13215087173770388938" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselect.stories.tsx", - "hash": "10893488920315906460" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselectWithTags.stories.tsx", - "hash": "15979300667814621916" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselectWithValueString.stories.tsx", - "hash": "12249468363876146555" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxSize.stories.tsx", - "hash": "5130255855723498846" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/ComboboxVirtualizer.stories.tsx", - "hash": "12188006947587273256" - }, - { - "file": "packages/react-components/react-combobox/stories/Combobox/index.stories.tsx", - "hash": "2631140498889026435" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownAccessibility.md", - "hash": "4273687250426205790" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownAccessibility.stories.mdx", - "hash": "9909411046506801934" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownAppearance.stories.tsx", - "hash": "4084551238588706930" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownBestPractices.md", - "hash": "10254108218710739116" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownComplexOptions.stories.tsx", - "hash": "3922375352896055609" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownControlled.stories.tsx", - "hash": "9427431566998959031" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownCustomOptions.stories.tsx", - "hash": "15198432756208424589" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownDefault.stories.tsx", - "hash": "13981062825270634122" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownDescription.md", - "hash": "11457027239647719668" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownDisabled.stories.tsx", - "hash": "11574745316902443091" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownGrouped.stories.tsx", - "hash": "14312832856975740807" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownMultiselect.stories.tsx", - "hash": "11055633430384623307" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/DropdownSize.stories.tsx", - "hash": "11497543963552536578" - }, - { - "file": "packages/react-components/react-combobox/stories/Dropdown/index.stories.tsx", - "hash": "210961802901619491" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-click.png", - "hash": "12453121186810189264" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-collapsed.png", - "hash": "10962727780164198655" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-hover.png", - "hash": "10323365367312532038" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-key-select.png", - "hash": "1567787049728258184" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-multiselection1.png", - "hash": "6198988657172575792" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-multiselection2.png", - "hash": "7045883760343802146" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-nav.png", - "hash": "16470357799642190126" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-open.png", - "hash": "17524257435370515355" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-option-hover.png", - "hash": "5908223504128174873" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-selected-open.png", - "hash": "6726587615125601571" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-semantics.png", - "hash": "14939116960473785956" - }, - { - "file": "packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-tabbing.png", - "hash": "10541967115071968036" - }, - { - "file": "packages/react-components/react-combobox/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-combobox/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-combobox/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/codemods": [ - { - "file": "packages/codemods/.eslintrc.json", - "hash": "4428152067048705317" - }, - { - "file": "packages/codemods/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/codemods/CHANGELOG.json", - "hash": "11347495108269306727" - }, - { - "file": "packages/codemods/CHANGELOG.md", - "hash": "8867042710605885765" - }, - { - "file": "packages/codemods/LICENSE", - "hash": "14163660608650232522" - }, - { - "file": "packages/codemods/README.md", - "hash": "13860676800098945886" - }, - { - "file": "packages/codemods/bin/upgrade.js", - "hash": "16520232535087589005" - }, - { - "file": "packages/codemods/documentation/howTo.md", - "hash": "7461052920490961802" - }, - { - "file": "packages/codemods/documentation/renamePropTransforms.md", - "hash": "241704516325919730" - }, - { - "file": "packages/codemods/jest.config.js", - "hash": "5767287689832801759" - }, - { - "file": "packages/codemods/just.config.ts", - "hash": "2411455081002746933" - }, - { - "file": "packages/codemods/package.json", - "hash": "2182322265430513456", - "deps": [ - "npm:tslib", - "npm:react", - "npm:ts-morph", - "npm:glob", - "npm:yargs", - "@fluentui/eslint-plugin", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/codemods/project.json", - "hash": "1183081484802960152" - }, - { - "file": "packages/codemods/src/codeMods/mods/componentToCompat/compatHelpers.ts", - "hash": "9240806428948769680" - }, - { - "file": "packages/codemods/src/codeMods/mods/componentToCompat/componentToCompat.mod.ts", - "hash": "17273743481686930406" - }, - { - "file": "packages/codemods/src/codeMods/mods/componentToCompat/namedExports.ts", - "hash": "10333643041167619988" - }, - { - "file": "packages/codemods/src/codeMods/mods/configMod/configMod.mod.ts", - "hash": "8256406929658905577" - }, - { - "file": "packages/codemods/src/codeMods/mods/officeToFluentImport/officeToFluentImport.mod.ts", - "hash": "16353032478154865044" - }, - { - "file": "packages/codemods/src/codeMods/mods/oldToNewButton/oldToNewButton.mod.ts", - "hash": "1357173166044755082" - }, - { - "file": "packages/codemods/src/codeMods/mods/personaToAvatar/personaToAvatar.mod.ts", - "hash": "3425367627829998026" - }, - { - "file": "packages/codemods/src/codeMods/mods/upgrades.json", - "hash": "8534611347961339460" - }, - { - "file": "packages/codemods/src/codeMods/tests/componentToCompat/componentToCompat.test.ts", - "hash": "9545073426540253167" - }, - { - "file": "packages/codemods/src/codeMods/tests/configMod/configMod.test.ts", - "hash": "9507343427469922246" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/button/mButtonProps.tsx", - "hash": "7468149991658358259" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/button/mButtonStyles.tsx", - "hash": "12384006366854582909" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/button/mCompoundButtonProps.tsx", - "hash": "15112058447461572698" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/compat/Button.tsx", - "hash": "10262838276442804862" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/compat/DefaultButton.tsx", - "hash": "8256931557089837956" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/compat/ImportsStuff.tsx", - "hash": "1518893783011304840" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/compat/mockIndex.ts", - "hash": "3709648605083778684" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/dropdown/mDropdownProps.tsx", - "hash": "4363796598908677651" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/dropdown/mDropdownSpreadProps.tsx", - "hash": "4375066566216277476" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/mockFunction.tsx", - "hash": "311456311444952405" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/mockImport.tsx", - "hash": "17710243442170095470" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/persona/mClass.tsx", - "hash": "17753879045974249120" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/persona/mFunction.tsx", - "hash": "5626766255761670481" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/persona/mInterface.tsx", - "hash": "9034839761500607237" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/persona/mPersonaProps.tsx", - "hash": "11328331329653495165" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/persona/mPersonaSpreadProps.tsx", - "hash": "13995810082966974410" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/persona/mWithPersonaSize.tsx", - "hash": "3491347508505688659" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/spinner/mSpinnerProps.tsx", - "hash": "7870275173352507482" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/spinner/mSpinnerSpreadProps.tsx", - "hash": "11413584911410415206" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/utils/mockEdgeImports.tsx", - "hash": "6904143302243784622" - }, - { - "file": "packages/codemods/src/codeMods/tests/mock/utils/mockImports.tsx", - "hash": "4989490717297183261" - }, - { - "file": "packages/codemods/src/codeMods/tests/officeToFluentImport/officeToFluentImport.test.ts", - "hash": "7003135997588781179" - }, - { - "file": "packages/codemods/src/codeMods/tests/oldToNewButton/oldToNewButton.test.ts", - "hash": "1764156562373966815" - }, - { - "file": "packages/codemods/src/codeMods/tests/personaToAvatar/componentMod.test.ts", - "hash": "12262799446987997670" - }, - { - "file": "packages/codemods/src/codeMods/tests/personaToAvatar/propsMod.test.ts", - "hash": "11171104898829191255" - }, - { - "file": "packages/codemods/src/codeMods/tests/utilities/importUtils.test.ts", - "hash": "7159995125621984221" - }, - { - "file": "packages/codemods/src/codeMods/tests/utilities/jsxUtilities.test.ts", - "hash": "8007580690693405560" - }, - { - "file": "packages/codemods/src/codeMods/tests/utilities/propUtilities.test.ts", - "hash": "4677491295252227055" - }, - { - "file": "packages/codemods/src/codeMods/types.ts", - "hash": "13021417299316460312" - }, - { - "file": "packages/codemods/src/codeMods/utilities/helpers/propHelpers.ts", - "hash": "2484056730035742925" - }, - { - "file": "packages/codemods/src/codeMods/utilities/imports.ts", - "hash": "15301094299013895104" - }, - { - "file": "packages/codemods/src/codeMods/utilities/index.ts", - "hash": "2555049955491844014" - }, - { - "file": "packages/codemods/src/codeMods/utilities/jsx.ts", - "hash": "13793530493669573769" - }, - { - "file": "packages/codemods/src/codeMods/utilities/props.ts", - "hash": "12666028733730733197" - }, - { - "file": "packages/codemods/src/codeMods/utilities/transforms.ts", - "hash": "16926870991077811697" - }, - { - "file": "packages/codemods/src/command.ts", - "hash": "18096051007695008033" - }, - { - "file": "packages/codemods/src/helpers/chainable.ts", - "hash": "8733383370644214781" - }, - { - "file": "packages/codemods/src/helpers/maybe.ts", - "hash": "14176675661170324955" - }, - { - "file": "packages/codemods/src/helpers/result.ts", - "hash": "5450803410888169633" - }, - { - "file": "packages/codemods/src/helpers/tests/maybe.test.ts", - "hash": "4721878516108784302" - }, - { - "file": "packages/codemods/src/helpers/tests/result.test.ts", - "hash": "12287505420809316455" - }, - { - "file": "packages/codemods/src/index.ts", - "hash": "7306275544208333527" - }, - { - "file": "packages/codemods/src/modRunner/logger.ts", - "hash": "3590337614079459744" - }, - { - "file": "packages/codemods/src/modRunner/modFilter.ts", - "hash": "7822802422462301002" - }, - { - "file": "packages/codemods/src/modRunner/runnerUtilities.ts", - "hash": "16535238509257622858" - }, - { - "file": "packages/codemods/src/modRunner/tests/command.test.ts", - "hash": "12681799096963602133" - }, - { - "file": "packages/codemods/src/modRunner/tests/filters.test.ts", - "hash": "3040657239305293440" - }, - { - "file": "packages/codemods/src/modRunner/tests/mocks/MockMods/CodeMod.mock.ts", - "hash": "15197719005968264090" - }, - { - "file": "packages/codemods/src/modRunner/tests/mocks/MockMods/JSMock.mod.js", - "hash": "11801600890007965326" - }, - { - "file": "packages/codemods/src/modRunner/tests/mocks/MockProject/projects/subProject/tsconfig.json", - "hash": "5954153889229813267" - }, - { - "file": "packages/codemods/src/modRunner/tests/mocks/MockProject/src/File-react.tsx", - "hash": "15555827964896839803" - }, - { - "file": "packages/codemods/src/modRunner/tests/mocks/MockProject/src/File.ts", - "hash": "15555827964896839803" - }, - { - "file": "packages/codemods/src/modRunner/tests/mocks/MockProject/tsconfig.json", - "hash": "5954153889229813267" - }, - { - "file": "packages/codemods/src/modRunner/tests/modRunner.test.ts", - "hash": "15492578309836042993" - }, - { - "file": "packages/codemods/src/modRunner/tests/upgrade.test.ts", - "hash": "17926476974248175499" - }, - { - "file": "packages/codemods/src/upgrade.ts", - "hash": "10683793787605745167" - }, - { - "file": "packages/codemods/tsconfig.json", - "hash": "9192670197236996538" - } - ], - "@fluentui/utilities": [ - { - "file": "packages/utilities/.eslintrc.json", - "hash": "2580200865767780480" - }, - { - "file": "packages/utilities/CHANGELOG.json", - "hash": "6335607398106611430" - }, - { - "file": "packages/utilities/CHANGELOG.md", - "hash": "12816284100488688515" - }, - { - "file": "packages/utilities/LICENSE", - "hash": "2164827662511184675" - }, - { - "file": "packages/utilities/README.md", - "hash": "5244410816745376968" - }, - { - "file": "packages/utilities/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/utilities/config/tests.js", - "hash": "16641653404356876419" - }, - { - "file": "packages/utilities/etc/utilities.api.md", - "hash": "15018932460167178414" - }, - { - "file": "packages/utilities/jest.config.js", - "hash": "304128120137977307" - }, - { - "file": "packages/utilities/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/utilities/package.json", - "hash": "675003616675843412", - "deps": [ - "@fluentui/dom-utilities", - "@fluentui/merge-styles", - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/jest-serializer-merge-styles", - "@fluentui/test-utilities", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/utilities/project.json", - "hash": "17280231558626148637" - }, - { - "file": "packages/utilities/src/Async.test.ts", - "hash": "5759589505192850170" - }, - { - "file": "packages/utilities/src/Async.ts", - "hash": "15143769995860493369" - }, - { - "file": "packages/utilities/src/AutoScroll.ts", - "hash": "5601078848280160212" - }, - { - "file": "packages/utilities/src/BaseComponent.test.tsx", - "hash": "3877588864845288553" - }, - { - "file": "packages/utilities/src/BaseComponent.ts", - "hash": "9118405640307315372" - }, - { - "file": "packages/utilities/src/BaseComponent.types.ts", - "hash": "783638621225026234" - }, - { - "file": "packages/utilities/src/DelayedRender.tsx", - "hash": "4642510121216492222" - }, - { - "file": "packages/utilities/src/EventGroup.test.ts", - "hash": "12138699095578563984" - }, - { - "file": "packages/utilities/src/EventGroup.ts", - "hash": "14471280002975870863" - }, - { - "file": "packages/utilities/src/FabricPerformance.ts", - "hash": "4714530500644440274" - }, - { - "file": "packages/utilities/src/FocusRectsProvider.tsx", - "hash": "15787740731290076280" - }, - { - "file": "packages/utilities/src/GlobalSettings.ts", - "hash": "342336038417369589" - }, - { - "file": "packages/utilities/src/IClassNames.ts", - "hash": "3076168777488422116" - }, - { - "file": "packages/utilities/src/IComponentAs.ts", - "hash": "252446323054408189" - }, - { - "file": "packages/utilities/src/IDisposable.ts", - "hash": "2478442062744367057" - }, - { - "file": "packages/utilities/src/IRectangle.ts", - "hash": "10995019983178257971" - }, - { - "file": "packages/utilities/src/IRenderComponent.ts", - "hash": "461886732816612547" - }, - { - "file": "packages/utilities/src/IRenderFunction.ts", - "hash": "17813586765380303785" - }, - { - "file": "packages/utilities/src/ISize.ts", - "hash": "14461979371085555856" - }, - { - "file": "packages/utilities/src/IStyleFunction.ts", - "hash": "6791316609268819404" - }, - { - "file": "packages/utilities/src/KeyCodes.ts", - "hash": "14564321873164316746" - }, - { - "file": "packages/utilities/src/Point.ts", - "hash": "376713868510813523" - }, - { - "file": "packages/utilities/src/React.types.ts", - "hash": "17800794849670035313" - }, - { - "file": "packages/utilities/src/Rectangle.ts", - "hash": "824886417592807336" - }, - { - "file": "packages/utilities/src/__snapshots__/styled.test.tsx.snap", - "hash": "12979173466984991107" - }, - { - "file": "packages/utilities/src/appendFunction.test.ts", - "hash": "8729525214092344649" - }, - { - "file": "packages/utilities/src/appendFunction.ts", - "hash": "4083488610739721922" - }, - { - "file": "packages/utilities/src/aria.test.ts", - "hash": "14138603899583562794" - }, - { - "file": "packages/utilities/src/aria.ts", - "hash": "5735708631711502150" - }, - { - "file": "packages/utilities/src/array.test.ts", - "hash": "15801175074736137302" - }, - { - "file": "packages/utilities/src/array.ts", - "hash": "1894347163613481431" - }, - { - "file": "packages/utilities/src/asAsync.test.tsx", - "hash": "10697304036797267807" - }, - { - "file": "packages/utilities/src/asAsync.tsx", - "hash": "4181533372244279705" - }, - { - "file": "packages/utilities/src/assertNever.ts", - "hash": "1515606681749095367" - }, - { - "file": "packages/utilities/src/classNamesFunction.test.ts", - "hash": "6343392581387687372" - }, - { - "file": "packages/utilities/src/classNamesFunction.ts", - "hash": "8023095563856715213" - }, - { - "file": "packages/utilities/src/componentAs/__snapshots__/composeComponentAs.test.tsx.snap", - "hash": "2752369257854721166" - }, - { - "file": "packages/utilities/src/componentAs/composeComponentAs.test.tsx", - "hash": "8746889857353005866" - }, - { - "file": "packages/utilities/src/componentAs/composeComponentAs.tsx", - "hash": "2140110881671918461" - }, - { - "file": "packages/utilities/src/controlled.test.ts", - "hash": "9058866301967561226" - }, - { - "file": "packages/utilities/src/controlled.ts", - "hash": "9066208032224367059" - }, - { - "file": "packages/utilities/src/createMergedRef.test.tsx", - "hash": "1416955141188369611" - }, - { - "file": "packages/utilities/src/createMergedRef.ts", - "hash": "1251098934683385949" - }, - { - "file": "packages/utilities/src/createRef.ts", - "hash": "9238843200674099325" - }, - { - "file": "packages/utilities/src/css.test.ts", - "hash": "10031246422893899008" - }, - { - "file": "packages/utilities/src/css.ts", - "hash": "1793825490912883658" - }, - { - "file": "packages/utilities/src/customizations/Customizations.test.ts", - "hash": "10105610822375110835" - }, - { - "file": "packages/utilities/src/customizations/Customizations.ts", - "hash": "3495907360416689960" - }, - { - "file": "packages/utilities/src/customizations/Customizer.test.tsx", - "hash": "12908700688009649933" - }, - { - "file": "packages/utilities/src/customizations/Customizer.tsx", - "hash": "7793381447130808575" - }, - { - "file": "packages/utilities/src/customizations/Customizer.types.tsx", - "hash": "13989787286778459151" - }, - { - "file": "packages/utilities/src/customizations/CustomizerContext.ts", - "hash": "13773513164298209090" - }, - { - "file": "packages/utilities/src/customizations/customizable.test.tsx", - "hash": "17417709320635180368" - }, - { - "file": "packages/utilities/src/customizations/customizable.tsx", - "hash": "3874477594453762777" - }, - { - "file": "packages/utilities/src/customizations/mergeCustomizations.ts", - "hash": "7624715242722992448" - }, - { - "file": "packages/utilities/src/customizations/mergeSettings.ts", - "hash": "949575409405210085" - }, - { - "file": "packages/utilities/src/customizations/useCustomizationSettings.test.tsx", - "hash": "9461785824933750783" - }, - { - "file": "packages/utilities/src/customizations/useCustomizationSettings.ts", - "hash": "9469212748401813506" - }, - { - "file": "packages/utilities/src/dom/IVirtualElement.ts", - "hash": "1272603442600869120" - }, - { - "file": "packages/utilities/src/dom/canUseDOM.ts", - "hash": "14283484485691740206" - }, - { - "file": "packages/utilities/src/dom/dom.test.ts", - "hash": "15189535752284549665" - }, - { - "file": "packages/utilities/src/dom/elementContains.ts", - "hash": "6731392015328967658" - }, - { - "file": "packages/utilities/src/dom/elementContainsAttribute.ts", - "hash": "9998380691696155229" - }, - { - "file": "packages/utilities/src/dom/findElementRecursive.ts", - "hash": "12204766649587740636" - }, - { - "file": "packages/utilities/src/dom/getChildren.ts", - "hash": "10521633747754719556" - }, - { - "file": "packages/utilities/src/dom/getDocument.ts", - "hash": "9086020502057242037" - }, - { - "file": "packages/utilities/src/dom/getFirstVisibleElementFromSelector.ts", - "hash": "6447989736279473834" - }, - { - "file": "packages/utilities/src/dom/getParent.ts", - "hash": "9718084071153318455" - }, - { - "file": "packages/utilities/src/dom/getRect.ts", - "hash": "60430354175429724" - }, - { - "file": "packages/utilities/src/dom/getVirtualParent.ts", - "hash": "11252940205299737616" - }, - { - "file": "packages/utilities/src/dom/getWindow.ts", - "hash": "18428128074541184664" - }, - { - "file": "packages/utilities/src/dom/isVirtualElement.ts", - "hash": "517001433736903322" - }, - { - "file": "packages/utilities/src/dom/on.ts", - "hash": "12860909919214186505" - }, - { - "file": "packages/utilities/src/dom/portalContainsElement.ts", - "hash": "5168170300745806070" - }, - { - "file": "packages/utilities/src/dom/raiseClick.ts", - "hash": "1733874287643999407" - }, - { - "file": "packages/utilities/src/dom/setPortalAttribute.ts", - "hash": "6856150449255039282" - }, - { - "file": "packages/utilities/src/dom/setSSR.ts", - "hash": "15371249151282858961" - }, - { - "file": "packages/utilities/src/dom/setVirtualParent.ts", - "hash": "10955819039440267009" - }, - { - "file": "packages/utilities/src/dom.ts", - "hash": "6537626984778766649" - }, - { - "file": "packages/utilities/src/extendComponent.test.tsx", - "hash": "13891293003835934127" - }, - { - "file": "packages/utilities/src/extendComponent.ts", - "hash": "11310818425939132405" - }, - { - "file": "packages/utilities/src/focus.test.tsx", - "hash": "18400430136451594057" - }, - { - "file": "packages/utilities/src/focus.ts", - "hash": "6643169002879769058" - }, - { - "file": "packages/utilities/src/getId.ts", - "hash": "6800706428956972366" - }, - { - "file": "packages/utilities/src/getNativeElementProps.test.ts", - "hash": "284309430326406258" - }, - { - "file": "packages/utilities/src/getNativeElementProps.ts", - "hash": "11067196988575191658" - }, - { - "file": "packages/utilities/src/getPropsWithDefaults.test.ts", - "hash": "13824695188429262134" - }, - { - "file": "packages/utilities/src/getPropsWithDefaults.ts", - "hash": "9323023684459143650" - }, - { - "file": "packages/utilities/src/hoist.ts", - "hash": "904637284183141448" - }, - { - "file": "packages/utilities/src/hoistStatics.ts", - "hash": "5921127637819176945" - }, - { - "file": "packages/utilities/src/ie11Detector.ts", - "hash": "8304370647762605469" - }, - { - "file": "packages/utilities/src/index.ts", - "hash": "8052320402088512943" - }, - { - "file": "packages/utilities/src/initializeComponentRef.test.tsx", - "hash": "16876304708087993207" - }, - { - "file": "packages/utilities/src/initializeComponentRef.ts", - "hash": "17624525091723477913" - }, - { - "file": "packages/utilities/src/initializeDir.ts", - "hash": "5746005562232527516" - }, - { - "file": "packages/utilities/src/initializeFocusRects.test.ts", - "hash": "9347386513877106337" - }, - { - "file": "packages/utilities/src/initializeFocusRects.ts", - "hash": "6836970356225779843" - }, - { - "file": "packages/utilities/src/initials.test.ts", - "hash": "17208878865390886151" - }, - { - "file": "packages/utilities/src/initials.ts", - "hash": "2246058192270431676" - }, - { - "file": "packages/utilities/src/keyboard.test.ts", - "hash": "2465005779275079326" - }, - { - "file": "packages/utilities/src/keyboard.ts", - "hash": "3375700092477164063" - }, - { - "file": "packages/utilities/src/language.ts", - "hash": "12255952474581979791" - }, - { - "file": "packages/utilities/src/localStorage.ts", - "hash": "9752275918665499733" - }, - { - "file": "packages/utilities/src/math.test.ts", - "hash": "15627959349529587251" - }, - { - "file": "packages/utilities/src/math.ts", - "hash": "1028645173261075305" - }, - { - "file": "packages/utilities/src/memoize.test.ts", - "hash": "14950283053726570866" - }, - { - "file": "packages/utilities/src/memoize.ts", - "hash": "9330385561301352185" - }, - { - "file": "packages/utilities/src/merge.test.ts", - "hash": "15739663652754460066" - }, - { - "file": "packages/utilities/src/merge.ts", - "hash": "17766544532271599629" - }, - { - "file": "packages/utilities/src/mobileDetector.test.ts", - "hash": "12078587837878594136" - }, - { - "file": "packages/utilities/src/mobileDetector.ts", - "hash": "10591507586021763956" - }, - { - "file": "packages/utilities/src/modalize.test.ts", - "hash": "4846297644711417399" - }, - { - "file": "packages/utilities/src/modalize.ts", - "hash": "4481198429821105814" - }, - { - "file": "packages/utilities/src/object.test.ts", - "hash": "10254436151796777817" - }, - { - "file": "packages/utilities/src/object.ts", - "hash": "17154324253698227529" - }, - { - "file": "packages/utilities/src/osDetector.test.ts", - "hash": "14894283611897002433" - }, - { - "file": "packages/utilities/src/osDetector.ts", - "hash": "13801506817898268308" - }, - { - "file": "packages/utilities/src/overflow.test.ts", - "hash": "12139207908953484445" - }, - { - "file": "packages/utilities/src/overflow.ts", - "hash": "12647135475165398177" - }, - { - "file": "packages/utilities/src/properties.test.ts", - "hash": "4741910110570935513" - }, - { - "file": "packages/utilities/src/properties.ts", - "hash": "16773543696469058656" - }, - { - "file": "packages/utilities/src/renderFunction/__snapshots__/composeRenderFunction.test.tsx.snap", - "hash": "2752369257854721166" - }, - { - "file": "packages/utilities/src/renderFunction/composeRenderFunction.test.tsx", - "hash": "13687964334743642959" - }, - { - "file": "packages/utilities/src/renderFunction/composeRenderFunction.tsx", - "hash": "12949119472709400410" - }, - { - "file": "packages/utilities/src/resources.ts", - "hash": "13625698663830748145" - }, - { - "file": "packages/utilities/src/rtl.test.ts", - "hash": "13900837640822362624" - }, - { - "file": "packages/utilities/src/rtl.ts", - "hash": "14222644107188927084" - }, - { - "file": "packages/utilities/src/safeRequestAnimationFrame.test.tsx", - "hash": "16982205117397880539" - }, - { - "file": "packages/utilities/src/safeRequestAnimationFrame.ts", - "hash": "975133229678661328" - }, - { - "file": "packages/utilities/src/safeSetTimeout.test.tsx", - "hash": "9649408720700553344" - }, - { - "file": "packages/utilities/src/safeSetTimeout.ts", - "hash": "13218288715921649583" - }, - { - "file": "packages/utilities/src/scroll.ts", - "hash": "5360381395447204868" - }, - { - "file": "packages/utilities/src/selection/Selection.test.ts", - "hash": "16981423786519042627" - }, - { - "file": "packages/utilities/src/selection/Selection.ts", - "hash": "13343736426577884626" - }, - { - "file": "packages/utilities/src/selection/Selection.types.ts", - "hash": "2551952221941279699" - }, - { - "file": "packages/utilities/src/selection/index.ts", - "hash": "14851851460036267236" - }, - { - "file": "packages/utilities/src/sessionStorage.ts", - "hash": "11470067955594116423" - }, - { - "file": "packages/utilities/src/setFocusVisibility.test.tsx", - "hash": "3836380506317020464" - }, - { - "file": "packages/utilities/src/setFocusVisibility.ts", - "hash": "8156237404251675203" - }, - { - "file": "packages/utilities/src/string.ts", - "hash": "11645503253289741054" - }, - { - "file": "packages/utilities/src/styled.test.tsx", - "hash": "4946383566021141652" - }, - { - "file": "packages/utilities/src/styled.tsx", - "hash": "13378054297508466343" - }, - { - "file": "packages/utilities/src/useFocusRects.test.tsx", - "hash": "9129928342627505077" - }, - { - "file": "packages/utilities/src/useFocusRects.ts", - "hash": "17577250466138189088" - }, - { - "file": "packages/utilities/src/useIsomorphicLayoutEffect.ts", - "hash": "14729958331705232742" - }, - { - "file": "packages/utilities/src/version.ts", - "hash": "6263395338863769015" - }, - { - "file": "packages/utilities/src/warn/warn.test.ts", - "hash": "11418325315738532285" - }, - { - "file": "packages/utilities/src/warn/warn.ts", - "hash": "2637561142778231776" - }, - { - "file": "packages/utilities/src/warn/warnConditionallyRequiredProps.ts", - "hash": "16835554844251258233" - }, - { - "file": "packages/utilities/src/warn/warnControlledUsage.test.ts", - "hash": "13092967152654014039" - }, - { - "file": "packages/utilities/src/warn/warnControlledUsage.ts", - "hash": "796636411188940959" - }, - { - "file": "packages/utilities/src/warn/warnDeprecations.ts", - "hash": "12191875958213993028" - }, - { - "file": "packages/utilities/src/warn/warnMutuallyExclusive.ts", - "hash": "6917399654413973457" - }, - { - "file": "packages/utilities/src/warn.ts", - "hash": "16985317042801848559" - }, - { - "file": "packages/utilities/tsconfig.json", - "hash": "12681959843186909680" - } - ], - "@fluentui/digest": [ - { - "file": "packages/fluentui/digest/README.md", - "hash": "4858304439522311096" - }, - { - "file": "packages/fluentui/digest/assets/index.html", - "hash": "3216416950227096753" - }, - { - "file": "packages/fluentui/digest/just.config.ts", - "hash": "8979360801753407872" - }, - { - "file": "packages/fluentui/digest/package.json", - "hash": "8214724770717997582", - "deps": ["npm:querystring"] - }, - { - "file": "packages/fluentui/digest/project.json", - "hash": "3735961437424315139" - }, - { - "file": "packages/fluentui/digest/src/bundle/index.digest.tsx", - "hash": "6951110182645338430" - }, - { - "file": "packages/fluentui/digest/src/bundle/stories.tsx", - "hash": "2490260158626841599" - }, - { - "file": "packages/fluentui/digest/src/config.tsx", - "hash": "6214931607336280193" - }, - { - "file": "packages/fluentui/digest/src/digest.tsx", - "hash": "2244345445035896456" - }, - { - "file": "packages/fluentui/digest/src/webpack.config.ts", - "hash": "15142160838349309385" - }, - { - "file": "packages/fluentui/digest/tsconfig.json", - "hash": "16047973009729968895" - } - ], - "@fluentui/react-list-preview": [ - { - "file": "packages/react-components/react-list-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-list-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-list-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-list-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-list-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-list-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-list-preview/LICENSE", - "hash": "5128350754157408457" - }, - { - "file": "packages/react-components/react-list-preview/README.md", - "hash": "13329727955369014943" - }, - { - "file": "packages/react-components/react-list-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-list-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-list-preview/docs/Spec.md", - "hash": "17280073763812887463" - }, - { - "file": "packages/react-components/react-list-preview/etc/react-list-preview.api.md", - "hash": "17650744448258090218" - }, - { - "file": "packages/react-components/react-list-preview/jest.config.js", - "hash": "16230585065887809640" - }, - { - "file": "packages/react-components/react-list-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-list-preview/package.json", - "hash": "5076334288358975452", - "deps": [ - "@fluentui/react-jsx-runtime", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-shared-contexts", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-list-preview/project.json", - "hash": "18301453267181054182" - }, - { - "file": "packages/react-components/react-list-preview/src/List.ts", - "hash": "10892037581495151528" - }, - { - "file": "packages/react-components/react-list-preview/src/ListItem.ts", - "hash": "14415772845252035707" - }, - { - "file": "packages/react-components/react-list-preview/src/ListItemButton.ts", - "hash": "12363711673052210096" - }, - { - "file": "packages/react-components/react-list-preview/src/components/List/List.test.tsx", - "hash": "12322910775799983605" - }, - { - "file": "packages/react-components/react-list-preview/src/components/List/List.tsx", - "hash": "1906116023345710491" - }, - { - "file": "packages/react-components/react-list-preview/src/components/List/List.types.ts", - "hash": "8206792748462071029" - }, - { - "file": "packages/react-components/react-list-preview/src/components/List/__snapshots__/List.test.tsx.snap", - "hash": "1227827408222929890" - }, - { - "file": "packages/react-components/react-list-preview/src/components/List/index.ts", - "hash": "17107546934093025866" - }, - { - "file": "packages/react-components/react-list-preview/src/components/List/renderList.tsx", - "hash": "15714918800686291357" - }, - { - "file": "packages/react-components/react-list-preview/src/components/List/useList.ts", - "hash": "1027276539563479344" - }, - { - "file": "packages/react-components/react-list-preview/src/components/List/useListStyles.styles.ts", - "hash": "6095077202937619016" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItem/ListItem.test.tsx", - "hash": "3230708006815606248" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItem/ListItem.tsx", - "hash": "3046689597475996224" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItem/ListItem.types.ts", - "hash": "8027419436099248507" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItem/__snapshots__/ListItem.test.tsx.snap", - "hash": "2250098978442735994" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItem/index.ts", - "hash": "13458219659794583076" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItem/renderListItem.tsx", - "hash": "4538665908862285107" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItem/useListItem.ts", - "hash": "8332993251183877292" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItem/useListItemStyles.styles.ts", - "hash": "145972862822319399" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.test.tsx", - "hash": "8574153664309206265" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.tsx", - "hash": "15946025473178805384" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.types.ts", - "hash": "12013190060983824846" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItemButton/__snapshots__/ListItemButton.test.tsx.snap", - "hash": "7851601325088660553" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItemButton/index.ts", - "hash": "10205948326421395785" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItemButton/renderListItemButton.tsx", - "hash": "4278382112469247585" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItemButton/useListItemButton.ts", - "hash": "17042796213188080990" - }, - { - "file": "packages/react-components/react-list-preview/src/components/ListItemButton/useListItemButtonStyles.styles.ts", - "hash": "8509921485527948458" - }, - { - "file": "packages/react-components/react-list-preview/src/index.ts", - "hash": "12167157468152511670" - }, - { - "file": "packages/react-components/react-list-preview/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-list-preview/stories/List/ListBestPractices.md", - "hash": "13132854725403121719" - }, - { - "file": "packages/react-components/react-list-preview/stories/List/ListDefault.stories.tsx", - "hash": "5601696470293348097" - }, - { - "file": "packages/react-components/react-list-preview/stories/List/ListDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-list-preview/stories/List/index.stories.tsx", - "hash": "9555990577237225551" - }, - { - "file": "packages/react-components/react-list-preview/stories/ListItem/ListItemBestPractices.md", - "hash": "13132854725403121719" - }, - { - "file": "packages/react-components/react-list-preview/stories/ListItem/ListItemDefault.stories.tsx", - "hash": "13381635606214282007" - }, - { - "file": "packages/react-components/react-list-preview/stories/ListItem/ListItemDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-list-preview/stories/ListItem/index.stories.tsx", - "hash": "9558837703344875089" - }, - { - "file": "packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonBestPractices.md", - "hash": "13132854725403121719" - }, - { - "file": "packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonDefault.stories.tsx", - "hash": "6954470783452371311" - }, - { - "file": "packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-list-preview/stories/ListItemButton/index.stories.tsx", - "hash": "5432902562725269627" - }, - { - "file": "packages/react-components/react-list-preview/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-list-preview/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-list-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/date-time-utilities": [ - { - "file": "packages/date-time-utilities/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/date-time-utilities/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/date-time-utilities/CHANGELOG.json", - "hash": "2164381804076873918" - }, - { - "file": "packages/date-time-utilities/CHANGELOG.md", - "hash": "3188049663660729300" - }, - { - "file": "packages/date-time-utilities/LICENSE", - "hash": "1406600530965153382" - }, - { - "file": "packages/date-time-utilities/README.md", - "hash": "15663058025015777167" - }, - { - "file": "packages/date-time-utilities/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/date-time-utilities/etc/date-time-utilities.api.md", - "hash": "4147546351800268056" - }, - { - "file": "packages/date-time-utilities/jest.config.js", - "hash": "14422260967582952706" - }, - { - "file": "packages/date-time-utilities/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/date-time-utilities/package.json", - "hash": "11495122545919054215", - "deps": [ - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/date-time-utilities/project.json", - "hash": "14457318988314402231" - }, - { - "file": "packages/date-time-utilities/src/dateFormatting/dateFormatting.defaults.ts", - "hash": "3121003231405885904" - }, - { - "file": "packages/date-time-utilities/src/dateFormatting/dateFormatting.test.ts", - "hash": "10780573025705000265" - }, - { - "file": "packages/date-time-utilities/src/dateFormatting/dateFormatting.types.ts", - "hash": "17447457680448716723" - }, - { - "file": "packages/date-time-utilities/src/dateFormatting/index.ts", - "hash": "10491802775163290807" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/__snapshots__/getDayGrid.test.ts.snap", - "hash": "2311635867604483689" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/dateGrid.types.ts", - "hash": "10377546010866108302" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/findAvailableDate.test.ts", - "hash": "16014593248943699532" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/findAvailableDate.ts", - "hash": "17812579345659974705" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/getBoundedDateRange.test.ts", - "hash": "16271701688173551694" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/getBoundedDateRange.ts", - "hash": "5151142947748778290" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/getDateRangeTypeToUse.test.ts", - "hash": "13578684931193299139" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/getDateRangeTypeToUse.ts", - "hash": "16696959932960635992" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/getDayGrid.test.ts", - "hash": "15740649517213788929" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/getDayGrid.ts", - "hash": "9476685343421711322" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/index.ts", - "hash": "12957004530838335926" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/isAfterMaxDate.test.ts", - "hash": "10840956339319765451" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/isAfterMaxDate.ts", - "hash": "4879284728703250347" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/isBeforeMinDate.test.ts", - "hash": "13690478736915468966" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/isBeforeMinDate.ts", - "hash": "9762482266014451107" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/isContiguous.test.ts", - "hash": "2343134183304754683" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/isContiguous.ts", - "hash": "9358593535087643745" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/isRestrictedDate.test.ts", - "hash": "609331876505347603" - }, - { - "file": "packages/date-time-utilities/src/dateGrid/isRestrictedDate.ts", - "hash": "8608321153134897550" - }, - { - "file": "packages/date-time-utilities/src/dateMath/dateMath.test.ts", - "hash": "6289703901015116667" - }, - { - "file": "packages/date-time-utilities/src/dateMath/dateMath.ts", - "hash": "5518748274490320630" - }, - { - "file": "packages/date-time-utilities/src/dateValues/dateValues.ts", - "hash": "18269157894089480859" - }, - { - "file": "packages/date-time-utilities/src/dateValues/timeConstants.ts", - "hash": "13010220875930774354" - }, - { - "file": "packages/date-time-utilities/src/index.ts", - "hash": "5651837990155102462" - }, - { - "file": "packages/date-time-utilities/src/timeFormatting/index.ts", - "hash": "881792922337031636" - }, - { - "file": "packages/date-time-utilities/src/timeFormatting/timeFormatting.test.ts", - "hash": "2360306042898603230" - }, - { - "file": "packages/date-time-utilities/src/timeMath/timeMath.test.ts", - "hash": "491224792424595929" - }, - { - "file": "packages/date-time-utilities/src/timeMath/timeMath.ts", - "hash": "16292546276501068965" - }, - { - "file": "packages/date-time-utilities/src/version.ts", - "hash": "8665770230245968868" - }, - { - "file": "packages/date-time-utilities/tsconfig.json", - "hash": "1822303577405251995" - } - ], - "@fluentui/react-virtualizer": [ - { - "file": "packages/react-components/react-virtualizer/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-virtualizer/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-virtualizer/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-virtualizer/.storybook/preview-body.html", - "hash": "16210685040217365676" - }, - { - "file": "packages/react-components/react-virtualizer/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-virtualizer/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-virtualizer/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-virtualizer/CHANGELOG.json", - "hash": "2673709193866183261" - }, - { - "file": "packages/react-components/react-virtualizer/CHANGELOG.md", - "hash": "1256483738986476246" - }, - { - "file": "packages/react-components/react-virtualizer/LICENSE", - "hash": "3825891881571607092" - }, - { - "file": "packages/react-components/react-virtualizer/README.md", - "hash": "3856986220850823081" - }, - { - "file": "packages/react-components/react-virtualizer/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-virtualizer/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-virtualizer/etc/react-virtualizer.api.md", - "hash": "5965603531558644273" - }, - { - "file": "packages/react-components/react-virtualizer/jest.config.js", - "hash": "13492638879859403130" - }, - { - "file": "packages/react-components/react-virtualizer/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-virtualizer/package.json", - "hash": "2669636919577574734", - "deps": [ - "@fluentui/react-jsx-runtime", - "@fluentui/react-utilities", - "@fluentui/react-shared-contexts", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-virtualizer/project.json", - "hash": "5902224839509606522" - }, - { - "file": "packages/react-components/react-virtualizer/src/Hooks.ts", - "hash": "13096719515407822478" - }, - { - "file": "packages/react-components/react-virtualizer/src/Utilities.ts", - "hash": "7452799764049456122" - }, - { - "file": "packages/react-components/react-virtualizer/src/Virtualizer.ts", - "hash": "7518409004355669143" - }, - { - "file": "packages/react-components/react-virtualizer/src/VirtualizerScrollView.ts", - "hash": "11480930697508633208" - }, - { - "file": "packages/react-components/react-virtualizer/src/VirtualizerScrollViewDynamic.ts", - "hash": "4620222288124351857" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/Virtualizer.ts", - "hash": "7927844774255893543" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/Virtualizer.types.ts", - "hash": "14998671851453166952" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/index.ts", - "hash": "223893684398285344" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/renderVirtualizer.tsx", - "hash": "5049901196873287610" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizer.ts", - "hash": "11296231769951241238" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizerStyles.styles.ts", - "hash": "16200927493257981129" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/VirtualizerScrollView.ts", - "hash": "14670667260237630417" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/VirtualizerScrollView.types.ts", - "hash": "12726462037379246806" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/index.ts", - "hash": "5341561606535506170" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/renderVirtualizerScrollView.tsx", - "hash": "9987866317880670081" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/useVirtualizerScrollView.ts", - "hash": "6242430380123640601" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/useVirtualizerScrollViewStyles.styles.ts", - "hash": "14637414451604734747" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.ts", - "hash": "3091671186485391286" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.types.ts", - "hash": "1268211048994777683" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/index.ts", - "hash": "4575113466604915676" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/renderVirtualizerScrollViewDynamic.tsx", - "hash": "517632922593748593" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamic.tsx", - "hash": "11382510692058695315" - }, - { - "file": "packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamicStyles.styles.ts", - "hash": "15915807425457867423" - }, - { - "file": "packages/react-components/react-virtualizer/src/hooks/hooks.types.ts", - "hash": "11437064553272591592" - }, - { - "file": "packages/react-components/react-virtualizer/src/hooks/index.ts", - "hash": "11212568211093860115" - }, - { - "file": "packages/react-components/react-virtualizer/src/hooks/useDynamicVirtualizerMeasure.ts", - "hash": "1401715616925791324" - }, - { - "file": "packages/react-components/react-virtualizer/src/hooks/useIntersectionObserver.ts", - "hash": "9327842803804721" - }, - { - "file": "packages/react-components/react-virtualizer/src/hooks/useMeasureList.ts", - "hash": "7611797157667966265" - }, - { - "file": "packages/react-components/react-virtualizer/src/hooks/useMutationObserver.ts", - "hash": "890252352384347130" - }, - { - "file": "packages/react-components/react-virtualizer/src/hooks/useResizeObserverRef.ts", - "hash": "1724813061379453082" - }, - { - "file": "packages/react-components/react-virtualizer/src/hooks/useVirtualizerMeasure.ts", - "hash": "17204283105924926987" - }, - { - "file": "packages/react-components/react-virtualizer/src/index.ts", - "hash": "12055461814549449062" - }, - { - "file": "packages/react-components/react-virtualizer/src/testing/useVirtualizer.test.ts", - "hash": "17923925798907638535" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrolling.ts", - "hash": "10130952681932487924" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrolling.types.ts", - "hash": "15254358818932563361" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrollingDynamic.ts", - "hash": "12482063325179436183" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/index.ts", - "hash": "11870388641348364336" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/VirtualizerContext.ts", - "hash": "15927935393898582112" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/index.ts", - "hash": "7211653521627416542" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/types.ts", - "hash": "14680922875446214691" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/createResizeObserverFromDocument.ts", - "hash": "15813223612896660990" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/debounce.ts", - "hash": "16454772419717378051" - }, - { - "file": "packages/react-components/react-virtualizer/src/utilities/index.ts", - "hash": "5587345159392749401" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/Default.stories.tsx", - "hash": "136999915172207859" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/DefaultUnbounded.stories.tsx", - "hash": "13655720455891631220" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/Dynamic.stories.tsx", - "hash": "4055773401446967685" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/Horizontal.stories.tsx", - "hash": "3108876537717609011" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/MultiUnbounded.stories.tsx", - "hash": "8935973420982175120" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/RTL.stories.tsx", - "hash": "8439153336966493360" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/Reversed.stories.tsx", - "hash": "15184551952582601701" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/ReversedHorizontal.stories.tsx", - "hash": "17483635137462024459" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/VirtualizerDescription.md", - "hash": "14678160273834792229" - }, - { - "file": "packages/react-components/react-virtualizer/stories/Virtualizer/index.stories.ts", - "hash": "7671933387398296295" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/Default.stories.tsx", - "hash": "11832986632353617854" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/ScrollTo.stories.tsx", - "hash": "7929370554351259593" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/SnapToAlignment.stories.tsx", - "hash": "8680098754472857303" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/VirtualizerScrollViewDescription.md", - "hash": "2316021851908929761" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollView/index.stories.ts", - "hash": "8372571143132881416" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/AutoMeasure.stories.tsx", - "hash": "5028243045914419788" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/Default.stories.tsx", - "hash": "11215602148714725309" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/ScrollLoading.stories.tsx", - "hash": "1876399932572606927" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/ScrollTo.stories.tsx", - "hash": "10867398943529884768" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamicDescription.md", - "hash": "11114530826542561672" - }, - { - "file": "packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/index.stories.ts", - "hash": "17243437446105887357" - }, - { - "file": "packages/react-components/react-virtualizer/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-virtualizer/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-virtualizer/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-text": [ - { - "file": "packages/react-components/react-text/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-text/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-text/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-text/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-text/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-text/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-text/CHANGELOG.json", - "hash": "14746472734011799848" - }, - { - "file": "packages/react-components/react-text/CHANGELOG.md", - "hash": "5530030983973534839" - }, - { - "file": "packages/react-components/react-text/LICENSE", - "hash": "4936020564043377923" - }, - { - "file": "packages/react-components/react-text/README.md", - "hash": "14594000409558953178" - }, - { - "file": "packages/react-components/react-text/bundle-size/Text.Default.fixture.js", - "hash": "9372275947322015042" - }, - { - "file": "packages/react-components/react-text/bundle-size/Text.Wrappers.fixture.js", - "hash": "4343285488848262892" - }, - { - "file": "packages/react-components/react-text/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-text/config/tests.js", - "hash": "14010006175392234982" - }, - { - "file": "packages/react-components/react-text/docs/MIGRATION.md", - "hash": "4926594767893644190" - }, - { - "file": "packages/react-components/react-text/docs/Spec.md", - "hash": "11156190551232632838" - }, - { - "file": "packages/react-components/react-text/docs/assets/typography-examples.gif", - "hash": "5944766188234749424" - }, - { - "file": "packages/react-components/react-text/etc/react-text.api.md", - "hash": "15630657575673412419" - }, - { - "file": "packages/react-components/react-text/jest.config.js", - "hash": "13250048585224657153" - }, - { - "file": "packages/react-components/react-text/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-text/package.json", - "hash": "9181332167887385646", - "deps": [ - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-text/project.json", - "hash": "497480200449367797" - }, - { - "file": "packages/react-components/react-text/src/Body1.ts", - "hash": "9667282400563853276" - }, - { - "file": "packages/react-components/react-text/src/Body1Strong.ts", - "hash": "13823224720861472657" - }, - { - "file": "packages/react-components/react-text/src/Body1Stronger.ts", - "hash": "3286566584428617482" - }, - { - "file": "packages/react-components/react-text/src/Body2.ts", - "hash": "8183283637965760260" - }, - { - "file": "packages/react-components/react-text/src/Caption1.ts", - "hash": "4788522305935816127" - }, - { - "file": "packages/react-components/react-text/src/Caption1Strong.ts", - "hash": "2149384589348724474" - }, - { - "file": "packages/react-components/react-text/src/Caption1Stronger.ts", - "hash": "10916957720193657172" - }, - { - "file": "packages/react-components/react-text/src/Caption2.ts", - "hash": "5102526396849719794" - }, - { - "file": "packages/react-components/react-text/src/Caption2Strong.ts", - "hash": "7572462389090243622" - }, - { - "file": "packages/react-components/react-text/src/Display.ts", - "hash": "4685022632235662968" - }, - { - "file": "packages/react-components/react-text/src/LargeTitle.ts", - "hash": "16487674571008795637" - }, - { - "file": "packages/react-components/react-text/src/Subtitle1.ts", - "hash": "16033303200156257737" - }, - { - "file": "packages/react-components/react-text/src/Subtitle2.ts", - "hash": "3476755232628464350" - }, - { - "file": "packages/react-components/react-text/src/Subtitle2Stronger.ts", - "hash": "16315524108236767900" - }, - { - "file": "packages/react-components/react-text/src/Text.ts", - "hash": "18074790047408023562" - }, - { - "file": "packages/react-components/react-text/src/Title1.ts", - "hash": "17555355943170034657" - }, - { - "file": "packages/react-components/react-text/src/Title2.ts", - "hash": "7269104715253581064" - }, - { - "file": "packages/react-components/react-text/src/Title3.ts", - "hash": "13543050376223625530" - }, - { - "file": "packages/react-components/react-text/src/components/Text/Text.test.tsx", - "hash": "10358087802752874407" - }, - { - "file": "packages/react-components/react-text/src/components/Text/Text.tsx", - "hash": "15225570993742240023" - }, - { - "file": "packages/react-components/react-text/src/components/Text/Text.types.ts", - "hash": "14628039381215441828" - }, - { - "file": "packages/react-components/react-text/src/components/Text/index.ts", - "hash": "3679423971540201261" - }, - { - "file": "packages/react-components/react-text/src/components/Text/renderText.tsx", - "hash": "12277062145316794641" - }, - { - "file": "packages/react-components/react-text/src/components/Text/useText.ts", - "hash": "10631330431687230925" - }, - { - "file": "packages/react-components/react-text/src/components/Text/useTextStyles.styles.ts", - "hash": "8180430562340821244" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1/Body1.test.tsx", - "hash": "9894037939799415333" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1/Body1.tsx", - "hash": "5366069605146131494" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1/index.ts", - "hash": "14114934386458292686" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1/useBody1Styles.styles.ts", - "hash": "12844845312353658561" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1Strong/Body1Strong.test.tsx", - "hash": "10855272301661388234" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1Strong/Body1Strong.tsx", - "hash": "11524714835326398685" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1Strong/index.ts", - "hash": "1459948605428759386" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1Strong/useBody1StrongStyles.styles.ts", - "hash": "6414602464149070199" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1Stronger/Body1Stronger.test.tsx", - "hash": "1484282817804899892" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1Stronger/Body1Stronger.tsx", - "hash": "3334814281589344133" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1Stronger/index.ts", - "hash": "10194746070259772281" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body1Stronger/useBody1StrongerStyles.styles.ts", - "hash": "8876787566301622094" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body2/Body2.test.tsx", - "hash": "16080733609312017065" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body2/Body2.tsx", - "hash": "10543167376626268951" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body2/index.ts", - "hash": "15734780964608692484" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Body2/useBody2Styles.styles.ts", - "hash": "2179965817036105151" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1/Caption1.test.tsx", - "hash": "18364219394070326703" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1/Caption1.tsx", - "hash": "5365603815581407077" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1/index.ts", - "hash": "13292481802490231528" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1/useCaption1Styles.styles.ts", - "hash": "17678336276744860638" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1Strong/Caption1Strong.test.tsx", - "hash": "10855745484138944673" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1Strong/Caption1Strong.tsx", - "hash": "13139698996938859077" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1Strong/index.ts", - "hash": "15003375483982098027" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1Strong/useCaption1StrongStyles.styles.ts", - "hash": "14992344039816775280" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1Stronger/Caption1Stronger.test.tsx", - "hash": "145900403893458087" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1Stronger/Caption1Stronger.tsx", - "hash": "8060776291855045773" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1Stronger/index.ts", - "hash": "15869920445770356096" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption1Stronger/useCaption1Stronger.styles.ts", - "hash": "6637626472059456130" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption2/Caption2.test.tsx", - "hash": "18403821228559899680" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption2/Caption2.tsx", - "hash": "4576498597993247268" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption2/index.ts", - "hash": "7336284101298750631" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption2/useCaption2Styles.styles.ts", - "hash": "3351567266887346725" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption2Strong/Caption2Strong.test.tsx", - "hash": "2398079818540772501" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption2Strong/Caption2Strong.tsx", - "hash": "4951760950137277604" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption2Strong/index.ts", - "hash": "17023856116505366051" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Caption2Strong/useCaption2StrongStyles.styles.ts", - "hash": "16711009952230674581" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Display/Display.test.tsx", - "hash": "8902387253771320134" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Display/Display.tsx", - "hash": "15163273678942990099" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Display/index.ts", - "hash": "1655129168591164529" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Display/useDisplayStyles.styles.ts", - "hash": "2155688834321594944" - }, - { - "file": "packages/react-components/react-text/src/components/presets/LargeTitle/LargeTitle.test.tsx", - "hash": "10689996326037032312" - }, - { - "file": "packages/react-components/react-text/src/components/presets/LargeTitle/LargeTitle.tsx", - "hash": "10845770827182851022" - }, - { - "file": "packages/react-components/react-text/src/components/presets/LargeTitle/index.ts", - "hash": "10381804999879881593" - }, - { - "file": "packages/react-components/react-text/src/components/presets/LargeTitle/useLargeTitleStyles.styles.ts", - "hash": "9204784057218126288" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle1/Subtitle1.test.tsx", - "hash": "8400411135710061570" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle1/Subtitle1.tsx", - "hash": "6818323249646657027" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle1/index.ts", - "hash": "17144394370666913272" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle1/useSubtitle1Styles.styles.ts", - "hash": "13973796368695964185" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle2/Subtitle2.test.tsx", - "hash": "16800739000274466640" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle2/Subtitle2.tsx", - "hash": "15995954742755224260" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle2/index.ts", - "hash": "2395262566287968836" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle2/useSubtitle2Styles.styles.ts", - "hash": "3548578033972741049" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle2Stronger/Subtitle2Stronger.test.tsx", - "hash": "9486754707899734006" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle2Stronger/Subtitle2Stronger.tsx", - "hash": "11834028200088074682" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle2Stronger/index.ts", - "hash": "15834411329339240732" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Subtitle2Stronger/useSubtitle2Stronger.styles.ts", - "hash": "14099105492801059828" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title1/Title1.test.tsx", - "hash": "13980206727970199045" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title1/Title1.tsx", - "hash": "15892461228380942200" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title1/index.ts", - "hash": "8932830417608409787" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title1/useTitle1Styles.styles.ts", - "hash": "10323980728201993935" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title2/Title2.test.tsx", - "hash": "9313693279109464292" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title2/Title2.tsx", - "hash": "16219814511697192588" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title2/index.ts", - "hash": "13092072330785019922" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title2/useTitle2Styles.styles.ts", - "hash": "15767653350255270679" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title3/Title3.test.tsx", - "hash": "16041612927712782515" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title3/Title3.tsx", - "hash": "1482714465420909906" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title3/index.ts", - "hash": "5421005612796075725" - }, - { - "file": "packages/react-components/react-text/src/components/presets/Title3/useTitle3Styles.styles.ts", - "hash": "13551327395414956915" - }, - { - "file": "packages/react-components/react-text/src/components/presets/createPreset.ts", - "hash": "17313362690045924117" - }, - { - "file": "packages/react-components/react-text/src/index.ts", - "hash": "4004944184614105514" - }, - { - "file": "packages/react-components/react-text/src/testing/isConformant.ts", - "hash": "10210662947692554095" - }, - { - "file": "packages/react-components/react-text/stories/Text/Default.stories.tsx", - "hash": "5287666121360600616" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextAlignment.stories.tsx", - "hash": "6242707523860852359" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextBestPractices.md", - "hash": "7035477963273089456" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextDescription.md", - "hash": "16470577204288111202" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextFont.stories.tsx", - "hash": "11116949968316746227" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextItalic.stories.tsx", - "hash": "10422272221648492172" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextPresets.md", - "hash": "10418459320242657564" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextPresets.stories.tsx", - "hash": "8737629838560008759" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextSize.stories.tsx", - "hash": "14604640943488556546" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextStrikeThrough.stories.tsx", - "hash": "5360501811450986755" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextTruncate.stories.tsx", - "hash": "11750770438919753549" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextUnderline.stories.tsx", - "hash": "16315826356528260583" - }, - { - "file": "packages/react-components/react-text/stories/Text/TextWeight.stories.tsx", - "hash": "6081025630306336337" - }, - { - "file": "packages/react-components/react-text/stories/Text/index.stories.tsx", - "hash": "2698621728331086757" - }, - { - "file": "packages/react-components/react-text/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-text/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-text/tsconfig.spec.json", - "hash": "6578707152334499940" - } - ], - "@fluentui/scripts-jest": [ - { - "file": "scripts/jest/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/jest/jest.config.js", - "hash": "3813261862233335890" - }, - { - "file": "scripts/jest/package.json", - "hash": "14164984823080938344", - "deps": ["@fluentui/scripts-monorepo", "@fluentui/scripts-utils"] - }, - { - "file": "scripts/jest/project.json", - "hash": "12078030697868316929" - }, - { - "file": "scripts/jest/src/index.js", - "hash": "16087382004284617467" - }, - { - "file": "scripts/jest/src/jest.preset.v0.js", - "hash": "5867124286943409158" - }, - { - "file": "scripts/jest/src/jest.preset.v0.spec.ts", - "hash": "14542700976601267891" - }, - { - "file": "scripts/jest/src/jest.preset.v8.js", - "hash": "7214783837184776239" - }, - { - "file": "scripts/jest/src/jest.preset.v8.spec.ts", - "hash": "12951278503786579953" - }, - { - "file": "scripts/jest/src/v0/setupTests.js", - "hash": "12654493952027143402" - }, - { - "file": "scripts/jest/src/v8/jest-mock.js", - "hash": "10441877977763399001" - }, - { - "file": "scripts/jest/src/v8/jest-reporter.js", - "hash": "17340096134020818293" - }, - { - "file": "scripts/jest/src/v8/jest-setup.js", - "hash": "7778886422321321206" - }, - { - "file": "scripts/jest/src/v8/jest-style-mock.js", - "hash": "3486721905956313351" - }, - { - "file": "scripts/jest/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/jest/tsconfig.lib.json", - "hash": "3593133700658772030" - }, - { - "file": "scripts/jest/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/ts-minbar-test-react": [ - { - "file": "apps/ts-minbar-test-react/CHANGELOG.json", - "hash": "17761077664360148852" - }, - { - "file": "apps/ts-minbar-test-react/CHANGELOG.md", - "hash": "14470523675549078295" - }, - { - "file": "apps/ts-minbar-test-react/README.md", - "hash": "4419651569658703681" - }, - { - "file": "apps/ts-minbar-test-react/files/src/index.tsx", - "hash": "18103345228235893227" - }, - { - "file": "apps/ts-minbar-test-react/files/tsconfig.json", - "hash": "5092064063558585511" - }, - { - "file": "apps/ts-minbar-test-react/just.config.ts", - "hash": "7156839958691239049" - }, - { - "file": "apps/ts-minbar-test-react/package.json", - "hash": "17975545398563137137", - "deps": ["@fluentui/react", "@fluentui/scripts-tasks", "@fluentui/scripts-projects-test"] - }, - { - "file": "apps/ts-minbar-test-react/project.json", - "hash": "1282750908468855311" - }, - { - "file": "apps/ts-minbar-test-react/src/index.ts", - "hash": "6919848813558476158" - }, - { - "file": "apps/ts-minbar-test-react/tsconfig.json", - "hash": "10809149894665832803" - } - ], - "@fluentui/react": [ - { - "file": "packages/react/.eslintrc.js", - "hash": "18322613162592272510" - }, - { - "file": "packages/react/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/react/.vscode/settings.json", - "hash": "12021589480221246916" - }, - { - "file": "packages/react/CHANGELOG.json", - "hash": "6951825329134936821" - }, - { - "file": "packages/react/CHANGELOG.md", - "hash": "12099638385382086950" - }, - { - "file": "packages/react/LICENSE", - "hash": "2813735303365335595" - }, - { - "file": "packages/react/README.md", - "hash": "3435017277481595030" - }, - { - "file": "packages/react/__mocks__/@fluentui/utilities.ts", - "hash": "12050978786399858000" - }, - { - "file": "packages/react/bundle-size-auditor.config.js", - "hash": "1614748617965411486" - }, - { - "file": "packages/react/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/react/config/pre-copy.json", - "hash": "14026383330722125688" - }, - { - "file": "packages/react/config/tests.js", - "hash": "13158865319411973838" - }, - { - "file": "packages/react/empty-entrypoint.js", - "hash": "1610763553242483540" - }, - { - "file": "packages/react/etc/react.api.md", - "hash": "10965535314750180986" - }, - { - "file": "packages/react/jest.config.js", - "hash": "8193037916930093299" - }, - { - "file": "packages/react/just.config.ts", - "hash": "3344775425486365003" - }, - { - "file": "packages/react/package.json", - "hash": "12246868904466760490", - "deps": [ - "@fluentui/date-time-utilities", - "@fluentui/foundation-legacy", - "@fluentui/font-icons-mdl2", - "@fluentui/merge-styles", - "@fluentui/react-focus", - "@fluentui/react-hooks", - "@fluentui/react-portal-compat-context", - "@fluentui/react-window-provider", - "@fluentui/set-version", - "@fluentui/style-utilities", - "@fluentui/theme", - "@fluentui/utilities", - "npm:@microsoft/load-themed-styles", - "npm:tslib", - "@fluentui/common-styles", - "@fluentui/eslint-plugin", - "@fluentui/example-data", - "@fluentui/jest-serializer-merge-styles", - "@fluentui/react-conformance", - "@fluentui/test-utilities", - "@fluentui/webpack-utilities", - "npm:office-ui-fabric-core", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react/project.json", - "hash": "17701349262890228270" - }, - { - "file": "packages/react/src/ActivityItem.ts", - "hash": "15691553335115204721" - }, - { - "file": "packages/react/src/Announced.ts", - "hash": "7828906494215171216" - }, - { - "file": "packages/react/src/Autofill.ts", - "hash": "16457316051496421810" - }, - { - "file": "packages/react/src/Breadcrumb.ts", - "hash": "4692325558598841885" - }, - { - "file": "packages/react/src/Button.ts", - "hash": "8626324674700708044" - }, - { - "file": "packages/react/src/ButtonGrid.ts", - "hash": "881856585163408327" - }, - { - "file": "packages/react/src/Calendar.ts", - "hash": "569100325234550221" - }, - { - "file": "packages/react/src/Callout.ts", - "hash": "11821162718730855739" - }, - { - "file": "packages/react/src/Check.ts", - "hash": "12837435387320211305" - }, - { - "file": "packages/react/src/Checkbox.ts", - "hash": "15174834295790980707" - }, - { - "file": "packages/react/src/ChoiceGroup.ts", - "hash": "8551466585424623975" - }, - { - "file": "packages/react/src/ChoiceGroupOption.ts", - "hash": "12282666165702349379" - }, - { - "file": "packages/react/src/Coachmark.ts", - "hash": "10298383592307786534" - }, - { - "file": "packages/react/src/Color.ts", - "hash": "1851453512554942402" - }, - { - "file": "packages/react/src/ColorPicker.ts", - "hash": "11367027736402733854" - }, - { - "file": "packages/react/src/ComboBox.ts", - "hash": "6941430331366320497" - }, - { - "file": "packages/react/src/CommandBar.ts", - "hash": "13781943264137645943" - }, - { - "file": "packages/react/src/ContextualMenu.ts", - "hash": "11044360894834949697" - }, - { - "file": "packages/react/src/DatePicker.ts", - "hash": "14140387775859161252" - }, - { - "file": "packages/react/src/DateTimeUtilities.ts", - "hash": "16407665973972677758" - }, - { - "file": "packages/react/src/DetailsList.ts", - "hash": "11060283209431896804" - }, - { - "file": "packages/react/src/Dialog.ts", - "hash": "4454994753170598490" - }, - { - "file": "packages/react/src/Divider.ts", - "hash": "11741977117356417348" - }, - { - "file": "packages/react/src/DocumentCard.ts", - "hash": "15635077762585676697" - }, - { - "file": "packages/react/src/DragDrop.ts", - "hash": "15334126186863286998" - }, - { - "file": "packages/react/src/DraggableZone.ts", - "hash": "8347592647128284806" - }, - { - "file": "packages/react/src/Dropdown.ts", - "hash": "18194367805350925119" - }, - { - "file": "packages/react/src/ExtendedPicker.ts", - "hash": "1781688548792408840" - }, - { - "file": "packages/react/src/Fabric.ts", - "hash": "9388144000989131059" - }, - { - "file": "packages/react/src/Facepile.ts", - "hash": "13878559315498248276" - }, - { - "file": "packages/react/src/FloatingPicker.ts", - "hash": "8168562264864126910" - }, - { - "file": "packages/react/src/FocusTrapZone.ts", - "hash": "13340226361778469587" - }, - { - "file": "packages/react/src/FocusZone.ts", - "hash": "17163596780283843540" - }, - { - "file": "packages/react/src/Grid.ts", - "hash": "881856585163408327" - }, - { - "file": "packages/react/src/GroupedList.ts", - "hash": "17984522349933548027" - }, - { - "file": "packages/react/src/GroupedListV2.ts", - "hash": "5354730782250258919" - }, - { - "file": "packages/react/src/HoverCard.ts", - "hash": "10703228722220731271" - }, - { - "file": "packages/react/src/Icon.ts", - "hash": "313947480257717044" - }, - { - "file": "packages/react/src/Icons.ts", - "hash": "11257336694483866853" - }, - { - "file": "packages/react/src/Image.ts", - "hash": "16464656776672641880" - }, - { - "file": "packages/react/src/Keytip.ts", - "hash": "14735860805141051080" - }, - { - "file": "packages/react/src/KeytipData.ts", - "hash": "13233209451898491569" - }, - { - "file": "packages/react/src/KeytipLayer.ts", - "hash": "5673003055379526700" - }, - { - "file": "packages/react/src/Keytips.ts", - "hash": "10469364805952831599" - }, - { - "file": "packages/react/src/Label.ts", - "hash": "4712475947755339018" - }, - { - "file": "packages/react/src/Layer.ts", - "hash": "1733045992777260244" - }, - { - "file": "packages/react/src/Link.ts", - "hash": "10181647052088224625" - }, - { - "file": "packages/react/src/List.ts", - "hash": "10892037581495151528" - }, - { - "file": "packages/react/src/MarqueeSelection.ts", - "hash": "10113684216889674368" - }, - { - "file": "packages/react/src/MessageBar.ts", - "hash": "11069752646730668502" - }, - { - "file": "packages/react/src/Modal.ts", - "hash": "4724632803121488282" - }, - { - "file": "packages/react/src/Nav.ts", - "hash": "16517290324481129723" - }, - { - "file": "packages/react/src/OverflowSet.ts", - "hash": "16078762239706375810" - }, - { - "file": "packages/react/src/Overlay.ts", - "hash": "3285303095679141452" - }, - { - "file": "packages/react/src/Panel.ts", - "hash": "16595715402019817627" - }, - { - "file": "packages/react/src/Persona.ts", - "hash": "11634239554265983330" - }, - { - "file": "packages/react/src/PersonaCoin.ts", - "hash": "11634239554265983330" - }, - { - "file": "packages/react/src/PersonaPresence.ts", - "hash": "16657819352363000963" - }, - { - "file": "packages/react/src/Pickers.ts", - "hash": "7315127516418647489" - }, - { - "file": "packages/react/src/Pivot.ts", - "hash": "13900400919767902771" - }, - { - "file": "packages/react/src/Popup.ts", - "hash": "11254074860887789694" - }, - { - "file": "packages/react/src/Positioning.ts", - "hash": "12929630452344570883" - }, - { - "file": "packages/react/src/PositioningContainer.ts", - "hash": "14723175961025769754" - }, - { - "file": "packages/react/src/ProgressIndicator.ts", - "hash": "6533264803521264651" - }, - { - "file": "packages/react/src/Rating.ts", - "hash": "15823645109042535388" - }, - { - "file": "packages/react/src/ResizeGroup.ts", - "hash": "17736351568471188817" - }, - { - "file": "packages/react/src/ResponsiveMode.ts", - "hash": "4238096090649122928" - }, - { - "file": "packages/react/src/ScrollablePane.ts", - "hash": "11525201575146771343" - }, - { - "file": "packages/react/src/SearchBox.ts", - "hash": "15808954179607126400" - }, - { - "file": "packages/react/src/SelectableOption.ts", - "hash": "12748464959660480730" - }, - { - "file": "packages/react/src/SelectedItemsList.ts", - "hash": "8395059039592633644" - }, - { - "file": "packages/react/src/Selection.ts", - "hash": "10143265323494697518" - }, - { - "file": "packages/react/src/Separator.ts", - "hash": "1811822594030495246" - }, - { - "file": "packages/react/src/Shimmer.ts", - "hash": "3579635837268703050" - }, - { - "file": "packages/react/src/ShimmeredDetailsList.ts", - "hash": "3558579282568365265" - }, - { - "file": "packages/react/src/Slider.ts", - "hash": "8062765663185726667" - }, - { - "file": "packages/react/src/SpinButton.ts", - "hash": "10602772673075263099" - }, - { - "file": "packages/react/src/Spinner.ts", - "hash": "17775753931591747303" - }, - { - "file": "packages/react/src/Stack.ts", - "hash": "14506809887411988561" - }, - { - "file": "packages/react/src/Sticky.ts", - "hash": "4023672496774955026" - }, - { - "file": "packages/react/src/Styling.ts", - "hash": "18075108818090873357" - }, - { - "file": "packages/react/src/SwatchColorPicker.ts", - "hash": "6007149929098899385" - }, - { - "file": "packages/react/src/TeachingBubble.ts", - "hash": "14630397906653552215" - }, - { - "file": "packages/react/src/Text.ts", - "hash": "18074790047408023562" - }, - { - "file": "packages/react/src/TextField.ts", - "hash": "8776486715515654409" - }, - { - "file": "packages/react/src/Theme.ts", - "hash": "4060037938213976140" - }, - { - "file": "packages/react/src/ThemeGenerator.ts", - "hash": "10341606355790351710" - }, - { - "file": "packages/react/src/TimePicker.ts", - "hash": "8919003633615161634" - }, - { - "file": "packages/react/src/Toggle.ts", - "hash": "17043961152625470253" - }, - { - "file": "packages/react/src/Tooltip.ts", - "hash": "17674670289509594830" - }, - { - "file": "packages/react/src/Utilities.ts", - "hash": "17137381318660875692" - }, - { - "file": "packages/react/src/Viewport.ts", - "hash": "9695251108878314796" - }, - { - "file": "packages/react/src/WeeklyDayPicker.ts", - "hash": "13543915856335724087" - }, - { - "file": "packages/react/src/WindowProvider.ts", - "hash": "10613406804967383798" - }, - { - "file": "packages/react/src/common/DirectionalHint.ts", - "hash": "4075025867885052120" - }, - { - "file": "packages/react/src/common/DocPage.types.ts", - "hash": "3317054908413247007" - }, - { - "file": "packages/react/src/common/IAccessiblePopupProps.ts", - "hash": "15218209719259118451" - }, - { - "file": "packages/react/src/common/TestImages.ts", - "hash": "10252575403022796568" - }, - { - "file": "packages/react/src/common/isConformant.ts", - "hash": "14501087979372828339" - }, - { - "file": "packages/react/src/common/shallowUntilTarget.ts", - "hash": "9363535113840956016" - }, - { - "file": "packages/react/src/common/testUtilities.ts", - "hash": "15153870803575118415" - }, - { - "file": "packages/react/src/components/ActivityItem/ActivityItem.classNames.ts", - "hash": "10959441434876498415" - }, - { - "file": "packages/react/src/components/ActivityItem/ActivityItem.styles.ts", - "hash": "17922129355434787187" - }, - { - "file": "packages/react/src/components/ActivityItem/ActivityItem.test.tsx", - "hash": "9308564639709118220" - }, - { - "file": "packages/react/src/components/ActivityItem/ActivityItem.tsx", - "hash": "15024881015934520035" - }, - { - "file": "packages/react/src/components/ActivityItem/ActivityItem.types.ts", - "hash": "5658929453140030040" - }, - { - "file": "packages/react/src/components/ActivityItem/__snapshots__/ActivityItem.test.tsx.snap", - "hash": "2875045296901384882" - }, - { - "file": "packages/react/src/components/ActivityItem/index.ts", - "hash": "15613685813342155204" - }, - { - "file": "packages/react/src/components/Announced/Announced.base.tsx", - "hash": "14808936570361767980" - }, - { - "file": "packages/react/src/components/Announced/Announced.styles.ts", - "hash": "2609277003134345376" - }, - { - "file": "packages/react/src/components/Announced/Announced.test.tsx", - "hash": "13159186001787092755" - }, - { - "file": "packages/react/src/components/Announced/Announced.ts", - "hash": "5520471808720202213" - }, - { - "file": "packages/react/src/components/Announced/Announced.types.ts", - "hash": "1166604111861235670" - }, - { - "file": "packages/react/src/components/Announced/__snapshots__/Announced.test.tsx.snap", - "hash": "11083460018032104443" - }, - { - "file": "packages/react/src/components/Announced/index.ts", - "hash": "15185491289973397311" - }, - { - "file": "packages/react/src/components/Autofill/Autofill.test.tsx", - "hash": "14829303470930849800" - }, - { - "file": "packages/react/src/components/Autofill/Autofill.tsx", - "hash": "2844735981914153753" - }, - { - "file": "packages/react/src/components/Autofill/Autofill.types.ts", - "hash": "1324609616284281878" - }, - { - "file": "packages/react/src/components/Autofill/index.ts", - "hash": "9802973723482047247" - }, - { - "file": "packages/react/src/components/Breadcrumb/Breadcrumb.base.tsx", - "hash": "2959849278643511780" - }, - { - "file": "packages/react/src/components/Breadcrumb/Breadcrumb.styles.ts", - "hash": "5490687911274150064" - }, - { - "file": "packages/react/src/components/Breadcrumb/Breadcrumb.test.tsx", - "hash": "1397742070578054284" - }, - { - "file": "packages/react/src/components/Breadcrumb/Breadcrumb.tsx", - "hash": "1697940405249114382" - }, - { - "file": "packages/react/src/components/Breadcrumb/Breadcrumb.types.ts", - "hash": "8602583152421031524" - }, - { - "file": "packages/react/src/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap", - "hash": "11005458348753777619" - }, - { - "file": "packages/react/src/components/Breadcrumb/index.ts", - "hash": "2400277785402358351" - }, - { - "file": "packages/react/src/components/Button/ActionButton/ActionButton.styles.ts", - "hash": "5681673974154994069" - }, - { - "file": "packages/react/src/components/Button/ActionButton/ActionButton.tsx", - "hash": "13604987828611667561" - }, - { - "file": "packages/react/src/components/Button/BaseButton.classNames.ts", - "hash": "17560792537917575282" - }, - { - "file": "packages/react/src/components/Button/BaseButton.styles.ts", - "hash": "13775319018755096354" - }, - { - "file": "packages/react/src/components/Button/BaseButton.tsx", - "hash": "11691847524303977471" - }, - { - "file": "packages/react/src/components/Button/Button.deprecated.test.tsx", - "hash": "3790866997069875783" - }, - { - "file": "packages/react/src/components/Button/Button.test.tsx", - "hash": "8768289926859505225" - }, - { - "file": "packages/react/src/components/Button/Button.tsx", - "hash": "2897151106942011808" - }, - { - "file": "packages/react/src/components/Button/Button.types.ts", - "hash": "2214420206943208397" - }, - { - "file": "packages/react/src/components/Button/ButtonThemes.ts", - "hash": "858669685161863380" - }, - { - "file": "packages/react/src/components/Button/CommandBarButton/CommandBarButton.styles.ts", - "hash": "12384204530508226570" - }, - { - "file": "packages/react/src/components/Button/CommandBarButton/CommandBarButton.tsx", - "hash": "12454085510449396776" - }, - { - "file": "packages/react/src/components/Button/CommandButton/CommandButton.tsx", - "hash": "15919999991405643341" - }, - { - "file": "packages/react/src/components/Button/CompoundButton/CompoundButton.styles.ts", - "hash": "15121334606545964834" - }, - { - "file": "packages/react/src/components/Button/CompoundButton/CompoundButton.tsx", - "hash": "11269834283536570675" - }, - { - "file": "packages/react/src/components/Button/DefaultButton/DefaultButton.styles.ts", - "hash": "18241509591047606021" - }, - { - "file": "packages/react/src/components/Button/DefaultButton/DefaultButton.tsx", - "hash": "15772839065412790331" - }, - { - "file": "packages/react/src/components/Button/IconButton/IconButton.styles.ts", - "hash": "9769004099447041949" - }, - { - "file": "packages/react/src/components/Button/IconButton/IconButton.tsx", - "hash": "2733847614666169059" - }, - { - "file": "packages/react/src/components/Button/MessageBarButton/MessageBarButton.styles.ts", - "hash": "9568488038348577146" - }, - { - "file": "packages/react/src/components/Button/MessageBarButton/MessageBarButton.tsx", - "hash": "4960487562370824955" - }, - { - "file": "packages/react/src/components/Button/PrimaryButton/PrimaryButton.tsx", - "hash": "611494823225309972" - }, - { - "file": "packages/react/src/components/Button/SplitButton/SplitButton.classNames.ts", - "hash": "180913642668624058" - }, - { - "file": "packages/react/src/components/Button/SplitButton/SplitButton.styles.ts", - "hash": "13161165176196832651" - }, - { - "file": "packages/react/src/components/Button/__snapshots__/Button.deprecated.test.tsx.snap", - "hash": "10779387157892625644" - }, - { - "file": "packages/react/src/components/Button/__snapshots__/Button.test.tsx.snap", - "hash": "6525828065674363022" - }, - { - "file": "packages/react/src/components/Button/index.ts", - "hash": "3026621165842617645" - }, - { - "file": "packages/react/src/components/Calendar/Calendar.base.tsx", - "hash": "3698885589942741371" - }, - { - "file": "packages/react/src/components/Calendar/Calendar.styles.ts", - "hash": "7681885833460442019" - }, - { - "file": "packages/react/src/components/Calendar/Calendar.test.tsx", - "hash": "12113283689946056276" - }, - { - "file": "packages/react/src/components/Calendar/Calendar.tsx", - "hash": "17842804668188421221" - }, - { - "file": "packages/react/src/components/Calendar/Calendar.types.ts", - "hash": "16761844729622092230" - }, - { - "file": "packages/react/src/components/Calendar/CalendarDay/CalendarDay.base.tsx", - "hash": "8612771638643633009" - }, - { - "file": "packages/react/src/components/Calendar/CalendarDay/CalendarDay.styles.ts", - "hash": "14371245373320384030" - }, - { - "file": "packages/react/src/components/Calendar/CalendarDay/CalendarDay.tsx", - "hash": "2868624136863589280" - }, - { - "file": "packages/react/src/components/Calendar/CalendarDay/CalendarDay.types.ts", - "hash": "1572652125125308751" - }, - { - "file": "packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.base.tsx", - "hash": "14029913455996670188" - }, - { - "file": "packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.styles.ts", - "hash": "13220094357196562209" - }, - { - "file": "packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.tsx", - "hash": "14175881740264283095" - }, - { - "file": "packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.types.ts", - "hash": "11761404676563048345" - }, - { - "file": "packages/react/src/components/Calendar/CalendarPicker/CalendarPicker.styles.ts", - "hash": "16513698440551210411" - }, - { - "file": "packages/react/src/components/Calendar/CalendarPicker/CalendarPicker.types.ts", - "hash": "13641312866335280338" - }, - { - "file": "packages/react/src/components/Calendar/CalendarYear/CalendarYear.base.tsx", - "hash": "14931817285159607366" - }, - { - "file": "packages/react/src/components/Calendar/CalendarYear/CalendarYear.styles.ts", - "hash": "5022118626516064814" - }, - { - "file": "packages/react/src/components/Calendar/CalendarYear/CalendarYear.tsx", - "hash": "3790852113301377423" - }, - { - "file": "packages/react/src/components/Calendar/CalendarYear/CalendarYear.types.ts", - "hash": "1212633857493091969" - }, - { - "file": "packages/react/src/components/Calendar/defaults.ts", - "hash": "10932514365007165542" - }, - { - "file": "packages/react/src/components/Calendar/index.ts", - "hash": "8926931160772554368" - }, - { - "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.base.tsx", - "hash": "9364545756154110372" - }, - { - "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.styles.ts", - "hash": "5474799333794445305" - }, - { - "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.test.tsx", - "hash": "14077376632654469516" - }, - { - "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.tsx", - "hash": "13954748508369387771" - }, - { - "file": "packages/react/src/components/CalendarDayGrid/CalendarDayGrid.types.ts", - "hash": "1315148665165774731" - }, - { - "file": "packages/react/src/components/CalendarDayGrid/CalendarGridDayCell.tsx", - "hash": "4377391835895631601" - }, - { - "file": "packages/react/src/components/CalendarDayGrid/CalendarGridRow.tsx", - "hash": "11836484162619787282" - }, - { - "file": "packages/react/src/components/CalendarDayGrid/CalendarMonthHeaderRow.tsx", - "hash": "1425249185322741479" - }, - { - "file": "packages/react/src/components/Callout/Callout.test.tsx", - "hash": "5054917375884985643" - }, - { - "file": "packages/react/src/components/Callout/Callout.tsx", - "hash": "15098348347424675166" - }, - { - "file": "packages/react/src/components/Callout/Callout.types.ts", - "hash": "9671085334529620331" - }, - { - "file": "packages/react/src/components/Callout/CalloutContent.base.tsx", - "hash": "7711216549782122145" - }, - { - "file": "packages/react/src/components/Callout/CalloutContent.styles.ts", - "hash": "14671269818620114958" - }, - { - "file": "packages/react/src/components/Callout/CalloutContent.tsx", - "hash": "2613599015627140647" - }, - { - "file": "packages/react/src/components/Callout/FocusTrapCallout.tsx", - "hash": "5711466981505374301" - }, - { - "file": "packages/react/src/components/Callout/FocusTrapCallout.types.ts", - "hash": "13099154175811699019" - }, - { - "file": "packages/react/src/components/Callout/__snapshots__/Callout.test.tsx.snap", - "hash": "7092676668363738687" - }, - { - "file": "packages/react/src/components/Callout/index.ts", - "hash": "18337988706537354723" - }, - { - "file": "packages/react/src/components/Check/Check.base.tsx", - "hash": "8099389880777908630" - }, - { - "file": "packages/react/src/components/Check/Check.styles.ts", - "hash": "11959653952883669852" - }, - { - "file": "packages/react/src/components/Check/Check.test.tsx", - "hash": "7098964263180304704" - }, - { - "file": "packages/react/src/components/Check/Check.tsx", - "hash": "2854772255457713049" - }, - { - "file": "packages/react/src/components/Check/Check.types.ts", - "hash": "1581118031102622036" - }, - { - "file": "packages/react/src/components/Check/__snapshots__/Check.test.tsx.snap", - "hash": "2994867670221716739" - }, - { - "file": "packages/react/src/components/Check/index.ts", - "hash": "760208717723128464" - }, - { - "file": "packages/react/src/components/Checkbox/Checkbox.base.tsx", - "hash": "17742414755561541210" - }, - { - "file": "packages/react/src/components/Checkbox/Checkbox.styles.ts", - "hash": "14738880418511813030" - }, - { - "file": "packages/react/src/components/Checkbox/Checkbox.test.tsx", - "hash": "3079724934788581514" - }, - { - "file": "packages/react/src/components/Checkbox/Checkbox.tsx", - "hash": "13026628343713587440" - }, - { - "file": "packages/react/src/components/Checkbox/Checkbox.types.ts", - "hash": "12031426030660668047" - }, - { - "file": "packages/react/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap", - "hash": "13716157077664308640" - }, - { - "file": "packages/react/src/components/Checkbox/index.ts", - "hash": "7986300600148701571" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.base.tsx", - "hash": "13068795033757508402" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.styles.ts", - "hash": "4320475055744560416" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.test.tsx", - "hash": "14850742821881609942" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.tsx", - "hash": "8195161768483642804" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroup.types.ts", - "hash": "758817708746738591" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.tsx", - "hash": "16705429588975673989" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.ts", - "hash": "7899251538753065410" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.test.tsx", - "hash": "15957366648578097033" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.tsx", - "hash": "4190193031612152205" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.types.ts", - "hash": "12527274131552227495" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/__snapshots__/ChoiceGroupOption.test.tsx.snap", - "hash": "8810824705317029428" - }, - { - "file": "packages/react/src/components/ChoiceGroup/ChoiceGroupOption/index.ts", - "hash": "18423094160257844331" - }, - { - "file": "packages/react/src/components/ChoiceGroup/__snapshots__/ChoiceGroup.test.tsx.snap", - "hash": "9569553682240889905" - }, - { - "file": "packages/react/src/components/ChoiceGroup/index.ts", - "hash": "328194483357894544" - }, - { - "file": "packages/react/src/components/Coachmark/Beak/Beak.styles.ts", - "hash": "10190924621190518847" - }, - { - "file": "packages/react/src/components/Coachmark/Beak/Beak.tsx", - "hash": "5905785957078046086" - }, - { - "file": "packages/react/src/components/Coachmark/Beak/Beak.types.ts", - "hash": "7291097281646749393" - }, - { - "file": "packages/react/src/components/Coachmark/Coachmark.base.tsx", - "hash": "9056756754402703923" - }, - { - "file": "packages/react/src/components/Coachmark/Coachmark.styles.ts", - "hash": "10326954716722979061" - }, - { - "file": "packages/react/src/components/Coachmark/Coachmark.test.tsx", - "hash": "16185438735178022700" - }, - { - "file": "packages/react/src/components/Coachmark/Coachmark.ts", - "hash": "5196593985187011138" - }, - { - "file": "packages/react/src/components/Coachmark/Coachmark.types.ts", - "hash": "7489711855929492755" - }, - { - "file": "packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.styles.ts", - "hash": "2162783246021921799" - }, - { - "file": "packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.tsx", - "hash": "6990834051214097788" - }, - { - "file": "packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.types.ts", - "hash": "13774772956859115836" - }, - { - "file": "packages/react/src/components/Coachmark/PositioningContainer/index.ts", - "hash": "10130805448946875991" - }, - { - "file": "packages/react/src/components/Coachmark/__snapshots__/Coachmark.test.tsx.snap", - "hash": "3728261009976044833" - }, - { - "file": "packages/react/src/components/Coachmark/index.ts", - "hash": "17067815343666058002" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorPicker.base.tsx", - "hash": "7180003949049537184" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorPicker.deprecated.test.tsx", - "hash": "1858759756402820397" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorPicker.styles.ts", - "hash": "13861598838815848006" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorPicker.test.tsx", - "hash": "14055911644872002613" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorPicker.tsx", - "hash": "3828925813868702320" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorPicker.types.ts", - "hash": "18374948044378105293" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.base.tsx", - "hash": "2973631643717621166" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.styles.ts", - "hash": "157313535816601706" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.test.tsx", - "hash": "15268079714026099074" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.tsx", - "hash": "6995462218313240219" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.types.ts", - "hash": "10322384115733206371" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorRectangle/__snapshots__/ColorRectangle.test.tsx.snap", - "hash": "10729672506798250519" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.base.tsx", - "hash": "13278161114456779756" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.deprecated.test.tsx", - "hash": "13316991814195708224" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.styles.ts", - "hash": "17221012701587550663" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.test.tsx", - "hash": "3883018588900249454" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.tsx", - "hash": "5339430979491373150" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.types.ts", - "hash": "447516077491216644" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorSlider/__snapshots__/ColorSlider.deprecated.test.tsx.snap", - "hash": "16239289712154164621" - }, - { - "file": "packages/react/src/components/ColorPicker/ColorSlider/__snapshots__/ColorSlider.test.tsx.snap", - "hash": "12518773005539682818" - }, - { - "file": "packages/react/src/components/ColorPicker/__snapshots__/ColorPicker.test.tsx.snap", - "hash": "7343175688397682026" - }, - { - "file": "packages/react/src/components/ColorPicker/index.ts", - "hash": "7939662011628958779" - }, - { - "file": "packages/react/src/components/ComboBox/ComboBox.classNames.ts", - "hash": "3467725814675995660" - }, - { - "file": "packages/react/src/components/ComboBox/ComboBox.styles.ts", - "hash": "6464576420747089558" - }, - { - "file": "packages/react/src/components/ComboBox/ComboBox.test.tsx", - "hash": "16954748442404999255" - }, - { - "file": "packages/react/src/components/ComboBox/ComboBox.tsx", - "hash": "8989906260515157173" - }, - { - "file": "packages/react/src/components/ComboBox/ComboBox.types.ts", - "hash": "957405394456490575" - }, - { - "file": "packages/react/src/components/ComboBox/VirtualizedComboBox.tsx", - "hash": "18330214605208399631" - }, - { - "file": "packages/react/src/components/ComboBox/__snapshots__/ComboBox.test.tsx.snap", - "hash": "5482146850650565127" - }, - { - "file": "packages/react/src/components/ComboBox/index.ts", - "hash": "9834057037475040238" - }, - { - "file": "packages/react/src/components/CommandBar/CommandBar.base.tsx", - "hash": "2552079397073764410" - }, - { - "file": "packages/react/src/components/CommandBar/CommandBar.deprecated.test.tsx", - "hash": "12378369935626821833" - }, - { - "file": "packages/react/src/components/CommandBar/CommandBar.styles.ts", - "hash": "5993613558436675319" - }, - { - "file": "packages/react/src/components/CommandBar/CommandBar.test.tsx", - "hash": "11216319412535445892" - }, - { - "file": "packages/react/src/components/CommandBar/CommandBar.tsx", - "hash": "700267282760851139" - }, - { - "file": "packages/react/src/components/CommandBar/CommandBar.types.ts", - "hash": "3532179943527593242" - }, - { - "file": "packages/react/src/components/CommandBar/__snapshots__/CommandBar.deprecated.test.tsx.snap", - "hash": "16088271511149617368" - }, - { - "file": "packages/react/src/components/CommandBar/__snapshots__/CommandBar.test.tsx.snap", - "hash": "12207775744090479986" - }, - { - "file": "packages/react/src/components/CommandBar/index.ts", - "hash": "3215200113690211413" - }, - { - "file": "packages/react/src/components/ComponentConformance.test.tsx", - "hash": "10480277133274272228" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenu.base.tsx", - "hash": "5877188823725891655" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenu.classNames.ts", - "hash": "10706196024534983914" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenu.cnstyles.ts", - "hash": "3654706946123482754" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenu.deprecated.test.tsx", - "hash": "198235862324324028" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenu.styles.ts", - "hash": "17175239582403304459" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenu.test.tsx", - "hash": "2120930861885774156" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenu.tsx", - "hash": "3920779922044026270" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenu.types.ts", - "hash": "11798924850247416531" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItem.base.tsx", - "hash": "6854375821061177190" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItem.test.tsx", - "hash": "9752520632902479921" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItem.ts", - "hash": "63171619528417113" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItem.types.ts", - "hash": "13270971864325546680" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.deprecated.test.tsx", - "hash": "3558946452323923907" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.test.tsx", - "hash": "9918131864879234023" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.tsx", - "hash": "3098687527450227800" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.deprecated.test.tsx", - "hash": "12212037314653515053" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.test.tsx", - "hash": "15584535416442484383" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.tsx", - "hash": "9063110335323343604" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.tsx", - "hash": "14701963235740302031" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.types.ts", - "hash": "13008443172857294424" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.deprecated.test.tsx", - "hash": "3989543743399102394" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.test.tsx", - "hash": "5321812505019653351" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.tsx", - "hash": "4663915473238241475" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuAnchor.deprecated.test.tsx.snap", - "hash": "14041414160285571668" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuAnchor.test.tsx.snap", - "hash": "14041414160285571668" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuButton.deprecated.test.tsx.snap", - "hash": "14710957708359584012" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuButton.test.tsx.snap", - "hash": "14710957708359584012" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuSplitButton.deprecated.test.tsx.snap", - "hash": "8437199313117887841" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuSplitButton.test.tsx.snap", - "hash": "8437199313117887841" - }, - { - "file": "packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/index.ts", - "hash": "11528547953994929240" - }, - { - "file": "packages/react/src/components/ContextualMenu/__snapshots__/ContextualMenu.test.tsx.snap", - "hash": "3252836540291663345" - }, - { - "file": "packages/react/src/components/ContextualMenu/__snapshots__/ContextualMenuItem.test.tsx.snap", - "hash": "17054590227599556346" - }, - { - "file": "packages/react/src/components/ContextualMenu/index.ts", - "hash": "3835542198813000796" - }, - { - "file": "packages/react/src/components/DatePicker/DatePicker.base.tsx", - "hash": "11556118508861459365" - }, - { - "file": "packages/react/src/components/DatePicker/DatePicker.styles.ts", - "hash": "13564743909105234986" - }, - { - "file": "packages/react/src/components/DatePicker/DatePicker.test.tsx", - "hash": "1752159393780274598" - }, - { - "file": "packages/react/src/components/DatePicker/DatePicker.tsx", - "hash": "4670714210270594435" - }, - { - "file": "packages/react/src/components/DatePicker/DatePicker.types.ts", - "hash": "15140280667936305477" - }, - { - "file": "packages/react/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap", - "hash": "13576409900070206139" - }, - { - "file": "packages/react/src/components/DatePicker/defaults.ts", - "hash": "9768572084554514711" - }, - { - "file": "packages/react/src/components/DatePicker/index.ts", - "hash": "17974637769310028943" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsColumn.base.tsx", - "hash": "6308648217640225380" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsColumn.styles.ts", - "hash": "4880164232418754095" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsColumn.test.tsx", - "hash": "6798921407981461914" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsColumn.ts", - "hash": "4902399603567842665" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsColumn.types.ts", - "hash": "8180062505592077016" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsFooter.types.ts", - "hash": "11446456440966141852" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsHeader.base.tsx", - "hash": "3928141695731168504" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsHeader.styles.ts", - "hash": "5073662827578508154" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsHeader.test.tsx", - "hash": "3014066941567472289" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsHeader.ts", - "hash": "17422579751459550432" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsHeader.types.ts", - "hash": "7637123501724238546" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsList.base.tsx", - "hash": "2799961499477794228" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsList.styles.ts", - "hash": "7526554567819721912" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsList.test.tsx", - "hash": "6228800664354956955" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsList.ts", - "hash": "12728534349659462744" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsList.types.ts", - "hash": "9537843069676358412" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsListV2.test.tsx", - "hash": "18360992886402272534" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRow.base.tsx", - "hash": "5406961765015794815" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRow.styles.ts", - "hash": "3731969425006369055" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRow.test.tsx", - "hash": "2834031795765256016" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRow.ts", - "hash": "11470577206839450556" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRow.types.ts", - "hash": "17665153010720544130" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRowCheck.styles.ts", - "hash": "15671426098715829029" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRowCheck.tsx", - "hash": "5242923550637359098" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRowCheck.types.ts", - "hash": "7924190524800312148" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRowFields.tsx", - "hash": "11847639474237705982" - }, - { - "file": "packages/react/src/components/DetailsList/DetailsRowFields.types.ts", - "hash": "1010241688363163897" - }, - { - "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.base.tsx", - "hash": "3035507686770242754" - }, - { - "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.styles.ts", - "hash": "14244971813247985296" - }, - { - "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.test.tsx", - "hash": "2424496070241863869" - }, - { - "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.ts", - "hash": "5199934512938546464" - }, - { - "file": "packages/react/src/components/DetailsList/ShimmeredDetailsList.types.ts", - "hash": "11982842825329048243" - }, - { - "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsColumn.test.tsx.snap", - "hash": "10877029629695718863" - }, - { - "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsHeader.test.tsx.snap", - "hash": "7752035837626973782" - }, - { - "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsList.test.tsx.snap", - "hash": "9571333155875344655" - }, - { - "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsListV2.test.tsx.snap", - "hash": "16889062212530889471" - }, - { - "file": "packages/react/src/components/DetailsList/__snapshots__/DetailsRow.test.tsx.snap", - "hash": "11109931562984326200" - }, - { - "file": "packages/react/src/components/DetailsList/__snapshots__/ShimmeredDetailsList.test.tsx.snap", - "hash": "13956054951020044610" - }, - { - "file": "packages/react/src/components/DetailsList/index.ts", - "hash": "11905967269357664057" - }, - { - "file": "packages/react/src/components/Dialog/Dialog.base.tsx", - "hash": "1335031672704243772" - }, - { - "file": "packages/react/src/components/Dialog/Dialog.deprecated.test.tsx", - "hash": "2188927542479579813" - }, - { - "file": "packages/react/src/components/Dialog/Dialog.styles.ts", - "hash": "1274186165067202097" - }, - { - "file": "packages/react/src/components/Dialog/Dialog.test.tsx", - "hash": "1250079322956341113" - }, - { - "file": "packages/react/src/components/Dialog/Dialog.tsx", - "hash": "10039529914607071950" - }, - { - "file": "packages/react/src/components/Dialog/Dialog.types.ts", - "hash": "18136777266972422495" - }, - { - "file": "packages/react/src/components/Dialog/DialogContent.base.tsx", - "hash": "11343728294232910282" - }, - { - "file": "packages/react/src/components/Dialog/DialogContent.styles.ts", - "hash": "4270458193570647094" - }, - { - "file": "packages/react/src/components/Dialog/DialogContent.tsx", - "hash": "17518100903877368017" - }, - { - "file": "packages/react/src/components/Dialog/DialogContent.types.ts", - "hash": "4747961404545812644" - }, - { - "file": "packages/react/src/components/Dialog/DialogFooter.base.tsx", - "hash": "10782995317447912366" - }, - { - "file": "packages/react/src/components/Dialog/DialogFooter.styles.ts", - "hash": "17208002434260655427" - }, - { - "file": "packages/react/src/components/Dialog/DialogFooter.tsx", - "hash": "12109203749703017200" - }, - { - "file": "packages/react/src/components/Dialog/DialogFooter.types.ts", - "hash": "6262905726334995933" - }, - { - "file": "packages/react/src/components/Dialog/__snapshots__/Dialog.deprecated.test.tsx.snap", - "hash": "1205677692101133734" - }, - { - "file": "packages/react/src/components/Dialog/__snapshots__/Dialog.test.tsx.snap", - "hash": "14260178774430004740" - }, - { - "file": "packages/react/src/components/Dialog/index.ts", - "hash": "7399685691520743552" - }, - { - "file": "packages/react/src/components/Divider/VerticalDivider.base.tsx", - "hash": "14747514845048329254" - }, - { - "file": "packages/react/src/components/Divider/VerticalDivider.classNames.ts", - "hash": "14958285190679663562" - }, - { - "file": "packages/react/src/components/Divider/VerticalDivider.styles.ts", - "hash": "2333036108043844947" - }, - { - "file": "packages/react/src/components/Divider/VerticalDivider.test.tsx", - "hash": "15996912185164124298" - }, - { - "file": "packages/react/src/components/Divider/VerticalDivider.tsx", - "hash": "4835536727331111736" - }, - { - "file": "packages/react/src/components/Divider/VerticalDivider.types.ts", - "hash": "10846488578576759054" - }, - { - "file": "packages/react/src/components/Divider/index.ts", - "hash": "11460793940690681257" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCard.base.tsx", - "hash": "13812626508580200819" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCard.styles.ts", - "hash": "2131296789428441065" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCard.test.tsx", - "hash": "15482888094788676500" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCard.ts", - "hash": "8676978884832092435" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCard.types.ts", - "hash": "15823224865111213520" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardActions.base.tsx", - "hash": "12618360925624178049" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardActions.styles.ts", - "hash": "18073006403572164218" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardActions.ts", - "hash": "7210607681946114376" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardActions.types.ts", - "hash": "17216634669902609499" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardActivity.base.tsx", - "hash": "15733532529261222511" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardActivity.styles.ts", - "hash": "4735425582448454346" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardActivity.ts", - "hash": "15086127853218677837" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardActivity.types.ts", - "hash": "9561565954234648002" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardDetails.base.tsx", - "hash": "6440829969312645425" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardDetails.styles.ts", - "hash": "11880948122737474571" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardDetails.ts", - "hash": "18132989513726564615" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardDetails.types.ts", - "hash": "2756943457533117735" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardImage.base.tsx", - "hash": "11014604612367552221" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardImage.styles.ts", - "hash": "3780284966890539977" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardImage.test.tsx", - "hash": "1580886441918862054" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardImage.ts", - "hash": "10433805243649759860" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardImage.types.ts", - "hash": "15934884145645343404" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardLocation.base.tsx", - "hash": "11939763814866414085" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardLocation.styles.ts", - "hash": "13514891004140091333" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardLocation.ts", - "hash": "8735208547155425896" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardLocation.types.ts", - "hash": "8841526483942904591" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardLogo.base.tsx", - "hash": "8438097103948406750" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardLogo.styles.ts", - "hash": "15136768782429072113" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardLogo.ts", - "hash": "7856356439067054499" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardLogo.types.ts", - "hash": "14701492463350455067" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardPreview.base.tsx", - "hash": "11848821011500897044" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardPreview.styles.ts", - "hash": "5544712449354910585" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardPreview.ts", - "hash": "11787269282631307300" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardPreview.types.ts", - "hash": "8047917283408471306" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardStatus.base.tsx", - "hash": "12393731567818105572" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardStatus.styles.ts", - "hash": "3622145673328933221" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardStatus.ts", - "hash": "5034770503855371748" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardStatus.types.ts", - "hash": "12693285533780951481" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardTitle.base.tsx", - "hash": "2674068828407692747" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardTitle.styles.ts", - "hash": "746101100616079977" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardTitle.ts", - "hash": "4490870589977340710" - }, - { - "file": "packages/react/src/components/DocumentCard/DocumentCardTitle.types.ts", - "hash": "10582359202711643083" - }, - { - "file": "packages/react/src/components/DocumentCard/__snapshots__/DocumentCard.test.tsx.snap", - "hash": "4538584156885630867" - }, - { - "file": "packages/react/src/components/DocumentCard/__snapshots__/DocumentCardImage.test.tsx.snap", - "hash": "9362918664972220624" - }, - { - "file": "packages/react/src/components/DocumentCard/index.ts", - "hash": "15416848639888338244" - }, - { - "file": "packages/react/src/components/Dropdown/Dropdown.base.tsx", - "hash": "5982101215514390747" - }, - { - "file": "packages/react/src/components/Dropdown/Dropdown.styles.ts", - "hash": "6706815686211379956" - }, - { - "file": "packages/react/src/components/Dropdown/Dropdown.test.tsx", - "hash": "10675635400111409800" - }, - { - "file": "packages/react/src/components/Dropdown/Dropdown.tsx", - "hash": "3664291599270262346" - }, - { - "file": "packages/react/src/components/Dropdown/Dropdown.types.ts", - "hash": "805386249723069476" - }, - { - "file": "packages/react/src/components/Dropdown/__snapshots__/Dropdown.test.tsx.snap", - "hash": "13951042411364693238" - }, - { - "file": "packages/react/src/components/Dropdown/index.ts", - "hash": "10944128569618040409" - }, - { - "file": "packages/react/src/components/Dropdown/utilities/DropdownSizePosCache.test.ts", - "hash": "14298618403894076114" - }, - { - "file": "packages/react/src/components/Dropdown/utilities/DropdownSizePosCache.ts", - "hash": "14573545613857367131" - }, - { - "file": "packages/react/src/components/ExtendedPicker/BaseExtendedPicker.scss", - "hash": "12208239487391689192" - }, - { - "file": "packages/react/src/components/ExtendedPicker/BaseExtendedPicker.test.tsx", - "hash": "2841294449776155583" - }, - { - "file": "packages/react/src/components/ExtendedPicker/BaseExtendedPicker.tsx", - "hash": "2417453781687326962" - }, - { - "file": "packages/react/src/components/ExtendedPicker/BaseExtendedPicker.types.ts", - "hash": "15463802587148449884" - }, - { - "file": "packages/react/src/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss", - "hash": "17786163747904205632" - }, - { - "file": "packages/react/src/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.tsx", - "hash": "13191670132860696607" - }, - { - "file": "packages/react/src/components/ExtendedPicker/__snapshots__/BaseExtendedPicker.test.tsx.snap", - "hash": "6741546184545952465" - }, - { - "file": "packages/react/src/components/ExtendedPicker/index.ts", - "hash": "16868542197048982054" - }, - { - "file": "packages/react/src/components/Fabric/Fabric.base.tsx", - "hash": "15683732381298373787" - }, - { - "file": "packages/react/src/components/Fabric/Fabric.styles.ts", - "hash": "3127272392985933000" - }, - { - "file": "packages/react/src/components/Fabric/Fabric.test.tsx", - "hash": "17910243263768585833" - }, - { - "file": "packages/react/src/components/Fabric/Fabric.tsx", - "hash": "1121061255147231937" - }, - { - "file": "packages/react/src/components/Fabric/Fabric.types.ts", - "hash": "9200626287532995187" - }, - { - "file": "packages/react/src/components/Fabric/__snapshots__/Fabric.test.tsx.snap", - "hash": "1783002843621059971" - }, - { - "file": "packages/react/src/components/Fabric/index.ts", - "hash": "16845651033210989707" - }, - { - "file": "packages/react/src/components/Facepile/Facepile.base.tsx", - "hash": "11217134564165655591" - }, - { - "file": "packages/react/src/components/Facepile/Facepile.styles.ts", - "hash": "3138742609820872548" - }, - { - "file": "packages/react/src/components/Facepile/Facepile.test.tsx", - "hash": "11808318394624143691" - }, - { - "file": "packages/react/src/components/Facepile/Facepile.tsx", - "hash": "4306908805761378642" - }, - { - "file": "packages/react/src/components/Facepile/Facepile.types.ts", - "hash": "10072003322857041114" - }, - { - "file": "packages/react/src/components/Facepile/FacepileButton.styles.ts", - "hash": "7829359605023940665" - }, - { - "file": "packages/react/src/components/Facepile/FacepileButton.tsx", - "hash": "2155259046902727571" - }, - { - "file": "packages/react/src/components/Facepile/__snapshots__/Facepile.test.tsx.snap", - "hash": "6035729035787766585" - }, - { - "file": "packages/react/src/components/Facepile/index.ts", - "hash": "3843010742943322381" - }, - { - "file": "packages/react/src/components/FloatingPicker/BaseFloatingPicker.scss", - "hash": "3604756766474209425" - }, - { - "file": "packages/react/src/components/FloatingPicker/BaseFloatingPicker.test.tsx", - "hash": "10402050741886698050" - }, - { - "file": "packages/react/src/components/FloatingPicker/BaseFloatingPicker.tsx", - "hash": "11401685007576339654" - }, - { - "file": "packages/react/src/components/FloatingPicker/BaseFloatingPicker.types.ts", - "hash": "1645066791828351675" - }, - { - "file": "packages/react/src/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.tsx", - "hash": "10382637701827323538" - }, - { - "file": "packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePicker.scss", - "hash": "3905654351229104045" - }, - { - "file": "packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/PickerItemsDefault.scss", - "hash": "998801082346015725" - }, - { - "file": "packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SelectedItemDefault.tsx", - "hash": "897588648460287399" - }, - { - "file": "packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx", - "hash": "10345250805301606220" - }, - { - "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionStore.test.tsx", - "hash": "17752174539815674325" - }, - { - "file": "packages/react/src/components/FloatingPicker/Suggestions/Suggestions.types.ts", - "hash": "1619086524390486592" - }, - { - "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.scss", - "hash": "14094996955090584456" - }, - { - "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.test.tsx", - "hash": "2858897028514122286" - }, - { - "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.tsx", - "hash": "5387100967775322843" - }, - { - "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsCore.scss", - "hash": "1212577356362130966" - }, - { - "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsCore.tsx", - "hash": "17624290543989563506" - }, - { - "file": "packages/react/src/components/FloatingPicker/Suggestions/SuggestionsStore.ts", - "hash": "647289822927373071" - }, - { - "file": "packages/react/src/components/FloatingPicker/__snapshots__/BaseFloatingPicker.test.tsx.snap", - "hash": "16517390094975721383" - }, - { - "file": "packages/react/src/components/FloatingPicker/index.ts", - "hash": "1170539822572092906" - }, - { - "file": "packages/react/src/components/FocusTrapZone/FocusTrapZone.test.tsx", - "hash": "3653120050351888108" - }, - { - "file": "packages/react/src/components/FocusTrapZone/FocusTrapZone.tsx", - "hash": "10749728776021839597" - }, - { - "file": "packages/react/src/components/FocusTrapZone/FocusTrapZone.types.ts", - "hash": "6325135567045903758" - }, - { - "file": "packages/react/src/components/FocusTrapZone/index.ts", - "hash": "8327216471932571554" - }, - { - "file": "packages/react/src/components/GroupedList/GroupFooter.base.tsx", - "hash": "14198741911962538297" - }, - { - "file": "packages/react/src/components/GroupedList/GroupFooter.styles.ts", - "hash": "14745204278246478319" - }, - { - "file": "packages/react/src/components/GroupedList/GroupFooter.ts", - "hash": "14580690585539484982" - }, - { - "file": "packages/react/src/components/GroupedList/GroupFooter.types.ts", - "hash": "1147400551367794739" - }, - { - "file": "packages/react/src/components/GroupedList/GroupHeader.base.tsx", - "hash": "3726588132786848597" - }, - { - "file": "packages/react/src/components/GroupedList/GroupHeader.styles.ts", - "hash": "127249141428848245" - }, - { - "file": "packages/react/src/components/GroupedList/GroupHeader.ts", - "hash": "14406360241147099907" - }, - { - "file": "packages/react/src/components/GroupedList/GroupHeader.types.ts", - "hash": "869293819287687801" - }, - { - "file": "packages/react/src/components/GroupedList/GroupShowAll.base.tsx", - "hash": "13430177116838777970" - }, - { - "file": "packages/react/src/components/GroupedList/GroupShowAll.styles.ts", - "hash": "9173240059922396704" - }, - { - "file": "packages/react/src/components/GroupedList/GroupShowAll.ts", - "hash": "18241463491945654086" - }, - { - "file": "packages/react/src/components/GroupedList/GroupShowAll.types.ts", - "hash": "15505112258738188159" - }, - { - "file": "packages/react/src/components/GroupedList/GroupSpacer.tsx", - "hash": "2382614986997954733" - }, - { - "file": "packages/react/src/components/GroupedList/GroupSpacer.types.ts", - "hash": "16962133135384591377" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedList.base.tsx", - "hash": "15701306319172639078" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedList.styles.ts", - "hash": "14642443188238030052" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedList.test.tsx", - "hash": "14268783024355777066" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedList.ts", - "hash": "4364629580250318037" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedList.types.ts", - "hash": "6313853039955612053" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedListSection.tsx", - "hash": "15904592677032813529" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedListV2.base.tsx", - "hash": "6481450481892001553" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedListV2.test.tsx", - "hash": "17238450217629509752" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedListV2.tsx", - "hash": "6260798994381323732" - }, - { - "file": "packages/react/src/components/GroupedList/GroupedListV2.types.ts", - "hash": "8326581936979434519" - }, - { - "file": "packages/react/src/components/GroupedList/index.ts", - "hash": "1461761807935333812" - }, - { - "file": "packages/react/src/components/HoverCard/BaseCard.types.ts", - "hash": "7854988721086480335" - }, - { - "file": "packages/react/src/components/HoverCard/CardCallout/CardCallout.tsx", - "hash": "6318903072711304556" - }, - { - "file": "packages/react/src/components/HoverCard/ExpandingCard.base.tsx", - "hash": "12920278905857343993" - }, - { - "file": "packages/react/src/components/HoverCard/ExpandingCard.styles.ts", - "hash": "2569486849539241092" - }, - { - "file": "packages/react/src/components/HoverCard/ExpandingCard.ts", - "hash": "14634468554846579407" - }, - { - "file": "packages/react/src/components/HoverCard/ExpandingCard.types.ts", - "hash": "6870429964911366844" - }, - { - "file": "packages/react/src/components/HoverCard/HoverCard.base.tsx", - "hash": "7594950086626185659" - }, - { - "file": "packages/react/src/components/HoverCard/HoverCard.styles.ts", - "hash": "13603738129536779165" - }, - { - "file": "packages/react/src/components/HoverCard/HoverCard.test.tsx", - "hash": "12683699210328003784" - }, - { - "file": "packages/react/src/components/HoverCard/HoverCard.ts", - "hash": "9256784689499188401" - }, - { - "file": "packages/react/src/components/HoverCard/HoverCard.types.ts", - "hash": "9375330990542611125" - }, - { - "file": "packages/react/src/components/HoverCard/PlainCard/PlainCard.base.tsx", - "hash": "3832709380523488574" - }, - { - "file": "packages/react/src/components/HoverCard/PlainCard/PlainCard.styles.ts", - "hash": "1750819295487788524" - }, - { - "file": "packages/react/src/components/HoverCard/PlainCard/PlainCard.ts", - "hash": "876829282032579574" - }, - { - "file": "packages/react/src/components/HoverCard/PlainCard/PlainCard.types.ts", - "hash": "17980034747921061565" - }, - { - "file": "packages/react/src/components/HoverCard/__snapshots__/HoverCard.test.tsx.snap", - "hash": "8142014490582894703" - }, - { - "file": "packages/react/src/components/HoverCard/index.ts", - "hash": "9603968589460798746" - }, - { - "file": "packages/react/src/components/Icon/FontIcon.test.tsx", - "hash": "9649120469191571884" - }, - { - "file": "packages/react/src/components/Icon/FontIcon.tsx", - "hash": "7793447455696767318" - }, - { - "file": "packages/react/src/components/Icon/Icon.base.tsx", - "hash": "3422716483088640348" - }, - { - "file": "packages/react/src/components/Icon/Icon.styles.ts", - "hash": "15493732365313653034" - }, - { - "file": "packages/react/src/components/Icon/Icon.test.tsx", - "hash": "17082809089358473376" - }, - { - "file": "packages/react/src/components/Icon/Icon.tsx", - "hash": "17379752979197206906" - }, - { - "file": "packages/react/src/components/Icon/Icon.types.ts", - "hash": "3134559495065858448" - }, - { - "file": "packages/react/src/components/Icon/ImageIcon.test.tsx", - "hash": "18144711626394801617" - }, - { - "file": "packages/react/src/components/Icon/ImageIcon.tsx", - "hash": "1808967559310429816" - }, - { - "file": "packages/react/src/components/Icon/__snapshots__/FontIcon.test.tsx.snap", - "hash": "13051146926087860573" - }, - { - "file": "packages/react/src/components/Icon/__snapshots__/Icon.test.tsx.snap", - "hash": "120175245064663605" - }, - { - "file": "packages/react/src/components/Icon/__snapshots__/ImageIcon.test.tsx.snap", - "hash": "4160491147454961750" - }, - { - "file": "packages/react/src/components/Icon/index.ts", - "hash": "18332890298919647701" - }, - { - "file": "packages/react/src/components/Image/Image.base.tsx", - "hash": "14123135419720583714" - }, - { - "file": "packages/react/src/components/Image/Image.styles.ts", - "hash": "7530737254051669603" - }, - { - "file": "packages/react/src/components/Image/Image.test.tsx", - "hash": "72724674218984311" - }, - { - "file": "packages/react/src/components/Image/Image.tsx", - "hash": "4184098376163028342" - }, - { - "file": "packages/react/src/components/Image/Image.types.ts", - "hash": "17944297075205116667" - }, - { - "file": "packages/react/src/components/Image/__snapshots__/Image.test.tsx.snap", - "hash": "8589950869797284375" - }, - { - "file": "packages/react/src/components/Image/index.ts", - "hash": "6117348458737991291" - }, - { - "file": "packages/react/src/components/Keytip/Keytip.styles.ts", - "hash": "26470584495180607" - }, - { - "file": "packages/react/src/components/Keytip/Keytip.tsx", - "hash": "1766817765311778495" - }, - { - "file": "packages/react/src/components/Keytip/Keytip.types.ts", - "hash": "16293725386152764984" - }, - { - "file": "packages/react/src/components/Keytip/KeytipContent.base.tsx", - "hash": "5493927869174904437" - }, - { - "file": "packages/react/src/components/Keytip/KeytipContent.test.tsx", - "hash": "5086309600864173535" - }, - { - "file": "packages/react/src/components/Keytip/KeytipContent.tsx", - "hash": "11611940156425372619" - }, - { - "file": "packages/react/src/components/Keytip/__snapshots__/KeytipContent.test.tsx.snap", - "hash": "2596460814892278429" - }, - { - "file": "packages/react/src/components/Keytip/index.ts", - "hash": "1589728284157203563" - }, - { - "file": "packages/react/src/components/KeytipData/KeytipData.tsx", - "hash": "15775201828664799680" - }, - { - "file": "packages/react/src/components/KeytipData/KeytipData.types.ts", - "hash": "12324447823866814267" - }, - { - "file": "packages/react/src/components/KeytipData/index.ts", - "hash": "4712198936381945548" - }, - { - "file": "packages/react/src/components/KeytipData/useKeytipData.test.tsx", - "hash": "17009869791449521401" - }, - { - "file": "packages/react/src/components/KeytipData/useKeytipData.ts", - "hash": "5488949258786574622" - }, - { - "file": "packages/react/src/components/KeytipData/useKeytipRef.test.ts", - "hash": "6346566064757434343" - }, - { - "file": "packages/react/src/components/KeytipData/useKeytipRef.ts", - "hash": "14435606425695323098" - }, - { - "file": "packages/react/src/components/KeytipLayer/IKeytipTreeNode.ts", - "hash": "4259987714669396673" - }, - { - "file": "packages/react/src/components/KeytipLayer/KeytipLayer.base.tsx", - "hash": "6544893700817273089" - }, - { - "file": "packages/react/src/components/KeytipLayer/KeytipLayer.styles.ts", - "hash": "16884186816077888808" - }, - { - "file": "packages/react/src/components/KeytipLayer/KeytipLayer.test.tsx", - "hash": "9818784360532204726" - }, - { - "file": "packages/react/src/components/KeytipLayer/KeytipLayer.tsx", - "hash": "9909297938001309774" - }, - { - "file": "packages/react/src/components/KeytipLayer/KeytipLayer.types.ts", - "hash": "15640944128209193732" - }, - { - "file": "packages/react/src/components/KeytipLayer/KeytipTree.test.tsx", - "hash": "9517751630103101293" - }, - { - "file": "packages/react/src/components/KeytipLayer/KeytipTree.ts", - "hash": "14167456441228340020" - }, - { - "file": "packages/react/src/components/KeytipLayer/index.ts", - "hash": "333553465631618123" - }, - { - "file": "packages/react/src/components/Label/Label.base.tsx", - "hash": "8190575964210506548" - }, - { - "file": "packages/react/src/components/Label/Label.styles.ts", - "hash": "5738839503600392947" - }, - { - "file": "packages/react/src/components/Label/Label.test.tsx", - "hash": "10090713217767425577" - }, - { - "file": "packages/react/src/components/Label/Label.tsx", - "hash": "8942462394854847624" - }, - { - "file": "packages/react/src/components/Label/Label.types.ts", - "hash": "8823718327343549516" - }, - { - "file": "packages/react/src/components/Label/LabelMixins.scss", - "hash": "2865796132641773676" - }, - { - "file": "packages/react/src/components/Label/__snapshots__/Label.test.tsx.snap", - "hash": "16950664531217292276" - }, - { - "file": "packages/react/src/components/Label/index.ts", - "hash": "701782372226603037" - }, - { - "file": "packages/react/src/components/Layer/Layer.base.tsx", - "hash": "14484890726556761152" - }, - { - "file": "packages/react/src/components/Layer/Layer.notification.ts", - "hash": "14110203098247553111" - }, - { - "file": "packages/react/src/components/Layer/Layer.styles.ts", - "hash": "9132996130234515054" - }, - { - "file": "packages/react/src/components/Layer/Layer.test.tsx", - "hash": "10526067785847207172" - }, - { - "file": "packages/react/src/components/Layer/Layer.tsx", - "hash": "16441278557794939293" - }, - { - "file": "packages/react/src/components/Layer/Layer.types.ts", - "hash": "18253182603761913277" - }, - { - "file": "packages/react/src/components/Layer/LayerHost.tsx", - "hash": "6415687165915280246" - }, - { - "file": "packages/react/src/components/Layer/LayerHost.types.ts", - "hash": "12435084507892692287" - }, - { - "file": "packages/react/src/components/Layer/__snapshots__/Layer.test.tsx.snap", - "hash": "4347345238023347739" - }, - { - "file": "packages/react/src/components/Layer/index.ts", - "hash": "2702225210959749876" - }, - { - "file": "packages/react/src/components/Link/Link.base.tsx", - "hash": "4696009851687537006" - }, - { - "file": "packages/react/src/components/Link/Link.styles.ts", - "hash": "6380541707633307769" - }, - { - "file": "packages/react/src/components/Link/Link.test.tsx", - "hash": "13162337841979270382" - }, - { - "file": "packages/react/src/components/Link/Link.tsx", - "hash": "1483460583795267065" - }, - { - "file": "packages/react/src/components/Link/Link.types.ts", - "hash": "7950997878673908950" - }, - { - "file": "packages/react/src/components/Link/__snapshots__/Link.test.tsx.snap", - "hash": "13236755011027298137" - }, - { - "file": "packages/react/src/components/Link/index.ts", - "hash": "16962753458348462360" - }, - { - "file": "packages/react/src/components/Link/useLink.ts", - "hash": "6771451659717631459" - }, - { - "file": "packages/react/src/components/List/List.test.tsx", - "hash": "14182207209684571411" - }, - { - "file": "packages/react/src/components/List/List.tsx", - "hash": "337398525385147578" - }, - { - "file": "packages/react/src/components/List/List.types.ts", - "hash": "1931441716112280094" - }, - { - "file": "packages/react/src/components/List/__snapshots__/List.test.tsx.snap", - "hash": "6603110722863245756" - }, - { - "file": "packages/react/src/components/List/index.ts", - "hash": "3791292240660287058" - }, - { - "file": "packages/react/src/components/List/utils/scroll.test.ts", - "hash": "5035250436686997299" - }, - { - "file": "packages/react/src/components/List/utils/scroll.ts", - "hash": "3276954363382087534" - }, - { - "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.base.tsx", - "hash": "8108986356865954062" - }, - { - "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.styles.tsx", - "hash": "11629235192520125274" - }, - { - "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.test.tsx", - "hash": "4097529235713830466" - }, - { - "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.tsx", - "hash": "3131729497757785613" - }, - { - "file": "packages/react/src/components/MarqueeSelection/MarqueeSelection.types.ts", - "hash": "7652722384397140480" - }, - { - "file": "packages/react/src/components/MarqueeSelection/__snapshots__/MarqueeSelection.test.tsx.snap", - "hash": "1476072118831675136" - }, - { - "file": "packages/react/src/components/MessageBar/MessageBar.base.tsx", - "hash": "3641725290805595446" - }, - { - "file": "packages/react/src/components/MessageBar/MessageBar.styles.ts", - "hash": "16901430479262789866" - }, - { - "file": "packages/react/src/components/MessageBar/MessageBar.test.tsx", - "hash": "4200531768298042001" - }, - { - "file": "packages/react/src/components/MessageBar/MessageBar.tsx", - "hash": "15934533885780135935" - }, - { - "file": "packages/react/src/components/MessageBar/MessageBar.types.ts", - "hash": "12107460841232965387" - }, - { - "file": "packages/react/src/components/MessageBar/__snapshots__/MessageBar.test.tsx.snap", - "hash": "12089438488535566985" - }, - { - "file": "packages/react/src/components/MessageBar/index.ts", - "hash": "10165783190127395700" - }, - { - "file": "packages/react/src/components/Modal/Modal.base.tsx", - "hash": "7774473038141256639" - }, - { - "file": "packages/react/src/components/Modal/Modal.styles.ts", - "hash": "13010493938273472658" - }, - { - "file": "packages/react/src/components/Modal/Modal.test.tsx", - "hash": "7330042059600029952" - }, - { - "file": "packages/react/src/components/Modal/Modal.ts", - "hash": "13683187870561493708" - }, - { - "file": "packages/react/src/components/Modal/Modal.types.ts", - "hash": "9311092462398275867" - }, - { - "file": "packages/react/src/components/Modal/__snapshots__/Modal.test.tsx.snap", - "hash": "16603919199555912093" - }, - { - "file": "packages/react/src/components/Modal/index.ts", - "hash": "13798025325857153668" - }, - { - "file": "packages/react/src/components/Nav/Nav.base.tsx", - "hash": "8394582414073501513" - }, - { - "file": "packages/react/src/components/Nav/Nav.styles.ts", - "hash": "14512050744103400087" - }, - { - "file": "packages/react/src/components/Nav/Nav.test.tsx", - "hash": "15514537140918235707" - }, - { - "file": "packages/react/src/components/Nav/Nav.tsx", - "hash": "10638284599870328707" - }, - { - "file": "packages/react/src/components/Nav/Nav.types.ts", - "hash": "8186856480909759678" - }, - { - "file": "packages/react/src/components/Nav/__snapshots__/Nav.test.tsx.snap", - "hash": "9307439353878066651" - }, - { - "file": "packages/react/src/components/Nav/index.ts", - "hash": "12662416181288669629" - }, - { - "file": "packages/react/src/components/OverflowSet/OverflowButton.tsx", - "hash": "9769707305996342513" - }, - { - "file": "packages/react/src/components/OverflowSet/OverflowSet.base.tsx", - "hash": "7113035684216930208" - }, - { - "file": "packages/react/src/components/OverflowSet/OverflowSet.styles.ts", - "hash": "5647135014154387382" - }, - { - "file": "packages/react/src/components/OverflowSet/OverflowSet.test.tsx", - "hash": "10333146601109509690" - }, - { - "file": "packages/react/src/components/OverflowSet/OverflowSet.ts", - "hash": "11238335157785127924" - }, - { - "file": "packages/react/src/components/OverflowSet/OverflowSet.types.ts", - "hash": "13948203100630407433" - }, - { - "file": "packages/react/src/components/OverflowSet/__snapshots__/OverflowSet.test.tsx.snap", - "hash": "248229536782956095" - }, - { - "file": "packages/react/src/components/OverflowSet/index.ts", - "hash": "16933137934852433852" - }, - { - "file": "packages/react/src/components/Overlay/Overlay.base.tsx", - "hash": "11398904192435363344" - }, - { - "file": "packages/react/src/components/Overlay/Overlay.styles.ts", - "hash": "12479301927551480916" - }, - { - "file": "packages/react/src/components/Overlay/Overlay.test.tsx", - "hash": "5375182851494505692" - }, - { - "file": "packages/react/src/components/Overlay/Overlay.tsx", - "hash": "14338623169213129149" - }, - { - "file": "packages/react/src/components/Overlay/Overlay.types.ts", - "hash": "2235807634895380003" - }, - { - "file": "packages/react/src/components/Overlay/index.ts", - "hash": "11296397034515992856" - }, - { - "file": "packages/react/src/components/Panel/Panel.base.tsx", - "hash": "12463543702726193236" - }, - { - "file": "packages/react/src/components/Panel/Panel.styles.ts", - "hash": "11077941591310445928" - }, - { - "file": "packages/react/src/components/Panel/Panel.test.tsx", - "hash": "1588567945652832575" - }, - { - "file": "packages/react/src/components/Panel/Panel.ts", - "hash": "8839731453608919663" - }, - { - "file": "packages/react/src/components/Panel/Panel.types.ts", - "hash": "6670275864375140828" - }, - { - "file": "packages/react/src/components/Panel/__snapshots__/Panel.test.tsx.snap", - "hash": "559260894059668605" - }, - { - "file": "packages/react/src/components/Panel/index.ts", - "hash": "13335174913237626780" - }, - { - "file": "packages/react/src/components/Persona/Persona.base.tsx", - "hash": "6194967196605028938" - }, - { - "file": "packages/react/src/components/Persona/Persona.deprecated.test.tsx", - "hash": "11989340987137030740" - }, - { - "file": "packages/react/src/components/Persona/Persona.styles.ts", - "hash": "1920607507152248627" - }, - { - "file": "packages/react/src/components/Persona/Persona.test.tsx", - "hash": "17539018815879877692" - }, - { - "file": "packages/react/src/components/Persona/Persona.tsx", - "hash": "9379532642372744584" - }, - { - "file": "packages/react/src/components/Persona/Persona.types.ts", - "hash": "17005696098342686371" - }, - { - "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.base.tsx", - "hash": "7978214084573190099" - }, - { - "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.deprecated.test.tsx", - "hash": "12416360491602756091" - }, - { - "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.styles.ts", - "hash": "3840381039426790312" - }, - { - "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.test.tsx", - "hash": "2750927891149479510" - }, - { - "file": "packages/react/src/components/Persona/PersonaCoin/PersonaCoin.tsx", - "hash": "1454207390708087949" - }, - { - "file": "packages/react/src/components/Persona/PersonaCoin/__snapshots__/PersonaCoin.deprecated.test.tsx.snap", - "hash": "8688578988288194326" - }, - { - "file": "packages/react/src/components/Persona/PersonaCoin/__snapshots__/PersonaCoin.test.tsx.snap", - "hash": "4893031829279367457" - }, - { - "file": "packages/react/src/components/Persona/PersonaCoin/index.ts", - "hash": "10833710250217357347" - }, - { - "file": "packages/react/src/components/Persona/PersonaConsts.tsx", - "hash": "1957132599773504778" - }, - { - "file": "packages/react/src/components/Persona/PersonaInitialsColor.test.ts", - "hash": "301179335668360928" - }, - { - "file": "packages/react/src/components/Persona/PersonaInitialsColor.ts", - "hash": "18170963028405037460" - }, - { - "file": "packages/react/src/components/Persona/PersonaPresence/PersonaPresence.base.tsx", - "hash": "3062885056415174826" - }, - { - "file": "packages/react/src/components/Persona/PersonaPresence/PersonaPresence.styles.ts", - "hash": "6615263651250958481" - }, - { - "file": "packages/react/src/components/Persona/PersonaPresence/PersonaPresence.test.tsx", - "hash": "13226130009014815513" - }, - { - "file": "packages/react/src/components/Persona/PersonaPresence/PersonaPresence.tsx", - "hash": "9491698373175359234" - }, - { - "file": "packages/react/src/components/Persona/PersonaPresence/__snapshots__/PersonaPresence.test.tsx.snap", - "hash": "1987937457430225355" - }, - { - "file": "packages/react/src/components/Persona/PersonaPresence/index.ts", - "hash": "8712998843474566045" - }, - { - "file": "packages/react/src/components/Persona/__snapshots__/Persona.deprecated.test.tsx.snap", - "hash": "12606532779411858656" - }, - { - "file": "packages/react/src/components/Persona/__snapshots__/Persona.test.tsx.snap", - "hash": "5243408820705783769" - }, - { - "file": "packages/react/src/components/Persona/index.ts", - "hash": "1003635016468659877" - }, - { - "file": "packages/react/src/components/Persona/test-utils.tsx", - "hash": "18432891952579134324" - }, - { - "file": "packages/react/src/components/Pivot/Pivot.base.tsx", - "hash": "5254684007184867388" - }, - { - "file": "packages/react/src/components/Pivot/Pivot.deprecated.test.tsx", - "hash": "1235740737998705772" - }, - { - "file": "packages/react/src/components/Pivot/Pivot.styles.ts", - "hash": "9108562916062400261" - }, - { - "file": "packages/react/src/components/Pivot/Pivot.test.tsx", - "hash": "1862426908183434633" - }, - { - "file": "packages/react/src/components/Pivot/Pivot.tsx", - "hash": "5829419170269708419" - }, - { - "file": "packages/react/src/components/Pivot/Pivot.types.ts", - "hash": "15724983107723831286" - }, - { - "file": "packages/react/src/components/Pivot/PivotItem.tsx", - "hash": "5498227973895913176" - }, - { - "file": "packages/react/src/components/Pivot/PivotItem.types.ts", - "hash": "7463314133865753309" - }, - { - "file": "packages/react/src/components/Pivot/__snapshots__/Pivot.deprecated.test.tsx.snap", - "hash": "9350737731021987462" - }, - { - "file": "packages/react/src/components/Pivot/__snapshots__/Pivot.test.tsx.snap", - "hash": "14812844193113361128" - }, - { - "file": "packages/react/src/components/Pivot/index.ts", - "hash": "16401592313694217989" - }, - { - "file": "packages/react/src/components/Popup/Popup.test.tsx", - "hash": "14748219392463636319" - }, - { - "file": "packages/react/src/components/Popup/Popup.tsx", - "hash": "18303114733075754228" - }, - { - "file": "packages/react/src/components/Popup/Popup.types.ts", - "hash": "2644822833966833698" - }, - { - "file": "packages/react/src/components/Popup/index.ts", - "hash": "15938578186587982924" - }, - { - "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.base.tsx", - "hash": "2266128567453655067" - }, - { - "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.styles.ts", - "hash": "17437177184475748779" - }, - { - "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.test.tsx", - "hash": "13377810921948144940" - }, - { - "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.tsx", - "hash": "3338648644072271163" - }, - { - "file": "packages/react/src/components/ProgressIndicator/ProgressIndicator.types.ts", - "hash": "13275827929777402920" - }, - { - "file": "packages/react/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.test.tsx.snap", - "hash": "5669310949553554689" - }, - { - "file": "packages/react/src/components/ProgressIndicator/index.ts", - "hash": "16364455361019886446" - }, - { - "file": "packages/react/src/components/Rating/Rating.base.tsx", - "hash": "4565165120321522700" - }, - { - "file": "packages/react/src/components/Rating/Rating.styles.ts", - "hash": "9112171566781846387" - }, - { - "file": "packages/react/src/components/Rating/Rating.test.tsx", - "hash": "12019971281630417718" - }, - { - "file": "packages/react/src/components/Rating/Rating.tsx", - "hash": "8474775138709046972" - }, - { - "file": "packages/react/src/components/Rating/Rating.types.ts", - "hash": "3293957530885947735" - }, - { - "file": "packages/react/src/components/Rating/__snapshots__/Rating.test.tsx.snap", - "hash": "6878166199175042678" - }, - { - "file": "packages/react/src/components/Rating/index.ts", - "hash": "6936810521464100990" - }, - { - "file": "packages/react/src/components/ResizeGroup/ResizeGroup.base.tsx", - "hash": "9694591702737967514" - }, - { - "file": "packages/react/src/components/ResizeGroup/ResizeGroup.test.tsx", - "hash": "5245675499839808625" - }, - { - "file": "packages/react/src/components/ResizeGroup/ResizeGroup.tsx", - "hash": "11042089564242243766" - }, - { - "file": "packages/react/src/components/ResizeGroup/ResizeGroup.types.ts", - "hash": "18215672949674225534" - }, - { - "file": "packages/react/src/components/ResizeGroup/__snapshots__/ResizeGroup.test.tsx.snap", - "hash": "11336585111154751236" - }, - { - "file": "packages/react/src/components/ResizeGroup/index.ts", - "hash": "18030751737929359966" - }, - { - "file": "packages/react/src/components/ScrollablePane/ScrollablePane.base.tsx", - "hash": "4728891024798577999" - }, - { - "file": "packages/react/src/components/ScrollablePane/ScrollablePane.scss", - "hash": "12660556819721993651" - }, - { - "file": "packages/react/src/components/ScrollablePane/ScrollablePane.styles.ts", - "hash": "7630057771040368786" - }, - { - "file": "packages/react/src/components/ScrollablePane/ScrollablePane.test.tsx", - "hash": "5450045075671214421" - }, - { - "file": "packages/react/src/components/ScrollablePane/ScrollablePane.tsx", - "hash": "10278226015705813013" - }, - { - "file": "packages/react/src/components/ScrollablePane/ScrollablePane.types.ts", - "hash": "11149654521789685360" - }, - { - "file": "packages/react/src/components/ScrollablePane/__snapshots__/ScrollablePane.test.tsx.snap", - "hash": "11917452609133122703" - }, - { - "file": "packages/react/src/components/ScrollablePane/index.ts", - "hash": "9022712096012739667" - }, - { - "file": "packages/react/src/components/SearchBox/SearchBox.base.tsx", - "hash": "4225740635739479085" - }, - { - "file": "packages/react/src/components/SearchBox/SearchBox.styles.tsx", - "hash": "1901328636794627212" - }, - { - "file": "packages/react/src/components/SearchBox/SearchBox.test.tsx", - "hash": "15270693759819107024" - }, - { - "file": "packages/react/src/components/SearchBox/SearchBox.tsx", - "hash": "14815922271880527031" - }, - { - "file": "packages/react/src/components/SearchBox/SearchBox.types.ts", - "hash": "16561624650344526815" - }, - { - "file": "packages/react/src/components/SearchBox/__snapshots__/SearchBox.test.tsx.snap", - "hash": "5163262981591412955" - }, - { - "file": "packages/react/src/components/SearchBox/index.ts", - "hash": "2002340183405233581" - }, - { - "file": "packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.test.tsx", - "hash": "2439461074165366957" - }, - { - "file": "packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.tsx", - "hash": "15017942153576064679" - }, - { - "file": "packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.types.ts", - "hash": "13036270235408570430" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.scss", - "hash": "15475341105828219619" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.ts", - "hash": "15633592521000750806" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.tsx", - "hash": "14514987165749763434" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.types.ts", - "hash": "14366127583648771435" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss", - "hash": "758761801215317040" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.tsx", - "hash": "17437319372558202829" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.tsx", - "hash": "17756749329382603092" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.test.tsx", - "hash": "13657963705753195239" - }, - { - "file": "packages/react/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.tsx", - "hash": "2188525700728877068" - }, - { - "file": "packages/react/src/components/SelectedItemsList/__snapshots__/BaseSelectedItemsList.test.tsx.snap", - "hash": "17274296306189210980" - }, - { - "file": "packages/react/src/components/SelectedItemsList/index.ts", - "hash": "7595379961393666277" - }, - { - "file": "packages/react/src/components/Separator/Separator.base.tsx", - "hash": "17294625678770939029" - }, - { - "file": "packages/react/src/components/Separator/Separator.styles.ts", - "hash": "14230472610755643944" - }, - { - "file": "packages/react/src/components/Separator/Separator.test.tsx", - "hash": "7738872471754358071" - }, - { - "file": "packages/react/src/components/Separator/Separator.tsx", - "hash": "2708132967434374502" - }, - { - "file": "packages/react/src/components/Separator/Separator.types.ts", - "hash": "13040932608955788124" - }, - { - "file": "packages/react/src/components/Separator/index.ts", - "hash": "14575455021946241513" - }, - { - "file": "packages/react/src/components/Shimmer/Shimmer.base.tsx", - "hash": "622305100319727334" - }, - { - "file": "packages/react/src/components/Shimmer/Shimmer.styles.ts", - "hash": "7858803940928495535" - }, - { - "file": "packages/react/src/components/Shimmer/Shimmer.test.tsx", - "hash": "14192583860063774916" - }, - { - "file": "packages/react/src/components/Shimmer/Shimmer.tsx", - "hash": "1394717753894766880" - }, - { - "file": "packages/react/src/components/Shimmer/Shimmer.types.ts", - "hash": "17331228457676528659" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.base.tsx", - "hash": "10275032889626978683" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.ts", - "hash": "11420523654698134729" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.tsx", - "hash": "9694371307250105703" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.types.ts", - "hash": "1728577304450374260" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.tsx", - "hash": "18379310095005316743" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.ts", - "hash": "2545105839221331446" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.tsx", - "hash": "14250368054107805040" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.types.ts", - "hash": "7115051155111137833" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.base.tsx", - "hash": "78556124504108996" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.styles.ts", - "hash": "2064652991532358343" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.tsx", - "hash": "11476010222559961913" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.types.ts", - "hash": "2110669865470376426" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.base.tsx", - "hash": "11316009371793371654" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.styles.ts", - "hash": "16825660826402859755" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.tsx", - "hash": "6810202527433669183" - }, - { - "file": "packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.types.ts", - "hash": "18351243406956033223" - }, - { - "file": "packages/react/src/components/Shimmer/__snapshots__/Shimmer.test.tsx.snap", - "hash": "3185768282225296628" - }, - { - "file": "packages/react/src/components/Shimmer/index.ts", - "hash": "13927227349171452284" - }, - { - "file": "packages/react/src/components/Slider/Slider.base.tsx", - "hash": "15798451710094592561" - }, - { - "file": "packages/react/src/components/Slider/Slider.styles.ts", - "hash": "4607291680675548022" - }, - { - "file": "packages/react/src/components/Slider/Slider.test.tsx", - "hash": "8613310415484639048" - }, - { - "file": "packages/react/src/components/Slider/Slider.tsx", - "hash": "7410622987581707582" - }, - { - "file": "packages/react/src/components/Slider/Slider.types.ts", - "hash": "14952151059140667704" - }, - { - "file": "packages/react/src/components/Slider/__snapshots__/Slider.test.tsx.snap", - "hash": "9285732807236239098" - }, - { - "file": "packages/react/src/components/Slider/index.ts", - "hash": "16670111655346245754" - }, - { - "file": "packages/react/src/components/Slider/useSlider.ts", - "hash": "12900564936250592122" - }, - { - "file": "packages/react/src/components/SpinButton/SpinButton.base.tsx", - "hash": "18058269695188263893" - }, - { - "file": "packages/react/src/components/SpinButton/SpinButton.styles.ts", - "hash": "9802419801197429803" - }, - { - "file": "packages/react/src/components/SpinButton/SpinButton.test.tsx", - "hash": "1102850678003036987" - }, - { - "file": "packages/react/src/components/SpinButton/SpinButton.tsx", - "hash": "5507489409647508695" - }, - { - "file": "packages/react/src/components/SpinButton/SpinButton.types.ts", - "hash": "2703760200830686057" - }, - { - "file": "packages/react/src/components/SpinButton/__snapshots__/SpinButton.test.tsx.snap", - "hash": "12546769869747196784" - }, - { - "file": "packages/react/src/components/SpinButton/index.ts", - "hash": "6778975452233565727" - }, - { - "file": "packages/react/src/components/Spinner/Spinner.base.tsx", - "hash": "7258097721326686377" - }, - { - "file": "packages/react/src/components/Spinner/Spinner.styles.tsx", - "hash": "716100486567492388" - }, - { - "file": "packages/react/src/components/Spinner/Spinner.test.tsx", - "hash": "12060499305856970384" - }, - { - "file": "packages/react/src/components/Spinner/Spinner.tsx", - "hash": "3200211062084468851" - }, - { - "file": "packages/react/src/components/Spinner/Spinner.types.ts", - "hash": "1544606461056547194" - }, - { - "file": "packages/react/src/components/Spinner/__snapshots__/Spinner.test.tsx.snap", - "hash": "10255693095285678582" - }, - { - "file": "packages/react/src/components/Spinner/index.ts", - "hash": "1855220178076017776" - }, - { - "file": "packages/react/src/components/Stack/Stack.styles.ts", - "hash": "16321254993662249061" - }, - { - "file": "packages/react/src/components/Stack/Stack.test.tsx", - "hash": "11883216989281561254" - }, - { - "file": "packages/react/src/components/Stack/Stack.tsx", - "hash": "4140006760718240707" - }, - { - "file": "packages/react/src/components/Stack/Stack.types.ts", - "hash": "13977158692936683168" - }, - { - "file": "packages/react/src/components/Stack/StackItem/StackItem.styles.ts", - "hash": "10908263818739168703" - }, - { - "file": "packages/react/src/components/Stack/StackItem/StackItem.test.tsx", - "hash": "15972135318103519144" - }, - { - "file": "packages/react/src/components/Stack/StackItem/StackItem.tsx", - "hash": "15838468526064014217" - }, - { - "file": "packages/react/src/components/Stack/StackItem/StackItem.types.ts", - "hash": "3129159544618735975" - }, - { - "file": "packages/react/src/components/Stack/StackUtils.test.ts", - "hash": "521690037370632650" - }, - { - "file": "packages/react/src/components/Stack/StackUtils.ts", - "hash": "12286636882102513809" - }, - { - "file": "packages/react/src/components/Stack/__snapshots__/Stack.test.tsx.snap", - "hash": "12864004073364256598" - }, - { - "file": "packages/react/src/components/Stack/index.ts", - "hash": "1979466436394549136" - }, - { - "file": "packages/react/src/components/Sticky/Sticky.test.tsx", - "hash": "483009900348746854" - }, - { - "file": "packages/react/src/components/Sticky/Sticky.tsx", - "hash": "4820400588900345897" - }, - { - "file": "packages/react/src/components/Sticky/Sticky.types.ts", - "hash": "3615404119608318992" - }, - { - "file": "packages/react/src/components/Sticky/index.ts", - "hash": "2542216627679221864" - }, - { - "file": "packages/react/src/components/Sticky/util/comparison.test.ts", - "hash": "14096854823836155200" - }, - { - "file": "packages/react/src/components/Sticky/util/comparison.ts", - "hash": "4588257025943731766" - }, - { - "file": "packages/react/src/components/Sticky/util/scroll.test.ts", - "hash": "12778441671228486454" - }, - { - "file": "packages/react/src/components/Sticky/util/scroll.ts", - "hash": "7073818532586250683" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.base.tsx", - "hash": "4877535088844461282" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.styles.ts", - "hash": "1746093924526525911" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.tsx", - "hash": "12490850924711508436" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.types.ts", - "hash": "11755498344911849810" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.base.tsx", - "hash": "15148770286190928984" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.styles.ts", - "hash": "10927866444432786096" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.test.tsx", - "hash": "14920126625218364277" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.tsx", - "hash": "11572086435543663291" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/SwatchColorPicker.types.ts", - "hash": "804021372959073378" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/__snapshots__/SwatchColorPicker.test.tsx.snap", - "hash": "9703469669882626284" - }, - { - "file": "packages/react/src/components/SwatchColorPicker/index.ts", - "hash": "13458739188607801516" - }, - { - "file": "packages/react/src/components/TeachingBubble/TeachingBubble.base.tsx", - "hash": "11960677283213387231" - }, - { - "file": "packages/react/src/components/TeachingBubble/TeachingBubble.deprecated.test.tsx", - "hash": "11992566066080602646" - }, - { - "file": "packages/react/src/components/TeachingBubble/TeachingBubble.styles.ts", - "hash": "15359886714365052297" - }, - { - "file": "packages/react/src/components/TeachingBubble/TeachingBubble.test.tsx", - "hash": "13726719835642907185" - }, - { - "file": "packages/react/src/components/TeachingBubble/TeachingBubble.ts", - "hash": "2444446477830155936" - }, - { - "file": "packages/react/src/components/TeachingBubble/TeachingBubble.types.ts", - "hash": "16828074886234505184" - }, - { - "file": "packages/react/src/components/TeachingBubble/TeachingBubbleContent.base.tsx", - "hash": "16413351954180758506" - }, - { - "file": "packages/react/src/components/TeachingBubble/TeachingBubbleContent.ts", - "hash": "14936507102622600629" - }, - { - "file": "packages/react/src/components/TeachingBubble/__snapshots__/TeachingBubble.deprecated.test.tsx.snap", - "hash": "13317529128477000448" - }, - { - "file": "packages/react/src/components/TeachingBubble/__snapshots__/TeachingBubble.test.tsx.snap", - "hash": "11608354909874598053" - }, - { - "file": "packages/react/src/components/TeachingBubble/index.ts", - "hash": "5537273073495594935" - }, - { - "file": "packages/react/src/components/Text/Text.styles.ts", - "hash": "16557720552861338265" - }, - { - "file": "packages/react/src/components/Text/Text.test.tsx", - "hash": "10229486515428514407" - }, - { - "file": "packages/react/src/components/Text/Text.ts", - "hash": "18117337464299047121" - }, - { - "file": "packages/react/src/components/Text/Text.types.tsx", - "hash": "17642157339175361608" - }, - { - "file": "packages/react/src/components/Text/Text.view.tsx", - "hash": "10365127091762030027" - }, - { - "file": "packages/react/src/components/Text/__snapshots__/Text.test.tsx.snap", - "hash": "9078894318583755413" - }, - { - "file": "packages/react/src/components/Text/index.ts", - "hash": "230878242475216758" - }, - { - "file": "packages/react/src/components/TextField/MaskedTextField/MaskedTextField.test.tsx", - "hash": "14177584564035837064" - }, - { - "file": "packages/react/src/components/TextField/MaskedTextField/MaskedTextField.tsx", - "hash": "9197609096631929679" - }, - { - "file": "packages/react/src/components/TextField/MaskedTextField/__snapshots__/MaskedTextField.test.tsx.snap", - "hash": "2368489911375711210" - }, - { - "file": "packages/react/src/components/TextField/MaskedTextField/inputMask.test.ts", - "hash": "12837909525862283635" - }, - { - "file": "packages/react/src/components/TextField/MaskedTextField/inputMask.ts", - "hash": "3204972971904546695" - }, - { - "file": "packages/react/src/components/TextField/TextField.base.tsx", - "hash": "3135520502977693022" - }, - { - "file": "packages/react/src/components/TextField/TextField.styles.tsx", - "hash": "16053279269199542379" - }, - { - "file": "packages/react/src/components/TextField/TextField.test.tsx", - "hash": "12025014664871757235" - }, - { - "file": "packages/react/src/components/TextField/TextField.ts", - "hash": "6203821991228467732" - }, - { - "file": "packages/react/src/components/TextField/TextField.types.ts", - "hash": "9000956738092230779" - }, - { - "file": "packages/react/src/components/TextField/__snapshots__/TextField.test.tsx.snap", - "hash": "16446484854028579884" - }, - { - "file": "packages/react/src/components/TextField/index.ts", - "hash": "9634891770694366652" - }, - { - "file": "packages/react/src/components/ThemeGenerator/IThemeRules.ts", - "hash": "343349790449113474" - }, - { - "file": "packages/react/src/components/ThemeGenerator/IThemeSlotRule.ts", - "hash": "2798819573170736586" - }, - { - "file": "packages/react/src/components/ThemeGenerator/ThemeGenerator.ts", - "hash": "4318009942218972946" - }, - { - "file": "packages/react/src/components/ThemeGenerator/ThemeRulesStandard.ts", - "hash": "15460702558815436477" - }, - { - "file": "packages/react/src/components/ThemeGenerator/index.ts", - "hash": "2662606445442538581" - }, - { - "file": "packages/react/src/components/TimePicker/TimePicker.test.tsx", - "hash": "4430602795911846347" - }, - { - "file": "packages/react/src/components/TimePicker/TimePicker.tsx", - "hash": "14587751084581473926" - }, - { - "file": "packages/react/src/components/TimePicker/TimePicker.types.ts", - "hash": "4871830345667101562" - }, - { - "file": "packages/react/src/components/TimePicker/__snapshots__/TimePicker.test.tsx.snap", - "hash": "1192043543094055950" - }, - { - "file": "packages/react/src/components/TimePicker/index.ts", - "hash": "4043660638174848621" - }, - { - "file": "packages/react/src/components/Toggle/Toggle.base.tsx", - "hash": "17041455243236331064" - }, - { - "file": "packages/react/src/components/Toggle/Toggle.deprecated.test.tsx", - "hash": "16420708565250016535" - }, - { - "file": "packages/react/src/components/Toggle/Toggle.styles.ts", - "hash": "10235414160628441935" - }, - { - "file": "packages/react/src/components/Toggle/Toggle.test.tsx", - "hash": "4749697846961425208" - }, - { - "file": "packages/react/src/components/Toggle/Toggle.tsx", - "hash": "13754746495419401585" - }, - { - "file": "packages/react/src/components/Toggle/Toggle.types.ts", - "hash": "10425114743254470105" - }, - { - "file": "packages/react/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap", - "hash": "14294764514930879696" - }, - { - "file": "packages/react/src/components/Toggle/index.ts", - "hash": "10198894087612340427" - }, - { - "file": "packages/react/src/components/Tooltip/Tooltip.base.tsx", - "hash": "14315739255581701896" - }, - { - "file": "packages/react/src/components/Tooltip/Tooltip.styles.ts", - "hash": "14364410225416825987" - }, - { - "file": "packages/react/src/components/Tooltip/Tooltip.test.tsx", - "hash": "6829170781879921284" - }, - { - "file": "packages/react/src/components/Tooltip/Tooltip.tsx", - "hash": "17811006348031671798" - }, - { - "file": "packages/react/src/components/Tooltip/Tooltip.types.ts", - "hash": "2660943847897709290" - }, - { - "file": "packages/react/src/components/Tooltip/TooltipHost.base.tsx", - "hash": "4222571360856747469" - }, - { - "file": "packages/react/src/components/Tooltip/TooltipHost.styles.ts", - "hash": "7084784521266667387" - }, - { - "file": "packages/react/src/components/Tooltip/TooltipHost.test.tsx", - "hash": "9044319496664347486" - }, - { - "file": "packages/react/src/components/Tooltip/TooltipHost.ts", - "hash": "15304936019843856429" - }, - { - "file": "packages/react/src/components/Tooltip/TooltipHost.types.ts", - "hash": "15670380784192667360" - }, - { - "file": "packages/react/src/components/Tooltip/__snapshots__/Tooltip.test.tsx.snap", - "hash": "2529886458703393903" - }, - { - "file": "packages/react/src/components/Tooltip/__snapshots__/TooltipHost.test.tsx.snap", - "hash": "13426358771837104817" - }, - { - "file": "packages/react/src/components/Tooltip/index.ts", - "hash": "13628541413104800808" - }, - { - "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.base.tsx", - "hash": "10662405248411854209" - }, - { - "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.styles.ts", - "hash": "17655471458969559384" - }, - { - "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.test.tsx", - "hash": "1018673177354104156" - }, - { - "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.tsx", - "hash": "14453694537649714043" - }, - { - "file": "packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.types.ts", - "hash": "14595811500325100502" - }, - { - "file": "packages/react/src/components/WeeklyDayPicker/__snapshots__/WeeklyDayPicker.test.tsx.snap", - "hash": "2528983063086393230" - }, - { - "file": "packages/react/src/components/WeeklyDayPicker/defaults.ts", - "hash": "11377986538922612005" - }, - { - "file": "packages/react/src/components/WeeklyDayPicker/index.ts", - "hash": "6171109175880934046" - }, - { - "file": "packages/react/src/components/pickers/AutoFill/BaseAutoFill.tsx", - "hash": "7343802070330089599" - }, - { - "file": "packages/react/src/components/pickers/AutoFill/BaseAutoFill.types.ts", - "hash": "6487201084997771499" - }, - { - "file": "packages/react/src/components/pickers/BasePicker.scss", - "hash": "2254284533524560358" - }, - { - "file": "packages/react/src/components/pickers/BasePicker.styles.ts", - "hash": "3491115508506418137" - }, - { - "file": "packages/react/src/components/pickers/BasePicker.test.tsx", - "hash": "15043266091913983080" - }, - { - "file": "packages/react/src/components/pickers/BasePicker.tsx", - "hash": "4054535122222800596" - }, - { - "file": "packages/react/src/components/pickers/BasePicker.types.ts", - "hash": "717340499218281756" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePicker.test.tsx", - "hash": "17876839589477737141" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePicker.tsx", - "hash": "16286230654566725538" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.ts", - "hash": "10855489273418432861" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.tsx", - "hash": "9083961797742224049" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.types.ts", - "hash": "16912167381812988428" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.ts", - "hash": "4670107728068065016" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.tsx", - "hash": "15063617562799640000" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PickerItemsDefault.scss", - "hash": "6384005023815280495" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SelectedItemDefault.tsx", - "hash": "15159392081114259751" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.scss", - "hash": "5379873812562665385" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx", - "hash": "9441381518993515989" - }, - { - "file": "packages/react/src/components/pickers/PeoplePicker/__snapshots__/PeoplePicker.test.tsx.snap", - "hash": "1340262275578671623" - }, - { - "file": "packages/react/src/components/pickers/PickerItem.types.ts", - "hash": "5019879866432474699" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/Suggestions.scss", - "hash": "7217102423921295318" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/Suggestions.styles.ts", - "hash": "13383952703102640475" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/Suggestions.test.tsx", - "hash": "15081865941454159082" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/Suggestions.tsx", - "hash": "14271707022680072031" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/Suggestions.types.ts", - "hash": "13968761647371279988" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/SuggestionsController.ts", - "hash": "4740113206090778515" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/SuggestionsItem.styles.ts", - "hash": "9617715724013431436" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/SuggestionsItem.tsx", - "hash": "12808779264432058945" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/SuggestionsItem.types.ts", - "hash": "3287646201182813027" - }, - { - "file": "packages/react/src/components/pickers/Suggestions/__snapshots__/Suggestions.test.tsx.snap", - "hash": "13924503482300913537" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/TagItem.styles.ts", - "hash": "17090589944968694753" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/TagItem.test.tsx", - "hash": "2142568253152648703" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/TagItem.tsx", - "hash": "17339491415717015901" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/TagItemSuggestion.styles.ts", - "hash": "12290923035788842340" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/TagItemSuggestion.tsx", - "hash": "3602386350156259409" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/TagPicker.test.tsx", - "hash": "10483533162038956926" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/TagPicker.tsx", - "hash": "13849646905761086680" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/TagPicker.types.ts", - "hash": "2960981203569246534" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/__snapshots__/TagItem.test.tsx.snap", - "hash": "7121888399084993878" - }, - { - "file": "packages/react/src/components/pickers/TagPicker/__snapshots__/TagPicker.test.tsx.snap", - "hash": "10689900816861068695" - }, - { - "file": "packages/react/src/components/pickers/__snapshots__/BasePicker.test.tsx.snap", - "hash": "6231335031253357456" - }, - { - "file": "packages/react/src/components/pickers/index.ts", - "hash": "6869692424936090453" - }, - { - "file": "packages/react/src/index.bundle.ts", - "hash": "15702876611017698133" - }, - { - "file": "packages/react/src/index.ts", - "hash": "3984584751531391776" - }, - { - "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.base.tsx", - "hash": "13048871594096070691" - }, - { - "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.styles.ts", - "hash": "10672241857310378691" - }, - { - "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.test.tsx", - "hash": "2437098213636126623" - }, - { - "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.tsx", - "hash": "5275609746550163481" - }, - { - "file": "packages/react/src/utilities/ButtonGrid/ButtonGrid.types.ts", - "hash": "7471614519619311838" - }, - { - "file": "packages/react/src/utilities/ButtonGrid/ButtonGridCell.tsx", - "hash": "8863275249735168504" - }, - { - "file": "packages/react/src/utilities/ButtonGrid/ButtonGridCell.types.ts", - "hash": "12269526535022680538" - }, - { - "file": "packages/react/src/utilities/ButtonGrid/index.ts", - "hash": "5606101914026628430" - }, - { - "file": "packages/react/src/utilities/DraggableZone/DraggableZone.styles.ts", - "hash": "7360859405718713398" - }, - { - "file": "packages/react/src/utilities/DraggableZone/DraggableZone.tsx", - "hash": "14662144876543203208" - }, - { - "file": "packages/react/src/utilities/DraggableZone/DraggableZone.types.ts", - "hash": "5286539702076790666" - }, - { - "file": "packages/react/src/utilities/DraggableZone/index.ts", - "hash": "991165440448171187" - }, - { - "file": "packages/react/src/utilities/MenuContext/MenuContext.ts", - "hash": "13949440192832242509" - }, - { - "file": "packages/react/src/utilities/MenuContext/index.ts", - "hash": "4195339341740520128" - }, - { - "file": "packages/react/src/utilities/MenuContext/types.ts", - "hash": "601766763771540766" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/README.md", - "hash": "17637903867269031542" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/ThemeContext.ts", - "hash": "13892208870743977838" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/ThemeProvider.test.tsx", - "hash": "13679567931341185936" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/ThemeProvider.tsx", - "hash": "6179047605470404754" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/ThemeProvider.types.ts", - "hash": "17118972086321263161" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/__snapshots__/ThemeProvider.test.tsx.snap", - "hash": "9894426767005176096" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/index.ts", - "hash": "15095908332300329015" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/makeStyles.test.tsx", - "hash": "13703934544629777309" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/makeStyles.ts", - "hash": "13518684396676587434" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/renderThemeProvider.tsx", - "hash": "7031715562059584568" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/styleRenderers/mergeStylesRenderer.tsx", - "hash": "3592602241860269066" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/styleRenderers/types.ts", - "hash": "10071936263955037148" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/useTheme.ts", - "hash": "7002881355475012640" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/useThemeProvider.tsx", - "hash": "16631113233994729461" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/useThemeProviderClasses.tsx", - "hash": "5375575044419126164" - }, - { - "file": "packages/react/src/utilities/ThemeProvider/useThemeProviderState.tsx", - "hash": "17027141080033889589" - }, - { - "file": "packages/react/src/utilities/color/_rgbaOrHexString.ts", - "hash": "670629510036329557" - }, - { - "file": "packages/react/src/utilities/color/clamp.ts", - "hash": "8432403036522356124" - }, - { - "file": "packages/react/src/utilities/color/colors.test.ts", - "hash": "6514813408979578421" - }, - { - "file": "packages/react/src/utilities/color/colors.ts", - "hash": "14938309597260952164" - }, - { - "file": "packages/react/src/utilities/color/consts.ts", - "hash": "9659661416934864320" - }, - { - "file": "packages/react/src/utilities/color/correctHSV.ts", - "hash": "14305033368774440121" - }, - { - "file": "packages/react/src/utilities/color/correctHex.ts", - "hash": "14248417825592490956" - }, - { - "file": "packages/react/src/utilities/color/correctRGB.ts", - "hash": "15564249153975134575" - }, - { - "file": "packages/react/src/utilities/color/cssColor.ts", - "hash": "17411936481260342773" - }, - { - "file": "packages/react/src/utilities/color/getColorFromHSV.ts", - "hash": "5677659457274240736" - }, - { - "file": "packages/react/src/utilities/color/getColorFromRGBA.ts", - "hash": "1765799052939282201" - }, - { - "file": "packages/react/src/utilities/color/getColorFromString.ts", - "hash": "6313423634844260228" - }, - { - "file": "packages/react/src/utilities/color/getFullColorString.ts", - "hash": "3471378158992256582" - }, - { - "file": "packages/react/src/utilities/color/hsl2hsv.ts", - "hash": "6244023491766357157" - }, - { - "file": "packages/react/src/utilities/color/hsl2rgb.ts", - "hash": "15569236605928242144" - }, - { - "file": "packages/react/src/utilities/color/hsv2hex.ts", - "hash": "15287927800285061921" - }, - { - "file": "packages/react/src/utilities/color/hsv2hsl.ts", - "hash": "10595103910974750850" - }, - { - "file": "packages/react/src/utilities/color/hsv2rgb.ts", - "hash": "17472983733505672226" - }, - { - "file": "packages/react/src/utilities/color/index.ts", - "hash": "915658032881491641" - }, - { - "file": "packages/react/src/utilities/color/interfaces.ts", - "hash": "2432356879188360615" - }, - { - "file": "packages/react/src/utilities/color/rgb2hex.ts", - "hash": "12975140826208974199" - }, - { - "file": "packages/react/src/utilities/color/rgb2hsv.ts", - "hash": "5684905026209857335" - }, - { - "file": "packages/react/src/utilities/color/shades.ts", - "hash": "6374966934341090657" - }, - { - "file": "packages/react/src/utilities/color/updateA.ts", - "hash": "14416377082519676806" - }, - { - "file": "packages/react/src/utilities/color/updateH.ts", - "hash": "10044554694569887243" - }, - { - "file": "packages/react/src/utilities/color/updateRGB.ts", - "hash": "11322026034603094475" - }, - { - "file": "packages/react/src/utilities/color/updateSV.ts", - "hash": "15989758908719986538" - }, - { - "file": "packages/react/src/utilities/color/updateT.ts", - "hash": "11425172802903888793" - }, - { - "file": "packages/react/src/utilities/contextualMenu/contextualMenuUtility.test.ts", - "hash": "11775032268395869200" - }, - { - "file": "packages/react/src/utilities/contextualMenu/contextualMenuUtility.ts", - "hash": "6439318017315226732" - }, - { - "file": "packages/react/src/utilities/contextualMenu/index.ts", - "hash": "14561010750715978131" - }, - { - "file": "packages/react/src/utilities/decorators/BaseDecorator.ts", - "hash": "12680571413768582546" - }, - { - "file": "packages/react/src/utilities/decorators/withContainsFocus.tsx", - "hash": "4199916114998813247" - }, - { - "file": "packages/react/src/utilities/decorators/withResponsiveMode.test.tsx", - "hash": "15396955314160038481" - }, - { - "file": "packages/react/src/utilities/decorators/withResponsiveMode.tsx", - "hash": "17698455087137585448" - }, - { - "file": "packages/react/src/utilities/decorators/withViewport.tsx", - "hash": "17941994249211471417" - }, - { - "file": "packages/react/src/utilities/dragdrop/DragDropHelper.tsx", - "hash": "2030077348553558869" - }, - { - "file": "packages/react/src/utilities/dragdrop/index.ts", - "hash": "3437101347851446346" - }, - { - "file": "packages/react/src/utilities/dragdrop/interfaces.ts", - "hash": "7577495661441722234" - }, - { - "file": "packages/react/src/utilities/groupedList/GroupedListUtility.test.tsx", - "hash": "16326497141718659536" - }, - { - "file": "packages/react/src/utilities/groupedList/GroupedListUtility.tsx", - "hash": "9856016773806578336" - }, - { - "file": "packages/react/src/utilities/hooks/useResponsiveMode.test.tsx", - "hash": "5869527387854552719" - }, - { - "file": "packages/react/src/utilities/hooks/useResponsiveMode.tsx", - "hash": "8652722068210931815" - }, - { - "file": "packages/react/src/utilities/keytips/IKeytipTransitionKey.test.ts", - "hash": "4487932675350890302" - }, - { - "file": "packages/react/src/utilities/keytips/IKeytipTransitionKey.ts", - "hash": "3993741686850747808" - }, - { - "file": "packages/react/src/utilities/keytips/KeytipConfig.test.ts", - "hash": "16228241456219329106" - }, - { - "file": "packages/react/src/utilities/keytips/KeytipConfig.ts", - "hash": "7633671420559248320" - }, - { - "file": "packages/react/src/utilities/keytips/KeytipConstants.ts", - "hash": "11846497808787026280" - }, - { - "file": "packages/react/src/utilities/keytips/KeytipManager.test.tsx", - "hash": "17114794707717858153" - }, - { - "file": "packages/react/src/utilities/keytips/KeytipManager.ts", - "hash": "4203378422840049741" - }, - { - "file": "packages/react/src/utilities/keytips/KeytipUtils.test.ts", - "hash": "7804697362348876619" - }, - { - "file": "packages/react/src/utilities/keytips/KeytipUtils.ts", - "hash": "3236660558323138655" - }, - { - "file": "packages/react/src/utilities/keytips/index.ts", - "hash": "6578652756422328106" - }, - { - "file": "packages/react/src/utilities/observeResize.ts", - "hash": "2332028751791908020" - }, - { - "file": "packages/react/src/utilities/positioning/index.ts", - "hash": "13313221551798480810" - }, - { - "file": "packages/react/src/utilities/positioning/positioning.test.ts", - "hash": "12108737569186708694" - }, - { - "file": "packages/react/src/utilities/positioning/positioning.ts", - "hash": "2267803550900081928" - }, - { - "file": "packages/react/src/utilities/positioning/positioning.types.ts", - "hash": "1308506524023896539" - }, - { - "file": "packages/react/src/utilities/positioning.ts", - "hash": "7688065479262789318" - }, - { - "file": "packages/react/src/utilities/selectableOption/SelectableDroppableText.types.ts", - "hash": "9756133308604085986" - }, - { - "file": "packages/react/src/utilities/selectableOption/SelectableOption.ts", - "hash": "10362914716162970193" - }, - { - "file": "packages/react/src/utilities/selectableOption/SelectableOption.types.ts", - "hash": "539190171132149946" - }, - { - "file": "packages/react/src/utilities/selectableOption/index.ts", - "hash": "14391316765249285599" - }, - { - "file": "packages/react/src/utilities/selection/Selection.ts", - "hash": "15273105317210853787" - }, - { - "file": "packages/react/src/utilities/selection/SelectionZone.test.tsx", - "hash": "9021204914729111832" - }, - { - "file": "packages/react/src/utilities/selection/SelectionZone.tsx", - "hash": "8379252325004428129" - }, - { - "file": "packages/react/src/utilities/selection/index.ts", - "hash": "4368398702750911810" - }, - { - "file": "packages/react/src/utilities/selection/interfaces.ts", - "hash": "4575419091812881390" - }, - { - "file": "packages/react/src/utilities/useOverflow.ts", - "hash": "17763233002228636342" - }, - { - "file": "packages/react/src/version.ts", - "hash": "3619079259107913232" - }, - { - "file": "packages/react/tsconfig.json", - "hash": "5170099299450870280" - }, - { - "file": "packages/react/webpack.codepen.config.js", - "hash": "7053689822501882700" - }, - { - "file": "packages/react/webpack.config.js", - "hash": "7917211140041849215" - }, - { - "file": "packages/react/webpack.mf.config.js", - "hash": "14493054853418434433" - } - ], - "@fluentui/foundation-legacy": [ - { - "file": "packages/foundation-legacy/.eslintrc.json", - "hash": "7788135779233596637" - }, - { - "file": "packages/foundation-legacy/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/foundation-legacy/CHANGELOG.json", - "hash": "11298518728473754760" - }, - { - "file": "packages/foundation-legacy/CHANGELOG.md", - "hash": "16846161063283363485" - }, - { - "file": "packages/foundation-legacy/LICENSE", - "hash": "13685109437677902912" - }, - { - "file": "packages/foundation-legacy/README.md", - "hash": "15150879100026194024" - }, - { - "file": "packages/foundation-legacy/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/foundation-legacy/config/tests.js", - "hash": "14311629952979925442" - }, - { - "file": "packages/foundation-legacy/etc/foundation-legacy.api.md", - "hash": "14544843647228988854" - }, - { - "file": "packages/foundation-legacy/jest.config.js", - "hash": "8193037916930093299" - }, - { - "file": "packages/foundation-legacy/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/foundation-legacy/package.json", - "hash": "13399846164496288089", - "deps": [ - "@fluentui/merge-styles", - "@fluentui/set-version", - "@fluentui/style-utilities", - "@fluentui/utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/jest-serializer-merge-styles", - "npm:react-hooks-testing-library", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/foundation-legacy/project.json", - "hash": "11276530119421788355" - }, - { - "file": "packages/foundation-legacy/src/IComponent.ts", - "hash": "12873869061209405696" - }, - { - "file": "packages/foundation-legacy/src/IHTMLSlots.ts", - "hash": "7155527235082397630" - }, - { - "file": "packages/foundation-legacy/src/ISlots.ts", - "hash": "14464439662037354785" - }, - { - "file": "packages/foundation-legacy/src/ThemeProvider.tsx", - "hash": "9773670166953555244" - }, - { - "file": "packages/foundation-legacy/src/__snapshots__/slots.test.tsx.snap", - "hash": "2934915321740022132" - }, - { - "file": "packages/foundation-legacy/src/createComponent.test.tsx", - "hash": "15652826177782635176" - }, - { - "file": "packages/foundation-legacy/src/createComponent.tsx", - "hash": "8094359274865822450" - }, - { - "file": "packages/foundation-legacy/src/hooks/controlled.test.tsx", - "hash": "12333211994600071919" - }, - { - "file": "packages/foundation-legacy/src/hooks/controlled.ts", - "hash": "3122361485496884833" - }, - { - "file": "packages/foundation-legacy/src/hooks/index.ts", - "hash": "9409545618871287298" - }, - { - "file": "packages/foundation-legacy/src/index.ts", - "hash": "12930357685631545172" - }, - { - "file": "packages/foundation-legacy/src/next/IComponent.ts", - "hash": "8757900071418225654" - }, - { - "file": "packages/foundation-legacy/src/next/ISlots.ts", - "hash": "4759905666795430527" - }, - { - "file": "packages/foundation-legacy/src/next/composed.test.tsx", - "hash": "479587016516331393" - }, - { - "file": "packages/foundation-legacy/src/next/composed.tsx", - "hash": "10226147199765955542" - }, - { - "file": "packages/foundation-legacy/src/slots.test.tsx", - "hash": "7249480130106203402" - }, - { - "file": "packages/foundation-legacy/src/slots.tsx", - "hash": "7288443331153031485" - }, - { - "file": "packages/foundation-legacy/src/utilities.ts", - "hash": "14062945912928854747" - }, - { - "file": "packages/foundation-legacy/src/version.ts", - "hash": "14340592035898007548" - }, - { - "file": "packages/foundation-legacy/tsconfig.json", - "hash": "3335700563706807422" - }, - { - "file": "packages/foundation-legacy/webpack.config.js", - "hash": "9200631243869629539" - } - ], - "@fluentui/react-divider": [ - { - "file": "packages/react-components/react-divider/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-divider/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-divider/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-divider/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-divider/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-divider/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-divider/CHANGELOG.json", - "hash": "13479079640864241012" - }, - { - "file": "packages/react-components/react-divider/CHANGELOG.md", - "hash": "1395793154130333585" - }, - { - "file": "packages/react-components/react-divider/LICENSE", - "hash": "14023817589098421944" - }, - { - "file": "packages/react-components/react-divider/README.md", - "hash": "4056766105974983014" - }, - { - "file": "packages/react-components/react-divider/bundle-size/Divider.fixture.js", - "hash": "11373332966181672710" - }, - { - "file": "packages/react-components/react-divider/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-divider/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-divider/docs/MIGRATION.md", - "hash": "1643705267251793566" - }, - { - "file": "packages/react-components/react-divider/docs/Spec.md", - "hash": "10507791707433600269" - }, - { - "file": "packages/react-components/react-divider/etc/react-divider.api.md", - "hash": "16630984229525847963" - }, - { - "file": "packages/react-components/react-divider/jest.config.js", - "hash": "1152927763039745529" - }, - { - "file": "packages/react-components/react-divider/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-divider/package.json", - "hash": "414161679037595975", - "deps": [ - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-divider/project.json", - "hash": "12787666147608019291" - }, - { - "file": "packages/react-components/react-divider/src/Divider.ts", - "hash": "11741977117356417348" - }, - { - "file": "packages/react-components/react-divider/src/components/Divider/Divider.test.tsx", - "hash": "3056478946647445040" - }, - { - "file": "packages/react-components/react-divider/src/components/Divider/Divider.tsx", - "hash": "9130488984128699236" - }, - { - "file": "packages/react-components/react-divider/src/components/Divider/Divider.types.ts", - "hash": "13344028649484127587" - }, - { - "file": "packages/react-components/react-divider/src/components/Divider/__snapshots__/Divider.test.tsx.snap", - "hash": "8915016820289301301" - }, - { - "file": "packages/react-components/react-divider/src/components/Divider/index.ts", - "hash": "8553978515837008839" - }, - { - "file": "packages/react-components/react-divider/src/components/Divider/renderDivider.tsx", - "hash": "10546145220103482807" - }, - { - "file": "packages/react-components/react-divider/src/components/Divider/useDivider.ts", - "hash": "8203516345352424438" - }, - { - "file": "packages/react-components/react-divider/src/components/Divider/useDividerStyles.styles.ts", - "hash": "2052352461363498101" - }, - { - "file": "packages/react-components/react-divider/src/index.ts", - "hash": "12277375761739938933" - }, - { - "file": "packages/react-components/react-divider/src/testing/isConformant.ts", - "hash": "17159661999478583888" - }, - { - "file": "packages/react-components/react-divider/stories/Divider/DividerAlignContent.stories.tsx", - "hash": "15576400069782630240" - }, - { - "file": "packages/react-components/react-divider/stories/Divider/DividerAppearance.stories.tsx", - "hash": "14036585423451622453" - }, - { - "file": "packages/react-components/react-divider/stories/Divider/DividerCustomStyles.stories.tsx", - "hash": "6179818489606984873" - }, - { - "file": "packages/react-components/react-divider/stories/Divider/DividerDefault.stories.tsx", - "hash": "5883094048084295487" - }, - { - "file": "packages/react-components/react-divider/stories/Divider/DividerDescription.md", - "hash": "1060509776422159278" - }, - { - "file": "packages/react-components/react-divider/stories/Divider/DividerInset.stories.tsx", - "hash": "11405478731423348346" - }, - { - "file": "packages/react-components/react-divider/stories/Divider/DividerVertical.stories.tsx", - "hash": "16290598666283219629" - }, - { - "file": "packages/react-components/react-divider/stories/Divider/index.stories.tsx", - "hash": "17125349910069173416" - }, - { - "file": "packages/react-components/react-divider/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-divider/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-divider/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-test-ssr": [ - { - "file": "scripts/test-ssr/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/test-ssr/README.md", - "hash": "12699687466976303239" - }, - { - "file": "scripts/test-ssr/bin/test-ssr.js", - "hash": "8805610837379847465" - }, - { - "file": "scripts/test-ssr/jest.config.js", - "hash": "11527576380239430971" - }, - { - "file": "scripts/test-ssr/package.json", - "hash": "5757712170384653205", - "deps": ["@fluentui/scripts-puppeteer", "@fluentui/scripts-ts-node"] - }, - { - "file": "scripts/test-ssr/project.json", - "hash": "8607452646844129216" - }, - { - "file": "scripts/test-ssr/src/cli.ts", - "hash": "9681510604885864279" - }, - { - "file": "scripts/test-ssr/src/commands/main.ts", - "hash": "5373798188839451215" - }, - { - "file": "scripts/test-ssr/src/shims/module.js", - "hash": "6994254687357316236" - }, - { - "file": "scripts/test-ssr/src/utils/buildAssets.test.ts", - "hash": "7131330003385329020" - }, - { - "file": "scripts/test-ssr/src/utils/buildAssets.ts", - "hash": "8657021135056357882" - }, - { - "file": "scripts/test-ssr/src/utils/constants.ts", - "hash": "13310172053469550506" - }, - { - "file": "scripts/test-ssr/src/utils/generateEntryPoints.test.ts", - "hash": "4312975137369069285" - }, - { - "file": "scripts/test-ssr/src/utils/generateEntryPoints.ts", - "hash": "15091510962787083993" - }, - { - "file": "scripts/test-ssr/src/utils/getExportFromFile.test.ts", - "hash": "15350347943875414675" - }, - { - "file": "scripts/test-ssr/src/utils/getExportFromFile.ts", - "hash": "16525910075835513493" - }, - { - "file": "scripts/test-ssr/src/utils/helpers.ts", - "hash": "907485589681988891" - }, - { - "file": "scripts/test-ssr/src/utils/renderToHTML.test.ts", - "hash": "18102029768147530086" - }, - { - "file": "scripts/test-ssr/src/utils/renderToHTML.ts", - "hash": "8653651019165466798" - }, - { - "file": "scripts/test-ssr/src/utils/visitPage.ts", - "hash": "13302790300574375017" - }, - { - "file": "scripts/test-ssr/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/test-ssr/tsconfig.lib.json", - "hash": "15222053984038389170" - }, - { - "file": "scripts/test-ssr/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/react-18-tests-v9": [ - { - "file": "apps/react-18-tests-v9/.eslintrc.json", - "hash": "273467718057503654" - }, - { - "file": "apps/react-18-tests-v9/README.md", - "hash": "15038214804025114768" - }, - { - "file": "apps/react-18-tests-v9/config/tests.js", - "hash": "14010006175392234982" - }, - { - "file": "apps/react-18-tests-v9/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "apps/react-18-tests-v9/jest.config.js", - "hash": "1432362935093989965" - }, - { - "file": "apps/react-18-tests-v9/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "apps/react-18-tests-v9/package.json", - "hash": "1062290610976451640", - "deps": [ - "@fluentui/react-components", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "apps/react-18-tests-v9/project.json", - "hash": "11399828626299105622" - }, - { - "file": "apps/react-18-tests-v9/src/App.cy.tsx", - "hash": "11549801901057863626" - }, - { - "file": "apps/react-18-tests-v9/src/App.test.tsx", - "hash": "2670902714833840717" - }, - { - "file": "apps/react-18-tests-v9/src/App.tsx", - "hash": "7525441005714447901" - }, - { - "file": "apps/react-18-tests-v9/src/Portal.cy.tsx", - "hash": "4580707977750569950" - }, - { - "file": "apps/react-18-tests-v9/src/components/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "apps/react-18-tests-v9/src/index.tsx", - "hash": "2918296648402810869" - }, - { - "file": "apps/react-18-tests-v9/tsconfig.app.json", - "hash": "7764918925105932542" - }, - { - "file": "apps/react-18-tests-v9/tsconfig.cy.json", - "hash": "4669440979528425638" - }, - { - "file": "apps/react-18-tests-v9/tsconfig.json", - "hash": "15327827180026486345" - }, - { - "file": "apps/react-18-tests-v9/tsconfig.react-compat-check.json", - "hash": "5090552958223827867" - }, - { - "file": "apps/react-18-tests-v9/tsconfig.spec.json", - "hash": "13287603543641469083" - }, - { - "file": "apps/react-18-tests-v9/webpack.config.js", - "hash": "6286313998835058704" - } - ], - "@fluentui/set-version": [ - { - "file": "packages/set-version/.eslintrc.json", - "hash": "5040365066206164447" - }, - { - "file": "packages/set-version/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/set-version/CHANGELOG.json", - "hash": "4884908875942182344" - }, - { - "file": "packages/set-version/CHANGELOG.md", - "hash": "14468298258455261263" - }, - { - "file": "packages/set-version/LICENSE", - "hash": "17405240926357137557" - }, - { - "file": "packages/set-version/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/set-version/package.json", - "hash": "14326386381338996167", - "deps": ["npm:tslib", "@fluentui/eslint-plugin", "@fluentui/scripts-tasks"] - }, - { - "file": "packages/set-version/project.json", - "hash": "17714374313672910233" - }, - { - "file": "packages/set-version/src/index.ts", - "hash": "2116276611683583139" - }, - { - "file": "packages/set-version/src/serVersion.test.ts", - "hash": "5429814530530758929" - }, - { - "file": "packages/set-version/src/setVersion.ts", - "hash": "4028316957040317271" - }, - { - "file": "packages/set-version/tsconfig.json", - "hash": "7584822408996227960" - } - ], - "@fluentui/global-context": [ - { - "file": "packages/react-components/global-context/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/global-context/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/global-context/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/global-context/CHANGELOG.json", - "hash": "3559008600431803229" - }, - { - "file": "packages/react-components/global-context/CHANGELOG.md", - "hash": "3002425371666790025" - }, - { - "file": "packages/react-components/global-context/LICENSE", - "hash": "16085635044836667477" - }, - { - "file": "packages/react-components/global-context/README.md", - "hash": "11497599280276646781" - }, - { - "file": "packages/react-components/global-context/bundle-size/createContext.fixture.js", - "hash": "18051433675935440280" - }, - { - "file": "packages/react-components/global-context/bundle-size/createContextSelector.fixture.js", - "hash": "6607661730451392027" - }, - { - "file": "packages/react-components/global-context/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/global-context/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/global-context/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/global-context/etc/global-context.api.md", - "hash": "16388687583245900658" - }, - { - "file": "packages/react-components/global-context/jest.config.js", - "hash": "11996786684390609645" - }, - { - "file": "packages/react-components/global-context/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/global-context/monosize.config.mjs", - "hash": "5627908047013620305" - }, - { - "file": "packages/react-components/global-context/package.json", - "hash": "779619587821778079", - "deps": [ - "@fluentui/react-context-selector", - "@fluentui/react-utilities", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/global-context/project.json", - "hash": "16893704753425154668" - }, - { - "file": "packages/react-components/global-context/src/global-context-selector.test.ts", - "hash": "6487703100303991950" - }, - { - "file": "packages/react-components/global-context/src/global-context-selector.ts", - "hash": "1078475965261159391" - }, - { - "file": "packages/react-components/global-context/src/global-context.cy.tsx", - "hash": "14149888652164360210" - }, - { - "file": "packages/react-components/global-context/src/global-context.test.ts", - "hash": "8559469442155352347" - }, - { - "file": "packages/react-components/global-context/src/global-context.ts", - "hash": "5788531003606375031" - }, - { - "file": "packages/react-components/global-context/src/index.ts", - "hash": "6688086211177314226" - }, - { - "file": "packages/react-components/global-context/src/types.ts", - "hash": "1907364711162234682" - }, - { - "file": "packages/react-components/global-context/src/utils.test.ts", - "hash": "195903445294291101" - }, - { - "file": "packages/react-components/global-context/src/utils.ts", - "hash": "6047271728724939229" - }, - { - "file": "packages/react-components/global-context/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/global-context/tsconfig.json", - "hash": "5596071008249197618" - }, - { - "file": "packages/react-components/global-context/tsconfig.lib.json", - "hash": "6390891856014566094" - }, - { - "file": "packages/react-components/global-context/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-tree": [ - { - "file": "packages/react-components/react-tree/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-tree/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-tree/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-tree/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-tree/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-tree/.swcrc", - "hash": "471348148265161299" - }, - { - "file": "packages/react-components/react-tree/CHANGELOG.json", - "hash": "14945776354293379806" - }, - { - "file": "packages/react-components/react-tree/CHANGELOG.md", - "hash": "8406039216746902252" - }, - { - "file": "packages/react-components/react-tree/LICENSE", - "hash": "3873147923064391806" - }, - { - "file": "packages/react-components/react-tree/README.md", - "hash": "1655105929125156477" - }, - { - "file": "packages/react-components/react-tree/bundle-size/FlatTree.fixture.js", - "hash": "2096294319910126247" - }, - { - "file": "packages/react-components/react-tree/bundle-size/PersonaFlatTree.fixture.js", - "hash": "2466378024792562687" - }, - { - "file": "packages/react-components/react-tree/bundle-size/PersonaTree.fixture.js", - "hash": "15287090904891878665" - }, - { - "file": "packages/react-components/react-tree/bundle-size/Tree.fixture.js", - "hash": "7148247114221090114" - }, - { - "file": "packages/react-components/react-tree/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-tree/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-tree/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-tree/docs/Spec.md", - "hash": "13010540724639653030" - }, - { - "file": "packages/react-components/react-tree/etc/react-tree.api.md", - "hash": "13860625462824413119" - }, - { - "file": "packages/react-components/react-tree/jest.config.js", - "hash": "10708835875569314405" - }, - { - "file": "packages/react-components/react-tree/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-tree/package.json", - "hash": "7402928316943794822", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-aria", - "@fluentui/react-avatar", - "@fluentui/react-button", - "@fluentui/react-checkbox", - "@fluentui/react-context-selector", - "npm:@fluentui/react-icons", - "@fluentui/react-radio", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "npm:@dnd-kit/core", - "npm:@dnd-kit/sortable", - "npm:@dnd-kit/utilities", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "@fluentui/scripts-cypress", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-tree/project.json", - "hash": "6740901632218515604" - }, - { - "file": "packages/react-components/react-tree/src/FlatTree.ts", - "hash": "3072125634594593749" - }, - { - "file": "packages/react-components/react-tree/src/FlatTreeItem.ts", - "hash": "15656750125723370276" - }, - { - "file": "packages/react-components/react-tree/src/Tree.ts", - "hash": "4993286404603910313" - }, - { - "file": "packages/react-components/react-tree/src/TreeItem.ts", - "hash": "5004543986527416872" - }, - { - "file": "packages/react-components/react-tree/src/TreeItemLayout.ts", - "hash": "5622771649031762853" - }, - { - "file": "packages/react-components/react-tree/src/TreeItemPersonaLayout.ts", - "hash": "11087562497649748862" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/FlatTree.cy.tsx", - "hash": "15277321125093847254" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/FlatTree.test.tsx", - "hash": "14643582718113491293" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/FlatTree.tsx", - "hash": "11721769760756262032" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/FlatTree.types.ts", - "hash": "15765492707089510760" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/__snapshots__/FlatTree.test.tsx.snap", - "hash": "8095076814149978457" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/index.ts", - "hash": "18386732580869025361" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/renderFlatTree.ts", - "hash": "16266937452093330039" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/useFlatControllableCheckedItems.ts", - "hash": "8460437433223988350" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/useFlatTree.ts", - "hash": "516202047807557685" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/useFlatTreeContextValues.ts", - "hash": "10385911432056358558" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/useFlatTreeStyles.styles.ts", - "hash": "11049922061536000776" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTree/useHeadlessFlatTree.ts", - "hash": "1536915137937169328" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTreeItem/FlatTreeItem.tsx", - "hash": "18390777847785657350" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTreeItem/FlatTreeItem.types.ts", - "hash": "11242388741613448331" - }, - { - "file": "packages/react-components/react-tree/src/components/FlatTreeItem/index.ts", - "hash": "6325146452568581988" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/Tree.cy.tsx", - "hash": "6095631539329784239" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/Tree.test.tsx", - "hash": "11577143859729634817" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/Tree.tsx", - "hash": "17751061759550709708" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/Tree.types.ts", - "hash": "17953901364028168287" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/__snapshots__/Tree.test.tsx.snap", - "hash": "1504935046973585286" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/index.ts", - "hash": "14906481201574349395" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/renderTree.tsx", - "hash": "4415101119287494887" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/useNestedControllableCheckedItems.ts", - "hash": "17960401285554147445" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/useTree.ts", - "hash": "16065649229389296428" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/useTreeContextValues.ts", - "hash": "7332326623699850354" - }, - { - "file": "packages/react-components/react-tree/src/components/Tree/useTreeStyles.styles.ts", - "hash": "16851585648924973193" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/TreeItem.test.tsx", - "hash": "8789954357801559131" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/TreeItem.tsx", - "hash": "16468084185954122243" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/TreeItem.types.ts", - "hash": "14716955389701026936" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/__snapshots__/TreeItem.test.tsx.snap", - "hash": "8018539892959985230" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/index.ts", - "hash": "1326136393613796142" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/renderTreeItem.tsx", - "hash": "423938715411658182" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/useTreeItem.tsx", - "hash": "2946674587697501147" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/useTreeItemContextValues.ts", - "hash": "7521332398662164287" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItem/useTreeItemStyles.styles.ts", - "hash": "3910268932895175685" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemChevron.tsx", - "hash": "13111855959190541713" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.test.tsx", - "hash": "2579116581358045080" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.tsx", - "hash": "2849103380227024635" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.types.ts", - "hash": "2990369194733272697" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemLayout/__snapshots__/TreeItemLayout.test.tsx.snap", - "hash": "9466630829797683724" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemLayout/index.ts", - "hash": "17567081473447998944" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemLayout/renderTreeItemLayout.tsx", - "hash": "8168067713043998322" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayout.tsx", - "hash": "8546937425436191095" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayoutStyles.styles.ts", - "hash": "11057546586913473576" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.test.tsx", - "hash": "5784701546408248173" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.tsx", - "hash": "18041779658234398117" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.ts", - "hash": "5850649340938347040" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/__snapshots__/TreeItemPersonaLayout.test.tsx.snap", - "hash": "493101854707647726" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/index.ts", - "hash": "5706098966977998655" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.tsx", - "hash": "11893124970293607637" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.ts", - "hash": "17115760138027961283" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.ts", - "hash": "12504747604672555491" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.ts", - "hash": "2760083827584951946" - }, - { - "file": "packages/react-components/react-tree/src/components/TreeProvider.tsx", - "hash": "7517422617459581682" - }, - { - "file": "packages/react-components/react-tree/src/contexts/index.ts", - "hash": "6882555427867434756" - }, - { - "file": "packages/react-components/react-tree/src/contexts/subtreeContext.ts", - "hash": "6249658885115935790" - }, - { - "file": "packages/react-components/react-tree/src/contexts/treeContext.ts", - "hash": "4036683755492528965" - }, - { - "file": "packages/react-components/react-tree/src/contexts/treeItemContext.ts", - "hash": "11517978604553072645" - }, - { - "file": "packages/react-components/react-tree/src/hooks/useControllableOpenItems.ts", - "hash": "4816774097134854864" - }, - { - "file": "packages/react-components/react-tree/src/hooks/useFlatTreeNavigation.ts", - "hash": "17983963822301935882" - }, - { - "file": "packages/react-components/react-tree/src/hooks/useHTMLElementWalkerRef.ts", - "hash": "12602091648031084383" - }, - { - "file": "packages/react-components/react-tree/src/hooks/useRootTree.ts", - "hash": "16041317070023655062" - }, - { - "file": "packages/react-components/react-tree/src/hooks/useRovingTabIndexes.ts", - "hash": "16208067110669278387" - }, - { - "file": "packages/react-components/react-tree/src/hooks/useSubtree.ts", - "hash": "8213543736847331171" - }, - { - "file": "packages/react-components/react-tree/src/hooks/useTreeNavigation.ts", - "hash": "4105758237008898129" - }, - { - "file": "packages/react-components/react-tree/src/index.ts", - "hash": "17215199998523638799" - }, - { - "file": "packages/react-components/react-tree/src/testing/flattenTreeFromElement.ts", - "hash": "17352909156336948309" - }, - { - "file": "packages/react-components/react-tree/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-tree/src/utils/ImmutableMap.ts", - "hash": "18191754425073445309" - }, - { - "file": "packages/react-components/react-tree/src/utils/ImmutableSet.ts", - "hash": "7975523845111866724" - }, - { - "file": "packages/react-components/react-tree/src/utils/assert.ts", - "hash": "1469332169996285562" - }, - { - "file": "packages/react-components/react-tree/src/utils/createCheckedItems.ts", - "hash": "7113512274716840836" - }, - { - "file": "packages/react-components/react-tree/src/utils/createHTMLElementWalker.ts", - "hash": "13950261002817970754" - }, - { - "file": "packages/react-components/react-tree/src/utils/createHeadlessTree.ts", - "hash": "15503462296358436766" - }, - { - "file": "packages/react-components/react-tree/src/utils/createOpenItems.ts", - "hash": "2544348651417480592" - }, - { - "file": "packages/react-components/react-tree/src/utils/flattenTree.ts", - "hash": "4703444536314081832" - }, - { - "file": "packages/react-components/react-tree/src/utils/getTreeItemValueFromElement.ts", - "hash": "8002251387458635096" - }, - { - "file": "packages/react-components/react-tree/src/utils/nextTypeAheadElement.ts", - "hash": "11291753067468538470" - }, - { - "file": "packages/react-components/react-tree/src/utils/normalizeOpenItems.ts", - "hash": "16095895542449977581" - }, - { - "file": "packages/react-components/react-tree/src/utils/tokens.ts", - "hash": "3974420961756921691" - }, - { - "file": "packages/react-components/react-tree/src/utils/treeItemFilter.ts", - "hash": "12235784334461474461" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/FlatTree.stories.tsx", - "hash": "6464304357476423385" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/OpenItemControlled.stories.tsx", - "hash": "4633474533903741112" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/OpenItemsControlled.stories.tsx", - "hash": "14382852307558690931" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeA11y.md", - "hash": "18278713554142398706" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeActions.stories.tsx", - "hash": "12149000182087747702" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeAppearance.stories.tsx", - "hash": "4022938655114250405" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeAside.stories.tsx", - "hash": "15498843229827369748" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeBestPractices.md", - "hash": "6217951044650240936" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeCustomizingInteraction.stories.tsx", - "hash": "6487662564534500772" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeDefault.stories.tsx", - "hash": "3281424809310801489" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeDefaultOpen.stories.tsx", - "hash": "13051992569108747955" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeDescription.md", - "hash": "3591680887237708383" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeDragAndDrop.stories.tsx", - "hash": "5557484249944494015" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeExpandIcon.stories.tsx", - "hash": "8975769184899329868" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeIconBeforeAndAfter.stories.tsx", - "hash": "2974051680275017294" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeInfiniteScrolling.stories.tsx", - "hash": "15927831107506523909" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeInlineStylingTreeItemLevel.stories.tsx", - "hash": "15669582785010273897" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeLayouts.stories.tsx", - "hash": "14629023937799779028" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeLazyLoading.stories.tsx", - "hash": "16480494302565356882" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeManipulation.stories.tsx", - "hash": "4369546527713118115" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeSelection.stories.tsx", - "hash": "3961405183329974459" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/TreeSize.stories.tsx", - "hash": "4652411936099155946" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/UseHeadlessFlatTree.stories.tsx", - "hash": "15284690713944369839" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/Virtualization.stories.tsx", - "hash": "17275731017871637387" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/index.stories.tsx", - "hash": "5752380234511737172" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/utils/mockFetch.ts", - "hash": "3306783506830490620" - }, - { - "file": "packages/react-components/react-tree/stories/Tree/utils/useQuery.ts", - "hash": "175410983663244781" - }, - { - "file": "packages/react-components/react-tree/tsconfig.cy.json", - "hash": "4393960456153312170" - }, - { - "file": "packages/react-components/react-tree/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-tree/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-tree/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-tags": [ - { - "file": "packages/react-components/react-tags/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-tags/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-tags/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-tags/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-tags/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-tags/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-tags/CHANGELOG.json", - "hash": "194138550563336131" - }, - { - "file": "packages/react-components/react-tags/CHANGELOG.md", - "hash": "3161502209421304381" - }, - { - "file": "packages/react-components/react-tags/LICENSE", - "hash": "15984548770641206248" - }, - { - "file": "packages/react-components/react-tags/README.md", - "hash": "10500482775121349906" - }, - { - "file": "packages/react-components/react-tags/bundle-size/InteractionTag.fixture.js", - "hash": "17358477118197912493" - }, - { - "file": "packages/react-components/react-tags/bundle-size/TagGroup.fixture.js", - "hash": "5014611251005463486" - }, - { - "file": "packages/react-components/react-tags/bundle-size/tag.fixture.js", - "hash": "15289223331746822136" - }, - { - "file": "packages/react-components/react-tags/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-tags/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-tags/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-tags/docs/Spec.md", - "hash": "6616655976701304277" - }, - { - "file": "packages/react-components/react-tags/etc/react-tags.api.md", - "hash": "10336091631530896536" - }, - { - "file": "packages/react-components/react-tags/jest.config.js", - "hash": "14977555368232687164" - }, - { - "file": "packages/react-components/react-tags/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-tags/package.json", - "hash": "12340442389795941756", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-aria", - "@fluentui/react-avatar", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-tags/project.json", - "hash": "584427480657467091" - }, - { - "file": "packages/react-components/react-tags/src/InteractionTag.ts", - "hash": "13983274673714466720" - }, - { - "file": "packages/react-components/react-tags/src/InteractionTagPrimary.ts", - "hash": "6256468456880889102" - }, - { - "file": "packages/react-components/react-tags/src/InteractionTagSecondary.ts", - "hash": "5368134246602714141" - }, - { - "file": "packages/react-components/react-tags/src/Tag.ts", - "hash": "16167036964551788704" - }, - { - "file": "packages/react-components/react-tags/src/TagGroup.ts", - "hash": "6013255966207939916" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.test.tsx", - "hash": "10842010645442217057" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.tsx", - "hash": "4399038313425811042" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.types.ts", - "hash": "2420146369576242616" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTag/index.ts", - "hash": "2950543417664974367" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTag/renderInteractionTag.tsx", - "hash": "3182765218771271515" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTag/useInteractionTag.tsx", - "hash": "13752441498224431555" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTag/useInteractionTagContextValues.ts", - "hash": "17161257668063955216" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTag/useInteractionTagStyles.styles.ts", - "hash": "13821784447335059322" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.test.tsx", - "hash": "3842149846104916172" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.tsx", - "hash": "1076682495847369815" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.types.ts", - "hash": "9283581625076046764" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/index.ts", - "hash": "9669082753145957501" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/renderInteractionTagPrimary.tsx", - "hash": "4745226362693984168" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/useInteractionTagPrimary.ts", - "hash": "9872086138500406659" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagPrimary/useInteractionTagPrimaryStyles.styles.ts", - "hash": "4030905491761244906" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.test.tsx", - "hash": "16228802968407103171" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.tsx", - "hash": "2448716909616843548" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.types.ts", - "hash": "6736225241350796857" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/index.ts", - "hash": "7102847806939032650" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/renderInteractionTagSecondary.tsx", - "hash": "3049407018416866218" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/useInteractionTagSecondary.tsx", - "hash": "13926257627148833119" - }, - { - "file": "packages/react-components/react-tags/src/components/InteractionTagSecondary/useInteractionTagSecondaryStyles.styles.ts", - "hash": "13474997088340994505" - }, - { - "file": "packages/react-components/react-tags/src/components/Tag/Tag.test.tsx", - "hash": "5880691168325391715" - }, - { - "file": "packages/react-components/react-tags/src/components/Tag/Tag.tsx", - "hash": "13044814626181179943" - }, - { - "file": "packages/react-components/react-tags/src/components/Tag/Tag.types.ts", - "hash": "3362487479164759445" - }, - { - "file": "packages/react-components/react-tags/src/components/Tag/index.ts", - "hash": "13324190693234466903" - }, - { - "file": "packages/react-components/react-tags/src/components/Tag/renderTag.tsx", - "hash": "14357471753040999319" - }, - { - "file": "packages/react-components/react-tags/src/components/Tag/useTag.test.tsx", - "hash": "7838179506645271588" - }, - { - "file": "packages/react-components/react-tags/src/components/Tag/useTag.tsx", - "hash": "6625208145382546803" - }, - { - "file": "packages/react-components/react-tags/src/components/Tag/useTagStyles.styles.ts", - "hash": "18039718330512640670" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/TagGroup.cy.tsx", - "hash": "12274824442453552339" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/TagGroup.test.tsx", - "hash": "1229481110407317788" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/TagGroup.tsx", - "hash": "17830583590301202997" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/TagGroup.types.ts", - "hash": "10915367910465333863" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/index.ts", - "hash": "6068868025557275912" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/renderTagGroup.tsx", - "hash": "8785077840389673202" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/useTagGroup.ts", - "hash": "14679630283213287791" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/useTagGroupContextValues.ts", - "hash": "8227330079283938096" - }, - { - "file": "packages/react-components/react-tags/src/components/TagGroup/useTagGroupStyles.styles.ts", - "hash": "7778412192044924650" - }, - { - "file": "packages/react-components/react-tags/src/contexts/interactionTagContext.tsx", - "hash": "2243187516882251719" - }, - { - "file": "packages/react-components/react-tags/src/contexts/tagGroupContext.tsx", - "hash": "12895731128273514711" - }, - { - "file": "packages/react-components/react-tags/src/index.ts", - "hash": "4735439958633325990" - }, - { - "file": "packages/react-components/react-tags/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-tags/src/utils/index.ts", - "hash": "3821017355254528299" - }, - { - "file": "packages/react-components/react-tags/src/utils/types.ts", - "hash": "596369915833561848" - }, - { - "file": "packages/react-components/react-tags/src/utils/useTagAvatarContextValues.ts", - "hash": "8470255531493033889" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagAppearance.stories.tsx", - "hash": "15179750862216411333" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagBestPractices.md", - "hash": "8376548529359937030" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagDefault.stories.tsx", - "hash": "2681683984692337791" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagDescription.md", - "hash": "12243047500544241920" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagDisabled.stories.tsx", - "hash": "9839825437772271568" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagDismiss.stories.tsx", - "hash": "494691391610982935" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagHasPrimaryAction.stories.tsx", - "hash": "15611238270398355789" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagIcon.stories.tsx", - "hash": "12852002179133268371" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagMedia.md", - "hash": "4762879944479477719" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagMedia.stories.tsx", - "hash": "10949724879323552658" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagSecondaryText.stories.tsx", - "hash": "3604279324954000926" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagShape.stories.tsx", - "hash": "10907466358493935001" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/InteractionTagSize.stories.tsx", - "hash": "10016659096879367027" - }, - { - "file": "packages/react-components/react-tags/stories/InteractionTag/index.stories.tsx", - "hash": "5827689478757246692" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagAppearance.stories.tsx", - "hash": "3919694861981977634" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagBestPractices.md", - "hash": "12858297417514368292" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagDefault.stories.tsx", - "hash": "17713833537975864762" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagDescription.md", - "hash": "7715548073631177926" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagDisabled.stories.tsx", - "hash": "16500515061880366924" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagDismiss.stories.tsx", - "hash": "17508285979156894864" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagIcon.stories.tsx", - "hash": "3059091904526791471" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagMedia.stories.tsx", - "hash": "3760481520461679314" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagSecondaryText.stories.tsx", - "hash": "16438231938445811823" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagShape.stories.tsx", - "hash": "15631510183237341762" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/TagSize.stories.tsx", - "hash": "10054136554160599561" - }, - { - "file": "packages/react-components/react-tags/stories/Tag/index.stories.tsx", - "hash": "605437294753359930" - }, - { - "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupBestPractices.md", - "hash": "4295534675539626496" - }, - { - "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupDefault.stories.tsx", - "hash": "11205413669957950629" - }, - { - "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupDescription.md", - "hash": "8733036749501389712" - }, - { - "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupDismiss.stories.tsx", - "hash": "2371595253438866621" - }, - { - "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupOverflow.stories.tsx", - "hash": "6620702853877345768" - }, - { - "file": "packages/react-components/react-tags/stories/TagGroup/TagGroupSizes.stories.tsx", - "hash": "48436092750364017" - }, - { - "file": "packages/react-components/react-tags/stories/TagGroup/index.stories.tsx", - "hash": "8148050799531276468" - }, - { - "file": "packages/react-components/react-tags/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-tags/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-tags/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-tags/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-popover": [ - { - "file": "packages/react-components/react-popover/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-popover/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-popover/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-popover/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-popover/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-popover/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-popover/CHANGELOG.json", - "hash": "799414624182040767" - }, - { - "file": "packages/react-components/react-popover/CHANGELOG.md", - "hash": "15935155906664144779" - }, - { - "file": "packages/react-components/react-popover/LICENSE", - "hash": "13212047852807775160" - }, - { - "file": "packages/react-components/react-popover/README.md", - "hash": "13050354636904224629" - }, - { - "file": "packages/react-components/react-popover/bundle-size/Popover.fixture.js", - "hash": "5887030192339858914" - }, - { - "file": "packages/react-components/react-popover/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-popover/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-popover/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-popover/docs/Spec.md", - "hash": "4609286566686568557" - }, - { - "file": "packages/react-components/react-popover/etc/react-popover.api.md", - "hash": "7514615129011558376" - }, - { - "file": "packages/react-components/react-popover/jest.config.js", - "hash": "14026599071184978672" - }, - { - "file": "packages/react-components/react-popover/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-popover/package.json", - "hash": "9762499192074740118", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-aria", - "@fluentui/react-context-selector", - "@fluentui/react-portal", - "@fluentui/react-positioning", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-popover/project.json", - "hash": "13728026763707518386" - }, - { - "file": "packages/react-components/react-popover/src/Popover.ts", - "hash": "82425603334873078" - }, - { - "file": "packages/react-components/react-popover/src/PopoverSurface.ts", - "hash": "14221118331298170467" - }, - { - "file": "packages/react-components/react-popover/src/PopoverTrigger.ts", - "hash": "5974644824026413780" - }, - { - "file": "packages/react-components/react-popover/src/components/Popover/Popover.cy.tsx", - "hash": "14911237654227630815" - }, - { - "file": "packages/react-components/react-popover/src/components/Popover/Popover.test.tsx", - "hash": "4654989182333163446" - }, - { - "file": "packages/react-components/react-popover/src/components/Popover/Popover.tsx", - "hash": "5929512317701067411" - }, - { - "file": "packages/react-components/react-popover/src/components/Popover/Popover.types.ts", - "hash": "17729441559883210548" - }, - { - "file": "packages/react-components/react-popover/src/components/Popover/constants.ts", - "hash": "4627999313797808057" - }, - { - "file": "packages/react-components/react-popover/src/components/Popover/index.ts", - "hash": "1977828869061472401" - }, - { - "file": "packages/react-components/react-popover/src/components/Popover/renderPopover.tsx", - "hash": "8998572893306941337" - }, - { - "file": "packages/react-components/react-popover/src/components/Popover/usePopover.ts", - "hash": "3450341196926624385" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.test.tsx", - "hash": "6823809963025237390" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.tsx", - "hash": "18183468277526097917" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.types.ts", - "hash": "3484467807402199312" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverSurface/__snapshots__/PopoverSurface.test.tsx.snap", - "hash": "8906207879497919239" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverSurface/index.ts", - "hash": "11111917236962218660" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverSurface/renderPopoverSurface.tsx", - "hash": "331735011709120147" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverSurface/usePopoverSurface.ts", - "hash": "13899100915034814530" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverSurface/usePopoverSurfaceStyles.styles.ts", - "hash": "12459251168906298722" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.test.tsx", - "hash": "8874285659567391752" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.tsx", - "hash": "14243495002152923383" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.types.ts", - "hash": "10978545043348849880" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverTrigger/__snapshots__/PopoverTrigger.test.tsx.snap", - "hash": "7049001353719709106" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverTrigger/index.ts", - "hash": "6566947698041733501" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverTrigger/renderPopoverTrigger.tsx", - "hash": "12559738220691999133" - }, - { - "file": "packages/react-components/react-popover/src/components/PopoverTrigger/usePopoverTrigger.ts", - "hash": "17244988510897269019" - }, - { - "file": "packages/react-components/react-popover/src/index.ts", - "hash": "9032593331933710944" - }, - { - "file": "packages/react-components/react-popover/src/popoverContext.ts", - "hash": "10247319476918690150" - }, - { - "file": "packages/react-components/react-popover/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-popover/src/testing/mockUsePopoverContext.ts", - "hash": "17560436447699119942" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverAnchorToCustomTarget.stories.tsx", - "hash": "214805130071163403" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverAppearance.stories.tsx", - "hash": "1911028944506386880" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverBestPractices.md", - "hash": "2732588484685589689" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverControllingOpenAndClose.stories.tsx", - "hash": "12207010824761379535" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverCustomTrigger.stories.tsx", - "hash": "3517858408299763563" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverDefault.stories.tsx", - "hash": "16713073541667462208" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverDescription.md", - "hash": "8500557139312334970" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverInternalUpdateContent.stories.tsx", - "hash": "16021108580550194296" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverNestedPopovers.stories.tsx", - "hash": "4287991275281069452" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverTrappingFocus.stories.tsx", - "hash": "14078581443974686242" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverWithArrow.stories.tsx", - "hash": "3955407080794549289" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/PopoverWithoutTrigger.stories.tsx", - "hash": "12108642192411900216" - }, - { - "file": "packages/react-components/react-popover/stories/Popover/index.stories.tsx", - "hash": "9781352630408705313" - }, - { - "file": "packages/react-components/react-popover/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-popover/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-popover/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-popover/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-focus": [ - { - "file": "packages/react-focus/.eslintrc.js", - "hash": "11599896202272347932" - }, - { - "file": "packages/react-focus/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/react-focus/CHANGELOG.json", - "hash": "11397692279063814692" - }, - { - "file": "packages/react-focus/CHANGELOG.md", - "hash": "9242204259519410788" - }, - { - "file": "packages/react-focus/LICENSE", - "hash": "7265601084779359537" - }, - { - "file": "packages/react-focus/README.md", - "hash": "18222287515603784300" - }, - { - "file": "packages/react-focus/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/react-focus/config/tests.js", - "hash": "2484785926023527183" - }, - { - "file": "packages/react-focus/etc/react-focus.api.md", - "hash": "8432716012628281751" - }, - { - "file": "packages/react-focus/jest.config.js", - "hash": "8193037916930093299" - }, - { - "file": "packages/react-focus/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-focus/package.json", - "hash": "1454256065022966065", - "deps": [ - "@fluentui/keyboard-key", - "@fluentui/merge-styles", - "@fluentui/set-version", - "@fluentui/style-utilities", - "@fluentui/utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/test-utilities", - "@fluentui/jest-serializer-merge-styles", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-focus/project.json", - "hash": "12135015730228535780" - }, - { - "file": "packages/react-focus/src/common/isConformant.ts", - "hash": "17939211175933685277" - }, - { - "file": "packages/react-focus/src/components/FocusZone/FocusZone.EventHandler.test.tsx", - "hash": "16947583524623201794" - }, - { - "file": "packages/react-focus/src/components/FocusZone/FocusZone.deprecated.test.tsx", - "hash": "16034862313093379614" - }, - { - "file": "packages/react-focus/src/components/FocusZone/FocusZone.test.tsx", - "hash": "11650445686348954059" - }, - { - "file": "packages/react-focus/src/components/FocusZone/FocusZone.tsx", - "hash": "828175718691919235" - }, - { - "file": "packages/react-focus/src/components/FocusZone/FocusZone.types.ts", - "hash": "3786532300293271588" - }, - { - "file": "packages/react-focus/src/components/FocusZone/__snapshots__/FocusZone.deprecated.test.tsx.snap", - "hash": "4503134291514100538" - }, - { - "file": "packages/react-focus/src/components/FocusZone/__snapshots__/FocusZone.test.tsx.snap", - "hash": "1103751063082866005" - }, - { - "file": "packages/react-focus/src/components/FocusZone/index.ts", - "hash": "4235833670383521310" - }, - { - "file": "packages/react-focus/src/index.ts", - "hash": "9196176394022516894" - }, - { - "file": "packages/react-focus/src/version.ts", - "hash": "1527424341116993644" - }, - { - "file": "packages/react-focus/tsconfig.json", - "hash": "9970069326013741624" - }, - { - "file": "packages/react-focus/webpack.config.js", - "hash": "16051215899742671889" - } - ], - "@fluentui/scripts-executors": [ - { - "file": "scripts/executors/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/executors/README.md", - "hash": "3244421341483603138" - }, - { - "file": "scripts/executors/buildTo.js", - "hash": "3177712464592732161" - }, - { - "file": "scripts/executors/check-for-modified-files.ts", - "hash": "10763607801252226068" - }, - { - "file": "scripts/executors/checkIfPackagesAffected.js", - "hash": "9043336426953832291" - }, - { - "file": "scripts/executors/debug-test.js", - "hash": "8593654279449055223" - }, - { - "file": "scripts/executors/format.js", - "hash": "10819326993618316495" - }, - { - "file": "scripts/executors/invalidate-just-cache.js", - "hash": "7264489028234806785" - }, - { - "file": "scripts/executors/jest.config.js", - "hash": "13109292494898296739" - }, - { - "file": "scripts/executors/local-codepen.js", - "hash": "10392194689106589533" - }, - { - "file": "scripts/executors/package.json", - "hash": "2367017281587144268", - "deps": ["@fluentui/scripts-utils", "@fluentui/scripts-monorepo", "@fluentui/scripts-prettier"] - }, - { - "file": "scripts/executors/project.json", - "hash": "4424758346050050205" - }, - { - "file": "scripts/executors/runPublished.js", - "hash": "10512724592827008811" - }, - { - "file": "scripts/executors/runPublished.spec.ts", - "hash": "13578313146003609025" - }, - { - "file": "scripts/executors/runTo.js", - "hash": "16974010502221615189" - }, - { - "file": "scripts/executors/scrub.js", - "hash": "13651139657942254610" - }, - { - "file": "scripts/executors/start.js", - "hash": "4541487088238761962" - }, - { - "file": "scripts/executors/tag-react-components.ts", - "hash": "6138569374629742911" - }, - { - "file": "scripts/executors/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/executors/tsconfig.lib.json", - "hash": "3753806828268919288" - }, - { - "file": "scripts/executors/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/react-tooltip": [ - { - "file": "packages/react-components/react-tooltip/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-tooltip/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-tooltip/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-tooltip/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-tooltip/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-tooltip/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-tooltip/CHANGELOG.json", - "hash": "3662493496073081408" - }, - { - "file": "packages/react-components/react-tooltip/CHANGELOG.md", - "hash": "10310449083261891923" - }, - { - "file": "packages/react-components/react-tooltip/LICENSE", - "hash": "9763231512341770511" - }, - { - "file": "packages/react-components/react-tooltip/README.md", - "hash": "661874467406925808" - }, - { - "file": "packages/react-components/react-tooltip/bundle-size/Tooltip.fixture.js", - "hash": "9177557631885470146" - }, - { - "file": "packages/react-components/react-tooltip/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-tooltip/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-tooltip/docs/MIGRATION.md", - "hash": "5365591817175551380" - }, - { - "file": "packages/react-components/react-tooltip/docs/Spec.md", - "hash": "17197430516596177065" - }, - { - "file": "packages/react-components/react-tooltip/etc/react-tooltip.api.md", - "hash": "2714968178754266809" - }, - { - "file": "packages/react-components/react-tooltip/jest.config.js", - "hash": "17702233081399248314" - }, - { - "file": "packages/react-components/react-tooltip/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-tooltip/package.json", - "hash": "16144738716875989028", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-jsx-runtime", - "@fluentui/react-portal", - "@fluentui/react-positioning", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-tooltip/project.json", - "hash": "2551932128317709476" - }, - { - "file": "packages/react-components/react-tooltip/src/Tooltip.ts", - "hash": "17674670289509594830" - }, - { - "file": "packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.test.tsx", - "hash": "17679454188098067382" - }, - { - "file": "packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.tsx", - "hash": "2076110390038335139" - }, - { - "file": "packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.types.ts", - "hash": "7659262091557687785" - }, - { - "file": "packages/react-components/react-tooltip/src/components/Tooltip/index.ts", - "hash": "10782409254965928182" - }, - { - "file": "packages/react-components/react-tooltip/src/components/Tooltip/private/constants.ts", - "hash": "17507315038679873174" - }, - { - "file": "packages/react-components/react-tooltip/src/components/Tooltip/renderTooltip.tsx", - "hash": "10271874667511265520" - }, - { - "file": "packages/react-components/react-tooltip/src/components/Tooltip/useTooltip.tsx", - "hash": "8598847911993358157" - }, - { - "file": "packages/react-components/react-tooltip/src/components/Tooltip/useTooltipStyles.styles.ts", - "hash": "16095804872310022228" - }, - { - "file": "packages/react-components/react-tooltip/src/index.ts", - "hash": "6245897041394836575" - }, - { - "file": "packages/react-components/react-tooltip/src/testing/isConformant.ts", - "hash": "3528474470343364133" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipControlled.stories.tsx", - "hash": "5745568244813610421" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipCustomMount.stories.tsx", - "hash": "8324075453347831325" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipDefault.stories.tsx", - "hash": "13630401926476137506" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipDescription.md", - "hash": "8413835280603585851" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipIcon.stories.tsx", - "hash": "6181017139676638802" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipInverted.stories.tsx", - "hash": "8768085614823736193" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipPositioning.stories.tsx", - "hash": "5481407588906963902" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipRelationshipDescription.stories.tsx", - "hash": "4706562087197084277" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipRelationshipLabel.stories.tsx", - "hash": "15754488881985482673" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipStyled.stories.tsx", - "hash": "16695082406495294835" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipTarget.stories.tsx", - "hash": "15587023689407586107" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/TooltipWithArrow.stories.tsx", - "hash": "13589492126622145976" - }, - { - "file": "packages/react-components/react-tooltip/stories/Tooltip/index.stories.tsx", - "hash": "16607203418029566096" - }, - { - "file": "packages/react-components/react-tooltip/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-tooltip/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-tooltip/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scheme-utilities": [ - { - "file": "packages/scheme-utilities/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/scheme-utilities/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/scheme-utilities/CHANGELOG.json", - "hash": "10831990114637121424" - }, - { - "file": "packages/scheme-utilities/CHANGELOG.md", - "hash": "11561547596405105751" - }, - { - "file": "packages/scheme-utilities/LICENSE", - "hash": "15398908318832700008" - }, - { - "file": "packages/scheme-utilities/README.md", - "hash": "17462190804923423170" - }, - { - "file": "packages/scheme-utilities/example.png", - "hash": "5304605585461739441" - }, - { - "file": "packages/scheme-utilities/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/scheme-utilities/package.json", - "hash": "16797713160660247554", - "deps": [ - "@fluentui/theme", - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "packages/scheme-utilities/project.json", - "hash": "18207278494590169669" - }, - { - "file": "packages/scheme-utilities/src/index.ts", - "hash": "12035799633836013526" - }, - { - "file": "packages/scheme-utilities/src/utilities.ts", - "hash": "12593228511294575624" - }, - { - "file": "packages/scheme-utilities/src/variantThemeType.ts", - "hash": "848702664263651221" - }, - { - "file": "packages/scheme-utilities/src/variants.ts", - "hash": "11090517405357739151" - }, - { - "file": "packages/scheme-utilities/src/version.ts", - "hash": "6347835831859264688" - }, - { - "file": "packages/scheme-utilities/tsconfig.json", - "hash": "2384178432518439606" - }, - { - "file": "packages/scheme-utilities/webpack.config.js", - "hash": "3900466450664749944" - } - ], - "@fluentui/react-charting": [ - { - "file": "packages/react-charting/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/react-charting/.npmignore", - "hash": "10443000086742372933" - }, - { - "file": "packages/react-charting/CHANGELOG.json", - "hash": "10337539383484491208" - }, - { - "file": "packages/react-charting/CHANGELOG.md", - "hash": "2897961143973799288" - }, - { - "file": "packages/react-charting/LICENSE", - "hash": "5841135995716851283" - }, - { - "file": "packages/react-charting/README.md", - "hash": "9832175539157864072" - }, - { - "file": "packages/react-charting/UnitTests/AreaChartUT.test.tsx", - "hash": "3269270683542684159" - }, - { - "file": "packages/react-charting/UnitTests/GroupedVerticalBarChartUT.test.tsx", - "hash": "4207344687334815004" - }, - { - "file": "packages/react-charting/UnitTests/HorizontalBarChartUT.test.tsx", - "hash": "14364237786286584260" - }, - { - "file": "packages/react-charting/UnitTests/HorizontalBarChartWithAxisUT.test.tsx", - "hash": "396547921618780460" - }, - { - "file": "packages/react-charting/UnitTests/LineChartUT.test.tsx", - "hash": "12769882572288793601" - }, - { - "file": "packages/react-charting/UnitTests/MultiStackedBarChartUT.test.tsx", - "hash": "14188312585490958332" - }, - { - "file": "packages/react-charting/UnitTests/StackedBarChartUT.test.tsx", - "hash": "14028248580129783923" - }, - { - "file": "packages/react-charting/UnitTests/VerticalBarChartUT.test.tsx", - "hash": "13015857820296401822" - }, - { - "file": "packages/react-charting/UnitTests/VerticalStackedBarChartUT.test.tsx", - "hash": "12113770954987743955" - }, - { - "file": "packages/react-charting/UnitTests/__snapshots__/VerticalBarChartUT.test.tsx.snap", - "hash": "13857412498194334317" - }, - { - "file": "packages/react-charting/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/react-charting/config/pre-copy.json", - "hash": "5645154898618432291" - }, - { - "file": "packages/react-charting/config/setup-env.js", - "hash": "13680425379733665451" - }, - { - "file": "packages/react-charting/config/tests.js", - "hash": "5180650933005958887" - }, - { - "file": "packages/react-charting/docs/TechnicalDetails.md", - "hash": "9068612762267236502" - }, - { - "file": "packages/react-charting/docs/TestPlans/AreaChart/ComponentTests.md", - "hash": "14808774995763296983" - }, - { - "file": "packages/react-charting/docs/TestPlans/BasicDonutChart.png", - "hash": "8407699490179041368" - }, - { - "file": "packages/react-charting/docs/TestPlans/DonutChart/ComponentTests.md", - "hash": "9978601866171924879" - }, - { - "file": "packages/react-charting/docs/TestPlans/GaugeChart/ComponentTests.md", - "hash": "310841682701784075" - }, - { - "file": "packages/react-charting/docs/TestPlans/GroupedVerticalBarChart/ComponentTests.md", - "hash": "12842079364814684" - }, - { - "file": "packages/react-charting/docs/TestPlans/HorizontalBarChart/ComponentTests.md", - "hash": "11442832876400028967" - }, - { - "file": "packages/react-charting/docs/TestPlans/HorizontalBarChart/UnitTests.md", - "hash": "10509359828932691467" - }, - { - "file": "packages/react-charting/docs/TestPlans/HorizontalBarChartWithAxis/ComponentTests.md", - "hash": "3270467057658799047" - }, - { - "file": "packages/react-charting/docs/TestPlans/HorizontalBarChartWithAxis/UnitTests.md", - "hash": "8883796341179029573" - }, - { - "file": "packages/react-charting/docs/TestPlans/LineChart/ComponentTests.md", - "hash": "7011218632953601663" - }, - { - "file": "packages/react-charting/docs/TestPlans/MultiStackedBarChart/componentTests.md", - "hash": "16030515404603127361" - }, - { - "file": "packages/react-charting/docs/TestPlans/SankeyChart/ComponentTests.md", - "hash": "5523536025954683769" - }, - { - "file": "packages/react-charting/docs/TestPlans/StackedBarChart/ComponentTests.md", - "hash": "11182984734598181536" - }, - { - "file": "packages/react-charting/docs/TestPlans/TestingGuide.md", - "hash": "16025073943200425017" - }, - { - "file": "packages/react-charting/docs/TestPlans/Utilities/UnitTests.md", - "hash": "3088628899195709632" - }, - { - "file": "packages/react-charting/docs/TestPlans/VerticalBarChart/ComponentTests.md", - "hash": "1432440988369222322" - }, - { - "file": "packages/react-charting/docs/TestPlans/VerticalStackedBarChart/ComponentTests.md", - "hash": "8333002027037114092" - }, - { - "file": "packages/react-charting/docs/TestingStrategy.md", - "hash": "8717563894637714579" - }, - { - "file": "packages/react-charting/docs/colors.md", - "hash": "7347026905651813323" - }, - { - "file": "packages/react-charting/docs/images/TestingStrategy/Coverage.png", - "hash": "8082557619038467829" - }, - { - "file": "packages/react-charting/docs/images/TestingStrategy/DonutCoverage.png", - "hash": "7002143582449968195" - }, - { - "file": "packages/react-charting/docs/images/TestingStrategy/TestingStrategy1.png", - "hash": "11991739759037126570" - }, - { - "file": "packages/react-charting/docs/images/TestingStrategy/TestingStrategy2.png", - "hash": "11433090512127547288" - }, - { - "file": "packages/react-charting/docs/images/TestingStrategy/TestingStrategy3.png", - "hash": "16609601640683868044" - }, - { - "file": "packages/react-charting/docs/images/colors/1.png", - "hash": "201676099951062663" - }, - { - "file": "packages/react-charting/docs/images/colors/2.png", - "hash": "10654733953245985134" - }, - { - "file": "packages/react-charting/docs/images/colors/3.png", - "hash": "15688568969133689415" - }, - { - "file": "packages/react-charting/docs/images/colors/4.png", - "hash": "13996815610302054930" - }, - { - "file": "packages/react-charting/docs/images/colors/5.png", - "hash": "4015781559900671761" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/1.png", - "hash": "16183317420418679061" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/10.png", - "hash": "236882421274026225" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/11.png", - "hash": "2725308868258316006" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/2.png", - "hash": "7719706811747650766" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/3.png", - "hash": "14939467763985185821" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/4.png", - "hash": "129590479685383509" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/5.png", - "hash": "11049231658598955416" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/6.png", - "hash": "5338725798371591663" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/7.png", - "hash": "6382351246325415711" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/8.png", - "hash": "13344871051125951407" - }, - { - "file": "packages/react-charting/docs/images/implementing-2-to-1-spacing/9.png", - "hash": "2749678903073188113" - }, - { - "file": "packages/react-charting/docs/implementing-2-to-1-spacing.md", - "hash": "7322196383453923002" - }, - { - "file": "packages/react-charting/etc/react-charting.api.md", - "hash": "882926847407876595" - }, - { - "file": "packages/react-charting/jest.config.js", - "hash": "3098401836869255977" - }, - { - "file": "packages/react-charting/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-charting/package.json", - "hash": "4788671312083472529", - "deps": [ - "@fluentui/react-focus", - "@fluentui/theme-samples", - "npm:@microsoft/load-themed-styles", - "npm:@types/d3-array", - "npm:@types/d3-axis", - "npm:@types/d3-format", - "npm:@types/d3-hierarchy", - "npm:@types/d3-sankey", - "npm:@types/d3-scale", - "npm:@types/d3-selection", - "npm:@types/d3-shape", - "npm:@types/d3-time-format", - "npm:@types/d3-time", - "@fluentui/set-version", - "npm:d3-array", - "npm:d3-axis", - "npm:d3-format", - "npm:d3-hierarchy", - "npm:d3-sankey", - "npm:d3-scale", - "npm:d3-selection", - "npm:d3-shape", - "npm:d3-time-format", - "npm:d3-time", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/react", - "npm:@types/react-addons-test-utils", - "@fluentui/jest-serializer-merge-styles", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:jest-canvas-mock", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-charting/project.json", - "hash": "8731393738633682151" - }, - { - "file": "packages/react-charting/src/AreaChart.ts", - "hash": "15073804980104349351" - }, - { - "file": "packages/react-charting/src/CartesianChart.ts", - "hash": "10891466127503117236" - }, - { - "file": "packages/react-charting/src/DonutChart.ts", - "hash": "7490426087311823403" - }, - { - "file": "packages/react-charting/src/GaugeChart.ts", - "hash": "4226033961047400976" - }, - { - "file": "packages/react-charting/src/GroupedVerticalBarChart.ts", - "hash": "15489797924433052709" - }, - { - "file": "packages/react-charting/src/HeatMapChart.ts", - "hash": "15435667564912730853" - }, - { - "file": "packages/react-charting/src/HorizontalBarChart.ts", - "hash": "10237813703175935798" - }, - { - "file": "packages/react-charting/src/HorizontalBarChartWithAxis.ts", - "hash": "12029490792828532534" - }, - { - "file": "packages/react-charting/src/Legends.ts", - "hash": "16460403896873996968" - }, - { - "file": "packages/react-charting/src/LineChart.ts", - "hash": "16659807295692186177" - }, - { - "file": "packages/react-charting/src/PieChart.ts", - "hash": "16778366934887091872" - }, - { - "file": "packages/react-charting/src/SankeyChart.ts", - "hash": "13055558930716559295" - }, - { - "file": "packages/react-charting/src/Sparkline.ts", - "hash": "5671805886276599207" - }, - { - "file": "packages/react-charting/src/StackedBarChart.ts", - "hash": "12980182364190103589" - }, - { - "file": "packages/react-charting/src/Styling.ts", - "hash": "8123475635573030392" - }, - { - "file": "packages/react-charting/src/TreeChart.ts", - "hash": "1109041212000572589" - }, - { - "file": "packages/react-charting/src/Utilities.ts", - "hash": "15929919672659535220" - }, - { - "file": "packages/react-charting/src/VerticalBarChart.ts", - "hash": "16278638938827171251" - }, - { - "file": "packages/react-charting/src/VerticalStackedBarChart.ts", - "hash": "9129833978468491495" - }, - { - "file": "packages/react-charting/src/components/AreaChart/AreaChart.base.tsx", - "hash": "4093034690624345489" - }, - { - "file": "packages/react-charting/src/components/AreaChart/AreaChart.styles.ts", - "hash": "12408836760076335613" - }, - { - "file": "packages/react-charting/src/components/AreaChart/AreaChart.test.tsx", - "hash": "8652410830145203690" - }, - { - "file": "packages/react-charting/src/components/AreaChart/AreaChart.tsx", - "hash": "6835702614777497887" - }, - { - "file": "packages/react-charting/src/components/AreaChart/AreaChart.types.ts", - "hash": "10272504202604440056" - }, - { - "file": "packages/react-charting/src/components/AreaChart/AreaChartRTL.test.tsx", - "hash": "4470895609937221769" - }, - { - "file": "packages/react-charting/src/components/AreaChart/__snapshots__/AreaChart.test.tsx.snap", - "hash": "4845588270529473456" - }, - { - "file": "packages/react-charting/src/components/AreaChart/__snapshots__/AreaChartRTL.test.tsx.snap", - "hash": "2471985332886744964" - }, - { - "file": "packages/react-charting/src/components/AreaChart/index.ts", - "hash": "5251573637088898864" - }, - { - "file": "packages/react-charting/src/components/CommonComponents/CartesianChart.base.tsx", - "hash": "16404912240725708681" - }, - { - "file": "packages/react-charting/src/components/CommonComponents/CartesianChart.styles.ts", - "hash": "761592581144672563" - }, - { - "file": "packages/react-charting/src/components/CommonComponents/CartesianChart.tsx", - "hash": "10250008309232000423" - }, - { - "file": "packages/react-charting/src/components/CommonComponents/CartesianChart.types.ts", - "hash": "17814415498036662069" - }, - { - "file": "packages/react-charting/src/components/CommonComponents/index.ts", - "hash": "18427500395577533163" - }, - { - "file": "packages/react-charting/src/components/DonutChart/Arc/Arc.styles.ts", - "hash": "7895309768491440724" - }, - { - "file": "packages/react-charting/src/components/DonutChart/Arc/Arc.tsx", - "hash": "2330806458474842227" - }, - { - "file": "packages/react-charting/src/components/DonutChart/Arc/Arc.types.ts", - "hash": "16065720622755568506" - }, - { - "file": "packages/react-charting/src/components/DonutChart/Arc/index.ts", - "hash": "1900034318969066403" - }, - { - "file": "packages/react-charting/src/components/DonutChart/DonutChart.base.tsx", - "hash": "10268361611138934570" - }, - { - "file": "packages/react-charting/src/components/DonutChart/DonutChart.styles.ts", - "hash": "11358002037113474527" - }, - { - "file": "packages/react-charting/src/components/DonutChart/DonutChart.test.tsx", - "hash": "5958743739940266923" - }, - { - "file": "packages/react-charting/src/components/DonutChart/DonutChart.tsx", - "hash": "7275902301021404929" - }, - { - "file": "packages/react-charting/src/components/DonutChart/DonutChart.types.ts", - "hash": "4516278623257219501" - }, - { - "file": "packages/react-charting/src/components/DonutChart/DonutChartRTL.test.tsx", - "hash": "14322898289149593579" - }, - { - "file": "packages/react-charting/src/components/DonutChart/Pie/Pie.styles.ts", - "hash": "10152053319232122101" - }, - { - "file": "packages/react-charting/src/components/DonutChart/Pie/Pie.tsx", - "hash": "11614740086900193123" - }, - { - "file": "packages/react-charting/src/components/DonutChart/Pie/Pie.types.ts", - "hash": "11125249214832061206" - }, - { - "file": "packages/react-charting/src/components/DonutChart/Pie/index.ts", - "hash": "10239719749643656780" - }, - { - "file": "packages/react-charting/src/components/DonutChart/__snapshots__/DonutChart.test.tsx.snap", - "hash": "9016515451622476991" - }, - { - "file": "packages/react-charting/src/components/DonutChart/__snapshots__/DonutChartRTL.test.tsx.snap", - "hash": "17036608489000678631" - }, - { - "file": "packages/react-charting/src/components/DonutChart/index.ts", - "hash": "806476801011512331" - }, - { - "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.base.tsx", - "hash": "16183101230137736688" - }, - { - "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.styles.ts", - "hash": "12584121085851326284" - }, - { - "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.test.tsx", - "hash": "10662024859942869001" - }, - { - "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.tsx", - "hash": "865686789344357921" - }, - { - "file": "packages/react-charting/src/components/GaugeChart/GaugeChart.types.ts", - "hash": "4362068369519411803" - }, - { - "file": "packages/react-charting/src/components/GaugeChart/__snapshots__/GaugeChart.test.tsx.snap", - "hash": "11405406597359121046" - }, - { - "file": "packages/react-charting/src/components/GaugeChart/index.ts", - "hash": "4092070756489945207" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.base.tsx", - "hash": "14453233103862816273" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.styles.ts", - "hash": "12477643478465004864" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.test.tsx", - "hash": "9445138471362825733" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.tsx", - "hash": "547590682698808044" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.types.tsx", - "hash": "12889683239252933321" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChartRTL.test.tsx", - "hash": "10525872028168114118" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/__snapshots__/GroupedVerticalBarChart.test.tsx.snap", - "hash": "8040317183569723433" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/__snapshots__/GroupedVerticalBarChartRTL.test.tsx.snap", - "hash": "299674228253636226" - }, - { - "file": "packages/react-charting/src/components/GroupedVerticalBarChart/index.ts", - "hash": "13964524092875310611" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.base.tsx", - "hash": "14736055171474099514" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.styles.ts", - "hash": "3628619072673059761" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.test.tsx", - "hash": "13713221853867964395" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.ts", - "hash": "16716363014827473773" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChart.types.ts", - "hash": "3674068218531855343" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/HeatMapChartRTL.test.tsx", - "hash": "17060242443347982036" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/__snapshots__/HeatMapChart.test.tsx.snap", - "hash": "6387895552680780102" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/__snapshots__/HeatMapChartRTL.test.tsx.snap", - "hash": "16624646934983480883" - }, - { - "file": "packages/react-charting/src/components/HeatMapChart/index.ts", - "hash": "13482718997286729011" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.base.tsx", - "hash": "13566135812259845013" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.styles.ts", - "hash": "4803222885505764720" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.test.tsx", - "hash": "174550185337193462" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.tsx", - "hash": "167672050024112358" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.types.ts", - "hash": "18260154883030747993" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChartRTL.test.tsx", - "hash": "3109701644691445553" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/__snapshots__/HorizontalBarChart.test.tsx.snap", - "hash": "14352873482900009557" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/__snapshots__/HorizontalBarChartRTL.test.tsx.snap", - "hash": "6955011355447270715" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChart/index.ts", - "hash": "9333962282124191662" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.base.tsx", - "hash": "1693916576160075498" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.styles.ts", - "hash": "6304783213286072684" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.test.tsx", - "hash": "4341461412662372767" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.tsx", - "hash": "12967004230463593214" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.types.ts", - "hash": "16087732441245592913" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxisRTL.test.tsx", - "hash": "9255529074178961905" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/__snapshots__/HorizontalBarChartWithAxis.test.tsx.snap", - "hash": "17394200814316753927" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/__snapshots__/HorizontalBarChartWithAxisRTL.test.tsx.snap", - "hash": "8510830069076786321" - }, - { - "file": "packages/react-charting/src/components/HorizontalBarChartWithAxis/index.ts", - "hash": "2159216284678808164" - }, - { - "file": "packages/react-charting/src/components/Legends/Legends.base.tsx", - "hash": "8336604979277864868" - }, - { - "file": "packages/react-charting/src/components/Legends/Legends.styles.ts", - "hash": "4390445994177513641" - }, - { - "file": "packages/react-charting/src/components/Legends/Legends.test.tsx", - "hash": "12838721524269860" - }, - { - "file": "packages/react-charting/src/components/Legends/Legends.tsx", - "hash": "17763042590237256403" - }, - { - "file": "packages/react-charting/src/components/Legends/Legends.types.ts", - "hash": "10719772021828530616" - }, - { - "file": "packages/react-charting/src/components/Legends/__snapshots__/Legends.test.tsx.snap", - "hash": "7042275020175287303" - }, - { - "file": "packages/react-charting/src/components/Legends/index.ts", - "hash": "11962396932209767202" - }, - { - "file": "packages/react-charting/src/components/Legends/shape.tsx", - "hash": "9410159346354247531" - }, - { - "file": "packages/react-charting/src/components/LineChart/LineChart.base.tsx", - "hash": "1743467768340726551" - }, - { - "file": "packages/react-charting/src/components/LineChart/LineChart.styles.ts", - "hash": "4772105040357989417" - }, - { - "file": "packages/react-charting/src/components/LineChart/LineChart.test.tsx", - "hash": "4473160801976779354" - }, - { - "file": "packages/react-charting/src/components/LineChart/LineChart.tsx", - "hash": "17773336946261757726" - }, - { - "file": "packages/react-charting/src/components/LineChart/LineChart.types.ts", - "hash": "10257967280247755900" - }, - { - "file": "packages/react-charting/src/components/LineChart/LineChartRTL.test.tsx", - "hash": "7383273194652858704" - }, - { - "file": "packages/react-charting/src/components/LineChart/__snapshots__/LineChart.test.tsx.snap", - "hash": "2565168848531218728" - }, - { - "file": "packages/react-charting/src/components/LineChart/__snapshots__/LineChartRTL.test.tsx.snap", - "hash": "16961247164859363448" - }, - { - "file": "packages/react-charting/src/components/LineChart/eventAnnotation/EventAnnotation.tsx", - "hash": "1448438468217299215" - }, - { - "file": "packages/react-charting/src/components/LineChart/eventAnnotation/LabelLink.tsx", - "hash": "4839885737511228824" - }, - { - "file": "packages/react-charting/src/components/LineChart/eventAnnotation/Textbox.tsx", - "hash": "5832348627714078393" - }, - { - "file": "packages/react-charting/src/components/LineChart/index.ts", - "hash": "4650408877452069117" - }, - { - "file": "packages/react-charting/src/components/PieChart/Arc/Arc.styles.ts", - "hash": "13106112677766064183" - }, - { - "file": "packages/react-charting/src/components/PieChart/Arc/Arc.tsx", - "hash": "10390303130266047054" - }, - { - "file": "packages/react-charting/src/components/PieChart/Arc/Arc.types.ts", - "hash": "3997819974378711901" - }, - { - "file": "packages/react-charting/src/components/PieChart/Arc/index.ts", - "hash": "1900034318969066403" - }, - { - "file": "packages/react-charting/src/components/PieChart/Pie/Pie.styles.ts", - "hash": "11381302664912127439" - }, - { - "file": "packages/react-charting/src/components/PieChart/Pie/Pie.tsx", - "hash": "5623368322288978473" - }, - { - "file": "packages/react-charting/src/components/PieChart/Pie/Pie.types.ts", - "hash": "1875472874734088782" - }, - { - "file": "packages/react-charting/src/components/PieChart/Pie/index.ts", - "hash": "10239719749643656780" - }, - { - "file": "packages/react-charting/src/components/PieChart/PieChart.base.tsx", - "hash": "12921994545695521033" - }, - { - "file": "packages/react-charting/src/components/PieChart/PieChart.styles.ts", - "hash": "11321424857209075565" - }, - { - "file": "packages/react-charting/src/components/PieChart/PieChart.test.tsx", - "hash": "11677544683436052134" - }, - { - "file": "packages/react-charting/src/components/PieChart/PieChart.tsx", - "hash": "4527556264484607554" - }, - { - "file": "packages/react-charting/src/components/PieChart/PieChart.types.ts", - "hash": "15623409056434247426" - }, - { - "file": "packages/react-charting/src/components/PieChart/PieChartRTL.test.tsx", - "hash": "16233211447376373011" - }, - { - "file": "packages/react-charting/src/components/PieChart/__snapshots__/PieChart.test.tsx.snap", - "hash": "4016198114503601082" - }, - { - "file": "packages/react-charting/src/components/PieChart/__snapshots__/PieChartRTL.test.tsx.snap", - "hash": "8413701594029012718" - }, - { - "file": "packages/react-charting/src/components/PieChart/index.ts", - "hash": "5955166752264931769" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.base.tsx", - "hash": "4238588452395692138" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.styles.ts", - "hash": "11368532189204175738" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.test.tsx", - "hash": "16134333975133506558" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.tsx", - "hash": "9289951482328354569" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/SankeyChart.types.ts", - "hash": "15014298009889412684" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/SankeyChartRTL.test.tsx", - "hash": "868790866629945990" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/__snapshots__/SankeyChart.test.tsx.snap", - "hash": "4049212962907979931" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/__snapshots__/SankeyChartRTL.test.tsx.snap", - "hash": "5700523192183358557" - }, - { - "file": "packages/react-charting/src/components/SankeyChart/index.ts", - "hash": "13870984042315143866" - }, - { - "file": "packages/react-charting/src/components/Sparkline/Sparkline.base.tsx", - "hash": "7967151691860791302" - }, - { - "file": "packages/react-charting/src/components/Sparkline/Sparkline.styles.ts", - "hash": "2202640113884915397" - }, - { - "file": "packages/react-charting/src/components/Sparkline/Sparkline.test.tsx", - "hash": "8468249823093830932" - }, - { - "file": "packages/react-charting/src/components/Sparkline/Sparkline.tsx", - "hash": "8843740910926078940" - }, - { - "file": "packages/react-charting/src/components/Sparkline/Sparkline.types.ts", - "hash": "8837031610239272804" - }, - { - "file": "packages/react-charting/src/components/Sparkline/SparklineRTL.test.tsx", - "hash": "17767147002141960667" - }, - { - "file": "packages/react-charting/src/components/Sparkline/__snapshots__/Sparkline.test.tsx.snap", - "hash": "18168444434486593058" - }, - { - "file": "packages/react-charting/src/components/Sparkline/__snapshots__/SparklineRTL.test.tsx.snap", - "hash": "17716551567309776610" - }, - { - "file": "packages/react-charting/src/components/Sparkline/index.ts", - "hash": "9268351487690962554" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.base.tsx", - "hash": "16352182103019411834" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.styles.ts", - "hash": "14038483678757699445" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.test.tsx", - "hash": "5169005374924869809" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.tsx", - "hash": "6725276213177702647" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.types.ts", - "hash": "431656116944400988" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/MultiStackedBarChartRTL.test.tsx", - "hash": "14736367081219831047" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.base.tsx", - "hash": "2927471067626698909" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.styles.ts", - "hash": "11603146486475755241" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.test.tsx", - "hash": "5336773472540129552" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.tsx", - "hash": "4436183465389462436" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChart.types.ts", - "hash": "10981829443029230848" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/StackedBarChartRTL.test.tsx", - "hash": "3869922963895117385" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/__snapshots__/MultiStackedBarChart.test.tsx.snap", - "hash": "8446879553536508446" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/__snapshots__/MultiStackedBarChartRTL.test.tsx.snap", - "hash": "16448004251364457038" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/__snapshots__/StackedBarChart.test.tsx.snap", - "hash": "7252639629933796491" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/__snapshots__/StackedBarChartRTL.test.tsx.snap", - "hash": "9503984772139484704" - }, - { - "file": "packages/react-charting/src/components/StackedBarChart/index.ts", - "hash": "15578486466730932711" - }, - { - "file": "packages/react-charting/src/components/TreeChart/TreeChart.base.tsx", - "hash": "10623309691759917195" - }, - { - "file": "packages/react-charting/src/components/TreeChart/TreeChart.md", - "hash": "5175369282106178614" - }, - { - "file": "packages/react-charting/src/components/TreeChart/TreeChart.styles.ts", - "hash": "17861002185407290370" - }, - { - "file": "packages/react-charting/src/components/TreeChart/TreeChart.test.tsx", - "hash": "8465420044933020987" - }, - { - "file": "packages/react-charting/src/components/TreeChart/TreeChart.tsx", - "hash": "13438935336731785436" - }, - { - "file": "packages/react-charting/src/components/TreeChart/TreeChart.types.ts", - "hash": "9815794191923244384" - }, - { - "file": "packages/react-charting/src/components/TreeChart/__snapshots__/TreeChart.test.tsx.snap", - "hash": "238652132373299106" - }, - { - "file": "packages/react-charting/src/components/TreeChart/index.ts", - "hash": "2826009403154309363" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.base.tsx", - "hash": "8336076320828394951" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.styles.ts", - "hash": "6267631615960523739" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.test.tsx", - "hash": "10655231889810527960" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.tsx", - "hash": "3592096069015647087" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.types.ts", - "hash": "1360416350825185069" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/VerticalBarChartRTL.test.tsx", - "hash": "17820943011845170989" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/__snapshots__/VerticalBarChart.test.tsx.snap", - "hash": "13303928231674988916" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/__snapshots__/VerticalBarChartRTL.test.tsx.snap", - "hash": "8170413271310272463" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/index.ts", - "hash": "9875808817767585330" - }, - { - "file": "packages/react-charting/src/components/VerticalBarChart/react-dom.jsx", - "hash": "17581154772148716541" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.base.tsx", - "hash": "12977454775737757480" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.styles.ts", - "hash": "14229107687470008229" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.test.tsx", - "hash": "4877115899948100379" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.tsx", - "hash": "11335430591061979311" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.types.ts", - "hash": "18235795669827468523" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChartRTL.test.tsx", - "hash": "8425206743206271978" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/__snapshots__/VerticalStackedBarChart.test.tsx.snap", - "hash": "5222520582796619900" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/__snapshots__/VerticalStackedBarChartRTL.test.tsx.snap", - "hash": "12764028698035015713" - }, - { - "file": "packages/react-charting/src/components/VerticalStackedBarChart/index.ts", - "hash": "1771243465102915081" - }, - { - "file": "packages/react-charting/src/index.ts", - "hash": "16175531709538828878" - }, - { - "file": "packages/react-charting/src/types/IDataPoint.ts", - "hash": "12293155624419644902" - }, - { - "file": "packages/react-charting/src/types/IEventAnnotation.ts", - "hash": "9553620252041460313" - }, - { - "file": "packages/react-charting/src/types/ILegendDataItem.ts", - "hash": "453827769507159528" - }, - { - "file": "packages/react-charting/src/types/index.ts", - "hash": "17984122460489873361" - }, - { - "file": "packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.base.tsx", - "hash": "13613396689005880572" - }, - { - "file": "packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.styles.ts", - "hash": "1188961640666456662" - }, - { - "file": "packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.tsx", - "hash": "16352669973586416577" - }, - { - "file": "packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.types.ts", - "hash": "2731466171182375306" - }, - { - "file": "packages/react-charting/src/utilities/ChartHoverCard/index.ts", - "hash": "18016841014173982452" - }, - { - "file": "packages/react-charting/src/utilities/FocusableTooltipText.tsx", - "hash": "8807412423501985193" - }, - { - "file": "packages/react-charting/src/utilities/SVGTooltipText.tsx", - "hash": "15758375221240808115" - }, - { - "file": "packages/react-charting/src/utilities/TestUtility.test.tsx", - "hash": "13941124207198777159" - }, - { - "file": "packages/react-charting/src/utilities/UtilityUnitTests.test.ts", - "hash": "12459529793627868533" - }, - { - "file": "packages/react-charting/src/utilities/__snapshots__/UtilityUnitTests.test.ts.snap", - "hash": "5180532810822606706" - }, - { - "file": "packages/react-charting/src/utilities/colors.ts", - "hash": "18245164562320937467" - }, - { - "file": "packages/react-charting/src/utilities/index.ts", - "hash": "7657671373760345128" - }, - { - "file": "packages/react-charting/src/utilities/test-data.ts", - "hash": "5562381519452570272" - }, - { - "file": "packages/react-charting/src/utilities/utilities.ts", - "hash": "4711024040231083860" - }, - { - "file": "packages/react-charting/src/version.ts", - "hash": "15896380775009511348" - }, - { - "file": "packages/react-charting/tsconfig.json", - "hash": "7639079792952290029" - }, - { - "file": "packages/react-charting/webpack.codepen.config.js", - "hash": "10315398573475886442" - }, - { - "file": "packages/react-charting/webpack.config.js", - "hash": "399209706662205981" - }, - { - "file": "packages/react-charting/webpack.serve.config.js", - "hash": "7443825724669908634" - } - ], - "@fluentui/react-18-tests-v8": [ - { - "file": "apps/react-18-tests-v8/.eslintrc.json", - "hash": "273467718057503654" - }, - { - "file": "apps/react-18-tests-v8/CHANGELOG.json", - "hash": "5977916475780078531" - }, - { - "file": "apps/react-18-tests-v8/CHANGELOG.md", - "hash": "10718461854066933788" - }, - { - "file": "apps/react-18-tests-v8/README.md", - "hash": "15862859216428956123" - }, - { - "file": "apps/react-18-tests-v8/config/tests.js", - "hash": "14010006175392234982" - }, - { - "file": "apps/react-18-tests-v8/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "apps/react-18-tests-v8/jest.config.js", - "hash": "10470340730394489937" - }, - { - "file": "apps/react-18-tests-v8/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "apps/react-18-tests-v8/package.json", - "hash": "4505824314366546808", - "deps": [ - "@fluentui/react", - "@fluentui/react-hooks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-cypress", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "apps/react-18-tests-v8/project.json", - "hash": "11648713096666160953" - }, - { - "file": "apps/react-18-tests-v8/src/App.tsx", - "hash": "13987255915692999850" - }, - { - "file": "apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.cy.tsx", - "hash": "17770592271590427144" - }, - { - "file": "apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.test.tsx", - "hash": "14913890186636114321" - }, - { - "file": "apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.tsx", - "hash": "17838905144516352385" - }, - { - "file": "apps/react-18-tests-v8/src/components/ContextualMenu/index.ts", - "hash": "11003213546574535151" - }, - { - "file": "apps/react-18-tests-v8/src/components/Panel.Basic.Example.tsx", - "hash": "11941803416852956776" - }, - { - "file": "apps/react-18-tests-v8/src/components/index.ts", - "hash": "13495884275277437011" - }, - { - "file": "apps/react-18-tests-v8/src/index.tsx", - "hash": "2918296648402810869" - }, - { - "file": "apps/react-18-tests-v8/tsconfig.app.json", - "hash": "17704136081794340261" - }, - { - "file": "apps/react-18-tests-v8/tsconfig.cy.json", - "hash": "4669440979528425638" - }, - { - "file": "apps/react-18-tests-v8/tsconfig.json", - "hash": "12085512686550681295" - }, - { - "file": "apps/react-18-tests-v8/tsconfig.react-compat-check.json", - "hash": "5090552958223827867" - }, - { - "file": "apps/react-18-tests-v8/tsconfig.spec.json", - "hash": "13287603543641469083" - }, - { - "file": "apps/react-18-tests-v8/webpack.config.js", - "hash": "18327882615681333843" - } - ], - "@fluentui/theme-samples": [ - { - "file": "packages/theme-samples/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/theme-samples/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/theme-samples/CHANGELOG.json", - "hash": "4107014302643558583" - }, - { - "file": "packages/theme-samples/CHANGELOG.md", - "hash": "16681506395571679930" - }, - { - "file": "packages/theme-samples/LICENSE", - "hash": "15482603230267471744" - }, - { - "file": "packages/theme-samples/README.md", - "hash": "3926556167459327423" - }, - { - "file": "packages/theme-samples/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/theme-samples/package.json", - "hash": "15427753799492686926", - "deps": [ - "@fluentui/react", - "@fluentui/set-version", - "@fluentui/scheme-utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "packages/theme-samples/project.json", - "hash": "6409800190469398757" - }, - { - "file": "packages/theme-samples/src/DarkCustomizations/DarkCustomizations.ts", - "hash": "5200885300371184710" - }, - { - "file": "packages/theme-samples/src/DarkCustomizations/index.ts", - "hash": "14444893938817993003" - }, - { - "file": "packages/theme-samples/src/DarkCustomizations/styles/DatePickerStyles.ts", - "hash": "15259319016214443724" - }, - { - "file": "packages/theme-samples/src/DarkCustomizations/styles/PeoplePickerStyles.ts", - "hash": "12867402699419709127" - }, - { - "file": "packages/theme-samples/src/DarkCustomizations/styles/index.ts", - "hash": "13786226689429555298" - }, - { - "file": "packages/theme-samples/src/DefaultCustomizations.ts", - "hash": "7362911222450954562" - }, - { - "file": "packages/theme-samples/src/TeamsCustomizations.ts", - "hash": "10750998333330948600" - }, - { - "file": "packages/theme-samples/src/WordCustomizations.ts", - "hash": "3224157461993899137" - }, - { - "file": "packages/theme-samples/src/index.ts", - "hash": "16878372643173057795" - }, - { - "file": "packages/theme-samples/src/version.ts", - "hash": "8159374621578079077" - }, - { - "file": "packages/theme-samples/tsconfig.json", - "hash": "5760297339315905719" - }, - { - "file": "packages/theme-samples/webpack.config.js", - "hash": "5642468613982628084" - } - ], - "@fluentui/react-menu": [ - { - "file": "packages/react-components/react-menu/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-menu/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-menu/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-menu/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-menu/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-menu/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-menu/CHANGELOG.json", - "hash": "13476910229160629174" - }, - { - "file": "packages/react-components/react-menu/CHANGELOG.md", - "hash": "14554664184101537573" - }, - { - "file": "packages/react-components/react-menu/LICENSE", - "hash": "15736152015969238586" - }, - { - "file": "packages/react-components/react-menu/README.md", - "hash": "9974219480792599156" - }, - { - "file": "packages/react-components/react-menu/bundle-size/Menu.Selectable.fixture.js", - "hash": "10055718406591672962" - }, - { - "file": "packages/react-components/react-menu/bundle-size/Menu.fixture.js", - "hash": "7380423072833944343" - }, - { - "file": "packages/react-components/react-menu/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-menu/config/tests.js", - "hash": "14010006175392234982" - }, - { - "file": "packages/react-components/react-menu/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-menu/docs/Spec.md", - "hash": "3976522757863907944" - }, - { - "file": "packages/react-components/react-menu/etc/images/linked-keyboard-mouse-navigation.gif", - "hash": "9534445546290517565" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide1.PNG", - "hash": "10996843919047425143" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide10.PNG", - "hash": "7762249894771317134" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide11.PNG", - "hash": "13152679522862275183" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide12.PNG", - "hash": "8847288720715588337" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide13.PNG", - "hash": "9104014278253187127" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide14.PNG", - "hash": "7315926729919914999" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide15.PNG", - "hash": "8236518680473418181" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide16.PNG", - "hash": "9980447627512903644" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide17.PNG", - "hash": "17422977984885863150" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide18.PNG", - "hash": "14759594747101336129" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide19.PNG", - "hash": "17650756235105260437" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide2.PNG", - "hash": "30424365879784040" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide20.PNG", - "hash": "1612062547793799900" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide21.PNG", - "hash": "11124503703698606421" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide22.PNG", - "hash": "811262722789076426" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide3.PNG", - "hash": "10845368115041205445" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide4.PNG", - "hash": "8986088429055328339" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide5.PNG", - "hash": "10871140165914991445" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide6.PNG", - "hash": "13977431754554812773" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide7.PNG", - "hash": "499398108476843717" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide8.PNG", - "hash": "3744764180890858266" - }, - { - "file": "packages/react-components/react-menu/etc/images/menu-interactions/Slide9.PNG", - "hash": "892375687068162726" - }, - { - "file": "packages/react-components/react-menu/etc/images/splitbutton-left-right.jpg", - "hash": "11974008894047502409" - }, - { - "file": "packages/react-components/react-menu/etc/images/splitbutton-up-down.jpg", - "hash": "3421245233520048777" - }, - { - "file": "packages/react-components/react-menu/etc/react-menu.api.md", - "hash": "2625235660532732525" - }, - { - "file": "packages/react-components/react-menu/jest.config.js", - "hash": "1745463398219509870" - }, - { - "file": "packages/react-components/react-menu/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-menu/package.json", - "hash": "16266155024367291616", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-aria", - "@fluentui/react-context-selector", - "npm:@fluentui/react-icons", - "@fluentui/react-portal", - "@fluentui/react-positioning", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-menu/project.json", - "hash": "9575547020162500401" - }, - { - "file": "packages/react-components/react-menu/src/Menu.ts", - "hash": "8756792321904454806" - }, - { - "file": "packages/react-components/react-menu/src/MenuDivider.ts", - "hash": "9623716229305140831" - }, - { - "file": "packages/react-components/react-menu/src/MenuGroup.ts", - "hash": "12488100988105222327" - }, - { - "file": "packages/react-components/react-menu/src/MenuGroupHeader.ts", - "hash": "14350848624142614817" - }, - { - "file": "packages/react-components/react-menu/src/MenuItem.ts", - "hash": "3661288238805445610" - }, - { - "file": "packages/react-components/react-menu/src/MenuItemCheckbox.ts", - "hash": "17719054125879305473" - }, - { - "file": "packages/react-components/react-menu/src/MenuItemLink.ts", - "hash": "558019554312927506" - }, - { - "file": "packages/react-components/react-menu/src/MenuItemRadio.ts", - "hash": "12593718358566802102" - }, - { - "file": "packages/react-components/react-menu/src/MenuList.ts", - "hash": "8846519038441631805" - }, - { - "file": "packages/react-components/react-menu/src/MenuPopover.ts", - "hash": "2983509257027835571" - }, - { - "file": "packages/react-components/react-menu/src/MenuSplitGroup.ts", - "hash": "15513016859210475093" - }, - { - "file": "packages/react-components/react-menu/src/MenuTrigger.ts", - "hash": "11698345674200359338" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/Menu.cy.tsx", - "hash": "6444122186839663883" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/Menu.test.tsx", - "hash": "17729822688881618421" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/Menu.tsx", - "hash": "5848268992573469282" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/Menu.types.ts", - "hash": "9651040264007662262" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/__snapshots__/Menu.test.tsx.snap", - "hash": "3975719831104486533" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/index.ts", - "hash": "1304198499668176681" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/renderMenu.tsx", - "hash": "9385651029638656923" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/useMenu.tsx", - "hash": "14860197231320244296" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/useMenuContextValues.test.tsx", - "hash": "5547672389280910376" - }, - { - "file": "packages/react-components/react-menu/src/components/Menu/useMenuContextValues.ts", - "hash": "12642077360124745015" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.test.tsx", - "hash": "11549581151984489972" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.tsx", - "hash": "16805562512970289459" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.types.ts", - "hash": "15007456810137280687" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuDivider/__snapshots__/MenuDivider.test.tsx.snap", - "hash": "14233671526668994289" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuDivider/index.ts", - "hash": "2565091352590454773" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuDivider/renderMenuDivider.tsx", - "hash": "11018995948109107341" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuDivider/useMenuDivider.ts", - "hash": "5780887031541246803" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuDivider/useMenuDividerStyles.styles.ts", - "hash": "10077324190440540609" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.test.tsx", - "hash": "1204087493474192749" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.tsx", - "hash": "4498560461645350515" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.types.ts", - "hash": "15219881719761407189" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/__snapshots__/MenuGroup.test.tsx.snap", - "hash": "16965914614106720477" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/index.ts", - "hash": "9209511433755125706" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/renderMenuGroup.tsx", - "hash": "8181753885401947257" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/useMenuGroup.ts", - "hash": "3910564680106426846" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupContextValues.test.ts", - "hash": "18001211045297471397" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupContextValues.ts", - "hash": "9216932486656446401" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupStyles.styles.ts", - "hash": "8932499573143732756" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.test.tsx", - "hash": "6988462447077728607" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.tsx", - "hash": "1503771799834923441" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.types.ts", - "hash": "17330269037191754353" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/__snapshots__/MenuGroupHeader.test.tsx.snap", - "hash": "7337392803220596786" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/index.ts", - "hash": "6033635462197304978" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/renderMenuGroupHeader.tsx", - "hash": "3324830091053494995" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/useMenuGroupHeader.ts", - "hash": "15653895465410418163" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuGroupHeader/useMenuGroupHeaderStyles.styles.ts", - "hash": "14997030694868856005" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/MenuItem.test.tsx", - "hash": "2873679684291235423" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/MenuItem.tsx", - "hash": "12024201470866756651" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/MenuItem.types.ts", - "hash": "10707482172801795547" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/__snapshots__/MenuItem.test.tsx.snap", - "hash": "5385709528323368001" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/index.ts", - "hash": "9541045283331288441" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/renderMenuItem.tsx", - "hash": "14942392158866532539" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/useCharacterSearch.ts", - "hash": "6267469289989024961" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/useMenuItem.tsx", - "hash": "1396724368639234346" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItem/useMenuItemStyles.styles.ts", - "hash": "6460526830763324982" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.test.tsx", - "hash": "14984384382944601371" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.tsx", - "hash": "787477252537168940" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.types.ts", - "hash": "5905203447588022674" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/__snapshots__/MenuItemCheckbox.test.tsx.snap", - "hash": "7828754620629991266" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/index.ts", - "hash": "3588188147991430141" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/renderMenuItemCheckbox.tsx", - "hash": "258385211829308265" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/useMenuItemCheckbox.tsx", - "hash": "5944646457710051085" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemCheckbox/useMenuItemCheckboxStyles.styles.ts", - "hash": "7462323984399882305" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.test.tsx", - "hash": "17595296506760269868" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.tsx", - "hash": "17248523960727803144" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.types.ts", - "hash": "2020161238381044485" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemLink/__snapshots__/MenuItemLink.test.tsx.snap", - "hash": "15703671203227564493" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemLink/index.ts", - "hash": "13697213369728295884" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemLink/renderMenuItemLink.tsx", - "hash": "1571195633627266707" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemLink/useMenuItemLink.ts", - "hash": "15485512175090047445" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemLink/useMenuItemLinkStyles.styles.ts", - "hash": "10673459437642068479" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.test.tsx", - "hash": "17830365470523402000" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.tsx", - "hash": "15806557780886661014" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.types.ts", - "hash": "5784410031569147629" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemRadio/__snapshots__/MenuItemRadio.test.tsx.snap", - "hash": "7601418981291270276" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemRadio/index.ts", - "hash": "16477535113948742245" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemRadio/renderMenuItemRadio.tsx", - "hash": "6094725217997746798" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemRadio/useMenuItemRadio.tsx", - "hash": "18361762024477785461" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuItemRadio/useMenuItemRadioStyles.styles.ts", - "hash": "7787085258183418184" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/MenuList.cy.tsx", - "hash": "10558493214717613555" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/MenuList.test.tsx", - "hash": "7501375996347123259" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/MenuList.tsx", - "hash": "17587090556546066160" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/MenuList.types.ts", - "hash": "13914750447147370364" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/__snapshots__/MenuList.test.tsx.snap", - "hash": "2592775585730575933" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/index.ts", - "hash": "15342917811343006430" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/renderMenuList.tsx", - "hash": "5602566865692845045" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/useMenuList.test.ts", - "hash": "12471856953641215156" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/useMenuList.ts", - "hash": "9802933237562563138" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/useMenuListContextValues.test.ts", - "hash": "17123086118342755317" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/useMenuListContextValues.ts", - "hash": "13896741539445495081" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuList/useMenuListStyles.styles.ts", - "hash": "4780194249150348842" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.test.tsx", - "hash": "6189729203934803945" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.tsx", - "hash": "12082762929186071460" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.types.ts", - "hash": "8455769478368286917" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuPopover/__snapshots__/MenuPopover.test.tsx.snap", - "hash": "2150294699172352256" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuPopover/index.ts", - "hash": "14317626586151272452" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuPopover/renderMenuPopover.tsx", - "hash": "8869926913492328294" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuPopover/useMenuPopover.ts", - "hash": "13420499812023202946" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuPopover/useMenuPopoverStyles.styles.ts", - "hash": "1253775784838469533" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.test.tsx", - "hash": "1840138852833662611" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.tsx", - "hash": "16572984695100801171" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.types.ts", - "hash": "13031355897166894941" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/__snapshots__/MenuSplitGroup.test.tsx.snap", - "hash": "17458023320221705773" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/index.ts", - "hash": "318475417289781564" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/renderMenuSplitGroup.tsx", - "hash": "5901409832995632926" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/useMenuSplitGroup.ts", - "hash": "17746241506547851787" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuSplitGroup/useMenuSplitGroupStyles.styles.ts", - "hash": "12933949261295792806" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.test.tsx", - "hash": "11060889766755576204" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.tsx", - "hash": "1394653538801574152" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.types.ts", - "hash": "946719309818581252" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuTrigger/__snapshots__/MenuTrigger.test.tsx.snap", - "hash": "11843977669537975918" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuTrigger/index.ts", - "hash": "10359213883192490894" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuTrigger/renderMenuTrigger.tsx", - "hash": "486853907445320152" - }, - { - "file": "packages/react-components/react-menu/src/components/MenuTrigger/useMenuTrigger.ts", - "hash": "9150439686645890667" - }, - { - "file": "packages/react-components/react-menu/src/components/index.ts", - "hash": "15281374471627944273" - }, - { - "file": "packages/react-components/react-menu/src/contexts/menuContext.ts", - "hash": "6239917358806324505" - }, - { - "file": "packages/react-components/react-menu/src/contexts/menuGroupContext.ts", - "hash": "6370087999253214975" - }, - { - "file": "packages/react-components/react-menu/src/contexts/menuListContext.tsx", - "hash": "6819638168391932370" - }, - { - "file": "packages/react-components/react-menu/src/contexts/menuTriggerContext.ts", - "hash": "6036099642596285418" - }, - { - "file": "packages/react-components/react-menu/src/index.ts", - "hash": "10360275651669209236" - }, - { - "file": "packages/react-components/react-menu/src/selectable/index.ts", - "hash": "4319182688114126685" - }, - { - "file": "packages/react-components/react-menu/src/selectable/types.ts", - "hash": "16485900127811599667" - }, - { - "file": "packages/react-components/react-menu/src/selectable/useCheckmarkStyles.styles.ts", - "hash": "3906585967852877939" - }, - { - "file": "packages/react-components/react-menu/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-menu/src/testing/mockUseMenuContext.ts", - "hash": "6314525062221789050" - }, - { - "file": "packages/react-components/react-menu/src/testing/selectors.ts", - "hash": "8209790805045598641" - }, - { - "file": "packages/react-components/react-menu/src/utils/index.ts", - "hash": "4078004951295563239" - }, - { - "file": "packages/react-components/react-menu/src/utils/useIsSubmenu.ts", - "hash": "11033603198558854107" - }, - { - "file": "packages/react-components/react-menu/src/utils/useOnMenuEnter.ts", - "hash": "6826503496950204850" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuAligningWithIcons.stories.tsx", - "hash": "16433524456963419092" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuAligningWithSelectableItems.stories.tsx", - "hash": "14474345408241564020" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuAnchorToTarget.stories.tsx", - "hash": "9486718017680407788" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuBestPractices.md", - "hash": "5249056618079920833" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuCheckboxItems.stories.tsx", - "hash": "8841710572274735202" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuControlledCheckboxItems.stories.tsx", - "hash": "16683035339345466174" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuControlledRadioItems.stories.tsx", - "hash": "1922948447837293872" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuControllingOpenAndClose.stories.tsx", - "hash": "987124754558044067" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuCustomTrigger.stories.tsx", - "hash": "18094199124507674772" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuDefault.stories.tsx", - "hash": "16799265814272918058" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuDescription.md", - "hash": "9350708939226578245" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuGroupingItems.stories.tsx", - "hash": "6589559459586809781" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuInteraction.stories.tsx", - "hash": "5236924903760670398" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuItemLinkNavigation.stories.tsx", - "hash": "10427912434970875220" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuMemoizedMenuItems.stories.tsx", - "hash": "18299823585577487381" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuMenuItemsWithIcons.stories.tsx", - "hash": "17400593762694855498" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuNestedSubmenus.stories.tsx", - "hash": "16674356508768541596" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuNestedSubmenusControlled.stories.tsx", - "hash": "3051040041580907048" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuRadioItems.stories.tsx", - "hash": "15098987322999033693" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuRenderFunctionTrigger.stories.tsx", - "hash": "15200765170839343603" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuSecondaryContentForMenuItems.stories.tsx", - "hash": "10654468810932398313" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuSelectionGroup.stories.tsx", - "hash": "306600798412747459" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuSplitMenuItem.stories.tsx", - "hash": "797134403737860059" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuTriggerWithTooltip.stories.tsx", - "hash": "13215432807511638517" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/MenuVisualDividerOnly.stories.tsx", - "hash": "4883926450294571262" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/NestedSubmenusResponsiveness.stories.tsx", - "hash": "14146194086814006414" - }, - { - "file": "packages/react-components/react-menu/stories/Menu/index.stories.tsx", - "hash": "3296822820272671917" - }, - { - "file": "packages/react-components/react-menu/stories/MenuList/MenuListCheckboxItems.stories.tsx", - "hash": "3251768030696211806" - }, - { - "file": "packages/react-components/react-menu/stories/MenuList/MenuListControlledCheckboxItems.stories.tsx", - "hash": "16990448086722515461" - }, - { - "file": "packages/react-components/react-menu/stories/MenuList/MenuListControlledRadioItems.stories.tsx", - "hash": "7291360822499525379" - }, - { - "file": "packages/react-components/react-menu/stories/MenuList/MenuListDefault.stories.tsx", - "hash": "10353579900915928948" - }, - { - "file": "packages/react-components/react-menu/stories/MenuList/MenuListDescription.md", - "hash": "4214626428591226389" - }, - { - "file": "packages/react-components/react-menu/stories/MenuList/MenuListNestedSubmenus.stories.tsx", - "hash": "12052013926643032775" - }, - { - "file": "packages/react-components/react-menu/stories/MenuList/MenuListRadioItems.stories.tsx", - "hash": "3448944709947031326" - }, - { - "file": "packages/react-components/react-menu/stories/MenuList/index.stories.tsx", - "hash": "17161123005114922980" - }, - { - "file": "packages/react-components/react-menu/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-menu/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-menu/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-menu/tsconfig.spec.json", - "hash": "6578707152334499940" - } - ], - "@fluentui/react-proptypes": [ - { - "file": "packages/fluentui/react-proptypes/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-proptypes/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-proptypes/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-proptypes/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-proptypes/jest.config.js", - "hash": "13298147580513423019" - }, - { - "file": "packages/fluentui/react-proptypes/package.json", - "hash": "7789869904881339211", - "deps": [ - "npm:@babel/runtime", - "npm:lodash", - "npm:prop-types", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:lerna-alias" - ] - }, - { - "file": "packages/fluentui/react-proptypes/project.json", - "hash": "15801865268072002675" - }, - { - "file": "packages/fluentui/react-proptypes/src/index.ts", - "hash": "1441906070263022901" - }, - { - "file": "packages/fluentui/react-proptypes/src/leven.ts", - "hash": "8912276677069105379" - }, - { - "file": "packages/fluentui/react-proptypes/test/customPropTypes-test.ts", - "hash": "17583040494138182165" - }, - { - "file": "packages/fluentui/react-proptypes/tsconfig.json", - "hash": "2135287164835617870" - } - ], - "@fluentui/react-radio": [ - { - "file": "packages/react-components/react-radio/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-radio/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-radio/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-radio/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-radio/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-radio/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-radio/CHANGELOG.json", - "hash": "3459686486196441964" - }, - { - "file": "packages/react-components/react-radio/CHANGELOG.md", - "hash": "14578999085479219777" - }, - { - "file": "packages/react-components/react-radio/LICENSE", - "hash": "9112585887229860601" - }, - { - "file": "packages/react-components/react-radio/README.md", - "hash": "7429449480780465656" - }, - { - "file": "packages/react-components/react-radio/bundle-size/Radio.fixture.js", - "hash": "6056476279648699462" - }, - { - "file": "packages/react-components/react-radio/bundle-size/RadioGroup.fixture.js", - "hash": "2347449671562100332" - }, - { - "file": "packages/react-components/react-radio/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-radio/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-radio/docs/Spec.md", - "hash": "13554510639360837723" - }, - { - "file": "packages/react-components/react-radio/etc/images/horizontal-group-stacked.png", - "hash": "13781148661598441913" - }, - { - "file": "packages/react-components/react-radio/etc/images/horizontal-group.png", - "hash": "17430229115123999828" - }, - { - "file": "packages/react-components/react-radio/etc/images/vertical-group-with-dropdown.png", - "hash": "16718633047948489140" - }, - { - "file": "packages/react-components/react-radio/etc/images/vertical-group-with-input.png", - "hash": "767002637445042851" - }, - { - "file": "packages/react-components/react-radio/etc/images/vertical-group.png", - "hash": "4914366318572506386" - }, - { - "file": "packages/react-components/react-radio/etc/react-radio.api.md", - "hash": "14339882295224824349" - }, - { - "file": "packages/react-components/react-radio/jest.config.js", - "hash": "4378835463518598771" - }, - { - "file": "packages/react-components/react-radio/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-radio/package.json", - "hash": "12751640571718797407", - "deps": [ - "@fluentui/react-field", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-label", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-radio/project.json", - "hash": "7820595109551665028" - }, - { - "file": "packages/react-components/react-radio/src/Radio.ts", - "hash": "7263746132466436601" - }, - { - "file": "packages/react-components/react-radio/src/RadioGroup.ts", - "hash": "9616148445474045919" - }, - { - "file": "packages/react-components/react-radio/src/components/Radio/Radio.test.tsx", - "hash": "6736735414979302828" - }, - { - "file": "packages/react-components/react-radio/src/components/Radio/Radio.tsx", - "hash": "3790282066800805246" - }, - { - "file": "packages/react-components/react-radio/src/components/Radio/Radio.types.ts", - "hash": "9229799828831420871" - }, - { - "file": "packages/react-components/react-radio/src/components/Radio/index.ts", - "hash": "8479995711248948636" - }, - { - "file": "packages/react-components/react-radio/src/components/Radio/renderRadio.tsx", - "hash": "12246486103260771246" - }, - { - "file": "packages/react-components/react-radio/src/components/Radio/useRadio.tsx", - "hash": "4422675660519438615" - }, - { - "file": "packages/react-components/react-radio/src/components/Radio/useRadioStyles.styles.ts", - "hash": "9322792565954029544" - }, - { - "file": "packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.test.tsx", - "hash": "1729336792797867060" - }, - { - "file": "packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.tsx", - "hash": "13051368676540290025" - }, - { - "file": "packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.types.ts", - "hash": "2456202840593717778" - }, - { - "file": "packages/react-components/react-radio/src/components/RadioGroup/index.ts", - "hash": "8969274474740272512" - }, - { - "file": "packages/react-components/react-radio/src/components/RadioGroup/renderRadioGroup.tsx", - "hash": "4848267084755134712" - }, - { - "file": "packages/react-components/react-radio/src/components/RadioGroup/useRadioGroup.ts", - "hash": "1485129830782544789" - }, - { - "file": "packages/react-components/react-radio/src/components/RadioGroup/useRadioGroupStyles.styles.ts", - "hash": "9187301613711214224" - }, - { - "file": "packages/react-components/react-radio/src/contexts/RadioGroupContext.ts", - "hash": "10239000936212442133" - }, - { - "file": "packages/react-components/react-radio/src/contexts/index.ts", - "hash": "6039445079577715801" - }, - { - "file": "packages/react-components/react-radio/src/contexts/useRadioGroupContextValues.ts", - "hash": "5680455141558794134" - }, - { - "file": "packages/react-components/react-radio/src/index.ts", - "hash": "8493262146993548233" - }, - { - "file": "packages/react-components/react-radio/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupBestPractices.md", - "hash": "11896541066091939987" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupControlledValue.stories.tsx", - "hash": "17594916395232449758" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDefault.stories.tsx", - "hash": "17660784807463505960" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDefaultValue.stories.tsx", - "hash": "17633773687365122976" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDescription.md", - "hash": "11915016562314600380" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDisabled.stories.tsx", - "hash": "17381303118996967824" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupDisabledItem.stories.tsx", - "hash": "14317893343810056642" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupHorizontal.stories.tsx", - "hash": "12753958700259064575" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupHorizontalStacked.stories.tsx", - "hash": "14132521406762046576" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupLabelSubtext.stories.tsx", - "hash": "12387472870045441934" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/RadioGroupRequired.stories.tsx", - "hash": "13962288512679376395" - }, - { - "file": "packages/react-components/react-radio/stories/RadioGroup/index.stories.tsx", - "hash": "1915432931712324752" - }, - { - "file": "packages/react-components/react-radio/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-radio/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-radio/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-theme": [ - { - "file": "packages/react-components/react-theme/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-theme/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-theme/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-theme/.storybook/preview-head.html", - "hash": "177346033808426115" - }, - { - "file": "packages/react-components/react-theme/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-theme/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-theme/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-theme/CHANGELOG.json", - "hash": "15851009324481788504" - }, - { - "file": "packages/react-components/react-theme/CHANGELOG.md", - "hash": "8148872566269969725" - }, - { - "file": "packages/react-components/react-theme/LICENSE", - "hash": "7790297149303267088" - }, - { - "file": "packages/react-components/react-theme/README.md", - "hash": "8110783886660945488" - }, - { - "file": "packages/react-components/react-theme/bundle-size/SingleThemeToken.fixture.js", - "hash": "48190699545478805" - }, - { - "file": "packages/react-components/react-theme/bundle-size/TeamsAllThemes.fixture.js", - "hash": "8896684391654619670" - }, - { - "file": "packages/react-components/react-theme/bundle-size/TeamsLightTheme.fixture.js", - "hash": "14215547226107299921" - }, - { - "file": "packages/react-components/react-theme/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-theme/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-theme/etc/react-theme.api.md", - "hash": "1026602756558119011" - }, - { - "file": "packages/react-components/react-theme/jest.config.js", - "hash": "10881208247988768850" - }, - { - "file": "packages/react-components/react-theme/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-theme/package.json", - "hash": "8050136086276026658", - "deps": [ - "@fluentui/tokens", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/react-components/react-theme/project.json", - "hash": "12372302467798064068" - }, - { - "file": "packages/react-components/react-theme/src/index.ts", - "hash": "8707625999909623354" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/borderRadii/ThemeBorderRadii.stories.tsx", - "hash": "3187948697713321066" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/borderRadii/index.stories.mdx", - "hash": "12453961250297731337" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/colors/ColorRamp.stories.tsx", - "hash": "16299384491400767513" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/colors/FilterButton.stories.tsx", - "hash": "17370458700570599868" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/colors/ThemeColors.stories.tsx", - "hash": "1404087490752180885" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/colors/index.stories.mdx", - "hash": "12236570761233077569" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/fonts/ThemeFonts.stories.tsx", - "hash": "17201499561988764854" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/fonts/index.stories.mdx", - "hash": "2798815260444835062" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/motion/ThemeMotion.stories.tsx", - "hash": "16846307853033966247" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/motion/index.stories.mdx", - "hash": "16078226543713423992" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/shadows/ThemeShadows.stories.tsx", - "hash": "6901031965285366839" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/shadows/index.stories.mdx", - "hash": "18347467915038705974" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/spacing/ThemeSpacing.stories.tsx", - "hash": "12809328850478978466" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/spacing/index.stories.mdx", - "hash": "9169587683523609544" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/strokeWidths/ThemeStrokeWidths.stories.tsx", - "hash": "1558556278663600963" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/strokeWidths/index.stories.mdx", - "hash": "10215274721582502890" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/typography/Composing.stories.tsx", - "hash": "11728628513694072539" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/typography/Example.stories.tsx", - "hash": "3336989101772861512" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/typography/MixedStyles.stories.tsx", - "hash": "10948636943541688820" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/typography/ThemeTypography.stories.tsx", - "hash": "2870834578309054765" - }, - { - "file": "packages/react-components/react-theme/stories/Theme/typography/index.stories.mdx", - "hash": "2985843863773666943" - }, - { - "file": "packages/react-components/react-theme/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-theme/tsconfig.lib.json", - "hash": "2330431448937249608" - }, - { - "file": "packages/react-components/react-theme/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-textarea": [ - { - "file": "packages/react-components/react-textarea/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-textarea/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-textarea/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-textarea/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-textarea/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-textarea/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-textarea/CHANGELOG.json", - "hash": "11520373447395147471" - }, - { - "file": "packages/react-components/react-textarea/CHANGELOG.md", - "hash": "11980578315049592601" - }, - { - "file": "packages/react-components/react-textarea/LICENSE", - "hash": "4498715062543112309" - }, - { - "file": "packages/react-components/react-textarea/README.md", - "hash": "5344125108621430649" - }, - { - "file": "packages/react-components/react-textarea/bundle-size/Textarea.fixture.js", - "hash": "17192439065238344351" - }, - { - "file": "packages/react-components/react-textarea/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-textarea/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-textarea/docs/MIGRATION.md", - "hash": "17526740844244675212" - }, - { - "file": "packages/react-components/react-textarea/docs/Spec.md", - "hash": "14303084858892571145" - }, - { - "file": "packages/react-components/react-textarea/etc/react-textarea.api.md", - "hash": "5342628119613252095" - }, - { - "file": "packages/react-components/react-textarea/jest.config.js", - "hash": "10624360471583357965" - }, - { - "file": "packages/react-components/react-textarea/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-textarea/package.json", - "hash": "4053548600420780000", - "deps": [ - "@fluentui/react-field", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-textarea/project.json", - "hash": "1644416225662266477" - }, - { - "file": "packages/react-components/react-textarea/src/Textarea.ts", - "hash": "13370679537604069238" - }, - { - "file": "packages/react-components/react-textarea/src/components/Textarea/Textarea.test.tsx", - "hash": "16757346701550754906" - }, - { - "file": "packages/react-components/react-textarea/src/components/Textarea/Textarea.tsx", - "hash": "16800492880889954221" - }, - { - "file": "packages/react-components/react-textarea/src/components/Textarea/Textarea.types.ts", - "hash": "13003143832388706091" - }, - { - "file": "packages/react-components/react-textarea/src/components/Textarea/__snapshots__/Textarea.test.tsx.snap", - "hash": "16171152998841505643" - }, - { - "file": "packages/react-components/react-textarea/src/components/Textarea/index.ts", - "hash": "10698797457300083130" - }, - { - "file": "packages/react-components/react-textarea/src/components/Textarea/renderTextarea.tsx", - "hash": "6185419952357045299" - }, - { - "file": "packages/react-components/react-textarea/src/components/Textarea/useTextarea.ts", - "hash": "11772613917085952848" - }, - { - "file": "packages/react-components/react-textarea/src/components/Textarea/useTextareaStyles.styles.ts", - "hash": "13631958646115528732" - }, - { - "file": "packages/react-components/react-textarea/src/index.ts", - "hash": "6584368484105727560" - }, - { - "file": "packages/react-components/react-textarea/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaAppearance.stories.tsx", - "hash": "3539206738445718143" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaBestPractices.md", - "hash": "18227114171815669424" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaControlled.stories.tsx", - "hash": "6872279739035536493" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaDefault.stories.tsx", - "hash": "8318281564179232897" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaDescription.md", - "hash": "13485520316389720001" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaDisabled.stories.tsx", - "hash": "983048653998254023" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaPlaceholder.stories.tsx", - "hash": "462631168486124274" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaResize.stories.tsx", - "hash": "5894749941129343810" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaSize.stories.tsx", - "hash": "13553877523019339375" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/TextareaUncontrolled.stories.tsx", - "hash": "16181491644002402100" - }, - { - "file": "packages/react-components/react-textarea/stories/Textarea/index.stories.tsx", - "hash": "4062141522867859029" - }, - { - "file": "packages/react-components/react-textarea/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-textarea/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-textarea/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/common-styles": [ - { - "file": "packages/common-styles/.npmignore", - "hash": "327479296810377636" - }, - { - "file": "packages/common-styles/CHANGELOG.json", - "hash": "273257757340656739" - }, - { - "file": "packages/common-styles/CHANGELOG.md", - "hash": "3103668277148981926" - }, - { - "file": "packages/common-styles/LICENSE", - "hash": "4436358303113749104" - }, - { - "file": "packages/common-styles/README.md", - "hash": "4674155591335065321" - }, - { - "file": "packages/common-styles/config/pre-copy.json", - "hash": "13536315415449720583" - }, - { - "file": "packages/common-styles/just.config.ts", - "hash": "1976825945203391633" - }, - { - "file": "packages/common-styles/package.json", - "hash": "17165989050030419928", - "deps": ["npm:office-ui-fabric-core", "@fluentui/style-utilities", "@fluentui/scripts-tasks"] - }, - { - "file": "packages/common-styles/project.json", - "hash": "9937167994900158632" - }, - { - "file": "packages/common-styles/scripts/generateDefaultThemeSassFiles.js", - "hash": "4930205392535843957" - }, - { - "file": "packages/common-styles/src/ThemingSass.scss", - "hash": "6636654454988071435" - }, - { - "file": "packages/common-styles/src/_common.scss", - "hash": "6954687516387477622" - }, - { - "file": "packages/common-styles/src/_constants.scss", - "hash": "1069234499133074227" - }, - { - "file": "packages/common-styles/src/_effects.scss", - "hash": "8102725403571912427" - }, - { - "file": "packages/common-styles/src/_focusBorder.scss", - "hash": "10537019636132615427" - }, - { - "file": "packages/common-styles/src/_highContrast.scss", - "hash": "17939297006735694085" - }, - { - "file": "packages/common-styles/src/_i18n.scss", - "hash": "13301901823299427213" - }, - { - "file": "packages/common-styles/src/_legacyThemePalette.scss", - "hash": "6382729561059486833" - }, - { - "file": "packages/common-styles/src/_semanticSlots.scss", - "hash": "15520402900566886591" - }, - { - "file": "packages/common-styles/src/_themeCssVariables.scss", - "hash": "13486063986535911847" - }, - { - "file": "packages/common-styles/src/_themeOverrides.scss", - "hash": "6442887095598285123" - }, - { - "file": "packages/common-styles/src/_themeVariables.scss", - "hash": "8347442751634693629" - } - ], - "@fluentui/web-components": [ - { - "file": "packages/web-components/.eslintignore", - "hash": "5775863605913830991" - }, - { - "file": "packages/web-components/.eslintrc.js", - "hash": "14755478749016622181" - }, - { - "file": "packages/web-components/.mocharc.json", - "hash": "15702441908913539244" - }, - { - "file": "packages/web-components/.npmignore", - "hash": "4758005407379917060" - }, - { - "file": "packages/web-components/.storybook/main.js", - "hash": "6854078585881544184" - }, - { - "file": "packages/web-components/.storybook/manager-head.html", - "hash": "1303988664724770496" - }, - { - "file": "packages/web-components/.storybook/manager.js", - "hash": "9922702844286404452" - }, - { - "file": "packages/web-components/.storybook/preview-body.html", - "hash": "8850778173875476467" - }, - { - "file": "packages/web-components/.storybook/preview-head.html", - "hash": "13062935119136599012" - }, - { - "file": "packages/web-components/.storybook/preview.js", - "hash": "12365267785927470531" - }, - { - "file": "packages/web-components/.storybook/theme.js", - "hash": "18352466443106182508" - }, - { - "file": "packages/web-components/CHANGELOG.json", - "hash": "8058481764020614289" - }, - { - "file": "packages/web-components/CHANGELOG.md", - "hash": "6384940985575291649" - }, - { - "file": "packages/web-components/README.md", - "hash": "4957194106169855827" - }, - { - "file": "packages/web-components/api-extractor.json", - "hash": "9874037910410511459" - }, - { - "file": "packages/web-components/build/clean.js", - "hash": "11994715428858511375" - }, - { - "file": "packages/web-components/build/transform-fragments.js", - "hash": "1955758831314508427" - }, - { - "file": "packages/web-components/docs/api-report.md", - "hash": "844890942029344443" - }, - { - "file": "packages/web-components/karma.conf.js", - "hash": "14430480556588129331" - }, - { - "file": "packages/web-components/package.json", - "hash": "15722874774916562492", - "deps": [ - "npm:@microsoft/fast-colors", - "npm:@microsoft/fast-element", - "npm:@microsoft/fast-foundation", - "npm:@microsoft/fast-web-utilities", - "npm:tslib", - "npm:@types/chai", - "npm:@types/chai-spies", - "npm:@types/karma", - "npm:@types/mocha", - "npm:chai", - "npm:chai-spies", - "npm:esm", - "npm:ignore-loader", - "npm:istanbul", - "npm:istanbul-instrumenter-loader", - "npm:jsdom-global", - "npm:karma", - "npm:karma-chrome-launcher", - "npm:karma-coverage", - "npm:karma-coverage-istanbul-reporter", - "npm:karma-firefox-launcher", - "npm:karma-mocha", - "npm:karma-mocha-reporter", - "npm:karma-source-map-support", - "npm:karma-sourcemap-loader", - "npm:karma-webpack", - "npm:mocha" - ] - }, - { - "file": "packages/web-components/project.json", - "hash": "7492841716046999594" - }, - { - "file": "packages/web-components/public/SegoeUI-VF.ttf", - "hash": "159686266127969426" - }, - { - "file": "packages/web-components/public/favicon.ico", - "hash": "16917280242094002623" - }, - { - "file": "packages/web-components/public/favicon.png", - "hash": "16917280242094002623" - }, - { - "file": "packages/web-components/public/switches.ts", - "hash": "14622635503477959780" - }, - { - "file": "packages/web-components/rollup.config.js", - "hash": "7231520777044994700" - }, - { - "file": "packages/web-components/src/__test__/setup-browser.ts", - "hash": "6393925655190445281" - }, - { - "file": "packages/web-components/src/__test__/setup-node.ts", - "hash": "10490210284254745630" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/app.ts", - "hash": "16525852101308145550" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/colors.ts", - "hash": "11069410898767285125" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/component-types.ts", - "hash": "2864670655219117529" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-block.ts", - "hash": "1726259444168974953" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/README.md", - "hash": "573207147273672762" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.form-associated.ts", - "hash": "4081018318203536876" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.styles.ts", - "hash": "14217737468289347354" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.template.ts", - "hash": "6460489283275707263" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.ts", - "hash": "1188287099420052879" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/index.ts", - "hash": "4796903837287128591" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.styles.ts", - "hash": "13389882208060587252" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.template.ts", - "hash": "7850318752774051418" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.ts", - "hash": "752439651934052007" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/index.ts", - "hash": "11120522045483047713" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.styles.ts", - "hash": "3501318262647633045" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.template.ts", - "hash": "6158298528985374425" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.ts", - "hash": "7588390216618702944" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/gradient/index.ts", - "hash": "2196251964914651675" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/layer-background/index.ts", - "hash": "18236296328006163975" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/index.ts", - "hash": "16377584099774881830" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.styles.ts", - "hash": "12061728961981948522" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.template.ts", - "hash": "4788615482582359415" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.ts", - "hash": "16153773168746232984" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/index.ts", - "hash": "6340537480537054989" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.styles.ts", - "hash": "9130564643805750499" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.template.ts", - "hash": "12771066886177107872" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.ts", - "hash": "9635151930465854500" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/components/swatch.ts", - "hash": "2374441040995379727" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/custom-elements.ts", - "hash": "16005845429757574099" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer/index.ts", - "hash": "4139861018587252333" - }, - { - "file": "packages/web-components/src/_docs/design-system/color-explorer.stories.mdx", - "hash": "6027445366609787259" - }, - { - "file": "packages/web-components/src/_docs/design-system/design-tokens.stories.mdx", - "hash": "4311551588301406129" - }, - { - "file": "packages/web-components/src/_docs/design-system/high-contrast.stories.mdx", - "hash": "1191903792423292585" - }, - { - "file": "packages/web-components/src/_docs/getting-started/customization.stories.mdx", - "hash": "6142489713038292709" - }, - { - "file": "packages/web-components/src/_docs/getting-started/installation.stories.mdx", - "hash": "11992526890383732411" - }, - { - "file": "packages/web-components/src/_docs/getting-started/overview.stories.mdx", - "hash": "15478620496390793328" - }, - { - "file": "packages/web-components/src/_docs/integrations/angular.stories.mdx", - "hash": "6548470739007879103" - }, - { - "file": "packages/web-components/src/_docs/integrations/asp-net.stories.mdx", - "hash": "1204259937998840622" - }, - { - "file": "packages/web-components/src/_docs/integrations/aurelia.stories.mdx", - "hash": "16909805295122252141" - }, - { - "file": "packages/web-components/src/_docs/integrations/blazor.stories.mdx", - "hash": "3869770627389256989" - }, - { - "file": "packages/web-components/src/_docs/integrations/ember.stories.mdx", - "hash": "4203072166496955732" - }, - { - "file": "packages/web-components/src/_docs/integrations/introduction.stories.mdx", - "hash": "12602937042859133081" - }, - { - "file": "packages/web-components/src/_docs/integrations/react.stories.mdx", - "hash": "13708967245288712513" - }, - { - "file": "packages/web-components/src/_docs/integrations/vue.stories.mdx", - "hash": "6426963800392484861" - }, - { - "file": "packages/web-components/src/_docs/integrations/webpack.stories.mdx", - "hash": "13317554170485302751" - }, - { - "file": "packages/web-components/src/_docs/resources/browsersupport.stories.mdx", - "hash": "6524546059336092673" - }, - { - "file": "packages/web-components/src/_docs/resources/faq.stories.mdx", - "hash": "1456453727682391063" - }, - { - "file": "packages/web-components/src/_docs/resources/license.stories.mdx", - "hash": "17683392767993753638" - }, - { - "file": "packages/web-components/src/_docs/resources/security.stories.mdx", - "hash": "3322758800487682588" - }, - { - "file": "packages/web-components/src/accordion/accordion-item/accordion-item.styles.ts", - "hash": "14627617678842515919" - }, - { - "file": "packages/web-components/src/accordion/accordion-item/accordion-item.vscode.definition.json", - "hash": "10920057210901896913" - }, - { - "file": "packages/web-components/src/accordion/accordion-item/index.ts", - "hash": "4286703823452132924" - }, - { - "file": "packages/web-components/src/accordion/accordion.stories.ts", - "hash": "2382937437500019241" - }, - { - "file": "packages/web-components/src/accordion/accordion.styles.ts", - "hash": "2616249570117394811" - }, - { - "file": "packages/web-components/src/accordion/accordion.vscode.definition.json", - "hash": "3672417981681016275" - }, - { - "file": "packages/web-components/src/accordion/fixtures/base.html", - "hash": "3024182331118481628" - }, - { - "file": "packages/web-components/src/accordion/index.ts", - "hash": "15914740497616545827" - }, - { - "file": "packages/web-components/src/anchor/anchor.stories.ts", - "hash": "9035706192012038979" - }, - { - "file": "packages/web-components/src/anchor/anchor.styles.ts", - "hash": "15465582227507334647" - }, - { - "file": "packages/web-components/src/anchor/anchor.vscode.definition.json", - "hash": "8651034818913508540" - }, - { - "file": "packages/web-components/src/anchor/fixtures/anchor.html", - "hash": "1883443565225204972" - }, - { - "file": "packages/web-components/src/anchor/index.ts", - "hash": "9458058924011538243" - }, - { - "file": "packages/web-components/src/anchored-region/anchored-region.stories.ts", - "hash": "6610076333735702586" - }, - { - "file": "packages/web-components/src/anchored-region/anchored-region.styles.ts", - "hash": "2080261711970935100" - }, - { - "file": "packages/web-components/src/anchored-region/anchored-region.vscode.definition.json", - "hash": "7027541124759585311" - }, - { - "file": "packages/web-components/src/anchored-region/fixtures/anchored-region.html", - "hash": "13833082773725244734" - }, - { - "file": "packages/web-components/src/anchored-region/fixtures/base.html", - "hash": "10206902182629300261" - }, - { - "file": "packages/web-components/src/anchored-region/index.ts", - "hash": "14805381512806178877" - }, - { - "file": "packages/web-components/src/badge/badge.stories.ts", - "hash": "7829870913424487971" - }, - { - "file": "packages/web-components/src/badge/badge.styles.ts", - "hash": "12835744543244711667" - }, - { - "file": "packages/web-components/src/badge/badge.vscode.definition.json", - "hash": "9410590778436486830" - }, - { - "file": "packages/web-components/src/badge/fixtures/badge.html", - "hash": "16582051032870590828" - }, - { - "file": "packages/web-components/src/badge/index.ts", - "hash": "6337176198244249127" - }, - { - "file": "packages/web-components/src/breadcrumb/breadcrumb.stories.ts", - "hash": "5576414352984007107" - }, - { - "file": "packages/web-components/src/breadcrumb/breadcrumb.styles.ts", - "hash": "9025531678944737635" - }, - { - "file": "packages/web-components/src/breadcrumb/breadcrumb.vscode.definition.json", - "hash": "15362924125727856865" - }, - { - "file": "packages/web-components/src/breadcrumb/fixtures/breadcrumb.html", - "hash": "17580794197360813354" - }, - { - "file": "packages/web-components/src/breadcrumb/index.ts", - "hash": "12107279212669363072" - }, - { - "file": "packages/web-components/src/breadcrumb-item/breadcrumb-item.stories.ts", - "hash": "13923942058307616526" - }, - { - "file": "packages/web-components/src/breadcrumb-item/breadcrumb-item.styles.ts", - "hash": "5697066427813550138" - }, - { - "file": "packages/web-components/src/breadcrumb-item/breadcrumb-item.vscode.definition.json", - "hash": "14973238164249621524" - }, - { - "file": "packages/web-components/src/breadcrumb-item/fixtures/breadcrumb-item.html", - "hash": "2256941841461897698" - }, - { - "file": "packages/web-components/src/breadcrumb-item/index.ts", - "hash": "10170598475715757416" - }, - { - "file": "packages/web-components/src/button/button.stories.ts", - "hash": "15149950852222389704" - }, - { - "file": "packages/web-components/src/button/button.styles.ts", - "hash": "5581033725893685730" - }, - { - "file": "packages/web-components/src/button/button.vscode.definition.json", - "hash": "10606722258837298009" - }, - { - "file": "packages/web-components/src/button/fixtures/button.html", - "hash": "16048526820639725636" - }, - { - "file": "packages/web-components/src/button/index.ts", - "hash": "10025134503936741972" - }, - { - "file": "packages/web-components/src/calendar/calendar.stories.ts", - "hash": "5415731527118018368" - }, - { - "file": "packages/web-components/src/calendar/calendar.styles.ts", - "hash": "16178939379219751620" - }, - { - "file": "packages/web-components/src/calendar/calendar.vscode.definition.json", - "hash": "16600596959429761196" - }, - { - "file": "packages/web-components/src/calendar/index.ts", - "hash": "15025313120163570844" - }, - { - "file": "packages/web-components/src/card/README.md", - "hash": "11211708820769945594" - }, - { - "file": "packages/web-components/src/card/card.stories.ts", - "hash": "12665353260196568301" - }, - { - "file": "packages/web-components/src/card/card.styles.ts", - "hash": "6642788192196104020" - }, - { - "file": "packages/web-components/src/card/card.vscode.definition.json", - "hash": "17543345289019782769" - }, - { - "file": "packages/web-components/src/card/fixtures/card.html", - "hash": "6380789712877866529" - }, - { - "file": "packages/web-components/src/card/index.ts", - "hash": "5042732203638931431" - }, - { - "file": "packages/web-components/src/checkbox/checkbox.stories.ts", - "hash": "13426973479653470345" - }, - { - "file": "packages/web-components/src/checkbox/checkbox.styles.ts", - "hash": "17928013517930224953" - }, - { - "file": "packages/web-components/src/checkbox/checkbox.vscode.definition.json", - "hash": "16978196820818757251" - }, - { - "file": "packages/web-components/src/checkbox/fixtures/checkbox.html", - "hash": "6155825574223549734" - }, - { - "file": "packages/web-components/src/checkbox/index.ts", - "hash": "17137250591561709651" - }, - { - "file": "packages/web-components/src/color/README.md", - "hash": "4936538017083268507" - }, - { - "file": "packages/web-components/src/color/palette.ts", - "hash": "6346372797428139526" - }, - { - "file": "packages/web-components/src/color/recipe.ts", - "hash": "17848275818537597627" - }, - { - "file": "packages/web-components/src/color/recipes/contrast-and-delta-swatch-set.ts", - "hash": "8821478327577403201" - }, - { - "file": "packages/web-components/src/color/recipes/contrast-swatch.spec.ts", - "hash": "6763034643025562411" - }, - { - "file": "packages/web-components/src/color/recipes/contrast-swatch.ts", - "hash": "7186179222835665608" - }, - { - "file": "packages/web-components/src/color/recipes/delta-swatch-set.ts", - "hash": "7250566564026757202" - }, - { - "file": "packages/web-components/src/color/recipes/delta-swatch.ts", - "hash": "5230101181632974034" - }, - { - "file": "packages/web-components/src/color/recipes/focus-stroke.ts", - "hash": "11313432750226566291" - }, - { - "file": "packages/web-components/src/color/recipes/foreground-on-accent.spec.ts", - "hash": "8984772606233286102" - }, - { - "file": "packages/web-components/src/color/recipes/foreground-on-accent.ts", - "hash": "7868139582681267883" - }, - { - "file": "packages/web-components/src/color/recipes/gradient-shadow-stroke.ts", - "hash": "1080599906647216754" - }, - { - "file": "packages/web-components/src/color/recipes/gradient-swatch.ts", - "hash": "16930925285077040022" - }, - { - "file": "packages/web-components/src/color/recipes/neutral-layer-1.ts", - "hash": "16539227990178814071" - }, - { - "file": "packages/web-components/src/color/recipes/neutral-layer-2.ts", - "hash": "2950854254364558014" - }, - { - "file": "packages/web-components/src/color/recipes/neutral-layer-3.ts", - "hash": "1932920790538911795" - }, - { - "file": "packages/web-components/src/color/recipes/neutral-layer-4.ts", - "hash": "13763578604655049880" - }, - { - "file": "packages/web-components/src/color/recipes/neutral-layer-floating.ts", - "hash": "10634764317331887319" - }, - { - "file": "packages/web-components/src/color/recipes/neutral-layer.spec.ts", - "hash": "17728122078622142462" - }, - { - "file": "packages/web-components/src/color/recipes/underline-stroke.ts", - "hash": "2940626098590149659" - }, - { - "file": "packages/web-components/src/color/swatch.ts", - "hash": "1182115399952126154" - }, - { - "file": "packages/web-components/src/color/utilities/base-layer-luminance.ts", - "hash": "908846549069598899" - }, - { - "file": "packages/web-components/src/color/utilities/binary-search.ts", - "hash": "15965810484399746558" - }, - { - "file": "packages/web-components/src/color/utilities/color-constants.ts", - "hash": "911283116326368460" - }, - { - "file": "packages/web-components/src/color/utilities/direction-by-is-dark.ts", - "hash": "18271209538472530614" - }, - { - "file": "packages/web-components/src/color/utilities/is-dark.ts", - "hash": "6499864583431099903" - }, - { - "file": "packages/web-components/src/color/utilities/relative-luminance.ts", - "hash": "14920099726333320744" - }, - { - "file": "packages/web-components/src/combobox/combobox.stories.ts", - "hash": "17737189549554104347" - }, - { - "file": "packages/web-components/src/combobox/combobox.styles.ts", - "hash": "3612590046027629706" - }, - { - "file": "packages/web-components/src/combobox/combobox.vscode.definition.json", - "hash": "9215948502134970537" - }, - { - "file": "packages/web-components/src/combobox/fixtures/base.html", - "hash": "6377341256028355854" - }, - { - "file": "packages/web-components/src/combobox/index.ts", - "hash": "3868760329188361549" - }, - { - "file": "packages/web-components/src/component-definitions.js", - "hash": "11596938288017647617" - }, - { - "file": "packages/web-components/src/custom-elements.ts", - "hash": "6853381506349662742" - }, - { - "file": "packages/web-components/src/data-grid/data-grid-cell.styles.ts", - "hash": "6470686871497764974" - }, - { - "file": "packages/web-components/src/data-grid/data-grid-cell.vscode.definition.json", - "hash": "9813169389670938623" - }, - { - "file": "packages/web-components/src/data-grid/data-grid-row.styles.ts", - "hash": "11995342787697800927" - }, - { - "file": "packages/web-components/src/data-grid/data-grid-row.vscode.definition.json", - "hash": "11698027083491170633" - }, - { - "file": "packages/web-components/src/data-grid/data-grid.stories.ts", - "hash": "195082341198715577" - }, - { - "file": "packages/web-components/src/data-grid/data-grid.styles.ts", - "hash": "13015545836734548464" - }, - { - "file": "packages/web-components/src/data-grid/data-grid.vscode.definition.json", - "hash": "306394395578200698" - }, - { - "file": "packages/web-components/src/data-grid/fixtures/base.html", - "hash": "2029975176933840135" - }, - { - "file": "packages/web-components/src/data-grid/index.ts", - "hash": "4479416102272360583" - }, - { - "file": "packages/web-components/src/design-system-provider/design-system-provider.vscode.definition.json", - "hash": "6893455381211055281" - }, - { - "file": "packages/web-components/src/design-system-provider/index.ts", - "hash": "3408274569365595348" - }, - { - "file": "packages/web-components/src/design-tokens.ts", - "hash": "1346759514197492713" - }, - { - "file": "packages/web-components/src/dialog/dialog.stories.ts", - "hash": "2154549264856264739" - }, - { - "file": "packages/web-components/src/dialog/dialog.styles.ts", - "hash": "5515912159065122827" - }, - { - "file": "packages/web-components/src/dialog/dialog.vscode.definition.json", - "hash": "16390661561666024442" - }, - { - "file": "packages/web-components/src/dialog/fixtures/dialog-button-test.html", - "hash": "11659848668155489028" - }, - { - "file": "packages/web-components/src/dialog/fixtures/dialog.html", - "hash": "9387354624656226834" - }, - { - "file": "packages/web-components/src/dialog/index.ts", - "hash": "13366407519684789611" - }, - { - "file": "packages/web-components/src/divider/divider.stories.ts", - "hash": "17515431205036180141" - }, - { - "file": "packages/web-components/src/divider/divider.styles.ts", - "hash": "6522522780375068846" - }, - { - "file": "packages/web-components/src/divider/divider.vscode.definition.json", - "hash": "6566644835494387709" - }, - { - "file": "packages/web-components/src/divider/fixtures/divider.html", - "hash": "16919230271383725260" - }, - { - "file": "packages/web-components/src/divider/index.ts", - "hash": "8744051297202798600" - }, - { - "file": "packages/web-components/src/flipper/fixtures/flipper.html", - "hash": "18037503031749648176" - }, - { - "file": "packages/web-components/src/flipper/flipper.stories.ts", - "hash": "2029950660051487243" - }, - { - "file": "packages/web-components/src/flipper/flipper.styles.ts", - "hash": "4668183589375500408" - }, - { - "file": "packages/web-components/src/flipper/flipper.vscode.definition.json", - "hash": "12395863857403691147" - }, - { - "file": "packages/web-components/src/flipper/index.ts", - "hash": "6961115814822049464" - }, - { - "file": "packages/web-components/src/fluent-design-system.ts", - "hash": "5328357756403196513" - }, - { - "file": "packages/web-components/src/horizontal-scroll/fixtures/horizontal-scroll.html", - "hash": "7407142165672045966" - }, - { - "file": "packages/web-components/src/horizontal-scroll/horizontal-scroll.stories.ts", - "hash": "4659753969493120079" - }, - { - "file": "packages/web-components/src/horizontal-scroll/horizontal-scroll.styles.ts", - "hash": "17117201230261875828" - }, - { - "file": "packages/web-components/src/horizontal-scroll/horizontal-scroll.vscode.definition.json", - "hash": "15741080570528073250" - }, - { - "file": "packages/web-components/src/horizontal-scroll/index.ts", - "hash": "3921419103069630757" - }, - { - "file": "packages/web-components/src/index-rollup.ts", - "hash": "12034689146002278856" - }, - { - "file": "packages/web-components/src/index.ts", - "hash": "11220157624258882526" - }, - { - "file": "packages/web-components/src/listbox/fixtures/base.html", - "hash": "17450593149878454417" - }, - { - "file": "packages/web-components/src/listbox/index.ts", - "hash": "16849842894902376949" - }, - { - "file": "packages/web-components/src/listbox/listbox.stories.ts", - "hash": "13218899992076915796" - }, - { - "file": "packages/web-components/src/listbox/listbox.styles.ts", - "hash": "13134007790432984126" - }, - { - "file": "packages/web-components/src/listbox/listbox.vscode.definition.json", - "hash": "2285504249297576385" - }, - { - "file": "packages/web-components/src/listbox-option/fixtures/base.html", - "hash": "3298043976123174324" - }, - { - "file": "packages/web-components/src/listbox-option/index.ts", - "hash": "16884845165196211430" - }, - { - "file": "packages/web-components/src/listbox-option/listbox-option.stories.ts", - "hash": "3911485353912942204" - }, - { - "file": "packages/web-components/src/listbox-option/listbox-option.styles.ts", - "hash": "5472503796825828800" - }, - { - "file": "packages/web-components/src/listbox-option/listbox-option.vscode.definition.json", - "hash": "12169738874365537443" - }, - { - "file": "packages/web-components/src/menu/README.md", - "hash": "4690086985797850547" - }, - { - "file": "packages/web-components/src/menu/fixtures/menu.html", - "hash": "5223795368357672574" - }, - { - "file": "packages/web-components/src/menu/index.ts", - "hash": "12984518409457391743" - }, - { - "file": "packages/web-components/src/menu/menu.stories.ts", - "hash": "1915731898569110702" - }, - { - "file": "packages/web-components/src/menu/menu.styles.ts", - "hash": "18032407382470608123" - }, - { - "file": "packages/web-components/src/menu/menu.vscode.definition.json", - "hash": "18361015692746540616" - }, - { - "file": "packages/web-components/src/menu-item/README.md", - "hash": "2471380614271240054" - }, - { - "file": "packages/web-components/src/menu-item/fixtures/menu-item.html", - "hash": "5477478551196226019" - }, - { - "file": "packages/web-components/src/menu-item/index.ts", - "hash": "13279240957752518825" - }, - { - "file": "packages/web-components/src/menu-item/menu-item.stories.ts", - "hash": "15838076638865005660" - }, - { - "file": "packages/web-components/src/menu-item/menu-item.styles.ts", - "hash": "2974801370502077276" - }, - { - "file": "packages/web-components/src/menu-item/menu-item.vscode.definition.json", - "hash": "4234336076730373087" - }, - { - "file": "packages/web-components/src/number-field/fixtures/number-field.html", - "hash": "12708685999913269967" - }, - { - "file": "packages/web-components/src/number-field/index.ts", - "hash": "17115789385951625638" - }, - { - "file": "packages/web-components/src/number-field/number-field.stories.ts", - "hash": "10394814183714311962" - }, - { - "file": "packages/web-components/src/number-field/number-field.styles.ts", - "hash": "14623549441627572541" - }, - { - "file": "packages/web-components/src/number-field/number-field.vscode.definition.json", - "hash": "17028415243423832455" - }, - { - "file": "packages/web-components/src/progress/index.ts", - "hash": "9496752774618153345" - }, - { - "file": "packages/web-components/src/progress/progress/fixtures/linear.html", - "hash": "14829341784378032052" - }, - { - "file": "packages/web-components/src/progress/progress/index.ts", - "hash": "8564604076877239707" - }, - { - "file": "packages/web-components/src/progress/progress/progress.stories.ts", - "hash": "10058603555464601723" - }, - { - "file": "packages/web-components/src/progress/progress/progress.styles.ts", - "hash": "7330116120779358919" - }, - { - "file": "packages/web-components/src/progress/progress/progress.vscode.definition.json", - "hash": "643769287652126004" - }, - { - "file": "packages/web-components/src/progress/progress-ring/fixtures/circular.html", - "hash": "996605311265918770" - }, - { - "file": "packages/web-components/src/progress/progress-ring/index.ts", - "hash": "3669697685676353985" - }, - { - "file": "packages/web-components/src/progress/progress-ring/progress-ring.stories.ts", - "hash": "5925755196880654290" - }, - { - "file": "packages/web-components/src/progress/progress-ring/progress-ring.styles.ts", - "hash": "13716354703004415471" - }, - { - "file": "packages/web-components/src/progress/progress-ring/progress-ring.vscode.definition.json", - "hash": "1596825291672570393" - }, - { - "file": "packages/web-components/src/radio/fixtures/radio.html", - "hash": "3697080352666891110" - }, - { - "file": "packages/web-components/src/radio/index.ts", - "hash": "9493466062086373076" - }, - { - "file": "packages/web-components/src/radio/radio.stories.ts", - "hash": "16960884279123718841" - }, - { - "file": "packages/web-components/src/radio/radio.styles.ts", - "hash": "15891108481971467349" - }, - { - "file": "packages/web-components/src/radio/radio.vscode.definition.json", - "hash": "15322865574627303302" - }, - { - "file": "packages/web-components/src/radio-group/fixtures/radio-group.html", - "hash": "3544612516605771549" - }, - { - "file": "packages/web-components/src/radio-group/index.ts", - "hash": "10678490228381938292" - }, - { - "file": "packages/web-components/src/radio-group/radio-group.stories.ts", - "hash": "13806414560882825653" - }, - { - "file": "packages/web-components/src/radio-group/radio-group.styles.ts", - "hash": "8385177110378110077" - }, - { - "file": "packages/web-components/src/radio-group/radio-group.vscode.definition.json", - "hash": "9271414887629310175" - }, - { - "file": "packages/web-components/src/search/fixtures/search.html", - "hash": "6265150396064403674" - }, - { - "file": "packages/web-components/src/search/index.ts", - "hash": "8294135650557793902" - }, - { - "file": "packages/web-components/src/search/search.stories.ts", - "hash": "216592019599942783" - }, - { - "file": "packages/web-components/src/search/search.styles.ts", - "hash": "13868212863949268972" - }, - { - "file": "packages/web-components/src/search/search.template.ts", - "hash": "4266947506982034813" - }, - { - "file": "packages/web-components/src/search/search.vscode.definition.json", - "hash": "3563472923699786280" - }, - { - "file": "packages/web-components/src/select/fixtures/base.html", - "hash": "11891972925697834096" - }, - { - "file": "packages/web-components/src/select/index.ts", - "hash": "15687565201409112674" - }, - { - "file": "packages/web-components/src/select/select.stories.ts", - "hash": "5863175660897259663" - }, - { - "file": "packages/web-components/src/select/select.styles.ts", - "hash": "3712406194482296781" - }, - { - "file": "packages/web-components/src/select/select.vscode.definition.json", - "hash": "1271918521554254770" - }, - { - "file": "packages/web-components/src/skeleton/fixtures/base.html", - "hash": "3861851238801918486" - }, - { - "file": "packages/web-components/src/skeleton/index.ts", - "hash": "14218825009776077853" - }, - { - "file": "packages/web-components/src/skeleton/skeleton.stories.ts", - "hash": "16344059134848271871" - }, - { - "file": "packages/web-components/src/skeleton/skeleton.styles.ts", - "hash": "11569102660410314421" - }, - { - "file": "packages/web-components/src/skeleton/skeleton.vscode.definition.json", - "hash": "13776399384905340449" - }, - { - "file": "packages/web-components/src/slider/fixtures/slider.html", - "hash": "3716629413656055620" - }, - { - "file": "packages/web-components/src/slider/index.ts", - "hash": "5357812953333546672" - }, - { - "file": "packages/web-components/src/slider/slider.stories.ts", - "hash": "13123047633146822298" - }, - { - "file": "packages/web-components/src/slider/slider.styles.ts", - "hash": "1892611936955814405" - }, - { - "file": "packages/web-components/src/slider/slider.vscode.definition.json", - "hash": "483900830475074249" - }, - { - "file": "packages/web-components/src/slider-label/fixtures/slider-label.html", - "hash": "5161368272209451404" - }, - { - "file": "packages/web-components/src/slider-label/index.ts", - "hash": "4092561486820287710" - }, - { - "file": "packages/web-components/src/slider-label/slider-label.stories.ts", - "hash": "7954258599589121077" - }, - { - "file": "packages/web-components/src/slider-label/slider-label.styles.ts", - "hash": "15491455773337860108" - }, - { - "file": "packages/web-components/src/slider-label/slider-label.vscode.definition.json", - "hash": "12483410102321937264" - }, - { - "file": "packages/web-components/src/storybook-typings.d.ts", - "hash": "3211079156530734795" - }, - { - "file": "packages/web-components/src/styles/direction.ts", - "hash": "12153415263316843969" - }, - { - "file": "packages/web-components/src/styles/elevation.ts", - "hash": "18412120983521623359" - }, - { - "file": "packages/web-components/src/styles/focus.ts", - "hash": "17539677533372493279" - }, - { - "file": "packages/web-components/src/styles/index.ts", - "hash": "6230421608586153211" - }, - { - "file": "packages/web-components/src/styles/patterns/button.styles.ts", - "hash": "5706917304841520211" - }, - { - "file": "packages/web-components/src/styles/patterns/index.ts", - "hash": "4458343837008236369" - }, - { - "file": "packages/web-components/src/styles/patterns/input.styles.ts", - "hash": "181101141302214379" - }, - { - "file": "packages/web-components/src/styles/patterns/type-ramp.ts", - "hash": "17065074643329213778" - }, - { - "file": "packages/web-components/src/styles/size.ts", - "hash": "15940819158744117174" - }, - { - "file": "packages/web-components/src/switch/fixtures/switch.html", - "hash": "10602632632551276568" - }, - { - "file": "packages/web-components/src/switch/index.ts", - "hash": "5179464485079991269" - }, - { - "file": "packages/web-components/src/switch/switch.stories.ts", - "hash": "3466964228880452094" - }, - { - "file": "packages/web-components/src/switch/switch.styles.ts", - "hash": "5702651356821793779" - }, - { - "file": "packages/web-components/src/switch/switch.vscode.definition.json", - "hash": "5174398227224275632" - }, - { - "file": "packages/web-components/src/tabs/fixtures/tabs.html", - "hash": "10764808029296259753" - }, - { - "file": "packages/web-components/src/tabs/index.ts", - "hash": "6864070573253276769" - }, - { - "file": "packages/web-components/src/tabs/tab/index.ts", - "hash": "7968168443944979516" - }, - { - "file": "packages/web-components/src/tabs/tab/tab.styles.ts", - "hash": "10696814832104289036" - }, - { - "file": "packages/web-components/src/tabs/tab/tab.vscode.definition.json", - "hash": "7548102164156459410" - }, - { - "file": "packages/web-components/src/tabs/tab-panel/index.ts", - "hash": "4232187005100764135" - }, - { - "file": "packages/web-components/src/tabs/tab-panel/tab-panel.styles.ts", - "hash": "15248109099456817024" - }, - { - "file": "packages/web-components/src/tabs/tab-panel/tab-panel.vscode.definition.json", - "hash": "5488351415097828677" - }, - { - "file": "packages/web-components/src/tabs/tabs.stories.ts", - "hash": "2082227165927264768" - }, - { - "file": "packages/web-components/src/tabs/tabs.styles.ts", - "hash": "600355650265281296" - }, - { - "file": "packages/web-components/src/tabs/tabs.vscode.definition.json", - "hash": "9227590925350873549" - }, - { - "file": "packages/web-components/src/text-area/fixtures/text-area.html", - "hash": "17685073421574527347" - }, - { - "file": "packages/web-components/src/text-area/index.ts", - "hash": "12878684250332954269" - }, - { - "file": "packages/web-components/src/text-area/text-area.stories.ts", - "hash": "11877407321391546524" - }, - { - "file": "packages/web-components/src/text-area/text-area.styles.ts", - "hash": "15065223636243919006" - }, - { - "file": "packages/web-components/src/text-area/text-area.vscode.definition.json", - "hash": "7076320621770108386" - }, - { - "file": "packages/web-components/src/text-field/fixtures/text-field.html", - "hash": "15248188101787500482" - }, - { - "file": "packages/web-components/src/text-field/index.ts", - "hash": "1431468122200118439" - }, - { - "file": "packages/web-components/src/text-field/text-field.stories.ts", - "hash": "7013818112713918649" - }, - { - "file": "packages/web-components/src/text-field/text-field.styles.ts", - "hash": "12256332793993937125" - }, - { - "file": "packages/web-components/src/text-field/text-field.vscode.definition.json", - "hash": "15993315262587875629" - }, - { - "file": "packages/web-components/src/toolbar/fixtures/toolbar.html", - "hash": "17064050504128491248" - }, - { - "file": "packages/web-components/src/toolbar/index.ts", - "hash": "12453222644810232136" - }, - { - "file": "packages/web-components/src/toolbar/toolbar.stories.ts", - "hash": "1697799914310593179" - }, - { - "file": "packages/web-components/src/toolbar/toolbar.styles.ts", - "hash": "4289308017211955597" - }, - { - "file": "packages/web-components/src/toolbar/toolbar.vscode.definition.json", - "hash": "16347874792378119250" - }, - { - "file": "packages/web-components/src/tooltip/fixtures/tooltip.html", - "hash": "12389500920015921635" - }, - { - "file": "packages/web-components/src/tooltip/index.ts", - "hash": "743200588034782954" - }, - { - "file": "packages/web-components/src/tooltip/tooltip.stories.ts", - "hash": "10665079383825093491" - }, - { - "file": "packages/web-components/src/tooltip/tooltip.styles.ts", - "hash": "11453551560318568053" - }, - { - "file": "packages/web-components/src/tooltip/tooltip.vscode.definition.json", - "hash": "255164464472711194" - }, - { - "file": "packages/web-components/src/tree-item/fixtures/tree-item.html", - "hash": "6727518786838440297" - }, - { - "file": "packages/web-components/src/tree-item/index.ts", - "hash": "16017492355039150238" - }, - { - "file": "packages/web-components/src/tree-item/tree-item.stories.ts", - "hash": "9783937195087600816" - }, - { - "file": "packages/web-components/src/tree-item/tree-item.styles.ts", - "hash": "2044030214397984029" - }, - { - "file": "packages/web-components/src/tree-item/tree-item.vscode.definition.json", - "hash": "16684450343776413349" - }, - { - "file": "packages/web-components/src/tree-view/fixtures/tree-view.html", - "hash": "3740603599119795018" - }, - { - "file": "packages/web-components/src/tree-view/index.ts", - "hash": "8827730462378185588" - }, - { - "file": "packages/web-components/src/tree-view/tree-view.stories.ts", - "hash": "7887196535139156937" - }, - { - "file": "packages/web-components/src/tree-view/tree-view.styles.ts", - "hash": "462034363628475408" - }, - { - "file": "packages/web-components/src/tree-view/tree-view.vscode.definition.json", - "hash": "10110096905446449680" - }, - { - "file": "packages/web-components/src/utilities/behaviors.ts", - "hash": "16191844928733345933" - }, - { - "file": "packages/web-components/src/utilities/type-ramp.ts", - "hash": "4704993640298765791" - }, - { - "file": "packages/web-components/storybook-typings.d.ts", - "hash": "3211079156530734795" - }, - { - "file": "packages/web-components/tsconfig.json", - "hash": "6412759596685248991" - } - ], - "@fluentui/scripts-projects-test": [ - { - "file": "scripts/projects-test/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/projects-test/jest.config.js", - "hash": "14803115449739597477" - }, - { - "file": "scripts/projects-test/package.json", - "hash": "2440450978402607536", - "deps": ["@fluentui/scripts-utils", "@fluentui/scripts-puppeteer", "@fluentui/scripts-monorepo"] - }, - { - "file": "scripts/projects-test/project.json", - "hash": "7187626296521124201" - }, - { - "file": "scripts/projects-test/src/createReactApp.ts", - "hash": "12302227798055165115" - }, - { - "file": "scripts/projects-test/src/index.ts", - "hash": "14506511509153432346" - }, - { - "file": "scripts/projects-test/src/packPackages.ts", - "hash": "11290851018015733867" - }, - { - "file": "scripts/projects-test/src/performBrowserTest.ts", - "hash": "13012556253100885968" - }, - { - "file": "scripts/projects-test/src/utils.ts", - "hash": "3861302237109431008" - }, - { - "file": "scripts/projects-test/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/projects-test/tsconfig.lib.json", - "hash": "15222053984038389170" - }, - { - "file": "scripts/projects-test/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/ts-minbar-test-react-components": [ - { - "file": "apps/ts-minbar-test-react-components/CHANGELOG.json", - "hash": "656745615605467027" - }, - { - "file": "apps/ts-minbar-test-react-components/CHANGELOG.md", - "hash": "7646044303546398326" - }, - { - "file": "apps/ts-minbar-test-react-components/README.md", - "hash": "16461979801860699917" - }, - { - "file": "apps/ts-minbar-test-react-components/files/src/index.tsx", - "hash": "18098612965669564749" - }, - { - "file": "apps/ts-minbar-test-react-components/files/tsconfig.json", - "hash": "11617511591496749178" - }, - { - "file": "apps/ts-minbar-test-react-components/just.config.ts", - "hash": "7156839958691239049" - }, - { - "file": "apps/ts-minbar-test-react-components/package.json", - "hash": "13593808421142598329", - "deps": ["@fluentui/react-components", "@fluentui/scripts-tasks", "@fluentui/scripts-projects-test"] - }, - { - "file": "apps/ts-minbar-test-react-components/project.json", - "hash": "1464494342633365324" - }, - { - "file": "apps/ts-minbar-test-react-components/src/index.ts", - "hash": "13329464376822014146" - }, - { - "file": "apps/ts-minbar-test-react-components/tsconfig.json", - "hash": "10809149894665832803" - } - ], - "@fluentui/react-motions-preview": [ - { - "file": "packages/react-components/react-motions-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-motions-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-motions-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-motions-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-motions-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-motions-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-motions-preview/LICENSE", - "hash": "7138711571438781774" - }, - { - "file": "packages/react-components/react-motions-preview/README.md", - "hash": "17498722335979354024" - }, - { - "file": "packages/react-components/react-motions-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-motions-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-motions-preview/etc/react-motions-preview.api.md", - "hash": "12743696528407065677" - }, - { - "file": "packages/react-components/react-motions-preview/jest.config.js", - "hash": "15864305436409793865" - }, - { - "file": "packages/react-components/react-motions-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-motions-preview/package.json", - "hash": "3696756658694654553", - "deps": [ - "@fluentui/react-shared-contexts", - "@fluentui/react-utilities", - "npm:@swc/helpers", - "npm:react-is", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-motions-preview/project.json", - "hash": "12296590422921745095" - }, - { - "file": "packages/react-components/react-motions-preview/src/factories/createAtom.test.tsx", - "hash": "1047206177802055811" - }, - { - "file": "packages/react-components/react-motions-preview/src/factories/createAtom.ts", - "hash": "17739657523056274812" - }, - { - "file": "packages/react-components/react-motions-preview/src/factories/createPresence.test.tsx", - "hash": "2448045071357828784" - }, - { - "file": "packages/react-components/react-motions-preview/src/factories/createPresence.ts", - "hash": "11236981719297968322" - }, - { - "file": "packages/react-components/react-motions-preview/src/hooks/useIsReducedMotion.test.tsx", - "hash": "8887201488767817033" - }, - { - "file": "packages/react-components/react-motions-preview/src/hooks/useIsReducedMotion.ts", - "hash": "4106377544759115907" - }, - { - "file": "packages/react-components/react-motions-preview/src/hooks/useMotionImperativeRef.test.tsx", - "hash": "7993664620419479161" - }, - { - "file": "packages/react-components/react-motions-preview/src/hooks/useMotionImperativeRef.ts", - "hash": "1632631879080868129" - }, - { - "file": "packages/react-components/react-motions-preview/src/index.ts", - "hash": "8131632330745602255" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/atom/fade.ts", - "hash": "7486748159940927914" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/atom/index.ts", - "hash": "16753120998278687480" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/atom/scale.ts", - "hash": "16979265713479036920" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/atom/slide.ts", - "hash": "5741435285593211782" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/atom/tokens.ts", - "hash": "15231772390421822079" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/presence/fade.ts", - "hash": "10807810800143017859" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/presence/index.ts", - "hash": "16753120998278687480" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/presence/scale.ts", - "hash": "7134190811033882315" - }, - { - "file": "packages/react-components/react-motions-preview/src/motions/presence/slide.ts", - "hash": "8481780441080782244" - }, - { - "file": "packages/react-components/react-motions-preview/src/types.ts", - "hash": "16229776850125672679" - }, - { - "file": "packages/react-components/react-motions-preview/src/utils/getChildElement.test.tsx", - "hash": "8841238823050513452" - }, - { - "file": "packages/react-components/react-motions-preview/src/utils/getChildElement.ts", - "hash": "12546952061692389581" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/CreateAtom.stories.md", - "hash": "5893255975788056106" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/CreateAtom.stories.tsx", - "hash": "5782165169486360963" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/CreatePresence.stories.md", - "hash": "12142141077619929634" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/CreatePresence.stories.tsx", - "hash": "11545114550073710457" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/CustomAtom.stories.md", - "hash": "8191854486238302831" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/CustomAtom.stories.tsx", - "hash": "4462772013305188622" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/ImperativeRefPlayState.stories.md", - "hash": "5961784044077758105" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/ImperativeRefPlayState.stories.tsx", - "hash": "11804399789389445656" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/MotionDefault.stories.tsx", - "hash": "12159791219112165896" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/MotionDescription.md", - "hash": "6774937818624891077" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/MotionLibrary.stories.md", - "hash": "4799461372227860502" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/MotionLibrary.stories.tsx", - "hash": "18001169511280264377" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/PresenceAppear.stories.md", - "hash": "16813191778445729025" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/PresenceAppear.stories.tsx", - "hash": "10249922983205892831" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/PresenceUnmountOnExit.stories.md", - "hash": "4980239457863910445" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/PresenceUnmountOnExit.stories.tsx", - "hash": "16450904187679412076" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/TokensUsage.stories.md", - "hash": "13013623227649516115" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/TokensUsage.stories.tsx", - "hash": "7189530296843671807" - }, - { - "file": "packages/react-components/react-motions-preview/stories/Motion/index.stories.ts", - "hash": "11605213295335544089" - }, - { - "file": "packages/react-components/react-motions-preview/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-motions-preview/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-motions-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-northstar-styles-renderer": [ - { - "file": "packages/fluentui/react-northstar-styles-renderer/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/package.json", - "hash": "13310199486065829792", - "deps": [ - "npm:@babel/runtime", - "@fluentui/styles", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "npm:lerna-alias", - "npm:react" - ] - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/project.json", - "hash": "8332394439489930408" - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/src/index.ts", - "hash": "17458262484157446193" - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/src/noopRenderer.ts", - "hash": "10378848867356110502" - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/src/types.ts", - "hash": "5323224652889144013" - }, - { - "file": "packages/fluentui/react-northstar-styles-renderer/tsconfig.json", - "hash": "2122159932199081123" - } - ], - "@fluentui/ssr-tests-v9": [ - { - "file": "apps/ssr-tests-v9/.eslintrc.json", - "hash": "17415001537957764759" - }, - { - "file": "apps/ssr-tests-v9/.npmignore", - "hash": "6985117138208138805" - }, - { - "file": "apps/ssr-tests-v9/.storybook/main.js", - "hash": "1212305810175821020" - }, - { - "file": "apps/ssr-tests-v9/.storybook/preview.js", - "hash": "3771044947140527406" - }, - { - "file": "apps/ssr-tests-v9/.storybook/tsconfig.json", - "hash": "14109446059604296292" - }, - { - "file": "apps/ssr-tests-v9/CHANGELOG.json", - "hash": "10565813083365182125" - }, - { - "file": "apps/ssr-tests-v9/CHANGELOG.md", - "hash": "7027171009374181352" - }, - { - "file": "apps/ssr-tests-v9/README.md", - "hash": "14065455051967402252" - }, - { - "file": "apps/ssr-tests-v9/config/tests.js", - "hash": "11168571691074990614" - }, - { - "file": "apps/ssr-tests-v9/jest.config.js", - "hash": "9458445199894798693" - }, - { - "file": "apps/ssr-tests-v9/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "apps/ssr-tests-v9/package.json", - "hash": "8923427910776151549", - "deps": [ - "@fluentui/react-components", - "@fluentui/react-utilities", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-storybook" - ] - }, - { - "file": "apps/ssr-tests-v9/project.json", - "hash": "15064735109472825928" - }, - { - "file": "apps/ssr-tests-v9/src/stories/Menu/DefaultOpen.stories.tsx", - "hash": "9756001618427095260" - }, - { - "file": "apps/ssr-tests-v9/src/stories/Menu/index.stories.tsx", - "hash": "9459470396080333721" - }, - { - "file": "apps/ssr-tests-v9/src/stories/Tooltip/DefaultOpen.stories.tsx", - "hash": "14503999588850100551" - }, - { - "file": "apps/ssr-tests-v9/src/stories/Tooltip/index.stories.tsx", - "hash": "2359036706156696468" - }, - { - "file": "apps/ssr-tests-v9/src/stories/Utilitites/index.stories.tsx", - "hash": "11459814591521163889" - }, - { - "file": "apps/ssr-tests-v9/src/stories/Utilitites/useAnimationFrame.stories.tsx", - "hash": "4136409707688092330" - }, - { - "file": "apps/ssr-tests-v9/tsconfig.json", - "hash": "4637104942856286995" - }, - { - "file": "apps/ssr-tests-v9/tsconfig.lib.json", - "hash": "9469665441243672593" - }, - { - "file": "apps/ssr-tests-v9/tsconfig.spec.json", - "hash": "13287603543641469083" - }, - { - "file": "apps/ssr-tests-v9/tsconfig.stories.json", - "hash": "3244421341483603138" - } - ], - "@fluentui/react-message-bar": [ - { - "file": "packages/react-components/react-message-bar/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-message-bar/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-message-bar/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-message-bar/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-message-bar/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-message-bar/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-message-bar/CHANGELOG.json", - "hash": "12868552992585073378" - }, - { - "file": "packages/react-components/react-message-bar/CHANGELOG.md", - "hash": "3351778526796692282" - }, - { - "file": "packages/react-components/react-message-bar/LICENSE", - "hash": "16327043439041055681" - }, - { - "file": "packages/react-components/react-message-bar/README.md", - "hash": "15953389640457019950" - }, - { - "file": "packages/react-components/react-message-bar/bundle-size/Default.fixture.js", - "hash": "13627711057272473768" - }, - { - "file": "packages/react-components/react-message-bar/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-message-bar/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-message-bar/docs/Spec.md", - "hash": "13237932483207544458" - }, - { - "file": "packages/react-components/react-message-bar/etc/react-message-bar.api.md", - "hash": "2630926883949754792" - }, - { - "file": "packages/react-components/react-message-bar/jest.config.js", - "hash": "16413207529227807353" - }, - { - "file": "packages/react-components/react-message-bar/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-message-bar/package.json", - "hash": "124120508206091990", - "deps": [ - "@fluentui/react-button", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "npm:react-transition-group", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-message-bar/project.json", - "hash": "7248934092611567757" - }, - { - "file": "packages/react-components/react-message-bar/src/MessageBar.ts", - "hash": "11069752646730668502" - }, - { - "file": "packages/react-components/react-message-bar/src/MessageBarActions.ts", - "hash": "6350244474931654916" - }, - { - "file": "packages/react-components/react-message-bar/src/MessageBarBody.ts", - "hash": "15258723960017893150" - }, - { - "file": "packages/react-components/react-message-bar/src/MessageBarGroup.ts", - "hash": "13446753258376394884" - }, - { - "file": "packages/react-components/react-message-bar/src/MessageBarTitle.ts", - "hash": "12103042897925369057" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.test.tsx", - "hash": "9506020889676043856" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.tsx", - "hash": "11248815863695310059" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.types.ts", - "hash": "10265815128886080638" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/__snapshots__/MessageBar.test.tsx.snap", - "hash": "7502280520215239903" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/getIntentIcon.tsx", - "hash": "4277324912438122135" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/index.ts", - "hash": "9803266154576642022" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/renderMessageBar.tsx", - "hash": "7217534775651955585" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/useMessageBar.ts", - "hash": "3795650310140008286" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarContextValues.ts", - "hash": "6205540263050481251" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarReflow.ts", - "hash": "3614108844810135926" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarStyles.styles.ts", - "hash": "10150166265258600139" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.test.tsx", - "hash": "6343373343822998356" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.tsx", - "hash": "2692361793179622035" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.types.ts", - "hash": "5031837590524241274" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/__snapshots__/MessageBarActions.test.tsx.snap", - "hash": "5374791425502198609" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/index.ts", - "hash": "6652705818627569799" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/renderMessageBarActions.tsx", - "hash": "17591955117442494635" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActions.ts", - "hash": "811010621446034593" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActionsContextValues.ts", - "hash": "5538020371246007312" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActionsStyles.styles.ts", - "hash": "5228797381152039444" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.test.tsx", - "hash": "4203182302311597189" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.tsx", - "hash": "10959738536866784870" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.types.ts", - "hash": "13189627554707243979" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/__snapshots__/MessageBarBody.test.tsx.snap", - "hash": "3169659039358924689" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/index.ts", - "hash": "6409436879092391979" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/renderMessageBarBody.tsx", - "hash": "7153916570245760883" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/useMessageBarBody.ts", - "hash": "16009894493284767820" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarBody/useMessageBarBodyStyles.styles.ts", - "hash": "786785408048331858" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.test.tsx", - "hash": "10746505726784798319" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.tsx", - "hash": "11942212723426358383" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.types.ts", - "hash": "17580485053530706223" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarTransition.tsx", - "hash": "1897606092423574196" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/__snapshots__/MessageBarGroup.test.tsx.snap", - "hash": "11797626360229827566" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/index.ts", - "hash": "141029932104411197" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/renderMessageBarGroup.tsx", - "hash": "9292110846219555557" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/useMessageBarGroup.ts", - "hash": "13080914534948221759" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarGroup/useMessageBarGroupStyles.styles.ts", - "hash": "4114910048574266033" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.test.tsx", - "hash": "13107564461531935709" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.tsx", - "hash": "15080023250269401769" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.types.ts", - "hash": "16764194630667813256" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/__snapshots__/MessageBarTitle.test.tsx.snap", - "hash": "17734021380652132090" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/index.ts", - "hash": "15767480419136494943" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/renderMessageBarTitle.tsx", - "hash": "17586122560297000640" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/useMessageBarTitle.ts", - "hash": "13066611263584781770" - }, - { - "file": "packages/react-components/react-message-bar/src/components/MessageBarTitle/useMessageBarTitleStyles.styles.ts", - "hash": "13091896643774309043" - }, - { - "file": "packages/react-components/react-message-bar/src/contexts/messageBarContext.ts", - "hash": "435413260933637702" - }, - { - "file": "packages/react-components/react-message-bar/src/contexts/messageBarTransitionContext.ts", - "hash": "6522240939806347526" - }, - { - "file": "packages/react-components/react-message-bar/src/index.ts", - "hash": "8389702385165675435" - }, - { - "file": "packages/react-components/react-message-bar/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/Actions.stories.tsx", - "hash": "2287271431760496557" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/Animation.stories.tsx", - "hash": "881524708691207187" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/Default.stories.tsx", - "hash": "4575863936191746397" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/Dismiss.stories.tsx", - "hash": "16912282858601457050" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/Intent.stories.tsx", - "hash": "14771748215068096830" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/ManualLayout.stories.tsx", - "hash": "17909419254727221572" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/MessageBarBestPractices.md", - "hash": "689727808186723124" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/MessageBarDescription.md", - "hash": "2054562495258492479" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/Reflow.stories.tsx", - "hash": "2381235900578476619" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/Shape.stories.tsx", - "hash": "11863170233070670412" - }, - { - "file": "packages/react-components/react-message-bar/stories/MessageBar/index.stories.tsx", - "hash": "7570405686550661948" - }, - { - "file": "packages/react-components/react-message-bar/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-message-bar/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-message-bar/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/test-utilities": [ - { - "file": "packages/test-utilities/.eslintrc.json", - "hash": "9627670268003919245" - }, - { - "file": "packages/test-utilities/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/test-utilities/CHANGELOG.json", - "hash": "6925444267223690531" - }, - { - "file": "packages/test-utilities/CHANGELOG.md", - "hash": "245017999491184014" - }, - { - "file": "packages/test-utilities/LICENSE", - "hash": "17713567152459448383" - }, - { - "file": "packages/test-utilities/README.md", - "hash": "11222179757855280088" - }, - { - "file": "packages/test-utilities/jest.config.js", - "hash": "8457350006614220129" - }, - { - "file": "packages/test-utilities/just.config.ts", - "hash": "2411455081002746933" - }, - { - "file": "packages/test-utilities/package.json", - "hash": "15251649362734981725", - "deps": [ - "@fluentui/eslint-plugin", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:enzyme", - "npm:react", - "npm:react-test-renderer" - ] - }, - { - "file": "packages/test-utilities/project.json", - "hash": "6621699011379255295" - }, - { - "file": "packages/test-utilities/src/createTestContainer.ts", - "hash": "11747895423438256529" - }, - { - "file": "packages/test-utilities/src/getCSSRules.test.ts", - "hash": "11036085907418427536" - }, - { - "file": "packages/test-utilities/src/getCSSRules.ts", - "hash": "2768262409733817568" - }, - { - "file": "packages/test-utilities/src/index.ts", - "hash": "6090673740632506280" - }, - { - "file": "packages/test-utilities/src/reactTestRenderer.ts", - "hash": "7045247159912462473" - }, - { - "file": "packages/test-utilities/src/safeCreate.ts", - "hash": "9642739023254695591" - }, - { - "file": "packages/test-utilities/src/safeMount.ts", - "hash": "6689811110183811221" - }, - { - "file": "packages/test-utilities/tsconfig.json", - "hash": "13522081573676588409" - } - ], - "@fluentui/example-data": [ - { - "file": "packages/example-data/.eslintrc.json", - "hash": "3229880202825641002" - }, - { - "file": "packages/example-data/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/example-data/CHANGELOG.json", - "hash": "9048642913278741833" - }, - { - "file": "packages/example-data/CHANGELOG.md", - "hash": "12235872426400347757" - }, - { - "file": "packages/example-data/LICENSE", - "hash": "12367838612108125011" - }, - { - "file": "packages/example-data/README.md", - "hash": "7119854316177950935" - }, - { - "file": "packages/example-data/config/api-extractor.json", - "hash": "10981721980506993079" - }, - { - "file": "packages/example-data/etc/example-data.api.md", - "hash": "4672979637124934763" - }, - { - "file": "packages/example-data/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/example-data/package.json", - "hash": "17742021473028152345", - "deps": [ - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "packages/example-data/project.json", - "hash": "17680685214412804652" - }, - { - "file": "packages/example-data/src/facepile.ts", - "hash": "2655635451145751592" - }, - { - "file": "packages/example-data/src/index.ts", - "hash": "476073902722847914" - }, - { - "file": "packages/example-data/src/listItems.ts", - "hash": "4874104725793960628" - }, - { - "file": "packages/example-data/src/lorem.ts", - "hash": "8053126041927246028" - }, - { - "file": "packages/example-data/src/people.ts", - "hash": "6416917373887433733" - }, - { - "file": "packages/example-data/src/range.ts", - "hash": "3302006145478468298" - }, - { - "file": "packages/example-data/src/testImages.ts", - "hash": "4417580955949983984" - }, - { - "file": "packages/example-data/tsconfig.json", - "hash": "10705276064557648381" - }, - { - "file": "packages/example-data/webpack.config.js", - "hash": "1655035376737530180" - } - ], - "@fluentui/react-monaco-editor": [ - { - "file": "packages/react-monaco-editor/.eslintrc.json", - "hash": "7340591681907052528" - }, - { - "file": "packages/react-monaco-editor/.npmignore", - "hash": "7699079327417375383" - }, - { - "file": "packages/react-monaco-editor/CHANGELOG.json", - "hash": "4052769043464886293" - }, - { - "file": "packages/react-monaco-editor/CHANGELOG.md", - "hash": "4378676521123102836" - }, - { - "file": "packages/react-monaco-editor/LICENSE", - "hash": "15857057829823514426" - }, - { - "file": "packages/react-monaco-editor/README.md", - "hash": "215778933993031194" - }, - { - "file": "packages/react-monaco-editor/config/pre-copy.json", - "hash": "10496597701824624187" - }, - { - "file": "packages/react-monaco-editor/index.html", - "hash": "1791716988592375380" - }, - { - "file": "packages/react-monaco-editor/jest.config.js", - "hash": "5168375124118756559" - }, - { - "file": "packages/react-monaco-editor/just.config.ts", - "hash": "404017912661233600" - }, - { - "file": "packages/react-monaco-editor/package.json", - "hash": "10660752150120145130", - "deps": [ - "@fluentui/react", - "npm:@microsoft/load-themed-styles", - "@fluentui/example-data", - "@fluentui/monaco-editor", - "@fluentui/react-hooks", - "@fluentui/react-charting", - "npm:raw-loader", - "npm:react-syntax-highlighter", - "npm:tslib", - "@fluentui/eslint-plugin", - "npm:@types/react-syntax-highlighter", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-monaco-editor/project.json", - "hash": "1052909350799747146" - }, - { - "file": "packages/react-monaco-editor/scripts/addMonacoWebpackConfig.js", - "hash": "5333027717716750886" - }, - { - "file": "packages/react-monaco-editor/scripts/copyTypes.ts", - "hash": "15470147487360395774" - }, - { - "file": "packages/react-monaco-editor/src/Editor.ts", - "hash": "6017495469224351667" - }, - { - "file": "packages/react-monaco-editor/src/EditorWrapper.ts", - "hash": "10125870415289685067" - }, - { - "file": "packages/react-monaco-editor/src/TsxEditor.ts", - "hash": "10751227075439005751" - }, - { - "file": "packages/react-monaco-editor/src/components/Editor.tsx", - "hash": "13590339725241717557" - }, - { - "file": "packages/react-monaco-editor/src/components/Editor.types.ts", - "hash": "931518761748666165" - }, - { - "file": "packages/react-monaco-editor/src/components/EditorError.tsx", - "hash": "6978711720466275879" - }, - { - "file": "packages/react-monaco-editor/src/components/EditorErrorHandler.tsx", - "hash": "7094031796655130638" - }, - { - "file": "packages/react-monaco-editor/src/components/EditorLoading.tsx", - "hash": "17756141341694568257" - }, - { - "file": "packages/react-monaco-editor/src/components/EditorWrapper.tsx", - "hash": "14675879456062578953" - }, - { - "file": "packages/react-monaco-editor/src/components/EditorWrapper.types.ts", - "hash": "10918850883274788009" - }, - { - "file": "packages/react-monaco-editor/src/components/TsxEditor.tsx", - "hash": "16895967541425618893" - }, - { - "file": "packages/react-monaco-editor/src/components/TsxEditor.types.ts", - "hash": "6382517796676619793" - }, - { - "file": "packages/react-monaco-editor/src/components/TypeScriptSnippet.tsx", - "hash": "9289521752302825874" - }, - { - "file": "packages/react-monaco-editor/src/components/consts.ts", - "hash": "17899882920572319776" - }, - { - "file": "packages/react-monaco-editor/src/components/index.ts", - "hash": "17378269472056454119" - }, - { - "file": "packages/react-monaco-editor/src/demo/App.tsx", - "hash": "3398055607368439105" - }, - { - "file": "packages/react-monaco-editor/src/demo/index.tsx", - "hash": "6366974914566276988" - }, - { - "file": "packages/react-monaco-editor/src/imports.test.ts", - "hash": "16558841996641162330" - }, - { - "file": "packages/react-monaco-editor/src/index.ts", - "hash": "2660105875934296833" - }, - { - "file": "packages/react-monaco-editor/src/interfaces/index.ts", - "hash": "10563128095872578362" - }, - { - "file": "packages/react-monaco-editor/src/interfaces/monaco.ts", - "hash": "5365919266167576279" - }, - { - "file": "packages/react-monaco-editor/src/interfaces/packageGroup.ts", - "hash": "15072110747073265711" - }, - { - "file": "packages/react-monaco-editor/src/interfaces/transformedCode.ts", - "hash": "9629925872874446454" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/__snapshots__/exampleTransform.test.ts.snap", - "hash": "10292795761254527001" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/exampleParser.test.ts", - "hash": "9891990965669883703" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/exampleParser.ts", - "hash": "8211624242523849272" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/exampleTransform.test.ts", - "hash": "1522140756961621850" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/exampleTransform.ts", - "hash": "14477424259989592192" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/examples/class.txt", - "hash": "12975026045123300332" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/examples/classTranspiled.txt", - "hash": "16439102531686810302" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/examples/customPackages.txt", - "hash": "7179133814494836586" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/examples/customPackagesFluent.txt", - "hash": "10058548755387005189" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/examples/function.txt", - "hash": "9563192592967671900" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/examples/functionTranspiled.txt", - "hash": "6749082270165661166" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/examples/relativeImport.txt", - "hash": "6088749950053757682" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/index.ts", - "hash": "18278831555090185964" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/transpile.ts", - "hash": "16889766031692255838" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/transpileHelpers.test.ts", - "hash": "4371018842887360839" - }, - { - "file": "packages/react-monaco-editor/src/transpiler/transpileHelpers.ts", - "hash": "2760415028804555715" - }, - { - "file": "packages/react-monaco-editor/src/utilities/defaultSupportedPackages.ts", - "hash": "667082477780337268" - }, - { - "file": "packages/react-monaco-editor/src/utilities/getQueryParam.test.ts", - "hash": "17807893369167537417" - }, - { - "file": "packages/react-monaco-editor/src/utilities/getQueryParam.ts", - "hash": "5415427488872325615" - }, - { - "file": "packages/react-monaco-editor/src/utilities/index.ts", - "hash": "5755389207234709934" - }, - { - "file": "packages/react-monaco-editor/src/utilities/isEditorSupported.ts", - "hash": "14471034323467341722" - }, - { - "file": "packages/react-monaco-editor/src/utilities/settings.ts", - "hash": "4543245557747589830" - }, - { - "file": "packages/react-monaco-editor/tsconfig.json", - "hash": "18188014709090939787" - }, - { - "file": "packages/react-monaco-editor/webpack.serve.config.js", - "hash": "14712024823986301981" - } - ], - "@fluentui/react-alert": [ - { - "file": "packages/react-components/react-alert/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-alert/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-alert/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-alert/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-alert/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-alert/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-alert/CHANGELOG.json", - "hash": "83764038971076835" - }, - { - "file": "packages/react-components/react-alert/CHANGELOG.md", - "hash": "5175289707873145207" - }, - { - "file": "packages/react-components/react-alert/LICENSE", - "hash": "16252253352334995182" - }, - { - "file": "packages/react-components/react-alert/README.md", - "hash": "8131351181258092235" - }, - { - "file": "packages/react-components/react-alert/bundle-size/Alert.fixture.js", - "hash": "6960359331564279967" - }, - { - "file": "packages/react-components/react-alert/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-alert/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-alert/docs/Migration.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-alert/docs/Spec.md", - "hash": "3535638354464497682" - }, - { - "file": "packages/react-components/react-alert/etc/react-alert.api.md", - "hash": "11555109672566503552" - }, - { - "file": "packages/react-components/react-alert/jest.config.js", - "hash": "6773733652008972475" - }, - { - "file": "packages/react-components/react-alert/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-alert/package.json", - "hash": "9312706055205409696", - "deps": [ - "@fluentui/react-avatar", - "@fluentui/react-button", - "npm:@fluentui/react-icons", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-alert/project.json", - "hash": "17708818428810623099" - }, - { - "file": "packages/react-components/react-alert/src/Alert.ts", - "hash": "478807590469964963" - }, - { - "file": "packages/react-components/react-alert/src/components/Alert/Alert.test.tsx", - "hash": "17628692932786280219" - }, - { - "file": "packages/react-components/react-alert/src/components/Alert/Alert.tsx", - "hash": "8611980662277149012" - }, - { - "file": "packages/react-components/react-alert/src/components/Alert/Alert.types.ts", - "hash": "8366251069357697620" - }, - { - "file": "packages/react-components/react-alert/src/components/Alert/index.ts", - "hash": "11930097802137833911" - }, - { - "file": "packages/react-components/react-alert/src/components/Alert/renderAlert.tsx", - "hash": "264769270216256867" - }, - { - "file": "packages/react-components/react-alert/src/components/Alert/useAlert.tsx", - "hash": "14231640179437609527" - }, - { - "file": "packages/react-components/react-alert/src/components/Alert/useAlertStyles.styles.ts", - "hash": "4259845399899254015" - }, - { - "file": "packages/react-components/react-alert/src/index.ts", - "hash": "6190406855358997804" - }, - { - "file": "packages/react-components/react-alert/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-alert/stories/Alert/AlertAction.stories.tsx", - "hash": "8515455195432805008" - }, - { - "file": "packages/react-components/react-alert/stories/Alert/AlertAppearance.stories.tsx", - "hash": "4232635026830561594" - }, - { - "file": "packages/react-components/react-alert/stories/Alert/AlertAvatar.stories.tsx", - "hash": "11364985778976863191" - }, - { - "file": "packages/react-components/react-alert/stories/Alert/AlertDefault.stories.tsx", - "hash": "10864479039782208759" - }, - { - "file": "packages/react-components/react-alert/stories/Alert/AlertDescription.md", - "hash": "3742228099756735432" - }, - { - "file": "packages/react-components/react-alert/stories/Alert/AlertIcon.stories.tsx", - "hash": "10179515381949480946" - }, - { - "file": "packages/react-components/react-alert/stories/Alert/AlertIntent.stories.tsx", - "hash": "8283473983697123165" - }, - { - "file": "packages/react-components/react-alert/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-alert/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-alert/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-card": [ - { - "file": "packages/react-components/react-card/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-card/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-card/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-card/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-card/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-card/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-card/CHANGELOG.json", - "hash": "16120836240991081328" - }, - { - "file": "packages/react-components/react-card/CHANGELOG.md", - "hash": "982678929693669752" - }, - { - "file": "packages/react-components/react-card/LICENSE", - "hash": "2188560866401644945" - }, - { - "file": "packages/react-components/react-card/README.md", - "hash": "11877879705104426476" - }, - { - "file": "packages/react-components/react-card/bundle-size/Card.All.fixture.js", - "hash": "9678671079204535147" - }, - { - "file": "packages/react-components/react-card/bundle-size/Card.fixture.js", - "hash": "17044429561188065558" - }, - { - "file": "packages/react-components/react-card/bundle-size/CardFooter.fixture.js", - "hash": "15097452954087720794" - }, - { - "file": "packages/react-components/react-card/bundle-size/CardHeader.fixture.js", - "hash": "9372357943462304670" - }, - { - "file": "packages/react-components/react-card/bundle-size/CardPreview.fixture.js", - "hash": "2766458474759225677" - }, - { - "file": "packages/react-components/react-card/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-card/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-card/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-card/docs/Spec.md", - "hash": "133649701608289193" - }, - { - "file": "packages/react-components/react-card/docs/assets/Card.png", - "hash": "8621537168628927824" - }, - { - "file": "packages/react-components/react-card/docs/assets/CardHeader.png", - "hash": "14490283695070957660" - }, - { - "file": "packages/react-components/react-card/docs/assets/CardPreview.png", - "hash": "1838343721682392559" - }, - { - "file": "packages/react-components/react-card/docs/assets/ai_deck_template.png", - "hash": "7288944920457398910" - }, - { - "file": "packages/react-components/react-card/docs/assets/avatar_mauricio.svg", - "hash": "798618793155809767" - }, - { - "file": "packages/react-components/react-card/docs/assets/card-example.png", - "hash": "16213957152649995111" - }, - { - "file": "packages/react-components/react-card/docs/assets/context-interaction-keyboard.png", - "hash": "16120849394699770653" - }, - { - "file": "packages/react-components/react-card/docs/assets/context-interaction-mouse.png", - "hash": "17968123321031789650" - }, - { - "file": "packages/react-components/react-card/docs/assets/context-narrator.png", - "hash": "12645539401046132098" - }, - { - "file": "packages/react-components/react-card/docs/assets/disabled-narrator.png", - "hash": "2566029565229306184" - }, - { - "file": "packages/react-components/react-card/docs/assets/disabled.png", - "hash": "826913629030223189" - }, - { - "file": "packages/react-components/react-card/docs/assets/intelligence.png", - "hash": "8986692323019308027" - }, - { - "file": "packages/react-components/react-card/docs/assets/interactive-example.png", - "hash": "16139223062879931574" - }, - { - "file": "packages/react-components/react-card/docs/assets/interactive-interaction-keyboard.png", - "hash": "15639838958589057587" - }, - { - "file": "packages/react-components/react-card/docs/assets/interactive-interaction-mouse.png", - "hash": "13603809071411899987" - }, - { - "file": "packages/react-components/react-card/docs/assets/interactive-narrator.png", - "hash": "8045885383518893015" - }, - { - "file": "packages/react-components/react-card/docs/assets/non-interactive-interaction-keyboard.png", - "hash": "7324405548581008515" - }, - { - "file": "packages/react-components/react-card/docs/assets/non-interactive-interaction-mouse.png", - "hash": "14389441996799242835" - }, - { - "file": "packages/react-components/react-card/docs/assets/non-interactive-narrator.png", - "hash": "18012095954511675112" - }, - { - "file": "packages/react-components/react-card/docs/assets/non-interactive-selectable-interaction-keyboard.png", - "hash": "12221987790543441657" - }, - { - "file": "packages/react-components/react-card/docs/assets/non-interactive-selectable-interaction-mouse.png", - "hash": "8943180528124548767" - }, - { - "file": "packages/react-components/react-card/docs/assets/selectable-interaction-keyboard.png", - "hash": "3413035361011770976" - }, - { - "file": "packages/react-components/react-card/docs/assets/selectable-interaction-mouse.png", - "hash": "13723554415792087034" - }, - { - "file": "packages/react-components/react-card/docs/assets/selectable-narrator.png", - "hash": "17363651610905279991" - }, - { - "file": "packages/react-components/react-card/etc/react-card.api.md", - "hash": "10685004744171166720" - }, - { - "file": "packages/react-components/react-card/jest.config.js", - "hash": "1186570427670545163" - }, - { - "file": "packages/react-components/react-card/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-card/package.json", - "hash": "1922847737090488424", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance-griffel", - "@fluentui/react-conformance", - "@fluentui/react-button", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-card/project.json", - "hash": "3792275988646366268" - }, - { - "file": "packages/react-components/react-card/src/Card.ts", - "hash": "18296053792853651864" - }, - { - "file": "packages/react-components/react-card/src/CardFooter.ts", - "hash": "7561174730803302695" - }, - { - "file": "packages/react-components/react-card/src/CardHeader.ts", - "hash": "11488685953149160992" - }, - { - "file": "packages/react-components/react-card/src/CardPreview.ts", - "hash": "13744048761580656089" - }, - { - "file": "packages/react-components/react-card/src/components/Card/Card.cy.tsx", - "hash": "2105453024913473649" - }, - { - "file": "packages/react-components/react-card/src/components/Card/Card.test.tsx", - "hash": "553476840907813350" - }, - { - "file": "packages/react-components/react-card/src/components/Card/Card.tsx", - "hash": "7076191578603293422" - }, - { - "file": "packages/react-components/react-card/src/components/Card/Card.types.ts", - "hash": "9093785096818348353" - }, - { - "file": "packages/react-components/react-card/src/components/Card/CardContext.ts", - "hash": "5313906443440265390" - }, - { - "file": "packages/react-components/react-card/src/components/Card/__snapshots__/Card.test.tsx.snap", - "hash": "10908852138267868471" - }, - { - "file": "packages/react-components/react-card/src/components/Card/index.ts", - "hash": "4412053949287446293" - }, - { - "file": "packages/react-components/react-card/src/components/Card/renderCard.tsx", - "hash": "1433067605483476608" - }, - { - "file": "packages/react-components/react-card/src/components/Card/useCard.ts", - "hash": "7381777414402087275" - }, - { - "file": "packages/react-components/react-card/src/components/Card/useCardContextValue.ts", - "hash": "11473343537526781780" - }, - { - "file": "packages/react-components/react-card/src/components/Card/useCardSelectable.ts", - "hash": "4499997916310000329" - }, - { - "file": "packages/react-components/react-card/src/components/Card/useCardStyles.styles.ts", - "hash": "3260247311744362996" - }, - { - "file": "packages/react-components/react-card/src/components/CardFooter/CardFooter.test.tsx", - "hash": "7622635874606375345" - }, - { - "file": "packages/react-components/react-card/src/components/CardFooter/CardFooter.tsx", - "hash": "7889064387052454866" - }, - { - "file": "packages/react-components/react-card/src/components/CardFooter/CardFooter.types.ts", - "hash": "15847435805993234907" - }, - { - "file": "packages/react-components/react-card/src/components/CardFooter/__snapshots__/CardFooter.test.tsx.snap", - "hash": "13290122802036257097" - }, - { - "file": "packages/react-components/react-card/src/components/CardFooter/index.ts", - "hash": "17558814753364081460" - }, - { - "file": "packages/react-components/react-card/src/components/CardFooter/renderCardFooter.tsx", - "hash": "9307070283238530438" - }, - { - "file": "packages/react-components/react-card/src/components/CardFooter/useCardFooter.ts", - "hash": "2145180249134842105" - }, - { - "file": "packages/react-components/react-card/src/components/CardFooter/useCardFooterStyles.styles.ts", - "hash": "1083821341387929360" - }, - { - "file": "packages/react-components/react-card/src/components/CardHeader/CardHeader.test.tsx", - "hash": "14165954293035533075" - }, - { - "file": "packages/react-components/react-card/src/components/CardHeader/CardHeader.tsx", - "hash": "4181728876463672231" - }, - { - "file": "packages/react-components/react-card/src/components/CardHeader/CardHeader.types.ts", - "hash": "6184633634019281557" - }, - { - "file": "packages/react-components/react-card/src/components/CardHeader/__snapshots__/CardHeader.test.tsx.snap", - "hash": "7156722307139223011" - }, - { - "file": "packages/react-components/react-card/src/components/CardHeader/index.ts", - "hash": "16584665457828373794" - }, - { - "file": "packages/react-components/react-card/src/components/CardHeader/renderCardHeader.tsx", - "hash": "1737812013511382678" - }, - { - "file": "packages/react-components/react-card/src/components/CardHeader/useCardHeader.ts", - "hash": "10695894625791794917" - }, - { - "file": "packages/react-components/react-card/src/components/CardHeader/useCardHeaderStyles.styles.ts", - "hash": "4022899973834377131" - }, - { - "file": "packages/react-components/react-card/src/components/CardPreview/CardPreview.test.tsx", - "hash": "951239204372092264" - }, - { - "file": "packages/react-components/react-card/src/components/CardPreview/CardPreview.tsx", - "hash": "14878782731745105216" - }, - { - "file": "packages/react-components/react-card/src/components/CardPreview/CardPreview.types.ts", - "hash": "14504123763327617675" - }, - { - "file": "packages/react-components/react-card/src/components/CardPreview/__snapshots__/CardPreview.test.tsx.snap", - "hash": "8716685275269430990" - }, - { - "file": "packages/react-components/react-card/src/components/CardPreview/index.ts", - "hash": "3007392998775828301" - }, - { - "file": "packages/react-components/react-card/src/components/CardPreview/renderCardPreview.tsx", - "hash": "14553561723104936319" - }, - { - "file": "packages/react-components/react-card/src/components/CardPreview/useCardPreview.ts", - "hash": "4307043996778361696" - }, - { - "file": "packages/react-components/react-card/src/components/CardPreview/useCardPreviewStyles.styles.ts", - "hash": "11199041551264682609" - }, - { - "file": "packages/react-components/react-card/src/index.ts", - "hash": "15466602958638333138" - }, - { - "file": "packages/react-components/react-card/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardAppearance.stories.tsx", - "hash": "5604951275060761597" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardBestPractices.md", - "hash": "9308224653380770229" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardDefault.stories.tsx", - "hash": "12855457768309390333" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardDescription.md", - "hash": "3049495499082503502" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardFocusMode.stories.tsx", - "hash": "13084607985882534580" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardOrientation.stories.tsx", - "hash": "4533715330779289813" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardSelectable.stories.tsx", - "hash": "8302053683602571951" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardSelectableIndicator.stories.tsx", - "hash": "18084073634622817532" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardSize.stories.tsx", - "hash": "16436840345511589357" - }, - { - "file": "packages/react-components/react-card/stories/Card/CardTemplates.stories.tsx", - "hash": "987134944539571023" - }, - { - "file": "packages/react-components/react-card/stories/Card/index.stories.tsx", - "hash": "8678212714962414506" - }, - { - "file": "packages/react-components/react-card/stories/CardFooter/CardFooterDefault.stories.tsx", - "hash": "10194971669813246487" - }, - { - "file": "packages/react-components/react-card/stories/CardFooter/CardFooterDescription.md", - "hash": "17958053600000174792" - }, - { - "file": "packages/react-components/react-card/stories/CardFooter/index.stories.tsx", - "hash": "15149208140262958802" - }, - { - "file": "packages/react-components/react-card/stories/CardHeader/CardHeaderDefault.stories.tsx", - "hash": "7030182012670348854" - }, - { - "file": "packages/react-components/react-card/stories/CardHeader/CardHeaderDescription.md", - "hash": "278184689441639698" - }, - { - "file": "packages/react-components/react-card/stories/CardHeader/index.stories.tsx", - "hash": "17193498931451041088" - }, - { - "file": "packages/react-components/react-card/stories/CardPreview/CardPreviewDefault.stories.tsx", - "hash": "14549936026171874196" - }, - { - "file": "packages/react-components/react-card/stories/CardPreview/CardPreviewDescription.md", - "hash": "8805484546756020533" - }, - { - "file": "packages/react-components/react-card/stories/CardPreview/index.stories.tsx", - "hash": "6381064104818270081" - }, - { - "file": "packages/react-components/react-card/stories/assets/app_logo.svg", - "hash": "1145867221942749854" - }, - { - "file": "packages/react-components/react-card/stories/assets/avatar_colin.svg", - "hash": "13980132709968424389" - }, - { - "file": "packages/react-components/react-card/stories/assets/avatar_elvia.svg", - "hash": "12306115599923301814" - }, - { - "file": "packages/react-components/react-card/stories/assets/doc_template.png", - "hash": "16781486718899349419" - }, - { - "file": "packages/react-components/react-card/stories/assets/docx.png", - "hash": "12646787685627878886" - }, - { - "file": "packages/react-components/react-card/stories/assets/intelligence.png", - "hash": "8986692323019308027" - }, - { - "file": "packages/react-components/react-card/stories/assets/logo.svg", - "hash": "16479129341081339952" - }, - { - "file": "packages/react-components/react-card/stories/assets/logo2.svg", - "hash": "15824796547274656557" - }, - { - "file": "packages/react-components/react-card/stories/assets/logo3.svg", - "hash": "8392637098591831239" - }, - { - "file": "packages/react-components/react-card/stories/assets/office1.png", - "hash": "13326536504039238663" - }, - { - "file": "packages/react-components/react-card/stories/assets/office2.png", - "hash": "4573548322140247346" - }, - { - "file": "packages/react-components/react-card/stories/assets/pptx.png", - "hash": "3265152117027098916" - }, - { - "file": "packages/react-components/react-card/stories/assets/sales_template.png", - "hash": "10998262158388512370" - }, - { - "file": "packages/react-components/react-card/stories/assets/xlsx.png", - "hash": "5592114303427511673" - }, - { - "file": "packages/react-components/react-card/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-card/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-card/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-card/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-colorpicker-compat": [ - { - "file": "packages/react-components/react-colorpicker-compat/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-colorpicker-compat/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-colorpicker-compat/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-colorpicker-compat/LICENSE", - "hash": "17896713687333863732" - }, - { - "file": "packages/react-components/react-colorpicker-compat/README.md", - "hash": "8828254010565736603" - }, - { - "file": "packages/react-components/react-colorpicker-compat/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-colorpicker-compat/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-colorpicker-compat/docs/Spec.md", - "hash": "7692605215066064795" - }, - { - "file": "packages/react-components/react-colorpicker-compat/etc/react-colorpicker-compat.api.md", - "hash": "8304047180392637752" - }, - { - "file": "packages/react-components/react-colorpicker-compat/jest.config.js", - "hash": "11566748837314507290" - }, - { - "file": "packages/react-components/react-colorpicker-compat/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-colorpicker-compat/package.json", - "hash": "10909466317582711840", - "deps": [ - "@fluentui/react-jsx-runtime", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-colorpicker-compat/project.json", - "hash": "10678425435316637330" - }, - { - "file": "packages/react-components/react-colorpicker-compat/src/index.ts", - "hash": "17055841062299011540" - }, - { - "file": "packages/react-components/react-colorpicker-compat/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/react-colorpicker-compat/tsconfig.lib.json", - "hash": "14975475306433073951" - }, - { - "file": "packages/react-components/react-colorpicker-compat/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/typings": [ - { - "file": "typings/README.md", - "hash": "10583482367772263258" - }, - { - "file": "typings/custom-global/README.md", - "hash": "5649541318408753542" - }, - { - "file": "typings/custom-global/index.d.ts", - "hash": "7011206993849892993" - }, - { - "file": "typings/custom-global/tsconfig.json", - "hash": "18038664144425018676" - }, - { - "file": "typings/environment/README.md", - "hash": "10578036741537756312" - }, - { - "file": "typings/environment/index.d.ts", - "hash": "12285001276050637139" - }, - { - "file": "typings/environment/tsconfig.json", - "hash": "18038664144425018676" - }, - { - "file": "typings/find-free-port/index.d.ts", - "hash": "2397853445417492311" - }, - { - "file": "typings/find-free-port/tsconfig.json", - "hash": "18038664144425018676" - }, - { - "file": "typings/ignore-not-found-export-webpack-plugin/index.d.ts", - "hash": "1725452347235429415" - }, - { - "file": "typings/ignore-not-found-export-webpack-plugin/tsconfig.json", - "hash": "4750736256261933835" - }, - { - "file": "typings/json-stable-stringify-without-jsonify/index.d.ts", - "hash": "18439733450073198259" - }, - { - "file": "typings/json-stable-stringify-without-jsonify/tsconfig.json", - "hash": "18038664144425018676" - }, - { - "file": "typings/lerna/index.d.ts", - "hash": "9898149106273015856" - }, - { - "file": "typings/lerna/tsconfig.json", - "hash": "18038664144425018676" - }, - { - "file": "typings/package.json", - "hash": "12934772172736494740" - }, - { - "file": "typings/project.json", - "hash": "12537270325437916372" - }, - { - "file": "typings/static-assets/README.md", - "hash": "17775554958060567487" - }, - { - "file": "typings/static-assets/index.d.ts", - "hash": "10117523410007827376" - }, - { - "file": "typings/static-assets/tsconfig.json", - "hash": "18038664144425018676" - }, - { - "file": "typings/storybook__addons/index.d.ts", - "hash": "13039226549181277056" - }, - { - "file": "typings/storybook__addons/tsconfig.json", - "hash": "18038664144425018676" - }, - { - "file": "typings/tsconfig.json", - "hash": "15097887487356030189" - } - ], - "@fluentui/scripts-triage-bot": [ - { - "file": "scripts/triage-bot/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/triage-bot/README.md", - "hash": "9335607649677537584" - }, - { - "file": "scripts/triage-bot/jest.config.js", - "hash": "10011597394858720856" - }, - { - "file": "scripts/triage-bot/package.json", - "hash": "13913251469002073545" - }, - { - "file": "scripts/triage-bot/project.json", - "hash": "18400117140775395500" - }, - { - "file": "scripts/triage-bot/src/index.js", - "hash": "3622410874074552090" - }, - { - "file": "scripts/triage-bot/src/triage-bot.js", - "hash": "17650430027921283627" - }, - { - "file": "scripts/triage-bot/src/triage-bot.spec.ts", - "hash": "4833519488384355610" - }, - { - "file": "scripts/triage-bot/src/types.ts", - "hash": "1994322224594096886" - }, - { - "file": "scripts/triage-bot/triage-bot.schema.json", - "hash": "6056199013007068625" - }, - { - "file": "scripts/triage-bot/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/triage-bot/tsconfig.lib.json", - "hash": "3593133700658772030" - }, - { - "file": "scripts/triage-bot/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/keyboard-keys": [ - { - "file": "packages/react-components/keyboard-keys/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/keyboard-keys/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/keyboard-keys/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/keyboard-keys/CHANGELOG.json", - "hash": "13375252770582910819" - }, - { - "file": "packages/react-components/keyboard-keys/CHANGELOG.md", - "hash": "11434158720079159921" - }, - { - "file": "packages/react-components/keyboard-keys/LICENSE", - "hash": "16002335077248403003" - }, - { - "file": "packages/react-components/keyboard-keys/README.md", - "hash": "5919627830079932907" - }, - { - "file": "packages/react-components/keyboard-keys/bundle-size/MultipleKeyCodes.fixture.js", - "hash": "16990105420210242292" - }, - { - "file": "packages/react-components/keyboard-keys/bundle-size/MultipleKeys.fixture.js", - "hash": "6478992813196866639" - }, - { - "file": "packages/react-components/keyboard-keys/bundle-size/SingleKey.fixture.js", - "hash": "14569573360111858150" - }, - { - "file": "packages/react-components/keyboard-keys/bundle-size/SingleKeyCode.fixture.js", - "hash": "4166421080442685952" - }, - { - "file": "packages/react-components/keyboard-keys/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/keyboard-keys/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/keyboard-keys/etc/keyboard-keys.api.md", - "hash": "2343404673575691731" - }, - { - "file": "packages/react-components/keyboard-keys/jest.config.js", - "hash": "17965212772199600814" - }, - { - "file": "packages/react-components/keyboard-keys/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/keyboard-keys/package.json", - "hash": "14836732657023890952", - "deps": [ - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/react-components/keyboard-keys/project.json", - "hash": "10127551444731352685" - }, - { - "file": "packages/react-components/keyboard-keys/src/index.ts", - "hash": "3130694789980667875" - }, - { - "file": "packages/react-components/keyboard-keys/src/keyCodes.ts", - "hash": "12246297791239691352" - }, - { - "file": "packages/react-components/keyboard-keys/src/keys.ts", - "hash": "16125329113468597476" - }, - { - "file": "packages/react-components/keyboard-keys/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/keyboard-keys/tsconfig.lib.json", - "hash": "14975475306433073951" - }, - { - "file": "packages/react-components/keyboard-keys/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/perf-test-northstar": [ - { - "file": "packages/fluentui/perf-test-northstar/.digest/config.tsx", - "hash": "4770113341000384297" - }, - { - "file": "packages/fluentui/perf-test-northstar/just.config.ts", - "hash": "13576606665214849514" - }, - { - "file": "packages/fluentui/perf-test-northstar/package.json", - "hash": "8642285019896310713", - "deps": [ - "@fluentui/react-northstar", - "@fluentui/react-northstar-prototypes", - "@fluentui/digest", - "npm:flamegrill", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/fluentui/perf-test-northstar/project.json", - "hash": "16333162126337688832" - }, - { - "file": "packages/fluentui/perf-test-northstar/tasks/fluentPerfRegressions.ts", - "hash": "10043449040042657596" - }, - { - "file": "packages/fluentui/perf-test-northstar/tasks/perf-test.config.ts", - "hash": "6425901650244247513" - }, - { - "file": "packages/fluentui/perf-test-northstar/tasks/perf-test.ts", - "hash": "6993888231747376071" - }, - { - "file": "packages/fluentui/perf-test-northstar/tsconfig.json", - "hash": "14973691866308938473" - } - ], - "@fluentui/react-builder": [ - { - "file": "packages/fluentui/react-builder/.eslintrc.json", - "hash": "14831957113987152077" - }, - { - "file": "packages/fluentui/react-builder/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-builder/README.md", - "hash": "10016986543265046541" - }, - { - "file": "packages/fluentui/react-builder/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-builder/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-builder/jest.config.js", - "hash": "10802544048614070297" - }, - { - "file": "packages/fluentui/react-builder/package.json", - "hash": "9631564501580531266", - "deps": [ - "@fluentui/accessibility", - "@fluentui/code-sandbox", - "@fluentui/docs-components", - "@fluentui/react-component-event-listener", - "@fluentui/react-component-ref", - "@fluentui/react-icons-northstar", - "@fluentui/react-northstar", - "npm:axe-core", - "npm:immer", - "npm:lodash", - "npm:lz-string", - "npm:react-document-title", - "npm:react-frame-component", - "npm:react-is", - "npm:use-immer", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:@types/react-frame-component", - "npm:lerna-alias", - "npm:@babel/standalone", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-builder/project.json", - "hash": "204489873756000033" - }, - { - "file": "packages/fluentui/react-builder/src/accessibility/types.ts", - "hash": "929935902224512126" - }, - { - "file": "packages/fluentui/react-builder/src/componentInfo/componentInfoContext.ts", - "hash": "12952343612439281311" - }, - { - "file": "packages/fluentui/react-builder/src/componentInfo/types.ts", - "hash": "10871122169681405192" - }, - { - "file": "packages/fluentui/react-builder/src/components/Anatomy.tsx", - "hash": "9559709697063752825" - }, - { - "file": "packages/fluentui/react-builder/src/components/BrowserWindow.tsx", - "hash": "1305587436928706280" - }, - { - "file": "packages/fluentui/react-builder/src/components/Builder.tsx", - "hash": "11101607489312975810" - }, - { - "file": "packages/fluentui/react-builder/src/components/Canvas.tsx", - "hash": "8782503380612329753" - }, - { - "file": "packages/fluentui/react-builder/src/components/CanvasWindow.tsx", - "hash": "9073503633717464783" - }, - { - "file": "packages/fluentui/react-builder/src/components/CodeEditor.tsx", - "hash": "623657732253296337" - }, - { - "file": "packages/fluentui/react-builder/src/components/ComponentList.tsx", - "hash": "14364923839728311600" - }, - { - "file": "packages/fluentui/react-builder/src/components/ComponentPropertiesPanel.tsx", - "hash": "5268511189036678893" - }, - { - "file": "packages/fluentui/react-builder/src/components/ComponentTree.tsx", - "hash": "7846923338340185906" - }, - { - "file": "packages/fluentui/react-builder/src/components/DebugButtons.tsx", - "hash": "12509122275448910125" - }, - { - "file": "packages/fluentui/react-builder/src/components/DebugFrame.tsx", - "hash": "10043329517725525136" - }, - { - "file": "packages/fluentui/react-builder/src/components/Description.tsx", - "hash": "9567475832531969499" - }, - { - "file": "packages/fluentui/react-builder/src/components/Designer.tsx", - "hash": "13036707724185814545" - }, - { - "file": "packages/fluentui/react-builder/src/components/DropSelector.tsx", - "hash": "3542664213591641212" - }, - { - "file": "packages/fluentui/react-builder/src/components/ErrorBoundary.tsx", - "hash": "11122869423617163119" - }, - { - "file": "packages/fluentui/react-builder/src/components/ErrorPanel.tsx", - "hash": "9164703090634963658" - }, - { - "file": "packages/fluentui/react-builder/src/components/FullScreenPreview.tsx", - "hash": "16011726969178031086" - }, - { - "file": "packages/fluentui/react-builder/src/components/GetShareableLink.tsx", - "hash": "15433656223699742764" - }, - { - "file": "packages/fluentui/react-builder/src/components/InsertComponent.tsx", - "hash": "9906566956658338491" - }, - { - "file": "packages/fluentui/react-builder/src/components/Knobs.tsx", - "hash": "2567043305485912803" - }, - { - "file": "packages/fluentui/react-builder/src/components/MultiTypeKnob.tsx", - "hash": "2930992216485547340" - }, - { - "file": "packages/fluentui/react-builder/src/components/NavBarItem.tsx", - "hash": "6913624690736282433" - }, - { - "file": "packages/fluentui/react-builder/src/components/NavigationPanel.tsx", - "hash": "9800200967616636940" - }, - { - "file": "packages/fluentui/react-builder/src/components/ReaderNarration.tsx", - "hash": "16220487698280846067" - }, - { - "file": "packages/fluentui/react-builder/src/components/Toolbar.tsx", - "hash": "543702787129451118" - }, - { - "file": "packages/fluentui/react-builder/src/components/tabPanels/AccessibilityTabPanel.tsx", - "hash": "13590036990892215305" - }, - { - "file": "packages/fluentui/react-builder/src/components/tabPanels/AddTabPanel.tsx", - "hash": "11042719876676903669" - }, - { - "file": "packages/fluentui/react-builder/src/components/tabPanels/NavigationTabPanel.tsx", - "hash": "9858807996756415860" - }, - { - "file": "packages/fluentui/react-builder/src/components/types.ts", - "hash": "1832743028101149231" - }, - { - "file": "packages/fluentui/react-builder/src/config.tsx", - "hash": "5814245327475203313" - }, - { - "file": "packages/fluentui/react-builder/src/hooks/index.ts", - "hash": "11226509319231205349" - }, - { - "file": "packages/fluentui/react-builder/src/hooks/runAxe.ts", - "hash": "8860485983799780375" - }, - { - "file": "packages/fluentui/react-builder/src/hooks/useMode.ts", - "hash": "17910004894933185109" - }, - { - "file": "packages/fluentui/react-builder/src/index.ts", - "hash": "7302446320173355624" - }, - { - "file": "packages/fluentui/react-builder/src/narration/NarrationComputer.tsx", - "hash": "3889128191066894050" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-Definitions.tsx", - "hash": "8320166329157302802" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-ElementStates-Win_JAWS.tsx", - "hash": "6332595224770733718" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-ElementTypes-Win_JAWS.tsx", - "hash": "7650259396047917910" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-ElementTypes-Win_JAWS_VPC.tsx", - "hash": "1312765730158700516" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-LandmarksAndGroups-Win_JAWS.tsx", - "hash": "4029867906059143388" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-LandmarksAndGroups-Win_JAWS_VPC.tsx", - "hash": "2972313100645343181" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-ReadingOrder-Win_JAWS.tsx", - "hash": "11595690551124846854" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-ReadingOrder-Win_JAWS_VPC.tsx", - "hash": "15637529703244180336" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-StateRules-Win_JAWS.tsx", - "hash": "15839976440027101995" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-StateRules-Win_JAWS_VPC.tsx", - "hash": "16696028047627629469" - }, - { - "file": "packages/fluentui/react-builder/src/narration/SRNC-Usages-Win_JAWS.tsx", - "hash": "3454242724591971760" - }, - { - "file": "packages/fluentui/react-builder/src/state/index.tsx", - "hash": "2685696966902878094" - }, - { - "file": "packages/fluentui/react-builder/src/state/state.ts", - "hash": "14164046665851924982" - }, - { - "file": "packages/fluentui/react-builder/src/state/utils.ts", - "hash": "2393629447381052912" - }, - { - "file": "packages/fluentui/react-builder/src/utils/codeToTree.ts", - "hash": "13828598921945434473" - }, - { - "file": "packages/fluentui/react-builder/src/utils/getUUID.ts", - "hash": "10027271916887760783" - }, - { - "file": "packages/fluentui/react-builder/src/utils/treeStore.ts", - "hash": "3825005232368357598" - }, - { - "file": "packages/fluentui/react-builder/test/config-test.tsx", - "hash": "2603837748451585594" - }, - { - "file": "packages/fluentui/react-builder/test/utils/treeStore-test.ts", - "hash": "7324853206959097484" - }, - { - "file": "packages/fluentui/react-builder/todo.md", - "hash": "8222318070280973140" - }, - { - "file": "packages/fluentui/react-builder/tsconfig.json", - "hash": "4419506872376571172" - } - ], - "@fluentui/react-motion-preview": [ - { - "file": "packages/react-components/react-motion-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-motion-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-motion-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-motion-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-motion-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-motion-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-motion-preview/CHANGELOG.json", - "hash": "11137084770627020814" - }, - { - "file": "packages/react-components/react-motion-preview/CHANGELOG.md", - "hash": "7183679563961265393" - }, - { - "file": "packages/react-components/react-motion-preview/LICENSE", - "hash": "1234262793966931881" - }, - { - "file": "packages/react-components/react-motion-preview/README.md", - "hash": "5121976902997572308" - }, - { - "file": "packages/react-components/react-motion-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-motion-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-motion-preview/docs/Spec.md", - "hash": "17845913729800975033" - }, - { - "file": "packages/react-components/react-motion-preview/etc/react-motion-preview.api.md", - "hash": "11822234989690462944" - }, - { - "file": "packages/react-components/react-motion-preview/jest.config.js", - "hash": "14155382610793147225" - }, - { - "file": "packages/react-components/react-motion-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-motion-preview/package.json", - "hash": "15544045345364563922", - "deps": [ - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-motion-preview/project.json", - "hash": "9755635695534125383" - }, - { - "file": "packages/react-components/react-motion-preview/src/hooks/index.ts", - "hash": "8858878511737786592" - }, - { - "file": "packages/react-components/react-motion-preview/src/hooks/useMotion.test.ts", - "hash": "5083954587357687141" - }, - { - "file": "packages/react-components/react-motion-preview/src/hooks/useMotion.ts", - "hash": "8532028455825888123" - }, - { - "file": "packages/react-components/react-motion-preview/src/hooks/useMotionClassNames.test.ts", - "hash": "2430367888544834912" - }, - { - "file": "packages/react-components/react-motion-preview/src/hooks/useMotionClassNames.ts", - "hash": "10739644114435117367" - }, - { - "file": "packages/react-components/react-motion-preview/src/hooks/useReducedMotion.ts", - "hash": "15515325398588090509" - }, - { - "file": "packages/react-components/react-motion-preview/src/index.ts", - "hash": "479877564955136295" - }, - { - "file": "packages/react-components/react-motion-preview/src/styles/useReducedMotionStyles.styles.ts", - "hash": "4540984684513496074" - }, - { - "file": "packages/react-components/react-motion-preview/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-motion-preview/src/utils/dom-style.ts", - "hash": "6443096568349431012" - }, - { - "file": "packages/react-components/react-motion-preview/stories/UseMotion/MotionDescription.md", - "hash": "4620999901264858225" - }, - { - "file": "packages/react-components/react-motion-preview/stories/UseMotion/MotionPreview.md", - "hash": "9912155066303383782" - }, - { - "file": "packages/react-components/react-motion-preview/stories/UseMotion/MotionUsage.md", - "hash": "10800830911355677136" - }, - { - "file": "packages/react-components/react-motion-preview/stories/UseMotion/UseMotion.stories.tsx", - "hash": "3965154038000933055" - }, - { - "file": "packages/react-components/react-motion-preview/stories/UseMotion/UseMotionClassNames.stories.tsx", - "hash": "972675374824631381" - }, - { - "file": "packages/react-components/react-motion-preview/stories/UseMotion/UseMotionWithDuration.stories.tsx", - "hash": "7144854141420674605" - }, - { - "file": "packages/react-components/react-motion-preview/stories/UseMotion/index.stories.ts", - "hash": "8283014325877865669" - }, - { - "file": "packages/react-components/react-motion-preview/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-motion-preview/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-motion-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-experiments": [ - { - "file": "packages/react-experiments/.eslintrc.json", - "hash": "7788135779233596637" - }, - { - "file": "packages/react-experiments/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/react-experiments/.vscode/settings.json", - "hash": "16922900037095686213" - }, - { - "file": "packages/react-experiments/CHANGELOG.json", - "hash": "1759451528711803273" - }, - { - "file": "packages/react-experiments/CHANGELOG.md", - "hash": "841769307207834070" - }, - { - "file": "packages/react-experiments/LICENSE", - "hash": "13203729021017389157" - }, - { - "file": "packages/react-experiments/README.md", - "hash": "6069065823927244357" - }, - { - "file": "packages/react-experiments/config/pre-copy.json", - "hash": "5645154898618432291" - }, - { - "file": "packages/react-experiments/config/tests.js", - "hash": "1298251390361832964" - }, - { - "file": "packages/react-experiments/jest.config.js", - "hash": "8193037916930093299" - }, - { - "file": "packages/react-experiments/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-experiments/package.json", - "hash": "8173131559828053357", - "deps": [ - "@fluentui/react", - "@fluentui/theme", - "npm:@microsoft/load-themed-styles", - "@fluentui/example-data", - "@fluentui/foundation-legacy", - "@fluentui/font-icons-mdl2", - "@fluentui/merge-styles", - "@fluentui/react-hooks", - "@fluentui/set-version", - "@fluentui/style-utilities", - "@fluentui/utilities", - "npm:deep-assign", - "npm:prop-types", - "npm:tslib", - "@fluentui/common-styles", - "@fluentui/eslint-plugin", - "npm:@types/deep-assign", - "npm:@types/prop-types", - "npm:@types/react-addons-test-utils", - "@fluentui/jest-serializer-merge-styles", - "npm:react-hooks-testing-library", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-experiments/project.json", - "hash": "3501476537050508852" - }, - { - "file": "packages/react-experiments/src/Accordion.ts", - "hash": "16785143114878803654" - }, - { - "file": "packages/react-experiments/src/Chiclet.ts", - "hash": "11155256979043085396" - }, - { - "file": "packages/react-experiments/src/CollapsibleSection.ts", - "hash": "2758608677691324557" - }, - { - "file": "packages/react-experiments/src/CommandBar.ts", - "hash": "6705151224568579037" - }, - { - "file": "packages/react-experiments/src/FloatingPeopleSuggestions.ts", - "hash": "15119309918904920431" - }, - { - "file": "packages/react-experiments/src/FloatingPeopleSuggestionsComposite.ts", - "hash": "1574102834641737891" - }, - { - "file": "packages/react-experiments/src/FloatingSuggestions.ts", - "hash": "4926410936868705646" - }, - { - "file": "packages/react-experiments/src/FloatingSuggestionsComposite.ts", - "hash": "2076343655190795668" - }, - { - "file": "packages/react-experiments/src/FolderCover.ts", - "hash": "7108040609502246617" - }, - { - "file": "packages/react-experiments/src/Foundation.ts", - "hash": "4347195763759381731" - }, - { - "file": "packages/react-experiments/src/LayoutGroup.ts", - "hash": "6487040189142004344" - }, - { - "file": "packages/react-experiments/src/MicroFeedback.ts", - "hash": "8888494769050870648" - }, - { - "file": "packages/react-experiments/src/Pagination.ts", - "hash": "4350794388615723689" - }, - { - "file": "packages/react-experiments/src/Persona.ts", - "hash": "11634239554265983330" - }, - { - "file": "packages/react-experiments/src/PersonaCoin.ts", - "hash": "8412453628380985510" - }, - { - "file": "packages/react-experiments/src/SelectedItemsList.ts", - "hash": "8395059039592633644" - }, - { - "file": "packages/react-experiments/src/Separator.ts", - "hash": "4641114773120917684" - }, - { - "file": "packages/react-experiments/src/Sidebar.ts", - "hash": "17768333116531200071" - }, - { - "file": "packages/react-experiments/src/Signals.ts", - "hash": "620991364519481258" - }, - { - "file": "packages/react-experiments/src/Slider.ts", - "hash": "8062765663185726667" - }, - { - "file": "packages/react-experiments/src/Stack.ts", - "hash": "7034361302360469020" - }, - { - "file": "packages/react-experiments/src/StaticList.ts", - "hash": "7488446108983563702" - }, - { - "file": "packages/react-experiments/src/Styling.ts", - "hash": "8123475635573030392" - }, - { - "file": "packages/react-experiments/src/Text.ts", - "hash": "298153759206803748" - }, - { - "file": "packages/react-experiments/src/Tile.ts", - "hash": "15115386942984335447" - }, - { - "file": "packages/react-experiments/src/TilesList.ts", - "hash": "4067127055357787810" - }, - { - "file": "packages/react-experiments/src/UnifiedPeoplePicker.ts", - "hash": "3493245017176473579" - }, - { - "file": "packages/react-experiments/src/UnifiedPicker.ts", - "hash": "7374717927815807161" - }, - { - "file": "packages/react-experiments/src/Utilities.ts", - "hash": "15929919672659535220" - }, - { - "file": "packages/react-experiments/src/VirtualizedList.ts", - "hash": "15787698144324878502" - }, - { - "file": "packages/react-experiments/src/common/TestImages.ts", - "hash": "7314752036436624417" - }, - { - "file": "packages/react-experiments/src/components/Accordion/Accordion.styles.ts", - "hash": "10103728486657545453" - }, - { - "file": "packages/react-experiments/src/components/Accordion/Accordion.tsx", - "hash": "10919603374232920421" - }, - { - "file": "packages/react-experiments/src/components/Accordion/Accordion.types.ts", - "hash": "1763826350692402116" - }, - { - "file": "packages/react-experiments/src/components/Accordion/index.ts", - "hash": "14810765027328618110" - }, - { - "file": "packages/react-experiments/src/components/BAFAccordion/Accordion.scss", - "hash": "3159494616127549602" - }, - { - "file": "packages/react-experiments/src/components/BAFAccordion/Accordion.tsx", - "hash": "13071939116549721336" - }, - { - "file": "packages/react-experiments/src/components/BAFAccordion/Accordion.types.tsx", - "hash": "11818567710826420017" - }, - { - "file": "packages/react-experiments/src/components/BAFAccordion/index.ts", - "hash": "17043733982335872409" - }, - { - "file": "packages/react-experiments/src/components/BAFAccordion/owners.txt", - "hash": "3476385688937999347" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/Chiclet.base.tsx", - "hash": "3409074486319435397" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/Chiclet.styles.ts", - "hash": "8569233722529425104" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/Chiclet.test.tsx", - "hash": "6008395739054324573" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/Chiclet.tsx", - "hash": "13141819538538406114" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/Chiclet.types.ts", - "hash": "5622013660578992775" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/ChicletCard.base.tsx", - "hash": "16702394850503035254" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/ChicletCard.styles.ts", - "hash": "10739227742080388232" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/ChicletCard.tsx", - "hash": "7902323050637313004" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/ChicletCard.types.ts", - "hash": "5412841689924415351" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/ChicletXsmall.base.tsx", - "hash": "12511258243374624230" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/ChicletXsmall.styles.tsx", - "hash": "11420917528936773262" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/ChicletXsmall.tsx", - "hash": "14249571087042892150" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/__snapshots__/Chiclet.test.tsx.snap", - "hash": "6081639501010760453" - }, - { - "file": "packages/react-experiments/src/components/Chiclet/index.ts", - "hash": "10160553347801902812" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.state.tsx", - "hash": "18322757302069591719" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.styles.ts", - "hash": "2779693142844014460" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.ts", - "hash": "4591584793160304813" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.types.ts", - "hash": "14444496592959954320" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.view.tsx", - "hash": "1782191095359759951" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.styles.ts", - "hash": "3431138696688297563" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.ts", - "hash": "5820505541536991668" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.types.ts", - "hash": "13707897512874248717" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.view.tsx", - "hash": "13865182112328305874" - }, - { - "file": "packages/react-experiments/src/components/CollapsibleSection/index.ts", - "hash": "6854421450006391828" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/FloatingPeopleSuggestions.tsx", - "hash": "3757060386559289795" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.scss", - "hash": "3905654351229104045" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.tsx", - "hash": "5377638749757585082" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/index.ts", - "hash": "2813564923569936104" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.scss", - "hash": "3604756766474209425" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.tsx", - "hash": "381444847938224424" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.types.ts", - "hash": "4632979514109731236" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/Suggestions.types.ts", - "hash": "7068927902778183292" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.scss", - "hash": "8577107595666309036" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.test.tsx", - "hash": "15850210107969836877" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.tsx", - "hash": "1708624113233746184" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsCore.scss", - "hash": "1212577356362130966" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsCore.tsx", - "hash": "13870857510612252988" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.styles.ts", - "hash": "17338743388339628589" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.tsx", - "hash": "11715318481696458315" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.types.ts", - "hash": "11160815825282002971" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsStore.ts", - "hash": "13386259745322524879" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestions/index.ts", - "hash": "17810609914691297881" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestionItems/SuggestionItemDefault.styles.ts", - "hash": "4743105042530766310" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestionItems/SuggestionItemDefault.tsx", - "hash": "3453583868207626678" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestions.tsx", - "hash": "13050158639049570556" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestions.types.ts", - "hash": "12837034505758908897" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.styles.ts", - "hash": "16302313942165176658" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.tsx", - "hash": "10782913239539786536" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.types.ts", - "hash": "11084868562405984032" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsComposite.test.tsx", - "hash": "12982544863657252401" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.styles.ts", - "hash": "1111839729707920702" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.tsx", - "hash": "7254408377977084011" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.types.ts", - "hash": "1703025396759223111" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.styles.ts", - "hash": "7000086168349821996" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.tsx", - "hash": "15765347135995471597" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.types.ts", - "hash": "2183956652895868185" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.styles.ts", - "hash": "15453606984512324352" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.tsx", - "hash": "10271927908577936066" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.types.ts", - "hash": "11125748956408054438" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/__snapshots__/FloatingSuggestionsComposite.test.tsx.snap", - "hash": "9917759799883970820" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/index.ts", - "hash": "3574819925110002578" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/utils/getNextSuggestionIndex.ts", - "hash": "11830895391681216780" - }, - { - "file": "packages/react-experiments/src/components/FloatingSuggestionsComposite/utils/getPreviousSuggestionIndex.ts", - "hash": "8265911307876280394" - }, - { - "file": "packages/react-experiments/src/components/FolderCover/FolderCover.scss", - "hash": "12904864827355527393" - }, - { - "file": "packages/react-experiments/src/components/FolderCover/FolderCover.tsx", - "hash": "5241141501904891354" - }, - { - "file": "packages/react-experiments/src/components/FolderCover/FolderCover.types.ts", - "hash": "15996641639839082729" - }, - { - "file": "packages/react-experiments/src/components/FolderCover/index.ts", - "hash": "1965305132211953917" - }, - { - "file": "packages/react-experiments/src/components/FolderCover/initializeFolderCovers.tsx", - "hash": "7166539941536670708" - }, - { - "file": "packages/react-experiments/src/components/LayoutGroup/LayoutGroup.tsx", - "hash": "11503592609729761699" - }, - { - "file": "packages/react-experiments/src/components/LayoutGroup/LayoutGroup.types.ts", - "hash": "11477832012990329444" - }, - { - "file": "packages/react-experiments/src/components/LayoutGroup/index.ts", - "hash": "4937009151180128495" - }, - { - "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.state.ts", - "hash": "8558097265940582588" - }, - { - "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.styles.ts", - "hash": "3664376394785762021" - }, - { - "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.test.tsx", - "hash": "16693792913876566657" - }, - { - "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.tsx", - "hash": "6201110364847208132" - }, - { - "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.types.ts", - "hash": "3034977262470562098" - }, - { - "file": "packages/react-experiments/src/components/MicroFeedback/MicroFeedback.view.tsx", - "hash": "8949946573282186190" - }, - { - "file": "packages/react-experiments/src/components/MicroFeedback/__snapshots__/MicroFeedback.test.tsx.snap", - "hash": "10058342721573506314" - }, - { - "file": "packages/react-experiments/src/components/MicroFeedback/index.ts", - "hash": "13677606644297986230" - }, - { - "file": "packages/react-experiments/src/components/Pagination/PageNumber.tsx", - "hash": "4546005481250467622" - }, - { - "file": "packages/react-experiments/src/components/Pagination/PageNumber.types.ts", - "hash": "18320997077151981120" - }, - { - "file": "packages/react-experiments/src/components/Pagination/Pagination.base.tsx", - "hash": "10087620027863872208" - }, - { - "file": "packages/react-experiments/src/components/Pagination/Pagination.styles.ts", - "hash": "12065043136280449004" - }, - { - "file": "packages/react-experiments/src/components/Pagination/Pagination.test.tsx", - "hash": "2308659567326285802" - }, - { - "file": "packages/react-experiments/src/components/Pagination/Pagination.tsx", - "hash": "6872288120100005013" - }, - { - "file": "packages/react-experiments/src/components/Pagination/Pagination.types.ts", - "hash": "4670107751414484026" - }, - { - "file": "packages/react-experiments/src/components/Pagination/__snapshots__/Pagination.test.tsx.snap", - "hash": "535135098638587946" - }, - { - "file": "packages/react-experiments/src/components/Pagination/index.ts", - "hash": "17421102762909672330" - }, - { - "file": "packages/react-experiments/src/components/Persona/Persona.tsx", - "hash": "7714910874570066235" - }, - { - "file": "packages/react-experiments/src/components/Persona/Persona.types.ts", - "hash": "2581738252277925013" - }, - { - "file": "packages/react-experiments/src/components/Persona/PersonaText/PersonaText.tsx", - "hash": "5859930998899639965" - }, - { - "file": "packages/react-experiments/src/components/Persona/PersonaText/index.ts", - "hash": "12160704872550378359" - }, - { - "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.styles.ts", - "hash": "486193162841061838" - }, - { - "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.test.tsx", - "hash": "11707248106656605624" - }, - { - "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.ts", - "hash": "44114845465802009" - }, - { - "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.types.ts", - "hash": "9606945673643607753" - }, - { - "file": "packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.view.tsx", - "hash": "13016462774222819904" - }, - { - "file": "packages/react-experiments/src/components/Persona/Vertical/__snapshots__/VerticalPersona.test.tsx.snap", - "hash": "13220328470775192500" - }, - { - "file": "packages/react-experiments/src/components/Persona/index.ts", - "hash": "6348331949361760859" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.state.ts", - "hash": "8710872931461018024" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.styles.ts", - "hash": "9772456920698375671" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.test.tsx", - "hash": "12048974165692997332" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.ts", - "hash": "12724479649793425338" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.types.ts", - "hash": "12490952391090838709" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoin.view.tsx", - "hash": "11386862964080294929" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/PersonaCoinImage.tsx", - "hash": "381924212602934673" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/PersonaCoinImage.types.ts", - "hash": "13914464509117049729" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/index.ts", - "hash": "17897665529387283662" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinInitials/PersonaCoinInitials.tsx", - "hash": "8356149681486052893" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/PersonaCoinSize10/PersonaCoinSize10.tsx", - "hash": "17367608678914536633" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/__snapshots__/PersonaCoin.test.tsx.snap", - "hash": "14084163329842627549" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/index.ts", - "hash": "4690765837432319189" - }, - { - "file": "packages/react-experiments/src/components/PersonaCoin/propHelpers.ts", - "hash": "11515578808103658372" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/Items/CopyableItem.tsx", - "hash": "4460092286991826468" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/Items/EditableItem.tsx", - "hash": "1506153315791396911" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/Items/ItemTrigger.types.ts", - "hash": "1066552443382932370" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/Items/ItemWithContextMenu.tsx", - "hash": "9212113507745444261" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/Items/TriggerOnContextMenu.tsx", - "hash": "1936797453681473708" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/Items/index.ts", - "hash": "1847408114707276401" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.scss", - "hash": "2123961347839935533" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.tsx", - "hash": "11599018992220337350" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.test.tsx", - "hash": "10026648953646638887" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.tsx", - "hash": "6459558609762136724" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.types.ts", - "hash": "2686034838864743834" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.styles.ts", - "hash": "16362109281402062667" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.tsx", - "hash": "4174472656133855628" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.types.ts", - "hash": "10640929694904910998" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.test.tsx", - "hash": "5076323846252697640" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.tsx", - "hash": "1942004760255062545" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/__snapshots__/SelectedPeopleList.test.tsx.snap", - "hash": "13037658191009713151" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/index.ts", - "hash": "10546884526866399704" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/__snapshots__/SelectedItemsList.test.tsx.snap", - "hash": "15353071673818879597" - }, - { - "file": "packages/react-experiments/src/components/SelectedItemsList/index.ts", - "hash": "11969545535632613866" - }, - { - "file": "packages/react-experiments/src/components/Sidebar/Sidebar.classNames.tsx", - "hash": "7010893654002625166" - }, - { - "file": "packages/react-experiments/src/components/Sidebar/Sidebar.styles.tsx", - "hash": "13754931327925901039" - }, - { - "file": "packages/react-experiments/src/components/Sidebar/Sidebar.test.tsx", - "hash": "14465723933222876442" - }, - { - "file": "packages/react-experiments/src/components/Sidebar/Sidebar.tsx", - "hash": "52139508622844580" - }, - { - "file": "packages/react-experiments/src/components/Sidebar/Sidebar.types.tsx", - "hash": "331900337538358997" - }, - { - "file": "packages/react-experiments/src/components/Sidebar/SidebarButton.styles.tsx", - "hash": "4173292561399305330" - }, - { - "file": "packages/react-experiments/src/components/Sidebar/SidebarButton.tsx", - "hash": "4286211183338076407" - }, - { - "file": "packages/react-experiments/src/components/Sidebar/index.ts", - "hash": "10615726587843841544" - }, - { - "file": "packages/react-experiments/src/components/Slider/Slider.base.tsx", - "hash": "4429192687504958983" - }, - { - "file": "packages/react-experiments/src/components/Slider/Slider.styles.tsx", - "hash": "4479449330147508383" - }, - { - "file": "packages/react-experiments/src/components/Slider/Slider.test.tsx", - "hash": "4966249706265165218" - }, - { - "file": "packages/react-experiments/src/components/Slider/Slider.tsx", - "hash": "10723765216778814719" - }, - { - "file": "packages/react-experiments/src/components/Slider/Slider.types.ts", - "hash": "13593910734039395002" - }, - { - "file": "packages/react-experiments/src/components/Slider/__snapshots__/Slider.test.tsx.snap", - "hash": "6166737303082448600" - }, - { - "file": "packages/react-experiments/src/components/Slider/index.ts", - "hash": "16426302468400422346" - }, - { - "file": "packages/react-experiments/src/components/StaticList/List.types.ts", - "hash": "13029505571285717375" - }, - { - "file": "packages/react-experiments/src/components/StaticList/StaticList.scss", - "hash": "6418642908294752521" - }, - { - "file": "packages/react-experiments/src/components/StaticList/StaticList.tsx", - "hash": "641714830964085194" - }, - { - "file": "packages/react-experiments/src/components/StaticList/StaticList.types.ts", - "hash": "10427582978882602229" - }, - { - "file": "packages/react-experiments/src/components/StaticList/index.ts", - "hash": "14396733320191333641" - }, - { - "file": "packages/react-experiments/src/components/Tile/Check.scss", - "hash": "17140661851251461349" - }, - { - "file": "packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.base.tsx", - "hash": "13442204835589282229" - }, - { - "file": "packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.styles.ts", - "hash": "8193484691228559393" - }, - { - "file": "packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.tsx", - "hash": "6580041504660615377" - }, - { - "file": "packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.types.ts", - "hash": "4381964922523372138" - }, - { - "file": "packages/react-experiments/src/components/Tile/Tile.scss", - "hash": "7384527406222800300" - }, - { - "file": "packages/react-experiments/src/components/Tile/Tile.tsx", - "hash": "18267954738149232245" - }, - { - "file": "packages/react-experiments/src/components/Tile/Tile.types.ts", - "hash": "18099294555385488476" - }, - { - "file": "packages/react-experiments/src/components/Tile/index.ts", - "hash": "12634420449656108817" - }, - { - "file": "packages/react-experiments/src/components/TilesList/TilesList.scss", - "hash": "842071301340357996" - }, - { - "file": "packages/react-experiments/src/components/TilesList/TilesList.tsx", - "hash": "10430063901723355839" - }, - { - "file": "packages/react-experiments/src/components/TilesList/TilesList.types.ts", - "hash": "17504993610037147225" - }, - { - "file": "packages/react-experiments/src/components/TilesList/index.ts", - "hash": "9841529760922503529" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.test.tsx", - "hash": "3517327827280940319" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.tsx", - "hash": "14506214779457586241" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.types.ts", - "hash": "1543295232261040062" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/__snapshots__/UnifiedPeoplePicker.test.tsx.snap", - "hash": "7774749062177847028" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.styles.ts", - "hash": "15570590120604449971" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.test.tsx", - "hash": "8424483237745143282" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.tsx", - "hash": "3366336271139962794" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.types.ts", - "hash": "14552322759660156163" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/__snapshots__/UnifiedPicker.test.tsx.snap", - "hash": "7297314502332383484" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/hooks/useFloatingSuggestionItems.ts", - "hash": "1758471814706513672" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/hooks/useSelectedItems.ts", - "hash": "5077487519667132696" - }, - { - "file": "packages/react-experiments/src/components/UnifiedPicker/index.ts", - "hash": "6262690888054952770" - }, - { - "file": "packages/react-experiments/src/components/VirtualizedList/VirtualizedList.scss", - "hash": "4311027338679150061" - }, - { - "file": "packages/react-experiments/src/components/VirtualizedList/VirtualizedList.test.tsx", - "hash": "6172968722546270192" - }, - { - "file": "packages/react-experiments/src/components/VirtualizedList/VirtualizedList.tsx", - "hash": "4533817653005411344" - }, - { - "file": "packages/react-experiments/src/components/VirtualizedList/VirtualizedList.types.ts", - "hash": "17801838772746123231" - }, - { - "file": "packages/react-experiments/src/components/VirtualizedList/__snapshots__/VirtualizedList.test.tsx.snap", - "hash": "14732020310207096293" - }, - { - "file": "packages/react-experiments/src/components/VirtualizedList/index.ts", - "hash": "135447240498174383" - }, - { - "file": "packages/react-experiments/src/components/fluent/FluentColors.ts", - "hash": "225500492131065146" - }, - { - "file": "packages/react-experiments/src/components/fluent/FluentDepths.ts", - "hash": "6148133275576816574" - }, - { - "file": "packages/react-experiments/src/components/fluent/FluentMotion.ts", - "hash": "11714246076652372730" - }, - { - "file": "packages/react-experiments/src/components/fluent/FluentTheme.ts", - "hash": "8840513458027493895" - }, - { - "file": "packages/react-experiments/src/components/fluent/FluentType.ts", - "hash": "17693899800607942246" - }, - { - "file": "packages/react-experiments/src/components/signals/Signal.scss", - "hash": "16352737707440812602" - }, - { - "file": "packages/react-experiments/src/components/signals/Signal.tsx", - "hash": "14827070792321820050" - }, - { - "file": "packages/react-experiments/src/components/signals/SignalField.scss", - "hash": "14738164499262173795" - }, - { - "file": "packages/react-experiments/src/components/signals/SignalField.tsx", - "hash": "18433200084518909301" - }, - { - "file": "packages/react-experiments/src/components/signals/Signals.Props.ts", - "hash": "11137791629269371778" - }, - { - "file": "packages/react-experiments/src/components/signals/Signals.scss", - "hash": "12630874552248492839" - }, - { - "file": "packages/react-experiments/src/components/signals/Signals.tsx", - "hash": "5541756948576717681" - }, - { - "file": "packages/react-experiments/src/index.ts", - "hash": "8087115123738644940" - }, - { - "file": "packages/react-experiments/src/utilities/factoryComponents.tsx", - "hash": "16120135515651635803" - }, - { - "file": "packages/react-experiments/src/utilities/factoryComponents.types.tsx", - "hash": "17345407460455718193" - }, - { - "file": "packages/react-experiments/src/utilities/scrolling/ScrollContainer.scss", - "hash": "1448566863525499310" - }, - { - "file": "packages/react-experiments/src/utilities/scrolling/ScrollContainer.tsx", - "hash": "9543898172760502245" - }, - { - "file": "packages/react-experiments/src/utilities/scrolling/ScrollContainer.types.ts", - "hash": "5510579575255177883" - }, - { - "file": "packages/react-experiments/src/utilities/scrolling/index.ts", - "hash": "14000842761119700127" - }, - { - "file": "packages/react-experiments/src/utilities/textHelpers.ts", - "hash": "8358896990955050500" - }, - { - "file": "packages/react-experiments/src/version.ts", - "hash": "3147508813634178729" - }, - { - "file": "packages/react-experiments/tsconfig.json", - "hash": "4921836023195560350" - }, - { - "file": "packages/react-experiments/webpack.config.js", - "hash": "13362749979705105070" - }, - { - "file": "packages/react-experiments/webpack.serve.config.js", - "hash": "7443825724669908634" - } - ], - "@fluentui/react-component-ref": [ - { - "file": "packages/fluentui/react-component-ref/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-component-ref/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-component-ref/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-component-ref/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-component-ref/jest.config.js", - "hash": "16229841778322564435" - }, - { - "file": "packages/fluentui/react-component-ref/package.json", - "hash": "7529430488905102947", - "deps": [ - "npm:@babel/runtime", - "npm:react-is", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:lerna-alias", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-component-ref/project.json", - "hash": "6126110977524113939" - }, - { - "file": "packages/fluentui/react-component-ref/src/Ref.tsx", - "hash": "8736695420541124411" - }, - { - "file": "packages/fluentui/react-component-ref/src/index.ts", - "hash": "2957471030756768947" - }, - { - "file": "packages/fluentui/react-component-ref/src/utils.ts", - "hash": "5021221117969286327" - }, - { - "file": "packages/fluentui/react-component-ref/test/Ref-test.tsx", - "hash": "15199118732810061095" - }, - { - "file": "packages/fluentui/react-component-ref/test/fixtures.tsx", - "hash": "17981835075008341893" - }, - { - "file": "packages/fluentui/react-component-ref/test/handleRef-test.ts", - "hash": "14323864877924546412" - }, - { - "file": "packages/fluentui/react-component-ref/test/isRefObject-test.ts", - "hash": "1265088125532153475" - }, - { - "file": "packages/fluentui/react-component-ref/tsconfig.json", - "hash": "12214264623402812273" - } - ], - "@fluentui/react-overflow": [ - { - "file": "packages/react-components/react-overflow/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-overflow/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-overflow/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-overflow/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-overflow/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-overflow/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-overflow/CHANGELOG.json", - "hash": "17151345637925750323" - }, - { - "file": "packages/react-components/react-overflow/CHANGELOG.md", - "hash": "11159453311878671621" - }, - { - "file": "packages/react-components/react-overflow/LICENSE", - "hash": "9818542165238110929" - }, - { - "file": "packages/react-components/react-overflow/README.md", - "hash": "14042413657447533493" - }, - { - "file": "packages/react-components/react-overflow/bundle-size/hooks.fixture.js", - "hash": "98538218520861936" - }, - { - "file": "packages/react-components/react-overflow/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-overflow/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-overflow/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-overflow/etc/react-overflow.api.md", - "hash": "5944085284944377635" - }, - { - "file": "packages/react-components/react-overflow/etc/react-priority-overflow.api.md", - "hash": "6850313133803861984" - }, - { - "file": "packages/react-components/react-overflow/jest.config.js", - "hash": "1514962155860067226" - }, - { - "file": "packages/react-components/react-overflow/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-overflow/package.json", - "hash": "2219755465510116858", - "deps": [ - "@fluentui/priority-overflow", - "@fluentui/react-context-selector", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-overflow/project.json", - "hash": "14511368221817073832" - }, - { - "file": "packages/react-components/react-overflow/src/Overflow.cy.tsx", - "hash": "5903549386456079078" - }, - { - "file": "packages/react-components/react-overflow/src/components/Overflow.test.tsx", - "hash": "4616096457460375706" - }, - { - "file": "packages/react-components/react-overflow/src/components/Overflow.tsx", - "hash": "15335767250878277368" - }, - { - "file": "packages/react-components/react-overflow/src/components/OverflowDivider/OverflowDivider.tsx", - "hash": "9991237880667566221" - }, - { - "file": "packages/react-components/react-overflow/src/components/OverflowDivider/OverflowDivider.types.ts", - "hash": "10260336547526921784" - }, - { - "file": "packages/react-components/react-overflow/src/components/OverflowItem/OverflowItem.tsx", - "hash": "13525090351953575094" - }, - { - "file": "packages/react-components/react-overflow/src/components/OverflowItem/OverflowItem.types.ts", - "hash": "8179926864947790425" - }, - { - "file": "packages/react-components/react-overflow/src/components/OverflowItem/index.ts", - "hash": "18199425824488830312" - }, - { - "file": "packages/react-components/react-overflow/src/components/useOverflowStyles.styles.ts", - "hash": "16931751093871652445" - }, - { - "file": "packages/react-components/react-overflow/src/constants.ts", - "hash": "11914410734725550543" - }, - { - "file": "packages/react-components/react-overflow/src/index.ts", - "hash": "928923642684209487" - }, - { - "file": "packages/react-components/react-overflow/src/overflowContext.ts", - "hash": "7769612302933074122" - }, - { - "file": "packages/react-components/react-overflow/src/types.ts", - "hash": "5492746861660879830" - }, - { - "file": "packages/react-components/react-overflow/src/useIsOverflowGroupVisible.ts", - "hash": "4841996585229831820" - }, - { - "file": "packages/react-components/react-overflow/src/useIsOverflowItemVisible.ts", - "hash": "6306945866532867469" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowContainer.test.ts", - "hash": "11708115788843291653" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowContainer.ts", - "hash": "6511953937396193454" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowCount.ts", - "hash": "5628822841071015476" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowDivider.ts", - "hash": "7563026932439474358" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowItem.test.tsx", - "hash": "6068719971330329687" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowItem.ts", - "hash": "11076561095104277063" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowMenu.ts", - "hash": "2665228874597285133" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowVisibility.test.tsx", - "hash": "3159144109608287371" - }, - { - "file": "packages/react-components/react-overflow/src/useOverflowVisibility.ts", - "hash": "816675367100410748" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/Default.stories.tsx", - "hash": "13636933276269901073" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/Dividers.stories.tsx", - "hash": "17525297437007530058" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/LargerDividers.stories.tsx", - "hash": "12330010832915645500" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/MinimumVisible.stories.tsx", - "hash": "14537983058431798177" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/OverflowByPriority.stories.tsx", - "hash": "14209658414845891889" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/OverflowDescription.md", - "hash": "3103387157794012604" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/Pinned.stories.tsx", - "hash": "6120787215013052902" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/PriorityWithDividers.stories.tsx", - "hash": "1841267361857628080" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/ReverseDomOrder.stories.tsx", - "hash": "528035539893611447" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/Vertical.stories.tsx", - "hash": "15263716140745374237" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/Wrapped.stories.tsx", - "hash": "3049936368731116819" - }, - { - "file": "packages/react-components/react-overflow/stories/Overflow/index.stories.tsx", - "hash": "11843265896563295928" - }, - { - "file": "packages/react-components/react-overflow/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-overflow/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-overflow/tsconfig.lib.json", - "hash": "2390123189881839961" - }, - { - "file": "packages/react-components/react-overflow/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-infobutton": [ - { - "file": "packages/react-components/react-infobutton/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-infobutton/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-infobutton/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-infobutton/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-infobutton/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-infobutton/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-infobutton/CHANGELOG.json", - "hash": "15238147816511200513" - }, - { - "file": "packages/react-components/react-infobutton/CHANGELOG.md", - "hash": "13746918152090924083" - }, - { - "file": "packages/react-components/react-infobutton/LICENSE", - "hash": "17633016642573289784" - }, - { - "file": "packages/react-components/react-infobutton/README.md", - "hash": "6386604485399176422" - }, - { - "file": "packages/react-components/react-infobutton/bundle-size/InfoButton.fixture.js", - "hash": "759644844444210261" - }, - { - "file": "packages/react-components/react-infobutton/bundle-size/InfoLabel.fixture.js", - "hash": "8561557699756231013" - }, - { - "file": "packages/react-components/react-infobutton/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-infobutton/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-infobutton/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-infobutton/docs/Spec.md", - "hash": "12415704727702896077" - }, - { - "file": "packages/react-components/react-infobutton/etc/images/anatomy.png", - "hash": "13995183815818235250" - }, - { - "file": "packages/react-components/react-infobutton/etc/react-infobutton.api.md", - "hash": "7166180765339852355" - }, - { - "file": "packages/react-components/react-infobutton/jest.config.js", - "hash": "4511360346170781976" - }, - { - "file": "packages/react-components/react-infobutton/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-infobutton/package.json", - "hash": "10722911638598738598", - "deps": [ - "npm:@fluentui/react-icons", - "@fluentui/react-label", - "@fluentui/react-popover", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-infobutton/project.json", - "hash": "10924230166498856608" - }, - { - "file": "packages/react-components/react-infobutton/src/InfoButton.ts", - "hash": "6736681049567293007" - }, - { - "file": "packages/react-components/react-infobutton/src/InfoLabel.ts", - "hash": "10491035089563452821" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoButton/DefaultInfoButtonIcons.tsx", - "hash": "2356653625358885392" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.test.tsx", - "hash": "8713205559683010958" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.tsx", - "hash": "9270853198934657958" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.types.ts", - "hash": "12891027815312333985" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoButton/index.ts", - "hash": "7451520123696318723" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoButton/renderInfoButton.tsx", - "hash": "2954075369945934214" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoButton/useInfoButton.tsx", - "hash": "3914295003966763922" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoButton/useInfoButtonStyles.styles.ts", - "hash": "12015306674106208473" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.cy.tsx", - "hash": "14532858853239359506" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.test.tsx", - "hash": "1718709338479656088" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.tsx", - "hash": "13094067001932444234" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.types.ts", - "hash": "8128906299140167967" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoLabel/index.ts", - "hash": "1040167975180781477" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoLabel/renderInfoLabel.tsx", - "hash": "12063702469681501912" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts", - "hash": "10543420685351752865" - }, - { - "file": "packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabelStyles.styles.ts", - "hash": "14482136840318409233" - }, - { - "file": "packages/react-components/react-infobutton/src/index.ts", - "hash": "1780398361093080958" - }, - { - "file": "packages/react-components/react-infobutton/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-infobutton/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-infobutton/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-infobutton/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-infobutton/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/perf-test": [ - { - "file": "apps/perf-test/.eslintrc.json", - "hash": "10547952771306076160" - }, - { - "file": "apps/perf-test/CHANGELOG.json", - "hash": "3690860680265631274" - }, - { - "file": "apps/perf-test/CHANGELOG.md", - "hash": "9969572947780794950" - }, - { - "file": "apps/perf-test/README.md", - "hash": "12764928321652014507" - }, - { - "file": "apps/perf-test/config/perf-test/index.ts", - "hash": "15575701111399511894" - }, - { - "file": "apps/perf-test/config/perf-test/scenarioIterations.ts", - "hash": "1467367775531702909" - }, - { - "file": "apps/perf-test/config/perf-test/scenarioNames.ts", - "hash": "10066279640267329814" - }, - { - "file": "apps/perf-test/config/perf-test/scenarioRenderTypes.ts", - "hash": "14788378254920081233" - }, - { - "file": "apps/perf-test/config/pre-copy.json", - "hash": "5251859254196291210" - }, - { - "file": "apps/perf-test/index.html", - "hash": "2745716322290525623" - }, - { - "file": "apps/perf-test/just.config.ts", - "hash": "4618050165307861195" - }, - { - "file": "apps/perf-test/package.json", - "hash": "4151768643695656396", - "deps": [ - "@fluentui/scripts-perf-test-flamegrill", - "@fluentui/example-data", - "@fluentui/react", - "npm:@microsoft/load-themed-styles", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-storybook" - ] - }, - { - "file": "apps/perf-test/project.json", - "hash": "5899890915664975397" - }, - { - "file": "apps/perf-test/src/app.tsx", - "hash": "12332207993597947267" - }, - { - "file": "apps/perf-test/src/scenarios/BaseButton.tsx", - "hash": "7039729498171122609" - }, - { - "file": "apps/perf-test/src/scenarios/Breadcrumb.tsx", - "hash": "16313024224495253730" - }, - { - "file": "apps/perf-test/src/scenarios/Checkbox.tsx", - "hash": "17155260053343035107" - }, - { - "file": "apps/perf-test/src/scenarios/CheckboxBase.tsx", - "hash": "10358952204764439200" - }, - { - "file": "apps/perf-test/src/scenarios/ChoiceGroup.tsx", - "hash": "15318243762546027140" - }, - { - "file": "apps/perf-test/src/scenarios/ComboBox.tsx", - "hash": "18118694370519216172" - }, - { - "file": "apps/perf-test/src/scenarios/CommandBar.tsx", - "hash": "6091443890586328828" - }, - { - "file": "apps/perf-test/src/scenarios/ContextualMenu.tsx", - "hash": "14094654232604367120" - }, - { - "file": "apps/perf-test/src/scenarios/DefaultButton.tsx", - "hash": "13562761979210098938" - }, - { - "file": "apps/perf-test/src/scenarios/DetailsRow.tsx", - "hash": "10889146823819281010" - }, - { - "file": "apps/perf-test/src/scenarios/DetailsRowFast.tsx", - "hash": "9350356486541871260" - }, - { - "file": "apps/perf-test/src/scenarios/DetailsRowNoStyles.tsx", - "hash": "3324923498330798880" - }, - { - "file": "apps/perf-test/src/scenarios/Dialog.tsx", - "hash": "1622520893332066150" - }, - { - "file": "apps/perf-test/src/scenarios/DocumentCardTitle.tsx", - "hash": "4017785122739704762" - }, - { - "file": "apps/perf-test/src/scenarios/Dropdown.tsx", - "hash": "9674266945938654081" - }, - { - "file": "apps/perf-test/src/scenarios/FocusTrapZone.tsx", - "hash": "12804820792601734124" - }, - { - "file": "apps/perf-test/src/scenarios/FocusZone.tsx", - "hash": "1772332301941374739" - }, - { - "file": "apps/perf-test/src/scenarios/GroupedList.tsx", - "hash": "2729166176625295421" - }, - { - "file": "apps/perf-test/src/scenarios/GroupedListV2.tsx", - "hash": "6083440523386377794" - }, - { - "file": "apps/perf-test/src/scenarios/IconButton.tsx", - "hash": "9783541165587624706" - }, - { - "file": "apps/perf-test/src/scenarios/Label.tsx", - "hash": "10333297231209743060" - }, - { - "file": "apps/perf-test/src/scenarios/Layer.tsx", - "hash": "7525187532864277839" - }, - { - "file": "apps/perf-test/src/scenarios/Link.tsx", - "hash": "17134170605875713013" - }, - { - "file": "apps/perf-test/src/scenarios/MenuButton.tsx", - "hash": "12482470571362753709" - }, - { - "file": "apps/perf-test/src/scenarios/MessageBar.tsx", - "hash": "6613648289670595058" - }, - { - "file": "apps/perf-test/src/scenarios/Nav.tsx", - "hash": "5798771953346508490" - }, - { - "file": "apps/perf-test/src/scenarios/OverflowSet.tsx", - "hash": "9513079940270145993" - }, - { - "file": "apps/perf-test/src/scenarios/Panel.tsx", - "hash": "1158665086373748648" - }, - { - "file": "apps/perf-test/src/scenarios/Persona.tsx", - "hash": "18289029128740009386" - }, - { - "file": "apps/perf-test/src/scenarios/Pivot.tsx", - "hash": "10244319942289181285" - }, - { - "file": "apps/perf-test/src/scenarios/PrimaryButton.tsx", - "hash": "12459806105681511644" - }, - { - "file": "apps/perf-test/src/scenarios/Rating.tsx", - "hash": "14731327159912128514" - }, - { - "file": "apps/perf-test/src/scenarios/SearchBox.tsx", - "hash": "5237818112665442932" - }, - { - "file": "apps/perf-test/src/scenarios/Shimmer.tsx", - "hash": "11956647389275749102" - }, - { - "file": "apps/perf-test/src/scenarios/Slider.tsx", - "hash": "11778722341113439217" - }, - { - "file": "apps/perf-test/src/scenarios/SpinButton.tsx", - "hash": "9965853523492667198" - }, - { - "file": "apps/perf-test/src/scenarios/Spinner.tsx", - "hash": "2726138929103130728" - }, - { - "file": "apps/perf-test/src/scenarios/SplitButton.tsx", - "hash": "477263295800307708" - }, - { - "file": "apps/perf-test/src/scenarios/Stack.tsx", - "hash": "1140119322094176286" - }, - { - "file": "apps/perf-test/src/scenarios/StackWithIntrinsicChildren.tsx", - "hash": "1362817365828357956" - }, - { - "file": "apps/perf-test/src/scenarios/StackWithTextChildren.tsx", - "hash": "11161962004038112758" - }, - { - "file": "apps/perf-test/src/scenarios/SwatchColorPicker.tsx", - "hash": "13643965778697826890" - }, - { - "file": "apps/perf-test/src/scenarios/TagPicker.tsx", - "hash": "4504938228669326581" - }, - { - "file": "apps/perf-test/src/scenarios/TeachingBubble.tsx", - "hash": "2658825098623550378" - }, - { - "file": "apps/perf-test/src/scenarios/Text.tsx", - "hash": "11640958193635725056" - }, - { - "file": "apps/perf-test/src/scenarios/TextField.tsx", - "hash": "17031475880417719245" - }, - { - "file": "apps/perf-test/src/scenarios/ThemeProvider.tsx", - "hash": "11898213004948485176" - }, - { - "file": "apps/perf-test/src/scenarios/Toggle.tsx", - "hash": "4108297911933308158" - }, - { - "file": "apps/perf-test/src/scenarios/buttonNative.tsx", - "hash": "15107688448206415163" - }, - { - "file": "apps/perf-test/tsconfig.json", - "hash": "14794982171392571729" - }, - { - "file": "apps/perf-test/webpack.config.js", - "hash": "14057463434392795636" - } - ], - "@fluentui/scripts-beachball": [ - { - "file": "scripts/beachball/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/beachball/base.config.json", - "hash": "18294427476962403546" - }, - { - "file": "scripts/beachball/config.test.ts", - "hash": "17068829733399846091" - }, - { - "file": "scripts/beachball/customRenderers.ts", - "hash": "2804302704640461371" - }, - { - "file": "scripts/beachball/index.ts", - "hash": "3737354317537434882" - }, - { - "file": "scripts/beachball/jest.config.js", - "hash": "2008262210406061286" - }, - { - "file": "scripts/beachball/package.json", - "hash": "953464476337955798", - "deps": ["@fluentui/scripts-github", "@fluentui/scripts-monorepo", "@fluentui/scripts-ts-node"] - }, - { - "file": "scripts/beachball/project.json", - "hash": "73363171559233326" - }, - { - "file": "scripts/beachball/register.js", - "hash": "7204532544120368288" - }, - { - "file": "scripts/beachball/release-v8.config.js", - "hash": "12329776896108476656" - }, - { - "file": "scripts/beachball/release-vNext.config.js", - "hash": "12645380069464220490" - }, - { - "file": "scripts/beachball/shared.config.ts", - "hash": "3554874950759589528" - }, - { - "file": "scripts/beachball/tsconfig.json", - "hash": "3297202739442548297" - }, - { - "file": "scripts/beachball/tsconfig.lib.json", - "hash": "2990800560681471715" - }, - { - "file": "scripts/beachball/tsconfig.spec.json", - "hash": "16242416785763058919" - }, - { - "file": "scripts/beachball/utils.ts", - "hash": "13805748505039690586" - } - ], - "@fluentui/react-tabster": [ - { - "file": "packages/react-components/react-tabster/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-tabster/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-tabster/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-tabster/CHANGELOG.json", - "hash": "17283868674843285410" - }, - { - "file": "packages/react-components/react-tabster/CHANGELOG.md", - "hash": "1343400762706998062" - }, - { - "file": "packages/react-components/react-tabster/LICENSE", - "hash": "8780663838113620346" - }, - { - "file": "packages/react-components/react-tabster/README.md", - "hash": "12252804276424131116" - }, - { - "file": "packages/react-components/react-tabster/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-tabster/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-tabster/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-tabster/etc/react-tabster.api.md", - "hash": "2288916014796255296" - }, - { - "file": "packages/react-components/react-tabster/jest.config.js", - "hash": "18325348387735168838" - }, - { - "file": "packages/react-components/react-tabster/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-tabster/package.json", - "hash": "9722559108762075220", - "deps": [ - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "npm:keyborg", - "npm:tabster", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-tabster/project.json", - "hash": "4885231158788135051" - }, - { - "file": "packages/react-components/react-tabster/src/focus/constants.ts", - "hash": "11610761315621037017" - }, - { - "file": "packages/react-components/react-tabster/src/focus/createCustomFocusIndicatorStyle.ts", - "hash": "10135999026179805427" - }, - { - "file": "packages/react-components/react-tabster/src/focus/createFocusOutlineStyle.ts", - "hash": "2999734728216420753" - }, - { - "file": "packages/react-components/react-tabster/src/focus/focusVisiblePolyfill.test.ts", - "hash": "7780914345110669573" - }, - { - "file": "packages/react-components/react-tabster/src/focus/focusVisiblePolyfill.ts", - "hash": "17613086650502476862" - }, - { - "file": "packages/react-components/react-tabster/src/focus/focusWithinPolyfill.ts", - "hash": "13269786247543402149" - }, - { - "file": "packages/react-components/react-tabster/src/focus/index.ts", - "hash": "119617557468013632" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/index.ts", - "hash": "10780671055306574479" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useArrowNavigationGroup.ts", - "hash": "13010941348645235525" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useFocusFinders.ts", - "hash": "4287553250764137007" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useFocusObserved.ts", - "hash": "5423822093800652739" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useFocusVisible.cy.tsx", - "hash": "7947075782985402033" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useFocusVisible.test.tsx", - "hash": "1954438373418047311" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useFocusVisible.ts", - "hash": "11746992728975359453" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useFocusWithin.ts", - "hash": "514927461607676297" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useFocusableGroup.ts", - "hash": "3474408154515309341" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useKeyboardNavAttribute.ts", - "hash": "13537309225714687781" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useMergeTabsterAttributes.ts", - "hash": "10846465615831234216" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useModalAttributes.ts", - "hash": "7363526368192805001" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useObservedElement.ts", - "hash": "5721509457510651126" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useRestoreFocus.ts", - "hash": "11825775820569907957" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useTabster.ts", - "hash": "6433329624895994249" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useTabsterAttributes.ts", - "hash": "12511269325455079018" - }, - { - "file": "packages/react-components/react-tabster/src/hooks/useUncontrolledFocus.ts", - "hash": "3918052114715897957" - }, - { - "file": "packages/react-components/react-tabster/src/index.ts", - "hash": "11056968312503357075" - }, - { - "file": "packages/react-components/react-tabster/src/useFocusObserved.cy.tsx", - "hash": "4941677566385580864" - }, - { - "file": "packages/react-components/react-tabster/src/useKeyborg.cy.tsx", - "hash": "2163661386752319470" - }, - { - "file": "packages/react-components/react-tabster/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-tabster/tsconfig.json", - "hash": "5596071008249197618" - }, - { - "file": "packages/react-components/react-tabster/tsconfig.lib.json", - "hash": "4109592473830538944" - }, - { - "file": "packages/react-components/react-tabster/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-migration-v0-v9": [ - { - "file": "packages/react-components/react-migration-v0-v9/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-migration-v0-v9/.eslintrc.json", - "hash": "12940771472901318782" - }, - { - "file": "packages/react-components/react-migration-v0-v9/.storybook/main.js", - "hash": "4776051661051838074" - }, - { - "file": "packages/react-components/react-migration-v0-v9/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-migration-v0-v9/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-migration-v0-v9/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-migration-v0-v9/CHANGELOG.json", - "hash": "10897993854186447786" - }, - { - "file": "packages/react-components/react-migration-v0-v9/CHANGELOG.md", - "hash": "13587647231916958745" - }, - { - "file": "packages/react-components/react-migration-v0-v9/LICENSE", - "hash": "11594246018623427034" - }, - { - "file": "packages/react-components/react-migration-v0-v9/README.md", - "hash": "9978296153426966189" - }, - { - "file": "packages/react-components/react-migration-v0-v9/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-migration-v0-v9/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-migration-v0-v9/etc/react-migration-v0-v9.api.md", - "hash": "7256229108422340938" - }, - { - "file": "packages/react-components/react-migration-v0-v9/jest.config.js", - "hash": "12315810592738285777" - }, - { - "file": "packages/react-components/react-migration-v0-v9/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-migration-v0-v9/package.json", - "hash": "4946657624895448195", - "deps": [ - "@fluentui/react-aria", - "@fluentui/react-components", - "@fluentui/react-context-selector", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-northstar", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "@fluentui/scripts-storybook", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-migration-v0-v9/project.json", - "hash": "8381556923960860136" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Button/ButtonMigration.mixins.test.ts", - "hash": "13688439579328644579" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Button/ButtonMigration.mixins.ts", - "hash": "1521380022745067625" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Button/__snapshots__/ButtonMigration.mixins.test.ts.snap", - "hash": "15238523249422194295" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Button/index.tsx", - "hash": "15015419502366000969" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.styles.ts", - "hash": "9815013043102458902" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.test.tsx", - "hash": "10901172007854977441" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.tsx", - "hash": "17887385485034197387" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/FlexItem.mixins.test.ts", - "hash": "11976568329525176935" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/FlexItem.mixins.ts", - "hash": "387312665307964792" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Flex/index.ts", - "hash": "3930111333542680336" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/FormField/FormFieldShim.tsx", - "hash": "8378950965437301147" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/FormField/index.ts", - "hash": "14212427842038029290" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.mixins.test.ts", - "hash": "5330293473945457870" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.mixins.ts", - "hash": "9668215664283966023" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.styles.ts", - "hash": "10034584101967878894" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/GridShim.test.tsx", - "hash": "755034056319894577" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/GridShim.tsx", - "hash": "626707608599544926" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Grid/index.ts", - "hash": "15523671876724164145" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Input/Input.mixins.test.ts", - "hash": "15443926802107261170" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Input/Input.mixins.ts", - "hash": "1228629484584016948" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Input/index.ts", - "hash": "406734113437868625" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.styles.ts", - "hash": "9958570926942258881" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.test.tsx", - "hash": "16916108475755138538" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.tsx", - "hash": "475159289973551721" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/ItemLayout/index.tsx", - "hash": "3113838002366069990" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/List.test.tsx", - "hash": "12805398032478901779" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/List.tsx", - "hash": "4068680904225237891" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/List.types.ts", - "hash": "11908378584937348503" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/__snapshots__/List.test.tsx.snap", - "hash": "12189414601608078303" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/index.ts", - "hash": "17107546934093025866" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/listContext.ts", - "hash": "9337597684660879030" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/renderList.tsx", - "hash": "2186521174788678765" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/useList.ts", - "hash": "11318024193224137697" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/useListContextValues.ts", - "hash": "11563979621193940730" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/List/useListStyles.styles.ts", - "hash": "10381177976274865563" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.test.tsx", - "hash": "8056764134477992026" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.tsx", - "hash": "12481687515454290723" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.types.ts", - "hash": "13437384804128457294" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/__snapshots__/ListItem.test.tsx.snap", - "hash": "9019909192155778823" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/index.ts", - "hash": "13458219659794583076" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/renderListItem.tsx", - "hash": "14567909198214388091" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/useListItem.tsx", - "hash": "8349808383490405801" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/ListItem/useListItemStyles.styles.ts", - "hash": "10549323801670309271" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/hooks/index.ts", - "hash": "14536450081702718010" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/hooks/types.ts", - "hash": "11011618432504847952" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/hooks/useListSelection.tsx", - "hash": "18367481209994946833" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/List/index.ts", - "hash": "6837911686204013385" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Primitive/Primitive.test.tsx", - "hash": "10954895803829758288" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Primitive/Primitive.tsx", - "hash": "8102630166808687777" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Primitive/index.tsx", - "hash": "8320853195778671583" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.styles.ts", - "hash": "163465406698795241" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.test.tsx", - "hash": "2074843457095701442" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.tsx", - "hash": "9318348374337572435" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Segment/index.ts", - "hash": "6478703878423887942" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Slider/Slider.mixins.test.ts", - "hash": "14618851225306044609" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Slider/Slider.mixins.ts", - "hash": "1724504369532945724" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Slider/index.ts", - "hash": "4185767866868550439" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Spinner/SpinnerMigration.mixins.test.ts", - "hash": "2617086967168608302" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Spinner/SpinnerMigration.mixins.ts", - "hash": "1036577262271937885" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/Spinner/index.tsx", - "hash": "1625672833113366276" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.styles.ts", - "hash": "9672829306212420518" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.test.tsx", - "hash": "11969189071958437142" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.tsx", - "hash": "11324608273378346647" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/components/StyledText/index.tsx", - "hash": "9128570621886886223" - }, - { - "file": "packages/react-components/react-migration-v0-v9/src/index.ts", - "hash": "1478560306537712184" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/Button/Description.md", - "hash": "17654230325647330180" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/Button/index.stories.tsx", - "hash": "2357883713191857365" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/Flex/Description.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/Flex/index.stories.tsx", - "hash": "11624234279834608424" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/FormFieldShim/Description.md", - "hash": "17245299467260723598" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/FormFieldShim/index.stories.tsx", - "hash": "5822881442487782254" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/GridShim/Description.md", - "hash": "11904517854334539499" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/GridShim/index.stories.tsx", - "hash": "6258327294094268259" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/Input/Description.md", - "hash": "13460661974646312287" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/Input/index.stories.tsx", - "hash": "4344639936932010242" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/List/Default.stories.tsx", - "hash": "7596825406422268438" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/List/ListDescription.md", - "hash": "17355733937330781996" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/List/Navigable.stories.tsx", - "hash": "15380368917294536797" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/List/Selectable.stories.tsx", - "hash": "12620296337149399839" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/List/index.stories.tsx", - "hash": "6157921948866129838" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/SegmentShim/Description.md", - "hash": "15545594269846251957" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/SegmentShim/index.stories.tsx", - "hash": "12880934640704780643" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/SliderMixin/Description.md", - "hash": "8272780712725776392" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/SliderMixin/index.stories.tsx", - "hash": "6363553375590128729" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/Spinner/Description.md", - "hash": "10637276773146727799" - }, - { - "file": "packages/react-components/react-migration-v0-v9/stories/Spinner/index.stories.tsx", - "hash": "10694249060338362664" - }, - { - "file": "packages/react-components/react-migration-v0-v9/tsconfig.json", - "hash": "13343058975825373724" - }, - { - "file": "packages/react-components/react-migration-v0-v9/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-migration-v0-v9/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/ability-attributes": [ - { - "file": "packages/fluentui/ability-attributes/.gitignore", - "hash": "11739575227553609806" - }, - { - "file": "packages/fluentui/ability-attributes/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/ability-attributes/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/ability-attributes/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/ability-attributes/package.json", - "hash": "15170941952482138179", - "deps": [ - "npm:ability-attributes", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "npm:ability-attributes-generator" - ] - }, - { - "file": "packages/fluentui/ability-attributes/project.json", - "hash": "1227490013893515185" - }, - { - "file": "packages/fluentui/ability-attributes/schema.json", - "hash": "10503311233137281773" - }, - { - "file": "packages/fluentui/ability-attributes/src/index.ts", - "hash": "2999499642231436910" - }, - { - "file": "packages/fluentui/ability-attributes/tsconfig.json", - "hash": "9156245422548100079" - } - ], - "@fluentui/react-migration-v8-v9": [ - { - "file": "packages/react-components/react-migration-v8-v9/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-migration-v8-v9/.eslintrc.json", - "hash": "12940771472901318782" - }, - { - "file": "packages/react-components/react-migration-v8-v9/.storybook/main.js", - "hash": "7685356111495756458" - }, - { - "file": "packages/react-components/react-migration-v8-v9/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-migration-v8-v9/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-migration-v8-v9/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-migration-v8-v9/CHANGELOG.json", - "hash": "4482660811503421238" - }, - { - "file": "packages/react-components/react-migration-v8-v9/CHANGELOG.md", - "hash": "3437347504588188651" - }, - { - "file": "packages/react-components/react-migration-v8-v9/LICENSE", - "hash": "10913970292391220170" - }, - { - "file": "packages/react-components/react-migration-v8-v9/README.md", - "hash": "15667163717531608187" - }, - { - "file": "packages/react-components/react-migration-v8-v9/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-migration-v8-v9/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-migration-v8-v9/docs/Spec.md", - "hash": "3855974602588191742" - }, - { - "file": "packages/react-components/react-migration-v8-v9/etc/react-migration-v8-v9.api.md", - "hash": "2219432216497333075" - }, - { - "file": "packages/react-components/react-migration-v8-v9/jest.config.js", - "hash": "12480753325623125896" - }, - { - "file": "packages/react-components/react-migration-v8-v9/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-migration-v8-v9/package.json", - "hash": "663868487500583523", - "deps": [ - "npm:@ctrl/tinycolor", - "@fluentui/fluent2-theme", - "@fluentui/react", - "@fluentui/react-components", - "npm:@fluentui/react-icons", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-migration-v8-v9/project.json", - "hash": "17528918550118370943" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/ActionButtonShim.tsx", - "hash": "4110087356959872754" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/ButtonShim.tsx", - "hash": "16685654881402239626" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/CommandButtonShim.tsx", - "hash": "4759681242635364297" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/CompoundButtonShim.tsx", - "hash": "980584788610671562" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/DefaultButtonShim.tsx", - "hash": "1506610680792068683" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/MenuButtonShim.tsx", - "hash": "8742878838054043627" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/PrimaryButtonShim.tsx", - "hash": "6779100275448036846" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/ToggleButtonShim.tsx", - "hash": "14084275913679095107" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/index.ts", - "hash": "15474820367684411221" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Button/shimButtonProps.tsx", - "hash": "13480263659535974927" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Menu/MenuShim.tsx", - "hash": "326950797068294927" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Menu/index.ts", - "hash": "8609775169523161902" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Menu/shimMenuProps.tsx", - "hash": "6020802296135092829" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/StackItemShim.styles.ts", - "hash": "4960978407952946760" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/StackItemShim.tsx", - "hash": "14483473330383428973" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/StackShim.styles.ts", - "hash": "6869802001657343935" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/StackShim.tsx", - "hash": "7702757711522861692" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/index.ts", - "hash": "1941368763660759388" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Stack/stackUtils.ts", - "hash": "523900441251478792" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/index.ts", - "hash": "3659296414290183689" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/themeDuplicates.ts", - "hash": "3014332871161126707" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/v8ThemeShim.ts", - "hash": "7128294389039183692" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/v9BrandVariantsShim.ts", - "hash": "15701946189222231667" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/components/Theme/v9ThemeShim.ts", - "hash": "16396774737410343002" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/index.ts", - "hash": "15917486237367269151" - }, - { - "file": "packages/react-components/react-migration-v8-v9/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ActionButtonShim/Description.md", - "hash": "17799358882441678529" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ActionButtonShim/index.stories.tsx", - "hash": "9619742389496589062" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/CommandButtonShim/Description.md", - "hash": "15808068507500321486" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/CommandButtonShim/index.stories.tsx", - "hash": "18400507665025012879" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/CompoundButtonShim/Description.md", - "hash": "15615121418417537709" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/CompoundButtonShim/index.stories.tsx", - "hash": "6103598228001237977" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/DefaultButtonShim/Description.md", - "hash": "15808068507500321486" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/DefaultButtonShim/index.stories.tsx", - "hash": "265941327074415516" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/MenuButtonShim/Description.md", - "hash": "14517934418526815308" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/MenuButtonShim/index.stories.tsx", - "hash": "17296333858974276990" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/PrimaryButtonShim/Description.md", - "hash": "6403447194976241983" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/PrimaryButtonShim/index.stories.tsx", - "hash": "9512401406819475429" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/Stack/Description.md", - "hash": "15468957204558403920" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/Stack/index.stories.tsx", - "hash": "13606024100413921215" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/ThemePreviewV8.stories.tsx", - "hash": "8609587245661663745" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/ThemePreviewV9.stories.tsx", - "hash": "13812748298400740871" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createBrandVariants/Description.md", - "hash": "2972834094669803032" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createBrandVariants/index.stories.tsx", - "hash": "3007379002370881485" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV8Theme/Description.md", - "hash": "8730786855857856968" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV8Theme/index.stories.tsx", - "hash": "7073847923381154773" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV9Theme/Description.md", - "hash": "16317707978565389600" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV9Theme/index.stories.tsx", - "hash": "1981086446371619663" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ToggleButtonShim/Description.md", - "hash": "6884975637287055051" - }, - { - "file": "packages/react-components/react-migration-v8-v9/stories/ToggleButtonShim/index.stories.tsx", - "hash": "12333612406901703840" - }, - { - "file": "packages/react-components/react-migration-v8-v9/tsconfig.json", - "hash": "4817934933929993148" - }, - { - "file": "packages/react-components/react-migration-v8-v9/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-migration-v8-v9/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-lint-staged": [ - { - "file": "scripts/lint-staged/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/lint-staged/eslint-for-package.js", - "hash": "4738514625431014423" - }, - { - "file": "scripts/lint-staged/eslint.js", - "hash": "13861068640127141789" - }, - { - "file": "scripts/lint-staged/jest.config.js", - "hash": "7963143772161094500" - }, - { - "file": "scripts/lint-staged/package.json", - "hash": "7493691809580746414", - "deps": ["@fluentui/scripts-monorepo"] - }, - { - "file": "scripts/lint-staged/project.json", - "hash": "14668309250613706165" - }, - { - "file": "scripts/lint-staged/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/lint-staged/tsconfig.lib.json", - "hash": "3753806828268919288" - }, - { - "file": "scripts/lint-staged/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/vr-tests": [ - { - "file": "apps/vr-tests/.eslintrc.json", - "hash": "10551831104493574097" - }, - { - "file": "apps/vr-tests/.storybook/main.js", - "hash": "14940333360803121656" - }, - { - "file": "apps/vr-tests/.storybook/manager.js", - "hash": "8031267414392898657" - }, - { - "file": "apps/vr-tests/.storybook/preview.js", - "hash": "3982292904030882131" - }, - { - "file": "apps/vr-tests/CHANGELOG.json", - "hash": "7449587578967385188" - }, - { - "file": "apps/vr-tests/CHANGELOG.md", - "hash": "2930179689752298073" - }, - { - "file": "apps/vr-tests/dndSim.js", - "hash": "724746063622656033" - }, - { - "file": "apps/vr-tests/just.config.ts", - "hash": "2411455081002746933" - }, - { - "file": "apps/vr-tests/package.json", - "hash": "5047474567217814010", - "deps": [ - "@fluentui/example-data", - "@fluentui/font-icons-mdl2", - "@fluentui/react", - "@fluentui/react-experiments", - "@fluentui/react-hooks", - "@fluentui/react-icons-mdl2", - "@fluentui/storybook", - "@fluentui/react-charting", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-storybook", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "apps/vr-tests/project.json", - "hash": "15420030406986740766" - }, - { - "file": "apps/vr-tests/src/stories/ActivityItem.stories.tsx", - "hash": "11569687009388202467" - }, - { - "file": "apps/vr-tests/src/stories/Breadcrumb.stories.tsx", - "hash": "15341591510460372817" - }, - { - "file": "apps/vr-tests/src/stories/Button.stories.tsx", - "hash": "2914444188833757479" - }, - { - "file": "apps/vr-tests/src/stories/Calendar.stories.tsx", - "hash": "8538109429933462804" - }, - { - "file": "apps/vr-tests/src/stories/Checkbox.stories.tsx", - "hash": "3325419673387896680" - }, - { - "file": "apps/vr-tests/src/stories/ChoiceGroup.stories.tsx", - "hash": "1195574547624136369" - }, - { - "file": "apps/vr-tests/src/stories/Coachmark.stories.tsx", - "hash": "13321973702134234996" - }, - { - "file": "apps/vr-tests/src/stories/ColorPicker.stories.tsx", - "hash": "1213299846978993705" - }, - { - "file": "apps/vr-tests/src/stories/ComboBox.stories.tsx", - "hash": "9573414728786821330" - }, - { - "file": "apps/vr-tests/src/stories/CommandBar.stories.tsx", - "hash": "16263711139643921965" - }, - { - "file": "apps/vr-tests/src/stories/ContextualMenu.stories.tsx", - "hash": "7001519228488221050" - }, - { - "file": "apps/vr-tests/src/stories/DatePicker.stories.tsx", - "hash": "11469137129615659110" - }, - { - "file": "apps/vr-tests/src/stories/DetailsHeader.stories.tsx", - "hash": "5006577645632454049" - }, - { - "file": "apps/vr-tests/src/stories/DetailsList.stories.tsx", - "hash": "2879269659033154743" - }, - { - "file": "apps/vr-tests/src/stories/Dialog.stories.tsx", - "hash": "8052652729179956677" - }, - { - "file": "apps/vr-tests/src/stories/DocumentCard.stories.tsx", - "hash": "13899581374990015662" - }, - { - "file": "apps/vr-tests/src/stories/Dropdown.stories.tsx", - "hash": "2496251228511985784" - }, - { - "file": "apps/vr-tests/src/stories/Facepile.stories.tsx", - "hash": "12643002484132090873" - }, - { - "file": "apps/vr-tests/src/stories/FocusTrapZone.stories.tsx", - "hash": "5799413550175548528" - }, - { - "file": "apps/vr-tests/src/stories/FolderCover.stories.tsx", - "hash": "4906025218546588645" - }, - { - "file": "apps/vr-tests/src/stories/Fonts.stories.tsx", - "hash": "9549012890812409892" - }, - { - "file": "apps/vr-tests/src/stories/GroupedList.stories.tsx", - "hash": "11989572581811905811" - }, - { - "file": "apps/vr-tests/src/stories/HoverCard.stories.tsx", - "hash": "9319677405272986757" - }, - { - "file": "apps/vr-tests/src/stories/Icon.stories.tsx", - "hash": "15565848215587566233" - }, - { - "file": "apps/vr-tests/src/stories/Image.stories.tsx", - "hash": "6543648971192419845" - }, - { - "file": "apps/vr-tests/src/stories/Keytip.stories.tsx", - "hash": "14260629868498047882" - }, - { - "file": "apps/vr-tests/src/stories/Label.stories.tsx", - "hash": "16290920097226483294" - }, - { - "file": "apps/vr-tests/src/stories/Layer.stories.tsx", - "hash": "5774399677897090021" - }, - { - "file": "apps/vr-tests/src/stories/Link.stories.tsx", - "hash": "7575426125237736148" - }, - { - "file": "apps/vr-tests/src/stories/List.stories.tsx", - "hash": "8890180346033902095" - }, - { - "file": "apps/vr-tests/src/stories/MessageBar.stories.tsx", - "hash": "17616959218745846857" - }, - { - "file": "apps/vr-tests/src/stories/Modal.stories.tsx", - "hash": "9481699508246475797" - }, - { - "file": "apps/vr-tests/src/stories/Nav.stories.tsx", - "hash": "3467793982394536754" - }, - { - "file": "apps/vr-tests/src/stories/OverflowSet.stories.tsx", - "hash": "11103702669391570247" - }, - { - "file": "apps/vr-tests/src/stories/Overlay.stories.tsx", - "hash": "7861384592809448582" - }, - { - "file": "apps/vr-tests/src/stories/Panel.stories.tsx", - "hash": "4738198071916866546" - }, - { - "file": "apps/vr-tests/src/stories/PeoplePicker.stories.tsx", - "hash": "9173552436371785845" - }, - { - "file": "apps/vr-tests/src/stories/Persona.stories.tsx", - "hash": "16082800449887917174" - }, - { - "file": "apps/vr-tests/src/stories/Pivot.stories.tsx", - "hash": "484161555692287630" - }, - { - "file": "apps/vr-tests/src/stories/ProgressIndicator.stories.tsx", - "hash": "7137422605283021864" - }, - { - "file": "apps/vr-tests/src/stories/Rating.stories.tsx", - "hash": "8013473872216302645" - }, - { - "file": "apps/vr-tests/src/stories/ResizeGroup.stories.tsx", - "hash": "14761542910375483519" - }, - { - "file": "apps/vr-tests/src/stories/ScrollablePane.DetailsList.stories.tsx", - "hash": "2739168817822626656" - }, - { - "file": "apps/vr-tests/src/stories/ScrollablePane.GroupedDetailsList.stories.tsx", - "hash": "14761350823260518667" - }, - { - "file": "apps/vr-tests/src/stories/ScrollablePane.stories.tsx", - "hash": "13192871338079180854" - }, - { - "file": "apps/vr-tests/src/stories/SearchBox.stories.tsx", - "hash": "10379901043117580437" - }, - { - "file": "apps/vr-tests/src/stories/Separator.stories.tsx", - "hash": "13858622861667232974" - }, - { - "file": "apps/vr-tests/src/stories/Shimmer.stories.tsx", - "hash": "2903504102464264659" - }, - { - "file": "apps/vr-tests/src/stories/Signals.stories.tsx", - "hash": "17328372343649759425" - }, - { - "file": "apps/vr-tests/src/stories/Slider.stories.tsx", - "hash": "2368783335741726350" - }, - { - "file": "apps/vr-tests/src/stories/SpinButton.stories.tsx", - "hash": "8338452628845866471" - }, - { - "file": "apps/vr-tests/src/stories/Spinner.stories.tsx", - "hash": "1055217432712008178" - }, - { - "file": "apps/vr-tests/src/stories/Stack.stories.tsx", - "hash": "6523560878963516561" - }, - { - "file": "apps/vr-tests/src/stories/Sticky.Breadcrumb.stories.tsx", - "hash": "4487830027107272051" - }, - { - "file": "apps/vr-tests/src/stories/Suggestions.stories.tsx", - "hash": "17815861088103051556" - }, - { - "file": "apps/vr-tests/src/stories/SwatchColorPicker.stories.tsx", - "hash": "13775012423130559181" - }, - { - "file": "apps/vr-tests/src/stories/TagPicker.stories.tsx", - "hash": "14671286227568644399" - }, - { - "file": "apps/vr-tests/src/stories/TeachingBubble.stories.tsx", - "hash": "9348122633621119111" - }, - { - "file": "apps/vr-tests/src/stories/Text.stories.tsx", - "hash": "8527555373311206159" - }, - { - "file": "apps/vr-tests/src/stories/TextField.stories.tsx", - "hash": "11402453234080773139" - }, - { - "file": "apps/vr-tests/src/stories/ThemeProvider.stories.tsx", - "hash": "16275933529011562097" - }, - { - "file": "apps/vr-tests/src/stories/Tile.stories.tsx", - "hash": "14561588542669597183" - }, - { - "file": "apps/vr-tests/src/stories/TilesList.stories.tsx", - "hash": "3260762837761387433" - }, - { - "file": "apps/vr-tests/src/stories/Toggle.stories.tsx", - "hash": "10938683553158804823" - }, - { - "file": "apps/vr-tests/src/stories/Tooltip.stories.tsx", - "hash": "15939194512245739562" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/AreaChart.stories.tsx", - "hash": "8203280599867073608" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/DonutChart.stories.tsx", - "hash": "11937359916768393790" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/GaugeChart.stories.tsx", - "hash": "15594215412651597314" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/HeatMapChart.stories.tsx", - "hash": "17519556808732036733" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/HorizontalBarChart.stories.tsx", - "hash": "13460446107341381296" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/Legend.stories.tsx", - "hash": "4654126725540170806" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/LineChart.stories.tsx", - "hash": "6506744441684266097" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/MultiStackBarChart.stories.tsx", - "hash": "7178505763800800532" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/Piechart.stories.tsx", - "hash": "15708474069628495010" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/SankeyChart.stories.tsx", - "hash": "1792240597863600821" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/SparklineChart.stories.tsx", - "hash": "5855342004212481143" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/StackedBarChart.stories.tsx", - "hash": "14972009123979681780" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/TreeChart.stories.tsx", - "hash": "15398948019288529805" - }, - { - "file": "apps/vr-tests/src/stories/react-charting/VerticalBarChart.stories.tsx", - "hash": "7754085844637102451" - }, - { - "file": "apps/vr-tests/src/stories/z_Callout.stories.tsx", - "hash": "4524354447780660422" - }, - { - "file": "apps/vr-tests/src/utilities/DevOnlyStoryHeader.tsx", - "hash": "8874774277832379592" - }, - { - "file": "apps/vr-tests/src/utilities/TestWrapperDecorator.tsx", - "hash": "13027273294579000586" - }, - { - "file": "apps/vr-tests/src/utilities/index.ts", - "hash": "77713048722310053" - }, - { - "file": "apps/vr-tests/src/utilities/types.ts", - "hash": "9013455218348419096" - }, - { - "file": "apps/vr-tests/tsconfig.json", - "hash": "3557499061294487570" - } - ], - "@fluentui/scripts-perf-test-flamegrill": [ - { - "file": "scripts/perf-test-flamegrill/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/perf-test-flamegrill/jest.config.js", - "hash": "8618634705738605800" - }, - { - "file": "scripts/perf-test-flamegrill/package.json", - "hash": "11021363269324038115", - "deps": ["npm:@types/react", "npm:@types/react-dom", "npm:react", "npm:react-dom", "npm:webpack"] - }, - { - "file": "scripts/perf-test-flamegrill/project.json", - "hash": "10759724985611859010" - }, - { - "file": "scripts/perf-test-flamegrill/src/index.ts", - "hash": "11035012132823640935" - }, - { - "file": "scripts/perf-test-flamegrill/src/load-scenarios.ts", - "hash": "7976963383113325782" - }, - { - "file": "scripts/perf-test-flamegrill/src/renderer.tsx", - "hash": "12543503922466542873" - }, - { - "file": "scripts/perf-test-flamegrill/src/types.ts", - "hash": "16361176486131323805" - }, - { - "file": "scripts/perf-test-flamegrill/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/perf-test-flamegrill/tsconfig.lib.json", - "hash": "14190301940653848041" - }, - { - "file": "scripts/perf-test-flamegrill/tsconfig.spec.json", - "hash": "11895456033159184725" - } - ], - "@fluentui/perf": [ - { - "file": "packages/fluentui/perf/.eslintrc.json", - "hash": "12796673075337106714" - }, - { - "file": "packages/fluentui/perf/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/perf/babel.config.js", - "hash": "7654395597360391156" - }, - { - "file": "packages/fluentui/perf/doc/perf.md", - "hash": "16405507312382777299" - }, - { - "file": "packages/fluentui/perf/doc/perf_chart.png", - "hash": "7877526086333983849" - }, - { - "file": "packages/fluentui/perf/gulp/perf.ts", - "hash": "18417645318330609886" - }, - { - "file": "packages/fluentui/perf/gulp/shared.ts", - "hash": "852922162071245063" - }, - { - "file": "packages/fluentui/perf/gulp/webpack.config.ts", - "hash": "11522594695527201750" - }, - { - "file": "packages/fluentui/perf/gulpfile.ts", - "hash": "3266338574519543788" - }, - { - "file": "packages/fluentui/perf/package.json", - "hash": "16720766364830109335", - "deps": [ - "npm:@babel/polyfill", - "@fluentui/docs", - "@fluentui/eslint-plugin", - "@fluentui/react-northstar", - "npm:lodash", - "npm:minimatch", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-monorepo" - ] - }, - { - "file": "packages/fluentui/perf/project.json", - "hash": "14841239227301538929" - }, - { - "file": "packages/fluentui/perf/src/globals.ts", - "hash": "774283950763954109" - }, - { - "file": "packages/fluentui/perf/src/index.html", - "hash": "1997664863642561261" - }, - { - "file": "packages/fluentui/perf/src/index.tsx", - "hash": "6151998969720127036" - }, - { - "file": "packages/fluentui/perf/tsconfig.json", - "hash": "339684603525678365" - }, - { - "file": "packages/fluentui/perf/types.ts", - "hash": "13985186482084305211" - } - ], - "@fluentui/scripts-monorepo": [ - { - "file": "scripts/monorepo/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/monorepo/jest.config.js", - "hash": "1384953526716204487" - }, - { - "file": "scripts/monorepo/package.json", - "hash": "3151914312966891220", - "deps": ["@fluentui/scripts-utils"] - }, - { - "file": "scripts/monorepo/project.json", - "hash": "17093955917889568889" - }, - { - "file": "scripts/monorepo/src/eslint-constants.js", - "hash": "7443856441866657412" - }, - { - "file": "scripts/monorepo/src/findGitRoot.js", - "hash": "4363463957869502799" - }, - { - "file": "scripts/monorepo/src/findRepoDeps.js", - "hash": "7553372038547408261" - }, - { - "file": "scripts/monorepo/src/get-lerna-aliases.js", - "hash": "11009367209609457683" - }, - { - "file": "scripts/monorepo/src/getAffectedPackages.js", - "hash": "17525808605986894312" - }, - { - "file": "scripts/monorepo/src/getAllPackageInfo.js", - "hash": "2379402033617125376" - }, - { - "file": "scripts/monorepo/src/getAllPackageInfo.spec.ts", - "hash": "1140840808034567865" - }, - { - "file": "scripts/monorepo/src/getDefaultEnvironmentVars.js", - "hash": "5734650452138389015" - }, - { - "file": "scripts/monorepo/src/getDependencies.d.ts", - "hash": "11422852845790360359" - }, - { - "file": "scripts/monorepo/src/getDependencies.js", - "hash": "7623291918152264365" - }, - { - "file": "scripts/monorepo/src/getDependencies.spec.js", - "hash": "18441659048142407685" - }, - { - "file": "scripts/monorepo/src/getNthCommit.js", - "hash": "508999649282071492" - }, - { - "file": "scripts/monorepo/src/index.d.ts", - "hash": "633307509083187231" - }, - { - "file": "scripts/monorepo/src/index.js", - "hash": "3480277268839262091" - }, - { - "file": "scripts/monorepo/src/isConvergedPackage.js", - "hash": "5285532099277225326" - }, - { - "file": "scripts/monorepo/src/tree.js", - "hash": "3417107466093454766" - }, - { - "file": "scripts/monorepo/src/types.ts", - "hash": "12073047551950673729" - }, - { - "file": "scripts/monorepo/src/utils.js", - "hash": "13391023183473540106" - }, - { - "file": "scripts/monorepo/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/monorepo/tsconfig.lib.json", - "hash": "3593133700658772030" - }, - { - "file": "scripts/monorepo/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/storybook": [ - { - "file": "packages/storybook/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/storybook/.npmignore", - "hash": "15779616407447347661" - }, - { - "file": "packages/storybook/CHANGELOG.json", - "hash": "9684832229916596120" - }, - { - "file": "packages/storybook/CHANGELOG.md", - "hash": "6591049344540378333" - }, - { - "file": "packages/storybook/LICENSE", - "hash": "6831112954983569679" - }, - { - "file": "packages/storybook/README.md", - "hash": "14770738643865662074" - }, - { - "file": "packages/storybook/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/storybook/package.json", - "hash": "11762021688884133970", - "deps": [ - "@fluentui/react", - "@fluentui/theme", - "npm:@storybook/addon-knobs", - "npm:@storybook/addon-essentials", - "npm:@storybook/addons", - "@fluentui/azure-themes", - "@fluentui/theme-samples", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/storybook/project.json", - "hash": "10709984597705834020" - }, - { - "file": "packages/storybook/src/decorators/index.ts", - "hash": "16391345502308910273" - }, - { - "file": "packages/storybook/src/decorators/withKeytipLayer.tsx", - "hash": "8532635969922419204" - }, - { - "file": "packages/storybook/src/decorators/withStrictMode.tsx", - "hash": "13082330610558521527" - }, - { - "file": "packages/storybook/src/index.ts", - "hash": "15433361193389949391" - }, - { - "file": "packages/storybook/src/knobs/useStrictMode.ts", - "hash": "1532086437071717950" - }, - { - "file": "packages/storybook/tsconfig.json", - "hash": "3498435803851457058" - } - ], - "@fluentui/react-bindings": [ - { - "file": "packages/fluentui/react-bindings/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-bindings/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-bindings/README.md", - "hash": "5554826359153268764" - }, - { - "file": "packages/fluentui/react-bindings/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-bindings/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-bindings/jest.config.js", - "hash": "13482069522961692092" - }, - { - "file": "packages/fluentui/react-bindings/package.json", - "hash": "14346723190653309755", - "deps": [ - "npm:@babel/runtime", - "@fluentui/accessibility", - "@fluentui/dom-utilities", - "@fluentui/react-component-event-listener", - "@fluentui/react-component-ref", - "@fluentui/react-northstar-fela-renderer", - "@fluentui/react-northstar-styles-renderer", - "@fluentui/state", - "@fluentui/styles", - "npm:classnames", - "npm:lodash", - "npm:prop-types", - "npm:react-is", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:@types/classnames", - "npm:lerna-alias", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/fluentui/react-bindings/project.json", - "hash": "3098724062779490806" - }, - { - "file": "packages/fluentui/react-bindings/src/FocusZone/AutoFocusZone.tsx", - "hash": "4199334887796948956" - }, - { - "file": "packages/fluentui/react-bindings/src/FocusZone/AutoFocusZone.types.tsx", - "hash": "16937245917268822243" - }, - { - "file": "packages/fluentui/react-bindings/src/FocusZone/CHANGELOG.md", - "hash": "5737717684221164128" - }, - { - "file": "packages/fluentui/react-bindings/src/FocusZone/FocusTrapZone.tsx", - "hash": "9271770944176692894" - }, - { - "file": "packages/fluentui/react-bindings/src/FocusZone/FocusTrapZone.types.tsx", - "hash": "6721933620429714223" - }, - { - "file": "packages/fluentui/react-bindings/src/FocusZone/FocusZone.tsx", - "hash": "14087648694060844766" - }, - { - "file": "packages/fluentui/react-bindings/src/FocusZone/FocusZone.types.ts", - "hash": "6484887556753817232" - }, - { - "file": "packages/fluentui/react-bindings/src/FocusZone/focusUtilities.ts", - "hash": "2134347144387795778" - }, - { - "file": "packages/fluentui/react-bindings/src/accessibility/getAccessibility.ts", - "hash": "9905959387087432414" - }, - { - "file": "packages/fluentui/react-bindings/src/accessibility/getKeyDownHandlers.ts", - "hash": "6508602261516528592" - }, - { - "file": "packages/fluentui/react-bindings/src/accessibility/shouldHandleOnKeys.ts", - "hash": "12329884440950941235" - }, - { - "file": "packages/fluentui/react-bindings/src/accessibility/types.ts", - "hash": "8507962475349685827" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/compose.ts", - "hash": "16921634422497416980" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/computeDisplayNames.ts", - "hash": "704472153739541249" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/consts.ts", - "hash": "18337356828678773963" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/index.ts", - "hash": "7773316450141562148" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/mergeComposeOptions.ts", - "hash": "17185748125330766477" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/mergeProps.ts", - "hash": "15881221697179785074" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/mergeSlotProp.ts", - "hash": "18383256050663696082" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/resolveSlotProps.ts", - "hash": "8030070576146247010" - }, - { - "file": "packages/fluentui/react-bindings/src/compose/wasComposedPreviously.ts", - "hash": "1226672711091759257" - }, - { - "file": "packages/fluentui/react-bindings/src/context-selector/createContext.ts", - "hash": "6163243789877254688" - }, - { - "file": "packages/fluentui/react-bindings/src/context-selector/types.ts", - "hash": "3161780195518143211" - }, - { - "file": "packages/fluentui/react-bindings/src/context-selector/useContextSelector.ts", - "hash": "3491395144900557629" - }, - { - "file": "packages/fluentui/react-bindings/src/context-selector/useContextSelectors.ts", - "hash": "1342159682866982236" - }, - { - "file": "packages/fluentui/react-bindings/src/context-selector/utils.ts", - "hash": "17756608188575203033" - }, - { - "file": "packages/fluentui/react-bindings/src/context.ts", - "hash": "2504617840057081701" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useAccessibility.ts", - "hash": "3730530656873314231" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useAutoControlled.ts", - "hash": "12020210326362175081" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useCallbackRef.ts", - "hash": "15260364968763194765" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useDeepMemo.ts", - "hash": "17664904316742192049" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useDispatchEffect.ts", - "hash": "523797428438187487" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useEventCallback.ts", - "hash": "11138167901000764022" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useFirstMount.ts", - "hash": "5753842204700810434" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useIFrameFocusDispatch.ts", - "hash": "13901258080296261682" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useIFrameListener.ts", - "hash": "4676672547320515687" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useIsomorphicLayoutEffect.ts", - "hash": "16377582332034814703" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useMergedRefs.ts", - "hash": "15582394188849760782" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useOnIFrameFocus.ts", - "hash": "56459656605781305" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/usePrevious.ts", - "hash": "5452705422744365770" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useStateManager.ts", - "hash": "8134058115156793670" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useStyles.ts", - "hash": "11209977391116869457" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useTriggerElement.tsx", - "hash": "9730828956065644548" - }, - { - "file": "packages/fluentui/react-bindings/src/hooks/useUnhandledProps.ts", - "hash": "4316059602380733165" - }, - { - "file": "packages/fluentui/react-bindings/src/index.ts", - "hash": "13182088506342331974" - }, - { - "file": "packages/fluentui/react-bindings/src/renderer/RendererContext.ts", - "hash": "4606835393501439883" - }, - { - "file": "packages/fluentui/react-bindings/src/styles/calculateAnimationTimeout.ts", - "hash": "3577142684966313424" - }, - { - "file": "packages/fluentui/react-bindings/src/styles/convertCssTimeToNumber.ts", - "hash": "3428534051178975951" - }, - { - "file": "packages/fluentui/react-bindings/src/styles/createAnimationStyles.tsx", - "hash": "14985851399239248408" - }, - { - "file": "packages/fluentui/react-bindings/src/styles/getStyles.ts", - "hash": "7851722266115206239" - }, - { - "file": "packages/fluentui/react-bindings/src/styles/resolveStyles.ts", - "hash": "7494741231570264675" - }, - { - "file": "packages/fluentui/react-bindings/src/styles/resolveVariables.ts", - "hash": "3897312963989673948" - }, - { - "file": "packages/fluentui/react-bindings/src/styles/types.ts", - "hash": "2676463631309134474" - }, - { - "file": "packages/fluentui/react-bindings/src/telemetry/types.ts", - "hash": "3385728758588133783" - }, - { - "file": "packages/fluentui/react-bindings/src/telemetry/useTelemetry.ts", - "hash": "14279666623156289577" - }, - { - "file": "packages/fluentui/react-bindings/src/utils/childrenExist.ts", - "hash": "3619272524856284343" - }, - { - "file": "packages/fluentui/react-bindings/src/utils/findScrollableParent.ts", - "hash": "8216732174798600668" - }, - { - "file": "packages/fluentui/react-bindings/src/utils/getDocument.ts", - "hash": "397452915165775464" - }, - { - "file": "packages/fluentui/react-bindings/src/utils/getElementType.ts", - "hash": "14632862614401893634" - }, - { - "file": "packages/fluentui/react-bindings/src/utils/getUnhandledProps.ts", - "hash": "14871327633567128163" - }, - { - "file": "packages/fluentui/react-bindings/src/utils/getWindow.ts", - "hash": "7683375961842184637" - }, - { - "file": "packages/fluentui/react-bindings/src/utils/mergeVariablesOverrides.ts", - "hash": "14811737278601338124" - }, - { - "file": "packages/fluentui/react-bindings/src/utils/shouldWrapFocus.ts", - "hash": "8136869381532219162" - }, - { - "file": "packages/fluentui/react-bindings/test/FocusZone/AutoFocusZone-test.tsx", - "hash": "432487377960798699" - }, - { - "file": "packages/fluentui/react-bindings/test/FocusZone/FocusTrapZone-test.tsx", - "hash": "14127515033989798787" - }, - { - "file": "packages/fluentui/react-bindings/test/FocusZone/FocusZone-EventHandler-test.tsx", - "hash": "5758157999812473111" - }, - { - "file": "packages/fluentui/react-bindings/test/FocusZone/FocusZone-test.tsx", - "hash": "11460017440070152700" - }, - { - "file": "packages/fluentui/react-bindings/test/FocusZone/test-utils.ts", - "hash": "16799898351626858078" - }, - { - "file": "packages/fluentui/react-bindings/test/accesibility/getKeyDownHandlers-test.ts", - "hash": "1314342481233369549" - }, - { - "file": "packages/fluentui/react-bindings/test/accesibility/shouldHandleOnKeys-test.ts", - "hash": "13917629719032260976" - }, - { - "file": "packages/fluentui/react-bindings/test/compose/compose-test.tsx", - "hash": "3618138711751616693" - }, - { - "file": "packages/fluentui/react-bindings/test/compose/mergeProps-test.ts", - "hash": "1891371554949461375" - }, - { - "file": "packages/fluentui/react-bindings/test/compose/resolveSlotProps-test.tsx", - "hash": "2129678302506557664" - }, - { - "file": "packages/fluentui/react-bindings/test/compose/useCompose-test.tsx", - "hash": "14515254382037114858" - }, - { - "file": "packages/fluentui/react-bindings/test/consoleUtil.ts", - "hash": "11997294564447184338" - }, - { - "file": "packages/fluentui/react-bindings/test/context-selector/createContext-test.tsx", - "hash": "15993208680747699154" - }, - { - "file": "packages/fluentui/react-bindings/test/context-selector/useContextSelector-test.tsx", - "hash": "6822936490356771304" - }, - { - "file": "packages/fluentui/react-bindings/test/context-selector/useContextSelectors-test.tsx", - "hash": "3338357613132226466" - }, - { - "file": "packages/fluentui/react-bindings/test/hooks/useAccessibility-test.tsx", - "hash": "5452579922559097617" - }, - { - "file": "packages/fluentui/react-bindings/test/hooks/useAutoControlled-test.tsx", - "hash": "14614999468088827773" - }, - { - "file": "packages/fluentui/react-bindings/test/hooks/useDispatchEffect-test.tsx", - "hash": "6496925804728216557" - }, - { - "file": "packages/fluentui/react-bindings/test/hooks/usePrevious-test.tsx", - "hash": "13651472287362297844" - }, - { - "file": "packages/fluentui/react-bindings/test/hooks/useStateManager-test.tsx", - "hash": "11737377582758503546" - }, - { - "file": "packages/fluentui/react-bindings/test/hooks/useStyles-test.tsx", - "hash": "2925905690540636262" - }, - { - "file": "packages/fluentui/react-bindings/test/hooks/useTriggerElement-test.tsx", - "hash": "18153385961075510546" - }, - { - "file": "packages/fluentui/react-bindings/test/styles/convertCssTimeToNumber-test.ts", - "hash": "5642114857287271136" - }, - { - "file": "packages/fluentui/react-bindings/test/styles/createAnimationStyles-test.ts", - "hash": "15257190023862954681" - }, - { - "file": "packages/fluentui/react-bindings/test/styles/resolveStyles-test.ts", - "hash": "8240816706156827159" - }, - { - "file": "packages/fluentui/react-bindings/test/styles/resolveVariables-test.ts", - "hash": "10826720913442109057" - }, - { - "file": "packages/fluentui/react-bindings/test/utils/childrenExist-test.tsx", - "hash": "13994241964374512709" - }, - { - "file": "packages/fluentui/react-bindings/test/utils/getElementType-test.ts", - "hash": "13908434027580439892" - }, - { - "file": "packages/fluentui/react-bindings/test/utils/getUnhandledProps-test.ts", - "hash": "1460976605323951307" - }, - { - "file": "packages/fluentui/react-bindings/tsconfig.json", - "hash": "1277968607411436930" - } - ], - "@fluentui/state": [ - { - "file": "packages/fluentui/state/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/state/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/state/README.md", - "hash": "8309543667100109097" - }, - { - "file": "packages/fluentui/state/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/state/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/state/package.json", - "hash": "5978700995662223330", - "deps": [ - "npm:@babel/runtime", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "npm:lerna-alias" - ] - }, - { - "file": "packages/fluentui/state/project.json", - "hash": "13103481987735488037" - }, - { - "file": "packages/fluentui/state/src/createManager.ts", - "hash": "7270086196410713232" - }, - { - "file": "packages/fluentui/state/src/index.ts", - "hash": "1091673469609146900" - }, - { - "file": "packages/fluentui/state/src/managers/carouselManager.ts", - "hash": "16464933274868458393" - }, - { - "file": "packages/fluentui/state/src/managers/checkboxManager.ts", - "hash": "4406845810056310598" - }, - { - "file": "packages/fluentui/state/src/managers/dialogManager.ts", - "hash": "3282345229108806027" - }, - { - "file": "packages/fluentui/state/src/managers/sliderManager.ts", - "hash": "8249114539083994643" - }, - { - "file": "packages/fluentui/state/src/types.ts", - "hash": "15073017630940548162" - }, - { - "file": "packages/fluentui/state/tsconfig.json", - "hash": "12214264623402812273" - } - ], - "@fluentui/public-docsite": [ - { - "file": "apps/public-docsite/.eslintrc.json", - "hash": "337673835369909864" - }, - { - "file": "apps/public-docsite/.markdownlint.json", - "hash": "3193456444247028636" - }, - { - "file": "apps/public-docsite/.npmignore", - "hash": "2926714820578262549" - }, - { - "file": "apps/public-docsite/.vscode/settings.json", - "hash": "18069303981834661546" - }, - { - "file": "apps/public-docsite/CHANGELOG.json", - "hash": "5555074616181483386" - }, - { - "file": "apps/public-docsite/CHANGELOG.md", - "hash": "14192424771490611728" - }, - { - "file": "apps/public-docsite/LICENSE", - "hash": "16915259497383323988" - }, - { - "file": "apps/public-docsite/README.md", - "hash": "3559688253950229776" - }, - { - "file": "apps/public-docsite/Third Party Notices.txt", - "hash": "14646301618710015874" - }, - { - "file": "apps/public-docsite/config/pre-copy.json", - "hash": "7054591292658078092" - }, - { - "file": "apps/public-docsite/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "apps/public-docsite/package.json", - "hash": "9136041470273463055", - "deps": [ - "@fluentui/font-icons-mdl2", - "@fluentui/public-docsite-resources", - "@fluentui/public-docsite-setup", - "@fluentui/react", - "@fluentui/react-docsite-components", - "@fluentui/react-examples", - "@fluentui/react-experiments", - "@fluentui/fluent2-theme", - "@fluentui/react-file-type-icons", - "@fluentui/react-icons-mdl2", - "@fluentui/react-icons-mdl2-branded", - "@fluentui/set-version", - "@fluentui/theme", - "@fluentui/theme-samples", - "@fluentui/utilities", - "npm:@microsoft/load-themed-styles", - "npm:office-ui-fabric-core", - "npm:react", - "npm:react-dom", - "npm:tslib", - "npm:whatwg-fetch", - "@fluentui/common-styles", - "@fluentui/eslint-plugin", - "@fluentui/react-monaco-editor", - "npm:write-file-webpack-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "apps/public-docsite/project.json", - "hash": "7196581607791710012" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/Controls.pages.tsx", - "hash": "10145604053049751028" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/android.tsx", - "hash": "17738143955260006201" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/cross.tsx", - "hash": "1058502723279157309" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/index.ts", - "hash": "6413192895410987168" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/ios.tsx", - "hash": "7399549156069476958" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/mac.tsx", - "hash": "16436402022180708284" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/web.tsx", - "hash": "408483203285204310" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/webcomponents.tsx", - "hash": "6792765439676230780" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/windows.tsx", - "hash": "12124107861870090256" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/GetStarted/GetStarted.pages.tsx", - "hash": "13847506009956934136" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/GetStarted/index.ts", - "hash": "7608958459492300262" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Resources/Resources.pages.tsx", - "hash": "7467311968307614147" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Resources/index.ts", - "hash": "11141788384203020155" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/Styles.pages.tsx", - "hash": "3354179824228056507" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/index.ts", - "hash": "9885949247618547411" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/web.tsx", - "hash": "13036525375730422403" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/index.ts", - "hash": "15668129546048702595" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.platforms.ts", - "hash": "4374814516883291103" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/SiteDefinition.tsx", - "hash": "7416597600515030422" - }, - { - "file": "apps/public-docsite/src/SiteDefinition/index.ts", - "hash": "16170069659361476539" - }, - { - "file": "apps/public-docsite/src/components/IconGrid/IconGrid.module.scss", - "hash": "10088935074752784208" - }, - { - "file": "apps/public-docsite/src/components/IconGrid/IconGrid.tsx", - "hash": "3126832381939275604" - }, - { - "file": "apps/public-docsite/src/components/Nav/Nav.module.scss", - "hash": "17010202827328751810" - }, - { - "file": "apps/public-docsite/src/components/Nav/Nav.tsx", - "hash": "5895207924940259300" - }, - { - "file": "apps/public-docsite/src/components/Nav/index.ts", - "hash": "8845112648504599256" - }, - { - "file": "apps/public-docsite/src/components/PageHeader/PageHeader.ts", - "hash": "2023580731281621870" - }, - { - "file": "apps/public-docsite/src/components/Site/AppThemes.ts", - "hash": "8449132186114492836" - }, - { - "file": "apps/public-docsite/src/components/Site/Site.module.scss", - "hash": "1167611558215402625" - }, - { - "file": "apps/public-docsite/src/components/Site/Site.tsx", - "hash": "11712024304722443777" - }, - { - "file": "apps/public-docsite/src/components/Site/index.ts", - "hash": "4416097142125773802" - }, - { - "file": "apps/public-docsite/src/components/Table/Table.module.scss", - "hash": "2351390884860253930" - }, - { - "file": "apps/public-docsite/src/components/Table/Table.tsx", - "hash": "10981690018718548291" - }, - { - "file": "apps/public-docsite/src/data/colors-neutral.json", - "hash": "16653124453141777542" - }, - { - "file": "apps/public-docsite/src/data/colors-persona-groups.json", - "hash": "3616184185780250103" - }, - { - "file": "apps/public-docsite/src/data/colors-personas.json", - "hash": "2075722162646162911" - }, - { - "file": "apps/public-docsite/src/data/colors-shared.json", - "hash": "5294560336154413274" - }, - { - "file": "apps/public-docsite/src/data/colors-theme-accents.json", - "hash": "13906940430607557455" - }, - { - "file": "apps/public-docsite/src/data/colors-theme-neutrals.json", - "hash": "181167838507207900" - }, - { - "file": "apps/public-docsite/src/data/colors-theme-slots.json", - "hash": "17490638679045466346" - }, - { - "file": "apps/public-docsite/src/data/directional-icons.json", - "hash": "14304305003999879088" - }, - { - "file": "apps/public-docsite/src/data/layout-visibility.json", - "hash": "8022012966563745167" - }, - { - "file": "apps/public-docsite/src/data/localized-fonts.json", - "hash": "4593860147000401033" - }, - { - "file": "apps/public-docsite/src/data/product-icons-documents.json", - "hash": "17196664511062641524" - }, - { - "file": "apps/public-docsite/src/data/product-icons.json", - "hash": "14205424375330295192" - }, - { - "file": "apps/public-docsite/src/data/responsive-breakpoints.json", - "hash": "12157493310076411491" - }, - { - "file": "apps/public-docsite/src/interfaces/Platforms.ts", - "hash": "7456260135347758029" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ActivityItemPage/ActivityItemPage.doc.ts", - "hash": "12084996801726727128" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ActivityItemPage/ActivityItemPage.tsx", - "hash": "10525847806067360709" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedBulkOperationsPage.doc.ts", - "hash": "765722563957421787" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedBulkOperationsPage.tsx", - "hash": "193322179625131144" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedLazyLoadingPage.doc.ts", - "hash": "15566486176498941210" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedLazyLoadingPage.tsx", - "hash": "17777911651455362870" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedPage.doc.ts", - "hash": "15674441994070588327" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedPage.tsx", - "hash": "8232552932583924532" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedQuickActionsPage.doc.ts", - "hash": "15362780660373157918" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedQuickActionsPage.tsx", - "hash": "12352004516650637228" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedSearchResultsPage.doc.ts", - "hash": "16198598794387830431" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedSearchResultsPage.tsx", - "hash": "5328511635142039063" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AreaChartPage/AreaChartPage.doc.ts", - "hash": "6722728441282287493" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AreaChartPage/AreaChartPage.tsx", - "hash": "8859288386603113959" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/AvatarPage.doc.ts", - "hash": "12515277458764441324" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/AvatarPage.tsx", - "hash": "9083556730732774728" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/android/AvatarImplementation.md", - "hash": "16726958883259254492" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/android/AvatarOverview.md", - "hash": "2647093289656117320" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/ios/AvatarImplementation.md", - "hash": "17606495654142164819" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/ios/AvatarOverview.md", - "hash": "18186034623443237973" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarImplementation.md", - "hash": "5199120976977691610" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarOverview.md", - "hash": "6959005975866544522" - }, - { - "file": "apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarUsage.md", - "hash": "11821820304812674613" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/BottomNavigationPage.doc.ts", - "hash": "15569579807820313583" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/BottomNavigationPage.tsx", - "hash": "8488861682256094075" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/android/BottomNavigationImplementation.md", - "hash": "1435366324864337035" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/android/BottomNavigationOverview.md", - "hash": "10514823264895514315" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/ios/BottomNavigationImplementation.md", - "hash": "18025927293153857052" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/ios/BottomNavigationOverview.md", - "hash": "2617859208595378528" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomSheetPage/BottomSheetPage.doc.ts", - "hash": "9673062355771995912" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomSheetPage/BottomSheetPage.tsx", - "hash": "2031437537765094207" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomSheetPage/docs/android/BottomSheetImplementation.md", - "hash": "1327623026650085087" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BottomSheetPage/docs/android/BottomSheetOverview.md", - "hash": "13377435451580553570" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BreadcrumbPage/BreadcrumbPage.doc.ts", - "hash": "1160032916934762643" - }, - { - "file": "apps/public-docsite/src/pages/Controls/BreadcrumbPage/BreadcrumbPage.tsx", - "hash": "12715444766885574444" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/ButtonPage.doc.ts", - "hash": "5592476238467391864" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/ButtonPage.tsx", - "hash": "11913245284362943875" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/android/ButtonImplementation.md", - "hash": "1658627094040539265" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/android/ButtonOverview.md", - "hash": "4417937612509791357" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonImplementation.md", - "hash": "14266053475926286467" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonOverview.md", - "hash": "6639038237332629321" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonUsage.md", - "hash": "8882723746766233591" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/ios/ButtonImplementation.md", - "hash": "9913277924895889569" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/ios/ButtonOverview.md", - "hash": "14531658870536079463" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonImplementation.md", - "hash": "17284353348286665677" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonOverview.md", - "hash": "13523925454607623553" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonUsage.md", - "hash": "13729646828336872891" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonImplementation.md", - "hash": "10916114615457699893" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonOverview.md", - "hash": "6639038237332629321" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonUsage.md", - "hash": "1439538779926957798" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CalendarPage/CalendarPage.doc.ts", - "hash": "15404698135211720064" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CalendarPage/CalendarPage.tsx", - "hash": "733924089141682023" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CalendarPage/docs/android/CalendarImplementation.md", - "hash": "4860285518777187466" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CalendarPage/docs/android/CalendarOverview.md", - "hash": "5705143573515914746" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CalloutPage/CalloutPage.doc.ts", - "hash": "17209687824658981404" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CalloutPage/CalloutPage.tsx", - "hash": "4954896427572159163" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CheckboxPage/CheckboxPage.doc.ts", - "hash": "17682692614187019453" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CheckboxPage/CheckboxPage.tsx", - "hash": "15199835598879362142" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ChipPage/ChipPage.doc.ts", - "hash": "9154869513355420399" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ChipPage/ChipPage.tsx", - "hash": "981184700842655718" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ChipPage/docs/android/ChipImplementation.md", - "hash": "14417461789034157394" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ChipPage/docs/android/ChipOverview.md", - "hash": "1523854707197205553" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ChipPage/docs/ios/ChipImplementation.md", - "hash": "11470797543630326488" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ChipPage/docs/ios/ChipOverview.md", - "hash": "11319279887742645925" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ChoiceGroupPage/ChoiceGroupPage.doc.ts", - "hash": "7647967381634329619" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ChoiceGroupPage/ChoiceGroupPage.tsx", - "hash": "16877181384541805954" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CoachmarkPage/CoachmarkPage.doc.ts", - "hash": "14163935830576365816" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CoachmarkPage/CoachmarkPage.tsx", - "hash": "8670254362732558332" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ColorPickerPage/ColorPickerPage.doc.ts", - "hash": "9648425641137727669" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ColorPickerPage/ColorPickerPage.tsx", - "hash": "1953534517712852428" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ComboBoxPage/ComboBoxPage.doc.ts", - "hash": "17894563094905674110" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ComboBoxPage/ComboBoxPage.tsx", - "hash": "15755905243024863031" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CommandBarPage/CommandBarPage.doc.ts", - "hash": "10705841520651205980" - }, - { - "file": "apps/public-docsite/src/pages/Controls/CommandBarPage/CommandBarPage.tsx", - "hash": "16602894129752653191" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ContextualMenuPage/ContextualMenuPage.doc.ts", - "hash": "17593522149548888502" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ContextualMenuPage/ContextualMenuPage.tsx", - "hash": "13424275747858799542" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ControlsAreaPage.tsx", - "hash": "9958449542131719090" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/DatePickerPage.doc.ts", - "hash": "3993601356330496007" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/DatePickerPage.tsx", - "hash": "1723921104985000544" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/android/DateTimePickerImplementation.md", - "hash": "4345043770986870496" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/android/DateTimePickerOverview.md", - "hash": "11120022423482682019" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/ios/DateTimePickerImplementation.md", - "hash": "14053008236220258161" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/ios/DateTimePickerOverview.md", - "hash": "4486063773040028910" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerImplementation.md", - "hash": "4082356119249858996" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerOverview.md", - "hash": "15042893916627662031" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerUsage.md", - "hash": "17536202668797782112" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAdvancedPage.doc.ts", - "hash": "13724797365802926226" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAdvancedPage.tsx", - "hash": "8378129203862067121" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAnimationPage.doc.ts", - "hash": "273818136230702976" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAnimationPage.tsx", - "hash": "6670837662453517114" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListBasicPage.doc.ts", - "hash": "1442216069029798172" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListBasicPage.tsx", - "hash": "4221366272271259902" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCompactPage.doc.ts", - "hash": "6232054459873438925" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCompactPage.tsx", - "hash": "18182423396708136557" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomColumnsPage.doc.ts", - "hash": "15223218059571854467" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomColumnsPage.tsx", - "hash": "12996021462166043167" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomFooterPage.doc.ts", - "hash": "10919167593613811146" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomFooterPage.tsx", - "hash": "7518356388618202761" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomGroupHeadersPage.doc.ts", - "hash": "17610097000352036009" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomGroupHeadersPage.tsx", - "hash": "15389447506854098798" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomRowsPage.doc.ts", - "hash": "11557821808808553995" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomRowsPage.tsx", - "hash": "17778521908305216176" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListDragDropPage.doc.ts", - "hash": "15376862959987969006" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListDragDropPage.tsx", - "hash": "13925969251211828899" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedPage.doc.ts", - "hash": "5039276744638943818" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedPage.tsx", - "hash": "13234611186431244970" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedV2Page.doc.ts", - "hash": "14584174087660249527" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedV2Page.tsx", - "hash": "7869708837554642335" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardDragDropPage.doc.ts", - "hash": "10248465266551079389" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardDragDropPage.tsx", - "hash": "7771372193160661271" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardOverrides.doc.ts", - "hash": "13903439600356956947" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardOverridesPage.tsx", - "hash": "13769261388459893054" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedPage.doc.ts", - "hash": "7589110390501473746" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedPage.tsx", - "hash": "16649160011157063345" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedV2Page.doc.ts", - "hash": "15039681966980186456" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedV2Page.tsx", - "hash": "5613915619387420589" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListNavigatingFocusPage.doc.ts", - "hash": "10978504225563324314" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListNavigatingFocusPage.tsx", - "hash": "18444419229465588680" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListPage.doc.ts", - "hash": "13633038424697591891" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListPage.tsx", - "hash": "5795984366319231084" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListProportionalColumnsPage.doc.ts", - "hash": "13880518862320453327" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListProportionalColumnsPage.tsx", - "hash": "5728239731010542367" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListScrollToIndexGroupedV2Page.doc.ts", - "hash": "13772461902671039983" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListScrollToIndexGroupedV2Page.tsx", - "hash": "751985772745896294" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListShimmerPage.doc.ts", - "hash": "16886325733296036163" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListShimmerPage.tsx", - "hash": "17986580787370038200" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DialogPage/DialogPage.doc.ts", - "hash": "8114424727878114054" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DialogPage/DialogPage.tsx", - "hash": "16571889001557518810" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DocumentCardPage/DocumentCardPage.doc.ts", - "hash": "5798884632274572457" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DocumentCardPage/DocumentCardPage.tsx", - "hash": "14114745195456671394" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DonutChartPage/DonutChartPage.doc.ts", - "hash": "9925495805804097607" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DonutChartPage/DonutChartPage.tsx", - "hash": "13140207290823243844" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DrawerPage/DrawerPage.doc.ts", - "hash": "8809379390024773173" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DrawerPage/DrawerPage.tsx", - "hash": "7007852614279864723" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DrawerPage/docs/android/DrawerImplementation.md", - "hash": "17858680396931236249" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DrawerPage/docs/android/DrawerOverview.md", - "hash": "11716337942532244924" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DrawerPage/docs/ios/DrawerImplementation.md", - "hash": "11983059621422817768" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DrawerPage/docs/ios/DrawerOverview.md", - "hash": "5111313044522355867" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DropdownPage/DropdownPage.doc.ts", - "hash": "9046898387726582968" - }, - { - "file": "apps/public-docsite/src/pages/Controls/DropdownPage/DropdownPage.tsx", - "hash": "4993205477226125515" - }, - { - "file": "apps/public-docsite/src/pages/Controls/FacepilePage/FacepilePage.doc.ts", - "hash": "11140776998441194718" - }, - { - "file": "apps/public-docsite/src/pages/Controls/FacepilePage/FacepilePage.tsx", - "hash": "14403058980587352582" - }, - { - "file": "apps/public-docsite/src/pages/Controls/FocusTrapZonePage/FocusTrapZonePage.doc.ts", - "hash": "17285560986103134198" - }, - { - "file": "apps/public-docsite/src/pages/Controls/FocusTrapZonePage/FocusTrapZonePage.tsx", - "hash": "8686318644067342747" - }, - { - "file": "apps/public-docsite/src/pages/Controls/FocusZonePage/FocusZonePage.doc.ts", - "hash": "11651121915621513982" - }, - { - "file": "apps/public-docsite/src/pages/Controls/FocusZonePage/FocusZonePage.tsx", - "hash": "5773578364287739971" - }, - { - "file": "apps/public-docsite/src/pages/Controls/GaugeChartPage/GaugeChartPage.doc.ts", - "hash": "6968035975342074349" - }, - { - "file": "apps/public-docsite/src/pages/Controls/GaugeChartPage/GaugeChartPage.tsx", - "hash": "15615937935738864018" - }, - { - "file": "apps/public-docsite/src/pages/Controls/GroupedListPage/GroupedListPage.doc.ts", - "hash": "7967128270511032399" - }, - { - "file": "apps/public-docsite/src/pages/Controls/GroupedListPage/GroupedListPage.tsx", - "hash": "703544659258297209" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HeatMapChartPage/HeatMapChartPage.doc.ts", - "hash": "18432271012134230268" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HeatMapChartPage/HeatMapChartPage.tsx", - "hash": "1325089474077311913" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartPage.doc.ts", - "hash": "12161394458131890595" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartPage.tsx", - "hash": "12506076174393262754" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartWithAxisPage.doc.ts", - "hash": "10690241468891464352" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartWithAxisPage.tsx", - "hash": "2086325801396426601" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/MultiStackedBarChartPage.doc.ts", - "hash": "18349688674284806158" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/MultiStackedBarChartPage.tsx", - "hash": "4440166238265478633" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/StackedBarChartPage.doc.ts", - "hash": "2223329163564677843" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/StackedBarChartPage.tsx", - "hash": "14809007092545647863" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HoverCardPage/HoverCardPage.doc.ts", - "hash": "2636562850252085917" - }, - { - "file": "apps/public-docsite/src/pages/Controls/HoverCardPage/HoverCardPage.tsx", - "hash": "13868840759782232781" - }, - { - "file": "apps/public-docsite/src/pages/Controls/IconPage/IconPage.doc.ts", - "hash": "14320589840826195768" - }, - { - "file": "apps/public-docsite/src/pages/Controls/IconPage/IconPage.tsx", - "hash": "64311493418413559" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ImagePage/ImagePage.doc.ts", - "hash": "7988651808500005441" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ImagePage/ImagePage.tsx", - "hash": "11931915285603305728" - }, - { - "file": "apps/public-docsite/src/pages/Controls/KeytipsPage/KeytipsPage.doc.ts", - "hash": "18207607363175849480" - }, - { - "file": "apps/public-docsite/src/pages/Controls/KeytipsPage/KeytipsPage.tsx", - "hash": "6670239696591483784" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LabelPage/LabelPage.doc.ts", - "hash": "12862325935849575873" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LabelPage/LabelPage.tsx", - "hash": "1362646498263943376" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LayerPage/LayerPage.doc.ts", - "hash": "13150585050034998454" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LayerPage/LayerPage.tsx", - "hash": "15712879744679708674" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LegendsPage/LegendsPage.doc.ts", - "hash": "13025909135398732412" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LegendsPage/LegendsPage.tsx", - "hash": "3594589130378637610" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LineChartPage/LineChartPage.doc.ts", - "hash": "8123770768122993985" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LineChartPage/LineChartPage.tsx", - "hash": "9907654634238606126" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/LinkPage.doc.ts", - "hash": "13092967827659090455" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/LinkPage.tsx", - "hash": "17634813694797845520" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkImplementation.md", - "hash": "17106399576572784288" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkOverview.md", - "hash": "14935792960205653974" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkUsage.md", - "hash": "574308995351374939" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkImplementation.md", - "hash": "9700325112175340981" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkOverview.md", - "hash": "14051902312080603746" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkUsage.md", - "hash": "2205135936392778140" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkImplementation.md", - "hash": "11016907395505236155" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkOverview.md", - "hash": "14935792960205653974" - }, - { - "file": "apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkUsage.md", - "hash": "12676870463584061993" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/ListCellsPage.doc.ts", - "hash": "11180251346063450202" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/ListCellsPage.tsx", - "hash": "2988382794666245470" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/docs/android/ListCellsImplementation.md", - "hash": "17993162330760725826" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/docs/android/ListCellsOverview.md", - "hash": "179484507631924202" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/docs/ios/ListCellsImplementation.md", - "hash": "17351970042206748282" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ListCellsPage/docs/ios/ListCellsOverview.md", - "hash": "3442453361108839689" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ListPage/ListPage.doc.ts", - "hash": "2301015653585082199" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ListPage/ListPage.tsx", - "hash": "5736725840541138556" - }, - { - "file": "apps/public-docsite/src/pages/Controls/MarqueeSelectionPage/MarqueeSelectionPage.doc.ts", - "hash": "16568125096922152773" - }, - { - "file": "apps/public-docsite/src/pages/Controls/MarqueeSelectionPage/MarqueeSelectionPage.tsx", - "hash": "9351457843573166754" - }, - { - "file": "apps/public-docsite/src/pages/Controls/MessageBarPage/MessageBarPage.doc.ts", - "hash": "10642099967354842490" - }, - { - "file": "apps/public-docsite/src/pages/Controls/MessageBarPage/MessageBarPage.tsx", - "hash": "7371696166946877741" - }, - { - "file": "apps/public-docsite/src/pages/Controls/MessageBarPage/docs/ios/MessageBarImplementation.md", - "hash": "9135534442852614741" - }, - { - "file": "apps/public-docsite/src/pages/Controls/MessageBarPage/docs/ios/MessageBarOverview.md", - "hash": "16816993281554800685" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ModalPage/ModalPage.doc.ts", - "hash": "14953419698933388913" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ModalPage/ModalPage.tsx", - "hash": "9565379238246035586" - }, - { - "file": "apps/public-docsite/src/pages/Controls/NavBarPage/NavBarPage.doc.ts", - "hash": "10719528931963184631" - }, - { - "file": "apps/public-docsite/src/pages/Controls/NavBarPage/NavBarPage.tsx", - "hash": "10936268848263953483" - }, - { - "file": "apps/public-docsite/src/pages/Controls/NavBarPage/docs/android/NavBarImplementation.md", - "hash": "1783050725314136794" - }, - { - "file": "apps/public-docsite/src/pages/Controls/NavBarPage/docs/android/NavBarOverview.md", - "hash": "7625782876387635132" - }, - { - "file": "apps/public-docsite/src/pages/Controls/NavBarPage/docs/ios/NavBarImplementation.md", - "hash": "982664057702071391" - }, - { - "file": "apps/public-docsite/src/pages/Controls/NavBarPage/docs/ios/NavBarOverview.md", - "hash": "4333661315575739487" - }, - { - "file": "apps/public-docsite/src/pages/Controls/NavPage/NavPage.doc.ts", - "hash": "16485914742907636236" - }, - { - "file": "apps/public-docsite/src/pages/Controls/NavPage/NavPage.tsx", - "hash": "10147833889521608864" - }, - { - "file": "apps/public-docsite/src/pages/Controls/OverflowSetPage/OverflowSetPage.doc.ts", - "hash": "430419847824661530" - }, - { - "file": "apps/public-docsite/src/pages/Controls/OverflowSetPage/OverflowSetPage.tsx", - "hash": "8723062280124814020" - }, - { - "file": "apps/public-docsite/src/pages/Controls/OverlayPage/OverlayPage.doc.ts", - "hash": "7152352627564917321" - }, - { - "file": "apps/public-docsite/src/pages/Controls/OverlayPage/OverlayPage.tsx", - "hash": "8099233458936522353" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PanelPage/PanelPage.doc.ts", - "hash": "12944203394740296953" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PanelPage/PanelPage.tsx", - "hash": "15825828482154862989" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PeoplePickerPage/PeoplePickerPage.doc.ts", - "hash": "2300266927767413033" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PeoplePickerPage/PeoplePickerPage.tsx", - "hash": "16377269163422996503" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PeoplePickerPage/docs/android/PeoplePickerImplementation.md", - "hash": "17195704506742427669" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PeoplePickerPage/docs/android/PeoplePickerOverview.md", - "hash": "11396020997468636727" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/PersonaPage.doc.ts", - "hash": "16810002338180568264" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/PersonaPage.tsx", - "hash": "3845501556021269696" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/android/PersonaImplementation.md", - "hash": "9137167883852598922" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/android/PersonaOverview.md", - "hash": "9940780276971069007" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaImplementation.md", - "hash": "4174781638758350021" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaOverview.md", - "hash": "13949429323385095957" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaUsage.md", - "hash": "11952547679957023592" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaDonts.md", - "hash": "13591587715632279480" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaDos.md", - "hash": "7471256642317270680" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaImplementation.md", - "hash": "7814508756737995088" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaOverview.md", - "hash": "17809409197730676625" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PickersPage/PickersPage.doc.ts", - "hash": "3574709739493425796" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PickersPage/PickersPage.tsx", - "hash": "1072062355713612559" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PieChartPage/PieChartPage.doc.ts", - "hash": "8610861634097736947" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PieChartPage/PieChartPage.tsx", - "hash": "17628955712828535439" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PillButtonBarPage/PillButtonBarPage.doc.ts", - "hash": "9959120100527712235" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PillButtonBarPage/PillButtonBarPage.tsx", - "hash": "3511437485944024034" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PillButtonBarPage/docs/ios/PillButtonBarImplementation.md", - "hash": "8164387113171008361" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PillButtonBarPage/docs/ios/PillButtonBarOverview.md", - "hash": "1311771358032116984" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PivotPage/PivotPage.doc.ts", - "hash": "12797279737032918886" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PivotPage/PivotPage.tsx", - "hash": "15299694073578426860" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PivotPage/docs/ios/PivotImplementation.md", - "hash": "4427576342081942127" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PivotPage/docs/ios/PivotOverview.md", - "hash": "11302721871784110641" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/PopupMenuPage.doc.ts", - "hash": "5617733850255104610" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/PopupMenuPage.tsx", - "hash": "9794250830285127360" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/android/PopupMenuImplementation.md", - "hash": "5020177404051028794" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/android/PopupMenuOverview.md", - "hash": "7290210998594527902" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/ios/PopupMenuImplementation.md", - "hash": "2743838143178393759" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/ios/PopupMenuOverview.md", - "hash": "2323001488577540827" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PopupPage/PopupPage.doc.ts", - "hash": "17816142309948511850" - }, - { - "file": "apps/public-docsite/src/pages/Controls/PopupPage/PopupPage.tsx", - "hash": "14142913708830808491" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ProgressIndicatorPage/ProgressIndicatorPage.doc.ts", - "hash": "15168136959043150323" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ProgressIndicatorPage/ProgressIndicatorPage.tsx", - "hash": "16828944186777538232" - }, - { - "file": "apps/public-docsite/src/pages/Controls/RatingPage/RatingPage.doc.ts", - "hash": "15930522879045080288" - }, - { - "file": "apps/public-docsite/src/pages/Controls/RatingPage/RatingPage.tsx", - "hash": "17430307553838477372" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ResizeGroupPage/ResizeGroupPage.doc.ts", - "hash": "12453097290421274476" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ResizeGroupPage/ResizeGroupPage.tsx", - "hash": "12724627887686361752" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SankeyChartPage/SankeyChartPage.doc.ts", - "hash": "4714530689649545039" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SankeyChartPage/SankeyChartPage.tsx", - "hash": "7367984007280521841" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ScrollablePanePage/ScrollablePanePage.doc.ts", - "hash": "10517815238812573514" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ScrollablePanePage/ScrollablePanePage.tsx", - "hash": "3794982073534288445" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SearchBoxPage/SearchBoxPage.doc.ts", - "hash": "3109877617295800527" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SearchBoxPage/SearchBoxPage.tsx", - "hash": "12119673235668910121" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SelectionPage/SelectionPage.doc.ts", - "hash": "4064413911248877629" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SelectionPage/SelectionPage.tsx", - "hash": "16645407528859551007" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/SeparatorPage.doc.ts", - "hash": "1869624805197331867" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/SeparatorPage.tsx", - "hash": "16530346594627497113" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/android/SeparatorImplementation.md", - "hash": "12050467316544862538" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/android/SeparatorOverview.md", - "hash": "3262490832239817243" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorImplementation.md", - "hash": "12735278674009299795" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorOverview.md", - "hash": "1638982018715209032" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorUsage.md", - "hash": "6447265103101755700" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/ios/SeparatorImplementation.md", - "hash": "385144131002868470" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/ios/SeparatorOverview.md", - "hash": "6917827556785225902" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorImplementation.md", - "hash": "11121036677182941869" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorOverview.md", - "hash": "14689844598752795287" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorUsage.md", - "hash": "3022219560847233209" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ShimmerPage/ShimmerPage.doc.ts", - "hash": "4599512040229497021" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ShimmerPage/ShimmerPage.tsx", - "hash": "878300177551071679" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ShimmerPage/docs/ios/ShimmerImplementation.md", - "hash": "15492298048019929155" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ShimmerPage/docs/ios/ShimmerOverview.md", - "hash": "8414580170604108926" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SliderPage/SliderPage.doc.ts", - "hash": "8834532409719588553" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SliderPage/SliderPage.tsx", - "hash": "14698906948989490334" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SnackbarPage/SnackbarPage.doc.ts", - "hash": "15438585596944920328" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SnackbarPage/SnackbarPage.tsx", - "hash": "1654437770309584305" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SnackbarPage/docs/android/SnackbarImplementation.md", - "hash": "17388804743906070461" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SnackbarPage/docs/android/SnackbarOverview.md", - "hash": "11312290812971405184" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SparklineChartPage/SparklineChartPage.doc.ts", - "hash": "7943019505043975866" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SparklineChartPage/SparklineChartPage.tsx", - "hash": "4869292233657636749" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SpinButtonPage/SpinButtonPage.doc.ts", - "hash": "1286261109085750776" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SpinButtonPage/SpinButtonPage.tsx", - "hash": "9268993758022694057" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/SpinnerPage.doc.ts", - "hash": "1896652091488762683" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/SpinnerPage.tsx", - "hash": "9394631982953595234" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/docs/android/SpinnerImplementation.md", - "hash": "10118420338312992410" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/docs/android/SpinnerOverview.md", - "hash": "18348680623727412435" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/docs/ios/SpinnerImplementation.md", - "hash": "13216727849992575340" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SpinnerPage/docs/ios/SpinnerOverview.md", - "hash": "529524600353268627" - }, - { - "file": "apps/public-docsite/src/pages/Controls/StackPage/StackPage.doc.ts", - "hash": "4896656422620049208" - }, - { - "file": "apps/public-docsite/src/pages/Controls/StackPage/StackPage.tsx", - "hash": "1396217349101542509" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SwatchColorPickerPage/SwatchColorPickerPage.doc.ts", - "hash": "8742501851320362146" - }, - { - "file": "apps/public-docsite/src/pages/Controls/SwatchColorPickerPage/SwatchColorPickerPage.tsx", - "hash": "4210928475728699833" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TeachingBubblePage/TeachingBubblePage.doc.ts", - "hash": "11210860060788798223" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TeachingBubblePage/TeachingBubblePage.tsx", - "hash": "13265818964473803315" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextFieldPage/TextFieldPage.doc.ts", - "hash": "16844169516739817994" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextFieldPage/TextFieldPage.tsx", - "hash": "1449781130504185070" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/TextPage.doc.ts", - "hash": "14795579619725173204" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/TextPage.tsx", - "hash": "6444362485742213388" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/android/TextImplementation.md", - "hash": "6925117502959094792" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/android/TextOverview.md", - "hash": "9300573456933043605" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextImplementation.md", - "hash": "14482685637634165402" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextOverview.md", - "hash": "9847077317112859434" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextUsage.md", - "hash": "10221235043224874219" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/ios/TextImplementation.md", - "hash": "4487517554098015359" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TextPage/docs/ios/TextOverview.md", - "hash": "17732920760835217296" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ThemeProviderPage/ThemeProviderPage.doc.ts", - "hash": "10132739553311476432" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ThemeProviderPage/ThemeProviderPage.tsx", - "hash": "9993449517972929988" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ThemesPage/ThemesPage.doc.ts", - "hash": "16869713101131606107" - }, - { - "file": "apps/public-docsite/src/pages/Controls/ThemesPage/ThemesPage.tsx", - "hash": "18264313343382082196" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TimePickerPage/TimePickerPage.doc.ts", - "hash": "15443779538362138546" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TimePickerPage/TimePickerPage.tsx", - "hash": "1756852736786007892" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TogglePage/TogglePage.doc.ts", - "hash": "1437864563683354605" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TogglePage/TogglePage.tsx", - "hash": "16970515178361027990" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TooltipPage/TooltipPage.doc.ts", - "hash": "13004555359529279060" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TooltipPage/TooltipPage.tsx", - "hash": "14058489552994957425" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TooltipPage/docs/android/TooltipImplementation.md", - "hash": "3456588364072825371" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TooltipPage/docs/android/TooltipOverview.md", - "hash": "13455839940298411742" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TooltipPage/docs/ios/TooltipImplementation.md", - "hash": "16965261284922775306" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TooltipPage/docs/ios/TooltipOverview.md", - "hash": "1046254076984026596" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TreeChartPage/TreeChartPage.doc.ts", - "hash": "363208411377797558" - }, - { - "file": "apps/public-docsite/src/pages/Controls/TreeChartPage/TreeChartPage.tsx", - "hash": "7076431616057000589" - }, - { - "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/GroupedVerticalBarChartPage.doc.ts", - "hash": "15633758479616455994" - }, - { - "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/GroupedVerticalBarChartPage.tsx", - "hash": "16990192553217188860" - }, - { - "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartPage.doc.ts", - "hash": "2049947327391988989" - }, - { - "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartPage.tsx", - "hash": "4883971900739832624" - }, - { - "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartStandardPage.doc.ts", - "hash": "620999018417199421" - }, - { - "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartStandardPage.tsx", - "hash": "6590169349353606228" - }, - { - "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalStackedBarChartPage.doc.ts", - "hash": "8155972576439835208" - }, - { - "file": "apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalStackedBarChartPage.tsx", - "hash": "9550842220108020399" - }, - { - "file": "apps/public-docsite/src/pages/HomePage/HomePage.base.tsx", - "hash": "465866457058775620" - }, - { - "file": "apps/public-docsite/src/pages/HomePage/HomePage.styles.ts", - "hash": "10861640978446414062" - }, - { - "file": "apps/public-docsite/src/pages/HomePage/HomePage.tsx", - "hash": "18276424432609590467" - }, - { - "file": "apps/public-docsite/src/pages/HomePage/HomePage.types.ts", - "hash": "13340032817135044576" - }, - { - "file": "apps/public-docsite/src/pages/NotFoundPage/NotFoundPage.tsx", - "hash": "16207216040893461209" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/ControlsPage.doc.ts", - "hash": "18380040089134554336" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/ControlsPage.tsx", - "hash": "16414020117622852720" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/android/ControlsOverview.md", - "hash": "3916707571718470487" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/android/ControlsRequest.md", - "hash": "15489980504060478950" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/cross/ControlsOverview.md", - "hash": "6622634875300562460" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/cross/ControlsRequest.md", - "hash": "14193834682038686587" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/ios/ControlsOverview.md", - "hash": "1695529372061376072" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/ios/ControlsRequest.md", - "hash": "12954123961090236040" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/mac/ControlsOverview.md", - "hash": "7424290293222382000" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/mac/ControlsRequest.md", - "hash": "12954123961090236040" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/web/ControlsOverview.md", - "hash": "5663961913773712180" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/web/ControlsRequest.md", - "hash": "15105504059791492762" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/webcomponents/ControlsOverview.md", - "hash": "2414983111943358773" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ControlsPage/docs/windows/ControlsOverview.md", - "hash": "9037427483021073364" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/GetStartedPage.doc.ts", - "hash": "11826556445642419724" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/GetStartedPage.tsx", - "hash": "7268018460850661290" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/android/GetStartedOverview.md", - "hash": "12060562653436793345" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/cross/GetStartedOverview.md", - "hash": "16091509152687312443" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/ios/GetStartedOverview.md", - "hash": "9274172313490666165" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/mac/GetStartedOverview.md", - "hash": "164867267244845671" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDesign.md", - "hash": "8569760566844298580" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopCore.md", - "hash": "10927339412684879146" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopExisting.md", - "hash": "14091981290948965896" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopSimple.md", - "hash": "460857128821419712" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedNextSteps.md", - "hash": "2931506436585850526" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedOverview.md", - "hash": "3274675777583234778" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/webcomponents/GetStartedOverview.md", - "hash": "2414983111943358773" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/windows/GetStartedOverview.md", - "hash": "629152349317496328" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/ResourcesPage.doc.ts", - "hash": "17499625808237404491" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/ResourcesPage.tsx", - "hash": "13149788078858940663" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/MicrosoftEmployees.md", - "hash": "6370171942935038278" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesContributionProcess.md", - "hash": "1080822247761201590" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesDesignResources.md", - "hash": "7106528753518723741" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesDeveloperResources.md", - "hash": "5756619609720157923" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesOverview.md", - "hash": "8996628649432074956" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.doc.ts", - "hash": "15501069257697476063" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.module.scss", - "hash": "12219944696373065363" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.tsx", - "hash": "15067860422087630323" - }, - { - "file": "apps/public-docsite/src/pages/Overviews/StylesPage/docs/web/StylesOverview.md", - "hash": "3244421341483603138" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.doc.ts", - "hash": "7583962091710138917" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.module.scss", - "hash": "4445718406155664912" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.tsx", - "hash": "7799339281702303232" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateBestPractices.md", - "hash": "6424746113342347311" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateContact.md", - "hash": "2267529183204956536" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateCustom.md", - "hash": "3501294107890524915" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDesign.md", - "hash": "8252275691557389867" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDonts.md", - "hash": "16777043376435169207" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDos.md", - "hash": "17181944727235091082" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateMarkdown.md", - "hash": "1824316788706149358" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateOverview.md", - "hash": "2353018080647090922" - }, - { - "file": "apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateUsage.md", - "hash": "17999602798252555441" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/MessagingPage.doc.ts", - "hash": "4029206581609651525" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/MessagingPage.tsx", - "hash": "8517833539006814777" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/NeutralsPage.doc.ts", - "hash": "8557524095289881833" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/NeutralsPage.tsx", - "hash": "3881861710033677192" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/PersonasPage.doc.ts", - "hash": "6969256656078507324" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/PersonasPage.tsx", - "hash": "4181755802529383445" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/PresencePage.doc.ts", - "hash": "7698330973277559727" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/PresencePage.tsx", - "hash": "10452373578783830576" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/ProductsPage.doc.ts", - "hash": "12064673447368071473" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/ProductsPage.tsx", - "hash": "8166681864376445004" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/SharedPage.doc.ts", - "hash": "8709294250181685180" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/SharedPage.tsx", - "hash": "16477473000087952085" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsImplementation.md", - "hash": "9662445079717403281" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsMessaging.md", - "hash": "12057596805615388585" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsNeutrals.md", - "hash": "8166035078035367122" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPersonas.md", - "hash": "766096296213343466" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPersonasGroups.md", - "hash": "3244421341483603138" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPresence.md", - "hash": "12188095201817930748" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsProducts.md", - "hash": "17564225775262966216" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsShared.md", - "hash": "5320481516820254115" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/getColorsImplementation.tsx", - "hash": "9396878996590273337" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Excel.tsx", - "hash": "6668403593313565275" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Exchange.tsx", - "hash": "5874575945733322646" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/OneDrive.tsx", - "hash": "4908314519718315370" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/OneNote.tsx", - "hash": "1931898637381696069" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/PowerPoint.tsx", - "hash": "7528087448102567999" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/SharePoint.tsx", - "hash": "11970481403739113120" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Skype.tsx", - "hash": "18324379671806732775" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Teams.tsx", - "hash": "6050608167770584322" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/WXPNeutrals.tsx", - "hash": "8359383161438920081" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/Word.tsx", - "hash": "249723548676881716" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/index.ts", - "hash": "2054469954853867485" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/palettes.tsx", - "hash": "9146560715594749357" - }, - { - "file": "apps/public-docsite/src/pages/Styles/Colors/palettes/sharePointThemes.ts", - "hash": "17648378765769579029" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.doc.ts", - "hash": "15552069943951308130" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.module.scss", - "hash": "7345581142680317731" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.tsx", - "hash": "6842210506591976353" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ElevationPage/docs/web/ElevationDepth.md", - "hash": "10648356807866455467" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ElevationPage/docs/web/ElevationImplementation.md", - "hash": "6698065193994919867" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.doc.ts", - "hash": "13287110333933946288" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.module.scss", - "hash": "16603198109401679117" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.tsx", - "hash": "3215356932259775497" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsOverview.md", - "hash": "14584716617056468743" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsSvgUsage.md", - "hash": "4660598507310955359" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsUsage.md", - "hash": "2763351544178437746" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.doc.ts", - "hash": "13738324400228116747" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.module.scss", - "hash": "5442444884118063709" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.tsx", - "hash": "9814549566499373451" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsFormat.md", - "hash": "13099450167737000846" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsImplementation.md", - "hash": "17767304393597237392" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsOverview.md", - "hash": "2860311402143920947" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsResolutions.md", - "hash": "3244421341483603138" - }, - { - "file": "apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsSingleColor.md", - "hash": "8025714887263263869" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.doc.ts", - "hash": "6624340925972145937" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.module.scss", - "hash": "3083280209208898114" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.tsx", - "hash": "689216079218174724" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LayoutPage/docs/web/LayoutGridImplementation.md", - "hash": "3762983355142824943" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.doc.ts", - "hash": "13592687785339047277" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.module.scss", - "hash": "3580745211607670472" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.tsx", - "hash": "9117877808176694225" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/docs/web/LocalizationFonts.md", - "hash": "13947455427954126849" - }, - { - "file": "apps/public-docsite/src/pages/Styles/LocalizationPage/docs/web/LocalizationRTL.md", - "hash": "12243536948304525425" - }, - { - "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.doc.ts", - "hash": "14850740324986435630" - }, - { - "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.module.scss", - "hash": "1501359429485906614" - }, - { - "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.tsx", - "hash": "8637326613161354274" - }, - { - "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsFormat.md", - "hash": "14137903468084545672" - }, - { - "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsImplementation.md", - "hash": "7064531828854196736" - }, - { - "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsOverview.md", - "hash": "4644609833618920221" - }, - { - "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsResolutions.md", - "hash": "9882773965947757517" - }, - { - "file": "apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsSingleColor.md", - "hash": "6428363293740106994" - }, - { - "file": "apps/public-docsite/src/pages/Styles/MotionPage/MotionPage.doc.ts", - "hash": "7551229294685878607" - }, - { - "file": "apps/public-docsite/src/pages/Styles/MotionPage/MotionPage.tsx", - "hash": "4255866037727374519" - }, - { - "file": "apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionAnimationPatterns.md", - "hash": "2424745151389010475" - }, - { - "file": "apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionBasicAnimations.md", - "hash": "11591939522054441904" - }, - { - "file": "apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionOverview.md", - "hash": "17619066456585865023" - }, - { - "file": "apps/public-docsite/src/pages/Styles/StylesAreaPage.tsx", - "hash": "2330551012169262981" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.base.tsx", - "hash": "13978554545030628372" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.doc.ts", - "hash": "8797032471318912664" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.styles.ts", - "hash": "670745936737153511" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.ts", - "hash": "17448422164112446045" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.types.ts", - "hash": "17598414037388291257" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/docs/web/ThemeSlotsImplementation.md", - "hash": "10651296754730631708" - }, - { - "file": "apps/public-docsite/src/pages/Styles/ThemeSlotsPage/docs/web/ThemeSlotsOverview.md", - "hash": "2166965680185322299" - }, - { - "file": "apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.doc.ts", - "hash": "9165765088336036121" - }, - { - "file": "apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.module.scss", - "hash": "16018951629111799776" - }, - { - "file": "apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.tsx", - "hash": "10818548696224375374" - }, - { - "file": "apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyCustomization.md", - "hash": "13014783898773428593" - }, - { - "file": "apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyImplementation.md", - "hash": "238697434924652490" - }, - { - "file": "apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographySizes.md", - "hash": "15059354838444238039" - }, - { - "file": "apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyWeights.md", - "hash": "7954208076253865127" - }, - { - "file": "apps/public-docsite/src/root.tsx", - "hash": "2758584264461977324" - }, - { - "file": "apps/public-docsite/src/styles/_base.scss", - "hash": "1849673723161206113" - }, - { - "file": "apps/public-docsite/src/styles/_common.scss", - "hash": "9046917025896875813" - }, - { - "file": "apps/public-docsite/src/styles/_overrides.scss", - "hash": "4420994798235433884" - }, - { - "file": "apps/public-docsite/src/styles/_reset.scss", - "hash": "17974127147527998359" - }, - { - "file": "apps/public-docsite/src/styles/_semanticSlots.scss", - "hash": "15520402900566886591" - }, - { - "file": "apps/public-docsite/src/styles/_typography.scss", - "hash": "2598463171315010195" - }, - { - "file": "apps/public-docsite/src/styles/constants.ts", - "hash": "15680145100038897039" - }, - { - "file": "apps/public-docsite/src/styles/styles.scss", - "hash": "2768824223736871501" - }, - { - "file": "apps/public-docsite/src/utilities/cdn.ts", - "hash": "2720323465115190399" - }, - { - "file": "apps/public-docsite/src/utilities/createSite.tsx", - "hash": "13422298383237972784" - }, - { - "file": "apps/public-docsite/src/utilities/getSubTitle.ts", - "hash": "1812390680457891556" - }, - { - "file": "apps/public-docsite/src/utilities/index.ts", - "hash": "15090850838105549481" - }, - { - "file": "apps/public-docsite/src/utilities/location.ts", - "hash": "2937621053370628509" - }, - { - "file": "apps/public-docsite/src/utilities/svgIcons.module.scss", - "hash": "3242932209884530734" - }, - { - "file": "apps/public-docsite/src/utilities/svgIcons.tsx", - "hash": "5235987200223732108" - }, - { - "file": "apps/public-docsite/src/utilities/svgIconsColor.tsx", - "hash": "4853467040983417652" - }, - { - "file": "apps/public-docsite/src/version.ts", - "hash": "9775686497058364768" - }, - { - "file": "apps/public-docsite/tsconfig.json", - "hash": "12512132474600727181" - }, - { - "file": "apps/public-docsite/webpack.config.js", - "hash": "2835503529795351612" - }, - { - "file": "apps/public-docsite/webpack.serve.config.js", - "hash": "13648462903372555254" - } - ], - "@fluentui/react-portal-compat": [ - { - "file": "packages/react-components/react-portal-compat/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-portal-compat/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-portal-compat/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-portal-compat/CHANGELOG.json", - "hash": "6310547495553252113" - }, - { - "file": "packages/react-components/react-portal-compat/CHANGELOG.md", - "hash": "637890491534529925" - }, - { - "file": "packages/react-components/react-portal-compat/LICENSE", - "hash": "2734216586406312338" - }, - { - "file": "packages/react-components/react-portal-compat/README.md", - "hash": "13552660956899760048" - }, - { - "file": "packages/react-components/react-portal-compat/bundle-size/PortalCompat.fixture.js", - "hash": "8933784648953307496" - }, - { - "file": "packages/react-components/react-portal-compat/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-portal-compat/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-portal-compat/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-portal-compat/etc/react-portal-compat.api.md", - "hash": "12672897639085221881" - }, - { - "file": "packages/react-components/react-portal-compat/jest.config.js", - "hash": "7201973850221979533" - }, - { - "file": "packages/react-components/react-portal-compat/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-portal-compat/package.json", - "hash": "2242680828023904012", - "deps": [ - "@fluentui/react-portal-compat-context", - "@fluentui/react-tabster", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-components", - "@fluentui/react-shared-contexts", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-components/react-portal-compat/project.json", - "hash": "4163289893969820182" - }, - { - "file": "packages/react-components/react-portal-compat/src/PortalCompat.cy.tsx", - "hash": "7224010505980293781" - }, - { - "file": "packages/react-components/react-portal-compat/src/PortalCompatProvider.test.tsx", - "hash": "4950300713413640133" - }, - { - "file": "packages/react-components/react-portal-compat/src/PortalCompatProvider.tsx", - "hash": "6743743402925755352" - }, - { - "file": "packages/react-components/react-portal-compat/src/index.ts", - "hash": "11087139990223362374" - }, - { - "file": "packages/react-components/react-portal-compat/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-portal-compat/tsconfig.json", - "hash": "5596071008249197618" - }, - { - "file": "packages/react-components/react-portal-compat/tsconfig.lib.json", - "hash": "4109592473830538944" - }, - { - "file": "packages/react-components/react-portal-compat/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-infolabel": [ - { - "file": "packages/react-components/react-infolabel/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-infolabel/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-infolabel/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-infolabel/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-infolabel/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-infolabel/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-infolabel/CHANGELOG.json", - "hash": "14825917095076416560" - }, - { - "file": "packages/react-components/react-infolabel/CHANGELOG.md", - "hash": "5575191642924707850" - }, - { - "file": "packages/react-components/react-infolabel/LICENSE", - "hash": "2987466484218074898" - }, - { - "file": "packages/react-components/react-infolabel/README.md", - "hash": "5543000756530108389" - }, - { - "file": "packages/react-components/react-infolabel/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-infolabel/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-infolabel/docs/Spec.md", - "hash": "12415704727702896077" - }, - { - "file": "packages/react-components/react-infolabel/etc/images/anatomy.png", - "hash": "13995183815818235250" - }, - { - "file": "packages/react-components/react-infolabel/etc/react-infolabel.api.md", - "hash": "9231325368668071686" - }, - { - "file": "packages/react-components/react-infolabel/jest.config.js", - "hash": "5573754893493331513" - }, - { - "file": "packages/react-components/react-infolabel/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-infolabel/package.json", - "hash": "3691223503924983980", - "deps": [ - "npm:@fluentui/react-icons", - "@fluentui/react-label", - "@fluentui/react-popover", - "@fluentui/react-tabster", - "@fluentui/react-jsx-runtime", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-infolabel/project.json", - "hash": "2136490827902334281" - }, - { - "file": "packages/react-components/react-infolabel/src/InfoButton.ts", - "hash": "6736681049567293007" - }, - { - "file": "packages/react-components/react-infolabel/src/InfoLabel.ts", - "hash": "10491035089563452821" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoButton/DefaultInfoButtonIcons.tsx", - "hash": "2356653625358885392" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.test.tsx", - "hash": "13091422380860995039" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.tsx", - "hash": "5812446199269029862" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.types.ts", - "hash": "14174263946567083160" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoButton/index.ts", - "hash": "7451520123696318723" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoButton/renderInfoButton.tsx", - "hash": "16476543032585061641" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoButton/useInfoButton.tsx", - "hash": "12562846819852203468" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoButton/useInfoButtonStyles.styles.ts", - "hash": "4457053427318314740" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.cy.tsx", - "hash": "2745939329689272907" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.test.tsx", - "hash": "6162167383950242729" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.tsx", - "hash": "12414993670554885735" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.types.ts", - "hash": "12259668345002550793" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoLabel/index.ts", - "hash": "1040167975180781477" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoLabel/renderInfoLabel.tsx", - "hash": "5569550196608831394" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoLabel/useInfoLabel.ts", - "hash": "14332118226680718175" - }, - { - "file": "packages/react-components/react-infolabel/src/components/InfoLabel/useInfoLabelStyles.styles.ts", - "hash": "11079399471116346237" - }, - { - "file": "packages/react-components/react-infolabel/src/index.ts", - "hash": "12739416375820815573" - }, - { - "file": "packages/react-components/react-infolabel/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelBestPractices.md", - "hash": "18109648245575154087" - }, - { - "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelDefault.stories.tsx", - "hash": "33809515516315681" - }, - { - "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelDescription.md", - "hash": "3255656647713314223" - }, - { - "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelInField.stories.tsx", - "hash": "15564638452241970423" - }, - { - "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelPatternDecision.md", - "hash": "14148502240650949226" - }, - { - "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelRequired.stories.tsx", - "hash": "16536409628055983147" - }, - { - "file": "packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelSize.stories.tsx", - "hash": "14310723017255313418" - }, - { - "file": "packages/react-components/react-infolabel/stories/InfoLabel/index.stories.tsx", - "hash": "4506291592511583485" - }, - { - "file": "packages/react-components/react-infolabel/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-infolabel/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-infolabel/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/theming-designer": [ - { - "file": "apps/theming-designer/.eslintrc.json", - "hash": "15624877064293233006" - }, - { - "file": "apps/theming-designer/CHANGELOG.json", - "hash": "12291746697898346988" - }, - { - "file": "apps/theming-designer/CHANGELOG.md", - "hash": "2344453555304636804" - }, - { - "file": "apps/theming-designer/config/pre-copy.json", - "hash": "7137810373311645754" - }, - { - "file": "apps/theming-designer/index.html", - "hash": "8525451778566725428" - }, - { - "file": "apps/theming-designer/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "apps/theming-designer/package.json", - "hash": "5895925697172101667", - "deps": [ - "@fluentui/react", - "@fluentui/merge-styles", - "@fluentui/react-docsite-components", - "@fluentui/foundation-legacy", - "@fluentui/scheme-utilities", - "@fluentui/set-version", - "@fluentui/font-icons-mdl2", - "npm:@microsoft/load-themed-styles", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "apps/theming-designer/project.json", - "hash": "9081308584738412223" - }, - { - "file": "apps/theming-designer/src/components/AccessibilityChecker.tsx", - "hash": "16506844564323751906" - }, - { - "file": "apps/theming-designer/src/components/AccessibilityDetailsList.tsx", - "hash": "5938047411396517048" - }, - { - "file": "apps/theming-designer/src/components/FabricPalette.tsx", - "hash": "9986798636782472459" - }, - { - "file": "apps/theming-designer/src/components/FabricSlotWidget.tsx", - "hash": "7010333939466710623" - }, - { - "file": "apps/theming-designer/src/components/Header.tsx", - "hash": "2142641914456137998" - }, - { - "file": "apps/theming-designer/src/components/Samples/index.tsx", - "hash": "7706638862259866271" - }, - { - "file": "apps/theming-designer/src/components/SemanticSlots.tsx", - "hash": "13534245869120806388" - }, - { - "file": "apps/theming-designer/src/components/SemanticSlotsDetailsList.tsx", - "hash": "8958989502641470533" - }, - { - "file": "apps/theming-designer/src/components/ThemeDesignerColorPicker.tsx", - "hash": "10551357834195680053" - }, - { - "file": "apps/theming-designer/src/components/ThemeSlots.tsx", - "hash": "6097271652755743157" - }, - { - "file": "apps/theming-designer/src/components/ThemingDesigner.tsx", - "hash": "11004141289564786969" - }, - { - "file": "apps/theming-designer/src/index.tsx", - "hash": "12575369939743920224" - }, - { - "file": "apps/theming-designer/src/shared/MainPanelStyles.tsx", - "hash": "4729267293215866647" - }, - { - "file": "apps/theming-designer/src/shared/Typography.tsx", - "hash": "15775203349013380082" - }, - { - "file": "apps/theming-designer/src/version.ts", - "hash": "17927131915821894877" - }, - { - "file": "apps/theming-designer/tsconfig.json", - "hash": "9192958159039358107" - }, - { - "file": "apps/theming-designer/webpack.config.js", - "hash": "8376152823140446600" - }, - { - "file": "apps/theming-designer/webpack.serve.config.js", - "hash": "5761943271931032973" - } - ], - "@fluentui/docs": [ - { - "file": "packages/fluentui/docs/.eslintrc.json", - "hash": "1170321389672620885" - }, - { - "file": "packages/fluentui/docs/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/docs/.storybook/main.js", - "hash": "12358817451942068777" - }, - { - "file": "packages/fluentui/docs/.storybook/preview.js", - "hash": "3982093891370695252" - }, - { - "file": "packages/fluentui/docs/README.md", - "hash": "12267980008240015629" - }, - { - "file": "packages/fluentui/docs/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/docs/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/docs/package.json", - "hash": "8290575613183760036", - "deps": [ - "npm:@charlietango/use-script", - "@fluentui/ability-attributes", - "@fluentui/accessibility", - "@fluentui/code-sandbox", - "@fluentui/docs-components", - "@fluentui/react-bindings", - "@fluentui/react-builder", - "@fluentui/react-component-event-listener", - "@fluentui/react-component-ref", - "@fluentui/react-icons-northstar", - "@fluentui/react-northstar", - "@fluentui/react-northstar-emotion-renderer", - "@fluentui/react-northstar-fela-renderer", - "@fluentui/react-northstar-prototypes", - "@fluentui/react-northstar-styles-renderer", - "@fluentui/react-telemetry", - "@fluentui/styles", - "npm:@mdx-js/react", - "npm:classnames", - "npm:color", - "npm:copy-to-clipboard", - "npm:csstype", - "npm:faker", - "npm:formik", - "npm:lodash", - "npm:moment", - "npm:prop-types", - "npm:qs", - "npm:react", - "npm:react-codesandboxer", - "npm:react-custom-scrollbars", - "npm:react-document-title", - "npm:react-dom", - "npm:react-hook-form", - "npm:react-hot-loader", - "npm:react-markdown", - "npm:react-router-dom", - "npm:react-source-render", - "npm:react-textarea-autosize", - "npm:react-virtualized", - "npm:react-vis", - "npm:react-window", - "npm:semver", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-storybook", - "npm:@types/classnames", - "npm:@types/color", - "npm:@types/faker", - "npm:@types/react-custom-scrollbars", - "npm:@types/react-router-dom", - "npm:@types/react-virtualized", - "npm:@types/react-window" - ] - }, - { - "file": "packages/fluentui/docs/project.json", - "hash": "4100322648323751291" - }, - { - "file": "packages/fluentui/docs/src/404.html", - "hash": "16925733810327691789" - }, - { - "file": "packages/fluentui/docs/src/app.tsx", - "hash": "18133583866406948391" - }, - { - "file": "packages/fluentui/docs/src/components/CategoryColorSchemes.tsx", - "hash": "15471500166894313476" - }, - { - "file": "packages/fluentui/docs/src/components/ColorBox.tsx", - "hash": "14313769847234351375" - }, - { - "file": "packages/fluentui/docs/src/components/ColorSchemes.tsx", - "hash": "3520451365588087548" - }, - { - "file": "packages/fluentui/docs/src/components/ColorVariants.tsx", - "hash": "842961233657171499" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentBestPractices.tsx", - "hash": "13258213592237770558" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/BehaviorCard.tsx", - "hash": "13248919281639354955" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/BehaviorDescription.tsx", - "hash": "11611880834697824134" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentBestPractices.tsx", - "hash": "12268344819894559200" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/ComponentBundleSizeChart.tsx", - "hash": "5854648503741754888" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/ComponentBundleSizeExample.tsx", - "hash": "15384963319034106554" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/index.ts", - "hash": "14862062994631854818" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/CodeSnippetIcon.tsx", - "hash": "14251722938533789516" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/ComponentControls.tsx", - "hash": "9947607547435043640" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/ComponentControlsCopyLink.tsx", - "hash": "7333719996921105622" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/index.tsx", - "hash": "13908880925817708925" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentDoc.tsx", - "hash": "5520896650160253888" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentDocAccessibility.tsx", - "hash": "14757167341788460626" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentDocLinks.tsx", - "hash": "839836439025932509" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentDocSee.tsx", - "hash": "12461586076268291141" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExample.tsx", - "hash": "5514555960395912952" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleColorPicker.tsx", - "hash": "7037081424336012966" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleTitle.tsx", - "hash": "2105810739355291829" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleVariable.tsx", - "hash": "7458209552924434794" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleVariables.tsx", - "hash": "8891305186508476923" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/index.tsx", - "hash": "2296233322321885223" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentExamples.tsx", - "hash": "4233547624388976179" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentPerfChart.tsx", - "hash": "14815322288871573142" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentPerfExample.tsx", - "hash": "15847736411030574387" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentResourcesChart.tsx", - "hash": "2363646192975627812" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/index.ts", - "hash": "1676134879561531313" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropExtra.tsx", - "hash": "6838830300296755682" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropFunctionSignature.tsx", - "hash": "10792148067626293752" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropName.tsx", - "hash": "14551087482273992161" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentPropCard.tsx", - "hash": "17734443721751745496" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentProps.tsx", - "hash": "8021120662876666781" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentPropsOutline.tsx", - "hash": "1812145246479991942" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/index.tsx", - "hash": "14760205468189979139" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/ComponentPropsRow.tsx", - "hash": "8804751983735030185" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/ComponentPropsTable.tsx", - "hash": "3033990319844379436" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/index.tsx", - "hash": "15915107543961869783" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/ComponentSourceManager.ts", - "hash": "12290598306417344934" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/componentAPIs.ts", - "hash": "17725740098421921107" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/getExampleModule.ts", - "hash": "1528303749855518129" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/index.ts", - "hash": "14841104208504728645" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ContributionPrompt.tsx", - "hash": "3821542561099762451" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/ExampleSection.tsx", - "hash": "9424508500379564987" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/InlineMarkdown.tsx", - "hash": "7764978463030319620" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/LazyWithBabel.tsx", - "hash": "7266537121864960789" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/MegaphoneIcon.tsx", - "hash": "1353394853001713106" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/NonPublicSection.tsx", - "hash": "5071796385606465642" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/BundleSizeChart.tsx", - "hash": "1230066324202601264" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/BundleSizeChartTooltip.tsx", - "hash": "9294095566216501043" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/Chart.tsx", - "hash": "15073388818411239276" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ComponentChart.tsx", - "hash": "2349492653467491734" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfChart.tsx", - "hash": "10722755004997547482" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfChartTooltip.tsx", - "hash": "16354879607043443697" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfDataContext.ts", - "hash": "17768741877392199555" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfDataProvider.tsx", - "hash": "13018281500416904568" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChart.tsx", - "hash": "15920626007856751052" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChartTooltip.tsx", - "hash": "6613165649107428623" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChartValues.ts", - "hash": "7226839342472307850" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/index.ts", - "hash": "2832162539747081776" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/useBundleSizeData.ts", - "hash": "5349831237877493080" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PerfChart/usePerfData.ts", - "hash": "5249215270999363975" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/PrototypePerfControls.tsx", - "hash": "9976991334716769425" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/PrototypePerfExample.tsx", - "hash": "852200345847239746" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/index.ts", - "hash": "4729113650901068359" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/SourceRender.tsx", - "hash": "10553593762698452511" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/Suggestions.tsx", - "hash": "18179397695680456104" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/index.tsx", - "hash": "7960769531776792410" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/useAccessibilityKnob.ts", - "hash": "1885682283062558721" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentDoc/useComponentProps.ts", - "hash": "14616206315160726672" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlayground.tsx", - "hash": "16798864798174922360" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlaygroundSnippet.tsx", - "hash": "12726973953832627498" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlaygroundTemplate.tsx", - "hash": "12391832860362490896" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentPlayground/componentGenerators.tsx", - "hash": "4442013590407697715" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentPlayground/createHookGenerator.ts", - "hash": "3350539221678551323" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentPlayground/propGenerators.tsx", - "hash": "14831694351072993146" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentPlayground/typeGenerators.ts", - "hash": "6837634186526809821" - }, - { - "file": "packages/fluentui/docs/src/components/ComponentPlayground/usePlaygroundComponent.tsx", - "hash": "14080850754774097617" - }, - { - "file": "packages/fluentui/docs/src/components/DocPage/DocPage.tsx", - "hash": "2808652576979717110" - }, - { - "file": "packages/fluentui/docs/src/components/DocPage/index.tsx", - "hash": "3554578022119957414" - }, - { - "file": "packages/fluentui/docs/src/components/DocsBehaviorRoot.tsx", - "hash": "3267577223041500795" - }, - { - "file": "packages/fluentui/docs/src/components/DocsLayout.tsx", - "hash": "10910177656516070161" - }, - { - "file": "packages/fluentui/docs/src/components/DocsRoot.tsx", - "hash": "15835475100706638555" - }, - { - "file": "packages/fluentui/docs/src/components/ExampleSnippet/ExampleSnippet.tsx", - "hash": "7883815714929857953" - }, - { - "file": "packages/fluentui/docs/src/components/ExampleSnippet/index.ts", - "hash": "17429250596636602902" - }, - { - "file": "packages/fluentui/docs/src/components/ExternalExampleLayout.tsx", - "hash": "1824287292430373603" - }, - { - "file": "packages/fluentui/docs/src/components/Fader.tsx", - "hash": "12119643171890670621" - }, - { - "file": "packages/fluentui/docs/src/components/GuidesNavigationFooter.tsx", - "hash": "17244329877842186098" - }, - { - "file": "packages/fluentui/docs/src/components/Icons/CodeSandboxIcon.tsx", - "hash": "12825871339196808359" - }, - { - "file": "packages/fluentui/docs/src/components/Icons/GitHubIcon.tsx", - "hash": "13546583538224460080" - }, - { - "file": "packages/fluentui/docs/src/components/Logo/Logo.tsx", - "hash": "13542005493777121336" - }, - { - "file": "packages/fluentui/docs/src/components/MarkdownPage.tsx", - "hash": "4953894111157650411" - }, - { - "file": "packages/fluentui/docs/src/components/Playground/renderConfig.ts", - "hash": "10431467891315399907" - }, - { - "file": "packages/fluentui/docs/src/components/Sidebar/Sidebar.tsx", - "hash": "8581565888016772807" - }, - { - "file": "packages/fluentui/docs/src/components/Sidebar/SidebarTitle.tsx", - "hash": "16945465435959960216" - }, - { - "file": "packages/fluentui/docs/src/components/Sidebar/VersionDropdown.tsx", - "hash": "12481878360155018358" - }, - { - "file": "packages/fluentui/docs/src/components/SystemColors.tsx", - "hash": "12396673138560940111" - }, - { - "file": "packages/fluentui/docs/src/components/ThemeDropdown.tsx", - "hash": "14901215571694103867" - }, - { - "file": "packages/fluentui/docs/src/components/VariableResolver/VariableResolver.tsx", - "hash": "16680318961348211176" - }, - { - "file": "packages/fluentui/docs/src/components/VariableResolver/useClassNamesListener.ts", - "hash": "11649694264640734161" - }, - { - "file": "packages/fluentui/docs/src/components/VariableResolver/useEnhancedRenderer.ts", - "hash": "15034481148342293240" - }, - { - "file": "packages/fluentui/docs/src/config.ts", - "hash": "6996878476232482390" - }, - { - "file": "packages/fluentui/docs/src/context/ExampleContext.ts", - "hash": "10330266777140873919" - }, - { - "file": "packages/fluentui/docs/src/context/ThemeContext.tsx", - "hash": "16056950884178562898" - }, - { - "file": "packages/fluentui/docs/src/contexts/exampleBestPracticesContext.ts", - "hash": "12541982430198054583" - }, - { - "file": "packages/fluentui/docs/src/contexts/exampleIndexContext.ts", - "hash": "3797907133032756872" - }, - { - "file": "packages/fluentui/docs/src/contexts/examplePlaygroundContext.ts", - "hash": "17947392003372189775" - }, - { - "file": "packages/fluentui/docs/src/contexts/exampleSourcesContext.ts", - "hash": "8034222086074861764" - }, - { - "file": "packages/fluentui/docs/src/contexts/examplesContext.ts", - "hash": "12651984967732339594" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/BestPractices/AccordionBestPractices.tsx", - "hash": "14940093359008461823" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Performance/AccordionDefault.bsize.tsx", - "hash": "5038944270254129774" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Performance/AccordionMinimal.perf.tsx", - "hash": "4523842466251260104" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Performance/index.tsx", - "hash": "8866257628355307503" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Rtl/AccordionExample.rtl.tsx", - "hash": "1340717939325240012" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Rtl/index.tsx", - "hash": "5552494584834402354" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExample.shorthand.tsx", - "hash": "3147689295083767338" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExclusiveExample.shorthand.tsx", - "hash": "15034575430186873739" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExclusiveExpandedExample.shorthand.tsx", - "hash": "15676788536874893013" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Types/index.tsx", - "hash": "14312132533086915079" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Usage/AccordionPanelCustomContentExample.shorthand.tsx", - "hash": "7961165322085785908" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Usage/AccordionPanelCustomTitleExample.shorthand.tsx", - "hash": "8110444025715338724" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Usage/index.tsx", - "hash": "17414639719818391537" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Visual/AccordionExampleCustomTitle.shorthand.tsx", - "hash": "18093647188251049061" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Visual/AccordionExampleDefault.shorthand.tsx", - "hash": "2490953812708114604" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/Visual/index.tsx", - "hash": "10396872897756178975" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Accordion/index.tsx", - "hash": "11939699836458558174" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/BestPractices/AlertBestPractices.tsx", - "hash": "7390556831277044686" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Performance/AlertDefault.bsize.tsx", - "hash": "7400263696216573396" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Performance/AlertMinimal.perf.tsx", - "hash": "7491789731685439785" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Performance/index.tsx", - "hash": "3486656088797749483" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExample.rtl.tsx", - "hash": "5833501351144547293" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExampleChildren.rtl.tsx", - "hash": "12215913207571214134" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExampleDismissAction.rtl.tsx", - "hash": "4960020110180002666" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Rtl/index.tsx", - "hash": "18392778337533776532" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleActions.shorthand.tsx", - "hash": "7214084965447715805" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleDismissAction.shorthand.tsx", - "hash": "14975932104835320922" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleHeader.shorthand.tsx", - "hash": "15241039013902720472" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleHeader.tsx", - "hash": "15241039013902720472" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleIcon.shorthand.tsx", - "hash": "11946303643665979959" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleIcon.tsx", - "hash": "11946303643665979959" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Slots/index.tsx", - "hash": "9417792554044457971" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/State/AlertExampleVisible.shorthand.tsx", - "hash": "4314747878253818932" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/State/index.tsx", - "hash": "427501161644241166" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Types/AlertExample.shorthand.tsx", - "hash": "6679581942737953936" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Types/AlertExample.tsx", - "hash": "14282449354851154943" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Types/AlertExampleDismissible.shorthand.tsx", - "hash": "4521264338600019335" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Types/index.tsx", - "hash": "1993823099664567117" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleDismissActions.shorthand.tsx", - "hash": "12664361614821025048" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleImportantMessage.shorthand.tsx", - "hash": "8126990145533658212" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleImportantMessage.tsx", - "hash": "16239592046038933070" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleWidth.shorthand.tsx", - "hash": "16822018458802875153" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Usage/index.tsx", - "hash": "4901587673450050108" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleAttached.shorthand.tsx", - "hash": "3025165918987383951" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleAttached.tsx", - "hash": "5383005919345233169" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleDanger.shorthand.tsx", - "hash": "13738658100729092838" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleDanger.tsx", - "hash": "8624847794273310051" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleFitted.shorthand.tsx", - "hash": "10384659722601669421" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleInfo.shorthand.tsx", - "hash": "12429957374972912633" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleInfo.tsx", - "hash": "6158313321973269291" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleOofs.shorthand.tsx", - "hash": "14878611782723821420" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleOofs.tsx", - "hash": "8687939285475336161" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleSuccess.shorthand.tsx", - "hash": "12170565269305523670" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleSuccess.tsx", - "hash": "8327763406932136591" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleUrgent.shorthand.tsx", - "hash": "2288896043914439472" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleUrgent.tsx", - "hash": "11981014665208428662" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleWarning.shorthand.tsx", - "hash": "6109440345280173133" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleWarning.tsx", - "hash": "11344022326745153812" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/Variations/index.tsx", - "hash": "3522446524631300400" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Alert/index.tsx", - "hash": "6156151819414933177" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Performance/AnimationMinimal.perf.tsx", - "hash": "2381218558170861435" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExample.shorthand.tsx", - "hash": "3918693122533672885" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDelay.shorthand.tsx", - "hash": "2091576222896710552" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDirection.shorthand.tsx", - "hash": "4658602649524581668" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDuration.shorthand.tsx", - "hash": "6551064054536947130" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleFillMode.shorthand.tsx", - "hash": "11254807112587801880" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleIterationCount.shorthand.tsx", - "hash": "11637399197514567584" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleKeyframeParams.shorthand.tsx", - "hash": "13004954253678987714" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExamplePlayState.shorthand.tsx", - "hash": "6519757348253113407" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleTimingFunction.shorthand.tsx", - "hash": "15834656771211499058" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Types/index.tsx", - "hash": "1892899388103006614" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Usage/AnimationExampleVisible.shorthand.tsx", - "hash": "2585833965021996678" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/Usage/index.tsx", - "hash": "15802851789513126937" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Animation/index.tsx", - "hash": "9269300506542533759" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentDefault.bsize.tsx", - "hash": "6702521006817921355" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentMinimal.perf.tsx", - "hash": "17668472981551080779" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentSlots.perf.tsx", - "hash": "13203505537913137537" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Performance/index.tsx", - "hash": "10043924621416924896" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Rtl/AttachmentExample.rtl.tsx", - "hash": "3773914650402755856" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Rtl/index.tsx", - "hash": "7918308442798410107" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentActionExample.shorthand.tsx", - "hash": "14423791370968139949" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentDescriptionExample.shorthand.tsx", - "hash": "18212994103096220748" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentHeaderExample.shorthand.tsx", - "hash": "11467050344618666719" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentIconExample.shorthand.tsx", - "hash": "529101159307576502" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Slots/index.tsx", - "hash": "13875462072877340926" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Types/AttachmentExample.shorthand.tsx", - "hash": "11475662725209531559" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Types/AttachmentProgressExample.shorthand.tsx", - "hash": "4267523487196377390" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Types/index.tsx", - "hash": "16150497455545793404" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Variations/AttachmentActionableExample.shorthand.tsx", - "hash": "16317017442072917555" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/Variations/index.tsx", - "hash": "14864620316228068394" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Attachment/index.tsx", - "hash": "15967332739376281903" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Performance/AvatarDefault.bsize.tsx", - "hash": "1993116627814229169" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Performance/AvatarMinimal.perf.tsx", - "hash": "9403745575313193219" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Performance/index.tsx", - "hash": "6542918934081901377" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Rtl/AvatarExample.rtl.tsx", - "hash": "3766421030295524250" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Rtl/index.tsx", - "hash": "704258527059101064" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Types/AvatarExample.shorthand.tsx", - "hash": "1777762071026836373" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Types/index.tsx", - "hash": "16081847642128254144" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Usage/AvatarUsageExample.shorthand.tsx", - "hash": "6133089331845764022" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Usage/index.tsx", - "hash": "4919268998864960207" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleExcludedInitials.shorthand.tsx", - "hash": "9691484376749818242" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleGetInitials.shorthand.tsx", - "hash": "11980464763288742306" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleIcon.shorthand.tsx", - "hash": "9292214088414339760" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleImage.shorthand.tsx", - "hash": "6931871230275748642" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleLabel.shorthand.tsx", - "hash": "13239318061369965763" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleName.shorthand.tsx", - "hash": "3765438618458682092" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleSize.shorthand.tsx", - "hash": "995651699228554888" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleSquare.shorthand.tsx", - "hash": "7535329349351590670" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatus.shorthand.tsx", - "hash": "12764376649431176331" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatusCustomization.shorthand.tsx", - "hash": "5665191359621923461" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatusImage.shorthand.tsx", - "hash": "13641513045200282607" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Variations/index.tsx", - "hash": "9169180906304167841" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Visual/AvatarStatusOverrideExample.shorthand.tsx", - "hash": "10472091611668977334" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/Visual/index.tsx", - "hash": "13634418070411306125" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Avatar/index.tsx", - "hash": "17452750855947681835" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Box/Performance/BoxDefault.bsize.tsx", - "hash": "5878861180993128281" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Box/Performance/BoxMinimal.perf.tsx", - "hash": "11528177275513521419" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Box/Performance/index.tsx", - "hash": "12468667700184196719" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Box/Types/BoxExample.shorthand.tsx", - "hash": "2621463162801806623" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Box/Types/BoxExample.tsx", - "hash": "11822710890006965982" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Box/Types/index.tsx", - "hash": "16292168244991601444" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Box/index.tsx", - "hash": "8445463683172518341" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/BestPractices/BreadcrumbBestPractices.tsx", - "hash": "12037027317396022887" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Content/BreadcrumbExampleIconDivider.tsx", - "hash": "13040774096198084811" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Content/index.tsx", - "hash": "5737535689842502282" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Types/BreadcrumbExampleBasic.tsx", - "hash": "10867835066367364838" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Types/index.tsx", - "hash": "6251320465555826583" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Variations/BreadcrumbExampleSizes.tsx", - "hash": "3756439437541515697" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/Variations/index.tsx", - "hash": "17864851291665966953" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Breadcrumb/index.tsx", - "hash": "11963669822888507151" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/BestPractices/ButtonBestPractices.tsx", - "hash": "875405029256638882" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Groups/ButtonGroupCircularExample.shorthand.tsx", - "hash": "10014541288147975902" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Groups/ButtonGroupExample.shorthand.tsx", - "hash": "12616941824892942654" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Groups/index.tsx", - "hash": "14608855000457409706" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Performance/ButtonDefault.bsize.tsx", - "hash": "14013260610212467529" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Performance/ButtonMinimal.perf.tsx", - "hash": "17702693323586748847" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Performance/ButtonOverridesMiss.perf.tsx", - "hash": "246033419451815290" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Performance/ButtonSlots.perf.tsx", - "hash": "1232086238686224207" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Performance/index.tsx", - "hash": "5684247435424607199" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Rtl/ButtonExample.rtl.tsx", - "hash": "10401747556514954499" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Rtl/index.tsx", - "hash": "13167615523401755239" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabled.shorthand.tsx", - "hash": "7501376052839836585" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabled.tsx", - "hash": "12680506556909276531" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabledFocusable.shorthand.tsx", - "hash": "11418740839881366692" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabledFocusable.tsx", - "hash": "8223189472340503350" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleLoading.shorthand.tsx", - "hash": "7387668981444340419" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/States/index.tsx", - "hash": "8104062184649371336" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExample.shorthand.tsx", - "hash": "13949356969555112957" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExample.tsx", - "hash": "1770835918201234538" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleEmphasis.shorthand.tsx", - "hash": "9141195104899468218" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleEmphasis.tsx", - "hash": "4417989313376075228" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleIconOnly.shorthand.tsx", - "hash": "3634071676473637322" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleIconOnly.tsx", - "hash": "8460167654876772802" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleInverted.tsx", - "hash": "17687677670120489335" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleText.shorthand.tsx", - "hash": "4888038742337651213" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleText.tsx", - "hash": "3859583648668982831" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Types/index.tsx", - "hash": "14640357627717561574" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleContentAndIcon.shorthand.tsx", - "hash": "5196548647582650534" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleContentAndIcon.tsx", - "hash": "5592983281587280992" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleOverflow.shorthand.tsx", - "hash": "15179431573106673255" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleOverflow.tsx", - "hash": "2042263174918498793" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleWithTooltip.shorthand.tsx", - "hash": "13714099140756432098" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Usage/ButtonUsageExample.shorthand.tsx", - "hash": "1604253431835541038" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Usage/index.tsx", - "hash": "17896536485132705289" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleCircular.shorthand.tsx", - "hash": "12465483641909329594" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleCircular.tsx", - "hash": "16231051050308741969" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFlat.shorthand.tsx", - "hash": "5922720345605217261" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFluid.shorthand.tsx", - "hash": "8376453203529581016" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFluid.tsx", - "hash": "3869666308436030997" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleSize.shorthand.tsx", - "hash": "14569123258309762053" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Variations/index.tsx", - "hash": "17927782900865629373" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Visual/ButtonExampleCompose.shorthand.tsx", - "hash": "3313797131089084689" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/Visual/index.tsx", - "hash": "18308318623693669223" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Button/index.tsx", - "hash": "8430030252345530972" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/BestPractices/CardBestPractices.tsx", - "hash": "6175072564179136722" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Performance/CardMinimal.perf.tsx", - "hash": "7683423593541735565" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleBody.tsx", - "hash": "3670140939178073629" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleFooter.tsx", - "hash": "13947850720017990863" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleHeader.tsx", - "hash": "3871336181361575552" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Slots/CardExamplePreview.tsx", - "hash": "1607326112717492472" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Slots/index.tsx", - "hash": "276288527915583652" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/States/CardExampleDisabled.tsx", - "hash": "12903340330589409049" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/States/CardExampleSelected.tsx", - "hash": "4743335789023795653" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/States/index.tsx", - "hash": "4326877489289388573" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleContextMenu.tsx", - "hash": "16278614755070598860" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleExpandable.tsx", - "hash": "8649390718286655876" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusable.tsx", - "hash": "6380226764451546460" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusableChildrenGrid.tsx", - "hash": "6133487715791923353" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusableGrid.tsx", - "hash": "14970933824604047026" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleSelectableGrid.tsx", - "hash": "7940517742425222555" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleSimple.tsx", - "hash": "14390955054934178808" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleWithPreview.tsx", - "hash": "6755223202306762576" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Usage/index.tsx", - "hash": "14661769582418275555" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleCentered.tsx", - "hash": "16162090632028658213" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleElevated.tsx", - "hash": "4937534743147512554" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleFluid.tsx", - "hash": "3882323249492889843" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleHorizontal.tsx", - "hash": "7447178276334602059" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleInverted.tsx", - "hash": "11869197865997729597" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleQuiet.tsx", - "hash": "10258900114037369883" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleSize.tsx", - "hash": "15604663897001783874" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/Variations/index.tsx", - "hash": "14404897511921736607" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Card/index.tsx", - "hash": "12440696140065370056" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/BestPractices/CarouselBestPractices.tsx", - "hash": "5104464237642387440" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Performance/CarouselMinimal.perf.tsx", - "hash": "17230944198296978089" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Types/CarouselExample.shorthand.tsx", - "hash": "3019474799700121608" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Types/CarouselPaginationExample.shorthand.tsx", - "hash": "10219382050743159723" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Types/index.tsx", - "hash": "16549052418389007332" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselCircularExample.shorthand.tsx", - "hash": "726029106221673650" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselExampleWithFocusableElements.tsx", - "hash": "10412458986088851923" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselSlideAnimationExample.shorthand.tsx", - "hash": "11437707182698079093" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselThumbnailsExample.shorthand.tsx", - "hash": "3376835901612583306" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/Variations/index.tsx", - "hash": "2236036551358009719" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Carousel/index.tsx", - "hash": "8852005626228076387" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleActions.shorthand.tsx", - "hash": "11499081318773462966" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleHeader.shorthand.tsx", - "hash": "17627840143032452273" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleHeaderOverride.shorthand.tsx", - "hash": "10286084095369574056" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReactionGroup.shorthand.tsx", - "hash": "8638907150003707098" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReactionGroupMeReacting.shorthand.tsx", - "hash": "5402390244908178596" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReadStatus.shorthand.tsx", - "hash": "17553154374675903213" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Content/index.tsx", - "hash": "14432992613578840826" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Performance/ChatDuplicateMessages.perf.tsx", - "hash": "5328917073152073046" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Performance/ChatMinimal.perf.tsx", - "hash": "17663247331696372307" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Performance/ChatWithPopover.perf.tsx", - "hash": "929883892646559438" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Performance/index.tsx", - "hash": "8533950221499546871" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Playground.tsx", - "hash": "482100186069058437" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Rtl/ChatExample.rtl.tsx", - "hash": "12890530333579628741" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Rtl/index.tsx", - "hash": "7651977407876655266" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExample.shorthand.tsx", - "hash": "6447802063656597961" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleComfyRefresh.tsx", - "hash": "9349394183632742337" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleCompact.shorthand.tsx", - "hash": "13715037756615115885" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleCompact.tsx", - "hash": "6775219425799289574" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleContentPosition.shorthand.tsx", - "hash": "15861811597540900890" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleDetails.shorthand.tsx", - "hash": "8029995682815196086" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatMessageExampleBadge.shorthand.tsx", - "hash": "17776264375069324126" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/ChatMessageExampleStyled.shorthand.tsx", - "hash": "5027022958570589282" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Types/index.tsx", - "hash": "10701634754456562503" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Usage/ChatExampleInScrollable.shorthand.tsx", - "hash": "8374238996916588629" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/Usage/index.tsx", - "hash": "9980155400741893378" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Chat/index.tsx", - "hash": "8493367295079208248" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/BestPractices/CheckboxBestPractices.tsx", - "hash": "18223611762110439939" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Performance/CheckboxMinimal.perf.tsx", - "hash": "548755024468105758" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Rtl/CheckboxExample.rtl.tsx", - "hash": "1128826523532930705" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Rtl/index.tsx", - "hash": "1395384208118196672" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Slots/CheckboxExampleLabel.shorthand.tsx", - "hash": "13064520088118359332" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Slots/index.tsx", - "hash": "9385043156927810366" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleChecked.shorthand.tsx", - "hash": "1021615820140575379" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleCheckedMixed.tsx", - "hash": "2279404225432948332" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleDisabled.shorthand.tsx", - "hash": "5799044504758222972" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/States/index.tsx", - "hash": "1443320154760987498" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Types/CheckboxExample.shorthand.tsx", - "hash": "2803361228273614712" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Types/CheckboxExampleToggle.shorthand.tsx", - "hash": "6490823576580920212" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Types/index.tsx", - "hash": "6143827655904626084" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Visual/CheckboxExampleLabelFlexColumn.shorthand.tsx", - "hash": "1248585251262906403" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/Visual/index.tsx", - "hash": "4703329705091263656" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Checkbox/index.tsx", - "hash": "7699016520185168354" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/BestPractices/DatepickerBestPractices.tsx", - "hash": "14658038377629620116" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Performance/DatepickerMinimal.perf.tsx", - "hash": "11883786566201308365" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Performance/index.tsx", - "hash": "10285630222835501286" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerCellExample.shorthand.tsx", - "hash": "2216960557906603023" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerExampleClearable.shorthand.tsx", - "hash": "691503666246176747" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerHeaderCellExample.shorthand.tsx", - "hash": "2954066980042365464" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerHeaderExample.shorthand.tsx", - "hash": "4738431955016572938" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Slots/index.tsx", - "hash": "18386959363850184352" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleDisabled.shorthand.tsx", - "hash": "12255600267163387649" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleRequired.shorthand.tsx", - "hash": "17702199861644173417" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleSelectedDate.shorthand.tsx", - "hash": "8532825318168330503" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleToday.shorthand.tsx", - "hash": "8713734961732335095" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/States/index.tsx", - "hash": "11296468703106288343" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExample.shorthand.tsx", - "hash": "6846107523874285218" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleLocalizationStrings.shorthand.tsx", - "hash": "17524216608660332950" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleMinMaxDate.shorthand.tsx", - "hash": "7777605866903021481" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleNoInput.shorthand.tsx", - "hash": "16605143463380033608" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleOpen.shorthand.tsx", - "hash": "4543526859621525767" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleRestrictedDates.shorthand.tsx", - "hash": "11273520771450330651" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleWeek.shorthand.tsx", - "hash": "17700066685642168358" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Types/index.tsx", - "hash": "5123663188391578147" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerFirstWeekDayExample.shorthand.tsx", - "hash": "6801357975378394323" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerFormatExample.shorthand.tsx", - "hash": "6926030396132538520" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerNoInputPlaceholderExample.shorthand.tsx", - "hash": "11592675238822744600" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerParseExample.shorthand.tsx", - "hash": "11358215010058344895" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Usage/index.tsx", - "hash": "12813493520771041761" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Variations/DatepickerExampleStandaloneCalendarButton.shorthand.tsx", - "hash": "14190744365069654201" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Variations/DatepickerExampleStandaloneCalendarInput.shorthand.tsx", - "hash": "3280141344322348081" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/Variations/index.tsx", - "hash": "14877018099015199576" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/datepickerCalendarCellSelector.ts", - "hash": "4512443095283466106" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Datepicker/index.tsx", - "hash": "2577934043163934210" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/BestPractices/DialogBestPractices.tsx", - "hash": "14260830851629896857" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleContent.shorthand.tsx", - "hash": "12377463484984823727" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleFooter.shorthand.tsx", - "hash": "17988792199130038865" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleFullWidth.shorthand.tsx", - "hash": "16078279811160423478" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleHeaderAction.shorthand.tsx", - "hash": "12456284637876482599" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleZoomContent.shorthand.tsx", - "hash": "7395294606546393853" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleZoomCustomFooter.shorthand.tsx", - "hash": "12988031539830275311" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Content/index.tsx", - "hash": "7519254899298717488" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Performance/DialogMinimal.perf.tsx", - "hash": "12277136355006118770" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Rtl/DialogExample.rtl.tsx", - "hash": "12130562440285824815" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Rtl/index.tsx", - "hash": "6285202181558572658" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Types/DialogExample.shorthand.tsx", - "hash": "13993226013804074696" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Types/index.tsx", - "hash": "18282978571056602747" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Usage/DialogExampleCallbacks.shorthand.tsx", - "hash": "2381692102417755746" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Usage/index.tsx", - "hash": "7882165995889355660" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Variations/DialogExampleBackdrop.shorthand.tsx", - "hash": "4307433218568996125" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Variations/DialogExampleScroll.shorthand.tsx", - "hash": "9671806836586772310" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/Variations/index.tsx", - "hash": "16158666808898205471" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dialog/index.tsx", - "hash": "4142905135655717486" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Performance/DividerMinimal.perf.tsx", - "hash": "1618744828317117143" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Performance/index.tsx", - "hash": "2284629446526020790" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Rtl/DividerExample.rtl.tsx", - "hash": "12247005208114230384" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Rtl/index.tsx", - "hash": "7078633835680831899" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Types/DividerExample.shorthand.tsx", - "hash": "5746094543465502941" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Types/DividerExampleContent.shorthand.tsx", - "hash": "1611823870656417247" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Types/DividerExampleContent.tsx", - "hash": "4194350913838679961" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Types/index.tsx", - "hash": "11368777759905312335" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleColor.shorthand.tsx", - "hash": "2681676744265735788" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleFitted.shorthand.tsx", - "hash": "13684475891877616638" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleImportant.shorthand.tsx", - "hash": "437776456355447840" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleImportant.tsx", - "hash": "6386113623863546527" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleSize.shorthand.tsx", - "hash": "12928272173652669541" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleSize.tsx", - "hash": "10864025889517401905" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleVertical.shorthand.tsx", - "hash": "14552765098852998269" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Variations/index.tsx", - "hash": "1785542878842749187" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Visuals/DividerExampleRtlAndLtr.tsx", - "hash": "9798021593130619224" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/Visuals/index.tsx", - "hash": "9222615053153918782" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Divider/index.tsx", - "hash": "14235140459762121043" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/BestPractices/DropdownBestPractices.tsx", - "hash": "16726827083630930640" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Performance/DropdownManyItems.perf.tsx", - "hash": "8315175362323959522" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Performance/DropdownMinimal.perf.tsx", - "hash": "12532562062498627334" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Performance/index.tsx", - "hash": "5374991165033626972" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Rtl/DropdownExample.rtl.tsx", - "hash": "13183277357458072753" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Rtl/index.tsx", - "hash": "2820325268687576580" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Slots/DropdownExampleHeaderMessage.shorthand.tsx", - "hash": "12627865128962361689" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Slots/index.tsx", - "hash": "3945549868267392271" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/State/DropdownExampleDisabled.shorthand.tsx", - "hash": "6213534420806785166" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/State/DropdownExampleLoading.shorthand.tsx", - "hash": "14531425989713052820" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/State/index.tsx", - "hash": "17101438230209286123" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExample.shorthand.tsx", - "hash": "17080911572702169315" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleClearable.shorthand.tsx", - "hash": "14649463536937589220" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleFreeform.shorthand.tsx", - "hash": "36631747644339491" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleInline.shorthand.tsx", - "hash": "2368225702870682798" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleInverted.shorthand.tsx", - "hash": "1256304487568835216" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleMultiple.shorthand.tsx", - "hash": "14453131596234298619" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleSearch.shorthand.tsx", - "hash": "11345981179193784990" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleSearchMultiple.shorthand.tsx", - "hash": "16912889630350609564" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Types/index.tsx", - "hash": "11249932439843066393" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleControlled.shorthand.tsx", - "hash": "10914293369711090357" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleHeaderMessage.shorthand.tsx", - "hash": "7484846361714883755" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleRender.shorthand.tsx", - "hash": "12735533195513404349" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Usage/index.tsx", - "hash": "10372174955857748557" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleOffset.shorthand.tsx", - "hash": "8878106917840913450" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExamplePosition.shorthand.tsx", - "hash": "15030695889532996878" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleFluid.shorthand.tsx", - "hash": "2823634216814611259" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleFrenchLanguage.shorthand.tsx", - "hash": "11500036917111802737" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleImageAndContent.shorthand.tsx", - "hash": "899871089361290733" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Variations/index.tsx", - "hash": "10984380790981850041" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Visual/DropdownExampleCustomClearable.shorthand.tsx", - "hash": "9297663856524401359" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/Visual/index.tsx", - "hash": "9129097450560402411" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Dropdown/index.tsx", - "hash": "10937488397683749460" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Embed/Performance/EmbedMinimal.perf.tsx", - "hash": "13349535745803780087" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Embed/Slots/EmbedExampleVideo.shorthand.tsx", - "hash": "5521089746614766109" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Embed/Slots/index.tsx", - "hash": "4311408216226913591" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Embed/Usage/EmbedExampleYouTube.shorthand.tsx", - "hash": "15513298030058753217" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Embed/Usage/index.tsx", - "hash": "7470763844759721977" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Embed/index.tsx", - "hash": "10144010630743895149" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Performance/FlexMinimal.perf.tsx", - "hash": "12501107038452642246" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Recipes.mdx", - "hash": "17295467775326810200" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Rtl/FlexExample.rtl.tsx", - "hash": "8048699383448891868" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Rtl/index.tsx", - "hash": "12333133982344563985" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleColumns.shorthand.tsx", - "hash": "9494669297093995444" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleInput.shorthand.tsx", - "hash": "6151230046666799951" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleItemsAlignment.shorthand.tsx", - "hash": "17665003590332687702" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleMediaCard.shorthand.tsx", - "hash": "5255190600379815597" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleMixedAlignment.shorthand.tsx", - "hash": "14670896287883140894" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleNavMenu.shorthand.tsx", - "hash": "42145263656539355" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/Types/index.tsx", - "hash": "2783746349735568035" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Flex/index.tsx", - "hash": "9529941190943702247" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/BestPractices/FormBestPractices.tsx", - "hash": "4136184157997267686" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Performance/FormMinimal.perf.tsx", - "hash": "2571551938411128386" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Rtl/FormExample.rtl.tsx", - "hash": "10506727184234633255" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Rtl/index.tsx", - "hash": "4614138208583971475" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Types/FormExampleBase.tsx", - "hash": "10121099561877496153" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Types/FormExampleInline.tsx", - "hash": "2538286387249164206" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Types/index.tsx", - "hash": "16126961388117750847" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleCheckbox.tsx", - "hash": "4046681236153968736" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleDatepicker.tsx", - "hash": "11361687445062035356" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleDropdown.tsx", - "hash": "16899693285659366324" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleErrorAndSuccessful.tsx", - "hash": "13266856889811549954" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleSlider.tsx", - "hash": "10198029342425902438" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Usage/index.tsx", - "hash": "15086437689148636434" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Variants/FormExampleComponents.tsx", - "hash": "2573371969871522344" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/Variants/index.tsx", - "hash": "9823028957988922526" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Form/index.tsx", - "hash": "11972671644921053635" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/BestPractices/GridBestPractices.tsx", - "hash": "1193691283068665299" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Performance/GridMinimal.perf.tsx", - "hash": "4079832271606619442" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Rtl/GridExample.rtl.tsx", - "hash": "12468929948335278655" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Rtl/index.tsx", - "hash": "7983227345755296662" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Types/GridExample.shorthand.tsx", - "hash": "11467276478685629311" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Types/GridExample.tsx", - "hash": "8643475293237398036" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Types/index.tsx", - "hash": "13229359958304259286" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumns.shorthand.tsx", - "hash": "6425137964439956574" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumns.tsx", - "hash": "7420224291209639457" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumnsAndRows.shorthand.tsx", - "hash": "3567925282059655667" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumnsAndRows.tsx", - "hash": "4824891686913113193" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleKeyboardNavigable.shorthand.tsx", - "hash": "9131649190027849541" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleKeyboardNavigable.tsx", - "hash": "4293702764822798471" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleRows.shorthand.tsx", - "hash": "15962531291130856093" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleRows.tsx", - "hash": "8543754780402711167" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/Variations/index.tsx", - "hash": "9972281313863506308" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Grid/index.tsx", - "hash": "10416747021370596299" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Performance/HeaderMinimal.perf.tsx", - "hash": "5323374520410167057" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Performance/HeaderSlots.perf.tsx", - "hash": "8830529866730138179" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Performance/index.tsx", - "hash": "5795973500029634072" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Rtl/HeaderExample.rtl.tsx", - "hash": "8397027536443740326" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Rtl/index.tsx", - "hash": "14621479683050448407" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Types/HeaderExample.shorthand.tsx", - "hash": "15385530257979275701" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Types/HeaderExample.tsx", - "hash": "7968422868759978259" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Types/index.tsx", - "hash": "15468349939030115969" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExample.shorthand.tsx", - "hash": "11022697380901723002" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleAlign.tsx", - "hash": "8225784069630751692" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleColor.shorthand.tsx", - "hash": "17405830202188634827" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleColor.tsx", - "hash": "16859685718898289475" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescription.shorthand.tsx", - "hash": "15241634986814391461" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescription.tsx", - "hash": "14029563099860337841" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescriptionCustomization.shorthand.tsx", - "hash": "1620088646142946953" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescriptionCustomization.tsx", - "hash": "6282939784028655517" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/Variations/index.tsx", - "hash": "16357029446829677127" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Header/index.tsx", - "hash": "15138625360246765758" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Performance/ImageMinimal.perf.tsx", - "hash": "4482660474477179886" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Rtl/ImageExample.rtl.tsx", - "hash": "568591531191807451" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Rtl/index.tsx", - "hash": "16250337141935650130" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Types/ImageExample.shorthand.tsx", - "hash": "7033086185340563868" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Types/ImageExampleAvatar.shorthand.tsx", - "hash": "16106436339944453184" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Types/index.tsx", - "hash": "8871094264144824226" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Variations/ImageExampleCircular.tsx", - "hash": "16218168966715421410" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Variations/ImageExampleFluid.tsx", - "hash": "3771396024984176184" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/Variations/index.tsx", - "hash": "12718161915963599283" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Image/index.tsx", - "hash": "14778751457497188202" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/BestPractices/InputBestPractices.tsx", - "hash": "4536840931722831119" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Performance/InputMinimal.perf.tsx", - "hash": "1742422238398296030" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Rtl/InputExample.rtl.tsx", - "hash": "5453138406020243009" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Rtl/index.tsx", - "hash": "5209340204092211504" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Slots/InputExampleLabel.shorthand.tsx", - "hash": "3651591885077867826" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Slots/index.tsx", - "hash": "13661927172029543202" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/State/InputExampleDisabled.shorthand.tsx", - "hash": "14365373317059379602" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/State/index.tsx", - "hash": "12831465518877123178" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Types/InputExample.shorthand.tsx", - "hash": "6755849521905541062" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Types/InputInvertedExample.shorthand.tsx", - "hash": "4117066794446027951" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Types/index.tsx", - "hash": "7632673967977727996" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleClearable.shorthand.tsx", - "hash": "9404606633555359873" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleFluid.shorthand.tsx", - "hash": "15266243787978450262" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIcon.shorthand.tsx", - "hash": "15895186166085714878" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIconClearable.shorthand.tsx", - "hash": "7104733062363489717" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIconPosition.shorthand.tsx", - "hash": "9935358360489714868" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInline.shorthand.tsx", - "hash": "5468257279265642045" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInlineIconClearable.shorthand.tsx", - "hash": "10478121607870935520" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInputSlot.shorthand.tsx", - "hash": "2201703452647000286" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleTargeting.shorthand.tsx", - "hash": "4209791436950689520" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleWrapperSlot.shorthand.tsx", - "hash": "7800523774844648983" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/Variations/index.tsx", - "hash": "13104632528145391550" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Input/index.tsx", - "hash": "1509719792316300905" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleContent.shorthand.tsx", - "hash": "14894828782699454086" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleContentMedia.shorthand.tsx", - "hash": "7573352761909351504" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleEndMedia.shorthand.tsx", - "hash": "15740083457201401325" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeader.shorthand.tsx", - "hash": "8410753305863486273" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeaderContent.shorthand.tsx", - "hash": "16895479213370900048" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeaderMedia.shorthand.tsx", - "hash": "11253012967216694098" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleMedia.shorthand.tsx", - "hash": "17926492654675453519" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Content/index.tsx", - "hash": "13030288130334378633" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Performance/ItemLayoutMinimal.perf.tsx", - "hash": "6631643315923856192" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Rtl/ItemLayoutExample.rtl.tsx", - "hash": "2444060836574253170" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Rtl/index.tsx", - "hash": "2780506083804436194" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Types/ItemLayoutExample.shorthand.tsx", - "hash": "10247570755509089808" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Types/ItemLayoutExampleSelection.shorthand.tsx", - "hash": "4981524316985719543" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/Types/index.tsx", - "hash": "18017725912507536879" - }, - { - "file": "packages/fluentui/docs/src/examples/components/ItemLayout/index.tsx", - "hash": "10709585972443187997" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExample.shorthand.tsx", - "hash": "2696046522043543355" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExample.tsx", - "hash": "10559071231023839069" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleContentCustomization.shorthand.tsx", - "hash": "9851366695884214163" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleIcon.shorthand.tsx", - "hash": "8646930987303616079" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleIconPosition.shorthand.tsx", - "hash": "1622761577410217418" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleImage.shorthand.tsx", - "hash": "1926729956091713246" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleImagePosition.shorthand.tsx", - "hash": "18244060208028061242" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Content/index.tsx", - "hash": "14951390822192745489" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Performance/LabelMinimal.perf.tsx", - "hash": "5844538879014925645" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Rtl/LabelExample.rtl.tsx", - "hash": "12525130322147919346" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Rtl/index.tsx", - "hash": "6166665281101154932" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Variations/LabelExampleCircular.shorthand.tsx", - "hash": "5966462711603098031" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Variations/LabelExampleColor.shorthand.tsx", - "hash": "16476847855911341045" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/Variations/index.tsx", - "hash": "9682314536491900536" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Label/index.tsx", - "hash": "15608403142644399383" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Performance/LayoutMinimal.perf.tsx", - "hash": "10124786163741257471" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Types/LayoutExample.shorthand.tsx", - "hash": "10004038094153834525" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Types/LayoutExampleVertical.shorthand.tsx", - "hash": "13323460735978321752" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Types/index.tsx", - "hash": "3361086206811625978" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExample.shorthand.tsx", - "hash": "10004038094153834525" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleDisappearing.shorthand.tsx", - "hash": "4691140278882749774" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleGap.shorthand.tsx", - "hash": "7999888195762166326" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleReducing.shorthand.tsx", - "hash": "634677705856392968" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/Variations/index.tsx", - "hash": "763791615822724394" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Layout/index.tsx", - "hash": "9774975278713176393" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleContent.shorthand.tsx", - "hash": "9231151213039467861" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleContent.tsx", - "hash": "10885188019894963771" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleContentMedia.shorthand.tsx", - "hash": "4325683898037784798" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleContentMedia.tsx", - "hash": "6363831081270265783" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleEndMedia.shorthand.tsx", - "hash": "17569021195811716801" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleEndMedia.tsx", - "hash": "14049157749409821911" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeader.shorthand.tsx", - "hash": "12422873342579196668" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeader.tsx", - "hash": "1361664582927291347" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderContent.shorthand.tsx", - "hash": "15027504677421412306" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderContent.tsx", - "hash": "68215173808336733" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderMedia.shorthand.tsx", - "hash": "4824113237188296040" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderMedia.tsx", - "hash": "8487392130030578913" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleMedia.shorthand.tsx", - "hash": "18000108466405842359" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/ListExampleMedia.tsx", - "hash": "9930526857857226875" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Content/index.tsx", - "hash": "1748480120885819339" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Performance/ListCommon.perf.tsx", - "hash": "6561515821134606538" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Performance/ListMinimal.perf.tsx", - "hash": "9571773797160334331" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Performance/ListNested.perf.tsx", - "hash": "3216303131903272594" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Performance/ListWith60ListItems.perf.tsx", - "hash": "3855415483199286809" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Performance/index.tsx", - "hash": "14285660182588942022" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Rtl/ListExample.rtl.tsx", - "hash": "13442933759393369223" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Rtl/index.tsx", - "hash": "11819586909959517693" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExample.shorthand.tsx", - "hash": "15333657866263057316" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExample.tsx", - "hash": "16258065849372258640" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleNavigable.shorthand.tsx", - "hash": "6407980487296804294" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleNavigable.tsx", - "hash": "7635503171903939112" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectable.shorthand.tsx", - "hash": "1873769023807454836" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectable.tsx", - "hash": "1698957149768324171" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectableControlled.shorthand.tsx", - "hash": "12782378747286920342" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Types/index.tsx", - "hash": "5415106785487907370" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Usage/ListExampleMemo.tsx", - "hash": "8917577665825762351" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Usage/index.tsx", - "hash": "15349833127032366157" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Variations/ListExampleFixedTruncate.shorthand.tsx", - "hash": "2730379426120339855" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Variations/ListExampleHorizontal.shorthand.tsx", - "hash": "16997648851325108063" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Variations/ListExampleTruncate.shorthand.tsx", - "hash": "16550693054611575574" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Variations/ListExampleTruncate.tsx", - "hash": "13452277803109662735" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/Variations/index.tsx", - "hash": "5881166162270636169" - }, - { - "file": "packages/fluentui/docs/src/examples/components/List/index.tsx", - "hash": "6856587354159162620" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/BestPractices/LoaderBestPractices.tsx", - "hash": "17076787117927919687" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Performance/LoaderMinimal.perf.tsx", - "hash": "10825944497092424482" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Performance/index.tsx", - "hash": "2672455834481754469" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Rtl/LoaderExample.rtl.tsx", - "hash": "6894689127573694081" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Rtl/index.tsx", - "hash": "11467653178340820209" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Types/LoaderExample.shorthand.tsx", - "hash": "17386374381567659804" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Types/LoaderExampleLabel.shorthand.tsx", - "hash": "536227871747389527" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Types/index.tsx", - "hash": "1853722176510785772" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Usage/LoaderExampleDelay.tsx", - "hash": "3124554476920325960" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Usage/index.tsx", - "hash": "12904058592937147794" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleInline.tsx", - "hash": "1865826805469384195" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleLabelPosition.shorthand.tsx", - "hash": "14823352032932489651" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleSecondary.tsx", - "hash": "6805369726553471930" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleSize.tsx", - "hash": "928971371710753426" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/Variations/index.tsx", - "hash": "7707531497740640339" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Loader/index.tsx", - "hash": "15491664950196071284" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/BestPractices/MenuBestPractices.tsx", - "hash": "1148764178301497175" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Performance/MenuMinimal.perf.tsx", - "hash": "2401373787281935539" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Playground.tsx", - "hash": "1091516363403052049" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Rtl/MenuExample.rtl.tsx", - "hash": "11856368448634044769" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Rtl/index.tsx", - "hash": "11822002180748385531" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDivider.shorthand.tsx", - "hash": "15129455285604720244" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDivider.tsx", - "hash": "11841541853492995378" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDividerHorizontal.shorthand.tsx", - "hash": "13359961286051787592" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDividerHorizontal.tsx", - "hash": "5143724620376855284" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleIconOnly.shorthand.tsx", - "hash": "11000640034821314031" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleIconOnly.tsx", - "hash": "2306115093079629299" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleSlot.shorthand.tsx", - "hash": "9656116265171394237" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleSlot.tsx", - "hash": "945046029822481092" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleWithIcons.shorthand.tsx", - "hash": "4785937693664823680" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleWithIcons.tsx", - "hash": "2971564546782610091" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Slots/index.tsx", - "hash": "6283686420977361754" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/States/MenuControlledExample.shorthand.tsx", - "hash": "10194642940947694217" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/States/MenuItemExampleDisabled.shorthand.tsx", - "hash": "235258550393281513" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/States/MenuItemExampleDisabled.tsx", - "hash": "4812993067582864952" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/States/index.tsx", - "hash": "17402268562551851474" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExample.shorthand.tsx", - "hash": "18127778721870174508" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExample.tsx", - "hash": "4746656654908753746" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExamplePointing.shorthand.tsx", - "hash": "3306766872106443980" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExamplePointing.tsx", - "hash": "9515561015913587630" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.shorthand.tsx", - "hash": "8847444862932826819" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.tsx", - "hash": "3492819735314541593" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Types/index.tsx", - "hash": "16878301856711676587" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleTabList.shorthand.tsx", - "hash": "7610120576477353894" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleTabList.tsx", - "hash": "2011627756318785489" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleToolbar.shorthand.tsx", - "hash": "17064202586037134935" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenu.shorthand.tsx", - "hash": "5596368956995949414" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenuControlled.shorthand.tsx", - "hash": "220813465245031774" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenuHover.shorthand.tsx", - "hash": "17161303855803153450" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithTooltip.shorthand.tsx", - "hash": "6243550488720737656" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithTooltip.tsx", - "hash": "12000097960576681213" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Usage/index.tsx", - "hash": "12302412292361952698" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleFluid.shorthand.tsx", - "hash": "13064471807127524035" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleFluid.tsx", - "hash": "13692909798327607747" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVertical.shorthand.tsx", - "hash": "13733685118568006661" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPointing.shorthand.tsx", - "hash": "8068757237899528017" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPointing.tsx", - "hash": "13474885059913991450" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPrimary.shorthand.tsx", - "hash": "9419549282178692813" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Variations/index.tsx", - "hash": "9812201022681861443" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExamplePositioning.shorthand.tsx", - "hash": "7352296603393000933" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExamplePositioningUpdate.shorthand.tsx", - "hash": "16893348791643087442" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExampleVertical.tsx", - "hash": "1918671705400028108" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/Visual/index.tsx", - "hash": "14921709986822918982" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Menu/index.tsx", - "hash": "7093431700049905369" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/Performance/MenuButtonMinimal.perf.tsx", - "hash": "8542732171269113775" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/Rtl/MenuButtonExample.rtl.tsx", - "hash": "6337724502663305552" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/Rtl/index.tsx", - "hash": "6638186061182872564" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/State/MenuButtonExampleOpen.shorthand.tsx", - "hash": "2608597770808588352" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/State/index.tsx", - "hash": "14634225165658357467" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/Usage/MenuButtonExampleContextMenu.shorthand.tsx", - "hash": "1026610848202498026" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/Usage/MenuButtonExampleOn.shorthand.tsx", - "hash": "3135948295889322686" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/Usage/index.tsx", - "hash": "10027429472797848590" - }, - { - "file": "packages/fluentui/docs/src/examples/components/MenuButton/index.tsx", - "hash": "16849312605865228993" - }, - { - "file": "packages/fluentui/docs/src/examples/components/PerformanceTests/Performance/Roster.perf.tsx", - "hash": "1671137001377166992" - }, - { - "file": "packages/fluentui/docs/src/examples/components/PerformanceTests/index.tsx", - "hash": "16182572711134628967" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/BestPractices/PillBestPractices.tsx", - "hash": "15184619707213158796" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/State/PillExampleDisabled.tsx", - "hash": "225635531870302008" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/State/index.tsx", - "hash": "7850230691816422967" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Types/PillExample.tsx", - "hash": "3917196493748856429" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Types/PillsExample.tsx", - "hash": "8180071303992218841" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Types/index.tsx", - "hash": "11535681964715845934" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleActionable.tsx", - "hash": "13550250194486157707" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleAppearance.tsx", - "hash": "12642313646398949118" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleIcon.tsx", - "hash": "3033494631218963635" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleImage.tsx", - "hash": "12025962676000518988" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleRectangular.tsx", - "hash": "9475227123919005662" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleSelectable.tsx", - "hash": "4059077961421342466" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleSizes.tsx", - "hash": "1372461143642718047" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/Variations/index.tsx", - "hash": "4794134926682899725" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Pill/index.tsx", - "hash": "308800105363798938" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/BestPractices/PopupBestPractices.tsx", - "hash": "14691495679088971408" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Performance/PopupMinimal.perf.tsx", - "hash": "769127780080565910" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Rtl/PopupExample.rtl.tsx", - "hash": "4025468581995924373" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Rtl/index.tsx", - "hash": "10873636211257697823" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupControlledExample.shorthand.tsx", - "hash": "11360271729888420335" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupControlledExample.tsx", - "hash": "15236078454659808077" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupCustomTargetExample.shorthand.tsx", - "hash": "14177824506531876219" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupCustomTargetExample.tsx", - "hash": "15618421921267612568" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExample.shorthand.tsx", - "hash": "5651623114942915273" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExample.tsx", - "hash": "2201968360249751569" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExampleInline.shorthand.tsx", - "hash": "16143307516772722391" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExampleInline.tsx", - "hash": "15436059692901633142" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupExamplePointing.shorthand.tsx", - "hash": "11380429919678701304" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/PopupFocusTrapExample.shorthand.tsx", - "hash": "4844970199294400171" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Types/index.tsx", - "hash": "1038283187659463283" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleAsync.shorthand.tsx", - "hash": "13310281521799433826" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleCloseButton.shorthand.tsx", - "hash": "15497765193228430672" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleCloseButton.tsx", - "hash": "9958856842982015940" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleContextOnElement.tsx", - "hash": "16810053831311380677" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleNested.shorthand.tsx", - "hash": "6977345676829096553" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOn.shorthand.tsx", - "hash": "12040021593308161947" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOnMultiple.shorthand.tsx", - "hash": "11901628195575852306" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOnWithFocusTrap.shorthand.tsx", - "hash": "11387245286688535625" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Usage/index.tsx", - "hash": "15583074628811659850" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExampleAutoSize.shorthand.tsx", - "hash": "18051787308840745700" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExampleOffset.shorthand.tsx", - "hash": "2598279928927838796" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExamplePosition.shorthand.tsx", - "hash": "5014667790535831638" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExamplePosition.tsx", - "hash": "14724531471909272772" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Variations/index.tsx", - "hash": "11205808743807307793" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopperExamplePositioning.tsx", - "hash": "3402356215985975741" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopperExampleVisibilityModifiers.tsx", - "hash": "5930513785737904564" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExampleContainerTransformed.tsx", - "hash": "6454123585379870685" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExamplePointerMargin.shorthand.tsx", - "hash": "12246850078535057943" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExamplePointerOffset.tsx", - "hash": "8557789888384105072" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/PopupScrollExample.tsx", - "hash": "1092456042955589651" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/Visual/index.tsx", - "hash": "1257556053517955659" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Popup/index.tsx", - "hash": "14244818971203151580" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/Performance/PortalMinimal.perf.tsx", - "hash": "1280050399468706846" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/State/PortalExampleOpen.tsx", - "hash": "7747918653201416489" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/State/index.tsx", - "hash": "2471947539793886914" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/Types/PortalExample.shorthand.tsx", - "hash": "7093133557609363165" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/Types/PortalExample.tsx", - "hash": "16973700092145622013" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/Types/PortalExampleFocusTrapped.shorthand.tsx", - "hash": "18157629743013996375" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/Types/PortalExampleFocusTrapped.tsx", - "hash": "6823047004923659443" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/Types/index.tsx", - "hash": "12807792126420428514" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Portal/index.tsx", - "hash": "4816663574998133171" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Performance/ProviderMergeThemes.perf.tsx", - "hash": "10357042662153941278" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Performance/ProviderMinimal.perf.tsx", - "hash": "875685099328132794" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Performance/index.tsx", - "hash": "14396567022906488393" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderDisableAnimationsExample.shorthand.tsx", - "hash": "12158931261228946976" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExample.shorthand.tsx", - "hash": "7876580913304867265" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleFocusBorder.shorthand.tsx", - "hash": "18315534677363544150" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleRendererFelaPluginFallbackValue.shorthand.tsx", - "hash": "9376927013985860098" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleScrollbar.shorthand.tsx", - "hash": "14869269664997133421" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleStyles.shorthand.tsx", - "hash": "915498641226028817" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Types/ProviderRtlExample.shorthand.tsx", - "hash": "971324591208205115" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Types/index.tsx", - "hash": "1548681423522224763" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Usage/ProviderExampleTarget.tsx", - "hash": "13947434155337757662" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Usage/ProviderExampleTargetFrame.tsx", - "hash": "10241159316166337828" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/Usage/index.tsx", - "hash": "1591294953056712013" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Provider/index.tsx", - "hash": "14961953425430424666" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExample.shorthand.tsx", - "hash": "8794932438885348780" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExampleChecked.shorthand.tsx", - "hash": "10851098855382529857" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExampleDisabled.shorthand.tsx", - "hash": "11656138751705946866" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Item/index.tsx", - "hash": "14497407002158091465" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Performance/RadioGroupMinimal.perf.tsx", - "hash": "15053198625352535132" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Rtl/RadioGroupExample.rtl.tsx", - "hash": "4471510346867972515" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Rtl/index.tsx", - "hash": "3850717975312738992" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupColorPickerExample.shorthand.tsx", - "hash": "1963146957713849165" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupExample.shorthand.tsx", - "hash": "15576873279871783334" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupVerticalExample.shorthand.tsx", - "hash": "6799207127209368586" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Types/index.tsx", - "hash": "1765245586396985668" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Usage/RadioGroupCustomExample.shorthand.tsx", - "hash": "13561962407174439681" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/Usage/index.tsx", - "hash": "16582427638124774793" - }, - { - "file": "packages/fluentui/docs/src/examples/components/RadioGroup/index.tsx", - "hash": "8270839829663713461" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Reaction/BestPractices/ReactionBestPractices.tsx", - "hash": "9273372572363071132" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Reaction/Performance/ReactionMinimal.perf.tsx", - "hash": "1050040320316407323" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Reaction/Rtl/ReactionExample.rtl.tsx", - "hash": "4248876968732174230" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Reaction/Rtl/index.tsx", - "hash": "2015079013080726768" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Reaction/Types/ReactionExample.shorthand.tsx", - "hash": "17305309175171886727" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Reaction/Types/ReactionGroupExample.shorthand.tsx", - "hash": "5653765080526238268" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Reaction/Types/index.tsx", - "hash": "4533187858270278955" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Reaction/index.tsx", - "hash": "13552494968983937345" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Ref/Performance/RefMinimal.perf.tsx", - "hash": "12734421099743106835" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Ref/Types/RefExample.shorthand.tsx", - "hash": "947545573143756399" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Ref/Types/RefForwardingExample.shorthand.tsx", - "hash": "12714715976648162928" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Ref/Types/index.tsx", - "hash": "17846087013936532796" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Ref/index.tsx", - "hash": "15630243285341224194" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Performance/SegmentMinimal.perf.tsx", - "hash": "6106209279245030302" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Rtl/SegmentExample.rtl.tsx", - "hash": "4984314994571441949" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Rtl/index.tsx", - "hash": "7264175941352362763" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/States/SegmentExampleDisabled.shorthand.tsx", - "hash": "1447666560336142634" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/States/SegmentExampleDisabled.tsx", - "hash": "9939080071452335784" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/States/index.tsx", - "hash": "15510553270873649507" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Types/SegmentExample.shorthand.tsx", - "hash": "4521252015219986379" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Types/SegmentExample.tsx", - "hash": "14191539552345947271" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Types/index.tsx", - "hash": "6425801768050272369" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleColor.shorthand.tsx", - "hash": "4018577540283862271" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleColor.tsx", - "hash": "11898578555204733155" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleInverted.shorthand.tsx", - "hash": "5006772346970981875" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleInverted.tsx", - "hash": "4674557655748034557" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/Variations/index.tsx", - "hash": "17210751842025928867" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Segment/index.tsx", - "hash": "13165167863480646704" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/BestPractices/SkeletonBestPractices.tsx", - "hash": "11299779863031749491" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Performance/SkeletonMinimal.perf.tsx", - "hash": "17151828783466057607" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Performance/index.tsx", - "hash": "13068110492453554314" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleCard.tsx", - "hash": "11681636039219057772" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleDefault.tsx", - "hash": "5298862632862212220" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleList.tsx", - "hash": "3994728901000370391" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Usage/index.tsx", - "hash": "8658623377452207069" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Variations/SkeletonExampleAnimations.tsx", - "hash": "5840051234383928667" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Variations/SkeletonExampleComponents.tsx", - "hash": "6146256229951310790" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/Variations/index.tsx", - "hash": "4963526455682049474" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Skeleton/index.tsx", - "hash": "4930155455556413528" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/BestPractices/SliderBestPractices.tsx", - "hash": "16971553798248851448" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Performance/SliderMinimal.perf.tsx", - "hash": "5683915994532975308" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Rtl/SliderExample.rtl.tsx", - "hash": "11110359940013906638" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Rtl/index.tsx", - "hash": "5828325333876107293" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/States/SliderExampleDisabled.shorthand.tsx", - "hash": "14759118373998593037" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/States/index.tsx", - "hash": "5819082409675027780" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Types/SliderExample.shorthand.tsx", - "hash": "5451486256462625366" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Types/index.tsx", - "hash": "7324547195758132067" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Usage/SliderExampleAction.shorthand.tsx", - "hash": "7745582782640576862" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Usage/SliderExampleForm.shorthand.tsx", - "hash": "2111231209869031445" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Usage/index.tsx", - "hash": "3885309747960239628" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Variations/SliderExampleFluid.shorthand.tsx", - "hash": "4637699113225425671" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Variations/SliderExampleVertical.shorthand.tsx", - "hash": "17437641334520746677" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/Variations/index.tsx", - "hash": "11924443720597252865" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Slider/index.tsx", - "hash": "5206201463804797308" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/BestPractices/SplitButtonBestPractices.tsx", - "hash": "2000902291897511495" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Performance/SplitButtonMinimal.perf.tsx", - "hash": "3500159460743084221" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Slots/SplitButtonIconAndContentExample.shorthand.tsx", - "hash": "13085330416997443259" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Slots/SplitButtonToggleButtonExample.shorthand.tsx", - "hash": "10202142522989619458" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Slots/index.tsx", - "hash": "7830322805396207627" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/States/SplitButtonExampleDisabled.shorthand.tsx", - "hash": "9620865874445391479" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/States/index.tsx", - "hash": "11088877437828424103" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExample.shorthand.tsx", - "hash": "18444227571953934657" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExampleFlat.shorthand.tsx", - "hash": "2950485000675828410" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExamplePrimary.shorthand.tsx", - "hash": "3342011974196004167" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExampleSmall.shorthand.tsx", - "hash": "4795058889272829421" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Types/index.tsx", - "hash": "7397507779112941418" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Usage/SplitButtonMainOptionChangeExample.shorthand.tsx", - "hash": "9023600002190709651" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Usage/SplitButtonPositioningExampleShorthand.shorthand.tsx", - "hash": "8489259726922924849" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Usage/index.tsx", - "hash": "16562305662577179570" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Visual/SplitButtonExampleSmallContainer.tsx", - "hash": "13278820737132459641" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/Visual/index.tsx", - "hash": "133837785704319957" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SplitButton/index.tsx", - "hash": "12516377041553330988" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/BestPractices/StatusBestPractices.tsx", - "hash": "2842206438674642976" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Performance/StatusMinimal.perf.tsx", - "hash": "3467231160851523327" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Types/StatusExample.shorthand.tsx", - "hash": "12044042368016196218" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Types/StatusTypeExample.shorthand.tsx", - "hash": "13350748024954070133" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Types/index.tsx", - "hash": "2811353043156884507" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Variations/StatusColorExample.shorthand.tsx", - "hash": "3987068556304091057" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Variations/StatusCustomExample.shorthand.tsx", - "hash": "2548938419948027605" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Variations/StatusIconExample.shorthand.tsx", - "hash": "5524818873389068964" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Variations/StatusSizeExample.shorthand.tsx", - "hash": "5707553982966709248" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/Variations/index.tsx", - "hash": "9120569656874648802" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Status/index.tsx", - "hash": "2816738493521398893" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/BestPractices/IconBestPractices.tsx", - "hash": "4072626567249075080" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Performance/IconMinimal.perf.tsx", - "hash": "5190579029005441788" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Performance/index.tsx", - "hash": "16814660870533487226" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Playground.tsx", - "hash": "8812012154417175908" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/SvgIconExample.rtl.tsx", - "hash": "14644173506843824353" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/SvgIconExampleRotate.rtl.tsx", - "hash": "15057195332144981474" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/index.tsx", - "hash": "1612672297693581878" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/States/SvgIconExampleDisabled.shorthand.tsx", - "hash": "3470608587583128076" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/States/index.tsx", - "hash": "10545754726360979463" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Types/SvgIconExample.shorthand.tsx", - "hash": "10086633318723837555" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Types/index.tsx", - "hash": "17535747109177872834" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Usage/SvgIconSetExample.shorthand.tsx", - "hash": "712280352364671982" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Usage/index.tsx", - "hash": "7787500621832502210" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleBordered.shorthand.tsx", - "hash": "13663934745164798152" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleCircular.shorthand.tsx", - "hash": "10039662552931739" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleColor.shorthand.tsx", - "hash": "11096658655423303569" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleRotate.shorthand.tsx", - "hash": "9100232926702492531" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleSize.shorthand.tsx", - "hash": "4188316930125539160" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleSpace.shorthand.tsx", - "hash": "5992719719142309327" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/Variations/index.tsx", - "hash": "167430481359948232" - }, - { - "file": "packages/fluentui/docs/src/examples/components/SvgIcon/index.tsx", - "hash": "17532453811600698785" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/BestPractices/TableBestPractices.tsx", - "hash": "13116952679854774648" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Performance/TableManyItems.perf.tsx", - "hash": "8843379085853058190" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Performance/TableMinimal.perf.tsx", - "hash": "6451763713975397742" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Performance/index.tsx", - "hash": "5455578957824022592" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleNavigable.shorthand.tsx", - "hash": "1321971208257382513" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStatic.shorthand.tsx", - "hash": "14512923368632768022" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStatic.tsx", - "hash": "5761370134080040759" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticCompact.shorthand.tsx", - "hash": "5032942767772539042" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticHeadless.shorthand.tsx", - "hash": "1984701926003492154" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticRowless.shorthand.tsx", - "hash": "12862859521290575140" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticTruncate.shorthand.tsx", - "hash": "3789911366669930488" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/Usage/index.tsx", - "hash": "7212079707197341769" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Table/index.tsx", - "hash": "8209480989900875119" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/BestPractices/TextBestPractices.tsx", - "hash": "13758922197264512339" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Performance/TextMinimal.perf.tsx", - "hash": "6082426067430696487" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Rtl/TextExample.rtl.tsx", - "hash": "18253220197384221052" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Rtl/index.tsx", - "hash": "7916814126989481073" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleDisabled.shorthand.tsx", - "hash": "10005342357982055357" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleDisabled.tsx", - "hash": "10682467434654740662" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleError.shorthand.tsx", - "hash": "12523200570024022826" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleError.tsx", - "hash": "2268246935270334744" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleSuccess.shorthand.tsx", - "hash": "2741758658117195387" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleSuccess.tsx", - "hash": "12695842757449186386" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleTemporary.shorthand.tsx", - "hash": "12157727285162703176" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleTemporary.tsx", - "hash": "10489178677587453901" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleTruncated.shorthand.tsx", - "hash": "3078072220366705288" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/TextExampleTruncated.tsx", - "hash": "4460110182775161240" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/States/index.tsx", - "hash": "14949581414261390973" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Types/TextSizesExample.shorthand.tsx", - "hash": "3821817729761856817" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Types/TextSizesExample.tsx", - "hash": "7100085658781908208" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Types/TextWeightsExample.shorthand.tsx", - "hash": "7898500173523470913" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Types/TextWeightsExample.tsx", - "hash": "7525213490240351962" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Types/index.tsx", - "hash": "8170466156453858773" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAlign.shorthand.tsx", - "hash": "10090528081301512500" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAlign.tsx", - "hash": "9602188435828454504" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAtMention.shorthand.tsx", - "hash": "9568381306981174747" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAtMention.tsx", - "hash": "7273333936839378560" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleColor.shorthand.tsx", - "hash": "593035909691715305" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleColor.tsx", - "hash": "14979348856804430653" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleImportant.shorthand.tsx", - "hash": "16945189331882039626" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleImportant.tsx", - "hash": "15237789108945229891" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleTimestamp.shorthand.tsx", - "hash": "7819109379560072233" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleTimestamp.tsx", - "hash": "5887414291140974047" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/Variations/index.tsx", - "hash": "18148527819162278688" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Text/index.tsx", - "hash": "5505583030986180768" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Performance/TextAreaMinimal.perf.tsx", - "hash": "787763541317368544" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/States/TextAreaDisabledExample.shorthand.tsx", - "hash": "1398148223167664272" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/States/TextAreaValueExample.shorthand.tsx", - "hash": "10331862364447876823" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/States/index.tsx", - "hash": "6698344117014108055" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Types/TextAreaExample.shorthand.tsx", - "hash": "14733924463548594253" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Types/index.tsx", - "hash": "3683382352963583728" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleHeight.shorthand.tsx", - "hash": "1211085858101929404" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleMaxLength.shorthand.tsx", - "hash": "9562510689858609706" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleResize.shorthand.tsx", - "hash": "4876842304034575135" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Usage/index.tsx", - "hash": "2237594003502654008" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Variations/TextAreaExampleFluid.shorthand.tsx", - "hash": "3545887297492075263" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Variations/TextAreaExampleInverted.shorthand.tsx", - "hash": "17087013464811584960" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/Variations/index.tsx", - "hash": "4704806062673855327" - }, - { - "file": "packages/fluentui/docs/src/examples/components/TextArea/index.tsx", - "hash": "12188412524533348165" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/BestPractices/ToolbarBestPractices.tsx", - "hash": "7690630516491632299" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleCustomContent.shorthand.tsx", - "hash": "9350437590169425941" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenu.shorthand.tsx", - "hash": "14374045559814061777" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuItemToggle.shorthand.tsx", - "hash": "11619348413229807632" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuRadioGroup.shorthand.tsx", - "hash": "12932498558254125079" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuWithSubmenu.shorthand.tsx", - "hash": "9181858135213078479" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleOverflow.shorthand.tsx", - "hash": "14123305047218867877" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExamplePopup.shorthand.tsx", - "hash": "6947040501896189720" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleRadioGroup.shorthand.tsx", - "hash": "10794513158764683839" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Content/index.tsx", - "hash": "10481282122210591927" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Performance/CustomToolbar.perf.tsx", - "hash": "12947291466463780126" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Performance/ToolbarMinimal.perf.tsx", - "hash": "8305048149129463206" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Performance/index.tsx", - "hash": "6873361932430304586" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExample.shorthand.tsx", - "hash": "7261997885886261076" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExample.tsx", - "hash": "14847037438949442568" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExampleEditor.shorthand.tsx", - "hash": "17212861393922761147" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Types/index.tsx", - "hash": "10426904223974509115" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExampleActionPopupInMenu.shorthand.tsx", - "hash": "16581044095774214451" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExamplePopupInMenu.shorthand.tsx", - "hash": "15559958015729382474" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExampleWithTooltip.shorthand.tsx", - "hash": "9360949351884014708" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Usage/index.tsx", - "hash": "3741193560673302929" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleChatMessage.tsx", - "hash": "597807714766702107" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleCompose.shorthand.tsx", - "hash": "2943541742173150125" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleOverflowPositioning.rtl.tsx", - "hash": "8896970923041455552" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleOverflowPositioning.shorthand.tsx", - "hash": "8392159780916116340" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleVariables.shorthand.tsx", - "hash": "973954519216817273" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/Visual/index.tsx", - "hash": "2280780949824614506" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Toolbar/index.tsx", - "hash": "3955145262259009939" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/BestPractices/TooltipBestPractices.tsx", - "hash": "12264769787489140472" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Performance/TooltipMinimal.perf.tsx", - "hash": "8391989295459389123" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Rtl/TooltipExample.rtl.tsx", - "hash": "17501348274045005215" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Rtl/index.tsx", - "hash": "8231368109071058412" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/States/TooltipOpenControlledExample.shorthand.tsx", - "hash": "6291038619515393728" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/States/TooltipOpenControlledExample.tsx", - "hash": "5717027646454076412" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/States/index.tsx", - "hash": "4692331360484948060" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExample.shorthand.tsx", - "hash": "14387757590222922955" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExample.tsx", - "hash": "3040316856705893337" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExamplePointing.shorthand.tsx", - "hash": "13893994275100589306" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExamplePointing.tsx", - "hash": "6599114506851208409" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Types/index.tsx", - "hash": "9674896746410444932" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDialogContent.shorthand.tsx", - "hash": "16672009771982611827" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDisabledTrigger.shorthand.tsx", - "hash": "9432946789900165765" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDismissOnContentMouseEnter.tsx", - "hash": "1895508525939336631" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleTarget.shorthand.tsx", - "hash": "10439831362752589746" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleTarget.tsx", - "hash": "10582264869563911497" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Usage/index.tsx", - "hash": "1997186623739287675" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Variations/TooltipExamplePosition.shorthand.tsx", - "hash": "16854894253130607416" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Variations/TooltipExamplePosition.tsx", - "hash": "11808497640753109890" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Variations/index.tsx", - "hash": "6731401908207692704" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Visual/TooltipExamplePointerMargin.shorthand.tsx", - "hash": "12872392821532343061" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/Visual/index.tsx", - "hash": "13603571994211374586" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tooltip/index.tsx", - "hash": "2058144254470973416" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/BestPractices/TreeBestPractices.tsx", - "hash": "5269011941010168614" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Performance/TreeMinimal.perf.tsx", - "hash": "489946794118741384" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Performance/TreeWith60ListItems.perf.tsx", - "hash": "12416168620018960866" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Performance/index.tsx", - "hash": "18200172470583665933" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Types/TreeExample.shorthand.tsx", - "hash": "10987719260332768720" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Types/TreeExclusiveExample.shorthand.tsx", - "hash": "8101844356066711523" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Types/index.tsx", - "hash": "10799362557329168225" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/TreeInitiallyOpenExample.shorthand.tsx", - "hash": "17737307388979450495" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/TreeMultiselectBasicExample.shorthand.tsx", - "hash": "6401296778527594059" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/TreeMultiselectExample.shorthand.tsx", - "hash": "12495650092802007936" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/TreeTitleCustomizationExample.shorthand.tsx", - "hash": "11056546458539147302" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/Usage/index.tsx", - "hash": "8490738550400826673" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Tree/index.tsx", - "hash": "7170014822219967037" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Video/Performance/VideoMinimal.perf.tsx", - "hash": "4983642729868410970" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Video/Types/VideoExample.shorthand.tsx", - "hash": "17150204613404177820" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Video/Types/index.tsx", - "hash": "3759187239395817059" - }, - { - "file": "packages/fluentui/docs/src/examples/components/Video/index.tsx", - "hash": "259172865122869557" - }, - { - "file": "packages/fluentui/docs/src/global.d.ts", - "hash": "14936706255065350562" - }, - { - "file": "packages/fluentui/docs/src/index.ejs", - "hash": "4900373226579034748" - }, - { - "file": "packages/fluentui/docs/src/index.html", - "hash": "9592085092662455894" - }, - { - "file": "packages/fluentui/docs/src/index.tsx", - "hash": "9684143093088289648" - }, - { - "file": "packages/fluentui/docs/src/pages/Composition.mdx", - "hash": "10186491244501102909" - }, - { - "file": "packages/fluentui/docs/src/pages/Debugging.mdx", - "hash": "18375082099652213990" - }, - { - "file": "packages/fluentui/docs/src/pages/Layout.mdx", - "hash": "3180541691175480199" - }, - { - "file": "packages/fluentui/docs/src/pages/ShorthandProps.mdx", - "hash": "15976754765035424430" - }, - { - "file": "packages/fluentui/docs/src/public/images/2020_MSFT_Icon_Celebration_placeholder.jpg", - "hash": "2925398530444399930" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/AllanMunger.jpg", - "hash": "3613388593767865605" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/AmandaBrady.jpg", - "hash": "5478322598207531530" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/AshleyMcCarthy.jpg", - "hash": "2754307271603289620" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/CameronEvans.jpg", - "hash": "5294189036657935794" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/CarlosSlattery.jpg", - "hash": "10178184967006338761" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/CarolePoland.jpg", - "hash": "11147373829946689608" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/CecilFolk.jpg", - "hash": "14225108329051412439" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/CelesteBurton.jpg", - "hash": "11316135954594294363" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/CharlotteWaltson.jpg", - "hash": "2774426450807629827" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/ColinBallinger.jpg", - "hash": "17681050335581092084" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/DaisyPhillips.jpg", - "hash": "10949871083575484027" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/ElliotWoodward.jpg", - "hash": "3405760508019923303" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/ElviaAtkins.jpg", - "hash": "5611089447394491790" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/ErikNason.jpg", - "hash": "1413017518416054984" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/HenryBrill.jpg", - "hash": "15861918850676483061" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/IsaacFielder.jpg", - "hash": "7118775979671994925" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/JohnieMcConnell.jpg", - "hash": "17367508280523725103" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/KatLarsson.jpg", - "hash": "2670919255846102339" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/KatriAthokas.jpg", - "hash": "487231194185754540" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/KevinSturgis.jpg", - "hash": "3013064020880462661" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/KristinPatterson.jpg", - "hash": "13412995139552529437" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/LydiaBauer.jpg", - "hash": "4175277172402001465" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/MauricioAugust.jpg", - "hash": "5491418556314909777" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/MiguelGarcia.jpg", - "hash": "3336511373738327952" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/MonaKane.jpg", - "hash": "18325328201356331133" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/RobertTolbert.jpg", - "hash": "4300254536734927938" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/RobinCounts.jpg", - "hash": "13340930959792462337" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/TimDeboer.jpg", - "hash": "10257406127647555763" - }, - { - "file": "packages/fluentui/docs/src/public/images/avatar/WandaHoward.jpg", - "hash": "11836273278313166429" - }, - { - "file": "packages/fluentui/docs/src/public/images/debug-panel.png", - "hash": "1763594797351844515" - }, - { - "file": "packages/fluentui/docs/src/public/images/flex-column.svg", - "hash": "13420908369708187834" - }, - { - "file": "packages/fluentui/docs/src/public/images/flex.svg", - "hash": "12705524441791002011" - }, - { - "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo-black.png", - "hash": "17285458065082868156" - }, - { - "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo-dev.png", - "hash": "18384050230717677814" - }, - { - "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo-inverted.png", - "hash": "7323049856764235678" - }, - { - "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo-white.png", - "hash": "16873796944914726880" - }, - { - "file": "packages/fluentui/docs/src/public/images/fluent-ui-logo.png", - "hash": "4223357833293521573" - }, - { - "file": "packages/fluentui/docs/src/public/images/grid-page.svg", - "hash": "5845272755759141768" - }, - { - "file": "packages/fluentui/docs/src/public/images/grid.svg", - "hash": "18145659620074116750" - }, - { - "file": "packages/fluentui/docs/src/public/images/leaves/4.png", - "hash": "9698121306957908242" - }, - { - "file": "packages/fluentui/docs/src/public/images/merge-themes.png", - "hash": "10780854662329195358" - }, - { - "file": "packages/fluentui/docs/src/public/images/telemetry-popover.png", - "hash": "14868284227356840303" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/centered-paragraph.png", - "hash": "10969773164831580739" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/image-square.png", - "hash": "16581090418038656475" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/image-text.png", - "hash": "3041367255737086447" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/image.png", - "hash": "747346878701406979" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/media-paragraph-alt.png", - "hash": "4471622377677331550" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/media-paragraph.png", - "hash": "11364423197818185453" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/paragraph.png", - "hash": "9934416593936712637" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/short-paragraph.png", - "hash": "16858210220403627072" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/square-image.png", - "hash": "16889948977609430935" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/text-image.png", - "hash": "7314099801723707747" - }, - { - "file": "packages/fluentui/docs/src/public/images/wireframe/white-image.png", - "hash": "8491941802269190219" - }, - { - "file": "packages/fluentui/docs/src/routes.tsx", - "hash": "548899793948079259" - }, - { - "file": "packages/fluentui/docs/src/types.ts", - "hash": "3690356436343090709" - }, - { - "file": "packages/fluentui/docs/src/utils/componentInfoContext.ts", - "hash": "14141966615007506394" - }, - { - "file": "packages/fluentui/docs/src/utils/exampleKebabNameToFilename.ts", - "hash": "13723917716259720251" - }, - { - "file": "packages/fluentui/docs/src/utils/examplePathToHash.ts", - "hash": "17785041489810962660" - }, - { - "file": "packages/fluentui/docs/src/utils/getComponentGroup.ts", - "hash": "10023209888705973382" - }, - { - "file": "packages/fluentui/docs/src/utils/getComponentPathname.ts", - "hash": "15202045931346218345" - }, - { - "file": "packages/fluentui/docs/src/utils/getFormattedHash.ts", - "hash": "3411076362027193243" - }, - { - "file": "packages/fluentui/docs/src/utils/getInfoForSeeTags.ts", - "hash": "4991392641415004304" - }, - { - "file": "packages/fluentui/docs/src/utils/helpers.tsx", - "hash": "1810044703867440324" - }, - { - "file": "packages/fluentui/docs/src/utils/index.tsx", - "hash": "13806331586645047503" - }, - { - "file": "packages/fluentui/docs/src/utils/parseExamplePath.ts", - "hash": "16706072088821032380" - }, - { - "file": "packages/fluentui/docs/src/utils/scrollToAnchor.ts", - "hash": "17162046583042382009" - }, - { - "file": "packages/fluentui/docs/src/utils/systemColors.ts", - "hash": "12421366474515129353" - }, - { - "file": "packages/fluentui/docs/src/views/Accessibility.tsx", - "hash": "14313422365893815015" - }, - { - "file": "packages/fluentui/docs/src/views/AccessibilityBehaviors.tsx", - "hash": "4339850402107540172" - }, - { - "file": "packages/fluentui/docs/src/views/AutoFocusZoneDoc.tsx", - "hash": "7307499123829744760" - }, - { - "file": "packages/fluentui/docs/src/views/ButtonNameComputation.tsx", - "hash": "12480504237081445002" - }, - { - "file": "packages/fluentui/docs/src/views/CategoryColorPalette.tsx", - "hash": "16022603617278599885" - }, - { - "file": "packages/fluentui/docs/src/views/CategoryColorSchemes.tsx", - "hash": "6249285355893149247" - }, - { - "file": "packages/fluentui/docs/src/views/ColorPalette.tsx", - "hash": "14361136615216977425" - }, - { - "file": "packages/fluentui/docs/src/views/ColorSchemes.tsx", - "hash": "5696274395708458130" - }, - { - "file": "packages/fluentui/docs/src/views/Colors.tsx", - "hash": "18267685702508182429" - }, - { - "file": "packages/fluentui/docs/src/views/FAQ.tsx", - "hash": "9327556336647218856" - }, - { - "file": "packages/fluentui/docs/src/views/FocusTrapZoneDoc.tsx", - "hash": "5869377137718940548" - }, - { - "file": "packages/fluentui/docs/src/views/FocusZoneDoc.tsx", - "hash": "14378636742874247590" - }, - { - "file": "packages/fluentui/docs/src/views/IconViewer.tsx", - "hash": "4798597363505578805" - }, - { - "file": "packages/fluentui/docs/src/views/IntegrateCustomComponents.tsx", - "hash": "6622788869327045608" - }, - { - "file": "packages/fluentui/docs/src/views/Introduction.tsx", - "hash": "11800775140060361692" - }, - { - "file": "packages/fluentui/docs/src/views/Layout.tsx", - "hash": "13766368756168310176" - }, - { - "file": "packages/fluentui/docs/src/views/PageNotFound.tsx", - "hash": "3991127502619281965" - }, - { - "file": "packages/fluentui/docs/src/views/Performance.tsx", - "hash": "6468674394624662279" - }, - { - "file": "packages/fluentui/docs/src/views/PerformanceTests.tsx", - "hash": "11399504417377192266" - }, - { - "file": "packages/fluentui/docs/src/views/QuickStart.tsx", - "hash": "5780470598893800470" - }, - { - "file": "packages/fluentui/docs/src/views/Theming.tsx", - "hash": "645654017210929903" - }, - { - "file": "packages/fluentui/docs/src/views/ThemingExamples.tsx", - "hash": "16084639066734426970" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Accordion/Accordion.stories.tsx", - "hash": "2908197600057391553" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Accordion/AccordionExampleCustomTitle.stories.tsx", - "hash": "16179710846324635696" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Alert/Alert.stories.tsx", - "hash": "10767343889850384505" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleDanger.stories.tsx", - "hash": "15155761001088390209" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleDismissible.stories.tsx", - "hash": "6857463277843533941" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleInfo.stories.tsx", - "hash": "3791698035384736485" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleOof.stories.tsx", - "hash": "2342828234592925900" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Alert/AlertExampleUrgent.stories.tsx", - "hash": "17054968989162414493" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Alert/commonStoryWrightSteps.ts", - "hash": "12721790327113813325" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Animation/Animation.stories.tsx", - "hash": "4181148551675552707" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Attachment/Attachment.stories.tsx", - "hash": "16642720576436713986" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Attachment/AttachmentActionExampleShorthand.stories.tsx", - "hash": "3716793378492317277" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Attachment/AttachmentActionableExampleShorthand.stories.tsx", - "hash": "10698904945091264204" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Attachment/commonStoryWrightSteps.ts", - "hash": "1980623060784981451" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Avatar/Avatar.stories.tsx", - "hash": "11199104726299349165" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Box/Box.stories.tsx", - "hash": "3317368452319233198" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Breadcrumb/Breadcrumb.stories.tsx", - "hash": "14840601935862189481" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/Button.stories.tsx", - "hash": "6775530068213781537" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExample.stories.tsx", - "hash": "13171374555278763771" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExampleContentAndIcon.stories.tsx", - "hash": "16926446962302972010" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExampleDisabled.stories.tsx", - "hash": "8847011181951402328" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExampleTextShorthand.stories.tsx", - "hash": "2002621327211757642" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonExampleWithTooltip.stories.tsx", - "hash": "10371603433001352361" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonGroupCircularExampleShorthand.stories.tsx", - "hash": "12419436000181409993" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/ButtonGroupExampleShorthand.stories.tsx", - "hash": "594990976777991069" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Button/commonStoryWrightSteps.ts", - "hash": "13040400329679067273" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Card/Card.stories.tsx", - "hash": "15326725132438471431" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Card/CardExampleFocusable.stories.tsx", - "hash": "4156768447595492362" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Card/CardExampleWithPreview.stories.tsx", - "hash": "13478840147494527644" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Carousel/Carousel.stories.tsx", - "hash": "14817153570410016798" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Chat/Chat.stories.tsx", - "hash": "15245816339893430959" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatExample.stories.tsx", - "hash": "1425446495779930194" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatExampleCompact.stories.tsx", - "hash": "13251803643511980833" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatExampleDetails.stories.tsx", - "hash": "7469309566711005970" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatExampleInScrollableShorthand.stories.tsx", - "hash": "14139475853124801776" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Chat/ChatMessageExampleBadge.stories.tsx", - "hash": "6649561404943581914" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Chat/MessageReactionsWithPopup.stories.tsx", - "hash": "2125275788346988499" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Checkbox/Checkbox.stories.tsx", - "hash": "9297591130763312835" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExample.stories.tsx", - "hash": "11981576073340880701" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExampleCheckedMixed.stories.tsx", - "hash": "6988841085427624024" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExampleToggle.stories.tsx", - "hash": "17041672079763277726" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Checkbox/commonStoryWrightSteps.ts", - "hash": "15779623513387323485" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/Datepicker.stories.tsx", - "hash": "16950762239704288937" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerCellExample.stories.tsx", - "hash": "5803726279486497054" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleClearable.stories.tsx", - "hash": "17708742659733322937" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleLocalizationStrings.stories.tsx", - "hash": "9501925128341184053" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleMinMaxDate.stories.tsx", - "hash": "4670026384566950417" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleNoInput.stories.tsx", - "hash": "15040560426204632860" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleRequired.stories.tsx", - "hash": "9370669105425882114" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleRestrictedDates.stories.tsx", - "hash": "5967310705340174608" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleStandaloneCalendarButton.stories.tsx", - "hash": "15633474592787066601" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleToday.stories.tsx", - "hash": "7515178996452324600" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleWeek.stories.tsx", - "hash": "6208343740595701430" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerFormatExample.stories.tsx", - "hash": "16933697073992990458" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerHeaderCellExample.stories.tsx", - "hash": "395850943947398801" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Datepicker/utils.ts", - "hash": "4512443095283466106" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/Dialog.stories.tsx", - "hash": "14959937483740676108" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleBackdrop.stories.tsx", - "hash": "10310462023880394967" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleContent.stories.tsx", - "hash": "15603482485839891799" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleFooter.stories.tsx", - "hash": "8780643621620224764" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleFullWidth.stories.tsx", - "hash": "12526215090824633553" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleHeaderAction.stories.tsx", - "hash": "3608597711373337505" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleRtl.stories.tsx", - "hash": "13913266811227693801" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleScroll.stories.tsx", - "hash": "8727638438511381346" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleZoomContent.stories.tsx", - "hash": "2646322061726867805" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dialog/commonStoryWrightSteps.ts", - "hash": "5035117655443987294" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/Divider.stories.tsx", - "hash": "2336088392374210039" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleColor.stories.tsx", - "hash": "9350984882141975047" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleContent.stories.tsx", - "hash": "15713735976335551192" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleFittedShorthand.stories.tsx", - "hash": "7575714561514384677" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleImportantShorthand.stories.tsx", - "hash": "7934661102588913154" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleRtl.stories.tsx", - "hash": "1919741483563311435" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleRtlAndLtr.stories.tsx", - "hash": "1596553248176707554" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleShorthand.stories.tsx", - "hash": "1836745762037086729" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Divider/DividerExampleSize.stories.tsx", - "hash": "749462362943519466" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/Dropdown.stories.tsx", - "hash": "7380798490621690637" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownClearableExample.stories.tsx", - "hash": "10901930380665357639" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownCustomClearableExample.stories.tsx", - "hash": "16599115945490633817" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExample.stories.tsx", - "hash": "6746037870592578958" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleDisabled.stories.tsx", - "hash": "2548138539726891611" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleHeaderMessage.stories.tsx", - "hash": "7474610870874134535" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleLoading.stories.tsx", - "hash": "4750019353543139535" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleMultiple.stories.tsx", - "hash": "4943875313427980342" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExamplePosition.stories.tsx", - "hash": "5226721723577165111" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleRtl.stories.tsx", - "hash": "4267473619245331597" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleSearchMultiple.stories.tsx", - "hash": "17639475738577957204" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Embed/Embed.stories.tsx", - "hash": "14352696819000693300" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Flex/Flex.stories.tsx", - "hash": "4876944789388275395" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Form/Form.stories.tsx", - "hash": "10319055880626561175" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Grid/Grid.stories.tsx", - "hash": "9747090622440024910" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Header/Header.stories.tsx", - "hash": "11713594437092210982" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Image/Image.stories.tsx", - "hash": "13728569992723813207" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Input/Input.stories.tsx", - "hash": "3117706994055304869" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Input/InputExample.stories.tsx", - "hash": "4259709115869032841" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Input/InputExampleClearable.stories.tsx", - "hash": "13357124920678294349" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Input/InputExampleLabelShorthand.stories.tsx", - "hash": "9403554131586270215" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/ItemLayout/ItemLayout.stories.tsx", - "hash": "11291004727629675957" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Label/Label.stories.tsx", - "hash": "8322646797296035677" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Layout/Layout.stories.tsx", - "hash": "12305168029748552920" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/List/List.stories.tsx", - "hash": "10005658482092092172" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/List/ListExampleNavigable.stories.tsx", - "hash": "2033264551140513567" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/List/ListExampleSelectable.stories.tsx", - "hash": "14791665715268384357" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Loader/Loader.stories.tsx", - "hash": "8685629729393552982" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/Menu.stories.tsx", - "hash": "16522996101712812439" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExample.stories.tsx", - "hash": "7874842300195873502" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleIconOnly.stories.tsx", - "hash": "8811514051065876803" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePointing.stories.tsx", - "hash": "1770809861026398977" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePositioningShorthand.stories.tsx", - "hash": "12047715271551824840" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePositioningUpdateShorthand.stories.tsx", - "hash": "9844235307744556267" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleToolbarShorthand.stories.tsx", - "hash": "12430374699620979123" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleUnderlined.stories.tsx", - "hash": "2828156010439144931" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleVertical.stories.tsx", - "hash": "3930389962001801874" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleVerticalPointing.stories.tsx", - "hash": "2242695733298295403" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithIcons.stories.tsx", - "hash": "7212200464392574991" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithSubMenu.stories.tsx", - "hash": "12177337937806814467" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithSubMenuHover.stories.tsx", - "hash": "13893143021108359130" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithTooltip.stories.tsx", - "hash": "13597485382012665494" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Menu/commonStoryWrightSteps.ts", - "hash": "2988540096115097198" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/MenuButton/MenuButton.stories.tsx", - "hash": "13465199678920766931" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/MenuButton/MenuButtonExampleRtl.stories.tsx", - "hash": "14881944460208222872" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Pill/Pill.stories.tsx", - "hash": "16209955480601373171" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/PopperExamplePositioning.stories.tsx", - "hash": "17108778031370138215" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/PopperExampleVisibilityModifiers.stories.tsx", - "hash": "14496472523165935743" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/Popup.stories.tsx", - "hash": "12982035354835778622" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupControlledExample.stories.tsx", - "hash": "14219445074388559561" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupCustomTargetExample.stories.tsx", - "hash": "16628596992789755265" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupExample.stories.tsx", - "hash": "273093962948343256" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupExampleOffset.stories.tsx", - "hash": "17279656499074273202" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupExampleRtl.stories.tsx", - "hash": "17821588893262132237" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Popup/PopupScrollExample.stories.tsx", - "hash": "7472589559301459687" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Portal/Portal.stories.tsx", - "hash": "18329814951255029859" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Provider/Provider.stories.tsx", - "hash": "1849411383435458007" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Provider/ProviderExampleFocusBorderShorthand.stories.tsx", - "hash": "556263522791941668" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/RadioGroup/RadioGroup.stories.tsx", - "hash": "3002626285268418385" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/RadioGroup/RadioGroupVerticalExample.stories.tsx", - "hash": "1882653333358837562" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Reaction/Reaction.stories.tsx", - "hash": "12197126940858620978" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Segment/Segment.stories.tsx", - "hash": "5752809249559982694" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Skeleton/Skeleton.stories.tsx", - "hash": "452440236106245320" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Slider/Slider.stories.tsx", - "hash": "5261459962563409855" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Slider/SliderExampleRtl.stories.tsx", - "hash": "3914854734713079222" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Slider/SliderExampleShorthand.stories.tsx", - "hash": "9929060552557872639" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Slider/commonStoryWrightSteps.ts", - "hash": "2651038160251967308" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SplitButton/SplitButton.stories.tsx", - "hash": "8519984363954494070" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonExamplePrimaryShorthand.stories.tsx", - "hash": "8422849834173982846" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonExampleSmallContainer.stories.tsx", - "hash": "7689840483461586695" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonPositioningExampleShorthand.stories.tsx", - "hash": "5894858692563044601" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Status/Status.stories.tsx", - "hash": "14667992198519604702" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Status/StatusTypeExampleShorthand.stories.tsx", - "hash": "1420982689125655842" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIcon.stories.tsx", - "hash": "13844315544099130747" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExample.stories.tsx", - "hash": "17296559805843725617" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleCircular.stories.tsx", - "hash": "15602236924226983002" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleColor.stories.tsx", - "hash": "3200142409606409793" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleDisabled.stories.tsx", - "hash": "12086886858916930169" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleSize.stories.tsx", - "hash": "3300404581410564444" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleSpace.stories.tsx", - "hash": "16223808322314871624" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconSetExampleShorthand.stories.tsx", - "hash": "3614912091945043787" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/SvgIcon/SvgconExampleBordered.stories.tsx", - "hash": "3229855193108540106" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Table/StaticTable.stories.tsx", - "hash": "6191690595588093057" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Table/Table.stories.tsx", - "hash": "925276430554274312" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Text/Text.stories.tsx", - "hash": "17715685917275609993" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/TextArea/TextArea.stories.tsx", - "hash": "10595951872412841348" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/TextArea/TextAreaExample.stories.tsx", - "hash": "9931006383186087473" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/TextArea/TextAreaExampleInverted.stories.tsx", - "hash": "9373604424649653510" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/Toolbar.stories.tsx", - "hash": "8697615237273139195" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleActionPopupInMenu.stories.tsx", - "hash": "11324502800226063998" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleEditorShorthand.stories.tsx", - "hash": "17289603700788241000" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleMenuShorthand.stories.tsx", - "hash": "7548137847935688166" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleMenuWithSubmenuShorthand.stories.tsx", - "hash": "10032109462229660098" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflow.stories.tsx", - "hash": "3169480496775116993" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflowPositioningShorthand.stories.tsx", - "hash": "18419392648893855481" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflowPositioningShorthandRtl.stories.tsx", - "hash": "3162366872774944657" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExamplePopupInMenu.stories.tsx", - "hash": "3063647798902196619" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExamplePopupShorthand.stories.tsx", - "hash": "4914685865878468106" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleRadioGroupShorthand.stories.tsx", - "hash": "8706800865705494388" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleShorthand.stories.tsx", - "hash": "16747780565214128517" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleVariables.stories.tsx", - "hash": "4469272913605194531" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tooltip/Tooltip.stories.tsx", - "hash": "15792984072210537690" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExample.stories.tsx", - "hash": "15679492189176217862" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleDialogContentShorthand.stories.tsx", - "hash": "13135746159300986169" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExamplePointing.stories.tsx", - "hash": "12950718817577864559" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleRtl.stories.tsx", - "hash": "12279619360757980168" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleTarget.stories.tsx", - "hash": "16157157304124443814" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tree/Tree.stories.tsx", - "hash": "1332342421862574948" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tree/TreeExampleShorthand.stories.tsx", - "hash": "4500943896345512926" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tree/TreeMultiselectExample.stories.tsx", - "hash": "14765947487485746937" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Tree/TreeTitleCustomizationExample.stories.tsx", - "hash": "10973446212198458933" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/Video/Video.stories.tsx", - "hash": "8562641388055379331" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/utilities/getThemeStoryVariant.tsx", - "hash": "15628272627810505572" - }, - { - "file": "packages/fluentui/docs/src/vr-tests/utilities/index.ts", - "hash": "4893167292256393098" - }, - { - "file": "packages/fluentui/docs/tsconfig.json", - "hash": "872626015430090431" - } - ], - "@fluentui/babel-preset-global-context": [ - { - "file": "packages/react-components/babel-preset-global-context/.babelrc.json", - "hash": "8174012058119950495" - }, - { - "file": "packages/react-components/babel-preset-global-context/.eslintrc.json", - "hash": "11018738359270224912" - }, - { - "file": "packages/react-components/babel-preset-global-context/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/babel-preset-global-context/CHANGELOG.json", - "hash": "5417064940796633011" - }, - { - "file": "packages/react-components/babel-preset-global-context/CHANGELOG.md", - "hash": "1179969149095187494" - }, - { - "file": "packages/react-components/babel-preset-global-context/LICENSE", - "hash": "14190649456716274433" - }, - { - "file": "packages/react-components/babel-preset-global-context/README.md", - "hash": "2765826339745082237" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import/code.ts", - "hash": "540836392442536101" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import/output.ts", - "hash": "8855713537863264717" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import/package.json", - "hash": "5845952152817567832" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/code.ts", - "hash": "5755535872738424522" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/output.ts", - "hash": "16344199303412147364" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/package.json", - "hash": "5845952152817567832" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/call-expression/code.ts", - "hash": "6457279347199086388" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/call-expression/output.ts", - "hash": "18170017368785370515" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/call-expression/package.json", - "hash": "5845952152817567832" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/context-selector/code.ts", - "hash": "4212325560787905314" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/context-selector/output.ts", - "hash": "13486019690859880148" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/context-selector/package.json", - "hash": "5845952152817567832" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/member-expression/code.ts", - "hash": "4301657457449045903" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/member-expression/output.ts", - "hash": "2550115010040710680" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/member-expression/package.json", - "hash": "2153100761834963628" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/code.ts", - "hash": "11786811587042864195" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/output.ts", - "hash": "17579592712235480589" - }, - { - "file": "packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/package.json", - "hash": "5845952152817567832" - }, - { - "file": "packages/react-components/babel-preset-global-context/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/babel-preset-global-context/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/babel-preset-global-context/cypress.config.ts", - "hash": "13649228528803766538" - }, - { - "file": "packages/react-components/babel-preset-global-context/etc/babel-preset-global-context.api.md", - "hash": "12834843629459989830" - }, - { - "file": "packages/react-components/babel-preset-global-context/jest.config.js", - "hash": "6273091954231700587" - }, - { - "file": "packages/react-components/babel-preset-global-context/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/babel-preset-global-context/package.json", - "hash": "16706351104698363424", - "deps": [ - "npm:@babel/core", - "npm:@babel/generator", - "npm:@babel/helper-plugin-utils", - "npm:@babel/template", - "npm:@babel/traverse", - "npm:@emotion/hash", - "npm:@swc/helpers", - "npm:find-up", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "@fluentui/global-context" - ] - }, - { - "file": "packages/react-components/babel-preset-global-context/project.json", - "hash": "3325210329699772171" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/Test.cy.tsx", - "hash": "1050395668237072729" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/constants.ts", - "hash": "1647429312599845483" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/index.ts", - "hash": "11265352065572634989" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.0.0/index.ts", - "hash": "6805989268245995993" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.0.0/package.json", - "hash": "7963718438922702732" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.1.0/index.ts", - "hash": "8948839052546966835" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.1.0/package.json", - "hash": "10943502151074734339" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v2.0.0/index.ts", - "hash": "7358917093904128037" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v2.0.0/package.json", - "hash": "16359445692526088068" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.0.0/index.ts", - "hash": "6303143986350152029" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.0.0/package.json", - "hash": "17824096733509037060" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.1.0/index.ts", - "hash": "5082100761918055252" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.1.0/package.json", - "hash": "11003212486459360733" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/transformPlugin.test.ts", - "hash": "13741100513004991440" - }, - { - "file": "packages/react-components/babel-preset-global-context/src/transformPlugin.ts", - "hash": "15750846611983059767" - }, - { - "file": "packages/react-components/babel-preset-global-context/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/babel-preset-global-context/tsconfig.json", - "hash": "5596071008249197618" - }, - { - "file": "packages/react-components/babel-preset-global-context/tsconfig.lib.json", - "hash": "3693653838336081970" - }, - { - "file": "packages/react-components/babel-preset-global-context/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-label": [ - { - "file": "packages/react-components/react-label/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-label/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-label/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-label/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-label/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-label/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-label/CHANGELOG.json", - "hash": "15967607658001790716" - }, - { - "file": "packages/react-components/react-label/CHANGELOG.md", - "hash": "2679890539344327293" - }, - { - "file": "packages/react-components/react-label/LICENSE", - "hash": "12737615233351762377" - }, - { - "file": "packages/react-components/react-label/README.md", - "hash": "16581094109821911033" - }, - { - "file": "packages/react-components/react-label/bundle-size/Label.fixture.js", - "hash": "12714736312436909972" - }, - { - "file": "packages/react-components/react-label/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-label/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-label/docs/MIGRATION.md", - "hash": "8973789574999379237" - }, - { - "file": "packages/react-components/react-label/docs/Spec.md", - "hash": "9483683590469917676" - }, - { - "file": "packages/react-components/react-label/etc/react-label.api.md", - "hash": "9487234802999168387" - }, - { - "file": "packages/react-components/react-label/jest.config.js", - "hash": "15752885123418439598" - }, - { - "file": "packages/react-components/react-label/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-label/package.json", - "hash": "14662469562447826963", - "deps": [ - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-label/project.json", - "hash": "12851828682182600309" - }, - { - "file": "packages/react-components/react-label/src/Label.ts", - "hash": "4712475947755339018" - }, - { - "file": "packages/react-components/react-label/src/components/Label/Label.test.tsx", - "hash": "753838017696023469" - }, - { - "file": "packages/react-components/react-label/src/components/Label/Label.tsx", - "hash": "18398721846668611007" - }, - { - "file": "packages/react-components/react-label/src/components/Label/Label.types.ts", - "hash": "15292574198375936571" - }, - { - "file": "packages/react-components/react-label/src/components/Label/__snapshots__/Label.test.tsx.snap", - "hash": "16100124649470847201" - }, - { - "file": "packages/react-components/react-label/src/components/Label/index.ts", - "hash": "5020371410472237279" - }, - { - "file": "packages/react-components/react-label/src/components/Label/renderLabel.tsx", - "hash": "16436124598547877124" - }, - { - "file": "packages/react-components/react-label/src/components/Label/useLabel.tsx", - "hash": "7056413739845035308" - }, - { - "file": "packages/react-components/react-label/src/components/Label/useLabelStyles.styles.ts", - "hash": "9164626135008328986" - }, - { - "file": "packages/react-components/react-label/src/index.ts", - "hash": "5978491449724056660" - }, - { - "file": "packages/react-components/react-label/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-label/stories/Label/LabelDefault.stories.tsx", - "hash": "14841468930192781303" - }, - { - "file": "packages/react-components/react-label/stories/Label/LabelDescription.md", - "hash": "7798368864438073846" - }, - { - "file": "packages/react-components/react-label/stories/Label/LabelDisabled.stories.tsx", - "hash": "1464439726235154207" - }, - { - "file": "packages/react-components/react-label/stories/Label/LabelRequired.stories.tsx", - "hash": "10394030120071368744" - }, - { - "file": "packages/react-components/react-label/stories/Label/LabelSize.stories.tsx", - "hash": "420198798163138293" - }, - { - "file": "packages/react-components/react-label/stories/Label/LabelWeight.stories.tsx", - "hash": "1458579849047401397" - }, - { - "file": "packages/react-components/react-label/stories/Label/index.stories.tsx", - "hash": "3602262048666383799" - }, - { - "file": "packages/react-components/react-label/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-label/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-label/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-drawer": [ - { - "file": "packages/react-components/react-drawer/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-drawer/.eslintrc.json", - "hash": "2955813886510177408" - }, - { - "file": "packages/react-components/react-drawer/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-drawer/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-drawer/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-drawer/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-drawer/CHANGELOG.json", - "hash": "3334772755866320042" - }, - { - "file": "packages/react-components/react-drawer/CHANGELOG.md", - "hash": "13301267702379936773" - }, - { - "file": "packages/react-components/react-drawer/LICENSE", - "hash": "740118108425064671" - }, - { - "file": "packages/react-components/react-drawer/README.md", - "hash": "11963902967276611543" - }, - { - "file": "packages/react-components/react-drawer/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-drawer/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-drawer/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-drawer/docs/Spec.md", - "hash": "2197025006070261905" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/drawer-anatomy.png", - "hash": "1500223499677642584" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/drawer-content-anatomy.png", - "hash": "7337310129908385365" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/drawer-footer-anatomy.png", - "hash": "15968075167955159306" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/drawer-header-anatomy-2.png", - "hash": "15111955334914916166" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/drawer-header-anatomy.png", - "hash": "3803359533875519043" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/inline.png", - "hash": "5978580365629415041" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/left-drawer-entering.png", - "hash": "13990966208435724679" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/left-drawer-exiting.png", - "hash": "10933889414890912981" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/overlay.png", - "hash": "10025973739764391600" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/right-drawer-entering.png", - "hash": "11906352803476453494" - }, - { - "file": "packages/react-components/react-drawer/docs/assets/right-drawer-exiting.png", - "hash": "6335665869796474774" - }, - { - "file": "packages/react-components/react-drawer/etc/react-drawer.api.md", - "hash": "13302017186739810777" - }, - { - "file": "packages/react-components/react-drawer/jest.config.js", - "hash": "4250780866251609094" - }, - { - "file": "packages/react-components/react-drawer/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-drawer/package.json", - "hash": "12517140293057050843", - "deps": [ - "@fluentui/react-dialog", - "@fluentui/react-jsx-runtime", - "@fluentui/react-motion-preview", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "@fluentui/scripts-cypress", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-drawer/project.json", - "hash": "9919233202400054757" - }, - { - "file": "packages/react-components/react-drawer/src/Drawer.ts", - "hash": "11221601650910664334" - }, - { - "file": "packages/react-components/react-drawer/src/DrawerBody.ts", - "hash": "7338982733713392097" - }, - { - "file": "packages/react-components/react-drawer/src/DrawerFooter.ts", - "hash": "5695661765252072865" - }, - { - "file": "packages/react-components/react-drawer/src/DrawerHeader.ts", - "hash": "13535607987439298798" - }, - { - "file": "packages/react-components/react-drawer/src/DrawerHeaderNavigation.ts", - "hash": "6953221975415457948" - }, - { - "file": "packages/react-components/react-drawer/src/DrawerHeaderTitle.ts", - "hash": "16108223116441377991" - }, - { - "file": "packages/react-components/react-drawer/src/InlineDrawer.ts", - "hash": "3467980062468343437" - }, - { - "file": "packages/react-components/react-drawer/src/OverlayDrawer.ts", - "hash": "6005987632714369128" - }, - { - "file": "packages/react-components/react-drawer/src/components/Drawer/Drawer.cy.tsx", - "hash": "9976548186562610025" - }, - { - "file": "packages/react-components/react-drawer/src/components/Drawer/Drawer.test.tsx", - "hash": "3258138558465537535" - }, - { - "file": "packages/react-components/react-drawer/src/components/Drawer/Drawer.tsx", - "hash": "14189538430868974037" - }, - { - "file": "packages/react-components/react-drawer/src/components/Drawer/Drawer.types.ts", - "hash": "7596568606038435688" - }, - { - "file": "packages/react-components/react-drawer/src/components/Drawer/index.ts", - "hash": "8903003969802349622" - }, - { - "file": "packages/react-components/react-drawer/src/components/Drawer/renderDrawer.tsx", - "hash": "1962203168411743376" - }, - { - "file": "packages/react-components/react-drawer/src/components/Drawer/useDrawer.ts", - "hash": "16023591426944063555" - }, - { - "file": "packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.styles.ts", - "hash": "3440636274415578957" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.cy.tsx", - "hash": "14312254338312974357" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.test.tsx", - "hash": "11124466918374216574" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.tsx", - "hash": "9899299681699977181" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.types.ts", - "hash": "5970414215130956080" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerBody/index.ts", - "hash": "2213989776887775833" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerBody/renderDrawerBody.tsx", - "hash": "12051762259788356439" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerBody/useDrawerBody.ts", - "hash": "5951737292486433185" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerBody/useDrawerBodyStyles.styles.ts", - "hash": "14117735045889604548" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.cy.tsx", - "hash": "4176957745829325863" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.test.tsx", - "hash": "6315412814367390570" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.tsx", - "hash": "10474972272773722473" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.types.ts", - "hash": "1254037035957768607" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerFooter/index.ts", - "hash": "2668743984619182660" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerFooter/renderDrawerFooter.tsx", - "hash": "2364940287036197384" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerFooter/useDrawerFooter.ts", - "hash": "2629575781960125765" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerFooter/useDrawerFooterStyles.styles.ts", - "hash": "14195586442062588538" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.cy.tsx", - "hash": "2720505955624318008" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.test.tsx", - "hash": "13287733185764092304" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.tsx", - "hash": "15198858964118093034" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.types.ts", - "hash": "1981631250559778022" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeader/index.ts", - "hash": "14935830325701069661" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeader/renderDrawerHeader.tsx", - "hash": "8637027449203313542" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeader/useDrawerHeader.ts", - "hash": "5439588260000478116" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeader/useDrawerHeaderStyles.styles.ts", - "hash": "3600667656694694657" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.cy.tsx", - "hash": "6842686981357806109" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.test.tsx", - "hash": "286593939728550244" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.tsx", - "hash": "13907663498001911842" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.types.ts", - "hash": "15748492738947212670" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/index.ts", - "hash": "16525415580323529597" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/renderDrawerHeaderNavigation.tsx", - "hash": "2030483516903315656" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/useDrawerHeaderNavigation.ts", - "hash": "3714757292895032918" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/useDrawerHeaderNavigationStyles.styles.ts", - "hash": "14688416647222067346" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.cy.tsx", - "hash": "4874390888203798273" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.test.tsx", - "hash": "4659425440310179178" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.tsx", - "hash": "9759918053055998438" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.types.ts", - "hash": "6708213319646751915" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/index.ts", - "hash": "553152765299639280" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/renderDrawerHeaderTitle.tsx", - "hash": "2880605945908819152" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/useDrawerHeaderTitle.ts", - "hash": "16962668464797352460" - }, - { - "file": "packages/react-components/react-drawer/src/components/DrawerHeaderTitle/useDrawerHeaderTitleStyles.styles.ts", - "hash": "4462460874600345803" - }, - { - "file": "packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.cy.tsx", - "hash": "10935299378541551079" - }, - { - "file": "packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.test.tsx", - "hash": "5459550878774982041" - }, - { - "file": "packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.tsx", - "hash": "2316461845720527923" - }, - { - "file": "packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.types.ts", - "hash": "12211214710166012354" - }, - { - "file": "packages/react-components/react-drawer/src/components/InlineDrawer/index.ts", - "hash": "12743325615369778070" - }, - { - "file": "packages/react-components/react-drawer/src/components/InlineDrawer/renderInlineDrawer.tsx", - "hash": "12410200335359328618" - }, - { - "file": "packages/react-components/react-drawer/src/components/InlineDrawer/useInlineDrawer.ts", - "hash": "7131000520997258422" - }, - { - "file": "packages/react-components/react-drawer/src/components/InlineDrawer/useInlineDrawerStyles.styles.ts", - "hash": "3573487867951650531" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.cy.tsx", - "hash": "8908117202890831376" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.test.tsx", - "hash": "4147783508785600839" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.tsx", - "hash": "15373047995135411071" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.types.ts", - "hash": "193052991178562131" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.tsx", - "hash": "5497055863831459516" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.types.ts", - "hash": "14701729419117754100" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/index.ts", - "hash": "9425620489322803056" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/useOverlayDrawerSurfaceStyles.styles.ts", - "hash": "4555814239666234639" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/index.ts", - "hash": "17879692229770633251" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/renderOverlayDrawer.tsx", - "hash": "2556628436156881064" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/useOverlayDrawer.ts", - "hash": "7605551203464800685" - }, - { - "file": "packages/react-components/react-drawer/src/components/OverlayDrawer/useOverlayDrawerStyles.styles.ts", - "hash": "10580201821703971096" - }, - { - "file": "packages/react-components/react-drawer/src/e2e/DrawerShared.tsx", - "hash": "936115772091026838" - }, - { - "file": "packages/react-components/react-drawer/src/index.ts", - "hash": "775526746411328515" - }, - { - "file": "packages/react-components/react-drawer/src/shared/DrawerBase.types.ts", - "hash": "11496680792337184124" - }, - { - "file": "packages/react-components/react-drawer/src/shared/useDrawerBaseStyles.styles.ts", - "hash": "16702909432180860514" - }, - { - "file": "packages/react-components/react-drawer/src/shared/useDrawerDefaultProps.ts", - "hash": "12462017753033126715" - }, - { - "file": "packages/react-components/react-drawer/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerAlwaysOpen.stories.tsx", - "hash": "17441129776678279830" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerBestPractices.md", - "hash": "8576535028433213605" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerCustomSize.stories.tsx", - "hash": "12659231673979654430" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerDefault.stories.tsx", - "hash": "6085860333003416708" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerDescription.md", - "hash": "9808324706794076649" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerMotionCustom.stories.tsx", - "hash": "9523834993317055105" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerMotionDisabled.stories.tsx", - "hash": "13839616447163935751" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerMultipleLevels.stories.tsx", - "hash": "9540883675482678570" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerPosition.stories.tsx", - "hash": "2394237202950561636" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerPreventClose.stories.tsx", - "hash": "11771866130608760234" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerResizable.stories.tsx", - "hash": "3845362180623033104" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerResponsive.stories.tsx", - "hash": "3565589653073552824" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerSeparator.stories.tsx", - "hash": "12197121116589288703" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerSize.stories.tsx", - "hash": "6072210477412842010" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerWithNavigation.stories.tsx", - "hash": "17182879587578834946" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerWithScroll.stories.tsx", - "hash": "17078029246368551938" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/DrawerWithTitle.stories.tsx", - "hash": "10695556627122993750" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/InlineDrawer.stories.tsx", - "hash": "7668429865114850623" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/OverlayDrawer.stories.tsx", - "hash": "5354320336788476906" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/OverlayDrawerNoModal.stories.tsx", - "hash": "10703118439062497997" - }, - { - "file": "packages/react-components/react-drawer/stories/Drawer/index.stories.tsx", - "hash": "13012963814919023462" - }, - { - "file": "packages/react-components/react-drawer/tsconfig.cy.json", - "hash": "18261064269935263965" - }, - { - "file": "packages/react-components/react-drawer/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-drawer/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-drawer/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-gulp": [ - { - "file": "scripts/gulp/.eslintrc.json", - "hash": "1780714561029609382" - }, - { - "file": "scripts/gulp/jest.config.js", - "hash": "5062185366330253835" - }, - { - "file": "scripts/gulp/package.json", - "hash": "620703661800637679", - "deps": [ - "@fluentui/scripts-monorepo", - "@fluentui/scripts-utils", - "@fluentui/scripts-prettier", - "@fluentui/scripts-puppeteer", - "@fluentui/scripts-babel", - "@fluentui/scripts-projects-test" - ] - }, - { - "file": "scripts/gulp/project.json", - "hash": "3096408817704266345" - }, - { - "file": "scripts/gulp/src/config.ts", - "hash": "1152274046574746097" - }, - { - "file": "scripts/gulp/src/index.ts", - "hash": "7155269880542520414" - }, - { - "file": "scripts/gulp/src/plugins/gulp-component-menu-behaviors.ts", - "hash": "14794995339262339082" - }, - { - "file": "scripts/gulp/src/plugins/gulp-cypress.ts", - "hash": "594034633777443767" - }, - { - "file": "scripts/gulp/src/plugins/gulp-doctoc.ts", - "hash": "16179003157117981064" - }, - { - "file": "scripts/gulp/src/plugins/gulp-example-menu.ts", - "hash": "16356696777619040236" - }, - { - "file": "scripts/gulp/src/plugins/gulp-example-source.ts", - "hash": "385517391147554585" - }, - { - "file": "scripts/gulp/src/plugins/gulp-jest.ts", - "hash": "8955289815280817773" - }, - { - "file": "scripts/gulp/src/plugins/gulp-react-docgen.ts", - "hash": "6408676183752597483" - }, - { - "file": "scripts/gulp/src/plugins/gulp-webpack.ts", - "hash": "9370131498478486856" - }, - { - "file": "scripts/gulp/src/plugins/util/docgen.ts", - "hash": "10272339795154204934" - }, - { - "file": "scripts/gulp/src/plugins/util/docs-types.ts", - "hash": "11426038160844139699" - }, - { - "file": "scripts/gulp/src/plugins/util/getComponentInfo.ts", - "hash": "2980768138909657298" - }, - { - "file": "scripts/gulp/src/plugins/util/getRelativePathToSourceFile.ts", - "hash": "4636174730281639056" - }, - { - "file": "scripts/gulp/src/plugins/util/getShorthandInfo.ts", - "hash": "82871639742268498" - }, - { - "file": "scripts/gulp/src/plugins/util/index.ts", - "hash": "10847390264829094108" - }, - { - "file": "scripts/gulp/src/plugins/util/parseBuffer.ts", - "hash": "4873230922314432063" - }, - { - "file": "scripts/gulp/src/plugins/util/parseDefaultPropsValues.ts", - "hash": "5238221904296974450" - }, - { - "file": "scripts/gulp/src/plugins/util/parseDocSection.ts", - "hash": "13639522712631005195" - }, - { - "file": "scripts/gulp/src/plugins/util/parseDocblock.ts", - "hash": "5229957627777581211" - }, - { - "file": "scripts/gulp/src/plugins/util/parseType.ts", - "hash": "2020153800369620730" - }, - { - "file": "scripts/gulp/src/plugins/util/parseTypeAnnotation.ts", - "hash": "17653591491975389214" - }, - { - "file": "scripts/gulp/src/plugins/util/tsLanguageService.ts", - "hash": "15783400455653817887" - }, - { - "file": "scripts/gulp/src/preset.ts", - "hash": "2711454985674092336" - }, - { - "file": "scripts/gulp/src/tasks/browserAdapters.ts", - "hash": "4567420568985195828" - }, - { - "file": "scripts/gulp/src/tasks/bundle.ts", - "hash": "16595672668696770467" - }, - { - "file": "scripts/gulp/src/tasks/component-info.ts", - "hash": "9646456630648543387" - }, - { - "file": "scripts/gulp/src/tasks/docs.ts", - "hash": "4428791750588770695" - }, - { - "file": "scripts/gulp/src/tasks/serve.ts", - "hash": "2927945412709591114" - }, - { - "file": "scripts/gulp/src/tasks/stats.ts", - "hash": "10337716767911269452" - }, - { - "file": "scripts/gulp/src/tasks/test-circulars/config.ts", - "hash": "3696039267764445384" - }, - { - "file": "scripts/gulp/src/tasks/test-circulars/index.ts", - "hash": "4002982004987266417" - }, - { - "file": "scripts/gulp/src/tasks/test-circulars/utils.ts", - "hash": "10987622128974484970" - }, - { - "file": "scripts/gulp/src/tasks/test-dependencies/index.ts", - "hash": "9734234285232294639" - }, - { - "file": "scripts/gulp/src/tasks/test-dependencies/utils.ts", - "hash": "11287650727847866426" - }, - { - "file": "scripts/gulp/src/tasks/test-e2e.ts", - "hash": "3235213262210072558" - }, - { - "file": "scripts/gulp/src/tasks/test-unit.ts", - "hash": "9289024222620648246" - }, - { - "file": "scripts/gulp/src/webpack/webpack.config.e2e.ts", - "hash": "13987955866919355449" - }, - { - "file": "scripts/gulp/src/webpack/webpack.config.stats.ts", - "hash": "17071462924856297081" - }, - { - "file": "scripts/gulp/src/webpack/webpack.config.ts", - "hash": "8112596741759733054" - }, - { - "file": "scripts/gulp/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/gulp/tsconfig.lib.json", - "hash": "10054891788177936356" - }, - { - "file": "scripts/gulp/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/react-link": [ - { - "file": "packages/react-components/react-link/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-link/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-link/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-link/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-link/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-link/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-link/CHANGELOG.json", - "hash": "3962037913672436497" - }, - { - "file": "packages/react-components/react-link/CHANGELOG.md", - "hash": "18194813021463348387" - }, - { - "file": "packages/react-components/react-link/LICENSE", - "hash": "9832907009994579246" - }, - { - "file": "packages/react-components/react-link/README.md", - "hash": "6792617757650079592" - }, - { - "file": "packages/react-components/react-link/bundle-size/Label.fixture.js", - "hash": "9121178836648557554" - }, - { - "file": "packages/react-components/react-link/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-link/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-link/docs/MIGRATION.md", - "hash": "15493690066707415440" - }, - { - "file": "packages/react-components/react-link/docs/SPEC.md", - "hash": "12261141108370125154" - }, - { - "file": "packages/react-components/react-link/etc/react-link.api.md", - "hash": "9312917724489390831" - }, - { - "file": "packages/react-components/react-link/jest.config.js", - "hash": "11862231451554250380" - }, - { - "file": "packages/react-components/react-link/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-link/package.json", - "hash": "12694717080936649426", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/a11y-testing", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-link/project.json", - "hash": "11422930109814152197" - }, - { - "file": "packages/react-components/react-link/src/Link.ts", - "hash": "7031503808279670627" - }, - { - "file": "packages/react-components/react-link/src/components/Link/Link.test.tsx", - "hash": "17540359287886314045" - }, - { - "file": "packages/react-components/react-link/src/components/Link/Link.tsx", - "hash": "3711147948241012629" - }, - { - "file": "packages/react-components/react-link/src/components/Link/Link.types.ts", - "hash": "3756492797898260450" - }, - { - "file": "packages/react-components/react-link/src/components/Link/__snapshots__/Link.test.tsx.snap", - "hash": "18030217870111124529" - }, - { - "file": "packages/react-components/react-link/src/components/Link/index.ts", - "hash": "4320358890099633430" - }, - { - "file": "packages/react-components/react-link/src/components/Link/renderLink.tsx", - "hash": "9789431458503251801" - }, - { - "file": "packages/react-components/react-link/src/components/Link/useLink.ts", - "hash": "17399821058666932648" - }, - { - "file": "packages/react-components/react-link/src/components/Link/useLinkState.ts", - "hash": "3824048378179671478" - }, - { - "file": "packages/react-components/react-link/src/components/Link/useLinkStyles.styles.ts", - "hash": "300714945188623948" - }, - { - "file": "packages/react-components/react-link/src/index.ts", - "hash": "4845491281378724120" - }, - { - "file": "packages/react-components/react-link/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkAppearance.stories.tsx", - "hash": "4374522065294609674" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkAsButton.stories.tsx", - "hash": "7456747567086542617" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkAsSpan.stories.tsx", - "hash": "3652403217738880018" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkDefault.stories.tsx", - "hash": "15067384076845671705" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkDescription.md", - "hash": "7236969301982012236" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkDisabled.stories.tsx", - "hash": "4914115128158846428" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkDisabledFocusable.stories.tsx", - "hash": "14219911784243672353" - }, - { - "file": "packages/react-components/react-link/stories/Link/LinkInline.stories.tsx", - "hash": "9590348700846670455" - }, - { - "file": "packages/react-components/react-link/stories/Link/index.stories.tsx", - "hash": "1901570717605656364" - }, - { - "file": "packages/react-components/react-link/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-link/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-link/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-progress": [ - { - "file": "packages/react-components/react-progress/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-progress/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-progress/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-progress/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-progress/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-progress/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-progress/CHANGELOG.json", - "hash": "9943518116241887368" - }, - { - "file": "packages/react-components/react-progress/CHANGELOG.md", - "hash": "2919392667075419280" - }, - { - "file": "packages/react-components/react-progress/LICENSE", - "hash": "14720059712718439480" - }, - { - "file": "packages/react-components/react-progress/README.md", - "hash": "13443295487418840260" - }, - { - "file": "packages/react-components/react-progress/bundle-size/ProgressBar.fixture.js", - "hash": "15597136298352513674" - }, - { - "file": "packages/react-components/react-progress/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-progress/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-progress/docs/MIGRATION.md", - "hash": "17724398627946676243" - }, - { - "file": "packages/react-components/react-progress/docs/Spec.md", - "hash": "438580243654009753" - }, - { - "file": "packages/react-components/react-progress/etc/react-progress.api.md", - "hash": "2044101360763309253" - }, - { - "file": "packages/react-components/react-progress/jest.config.js", - "hash": "15037937544956502248" - }, - { - "file": "packages/react-components/react-progress/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-progress/package.json", - "hash": "11790477356992419563", - "deps": [ - "@fluentui/react-field", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-progress/project.json", - "hash": "5040085670575357633" - }, - { - "file": "packages/react-components/react-progress/src/ProgressBar.ts", - "hash": "364130850726833580" - }, - { - "file": "packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.test.tsx", - "hash": "14575183606779621510" - }, - { - "file": "packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.tsx", - "hash": "4512060500927164739" - }, - { - "file": "packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.types.ts", - "hash": "9316131922315655010" - }, - { - "file": "packages/react-components/react-progress/src/components/ProgressBar/index.ts", - "hash": "4919717671078177086" - }, - { - "file": "packages/react-components/react-progress/src/components/ProgressBar/renderProgressBar.tsx", - "hash": "11139269590983552304" - }, - { - "file": "packages/react-components/react-progress/src/components/ProgressBar/useProgressBar.tsx", - "hash": "17486562887893116895" - }, - { - "file": "packages/react-components/react-progress/src/components/ProgressBar/useProgressBarStyles.styles.ts", - "hash": "2415416680026256368" - }, - { - "file": "packages/react-components/react-progress/src/index.ts", - "hash": "1052162520942589490" - }, - { - "file": "packages/react-components/react-progress/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-progress/src/utils/clampMax.test.ts", - "hash": "695087334567732346" - }, - { - "file": "packages/react-components/react-progress/src/utils/clampMax.ts", - "hash": "12888234946148193959" - }, - { - "file": "packages/react-components/react-progress/src/utils/clampValue.test.ts", - "hash": "5779163804989289991" - }, - { - "file": "packages/react-components/react-progress/src/utils/clampValue.ts", - "hash": "16938278361569231669" - }, - { - "file": "packages/react-components/react-progress/src/utils/index.ts", - "hash": "3102189156362851491" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarBestPractices.md", - "hash": "1479531832796336749" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarColor.stories.tsx", - "hash": "13098706062395114051" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarDefault.stories.tsx", - "hash": "3754883609787042687" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarDescription.md", - "hash": "9681824475682879438" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarIndeterminate.stories.tsx", - "hash": "1451847449685400166" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarMax.stories.tsx", - "hash": "56730184557657606" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarShape.stories.tsx", - "hash": "4732385307276466804" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/ProgressBarThickness.stories.tsx", - "hash": "7152955996834570477" - }, - { - "file": "packages/react-components/react-progress/stories/ProgressBar/index.stories.tsx", - "hash": "11861079216936079150" - }, - { - "file": "packages/react-components/react-progress/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-progress/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-progress/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-button": [ - { - "file": "packages/react-components/react-button/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-button/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-button/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-button/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-button/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-button/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-button/CHANGELOG.json", - "hash": "17401411806497239454" - }, - { - "file": "packages/react-components/react-button/CHANGELOG.md", - "hash": "3853339592724016178" - }, - { - "file": "packages/react-components/react-button/LICENSE", - "hash": "15868623612285827359" - }, - { - "file": "packages/react-components/react-button/README.md", - "hash": "5927466127429275027" - }, - { - "file": "packages/react-components/react-button/bundle-size/Button.fixture.js", - "hash": "11196911714669572347" - }, - { - "file": "packages/react-components/react-button/bundle-size/CompoundButton.fixture.js", - "hash": "15437191715127790243" - }, - { - "file": "packages/react-components/react-button/bundle-size/MenuButton.fixture.js", - "hash": "16399742671333906926" - }, - { - "file": "packages/react-components/react-button/bundle-size/SplitButton.fixture.js", - "hash": "846732347456677371" - }, - { - "file": "packages/react-components/react-button/bundle-size/ToggleButton.fixture.js", - "hash": "17911106882285084354" - }, - { - "file": "packages/react-components/react-button/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-button/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-button/docs/MIGRATION.md", - "hash": "10748989622082685018" - }, - { - "file": "packages/react-components/react-button/docs/SPEC.md", - "hash": "12520006170877160397" - }, - { - "file": "packages/react-components/react-button/etc/react-button.api.md", - "hash": "11861696843617479842" - }, - { - "file": "packages/react-components/react-button/jest.config.js", - "hash": "18021156044048013372" - }, - { - "file": "packages/react-components/react-button/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-button/package.json", - "hash": "10168246310506993332", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-aria", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/a11y-testing", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-button/project.json", - "hash": "16431721494337088002" - }, - { - "file": "packages/react-components/react-button/src/Button.tsx", - "hash": "8626324674700708044" - }, - { - "file": "packages/react-components/react-button/src/CompoundButton.ts", - "hash": "153412803858965389" - }, - { - "file": "packages/react-components/react-button/src/MenuButton.ts", - "hash": "6393132779025454217" - }, - { - "file": "packages/react-components/react-button/src/SplitButton.ts", - "hash": "7296004887201615859" - }, - { - "file": "packages/react-components/react-button/src/ToggleButton.ts", - "hash": "9087773820539969166" - }, - { - "file": "packages/react-components/react-button/src/components/Button/Button.test.tsx", - "hash": "13234018766360395070" - }, - { - "file": "packages/react-components/react-button/src/components/Button/Button.tsx", - "hash": "7131784988858573117" - }, - { - "file": "packages/react-components/react-button/src/components/Button/Button.types.ts", - "hash": "18132117076552392300" - }, - { - "file": "packages/react-components/react-button/src/components/Button/index.ts", - "hash": "14415446849596795722" - }, - { - "file": "packages/react-components/react-button/src/components/Button/renderButton.tsx", - "hash": "3788273996539907589" - }, - { - "file": "packages/react-components/react-button/src/components/Button/useButton.ts", - "hash": "18239797257817765877" - }, - { - "file": "packages/react-components/react-button/src/components/Button/useButtonStyles.styles.ts", - "hash": "16766982605993587713" - }, - { - "file": "packages/react-components/react-button/src/components/CompoundButton/CompoundButton.test.tsx", - "hash": "17699079322699347030" - }, - { - "file": "packages/react-components/react-button/src/components/CompoundButton/CompoundButton.tsx", - "hash": "12527753452428197456" - }, - { - "file": "packages/react-components/react-button/src/components/CompoundButton/CompoundButton.types.ts", - "hash": "10403113155713189779" - }, - { - "file": "packages/react-components/react-button/src/components/CompoundButton/index.ts", - "hash": "17693470936175651660" - }, - { - "file": "packages/react-components/react-button/src/components/CompoundButton/renderCompoundButton.tsx", - "hash": "9392084413752564294" - }, - { - "file": "packages/react-components/react-button/src/components/CompoundButton/useCompoundButton.ts", - "hash": "11789753697687684577" - }, - { - "file": "packages/react-components/react-button/src/components/CompoundButton/useCompoundButtonStyles.styles.ts", - "hash": "4022940355968932853" - }, - { - "file": "packages/react-components/react-button/src/components/MenuButton/MenuButton.test.tsx", - "hash": "5565395958656768489" - }, - { - "file": "packages/react-components/react-button/src/components/MenuButton/MenuButton.tsx", - "hash": "5952211904245417062" - }, - { - "file": "packages/react-components/react-button/src/components/MenuButton/MenuButton.types.ts", - "hash": "12380706571984102748" - }, - { - "file": "packages/react-components/react-button/src/components/MenuButton/index.ts", - "hash": "11687749806294814925" - }, - { - "file": "packages/react-components/react-button/src/components/MenuButton/renderMenuButton.tsx", - "hash": "2242695625944355651" - }, - { - "file": "packages/react-components/react-button/src/components/MenuButton/useMenuButton.tsx", - "hash": "4984356046412164557" - }, - { - "file": "packages/react-components/react-button/src/components/MenuButton/useMenuButtonStyles.styles.ts", - "hash": "1835897370503685351" - }, - { - "file": "packages/react-components/react-button/src/components/SplitButton/SplitButton.test.tsx", - "hash": "2434348402973527636" - }, - { - "file": "packages/react-components/react-button/src/components/SplitButton/SplitButton.tsx", - "hash": "1351240890806868292" - }, - { - "file": "packages/react-components/react-button/src/components/SplitButton/SplitButton.types.ts", - "hash": "16806214858697550880" - }, - { - "file": "packages/react-components/react-button/src/components/SplitButton/index.ts", - "hash": "9834531422308196215" - }, - { - "file": "packages/react-components/react-button/src/components/SplitButton/renderSplitButton.tsx", - "hash": "14418301058346299709" - }, - { - "file": "packages/react-components/react-button/src/components/SplitButton/useSplitButton.ts", - "hash": "563564198843507208" - }, - { - "file": "packages/react-components/react-button/src/components/SplitButton/useSplitButtonStyles.styles.ts", - "hash": "4700348312000575170" - }, - { - "file": "packages/react-components/react-button/src/components/ToggleButton/ToggleButton.test.tsx", - "hash": "13746632596170630901" - }, - { - "file": "packages/react-components/react-button/src/components/ToggleButton/ToggleButton.tsx", - "hash": "8650462963352411057" - }, - { - "file": "packages/react-components/react-button/src/components/ToggleButton/ToggleButton.types.ts", - "hash": "3341137315114432486" - }, - { - "file": "packages/react-components/react-button/src/components/ToggleButton/index.ts", - "hash": "510559736809727155" - }, - { - "file": "packages/react-components/react-button/src/components/ToggleButton/renderToggleButton.tsx", - "hash": "10961580694544111609" - }, - { - "file": "packages/react-components/react-button/src/components/ToggleButton/useToggleButton.ts", - "hash": "7201515539310652846" - }, - { - "file": "packages/react-components/react-button/src/components/ToggleButton/useToggleButtonStyles.styles.ts", - "hash": "16388660867399193722" - }, - { - "file": "packages/react-components/react-button/src/contexts/ButtonContext.ts", - "hash": "16773333999453776678" - }, - { - "file": "packages/react-components/react-button/src/contexts/index.ts", - "hash": "13132760355664250784" - }, - { - "file": "packages/react-components/react-button/src/index.ts", - "hash": "13339233335156002081" - }, - { - "file": "packages/react-components/react-button/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-button/src/utils/index.ts", - "hash": "250554734181228029" - }, - { - "file": "packages/react-components/react-button/src/utils/useToggleState.test.ts", - "hash": "16429899316216024046" - }, - { - "file": "packages/react-components/react-button/src/utils/useToggleState.ts", - "hash": "18013134462047555620" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonAppearance.stories.tsx", - "hash": "18327432462363093567" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonBestPractices.md", - "hash": "15966904879684831389" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonDefault.stories.tsx", - "hash": "16309520140968874517" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonDescription.md", - "hash": "16532145145344636837" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonDisabled.stories.tsx", - "hash": "14560255335512811980" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonIcon.stories.tsx", - "hash": "18026469457173329885" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonShape.stories.tsx", - "hash": "10293515556003357551" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonSize.stories.tsx", - "hash": "10198198054469729891" - }, - { - "file": "packages/react-components/react-button/stories/Button/ButtonWithLongText.stories.tsx", - "hash": "5582045194995381624" - }, - { - "file": "packages/react-components/react-button/stories/Button/index.stories.tsx", - "hash": "10629806941826268136" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonAppearance.stories.tsx", - "hash": "11751323304847853244" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonDefault.stories.tsx", - "hash": "6554013591312608741" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonDescription.md", - "hash": "11239283790606707108" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonDisabled.stories.tsx", - "hash": "14823921486630978871" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonIcon.stories.tsx", - "hash": "8025939386619198410" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonShape.stories.tsx", - "hash": "12767597618316035307" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonSize.stories.tsx", - "hash": "11351827693353756555" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/CompoundButtonWithLongText.stories.tsx", - "hash": "10636944211269219355" - }, - { - "file": "packages/react-components/react-button/stories/CompoundButton/index.stories.tsx", - "hash": "18420395090802840095" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonAppearance.stories.tsx", - "hash": "11772149593198224779" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonDefault.stories.tsx", - "hash": "14407394285640449777" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonDescription.md", - "hash": "7709633773581627486" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonDisabled.stories.tsx", - "hash": "172889004189161693" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonIcon.stories.tsx", - "hash": "12403472180433417597" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonShape.stories.tsx", - "hash": "1625891071317679416" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonSize.stories.tsx", - "hash": "15865604958975837898" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonSizeLarge.stories.tsx", - "hash": "15800808442274998205" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonSizeMedium.stories.tsx", - "hash": "14883010632519272607" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonSizeSmall.stories.tsx", - "hash": "9004306881864596423" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/MenuButtonWithLongText.stories.tsx", - "hash": "1089695309675211024" - }, - { - "file": "packages/react-components/react-button/stories/MenuButton/index.stories.tsx", - "hash": "12902323920864641887" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonAppearance.stories.tsx", - "hash": "16001178453275385358" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonDefault.stories.tsx", - "hash": "16390183972199802935" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonDescription.md", - "hash": "1218508324013847579" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonDisabled.stories.tsx", - "hash": "6999498071146279140" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonIcon.stories.tsx", - "hash": "3096822792677050391" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonShape.stories.tsx", - "hash": "17602511593093438153" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonSize.stories.tsx", - "hash": "6396106470924168525" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonSizeLarge.stories.tsx", - "hash": "7470419675292342106" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonSizeMedium.stories.tsx", - "hash": "16591027078031376997" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonSizeSmall.stories.tsx", - "hash": "18281348385773762433" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/SplitButtonWithLongText.stories.tsx", - "hash": "16343968451839078562" - }, - { - "file": "packages/react-components/react-button/stories/SplitButton/index.stories.tsx", - "hash": "12187964862290984524" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonAppearance.stories.tsx", - "hash": "17780270857595078579" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonChecked.stories.tsx", - "hash": "14152692013864493219" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonDefault.stories.tsx", - "hash": "1097715229128497190" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonDescription.md", - "hash": "12813726539373137853" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonDisabled.stories.tsx", - "hash": "18227486994944172131" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonIcon.stories.tsx", - "hash": "18321466124278295375" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonShape.stories.tsx", - "hash": "14209255492890451017" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonSize.stories.tsx", - "hash": "4734052364110908515" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/ToggleButtonWithLongText.stories.tsx", - "hash": "16462181566839467831" - }, - { - "file": "packages/react-components/react-button/stories/ToggleButton/index.stories.tsx", - "hash": "377636607901370479" - }, - { - "file": "packages/react-components/react-button/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-button/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-button/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-github": [ - { - "file": "scripts/github/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/github/jest.config.js", - "hash": "8128260008604718717" - }, - { - "file": "scripts/github/package.json", - "hash": "5070381828275052321" - }, - { - "file": "scripts/github/project.json", - "hash": "6576404163705013612" - }, - { - "file": "scripts/github/src/constants.ts", - "hash": "10180569673778437792" - }, - { - "file": "scripts/github/src/index.ts", - "hash": "17300117057778175664" - }, - { - "file": "scripts/github/src/pullRequests.ts", - "hash": "4776695204948789570" - }, - { - "file": "scripts/github/src/types.ts", - "hash": "10055482745627176296" - }, - { - "file": "scripts/github/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/github/tsconfig.lib.json", - "hash": "15222053984038389170" - }, - { - "file": "scripts/github/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/scripts-puppeteer": [ - { - "file": "scripts/puppeteer/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/puppeteer/jest.config.js", - "hash": "10929530115692286437" - }, - { - "file": "scripts/puppeteer/package.json", - "hash": "11715990510411273897" - }, - { - "file": "scripts/puppeteer/project.json", - "hash": "4445166320068989333" - }, - { - "file": "scripts/puppeteer/src/index.ts", - "hash": "764454282084297596" - }, - { - "file": "scripts/puppeteer/src/types.ts", - "hash": "957137470538575277" - }, - { - "file": "scripts/puppeteer/src/utils.spec.ts", - "hash": "13205245988193183269" - }, - { - "file": "scripts/puppeteer/src/utils.ts", - "hash": "17989793353365278853" - }, - { - "file": "scripts/puppeteer/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/puppeteer/tsconfig.lib.json", - "hash": "15222053984038389170" - }, - { - "file": "scripts/puppeteer/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/scripts-storybook": [ - { - "file": "scripts/storybook/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/storybook/README.md", - "hash": "6260771668642713165" - }, - { - "file": "scripts/storybook/jest.config.js", - "hash": "16159426598495183550" - }, - { - "file": "scripts/storybook/package.json", - "hash": "12768044836505529310", - "deps": ["@fluentui/scripts-monorepo"] - }, - { - "file": "scripts/storybook/project.json", - "hash": "11232580624195990329" - }, - { - "file": "scripts/storybook/src/index.d.ts", - "hash": "826157356781274866" - }, - { - "file": "scripts/storybook/src/index.js", - "hash": "1482846448957198356" - }, - { - "file": "scripts/storybook/src/loaders/custom-loader.js", - "hash": "4294621560128078241" - }, - { - "file": "scripts/storybook/src/rules.js", - "hash": "3284759671334880193" - }, - { - "file": "scripts/storybook/src/rules.spec.ts", - "hash": "13748453131777334686" - }, - { - "file": "scripts/storybook/src/utils.js", - "hash": "16447078335761239049" - }, - { - "file": "scripts/storybook/src/utils.spec.js", - "hash": "7235305373409857463" - }, - { - "file": "scripts/storybook/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/storybook/tsconfig.lib.json", - "hash": "3593133700658772030" - }, - { - "file": "scripts/storybook/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/react-swatch-picker-preview": [ - { - "file": "packages/react-components/react-swatch-picker-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/LICENSE", - "hash": "5934331551714403714" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/README.md", - "hash": "7419281624987644468" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/docs/Spec.md", - "hash": "6103625817265663911" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/etc/react-swatch-picker-preview.api.md", - "hash": "16193202918846092278" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/jest.config.js", - "hash": "17033989963135647545" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/package.json", - "hash": "549445429650425408", - "deps": [ - "@fluentui/react-jsx-runtime", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-swatch-picker-preview/project.json", - "hash": "18290180041366416211" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/SwatchPicker.ts", - "hash": "9804286450005810402" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.test.tsx", - "hash": "9571205629442676551" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.tsx", - "hash": "10932485903494897566" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.types.ts", - "hash": "2241787495689417402" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/__snapshots__/SwatchPicker.test.tsx.snap", - "hash": "18252006600174267969" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/index.ts", - "hash": "7361079493278890998" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/renderSwatchPicker.tsx", - "hash": "6990947521985192591" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/useSwatchPicker.ts", - "hash": "769200771881258129" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/useSwatchPickerStyles.styles.ts", - "hash": "17752194373954321560" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/index.ts", - "hash": "1833191522506500701" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/stories/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerBestPractices.md", - "hash": "13132854725403121719" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerDefault.stories.tsx", - "hash": "17318452984797150085" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/index.stories.tsx", - "hash": "12173169998730479378" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-swatch-picker-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-rating-preview": [ - { - "file": "packages/react-components/react-rating-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-rating-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-rating-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-rating-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-rating-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-rating-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-rating-preview/CHANGELOG.json", - "hash": "1386950926958177706" - }, - { - "file": "packages/react-components/react-rating-preview/CHANGELOG.md", - "hash": "7481927941742122982" - }, - { - "file": "packages/react-components/react-rating-preview/LICENSE", - "hash": "11029626774304352386" - }, - { - "file": "packages/react-components/react-rating-preview/README.md", - "hash": "2315553695549024501" - }, - { - "file": "packages/react-components/react-rating-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-rating-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-rating-preview/docs/Spec.md", - "hash": "13399743181965079106" - }, - { - "file": "packages/react-components/react-rating-preview/etc/react-rating-preview.api.md", - "hash": "546737215946085466" - }, - { - "file": "packages/react-components/react-rating-preview/jest.config.js", - "hash": "13638262759997247348" - }, - { - "file": "packages/react-components/react-rating-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-rating-preview/package.json", - "hash": "6500567209729890407", - "deps": [ - "@fluentui/react-jsx-runtime", - "npm:@fluentui/react-icons", - "@fluentui/react-theme", - "@fluentui/react-tabster", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-rating-preview/project.json", - "hash": "309846336706056488" - }, - { - "file": "packages/react-components/react-rating-preview/src/Rating.ts", - "hash": "15823645109042535388" - }, - { - "file": "packages/react-components/react-rating-preview/src/RatingItem.ts", - "hash": "2041029226151546635" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/Rating/Rating.test.tsx", - "hash": "5283780706645667459" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/Rating/Rating.tsx", - "hash": "17937483042811168623" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/Rating/Rating.types.ts", - "hash": "11581003550124668523" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/Rating/__snapshots__/Rating.test.tsx.snap", - "hash": "12871779555702267298" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/Rating/index.ts", - "hash": "16560610711340093657" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/Rating/renderRating.tsx", - "hash": "17511663661061571492" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/Rating/useRating.tsx", - "hash": "778443718043001840" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/Rating/useRatingStyles.styles.ts", - "hash": "8465426701306811937" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.test.tsx", - "hash": "6919100699748520443" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.tsx", - "hash": "14249217300465265132" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.types.ts", - "hash": "3463608295260686451" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/RatingItem/__snapshots__/RatingItem.test.tsx.snap", - "hash": "12673552041574392517" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/RatingItem/index.ts", - "hash": "7256066201974826524" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/RatingItem/renderRatingItem.tsx", - "hash": "17922546264381731658" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/RatingItem/useRatingItem.tsx", - "hash": "73122377714334878" - }, - { - "file": "packages/react-components/react-rating-preview/src/components/RatingItem/useRatingItemStyles.styles.ts", - "hash": "13473747997341116040" - }, - { - "file": "packages/react-components/react-rating-preview/src/contexts/RatingContext.tsx", - "hash": "14442501886031449970" - }, - { - "file": "packages/react-components/react-rating-preview/src/contexts/index.ts", - "hash": "897686478701984368" - }, - { - "file": "packages/react-components/react-rating-preview/src/contexts/useRatingContextValues.ts", - "hash": "14732512412813204150" - }, - { - "file": "packages/react-components/react-rating-preview/src/index.ts", - "hash": "542036710468795052" - }, - { - "file": "packages/react-components/react-rating-preview/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingBestPractices.md", - "hash": "13132854725403121719" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingCompact.stories.tsx", - "hash": "10038980048705258013" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingDefault.stories.tsx", - "hash": "10411813347289797490" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingMax.stories.tsx", - "hash": "13823895250729025068" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingPrecision.stories.tsx", - "hash": "13010653961703171182" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingReadOnly.stories.tsx", - "hash": "16740155415181268133" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingShape.stories.tsx", - "hash": "10702844511181810660" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/RatingSize.stories.tsx", - "hash": "15592318112463151981" - }, - { - "file": "packages/react-components/react-rating-preview/stories/Rating/index.stories.tsx", - "hash": "16840504286423106121" - }, - { - "file": "packages/react-components/react-rating-preview/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-rating-preview/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-rating-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-telemetry": [ - { - "file": "packages/fluentui/react-telemetry/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-telemetry/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-telemetry/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-telemetry/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-telemetry/package.json", - "hash": "11597637505080461496", - "deps": [ - "npm:@babel/runtime", - "@fluentui/react-bindings", - "@fluentui/react-component-event-listener", - "npm:lodash", - "npm:react-table", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "npm:@types/react-table", - "npm:lerna-alias", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-telemetry/project.json", - "hash": "1545707455027966891" - }, - { - "file": "packages/fluentui/react-telemetry/src/TelemetryPerfFlags.tsx", - "hash": "15047243473559560992" - }, - { - "file": "packages/fluentui/react-telemetry/src/TelemetryPopover.tsx", - "hash": "17978132699403522947" - }, - { - "file": "packages/fluentui/react-telemetry/src/TelemetryTable.tsx", - "hash": "13466198782982969536" - }, - { - "file": "packages/fluentui/react-telemetry/src/index.ts", - "hash": "17796473986958886897" - }, - { - "file": "packages/fluentui/react-telemetry/src/styles.ts", - "hash": "15766090010848193032" - }, - { - "file": "packages/fluentui/react-telemetry/src/useIntervalUpdate.ts", - "hash": "11690443637827723090" - }, - { - "file": "packages/fluentui/react-telemetry/src/useTelemetryColumns.tsx", - "hash": "1843080583577724726" - }, - { - "file": "packages/fluentui/react-telemetry/src/useTelemetryData.ts", - "hash": "7679325461230384030" - }, - { - "file": "packages/fluentui/react-telemetry/src/useTelemetryState.ts", - "hash": "11457929168335446841" - }, - { - "file": "packages/fluentui/react-telemetry/tsconfig.json", - "hash": "9267037586801109256" - } - ], - "@fluentui/react-dialog": [ - { - "file": "packages/react-components/react-dialog/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-dialog/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-dialog/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-dialog/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-dialog/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-dialog/.swcrc", - "hash": "471348148265161299" - }, - { - "file": "packages/react-components/react-dialog/CHANGELOG.json", - "hash": "6085765037859185787" - }, - { - "file": "packages/react-components/react-dialog/CHANGELOG.md", - "hash": "2434122158939463922" - }, - { - "file": "packages/react-components/react-dialog/LICENSE", - "hash": "4256434193176290151" - }, - { - "file": "packages/react-components/react-dialog/README.md", - "hash": "1497980874896642378" - }, - { - "file": "packages/react-components/react-dialog/bundle-size/Dialog.fixture.js", - "hash": "5764444469502119445" - }, - { - "file": "packages/react-components/react-dialog/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-dialog/config/tests.js", - "hash": "14010006175392234982" - }, - { - "file": "packages/react-components/react-dialog/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-dialog/docs/Spec.md", - "hash": "18129707136231408032" - }, - { - "file": "packages/react-components/react-dialog/docs/assets/AlertDialogKeyboardInteraction.png", - "hash": "13183178900446740370" - }, - { - "file": "packages/react-components/react-dialog/docs/assets/AlertDialogMouseInteraction.png", - "hash": "14303341550723004589" - }, - { - "file": "packages/react-components/react-dialog/docs/assets/ModalDialogKeyboardInteraction.png", - "hash": "11090212249781690940" - }, - { - "file": "packages/react-components/react-dialog/docs/assets/ModalDialogMouseInteraction.png", - "hash": "5309545076786861609" - }, - { - "file": "packages/react-components/react-dialog/docs/assets/NonModalDialogKeyboardInteraction.png", - "hash": "11487147899341732505" - }, - { - "file": "packages/react-components/react-dialog/docs/assets/NonModalDialogMouseInteraction.png", - "hash": "7627930701325333139" - }, - { - "file": "packages/react-components/react-dialog/etc/react-dialog.api.md", - "hash": "13186150910557458242" - }, - { - "file": "packages/react-components/react-dialog/jest.config.js", - "hash": "2212714289394290007" - }, - { - "file": "packages/react-components/react-dialog/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-dialog/package.json", - "hash": "1137127162811369009", - "deps": [ - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:react-transition-group", - "@fluentui/keyboard-keys", - "@fluentui/react-context-selector", - "@fluentui/react-shared-contexts", - "@fluentui/react-aria", - "npm:@fluentui/react-icons", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-portal", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-dialog/project.json", - "hash": "1593776171207895375" - }, - { - "file": "packages/react-components/react-dialog/src/Dialog.ts", - "hash": "7614391750837937500" - }, - { - "file": "packages/react-components/react-dialog/src/DialogActions.ts", - "hash": "6501368177261565003" - }, - { - "file": "packages/react-components/react-dialog/src/DialogBody.ts", - "hash": "1679083201725254068" - }, - { - "file": "packages/react-components/react-dialog/src/DialogContent.ts", - "hash": "6834626365839640188" - }, - { - "file": "packages/react-components/react-dialog/src/DialogSurface.ts", - "hash": "2183784150146559110" - }, - { - "file": "packages/react-components/react-dialog/src/DialogTitle.ts", - "hash": "3159547512722278904" - }, - { - "file": "packages/react-components/react-dialog/src/DialogTrigger.ts", - "hash": "14937508139502512966" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/Dialog.cy.tsx", - "hash": "2739398937444627575" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/Dialog.test.tsx", - "hash": "3844477481217755323" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/Dialog.tsx", - "hash": "17117780814439457607" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/Dialog.types.ts", - "hash": "3167557189119634950" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/__snapshots__/Dialog.test.tsx.snap", - "hash": "6387916450749041874" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/index.ts", - "hash": "9063948780008868764" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/renderDialog.tsx", - "hash": "15434040824683363960" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/useDialog.test.ts", - "hash": "13640949584726189974" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/useDialog.ts", - "hash": "9234251070886907331" - }, - { - "file": "packages/react-components/react-dialog/src/components/Dialog/useDialogContextValues.ts", - "hash": "14604638666966312339" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogActions/DialogActions.test.tsx", - "hash": "3862407181068648115" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogActions/DialogActions.tsx", - "hash": "2665085773669039653" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogActions/DialogActions.types.ts", - "hash": "13952106127501133459" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogActions/__snapshots__/DialogActions.test.tsx.snap", - "hash": "9879192408649306339" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogActions/index.ts", - "hash": "10997266245526734202" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogActions/renderDialogActions.tsx", - "hash": "12604892974082609712" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogActions/useDialogActions.ts", - "hash": "11701599453758756444" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogActions/useDialogActionsStyles.styles.ts", - "hash": "10819211647069438860" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogBody/DialogBody.test.tsx", - "hash": "14475823408062819496" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogBody/DialogBody.tsx", - "hash": "14017098954018666482" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogBody/DialogBody.types.ts", - "hash": "9658295494660160346" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogBody/__snapshots__/DialogBody.test.tsx.snap", - "hash": "11651296553611813582" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogBody/index.ts", - "hash": "14036818210030993605" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogBody/renderDialogBody.tsx", - "hash": "4670394357462636632" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogBody/useDialogBody.ts", - "hash": "10540755511073542654" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogBody/useDialogBodyStyles.styles.ts", - "hash": "5142001486085645225" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogContent/DialogContent.test.tsx", - "hash": "7579162779048284428" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogContent/DialogContent.tsx", - "hash": "6285589207963179145" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogContent/DialogContent.types.ts", - "hash": "5680115798417242790" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogContent/__snapshots__/DialogContent.test.tsx.snap", - "hash": "4103540723511950746" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogContent/index.ts", - "hash": "14518234974361262884" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogContent/renderDialogContent.tsx", - "hash": "8525939742007444644" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogContent/useDialogContent.ts", - "hash": "9956821653223924569" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogContent/useDialogContentStyles.styles.ts", - "hash": "2680471230329021351" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.test.tsx", - "hash": "8550862405162377121" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.tsx", - "hash": "10302476452612932521" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.types.ts", - "hash": "15073482470524864646" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/__snapshots__/DialogSurface.test.tsx.snap", - "hash": "5754145182784132163" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/index.ts", - "hash": "4045975660109409458" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/renderDialogSurface.tsx", - "hash": "12541449551639055808" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurface.ts", - "hash": "9107214140896834439" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurfaceContextValues.ts", - "hash": "2363445813728113956" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurfaceStyles.styles.ts", - "hash": "13214703133443642860" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.cy.tsx", - "hash": "8039933273383891584" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.test.tsx", - "hash": "1613995791781650658" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.tsx", - "hash": "13145752080337682920" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.types.ts", - "hash": "1996415862795187750" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/__snapshots__/DialogTitle.test.tsx.snap", - "hash": "4812873543797308805" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/index.ts", - "hash": "2680563011959958634" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/renderDialogTitle.tsx", - "hash": "292258614427830609" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/useDialogTitle.tsx", - "hash": "15310505910673020995" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTitle/useDialogTitleStyles.styles.ts", - "hash": "7636358250199335822" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.test.tsx", - "hash": "1402232731592992356" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.tsx", - "hash": "16111386851757642694" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.types.ts", - "hash": "15754792245182397714" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTrigger/__snapshots__/DialogTrigger.test.tsx.snap", - "hash": "15349658709586452249" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTrigger/index.ts", - "hash": "5301397907530381498" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTrigger/renderDialogTrigger.tsx", - "hash": "5459199244809190499" - }, - { - "file": "packages/react-components/react-dialog/src/components/DialogTrigger/useDialogTrigger.ts", - "hash": "12286782142162182081" - }, - { - "file": "packages/react-components/react-dialog/src/contexts/constants.ts", - "hash": "6190891133932018158" - }, - { - "file": "packages/react-components/react-dialog/src/contexts/dialogContext.ts", - "hash": "4234838693206379174" - }, - { - "file": "packages/react-components/react-dialog/src/contexts/dialogSurfaceContext.ts", - "hash": "16279975393744354586" - }, - { - "file": "packages/react-components/react-dialog/src/contexts/dialogTransitionContext.ts", - "hash": "8520465009143452270" - }, - { - "file": "packages/react-components/react-dialog/src/contexts/index.ts", - "hash": "14786615568304329742" - }, - { - "file": "packages/react-components/react-dialog/src/index.ts", - "hash": "11179932823285468334" - }, - { - "file": "packages/react-components/react-dialog/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-dialog/src/testing/mockUseDialogContext.ts", - "hash": "15081100806553676964" - }, - { - "file": "packages/react-components/react-dialog/src/testing/selectors.ts", - "hash": "14197921886153798563" - }, - { - "file": "packages/react-components/react-dialog/src/utils/index.ts", - "hash": "9921567441268489854" - }, - { - "file": "packages/react-components/react-dialog/src/utils/useDisableBodyScroll.ts", - "hash": "10847958514196072311" - }, - { - "file": "packages/react-components/react-dialog/src/utils/useFocusFirstElement.ts", - "hash": "10941774999208531161" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogA11y.md", - "hash": "679082905829069796" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogAlert.md", - "hash": "2672952536005254418" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogAlert.stories.tsx", - "hash": "12397098830725963885" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogBestPractices.md", - "hash": "5032283973958903493" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogChangeFocus.stories.tsx", - "hash": "676013714115936995" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogControllingOpenAndClose.md", - "hash": "14656403629598821845" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogControllingOpenAndClose.stories.tsx", - "hash": "3641672445058163436" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogCustomTrigger.md", - "hash": "16816646341237511822" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogCustomTrigger.stories.tsx", - "hash": "1374547463519489314" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogDefault.stories.tsx", - "hash": "854035252666479494" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogDescription.md", - "hash": "11000425708368126382" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogFluidDialogActions.md", - "hash": "12247949510009193278" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogFluidDialogActions.stories.tsx", - "hash": "5383668325653872167" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogNoFocusableElement.md", - "hash": "6143738976469988971" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogNoFocusableElement.stories.tsx", - "hash": "17216947668804365391" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogNonModal.md", - "hash": "5441682859607869665" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogNonModal.stories.tsx", - "hash": "17621734798983363303" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogScrollingLongContent.stories.tsx", - "hash": "14247822807945780299" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogTitleCustomAction.md", - "hash": "650878191513690735" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogTitleCustomAction.stories.tsx", - "hash": "4100443228224733194" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogTitleNoAction.md", - "hash": "8381986865674275003" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogTitleNoAction.stories.tsx", - "hash": "17768139917992326981" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogTriggerOutsideDialog.md", - "hash": "555082381172387824" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogTriggerOutsideDialog.stories.tsx", - "hash": "13910480372673957340" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogWithForm.md", - "hash": "17307812149546381291" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/DialogWithForm.stories.tsx", - "hash": "13325038626143987414" - }, - { - "file": "packages/react-components/react-dialog/stories/Dialog/index.stories.tsx", - "hash": "15727902005989339948" - }, - { - "file": "packages/react-components/react-dialog/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-dialog/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-dialog/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-dialog/tsconfig.spec.json", - "hash": "6578707152334499940" - } - ], - "@fluentui/scripts-package-manager": [ - { - "file": "scripts/package-manager/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/package-manager/jest.config.js", - "hash": "16568789143873113093" - }, - { - "file": "scripts/package-manager/package.json", - "hash": "2809962615901878866" - }, - { - "file": "scripts/package-manager/postinstall.js", - "hash": "9250556824353534057" - }, - { - "file": "scripts/package-manager/project.json", - "hash": "16573537905473013173" - }, - { - "file": "scripts/package-manager/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/package-manager/tsconfig.lib.json", - "hash": "3753806828268919288" - }, - { - "file": "scripts/package-manager/tsconfig.spec.json", - "hash": "16242416785763058919" - }, - { - "file": "scripts/package-manager/use-yarn-please.js", - "hash": "363289590456864077" - } - ], - "@fluentui/react-component-event-listener": [ - { - "file": "packages/fluentui/react-component-event-listener/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-component-event-listener/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-component-event-listener/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-component-event-listener/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-component-event-listener/jest.config.js", - "hash": "17864063104223117741" - }, - { - "file": "packages/fluentui/react-component-event-listener/package.json", - "hash": "982990065091895253", - "deps": [ - "npm:@babel/runtime", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:@types/simulant", - "npm:lerna-alias", - "npm:simulant", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-component-event-listener/project.json", - "hash": "7603987250497277862" - }, - { - "file": "packages/fluentui/react-component-event-listener/src/EventListener.ts", - "hash": "6339105570437663348" - }, - { - "file": "packages/fluentui/react-component-event-listener/src/index.ts", - "hash": "16230065282180187300" - }, - { - "file": "packages/fluentui/react-component-event-listener/src/types.ts", - "hash": "2021465131345141924" - }, - { - "file": "packages/fluentui/react-component-event-listener/src/useEventListener.ts", - "hash": "2879126978776296235" - }, - { - "file": "packages/fluentui/react-component-event-listener/test/EventListener-test.tsx", - "hash": "14784711746104707618" - }, - { - "file": "packages/fluentui/react-component-event-listener/tsconfig.json", - "hash": "12214264623402812273" - } - ], - "@fluentui/react-docsite-components": [ - { - "file": "packages/react-docsite-components/.eslintrc.json", - "hash": "17910802694759075705" - }, - { - "file": "packages/react-docsite-components/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/react-docsite-components/CHANGELOG.json", - "hash": "15623346196486686" - }, - { - "file": "packages/react-docsite-components/CHANGELOG.md", - "hash": "16667333957296172062" - }, - { - "file": "packages/react-docsite-components/LICENSE", - "hash": "9616427488211660399" - }, - { - "file": "packages/react-docsite-components/README.md", - "hash": "2220872118300718726" - }, - { - "file": "packages/react-docsite-components/config/pre-copy.json", - "hash": "10496597701824624187" - }, - { - "file": "packages/react-docsite-components/index.html", - "hash": "2640797298882155798" - }, - { - "file": "packages/react-docsite-components/jest.config.js", - "hash": "5767287689832801759" - }, - { - "file": "packages/react-docsite-components/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-docsite-components/package.json", - "hash": "10314344290287066915", - "deps": [ - "@fluentui/react", - "@fluentui/theme", - "npm:@microsoft/load-themed-styles", - "@fluentui/example-data", - "@fluentui/public-docsite-setup", - "@fluentui/react-hooks", - "@fluentui/set-version", - "@fluentui/react-monaco-editor", - "npm:color-check", - "npm:markdown-to-jsx", - "npm:office-ui-fabric-core", - "npm:react-custom-scrollbars", - "npm:react-syntax-highlighter", - "npm:tslib", - "@fluentui/common-styles", - "@fluentui/eslint-plugin", - "npm:@types/color-check", - "npm:@types/react-custom-scrollbars", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-docsite-components/project.json", - "hash": "10631926172196863479" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationDetail/AnimationDetail.tsx", - "hash": "11264131826746095967" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationDetail/AnimationDetail.types.ts", - "hash": "10921051691769202943" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationDetail/index.ts", - "hash": "3670912092410067411" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/AnimationDetailGrid.tsx", - "hash": "16347224904878135663" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/AnimationDetailGrid.types.ts", - "hash": "12493861838927048618" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/index.ts", - "hash": "3186403042237813675" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationExample/AnimationExample.tsx", - "hash": "9795940310449634330" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationExample/AnimationExample.types.ts", - "hash": "11921866709470015362" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/AnimationExample/index.ts", - "hash": "14853755572767387801" - }, - { - "file": "packages/react-docsite-components/src/components/Animation/index.ts", - "hash": "13772077451262221428" - }, - { - "file": "packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTable.tsx", - "hash": "6693920952919094704" - }, - { - "file": "packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTableSet.tsx", - "hash": "12110962144033825225" - }, - { - "file": "packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTableSet.types.ts", - "hash": "14792084498059802857" - }, - { - "file": "packages/react-docsite-components/src/components/ApiReferencesTable/index.ts", - "hash": "15605678694974685331" - }, - { - "file": "packages/react-docsite-components/src/components/ApiReferencesTable/tokenResolver.test.ts", - "hash": "17246629434563524157" - }, - { - "file": "packages/react-docsite-components/src/components/ApiReferencesTable/tokenResolver.ts", - "hash": "11203029933842193563" - }, - { - "file": "packages/react-docsite-components/src/components/App/App.styles.ts", - "hash": "16366742593675220433" - }, - { - "file": "packages/react-docsite-components/src/components/App/App.tsx", - "hash": "5479481127201385538" - }, - { - "file": "packages/react-docsite-components/src/components/App/App.types.ts", - "hash": "3013181038616524203" - }, - { - "file": "packages/react-docsite-components/src/components/App/index.ts", - "hash": "14112724461615500278" - }, - { - "file": "packages/react-docsite-components/src/components/Badge/Badge.tsx", - "hash": "11558535686674202398" - }, - { - "file": "packages/react-docsite-components/src/components/Badge/Badge.types.ts", - "hash": "8744809654982521758" - }, - { - "file": "packages/react-docsite-components/src/components/Badge/index.ts", - "hash": "4962031303727737639" - }, - { - "file": "packages/react-docsite-components/src/components/CodeSnippet/CodeSnippet.styles.ts", - "hash": "6620062364833710851" - }, - { - "file": "packages/react-docsite-components/src/components/CodeSnippet/CodeSnippet.tsx", - "hash": "13813234680433505694" - }, - { - "file": "packages/react-docsite-components/src/components/CodeSnippet/PrismCodeSnippet.tsx", - "hash": "15729185984999372459" - }, - { - "file": "packages/react-docsite-components/src/components/CodeSnippet/index.ts", - "hash": "4078061758664398964" - }, - { - "file": "packages/react-docsite-components/src/components/CodepenComponent/CodepenComponent.tsx", - "hash": "11870257513293450538" - }, - { - "file": "packages/react-docsite-components/src/components/CodepenComponent/CodepenComponent.types.ts", - "hash": "15369017375806556484" - }, - { - "file": "packages/react-docsite-components/src/components/CodepenComponent/index.ts", - "hash": "6992589686786059677" - }, - { - "file": "packages/react-docsite-components/src/components/ColorPalette/ColorPalette.styles.ts", - "hash": "10408275644401713063" - }, - { - "file": "packages/react-docsite-components/src/components/ColorPalette/ColorPalette.tsx", - "hash": "13383233160734780830" - }, - { - "file": "packages/react-docsite-components/src/components/ColorPalette/ColorPalette.types.ts", - "hash": "7727147804317552266" - }, - { - "file": "packages/react-docsite-components/src/components/ColorPalette/index.ts", - "hash": "2243447153520337046" - }, - { - "file": "packages/react-docsite-components/src/components/ComponentPage/ComponentPage.styles.ts", - "hash": "2847849537891104567" - }, - { - "file": "packages/react-docsite-components/src/components/ComponentPage/ComponentPage.tsx", - "hash": "12667409702626479674" - }, - { - "file": "packages/react-docsite-components/src/components/ComponentPage/ComponentPage.types.ts", - "hash": "11238805679830811443" - }, - { - "file": "packages/react-docsite-components/src/components/ComponentPage/index.ts", - "hash": "5520169500609217837" - }, - { - "file": "packages/react-docsite-components/src/components/DisplayToggle/DisplayToggle.tsx", - "hash": "4910289010839064091" - }, - { - "file": "packages/react-docsite-components/src/components/DisplayToggle/DisplayToggle.types.ts", - "hash": "6899766017438718203" - }, - { - "file": "packages/react-docsite-components/src/components/DisplayToggle/index.ts", - "hash": "11307196144261154083" - }, - { - "file": "packages/react-docsite-components/src/components/EditSection/EditSection.tsx", - "hash": "12854715732857349029" - }, - { - "file": "packages/react-docsite-components/src/components/EditSection/EditSection.types.ts", - "hash": "5572300696319586102" - }, - { - "file": "packages/react-docsite-components/src/components/EditSection/index.ts", - "hash": "12495031237438416611" - }, - { - "file": "packages/react-docsite-components/src/components/ExampleCard/ExampleCard.styles.ts", - "hash": "9033267256349918834" - }, - { - "file": "packages/react-docsite-components/src/components/ExampleCard/ExampleCard.tsx", - "hash": "17338998690457603436" - }, - { - "file": "packages/react-docsite-components/src/components/ExampleCard/ExampleCard.types.ts", - "hash": "7242972042750925022" - }, - { - "file": "packages/react-docsite-components/src/components/ExampleCard/index.ts", - "hash": "15094305405003736612" - }, - { - "file": "packages/react-docsite-components/src/components/FeedbackList/FeedbackList.styles.ts", - "hash": "15527272981673495220" - }, - { - "file": "packages/react-docsite-components/src/components/FeedbackList/FeedbackList.tsx", - "hash": "6913565087332624295" - }, - { - "file": "packages/react-docsite-components/src/components/FeedbackList/FeedbackList.types.ts", - "hash": "12055884543860903617" - }, - { - "file": "packages/react-docsite-components/src/components/FeedbackList/index.ts", - "hash": "9242617650315490998" - }, - { - "file": "packages/react-docsite-components/src/components/FeedbackList/relativeDates.test.tsx", - "hash": "14205011362976557372" - }, - { - "file": "packages/react-docsite-components/src/components/FeedbackList/relativeDates.ts", - "hash": "7957536793518410690" - }, - { - "file": "packages/react-docsite-components/src/components/Header/Header.styles.ts", - "hash": "8473524780432870952" - }, - { - "file": "packages/react-docsite-components/src/components/Header/Header.tsx", - "hash": "10303724695287218835" - }, - { - "file": "packages/react-docsite-components/src/components/Header/Header.types.ts", - "hash": "16233883555288466961" - }, - { - "file": "packages/react-docsite-components/src/components/Header/index.ts", - "hash": "5506779718460944000" - }, - { - "file": "packages/react-docsite-components/src/components/LoadingComponent/LoadingComponent.tsx", - "hash": "13650245432014634690" - }, - { - "file": "packages/react-docsite-components/src/components/LoadingComponent/LoadingComponent.types.ts", - "hash": "6400960813027923111" - }, - { - "file": "packages/react-docsite-components/src/components/LoadingComponent/index.ts", - "hash": "5799557727547273435" - }, - { - "file": "packages/react-docsite-components/src/components/Markdown/Markdown.tsx", - "hash": "3265394082177415297" - }, - { - "file": "packages/react-docsite-components/src/components/Markdown/Markdown.types.ts", - "hash": "15550085183233549182" - }, - { - "file": "packages/react-docsite-components/src/components/Markdown/MarkdownCode.tsx", - "hash": "5782844213118550369" - }, - { - "file": "packages/react-docsite-components/src/components/Markdown/MarkdownHeader.tsx", - "hash": "170166514560079612" - }, - { - "file": "packages/react-docsite-components/src/components/Markdown/MarkdownLink.tsx", - "hash": "11369738457711070204" - }, - { - "file": "packages/react-docsite-components/src/components/Markdown/MarkdownParagraph.tsx", - "hash": "927651713797114180" - }, - { - "file": "packages/react-docsite-components/src/components/Markdown/MarkdownPre.tsx", - "hash": "11549614759760207006" - }, - { - "file": "packages/react-docsite-components/src/components/Markdown/index.ts", - "hash": "2104250620797368259" - }, - { - "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownCell.tsx", - "hash": "18279001039219757069" - }, - { - "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTBody.tsx", - "hash": "6801091733446794095" - }, - { - "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTHead.tsx", - "hash": "6573393184264059451" - }, - { - "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.styles.ts", - "hash": "11753276764079744984" - }, - { - "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.tsx", - "hash": "15567154242683678350" - }, - { - "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.types.ts", - "hash": "17986119871571670228" - }, - { - "file": "packages/react-docsite-components/src/components/MarkdownTable/MarkdownTr.tsx", - "hash": "14456901982183056649" - }, - { - "file": "packages/react-docsite-components/src/components/MarkdownTable/index.ts", - "hash": "13169572237147661272" - }, - { - "file": "packages/react-docsite-components/src/components/Nav/Nav.types.ts", - "hash": "15448548289405977557" - }, - { - "file": "packages/react-docsite-components/src/components/Nav/index.ts", - "hash": "16980948111742648072" - }, - { - "file": "packages/react-docsite-components/src/components/Page/Page.module.scss", - "hash": "15997096924270964157" - }, - { - "file": "packages/react-docsite-components/src/components/Page/Page.tsx", - "hash": "1385652342251007383" - }, - { - "file": "packages/react-docsite-components/src/components/Page/Page.types.ts", - "hash": "5020195258814514625" - }, - { - "file": "packages/react-docsite-components/src/components/Page/index.ts", - "hash": "3560070557009333257" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/BannerSection.tsx", - "hash": "9459583740729657611" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/BestPracticesSection.tsx", - "hash": "2625722722092540946" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/ExamplesSection.tsx", - "hash": "7459818529105091139" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/FeedbackSection.tsx", - "hash": "5163148693013218817" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/ImplementationSection.tsx", - "hash": "12817609470043729" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/MarkdownSection.tsx", - "hash": "13600727208740058364" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/OtherPageSection.tsx", - "hash": "6448538661393121940" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/OverviewSection.tsx", - "hash": "5819020254044237698" - }, - { - "file": "packages/react-docsite-components/src/components/Page/sections/index.ts", - "hash": "11022066208682099058" - }, - { - "file": "packages/react-docsite-components/src/components/PageHeader/PageHeader.tsx", - "hash": "14224263990280196724" - }, - { - "file": "packages/react-docsite-components/src/components/PageHeader/PageHeader.types.ts", - "hash": "12065952942620058849" - }, - { - "file": "packages/react-docsite-components/src/components/PageHeader/index.ts", - "hash": "5118033474718800442" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformBar/PlatformBar.base.tsx", - "hash": "6676147153439959496" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformBar/PlatformBar.styles.ts", - "hash": "12425173100815747296" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformBar/PlatformBar.tsx", - "hash": "14835312562071670454" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformBar/PlatformBar.types.ts", - "hash": "5050109515969688623" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformBar/index.ts", - "hash": "17000560713892606846" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.module.scss", - "hash": "10129437058013725451" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.tsx", - "hash": "1723918811407193241" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.types.ts", - "hash": "5209849757397689134" - }, - { - "file": "packages/react-docsite-components/src/components/PlatformPicker/index.ts", - "hash": "3704407012159645691" - }, - { - "file": "packages/react-docsite-components/src/components/PropertiesTable/PropertiesTable.tsx", - "hash": "10609321670064992912" - }, - { - "file": "packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.styles.ts", - "hash": "7576556022262521007" - }, - { - "file": "packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.tsx", - "hash": "4252564358131238265" - }, - { - "file": "packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.types.ts", - "hash": "10649805137209477089" - }, - { - "file": "packages/react-docsite-components/src/components/PropertiesTable/index.ts", - "hash": "5168601532031671044" - }, - { - "file": "packages/react-docsite-components/src/components/ScrollBars/ScrollBars.tsx", - "hash": "7492893318732139089" - }, - { - "file": "packages/react-docsite-components/src/components/ScrollBars/ScrollBars.types.ts", - "hash": "8892757102835863185" - }, - { - "file": "packages/react-docsite-components/src/components/ScrollBars/index.ts", - "hash": "2488975222934078523" - }, - { - "file": "packages/react-docsite-components/src/components/SideRail/SideRail.styles.ts", - "hash": "17464653957499105858" - }, - { - "file": "packages/react-docsite-components/src/components/SideRail/SideRail.tsx", - "hash": "10530651215123821136" - }, - { - "file": "packages/react-docsite-components/src/components/SideRail/SideRail.types.ts", - "hash": "12378737735663262739" - }, - { - "file": "packages/react-docsite-components/src/components/SideRail/index.ts", - "hash": "15350023720092837224" - }, - { - "file": "packages/react-docsite-components/src/components/SiteMessageBar/SiteMessageBar.tsx", - "hash": "5692542924300314898" - }, - { - "file": "packages/react-docsite-components/src/components/SiteMessageBar/SiteMessageBar.types.ts", - "hash": "4633620292447014093" - }, - { - "file": "packages/react-docsite-components/src/components/SiteMessageBar/index.ts", - "hash": "8013242729655963168" - }, - { - "file": "packages/react-docsite-components/src/components/Table/Table.module.scss", - "hash": "16550842896320001700" - }, - { - "file": "packages/react-docsite-components/src/components/Table/Table.tsx", - "hash": "14379197659162050526" - }, - { - "file": "packages/react-docsite-components/src/components/Table/Table.types.ts", - "hash": "14075813774070979305" - }, - { - "file": "packages/react-docsite-components/src/components/Table/index.ts", - "hash": "5229940266654307261" - }, - { - "file": "packages/react-docsite-components/src/components/TopBanner/TopBanner.module.scss", - "hash": "15038493170820400757" - }, - { - "file": "packages/react-docsite-components/src/components/TopBanner/TopBanner.tsx", - "hash": "8333453547241102032" - }, - { - "file": "packages/react-docsite-components/src/components/TopBanner/TopBanner.types.ts", - "hash": "10791569416871748217" - }, - { - "file": "packages/react-docsite-components/src/components/TopBanner/index.ts", - "hash": "12469409406838065289" - }, - { - "file": "packages/react-docsite-components/src/components/TopNav/TopNav.module.scss", - "hash": "15528005425186561560" - }, - { - "file": "packages/react-docsite-components/src/components/TopNav/TopNav.tsx", - "hash": "12121264468935953169" - }, - { - "file": "packages/react-docsite-components/src/components/TopNav/TopNav.types.ts", - "hash": "484556540365286005" - }, - { - "file": "packages/react-docsite-components/src/components/TopNav/index.ts", - "hash": "18228330905927286130" - }, - { - "file": "packages/react-docsite-components/src/components/Video/Video.module.scss", - "hash": "17577067756746920297" - }, - { - "file": "packages/react-docsite-components/src/components/Video/Video.tsx", - "hash": "4885650580642838040" - }, - { - "file": "packages/react-docsite-components/src/components/Video/Video.types.ts", - "hash": "16538062891442897525" - }, - { - "file": "packages/react-docsite-components/src/components/Video/index.ts", - "hash": "10289931313091974900" - }, - { - "file": "packages/react-docsite-components/src/demo/demo.md", - "hash": "16278892541003887014" - }, - { - "file": "packages/react-docsite-components/src/index.demo.tsx", - "hash": "16084233626171032953" - }, - { - "file": "packages/react-docsite-components/src/index.ts", - "hash": "3402088956271963260" - }, - { - "file": "packages/react-docsite-components/src/index2.ts", - "hash": "10858750401029740114" - }, - { - "file": "packages/react-docsite-components/src/styles/_common.scss", - "hash": "4739691154712696008" - }, - { - "file": "packages/react-docsite-components/src/styles/constants.ts", - "hash": "18113821495747227057" - }, - { - "file": "packages/react-docsite-components/src/utilities/PlatformContext.tsx", - "hash": "10721691462706379471" - }, - { - "file": "packages/react-docsite-components/src/utilities/SiteDefinition.types.ts", - "hash": "3483411585517637402" - }, - { - "file": "packages/react-docsite-components/src/utilities/activePage.ts", - "hash": "8612871338526660105" - }, - { - "file": "packages/react-docsite-components/src/utilities/appInsightsHelper.ts", - "hash": "8138553450890304073" - }, - { - "file": "packages/react-docsite-components/src/utilities/baseDefinition.tsx", - "hash": "17208312766058810770" - }, - { - "file": "packages/react-docsite-components/src/utilities/createApp.tsx", - "hash": "17969024525428726625" - }, - { - "file": "packages/react-docsite-components/src/utilities/createDemoApp.tsx", - "hash": "2653224455280570175" - }, - { - "file": "packages/react-docsite-components/src/utilities/data.ts", - "hash": "18386193858659404356" - }, - { - "file": "packages/react-docsite-components/src/utilities/examplesOf.ts", - "hash": "10037047487220822653" - }, - { - "file": "packages/react-docsite-components/src/utilities/extractAnchorLink.test.ts", - "hash": "14821204508688466308" - }, - { - "file": "packages/react-docsite-components/src/utilities/extractAnchorLink.ts", - "hash": "4010749088974230211" - }, - { - "file": "packages/react-docsite-components/src/utilities/getCurrentUrl.ts", - "hash": "10998380089641402222" - }, - { - "file": "packages/react-docsite-components/src/utilities/getEditUrl.ts", - "hash": "13662911029079054150" - }, - { - "file": "packages/react-docsite-components/src/utilities/getLinkColors.ts", - "hash": "12700816332715066801" - }, - { - "file": "packages/react-docsite-components/src/utilities/getNormalizedPath.ts", - "hash": "1431721679199564653" - }, - { - "file": "packages/react-docsite-components/src/utilities/getPageFirstPlatform.ts", - "hash": "1789802822213132435" - }, - { - "file": "packages/react-docsite-components/src/utilities/getSiteArea.ts", - "hash": "6341403548239437859" - }, - { - "file": "packages/react-docsite-components/src/utilities/index.ts", - "hash": "5861053845170178010" - }, - { - "file": "packages/react-docsite-components/src/utilities/index2.ts", - "hash": "18232133903563724366" - }, - { - "file": "packages/react-docsite-components/src/utilities/jumpToAnchor.ts", - "hash": "12726337012761599975" - }, - { - "file": "packages/react-docsite-components/src/utilities/parser/BaseParser.ts", - "hash": "17784227666965957282" - }, - { - "file": "packages/react-docsite-components/src/utilities/parser/EnumParserHelper.ts", - "hash": "15839387552642550867" - }, - { - "file": "packages/react-docsite-components/src/utilities/parser/InterfaceParserHelper.ts", - "hash": "17116487468584992291" - }, - { - "file": "packages/react-docsite-components/src/utilities/parser/Parse.ts", - "hash": "1455887245422584040" - }, - { - "file": "packages/react-docsite-components/src/utilities/parser/index.ts", - "hash": "12084374931088726602" - }, - { - "file": "packages/react-docsite-components/src/utilities/parser/interfaces.ts", - "hash": "4063379421402413669" - }, - { - "file": "packages/react-docsite-components/src/utilities/randomEntry.ts", - "hash": "6198528484003308287" - }, - { - "file": "packages/react-docsite-components/src/utilities/redirects.ts", - "hash": "17409290045674525834" - }, - { - "file": "packages/react-docsite-components/src/utilities/removeAnchorLink.test.ts", - "hash": "11015103027632462396" - }, - { - "file": "packages/react-docsite-components/src/utilities/removeAnchorLink.ts", - "hash": "15447886450914037200" - }, - { - "file": "packages/react-docsite-components/src/utilities/router/Route.tsx", - "hash": "10175416453822392064" - }, - { - "file": "packages/react-docsite-components/src/utilities/router/Router.tsx", - "hash": "14816371583147992581" - }, - { - "file": "packages/react-docsite-components/src/utilities/router/index.ts", - "hash": "5321333771325496376" - }, - { - "file": "packages/react-docsite-components/src/utilities/showOnlyExamples.ts", - "hash": "17505358712249837772" - }, - { - "file": "packages/react-docsite-components/src/utilities/string.ts", - "hash": "10417563592158032366" - }, - { - "file": "packages/react-docsite-components/src/utilities/theme.ts", - "hash": "11154753743358389279" - }, - { - "file": "packages/react-docsite-components/src/utilities/windowWidth.ts", - "hash": "2891539011908030225" - }, - { - "file": "packages/react-docsite-components/src/version.ts", - "hash": "10007923850948970376" - }, - { - "file": "packages/react-docsite-components/tsconfig.json", - "hash": "3306502114190941300" - }, - { - "file": "packages/react-docsite-components/webpack.serve.config.js", - "hash": "8490482500988848252" - } - ], - "@fluentui/react-date-time": [ - { - "file": "packages/react-date-time/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/react-date-time/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/react-date-time/CHANGELOG.json", - "hash": "18156196373815370050" - }, - { - "file": "packages/react-date-time/CHANGELOG.md", - "hash": "4855813969435406760" - }, - { - "file": "packages/react-date-time/LICENSE", - "hash": "12975953156565096830" - }, - { - "file": "packages/react-date-time/README.md", - "hash": "15691804740406296083" - }, - { - "file": "packages/react-date-time/jest.config.js", - "hash": "8193037916930093299" - }, - { - "file": "packages/react-date-time/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-date-time/package.json", - "hash": "9250053857878111678", - "deps": [ - "@fluentui/react", - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-date-time/project.json", - "hash": "17422642528566626285" - }, - { - "file": "packages/react-date-time/src/Calendar.ts", - "hash": "14700922771323523697" - }, - { - "file": "packages/react-date-time/src/DatePicker.ts", - "hash": "3623451289574798351" - }, - { - "file": "packages/react-date-time/src/DateTimeUtilities.ts", - "hash": "5456722169763545772" - }, - { - "file": "packages/react-date-time/src/WeeklyDayPicker.ts", - "hash": "1544570974339003405" - }, - { - "file": "packages/react-date-time/src/index.ts", - "hash": "15527264248861218523" - }, - { - "file": "packages/react-date-time/src/version.ts", - "hash": "9682315595235674523" - }, - { - "file": "packages/react-date-time/tsconfig.json", - "hash": "15516134720009168635" - }, - { - "file": "packages/react-date-time/webpack.config.js", - "hash": "13232597493584319508" - } - ], - "@fluentui/azure-themes": [ - { - "file": "packages/azure-themes/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/azure-themes/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/azure-themes/CHANGELOG.json", - "hash": "2814564121899980480" - }, - { - "file": "packages/azure-themes/CHANGELOG.md", - "hash": "12008305137318728187" - }, - { - "file": "packages/azure-themes/LICENSE", - "hash": "11805460047251502307" - }, - { - "file": "packages/azure-themes/README.md", - "hash": "9487251565582550648" - }, - { - "file": "packages/azure-themes/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/azure-themes/package.json", - "hash": "13993476586447731937", - "deps": [ - "@fluentui/react", - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "packages/azure-themes/project.json", - "hash": "6299750457924615058" - }, - { - "file": "packages/azure-themes/src/AzureCustomizations.ts", - "hash": "4760252950292272729" - }, - { - "file": "packages/azure-themes/src/azure/AzureColors.ts", - "hash": "14152952468054705526" - }, - { - "file": "packages/azure-themes/src/azure/AzureDepths.ts", - "hash": "17261250879660942101" - }, - { - "file": "packages/azure-themes/src/azure/AzureStyleSettings.ts", - "hash": "8316665480931492390" - }, - { - "file": "packages/azure-themes/src/azure/AzureThemeDark.ts", - "hash": "4313722604489990327" - }, - { - "file": "packages/azure-themes/src/azure/AzureThemeHighContrastDark.ts", - "hash": "7102611927819756797" - }, - { - "file": "packages/azure-themes/src/azure/AzureThemeHighContrastLight.ts", - "hash": "9454370145371971118" - }, - { - "file": "packages/azure-themes/src/azure/AzureThemeLight.ts", - "hash": "18091326576033638586" - }, - { - "file": "packages/azure-themes/src/azure/AzureType.ts", - "hash": "15414580302593572625" - }, - { - "file": "packages/azure-themes/src/azure/Constants.ts", - "hash": "2809813925329042682" - }, - { - "file": "packages/azure-themes/src/azure/IAzureSemanticColors.ts", - "hash": "13420497678842227618" - }, - { - "file": "packages/azure-themes/src/azure/IExtendedSemanticColors.ts", - "hash": "14227374167342092383" - }, - { - "file": "packages/azure-themes/src/azure/index.ts", - "hash": "4374715962088181245" - }, - { - "file": "packages/azure-themes/src/azure/styles/ActionButton.styles.ts", - "hash": "13596369672849093373" - }, - { - "file": "packages/azure-themes/src/azure/styles/Breadcrumb.styles.ts", - "hash": "17718963414523065709" - }, - { - "file": "packages/azure-themes/src/azure/styles/Calendar.styles.ts", - "hash": "16971015327285923408" - }, - { - "file": "packages/azure-themes/src/azure/styles/Callout.styles.ts", - "hash": "4549843136555746723" - }, - { - "file": "packages/azure-themes/src/azure/styles/Checkbox.styles.ts", - "hash": "7581482770815269795" - }, - { - "file": "packages/azure-themes/src/azure/styles/ChoiceGroupOptions.styles.ts", - "hash": "2636532473744196771" - }, - { - "file": "packages/azure-themes/src/azure/styles/ColorPicker.styles.ts", - "hash": "6392088099577082345" - }, - { - "file": "packages/azure-themes/src/azure/styles/ColorPickerGridCell.styles.ts", - "hash": "10160459480635280492" - }, - { - "file": "packages/azure-themes/src/azure/styles/ComboBox.styles.ts", - "hash": "17823202381537620748" - }, - { - "file": "packages/azure-themes/src/azure/styles/CommandBar.styles.ts", - "hash": "12712977659203094181" - }, - { - "file": "packages/azure-themes/src/azure/styles/CommandBarButton.styles.ts", - "hash": "2033780080583129886" - }, - { - "file": "packages/azure-themes/src/azure/styles/CompoundButton.styles.ts", - "hash": "17349175564712120044" - }, - { - "file": "packages/azure-themes/src/azure/styles/ContextualMenu.styles.ts", - "hash": "13424731381391286619" - }, - { - "file": "packages/azure-themes/src/azure/styles/DatePicker.styles.ts", - "hash": "11990316255925778035" - }, - { - "file": "packages/azure-themes/src/azure/styles/DefaultButton.styles.ts", - "hash": "15716448895851031924" - }, - { - "file": "packages/azure-themes/src/azure/styles/DetailsList.styles.ts", - "hash": "14513801309827161140" - }, - { - "file": "packages/azure-themes/src/azure/styles/Dialog.styles.ts", - "hash": "6387972746686542555" - }, - { - "file": "packages/azure-themes/src/azure/styles/DocumentCard.styles.ts", - "hash": "5072704218799592150" - }, - { - "file": "packages/azure-themes/src/azure/styles/DropDown.styles.ts", - "hash": "12791379548962019908" - }, - { - "file": "packages/azure-themes/src/azure/styles/HoverCard.styles.ts", - "hash": "437137438162278789" - }, - { - "file": "packages/azure-themes/src/azure/styles/IconButton.styles.ts", - "hash": "13095050026182229537" - }, - { - "file": "packages/azure-themes/src/azure/styles/Label.styles.ts", - "hash": "18308403615151462886" - }, - { - "file": "packages/azure-themes/src/azure/styles/Link.styles.ts", - "hash": "10966391963600700609" - }, - { - "file": "packages/azure-themes/src/azure/styles/MessageBar.styles.ts", - "hash": "13968504130946602066" - }, - { - "file": "packages/azure-themes/src/azure/styles/Modal.styles.ts", - "hash": "6304647593323757102" - }, - { - "file": "packages/azure-themes/src/azure/styles/Nav.styles.ts", - "hash": "3062138929163538025" - }, - { - "file": "packages/azure-themes/src/azure/styles/Overlay.styles.ts", - "hash": "7092008763459894671" - }, - { - "file": "packages/azure-themes/src/azure/styles/Panel.styles.ts", - "hash": "16260399713980995173" - }, - { - "file": "packages/azure-themes/src/azure/styles/Pivot.styles.ts", - "hash": "4205451113277631358" - }, - { - "file": "packages/azure-themes/src/azure/styles/PrimaryButton.styles.ts", - "hash": "10584165192860092413" - }, - { - "file": "packages/azure-themes/src/azure/styles/ProgressIndicator.styles.ts", - "hash": "11169363722773949196" - }, - { - "file": "packages/azure-themes/src/azure/styles/Rating.styles.ts", - "hash": "17915376534463516724" - }, - { - "file": "packages/azure-themes/src/azure/styles/SearchBox.styles.ts", - "hash": "10058059892588619195" - }, - { - "file": "packages/azure-themes/src/azure/styles/Slider.styles.ts", - "hash": "9299139275175695869" - }, - { - "file": "packages/azure-themes/src/azure/styles/SpinButton.styles.ts", - "hash": "3167652000896331774" - }, - { - "file": "packages/azure-themes/src/azure/styles/Suggestions.styles.ts", - "hash": "17170068933032839751" - }, - { - "file": "packages/azure-themes/src/azure/styles/SuggestionsItem.styles.ts", - "hash": "14260189213202838970" - }, - { - "file": "packages/azure-themes/src/azure/styles/TagItem.styles.ts", - "hash": "13074235089176650019" - }, - { - "file": "packages/azure-themes/src/azure/styles/TagPicker.styles.ts", - "hash": "17455813293478966913" - }, - { - "file": "packages/azure-themes/src/azure/styles/TeachingBubble.styles.ts", - "hash": "9742274931439777845" - }, - { - "file": "packages/azure-themes/src/azure/styles/TextField.styles.ts", - "hash": "16504341065904792603" - }, - { - "file": "packages/azure-themes/src/azure/styles/Toggle.styles.ts", - "hash": "9820131752972096051" - }, - { - "file": "packages/azure-themes/src/azure/styles/Tooltip.styles.ts", - "hash": "1137867786174432089" - }, - { - "file": "packages/azure-themes/src/index.ts", - "hash": "7441033631543621919" - }, - { - "file": "packages/azure-themes/src/version.ts", - "hash": "14756785630021474777" - }, - { - "file": "packages/azure-themes/tsconfig.json", - "hash": "6054155811259967380" - }, - { - "file": "packages/azure-themes/webpack.config.js", - "hash": "14062494459790566470" - } - ], - "@fluentui/react-breadcrumb": [ - { - "file": "packages/react-components/react-breadcrumb/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-breadcrumb/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-breadcrumb/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-breadcrumb/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-breadcrumb/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-breadcrumb/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-breadcrumb/CHANGELOG.json", - "hash": "2570283488899410161" - }, - { - "file": "packages/react-components/react-breadcrumb/CHANGELOG.md", - "hash": "1735034764987370929" - }, - { - "file": "packages/react-components/react-breadcrumb/LICENSE", - "hash": "16481799524039364263" - }, - { - "file": "packages/react-components/react-breadcrumb/README.md", - "hash": "16815256696382455714" - }, - { - "file": "packages/react-components/react-breadcrumb/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-breadcrumb/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-breadcrumb/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/MIGRATION.md", - "hash": "17124393446517252405" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/Spec.md", - "hash": "16525832846360908320" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb-overflow.png", - "hash": "2473429825315886427" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb-truncated-text.png", - "hash": "16585691422223282118" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb.png", - "hash": "11475088599067018810" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/beadcrumb-states.png", - "hash": "1882688032436144693" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/breadcrumb-anatomy.png", - "hash": "4894770811587900772" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/breadcrumb-collapsed-items.png", - "hash": "4795354596016889485" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/breadcrumb-keyboard-interaction.png", - "hash": "9771384705522163308" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/breadcrumb-tooltip.png", - "hash": "9656854138789449118" - }, - { - "file": "packages/react-components/react-breadcrumb/docs/assets/button-beadcrumb.png", - "hash": "2606983199978138996" - }, - { - "file": "packages/react-components/react-breadcrumb/etc/react-breadcrumb.api.md", - "hash": "5866624564911992559" - }, - { - "file": "packages/react-components/react-breadcrumb/jest.config.js", - "hash": "15096978446821584885" - }, - { - "file": "packages/react-components/react-breadcrumb/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-breadcrumb/package.json", - "hash": "8595538614651167172", - "deps": [ - "@fluentui/react-aria", - "@fluentui/react-button", - "npm:@fluentui/react-icons", - "@fluentui/react-link", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-breadcrumb/project.json", - "hash": "16891773604498379506" - }, - { - "file": "packages/react-components/react-breadcrumb/src/Breadcrumb.ts", - "hash": "4692325558598841885" - }, - { - "file": "packages/react-components/react-breadcrumb/src/BreadcrumbButton.ts", - "hash": "13142461312489699262" - }, - { - "file": "packages/react-components/react-breadcrumb/src/BreadcrumbDivider.ts", - "hash": "17595441548180529431" - }, - { - "file": "packages/react-components/react-breadcrumb/src/BreadcrumbItem.ts", - "hash": "1650401439078923478" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.cy.tsx", - "hash": "5131453721576360491" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.test.tsx", - "hash": "1478477349638612290" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.tsx", - "hash": "17948809077375736751" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.types.ts", - "hash": "8628138238589389834" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/BreadcrumbContext.ts", - "hash": "16805312103383567144" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/BreadcrumbWithMenu.cy.tsx", - "hash": "7203087750206932430" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/index.ts", - "hash": "9032724877765988093" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/renderBreadcrumb.tsx", - "hash": "5792393368173279133" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumb.ts", - "hash": "6340783675223266602" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbContextValue.ts", - "hash": "17467019924492118170" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbStyles.styles.ts", - "hash": "7820283913277421146" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.test.tsx", - "hash": "2653884237723303862" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.tsx", - "hash": "16222238748512939394" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.types.ts", - "hash": "7142817545924236721" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/index.ts", - "hash": "10954122702786375744" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/renderBreadcrumbButton.tsx", - "hash": "10083161542978976558" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/useBreadcrumbButton.ts", - "hash": "10220476350761926617" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.ts", - "hash": "13929106455172225784" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.test.tsx", - "hash": "2740829010159730811" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.tsx", - "hash": "6530941049629619903" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.types.ts", - "hash": "9811041371185527372" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/index.ts", - "hash": "2366895614594973706" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/renderBreadcrumbDivider.tsx", - "hash": "9225555914960429542" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/useBreadcrumbDivider.tsx", - "hash": "1405733621306022692" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.ts", - "hash": "9947518297677346549" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.test.tsx", - "hash": "3021827718308952245" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.tsx", - "hash": "5649139577683726299" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.types.ts", - "hash": "6057980798464983090" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/index.ts", - "hash": "14997305546070859164" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/renderBreadcrumbItem.tsx", - "hash": "16948262709942899186" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/useBreadcrumbItem.ts", - "hash": "8502803056347678860" - }, - { - "file": "packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.ts", - "hash": "7253756977649122971" - }, - { - "file": "packages/react-components/react-breadcrumb/src/index.ts", - "hash": "403224537735235068" - }, - { - "file": "packages/react-components/react-breadcrumb/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-breadcrumb/src/utils/index.ts", - "hash": "6102866357142899175" - }, - { - "file": "packages/react-components/react-breadcrumb/src/utils/partitionBreadcrumbItems.test.ts", - "hash": "10295724281836694216" - }, - { - "file": "packages/react-components/react-breadcrumb/src/utils/partitionBreadcrumbItems.ts", - "hash": "10722155471173273905" - }, - { - "file": "packages/react-components/react-breadcrumb/src/utils/truncateBreadcrumb.test.ts", - "hash": "2965978281950772724" - }, - { - "file": "packages/react-components/react-breadcrumb/src/utils/truncateBreadcrumb.ts", - "hash": "10752014325791471505" - }, - { - "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbDefault.stories.tsx", - "hash": "8869935600499207876" - }, - { - "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbDescription.md", - "hash": "17689646751484476668" - }, - { - "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbSize.stories.tsx", - "hash": "13976348487297585255" - }, - { - "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbWithOverflow.stories.tsx", - "hash": "2989295134577667826" - }, - { - "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbWithTooltip.stories.tsx", - "hash": "12929963736895107743" - }, - { - "file": "packages/react-components/react-breadcrumb/stories/Breadcrumb/index.stories.tsx", - "hash": "6924523627962872578" - }, - { - "file": "packages/react-components/react-breadcrumb/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-breadcrumb/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-breadcrumb/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-breadcrumb/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/font-icons-mdl2": [ - { - "file": "packages/font-icons-mdl2/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/font-icons-mdl2/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/font-icons-mdl2/CHANGELOG.json", - "hash": "6596473413517250674" - }, - { - "file": "packages/font-icons-mdl2/CHANGELOG.md", - "hash": "11813262917588591655" - }, - { - "file": "packages/font-icons-mdl2/LICENSE", - "hash": "12908007654657131543" - }, - { - "file": "packages/font-icons-mdl2/README.md", - "hash": "1942754853377387705" - }, - { - "file": "packages/font-icons-mdl2/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-0.json", - "hash": "7706377881449390395" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-1.json", - "hash": "12994875537715451137" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-10.json", - "hash": "2815620732732830195" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-11.json", - "hash": "7236241969158321736" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-12.json", - "hash": "9678062810318118885" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-13.json", - "hash": "5156040440638150948" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-14.json", - "hash": "13039891500113351097" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-15.json", - "hash": "8801652855336313148" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-16.json", - "hash": "15516953590367115156" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-17.json", - "hash": "13589667259558619548" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-2.json", - "hash": "7875540344301974216" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-3.json", - "hash": "16077858637040139431" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-4.json", - "hash": "2841366491057342586" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-5.json", - "hash": "2556643830595083093" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-6.json", - "hash": "15068278795867487161" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-7.json", - "hash": "9212439579894632972" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-8.json", - "hash": "2080398174427644166" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons-9.json", - "hash": "4759858566820518147" - }, - { - "file": "packages/font-icons-mdl2/config/fabric-icons.json", - "hash": "6963775744796371758" - }, - { - "file": "packages/font-icons-mdl2/config/pre-copy.json", - "hash": "7054591292658078092" - }, - { - "file": "packages/font-icons-mdl2/etc/font-icons-mdl2.api.md", - "hash": "1040272583929107432" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-0-467ee27f.woff", - "hash": "9727409240084950456" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-1-4d521695.woff", - "hash": "11782482911719233328" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-10-c4ded8e4.woff", - "hash": "8683213800300962823" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-11-2a8393d6.woff", - "hash": "4800192945444416049" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-12-7e945a1e.woff", - "hash": "7152385435025376386" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-13-c3989a02.woff", - "hash": "15826418001211840958" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-14-5cf58db8.woff", - "hash": "1568575544080586197" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-15-3807251b.woff", - "hash": "6679690953050194640" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-16-9cf93f3b.woff", - "hash": "10385869052298718372" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-17-0c4ed701.woff", - "hash": "9879264519512726611" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-2-63c99abf.woff", - "hash": "4248354025373691406" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-3-089e217a.woff", - "hash": "10079215862186498571" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-4-a656cc0a.woff", - "hash": "763904542900725867" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-5-f95ba260.woff", - "hash": "12283581664107513526" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-6-ef6fd590.woff", - "hash": "6636588578906150594" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-7-2b97bb99.woff", - "hash": "1562652165603914188" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-8-6fdf1528.woff", - "hash": "10760299555913719264" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-9-c6162b42.woff", - "hash": "11880077812956966882" - }, - { - "file": "packages/font-icons-mdl2/fonts/fabric-icons-a13498cf.woff", - "hash": "9094530928610613666" - }, - { - "file": "packages/font-icons-mdl2/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/font-icons-mdl2/package.json", - "hash": "6766348593423021237", - "deps": [ - "@fluentui/set-version", - "@fluentui/style-utilities", - "@fluentui/utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/font-icons-mdl2/project.json", - "hash": "16347449220567014521" - }, - { - "file": "packages/font-icons-mdl2/src/IconNames.ts", - "hash": "15040646129596948898" - }, - { - "file": "packages/font-icons-mdl2/src/data/AllIconNames.json", - "hash": "255000302489916290" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-0.ts", - "hash": "8915246145745466284" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-1.ts", - "hash": "8405252460772238398" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-10.ts", - "hash": "13454595347227280180" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-11.ts", - "hash": "3846349522741700547" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-12.ts", - "hash": "14919245803957946133" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-13.ts", - "hash": "13421949462798247163" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-14.ts", - "hash": "11651766092006487866" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-15.ts", - "hash": "5913067749739754889" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-16.ts", - "hash": "1938273561721658506" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-17.ts", - "hash": "16745157463180821700" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-2.ts", - "hash": "8089041981968012677" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-3.ts", - "hash": "15666268342868477210" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-4.ts", - "hash": "7141991849238464261" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-5.ts", - "hash": "17978308980500404278" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-6.ts", - "hash": "4598385603964478011" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-7.ts", - "hash": "7191688199835628637" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-8.ts", - "hash": "15977938474733404181" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons-9.ts", - "hash": "4640504316025068722" - }, - { - "file": "packages/font-icons-mdl2/src/fabric-icons.ts", - "hash": "16136330814992617156" - }, - { - "file": "packages/font-icons-mdl2/src/iconAliases.ts", - "hash": "14099067786273144772" - }, - { - "file": "packages/font-icons-mdl2/src/iconNames.test.ts", - "hash": "1735850012565977488" - }, - { - "file": "packages/font-icons-mdl2/src/index.ts", - "hash": "18182222310833360328" - }, - { - "file": "packages/font-icons-mdl2/src/version.ts", - "hash": "2559425555783107307" - }, - { - "file": "packages/font-icons-mdl2/tsconfig.json", - "hash": "279610058387507708" - } - ], - "@fluentui/react-portal": [ - { - "file": "packages/react-components/react-portal/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-portal/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-portal/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-portal/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-portal/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-portal/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-portal/CHANGELOG.json", - "hash": "6591119815101217949" - }, - { - "file": "packages/react-components/react-portal/CHANGELOG.md", - "hash": "3274066332542757743" - }, - { - "file": "packages/react-components/react-portal/LICENSE", - "hash": "5436713769968226347" - }, - { - "file": "packages/react-components/react-portal/README.md", - "hash": "8273149864735662535" - }, - { - "file": "packages/react-components/react-portal/bundle-size/Portal.fixture.js", - "hash": "16985937506839637290" - }, - { - "file": "packages/react-components/react-portal/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-portal/config/tests.js", - "hash": "14010006175392234982" - }, - { - "file": "packages/react-components/react-portal/docs/Spec.md", - "hash": "6366170172262274459" - }, - { - "file": "packages/react-components/react-portal/etc/react-portal.api.md", - "hash": "10658581800869826363" - }, - { - "file": "packages/react-components/react-portal/jest.config.js", - "hash": "9910520644242674457" - }, - { - "file": "packages/react-components/react-portal/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-portal/package.json", - "hash": "11677510734866859682", - "deps": [ - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "npm:use-disposable", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-portal/project.json", - "hash": "14457468981824115850" - }, - { - "file": "packages/react-components/react-portal/src/Portal.ts", - "hash": "7845203508181959455" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/Portal-node.test.tsx", - "hash": "9136445508182774156" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/Portal.test.tsx", - "hash": "17392842799512127596" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/Portal.tsx", - "hash": "11011410844879135032" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/Portal.types.ts", - "hash": "11324991944097355967" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/__snapshots__/Portal.test.tsx.snap", - "hash": "9062428348270700463" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/index.ts", - "hash": "16697091254987862602" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/renderPortal.tsx", - "hash": "8968293240803067495" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/usePortal.ts", - "hash": "16841979113281129113" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/usePortalMountNode.test.tsx", - "hash": "11910220960810678723" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/usePortalMountNode.ts", - "hash": "2336349602905310883" - }, - { - "file": "packages/react-components/react-portal/src/components/Portal/usePortalMountNodeStyles.styles.ts", - "hash": "10679524190507651237" - }, - { - "file": "packages/react-components/react-portal/src/index.ts", - "hash": "8374907855495313520" - }, - { - "file": "packages/react-components/react-portal/src/utils/toMountNodeProps.test.ts", - "hash": "6575869444091968759" - }, - { - "file": "packages/react-components/react-portal/src/utils/toMountNodeProps.ts", - "hash": "17503404067390627007" - }, - { - "file": "packages/react-components/react-portal/stories/Portal/PortalDefault.stories.tsx", - "hash": "840727895949819606" - }, - { - "file": "packages/react-components/react-portal/stories/Portal/PortalDescription.md", - "hash": "3241420095240977648" - }, - { - "file": "packages/react-components/react-portal/stories/Portal/index.stories.tsx", - "hash": "17009993612510309048" - }, - { - "file": "packages/react-components/react-portal/stories/toMountNodeProps/Default.stories.tsx", - "hash": "18309127042547897604" - }, - { - "file": "packages/react-components/react-portal/stories/toMountNodeProps/index.stories.tsx", - "hash": "15428942433571628197" - }, - { - "file": "packages/react-components/react-portal/stories/toMountNodeProps/toMountNodePropsDescription.md", - "hash": "11465112477349060741" - }, - { - "file": "packages/react-components/react-portal/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-portal/tsconfig.lib.json", - "hash": "2330431448937249608" - }, - { - "file": "packages/react-components/react-portal/tsconfig.spec.json", - "hash": "5989250612042187831" - } - ], - "@fluentui/react-jsx-runtime": [ - { - "file": "packages/react-components/react-jsx-runtime/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-jsx-runtime/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-jsx-runtime/.gitignore", - "hash": "9550321157120374298" - }, - { - "file": "packages/react-components/react-jsx-runtime/.swcrc", - "hash": "471348148265161299" - }, - { - "file": "packages/react-components/react-jsx-runtime/CHANGELOG.json", - "hash": "10971670868821144686" - }, - { - "file": "packages/react-components/react-jsx-runtime/CHANGELOG.md", - "hash": "12062860809062640425" - }, - { - "file": "packages/react-components/react-jsx-runtime/LICENSE", - "hash": "8462864562846768755" - }, - { - "file": "packages/react-components/react-jsx-runtime/README.md", - "hash": "11109812187361138131" - }, - { - "file": "packages/react-components/react-jsx-runtime/bundle-size/Classic.fixture.js", - "hash": "2189361890724554761" - }, - { - "file": "packages/react-components/react-jsx-runtime/bundle-size/DevRuntime.fixture.js", - "hash": "12091473808950978917" - }, - { - "file": "packages/react-components/react-jsx-runtime/bundle-size/Runtime.fixture.js", - "hash": "6901675173806772497" - }, - { - "file": "packages/react-components/react-jsx-runtime/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-jsx-runtime/config/pre-copy.json", - "hash": "447189867406931907" - }, - { - "file": "packages/react-components/react-jsx-runtime/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-jsx-runtime/etc/react-jsx-runtime.api.md", - "hash": "16798684193978159480" - }, - { - "file": "packages/react-components/react-jsx-runtime/jest.config.js", - "hash": "2360704257532875213" - }, - { - "file": "packages/react-components/react-jsx-runtime/just.config.ts", - "hash": "8807236478034018475" - }, - { - "file": "packages/react-components/react-jsx-runtime/package.json", - "hash": "7260507828872674596", - "deps": [ - "@fluentui/react-utilities", - "npm:react-is", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-components/react-jsx-runtime/project.json", - "hash": "10908212225777993114" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/createElement.test.tsx", - "hash": "7857934002103683381" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/createElement.ts", - "hash": "5143903251423192488" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/index.ts", - "hash": "10432910293518490296" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/interop.test.tsx", - "hash": "7355979823247544430" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx/createElementFromSlotComponent.ts", - "hash": "3242772620948003538" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx/createJSX.ts", - "hash": "16587162612105716723" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx/jsxDEVSlot.ts", - "hash": "13641530372240414573" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx/jsxSlot.ts", - "hash": "3757873525937880939" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx/jsxsSlot.ts", - "hash": "14860851723228540792" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx-dev-runtime/index.d.ts__tmpl__", - "hash": "853853025402546499" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx-dev-runtime/package.json__tmpl__", - "hash": "12566889565698761272" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx-dev-runtime.ts", - "hash": "1020294888243174344" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx-runtime/index.d.ts__tmpl__", - "hash": "9028021041769997884" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx-runtime/package.json__tmpl__", - "hash": "4896823238390758319" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx-runtime.test.tsx", - "hash": "4011489009326148226" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/jsx-runtime.ts", - "hash": "1117252994552105149" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/utils/DevRuntime.ts", - "hash": "16814367357734031505" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/utils/Runtime.ts", - "hash": "1866520596003103388" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/utils/createCompatSlotComponent.ts", - "hash": "3622659148642250765" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/utils/getMetadataFromSlotComponent.test.ts", - "hash": "6977890710643796475" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/utils/getMetadataFromSlotComponent.ts", - "hash": "7143021942311493841" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/utils/types.ts", - "hash": "12638258598676338443" - }, - { - "file": "packages/react-components/react-jsx-runtime/src/utils/warnIfElementTypeIsInvalid.ts", - "hash": "17606458788076983412" - }, - { - "file": "packages/react-components/react-jsx-runtime/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/react-jsx-runtime/tsconfig.lib.json", - "hash": "14975475306433073951" - }, - { - "file": "packages/react-components/react-jsx-runtime/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/react-image": [ - { - "file": "packages/react-components/react-image/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-image/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-image/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-image/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-image/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-image/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-image/CHANGELOG.json", - "hash": "12972083916301177064" - }, - { - "file": "packages/react-components/react-image/CHANGELOG.md", - "hash": "3050448768160993159" - }, - { - "file": "packages/react-components/react-image/LICENSE", - "hash": "6217079007318333882" - }, - { - "file": "packages/react-components/react-image/README.md", - "hash": "1363519546262385559" - }, - { - "file": "packages/react-components/react-image/bundle-size/Image.fixture.js", - "hash": "16899974605924331648" - }, - { - "file": "packages/react-components/react-image/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-image/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-image/docs/MIGRATION.md", - "hash": "11324318193252804635" - }, - { - "file": "packages/react-components/react-image/docs/Spec.md", - "hash": "3759599989017744849" - }, - { - "file": "packages/react-components/react-image/etc/react-image.api.md", - "hash": "16047758325502523106" - }, - { - "file": "packages/react-components/react-image/jest.config.js", - "hash": "17059578713221881884" - }, - { - "file": "packages/react-components/react-image/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-image/package.json", - "hash": "13785354620659825348", - "deps": [ - "@fluentui/react-shared-contexts", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "@fluentui/react-theme", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-image/project.json", - "hash": "14014664761946749721" - }, - { - "file": "packages/react-components/react-image/src/Image.ts", - "hash": "16464656776672641880" - }, - { - "file": "packages/react-components/react-image/src/components/Image/Image.test.tsx", - "hash": "12718530982841221568" - }, - { - "file": "packages/react-components/react-image/src/components/Image/Image.tsx", - "hash": "5286392891935920670" - }, - { - "file": "packages/react-components/react-image/src/components/Image/Image.types.ts", - "hash": "109715587094993652" - }, - { - "file": "packages/react-components/react-image/src/components/Image/__snapshots__/Image.test.tsx.snap", - "hash": "16033528447138702018" - }, - { - "file": "packages/react-components/react-image/src/components/Image/index.ts", - "hash": "3654391162566112964" - }, - { - "file": "packages/react-components/react-image/src/components/Image/renderImage.tsx", - "hash": "8704104212170780282" - }, - { - "file": "packages/react-components/react-image/src/components/Image/useImage.ts", - "hash": "7614888159156795171" - }, - { - "file": "packages/react-components/react-image/src/components/Image/useImageStyles.styles.ts", - "hash": "5034345938613758190" - }, - { - "file": "packages/react-components/react-image/src/index.ts", - "hash": "9024266930531352710" - }, - { - "file": "packages/react-components/react-image/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageBestPractices.md", - "hash": "12632277717522951694" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageBlock.stories.tsx", - "hash": "11733438778682927144" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageBordered.stories.tsx", - "hash": "18093213642290742067" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageDefault.stories.tsx", - "hash": "15360143901742590023" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageDescription.md", - "hash": "1568935439820178083" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageFallback.stories.tsx", - "hash": "5767623493687585505" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageFit.stories.tsx", - "hash": "1094106785743098401" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageShadow.stories.tsx", - "hash": "11132081493084711018" - }, - { - "file": "packages/react-components/react-image/stories/Image/ImageShape.stories.tsx", - "hash": "15738169211055779651" - }, - { - "file": "packages/react-components/react-image/stories/Image/index.stories.tsx", - "hash": "809696348755387075" - }, - { - "file": "packages/react-components/react-image/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-image/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-image/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/tokens": [ - { - "file": "packages/tokens/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/tokens/.eslintrc.json", - "hash": "7826845955212215663" - }, - { - "file": "packages/tokens/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/tokens/CHANGELOG.json", - "hash": "14841026886481865649" - }, - { - "file": "packages/tokens/CHANGELOG.md", - "hash": "3366136784723633930" - }, - { - "file": "packages/tokens/LICENSE", - "hash": "2957492313707768209" - }, - { - "file": "packages/tokens/README.md", - "hash": "1744177084782103850" - }, - { - "file": "packages/tokens/config/api-extractor.json", - "hash": "10178698400109090564" - }, - { - "file": "packages/tokens/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/tokens/etc/tokens.api.md", - "hash": "9001732672187428224" - }, - { - "file": "packages/tokens/jest.config.js", - "hash": "15807496765609650508" - }, - { - "file": "packages/tokens/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/tokens/package.json", - "hash": "2400468319047909006", - "deps": [ - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/tokens/project.json", - "hash": "207057935229196254" - }, - { - "file": "packages/tokens/src/alias/darkColor.ts", - "hash": "6524628836699045198" - }, - { - "file": "packages/tokens/src/alias/darkColorPalette.ts", - "hash": "18318455665690501717" - }, - { - "file": "packages/tokens/src/alias/highContrastColor.ts", - "hash": "17333459973956732870" - }, - { - "file": "packages/tokens/src/alias/highContrastColorPalette.ts", - "hash": "7598837583164836057" - }, - { - "file": "packages/tokens/src/alias/lightColor.ts", - "hash": "699927236436408252" - }, - { - "file": "packages/tokens/src/alias/lightColorPalette.ts", - "hash": "15665362712347405664" - }, - { - "file": "packages/tokens/src/alias/teamsDarkColor.ts", - "hash": "495554757685176995" - }, - { - "file": "packages/tokens/src/global/borderRadius.ts", - "hash": "10922533387751712670" - }, - { - "file": "packages/tokens/src/global/brandColors.ts", - "hash": "13470927145154942037" - }, - { - "file": "packages/tokens/src/global/colorPalette.ts", - "hash": "14811325803284691358" - }, - { - "file": "packages/tokens/src/global/colors.ts", - "hash": "7382183712404700876" - }, - { - "file": "packages/tokens/src/global/curves.ts", - "hash": "15506710049223549044" - }, - { - "file": "packages/tokens/src/global/durations.ts", - "hash": "11571525354434980387" - }, - { - "file": "packages/tokens/src/global/fonts.ts", - "hash": "16300469290703263152" - }, - { - "file": "packages/tokens/src/global/index.ts", - "hash": "2397229802645905796" - }, - { - "file": "packages/tokens/src/global/spacings.ts", - "hash": "6252071470469473214" - }, - { - "file": "packages/tokens/src/global/strokeWidths.ts", - "hash": "1605802753556060163" - }, - { - "file": "packages/tokens/src/global/typographyStyles.ts", - "hash": "18192818131277542845" - }, - { - "file": "packages/tokens/src/index.ts", - "hash": "10799930784753146153" - }, - { - "file": "packages/tokens/src/sharedColorNames.ts", - "hash": "17837956492232571546" - }, - { - "file": "packages/tokens/src/statusColorMapping.ts", - "hash": "3958570264250862025" - }, - { - "file": "packages/tokens/src/themeToTokensObject.test.ts", - "hash": "15766396418114753078" - }, - { - "file": "packages/tokens/src/themeToTokensObject.ts", - "hash": "8566019407815526884" - }, - { - "file": "packages/tokens/src/themes/index.ts", - "hash": "16328840743172684649" - }, - { - "file": "packages/tokens/src/themes/teams/darkTheme.ts", - "hash": "10162129513779528421" - }, - { - "file": "packages/tokens/src/themes/teams/highContrastTheme.ts", - "hash": "8737380161356881067" - }, - { - "file": "packages/tokens/src/themes/teams/index.ts", - "hash": "17608448649042645716" - }, - { - "file": "packages/tokens/src/themes/teams/lightTheme.ts", - "hash": "15856732036176289418" - }, - { - "file": "packages/tokens/src/themes/web/darkTheme.ts", - "hash": "12650699875162499107" - }, - { - "file": "packages/tokens/src/themes/web/index.ts", - "hash": "13361016594897630736" - }, - { - "file": "packages/tokens/src/themes/web/lightTheme.ts", - "hash": "13431256856349139698" - }, - { - "file": "packages/tokens/src/tokens.test.ts", - "hash": "3282789169986695786" - }, - { - "file": "packages/tokens/src/tokens.ts", - "hash": "2285311445095864008" - }, - { - "file": "packages/tokens/src/types.ts", - "hash": "528143425245606708" - }, - { - "file": "packages/tokens/src/utils/createDarkTheme.ts", - "hash": "7754017445960908345" - }, - { - "file": "packages/tokens/src/utils/createHighContrastTheme.ts", - "hash": "5919985595387454286" - }, - { - "file": "packages/tokens/src/utils/createLightTheme.ts", - "hash": "13838707512292291141" - }, - { - "file": "packages/tokens/src/utils/createTeamsDarkTheme.ts", - "hash": "313717060099057838" - }, - { - "file": "packages/tokens/src/utils/index.ts", - "hash": "15545758859304259047" - }, - { - "file": "packages/tokens/src/utils/shadows.ts", - "hash": "2299298543354272552" - }, - { - "file": "packages/tokens/tsconfig.json", - "hash": "3768914200062126724" - }, - { - "file": "packages/tokens/tsconfig.lib.json", - "hash": "13671966270683185407" - }, - { - "file": "packages/tokens/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/react-timepicker-compat-preview": [ - { - "file": "packages/react-components/react-timepicker-compat-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/CHANGELOG.json", - "hash": "7443897928512652454" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/CHANGELOG.md", - "hash": "10288519529322773910" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/LICENSE", - "hash": "16008528871596961028" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/README.md", - "hash": "1809579314509941543" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/bundle-size/TimePicker.fixture.js", - "hash": "14241624297653717010" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/docs/Migration.md", - "hash": "4021833649227823482" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/docs/Spec.md", - "hash": "8635174822444888522" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/etc/react-timepicker-compat-preview.api.md", - "hash": "10410088753599407092" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/jest.config.js", - "hash": "9766146148654026096" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/package.json", - "hash": "18075287189948415372", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-combobox", - "@fluentui/react-field", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/project.json", - "hash": "11623526912155252897" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/TimePicker.ts", - "hash": "8919003633615161634" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.cy.tsx", - "hash": "2268766357020981108" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.test.tsx", - "hash": "4625180512860312676" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.tsx", - "hash": "6856338812317042222" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.types.ts", - "hash": "16705913128014134642" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/index.ts", - "hash": "14317002683791819993" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/timeMath.test.ts", - "hash": "9610495087449809696" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/timeMath.ts", - "hash": "16427594297458443598" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/useTimePicker.tsx", - "hash": "10101090423944398224" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/useTimePickerStyles.styles.ts", - "hash": "9323957650113310013" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/index.ts", - "hash": "15110596364222141948" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerBestPractices.md", - "hash": "4715016281428560167" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerControlled.md", - "hash": "4542577073511108011" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerControlled.stories.tsx", - "hash": "14159446324711651597" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerDefault.stories.tsx", - "hash": "3866129310777451618" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerDescription.md", - "hash": "6543020975323479896" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformCustomParsing.md", - "hash": "8328212493981358431" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformCustomParsing.stories.tsx", - "hash": "13973002934670696970" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformWithErrorHandling.md", - "hash": "9839268275704554451" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformWithErrorHandling.stories.tsx", - "hash": "4213027057161624603" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerWithDatePicker.stories.tsx", - "hash": "11484153653506326666" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/stories/TimePicker/index.stories.tsx", - "hash": "2147694366172160105" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/tsconfig.lib.json", - "hash": "8117551715541039118" - }, - { - "file": "packages/react-components/react-timepicker-compat-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/api-docs": [ - { - "file": "packages/api-docs/.eslintrc.json", - "hash": "9627670268003919245" - }, - { - "file": "packages/api-docs/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/api-docs/CHANGELOG.json", - "hash": "12711583694195328654" - }, - { - "file": "packages/api-docs/CHANGELOG.md", - "hash": "2344515844001916141" - }, - { - "file": "packages/api-docs/LICENSE", - "hash": "7466169225848381887" - }, - { - "file": "packages/api-docs/README.md", - "hash": "4151301246977188865" - }, - { - "file": "packages/api-docs/just.config.ts", - "hash": "2411455081002746933" - }, - { - "file": "packages/api-docs/package.json", - "hash": "8623523342725706688", - "deps": [ - "npm:@microsoft/api-extractor-model", - "npm:@microsoft/tsdoc", - "npm:fs-extra", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/api-docs/project.json", - "hash": "9716814402591382366" - }, - { - "file": "packages/api-docs/src/generatePageJsonFiles.ts", - "hash": "12223137603416192167" - }, - { - "file": "packages/api-docs/src/index.ts", - "hash": "15889215557140595103" - }, - { - "file": "packages/api-docs/src/pageJson.ts", - "hash": "5578611035939541223" - }, - { - "file": "packages/api-docs/src/rendering.ts", - "hash": "7915129139089798906" - }, - { - "file": "packages/api-docs/src/tableJson.ts", - "hash": "18347889133488948496" - }, - { - "file": "packages/api-docs/src/tableRowJson.ts", - "hash": "12702627324845232143" - }, - { - "file": "packages/api-docs/src/types-private.ts", - "hash": "5292858344273348012" - }, - { - "file": "packages/api-docs/src/types.ts", - "hash": "9057104128889182660" - }, - { - "file": "packages/api-docs/tsconfig.json", - "hash": "7070703656195421188" - } - ], - "@fluentui/react-field": [ - { - "file": "packages/react-components/react-field/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-field/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-field/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-field/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-field/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-field/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-field/CHANGELOG.json", - "hash": "8039457963269041194" - }, - { - "file": "packages/react-components/react-field/CHANGELOG.md", - "hash": "1060451877954283372" - }, - { - "file": "packages/react-components/react-field/LICENSE", - "hash": "554933104331199409" - }, - { - "file": "packages/react-components/react-field/README.md", - "hash": "893706678477031575" - }, - { - "file": "packages/react-components/react-field/bundle-size/Field.fixture.js", - "hash": "4838490527905075486" - }, - { - "file": "packages/react-components/react-field/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-field/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-field/docs/Migration.md", - "hash": "10612980883908926799" - }, - { - "file": "packages/react-components/react-field/docs/Spec.md", - "hash": "3881094108645122580" - }, - { - "file": "packages/react-components/react-field/etc/react-field.api.md", - "hash": "12427575368903476413" - }, - { - "file": "packages/react-components/react-field/jest.config.js", - "hash": "16251327533616583441" - }, - { - "file": "packages/react-components/react-field/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-field/package.json", - "hash": "17322716232717629014", - "deps": [ - "@fluentui/react-context-selector", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-label", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-field/project.json", - "hash": "10933597292463507432" - }, - { - "file": "packages/react-components/react-field/src/Field.ts", - "hash": "9870089672195185903" - }, - { - "file": "packages/react-components/react-field/src/components/Field/Field.test.tsx", - "hash": "8461276573503618894" - }, - { - "file": "packages/react-components/react-field/src/components/Field/Field.tsx", - "hash": "12598293249723199107" - }, - { - "file": "packages/react-components/react-field/src/components/Field/Field.types.ts", - "hash": "5054979877071605023" - }, - { - "file": "packages/react-components/react-field/src/components/Field/index.ts", - "hash": "5707729203640261208" - }, - { - "file": "packages/react-components/react-field/src/components/Field/renderField.tsx", - "hash": "14499036947624830423" - }, - { - "file": "packages/react-components/react-field/src/components/Field/useField.tsx", - "hash": "5536967628399082504" - }, - { - "file": "packages/react-components/react-field/src/components/Field/useFieldStyles.styles.ts", - "hash": "14064633758097641501" - }, - { - "file": "packages/react-components/react-field/src/contexts/FieldContext.ts", - "hash": "14919646964922443401" - }, - { - "file": "packages/react-components/react-field/src/contexts/index.ts", - "hash": "4751556762048871598" - }, - { - "file": "packages/react-components/react-field/src/contexts/useFieldContextValues.ts", - "hash": "17279845786865652248" - }, - { - "file": "packages/react-components/react-field/src/contexts/useFieldControlProps.ts", - "hash": "6840257994312578601" - }, - { - "file": "packages/react-components/react-field/src/index.ts", - "hash": "16864027966588469169" - }, - { - "file": "packages/react-components/react-field/src/testing/isConformant.ts", - "hash": "17159661999478583888" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldBestPractices.md", - "hash": "15241567885935055286" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldComponentExamples.stories.tsx", - "hash": "7102357499471409146" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldDefault.stories.tsx", - "hash": "2389481372061903880" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldDescription.md", - "hash": "8562502418038242748" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldDisabled.stories.tsx", - "hash": "8279245328832126716" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldHint.stories.tsx", - "hash": "4859776890358075498" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldHorizontal.stories.tsx", - "hash": "17955668180315832249" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldInfo.stories.tsx", - "hash": "13887433711882633123" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldRenderFunction.stories.tsx", - "hash": "11505527767084781239" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldRequired.stories.tsx", - "hash": "9204847011564345692" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldSize.stories.tsx", - "hash": "4363541870704469900" - }, - { - "file": "packages/react-components/react-field/stories/Field/FieldValidationMessage.stories.tsx", - "hash": "3714923557314846878" - }, - { - "file": "packages/react-components/react-field/stories/Field/index.stories.tsx", - "hash": "11784715857108891473" - }, - { - "file": "packages/react-components/react-field/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-field/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-field/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-nav-preview": [ - { - "file": "packages/react-components/react-nav-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-nav-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-nav-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-nav-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-nav-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-nav-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-nav-preview/LICENSE", - "hash": "3088430307979696734" - }, - { - "file": "packages/react-components/react-nav-preview/README.md", - "hash": "6756387922919562077" - }, - { - "file": "packages/react-components/react-nav-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-nav-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-nav-preview/etc/react-nav-preview.api.md", - "hash": "9876017806119506379" - }, - { - "file": "packages/react-components/react-nav-preview/jest.config.js", - "hash": "15169909463829389022" - }, - { - "file": "packages/react-components/react-nav-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-nav-preview/package.json", - "hash": "7915169346457060300", - "deps": [ - "@fluentui/react-context-selector", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-jsx-runtime", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-nav-preview/project.json", - "hash": "7707482133573803757" - }, - { - "file": "packages/react-components/react-nav-preview/src/Nav.ts", - "hash": "15226117353876273492" - }, - { - "file": "packages/react-components/react-nav-preview/src/NavCategory.ts", - "hash": "5434715511121912691" - }, - { - "file": "packages/react-components/react-nav-preview/src/NavSubItem.ts", - "hash": "3915242774151390182" - }, - { - "file": "packages/react-components/react-nav-preview/src/NavSubItemGroup.ts", - "hash": "8938240070373757142" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/Nav/Nav.test.tsx", - "hash": "158053486174122653" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/Nav/Nav.tsx", - "hash": "18218270146485422609" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/Nav/Nav.types.ts", - "hash": "10929201366834975573" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/Nav/index.ts", - "hash": "4485693392122920731" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/Nav/renderNav.tsx", - "hash": "7230375357800654130" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/Nav/useNav.ts", - "hash": "8897080659886028628" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/Nav/useNavStyles.styles.ts", - "hash": "4834411169954684266" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.test.tsx", - "hash": "16413704721569380745" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.tsx", - "hash": "1720640811070915642" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.types.ts", - "hash": "10098374413585683092" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategory/index.ts", - "hash": "8839475292241642578" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategory/renderNavCategory.tsx", - "hash": "16804799807584464526" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategory.ts", - "hash": "6494678626284114753" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategoryStyles.styles.ts", - "hash": "12633430787449097937" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.tsx", - "hash": "5847751961393315587" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.types.ts", - "hash": "7891776628441432322" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts", - "hash": "15928452925752890833" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/renderNavCategoryItem.tsx", - "hash": "15736603289382147000" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.styles.ts", - "hash": "15146860763036639062" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.ts", - "hash": "9680309884423010271" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavContext.ts", - "hash": "4576616369669494997" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavContext.types.ts", - "hash": "15231348000793781746" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.test.tsx", - "hash": "14827165463744239965" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.tsx", - "hash": "6052519162523369385" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.types.ts", - "hash": "3032984695700474774" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/index.ts", - "hash": "9427525485211945814" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/renderNavSubItem.tsx", - "hash": "4410008557955283003" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItem.ts", - "hash": "4983794637195202580" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItemStyles.styles.ts", - "hash": "17902598759527383244" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.test.tsx", - "hash": "17591529711307606773" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.tsx", - "hash": "3095811377236672166" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.types.ts", - "hash": "16579070003339013595" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts", - "hash": "12507449088354686105" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/renderNavSubItemGroup.tsx", - "hash": "9750078084299244923" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroup.ts", - "hash": "17877101108238726429" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.ts", - "hash": "17570522853172330214" - }, - { - "file": "packages/react-components/react-nav-preview/src/components/useNavContextValues.tsx", - "hash": "11962765496813473933" - }, - { - "file": "packages/react-components/react-nav-preview/src/index.ts", - "hash": "17244185278957544199" - }, - { - "file": "packages/react-components/react-nav-preview/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-nav-preview/stories/Nav/NavBestPractices.md", - "hash": "13132854725403121719" - }, - { - "file": "packages/react-components/react-nav-preview/stories/Nav/NavDefault.stories.tsx", - "hash": "10523927771920967635" - }, - { - "file": "packages/react-components/react-nav-preview/stories/Nav/NavDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-nav-preview/stories/Nav/NavWithDefaultSelection.stories.tsx", - "hash": "15867010514756758396" - }, - { - "file": "packages/react-components/react-nav-preview/stories/Nav/index.stories.tsx", - "hash": "15202140072825373679" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryBestPractices.md", - "hash": "5558067163628176900" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDefault.stories.tsx", - "hash": "7778044457764643490" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavCategory/index.stories.tsx", - "hash": "9437617484325163212" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemBestPractices.md", - "hash": "13132854725403121719" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemDefault.stories.tsx", - "hash": "11220194927216964124" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavSubItem/index.stories.tsx", - "hash": "7866030612555590358" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupBestPractices.md", - "hash": "5558067163628176900" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDefault.stories.tsx", - "hash": "984192011107987187" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDescription.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-components/react-nav-preview/stories/NavSubItemGroup/index.stories.tsx", - "hash": "17887561937213764921" - }, - { - "file": "packages/react-components/react-nav-preview/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-nav-preview/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-nav-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-update-release-notes": [ - { - "file": "scripts/update-release-notes/.eslintrc.json", - "hash": "3383833998949875450" - }, - { - "file": "scripts/update-release-notes/changelogsAndTags.ts", - "hash": "9695448628784925143" - }, - { - "file": "scripts/update-release-notes/index.ts", - "hash": "4586362800451860761" - }, - { - "file": "scripts/update-release-notes/init.ts", - "hash": "7376748252051231026" - }, - { - "file": "scripts/update-release-notes/jest.config.js", - "hash": "14450656967466977753" - }, - { - "file": "scripts/update-release-notes/markdown.ts", - "hash": "2689630508375349858" - }, - { - "file": "scripts/update-release-notes/package.json", - "hash": "10460076229097447114", - "deps": ["@fluentui/scripts-github"] - }, - { - "file": "scripts/update-release-notes/project.json", - "hash": "14473144405799169564" - }, - { - "file": "scripts/update-release-notes/pullRequests.ts", - "hash": "13578436414946334968" - }, - { - "file": "scripts/update-release-notes/releases.ts", - "hash": "5175589060836789611" - }, - { - "file": "scripts/update-release-notes/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/update-release-notes/tsconfig.lib.json", - "hash": "3753806828268919288" - }, - { - "file": "scripts/update-release-notes/tsconfig.spec.json", - "hash": "16242416785763058919" - }, - { - "file": "scripts/update-release-notes/types.ts", - "hash": "2247159842994839983" - } - ], - "@fluentui/dom-utilities": [ - { - "file": "packages/dom-utilities/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/dom-utilities/.npmignore", - "hash": "7699079327417375383" - }, - { - "file": "packages/dom-utilities/CHANGELOG.json", - "hash": "8068234031633819591" - }, - { - "file": "packages/dom-utilities/CHANGELOG.md", - "hash": "16100292252780397155" - }, - { - "file": "packages/dom-utilities/LICENSE", - "hash": "4650556597768654521" - }, - { - "file": "packages/dom-utilities/README.md", - "hash": "2433927414357617456" - }, - { - "file": "packages/dom-utilities/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/dom-utilities/etc/dom-utilities.api.md", - "hash": "10454177134700198954" - }, - { - "file": "packages/dom-utilities/jest.config.js", - "hash": "8457350006614220129" - }, - { - "file": "packages/dom-utilities/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/dom-utilities/package.json", - "hash": "4796838588752972627", - "deps": [ - "@fluentui/set-version", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/dom-utilities/project.json", - "hash": "15540251548798604047" - }, - { - "file": "packages/dom-utilities/src/IVirtualElement.ts", - "hash": "15055156890037686138" - }, - { - "file": "packages/dom-utilities/src/elementContains.ts", - "hash": "5166646740547888307" - }, - { - "file": "packages/dom-utilities/src/elementContainsAttribute.ts", - "hash": "240530313650375428" - }, - { - "file": "packages/dom-utilities/src/findElementRecursive.ts", - "hash": "15902457052705517702" - }, - { - "file": "packages/dom-utilities/src/getChildren.ts", - "hash": "17303479692229336714" - }, - { - "file": "packages/dom-utilities/src/getParent.ts", - "hash": "17207135018437651072" - }, - { - "file": "packages/dom-utilities/src/getVirtualParent.ts", - "hash": "12867277850625566919" - }, - { - "file": "packages/dom-utilities/src/index.test.ts", - "hash": "9241586715584521733" - }, - { - "file": "packages/dom-utilities/src/index.ts", - "hash": "11567655210902058086" - }, - { - "file": "packages/dom-utilities/src/isVirtualElement.ts", - "hash": "5785282851313588602" - }, - { - "file": "packages/dom-utilities/src/portalContainsElement.ts", - "hash": "17978580743449785402" - }, - { - "file": "packages/dom-utilities/src/setPortalAttribute.ts", - "hash": "11039697298779251904" - }, - { - "file": "packages/dom-utilities/src/setVirtualParent.ts", - "hash": "14427122606930692518" - }, - { - "file": "packages/dom-utilities/src/version.ts", - "hash": "9176519080116557418" - }, - { - "file": "packages/dom-utilities/tsconfig.json", - "hash": "17721705097427987892" - } - ], - "@fluentui/eslint-plugin": [ - { - "file": "packages/eslint-plugin/.eslintrc.json", - "hash": "6702248602835585560" - }, - { - "file": "packages/eslint-plugin/CHANGELOG.json", - "hash": "13566414994364152721" - }, - { - "file": "packages/eslint-plugin/CHANGELOG.md", - "hash": "2382653209781718305" - }, - { - "file": "packages/eslint-plugin/README.md", - "hash": "6515429868455497447" - }, - { - "file": "packages/eslint-plugin/package.json", - "hash": "2069193219073938718", - "deps": [ - "npm:@griffel/eslint-plugin", - "npm:@rnx-kit/eslint-plugin", - "npm:@typescript-eslint/eslint-plugin", - "npm:@typescript-eslint/experimental-utils", - "npm:@typescript-eslint/parser", - "npm:eslint-config-airbnb", - "npm:eslint-config-prettier", - "npm:eslint-import-resolver-typescript", - "npm:eslint-plugin-deprecation", - "npm:eslint-plugin-import", - "npm:eslint-plugin-jest", - "npm:eslint-plugin-jsdoc", - "npm:eslint-plugin-jsx-a11y", - "npm:eslint-plugin-react", - "npm:eslint-plugin-react-hooks", - "npm:fs-extra", - "npm:minimatch", - "npm:jju", - "npm:eslint", - "npm:typescript" - ] - }, - { - "file": "packages/eslint-plugin/project.json", - "hash": "1301597791484806568" - }, - { - "file": "packages/eslint-plugin/src/configs/base-legacy.js", - "hash": "14665444077677365009" - }, - { - "file": "packages/eslint-plugin/src/configs/base.js", - "hash": "13118811890005841714" - }, - { - "file": "packages/eslint-plugin/src/configs/core.js", - "hash": "7987804994885855829" - }, - { - "file": "packages/eslint-plugin/src/configs/imports.js", - "hash": "11327634237007787886" - }, - { - "file": "packages/eslint-plugin/src/configs/node-legacy.js", - "hash": "10767308883214650760" - }, - { - "file": "packages/eslint-plugin/src/configs/node.js", - "hash": "1222248047971981401" - }, - { - "file": "packages/eslint-plugin/src/configs/react-config.js", - "hash": "9068321685220036799" - }, - { - "file": "packages/eslint-plugin/src/configs/react-legacy.js", - "hash": "9470003892035401491" - }, - { - "file": "packages/eslint-plugin/src/configs/react-northstar.js", - "hash": "9533814243477463140" - }, - { - "file": "packages/eslint-plugin/src/configs/react.js", - "hash": "8307907617103516118" - }, - { - "file": "packages/eslint-plugin/src/configs/restricted-globals.js", - "hash": "18376104961223750479" - }, - { - "file": "packages/eslint-plugin/src/index.js", - "hash": "17643391091811701371" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/src/context.ts", - "hash": "921614066716619819" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/src/index.ts", - "hash": "12767886012319403268" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/tsconfig.json", - "hash": "8939312372276470872" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/exclude/special-path/src/index.ts", - "hash": "12767886012319403268" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/exclude/tsconfig.json", - "hash": "8939312372276470872" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/src/context.ts", - "hash": "6433024526995447386" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/src/index.ts", - "hash": "12767886012319403268" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/tsconfig.json", - "hash": "8939312372276470872" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/src/internal/context.ts", - "hash": "6433024526995447386" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/src/internal/index.ts", - "hash": "12767886012319403268" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/tsconfig.json", - "hash": "8939312372276470872" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/named-export/src/index.ts", - "hash": "12767886012319403268" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/named-export/tsconfig.json", - "hash": "8939312372276470872" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/src/context.ts", - "hash": "17105299796982801295" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/src/index.ts", - "hash": "12767886012319403268" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/tsconfig.json", - "hash": "8939312372276470872" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/index.js", - "hash": "12847161635521615310" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-context-export/index.test.js", - "hash": "464311512855807170" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-imports.js", - "hash": "14494031545397940759" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-instanceof-html-element/index.js", - "hash": "17266374067885429294" - }, - { - "file": "packages/eslint-plugin/src/rules/ban-instanceof-html-element/index.test.js", - "hash": "6679306743942455995" - }, - { - "file": "packages/eslint-plugin/src/rules/deprecated-keyboard-event-props.js", - "hash": "14382391648336116412" - }, - { - "file": "packages/eslint-plugin/src/rules/max-len.js", - "hash": "6542972604164962236" - }, - { - "file": "packages/eslint-plugin/src/rules/no-context-default-value/index.js", - "hash": "12837708352970806418" - }, - { - "file": "packages/eslint-plugin/src/rules/no-context-default-value/index.test.js", - "hash": "11131012401618805739" - }, - { - "file": "packages/eslint-plugin/src/rules/no-global-react.js", - "hash": "2921266244182474215" - }, - { - "file": "packages/eslint-plugin/src/rules/no-restricted-imports/index.js", - "hash": "13917956998549149408" - }, - { - "file": "packages/eslint-plugin/src/rules/no-restricted-imports/index.test.js", - "hash": "9202308256820145329" - }, - { - "file": "packages/eslint-plugin/src/rules/no-tslint-comments.js", - "hash": "12222375696974991780" - }, - { - "file": "packages/eslint-plugin/src/rules/no-visibility-modifiers.js", - "hash": "9342359926437404469" - }, - { - "file": "packages/eslint-plugin/src/utils/configHelpers.js", - "hash": "2104693757629241199" - }, - { - "file": "packages/eslint-plugin/src/utils/createRule.js", - "hash": "9300592942279712397" - }, - { - "file": "packages/eslint-plugin/src/utils/type-services.js", - "hash": "12027578898158183503" - }, - { - "file": "packages/eslint-plugin/tsconfig.json", - "hash": "17734194482250290088" - } - ], - "@fluentui/public-docsite-resources": [ - { - "file": "apps/public-docsite-resources/.eslintrc.json", - "hash": "1006039826695126320" - }, - { - "file": "apps/public-docsite-resources/.npmignore", - "hash": "2926714820578262549" - }, - { - "file": "apps/public-docsite-resources/CHANGELOG.json", - "hash": "16283141252976196454" - }, - { - "file": "apps/public-docsite-resources/CHANGELOG.md", - "hash": "16861719145102182217" - }, - { - "file": "apps/public-docsite-resources/LICENSE", - "hash": "10066751927269712564" - }, - { - "file": "apps/public-docsite-resources/README.md", - "hash": "7141883042692341254" - }, - { - "file": "apps/public-docsite-resources/config/api-docs.js", - "hash": "11668101459963587459" - }, - { - "file": "apps/public-docsite-resources/config/pre-copy.json", - "hash": "6078374637344320600" - }, - { - "file": "apps/public-docsite-resources/just.config.ts", - "hash": "3934073888276956957" - }, - { - "file": "apps/public-docsite-resources/package.json", - "hash": "3404403150191974449", - "deps": [ - "@fluentui/react", - "@fluentui/react-charting", - "@fluentui/react-examples", - "npm:@microsoft/load-themed-styles", - "@fluentui/azure-themes", - "@fluentui/react-docsite-components", - "@fluentui/font-icons-mdl2", - "@fluentui/set-version", - "@fluentui/theme-samples", - "@fluentui/react-monaco-editor", - "npm:office-ui-fabric-core", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/api-docs", - "@fluentui/eslint-plugin", - "@fluentui/scripts-monorepo", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack" - ] - }, - { - "file": "apps/public-docsite-resources/project.json", - "hash": "1147105777361919067" - }, - { - "file": "apps/public-docsite-resources/src/AppDefinition.tsx", - "hash": "7277832506832781573" - }, - { - "file": "apps/public-docsite-resources/src/GettingStartedPage.tsx", - "hash": "3862410802762460924" - }, - { - "file": "apps/public-docsite-resources/src/components/DemoPage.tsx", - "hash": "9020549840902458335" - }, - { - "file": "apps/public-docsite-resources/src/components/DemoPage.types.ts", - "hash": "13637648667090905659" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ActivityItemPage.tsx", - "hash": "12874555494259594381" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedBulkOperationsPage.tsx", - "hash": "14152797804181136183" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedLazyLoadingPage.tsx", - "hash": "12845085304038823878" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedPage.tsx", - "hash": "7616571420309216578" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedQuickActionsPage.tsx", - "hash": "3085789639514069691" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Announced/AnnouncedSearchResultsPage.tsx", - "hash": "4759661553964954805" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/BreadcrumbPage.tsx", - "hash": "17749543750938202238" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ButtonPage.tsx", - "hash": "1074859371510836896" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/CalendarPage.tsx", - "hash": "9066959064675474449" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/CalloutPage.tsx", - "hash": "3985615511416534706" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/AreaChartPage.tsx", - "hash": "9142849699720576026" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/DonutChartPage.tsx", - "hash": "8401913092164120335" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/GaugeChartPage.tsx", - "hash": "5909945778333785594" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/GroupedVerticalBarChartPage.tsx", - "hash": "5871885321022510668" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/HeatMapChartPage.tsx", - "hash": "447712487347504671" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/HorizontalBarChartPage.tsx", - "hash": "10635783908789682392" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/HorizontalBarChartWithAxisPage.tsx", - "hash": "15860945913932029918" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/LegendsPage.tsx", - "hash": "5931039197259354517" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/LineChartPage.tsx", - "hash": "5931039197259354517" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/MultiStackedBarChartPage.tsx", - "hash": "6864870389254610389" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/PieChartPage.tsx", - "hash": "14073402168693410464" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/SankeyChartPage.tsx", - "hash": "1773501327481125982" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/SparklineChartPage.tsx", - "hash": "234023845337169016" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/StackedBarChartPage.tsx", - "hash": "3762902924545887431" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/TreeChartPage.tsx", - "hash": "6379781915487945751" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/VerticalBarChartStandardPage.tsx", - "hash": "10657208350562091459" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/Charting/VerticalStackedBarChartPage.tsx", - "hash": "18035167189116711073" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/CheckboxPage.tsx", - "hash": "4704363360278678460" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ChoiceGroupPage.tsx", - "hash": "14065659955961397923" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/CoachmarkPage.tsx", - "hash": "6023492553801230509" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ColorPickerPage.tsx", - "hash": "9314814354432295747" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ColorsPage.global.scss", - "hash": "8516477111204758268" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ColorsPage.tsx", - "hash": "14293885024317434682" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ComboBoxPage.tsx", - "hash": "14225846150450310921" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/CommandBarPage.tsx", - "hash": "2983211923980480407" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ContextualMenuPage.tsx", - "hash": "11322341863360396305" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DatePickerPage.tsx", - "hash": "9693425122656743109" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListAdvancedPage.tsx", - "hash": "10497699611319342029" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListAnimationPage.tsx", - "hash": "13246065446364453753" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListBasicPage.tsx", - "hash": "5610768878447358512" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCompactPage.tsx", - "hash": "9764384910422782275" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomColumnsPage.tsx", - "hash": "1693193915191907175" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomFooterPage.tsx", - "hash": "17455300748596259298" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomGroupHeadersPage.tsx", - "hash": "17528947698984247944" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomRowsPage.tsx", - "hash": "18378788640799452555" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListDragDropPage.tsx", - "hash": "14997912916660581544" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListKeyboardDragDropPage.tsx", - "hash": "1981206541946206946" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListKeyboardOverridesPage.tsx", - "hash": "7924074756106420545" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListLargeGroupedPage.tsx", - "hash": "17556143238825852135" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListNavigatingFocusPage.tsx", - "hash": "17751629156569546517" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListPage.tsx", - "hash": "16641730452823548384" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListProportionalColumnsPage.tsx", - "hash": "16630306616595775231" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListShimmerPage.tsx", - "hash": "14148595482952030923" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListSimpleGroupedPage.tsx", - "hash": "3338805991866415156" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DialogPage.tsx", - "hash": "5841632104556317487" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DividerPage.tsx", - "hash": "17426411170169843402" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DocumentCardPage.tsx", - "hash": "14158468745118722213" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/DropdownPage.tsx", - "hash": "14720258869656067591" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ExtendedPeoplePickerPage.tsx", - "hash": "12659529066039516185" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/FacepilePage.tsx", - "hash": "3803403514969383383" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/FloatingPeoplePickerPage.tsx", - "hash": "18005353677452631413" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/FocusTrapZonePage.tsx", - "hash": "15037290987307246733" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/FocusZonePage.tsx", - "hash": "11010664311417327928" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/GroupedListPage.tsx", - "hash": "15069269515386649438" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/HoverCardPage.tsx", - "hash": "10856368801549589069" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/IconPage.tsx", - "hash": "2231566654499636239" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ImagePage.tsx", - "hash": "1743385979724412862" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/KeytipsPage.tsx", - "hash": "7131832946901219494" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/LabelPage.tsx", - "hash": "5089297279315795147" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/LayerPage.tsx", - "hash": "10390176672824469574" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/LinkPage.tsx", - "hash": "6989305525356878229" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ListPage.tsx", - "hash": "15036518738078275188" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/MarqueeSelectionPage.tsx", - "hash": "804408648016633702" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/MessageBarPage.tsx", - "hash": "7035159494733576301" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ModalPage.tsx", - "hash": "547344146741172952" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/NavPage.tsx", - "hash": "15148247899806790313" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/OverflowSetPage.tsx", - "hash": "3573843971840842412" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/OverlayPage.tsx", - "hash": "15606061420059807231" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/PanelPage.tsx", - "hash": "1119918289902627721" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/PeoplePickerPage.tsx", - "hash": "12052940092962775123" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/PersonaPage.tsx", - "hash": "6831941677144068143" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/PickersPage.tsx", - "hash": "11964132278983850456" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/PivotPage.tsx", - "hash": "2959788360604830538" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/PopupPage.tsx", - "hash": "13606486863467912445" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ProgressIndicatorPage.tsx", - "hash": "4186603000795134820" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/RatingPage.tsx", - "hash": "4350031286872721266" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ResizeGroupPage.tsx", - "hash": "2973060030244344700" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ScrollablePanePage.tsx", - "hash": "16819364679994888960" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/SearchBoxPage.tsx", - "hash": "3029224427276024716" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/SelectedPeopleListPage.tsx", - "hash": "7772640726096248692" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/SelectionPage.tsx", - "hash": "12409427404313953929" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/SeparatorPage.tsx", - "hash": "17281088957051862846" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ShimmerPage.tsx", - "hash": "3280936027558693643" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/SliderPage.tsx", - "hash": "8366292712707135930" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/SpinButtonPage.tsx", - "hash": "12119173098289938380" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/SpinnerPage.tsx", - "hash": "2885100480385886395" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/StackPage.tsx", - "hash": "12041367432076032971" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/SwatchColorPickerPage.tsx", - "hash": "11506943068731345318" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/TeachingBubblePage.tsx", - "hash": "6577733362138824835" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/TextFieldPage.tsx", - "hash": "1127323915038076733" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/TextPage.tsx", - "hash": "17491494741568173358" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ThemePage.styles.ts", - "hash": "16939098392212581786" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ThemePage.tsx", - "hash": "5968573234874446418" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/ThemeProviderPage.tsx", - "hash": "18028324695488637599" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/TimePickerPage.tsx", - "hash": "2391481625512082875" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/TogglePage.tsx", - "hash": "611908229068244253" - }, - { - "file": "apps/public-docsite-resources/src/components/pages/TooltipPage.tsx", - "hash": "4157242533682705545" - }, - { - "file": "apps/public-docsite-resources/src/docs/GettingStartedOverview.md", - "hash": "9186252321786039138" - }, - { - "file": "apps/public-docsite-resources/src/index.tsx", - "hash": "15810414772634229766" - }, - { - "file": "apps/public-docsite-resources/src/theme/AppThemes.ts", - "hash": "2651411579354420478" - }, - { - "file": "apps/public-docsite-resources/src/version.ts", - "hash": "3127048310947807269" - }, - { - "file": "apps/public-docsite-resources/tsconfig.json", - "hash": "1759609835745211941" - }, - { - "file": "apps/public-docsite-resources/webpack.config.js", - "hash": "8276713782046820680" - }, - { - "file": "apps/public-docsite-resources/webpack.serve.config.js", - "hash": "16193407125720974232" - } - ], - "@fluentui/react-persona": [ - { - "file": "packages/react-components/react-persona/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-persona/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-persona/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-persona/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-persona/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-persona/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-persona/CHANGELOG.json", - "hash": "5916678123087417001" - }, - { - "file": "packages/react-components/react-persona/CHANGELOG.md", - "hash": "3363492742739613050" - }, - { - "file": "packages/react-components/react-persona/LICENSE", - "hash": "6137498738426131383" - }, - { - "file": "packages/react-components/react-persona/README.md", - "hash": "12675629857136863246" - }, - { - "file": "packages/react-components/react-persona/bundle-size/Persona.fixture.js", - "hash": "15487570408879567833" - }, - { - "file": "packages/react-components/react-persona/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-persona/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-persona/docs/MIGRATION.md", - "hash": "17378712130195637222" - }, - { - "file": "packages/react-components/react-persona/docs/Spec.md", - "hash": "6967437294349522091" - }, - { - "file": "packages/react-components/react-persona/etc/images/anatomy.png", - "hash": "10781667208635285558" - }, - { - "file": "packages/react-components/react-persona/etc/images/avatar.png", - "hash": "9562625475398502185" - }, - { - "file": "packages/react-components/react-persona/etc/images/avatar_badge.png", - "hash": "9338819851581626892" - }, - { - "file": "packages/react-components/react-persona/etc/images/badge.png", - "hash": "17522195762955017669" - }, - { - "file": "packages/react-components/react-persona/etc/images/grid_after.png", - "hash": "6933613033871152976" - }, - { - "file": "packages/react-components/react-persona/etc/images/grid_before.png", - "hash": "13998141908743472922" - }, - { - "file": "packages/react-components/react-persona/etc/images/grid_below.png", - "hash": "3859323812046760721" - }, - { - "file": "packages/react-components/react-persona/etc/react-persona.api.md", - "hash": "14795997154590965053" - }, - { - "file": "packages/react-components/react-persona/jest.config.js", - "hash": "8129347973438031603" - }, - { - "file": "packages/react-components/react-persona/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-persona/package.json", - "hash": "7140288082976502672", - "deps": [ - "@fluentui/react-avatar", - "@fluentui/react-badge", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "@fluentui/react-jsx-runtime", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-persona/project.json", - "hash": "5858224934607894803" - }, - { - "file": "packages/react-components/react-persona/src/Persona.ts", - "hash": "11634239554265983330" - }, - { - "file": "packages/react-components/react-persona/src/components/Persona/Persona.test.tsx", - "hash": "8861398421216942861" - }, - { - "file": "packages/react-components/react-persona/src/components/Persona/Persona.tsx", - "hash": "6767483379236609829" - }, - { - "file": "packages/react-components/react-persona/src/components/Persona/Persona.types.ts", - "hash": "891732937289352445" - }, - { - "file": "packages/react-components/react-persona/src/components/Persona/index.ts", - "hash": "815066361299291068" - }, - { - "file": "packages/react-components/react-persona/src/components/Persona/renderPersona.tsx", - "hash": "12503343474919913859" - }, - { - "file": "packages/react-components/react-persona/src/components/Persona/usePersona.ts", - "hash": "7299955268610853887" - }, - { - "file": "packages/react-components/react-persona/src/components/Persona/usePersonaStyles.styles.ts", - "hash": "13429552607938862653" - }, - { - "file": "packages/react-components/react-persona/src/index.ts", - "hash": "733085347323584427" - }, - { - "file": "packages/react-components/react-persona/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-persona/stories/Persona/PersonaAvatarSize.stories.tsx", - "hash": "7330072247446824330" - }, - { - "file": "packages/react-components/react-persona/stories/Persona/PersonaDefault.stories.tsx", - "hash": "6962823296596584994" - }, - { - "file": "packages/react-components/react-persona/stories/Persona/PersonaDescription.md", - "hash": "2005954066348145499" - }, - { - "file": "packages/react-components/react-persona/stories/Persona/PersonaPresencePreviousBehavior.stories.tsx", - "hash": "7780860207726490895" - }, - { - "file": "packages/react-components/react-persona/stories/Persona/PersonaPresenceSize.stories.tsx", - "hash": "17996713618212360785" - }, - { - "file": "packages/react-components/react-persona/stories/Persona/PersonaTextAlignment.stories.tsx", - "hash": "14036210296442852602" - }, - { - "file": "packages/react-components/react-persona/stories/Persona/PersonaTextPosition.stories.tsx", - "hash": "3716010766339279556" - }, - { - "file": "packages/react-components/react-persona/stories/Persona/index.stories.tsx", - "hash": "11619656050038070907" - }, - { - "file": "packages/react-components/react-persona/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-persona/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-persona/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-utils": [ - { - "file": "scripts/utils/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/utils/jest.config.js", - "hash": "17478340034450362864" - }, - { - "file": "scripts/utils/package.json", - "hash": "542681258199471675" - }, - { - "file": "scripts/utils/project.json", - "hash": "10329661453886386946" - }, - { - "file": "scripts/utils/src/find-config.js", - "hash": "7121643082165988615" - }, - { - "file": "scripts/utils/src/index.d.ts", - "hash": "8147967967359353990" - }, - { - "file": "scripts/utils/src/index.js", - "hash": "16511538452090280361" - }, - { - "file": "scripts/utils/src/logging.js", - "hash": "16191873597712382186" - }, - { - "file": "scripts/utils/src/merge.js", - "hash": "7681850102607767771" - }, - { - "file": "scripts/utils/src/read-config.js", - "hash": "16708908046750970227" - }, - { - "file": "scripts/utils/src/sh.js", - "hash": "13078038786871011385" - }, - { - "file": "scripts/utils/src/write-config.js", - "hash": "14568723559054940193" - }, - { - "file": "scripts/utils/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/utils/tsconfig.lib.json", - "hash": "15222053984038389170" - }, - { - "file": "scripts/utils/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/react-checkbox": [ - { - "file": "packages/react-components/react-checkbox/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-checkbox/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-checkbox/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-checkbox/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-checkbox/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-checkbox/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-checkbox/CHANGELOG.json", - "hash": "6251263507773022820" - }, - { - "file": "packages/react-components/react-checkbox/CHANGELOG.md", - "hash": "1862977653705488160" - }, - { - "file": "packages/react-components/react-checkbox/LICENSE", - "hash": "11993684871533073860" - }, - { - "file": "packages/react-components/react-checkbox/README.md", - "hash": "14475892364465331260" - }, - { - "file": "packages/react-components/react-checkbox/bundle-size/Checkbox.fixture.js", - "hash": "9856851692934806951" - }, - { - "file": "packages/react-components/react-checkbox/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-checkbox/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-checkbox/docs/MIGRATION.md", - "hash": "17821656469887470547" - }, - { - "file": "packages/react-components/react-checkbox/docs/Spec.md", - "hash": "800448152257069737" - }, - { - "file": "packages/react-components/react-checkbox/etc/react-checkbox.api.md", - "hash": "6742814156489691658" - }, - { - "file": "packages/react-components/react-checkbox/jest.config.js", - "hash": "2828201757173184213" - }, - { - "file": "packages/react-components/react-checkbox/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-checkbox/package.json", - "hash": "13472705379965958285", - "deps": [ - "@fluentui/react-field", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-label", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-checkbox/project.json", - "hash": "9606278957344776446" - }, - { - "file": "packages/react-components/react-checkbox/src/Checkbox.ts", - "hash": "15174834295790980707" - }, - { - "file": "packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.test.tsx", - "hash": "8211270012158977067" - }, - { - "file": "packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.tsx", - "hash": "15421247335816478745" - }, - { - "file": "packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.types.ts", - "hash": "7638085825644002506" - }, - { - "file": "packages/react-components/react-checkbox/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap", - "hash": "18216818328841741726" - }, - { - "file": "packages/react-components/react-checkbox/src/components/Checkbox/index.ts", - "hash": "15121887018938208362" - }, - { - "file": "packages/react-components/react-checkbox/src/components/Checkbox/renderCheckbox.tsx", - "hash": "12658297094559328876" - }, - { - "file": "packages/react-components/react-checkbox/src/components/Checkbox/useCheckbox.tsx", - "hash": "17250806306955700270" - }, - { - "file": "packages/react-components/react-checkbox/src/components/Checkbox/useCheckboxStyles.styles.ts", - "hash": "1839450190559183146" - }, - { - "file": "packages/react-components/react-checkbox/src/index.ts", - "hash": "15785934890379634251" - }, - { - "file": "packages/react-components/react-checkbox/src/testing/isConformant.ts", - "hash": "17159661999478583888" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxChecked.stories.tsx", - "hash": "3038686077884136197" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxCircular.stories.tsx", - "hash": "17609452160533925883" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxDefault.stories.tsx", - "hash": "1331911594678712826" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxDisabled.stories.tsx", - "hash": "10626006350267777410" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxLabelBefore.stories.tsx", - "hash": "2830523750214014197" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxLabelWrapping.stories.tsx", - "hash": "10579880296711360605" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxLarge.stories.tsx", - "hash": "12315598358509648828" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxMixed.stories.tsx", - "hash": "16393572027865684906" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/CheckboxRequired.stories.tsx", - "hash": "17304011180749936418" - }, - { - "file": "packages/react-components/react-checkbox/stories/Checkbox/index.stories.tsx", - "hash": "13443276241766089166" - }, - { - "file": "packages/react-components/react-checkbox/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-checkbox/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-checkbox/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-examples": [ - { - "file": "packages/react-examples/.eslintrc.json", - "hash": "1702330080249613942" - }, - { - "file": "packages/react-examples/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/react-examples/.storybook/main.js", - "hash": "14816398585331678918" - }, - { - "file": "packages/react-examples/.storybook/manager.js", - "hash": "10262691162070439084" - }, - { - "file": "packages/react-examples/.storybook/preview-loader.js", - "hash": "11880477845897264629" - }, - { - "file": "packages/react-examples/.storybook/preview.js", - "hash": "285925511367961485" - }, - { - "file": "packages/react-examples/.storybook/tsconfig.json", - "hash": "8998439185517558766" - }, - { - "file": "packages/react-examples/CHANGELOG.json", - "hash": "1657021903900291541" - }, - { - "file": "packages/react-examples/CHANGELOG.md", - "hash": "8540291172350589844" - }, - { - "file": "packages/react-examples/LICENSE", - "hash": "16146362590109763261" - }, - { - "file": "packages/react-examples/README.md", - "hash": "9006185454830750184" - }, - { - "file": "packages/react-examples/cypress.config.ts", - "hash": "14032725885983203266" - }, - { - "file": "packages/react-examples/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-examples/package.json", - "hash": "15873865825890157794", - "deps": [ - "@fluentui/azure-themes", - "@fluentui/date-time-utilities", - "@fluentui/dom-utilities", - "@fluentui/example-data", - "@fluentui/font-icons-mdl2", - "@fluentui/foundation-legacy", - "@fluentui/merge-styles", - "@fluentui/react", - "@fluentui/react-cards", - "@fluentui/react-charting", - "@fluentui/react-docsite-components", - "@fluentui/react-experiments", - "@fluentui/react-file-type-icons", - "@fluentui/react-focus", - "@fluentui/react-hooks", - "@fluentui/react-icons-mdl2", - "@fluentui/scheme-utilities", - "@fluentui/style-utilities", - "@fluentui/theme", - "@fluentui/theme-samples", - "@fluentui/utilities", - "npm:@microsoft/load-themed-styles", - "npm:d3-fetch", - "npm:d3-format", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/storybook", - "npm:@types/d3-format", - "npm:@types/d3-fetch", - "@fluentui/scripts-webpack", - "@fluentui/scripts-cypress", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/react-examples/project.json", - "hash": "9649139128656182995" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/Themes/Themes.stories.tsx", - "hash": "2125217204908134883" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/CalendarInlineMultidayDayView.stories.tsx", - "hash": "9777485459679979455" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/ContextMenu.stories.tsx", - "hash": "11906792680589086576" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/DetailsListCustomColumnsExample.stories.tsx", - "hash": "1526604806666311017" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/Pivots.stories.tsx", - "hash": "8505117310795656110" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/ProgressIndicator.stories.tsx", - "hash": "7878042562887496662" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/SpinButton.stories.tsx", - "hash": "9644363006615395796" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/TeachingBubble.stories.tsx", - "hash": "6363913365421312335" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/actionButton.stories.tsx", - "hash": "2943437613734380711" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx", - "hash": "15773176792318513295" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/activityitempersonas.stories.tsx", - "hash": "17493377115708891980" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/buttonToggle.stories.tsx", - "hash": "13322041471963459713" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/callout.stories.tsx", - "hash": "12572487828916593340" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/choiceGroupWithImagesandIcons.stories.tsx", - "hash": "11988481674102576150" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/choicegroup.stories.tsx", - "hash": "1830356398977442236" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/colorpicker.stories.tsx", - "hash": "17135174824570336702" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/comboBox.stories.tsx", - "hash": "11774074986199852070" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/commandBar.stories.tsx", - "hash": "18251599124601402250" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/commandBarButton.stories.tsx", - "hash": "7982136203595322144" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/contextualMenu.stories.tsx", - "hash": "9107686953554100721" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/dateBoundary.stories.tsx", - "hash": "13784003701073842051" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/defaultDatePicker.tsx", - "hash": "12667593297047487456" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/detailsList.stories.tsx", - "hash": "9912609037404072743" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/dropdown.stories.tsx", - "hash": "10420437495479310291" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/iconButton.stories.tsx", - "hash": "3357533028131049247" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/iconTooltip.stories.tsx", - "hash": "5754928710161508947" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/messageBar.stories.tsx", - "hash": "16203732642630267765" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/slider.stories.tsx", - "hash": "14770656390957719230" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/spinner.stories.tsx", - "hash": "5676613769831055307" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/splitButton.stories.tsx", - "hash": "13342035394552227782" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/tags.stories.tsx", - "hash": "3454619756727937887" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/toggle.stories.tsx", - "hash": "3283213291269405540" - }, - { - "file": "packages/react-examples/src/azure-themes/stories/components/tooltip.stories.tsx", - "hash": "10393279098064559619" - }, - { - "file": "packages/react-examples/src/react/ActivityItem/ActivityItem.Basic.Example.tsx", - "hash": "13914346728006709604" - }, - { - "file": "packages/react-examples/src/react/ActivityItem/ActivityItem.Compact.Example.tsx", - "hash": "10799670486824503656" - }, - { - "file": "packages/react-examples/src/react/ActivityItem/ActivityItem.Persona.Example.tsx", - "hash": "4530460165784137223" - }, - { - "file": "packages/react-examples/src/react/ActivityItem/ActivityItem.doc.tsx", - "hash": "18382057917831206852" - }, - { - "file": "packages/react-examples/src/react/ActivityItem/docs/ActivityItemBestPractices.md", - "hash": "14641514549794392494" - }, - { - "file": "packages/react-examples/src/react/ActivityItem/docs/ActivityItemOverview.md", - "hash": "13943306819186175577" - }, - { - "file": "packages/react-examples/src/react/Announced/Announced.BulkOperations.Example.tsx", - "hash": "723390365406397872" - }, - { - "file": "packages/react-examples/src/react/Announced/Announced.LazyLoading.Example.tsx", - "hash": "5721743437762442725" - }, - { - "file": "packages/react-examples/src/react/Announced/Announced.QuickActions.Example.tsx", - "hash": "13040897774565725346" - }, - { - "file": "packages/react-examples/src/react/Announced/Announced.SearchResults.Example.tsx", - "hash": "8593960476119642725" - }, - { - "file": "packages/react-examples/src/react/Announced/Announced.doc.tsx", - "hash": "13290861637697161815" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/AnnouncedOverview.md", - "hash": "7286146550152171442" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/Asynchronous/Donts.md", - "hash": "10308843472612849527" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/Asynchronous/Dos.md", - "hash": "8151809050993285928" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/Asynchronous/Overview.md", - "hash": "17122414855820838170" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/BulkLongRunning/Donts.md", - "hash": "3313655889678117965" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/BulkLongRunning/Dos.md", - "hash": "5257417610796255358" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/BulkLongRunning/Overview.md", - "hash": "13728180440979579656" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/QuickActions/Donts.md", - "hash": "3921478636485365154" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/QuickActions/Dos.md", - "hash": "15174421481868869367" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/QuickActions/Overview.md", - "hash": "15688976934623723027" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/SearchResults/Donts.md", - "hash": "7961540872895838551" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/SearchResults/Dos.md", - "hash": "14589829831559595933" - }, - { - "file": "packages/react-examples/src/react/Announced/docs/SearchResults/Overview.md", - "hash": "15600377904142434146" - }, - { - "file": "packages/react-examples/src/react/Breadcrumb/Breadcrumb.Basic.Example.tsx", - "hash": "3179480932676095995" - }, - { - "file": "packages/react-examples/src/react/Breadcrumb/Breadcrumb.Collapsing.Example.tsx", - "hash": "12999198751733228695" - }, - { - "file": "packages/react-examples/src/react/Breadcrumb/Breadcrumb.Static.Example.tsx", - "hash": "16266848918167291560" - }, - { - "file": "packages/react-examples/src/react/Breadcrumb/Breadcrumb.doc.tsx", - "hash": "1036348250448252175" - }, - { - "file": "packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbBestPractices.md", - "hash": "13343729804615205774" - }, - { - "file": "packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbDonts.md", - "hash": "15126643046228785634" - }, - { - "file": "packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbDos.md", - "hash": "9779072492094064773" - }, - { - "file": "packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbOverview.md", - "hash": "18079527568158322334" - }, - { - "file": "packages/react-examples/src/react/Button/Button.Action.Example.tsx", - "hash": "17593143648911728928" - }, - { - "file": "packages/react-examples/src/react/Button/Button.Anchor.Example.tsx", - "hash": "10364344687196047790" - }, - { - "file": "packages/react-examples/src/react/Button/Button.Command.Example.tsx", - "hash": "17701013651033269340" - }, - { - "file": "packages/react-examples/src/react/Button/Button.CommandBar.Example.tsx", - "hash": "2442938012510837186" - }, - { - "file": "packages/react-examples/src/react/Button/Button.Compound.Example.tsx", - "hash": "10064596175304087228" - }, - { - "file": "packages/react-examples/src/react/Button/Button.ContextualMenu.Example.tsx", - "hash": "2327815820929103506" - }, - { - "file": "packages/react-examples/src/react/Button/Button.CustomSplit.Example.tsx", - "hash": "3510559926954356307" - }, - { - "file": "packages/react-examples/src/react/Button/Button.Default.Example.tsx", - "hash": "15170870096351325084" - }, - { - "file": "packages/react-examples/src/react/Button/Button.Icon.Example.tsx", - "hash": "16864707904196884373" - }, - { - "file": "packages/react-examples/src/react/Button/Button.IconWithTooltip.Example.tsx", - "hash": "5856918498084472394" - }, - { - "file": "packages/react-examples/src/react/Button/Button.Split.Example.tsx", - "hash": "6443594856225278219" - }, - { - "file": "packages/react-examples/src/react/Button/Button.Toggle.Example.tsx", - "hash": "11273168701657466174" - }, - { - "file": "packages/react-examples/src/react/Button/Button.doc.tsx", - "hash": "14798888054962382957" - }, - { - "file": "packages/react-examples/src/react/Button/docs/ButtonBestPractices.md", - "hash": "8262488791457160795" - }, - { - "file": "packages/react-examples/src/react/Button/docs/ButtonOverview.md", - "hash": "15025314181002136189" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Button.Example.tsx", - "hash": "11670713828649373426" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.ContiguousWorkWeekDays.Example.tsx", - "hash": "6025642632513182041" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.CustomDayCellRef.Example.tsx", - "hash": "10101935902661584177" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.DateBoundaries.Example.tsx", - "hash": "14122370693085520131" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.Example.tsx", - "hash": "5895412511470144388" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.MarkedDays.Example.tsx", - "hash": "7115975224915797628" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.MonthOnly.Example.tsx", - "hash": "7514301355919486445" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.MonthSelection.Example.tsx", - "hash": "12194911337183155096" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.MultidayDayView.Example.tsx", - "hash": "9777485459679979455" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.NonContiguousWorkWeekDays.Example.tsx", - "hash": "16739657324829049689" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.OverlaidMonthPicker.Example.tsx", - "hash": "8598152411539421499" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.SixWeeks.tsx", - "hash": "9814512951353916548" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.WeekNumbers.Example.tsx", - "hash": "2353257937602785635" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.Inline.WeekSelection.Example.tsx", - "hash": "711746990858717859" - }, - { - "file": "packages/react-examples/src/react/Calendar/Calendar.doc.tsx", - "hash": "5098259750648110690" - }, - { - "file": "packages/react-examples/src/react/Calendar/docs/CalendarBestPractices.md", - "hash": "1724779152274891464" - }, - { - "file": "packages/react-examples/src/react/Calendar/docs/CalendarOverview.md", - "hash": "621070059803414892" - }, - { - "file": "packages/react-examples/src/react/Callout/Callout.Basic.Example.tsx", - "hash": "10375834041956947410" - }, - { - "file": "packages/react-examples/src/react/Callout/Callout.Cover.Example.tsx", - "hash": "13961468534046685528" - }, - { - "file": "packages/react-examples/src/react/Callout/Callout.Directional.Example.tsx", - "hash": "4473873551862082509" - }, - { - "file": "packages/react-examples/src/react/Callout/Callout.FocusTrap.Example.tsx", - "hash": "5386241572332227912" - }, - { - "file": "packages/react-examples/src/react/Callout/Callout.Status.Example.tsx", - "hash": "4084051320422216883" - }, - { - "file": "packages/react-examples/src/react/Callout/Callout.doc.tsx", - "hash": "6417004314429107130" - }, - { - "file": "packages/react-examples/src/react/Callout/docs/CalloutBestPractices.md", - "hash": "240584423619826575" - }, - { - "file": "packages/react-examples/src/react/Callout/docs/CalloutOverview.md", - "hash": "1386018283761269927" - }, - { - "file": "packages/react-examples/src/react/Checkbox/Checkbox.Basic.Example.tsx", - "hash": "16088471200763141215" - }, - { - "file": "packages/react-examples/src/react/Checkbox/Checkbox.Indeterminate.Example.tsx", - "hash": "2573388622640783503" - }, - { - "file": "packages/react-examples/src/react/Checkbox/Checkbox.Other.Example.tsx", - "hash": "17065609027463333266" - }, - { - "file": "packages/react-examples/src/react/Checkbox/Checkbox.doc.tsx", - "hash": "7637244348529120014" - }, - { - "file": "packages/react-examples/src/react/Checkbox/docs/CheckboxBestPractices.md", - "hash": "17643376500449998917" - }, - { - "file": "packages/react-examples/src/react/Checkbox/docs/CheckboxOverview.md", - "hash": "6127085583634782780" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Basic.Example.tsx", - "hash": "1830356398977442236" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Controlled.Example.tsx", - "hash": "13372284433648480700" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Custom.Example.tsx", - "hash": "6563198185507424076" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Icon.Example.tsx", - "hash": "11509984463129156349" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Image.Example.tsx", - "hash": "9440296067970459789" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Label.Example.tsx", - "hash": "3118031141092502161" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.doc.tsx", - "hash": "10803705851408154810" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/docs/ChoiceGroupBestPractices.md", - "hash": "6729357172259799389" - }, - { - "file": "packages/react-examples/src/react/ChoiceGroup/docs/ChoiceGroupOverview.md", - "hash": "13427093563652446624" - }, - { - "file": "packages/react-examples/src/react/Coachmark/Coachmark.Basic.Example.tsx", - "hash": "8115923272607319524" - }, - { - "file": "packages/react-examples/src/react/Coachmark/Coachmark.doc.tsx", - "hash": "2170188443948751602" - }, - { - "file": "packages/react-examples/src/react/Coachmark/docs/CoachmarkBestPractices.md", - "hash": "3542754544981209669" - }, - { - "file": "packages/react-examples/src/react/Coachmark/docs/CoachmarkOverview.md", - "hash": "8005866302720607190" - }, - { - "file": "packages/react-examples/src/react/ColorPicker/ColorPicker.Basic.Example.tsx", - "hash": "10522614933577852925" - }, - { - "file": "packages/react-examples/src/react/ColorPicker/ColorPicker.doc.tsx", - "hash": "12006933118369254888" - }, - { - "file": "packages/react-examples/src/react/ColorPicker/docs/ColorPickerBestPractices.md", - "hash": "3795548029277003302" - }, - { - "file": "packages/react-examples/src/react/ColorPicker/docs/ColorPickerOverview.md", - "hash": "3453145954457329699" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.Basic.Example.tsx", - "hash": "7502722137008929143" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.Controlled.Example.tsx", - "hash": "14501769400595421085" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.ControlledMulti.Example.tsx", - "hash": "16765727178232050486" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.CustomStyled.Example.tsx", - "hash": "5820589524560737520" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.ErrorHandling.Example.tsx", - "hash": "13622785407850884952" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.FreeInput.Example.tsx", - "hash": "4208904628665600564" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.Inline.Example.tsx", - "hash": "2616579794797596961" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.SelectAll.Example.tsx", - "hash": "5983196249930964714" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.Toggles.Example.tsx", - "hash": "2377940844185308494" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.Virtualized.Example.tsx", - "hash": "365148847710436100" - }, - { - "file": "packages/react-examples/src/react/ComboBox/ComboBox.doc.tsx", - "hash": "357185813601538313" - }, - { - "file": "packages/react-examples/src/react/ComboBox/docs/ComboBoxBestPractices.md", - "hash": "17035604686479250820" - }, - { - "file": "packages/react-examples/src/react/ComboBox/docs/ComboBoxOverview.md", - "hash": "9370671476619575997" - }, - { - "file": "packages/react-examples/src/react/CommandBar/CommandBar.Basic.Example.tsx", - "hash": "17066427437658259595" - }, - { - "file": "packages/react-examples/src/react/CommandBar/CommandBar.ButtonAs.Example.tsx", - "hash": "5837946070733281923" - }, - { - "file": "packages/react-examples/src/react/CommandBar/CommandBar.CommandBarButtonAs.Example.tsx", - "hash": "14239124937065302117" - }, - { - "file": "packages/react-examples/src/react/CommandBar/CommandBar.Lazy.Example.tsx", - "hash": "17807876090463777179" - }, - { - "file": "packages/react-examples/src/react/CommandBar/CommandBar.SplitDisabled.Example.tsx", - "hash": "7982136203595322144" - }, - { - "file": "packages/react-examples/src/react/CommandBar/CommandBar.doc.tsx", - "hash": "1658365400337715044" - }, - { - "file": "packages/react-examples/src/react/CommandBar/docs/CommandBarBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/CommandBar/docs/CommandBarDonts.md", - "hash": "2936847419132216345" - }, - { - "file": "packages/react-examples/src/react/CommandBar/docs/CommandBarDos.md", - "hash": "8038266723043974091" - }, - { - "file": "packages/react-examples/src/react/CommandBar/docs/CommandBarOverview.md", - "hash": "12433928073671197593" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Basic.Example.tsx", - "hash": "15024050478757158039" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Checkmarks.Example.tsx", - "hash": "14515122039023548947" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomMenuItem.Example.tsx", - "hash": "15406133367855884805" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomMenuList.Example.tsx", - "hash": "18080008874280316465" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Customization.Example.tsx", - "hash": "10303354487583732973" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomizationWithNoWrap.Example.tsx", - "hash": "7575207669815626429" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Default.Example.tsx", - "hash": "1530319152823290747" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Directional.Example.tsx", - "hash": "15516342593661369094" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Header.Example.tsx", - "hash": "8334550483772262315" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.CustomLayout.Example.tsx", - "hash": "13454632454935162608" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.Example.tsx", - "hash": "6142740927821312183" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.SecondaryText.Example.tsx", - "hash": "5961826317856918036" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Persisted.Example.tsx", - "hash": "8213806715052253524" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.ScreenReader.Example.tsx", - "hash": "10697606395198110360" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.ScrollBar.Example.tsx", - "hash": "1722708791515401786" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Section.Example.tsx", - "hash": "18436301671278993690" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.Submenu.Example.tsx", - "hash": "9533551810157961455" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/ContextualMenu.doc.tsx", - "hash": "14800238289383689439" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/docs/ContextualMenuBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/ContextualMenu/docs/ContextualMenuOverview.md", - "hash": "12656464994679017844" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.Basic.Example.tsx", - "hash": "6549048858535079254" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.Bounded.Example.tsx", - "hash": "945690607138379041" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.Disabled.Example.tsx", - "hash": "7852459322286540417" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.ExternalControls.Example.tsx", - "hash": "2929655713090247834" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.Format.Example.tsx", - "hash": "4800851782533937854" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.Input.Example.tsx", - "hash": "17862152781842630711" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.Required.Example.tsx", - "hash": "1199588964446882734" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.WeekNumbers.Example.tsx", - "hash": "455026032289058001" - }, - { - "file": "packages/react-examples/src/react/DatePicker/DatePicker.doc.tsx", - "hash": "9390102577745904173" - }, - { - "file": "packages/react-examples/src/react/DatePicker/docs/DatePickerBestPractices.md", - "hash": "6027517843294263285" - }, - { - "file": "packages/react-examples/src/react/DatePicker/docs/DatePickerOverview.md", - "hash": "16501907132069119744" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.Advanced.Example.tsx", - "hash": "10936658170286572027" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.Animation.Example.tsx", - "hash": "12952134854918913476" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.Basic.Example.tsx", - "hash": "12601034262536179240" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.ColumnResize.Example.tsx", - "hash": "7933016525740133567" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.Compact.Example.tsx", - "hash": "17284966156754520880" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.CustomColumns.Example.tsx", - "hash": "15299506464582400188" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.CustomFooter.Example.tsx", - "hash": "5723594411723316360" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.CustomGroupHeaders.Example.tsx", - "hash": "17474804655111743620" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.CustomRows.Example.tsx", - "hash": "17718844388107480115" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.Documents.Example.tsx", - "hash": "16360957095806271966" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.DragDrop.Example.tsx", - "hash": "13225220291514927647" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.Grouped.Example.tsx", - "hash": "15295013036594439238" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.Grouped.Large.Example.tsx", - "hash": "9002360090695420523" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.Example.tsx", - "hash": "7191711872095586308" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.Large.Example.tsx", - "hash": "13050903748181177330" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.ScrollToIndex.Example.tsx", - "hash": "3810081735068958509" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.KeyboardAccessibleResizeAndReorder.Example.tsx", - "hash": "12957527607896668759" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.KeyboardOverrides.Example.tsx", - "hash": "1988461786659592263" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.NavigatingFocus.Example.tsx", - "hash": "10665961175021256090" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.OnRender.Example.tsx", - "hash": "2862235458283001317" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.ProportionalColumns.Example.tsx", - "hash": "3643204862810472365" - }, - { - "file": "packages/react-examples/src/react/DetailsList/DetailsList.doc.tsx", - "hash": "17139182265007990631" - }, - { - "file": "packages/react-examples/src/react/DetailsList/docs/DetailsListBestPractices.md", - "hash": "14636184564336669454" - }, - { - "file": "packages/react-examples/src/react/DetailsList/docs/DetailsListOverview.md", - "hash": "11157854257701048090" - }, - { - "file": "packages/react-examples/src/react/Dialog/Dialog.Basic.Example.tsx", - "hash": "14926128857017700522" - }, - { - "file": "packages/react-examples/src/react/Dialog/Dialog.Blocking.Example.tsx", - "hash": "119258777603234032" - }, - { - "file": "packages/react-examples/src/react/Dialog/Dialog.LargeHeader.Example.tsx", - "hash": "12232932083852256459" - }, - { - "file": "packages/react-examples/src/react/Dialog/Dialog.Modeless.Example.tsx", - "hash": "9025354215202154957" - }, - { - "file": "packages/react-examples/src/react/Dialog/Dialog.TopOffsetFixed.Example.tsx", - "hash": "13790338846169811872" - }, - { - "file": "packages/react-examples/src/react/Dialog/Dialog.doc.tsx", - "hash": "2269612876944993533" - }, - { - "file": "packages/react-examples/src/react/Dialog/docs/DialogBestPractices.md", - "hash": "11907210801286321316" - }, - { - "file": "packages/react-examples/src/react/Dialog/docs/DialogOverview.md", - "hash": "3268738518893757993" - }, - { - "file": "packages/react-examples/src/react/Divider/Divider.doc.tsx", - "hash": "1350864656580636149" - }, - { - "file": "packages/react-examples/src/react/Divider/VerticalDivider.Basic.Example.tsx", - "hash": "3257087342624713968" - }, - { - "file": "packages/react-examples/src/react/Divider/VerticalDivider.Custom.Example.tsx", - "hash": "7108559914889829781" - }, - { - "file": "packages/react-examples/src/react/Divider/docs/DividerBestPractices.md", - "hash": "11242884916003164840" - }, - { - "file": "packages/react-examples/src/react/Divider/docs/DividerDonts.md", - "hash": "13755611818631916263" - }, - { - "file": "packages/react-examples/src/react/Divider/docs/DividerDos.md", - "hash": "14635313222160471004" - }, - { - "file": "packages/react-examples/src/react/Divider/docs/DividerOverview.md", - "hash": "10876792181377551346" - }, - { - "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Basic.Example.tsx", - "hash": "3873407903814701928" - }, - { - "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Compact.Example.tsx", - "hash": "7410695870915872714" - }, - { - "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Complete.Example.tsx", - "hash": "14950282326681339256" - }, - { - "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Conversation.Example.tsx", - "hash": "7359603887504081024" - }, - { - "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.Image.Example.tsx", - "hash": "12288266672582981378" - }, - { - "file": "packages/react-examples/src/react/DocumentCard/DocumentCard.doc.tsx", - "hash": "6543750251896297702" - }, - { - "file": "packages/react-examples/src/react/DocumentCard/docs/DocumentCardBestPractices.md", - "hash": "18440794351515262745" - }, - { - "file": "packages/react-examples/src/react/DocumentCard/docs/DocumentCardOverview.md", - "hash": "16511513555890905893" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.Basic.Example.tsx", - "hash": "9014889844532656913" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.Controlled.Example.tsx", - "hash": "9831538055339985201" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.ControlledMulti.Example.tsx", - "hash": "17207319378954556138" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.Custom.Example.tsx", - "hash": "7423142535989082375" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.Error.Example.tsx", - "hash": "18282001024220261190" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.Required.Example.tsx", - "hash": "169052893274483609" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.SelectStyle.Example.tsx", - "hash": "15296133929690564301" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.Wrapping.Example.tsx", - "hash": "11743290379097092920" - }, - { - "file": "packages/react-examples/src/react/Dropdown/Dropdown.doc.tsx", - "hash": "9086926411011225144" - }, - { - "file": "packages/react-examples/src/react/Dropdown/docs/DropdownBestPractices.md", - "hash": "6884534436204458575" - }, - { - "file": "packages/react-examples/src/react/Dropdown/docs/DropdownOverview.md", - "hash": "1588924648391255177" - }, - { - "file": "packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.Basic.Example.tsx", - "hash": "5193709435476630783" - }, - { - "file": "packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.Controlled.Example.tsx", - "hash": "12108009187713968836" - }, - { - "file": "packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.doc.tsx", - "hash": "9397038313871032020" - }, - { - "file": "packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerBestPractices.md", - "hash": "17994737321331640608" - }, - { - "file": "packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerDonts.md", - "hash": "13761658156329873951" - }, - { - "file": "packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerDos.md", - "hash": "2988442599845077013" - }, - { - "file": "packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerOverview.md", - "hash": "7342423013769981200" - }, - { - "file": "packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.Basic.Example.tsx", - "hash": "802101070041496746" - }, - { - "file": "packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.Controlled.Example.tsx", - "hash": "2701111392899146044" - }, - { - "file": "packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.doc.tsx", - "hash": "9904931083626785664" - }, - { - "file": "packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerBestPractices.md", - "hash": "17994737321331640608" - }, - { - "file": "packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerDonts.md", - "hash": "13761658156329873951" - }, - { - "file": "packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerDos.md", - "hash": "2988442599845077013" - }, - { - "file": "packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerOverview.md", - "hash": "7342423013769981200" - }, - { - "file": "packages/react-examples/src/react/Facepile/Facepile.AddFace.Example.tsx", - "hash": "3378218549063950791" - }, - { - "file": "packages/react-examples/src/react/Facepile/Facepile.Basic.Example.tsx", - "hash": "10441413266599899897" - }, - { - "file": "packages/react-examples/src/react/Facepile/Facepile.Overflow.Example.tsx", - "hash": "7638052892921375329" - }, - { - "file": "packages/react-examples/src/react/Facepile/Facepile.doc.tsx", - "hash": "11908784292302046334" - }, - { - "file": "packages/react-examples/src/react/Facepile/docs/FacepileBestPractices.md", - "hash": "3422765395890976172" - }, - { - "file": "packages/react-examples/src/react/Facepile/docs/FacepileOverview.md", - "hash": "9798433928308762020" - }, - { - "file": "packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.Basic.Example.tsx", - "hash": "12622245239280094415" - }, - { - "file": "packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.SelectableFooter.Example.tsx", - "hash": "123789111774379882" - }, - { - "file": "packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.doc.tsx", - "hash": "14963739742697498603" - }, - { - "file": "packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerBestPractices.md", - "hash": "15181747479013544023" - }, - { - "file": "packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerDonts.md", - "hash": "5113401384613823537" - }, - { - "file": "packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerDos.md", - "hash": "15524347270405680831" - }, - { - "file": "packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerOverview.md", - "hash": "6547824185873455057" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.Click.Example.tsx", - "hash": "257684823259240373" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.Example.tsx", - "hash": "4891878368416196997" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.FocusOnCustomElement.Example.tsx", - "hash": "8218921500198309959" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.DialogInPanel.Example.tsx", - "hash": "8454932298771962096" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.FocusZone.Example.tsx", - "hash": "13002184895825458792" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Nested.Example.tsx", - "hash": "7467898439076848824" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.doc.tsx", - "hash": "10554829977581816321" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/docs/FocusTrapZoneBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/docs/FocusTrapZoneOverview.md", - "hash": "16489263610855687923" - }, - { - "file": "packages/react-examples/src/react/FocusTrapZone/e2e/FocusTrapZone.e2e.tsx", - "hash": "2315340949449524344" - }, - { - "file": "packages/react-examples/src/react/GroupedList/GroupedList.Basic.Example.tsx", - "hash": "3068219762651657477" - }, - { - "file": "packages/react-examples/src/react/GroupedList/GroupedList.Custom.Example.tsx", - "hash": "5036102286324939709" - }, - { - "file": "packages/react-examples/src/react/GroupedList/GroupedList.CustomCheckbox.Example.tsx", - "hash": "3409300813165441827" - }, - { - "file": "packages/react-examples/src/react/GroupedList/GroupedList.doc.tsx", - "hash": "13027056762316810629" - }, - { - "file": "packages/react-examples/src/react/GroupedList/GroupedListV2.Basic.Example.tsx", - "hash": "6877910189807441405" - }, - { - "file": "packages/react-examples/src/react/GroupedList/GroupedListV2.Custom.Example.tsx", - "hash": "6166019240691139606" - }, - { - "file": "packages/react-examples/src/react/GroupedList/GroupedListV2.CustomCheckbox.Example.tsx", - "hash": "7013803679530459064" - }, - { - "file": "packages/react-examples/src/react/GroupedList/docs/GroupedListBestPractices.md", - "hash": "4396915049264391582" - }, - { - "file": "packages/react-examples/src/react/GroupedList/docs/GroupedListOverview.md", - "hash": "17801108937409570084" - }, - { - "file": "packages/react-examples/src/react/HoverCard/HoverCard.Basic.Example.tsx", - "hash": "15689722060711630441" - }, - { - "file": "packages/react-examples/src/react/HoverCard/HoverCard.EventListenerTarget.Example.tsx", - "hash": "1184877838989704587" - }, - { - "file": "packages/react-examples/src/react/HoverCard/HoverCard.InstantDismiss.Example.tsx", - "hash": "4282847255970339858" - }, - { - "file": "packages/react-examples/src/react/HoverCard/HoverCard.PlainCard.Example.tsx", - "hash": "17731134095378448713" - }, - { - "file": "packages/react-examples/src/react/HoverCard/HoverCard.Target.Example.tsx", - "hash": "8142630273180268427" - }, - { - "file": "packages/react-examples/src/react/HoverCard/HoverCard.doc.tsx", - "hash": "17447330564499037589" - }, - { - "file": "packages/react-examples/src/react/HoverCard/docs/HoverCardBestPractices.md", - "hash": "6402841024745661251" - }, - { - "file": "packages/react-examples/src/react/HoverCard/docs/HoverCardDonts.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/HoverCard/docs/HoverCardDos.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/HoverCard/docs/HoverCardOverview.md", - "hash": "1328985595064008706" - }, - { - "file": "packages/react-examples/src/react/Icon/Icon.Basic.Example.tsx", - "hash": "17984128308105474954" - }, - { - "file": "packages/react-examples/src/react/Icon/Icon.Color.Example.tsx", - "hash": "16645252243482480020" - }, - { - "file": "packages/react-examples/src/react/Icon/Icon.ImageSheet.Example.tsx", - "hash": "12417527067508713040" - }, - { - "file": "packages/react-examples/src/react/Icon/Icon.Svg.Example.tsx", - "hash": "9804999214021296737" - }, - { - "file": "packages/react-examples/src/react/Icon/Icon.SvgFactory.Example.tsx", - "hash": "12995738621667765130" - }, - { - "file": "packages/react-examples/src/react/Icon/Icon.doc.tsx", - "hash": "9600632903019317388" - }, - { - "file": "packages/react-examples/src/react/Icon/docs/IconBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Icon/docs/IconDonts.md", - "hash": "15344252599448800187" - }, - { - "file": "packages/react-examples/src/react/Icon/docs/IconDos.md", - "hash": "15524612824331846611" - }, - { - "file": "packages/react-examples/src/react/Icon/docs/IconOverview.md", - "hash": "14232662465928493194" - }, - { - "file": "packages/react-examples/src/react/Image/Image.Center.Example.tsx", - "hash": "13688308880362680216" - }, - { - "file": "packages/react-examples/src/react/Image/Image.CenterContain.Example.tsx", - "hash": "15537033815011706562" - }, - { - "file": "packages/react-examples/src/react/Image/Image.CenterCover.Example.tsx", - "hash": "16676516025593185140" - }, - { - "file": "packages/react-examples/src/react/Image/Image.Contain.Example.tsx", - "hash": "3464235972853729614" - }, - { - "file": "packages/react-examples/src/react/Image/Image.Cover.Example.tsx", - "hash": "14128222888645305083" - }, - { - "file": "packages/react-examples/src/react/Image/Image.Default.Example.tsx", - "hash": "16195834891851780437" - }, - { - "file": "packages/react-examples/src/react/Image/Image.MaximizeFrame.Example.tsx", - "hash": "1849642479791586733" - }, - { - "file": "packages/react-examples/src/react/Image/Image.None.Example.tsx", - "hash": "310091402227357972" - }, - { - "file": "packages/react-examples/src/react/Image/Image.doc.tsx", - "hash": "16404311410705072998" - }, - { - "file": "packages/react-examples/src/react/Image/docs/ImageBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Image/docs/ImageDonts.md", - "hash": "13782942017733195935" - }, - { - "file": "packages/react-examples/src/react/Image/docs/ImageDos.md", - "hash": "15316394944600606401" - }, - { - "file": "packages/react-examples/src/react/Image/docs/ImageOverview.md", - "hash": "9859623914128876128" - }, - { - "file": "packages/react-examples/src/react/Keytip/KeytipSetup.ts", - "hash": "11317631626897306946" - }, - { - "file": "packages/react-examples/src/react/Keytip/Keytips.Basic.Example.tsx", - "hash": "6640280617156300280" - }, - { - "file": "packages/react-examples/src/react/Keytip/Keytips.Button.Example.tsx", - "hash": "16592718340595109676" - }, - { - "file": "packages/react-examples/src/react/Keytip/Keytips.CommandBar.Example.tsx", - "hash": "6426746182364253601" - }, - { - "file": "packages/react-examples/src/react/Keytip/Keytips.Dynamic.Example.tsx", - "hash": "3832300351857332106" - }, - { - "file": "packages/react-examples/src/react/Keytip/Keytips.Overflow.Example.tsx", - "hash": "7360673924545900757" - }, - { - "file": "packages/react-examples/src/react/Keytip/Keytips.doc.tsx", - "hash": "13060212283774655089" - }, - { - "file": "packages/react-examples/src/react/Keytip/docs/KeytipBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Keytip/docs/KeytipDonts.md", - "hash": "7427975219778042435" - }, - { - "file": "packages/react-examples/src/react/Keytip/docs/KeytipDos.md", - "hash": "16533272425370690610" - }, - { - "file": "packages/react-examples/src/react/Keytip/docs/KeytipOverview.md", - "hash": "5466366661710388407" - }, - { - "file": "packages/react-examples/src/react/Label/Label.Basic.Example.tsx", - "hash": "3115439932532188730" - }, - { - "file": "packages/react-examples/src/react/Label/Label.doc.tsx", - "hash": "13629702760836766009" - }, - { - "file": "packages/react-examples/src/react/Label/docs/LabelBestPractices.md", - "hash": "2651885143282491468" - }, - { - "file": "packages/react-examples/src/react/Label/docs/LabelOverview.md", - "hash": "12429300776760883752" - }, - { - "file": "packages/react-examples/src/react/Layer/Layer.Basic.Example.tsx", - "hash": "12030336442605652258" - }, - { - "file": "packages/react-examples/src/react/Layer/Layer.Customized.Example.tsx", - "hash": "11956652046660618414" - }, - { - "file": "packages/react-examples/src/react/Layer/Layer.Hosted.Example.tsx", - "hash": "10293813580636768822" - }, - { - "file": "packages/react-examples/src/react/Layer/Layer.NestedLayers.Example.tsx", - "hash": "10313887427342640125" - }, - { - "file": "packages/react-examples/src/react/Layer/Layer.doc.tsx", - "hash": "15060647147787646094" - }, - { - "file": "packages/react-examples/src/react/Layer/docs/LayerBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Layer/docs/LayerDonts.md", - "hash": "14968157154523423" - }, - { - "file": "packages/react-examples/src/react/Layer/docs/LayerDos.md", - "hash": "3762722919646391153" - }, - { - "file": "packages/react-examples/src/react/Layer/docs/LayerOverview.md", - "hash": "8188173414299539873" - }, - { - "file": "packages/react-examples/src/react/Link/Link.Basic.Example.tsx", - "hash": "9677832399895249361" - }, - { - "file": "packages/react-examples/src/react/Link/Link.doc.tsx", - "hash": "4750051426322737107" - }, - { - "file": "packages/react-examples/src/react/Link/docs/LinkBestPractices.md", - "hash": "2033998257774753154" - }, - { - "file": "packages/react-examples/src/react/Link/docs/LinkOverview.md", - "hash": "8574338900119621794" - }, - { - "file": "packages/react-examples/src/react/List/List.Basic.Example.tsx", - "hash": "15939721599071437024" - }, - { - "file": "packages/react-examples/src/react/List/List.Ghosting.Example.tsx", - "hash": "17859063248793674054" - }, - { - "file": "packages/react-examples/src/react/List/List.Grid.Example.tsx", - "hash": "10849003690715510287" - }, - { - "file": "packages/react-examples/src/react/List/List.Scrolling.Example.tsx", - "hash": "15072124581431867101" - }, - { - "file": "packages/react-examples/src/react/List/List.doc.tsx", - "hash": "6049496841500809671" - }, - { - "file": "packages/react-examples/src/react/List/docs/ListBestPractices.md", - "hash": "906673786462981672" - }, - { - "file": "packages/react-examples/src/react/List/docs/ListOverview.md", - "hash": "7235412708700446784" - }, - { - "file": "packages/react-examples/src/react/MarqueeSelection/MarqueeSelection.Basic.Example.tsx", - "hash": "8571825305728269079" - }, - { - "file": "packages/react-examples/src/react/MarqueeSelection/MarqueeSelection.doc.tsx", - "hash": "3267846887614393481" - }, - { - "file": "packages/react-examples/src/react/MarqueeSelection/docs/MarqueeSelectionBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/MarqueeSelection/docs/MarqueeSelectionOverview.md", - "hash": "9757531769826842687" - }, - { - "file": "packages/react-examples/src/react/MessageBar/MessageBar.Basic.Example.tsx", - "hash": "9255977763381882612" - }, - { - "file": "packages/react-examples/src/react/MessageBar/MessageBar.NoDelay.Example.tsx", - "hash": "8419449418470358759" - }, - { - "file": "packages/react-examples/src/react/MessageBar/MessageBar.doc.tsx", - "hash": "3375136037863448156" - }, - { - "file": "packages/react-examples/src/react/MessageBar/docs/MessageBarBestPractices.md", - "hash": "14552579103480173435" - }, - { - "file": "packages/react-examples/src/react/MessageBar/docs/MessageBarOverview.md", - "hash": "18169650851106535878" - }, - { - "file": "packages/react-examples/src/react/Modal/Modal.Basic.Example.tsx", - "hash": "12053434654761993165" - }, - { - "file": "packages/react-examples/src/react/Modal/Modal.Modeless.Example.tsx", - "hash": "8430039276142769105" - }, - { - "file": "packages/react-examples/src/react/Modal/Modal.doc.tsx", - "hash": "1692491552675013468" - }, - { - "file": "packages/react-examples/src/react/Modal/docs/ModalBestPractices.md", - "hash": "17303831486824291557" - }, - { - "file": "packages/react-examples/src/react/Modal/docs/ModalOverview.md", - "hash": "750264115238529685" - }, - { - "file": "packages/react-examples/src/react/Nav/Nav.Basic.Example.tsx", - "hash": "7068700491956882868" - }, - { - "file": "packages/react-examples/src/react/Nav/Nav.CustomGroupHeaders.Example.tsx", - "hash": "11381396761722683633" - }, - { - "file": "packages/react-examples/src/react/Nav/Nav.FabricDemoApp.Example.tsx", - "hash": "14556451596879196930" - }, - { - "file": "packages/react-examples/src/react/Nav/Nav.FocusZone.Example.tsx", - "hash": "9346626568314365401" - }, - { - "file": "packages/react-examples/src/react/Nav/Nav.Nested.Example.tsx", - "hash": "5579623567974645982" - }, - { - "file": "packages/react-examples/src/react/Nav/Nav.Wrapped.Example.tsx", - "hash": "448985030608262017" - }, - { - "file": "packages/react-examples/src/react/Nav/Nav.doc.tsx", - "hash": "336230450141047609" - }, - { - "file": "packages/react-examples/src/react/Nav/docs/NavBestPractices.md", - "hash": "14284117560595097883" - }, - { - "file": "packages/react-examples/src/react/Nav/docs/NavOverview.md", - "hash": "1264928082970175275" - }, - { - "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.Basic.Example.tsx", - "hash": "13374794158924025300" - }, - { - "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.BasicReversed.Example.tsx", - "hash": "6883040674335126457" - }, - { - "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.Custom.Example.tsx", - "hash": "18395805109691746051" - }, - { - "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.Vertical.Example.tsx", - "hash": "2772424211657725630" - }, - { - "file": "packages/react-examples/src/react/OverflowSet/OverflowSet.doc.tsx", - "hash": "17904403700316649397" - }, - { - "file": "packages/react-examples/src/react/OverflowSet/docs/OverflowSetOverview.md", - "hash": "16450753773806735512" - }, - { - "file": "packages/react-examples/src/react/Overlay/Overlay.Dark.Example.tsx", - "hash": "5211673163618366885" - }, - { - "file": "packages/react-examples/src/react/Overlay/Overlay.Light.Example.tsx", - "hash": "12813896686728752122" - }, - { - "file": "packages/react-examples/src/react/Overlay/Overlay.doc.tsx", - "hash": "12351709045741002672" - }, - { - "file": "packages/react-examples/src/react/Overlay/docs/OverlayBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Overlay/docs/OverlayDonts.md", - "hash": "7421340973886295081" - }, - { - "file": "packages/react-examples/src/react/Overlay/docs/OverlayDos.md", - "hash": "1721162984869848674" - }, - { - "file": "packages/react-examples/src/react/Overlay/docs/OverlayOverview.md", - "hash": "109444894527994868" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.Basic.Example.tsx", - "hash": "18348534594647973417" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.ConfirmDismiss.Example.tsx", - "hash": "13758804553242827638" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.Controlled.Example.tsx", - "hash": "11469069615638120232" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.Footer.Example.tsx", - "hash": "282488112062051188" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.HandleDismissTarget.Example.tsx", - "hash": "6813491291038054532" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.HiddenOnDismiss.Example.tsx", - "hash": "8068150090023928072" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.LightDismiss.Example.tsx", - "hash": "10066513719817603751" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.LightDismissCustom.Example.tsx", - "hash": "5480968978251464037" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.Navigation.Example.tsx", - "hash": "14746977786281311809" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.NonModal.Example.tsx", - "hash": "8537776278560152960" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.Sizes.Example.tsx", - "hash": "11589826232157726221" - }, - { - "file": "packages/react-examples/src/react/Panel/Panel.doc.tsx", - "hash": "12570788300801762430" - }, - { - "file": "packages/react-examples/src/react/Panel/docs/PanelBestPractices.md", - "hash": "8066461067264139077" - }, - { - "file": "packages/react-examples/src/react/Panel/docs/PanelOverview.md", - "hash": "12758515869681944156" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.Compact.Example.tsx", - "hash": "6698475318564411316" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.Controlled.Example.tsx", - "hash": "10151453783919524204" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.LimitedSearch.Example.tsx", - "hash": "2497287395716121825" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.List.Example.tsx", - "hash": "17729190275421189817" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.Normal.Example.tsx", - "hash": "4039497620015636126" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.PreselectedItems.Example.tsx", - "hash": "15252965684870874172" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.ProcessSelection.Example.tsx", - "hash": "7503099760438933307" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/PeoplePicker.doc.tsx", - "hash": "778687821583669658" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/docs/PeoplePickerBestPractices.md", - "hash": "9928440444910866942" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/docs/PeoplePickerOverview.md", - "hash": "15330317123451214903" - }, - { - "file": "packages/react-examples/src/react/PeoplePicker/examples/PeoplePickerExampleData.ts", - "hash": "14353130418831610367" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.Alternate.Example.tsx", - "hash": "2866159117048715114" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.Basic.Example.tsx", - "hash": "7932380203044306436" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.Colors.Example.tsx", - "hash": "2032631877590110768" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.CustomCoinRender.Example.tsx", - "hash": "13016865546518992020" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.CustomRender.Example.tsx", - "hash": "7454634260085383601" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.Initials.Example.tsx", - "hash": "2802357776118691299" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.Presence.Example.tsx", - "hash": "8911648096661539539" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.PresenceColor.Example.tsx", - "hash": "14904713972765434990" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.UnknownPersona.Example.tsx", - "hash": "16568116341804152510" - }, - { - "file": "packages/react-examples/src/react/Persona/Persona.doc.tsx", - "hash": "2240522496260828325" - }, - { - "file": "packages/react-examples/src/react/Persona/docs/PersonaBestPractices.md", - "hash": "16737357533417045300" - }, - { - "file": "packages/react-examples/src/react/Persona/docs/PersonaOverview.md", - "hash": "6206273138744719771" - }, - { - "file": "packages/react-examples/src/react/Pickers/Picker.CustomResult.Example.tsx", - "hash": "15301754753278259359" - }, - { - "file": "packages/react-examples/src/react/Pickers/Pickers.doc.tsx", - "hash": "5987417366770875328" - }, - { - "file": "packages/react-examples/src/react/Pickers/TagPicker.Basic.Example.tsx", - "hash": "2914453979140321065" - }, - { - "file": "packages/react-examples/src/react/Pickers/TagPicker.CustomRemoveIcon.Example.tsx", - "hash": "5506752771543619207" - }, - { - "file": "packages/react-examples/src/react/Pickers/TagPicker.Inline.Example.tsx", - "hash": "10670703175363899826" - }, - { - "file": "packages/react-examples/src/react/Pickers/docs/PickersBestPractices.md", - "hash": "3300666071909453850" - }, - { - "file": "packages/react-examples/src/react/Pickers/docs/PickersOverview.md", - "hash": "8724244213473266172" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.AlwaysRender.Example.tsx", - "hash": "16012670621837773894" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.Basic.Example.tsx", - "hash": "997670773469861034" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.IconCount.Example.tsx", - "hash": "11061311590518813315" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.Large.Example.tsx", - "hash": "16210398516447265344" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.OnChange.Example.tsx", - "hash": "4429540683677202104" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.OverflowMenu.Example.tsx", - "hash": "1648219339233567984" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.Override.Example.tsx", - "hash": "4593536575634024443" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.Remove.Example.tsx", - "hash": "18273271464801981813" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.Separate.Example.tsx", - "hash": "9803273520945449452" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.Tabs.Example.tsx", - "hash": "208905264665611074" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.TabsLarge.Example.tsx", - "hash": "583401572950803339" - }, - { - "file": "packages/react-examples/src/react/Pivot/Pivot.doc.tsx", - "hash": "6678416039317864807" - }, - { - "file": "packages/react-examples/src/react/Pivot/docs/PivotBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Pivot/docs/PivotDonts.md", - "hash": "13132784219352103008" - }, - { - "file": "packages/react-examples/src/react/Pivot/docs/PivotDos.md", - "hash": "13517426324971769199" - }, - { - "file": "packages/react-examples/src/react/Pivot/docs/PivotOverview.md", - "hash": "12751248200398699321" - }, - { - "file": "packages/react-examples/src/react/Popup/Popup.Basic.Example.tsx", - "hash": "15279825885362117643" - }, - { - "file": "packages/react-examples/src/react/Popup/Popup.Modal.Example.tsx", - "hash": "14146653354220845648" - }, - { - "file": "packages/react-examples/src/react/Popup/Popup.doc.tsx", - "hash": "6530362493639771944" - }, - { - "file": "packages/react-examples/src/react/Popup/docs/PopupBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Popup/docs/PopupDonts.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Popup/docs/PopupDos.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Popup/docs/PopupOverview.md", - "hash": "6239682717430606881" - }, - { - "file": "packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.Basic.Example.tsx", - "hash": "7878042562887496662" - }, - { - "file": "packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.Indeterminate.Example.tsx", - "hash": "13545740794685865816" - }, - { - "file": "packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.doc.tsx", - "hash": "4525749493416033155" - }, - { - "file": "packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorDonts.md", - "hash": "1846679186045071833" - }, - { - "file": "packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorDos.md", - "hash": "2737665049045063520" - }, - { - "file": "packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorOverview.md", - "hash": "4902324094361584629" - }, - { - "file": "packages/react-examples/src/react/Rating/Rating.Basic.Example.tsx", - "hash": "541982030987552717" - }, - { - "file": "packages/react-examples/src/react/Rating/Rating.ButtonControlled.Example.tsx", - "hash": "9584707866723820214" - }, - { - "file": "packages/react-examples/src/react/Rating/Rating.doc.tsx", - "hash": "9281360173408764036" - }, - { - "file": "packages/react-examples/src/react/Rating/docs/RatingBestPractices.md", - "hash": "15970256686322638446" - }, - { - "file": "packages/react-examples/src/react/Rating/docs/RatingOverview.md", - "hash": "4717872153473304763" - }, - { - "file": "packages/react-examples/src/react/ResizeGroup/ResizeGroup.FlexBox.Example.tsx", - "hash": "5819645475632931604" - }, - { - "file": "packages/react-examples/src/react/ResizeGroup/ResizeGroup.OverflowSet.Example.tsx", - "hash": "5721473211608888978" - }, - { - "file": "packages/react-examples/src/react/ResizeGroup/ResizeGroup.VerticalOverflowSet.Example.tsx", - "hash": "9364272985055697723" - }, - { - "file": "packages/react-examples/src/react/ResizeGroup/ResizeGroup.doc.tsx", - "hash": "9940807793702429141" - }, - { - "file": "packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupDonts.md", - "hash": "1750390794817632172" - }, - { - "file": "packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupDos.md", - "hash": "7245572358491681391" - }, - { - "file": "packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupOverview.md", - "hash": "2352326427353831267" - }, - { - "file": "packages/react-examples/src/react/ScrollablePane/ScrollablePane.Default.Example.tsx", - "hash": "11113877117518547723" - }, - { - "file": "packages/react-examples/src/react/ScrollablePane/ScrollablePane.DetailsList.Example.tsx", - "hash": "1882085002600555650" - }, - { - "file": "packages/react-examples/src/react/ScrollablePane/ScrollablePane.doc.tsx", - "hash": "8461319800418810321" - }, - { - "file": "packages/react-examples/src/react/ScrollablePane/docs/ScrollablePaneBestPractices.md", - "hash": "13904886968403828885" - }, - { - "file": "packages/react-examples/src/react/ScrollablePane/docs/ScrollablePaneOverview.md", - "hash": "10084326919845044900" - }, - { - "file": "packages/react-examples/src/react/SearchBox/SearchBox.CustomIcon.Example.tsx", - "hash": "5426414070818314082" - }, - { - "file": "packages/react-examples/src/react/SearchBox/SearchBox.Disabled.Example.tsx", - "hash": "7664933528098226509" - }, - { - "file": "packages/react-examples/src/react/SearchBox/SearchBox.FullSize.Example.tsx", - "hash": "9644008808837079699" - }, - { - "file": "packages/react-examples/src/react/SearchBox/SearchBox.Small.Example.tsx", - "hash": "11299667884153755044" - }, - { - "file": "packages/react-examples/src/react/SearchBox/SearchBox.Underlined.Example.tsx", - "hash": "16619076302738754714" - }, - { - "file": "packages/react-examples/src/react/SearchBox/SearchBox.doc.tsx", - "hash": "11032357203793675680" - }, - { - "file": "packages/react-examples/src/react/SearchBox/docs/SearchBoxBestPractices.md", - "hash": "3557439061338581490" - }, - { - "file": "packages/react-examples/src/react/SearchBox/docs/SearchBoxOverview.md", - "hash": "6266717057770798423" - }, - { - "file": "packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.Basic.Example.tsx", - "hash": "10946830108355350291" - }, - { - "file": "packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.Controlled.Example.tsx", - "hash": "17272459144010908201" - }, - { - "file": "packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.doc.tsx", - "hash": "5408048338806923770" - }, - { - "file": "packages/react-examples/src/react/SelectedPeopleList/docs/SelectedPeopleListDonts.md", - "hash": "970258102470137051" - }, - { - "file": "packages/react-examples/src/react/SelectedPeopleList/docs/SelectedPeopleListDos.md", - "hash": "14926848229419922236" - }, - { - "file": "packages/react-examples/src/react/Selection/Selection.Basic.Example.tsx", - "hash": "14256235658935737442" - }, - { - "file": "packages/react-examples/src/react/Selection/Selection.doc.tsx", - "hash": "14968163274251836508" - }, - { - "file": "packages/react-examples/src/react/Selection/docs/SelectionOverview.md", - "hash": "1749544745534143256" - }, - { - "file": "packages/react-examples/src/react/Separator/Separator.Basic.Example.tsx", - "hash": "9574867819311136970" - }, - { - "file": "packages/react-examples/src/react/Separator/Separator.Icon.Example.tsx", - "hash": "13637856394144991987" - }, - { - "file": "packages/react-examples/src/react/Separator/Separator.Theming.Example.tsx", - "hash": "23141840819740680" - }, - { - "file": "packages/react-examples/src/react/Separator/Separator.doc.tsx", - "hash": "3926454664949544719" - }, - { - "file": "packages/react-examples/src/react/Separator/docs/SeparatorBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Separator/docs/SeparatorDonts.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Separator/docs/SeparatorDos.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Separator/docs/SeparatorOverview.md", - "hash": "9460225228566615517" - }, - { - "file": "packages/react-examples/src/react/Shimmer/Shimmer.Application.Example.tsx", - "hash": "16376361212863184150" - }, - { - "file": "packages/react-examples/src/react/Shimmer/Shimmer.Basic.Example.tsx", - "hash": "9370768287624512121" - }, - { - "file": "packages/react-examples/src/react/Shimmer/Shimmer.CustomElements.Example.tsx", - "hash": "17104489554377523890" - }, - { - "file": "packages/react-examples/src/react/Shimmer/Shimmer.LoadData.Example.tsx", - "hash": "5030842721342374838" - }, - { - "file": "packages/react-examples/src/react/Shimmer/Shimmer.Styling.Example.tsx", - "hash": "6915665004198389032" - }, - { - "file": "packages/react-examples/src/react/Shimmer/Shimmer.doc.tsx", - "hash": "8736141412298840736" - }, - { - "file": "packages/react-examples/src/react/Shimmer/docs/ShimmerBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Shimmer/docs/ShimmerDonts.md", - "hash": "13934448943707141694" - }, - { - "file": "packages/react-examples/src/react/Shimmer/docs/ShimmerDos.md", - "hash": "1558710628742347330" - }, - { - "file": "packages/react-examples/src/react/Shimmer/docs/ShimmerOverview.md", - "hash": "4843985997669345004" - }, - { - "file": "packages/react-examples/src/react/Slider/Slider.Basic.Example.tsx", - "hash": "16122885293446272894" - }, - { - "file": "packages/react-examples/src/react/Slider/Slider.Ranged.Example.tsx", - "hash": "11422561318027565393" - }, - { - "file": "packages/react-examples/src/react/Slider/Slider.Vertical.Example.tsx", - "hash": "13206520944105997136" - }, - { - "file": "packages/react-examples/src/react/Slider/Slider.doc.tsx", - "hash": "8913922147770701189" - }, - { - "file": "packages/react-examples/src/react/Slider/docs/SliderBestPractices.md", - "hash": "2387148131789983162" - }, - { - "file": "packages/react-examples/src/react/Slider/docs/SliderOverview.md", - "hash": "8504488320612513093" - }, - { - "file": "packages/react-examples/src/react/SpinButton/SpinButton.Basic.Example.tsx", - "hash": "9006433823948792522" - }, - { - "file": "packages/react-examples/src/react/SpinButton/SpinButton.Controlled.Example.tsx", - "hash": "12209496242538369748" - }, - { - "file": "packages/react-examples/src/react/SpinButton/SpinButton.CustomStyled.Example.tsx", - "hash": "16465650619764579179" - }, - { - "file": "packages/react-examples/src/react/SpinButton/SpinButton.Icon.Example.tsx", - "hash": "6626788932726993518" - }, - { - "file": "packages/react-examples/src/react/SpinButton/SpinButton.Suffix.Example.tsx", - "hash": "1079251097865055762" - }, - { - "file": "packages/react-examples/src/react/SpinButton/SpinButton.TopPosition.Example.tsx", - "hash": "582843143874513756" - }, - { - "file": "packages/react-examples/src/react/SpinButton/SpinButton.doc.tsx", - "hash": "7586160469216796173" - }, - { - "file": "packages/react-examples/src/react/SpinButton/docs/SpinButtonBestPractices.md", - "hash": "7394595204008996672" - }, - { - "file": "packages/react-examples/src/react/SpinButton/docs/SpinButtonOverview.md", - "hash": "1350428310209392348" - }, - { - "file": "packages/react-examples/src/react/Spinner/Spinner.Basic.Example.tsx", - "hash": "5676613769831055307" - }, - { - "file": "packages/react-examples/src/react/Spinner/Spinner.Labeled.Example.tsx", - "hash": "6554690103655359792" - }, - { - "file": "packages/react-examples/src/react/Spinner/Spinner.doc.tsx", - "hash": "2680295685347079214" - }, - { - "file": "packages/react-examples/src/react/Spinner/docs/SpinnerBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Spinner/docs/SpinnerDonts.md", - "hash": "13465962442451970729" - }, - { - "file": "packages/react-examples/src/react/Spinner/docs/SpinnerDos.md", - "hash": "15907047634456378207" - }, - { - "file": "packages/react-examples/src/react/Spinner/docs/SpinnerOverview.md", - "hash": "1153354032756284251" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Basic.Example.tsx", - "hash": "397185853371300849" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Configure.Example.tsx", - "hash": "3068600573305640316" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Grow.Example.tsx", - "hash": "7663043324894099728" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.HorizontalAlign.Example.tsx", - "hash": "16107132022246210787" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Reversed.Example.tsx", - "hash": "6241489615533027431" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Shrink.Example.tsx", - "hash": "4124600081374028027" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Spacing.Example.tsx", - "hash": "1220623790429356324" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.VerticalAlign.Example.tsx", - "hash": "2844202655523336279" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.Wrap.Example.tsx", - "hash": "4432830012103328674" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.WrapAdvanced.Example.tsx", - "hash": "5719721466279762631" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Horizontal.WrapNested.Example.tsx", - "hash": "8495148496978143621" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Basic.Example.tsx", - "hash": "6782079249119429213" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Configure.Example.tsx", - "hash": "8514056594295328011" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Grow.Example.tsx", - "hash": "17937660614534801046" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.HorizontalAlign.Example.tsx", - "hash": "4266961035406961486" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Reversed.Example.tsx", - "hash": "11573608768450252432" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Shrink.Example.tsx", - "hash": "15026509761358180518" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Spacing.Example.tsx", - "hash": "10900219514926473354" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.VerticalAlign.Example.tsx", - "hash": "3270795531306189517" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.Wrap.Example.tsx", - "hash": "15143405347761112638" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.WrapAdvanced.Example.tsx", - "hash": "921574311353468954" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.Vertical.WrapNested.Example.tsx", - "hash": "15383052396031418364" - }, - { - "file": "packages/react-examples/src/react/Stack/Stack.doc.tsx", - "hash": "7761546058475299469" - }, - { - "file": "packages/react-examples/src/react/Stack/docs/StackBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Stack/docs/StackDonts.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Stack/docs/StackDos.md", - "hash": "11728596372223301314" - }, - { - "file": "packages/react-examples/src/react/Stack/docs/StackOverview.md", - "hash": "12397352656042692504" - }, - { - "file": "packages/react-examples/src/react/SwatchColorPicker/SwatchColorPicker.Basic.Example.tsx", - "hash": "4923638072801173377" - }, - { - "file": "packages/react-examples/src/react/SwatchColorPicker/SwatchColorPicker.doc.tsx", - "hash": "5507998858411018179" - }, - { - "file": "packages/react-examples/src/react/SwatchColorPicker/docs/SwatchColorPickerBestPractices.md", - "hash": "4392559887818317006" - }, - { - "file": "packages/react-examples/src/react/SwatchColorPicker/docs/SwatchColorPickerOverview.md", - "hash": "17352028475438906319" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.Basic.Example.tsx", - "hash": "7495237260950355108" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.ButtonOrder.Example.tsx", - "hash": "5239155264005845143" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.Condensed.Example.tsx", - "hash": "877446611084859392" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.Illustration.Example.tsx", - "hash": "7966558914940147995" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.MultiStep.Example.tsx", - "hash": "1471557829804882323" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.SmallHeadline.Example.tsx", - "hash": "6347084873900866086" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.Wide.Example.tsx", - "hash": "11343270132436278903" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.WideIllustration.Example.tsx", - "hash": "18124615145562684929" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/TeachingBubble.doc.tsx", - "hash": "3164002226905703915" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/docs/TeachingBubbleBestPractices.md", - "hash": "12253372352985739055" - }, - { - "file": "packages/react-examples/src/react/TeachingBubble/docs/TeachingBubbleOverview.md", - "hash": "9592985478022845846" - }, - { - "file": "packages/react-examples/src/react/Text/Text.Block.Example.tsx", - "hash": "2572640488515201257" - }, - { - "file": "packages/react-examples/src/react/Text/Text.Ramp.Example.tsx", - "hash": "17910302471956741708" - }, - { - "file": "packages/react-examples/src/react/Text/Text.Weights.Example.tsx", - "hash": "651063831392855072" - }, - { - "file": "packages/react-examples/src/react/Text/Text.Wrap.Example.tsx", - "hash": "1806536952248660360" - }, - { - "file": "packages/react-examples/src/react/Text/Text.doc.tsx", - "hash": "11970359592381181046" - }, - { - "file": "packages/react-examples/src/react/Text/docs/TextBestPractices.md", - "hash": "3244421341483603138" - }, - { - "file": "packages/react-examples/src/react/Text/docs/TextDonts.md", - "hash": "1812687761537955713" - }, - { - "file": "packages/react-examples/src/react/Text/docs/TextDos.md", - "hash": "3552494451723474854" - }, - { - "file": "packages/react-examples/src/react/Text/docs/TextOverview.md", - "hash": "6201808888188087402" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.Basic.Example.tsx", - "hash": "17697340126601025361" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.Borderless.Example.tsx", - "hash": "5776762670076842305" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.Controlled.Example.tsx", - "hash": "13387913485237516134" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.CustomRender.Example.tsx", - "hash": "15731781620662596897" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.ErrorMessage.Example.tsx", - "hash": "13848334992902664893" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.Masked.Example.tsx", - "hash": "16940421866897217217" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.Multiline.Example.tsx", - "hash": "14466852683033202902" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.PrefixAndSuffix.Example.tsx", - "hash": "5621047978049180529" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.Styled.Example.tsx", - "hash": "17474113732489640237" - }, - { - "file": "packages/react-examples/src/react/TextField/TextField.doc.tsx", - "hash": "351449129733137615" - }, - { - "file": "packages/react-examples/src/react/TextField/docs/TextFieldBestPractices.md", - "hash": "4891779884027992136" - }, - { - "file": "packages/react-examples/src/react/TextField/docs/TextFieldOverview.md", - "hash": "1575292705357077088" - }, - { - "file": "packages/react-examples/src/react/Theme/Theme.doc.tsx", - "hash": "5725525103292734150" - }, - { - "file": "packages/react-examples/src/react/Theme/docs/ThemesOverview.md", - "hash": "1025689132255097325" - }, - { - "file": "packages/react-examples/src/react/ThemeGenerator/ThemeGenerator.doc.tsx", - "hash": "2481012262064489377" - }, - { - "file": "packages/react-examples/src/react/ThemeProvider/ThemeProvider.Basic.Example.tsx", - "hash": "18065435800720689216" - }, - { - "file": "packages/react-examples/src/react/ThemeProvider/ThemeProvider.Nested.Example.tsx", - "hash": "17498722943115260456" - }, - { - "file": "packages/react-examples/src/react/ThemeProvider/ThemeProvider.doc.tsx", - "hash": "14679110571809507221" - }, - { - "file": "packages/react-examples/src/react/ThemeProvider/ThemeProvider.stories.tsx", - "hash": "4360939645926293819" - }, - { - "file": "packages/react-examples/src/react/ThemeProvider/docs/ThemeProviderBestPractices.md", - "hash": "9291823125102619223" - }, - { - "file": "packages/react-examples/src/react/ThemeProvider/docs/ThemeProviderOverview.md", - "hash": "16911649373008640709" - }, - { - "file": "packages/react-examples/src/react/TimePicker/TimePicker.Basic.Example.tsx", - "hash": "2986069269055991177" - }, - { - "file": "packages/react-examples/src/react/TimePicker/TimePicker.Controlled.Example.tsx", - "hash": "175125299373631613" - }, - { - "file": "packages/react-examples/src/react/TimePicker/TimePicker.CustomTimeStrings.Example.tsx", - "hash": "7605314919297467891" - }, - { - "file": "packages/react-examples/src/react/TimePicker/TimePicker.DateTimePicker.Example.tsx", - "hash": "8634935140509827042" - }, - { - "file": "packages/react-examples/src/react/TimePicker/TimePicker.ValidationResult.Example.tsx", - "hash": "4869507487398466300" - }, - { - "file": "packages/react-examples/src/react/TimePicker/TimePicker.doc.tsx", - "hash": "15162167716925661256" - }, - { - "file": "packages/react-examples/src/react/TimePicker/docs/TimePickerBestPractices.md", - "hash": "17184947854592075536" - }, - { - "file": "packages/react-examples/src/react/TimePicker/docs/TimePickerOverview.md", - "hash": "12628229697985609328" - }, - { - "file": "packages/react-examples/src/react/Toggle/Toggle.Basic.Example.tsx", - "hash": "296997063617274157" - }, - { - "file": "packages/react-examples/src/react/Toggle/Toggle.CustomLabel.Example.tsx", - "hash": "12819052129733986050" - }, - { - "file": "packages/react-examples/src/react/Toggle/Toggle.doc.tsx", - "hash": "16648643731009257993" - }, - { - "file": "packages/react-examples/src/react/Toggle/docs/ToggleBestPractices.md", - "hash": "14671921759592124956" - }, - { - "file": "packages/react-examples/src/react/Toggle/docs/ToggleOverview.md", - "hash": "5058309645448523639" - }, - { - "file": "packages/react-examples/src/react/Tooltip/Tooltip.AbsolutePosition.Example.tsx", - "hash": "6422947980529143287" - }, - { - "file": "packages/react-examples/src/react/Tooltip/Tooltip.Basic.Example.tsx", - "hash": "11598663710486420109" - }, - { - "file": "packages/react-examples/src/react/Tooltip/Tooltip.Custom.Example.tsx", - "hash": "13584977360149752361" - }, - { - "file": "packages/react-examples/src/react/Tooltip/Tooltip.Display.Example.tsx", - "hash": "4847577445051092212" - }, - { - "file": "packages/react-examples/src/react/Tooltip/Tooltip.Interactive.Example.tsx", - "hash": "7828051206751308669" - }, - { - "file": "packages/react-examples/src/react/Tooltip/Tooltip.Overflow.Example.tsx", - "hash": "806920868530231686" - }, - { - "file": "packages/react-examples/src/react/Tooltip/Tooltip.doc.tsx", - "hash": "296399804726274849" - }, - { - "file": "packages/react-examples/src/react/Tooltip/docs/TooltipBestPractices.md", - "hash": "7755171346331932930" - }, - { - "file": "packages/react-examples/src/react/Tooltip/docs/TooltipOverview.md", - "hash": "8796628313378671712" - }, - { - "file": "packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Example.scss", - "hash": "8887148203940963303" - }, - { - "file": "packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Example.tsx", - "hash": "11074158271954337286" - }, - { - "file": "packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx", - "hash": "1782051463240559076" - }, - { - "file": "packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.MarkedDays.Example.tsx", - "hash": "83617302861297456" - }, - { - "file": "packages/react-examples/src/react-cards/Card/Card.Configure.Example.tsx", - "hash": "6829387816201221529" - }, - { - "file": "packages/react-examples/src/react-cards/Card/Card.Horizontal.Example.tsx", - "hash": "17316572223916603990" - }, - { - "file": "packages/react-examples/src/react-cards/Card/Card.Vertical.Example.tsx", - "hash": "8828664300500480205" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.Basic.Example.tsx", - "hash": "17280228016338608640" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.CustomAccessibility.Example.tsx", - "hash": "91286154134076767" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.DataChange.Example.tsx", - "hash": "6688939291679086171" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.LargeData.Example.tsx", - "hash": "14375772672176497300" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.Multiple.Example.tsx", - "hash": "5790932728445775074" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.Styled.Example.tsx", - "hash": "3219925141936248769" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/AreaChart.doc.tsx", - "hash": "4837721049513527166" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/AreaChartPage.tsx", - "hash": "4908599330711186091" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/docs/AreaChartBestPractices.md", - "hash": "8667501283021664942" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/docs/AreaChartDonts.md", - "hash": "6341862057868122032" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/docs/AreaChartDos.md", - "hash": "13112543964230723538" - }, - { - "file": "packages/react-examples/src/react-charting/AreaChart/docs/AreaChartOverview.md", - "hash": "6557352484419296085" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.Basic.Example.tsx", - "hash": "14742041563816254972" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.CustomAccessibility.Example.tsx", - "hash": "5947170745589368987" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.CustomCallout.Example.tsx", - "hash": "10044935613886027628" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.Dynamic.Example.tsx", - "hash": "12862431042025783292" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/DonutChart.doc.tsx", - "hash": "12628122887827348086" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/DonutChartPage.tsx", - "hash": "372760954603184761" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/docs/DonutChartBestPractices.md", - "hash": "16300067599723018120" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/docs/DonutChartDonts.md", - "hash": "13677672991812468743" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/docs/DonutChartDos.md", - "hash": "13594512462831129291" - }, - { - "file": "packages/react-examples/src/react-charting/DonutChart/docs/DonutChartOverview.md", - "hash": "6204014879587669217" - }, - { - "file": "packages/react-examples/src/react-charting/GaugeChart/GaugeChart.Basic.Example.tsx", - "hash": "16149580628524933008" - }, - { - "file": "packages/react-examples/src/react-charting/GaugeChart/GaugeChart.Variant.Example.tsx", - "hash": "9126260302719343105" - }, - { - "file": "packages/react-examples/src/react-charting/GaugeChart/GaugeChart.doc.tsx", - "hash": "10718149355691209173" - }, - { - "file": "packages/react-examples/src/react-charting/GaugeChart/GaugeChartPage.tsx", - "hash": "16640437771472467039" - }, - { - "file": "packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartBestPractices.md", - "hash": "15727587785304445954" - }, - { - "file": "packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartDonts.md", - "hash": "1081792757328488596" - }, - { - "file": "packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartDos.md", - "hash": "7794023420355098591" - }, - { - "file": "packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartOverview.md", - "hash": "17251215862264929766" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Basic.Example.tsx", - "hash": "8765749276400440476" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.CustomAccessibility.Example.tsx", - "hash": "7855107173035791090" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Styled.Example.tsx", - "hash": "10072552460465707316" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Truncated.Example.tsx", - "hash": "14359382740573587985" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.doc.tsx", - "hash": "11514123822468590747" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChartPage.tsx", - "hash": "8452333274806373661" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartBestPractices.md", - "hash": "15294929844943858089" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartDonts.md", - "hash": "16148048113015171770" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartDos.md", - "hash": "14610165816610031867" - }, - { - "file": "packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartOverview.md", - "hash": "10931229892839990338" - }, - { - "file": "packages/react-examples/src/react-charting/HeatMapChart/HeatMapChart.doc.tsx", - "hash": "16115623563074567806" - }, - { - "file": "packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartBasic.CustomAccessibility.Example.tsx", - "hash": "11708850517126970876" - }, - { - "file": "packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartBasic.Example.tsx", - "hash": "10262357403800107" - }, - { - "file": "packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartPage.tsx", - "hash": "6875793756240523159" - }, - { - "file": "packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartBestPractices.md", - "hash": "2397917437906085447" - }, - { - "file": "packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartDonts.md", - "hash": "3773423687848795802" - }, - { - "file": "packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartDos.md", - "hash": "15371103820530549100" - }, - { - "file": "packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartOverview.md", - "hash": "11879653409540920034" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Basic.Example.tsx", - "hash": "13252158935887926671" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Benchmark.Example.tsx", - "hash": "4287642655868330949" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.CustomAccessibility.Example.tsx", - "hash": "8745243420945124223" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.CustomCallout.Example.tsx", - "hash": "13406079384862782588" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Variant.Example.tsx", - "hash": "2920049457733182532" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.doc.tsx", - "hash": "17502781025553440606" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChartPage.tsx", - "hash": "8291344898342706236" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartBestPractices.md", - "hash": "16151128446301762382" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartDonts.md", - "hash": "9744770780362582179" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartDos.md", - "hash": "325930012420447456" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartOverview.md", - "hash": "10347106881597446108" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.AxisTooltip.Example.tsx", - "hash": "6459704628651063468" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.Basic.Example.tsx", - "hash": "5516921156313325496" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.StringAxisTooltip.Example.tsx", - "hash": "16828106331991834440" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.doc.tsx", - "hash": "14590401134663921680" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxisPage.tsx", - "hash": "5035299730033890133" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisBestPractices.md", - "hash": "1883076091925546845" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisDonts.md", - "hash": "1929719836825879626" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisDos.md", - "hash": "7882006878115043204" - }, - { - "file": "packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisOverview.md", - "hash": "2090146818650993319" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/Legends.Basic.Example.tsx", - "hash": "13318547901894743623" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/Legends.OnChange.Example.tsx", - "hash": "254509847114453779" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/Legends.Overflow.Example.tsx", - "hash": "13509103622834344877" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/Legends.Styled.Example.tsx", - "hash": "14549351446904751647" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/Legends.WrapLines.Example.tsx", - "hash": "10763696579939743825" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/Legends.doc.tsx", - "hash": "7266834029940545539" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/LegendsPage.tsx", - "hash": "5015802845987146061" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/docs/LegendsBestPractices.md", - "hash": "16372519399062358981" - }, - { - "file": "packages/react-examples/src/react-charting/Legends/docs/LegendsOverview.md", - "hash": "6669044032918395598" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Basic.Example.tsx", - "hash": "16609453156609940493" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.CustomAccessibility.Example.tsx", - "hash": "15848904157802634625" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.CustomLocaleDateAxis.Example.tsx", - "hash": "17424975472863078490" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Events.Example.tsx", - "hash": "11443099609081595243" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Gaps.Example.tsx", - "hash": "6439669200786227256" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.LargeData.Example.tsx", - "hash": "16829926365893456599" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Multiple.Example.tsx", - "hash": "17987367081455407416" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.Styled.Example.tsx", - "hash": "12410478632737069679" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChart.doc.tsx", - "hash": "7678613275504857548" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/LineChartPage.tsx", - "hash": "6723436798090404763" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/docs/LineChartBestPractices.md", - "hash": "6714629733050737300" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/docs/LineChartDonts.md", - "hash": "14412880537195715769" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/docs/LineChartDos.md", - "hash": "3909689919490469374" - }, - { - "file": "packages/react-examples/src/react-charting/LineChart/docs/LineChartOverview.md", - "hash": "10371717520503731024" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.Example.tsx", - "hash": "3428263105847588170" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.Variant.Example.tsx", - "hash": "14478237278453578125" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.doc.tsx", - "hash": "10516361952942143793" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChartPage.tsx", - "hash": "8031095526414554570" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChartWithPlaceHolder.Example.tsx", - "hash": "5387327515635763623" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartBestPractices.md", - "hash": "2690332724878924286" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartDonts.md", - "hash": "9744770780362582179" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartDos.md", - "hash": "17058286745613894005" - }, - { - "file": "packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartOverview.md", - "hash": "9567727283032560252" - }, - { - "file": "packages/react-examples/src/react-charting/PieChart/PieChart.Basic.Example.tsx", - "hash": "8203334510932548198" - }, - { - "file": "packages/react-examples/src/react-charting/PieChart/PieChart.Dynamic.Example.tsx", - "hash": "10449071395922245157" - }, - { - "file": "packages/react-examples/src/react-charting/PieChart/PieChart.doc.tsx", - "hash": "11344460396535720753" - }, - { - "file": "packages/react-examples/src/react-charting/PieChart/PieChartPage.tsx", - "hash": "3067168850426368882" - }, - { - "file": "packages/react-examples/src/react-charting/PieChart/docs/PieChartBestPractices.md", - "hash": "9239548385463694443" - }, - { - "file": "packages/react-examples/src/react-charting/PieChart/docs/PieChartOverview.md", - "hash": "12435926360300087351" - }, - { - "file": "packages/react-examples/src/react-charting/SankeyChart/SankeyChart.Basic.Example.tsx", - "hash": "15895521692770891123" - }, - { - "file": "packages/react-examples/src/react-charting/SankeyChart/SankeyChart.Inbox.Example.tsx", - "hash": "11338422240875637555" - }, - { - "file": "packages/react-examples/src/react-charting/SankeyChart/SankeyChart.doc.tsx", - "hash": "5612032228516822569" - }, - { - "file": "packages/react-examples/src/react-charting/SankeyChart/SankeyChartPage.tsx", - "hash": "6599378000696069918" - }, - { - "file": "packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartBestPractices.md", - "hash": "10660018979829767509" - }, - { - "file": "packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartDonts.md", - "hash": "13301146973251673370" - }, - { - "file": "packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartDos.md", - "hash": "1539175195150153200" - }, - { - "file": "packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartOverview.md", - "hash": "7891621325208064656" - }, - { - "file": "packages/react-examples/src/react-charting/SparklineChart/SparklineChart.Basic.Example.tsx", - "hash": "7996953674632164929" - }, - { - "file": "packages/react-examples/src/react-charting/SparklineChart/SparklineChart.doc.tsx", - "hash": "520593925782042104" - }, - { - "file": "packages/react-examples/src/react-charting/SparklineChart/SparklineChartPage.tsx", - "hash": "6550554335150726180" - }, - { - "file": "packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartBestPractices.md", - "hash": "13483173933522190353" - }, - { - "file": "packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartDonts.md", - "hash": "11299798707424545592" - }, - { - "file": "packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartDos.md", - "hash": "1697315164222562053" - }, - { - "file": "packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartOverview.md", - "hash": "14809910634717392563" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChart.CustomAccessibility.Example.tsx", - "hash": "7681705201021791043" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChart.Example.tsx", - "hash": "11601994178156060431" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChartWithPlaceHolder.Example.tsx", - "hash": "15927852500748954627" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.BaseBar.Example.tsx", - "hash": "9651160196089340776" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Basic.Example.tsx", - "hash": "5364722359703304730" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Benchmark.Example.tsx", - "hash": "11978417296447961080" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.CustomAccessibility.Example.tsx", - "hash": "2288295920028534361" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Dynamic.Example.tsx", - "hash": "16401953707966301386" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Multiple.Example.tsx", - "hash": "15030752846565030223" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.doc.tsx", - "hash": "15556279018016952835" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/StackedBarChartPage.tsx", - "hash": "12068599533954281772" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartBestPractices.md", - "hash": "16329234638281406580" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartDonts.md", - "hash": "9744770780362582179" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartDos.md", - "hash": "12392110646580197178" - }, - { - "file": "packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartOverview.md", - "hash": "9514828762490962803" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayer.Example.tsx", - "hash": "7678522819956493260" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerCompact.Example.tsx", - "hash": "12235799044053510801" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerCompactDocSite.Example.tsx", - "hash": "16627233669655998907" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerDocSite.Example.tsx", - "hash": "14668717497310929772" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerLong.Example.tsx", - "hash": "2717068418213538167" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.TwoLayer.Example.tsx", - "hash": "10571073613589868518" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/TreeChart.doc.tsx", - "hash": "11173162709033730647" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/TreeChartPage.tsx", - "hash": "2366910803326724394" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/docs/TreeChartBestPractices.md", - "hash": "4433147631214615208" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/docs/TreeChartDonts.md", - "hash": "17448766090531150739" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/docs/TreeChartDos.md", - "hash": "17299718083732552010" - }, - { - "file": "packages/react-examples/src/react-charting/TreeChart/docs/TreeChartOverview.md", - "hash": "13281315253395855539" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.AxisTooltip.Example.tsx", - "hash": "3440368874285633954" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Basic.Example.tsx", - "hash": "7236293491875440718" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.CustomAccessibility.Example.tsx", - "hash": "9720292503266491395" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Dynamic.Example.tsx", - "hash": "13174372272560557644" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.RotateLabels.Example.tsx", - "hash": "9266907551817692921" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Styled.Example.tsx", - "hash": "16741806930992796868" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.doc.tsx", - "hash": "4797540806541545801" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChartPage.tsx", - "hash": "15128301750103217480" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartBestPractices.md", - "hash": "16364767162395907158" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartDonts.md", - "hash": "7968404933206089384" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartDos.md", - "hash": "15311150692622924592" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartOverview.md", - "hash": "765353722265452356" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.AxisTooltip.Example.tsx", - "hash": "13191895355624307502" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Basic.Example.tsx", - "hash": "17782065064180114250" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Callout.Example.tsx", - "hash": "10944347787777491182" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.CustomAccessibility.Example.tsx", - "hash": "1070898371773461860" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Styled.Example.tsx", - "hash": "4504351050897917110" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.doc.tsx", - "hash": "3287708940831127290" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChartPage.tsx", - "hash": "15864858780968607914" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartBestPractices.md", - "hash": "7575666629590817987" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartDonts.md", - "hash": "16148048113015171770" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartDos.md", - "hash": "14610165816610031867" - }, - { - "file": "packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartOverview.md", - "hash": "17155804307757386673" - }, - { - "file": "packages/react-examples/src/react-charting/demo/AppDefinition.tsx", - "hash": "5500226316546506996" - }, - { - "file": "packages/react-examples/src/react-charting/demo/AppThemes.ts", - "hash": "4733901559184113020" - }, - { - "file": "packages/react-examples/src/react-charting/demo/GettingStartedPage.tsx", - "hash": "16105541935593779438" - }, - { - "file": "packages/react-examples/src/react-charting/demo/index.tsx", - "hash": "17416720422326067006" - }, - { - "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Basic.Example.tsx", - "hash": "8930719020880385792" - }, - { - "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Breadcrumb.Example.tsx", - "hash": "4984296336724180173" - }, - { - "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Footer.Example.tsx", - "hash": "8685788575260044113" - }, - { - "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Preview.Example.tsx", - "hash": "9204835405452805309" - }, - { - "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Xsmall.Example.tsx", - "hash": "9883949284175000331" - }, - { - "file": "packages/react-examples/src/react-experiments/Chiclet/Chiclet.Xsmall.Footer.Example.tsx", - "hash": "13684300580914819009" - }, - { - "file": "packages/react-examples/src/react-experiments/Chiclet/ChicletPage.tsx", - "hash": "6309817484233845154" - }, - { - "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Accordion.Example.tsx", - "hash": "15159333797981158652" - }, - { - "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Basic.Example.tsx", - "hash": "12659675144452419206" - }, - { - "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Controlled.Example.tsx", - "hash": "8952443015251807929" - }, - { - "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Recursive.Example.tsx", - "hash": "9112946933932153761" - }, - { - "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Slots.Example.tsx", - "hash": "6677308251806862729" - }, - { - "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Styled.Example.tsx", - "hash": "8619495061269822495" - }, - { - "file": "packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSectionPage.tsx", - "hash": "5288564094978258535" - }, - { - "file": "packages/react-examples/src/react-experiments/FileTypeIcon/FileTypeIcon.Basic.Example.tsx", - "hash": "917684447694156665" - }, - { - "file": "packages/react-examples/src/react-experiments/FileTypeIcon/FileTypeIconPage.tsx", - "hash": "858993541312384290" - }, - { - "file": "packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.CustomRender.Example.tsx", - "hash": "6292110668678104288" - }, - { - "file": "packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.Example.tsx", - "hash": "707642620583749699" - }, - { - "file": "packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.HeaderFooter.Example.tsx", - "hash": "13106417764492493310" - }, - { - "file": "packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingSuggestionsPage.tsx", - "hash": "16474647862080665137" - }, - { - "file": "packages/react-examples/src/react-experiments/FolderCover/FolderCover.Basic.Example.tsx", - "hash": "13644616959959750103" - }, - { - "file": "packages/react-examples/src/react-experiments/FolderCover/FolderCoverPage.tsx", - "hash": "16138332361658578983" - }, - { - "file": "packages/react-examples/src/react-experiments/LayoutGroup/LayoutGroup.Basic.Example.tsx", - "hash": "2242368482669957303" - }, - { - "file": "packages/react-examples/src/react-experiments/LayoutGroup/LayoutGroupPage.tsx", - "hash": "10999466950766503186" - }, - { - "file": "packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedback.Example.tsx", - "hash": "9963588234996656191" - }, - { - "file": "packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackCallout.Example.tsx", - "hash": "7009666584489671037" - }, - { - "file": "packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackPage.tsx", - "hash": "8117285971645963619" - }, - { - "file": "packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackStack.Example.tsx", - "hash": "8215761124552069416" - }, - { - "file": "packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Basic.Example.tsx", - "hash": "16672023748927658570" - }, - { - "file": "packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Customization.Example.tsx", - "hash": "15746267823289451390" - }, - { - "file": "packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Customization.Round.Example.tsx", - "hash": "16588942881062896611" - }, - { - "file": "packages/react-examples/src/react-experiments/Pagination/Pagination.ComboBox.Example.tsx", - "hash": "10221865281541950791" - }, - { - "file": "packages/react-examples/src/react-experiments/Pagination/PaginationPage.tsx", - "hash": "8871130369002585937" - }, - { - "file": "packages/react-examples/src/react-experiments/Persona/Persona.Example.tsx", - "hash": "13323610891568828947" - }, - { - "file": "packages/react-examples/src/react-experiments/Persona/PersonaPage.tsx", - "hash": "4386929712448366979" - }, - { - "file": "packages/react-examples/src/react-experiments/Persona/VerticalPersona.Example.tsx", - "hash": "6280952920806886611" - }, - { - "file": "packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoin.Example.tsx", - "hash": "5198304688619672463" - }, - { - "file": "packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoinPage.tsx", - "hash": "597153685931096748" - }, - { - "file": "packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoinSizeAndColor.Example.tsx", - "hash": "15925621842330965615" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.Basic.DragDrop.Example.tsx", - "hash": "11998599855861317186" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.Basic.Example.tsx", - "hash": "1813147298084512047" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.DragDropBetweenWells.Example.tsx", - "hash": "10334562335982740605" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithContextMenu.Example.tsx", - "hash": "15548997466564876088" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithEdit.Example.tsx", - "hash": "7110135765839362365" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithEditInContextMenu.Example.tsx", - "hash": "17140363768491353808" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithGroupExpand.Example.tsx", - "hash": "12324471504246880713" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleListPage.tsx", - "hash": "13688015502388949655" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/docs/SelectedPeopleListDonts.md", - "hash": "970258102470137051" - }, - { - "file": "packages/react-examples/src/react-experiments/SelectedPeopleList/docs/SelectedPeopleListDos.md", - "hash": "14926848229419922236" - }, - { - "file": "packages/react-examples/src/react-experiments/Sidebar/Sidebar.Basic.Example.tsx", - "hash": "16661739891134879041" - }, - { - "file": "packages/react-examples/src/react-experiments/Sidebar/Sidebar.Collapsed.Example.tsx", - "hash": "15003512523536440179" - }, - { - "file": "packages/react-examples/src/react-experiments/Sidebar/SidebarPage.tsx", - "hash": "14960004064937642663" - }, - { - "file": "packages/react-examples/src/react-experiments/Signals/SignalField.Basic.Example.tsx", - "hash": "10922412750446698665" - }, - { - "file": "packages/react-examples/src/react-experiments/Signals/Signals.Basic.Example.tsx", - "hash": "10060294351317517165" - }, - { - "file": "packages/react-examples/src/react-experiments/Signals/Signals.Example.scss", - "hash": "8438670691459106267" - }, - { - "file": "packages/react-examples/src/react-experiments/Signals/SignalsPage.tsx", - "hash": "14146406673869305765" - }, - { - "file": "packages/react-examples/src/react-experiments/Slider/Slider.Example.tsx", - "hash": "9917636369122157024" - }, - { - "file": "packages/react-examples/src/react-experiments/Slider/Slider.Vertical.Example.tsx", - "hash": "11870888312804408806" - }, - { - "file": "packages/react-examples/src/react-experiments/Slider/SliderPage.tsx", - "hash": "16202212692805425480" - }, - { - "file": "packages/react-examples/src/react-experiments/StaticList/StaticListPage.tsx", - "hash": "16599220045566881237" - }, - { - "file": "packages/react-examples/src/react-experiments/Theming/Theming.Schemes.Custom.Example.tsx", - "hash": "6092325306258851700" - }, - { - "file": "packages/react-examples/src/react-experiments/Theming/Theming.Schemes.Variant.Example.tsx", - "hash": "6414750604467205160" - }, - { - "file": "packages/react-examples/src/react-experiments/Theming/ThemingPage.tsx", - "hash": "11929647568890781490" - }, - { - "file": "packages/react-examples/src/react-experiments/Tile/Tile.Document.Example.tsx", - "hash": "1451127257262809525" - }, - { - "file": "packages/react-examples/src/react-experiments/Tile/Tile.Example.scss", - "hash": "9239083632746717173" - }, - { - "file": "packages/react-examples/src/react-experiments/Tile/Tile.Folder.Example.tsx", - "hash": "10313966864598219856" - }, - { - "file": "packages/react-examples/src/react-experiments/Tile/Tile.Media.Example.tsx", - "hash": "7825783569121455932" - }, - { - "file": "packages/react-examples/src/react-experiments/Tile/TilePage.tsx", - "hash": "16986402846290123940" - }, - { - "file": "packages/react-examples/src/react-experiments/TilesList/ExampleHelpers.tsx", - "hash": "5885130793784814347" - }, - { - "file": "packages/react-examples/src/react-experiments/TilesList/TilesList.Basic.Example.tsx", - "hash": "12689940136040547907" - }, - { - "file": "packages/react-examples/src/react-experiments/TilesList/TilesList.Document.Example.tsx", - "hash": "15268770873391847911" - }, - { - "file": "packages/react-examples/src/react-experiments/TilesList/TilesList.Example.scss", - "hash": "16795486179587091785" - }, - { - "file": "packages/react-examples/src/react-experiments/TilesList/TilesList.Media.Example.tsx", - "hash": "5060510999175829594" - }, - { - "file": "packages/react-examples/src/react-experiments/TilesList/TilesListPage.tsx", - "hash": "5893706552312839035" - }, - { - "file": "packages/react-examples/src/react-experiments/UnifiedPeoplePicker/DoubleUnifiedPeoplePicker.Example.tsx", - "hash": "17345325041048264800" - }, - { - "file": "packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePicker.Example.tsx", - "hash": "17726985096447711321" - }, - { - "file": "packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePicker.WithEdit.Example.tsx", - "hash": "18072241743869642673" - }, - { - "file": "packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePickerPage.tsx", - "hash": "17760392667692101835" - }, - { - "file": "packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Basic.Example.tsx", - "hash": "68072280452097755" - }, - { - "file": "packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Basic2.Example.tsx", - "hash": "1955269037613322544" - }, - { - "file": "packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Example.scss", - "hash": "13239750418457062169" - }, - { - "file": "packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedListPage.tsx", - "hash": "11902707775214362543" - }, - { - "file": "packages/react-examples/src/react-experiments/demo/AppDefinition.tsx", - "hash": "18428760086075985217" - }, - { - "file": "packages/react-examples/src/react-experiments/demo/AppThemes.ts", - "hash": "16940588306323476143" - }, - { - "file": "packages/react-examples/src/react-experiments/demo/GettingStartedPage.tsx", - "hash": "8926393232991035941" - }, - { - "file": "packages/react-examples/src/react-experiments/demo/index.tsx", - "hash": "8452953617370397632" - }, - { - "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.Disabled.Example.tsx", - "hash": "591105582283659640" - }, - { - "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.HorizontalMenu.Example.tsx", - "hash": "15025677695253467860" - }, - { - "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.List.Example.tsx", - "hash": "7052917308202375780" - }, - { - "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.Photos.Example.tsx", - "hash": "15312191457300881752" - }, - { - "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.Tabbable.Example.tsx", - "hash": "14660928901055405455" - }, - { - "file": "packages/react-examples/src/react-focus/FocusZone/FocusZone.doc.tsx", - "hash": "1079957587186782410" - }, - { - "file": "packages/react-examples/src/react-focus/FocusZone/docs/FocusZoneOverview.md", - "hash": "13397458153671891240" - }, - { - "file": "packages/react-examples/tsconfig.cy.json", - "hash": "15298769101167954295" - }, - { - "file": "packages/react-examples/tsconfig.json", - "hash": "6768911732744882519" - } - ], - "@fluentui/react-theme-sass": [ - { - "file": "packages/react-components/react-theme-sass/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-theme-sass/.eslintrc.json", - "hash": "11018738359270224912" - }, - { - "file": "packages/react-components/react-theme-sass/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-theme-sass/CHANGELOG.json", - "hash": "5594685481643840414" - }, - { - "file": "packages/react-components/react-theme-sass/CHANGELOG.md", - "hash": "4856582190832297662" - }, - { - "file": "packages/react-components/react-theme-sass/LICENSE", - "hash": "7651792034110510731" - }, - { - "file": "packages/react-components/react-theme-sass/README.md", - "hash": "15214253752717970109" - }, - { - "file": "packages/react-components/react-theme-sass/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-theme-sass/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-theme-sass/etc/react-theme-sass.api.md", - "hash": "14358162522400668675" - }, - { - "file": "packages/react-components/react-theme-sass/jest.config.js", - "hash": "17399809852034663364" - }, - { - "file": "packages/react-components/react-theme-sass/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-theme-sass/package.json", - "hash": "5930055320158030255", - "deps": [ - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-theme", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/react-components/react-theme-sass/project.json", - "hash": "2766526344846927114" - }, - { - "file": "packages/react-components/react-theme-sass/sass/Sass.test.ts", - "hash": "3297823665033471734" - }, - { - "file": "packages/react-components/react-theme-sass/sass/borderRadiusTokens.scss", - "hash": "4143081919880994643" - }, - { - "file": "packages/react-components/react-theme-sass/sass/colorPaletteTokens.scss", - "hash": "1410739843977013578" - }, - { - "file": "packages/react-components/react-theme-sass/sass/colorTokens.scss", - "hash": "5989857681329073660" - }, - { - "file": "packages/react-components/react-theme-sass/sass/curveTokens.scss", - "hash": "17869535884671872417" - }, - { - "file": "packages/react-components/react-theme-sass/sass/durationTokens.scss", - "hash": "5806122938809088304" - }, - { - "file": "packages/react-components/react-theme-sass/sass/fontTokens.scss", - "hash": "6033061885418814247" - }, - { - "file": "packages/react-components/react-theme-sass/sass/shadowTokens.scss", - "hash": "4177663170137987842" - }, - { - "file": "packages/react-components/react-theme-sass/sass/spacingTokens.scss", - "hash": "977102655101265716" - }, - { - "file": "packages/react-components/react-theme-sass/sass/strokeWidthTokens.scss", - "hash": "8747232526648247088" - }, - { - "file": "packages/react-components/react-theme-sass/sass/tokens.scss", - "hash": "17672327996225294765" - }, - { - "file": "packages/react-components/react-theme-sass/src/index.ts", - "hash": "15196355143394379680" - }, - { - "file": "packages/react-components/react-theme-sass/tsconfig.json", - "hash": "11066276364833551840" - }, - { - "file": "packages/react-components/react-theme-sass/tsconfig.lib.json", - "hash": "14975475306433073951" - }, - { - "file": "packages/react-components/react-theme-sass/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/monaco-editor": [ - { - "file": "packages/monaco-editor/.eslintrc.json", - "hash": "16401897427305223968" - }, - { - "file": "packages/monaco-editor/.npmignore", - "hash": "1899321021843931458" - }, - { - "file": "packages/monaco-editor/CHANGELOG.json", - "hash": "15516623440398366724" - }, - { - "file": "packages/monaco-editor/CHANGELOG.md", - "hash": "5240386572839593668" - }, - { - "file": "packages/monaco-editor/LICENSE", - "hash": "15366233199009037529" - }, - { - "file": "packages/monaco-editor/README.md", - "hash": "5047488952633449612" - }, - { - "file": "packages/monaco-editor/config/pre-copy.json", - "hash": "2815249492915298685" - }, - { - "file": "packages/monaco-editor/just.config.ts", - "hash": "2285251981020918959" - }, - { - "file": "packages/monaco-editor/package.json", - "hash": "11766581813993022377", - "deps": [ - "npm:@microsoft/load-themed-styles", - "npm:tslib", - "@fluentui/eslint-plugin", - "npm:monaco-editor", - "@fluentui/scripts-tasks" - ] - }, - { - "file": "packages/monaco-editor/project.json", - "hash": "12676125939877011820" - }, - { - "file": "packages/monaco-editor/scripts/addMonacoWebpackConfig.js", - "hash": "568918676415136703" - }, - { - "file": "packages/monaco-editor/src/configureEnvironment.ts", - "hash": "10685711845254021009" - }, - { - "file": "packages/monaco-editor/src/monacoBundle.ts", - "hash": "14849047751141537856" - }, - { - "file": "packages/monaco-editor/src/monacoCoreBundle.ts", - "hash": "10703107346378158529" - }, - { - "file": "packages/monaco-editor/tasks/transformCssTask.ts", - "hash": "15488444608261061401" - }, - { - "file": "packages/monaco-editor/tsconfig.json", - "hash": "14351017736851024254" - } - ], - "@fluentui/react-spinbutton": [ - { - "file": "packages/react-components/react-spinbutton/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-spinbutton/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-spinbutton/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-spinbutton/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-spinbutton/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-spinbutton/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-spinbutton/CHANGELOG.json", - "hash": "4847245186650734891" - }, - { - "file": "packages/react-components/react-spinbutton/CHANGELOG.md", - "hash": "4902713454531527375" - }, - { - "file": "packages/react-components/react-spinbutton/LICENSE", - "hash": "4901619448559189631" - }, - { - "file": "packages/react-components/react-spinbutton/README.md", - "hash": "6512108027180420597" - }, - { - "file": "packages/react-components/react-spinbutton/bundle-size/SpinButton.fixture.js", - "hash": "16023973476048778455" - }, - { - "file": "packages/react-components/react-spinbutton/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-spinbutton/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-spinbutton/docs/Spec.md", - "hash": "17048980095820677857" - }, - { - "file": "packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-anatomy-alt-optional.png", - "hash": "13753539968611981470" - }, - { - "file": "packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-anatomy.png", - "hash": "18087276809080644822" - }, - { - "file": "packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-rtl.png", - "hash": "10178174469976600135" - }, - { - "file": "packages/react-components/react-spinbutton/etc/react-spinbutton.api.md", - "hash": "18118992056737806686" - }, - { - "file": "packages/react-components/react-spinbutton/jest.config.js", - "hash": "5038573041434583937" - }, - { - "file": "packages/react-components/react-spinbutton/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-spinbutton/package.json", - "hash": "17080806880489308285", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-field", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/react-label", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-spinbutton/project.json", - "hash": "6379772465996644580" - }, - { - "file": "packages/react-components/react-spinbutton/src/SpinButton.ts", - "hash": "10602772673075263099" - }, - { - "file": "packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.test.tsx", - "hash": "2529374188480590348" - }, - { - "file": "packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.tsx", - "hash": "788511591351181259" - }, - { - "file": "packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.types.ts", - "hash": "3207195866649797051" - }, - { - "file": "packages/react-components/react-spinbutton/src/components/SpinButton/index.ts", - "hash": "5065932832394680212" - }, - { - "file": "packages/react-components/react-spinbutton/src/components/SpinButton/renderSpinButton.tsx", - "hash": "17782965779459944100" - }, - { - "file": "packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButton.tsx", - "hash": "10465556537581682721" - }, - { - "file": "packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButtonStyles.styles.ts", - "hash": "15271342305082281981" - }, - { - "file": "packages/react-components/react-spinbutton/src/index.ts", - "hash": "2388138643531843309" - }, - { - "file": "packages/react-components/react-spinbutton/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-spinbutton/src/utils/clamp.test.ts", - "hash": "3964669773551288141" - }, - { - "file": "packages/react-components/react-spinbutton/src/utils/clamp.ts", - "hash": "10177435754315781459" - }, - { - "file": "packages/react-components/react-spinbutton/src/utils/getBound.test.ts", - "hash": "18120932611634343469" - }, - { - "file": "packages/react-components/react-spinbutton/src/utils/getBound.ts", - "hash": "515581470280674119" - }, - { - "file": "packages/react-components/react-spinbutton/src/utils/index.ts", - "hash": "16890875363210734367" - }, - { - "file": "packages/react-components/react-spinbutton/src/utils/precision.test.ts", - "hash": "798415561525743906" - }, - { - "file": "packages/react-components/react-spinbutton/src/utils/precision.ts", - "hash": "16903292310337878641" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonAccessibility.stories.mdx", - "hash": "1503270725368707028" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonAppearance.stories.tsx", - "hash": "13092748199560825495" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonBestPractices.md", - "hash": "4783838838611473205" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonBounds.stories.tsx", - "hash": "7858054212332861516" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonControlled.stories.tsx", - "hash": "207977934062393475" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDefault.stories.tsx", - "hash": "1013817923674569921" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDescription.md", - "hash": "13202291952905790897" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDisabled.stories.tsx", - "hash": "4734117348533727561" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDisplayValue.stories.tsx", - "hash": "10424051550481513902" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonSize.stories.tsx", - "hash": "1604059465229598492" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonStep.stories.tsx", - "hash": "231949000919450310" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonUncontrolled.stories.tsx", - "hash": "16327167484923159262" - }, - { - "file": "packages/react-components/react-spinbutton/stories/SpinButton/index.stories.tsx", - "hash": "16340081334536213963" - }, - { - "file": "packages/react-components/react-spinbutton/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-spinbutton/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-spinbutton/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-dangerjs": [ - { - "file": "scripts/dangerjs/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/dangerjs/jest.config.js", - "hash": "15039385487328949367" - }, - { - "file": "scripts/dangerjs/package.json", - "hash": "14603021980298066337", - "deps": ["@fluentui/scripts-monorepo", "@fluentui/scripts-utils"] - }, - { - "file": "scripts/dangerjs/project.json", - "hash": "13321965326957637416" - }, - { - "file": "scripts/dangerjs/src/api.ts", - "hash": "12918818137725486638" - }, - { - "file": "scripts/dangerjs/src/checkChangelog.ts", - "hash": "15268879974615931016" - }, - { - "file": "scripts/dangerjs/src/checkStorybookVersions.ts", - "hash": "3640144866496664527" - }, - { - "file": "scripts/dangerjs/src/detectNonApprovedDependencies/approvedPackages.ts", - "hash": "2479532893562050074" - }, - { - "file": "scripts/dangerjs/src/detectNonApprovedDependencies/index.ts", - "hash": "1357749020419503428" - }, - { - "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/getFailedPackageVersionConstraints.ts", - "hash": "1282063424853297229" - }, - { - "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/getRuntimeDependencies.ts", - "hash": "14851787653196049793" - }, - { - "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/getVersionConstraints.ts", - "hash": "11852620236094004296" - }, - { - "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/index.ts", - "hash": "2091566142952858380" - }, - { - "file": "scripts/dangerjs/src/detectNonApprovedDependencies/utils/packageNameUtils.ts", - "hash": "17117849726828671038" - }, - { - "file": "scripts/dangerjs/src/index.js", - "hash": "8330967872875689137" - }, - { - "file": "scripts/dangerjs/src/types.ts", - "hash": "7630856845524243144" - }, - { - "file": "scripts/dangerjs/src/utils.ts", - "hash": "17556742610557548328" - }, - { - "file": "scripts/dangerjs/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/dangerjs/tsconfig.lib.json", - "hash": "15222053984038389170" - }, - { - "file": "scripts/dangerjs/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/react-aria": [ - { - "file": "packages/react-components/react-aria/.babelrc.json", - "hash": "496283691468190474" - }, - { - "file": "packages/react-components/react-aria/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-aria/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-aria/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-aria/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-aria/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-aria/CHANGELOG.json", - "hash": "5002040490185146431" - }, - { - "file": "packages/react-components/react-aria/CHANGELOG.md", - "hash": "9845108113925652540" - }, - { - "file": "packages/react-components/react-aria/LICENSE", - "hash": "7531954833459612349" - }, - { - "file": "packages/react-components/react-aria/README.md", - "hash": "14375212147544522453" - }, - { - "file": "packages/react-components/react-aria/bundle-size/Default.fixture.js", - "hash": "11831374877528803617" - }, - { - "file": "packages/react-components/react-aria/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-aria/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-aria/docs/Spec.md", - "hash": "14175263881684879744" - }, - { - "file": "packages/react-components/react-aria/etc/react-aria.api.md", - "hash": "17480600883303618628" - }, - { - "file": "packages/react-components/react-aria/jest.config.js", - "hash": "5668187947540498334" - }, - { - "file": "packages/react-components/react-aria/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-aria/package.json", - "hash": "11413694720494713369", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-shared-contexts", - "@fluentui/react-utilities", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-aria/project.json", - "hash": "6597091360640365171" - }, - { - "file": "packages/react-components/react-aria/src/activedescendant/constants.ts", - "hash": "2666008086063449551" - }, - { - "file": "packages/react-components/react-aria/src/activedescendant/index.ts", - "hash": "9186068050361306869" - }, - { - "file": "packages/react-components/react-aria/src/activedescendant/types.ts", - "hash": "17616275751509811525" - }, - { - "file": "packages/react-components/react-aria/src/activedescendant/useActiveDescendant.ts", - "hash": "5696088335642593312" - }, - { - "file": "packages/react-components/react-aria/src/activedescendant/useActivedescendant.test.tsx", - "hash": "10147830263085325805" - }, - { - "file": "packages/react-components/react-aria/src/activedescendant/useOptionWalker.ts", - "hash": "17164705128178287278" - }, - { - "file": "packages/react-components/react-aria/src/button/index.ts", - "hash": "10853837358746446063" - }, - { - "file": "packages/react-components/react-aria/src/button/types.ts", - "hash": "3047686119329172592" - }, - { - "file": "packages/react-components/react-aria/src/button/useARIAButtonProps.test.tsx", - "hash": "10819497450726165514" - }, - { - "file": "packages/react-components/react-aria/src/button/useARIAButtonProps.ts", - "hash": "724969559128884261" - }, - { - "file": "packages/react-components/react-aria/src/button/useARIAButtonShorthand.test.tsx", - "hash": "12952904029879209806" - }, - { - "file": "packages/react-components/react-aria/src/button/useARIAButtonShorthand.ts", - "hash": "14643602163518543160" - }, - { - "file": "packages/react-components/react-aria/src/index.ts", - "hash": "1321370508676472973" - }, - { - "file": "packages/react-components/react-aria/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-aria/tsconfig.lib.json", - "hash": "2330431448937249608" - }, - { - "file": "packages/react-components/react-aria/tsconfig.spec.json", - "hash": "13916911291935990408" - } - ], - "@fluentui/styles": [ - { - "file": "packages/fluentui/styles/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/styles/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/styles/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/styles/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/styles/jest.config.js", - "hash": "15647476349875375422" - }, - { - "file": "packages/fluentui/styles/package.json", - "hash": "11071553275048489771", - "deps": [ - "npm:@babel/runtime", - "npm:csstype", - "npm:lodash", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:lerna-alias" - ] - }, - { - "file": "packages/fluentui/styles/project.json", - "hash": "17384367070850273645" - }, - { - "file": "packages/fluentui/styles/src/callable.ts", - "hash": "14898759116337720669" - }, - { - "file": "packages/fluentui/styles/src/createTheme.ts", - "hash": "12329304854575333027" - }, - { - "file": "packages/fluentui/styles/src/debugEnabled.ts", - "hash": "260520645944752742" - }, - { - "file": "packages/fluentui/styles/src/deepmerge.ts", - "hash": "2446057837788726932" - }, - { - "file": "packages/fluentui/styles/src/index.ts", - "hash": "13730197638323966220" - }, - { - "file": "packages/fluentui/styles/src/mergeThemes.ts", - "hash": "16347750142281054157" - }, - { - "file": "packages/fluentui/styles/src/objectKeysToValues.ts", - "hash": "7930115653642188401" - }, - { - "file": "packages/fluentui/styles/src/types.ts", - "hash": "3955806072566441450" - }, - { - "file": "packages/fluentui/styles/src/withDebugId.ts", - "hash": "6145826506046863525" - }, - { - "file": "packages/fluentui/styles/test/deepmerge-test.ts", - "hash": "16642574076278537669" - }, - { - "file": "packages/fluentui/styles/test/mergeThemes/mergeComponentStyles-test.ts", - "hash": "98280428890954350" - }, - { - "file": "packages/fluentui/styles/test/mergeThemes/mergeComponentVariables-test.ts", - "hash": "13200727275279230669" - }, - { - "file": "packages/fluentui/styles/test/mergeThemes/mergeFontFaces-test.ts", - "hash": "16551537175877227090" - }, - { - "file": "packages/fluentui/styles/test/mergeThemes/mergeSiteVariables-test.ts", - "hash": "10628393023615026415" - }, - { - "file": "packages/fluentui/styles/test/mergeThemes/mergeStaticStyles-test.ts", - "hash": "6893282198271389648" - }, - { - "file": "packages/fluentui/styles/test/mergeThemes/mergeThemeVariables-test.ts", - "hash": "10108992874118614309" - }, - { - "file": "packages/fluentui/styles/test/mergeThemes/mergeThemes-test.ts", - "hash": "2201778227520253577" - }, - { - "file": "packages/fluentui/styles/test/objectKeysToValues-test.ts", - "hash": "13631092081735629577" - }, - { - "file": "packages/fluentui/styles/tsconfig.json", - "hash": "6941511733406172219" - } - ], - "@fluentui/react-accordion": [ - { - "file": "packages/react-components/react-accordion/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-accordion/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-accordion/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-accordion/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-accordion/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-accordion/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-accordion/CHANGELOG.json", - "hash": "6704438454373788221" - }, - { - "file": "packages/react-components/react-accordion/CHANGELOG.md", - "hash": "6697478859424030169" - }, - { - "file": "packages/react-components/react-accordion/LICENSE", - "hash": "10515969215667611391" - }, - { - "file": "packages/react-components/react-accordion/README.md", - "hash": "35811706167284032" - }, - { - "file": "packages/react-components/react-accordion/bundle-size/Accordion.fixture.js", - "hash": "13025293423793119149" - }, - { - "file": "packages/react-components/react-accordion/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-accordion/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-accordion/docs/Spec.md", - "hash": "6652265893767303498" - }, - { - "file": "packages/react-components/react-accordion/etc/react-accordion.api.md", - "hash": "11114769121820098904" - }, - { - "file": "packages/react-components/react-accordion/jest.config.js", - "hash": "10085574794168449847" - }, - { - "file": "packages/react-components/react-accordion/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-accordion/package.json", - "hash": "5342481591420806101", - "deps": [ - "@fluentui/react-aria", - "@fluentui/react-context-selector", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:scheduler" - ] - }, - { - "file": "packages/react-components/react-accordion/project.json", - "hash": "11440399097110510166" - }, - { - "file": "packages/react-components/react-accordion/src/Accordion.ts", - "hash": "16785143114878803654" - }, - { - "file": "packages/react-components/react-accordion/src/AccordionHeader.ts", - "hash": "1289798043912099911" - }, - { - "file": "packages/react-components/react-accordion/src/AccordionItem.ts", - "hash": "13880495646436759837" - }, - { - "file": "packages/react-components/react-accordion/src/AccordionPanel.ts", - "hash": "2438131819937850194" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/Accordion.test.tsx", - "hash": "16976759395372490307" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/Accordion.tsx", - "hash": "15197950880235884291" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/Accordion.types.ts", - "hash": "15153786169925228028" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/__snapshots__/Accordion.test.tsx.snap", - "hash": "5440086178578092926" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/index.ts", - "hash": "17015962739051035664" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/renderAccordion.tsx", - "hash": "6544593693425754680" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordion.test.ts", - "hash": "12537166421869993251" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordion.ts", - "hash": "10592401544867876413" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordionContextValues.test.ts", - "hash": "10384572688653114691" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordionContextValues.ts", - "hash": "10925599516232107360" - }, - { - "file": "packages/react-components/react-accordion/src/components/Accordion/useAccordionStyles.styles.ts", - "hash": "12739953739489862888" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.test.tsx", - "hash": "5484094921469231221" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.tsx", - "hash": "4502134863578619717" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.types.ts", - "hash": "5748973260493932389" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/__snapshots__/AccordionHeader.test.tsx.snap", - "hash": "11481347373076612900" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/index.ts", - "hash": "11564966910913854684" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/renderAccordionHeader.tsx", - "hash": "6656884323774064240" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeader.test.tsx", - "hash": "18006183417930942098" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeader.tsx", - "hash": "4234484994424947618" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderContextValues.test.ts", - "hash": "12191753425986561264" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderContextValues.ts", - "hash": "8394955758226906343" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderStyles.styles.ts", - "hash": "7258185454670979521" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.test.tsx", - "hash": "5425981379802688695" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.tsx", - "hash": "2321336620717464241" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.types.ts", - "hash": "14496451663354119304" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/__snapshots__/AccordionItem.test.tsx.snap", - "hash": "64784876023442588" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/index.ts", - "hash": "6963096868193264995" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/renderAccordionItem.tsx", - "hash": "17207020838960006677" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItem.ts", - "hash": "2809714543727973223" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemContextValues.test.ts", - "hash": "15386535776538766060" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemContextValues.ts", - "hash": "13547940835645645091" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemStyles.styles.ts", - "hash": "12158531883424991447" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.test.tsx", - "hash": "7403067348982790520" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.tsx", - "hash": "12495705955231481459" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.types.ts", - "hash": "7103168862077477490" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionPanel/__snapshots__/AccordionPanel.test.tsx.snap", - "hash": "10697015544631848634" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionPanel/index.ts", - "hash": "11587887317947469666" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionPanel/renderAccordionPanel.tsx", - "hash": "7472039993286476875" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionPanel/useAccordionPanel.ts", - "hash": "6080867399999950807" - }, - { - "file": "packages/react-components/react-accordion/src/components/AccordionPanel/useAccordionPanelStyles.styles.ts", - "hash": "6138244921461656114" - }, - { - "file": "packages/react-components/react-accordion/src/contexts/accordion.ts", - "hash": "16736880611846345591" - }, - { - "file": "packages/react-components/react-accordion/src/contexts/accordionHeader.ts", - "hash": "15693653098769319600" - }, - { - "file": "packages/react-components/react-accordion/src/contexts/accordionItem.ts", - "hash": "9005618419480165756" - }, - { - "file": "packages/react-components/react-accordion/src/index.ts", - "hash": "11836421926908868045" - }, - { - "file": "packages/react-components/react-accordion/src/testing/isConformant.ts", - "hash": "14447437808059758114" - }, - { - "file": "packages/react-components/react-accordion/src/testing/mockContextValue.ts", - "hash": "14895647593596771238" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionCollapsible.stories.tsx", - "hash": "4629635531241842185" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionControlled.stories.tsx", - "hash": "13597522106183020319" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionDefault.stories.tsx", - "hash": "8772977066618335771" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionDescription.md", - "hash": "10120928891625568491" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionDisabled.stories.tsx", - "hash": "9121740621629891803" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionExpandIcon.stories.tsx", - "hash": "10117909561030074085" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionExpandIconPosition.stories.tsx", - "hash": "15839297606794072409" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionHeaders.stories.tsx", - "hash": "17224421090665489535" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionInline.stories.tsx", - "hash": "2053407323239713367" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionMultiple.stories.tsx", - "hash": "3384058409854640541" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionNavigation.stories.tsx", - "hash": "14976414457374632634" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionOpenItems.stories.tsx", - "hash": "7862328611087952935" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionSizes.stories.tsx", - "hash": "3647343044623226526" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/AccordionWithIcon.stories.tsx", - "hash": "9331458468679791705" - }, - { - "file": "packages/react-components/react-accordion/stories/Accordion/index.stories.tsx", - "hash": "15027356603113973585" - }, - { - "file": "packages/react-components/react-accordion/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-accordion/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-accordion/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/scripts-prettier": [ - { - "file": "scripts/prettier/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/prettier/jest.config.js", - "hash": "12223295979119876176" - }, - { - "file": "scripts/prettier/package.json", - "hash": "5291951655628615430", - "deps": ["@fluentui/scripts-monorepo"] - }, - { - "file": "scripts/prettier/project.json", - "hash": "6167879023111685572" - }, - { - "file": "scripts/prettier/src/index.d.ts", - "hash": "14316083377466315843" - }, - { - "file": "scripts/prettier/src/index.js", - "hash": "10984052681773998567" - }, - { - "file": "scripts/prettier/src/prettier-helpers.js", - "hash": "14195801102266884159" - }, - { - "file": "scripts/prettier/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/prettier/tsconfig.lib.json", - "hash": "15222053984038389170" - }, - { - "file": "scripts/prettier/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/scripts-webpack": [ - { - "file": "scripts/webpack/.eslintrc.json", - "hash": "6682885118106241118" - }, - { - "file": "scripts/webpack/README.md", - "hash": "4067032978229351632" - }, - { - "file": "scripts/webpack/jest.config.js", - "hash": "14139019284460164056" - }, - { - "file": "scripts/webpack/package.json", - "hash": "9113209827864624699", - "deps": ["@fluentui/scripts-monorepo", "@fluentui/scripts-utils"] - }, - { - "file": "scripts/webpack/project.json", - "hash": "8527254449760351839" - }, - { - "file": "scripts/webpack/src/getResolveAlias.js", - "hash": "15182557477202690456" - }, - { - "file": "scripts/webpack/src/index.d.ts", - "hash": "10952550470895145852" - }, - { - "file": "scripts/webpack/src/index.js", - "hash": "10843399883229391707" - }, - { - "file": "scripts/webpack/src/storybook-webpack.config.js", - "hash": "17136657291484397150" - }, - { - "file": "scripts/webpack/src/webpack-resources.js", - "hash": "10289861416065351518" - }, - { - "file": "scripts/webpack/tsconfig.json", - "hash": "2808213717553039801" - }, - { - "file": "scripts/webpack/tsconfig.lib.json", - "hash": "7589346801816210336" - }, - { - "file": "scripts/webpack/tsconfig.spec.json", - "hash": "16242416785763058919" - } - ], - "@fluentui/local-sandbox": [ - { - "file": "packages/fluentui/local-sandbox/.browserslistrc", - "hash": "600685962376487384" - }, - { - "file": "packages/fluentui/local-sandbox/README.md", - "hash": "11541093473991115874" - }, - { - "file": "packages/fluentui/local-sandbox/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/local-sandbox/package.json", - "hash": "15957460845464361736", - "deps": ["@fluentui/react-northstar", "@fluentui/scripts-babel"] - }, - { - "file": "packages/fluentui/local-sandbox/project.json", - "hash": "8676907972640714240" - }, - { - "file": "packages/fluentui/local-sandbox/public/index.html", - "hash": "11568775693172797411" - }, - { - "file": "packages/fluentui/local-sandbox/server.js", - "hash": "18020281195852225446" - }, - { - "file": "packages/fluentui/local-sandbox/src/index.tsx", - "hash": "14096238598856045997" - }, - { - "file": "packages/fluentui/local-sandbox/tsconfig.json", - "hash": "12941930694457671903" - }, - { - "file": "packages/fluentui/local-sandbox/webpack.config.js", - "hash": "4777308610290967055" - } - ], - "@fluentui/react-hooks": [ - { - "file": "packages/react-hooks/.eslintrc.json", - "hash": "7047059270393627238" - }, - { - "file": "packages/react-hooks/.npmignore", - "hash": "47056201363133096" - }, - { - "file": "packages/react-hooks/CHANGELOG.json", - "hash": "6903353318491270734" - }, - { - "file": "packages/react-hooks/CHANGELOG.md", - "hash": "4373204522688068180" - }, - { - "file": "packages/react-hooks/LICENSE", - "hash": "8744700261631581284" - }, - { - "file": "packages/react-hooks/README.md", - "hash": "9078140562214112263" - }, - { - "file": "packages/react-hooks/config/api-extractor.json", - "hash": "10799316696017961032" - }, - { - "file": "packages/react-hooks/config/tests.js", - "hash": "2484785926023527183" - }, - { - "file": "packages/react-hooks/etc/react-hooks.api.md", - "hash": "14890692399752787928" - }, - { - "file": "packages/react-hooks/jest.config.js", - "hash": "12858682342254308337" - }, - { - "file": "packages/react-hooks/just.config.ts", - "hash": "10393370776333958822" - }, - { - "file": "packages/react-hooks/package.json", - "hash": "6276994753942711587", - "deps": [ - "@fluentui/react-window-provider", - "@fluentui/set-version", - "@fluentui/utilities", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/test-utilities", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-jest", - "@fluentui/scripts-tasks", - "@fluentui/scripts-webpack", - "npm:@types/react", - "npm:react" - ] - }, - { - "file": "packages/react-hooks/project.json", - "hash": "6754036360657165220" - }, - { - "file": "packages/react-hooks/src/index.ts", - "hash": "8812997253771358596" - }, - { - "file": "packages/react-hooks/src/testUtilities.tsx", - "hash": "15657115562759724898" - }, - { - "file": "packages/react-hooks/src/useAsync.ts", - "hash": "1414020915847618581" - }, - { - "file": "packages/react-hooks/src/useBoolean.test.tsx", - "hash": "10482234089618244690" - }, - { - "file": "packages/react-hooks/src/useBoolean.ts", - "hash": "16859819035326470427" - }, - { - "file": "packages/react-hooks/src/useConst.test.tsx", - "hash": "6312687103484766497" - }, - { - "file": "packages/react-hooks/src/useConst.ts", - "hash": "10777778552058882248" - }, - { - "file": "packages/react-hooks/src/useConstCallback.test.tsx", - "hash": "16043395328514584024" - }, - { - "file": "packages/react-hooks/src/useConstCallback.ts", - "hash": "1361219448301389173" - }, - { - "file": "packages/react-hooks/src/useControllableValue.test.tsx", - "hash": "5762110490075486825" - }, - { - "file": "packages/react-hooks/src/useControllableValue.ts", - "hash": "6509890426237455715" - }, - { - "file": "packages/react-hooks/src/useEventCallback.test.ts", - "hash": "17051523471062309998" - }, - { - "file": "packages/react-hooks/src/useEventCallback.ts", - "hash": "11398682938274370856" - }, - { - "file": "packages/react-hooks/src/useForceUpdate.test.tsx", - "hash": "888582721771798845" - }, - { - "file": "packages/react-hooks/src/useForceUpdate.ts", - "hash": "2712133802208231920" - }, - { - "file": "packages/react-hooks/src/useId.test.tsx", - "hash": "15852945873220308736" - }, - { - "file": "packages/react-hooks/src/useId.ts", - "hash": "783247756396774564" - }, - { - "file": "packages/react-hooks/src/useMergedRefs.test.tsx", - "hash": "10700249183639223030" - }, - { - "file": "packages/react-hooks/src/useMergedRefs.ts", - "hash": "15582394188849760782" - }, - { - "file": "packages/react-hooks/src/useMount.test.tsx", - "hash": "14206136109322867617" - }, - { - "file": "packages/react-hooks/src/useMount.ts", - "hash": "18329731702911365804" - }, - { - "file": "packages/react-hooks/src/useMountSync.test.tsx", - "hash": "11189345965072550047" - }, - { - "file": "packages/react-hooks/src/useMountSync.ts", - "hash": "9299027787812325818" - }, - { - "file": "packages/react-hooks/src/useOnEvent.ts", - "hash": "17052043779489947676" - }, - { - "file": "packages/react-hooks/src/usePrevious.test.tsx", - "hash": "9069046424079428945" - }, - { - "file": "packages/react-hooks/src/usePrevious.ts", - "hash": "12310076477386868431" - }, - { - "file": "packages/react-hooks/src/useRefEffect.test.tsx", - "hash": "2259278510254299602" - }, - { - "file": "packages/react-hooks/src/useRefEffect.ts", - "hash": "17383740752291583544" - }, - { - "file": "packages/react-hooks/src/useSetInterval.test.tsx", - "hash": "13864624324407150233" - }, - { - "file": "packages/react-hooks/src/useSetInterval.ts", - "hash": "18010635980916199311" - }, - { - "file": "packages/react-hooks/src/useSetTimeout.test.tsx", - "hash": "13604802953379833692" - }, - { - "file": "packages/react-hooks/src/useSetTimeout.ts", - "hash": "762592617994036615" - }, - { - "file": "packages/react-hooks/src/useTarget.ts", - "hash": "12682105242997500082" - }, - { - "file": "packages/react-hooks/src/useUnmount.test.tsx", - "hash": "12554573688970283861" - }, - { - "file": "packages/react-hooks/src/useUnmount.ts", - "hash": "14158102226970174047" - }, - { - "file": "packages/react-hooks/src/useWarnings.test.tsx", - "hash": "11910066874523431865" - }, - { - "file": "packages/react-hooks/src/useWarnings.ts", - "hash": "10008379029190216816" - }, - { - "file": "packages/react-hooks/src/version.ts", - "hash": "5995781004115751505" - }, - { - "file": "packages/react-hooks/tsconfig.json", - "hash": "15516134720009168635" - }, - { - "file": "packages/react-hooks/webpack.config.js", - "hash": "5701859674302912997" - } - ], - "@fluentui/accessibility": [ - { - "file": "packages/fluentui/accessibility/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/accessibility/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/accessibility/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/accessibility/gulpfile.ts", - "hash": "176942506073220361" - }, - { - "file": "packages/fluentui/accessibility/jest.config.js", - "hash": "17874205282351665656" - }, - { - "file": "packages/fluentui/accessibility/package.json", - "hash": "1428119293457422413", - "deps": [ - "npm:@babel/runtime", - "npm:lodash", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:lerna-alias" - ] - }, - { - "file": "packages/fluentui/accessibility/project.json", - "hash": "2397489462938001575" - }, - { - "file": "packages/fluentui/accessibility/src/attributes.ts", - "hash": "6126580553423144593" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Accordion/accordionBehavior.ts", - "hash": "17324611406861834071" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Accordion/accordionContentBehavior.ts", - "hash": "12181381870618121400" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Accordion/accordionTitleBehavior.ts", - "hash": "17796073271152580" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Alert/alertBaseBehavior.ts", - "hash": "15503638703161663370" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Alert/alertBehavior.ts", - "hash": "14876942720104755676" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Alert/alertWarningBehavior.ts", - "hash": "16670372342351572102" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Attachment/attachmentBehavior.ts", - "hash": "14711350566311191339" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Box/indicatorBehavior.ts", - "hash": "4710211886869035027" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbBehavior.ts", - "hash": "6624882585753288771" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbDividerBehavior.ts", - "hash": "15345187736983796585" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbItemBehavior.ts", - "hash": "2474998566450288440" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Button/buttonBehavior.ts", - "hash": "4436560634489457374" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Button/buttonGroupBehavior.ts", - "hash": "15604332073167090358" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Button/toggleButtonBehavior.ts", - "hash": "6341598390491948665" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Card/cardBehavior.ts", - "hash": "7147184136409471442" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Card/cardChildrenFocusableBehavior.ts", - "hash": "1480635677105411390" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Card/cardFocusableBehavior.ts", - "hash": "8581885383405449382" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Card/cardSelectableBehavior.ts", - "hash": "9823225621542171085" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Card/cardsContainerBehavior.ts", - "hash": "8399647585268892796" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Carousel/carouselBehavior.ts", - "hash": "16735531794753117694" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Carousel/carouselItemBehavior.ts", - "hash": "666533224599054599" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Chat/chatBehavior.ts", - "hash": "10307880287350282214" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Chat/chatMessageBehavior.ts", - "hash": "14062608507289014893" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Checkbox/checkboxBehavior.ts", - "hash": "5573660540498990" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Common/hiddenComponentBehavior.ts", - "hash": "8752565833665693320" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerBehavior.ts", - "hash": "16681584818965517163" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarBehavior.ts", - "hash": "6694622893463831583" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarCellBehavior.ts", - "hash": "15743873885274486004" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarCellButtonBehavior.ts", - "hash": "14811251142968646419" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarGridBehavior.ts", - "hash": "436589778918574077" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarGridRowBehavior.ts", - "hash": "11408415070483512748" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarHeaderBehavior.ts", - "hash": "11583385781059816627" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Dialog/dialogBehavior.ts", - "hash": "3238470165136100361" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Dropdown/dropdownSelectedItemBehavior.ts", - "hash": "110616840354724677" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Embed/embedBehavior.ts", - "hash": "6943112027252523091" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Form/formFieldBehavior.tsx", - "hash": "8410832565631631431" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Grid/gridBehavior.ts", - "hash": "4359446512837990017" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Grid/gridHorizontalBehavior.ts", - "hash": "15843361779325307873" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Icon/iconBehavior.ts", - "hash": "2207992782795803718" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Image/imageBehavior.ts", - "hash": "13577625865581953782" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Input/inputBehavior.ts", - "hash": "1320238384030157432" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/List/basicListBehavior.ts", - "hash": "12896324333351505002" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/List/basicListItemBehavior.ts", - "hash": "5678163359671203676" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/List/listBehavior.ts", - "hash": "15868999383422317488" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/List/listItemBehavior.ts", - "hash": "17611607068265691873" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/List/navigableListBehavior.ts", - "hash": "1138383627412710723" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/List/navigableListItemBehavior.ts", - "hash": "8352293840311308214" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/List/selectableListBehavior.ts", - "hash": "4590781714857354592" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/List/selectableListItemBehavior.ts", - "hash": "3143195808065744213" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Loader/loaderBehavior.ts", - "hash": "13855327585064394709" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Menu/menuBehavior.ts", - "hash": "14678079248792887047" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Menu/menuDividerBehavior.ts", - "hash": "16474793021650517124" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Menu/menuItemBehavior.ts", - "hash": "7179572448282857084" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Menu/submenuBehavior.ts", - "hash": "13096512577056529572" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/MenuButton/menuButtonBehavior.ts", - "hash": "5038428572466939489" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillActionBehavior.ts", - "hash": "7155328372028007540" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillBehavior.ts", - "hash": "11077768158910457625" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillGroupBehavior.ts", - "hash": "15643334338602012397" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillIconBehavior.ts", - "hash": "1320149294645573451" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillImageBehavior.ts", - "hash": "17028543991514093621" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Pill/pillOptionBehavior.ts", - "hash": "9922794901762647086" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Popup/popupBehavior.ts", - "hash": "14955898547553867919" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Radio/radioGroupBehavior.ts", - "hash": "13697404999060333401" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Radio/radioGroupItemBehavior.ts", - "hash": "10842489646198712586" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Slider/sliderBehavior.ts", - "hash": "16619822794642755440" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/SplitButton/splitButtonBehavior.ts", - "hash": "10498336736474909429" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Status/statusBehavior.ts", - "hash": "15095623654951310160" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tab/tabBehavior.ts", - "hash": "13343668174251408028" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tab/tabListBehavior.ts", - "hash": "3649750043955821807" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/gridCellBehavior.ts", - "hash": "16115154876003545072" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/gridCellMultipleFocusableBehavior.ts", - "hash": "8205386212064830567" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/gridCellWithFocusableElementBehavior.ts", - "hash": "11169401865825718455" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/gridHeaderCellBehavior.ts", - "hash": "10316613685585593548" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/gridHeaderRowBehavior.ts", - "hash": "14353233905207834678" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/gridNestedBehavior.ts", - "hash": "5223927548405850610" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/gridRowBehavior.ts", - "hash": "11534643350766657695" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/gridRowNestedBehavior.ts", - "hash": "6036028543837403233" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/tableBehavior.ts", - "hash": "15734694712075449666" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/tableCellBehavior.ts", - "hash": "247888810071717795" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/tableHeaderCellBehavior.ts", - "hash": "8543257944544197065" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Table/tableRowBehavior.ts", - "hash": "13529178146159239947" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/TextArea/textAreaBehavior.ts", - "hash": "6844501444659162474" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/menuAsToolbarBehavior.ts", - "hash": "1168779870270907687" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/menuItemAsToolbarButtonBehavior.ts", - "hash": "13604841550587544122" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarBehavior.ts", - "hash": "10375286365453415016" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarItemBehavior.ts", - "hash": "3223369498067500941" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuBehavior.ts", - "hash": "14285729647871437262" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuDividerBehavior.ts", - "hash": "15861708930917223847" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemBehavior.ts", - "hash": "10779092372332843312" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemCheckboxBehavior.ts", - "hash": "12585360257044015499" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemRadioBehavior.ts", - "hash": "14398017813178023378" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuRadioGroupBehavior.ts", - "hash": "13209139658156443905" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuRadioGroupWrapperBehavior.ts", - "hash": "10315186287981664781" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarRadioGroupBehavior.ts", - "hash": "14423838109163982625" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarRadioGroupItemBehavior.ts", - "hash": "4945835072624273403" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tooltip/tooltipAsDescriptionBehavior.ts", - "hash": "6750563588637322290" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tooltip/tooltipAsLabelBehavior.ts", - "hash": "1463731405657391158" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeAsListBehavior.ts", - "hash": "6548396450394702602" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeAsListboxBehavior.ts", - "hash": "15994951088316249662" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeBehavior.ts", - "hash": "16075950710176999397" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeItemAsListItemBehavior.ts", - "hash": "2754809114498177875" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeItemAsOptionBehavior.ts", - "hash": "2738733369485414781" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeItemBehavior.ts", - "hash": "853033884357985145" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeTitleAsListItemTitleBehavior.ts", - "hash": "8550309938789182057" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeTitleAsOptionBehavior.ts", - "hash": "4750004437661185204" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Tree/treeTitleBehavior.ts", - "hash": "1279045353923030959" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/Video/videoBehavior.ts", - "hash": "17435873847915410399" - }, - { - "file": "packages/fluentui/accessibility/src/behaviors/index.ts", - "hash": "10592048789013221274" - }, - { - "file": "packages/fluentui/accessibility/src/focusZone/types.ts", - "hash": "8290525201717420413" - }, - { - "file": "packages/fluentui/accessibility/src/index.ts", - "hash": "17846023419384888294" - }, - { - "file": "packages/fluentui/accessibility/src/keyboard-key/codes.ts", - "hash": "8066867947356659420" - }, - { - "file": "packages/fluentui/accessibility/src/keyboard-key/index.test.ts", - "hash": "11586213541177350052" - }, - { - "file": "packages/fluentui/accessibility/src/keyboard-key/index.ts", - "hash": "15545154138089162926" - }, - { - "file": "packages/fluentui/accessibility/src/types.ts", - "hash": "943053640310977860" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/accordionTitleBehavior-test.tsx", - "hash": "8591737914797308393" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/alertBehavior-test.tsx", - "hash": "3800300251770286795" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/behavior-test.tsx", - "hash": "16838078441122709130" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/caroselBehavior-test.tsx", - "hash": "2681040911353087361" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/caroseltemBehavior-test.tsx", - "hash": "12757169696399672513" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/dialogBehavior-test.tsx", - "hash": "7702041866389015810" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/gridRowBehavior-test.tsx", - "hash": "12429407748112289925" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/listBehavior-test.tsx", - "hash": "15933862797684258290" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/listItemBehavior-test.tsx", - "hash": "6331805374367020114" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/loaderBehavior-test.tsx", - "hash": "9965769228119512081" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/menuButtonBehavior-test.tsx", - "hash": "3474631202858190529" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/popupBehavior-test.tsx", - "hash": "4455620227373588680" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/sliderBehavior-test.ts", - "hash": "1496488828314145704" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/splitButtonBehavior-test.tsx", - "hash": "5237191764740671671" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/tableRowBehavior-test.tsx", - "hash": "13911979183562314470" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/testDefinitions.ts", - "hash": "18350988259364493242" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/testHelper.tsx", - "hash": "13187273701176546577" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/treeItemAsListItemBehavior-test.tsx", - "hash": "3914609384428714413" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/treeItemAsOptionBehavior-test.tsx", - "hash": "9405458900547864979" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/treeItemBehavior-test.tsx", - "hash": "16616006821624562727" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/treeTitleAsListItemTitleBehavior-test.tsx", - "hash": "10422237936892479508" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/treeTitleAsOptionBehavior-test.tsx", - "hash": "14002345569026863398" - }, - { - "file": "packages/fluentui/accessibility/test/behaviors/treeTitleBehavior-test.tsx", - "hash": "17773411748774405789" - }, - { - "file": "packages/fluentui/accessibility/tsconfig.json", - "hash": "5873357200515143860" - } - ], - "@fluentui/react-toast": [ - { - "file": "packages/react-components/react-toast/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-toast/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-toast/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-toast/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-toast/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-toast/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-toast/CHANGELOG.json", - "hash": "10682980803074083997" - }, - { - "file": "packages/react-components/react-toast/CHANGELOG.md", - "hash": "81747637200741746" - }, - { - "file": "packages/react-components/react-toast/LICENSE", - "hash": "16949844902912624644" - }, - { - "file": "packages/react-components/react-toast/README.md", - "hash": "5200240906534650137" - }, - { - "file": "packages/react-components/react-toast/bundle-size/Toast.fixture.js", - "hash": "6560991872473022341" - }, - { - "file": "packages/react-components/react-toast/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-toast/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-toast/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-toast/docs/Spec.md", - "hash": "5531735670500748841" - }, - { - "file": "packages/react-components/react-toast/etc/react-toast.api.md", - "hash": "17225121659189868810" - }, - { - "file": "packages/react-components/react-toast/jest.config.js", - "hash": "15944780785972716927" - }, - { - "file": "packages/react-components/react-toast/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-toast/package.json", - "hash": "9896839657513933603", - "deps": [ - "npm:react-transition-group", - "@fluentui/keyboard-keys", - "@fluentui/react-aria", - "npm:@fluentui/react-icons", - "@fluentui/react-jsx-runtime", - "@fluentui/react-portal", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-toast/project.json", - "hash": "13521513962168744879" - }, - { - "file": "packages/react-components/react-toast/src/AriaLive.ts", - "hash": "5934469984273040875" - }, - { - "file": "packages/react-components/react-toast/src/Toast.ts", - "hash": "15307374811813973691" - }, - { - "file": "packages/react-components/react-toast/src/ToastBody.ts", - "hash": "14018551671824986687" - }, - { - "file": "packages/react-components/react-toast/src/ToastContainer.ts", - "hash": "4549595851046325076" - }, - { - "file": "packages/react-components/react-toast/src/ToastFooter.ts", - "hash": "3447343814030086069" - }, - { - "file": "packages/react-components/react-toast/src/ToastTitle.ts", - "hash": "18222299034471560017" - }, - { - "file": "packages/react-components/react-toast/src/ToastTrigger.ts", - "hash": "17586437167278520860" - }, - { - "file": "packages/react-components/react-toast/src/Toaster.ts", - "hash": "14175431586628349058" - }, - { - "file": "packages/react-components/react-toast/src/components/AriaLive/AriaLive.test.tsx", - "hash": "6442107386395292215" - }, - { - "file": "packages/react-components/react-toast/src/components/AriaLive/AriaLive.tsx", - "hash": "10793716600399358394" - }, - { - "file": "packages/react-components/react-toast/src/components/AriaLive/AriaLive.types.ts", - "hash": "1840525305665705621" - }, - { - "file": "packages/react-components/react-toast/src/components/AriaLive/__snapshots__/AriaLive.test.tsx.snap", - "hash": "9299768569933835789" - }, - { - "file": "packages/react-components/react-toast/src/components/AriaLive/index.ts", - "hash": "10741602548266810528" - }, - { - "file": "packages/react-components/react-toast/src/components/AriaLive/renderAriaLive.tsx", - "hash": "804859745476151280" - }, - { - "file": "packages/react-components/react-toast/src/components/AriaLive/useAriaLive.ts", - "hash": "9086600559679733817" - }, - { - "file": "packages/react-components/react-toast/src/components/AriaLive/useAriaLiveStyles.styles.ts", - "hash": "3048096877751050924" - }, - { - "file": "packages/react-components/react-toast/src/components/Timer/Timer.tsx", - "hash": "13074196879071224508" - }, - { - "file": "packages/react-components/react-toast/src/components/Timer/index.ts", - "hash": "11991616074639956962" - }, - { - "file": "packages/react-components/react-toast/src/components/Timer/useTimerStyles.styles.ts", - "hash": "3655775969916230892" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/Toast.cy.tsx", - "hash": "2288544208526258981" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/Toast.test.tsx", - "hash": "7287555393203087881" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/Toast.tsx", - "hash": "2224711623959003139" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/Toast.types.ts", - "hash": "4125010440475230441" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/__snapshots__/Toast.test.tsx.snap", - "hash": "17132507511060694009" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/index.ts", - "hash": "9618109493875621933" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/renderToast.tsx", - "hash": "10720877630875372757" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/useToast.ts", - "hash": "14393623992813194661" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/useToastContextValues.ts", - "hash": "17198227334991763932" - }, - { - "file": "packages/react-components/react-toast/src/components/Toast/useToastStyles.styles.ts", - "hash": "5557503513257771403" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastBody/ToastBody.test.tsx", - "hash": "4615164798964869091" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastBody/ToastBody.tsx", - "hash": "16250573446787171280" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastBody/ToastBody.types.ts", - "hash": "13920834813969313152" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastBody/__snapshots__/ToastBody.test.tsx.snap", - "hash": "12684431859116950296" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastBody/index.ts", - "hash": "5968957915263728965" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastBody/renderToastBody.tsx", - "hash": "17351686009722435973" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastBody/useToastBody.ts", - "hash": "13885753874205757551" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastBody/useToastBodyStyles.styles.ts", - "hash": "16206700759378001578" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.test.tsx", - "hash": "13901012506742295174" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.tsx", - "hash": "8153427315959101768" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.types.ts", - "hash": "11863328464789215239" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/__snapshots__/ToastContainer.test.tsx.snap", - "hash": "8668649856276633305" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/index.ts", - "hash": "11995343187778965101" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/renderToastContainer.tsx", - "hash": "502309263840540420" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/useToastContainer.ts", - "hash": "4141911229094274827" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/useToastContainerContextValues.ts", - "hash": "2939155370336925438" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastContainer/useToastContainerStyles.styles.ts", - "hash": "13104713389251292492" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.test.tsx", - "hash": "11424619225162201801" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.tsx", - "hash": "14593751910312704304" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.types.ts", - "hash": "16374988639865684493" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastFooter/__snapshots__/ToastFooter.test.tsx.snap", - "hash": "11711970304670119990" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastFooter/index.ts", - "hash": "8513825837838800870" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastFooter/renderToastFooter.tsx", - "hash": "207596864359220555" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastFooter/useToastFooter.ts", - "hash": "5228857853735293339" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastFooter/useToastFooterStyles.styles.ts", - "hash": "10893633555471477285" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.test.tsx", - "hash": "11441684459784269904" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.tsx", - "hash": "14292430330710862628" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.types.ts", - "hash": "11837561380110483063" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTitle/__snapshots__/ToastTitle.test.tsx.snap", - "hash": "4821473578764279817" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTitle/index.ts", - "hash": "18016065779722545690" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTitle/renderToastTitle.tsx", - "hash": "1333420123859818252" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTitle/useToastTitle.tsx", - "hash": "3210588607959161520" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTitle/useToastTitleStyles.styles.ts", - "hash": "9426158279615934679" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.test.tsx", - "hash": "5699776953831978713" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.tsx", - "hash": "12726203067935754162" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.types.ts", - "hash": "3842715180784819968" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTrigger/__snapshots__/ToastTrigger.test.tsx.snap", - "hash": "7844219453060346860" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTrigger/index.ts", - "hash": "12655493691993462210" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTrigger/renderToastTrigger.tsx", - "hash": "9466096862869316156" - }, - { - "file": "packages/react-components/react-toast/src/components/ToastTrigger/useToastTrigger.ts", - "hash": "14019618160278474734" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/Toaster.test.tsx", - "hash": "12635356051816143342" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/Toaster.tsx", - "hash": "11964445524095106184" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/Toaster.types.ts", - "hash": "6892226576257011954" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/__snapshots__/Toaster.test.tsx.snap", - "hash": "7319367689813891897" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/index.ts", - "hash": "13462024364787886895" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/renderToaster.tsx", - "hash": "9152323389222907502" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/useToastAnnounce.test.ts", - "hash": "9116052771586688891" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/useToastAnnounce.ts", - "hash": "14195815015884209829" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/useToaster.tsx", - "hash": "7064899387464883541" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/useToasterFocusManagement.ts", - "hash": "10371120963803549058" - }, - { - "file": "packages/react-components/react-toast/src/components/Toaster/useToasterStyles.styles.ts", - "hash": "7051660454651767404" - }, - { - "file": "packages/react-components/react-toast/src/contexts/toastContainerContext.tsx", - "hash": "15337355315856952234" - }, - { - "file": "packages/react-components/react-toast/src/index.ts", - "hash": "6864147601055510200" - }, - { - "file": "packages/react-components/react-toast/src/state/constants.ts", - "hash": "4536377250461792080" - }, - { - "file": "packages/react-components/react-toast/src/state/index.ts", - "hash": "14875581869228627377" - }, - { - "file": "packages/react-components/react-toast/src/state/types.ts", - "hash": "11674482699256017506" - }, - { - "file": "packages/react-components/react-toast/src/state/useToastController.test.ts", - "hash": "423595520882331462" - }, - { - "file": "packages/react-components/react-toast/src/state/useToastController.ts", - "hash": "14902116527194633878" - }, - { - "file": "packages/react-components/react-toast/src/state/useToaster.test.ts", - "hash": "15339475067759049682" - }, - { - "file": "packages/react-components/react-toast/src/state/useToaster.ts", - "hash": "4010526536948328405" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/createToaster.test.ts", - "hash": "16596155413226223798" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/createToaster.ts", - "hash": "2152902961797097092" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/dismissAllToasts.ts", - "hash": "15412166527852405711" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/dismissToast.ts", - "hash": "17045451126332775989" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/dispatchToast.ts", - "hash": "14216726211594981683" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/getPositionStyles.test.ts", - "hash": "16064541192915922154" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/getPositionStyles.ts", - "hash": "5733826555173060559" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/index.ts", - "hash": "4917379822293467718" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/pauseToast.ts", - "hash": "8244489699298786724" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/playToast.ts", - "hash": "14560953344582947245" - }, - { - "file": "packages/react-components/react-toast/src/state/vanilla/updateToast.ts", - "hash": "8004308242007218224" - }, - { - "file": "packages/react-components/react-toast/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/CustomTimeout.stories.tsx", - "hash": "16096607677990871710" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/Default.stories.tsx", - "hash": "1974781387464513603" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/DefaultToastOptions.stories.tsx", - "hash": "8958973929668160517" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/DismissAll.stories.tsx", - "hash": "2685894480482990937" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/DismissToast.stories.tsx", - "hash": "8774218450743142683" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/DismissToastWithAction.stories.tsx", - "hash": "8458792279487386337" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/FocusKeyboardShortcut.stories.tsx", - "hash": "14074369499061671706" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/Inline.stories.tsx", - "hash": "17578441719614929430" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/Intent.stories.tsx", - "hash": "1090435765951400454" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/InvertedAppearance.stories.tsx", - "hash": "10760961140479438812" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/MultipleToasters.stories.tsx", - "hash": "12056886636971994811" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/Offset.stories.tsx", - "hash": "8806183767015813092" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/PauseAndPlay.stories.tsx", - "hash": "5162053943050726387" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/PauseOnHover.stories.tsx", - "hash": "4073400650824333528" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/PauseOnWindowBlur.stories.tsx", - "hash": "8548636225339869647" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/ProgressToast.stories.tsx", - "hash": "13662336240826558606" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/ToastDescription.md", - "hash": "8747828005507942046" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/ToastLifecycle.stories.tsx", - "hash": "1932874522668137805" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/ToastPositions.stories.tsx", - "hash": "18410503127903303083" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/ToasterLimit.stories.tsx", - "hash": "68893506097705199" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/UpdateToast.stories.tsx", - "hash": "14044906220579458655" - }, - { - "file": "packages/react-components/react-toast/stories/Toast/index.stories.tsx", - "hash": "10239704938406017702" - }, - { - "file": "packages/react-components/react-toast/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-toast/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-toast/tsconfig.lib.json", - "hash": "3027287810670149763" - }, - { - "file": "packages/react-components/react-toast/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/react-timepicker-compat": [ - { - "file": "packages/react-components/react-timepicker-compat/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-timepicker-compat/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-timepicker-compat/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-timepicker-compat/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-timepicker-compat/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-timepicker-compat/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-timepicker-compat/CHANGELOG.json", - "hash": "11191853975729478248" - }, - { - "file": "packages/react-components/react-timepicker-compat/CHANGELOG.md", - "hash": "16788805867679456860" - }, - { - "file": "packages/react-components/react-timepicker-compat/LICENSE", - "hash": "5894441072731856187" - }, - { - "file": "packages/react-components/react-timepicker-compat/README.md", - "hash": "3680685275246455558" - }, - { - "file": "packages/react-components/react-timepicker-compat/bundle-size/TimePicker.fixture.js", - "hash": "16899056741609557245" - }, - { - "file": "packages/react-components/react-timepicker-compat/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-timepicker-compat/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-timepicker-compat/cypress.config.ts", - "hash": "17230281421398791592" - }, - { - "file": "packages/react-components/react-timepicker-compat/docs/Migration.md", - "hash": "7575090176618687513" - }, - { - "file": "packages/react-components/react-timepicker-compat/docs/Spec.md", - "hash": "4434180370389108781" - }, - { - "file": "packages/react-components/react-timepicker-compat/etc/react-timepicker-compat.api.md", - "hash": "806412966990929511" - }, - { - "file": "packages/react-components/react-timepicker-compat/jest.config.js", - "hash": "12661834635702904638" - }, - { - "file": "packages/react-components/react-timepicker-compat/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-timepicker-compat/package.json", - "hash": "9651141473165413674", - "deps": [ - "@fluentui/keyboard-keys", - "@fluentui/react-combobox", - "@fluentui/react-field", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-timepicker-compat/project.json", - "hash": "12017860013643936176" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/TimePicker.ts", - "hash": "8919003633615161634" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.cy.tsx", - "hash": "577280389277013309" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.test.tsx", - "hash": "4625180512860312676" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.tsx", - "hash": "6856338812317042222" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.types.ts", - "hash": "16705913128014134642" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/index.ts", - "hash": "14317002683791819993" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/timeMath.test.ts", - "hash": "9610495087449809696" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/timeMath.ts", - "hash": "16427594297458443598" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/useTimePicker.tsx", - "hash": "10101090423944398224" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/components/TimePicker/useTimePickerStyles.styles.ts", - "hash": "9323957650113310013" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/index.ts", - "hash": "15110596364222141948" - }, - { - "file": "packages/react-components/react-timepicker-compat/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerBestPractices.md", - "hash": "4715016281428560167" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerControlled.md", - "hash": "4542577073511108011" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerControlled.stories.tsx", - "hash": "12390911091164732918" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerDefault.stories.tsx", - "hash": "8034977353354719858" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerDescription.md", - "hash": "6543020975323479896" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformCustomParsing.md", - "hash": "8328212493981358431" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformCustomParsing.stories.tsx", - "hash": "10623384923512153992" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformWithErrorHandling.md", - "hash": "9839268275704554451" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformWithErrorHandling.stories.tsx", - "hash": "726484920919964579" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerWithDatePicker.stories.tsx", - "hash": "16534919271336122442" - }, - { - "file": "packages/react-components/react-timepicker-compat/stories/TimePicker/index.stories.tsx", - "hash": "6042911818401085451" - }, - { - "file": "packages/react-components/react-timepicker-compat/tsconfig.cy.json", - "hash": "7215147373970103512" - }, - { - "file": "packages/react-components/react-timepicker-compat/tsconfig.json", - "hash": "5326137440511234645" - }, - { - "file": "packages/react-components/react-timepicker-compat/tsconfig.lib.json", - "hash": "8117551715541039118" - }, - { - "file": "packages/react-components/react-timepicker-compat/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/perf-test-react-components": [ - { - "file": "apps/perf-test-react-components/.eslintrc.json", - "hash": "11394998712033899358" - }, - { - "file": "apps/perf-test-react-components/CHANGELOG.json", - "hash": "9705294603087361552" - }, - { - "file": "apps/perf-test-react-components/CHANGELOG.md", - "hash": "1955031280662643285" - }, - { - "file": "apps/perf-test-react-components/README.md", - "hash": "12764928321652014507" - }, - { - "file": "apps/perf-test-react-components/config/perf-test/index.ts", - "hash": "9382341332431634376" - }, - { - "file": "apps/perf-test-react-components/config/perf-test/scenarioIterations.ts", - "hash": "2689308603351418909" - }, - { - "file": "apps/perf-test-react-components/config/perf-test/scenarioNames.ts", - "hash": "7752641890685283927" - }, - { - "file": "apps/perf-test-react-components/config/perf-test/scenarioRenderTypes.ts", - "hash": "4111949727319474190" - }, - { - "file": "apps/perf-test-react-components/config/pre-copy.json", - "hash": "5251859254196291210" - }, - { - "file": "apps/perf-test-react-components/index.html", - "hash": "2745716322290525623" - }, - { - "file": "apps/perf-test-react-components/just.config.ts", - "hash": "4618050165307861195" - }, - { - "file": "apps/perf-test-react-components/package.json", - "hash": "14351998842130606319", - "deps": [ - "@fluentui/scripts-perf-test-flamegrill", - "@fluentui/react-avatar", - "@fluentui/react-button", - "@fluentui/react-field", - "@fluentui/react-persona", - "@fluentui/react-provider", - "@fluentui/react-spinbutton", - "@fluentui/react-theme", - "npm:@griffel/core", - "npm:@microsoft/load-themed-styles", - "npm:react", - "npm:react-dom", - "npm:tslib", - "@fluentui/eslint-plugin", - "@fluentui/scripts-tasks", - "@fluentui/scripts-storybook" - ] - }, - { - "file": "apps/perf-test-react-components/project.json", - "hash": "897404076483519183" - }, - { - "file": "apps/perf-test-react-components/src/app.tsx", - "hash": "3188751655411573665" - }, - { - "file": "apps/perf-test-react-components/src/scenarios/Avatar.tsx", - "hash": "8157265688749489090" - }, - { - "file": "apps/perf-test-react-components/src/scenarios/Button.tsx", - "hash": "274370466704185279" - }, - { - "file": "apps/perf-test-react-components/src/scenarios/Field.tsx", - "hash": "3681451947007170553" - }, - { - "file": "apps/perf-test-react-components/src/scenarios/FluentProvider.tsx", - "hash": "769812070028657132" - }, - { - "file": "apps/perf-test-react-components/src/scenarios/FluentProviderWithTheme.tsx", - "hash": "2530515739000735637" - }, - { - "file": "apps/perf-test-react-components/src/scenarios/MakeStyles.tsx", - "hash": "7976650837438939483" - }, - { - "file": "apps/perf-test-react-components/src/scenarios/Persona.tsx", - "hash": "12680964084800898666" - }, - { - "file": "apps/perf-test-react-components/src/scenarios/SpinButton.tsx", - "hash": "13668415692180724398" - }, - { - "file": "apps/perf-test-react-components/tsconfig.json", - "hash": "8441577648341427081" - }, - { - "file": "apps/perf-test-react-components/webpack.config.js", - "hash": "6869860371066694099" - } - ], - "@fluentui/workspace-plugin": [ - { - "file": "tools/workspace-plugin/.eslintrc.json", - "hash": "15149754208101589499" - }, - { - "file": "tools/workspace-plugin/README.md", - "hash": "6672627314745788036" - }, - { - "file": "tools/workspace-plugin/STYLE-GUIDE.md", - "hash": "3643452117874720686" - }, - { - "file": "tools/workspace-plugin/generators.json", - "hash": "14874084490014433884" - }, - { - "file": "tools/workspace-plugin/jest.config.ts", - "hash": "15153650075111198033" - }, - { - "file": "tools/workspace-plugin/package.json", - "hash": "3887346704352140538" - }, - { - "file": "tools/workspace-plugin/project.json", - "hash": "15713253905208780959" - }, - { - "file": "tools/workspace-plugin/scripts/check-dep-graph.js", - "hash": "8914802890105624146" - }, - { - "file": "tools/workspace-plugin/src/generators/add-codeowners.spec.ts", - "hash": "12173538524254972528" - }, - { - "file": "tools/workspace-plugin/src/generators/add-codeowners.ts", - "hash": "17572063765493066791" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/README.md", - "hash": "9195191598039456271" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/files/cypress.config.ts__tmpl__", - "hash": "17230281421398791592" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/files/tsconfig.cy.json__tmpl__", - "hash": "583687292406309619" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/index.spec.ts", - "hash": "2318255691944314322" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/index.ts", - "hash": "8797936809098149602" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/lib/add-files.ts", - "hash": "2938181488416777877" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/lib/utils.spec.ts", - "hash": "11181311015782311627" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/lib/utils.ts", - "hash": "9065718880996606846" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/schema.json", - "hash": "17452041331960852312" - }, - { - "file": "tools/workspace-plugin/src/generators/cypress-component-configuration/schema.ts", - "hash": "5622245695872283378" - }, - { - "file": "tools/workspace-plugin/src/generators/dependency-mismatch/README.md", - "hash": "7206131889877981370" - }, - { - "file": "tools/workspace-plugin/src/generators/dependency-mismatch/index.spec.ts", - "hash": "8624903429065322064" - }, - { - "file": "tools/workspace-plugin/src/generators/dependency-mismatch/index.ts", - "hash": "140651421153146290" - }, - { - "file": "tools/workspace-plugin/src/generators/dependency-mismatch/schema.json", - "hash": "865300350200578861" - }, - { - "file": "tools/workspace-plugin/src/generators/dependency-mismatch/schema.ts", - "hash": "16632993977426318585" - }, - { - "file": "tools/workspace-plugin/src/generators/epic-generator/README.md", - "hash": "16999690254569500391" - }, - { - "file": "tools/workspace-plugin/src/generators/epic-generator/index.spec.ts", - "hash": "10508293609049539359" - }, - { - "file": "tools/workspace-plugin/src/generators/epic-generator/index.ts", - "hash": "9154235588228773010" - }, - { - "file": "tools/workspace-plugin/src/generators/epic-generator/schema.json", - "hash": "7342797308065425147" - }, - { - "file": "tools/workspace-plugin/src/generators/epic-generator/schema.ts", - "hash": "14871870936190718481" - }, - { - "file": "tools/workspace-plugin/src/generators/generate-change-file.spec.ts", - "hash": "7911062531575789942" - }, - { - "file": "tools/workspace-plugin/src/generators/generate-change-files.ts", - "hash": "4364069018731787781" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/README.md", - "hash": "3654033943011462935" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/conformance-setup.ts__tmpl__", - "hash": "4945883377006641019" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/just-config.ts__tmpl__", - "hash": "10393370776333958822" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/old-jest-config.js__tmpl__", - "hash": "1536723015234762507" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/ts-ignore-story.ts__tmpl__", - "hash": "4346103498686954704" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/__snapshots__/index.spec.ts.snap", - "hash": "10832486388624247092" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/files/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/files/just-config.ts__tmpl__", - "hash": "4613957333426947832" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/index.spec.ts", - "hash": "993719406763264172" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/index.ts", - "hash": "16807171603041999988" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/__fixtures__/utils-hello-substitute.ts__tmpl__", - "hash": "14220718920917696154" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/__fixtures__/utils-hello.ts__tmpl__", - "hash": "13350959345360961417" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/utils.spec.ts", - "hash": "5968007191018436234" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/utils.ts", - "hash": "8873963753325977415" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/schema.json", - "hash": "3534760653604611747" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-converged-pkg/schema.ts", - "hash": "4895008639756688876" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/README.md", - "hash": "12450870298660097504" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/index.spec.ts", - "hash": "1801846956210178590" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/index.ts", - "hash": "13441194817743428609" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/schema.json", - "hash": "14796316966131261389" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-fixed-versions/schema.ts", - "hash": "263215702101659815" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/README.md", - "hash": "8702247513273588859" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/index.spec.ts", - "hash": "6563393165061308225" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/index.ts", - "hash": "17397782312510274601" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/lib/utils.spec.ts", - "hash": "8222153512403384692" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/lib/utils.ts", - "hash": "549574462343596953" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/schema.json", - "hash": "18188452103508093176" - }, - { - "file": "tools/workspace-plugin/src/generators/migrate-v8-pkg/schema.ts", - "hash": "11890221334435483209" - }, - { - "file": "tools/workspace-plugin/src/generators/move-packages/README.md", - "hash": "15369626182250540239" - }, - { - "file": "tools/workspace-plugin/src/generators/move-packages/index.spec.ts", - "hash": "9963499119880645124" - }, - { - "file": "tools/workspace-plugin/src/generators/move-packages/index.ts", - "hash": "1840851322697263929" - }, - { - "file": "tools/workspace-plugin/src/generators/move-packages/schema.json", - "hash": "3008817952145443497" - }, - { - "file": "tools/workspace-plugin/src/generators/move-packages/schema.ts", - "hash": "17347108861724480960" - }, - { - "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/README.md", - "hash": "11889442463540326504" - }, - { - "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/index.spec.ts", - "hash": "2788168539185477742" - }, - { - "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/index.ts", - "hash": "2358735029119276862" - }, - { - "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/lib/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/schema.json", - "hash": "959331019707851958" - }, - { - "file": "tools/workspace-plugin/src/generators/normalize-package-dependencies/schema.ts", - "hash": "3746319603399027876" - }, - { - "file": "tools/workspace-plugin/src/generators/prepare-initial-release/README.md", - "hash": "18280291482919668423" - }, - { - "file": "tools/workspace-plugin/src/generators/prepare-initial-release/index.spec.ts", - "hash": "17951933054430477244" - }, - { - "file": "tools/workspace-plugin/src/generators/prepare-initial-release/index.ts", - "hash": "15073543577756916111" - }, - { - "file": "tools/workspace-plugin/src/generators/prepare-initial-release/lib/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "tools/workspace-plugin/src/generators/prepare-initial-release/schema.json", - "hash": "5882686008657364503" - }, - { - "file": "tools/workspace-plugin/src/generators/prepare-initial-release/schema.ts", - "hash": "16506159453550357987" - }, - { - "file": "tools/workspace-plugin/src/generators/print-stats.spec.ts", - "hash": "1280574985528973253" - }, - { - "file": "tools/workspace-plugin/src/generators/print-stats.ts", - "hash": "3989581104140317561" - }, - { - "file": "tools/workspace-plugin/src/generators/rc-caret/README.md", - "hash": "1174057707215016959" - }, - { - "file": "tools/workspace-plugin/src/generators/rc-caret/index.spec.ts", - "hash": "8046872970532016323" - }, - { - "file": "tools/workspace-plugin/src/generators/rc-caret/index.ts", - "hash": "12202838045906057022" - }, - { - "file": "tools/workspace-plugin/src/generators/rc-caret/schema.json", - "hash": "13430321724244114237" - }, - { - "file": "tools/workspace-plugin/src/generators/rc-caret/schema.ts", - "hash": "15545508060181886231" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/README.md", - "hash": "15509040416326092319" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.test.tsx__tmpl__", - "hash": "9776823715391656097" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.tsx__tmpl__", - "hash": "6395415828085913288" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.types.ts__tmpl__", - "hash": "17965595033275169239" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/component/index.ts__tmpl__", - "hash": "2919728859339381699" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/component/render__componentName__.tsx__tmpl__", - "hash": "12530167117660777622" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/component/use__componentName__.ts__tmpl__", - "hash": "5974329661946724656" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/component/use__componentName__Styles.styles.ts__tmpl__", - "hash": "1139185616779782212" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/story/__componentName__BestPractices.md__tmpl__", - "hash": "13132854725403121719" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/story/__componentName__Default.stories.tsx__tmpl__", - "hash": "3467293824812820226" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/story/__componentName__Description.md__tmpl__", - "hash": "3244421341483603138" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/files/story/index.stories.tsx__tmpl__", - "hash": "5655101799178136947" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/index.spec.ts", - "hash": "12818061419512492949" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/index.ts", - "hash": "10149141456045580625" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/lib/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/schema.json", - "hash": "3420955762081798541" - }, - { - "file": "tools/workspace-plugin/src/generators/react-component/schema.ts", - "hash": "3282902116051628156" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/README.md", - "hash": "114414758584016906" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/.babelrc.json__tmpl__", - "hash": "14815445141901096491" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/.eslintrc.json__tmpl__", - "hash": "11822209983446579696" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/.storybook/main.js__tmpl__", - "hash": "11617744840349284164" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/.storybook/preview.js__tmpl__", - "hash": "1791378012295456991" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/.storybook/tsconfig.json__tmpl__", - "hash": "14611368028782818158" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/.swcrc__tmpl__", - "hash": "16532409398616988134" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/LICENSE__tmpl__", - "hash": "13024596769977255008" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/README.md__tmpl__", - "hash": "13221908493670670010" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/config/api-extractor.json__tmpl__", - "hash": "124052868224837692" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/config/tests.js__tmpl__", - "hash": "16913843724990866890" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/docs/Spec.md__tmpl__", - "hash": "17802667132668971412" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/etc/__packageName__.api.md", - "hash": "3244421341483603138" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/jest.config.js__tmpl__", - "hash": "9239487721821393767" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/just.config.ts__tmpl__", - "hash": "4613957333426947832" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/package.json__tmpl__", - "hash": "14606909362012068991" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/src/index.ts__tmpl__", - "hash": "15555827964896839803" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/src/testing/isConformant.ts__tmpl__", - "hash": "7325949189279658038" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/stories/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/tsconfig.json__tmpl__", - "hash": "5237217701871136285" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/tsconfig.lib.json__tmpl__", - "hash": "1202804459946898179" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/files/tsconfig.spec.json__tmpl__", - "hash": "6114153871167405290" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/index.spec.ts", - "hash": "9062493083910514758" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/index.ts", - "hash": "13805441570442854906" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/lib/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/schema.json", - "hash": "7218774757126974420" - }, - { - "file": "tools/workspace-plugin/src/generators/react-library/schema.ts", - "hash": "14010440605010742358" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/README.md", - "hash": "7894436322904197761" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/__snapshots__/index.spec.ts.snap", - "hash": "18218013101938864112" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/__fileName__.stories.mdx__tmpl__", - "hash": "14323085748279977626" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/code-snippets/__fileName__.tsx__tmpl__", - "hash": "4194914096576941895" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/code-snippets/index.ts__tmpl__", - "hash": "2285662923644655059" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/index.spec.ts", - "hash": "1806201693205694550" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/index.ts", - "hash": "3887584550230851344" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/schema.json", - "hash": "763716532980099231" - }, - { - "file": "tools/workspace-plugin/src/generators/recipe-generator/schema.ts", - "hash": "5109310080379739482" - }, - { - "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/README.md", - "hash": "12453587723963083178" - }, - { - "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/index.spec.ts", - "hash": "7413380692194170252" - }, - { - "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/index.ts", - "hash": "10444091968450267048" - }, - { - "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/lib/utils.ts", - "hash": "624116704349760242" - }, - { - "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/schema.json", - "hash": "584102150782507131" - }, - { - "file": "tools/workspace-plugin/src/generators/tsconfig-base-all/schema.ts", - "hash": "5764224920941233305" - }, - { - "file": "tools/workspace-plugin/src/generators/version-bump/README.md", - "hash": "7394436249831666532" - }, - { - "file": "tools/workspace-plugin/src/generators/version-bump/index.spec.ts", - "hash": "8713901855072782460" - }, - { - "file": "tools/workspace-plugin/src/generators/version-bump/index.ts", - "hash": "15492460185168430214" - }, - { - "file": "tools/workspace-plugin/src/generators/version-bump/schema.json", - "hash": "17458402893301617402" - }, - { - "file": "tools/workspace-plugin/src/generators/version-bump/schema.ts", - "hash": "13768604396498144359" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/files/README.md__tmpl__", - "hash": "18433070323338931926" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/files/index.spec.ts__tmpl__", - "hash": "8962363898122267371" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/files/index.ts__tmpl__", - "hash": "5747756663658172206" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/files/lib/utils.spec.ts__tmpl__", - "hash": "9830935905014520824" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/files/lib/utils.ts__tmpl__", - "hash": "4280877079534460457" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/files/schema.json__tmpl__", - "hash": "15111506626007889917" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/files/schema.ts__tmpl__", - "hash": "8608164264497028668" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/index.spec.ts", - "hash": "4325094757841254756" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/index.ts", - "hash": "5373845662918497412" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/schema.json", - "hash": "12664351878789124797" - }, - { - "file": "tools/workspace-plugin/src/generators/workspace-generator/schema.ts", - "hash": "8894746255615101147" - }, - { - "file": "tools/workspace-plugin/src/index.ts", - "hash": "15555827964896839803" - }, - { - "file": "tools/workspace-plugin/src/types.spec.ts", - "hash": "6230618375099818853" - }, - { - "file": "tools/workspace-plugin/src/types.ts", - "hash": "10718822113111555341" - }, - { - "file": "tools/workspace-plugin/src/utils-testing.ts", - "hash": "11083126349809196906" - }, - { - "file": "tools/workspace-plugin/src/utils.spec.ts", - "hash": "14536241497883098565" - }, - { - "file": "tools/workspace-plugin/src/utils.ts", - "hash": "10457732344948097597" - }, - { - "file": "tools/workspace-plugin/tsconfig.json", - "hash": "7642656943241257331" - }, - { - "file": "tools/workspace-plugin/tsconfig.lib.json", - "hash": "17512648156706774563" - }, - { - "file": "tools/workspace-plugin/tsconfig.spec.json", - "hash": "12478527556459153090" - } - ], - "@fluentui/react-search-preview": [ - { - "file": "packages/react-components/react-search-preview/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-search-preview/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-search-preview/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-search-preview/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-search-preview/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-search-preview/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-search-preview/CHANGELOG.json", - "hash": "4422059300176138933" - }, - { - "file": "packages/react-components/react-search-preview/CHANGELOG.md", - "hash": "4671157039965199214" - }, - { - "file": "packages/react-components/react-search-preview/LICENSE", - "hash": "10208143628444227491" - }, - { - "file": "packages/react-components/react-search-preview/README.md", - "hash": "15299480567783003405" - }, - { - "file": "packages/react-components/react-search-preview/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-search-preview/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-search-preview/docs/MIGRATION.md", - "hash": "2865705533281265171" - }, - { - "file": "packages/react-components/react-search-preview/docs/Spec.md", - "hash": "18435160378759031464" - }, - { - "file": "packages/react-components/react-search-preview/etc/react-search-preview.api.md", - "hash": "2996165423955728843" - }, - { - "file": "packages/react-components/react-search-preview/jest.config.js", - "hash": "2413236386355797934" - }, - { - "file": "packages/react-components/react-search-preview/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-search-preview/package.json", - "hash": "16063317431784896488", - "deps": [ - "npm:@fluentui/react-icons", - "@fluentui/react-input", - "@fluentui/react-jsx-runtime", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-search-preview/project.json", - "hash": "6245122481400325168" - }, - { - "file": "packages/react-components/react-search-preview/src/SearchBox.ts", - "hash": "15808954179607126400" - }, - { - "file": "packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.test.tsx", - "hash": "11990646386900636944" - }, - { - "file": "packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.tsx", - "hash": "2638780876376384531" - }, - { - "file": "packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.types.ts", - "hash": "10944253874763523961" - }, - { - "file": "packages/react-components/react-search-preview/src/components/SearchBox/__snapshots__/SearchBox.test.tsx.snap", - "hash": "6499561349979786200" - }, - { - "file": "packages/react-components/react-search-preview/src/components/SearchBox/index.ts", - "hash": "8943459759748143116" - }, - { - "file": "packages/react-components/react-search-preview/src/components/SearchBox/renderSearchBox.tsx", - "hash": "12848093918605820140" - }, - { - "file": "packages/react-components/react-search-preview/src/components/SearchBox/useSearchBox.tsx", - "hash": "1203285435378804120" - }, - { - "file": "packages/react-components/react-search-preview/src/components/SearchBox/useSearchBoxStyles.styles.ts", - "hash": "274536282407907923" - }, - { - "file": "packages/react-components/react-search-preview/src/index.ts", - "hash": "10703430971917101752" - }, - { - "file": "packages/react-components/react-search-preview/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxAppearance.stories.tsx", - "hash": "479309571099364156" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxBestPractices.md", - "hash": "18322882289744529866" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxContentBeforeAfter.stories.tsx", - "hash": "17369466639462581414" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxControlled.stories.tsx", - "hash": "17397495220176592807" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDefault.stories.tsx", - "hash": "3984914430258979310" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDescription.md", - "hash": "11379297500412622701" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDisabled.stories.tsx", - "hash": "5166324980640455577" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxPlaceholder.stories.tsx", - "hash": "8194263709905614805" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/SearchBoxSize.stories.tsx", - "hash": "4334577727586338959" - }, - { - "file": "packages/react-components/react-search-preview/stories/SearchBox/index.stories.tsx", - "hash": "14993770248065248151" - }, - { - "file": "packages/react-components/react-search-preview/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-search-preview/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-search-preview/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ], - "@fluentui/docs-components": [ - { - "file": "packages/fluentui/docs-components/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/docs-components/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/docs-components/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/docs-components/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/docs-components/package.json", - "hash": "12299398415052887154", - "deps": [ - "npm:@babel/runtime", - "npm:copy-to-clipboard", - "npm:lodash", - "npm:object.values", - "npm:prismjs", - "npm:prop-types", - "npm:react-ace", - "npm:react-codesandboxer", - "npm:react-element-to-jsx-string", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "npm:prettier", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/docs-components/project.json", - "hash": "13469323002647093120" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/CodeSandboxExporter.tsx", - "hash": "10775572371902899182" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/createPackageJson.ts", - "hash": "17834717065357338878" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/index.ts", - "hash": "729372128174666005" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/indexTemplates.ts", - "hash": "13123484621875068230" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSandboxExporter/types.tsx", - "hash": "2963536210780409373" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSnippet/CodeSnippet.tsx", - "hash": "10184034503240704567" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSnippet/CodeSnippetLabel.tsx", - "hash": "4843091425161626165" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSnippet/formatCode.ts", - "hash": "13761802560233975725" - }, - { - "file": "packages/fluentui/docs-components/src/CodeSnippet/types.ts", - "hash": "9865053077409343897" - }, - { - "file": "packages/fluentui/docs-components/src/CopyToClipboard.tsx", - "hash": "3817005176756180732" - }, - { - "file": "packages/fluentui/docs-components/src/Editor/Editor.tsx", - "hash": "12794711676852103158" - }, - { - "file": "packages/fluentui/docs-components/src/index.ts", - "hash": "17334811117911265474" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/KnobContexts.ts", - "hash": "4842163521617597457" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/KnobInspector.tsx", - "hash": "18065313350188753080" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/KnobProvider.tsx", - "hash": "6785463407886649345" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/LogInspector.tsx", - "hash": "15951479911802652570" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/defaultComponents.tsx", - "hash": "17505366242981138566" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/types.ts", - "hash": "15943354925699053567" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/useBooleanKnob.ts", - "hash": "6698715814693094933" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/useKnob.ts", - "hash": "10559903722198811306" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/useKnobValues.ts", - "hash": "10362124241855310049" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/useLogKnob.ts", - "hash": "6515035524717563074" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/useNumberKnob.ts", - "hash": "14524322305704285530" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/useRangeKnob.ts", - "hash": "13035545945521563789" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/useSelectKnob.ts", - "hash": "14829194906409623521" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/useStringKnob.ts", - "hash": "8537090047394764283" - }, - { - "file": "packages/fluentui/docs-components/src/knobs/utils/parseRangeValue.ts", - "hash": "11201358452441745212" - }, - { - "file": "packages/fluentui/docs-components/src/renderElementToJSX.ts", - "hash": "11554022792520913001" - }, - { - "file": "packages/fluentui/docs-components/tsconfig.json", - "hash": "3177558348790025290" - } - ], - "@fluentui/react-northstar-fela-renderer": [ - { - "file": "packages/fluentui/react-northstar-fela-renderer/.eslintrc.json", - "hash": "5658833841867159098" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/.gulp.js", - "hash": "18274885140889321646" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/babel.config.js", - "hash": "3569817794842814983" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/gulpfile.ts", - "hash": "11161944235327936712" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/jest.config.js", - "hash": "5879943202201643412" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/package.json", - "hash": "18253410728196785871", - "deps": [ - "npm:@babel/runtime", - "@fluentui/react-northstar-styles-renderer", - "@fluentui/styles", - "npm:css-in-js-utils", - "npm:fela", - "npm:fela-dom", - "npm:fela-plugin-embedded", - "npm:fela-plugin-fallback-value", - "npm:fela-plugin-placeholder-prefixer", - "npm:fela-plugin-rtl", - "npm:fela-tools", - "npm:fela-utils", - "npm:inline-style-expand-shorthand", - "npm:lodash", - "npm:stylis", - "@fluentui/eslint-plugin", - "@fluentui/scripts-babel", - "@fluentui/scripts-gulp", - "@fluentui/scripts-jest", - "npm:lerna-alias", - "npm:react-fela", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/project.json", - "hash": "7529833180970546709" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/RendererProvider.tsx", - "hash": "15292973742708445201" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/createFelaRenderer.tsx", - "hash": "14134932690113469333" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/felaDisableAnimationsPlugin.ts", - "hash": "5106913408155805634" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/felaExpandCssShorthandsPlugin.ts", - "hash": "12364266764064975304" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/felaFocusVisibleEnhancer.ts", - "hash": "3489409456963574353" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/felaInvokeKeyframesPlugin.ts", - "hash": "13086869777306745688" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/felaPerformanceEnhancer.ts", - "hash": "8934157626271065107" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/felaSanitizeCssPlugin.ts", - "hash": "1128726876603739196" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/felaStylisEnhancer.ts", - "hash": "8281562568320323558" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/index.ts", - "hash": "3768293676213746420" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/src/types.ts", - "hash": "1872083320472232584" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/__snapshots__/felaFocusVisibleEnhancer-test.ts.snap", - "hash": "4974099359602810550" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/__snapshots__/felaRenderer-test.tsx.snap", - "hash": "457621670829538595" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/consoleUtil.ts", - "hash": "11997294564447184338" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/felaDisableAnimationsPlugin-test.ts", - "hash": "16412109138465579885" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/felaExpandCssShorthandsPlugin-test.ts", - "hash": "12816623850070173611" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/felaFocusVisibleEnhancer-test.ts", - "hash": "1019784981095022855" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/felaInvokeKeyframesPlugin-test.ts", - "hash": "6460114641417994686" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/felaRenderer-test.tsx", - "hash": "10647218092623789302" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/test/felaSanitizeCssPlugin-test.ts", - "hash": "6683618071771223667" - }, - { - "file": "packages/fluentui/react-northstar-fela-renderer/tsconfig.json", - "hash": "4544399996272942243" - } - ], - "@fluentui/react-slider": [ - { - "file": "packages/react-components/react-slider/.babelrc.json", - "hash": "18339585439895240691" - }, - { - "file": "packages/react-components/react-slider/.eslintrc.json", - "hash": "11822209983446579696" - }, - { - "file": "packages/react-components/react-slider/.storybook/main.js", - "hash": "11617744840349284164" - }, - { - "file": "packages/react-components/react-slider/.storybook/preview.js", - "hash": "1791378012295456991" - }, - { - "file": "packages/react-components/react-slider/.storybook/tsconfig.json", - "hash": "14611368028782818158" - }, - { - "file": "packages/react-components/react-slider/.swcrc", - "hash": "16532409398616988134" - }, - { - "file": "packages/react-components/react-slider/CHANGELOG.json", - "hash": "13041546859904341740" - }, - { - "file": "packages/react-components/react-slider/CHANGELOG.md", - "hash": "1836801970457878877" - }, - { - "file": "packages/react-components/react-slider/LICENSE", - "hash": "910721805169595338" - }, - { - "file": "packages/react-components/react-slider/README.md", - "hash": "6584753154889502669" - }, - { - "file": "packages/react-components/react-slider/bundle-size/Slider.fixture.js", - "hash": "4536442547704901623" - }, - { - "file": "packages/react-components/react-slider/config/api-extractor.json", - "hash": "124052868224837692" - }, - { - "file": "packages/react-components/react-slider/config/tests.js", - "hash": "16913843724990866890" - }, - { - "file": "packages/react-components/react-slider/docs/MIGRATION.md", - "hash": "447967121623278016" - }, - { - "file": "packages/react-components/react-slider/docs/Spec.md", - "hash": "9843651694675404780" - }, - { - "file": "packages/react-components/react-slider/etc/react-slider.api.md", - "hash": "14398793584258195333" - }, - { - "file": "packages/react-components/react-slider/jest.config.js", - "hash": "17269232337421067095" - }, - { - "file": "packages/react-components/react-slider/just.config.ts", - "hash": "4613957333426947832" - }, - { - "file": "packages/react-components/react-slider/package.json", - "hash": "2946398219333391235", - "deps": [ - "@fluentui/react-field", - "@fluentui/react-jsx-runtime", - "@fluentui/react-shared-contexts", - "@fluentui/react-tabster", - "@fluentui/react-theme", - "@fluentui/react-utilities", - "npm:@griffel/react", - "npm:@swc/helpers", - "@fluentui/eslint-plugin", - "@fluentui/react-conformance", - "@fluentui/react-conformance-griffel", - "@fluentui/react-label", - "@fluentui/scripts-api-extractor", - "@fluentui/scripts-tasks", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom" - ] - }, - { - "file": "packages/react-components/react-slider/project.json", - "hash": "15063960313449581197" - }, - { - "file": "packages/react-components/react-slider/src/Slider.ts", - "hash": "8062765663185726667" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/Slider.test.tsx", - "hash": "12394107146913416909" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/Slider.tsx", - "hash": "1124189894502122660" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/Slider.types.ts", - "hash": "13961785930442891420" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/__snapshots__/Slider.test.tsx.snap", - "hash": "16814355515039523231" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/index.ts", - "hash": "16057955284477178882" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/renderSlider.tsx", - "hash": "1322961609272530897" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/useSlider.ts", - "hash": "12810398614195122939" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/useSliderState.tsx", - "hash": "7902361668391337869" - }, - { - "file": "packages/react-components/react-slider/src/components/Slider/useSliderStyles.styles.ts", - "hash": "7767678614377780417" - }, - { - "file": "packages/react-components/react-slider/src/index.ts", - "hash": "310119894017311457" - }, - { - "file": "packages/react-components/react-slider/src/testing/isConformant.ts", - "hash": "7325949189279658038" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderBestPractices.md", - "hash": "6974346443867987720" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderControlled.stories.tsx", - "hash": "7808949571775154240" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderDefault.stories.tsx", - "hash": "14440247799581749403" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderDescription.md", - "hash": "11502253636498399750" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderDisabled.stories.tsx", - "hash": "7697954300354409130" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderMinMax.stories.tsx", - "hash": "6656091609376794109" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderSize.stories.tsx", - "hash": "1159612092057231215" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderStep.stories.tsx", - "hash": "10001321265726034349" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/SliderVertical.stories.tsx", - "hash": "15791609136650339470" - }, - { - "file": "packages/react-components/react-slider/stories/Slider/index.stories.tsx", - "hash": "7287745665975848010" - }, - { - "file": "packages/react-components/react-slider/tsconfig.json", - "hash": "4314087102028690976" - }, - { - "file": "packages/react-components/react-slider/tsconfig.lib.json", - "hash": "5990226506726238656" - }, - { - "file": "packages/react-components/react-slider/tsconfig.spec.json", - "hash": "6114153871167405290" - } - ] - }, - "nonProjectFiles": [ - { - "file": ".babelrc-v9.json", - "hash": "7905965482932382062" - }, - { - "file": ".codesandbox/ci.json", - "hash": "9481593649063718972" - }, - { - "file": ".devcontainer/Dockerfile", - "hash": "17327142691620653518" - }, - { - "file": ".devcontainer/README.md", - "hash": "4521415539773599441" - }, - { - "file": ".devcontainer/devcontainer.json", - "hash": "5973123915676221123" - }, - { - "file": ".devops/templates/build-test-lint.yml", - "hash": "7280139675363621480" - }, - { - "file": ".devops/templates/cleanup.yml", - "hash": "2039936807490399580" - }, - { - "file": ".devops/templates/deployE2E.yml", - "hash": "4893492225026371372" - }, - { - "file": ".devops/templates/runpublishvrscreenshot.yml", - "hash": "1681936798070381699" - }, - { - "file": ".devops/templates/tools.yml", - "hash": "12608121506497706219" - }, - { - "file": ".devops/templates/variables.yml", - "hash": "13928277843242783647" - }, - { - "file": ".eslintrc.json", - "hash": "14148355099032860737" - }, - { - "file": ".gitattributes", - "hash": "12042329996847921067" - }, - { - "file": ".githooks/pre-commit", - "hash": "15372794838457847250" - }, - { - "file": ".github/CODEOWNERS", - "hash": "1161609351041630454" - }, - { - "file": ".github/ISSUE_TEMPLATE/bug-report.yml", - "hash": "11361683927336766785" - }, - { - "file": ".github/ISSUE_TEMPLATE/config.yml", - "hash": "4643315755743288306" - }, - { - "file": ".github/ISSUE_TEMPLATE/convergence_epic.md", - "hash": "17729968231153666502" - }, - { - "file": ".github/ISSUE_TEMPLATE/feature-request.yml", - "hash": "607770980651725371" - }, - { - "file": ".github/ISSUE_TEMPLATE/project_pitch.md", - "hash": "5252265332503643828" - }, - { - "file": ".github/ISSUE_TEMPLATE.md", - "hash": "6954141393244600252" - }, - { - "file": ".github/MAINTAINERS", - "hash": "5419860629815045626" - }, - { - "file": ".github/PULL_REQUEST_TEMPLATE.md", - "hash": "6045798228976228614" - }, - { - "file": ".github/actions/build-to/action.yml", - "hash": "14285133294112344962" - }, - { - "file": ".github/dependabot.yml", - "hash": "15884745461080583356" - }, - { - "file": ".github/github-docs-readme.md", - "hash": "8005514880810995137" - }, - { - "file": ".github/labeler.yml", - "hash": "2070969622130391010" - }, - { - "file": ".github/policies/botRules.yml", - "hash": "7035269116937667729" - }, - { - "file": ".github/triage-bot.config.json", - "hash": "940308932877237483" - }, - { - "file": ".github/workflows/check-packages.yml", - "hash": "3946725582546576291" - }, - { - "file": ".github/workflows/create-milestone.yml", - "hash": "1142107779834971840" - }, - { - "file": ".github/workflows/docsite-publish-chromatic.yml", - "hash": "2029085810802667172" - }, - { - "file": ".github/workflows/docsite-publish-ghpages.yml", - "hash": "16657591679380716140" - }, - { - "file": ".github/workflows/issues.yml", - "hash": "10056000463541202635" - }, - { - "file": ".github/workflows/pr-housekeeping.yml", - "hash": "15884677227496934669" - }, - { - "file": ".gitignore", - "hash": "10160316119231233485" - }, - { - "file": ".gulp.js", - "hash": "12700903439952829776" - }, - { - "file": ".npmrc", - "hash": "9995408953225804381" - }, - { - "file": ".nx/cache/file-map.json", - "hash": "16152040667540282622" - }, - { - "file": ".nx/cache/lockfile.hash", - "hash": "6276763015230524403" - }, - { - "file": ".nx/cache/nx-console-project-graph/project-graph.html", - "hash": "17036869540637447991" - }, - { - "file": ".nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt", - "hash": "5667550289807473445" - }, - { - "file": ".nx/cache/nx-console-project-graph/static/environment.js", - "hash": "7695770233882250782" - }, - { - "file": ".nx/cache/nx-console-project-graph/static/favicon.ico", - "hash": "9303420814833116677" - }, - { - "file": ".nx/cache/nx-console-project-graph/static/main.js", - "hash": "13551439496520482047" - }, - { - "file": ".nx/cache/nx-console-project-graph/static/polyfills.js", - "hash": "5617236864114375205" - }, - { - "file": ".nx/cache/nx-console-project-graph/static/runtime.js", - "hash": "9652903316845995179" - }, - { - "file": ".nx/cache/nx-console-project-graph/static/styles.css", - "hash": "2125456314194136822" - }, - { - "file": ".nx/cache/nx-console-project-graph/static/styles.js", - "hash": "13596360365094399219" - }, - { - "file": ".nx/cache/parsed-lock-file.json", - "hash": "6620842950081707844" - }, - { - "file": ".nx/cache/project-graph.json", - "hash": "798941487848350239" - }, - { - "file": ".nxignore", - "hash": "2359357486224970322" - }, - { - "file": ".prettierignore", - "hash": "16201699265509648634" - }, - { - "file": ".storybook/docs-root.css", - "hash": "18140896469111569519" - }, - { - "file": ".storybook/main.js", - "hash": "3115464059479491036" - }, - { - "file": ".storybook/preview-head-template.html", - "hash": "13122806856189045108" - }, - { - "file": ".storybook/preview.js", - "hash": "14312390948559470416" - }, - { - "file": ".storybook/tsconfig.json", - "hash": "17192340408128753512" - }, - { - "file": ".vscode/extensions.json", - "hash": "14706459097279121095" - }, - { - "file": ".vscode/launch.json", - "hash": "4143130999656239096" - }, - { - "file": ".vscode/settings.json", - "hash": "13203567853116413869" - }, - { - "file": ".vscode/tasks.json", - "hash": "11908008023210469854" - }, - { - "file": ".yarn/releases/cli.js", - "hash": "14515420259799774309" - }, - { - "file": ".yarnrc", - "hash": "6307010616566134412" - }, - { - "file": "CredScanSuppressions.json", - "hash": "15059388161651697715" - }, - { - "file": "LICENSE", - "hash": "7511268154418943102" - }, - { - "file": "README.md", - "hash": "7179812941833086881" - }, - { - "file": "SECURITY.md", - "hash": "3882931430963615682" - }, - { - "file": "azure-pipelines-ci.yml", - "hash": "6224402156793661596" - }, - { - "file": "azure-pipelines-pr.yml", - "hash": "8026383614236103278" - }, - { - "file": "azure-pipelines.bundlesize.yml", - "hash": "5708116191540769216" - }, - { - "file": "azure-pipelines.hotfix.yml", - "hash": "5385912421261827857" - }, - { - "file": "azure-pipelines.perf-test.yml", - "hash": "9256413311808541814" - }, - { - "file": "azure-pipelines.release-fluentui.yml", - "hash": "15976427725870573768" - }, - { - "file": "azure-pipelines.release-vnext-nightly.yml", - "hash": "945921554062233524" - }, - { - "file": "azure-pipelines.release-vnext.yml", - "hash": "14310962057240244679" - }, - { - "file": "azure-pipelines.release.yml", - "hash": "1877987394882778699" - }, - { - "file": "azure-pipelines.vrt-baseline.yml", - "hash": "6516454854181943060" - }, - { - "file": "azure-pipelines.vrt-pr.yml", - "hash": "6068576614530189907" - }, - { - "file": "babel.config.js", - "hash": "17551453168216581109" - }, - { - "file": "beachball.config.js", - "hash": "7658404787142597526" - }, - { - "file": "dangerfile.js", - "hash": "8760594520496347313" - }, - { - "file": "download-vr-cli.yml", - "hash": "16411688154606977706" - }, - { - "file": "ghdocs/README.md", - "hash": "17847901488879781447" - }, - { - "file": "ghdocs/img/VS_rgb_Purple.png", - "hash": "7882144405776447821" - }, - { - "file": "ghdocs/img/outlook-350-150.png", - "hash": "8054339320490907721" - }, - { - "file": "ghdocs/img/yammer.png", - "hash": "920574969146625679" - }, - { - "file": "ghdocs/medias/fluentui-ep01-preview.gif", - "hash": "1425778248748549245" - }, - { - "file": "ghdocs/medias/fluentui-ep02-preview.gif", - "hash": "1138635008268217784" - }, - { - "file": "ghdocs/medias/fluentui-ep03-preview.gif", - "hash": "2891125804835572770" - }, - { - "file": "ghdocs/medias/fluentui-ep04-preview.gif", - "hash": "17175886782884823304" - }, - { - "file": "ghdocs/medias/fluentui-ep05-preview.gif", - "hash": "8765458178112812607" - }, - { - "file": "ghdocs/medias/fluentui-ep06-preview.gif", - "hash": "15652695696136650106" - }, - { - "file": "gulpfile.ts", - "hash": "18069122030238466590" - }, - { - "file": "jest.config.ts", - "hash": "4543644065667831836" - }, - { - "file": "jest.preset.js", - "hash": "260427474452110626" - }, - { - "file": "lage.config.js", - "hash": "10165545679513977602" - }, - { - "file": "lerna.json", - "hash": "2922370513548896703" - }, - { - "file": "lint-staged.config.js", - "hash": "5324425860998318908" - }, - { - "file": "migrations.json", - "hash": "5289524075609688994" - }, - { - "file": "monosize.config.mjs", - "hash": "11680266427320809134" - }, - { - "file": "nx.json", - "hash": "207140001113321695" - }, - { - "file": "package.json", - "hash": "1990045189251339219" - }, - { - "file": "packages/fluentui/.browserslistrc", - "hash": "4789118698836329409" - }, - { - "file": "prettier.config.js", - "hash": "15950369001408380461" - }, - { - "file": "rfcs/README.md", - "hash": "2930762473796767007" - }, - { - "file": "rfcs/TEMPLATE.md", - "hash": "1384441767402476034" - }, - { - "file": "rfcs/assets/high-contrast-theme-black.png", - "hash": "17464004597825580594" - }, - { - "file": "rfcs/assets/high-contrast-theme-current-colors.png", - "hash": "5979681815201755239" - }, - { - "file": "rfcs/assets/high-contrast-theme-custom.png", - "hash": "18388057482892624521" - }, - { - "file": "rfcs/assets/high-contrast-theme-white.png", - "hash": "11172661198168810175" - }, - { - "file": "rfcs/assets/theme-shape-perf-flamegrill.png", - "hash": "13568177746678555" - }, - { - "file": "rfcs/assets/theme-shape-perf-hash-variables.png", - "hash": "4520836790138501965" - }, - { - "file": "rfcs/assets/theme-shape-perf-inline-alias.png", - "hash": "17275510685877961718" - }, - { - "file": "rfcs/assets/theme-shape-perf-master.png", - "hash": "1862073694089130363" - }, - { - "file": "rfcs/assets/theme-shape-perf-no-colors.png", - "hash": "858825998535700566" - }, - { - "file": "rfcs/assets/theme-shape-perf-no-global.png", - "hash": "10530242406272650351" - }, - { - "file": "rfcs/convergence/apperance-migration.md", - "hash": "12687601674495330642" - }, - { - "file": "rfcs/convergence/changelog-guidelines.md", - "hash": "11745297570994629035" - }, - { - "file": "rfcs/convergence/make-styles-no-functions.md", - "hash": "7704723087865212412" - }, - { - "file": "rfcs/convergence/move-out-n-rename-makestyles.md", - "hash": "8048603425884213712" - }, - { - "file": "rfcs/convergence/unified-project-board-process.md", - "hash": "1712184121178645639" - }, - { - "file": "rfcs/future/async-import-hidden-components.md", - "hash": "7300175671726551775" - }, - { - "file": "rfcs/future/prevent-ci-trigger-on-doc-prs.md", - "hash": "961673962691263066" - }, - { - "file": "rfcs/react-components/accessibility/accessibility.md", - "hash": "13376613462572773224" - }, - { - "file": "rfcs/react-components/components/RangeSlider.md", - "hash": "6826031503120548612" - }, - { - "file": "rfcs/react-components/components/avatar-badge-shorthand.md", - "hash": "2990437645634232096" - }, - { - "file": "rfcs/react-components/components/moving-from-focus-zone-to-tabster.md", - "hash": "11953453880829422997" - }, - { - "file": "rfcs/react-components/components/portal-mount-node.md", - "hash": "7446150731214900355" - }, - { - "file": "rfcs/react-components/components/recipes.md", - "hash": "16422187350784100570" - }, - { - "file": "rfcs/react-components/components/tooltip-api-alignment.md", - "hash": "10657943500984611107" - }, - { - "file": "rfcs/react-components/convergence/as-prop.md", - "hash": "17693812557089406545" - }, - { - "file": "rfcs/react-components/convergence/assets/null_render_react_tree.png", - "hash": "11812209095190095221" - }, - { - "file": "rfcs/react-components/convergence/assets/teams_disable_animations.png", - "hash": "14495681657864293022" - }, - { - "file": "rfcs/react-components/convergence/authoring-stories.md", - "hash": "7841256937778661405" - }, - { - "file": "rfcs/react-components/convergence/component-transitions-on-mount-or-unmount.md", - "hash": "12157029700212416437" - }, - { - "file": "rfcs/react-components/convergence/context-values.md", - "hash": "266435899012533290" - }, - { - "file": "rfcs/react-components/convergence/converged-implementation-patterns.md", - "hash": "10852159751073913568" - }, - { - "file": "rfcs/react-components/convergence/custom-styling.md", - "hash": "4191877124315699856" - }, - { - "file": "rfcs/react-components/convergence/dependency-versions.md", - "hash": "18343021363978797878" - }, - { - "file": "rfcs/react-components/convergence/disabling-animations.md", - "hash": "5033661995375680812" - }, - { - "file": "rfcs/react-components/convergence/ending-ie11-support.md", - "hash": "15007007092194706288" - }, - { - "file": "rfcs/react-components/convergence/event-handlers-arguments.md", - "hash": "5313395991203680842" - }, - { - "file": "rfcs/react-components/convergence/event-handlers-event-type.md", - "hash": "14313526370745144737" - }, - { - "file": "rfcs/react-components/convergence/exposing-popper-options.md", - "hash": "8818355132693186159" - }, - { - "file": "rfcs/react-components/convergence/field-custom-components.md", - "hash": "17974113000634410561" - }, - { - "file": "rfcs/react-components/convergence/field-package-layout.md", - "hash": "17130046883313518795" - }, - { - "file": "rfcs/react-components/convergence/first-rule-of-aria.md", - "hash": "16023624275764943839" - }, - { - "file": "rfcs/react-components/convergence/fixed-versions-for-prerelease.md", - "hash": "2723189719660938225" - }, - { - "file": "rfcs/react-components/convergence/focus-and-iteration-towers-2.0.md", - "hash": "10091082234611151009" - }, - { - "file": "rfcs/react-components/convergence/global-contex-registration.md", - "hash": "3938569985413567727" - }, - { - "file": "rfcs/react-components/convergence/handling-keyboard-keys.md", - "hash": "12328615676945188271" - }, - { - "file": "rfcs/react-components/convergence/high-contrast-theme.md", - "hash": "17640526080899602986" - }, - { - "file": "rfcs/react-components/convergence/make-overrides.md", - "hash": "5003078372167962318" - }, - { - "file": "rfcs/react-components/convergence/native-element-props.md", - "hash": "6948149096259040196" - }, - { - "file": "rfcs/react-components/convergence/no-css-shorthands-in-make-styles.md", - "hash": "9304441322480003246" - }, - { - "file": "rfcs/react-components/convergence/popper-js.md", - "hash": "5608717882276841149" - }, - { - "file": "rfcs/react-components/convergence/portal-compat.md", - "hash": "17162644258978037813" - }, - { - "file": "rfcs/react-components/convergence/prop-string-union-naming.md", - "hash": "17098832747287060468" - }, - { - "file": "rfcs/react-components/convergence/provider-style-overrides.md", - "hash": "7792111247308957231" - }, - { - "file": "rfcs/react-components/convergence/remove-commons.md", - "hash": "3272822054502650455" - }, - { - "file": "rfcs/react-components/convergence/remove-null-render.md", - "hash": "6417385005757464246" - }, - { - "file": "rfcs/react-components/convergence/reusing-avatar-in-components.md", - "hash": "15159712521780519350" - }, - { - "file": "rfcs/react-components/convergence/root-as-slot.md", - "hash": "17070242032905897312" - }, - { - "file": "rfcs/react-components/convergence/simplify-prop-merging.md", - "hash": "13975994861395791771" - }, - { - "file": "rfcs/react-components/convergence/slot-children-render-function.md", - "hash": "1594767325772580806" - }, - { - "file": "rfcs/react-components/convergence/slot-null-rendering.md", - "hash": "15078902190290027323" - }, - { - "file": "rfcs/react-components/convergence/ssr-context.md", - "hash": "4782126351189686401" - }, - { - "file": "rfcs/react-components/convergence/static-classes-on-slots.md", - "hash": "14692855906555441537" - }, - { - "file": "rfcs/react-components/convergence/theme-css-variable-insertion.md", - "hash": "387196256676160570" - }, - { - "file": "rfcs/react-components/convergence/theme-shape.md", - "hash": "14138120148475296602" - }, - { - "file": "rfcs/react-components/convergence/theme-shared-colors.md", - "hash": "4302528734893384136" - }, - { - "file": "rfcs/react-components/convergence/theme-tokens.md", - "hash": "5029799780922422513" - }, - { - "file": "rfcs/react-components/convergence/triggers-and-multiple-layers-of-button-handling.md", - "hash": "5880844368602389725" - }, - { - "file": "rfcs/react-components/convergence/upgrade-code-location.md", - "hash": "4406922581587894229" - }, - { - "file": "rfcs/react-components/no-action-prop-value-standardization.md", - "hash": "2853543277788771652" - }, - { - "file": "rfcs/react-components/styles-handbook.md", - "hash": "15392511796595235691" - }, - { - "file": "rfcs/react-components/testing.md", - "hash": "16365746587397202707" - }, - { - "file": "rfcs/shared/build-system/01_convergence_devstack.md", - "hash": "13137961380111527643" - }, - { - "file": "rfcs/shared/build-system/02-solution-style-ts-configs.md", - "hash": "7981251743093545649" - }, - { - "file": "rfcs/shared/build-system/03-packaging-for-npm.md", - "hash": "18010850478053483945" - }, - { - "file": "rfcs/shared/build-system/04-build-shield.md", - "hash": "8811767918283099777" - }, - { - "file": "rfcs/shared/build-system/05-folder-organization.md", - "hash": "11683832903046004341" - }, - { - "file": "rfcs/shared/build-system/05.1-react-components-folder-organization.md", - "hash": "13641582590032409102" - }, - { - "file": "rfcs/shared/build-system/06-browser-support-for-v9.md", - "hash": "9944798343257113140" - }, - { - "file": "rfcs/shared/build-system/07-standard-package-structure-for-v9.md", - "hash": "1780224152909881903" - }, - { - "file": "rfcs/shared/build-system/dependency-management.md", - "hash": "13369986841663830341" - }, - { - "file": "rfcs/shared/build-system/package-public-api.md", - "hash": "4984506131411009219" - }, - { - "file": "rfcs/shared/build-system/ssr-testing.md", - "hash": "13509574307690936005" - }, - { - "file": "rfcs/shared/build-system/triage-automation.md", - "hash": "2158981332374276185" - }, - { - "file": "sizeauditor.json", - "hash": "9999761926179299136" - }, - { - "file": "specs/Breadcrumb.md", - "hash": "11990629491758879472" - }, - { - "file": "specs/Button.md", - "hash": "16677177413697426081" - }, - { - "file": "specs/Checkbox.md", - "hash": "17824592240063419989" - }, - { - "file": "specs/Datepicker.md", - "hash": "1691327942694298650" - }, - { - "file": "specs/Icon.md", - "hash": "9600270159300403408" - }, - { - "file": "specs/Link.md", - "hash": "3697027886104506043" - }, - { - "file": "specs/Pills.md", - "hash": "100824589832628381" - }, - { - "file": "specs/README.md", - "hash": "2718137234641338970" - }, - { - "file": "specs/Skeleton.md", - "hash": "6699886836797932000" - }, - { - "file": "specs/Slider.md", - "hash": "14468254488853141454" - }, - { - "file": "specs/Slots.md", - "hash": "5483069303131154770" - }, - { - "file": "specs/Text.md", - "hash": "9947533469432056165" - }, - { - "file": "specs/makeStyles-classname.png", - "hash": "15197546778416765326" - }, - { - "file": "specs/makeStyles-useCss.png", - "hash": "527576433760107387" - }, - { - "file": "specs/makeStyles.md", - "hash": "17377038766191881570" - }, - { - "file": "syncpack.config.js", - "hash": "14666047203875646910" - }, - { - "file": "tsconfig.base.all.json", - "hash": "2247407206438987653" - }, - { - "file": "tsconfig.base.json", - "hash": "6844115419860854246" - }, - { - "file": "tsconfig.base.v0.json", - "hash": "7727996468301056077" - }, - { - "file": "tsconfig.base.v8.json", - "hash": "4210120256683776273" - }, - { - "file": "tsconfig.json", - "hash": "13079536303676135130" - }, - { - "file": "yarn-ci.sh", - "hash": "10886087986281172566" - }, - { - "file": "yarn.lock", - "hash": "12920953339718312338" - } - ] - } -} diff --git a/.nx/cache/lockfile.hash b/.nx/cache/lockfile.hash deleted file mode 100644 index 999eb11f1b46d..0000000000000 --- a/.nx/cache/lockfile.hash +++ /dev/null @@ -1 +0,0 @@ -9727845429273905709 \ No newline at end of file diff --git a/.nx/cache/nx-console-project-graph/project-graph.html b/.nx/cache/nx-console-project-graph/project-graph.html deleted file mode 100644 index 8a72a41df2557..0000000000000 --- a/.nx/cache/nx-console-project-graph/project-graph.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - Nx Workspace Project Graph - - - - - - - - - - - - -
- - - - - - diff --git a/.nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt b/.nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt deleted file mode 100644 index 0eeb358ffa92b..0000000000000 --- a/.nx/cache/nx-console-project-graph/static/3rdpartylicenses.txt +++ /dev/null @@ -1,665 +0,0 @@ -@babel/runtime -MIT -MIT License - -Copyright (c) 2014-present Sebastian McKenzie and other contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -@floating-ui/react -MIT -MIT License - -Copyright (c) 2021 Floating UI contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@floating-ui/react-dom -MIT -MIT License - -Copyright (c) 2021 Floating UI contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@headlessui/react -MIT - -@heroicons/react -MIT - -@nx/nx-source -MIT -(The MIT License) - -Copyright (c) 2017-2023 Narwhal Technologies Inc. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -'Software'), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -@popperjs/core -MIT -The MIT License (MIT) - -Copyright (c) 2019 Federico Zivolo - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -@remix-run/router -MIT -MIT License - -Copyright (c) React Training LLC 2015-2019 -Copyright (c) Remix Software Inc. 2020-2021 -Copyright (c) Shopify Inc. 2022-2023 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@xstate/immer -MIT -The MIT License (MIT) - -Copyright (c) 2015 David Khourshid - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - -@xstate/inspect -MIT - -@xstate/react -MIT -The MIT License (MIT) - -Copyright (c) 2015 David Khourshid - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - - -classnames -MIT -The MIT License (MIT) - -Copyright (c) 2018 Jed Watson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -core-js -MIT -Copyright (c) 2014-2022 Denis Pushkarev - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -cytoscape -MIT -Copyright (c) 2016-2022, The Cytoscape Consortium. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the “Software”), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -cytoscape-dagre -MIT - - -Copyright (c) 2016-2018, 2020, The Cytoscape Consortium. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the “Software”), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -cytoscape-popper -MIT - - -Copyright (c) 2018-2021, The Cytoscape Consortium. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the “Software”), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -dagre -MIT -Copyright (c) 2012-2014 Chris Pettitt - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -fast-safe-stringify -MIT -The MIT License (MIT) - -Copyright (c) 2016 David Mark Clements -Copyright (c) 2017 David Mark Clements & Matteo Collina -Copyright (c) 2018 David Mark Clements, Matteo Collina & Ruben Bridgewater - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -graphlib -MIT -Copyright (c) 2012-2014 Chris Pettitt - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -heap -MIT -The MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -immer -MIT -MIT License - -Copyright (c) 2017 Michel Weststrate - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -jsx-runtime -MIT - -lodash -MIT -Copyright OpenJS Foundation and other contributors - -Based on Underscore.js, copyright Jeremy Ashkenas, -DocumentCloud and Investigative Reporters & Editors - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/lodash/lodash - -The following license applies to all parts of this software except as -documented below: - -==== - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -==== - -Copyright and related rights for sample code are waived via CC0. Sample -code is defined as all source code displayed within the prose of the -documentation. - -CC0: http://creativecommons.org/publicdomain/zero/1.0/ - -==== - -Files located in the node_modules and vendor directories are externally -maintained libraries used by this software which have their own -licenses; we recommend you read them, as their terms may differ from the -terms above. - - -preact -MIT -The MIT License (MIT) - -Copyright (c) 2015-present Jason Miller - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -preact-compat -MIT - -preact-hooks -MIT - -react-router -MIT -MIT License - -Copyright (c) React Training LLC 2015-2019 -Copyright (c) Remix Software Inc. 2020-2021 -Copyright (c) Shopify Inc. 2022-2023 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -react-router-dom -MIT -MIT License - -Copyright (c) React Training LLC 2015-2019 -Copyright (c) Remix Software Inc. 2020-2021 -Copyright (c) Shopify Inc. 2022-2023 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -use-isomorphic-layout-effect -MIT -MIT License - -Copyright (c) Mateusz Burzyński - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -use-sync-external-store -MIT -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -xstate -MIT -The MIT License (MIT) - -Copyright (c) 2015 David Khourshid - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/.nx/cache/nx-console-project-graph/static/environment.js b/.nx/cache/nx-console-project-graph/static/environment.js deleted file mode 100644 index 1847ffa70c4d5..0000000000000 --- a/.nx/cache/nx-console-project-graph/static/environment.js +++ /dev/null @@ -1,148884 +0,0 @@ -window.exclude = []; -window.watch = false; -window.environment = 'release'; -window.localMode = 'build'; - -window.appConfig = { - showDebugger: false, - showExperimentalFeatures: false, - workspaces: [ - { - id: 'local', - label: 'local', - projectGraphUrl: 'project-graph.json', - taskGraphUrl: 'task-graph.json', - }, - ], - defaultWorkspaceId: 'local', -}; -window.projectGraphResponse = { - hash: '7bd42972ca8f4b838e58ae80e1060c9f32fb996f736980a1a7c9d22fb808b957', - projects: [ - { - name: '@fluentui/react-storybook-addon-export-to-sandbox', - type: 'lib', - data: { - root: 'packages/react-components/react-storybook-addon-export-to-sandbox', - sourceRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox/src', - name: '@fluentui/react-storybook-addon-export-to-sandbox', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/babel-preset-storybook-full-source', - type: 'lib', - data: { - root: 'packages/react-components/babel-preset-storybook-full-source', - sourceRoot: 'packages/react-components/babel-preset-storybook-full-source/src', - name: '@fluentui/babel-preset-storybook-full-source', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:node'], - }, - }, - { - name: '@fluentui/react-timepicker-compat-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-timepicker-compat-preview', - sourceRoot: 'packages/react-components/react-timepicker-compat-preview/src', - name: '@fluentui/react-timepicker-compat-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext', 'compat'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-teaching-popover-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-teaching-popover-preview', - sourceRoot: 'packages/react-components/react-teaching-popover-preview/src', - name: '@fluentui/react-teaching-popover-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/babel-preset-global-context', - type: 'lib', - data: { - root: 'packages/react-components/babel-preset-global-context', - sourceRoot: 'packages/react-components/babel-preset-global-context/src', - name: '@fluentui/babel-preset-global-context', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - pree2e: { executor: 'nx:run-script', options: { script: 'pree2e' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:node'], - }, - }, - { - name: '@fluentui/react-portal-compat-context', - type: 'lib', - data: { - root: 'packages/react-components/react-portal-compat-context', - sourceRoot: 'packages/react-components/react-portal-compat-context/src', - name: '@fluentui/react-portal-compat-context', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'ships-amd', 'platform:web'], - }, - }, - { - name: '@fluentui/react-swatch-picker-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-swatch-picker-preview', - sourceRoot: 'packages/react-components/react-swatch-picker-preview/src', - name: '@fluentui/react-swatch-picker-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-conformance-griffel', - type: 'lib', - data: { - root: 'packages/react-components/react-conformance-griffel', - sourceRoot: 'packages/react-components/react-conformance-griffel/src', - name: '@fluentui/react-conformance-griffel', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:node'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-northstar-emotion-renderer', - type: 'lib', - data: { - root: 'packages/fluentui/react-northstar-emotion-renderer', - sourceRoot: 'packages/fluentui/react-northstar-emotion-renderer', - name: '@fluentui/react-northstar-emotion-renderer', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-component-nesting-registry', - type: 'lib', - data: { - root: 'packages/fluentui/react-component-nesting-registry', - sourceRoot: 'packages/fluentui/react-component-nesting-registry', - name: '@fluentui/react-component-nesting-registry', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-colorpicker-compat', - type: 'lib', - data: { - root: 'packages/react-components/react-colorpicker-compat', - sourceRoot: 'packages/react-components/react-colorpicker-compat/src', - name: '@fluentui/react-colorpicker-compat', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-timepicker-compat', - type: 'lib', - data: { - root: 'packages/react-components/react-timepicker-compat', - sourceRoot: 'packages/react-components/react-timepicker-compat/src', - name: '@fluentui/react-timepicker-compat', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext', 'compat'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-northstar-styles-renderer', - type: 'lib', - data: { - root: 'packages/fluentui/react-northstar-styles-renderer', - sourceRoot: 'packages/fluentui/react-northstar-styles-renderer', - name: '@fluentui/react-northstar-styles-renderer', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-datepicker-compat', - type: 'lib', - data: { - root: 'packages/react-components/react-datepicker-compat', - sourceRoot: 'packages/react-components/react-datepicker-compat/src', - name: '@fluentui/react-datepicker-compat', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web', 'compat'], - }, - }, - { - name: '@fluentui/react-component-event-listener', - type: 'lib', - data: { - root: 'packages/fluentui/react-component-event-listener', - sourceRoot: 'packages/fluentui/react-component-event-listener', - name: '@fluentui/react-component-event-listener', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-context-selector', - type: 'lib', - data: { - root: 'packages/react-components/react-context-selector', - sourceRoot: 'packages/react-components/react-context-selector/src', - name: '@fluentui/react-context-selector', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-migration-v0-v9', - type: 'lib', - data: { - root: 'packages/react-components/react-migration-v0-v9', - sourceRoot: 'packages/react-components/react-migration-v0-v9/src', - name: '@fluentui/react-migration-v0-v9', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'react-northstar', 'platform:web'], - }, - }, - { - name: '@fluentui/react-migration-v8-v9', - type: 'lib', - data: { - root: 'packages/react-components/react-migration-v8-v9', - sourceRoot: 'packages/react-components/react-migration-v8-v9/src', - name: '@fluentui/react-migration-v8-v9', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'v8', 'platform:web'], - }, - }, - { - name: '@fluentui/react-storybook-addon', - type: 'lib', - data: { - root: 'packages/react-components/react-storybook-addon', - sourceRoot: 'packages/react-components/react-storybook-addon/src', - name: '@fluentui/react-storybook-addon', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-northstar-fela-renderer', - type: 'lib', - data: { - root: 'packages/fluentui/react-northstar-fela-renderer', - sourceRoot: 'packages/fluentui/react-northstar-fela-renderer', - name: '@fluentui/react-northstar-fela-renderer', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-motions-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-motions-preview', - sourceRoot: 'packages/react-components/react-motions-preview/src', - name: '@fluentui/react-motions-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-calendar-compat', - type: 'lib', - data: { - root: 'packages/react-components/react-calendar-compat', - sourceRoot: 'packages/react-components/react-calendar-compat/src', - name: '@fluentui/react-calendar-compat', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext', 'compat'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-shared-contexts', - type: 'lib', - data: { - root: 'packages/react-components/react-shared-contexts', - sourceRoot: 'packages/react-components/react-shared-contexts/src', - name: '@fluentui/react-shared-contexts', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-motion-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-motion-preview', - sourceRoot: 'packages/react-components/react-motion-preview/src', - name: '@fluentui/react-motion-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-rating-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-rating-preview', - sourceRoot: 'packages/react-components/react-rating-preview/src', - name: '@fluentui/react-rating-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-search-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-search-preview', - sourceRoot: 'packages/react-components/react-search-preview/src', - name: '@fluentui/react-search-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-portal-compat', - type: 'lib', - data: { - root: 'packages/react-components/react-portal-compat', - sourceRoot: 'packages/react-components/react-portal-compat/src', - name: '@fluentui/react-portal-compat', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'ships-amd', 'platform:web'], - }, - }, - { - name: '@fluentui/react-list-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-list-preview', - sourceRoot: 'packages/react-components/react-list-preview/src', - name: '@fluentui/react-list-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-northstar-prototypes', - type: 'lib', - data: { - root: 'packages/fluentui/react-northstar-prototypes', - sourceRoot: 'packages/fluentui/react-northstar-prototypes', - name: '@fluentui/react-northstar-prototypes', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-positioning', - type: 'lib', - data: { - root: 'packages/react-components/react-positioning', - sourceRoot: 'packages/react-components/react-positioning/src', - name: '@fluentui/react-positioning', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/priority-overflow', - type: 'lib', - data: { - root: 'packages/react-components/priority-overflow', - sourceRoot: 'packages/react-components/priority-overflow/src', - name: '@fluentui/priority-overflow', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-jsx-runtime', - type: 'lib', - data: { - root: 'packages/react-components/react-jsx-runtime', - sourceRoot: 'packages/react-components/react-jsx-runtime/src', - name: '@fluentui/react-jsx-runtime', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-nav-preview', - type: 'lib', - data: { - root: 'packages/react-components/react-nav-preview', - sourceRoot: 'packages/react-components/react-nav-preview/src', - name: '@fluentui/react-nav-preview', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-virtualizer', - type: 'lib', - data: { - root: 'packages/react-components/react-virtualizer', - sourceRoot: 'packages/react-components/react-virtualizer/src', - name: '@fluentui/react-virtualizer', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-message-bar', - type: 'lib', - data: { - root: 'packages/react-components/react-message-bar', - sourceRoot: 'packages/react-components/react-message-bar/src', - name: '@fluentui/react-message-bar', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-spinbutton', - type: 'lib', - data: { - root: 'packages/react-components/react-spinbutton', - sourceRoot: 'packages/react-components/react-spinbutton/src', - name: '@fluentui/react-spinbutton', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-breadcrumb', - type: 'lib', - data: { - root: 'packages/react-components/react-breadcrumb', - sourceRoot: 'packages/react-components/react-breadcrumb/src', - name: '@fluentui/react-breadcrumb', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-infobutton', - type: 'lib', - data: { - root: 'packages/react-components/react-infobutton', - sourceRoot: 'packages/react-components/react-infobutton/src', - name: '@fluentui/react-infobutton', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-components', - type: 'lib', - data: { - root: 'packages/react-components/react-components', - sourceRoot: 'packages/react-components/react-components/src', - name: '@fluentui/react-components', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'verify-packaging': { - executor: 'nx:run-script', - options: { script: 'verify-packaging' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-theme-sass', - type: 'lib', - data: { - root: 'packages/react-components/react-theme-sass', - sourceRoot: 'packages/react-components/react-theme-sass/src', - name: '@fluentui/react-theme-sass', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-utilities', - type: 'lib', - data: { - root: 'packages/react-components/react-utilities', - sourceRoot: 'packages/react-components/react-utilities/src', - name: '@fluentui/react-utilities', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-infolabel', - type: 'lib', - data: { - root: 'packages/react-components/react-infolabel', - sourceRoot: 'packages/react-components/react-infolabel/src', - name: '@fluentui/react-infolabel', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-accordion', - type: 'lib', - data: { - root: 'packages/react-components/react-accordion', - sourceRoot: 'packages/react-components/react-accordion/src', - name: '@fluentui/react-accordion', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-checkbox', - type: 'lib', - data: { - root: 'packages/react-components/react-checkbox', - sourceRoot: 'packages/react-components/react-checkbox/src', - name: '@fluentui/react-checkbox', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-provider', - type: 'lib', - data: { - root: 'packages/react-components/react-provider', - sourceRoot: 'packages/react-components/react-provider/src', - name: '@fluentui/react-provider', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/theme-designer', - type: 'lib', - data: { - root: 'packages/react-components/theme-designer', - sourceRoot: 'packages/react-components/theme-designer/src', - name: '@fluentui/theme-designer', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'build-storybook': { executor: 'nx:run-script', options: { script: 'build-storybook' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-combobox', - type: 'lib', - data: { - root: 'packages/react-components/react-combobox', - sourceRoot: 'packages/react-components/react-combobox/src', - name: '@fluentui/react-combobox', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/global-context', - type: 'lib', - data: { - root: 'packages/react-components/global-context', - sourceRoot: 'packages/react-components/global-context/src', - name: '@fluentui/global-context', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-progress', - type: 'lib', - data: { - root: 'packages/react-components/react-progress', - sourceRoot: 'packages/react-components/react-progress/src', - name: '@fluentui/react-progress', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-skeleton', - type: 'lib', - data: { - root: 'packages/react-components/react-skeleton', - sourceRoot: 'packages/react-components/react-skeleton/src', - name: '@fluentui/react-skeleton', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-overflow', - type: 'lib', - data: { - root: 'packages/react-components/react-overflow', - sourceRoot: 'packages/react-components/react-overflow/src', - name: '@fluentui/react-overflow', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-textarea', - type: 'lib', - data: { - root: 'packages/react-components/react-textarea', - sourceRoot: 'packages/react-components/react-textarea/src', - name: '@fluentui/react-textarea', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/keyboard-keys', - type: 'lib', - data: { - root: 'packages/react-components/keyboard-keys', - sourceRoot: 'packages/react-components/keyboard-keys/src', - name: '@fluentui/keyboard-keys', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-spinner', - type: 'lib', - data: { - root: 'packages/react-components/react-spinner', - sourceRoot: 'packages/react-components/react-spinner/src', - name: '@fluentui/react-spinner', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-persona', - type: 'lib', - data: { - root: 'packages/react-components/react-persona', - sourceRoot: 'packages/react-components/react-persona/src', - name: '@fluentui/react-persona', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-toolbar', - type: 'lib', - data: { - root: 'packages/react-components/react-toolbar', - sourceRoot: 'packages/react-components/react-toolbar/src', - name: '@fluentui/react-toolbar', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-divider', - type: 'lib', - data: { - root: 'packages/react-components/react-divider', - sourceRoot: 'packages/react-components/react-divider/src', - name: '@fluentui/react-divider', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-popover', - type: 'lib', - data: { - root: 'packages/react-components/react-popover', - sourceRoot: 'packages/react-components/react-popover/src', - name: '@fluentui/react-popover', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-tooltip', - type: 'lib', - data: { - root: 'packages/react-components/react-tooltip', - sourceRoot: 'packages/react-components/react-tooltip/src', - name: '@fluentui/react-tooltip', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-icons-northstar', - type: 'lib', - data: { - root: 'packages/fluentui/react-icons-northstar', - sourceRoot: 'packages/fluentui/react-icons-northstar', - name: '@fluentui/react-icons-northstar', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-tabster', - type: 'lib', - data: { - root: 'packages/react-components/react-tabster', - sourceRoot: 'packages/react-components/react-tabster/src', - name: '@fluentui/react-tabster', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-portal', - type: 'lib', - data: { - root: 'packages/react-components/react-portal', - sourceRoot: 'packages/react-components/react-portal/src', - name: '@fluentui/react-portal', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-drawer', - type: 'lib', - data: { - root: 'packages/react-components/react-drawer', - sourceRoot: 'packages/react-components/react-drawer/src', - name: '@fluentui/react-drawer', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-switch', - type: 'lib', - data: { - root: 'packages/react-components/react-switch', - sourceRoot: 'packages/react-components/react-switch/src', - name: '@fluentui/react-switch', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-avatar', - type: 'lib', - data: { - root: 'packages/react-components/react-avatar', - sourceRoot: 'packages/react-components/react-avatar/src', - name: '@fluentui/react-avatar', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-button', - type: 'lib', - data: { - root: 'packages/react-components/react-button', - sourceRoot: 'packages/react-components/react-button/src', - name: '@fluentui/react-button', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-dialog', - type: 'lib', - data: { - root: 'packages/react-components/react-dialog', - sourceRoot: 'packages/react-components/react-dialog/src', - name: '@fluentui/react-dialog', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-select', - type: 'lib', - data: { - root: 'packages/react-components/react-select', - sourceRoot: 'packages/react-components/react-select/src', - name: '@fluentui/react-select', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-slider', - type: 'lib', - data: { - root: 'packages/react-components/react-slider', - sourceRoot: 'packages/react-components/react-slider/src', - name: '@fluentui/react-slider', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/jest-serializer-merge-styles', - type: 'lib', - data: { - root: 'packages/jest-serializer-merge-styles', - sourceRoot: 'packages/jest-serializer-merge-styles/src', - name: '@fluentui/jest-serializer-merge-styles', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8', 'platform:node'], - }, - }, - { - name: '@fluentui/react-image', - type: 'lib', - data: { - root: 'packages/react-components/react-image', - sourceRoot: 'packages/react-components/react-image/src', - name: '@fluentui/react-image', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-input', - type: 'lib', - data: { - root: 'packages/react-components/react-input', - sourceRoot: 'packages/react-components/react-input/src', - name: '@fluentui/react-input', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-component-ref', - type: 'lib', - data: { - root: 'packages/fluentui/react-component-ref', - sourceRoot: 'packages/fluentui/react-component-ref', - name: '@fluentui/react-component-ref', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'build:info': { executor: 'nx:run-script', options: { script: 'build:info' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-table', - type: 'lib', - data: { - root: 'packages/react-components/react-table', - sourceRoot: 'packages/react-components/react-table/src', - name: '@fluentui/react-table', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-field', - type: 'lib', - data: { - root: 'packages/react-components/react-field', - sourceRoot: 'packages/react-components/react-field/src', - name: '@fluentui/react-field', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-radio', - type: 'lib', - data: { - root: 'packages/react-components/react-radio', - sourceRoot: 'packages/react-components/react-radio/src', - name: '@fluentui/react-radio', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-theme', - type: 'lib', - data: { - root: 'packages/react-components/react-theme', - sourceRoot: 'packages/react-components/react-theme/src', - name: '@fluentui/react-theme', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-label', - type: 'lib', - data: { - root: 'packages/react-components/react-label', - sourceRoot: 'packages/react-components/react-label/src', - name: '@fluentui/react-label', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-toast', - type: 'lib', - data: { - root: 'packages/react-components/react-toast', - sourceRoot: 'packages/react-components/react-toast/src', - name: '@fluentui/react-toast', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-badge', - type: 'lib', - data: { - root: 'packages/react-components/react-badge', - sourceRoot: 'packages/react-components/react-badge/src', - name: '@fluentui/react-badge', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/perf-test-northstar', - type: 'app', - data: { - root: 'packages/fluentui/perf-test-northstar', - sourceRoot: 'packages/fluentui/perf-test-northstar', - name: '@fluentui/perf-test-northstar', - projectType: 'application', - targets: { - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'perf:test': { executor: 'nx:run-script', options: { script: 'perf:test' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-alert', - type: 'lib', - data: { - root: 'packages/react-components/react-alert', - sourceRoot: 'packages/react-components/react-alert/src', - name: '@fluentui/react-alert', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-aria', - type: 'lib', - data: { - root: 'packages/react-components/react-aria', - sourceRoot: 'packages/react-components/react-aria/src', - name: '@fluentui/react-aria', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-tree', - type: 'lib', - data: { - root: 'packages/react-components/react-tree', - sourceRoot: 'packages/react-components/react-tree/src', - name: '@fluentui/react-tree', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:web', 'vNext'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-menu', - type: 'lib', - data: { - root: 'packages/react-components/react-menu', - sourceRoot: 'packages/react-components/react-menu/src', - name: '@fluentui/react-menu', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/ts-minbar-test-react-components', - type: 'app', - data: { - root: 'apps/ts-minbar-test-react-components', - sourceRoot: 'apps/ts-minbar-test-react-components', - name: '@fluentui/ts-minbar-test-react-components', - projectType: 'application', - targets: { - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/ability-attributes', - type: 'lib', - data: { - root: 'packages/fluentui/ability-attributes', - sourceRoot: 'packages/fluentui/ability-attributes', - name: '@fluentui/ability-attributes', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - schema: { executor: 'nx:run-script', options: { script: 'schema' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-tabs', - type: 'lib', - data: { - root: 'packages/react-components/react-tabs', - sourceRoot: 'packages/react-components/react-tabs/src', - name: '@fluentui/react-tabs', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-card', - type: 'lib', - data: { - root: 'packages/react-components/react-card', - sourceRoot: 'packages/react-components/react-card/src', - name: '@fluentui/react-card', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-link', - type: 'lib', - data: { - root: 'packages/react-components/react-link', - sourceRoot: 'packages/react-components/react-link/src', - name: '@fluentui/react-link', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-tags', - type: 'lib', - data: { - root: 'packages/react-components/react-tags', - sourceRoot: 'packages/react-components/react-tags/src', - name: '@fluentui/react-tags', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/react-text', - type: 'lib', - data: { - root: 'packages/react-components/react-text', - sourceRoot: 'packages/react-components/react-text/src', - name: '@fluentui/react-text', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'bundle-size': { executor: 'nx:run-script', options: { script: 'bundle-size' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'verify-packaging': { - executor: 'nx:run-script', - options: { script: 'verify-packaging' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - tags: ['vNext', 'platform:web'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-docsite-components', - type: 'lib', - data: { - root: 'packages/react-docsite-components', - sourceRoot: 'packages/react-docsite-components/src', - name: '@fluentui/react-docsite-components', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/react-icons-mdl2-branded', - type: 'lib', - data: { - root: 'packages/react-icons-mdl2-branded', - sourceRoot: 'packages/react-icons-mdl2-branded', - name: '@fluentui/react-icons-mdl2-branded', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/react-proptypes', - type: 'lib', - data: { - root: 'packages/fluentui/react-proptypes', - sourceRoot: 'packages/fluentui/react-proptypes', - name: '@fluentui/react-proptypes', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-telemetry', - type: 'lib', - data: { - root: 'packages/fluentui/react-telemetry', - sourceRoot: 'packages/fluentui/react-telemetry', - name: '@fluentui/react-telemetry', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/docs-components', - type: 'lib', - data: { - root: 'packages/fluentui/docs-components', - sourceRoot: 'packages/fluentui/docs-components', - name: '@fluentui/docs-components', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-northstar', - type: 'lib', - data: { - root: 'packages/fluentui/react-northstar', - sourceRoot: 'packages/fluentui/react-northstar', - name: '@fluentui/react-northstar', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'build:info': { executor: 'nx:run-script', options: { script: 'build:info' }, configurations: {} }, - 'bundle-size-auditor': { - executor: 'nx:run-script', - options: { script: 'bundle-size-auditor' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-bindings', - type: 'lib', - data: { - root: 'packages/fluentui/react-bindings', - sourceRoot: 'packages/fluentui/react-bindings', - name: '@fluentui/react-bindings', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'build:info': { executor: 'nx:run-script', options: { script: 'build:info' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/circulars-test', - type: 'app', - data: { - root: 'packages/fluentui/circulars-test', - sourceRoot: 'packages/fluentui/circulars-test', - name: '@fluentui/circulars-test', - projectType: 'application', - targets: { - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/local-sandbox', - type: 'app', - data: { - root: 'packages/fluentui/local-sandbox', - sourceRoot: 'packages/fluentui/local-sandbox', - name: '@fluentui/local-sandbox', - projectType: 'application', - targets: { - 'build:withdependencies': { - executor: 'nx:run-script', - options: { script: 'build:withdependencies' }, - configurations: {}, - }, - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'build:production': { - executor: 'nx:run-script', - options: { script: 'build:production' }, - configurations: {}, - }, - serve: { executor: 'nx:run-script', options: { script: 'serve' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/accessibility', - type: 'lib', - data: { - root: 'packages/fluentui/accessibility', - sourceRoot: 'packages/fluentui/accessibility', - name: '@fluentui/accessibility', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/projects-test', - type: 'app', - data: { - root: 'packages/fluentui/projects-test', - sourceRoot: 'packages/fluentui/projects-test', - name: '@fluentui/projects-test', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/perf-test-react-components', - type: 'app', - data: { - root: 'apps/perf-test-react-components', - sourceRoot: 'apps/perf-test-react-components', - name: '@fluentui/perf-test-react-components', - projectType: 'application', - targets: { - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'test:perf': { executor: 'nx:run-script', options: { script: 'test:perf' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/react-builder', - type: 'lib', - data: { - root: 'packages/fluentui/react-builder', - sourceRoot: 'packages/fluentui/react-builder', - name: '@fluentui/react-builder', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-window-provider', - type: 'lib', - data: { - root: 'packages/react-window-provider', - sourceRoot: 'packages/react-window-provider', - name: '@fluentui/react-window-provider', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/code-sandbox', - type: 'lib', - data: { - root: 'packages/fluentui/code-sandbox', - sourceRoot: 'packages/fluentui/code-sandbox', - name: '@fluentui/code-sandbox', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/react-file-type-icons', - type: 'lib', - data: { - root: 'packages/react-file-type-icons', - sourceRoot: 'packages/react-file-type-icons/src', - name: '@fluentui/react-file-type-icons', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/vr-tests-react-components', - type: 'app', - data: { - root: 'apps/vr-tests-react-components', - sourceRoot: 'apps/vr-tests-react-components', - name: '@fluentui/vr-tests-react-components', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'vr:build': { executor: 'nx:run-script', options: { script: 'vr:build' }, configurations: {} }, - 'vr:test': { executor: 'nx:run-script', options: { script: 'vr:test' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext'], - }, - }, - { - name: '@fluentui/public-docsite-resources', - type: 'app', - data: { - root: 'apps/public-docsite-resources', - sourceRoot: 'apps/public-docsite-resources', - name: '@fluentui/public-docsite-resources', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/public-docsite-setup', - type: 'lib', - data: { - root: 'packages/public-docsite-setup', - sourceRoot: 'packages/public-docsite-setup', - name: '@fluentui/public-docsite-setup', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/recipes-react-components', - type: 'app', - data: { - root: 'apps/recipes-react-components', - sourceRoot: 'apps/recipes-react-components/src', - name: '@fluentui/recipes-react-components', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext'], - }, - }, - { - name: '@fluentui/date-time-utilities', - type: 'lib', - data: { - root: 'packages/date-time-utilities', - sourceRoot: 'packages/date-time-utilities/src', - name: '@fluentui/date-time-utilities', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/react-icon-provider', - type: 'lib', - data: { - root: 'packages/react-icon-provider', - sourceRoot: 'packages/react-icon-provider', - name: '@fluentui/react-icon-provider', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/scripts-update-release-notes', - type: 'lib', - data: { - root: 'scripts/update-release-notes', - sourceRoot: 'scripts/update-release-notes', - name: '@fluentui/scripts-update-release-notes', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-monaco-editor', - type: 'lib', - data: { - root: 'packages/react-monaco-editor', - sourceRoot: 'packages/react-monaco-editor', - name: '@fluentui/react-monaco-editor', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/scripts-perf-test-flamegrill', - type: 'lib', - data: { - root: 'scripts/perf-test-flamegrill', - sourceRoot: 'scripts/perf-test-flamegrill/src', - name: '@fluentui/scripts-perf-test-flamegrill', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools', 'platform:any'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-bundle-size-auditor', - type: 'lib', - data: { - root: 'scripts/bundle-size-auditor', - sourceRoot: 'scripts/bundle-size-auditor/src', - name: '@fluentui/scripts-bundle-size-auditor', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/react-experiments', - type: 'lib', - data: { - root: 'packages/react-experiments', - sourceRoot: 'packages/react-experiments/src', - name: '@fluentui/react-experiments', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'start:legacy': { executor: 'nx:run-script', options: { script: 'start:legacy' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/react-conformance', - type: 'lib', - data: { - root: 'packages/react-conformance', - sourceRoot: 'packages/react-conformance/src', - name: '@fluentui/react-conformance', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:node'], - }, - }, - { - name: '@fluentui/foundation-legacy', - type: 'lib', - data: { - root: 'packages/foundation-legacy', - sourceRoot: 'packages/foundation-legacy/src', - name: '@fluentui/foundation-legacy', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/webpack-utilities', - type: 'lib', - data: { - root: 'packages/webpack-utilities', - sourceRoot: 'packages/webpack-utilities/src', - name: '@fluentui/webpack-utilities', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8', 'platform:node'], - }, - }, - { - name: '@fluentui/ts-minbar-test-react', - type: 'app', - data: { - root: 'apps/ts-minbar-test-react', - sourceRoot: 'apps/ts-minbar-test-react', - name: '@fluentui/ts-minbar-test-react', - projectType: 'application', - targets: { - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/scheme-utilities', - type: 'lib', - data: { - root: 'packages/scheme-utilities', - sourceRoot: 'packages/scheme-utilities/src', - name: '@fluentui/scheme-utilities', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/react-icons-mdl2', - type: 'lib', - data: { - root: 'packages/react-icons-mdl2', - sourceRoot: 'packages/react-icons-mdl2', - name: '@fluentui/react-icons-mdl2', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/style-utilities', - type: 'lib', - data: { - root: 'packages/style-utilities', - sourceRoot: 'packages/style-utilities/src', - name: '@fluentui/style-utilities', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/styles', - type: 'lib', - data: { - root: 'packages/fluentui/styles', - sourceRoot: 'packages/fluentui/styles', - name: '@fluentui/styles', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/react-date-time', - type: 'lib', - data: { - root: 'packages/react-date-time', - sourceRoot: 'packages/react-date-time/src', - name: '@fluentui/react-date-time', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/scripts-fluentui-publish', - type: 'lib', - data: { - root: 'scripts/fluentui-publish', - sourceRoot: 'scripts/fluentui-publish', - name: '@fluentui/scripts-fluentui-publish', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/digest', - type: 'lib', - data: { - root: 'packages/fluentui/digest', - sourceRoot: 'packages/fluentui/digest', - name: '@fluentui/digest', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/font-icons-mdl2', - type: 'lib', - data: { - root: 'packages/font-icons-mdl2', - sourceRoot: 'packages/font-icons-mdl2/src', - name: '@fluentui/font-icons-mdl2', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/scripts-package-manager', - type: 'lib', - data: { - root: 'scripts/package-manager', - sourceRoot: 'scripts/package-manager', - name: '@fluentui/scripts-package-manager', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/state', - type: 'lib', - data: { - root: 'packages/fluentui/state', - sourceRoot: 'packages/fluentui/state', - name: '@fluentui/state', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - 'test:watch': { executor: 'nx:run-script', options: { script: 'test:watch' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/web-components', - type: 'lib', - data: { - root: 'packages/web-components', - sourceRoot: 'packages/web-components', - name: '@fluentui/web-components', - projectType: 'library', - targets: { - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - doc: { executor: 'nx:run-script', options: { script: 'doc' }, configurations: {} }, - 'doc:ci': { executor: 'nx:run-script', options: { script: 'doc:ci' }, configurations: {} }, - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - dev: { executor: 'nx:run-script', options: { script: 'dev' }, configurations: {} }, - tdd: { executor: 'nx:run-script', options: { script: 'tdd' }, configurations: {} }, - prepare: { - dependsOn: ['^prepare'], - executor: 'nx:run-script', - options: { script: 'prepare' }, - configurations: {}, - }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'start-storybook': { executor: 'nx:run-script', options: { script: 'start-storybook' }, configurations: {} }, - 'build-storybook': { executor: 'nx:run-script', options: { script: 'build-storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'test-node': { executor: 'nx:run-script', options: { script: 'test-node' }, configurations: {} }, - 'test-node:verbose': { - executor: 'nx:run-script', - options: { script: 'test-node:verbose' }, - configurations: {}, - }, - 'test-chrome': { executor: 'nx:run-script', options: { script: 'test-chrome' }, configurations: {} }, - 'test-chrome:verbose': { - executor: 'nx:run-script', - options: { script: 'test-chrome:verbose' }, - configurations: {}, - }, - 'test-chrome:watch': { - executor: 'nx:run-script', - options: { script: 'test-chrome:watch' }, - configurations: {}, - }, - 'test-chrome:debugger': { - executor: 'nx:run-script', - options: { script: 'test-chrome:debugger' }, - configurations: {}, - }, - 'test-chrome:verbose:watch': { - executor: 'nx:run-script', - options: { script: 'test-chrome:verbose:watch' }, - configurations: {}, - }, - 'test-chrome:verbose:debugger': { - executor: 'nx:run-script', - options: { script: 'test-chrome:verbose:debugger' }, - configurations: {}, - }, - 'test-firefox': { executor: 'nx:run-script', options: { script: 'test-firefox' }, configurations: {} }, - 'test-firefox:verbose': { - executor: 'nx:run-script', - options: { script: 'test-firefox:verbose' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/react-charting', - type: 'lib', - data: { - root: 'packages/react-charting', - sourceRoot: 'packages/react-charting', - name: '@fluentui/react-charting', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - codepen: { executor: 'nx:run-script', options: { script: 'codepen' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'start:legacy': { executor: 'nx:run-script', options: { script: 'start:legacy' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/react-examples', - type: 'lib', - data: { - root: 'packages/react-examples', - sourceRoot: 'packages/react-examples/src', - name: '@fluentui/react-examples', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/test-utilities', - type: 'lib', - data: { - root: 'packages/test-utilities', - sourceRoot: 'packages/test-utilities/src', - name: '@fluentui/test-utilities', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8', 'platform:node'], - }, - }, - { - name: '@fluentui/react-18-tests-v9', - type: 'app', - data: { - root: 'apps/react-18-tests-v9', - sourceRoot: 'apps/react-18-tests-v9', - name: '@fluentui/react-18-tests-v9', - projectType: 'application', - targets: { - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/common-styles', - type: 'lib', - data: { - root: 'packages/common-styles', - sourceRoot: 'packages/common-styles', - name: '@fluentui/common-styles', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'update-sass-theme-files': { - executor: 'nx:run-script', - options: { script: 'update-sass-theme-files' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/perf', - type: 'app', - data: { - root: 'packages/fluentui/perf', - sourceRoot: 'packages/fluentui/perf', - name: '@fluentui/perf', - projectType: 'application', - targets: { - 'perf:test': { executor: 'nx:run-script', options: { script: 'perf:test' }, configurations: {} }, - 'perf:test:debug': { executor: 'nx:run-script', options: { script: 'perf:test:debug' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/public-docsite-v9', - type: 'app', - data: { - root: 'apps/public-docsite-v9', - sourceRoot: 'apps/public-docsite-v9', - name: '@fluentui/public-docsite-v9', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'build-storybook': { executor: 'nx:run-script', options: { script: 'build-storybook' }, configurations: {} }, - 'chromatic:branch': { - executor: 'nx:run-script', - options: { script: 'chromatic:branch' }, - configurations: {}, - }, - chromatic: { executor: 'nx:run-script', options: { script: 'chromatic' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - 'storybook:docs': { executor: 'nx:run-script', options: { script: 'storybook:docs' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['platform:web', 'vNext'], - }, - }, - { - name: '@fluentui/monaco-editor', - type: 'lib', - data: { - root: 'packages/monaco-editor', - sourceRoot: 'packages/monaco-editor', - name: '@fluentui/monaco-editor', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/fluent2-theme', - type: 'lib', - data: { - root: 'packages/fluent2-theme', - sourceRoot: 'packages/fluent2-theme/src', - name: '@fluentui/fluent2-theme', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/dom-utilities', - type: 'lib', - data: { - root: 'packages/dom-utilities', - sourceRoot: 'packages/dom-utilities', - name: '@fluentui/dom-utilities', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/docs', - type: 'app', - data: { - root: 'packages/fluentui/docs', - sourceRoot: 'packages/fluentui/docs', - name: '@fluentui/docs', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'prebuild:storybook': { - executor: 'nx:run-script', - options: { script: 'prebuild:storybook' }, - configurations: {}, - }, - 'build:storybook': { executor: 'nx:run-script', options: { script: 'build:storybook' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'start:profile': { executor: 'nx:run-script', options: { script: 'start:profile' }, configurations: {} }, - 'prestart:storybook': { - executor: 'nx:run-script', - options: { script: 'prestart:storybook' }, - configurations: {}, - }, - 'start:storybook': { executor: 'nx:run-script', options: { script: 'start:storybook' }, configurations: {} }, - 'vr:build': { executor: 'nx:run-script', options: { script: 'vr:build' }, configurations: {} }, - 'vr:test': { executor: 'nx:run-script', options: { script: 'vr:test' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/theme-samples', - type: 'lib', - data: { - root: 'packages/theme-samples', - sourceRoot: 'packages/theme-samples/src', - name: '@fluentui/theme-samples', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/react-18-tests-v8', - type: 'app', - data: { - root: 'apps/react-18-tests-v8', - sourceRoot: 'apps/react-18-tests-v8', - name: '@fluentui/react-18-tests-v8', - projectType: 'application', - targets: { - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/workspace-plugin', - type: 'lib', - data: { - root: 'tools/workspace-plugin', - sourceRoot: 'tools/workspace-plugin/src', - name: '@fluentui/workspace-plugin', - projectType: 'library', - targets: { - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: '@nx/jest:jest', - outputs: ['{workspaceRoot}/coverage/{projectRoot}'], - options: { jestConfig: 'tools/workspace-plugin/jest.config.ts', passWithNoTests: true }, - configurations: { ci: { ci: true, codeCoverage: true } }, - }, - 'type-check': { - executor: 'nx:run-commands', - options: { command: 'tsc -b tools/workspace-plugin/tsconfig.json' }, - configurations: {}, - }, - lint: { - executor: '@nx/linter:eslint', - outputs: ['{options.outputFile}'], - options: { - lintFilePatterns: [ - 'tools/workspace-plugin/**/*.ts', - 'tools/workspace-plugin/package.json', - 'tools/workspace-plugin/generators.json', - ], - }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: '@nx/js:tsc', - outputs: ['{options.outputPath}'], - options: { - outputPath: 'dist/tools/workspace-plugin', - main: 'tools/workspace-plugin/src/index.ts', - tsConfig: 'tools/workspace-plugin/tsconfig.lib.json', - assets: [ - { input: './tools/workspace-plugin/src', glob: '**/!(*.ts)', output: './src' }, - { input: './tools/workspace-plugin/src', glob: '**/*.d.ts', output: './src' }, - { input: './tools/workspace-plugin', glob: 'generators.json', output: '.' }, - { input: './tools/workspace-plugin', glob: 'executors.json', output: '.' }, - ], - updateBuildableProjectDepsInPackageJson: true, - }, - configurations: {}, - }, - 'lint-old': { - executor: 'nx:run-commands', - options: { command: 'eslint tools/workspace-plugin/**/*.ts' }, - configurations: {}, - }, - 'check-graph': { - executor: 'nx:run-commands', - options: { command: 'node ./tools/workspace-plugin/scripts/check-dep-graph.js' }, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['platform:node', 'tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/eslint-plugin', - type: 'lib', - data: { - root: 'packages/eslint-plugin', - sourceRoot: 'packages/eslint-plugin', - name: '@fluentui/eslint-plugin', - projectType: 'library', - targets: { - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/cra-template', - type: 'lib', - data: { - root: 'packages/cra-template', - sourceRoot: 'packages/cra-template/src', - name: '@fluentui/cra-template', - projectType: 'library', - targets: { - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/keyboard-key', - type: 'lib', - data: { - root: 'packages/keyboard-key', - sourceRoot: 'packages/keyboard-key', - name: '@fluentui/keyboard-key', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/azure-themes', - type: 'lib', - data: { - root: 'packages/azure-themes', - sourceRoot: 'packages/azure-themes/src', - name: '@fluentui/azure-themes', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/scripts-api-extractor', - type: 'lib', - data: { - root: 'scripts/api-extractor', - sourceRoot: 'scripts/api-extractor', - name: '@fluentui/scripts-api-extractor', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/e2e', - type: 'app', - data: { - root: 'packages/fluentui/e2e', - sourceRoot: 'packages/fluentui/e2e', - name: '@fluentui/e2e', - projectType: 'application', - targets: { - serve: { executor: 'nx:run-script', options: { script: 'serve' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'lint:fix': { executor: 'nx:run-script', options: { script: 'lint:fix' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['react-northstar'], - }, - }, - { - name: '@fluentui/merge-styles', - type: 'lib', - data: { - root: 'packages/merge-styles', - sourceRoot: 'packages/merge-styles/src', - name: '@fluentui/merge-styles', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/scripts-projects-test', - type: 'lib', - data: { - root: 'scripts/projects-test', - sourceRoot: 'scripts/projects-test/src', - name: '@fluentui/scripts-projects-test', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/example-data', - type: 'lib', - data: { - root: 'packages/example-data', - sourceRoot: 'packages/example-data/src', - name: '@fluentui/example-data', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/theming-designer', - type: 'app', - data: { - root: 'apps/theming-designer', - sourceRoot: 'apps/theming-designer', - name: '@fluentui/theming-designer', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/a11y-testing', - type: 'lib', - data: { - root: 'packages/a11y-testing', - sourceRoot: 'packages/a11y-testing', - name: '@fluentui/a11y-testing', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['platform:node'], - }, - }, - { - name: '@fluentui/set-version', - type: 'lib', - data: { - root: 'packages/set-version', - sourceRoot: 'packages/set-version/src', - name: '@fluentui/set-version', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/react-cards', - type: 'lib', - data: { - root: 'packages/react-cards', - sourceRoot: 'packages/react-cards', - name: '@fluentui/react-cards', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/react-hooks', - type: 'lib', - data: { - root: 'packages/react-hooks', - sourceRoot: 'packages/react-hooks/src', - name: '@fluentui/react-hooks', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/react-focus', - type: 'lib', - data: { - root: 'packages/react-focus', - sourceRoot: 'packages/react-focus/src', - name: '@fluentui/react-focus', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/pr-deploy-site', - type: 'app', - data: { - root: 'apps/pr-deploy-site', - sourceRoot: 'apps/pr-deploy-site', - name: '@fluentui/pr-deploy-site', - projectType: 'application', - targets: { - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'generate:site': { executor: 'nx:run-script', options: { script: 'generate:site' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/public-docsite', - type: 'app', - data: { - root: 'apps/public-docsite', - sourceRoot: 'apps/public-docsite', - name: '@fluentui/public-docsite', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/scripts-lint-staged', - type: 'lib', - data: { - root: 'scripts/lint-staged', - sourceRoot: 'scripts/lint-staged', - name: '@fluentui/scripts-lint-staged', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-generators', - type: 'lib', - data: { - root: 'scripts/generators', - sourceRoot: 'scripts/generators', - name: '@fluentui/scripts-generators', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-triage-bot', - type: 'lib', - data: { - root: 'scripts/triage-bot', - sourceRoot: 'scripts/triage-bot/src', - name: '@fluentui/scripts-triage-bot', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/utilities', - type: 'lib', - data: { - root: 'packages/utilities', - sourceRoot: 'packages/utilities/src', - name: '@fluentui/utilities', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'verify-packaging': { - executor: 'nx:run-script', - options: { script: 'verify-packaging' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/storybook', - type: 'lib', - data: { - root: 'packages/storybook', - sourceRoot: 'packages/storybook', - name: '@fluentui/storybook', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8', 'platform:web'], - }, - }, - { - name: '@fluentui/scripts-puppeteer', - type: 'lib', - data: { - root: 'scripts/puppeteer', - sourceRoot: 'scripts/puppeteer/src', - name: '@fluentui/scripts-puppeteer', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/codemods', - type: 'lib', - data: { - root: 'packages/codemods', - sourceRoot: 'packages/codemods/src', - name: '@fluentui/codemods', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8', 'platform:node'], - }, - }, - { - name: '@fluentui/scripts-beachball', - type: 'lib', - data: { - root: 'scripts/beachball', - sourceRoot: 'scripts/beachball', - name: '@fluentui/scripts-beachball', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/api-docs', - type: 'lib', - data: { - root: 'packages/api-docs', - sourceRoot: 'packages/api-docs/src', - name: '@fluentui/api-docs', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8', 'platform:node'], - }, - }, - { - name: '@fluentui/scripts-executors', - type: 'lib', - data: { - root: 'scripts/executors', - sourceRoot: 'scripts/executors', - name: '@fluentui/scripts-executors', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-storybook', - type: 'lib', - data: { - root: 'scripts/storybook', - sourceRoot: 'scripts/storybook/src', - name: '@fluentui/scripts-storybook', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/ssr-tests-v9', - type: 'app', - data: { - root: 'apps/ssr-tests-v9', - sourceRoot: 'apps/ssr-tests-v9/src', - name: '@fluentui/ssr-tests-v9', - projectType: 'application', - targets: { - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - storybook: { executor: 'nx:run-script', options: { script: 'storybook' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'test-ssr': { executor: 'nx:run-script', options: { script: 'test-ssr' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:node'], - }, - }, - { - name: '@fluentui/scripts-test-ssr', - type: 'lib', - data: { - root: 'scripts/test-ssr', - sourceRoot: 'scripts/test-ssr/src', - name: '@fluentui/scripts-test-ssr', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/stress-test', - type: 'app', - data: { - root: 'apps/stress-test', - sourceRoot: 'apps/stress-test', - name: '@fluentui/stress-test', - projectType: 'application', - targets: { - 'stress-test': { executor: 'nx:run-script', options: { script: 'stress-test' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/scripts-prettier', - type: 'lib', - data: { - root: 'scripts/prettier', - sourceRoot: 'scripts/prettier/src', - name: '@fluentui/scripts-prettier', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-monorepo', - type: 'lib', - data: { - root: 'scripts/monorepo', - sourceRoot: 'scripts/monorepo/src', - name: '@fluentui/scripts-monorepo', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-dangerjs', - type: 'lib', - data: { - root: 'scripts/dangerjs', - sourceRoot: 'scripts/dangerjs/src', - name: '@fluentui/scripts-dangerjs', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-webpack', - type: 'lib', - data: { - root: 'scripts/webpack', - sourceRoot: 'scripts/webpack/src', - name: '@fluentui/scripts-webpack', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-ts-node', - type: 'lib', - data: { - root: 'scripts/ts-node', - sourceRoot: 'scripts/ts-node', - name: '@fluentui/scripts-ts-node', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-cypress', - type: 'lib', - data: { - root: 'scripts/cypress', - sourceRoot: 'scripts/cypress/src', - name: '@fluentui/scripts-cypress', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/tokens', - type: 'lib', - data: { - root: 'packages/tokens', - sourceRoot: 'packages/tokens/src', - name: '@fluentui/tokens', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'token-pipeline': { executor: 'nx:run-script', options: { script: 'token-pipeline' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'generate-api': { executor: 'nx:run-script', options: { script: 'generate-api' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['vNext', 'platform:web'], - }, - }, - { - name: '@fluentui/perf-test', - type: 'app', - data: { - root: 'apps/perf-test', - sourceRoot: 'apps/perf-test', - name: '@fluentui/perf-test', - projectType: 'application', - targets: { - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'test:perf': { executor: 'nx:run-script', options: { script: 'test:perf' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/ssr-tests', - type: 'app', - data: { - root: 'apps/ssr-tests', - sourceRoot: 'apps/ssr-tests', - name: '@fluentui/ssr-tests', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/react', - type: 'lib', - data: { - root: 'packages/react', - sourceRoot: 'packages/react/src', - name: '@fluentui/react', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - bundle: { executor: 'nx:run-script', options: { script: 'bundle' }, configurations: {} }, - 'bundle-size-auditor': { - executor: 'nx:run-script', - options: { script: 'bundle-size-auditor' }, - configurations: {}, - }, - 'build-storybook': { executor: 'nx:run-script', options: { script: 'build-storybook' }, configurations: {} }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - codepen: { executor: 'nx:run-script', options: { script: 'codepen' }, configurations: {} }, - e2e: { executor: 'nx:run-script', options: { script: 'e2e' }, configurations: {} }, - 'e2e:local': { executor: 'nx:run-script', options: { script: 'e2e:local' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'start:legacy': { executor: 'nx:run-script', options: { script: 'start:legacy' }, configurations: {} }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - mf: { executor: 'nx:run-script', options: { script: 'mf' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: ['v8'], - }, - }, - { - name: '@fluentui/scripts-github', - type: 'lib', - data: { - root: 'scripts/github', - sourceRoot: 'scripts/github/src', - name: '@fluentui/scripts-github', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/theme', - type: 'lib', - data: { - root: 'packages/theme', - sourceRoot: 'packages/theme', - name: '@fluentui/theme', - projectType: 'library', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'start-test': { executor: 'nx:run-script', options: { script: 'start-test' }, configurations: {} }, - 'update-snapshots': { - executor: 'nx:run-script', - options: { script: 'update-snapshots' }, - configurations: {}, - }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/vr-tests', - type: 'app', - data: { - root: 'apps/vr-tests', - sourceRoot: 'apps/vr-tests', - name: '@fluentui/vr-tests', - projectType: 'application', - targets: { - build: { - dependsOn: ['^build'], - inputs: ['production', '^production'], - executor: 'nx:run-script', - options: { script: 'build' }, - configurations: {}, - }, - clean: { executor: 'nx:run-script', options: { script: 'clean' }, configurations: {} }, - 'code-style': { executor: 'nx:run-script', options: { script: 'code-style' }, configurations: {} }, - just: { executor: 'nx:run-script', options: { script: 'just' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - start: { executor: 'nx:run-script', options: { script: 'start' }, configurations: {} }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'vr:build': { executor: 'nx:run-script', options: { script: 'vr:build' }, configurations: {} }, - 'vr:test': { executor: 'nx:run-script', options: { script: 'vr:test' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - implicitDependencies: [], - tags: [], - }, - }, - { - name: '@fluentui/scripts-tasks', - type: 'lib', - data: { - root: 'scripts/tasks', - sourceRoot: 'scripts/tasks/src', - name: '@fluentui/scripts-tasks', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-utils', - type: 'lib', - data: { - root: 'scripts/utils', - sourceRoot: 'scripts/utils/src', - name: '@fluentui/scripts-utils', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-babel', - type: 'lib', - data: { - root: 'scripts/babel', - sourceRoot: 'scripts/babel', - name: '@fluentui/scripts-babel', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-gulp', - type: 'lib', - data: { - root: 'scripts/gulp', - sourceRoot: 'scripts/gulp/src', - name: '@fluentui/scripts-gulp', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/scripts-jest', - type: 'lib', - data: { - root: 'scripts/jest', - sourceRoot: 'scripts/jest/src', - name: '@fluentui/scripts-jest', - projectType: 'library', - targets: { - format: { executor: 'nx:run-script', options: { script: 'format' }, configurations: {} }, - 'format:check': { executor: 'nx:run-script', options: { script: 'format:check' }, configurations: {} }, - lint: { executor: 'nx:run-script', options: { script: 'lint' }, configurations: {} }, - test: { - inputs: ['default', '^production', '{workspaceRoot}/jest.preset.js'], - executor: 'nx:run-script', - options: { script: 'test' }, - configurations: {}, - }, - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../../node_modules/nx/schemas/project-schema.json', - tags: ['tools'], - implicitDependencies: [], - }, - }, - { - name: '@fluentui/typings', - type: 'lib', - data: { - root: 'typings', - sourceRoot: 'typings', - name: '@fluentui/typings', - projectType: 'library', - targets: { - 'type-check': { executor: 'nx:run-script', options: { script: 'type-check' }, configurations: {} }, - 'nx-release-publish': { - dependsOn: ['^nx-release-publish'], - executor: '@nx/js:release-publish', - options: {}, - configurations: {}, - }, - }, - $schema: '../node_modules/nx/schemas/project-schema.json', - tags: ['platform:any'], - implicitDependencies: [], - }, - }, - ], - dependencies: { - '@fluentui/react-storybook-addon-export-to-sandbox': [ - { - source: '@fluentui/react-storybook-addon-export-to-sandbox', - target: '@fluentui/babel-preset-storybook-full-source', - type: 'static', - }, - { - source: '@fluentui/react-storybook-addon-export-to-sandbox', - target: '@fluentui/eslint-plugin', - type: 'static', - }, - { - source: '@fluentui/react-storybook-addon-export-to-sandbox', - target: '@fluentui/scripts-api-extractor', - type: 'static', - }, - { - source: '@fluentui/react-storybook-addon-export-to-sandbox', - target: '@fluentui/scripts-tasks', - type: 'static', - }, - ], - '@fluentui/babel-preset-storybook-full-source': [ - { source: '@fluentui/babel-preset-storybook-full-source', target: '@fluentui/eslint-plugin', type: 'static' }, - { - source: '@fluentui/babel-preset-storybook-full-source', - target: '@fluentui/scripts-api-extractor', - type: 'static', - }, - { source: '@fluentui/babel-preset-storybook-full-source', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-timepicker-compat-preview': [ - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-combobox', type: 'static' }, - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { - source: '@fluentui/react-timepicker-compat-preview', - target: '@fluentui/react-shared-contexts', - type: 'static', - }, - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/react-conformance', type: 'static' }, - { - source: '@fluentui/react-timepicker-compat-preview', - target: '@fluentui/react-conformance-griffel', - type: 'static', - }, - { - source: '@fluentui/react-timepicker-compat-preview', - target: '@fluentui/scripts-api-extractor', - type: 'static', - }, - { source: '@fluentui/react-timepicker-compat-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-teaching-popover-preview': [ - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-popover', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-aria', type: 'static' }, - { - source: '@fluentui/react-teaching-popover-preview', - target: '@fluentui/react-context-selector', - type: 'static', - }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/react-conformance', type: 'static' }, - { - source: '@fluentui/react-teaching-popover-preview', - target: '@fluentui/react-conformance-griffel', - type: 'static', - }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-teaching-popover-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/babel-preset-global-context': [ - { source: '@fluentui/babel-preset-global-context', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/babel-preset-global-context', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/babel-preset-global-context', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/babel-preset-global-context', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/babel-preset-global-context', target: '@fluentui/global-context', type: 'static' }, - ], - '@fluentui/react-portal-compat-context': [ - { source: '@fluentui/react-portal-compat-context', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-portal-compat-context', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-portal-compat-context', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-swatch-picker-preview': [ - { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/react-conformance', type: 'static' }, - { - source: '@fluentui/react-swatch-picker-preview', - target: '@fluentui/react-conformance-griffel', - type: 'static', - }, - { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-swatch-picker-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-conformance-griffel': [ - { source: '@fluentui/react-conformance-griffel', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-conformance-griffel', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-conformance-griffel', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-conformance-griffel', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-northstar-emotion-renderer': [ - { - source: '@fluentui/react-northstar-emotion-renderer', - target: '@fluentui/react-northstar-styles-renderer', - type: 'static', - }, - { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/styles', type: 'static' }, - { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-northstar-emotion-renderer', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-component-nesting-registry': [ - { source: '@fluentui/react-component-nesting-registry', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-component-nesting-registry', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-component-nesting-registry', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-component-nesting-registry', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-colorpicker-compat': [ - { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-colorpicker-compat', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-timepicker-compat': [ - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-combobox', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-timepicker-compat', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-northstar-styles-renderer': [ - { source: '@fluentui/react-northstar-styles-renderer', target: '@fluentui/styles', type: 'static' }, - { source: '@fluentui/react-northstar-styles-renderer', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-northstar-styles-renderer', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-northstar-styles-renderer', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/react-datepicker-compat': [ - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-calendar-compat', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-input', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-popover', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-positioning', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-datepicker-compat', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-component-event-listener': [ - { source: '@fluentui/react-component-event-listener', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-component-event-listener', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-component-event-listener', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-component-event-listener', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-context-selector': [ - { source: '@fluentui/react-context-selector', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-context-selector', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-context-selector', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-context-selector', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-migration-v0-v9': [ - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-migration-v0-v9', target: '@fluentui/scripts-storybook', type: 'static' }, - ], - '@fluentui/react-migration-v8-v9': [ - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/fluent2-theme', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-migration-v8-v9', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-storybook-addon': [ - { source: '@fluentui/react-storybook-addon', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-storybook-addon', target: '@fluentui/react-provider', type: 'static' }, - { source: '@fluentui/react-storybook-addon', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-storybook-addon', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-storybook-addon', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-northstar-fela-renderer': [ - { - source: '@fluentui/react-northstar-fela-renderer', - target: '@fluentui/react-northstar-styles-renderer', - type: 'static', - }, - { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/styles', type: 'static' }, - { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-northstar-fela-renderer', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-motions-preview': [ - { source: '@fluentui/react-motions-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-motions-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-motions-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-motions-preview', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-motions-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-motions-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-motions-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-calendar-compat': [ - { source: '@fluentui/react-calendar-compat', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-calendar-compat', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-shared-contexts': [ - { source: '@fluentui/react-shared-contexts', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-shared-contexts', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-shared-contexts', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-shared-contexts', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-motion-preview': [ - { source: '@fluentui/react-motion-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-motion-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-motion-preview', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-motion-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-motion-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-motion-preview', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-motion-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-motion-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-motion-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-rating-preview': [ - { source: '@fluentui/react-rating-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-rating-preview', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-rating-preview', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-rating-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-rating-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-rating-preview', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-rating-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-rating-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-rating-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-search-preview': [ - { source: '@fluentui/react-search-preview', target: '@fluentui/react-input', type: 'static' }, - { source: '@fluentui/react-search-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-search-preview', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-search-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-search-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-search-preview', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-search-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-search-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-search-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-portal-compat': [ - { source: '@fluentui/react-portal-compat', target: '@fluentui/react-portal-compat-context', type: 'static' }, - { source: '@fluentui/react-portal-compat', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-portal-compat', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-portal-compat', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/react-portal-compat', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-portal-compat', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-portal-compat', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-portal-compat', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-list-preview': [ - { source: '@fluentui/react-list-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-list-preview', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-list-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-list-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-list-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-list-preview', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-list-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-list-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-list-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-northstar-prototypes': [ - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/accessibility', type: 'static' }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/code-sandbox', type: 'static' }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/docs-components', type: 'static' }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/react-bindings', type: 'static' }, - { - source: '@fluentui/react-northstar-prototypes', - target: '@fluentui/react-component-event-listener', - type: 'static', - }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/react-component-ref', type: 'static' }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/react-icons-northstar', type: 'static' }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-northstar-prototypes', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/react-positioning': [ - { source: '@fluentui/react-positioning', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-positioning', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-positioning', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-positioning', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-positioning', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-positioning', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/priority-overflow': [ - { source: '@fluentui/priority-overflow', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/priority-overflow', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/priority-overflow', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-jsx-runtime': [ - { source: '@fluentui/react-jsx-runtime', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-jsx-runtime', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-jsx-runtime', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-jsx-runtime', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-jsx-runtime', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-jsx-runtime', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-nav-preview': [ - { source: '@fluentui/react-nav-preview', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-nav-preview', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-virtualizer': [ - { source: '@fluentui/react-virtualizer', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-virtualizer', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-virtualizer', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-virtualizer', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-virtualizer', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-virtualizer', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-virtualizer', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-virtualizer', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-message-bar': [ - { source: '@fluentui/react-message-bar', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-message-bar', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-spinbutton': [ - { source: '@fluentui/react-spinbutton', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-spinbutton', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-breadcrumb': [ - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-link', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-breadcrumb', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-infobutton': [ - { source: '@fluentui/react-infobutton', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/react-popover', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-infobutton', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-components': [ - { source: '@fluentui/react-components', target: '@fluentui/react-accordion', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-alert', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-avatar', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-badge', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-card', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-checkbox', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-combobox', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-dialog', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-divider', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-drawer', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-image', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-infobutton', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-infolabel', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-input', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-link', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-menu', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-overflow', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-persona', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-popover', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-positioning', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-progress', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-provider', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-radio', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-select', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-skeleton', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-slider', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-spinbutton', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-spinner', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-switch', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-table', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-tabs', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-tags', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-textarea', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-toast', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-toolbar', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-tooltip', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-text', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-virtualizer', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-tree', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-message-bar', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/react-breadcrumb', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-components', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-theme-sass': [ - { source: '@fluentui/react-theme-sass', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-theme-sass', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-theme-sass', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-theme-sass', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-utilities': [ - { source: '@fluentui/react-utilities', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-utilities', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-infolabel': [ - { source: '@fluentui/react-infolabel', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/react-popover', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-infolabel', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-accordion': [ - { source: '@fluentui/react-accordion', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-accordion', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-checkbox': [ - { source: '@fluentui/react-checkbox', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-checkbox', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-provider': [ - { source: '@fluentui/react-provider', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-provider', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/theme-designer': [ - { source: '@fluentui/theme-designer', target: '@fluentui/react-alert', type: 'static' }, - { source: '@fluentui/theme-designer', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/theme-designer', target: '@fluentui/react-context-selector', type: 'static' }, - { - source: '@fluentui/theme-designer', - target: '@fluentui/react-storybook-addon-export-to-sandbox', - type: 'static', - }, - { source: '@fluentui/theme-designer', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/theme-designer', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/theme-designer', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/theme-designer', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/theme-designer', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-combobox': [ - { source: '@fluentui/react-combobox', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-positioning', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-combobox', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/global-context': [ - { source: '@fluentui/global-context', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/global-context', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/global-context', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/global-context', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/global-context', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/global-context', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-progress': [ - { source: '@fluentui/react-progress', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-progress', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-skeleton': [ - { source: '@fluentui/react-skeleton', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-skeleton', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-overflow': [ - { source: '@fluentui/react-overflow', target: '@fluentui/priority-overflow', type: 'static' }, - { source: '@fluentui/react-overflow', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-overflow', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-overflow', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-overflow', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-overflow', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-overflow', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-overflow', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-textarea': [ - { source: '@fluentui/react-textarea', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-textarea', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/keyboard-keys': [ - { source: '@fluentui/keyboard-keys', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/keyboard-keys', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/keyboard-keys', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-spinner': [ - { source: '@fluentui/react-spinner', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-spinner', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-persona': [ - { source: '@fluentui/react-persona', target: '@fluentui/react-avatar', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/react-badge', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-persona', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-toolbar': [ - { source: '@fluentui/react-toolbar', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-divider', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-radio', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-toolbar', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-divider': [ - { source: '@fluentui/react-divider', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-divider', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-divider', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-divider', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-divider', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-divider', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-divider', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-divider', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-divider', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-popover': [ - { source: '@fluentui/react-popover', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-positioning', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-popover', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-tooltip': [ - { source: '@fluentui/react-tooltip', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-positioning', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-tooltip', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-icons-northstar': [ - { source: '@fluentui/react-icons-northstar', target: '@fluentui/accessibility', type: 'static' }, - { source: '@fluentui/react-icons-northstar', target: '@fluentui/react-bindings', type: 'static' }, - { source: '@fluentui/react-icons-northstar', target: '@fluentui/styles', type: 'static' }, - { source: '@fluentui/react-icons-northstar', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-icons-northstar', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-icons-northstar', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-icons-northstar', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-tabster': [ - { source: '@fluentui/react-tabster', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-tabster', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-tabster', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-tabster', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-tabster', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-tabster', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-tabster', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-portal': [ - { source: '@fluentui/react-portal', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-portal', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-portal', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-portal', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-portal', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-portal', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-portal', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-drawer': [ - { source: '@fluentui/react-drawer', target: '@fluentui/react-dialog', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/react-motion-preview', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-drawer', target: '@fluentui/scripts-cypress', type: 'static' }, - ], - '@fluentui/react-switch': [ - { source: '@fluentui/react-switch', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-switch', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-avatar': [ - { source: '@fluentui/react-avatar', target: '@fluentui/react-badge', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-popover', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-tooltip', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-avatar', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-button': [ - { source: '@fluentui/react-button', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/a11y-testing', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-button', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-dialog': [ - { source: '@fluentui/react-dialog', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-dialog', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-select': [ - { source: '@fluentui/react-select', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-select', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-slider': [ - { source: '@fluentui/react-slider', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-slider', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/jest-serializer-merge-styles': [ - { source: '@fluentui/jest-serializer-merge-styles', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/jest-serializer-merge-styles', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/jest-serializer-merge-styles', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/jest-serializer-merge-styles', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-image': [ - { source: '@fluentui/react-image', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-image', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-image', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-image', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-image', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-image', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-image', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-image', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-image', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-input': [ - { source: '@fluentui/react-input', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/react-text', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-input', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-component-ref': [ - { source: '@fluentui/react-component-ref', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-component-ref', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-component-ref', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-component-ref', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-table': [ - { source: '@fluentui/react-table', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-avatar', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-checkbox', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-radio', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-table', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-field': [ - { source: '@fluentui/react-field', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-field', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-radio': [ - { source: '@fluentui/react-radio', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-radio', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-theme': [ - { source: '@fluentui/react-theme', target: '@fluentui/tokens', type: 'static' }, - { source: '@fluentui/react-theme', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-theme', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-theme', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-label': [ - { source: '@fluentui/react-label', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-label', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-label', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-label', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-label', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-label', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-label', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-label', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-label', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-toast': [ - { source: '@fluentui/react-toast', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-toast', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-badge': [ - { source: '@fluentui/react-badge', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-badge', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-badge', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-badge', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-badge', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-badge', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-badge', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-badge', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-badge', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/perf-test-northstar': [ - { source: '@fluentui/perf-test-northstar', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/perf-test-northstar', target: '@fluentui/react-northstar-prototypes', type: 'static' }, - { source: '@fluentui/perf-test-northstar', target: '@fluentui/digest', type: 'static' }, - { source: '@fluentui/perf-test-northstar', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-alert': [ - { source: '@fluentui/react-alert', target: '@fluentui/react-avatar', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-alert', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-aria': [ - { source: '@fluentui/react-aria', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-aria', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-aria', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-aria', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-aria', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-aria', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-aria', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-tree': [ - { source: '@fluentui/react-tree', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-avatar', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-checkbox', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-radio', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-tree', target: '@fluentui/scripts-cypress', type: 'static' }, - ], - '@fluentui/react-menu': [ - { source: '@fluentui/react-menu', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-positioning', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-menu', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/ts-minbar-test-react-components': [ - { source: '@fluentui/ts-minbar-test-react-components', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/ts-minbar-test-react-components', target: '@fluentui/scripts-tasks', type: 'static' }, - { - source: '@fluentui/ts-minbar-test-react-components', - target: '@fluentui/scripts-projects-test', - type: 'static', - }, - ], - '@fluentui/ability-attributes': [ - { source: '@fluentui/ability-attributes', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/ability-attributes', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/react-tabs': [ - { source: '@fluentui/react-tabs', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-tabs', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-card': [ - { source: '@fluentui/react-card', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-card', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-link': [ - { source: '@fluentui/react-link', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/a11y-testing', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-link', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-tags': [ - { source: '@fluentui/react-tags', target: '@fluentui/keyboard-keys', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-aria', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-avatar', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-tabster', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-tags', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-text': [ - { source: '@fluentui/react-text', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/react-text', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/react-text', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/react-text', target: '@fluentui/react-jsx-runtime', type: 'static' }, - { source: '@fluentui/react-text', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-text', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-text', target: '@fluentui/react-conformance-griffel', type: 'static' }, - { source: '@fluentui/react-text', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-text', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-docsite-components': [ - { source: '@fluentui/react-docsite-components', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/theme', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/example-data', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/public-docsite-setup', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/react-hooks', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/react-monaco-editor', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/common-styles', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-docsite-components', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/react-icons-mdl2-branded': [ - { source: '@fluentui/react-icons-mdl2-branded', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-icons-mdl2-branded', target: '@fluentui/react-icons-mdl2', type: 'static' }, - { source: '@fluentui/react-icons-mdl2-branded', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-icons-mdl2-branded', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-proptypes': [ - { source: '@fluentui/react-proptypes', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-proptypes', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-proptypes', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-proptypes', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-telemetry': [ - { source: '@fluentui/react-telemetry', target: '@fluentui/react-bindings', type: 'static' }, - { source: '@fluentui/react-telemetry', target: '@fluentui/react-component-event-listener', type: 'static' }, - { source: '@fluentui/react-telemetry', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-telemetry', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-telemetry', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/docs-components': [ - { source: '@fluentui/docs-components', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/docs-components', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/docs-components', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/react-northstar': [ - { source: '@fluentui/react-northstar', target: '@fluentui/accessibility', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/dom-utilities', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-bindings', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-component-event-listener', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-component-nesting-registry', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-component-ref', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-icons-northstar', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-northstar-styles-renderer', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-portal-compat-context', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-proptypes', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/state', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/styles', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/a11y-testing', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-northstar', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-bindings': [ - { source: '@fluentui/react-bindings', target: '@fluentui/accessibility', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/dom-utilities', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/react-component-event-listener', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/react-component-ref', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/react-northstar-fela-renderer', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/react-northstar-styles-renderer', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/state', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/styles', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-bindings', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/circulars-test': [ - { source: '@fluentui/circulars-test', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/circulars-test', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/local-sandbox': [ - { source: '@fluentui/local-sandbox', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/local-sandbox', target: '@fluentui/scripts-babel', type: 'static' }, - ], - '@fluentui/accessibility': [ - { source: '@fluentui/accessibility', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/accessibility', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/accessibility', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/accessibility', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/projects-test': [ - { source: '@fluentui/projects-test', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/projects-test', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/projects-test', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/projects-test', target: '@fluentui/scripts-projects-test', type: 'static' }, - ], - '@fluentui/perf-test-react-components': [ - { - source: '@fluentui/perf-test-react-components', - target: '@fluentui/scripts-perf-test-flamegrill', - type: 'static', - }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-avatar', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-persona', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-provider', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-spinbutton', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/perf-test-react-components', target: '@fluentui/scripts-storybook', type: 'static' }, - ], - '@fluentui/react-builder': [ - { source: '@fluentui/react-builder', target: '@fluentui/accessibility', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/code-sandbox', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/docs-components', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/react-component-event-listener', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/react-component-ref', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/react-icons-northstar', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/react-builder', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-window-provider': [ - { source: '@fluentui/react-window-provider', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-window-provider', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-window-provider', target: '@fluentui/test-utilities', type: 'static' }, - { source: '@fluentui/react-window-provider', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-window-provider', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-window-provider', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/code-sandbox': [ - { source: '@fluentui/code-sandbox', target: '@fluentui/docs-components', type: 'static' }, - { source: '@fluentui/code-sandbox', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/code-sandbox', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/code-sandbox', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/code-sandbox', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/react-file-type-icons': [ - { source: '@fluentui/react-file-type-icons', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-file-type-icons', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/react-file-type-icons', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-file-type-icons', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-file-type-icons', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/vr-tests-react-components': [ - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-accordion', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-avatar', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-badge', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-button', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-calendar-compat', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-card', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-checkbox', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-combobox', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-context-selector', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-datepicker-compat', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-dialog', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-divider', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-drawer', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-field', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-image', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-infolabel', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-input', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-label', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-link', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-menu', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-message-bar', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-persona', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-popover', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-portal', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-positioning', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-progress', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-provider', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-radio', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-search-preview', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-select', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-shared-contexts', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-skeleton', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-slider', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-spinner', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-spinbutton', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-storybook-addon', type: 'static' }, - { - source: '@fluentui/vr-tests-react-components', - target: '@fluentui/react-storybook-addon-export-to-sandbox', - type: 'static', - }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-switch', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-table', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-tabs', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-tags', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-text', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-textarea', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-theme', type: 'static' }, - { - source: '@fluentui/vr-tests-react-components', - target: '@fluentui/react-timepicker-compat-preview', - type: 'static', - }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-toast', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-tooltip', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-toolbar', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-tree', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/react-breadcrumb', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/vr-tests-react-components', target: '@fluentui/scripts-storybook', type: 'static' }, - ], - '@fluentui/public-docsite-resources': [ - { source: '@fluentui/public-docsite-resources', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/react-charting', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/react-examples', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/azure-themes', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/react-docsite-components', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/font-icons-mdl2', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/theme-samples', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/react-monaco-editor', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/api-docs', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/public-docsite-resources', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/public-docsite-setup': [ - { source: '@fluentui/public-docsite-setup', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/public-docsite-setup', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/recipes-react-components': [ - { source: '@fluentui/recipes-react-components', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/recipes-react-components', target: '@fluentui/react-theme', type: 'static' }, - { source: '@fluentui/recipes-react-components', target: '@fluentui/react-provider', type: 'static' }, - { source: '@fluentui/recipes-react-components', target: '@fluentui/react-storybook-addon', type: 'static' }, - { - source: '@fluentui/recipes-react-components', - target: '@fluentui/react-storybook-addon-export-to-sandbox', - type: 'static', - }, - { source: '@fluentui/recipes-react-components', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/recipes-react-components', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/date-time-utilities': [ - { source: '@fluentui/date-time-utilities', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/date-time-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/date-time-utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/date-time-utilities', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/date-time-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-icon-provider': [ - { source: '@fluentui/react-icon-provider', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-icon-provider', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/react-icon-provider', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-icon-provider', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-icon-provider', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-icon-provider', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-icon-provider', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/scripts-update-release-notes': [ - { source: '@fluentui/scripts-update-release-notes', target: '@fluentui/scripts-github', type: 'static' }, - ], - '@fluentui/react-monaco-editor': [ - { source: '@fluentui/react-monaco-editor', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-monaco-editor', target: '@fluentui/example-data', type: 'static' }, - { source: '@fluentui/react-monaco-editor', target: '@fluentui/monaco-editor', type: 'static' }, - { source: '@fluentui/react-monaco-editor', target: '@fluentui/react-hooks', type: 'static' }, - { source: '@fluentui/react-monaco-editor', target: '@fluentui/react-charting', type: 'static' }, - { source: '@fluentui/react-monaco-editor', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-monaco-editor', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-monaco-editor', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-monaco-editor', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/scripts-perf-test-flamegrill': [], - '@fluentui/scripts-bundle-size-auditor': [], - '@fluentui/react-experiments': [ - { source: '@fluentui/react-experiments', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/theme', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/example-data', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/foundation-legacy', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/font-icons-mdl2', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/react-hooks', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/common-styles', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-experiments', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/react-conformance': [ - { source: '@fluentui/react-conformance', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-conformance', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-conformance', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/foundation-legacy': [ - { source: '@fluentui/foundation-legacy', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/foundation-legacy', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/webpack-utilities': [ - { source: '@fluentui/webpack-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/webpack-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/ts-minbar-test-react': [ - { source: '@fluentui/ts-minbar-test-react', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/ts-minbar-test-react', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/ts-minbar-test-react', target: '@fluentui/scripts-projects-test', type: 'static' }, - ], - '@fluentui/scheme-utilities': [ - { source: '@fluentui/scheme-utilities', target: '@fluentui/theme', type: 'static' }, - { source: '@fluentui/scheme-utilities', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/scheme-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/scheme-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/scheme-utilities', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/react-icons-mdl2': [ - { source: '@fluentui/react-icons-mdl2', target: '@fluentui/react-icon-provider', type: 'static' }, - { source: '@fluentui/react-icons-mdl2', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-icons-mdl2', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/react-icons-mdl2', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-icons-mdl2', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-icons-mdl2', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-icons-mdl2', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/style-utilities': [ - { source: '@fluentui/style-utilities', target: '@fluentui/theme', type: 'static' }, - { source: '@fluentui/style-utilities', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/style-utilities', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/style-utilities', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/style-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/style-utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/style-utilities', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/style-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/styles': [ - { source: '@fluentui/styles', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/styles', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/styles', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/styles', target: '@fluentui/scripts-jest', type: 'static' }, - ], - '@fluentui/react-date-time': [ - { source: '@fluentui/react-date-time', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-date-time', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-date-time', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-date-time', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-date-time', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-date-time', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/scripts-fluentui-publish': [ - { source: '@fluentui/scripts-fluentui-publish', target: '@fluentui/scripts-monorepo', type: 'static' }, - ], - '@fluentui/digest': [], - '@fluentui/font-icons-mdl2': [ - { source: '@fluentui/font-icons-mdl2', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/font-icons-mdl2', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/font-icons-mdl2', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/font-icons-mdl2', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/font-icons-mdl2', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/font-icons-mdl2', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/scripts-package-manager': [], - '@fluentui/state': [ - { source: '@fluentui/state', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/state', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/state', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/web-components': [], - '@fluentui/react-charting': [ - { source: '@fluentui/react-charting', target: '@fluentui/react-focus', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/theme-samples', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-charting', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/react-examples': [ - { source: '@fluentui/react-examples', target: '@fluentui/azure-themes', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/date-time-utilities', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/dom-utilities', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/example-data', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/font-icons-mdl2', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/foundation-legacy', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react-cards', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react-charting', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react-docsite-components', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react-experiments', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react-file-type-icons', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react-focus', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react-hooks', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/react-icons-mdl2', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/scheme-utilities', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/theme', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/theme-samples', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/storybook', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/scripts-webpack', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-examples', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/test-utilities': [ - { source: '@fluentui/test-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/test-utilities', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/test-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-18-tests-v9': [ - { source: '@fluentui/react-18-tests-v9', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/react-18-tests-v9', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-18-tests-v9', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-18-tests-v9', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/common-styles': [ - { source: '@fluentui/common-styles', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/common-styles', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/perf': [ - { source: '@fluentui/perf', target: '@fluentui/docs', type: 'static' }, - { source: '@fluentui/perf', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/perf', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/perf', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/perf', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/perf', target: '@fluentui/scripts-monorepo', type: 'static' }, - ], - '@fluentui/public-docsite-v9': [ - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-calendar-compat', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-datepicker-compat', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-migration-v8-v9', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-migration-v0-v9', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-icons-northstar', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-storybook-addon', type: 'static' }, - { - source: '@fluentui/public-docsite-v9', - target: '@fluentui/react-storybook-addon-export-to-sandbox', - type: 'static', - }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/theme-designer', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-rating-preview', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-search-preview', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-motion-preview', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-teaching-popover-preview', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/react-timepicker-compat-preview', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/scripts-storybook', type: 'static' }, - { source: '@fluentui/public-docsite-v9', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/monaco-editor': [ - { source: '@fluentui/monaco-editor', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/monaco-editor', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/fluent2-theme': [ - { source: '@fluentui/fluent2-theme', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/fluent2-theme', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/fluent2-theme', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/fluent2-theme', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/fluent2-theme', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/dom-utilities': [ - { source: '@fluentui/dom-utilities', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/dom-utilities', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/dom-utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/dom-utilities', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/dom-utilities', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/docs': [ - { source: '@fluentui/docs', target: '@fluentui/ability-attributes', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/accessibility', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/code-sandbox', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/docs-components', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-bindings', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-builder', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-component-event-listener', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-component-ref', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-icons-northstar', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-northstar-emotion-renderer', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-northstar-fela-renderer', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-northstar-prototypes', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-northstar-styles-renderer', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/react-telemetry', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/styles', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/scripts-gulp', type: 'static' }, - { source: '@fluentui/docs', target: '@fluentui/scripts-storybook', type: 'static' }, - ], - '@fluentui/theme-samples': [ - { source: '@fluentui/theme-samples', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/theme-samples', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/theme-samples', target: '@fluentui/scheme-utilities', type: 'static' }, - { source: '@fluentui/theme-samples', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/theme-samples', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/theme-samples', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/react-18-tests-v8': [ - { source: '@fluentui/react-18-tests-v8', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-18-tests-v8', target: '@fluentui/react-hooks', type: 'static' }, - { source: '@fluentui/react-18-tests-v8', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-18-tests-v8', target: '@fluentui/scripts-cypress', type: 'static' }, - { source: '@fluentui/react-18-tests-v8', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-18-tests-v8', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-18-tests-v8', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/workspace-plugin': [], - '@fluentui/eslint-plugin': [], - '@fluentui/cra-template': [ - { source: '@fluentui/cra-template', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/cra-template', target: '@fluentui/scripts-projects-test', type: 'static' }, - ], - '@fluentui/keyboard-key': [ - { source: '@fluentui/keyboard-key', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/keyboard-key', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/keyboard-key', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/keyboard-key', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/azure-themes': [ - { source: '@fluentui/azure-themes', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/azure-themes', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/azure-themes', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/azure-themes', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/azure-themes', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/scripts-api-extractor': [], - '@fluentui/e2e': [ - { source: '@fluentui/e2e', target: '@fluentui/accessibility', type: 'static' }, - { source: '@fluentui/e2e', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/e2e', target: '@fluentui/react-icons-northstar', type: 'static' }, - { source: '@fluentui/e2e', target: '@fluentui/react-northstar', type: 'static' }, - { source: '@fluentui/e2e', target: '@fluentui/react-northstar-prototypes', type: 'static' }, - { source: '@fluentui/e2e', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/e2e', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/e2e', target: '@fluentui/scripts-gulp', type: 'static' }, - ], - '@fluentui/merge-styles': [ - { source: '@fluentui/merge-styles', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/merge-styles', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/merge-styles', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/merge-styles', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/merge-styles', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/merge-styles', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/scripts-projects-test': [ - { source: '@fluentui/scripts-projects-test', target: '@fluentui/scripts-utils', type: 'static' }, - { source: '@fluentui/scripts-projects-test', target: '@fluentui/scripts-puppeteer', type: 'static' }, - { source: '@fluentui/scripts-projects-test', target: '@fluentui/scripts-monorepo', type: 'static' }, - ], - '@fluentui/example-data': [ - { source: '@fluentui/example-data', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/example-data', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/example-data', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/example-data', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/theming-designer': [ - { source: '@fluentui/theming-designer', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/react-docsite-components', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/foundation-legacy', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/scheme-utilities', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/font-icons-mdl2', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/theming-designer', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/a11y-testing': [ - { source: '@fluentui/a11y-testing', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/a11y-testing', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/set-version': [ - { source: '@fluentui/set-version', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/set-version', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/react-cards': [ - { source: '@fluentui/react-cards', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/react-cards', target: '@fluentui/foundation-legacy', type: 'static' }, - { source: '@fluentui/react-cards', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-cards', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-cards', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, - { source: '@fluentui/react-cards', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-cards', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-cards', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-cards', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/react-hooks': [ - { source: '@fluentui/react-hooks', target: '@fluentui/react-window-provider', type: 'static' }, - { source: '@fluentui/react-hooks', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-hooks', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/react-hooks', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-hooks', target: '@fluentui/test-utilities', type: 'static' }, - { source: '@fluentui/react-hooks', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-hooks', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-hooks', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-hooks', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/react-focus': [ - { source: '@fluentui/react-focus', target: '@fluentui/keyboard-key', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/test-utilities', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react-focus', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/pr-deploy-site': [ - { source: '@fluentui/pr-deploy-site', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/pr-deploy-site', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/pr-deploy-site', target: '@fluentui/scripts-monorepo', type: 'static' }, - ], - '@fluentui/public-docsite': [ - { source: '@fluentui/public-docsite', target: '@fluentui/font-icons-mdl2', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/public-docsite-resources', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/public-docsite-setup', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/react-docsite-components', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/react-examples', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/react-experiments', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/fluent2-theme', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/react-file-type-icons', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/react-icons-mdl2', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/react-icons-mdl2-branded', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/theme', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/theme-samples', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/common-styles', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/react-monaco-editor', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/public-docsite', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/scripts-lint-staged': [ - { source: '@fluentui/scripts-lint-staged', target: '@fluentui/scripts-monorepo', type: 'static' }, - ], - '@fluentui/scripts-generators': [ - { source: '@fluentui/scripts-generators', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/scripts-generators', target: '@fluentui/scripts-projects-test', type: 'static' }, - ], - '@fluentui/scripts-triage-bot': [], - '@fluentui/utilities': [ - { source: '@fluentui/utilities', target: '@fluentui/dom-utilities', type: 'static' }, - { source: '@fluentui/utilities', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/utilities', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/utilities', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/utilities', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, - { source: '@fluentui/utilities', target: '@fluentui/test-utilities', type: 'static' }, - { source: '@fluentui/utilities', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/utilities', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/utilities', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/storybook': [ - { source: '@fluentui/storybook', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/storybook', target: '@fluentui/theme', type: 'static' }, - { source: '@fluentui/storybook', target: '@fluentui/azure-themes', type: 'static' }, - { source: '@fluentui/storybook', target: '@fluentui/theme-samples', type: 'static' }, - { source: '@fluentui/storybook', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/storybook', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/scripts-puppeteer': [], - '@fluentui/codemods': [ - { source: '@fluentui/codemods', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/codemods', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/codemods', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/scripts-beachball': [ - { source: '@fluentui/scripts-beachball', target: '@fluentui/scripts-github', type: 'static' }, - { source: '@fluentui/scripts-beachball', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/scripts-beachball', target: '@fluentui/scripts-ts-node', type: 'static' }, - ], - '@fluentui/api-docs': [ - { source: '@fluentui/api-docs', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/api-docs', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/scripts-executors': [ - { source: '@fluentui/scripts-executors', target: '@fluentui/scripts-utils', type: 'static' }, - { source: '@fluentui/scripts-executors', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/scripts-executors', target: '@fluentui/scripts-prettier', type: 'static' }, - ], - '@fluentui/scripts-storybook': [ - { source: '@fluentui/scripts-storybook', target: '@fluentui/scripts-monorepo', type: 'static' }, - ], - '@fluentui/ssr-tests-v9': [ - { source: '@fluentui/ssr-tests-v9', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/ssr-tests-v9', target: '@fluentui/react-utilities', type: 'static' }, - { source: '@fluentui/ssr-tests-v9', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/ssr-tests-v9', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/ssr-tests-v9', target: '@fluentui/scripts-storybook', type: 'static' }, - ], - '@fluentui/scripts-test-ssr': [ - { source: '@fluentui/scripts-test-ssr', target: '@fluentui/scripts-puppeteer', type: 'static' }, - { source: '@fluentui/scripts-test-ssr', target: '@fluentui/scripts-ts-node', type: 'static' }, - ], - '@fluentui/stress-test': [ - { source: '@fluentui/stress-test', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/stress-test', target: '@fluentui/react-components', type: 'static' }, - { source: '@fluentui/stress-test', target: '@fluentui/web-components', type: 'static' }, - { source: '@fluentui/stress-test', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/stress-test', target: '@fluentui/scripts-storybook', type: 'static' }, - ], - '@fluentui/scripts-prettier': [ - { source: '@fluentui/scripts-prettier', target: '@fluentui/scripts-monorepo', type: 'static' }, - ], - '@fluentui/scripts-monorepo': [ - { source: '@fluentui/scripts-monorepo', target: '@fluentui/scripts-utils', type: 'static' }, - ], - '@fluentui/scripts-dangerjs': [ - { source: '@fluentui/scripts-dangerjs', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/scripts-dangerjs', target: '@fluentui/scripts-utils', type: 'static' }, - ], - '@fluentui/scripts-webpack': [ - { source: '@fluentui/scripts-webpack', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/scripts-webpack', target: '@fluentui/scripts-utils', type: 'static' }, - ], - '@fluentui/scripts-ts-node': [], - '@fluentui/scripts-cypress': [], - '@fluentui/tokens': [ - { source: '@fluentui/tokens', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/tokens', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/tokens', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/perf-test': [ - { source: '@fluentui/perf-test', target: '@fluentui/scripts-perf-test-flamegrill', type: 'static' }, - { source: '@fluentui/perf-test', target: '@fluentui/example-data', type: 'static' }, - { source: '@fluentui/perf-test', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/perf-test', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/perf-test', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/perf-test', target: '@fluentui/scripts-storybook', type: 'static' }, - ], - '@fluentui/ssr-tests': [ - { source: '@fluentui/ssr-tests', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/ssr-tests', target: '@fluentui/public-docsite-resources', type: 'static' }, - { source: '@fluentui/ssr-tests', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/ssr-tests', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/react': [ - { source: '@fluentui/react', target: '@fluentui/date-time-utilities', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/foundation-legacy', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/font-icons-mdl2', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/react-focus', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/react-hooks', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/react-portal-compat-context', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/react-window-provider', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/style-utilities', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/theme', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/common-styles', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/example-data', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/jest-serializer-merge-styles', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/react-conformance', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/test-utilities', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/webpack-utilities', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/scripts-tasks', type: 'static' }, - { source: '@fluentui/react', target: '@fluentui/scripts-webpack', type: 'static' }, - ], - '@fluentui/scripts-github': [], - '@fluentui/theme': [ - { source: '@fluentui/theme', target: '@fluentui/merge-styles', type: 'static' }, - { source: '@fluentui/theme', target: '@fluentui/utilities', type: 'static' }, - { source: '@fluentui/theme', target: '@fluentui/set-version', type: 'static' }, - { source: '@fluentui/theme', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/theme', target: '@fluentui/scripts-api-extractor', type: 'static' }, - { source: '@fluentui/theme', target: '@fluentui/scripts-jest', type: 'static' }, - { source: '@fluentui/theme', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/vr-tests': [ - { source: '@fluentui/vr-tests', target: '@fluentui/example-data', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/font-icons-mdl2', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/react', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/react-experiments', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/react-hooks', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/react-icons-mdl2', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/storybook', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/react-charting', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/eslint-plugin', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/scripts-storybook', type: 'static' }, - { source: '@fluentui/vr-tests', target: '@fluentui/scripts-tasks', type: 'static' }, - ], - '@fluentui/scripts-tasks': [ - { source: '@fluentui/scripts-tasks', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/scripts-tasks', target: '@fluentui/scripts-utils', type: 'static' }, - { source: '@fluentui/scripts-tasks', target: '@fluentui/scripts-prettier', type: 'static' }, - ], - '@fluentui/scripts-utils': [], - '@fluentui/scripts-babel': [], - '@fluentui/scripts-gulp': [ - { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-utils', type: 'static' }, - { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-prettier', type: 'static' }, - { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-puppeteer', type: 'static' }, - { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-babel', type: 'static' }, - { source: '@fluentui/scripts-gulp', target: '@fluentui/scripts-projects-test', type: 'static' }, - ], - '@fluentui/scripts-jest': [ - { source: '@fluentui/scripts-jest', target: '@fluentui/scripts-monorepo', type: 'static' }, - { source: '@fluentui/scripts-jest', target: '@fluentui/scripts-utils', type: 'static' }, - ], - '@fluentui/typings': [], - }, - fileMap: { - '@fluentui/react-nav-preview': [ - { file: 'packages/react-components/react-nav-preview/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-nav-preview/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-nav-preview/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-nav-preview/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-nav-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-nav-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-nav-preview/LICENSE', hash: '3088430307979696734' }, - { file: 'packages/react-components/react-nav-preview/README.md', hash: '6756387922919562077' }, - { file: 'packages/react-components/react-nav-preview/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-nav-preview/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-nav-preview/etc/react-nav-preview.api.md', hash: '9876017806119506379' }, - { file: 'packages/react-components/react-nav-preview/jest.config.js', hash: '15169909463829389022' }, - { file: 'packages/react-components/react-nav-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-nav-preview/package.json', - hash: '7915169346457060300', - deps: [ - '@fluentui/react-context-selector', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-jsx-runtime', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-nav-preview/project.json', hash: '7707482133573803757' }, - { file: 'packages/react-components/react-nav-preview/src/Nav.ts', hash: '15226117353876273492' }, - { file: 'packages/react-components/react-nav-preview/src/NavCategory.ts', hash: '5434715511121912691' }, - { file: 'packages/react-components/react-nav-preview/src/NavSubItem.ts', hash: '3915242774151390182' }, - { file: 'packages/react-components/react-nav-preview/src/NavSubItemGroup.ts', hash: '8938240070373757142' }, - { - file: 'packages/react-components/react-nav-preview/src/components/Nav/Nav.test.tsx', - hash: '158053486174122653', - }, - { file: 'packages/react-components/react-nav-preview/src/components/Nav/Nav.tsx', hash: '18218270146485422609' }, - { - file: 'packages/react-components/react-nav-preview/src/components/Nav/Nav.types.ts', - hash: '10929201366834975573', - }, - { file: 'packages/react-components/react-nav-preview/src/components/Nav/index.ts', hash: '4485693392122920731' }, - { - file: 'packages/react-components/react-nav-preview/src/components/Nav/renderNav.tsx', - hash: '7230375357800654130', - }, - { file: 'packages/react-components/react-nav-preview/src/components/Nav/useNav.ts', hash: '8897080659886028628' }, - { - file: 'packages/react-components/react-nav-preview/src/components/Nav/useNavStyles.styles.ts', - hash: '4834411169954684266', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.test.tsx', - hash: '16413704721569380745', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.tsx', - hash: '1720640811070915642', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategory/NavCategory.types.ts', - hash: '10098374413585683092', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategory/index.ts', - hash: '8839475292241642578', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategory/renderNavCategory.tsx', - hash: '16804799807584464526', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategory.ts', - hash: '6494678626284114753', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategory/useNavCategoryStyles.styles.ts', - hash: '12633430787449097937', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.tsx', - hash: '5847751961393315587', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/NavCategoryItem.types.ts', - hash: '7891776628441432322', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/index.ts', - hash: '15928452925752890833', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/renderNavCategoryItem.tsx', - hash: '15736603289382147000', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.styles.ts', - hash: '15146860763036639062', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavCategoryItem/useNavCategoryItem.ts', - hash: '9680309884423010271', - }, - { file: 'packages/react-components/react-nav-preview/src/components/NavContext.ts', hash: '4576616369669494997' }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavContext.types.ts', - hash: '15231348000793781746', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.test.tsx', - hash: '14827165463744239965', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.tsx', - hash: '6052519162523369385', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/NavSubItem.types.ts', - hash: '3032984695700474774', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/index.ts', - hash: '9427525485211945814', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/renderNavSubItem.tsx', - hash: '4410008557955283003', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItem.ts', - hash: '4983794637195202580', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItem/useNavSubItemStyles.styles.ts', - hash: '17902598759527383244', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.test.tsx', - hash: '17591529711307606773', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.tsx', - hash: '3095811377236672166', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/NavSubItemGroup.types.ts', - hash: '16579070003339013595', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/index.ts', - hash: '12507449088354686105', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/renderNavSubItemGroup.tsx', - hash: '9750078084299244923', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroup.ts', - hash: '17877101108238726429', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/NavSubItemGroup/useNavSubItemGroupStyles.styles.ts', - hash: '17570522853172330214', - }, - { - file: 'packages/react-components/react-nav-preview/src/components/useNavContextValues.tsx', - hash: '11962765496813473933', - }, - { file: 'packages/react-components/react-nav-preview/src/index.ts', hash: '17244185278957544199' }, - { file: 'packages/react-components/react-nav-preview/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-nav-preview/stories/Nav/NavBestPractices.md', - hash: '13132854725403121719', - }, - { - file: 'packages/react-components/react-nav-preview/stories/Nav/NavDefault.stories.tsx', - hash: '10523927771920967635', - }, - { - file: 'packages/react-components/react-nav-preview/stories/Nav/NavDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-nav-preview/stories/Nav/NavWithDefaultSelection.stories.tsx', - hash: '15867010514756758396', - }, - { - file: 'packages/react-components/react-nav-preview/stories/Nav/index.stories.tsx', - hash: '15202140072825373679', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryBestPractices.md', - hash: '5558067163628176900', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDefault.stories.tsx', - hash: '7778044457764643490', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavCategory/NavCategoryDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavCategory/index.stories.tsx', - hash: '9437617484325163212', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemBestPractices.md', - hash: '13132854725403121719', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemDefault.stories.tsx', - hash: '11220194927216964124', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavSubItem/NavSubItemDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavSubItem/index.stories.tsx', - hash: '7866030612555590358', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupBestPractices.md', - hash: '5558067163628176900', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDefault.stories.tsx', - hash: '984192011107987187', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavSubItemGroup/NavSubItemGroupDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-nav-preview/stories/NavSubItemGroup/index.stories.tsx', - hash: '17887561937213764921', - }, - { file: 'packages/react-components/react-nav-preview/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-nav-preview/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-nav-preview/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-charting': [ - { file: 'packages/react-charting/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/react-charting/.npmignore', hash: '10443000086742372933' }, - { file: 'packages/react-charting/CHANGELOG.json', hash: '10337539383484491208' }, - { file: 'packages/react-charting/CHANGELOG.md', hash: '2897961143973799288' }, - { file: 'packages/react-charting/LICENSE', hash: '5841135995716851283' }, - { file: 'packages/react-charting/README.md', hash: '9832175539157864072' }, - { file: 'packages/react-charting/UnitTests/AreaChartUT.test.tsx', hash: '3269270683542684159' }, - { file: 'packages/react-charting/UnitTests/GroupedVerticalBarChartUT.test.tsx', hash: '4207344687334815004' }, - { file: 'packages/react-charting/UnitTests/HorizontalBarChartUT.test.tsx', hash: '14364237786286584260' }, - { file: 'packages/react-charting/UnitTests/HorizontalBarChartWithAxisUT.test.tsx', hash: '396547921618780460' }, - { file: 'packages/react-charting/UnitTests/LineChartUT.test.tsx', hash: '12769882572288793601' }, - { file: 'packages/react-charting/UnitTests/MultiStackedBarChartUT.test.tsx', hash: '14188312585490958332' }, - { file: 'packages/react-charting/UnitTests/StackedBarChartUT.test.tsx', hash: '14028248580129783923' }, - { file: 'packages/react-charting/UnitTests/VerticalBarChartUT.test.tsx', hash: '13015857820296401822' }, - { file: 'packages/react-charting/UnitTests/VerticalStackedBarChartUT.test.tsx', hash: '12113770954987743955' }, - { - file: 'packages/react-charting/UnitTests/__snapshots__/VerticalBarChartUT.test.tsx.snap', - hash: '13857412498194334317', - }, - { file: 'packages/react-charting/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/react-charting/config/pre-copy.json', hash: '5645154898618432291' }, - { file: 'packages/react-charting/config/setup-env.js', hash: '13680425379733665451' }, - { file: 'packages/react-charting/config/tests.js', hash: '5180650933005958887' }, - { file: 'packages/react-charting/docs/TechnicalDetails.md', hash: '9068612762267236502' }, - { file: 'packages/react-charting/docs/TestPlans/AreaChart/ComponentTests.md', hash: '14808774995763296983' }, - { file: 'packages/react-charting/docs/TestPlans/BasicDonutChart.png', hash: '8407699490179041368' }, - { file: 'packages/react-charting/docs/TestPlans/DonutChart/ComponentTests.md', hash: '9978601866171924879' }, - { file: 'packages/react-charting/docs/TestPlans/GaugeChart/ComponentTests.md', hash: '310841682701784075' }, - { - file: 'packages/react-charting/docs/TestPlans/GroupedVerticalBarChart/ComponentTests.md', - hash: '12842079364814684', - }, - { - file: 'packages/react-charting/docs/TestPlans/HorizontalBarChart/ComponentTests.md', - hash: '11442832876400028967', - }, - { file: 'packages/react-charting/docs/TestPlans/HorizontalBarChart/UnitTests.md', hash: '10509359828932691467' }, - { - file: 'packages/react-charting/docs/TestPlans/HorizontalBarChartWithAxis/ComponentTests.md', - hash: '3270467057658799047', - }, - { - file: 'packages/react-charting/docs/TestPlans/HorizontalBarChartWithAxis/UnitTests.md', - hash: '8883796341179029573', - }, - { file: 'packages/react-charting/docs/TestPlans/LineChart/ComponentTests.md', hash: '7011218632953601663' }, - { - file: 'packages/react-charting/docs/TestPlans/MultiStackedBarChart/componentTests.md', - hash: '16030515404603127361', - }, - { file: 'packages/react-charting/docs/TestPlans/SankeyChart/ComponentTests.md', hash: '5523536025954683769' }, - { - file: 'packages/react-charting/docs/TestPlans/StackedBarChart/ComponentTests.md', - hash: '11182984734598181536', - }, - { file: 'packages/react-charting/docs/TestPlans/TestingGuide.md', hash: '16025073943200425017' }, - { file: 'packages/react-charting/docs/TestPlans/Utilities/UnitTests.md', hash: '3088628899195709632' }, - { - file: 'packages/react-charting/docs/TestPlans/VerticalBarChart/ComponentTests.md', - hash: '1432440988369222322', - }, - { - file: 'packages/react-charting/docs/TestPlans/VerticalStackedBarChart/ComponentTests.md', - hash: '8333002027037114092', - }, - { file: 'packages/react-charting/docs/TestingStrategy.md', hash: '8717563894637714579' }, - { file: 'packages/react-charting/docs/colors.md', hash: '7347026905651813323' }, - { file: 'packages/react-charting/docs/images/TestingStrategy/Coverage.png', hash: '8082557619038467829' }, - { file: 'packages/react-charting/docs/images/TestingStrategy/DonutCoverage.png', hash: '7002143582449968195' }, - { - file: 'packages/react-charting/docs/images/TestingStrategy/TestingStrategy1.png', - hash: '11991739759037126570', - }, - { - file: 'packages/react-charting/docs/images/TestingStrategy/TestingStrategy2.png', - hash: '11433090512127547288', - }, - { - file: 'packages/react-charting/docs/images/TestingStrategy/TestingStrategy3.png', - hash: '16609601640683868044', - }, - { file: 'packages/react-charting/docs/images/colors/1.png', hash: '201676099951062663' }, - { file: 'packages/react-charting/docs/images/colors/2.png', hash: '10654733953245985134' }, - { file: 'packages/react-charting/docs/images/colors/3.png', hash: '15688568969133689415' }, - { file: 'packages/react-charting/docs/images/colors/4.png', hash: '13996815610302054930' }, - { file: 'packages/react-charting/docs/images/colors/5.png', hash: '4015781559900671761' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/1.png', hash: '16183317420418679061' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/10.png', hash: '236882421274026225' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/11.png', hash: '2725308868258316006' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/2.png', hash: '7719706811747650766' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/3.png', hash: '14939467763985185821' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/4.png', hash: '129590479685383509' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/5.png', hash: '11049231658598955416' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/6.png', hash: '5338725798371591663' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/7.png', hash: '6382351246325415711' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/8.png', hash: '13344871051125951407' }, - { file: 'packages/react-charting/docs/images/implementing-2-to-1-spacing/9.png', hash: '2749678903073188113' }, - { file: 'packages/react-charting/docs/implementing-2-to-1-spacing.md', hash: '7322196383453923002' }, - { file: 'packages/react-charting/etc/react-charting.api.md', hash: '882926847407876595' }, - { file: 'packages/react-charting/jest.config.js', hash: '3098401836869255977' }, - { file: 'packages/react-charting/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-charting/package.json', - hash: '4788671312083472529', - deps: [ - '@fluentui/react-focus', - '@fluentui/theme-samples', - 'npm:@microsoft/load-themed-styles', - 'npm:@types/d3-array', - 'npm:@types/d3-axis', - 'npm:@types/d3-format', - 'npm:@types/d3-hierarchy', - 'npm:@types/d3-sankey', - 'npm:@types/d3-scale', - 'npm:@types/d3-selection', - 'npm:@types/d3-shape', - 'npm:@types/d3-time-format', - 'npm:@types/d3-time', - '@fluentui/set-version', - 'npm:d3-array', - 'npm:d3-axis', - 'npm:d3-format', - 'npm:d3-hierarchy', - 'npm:d3-sankey', - 'npm:d3-scale', - 'npm:d3-selection', - 'npm:d3-shape', - 'npm:d3-time-format', - 'npm:d3-time', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/react', - 'npm:@types/react-addons-test-utils', - '@fluentui/jest-serializer-merge-styles', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:jest-canvas-mock', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-charting/project.json', hash: '8731393738633682151' }, - { file: 'packages/react-charting/src/AreaChart.ts', hash: '15073804980104349351' }, - { file: 'packages/react-charting/src/CartesianChart.ts', hash: '10891466127503117236' }, - { file: 'packages/react-charting/src/DonutChart.ts', hash: '7490426087311823403' }, - { file: 'packages/react-charting/src/GaugeChart.ts', hash: '4226033961047400976' }, - { file: 'packages/react-charting/src/GroupedVerticalBarChart.ts', hash: '15489797924433052709' }, - { file: 'packages/react-charting/src/HeatMapChart.ts', hash: '15435667564912730853' }, - { file: 'packages/react-charting/src/HorizontalBarChart.ts', hash: '10237813703175935798' }, - { file: 'packages/react-charting/src/HorizontalBarChartWithAxis.ts', hash: '12029490792828532534' }, - { file: 'packages/react-charting/src/Legends.ts', hash: '16460403896873996968' }, - { file: 'packages/react-charting/src/LineChart.ts', hash: '16659807295692186177' }, - { file: 'packages/react-charting/src/PieChart.ts', hash: '16778366934887091872' }, - { file: 'packages/react-charting/src/SankeyChart.ts', hash: '13055558930716559295' }, - { file: 'packages/react-charting/src/Sparkline.ts', hash: '5671805886276599207' }, - { file: 'packages/react-charting/src/StackedBarChart.ts', hash: '12980182364190103589' }, - { file: 'packages/react-charting/src/Styling.ts', hash: '8123475635573030392' }, - { file: 'packages/react-charting/src/TreeChart.ts', hash: '1109041212000572589' }, - { file: 'packages/react-charting/src/Utilities.ts', hash: '15929919672659535220' }, - { file: 'packages/react-charting/src/VerticalBarChart.ts', hash: '16278638938827171251' }, - { file: 'packages/react-charting/src/VerticalStackedBarChart.ts', hash: '9129833978468491495' }, - { file: 'packages/react-charting/src/components/AreaChart/AreaChart.base.tsx', hash: '4093034690624345489' }, - { file: 'packages/react-charting/src/components/AreaChart/AreaChart.styles.ts', hash: '12408836760076335613' }, - { file: 'packages/react-charting/src/components/AreaChart/AreaChart.test.tsx', hash: '8652410830145203690' }, - { file: 'packages/react-charting/src/components/AreaChart/AreaChart.tsx', hash: '6835702614777497887' }, - { file: 'packages/react-charting/src/components/AreaChart/AreaChart.types.ts', hash: '10272504202604440056' }, - { file: 'packages/react-charting/src/components/AreaChart/AreaChartRTL.test.tsx', hash: '4470895609937221769' }, - { - file: 'packages/react-charting/src/components/AreaChart/__snapshots__/AreaChart.test.tsx.snap', - hash: '4845588270529473456', - }, - { - file: 'packages/react-charting/src/components/AreaChart/__snapshots__/AreaChartRTL.test.tsx.snap', - hash: '2471985332886744964', - }, - { file: 'packages/react-charting/src/components/AreaChart/index.ts', hash: '5251573637088898864' }, - { - file: 'packages/react-charting/src/components/CommonComponents/CartesianChart.base.tsx', - hash: '16404912240725708681', - }, - { - file: 'packages/react-charting/src/components/CommonComponents/CartesianChart.styles.ts', - hash: '761592581144672563', - }, - { - file: 'packages/react-charting/src/components/CommonComponents/CartesianChart.tsx', - hash: '10250008309232000423', - }, - { - file: 'packages/react-charting/src/components/CommonComponents/CartesianChart.types.ts', - hash: '17814415498036662069', - }, - { file: 'packages/react-charting/src/components/CommonComponents/index.ts', hash: '18427500395577533163' }, - { file: 'packages/react-charting/src/components/DonutChart/Arc/Arc.styles.ts', hash: '7895309768491440724' }, - { file: 'packages/react-charting/src/components/DonutChart/Arc/Arc.tsx', hash: '2330806458474842227' }, - { file: 'packages/react-charting/src/components/DonutChart/Arc/Arc.types.ts', hash: '16065720622755568506' }, - { file: 'packages/react-charting/src/components/DonutChart/Arc/index.ts', hash: '1900034318969066403' }, - { file: 'packages/react-charting/src/components/DonutChart/DonutChart.base.tsx', hash: '10268361611138934570' }, - { file: 'packages/react-charting/src/components/DonutChart/DonutChart.styles.ts', hash: '11358002037113474527' }, - { file: 'packages/react-charting/src/components/DonutChart/DonutChart.test.tsx', hash: '5958743739940266923' }, - { file: 'packages/react-charting/src/components/DonutChart/DonutChart.tsx', hash: '7275902301021404929' }, - { file: 'packages/react-charting/src/components/DonutChart/DonutChart.types.ts', hash: '4516278623257219501' }, - { - file: 'packages/react-charting/src/components/DonutChart/DonutChartRTL.test.tsx', - hash: '14322898289149593579', - }, - { file: 'packages/react-charting/src/components/DonutChart/Pie/Pie.styles.ts', hash: '10152053319232122101' }, - { file: 'packages/react-charting/src/components/DonutChart/Pie/Pie.tsx', hash: '11614740086900193123' }, - { file: 'packages/react-charting/src/components/DonutChart/Pie/Pie.types.ts', hash: '11125249214832061206' }, - { file: 'packages/react-charting/src/components/DonutChart/Pie/index.ts', hash: '10239719749643656780' }, - { - file: 'packages/react-charting/src/components/DonutChart/__snapshots__/DonutChart.test.tsx.snap', - hash: '9016515451622476991', - }, - { - file: 'packages/react-charting/src/components/DonutChart/__snapshots__/DonutChartRTL.test.tsx.snap', - hash: '17036608489000678631', - }, - { file: 'packages/react-charting/src/components/DonutChart/index.ts', hash: '806476801011512331' }, - { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.base.tsx', hash: '16183101230137736688' }, - { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.styles.ts', hash: '12584121085851326284' }, - { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.test.tsx', hash: '10662024859942869001' }, - { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.tsx', hash: '865686789344357921' }, - { file: 'packages/react-charting/src/components/GaugeChart/GaugeChart.types.ts', hash: '4362068369519411803' }, - { - file: 'packages/react-charting/src/components/GaugeChart/__snapshots__/GaugeChart.test.tsx.snap', - hash: '11405406597359121046', - }, - { file: 'packages/react-charting/src/components/GaugeChart/index.ts', hash: '4092070756489945207' }, - { - file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.base.tsx', - hash: '14453233103862816273', - }, - { - file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.styles.ts', - hash: '12477643478465004864', - }, - { - file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.test.tsx', - hash: '9445138471362825733', - }, - { - file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.tsx', - hash: '547590682698808044', - }, - { - file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChart.types.tsx', - hash: '12889683239252933321', - }, - { - file: 'packages/react-charting/src/components/GroupedVerticalBarChart/GroupedVerticalBarChartRTL.test.tsx', - hash: '10525872028168114118', - }, - { - file: 'packages/react-charting/src/components/GroupedVerticalBarChart/__snapshots__/GroupedVerticalBarChart.test.tsx.snap', - hash: '8040317183569723433', - }, - { - file: 'packages/react-charting/src/components/GroupedVerticalBarChart/__snapshots__/GroupedVerticalBarChartRTL.test.tsx.snap', - hash: '299674228253636226', - }, - { file: 'packages/react-charting/src/components/GroupedVerticalBarChart/index.ts', hash: '13964524092875310611' }, - { - file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.base.tsx', - hash: '14736055171474099514', - }, - { - file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.styles.ts', - hash: '3628619072673059761', - }, - { - file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.test.tsx', - hash: '13713221853867964395', - }, - { file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.ts', hash: '16716363014827473773' }, - { - file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChart.types.ts', - hash: '3674068218531855343', - }, - { - file: 'packages/react-charting/src/components/HeatMapChart/HeatMapChartRTL.test.tsx', - hash: '17060242443347982036', - }, - { - file: 'packages/react-charting/src/components/HeatMapChart/__snapshots__/HeatMapChart.test.tsx.snap', - hash: '6387895552680780102', - }, - { - file: 'packages/react-charting/src/components/HeatMapChart/__snapshots__/HeatMapChartRTL.test.tsx.snap', - hash: '16624646934983480883', - }, - { file: 'packages/react-charting/src/components/HeatMapChart/index.ts', hash: '13482718997286729011' }, - { - file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.base.tsx', - hash: '13566135812259845013', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.styles.ts', - hash: '4803222885505764720', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.test.tsx', - hash: '174550185337193462', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.tsx', - hash: '167672050024112358', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChart.types.ts', - hash: '18260154883030747993', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChart/HorizontalBarChartRTL.test.tsx', - hash: '3109701644691445553', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChart/__snapshots__/HorizontalBarChart.test.tsx.snap', - hash: '14352873482900009557', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChart/__snapshots__/HorizontalBarChartRTL.test.tsx.snap', - hash: '6955011355447270715', - }, - { file: 'packages/react-charting/src/components/HorizontalBarChart/index.ts', hash: '9333962282124191662' }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.base.tsx', - hash: '1693916576160075498', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.styles.ts', - hash: '6304783213286072684', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.test.tsx', - hash: '4341461412662372767', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.tsx', - hash: '12967004230463593214', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.types.ts', - hash: '16087732441245592913', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxisRTL.test.tsx', - hash: '9255529074178961905', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/__snapshots__/HorizontalBarChartWithAxis.test.tsx.snap', - hash: '17394200814316753927', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/__snapshots__/HorizontalBarChartWithAxisRTL.test.tsx.snap', - hash: '8510830069076786321', - }, - { - file: 'packages/react-charting/src/components/HorizontalBarChartWithAxis/index.ts', - hash: '2159216284678808164', - }, - { file: 'packages/react-charting/src/components/Legends/Legends.base.tsx', hash: '8336604979277864868' }, - { file: 'packages/react-charting/src/components/Legends/Legends.styles.ts', hash: '4390445994177513641' }, - { file: 'packages/react-charting/src/components/Legends/Legends.test.tsx', hash: '12838721524269860' }, - { file: 'packages/react-charting/src/components/Legends/Legends.tsx', hash: '17763042590237256403' }, - { file: 'packages/react-charting/src/components/Legends/Legends.types.ts', hash: '10719772021828530616' }, - { - file: 'packages/react-charting/src/components/Legends/__snapshots__/Legends.test.tsx.snap', - hash: '7042275020175287303', - }, - { file: 'packages/react-charting/src/components/Legends/index.ts', hash: '11962396932209767202' }, - { file: 'packages/react-charting/src/components/Legends/shape.tsx', hash: '9410159346354247531' }, - { file: 'packages/react-charting/src/components/LineChart/LineChart.base.tsx', hash: '1743467768340726551' }, - { file: 'packages/react-charting/src/components/LineChart/LineChart.styles.ts', hash: '4772105040357989417' }, - { file: 'packages/react-charting/src/components/LineChart/LineChart.test.tsx', hash: '4473160801976779354' }, - { file: 'packages/react-charting/src/components/LineChart/LineChart.tsx', hash: '17773336946261757726' }, - { file: 'packages/react-charting/src/components/LineChart/LineChart.types.ts', hash: '10257967280247755900' }, - { file: 'packages/react-charting/src/components/LineChart/LineChartRTL.test.tsx', hash: '7383273194652858704' }, - { - file: 'packages/react-charting/src/components/LineChart/__snapshots__/LineChart.test.tsx.snap', - hash: '2565168848531218728', - }, - { - file: 'packages/react-charting/src/components/LineChart/__snapshots__/LineChartRTL.test.tsx.snap', - hash: '16961247164859363448', - }, - { - file: 'packages/react-charting/src/components/LineChart/eventAnnotation/EventAnnotation.tsx', - hash: '1448438468217299215', - }, - { - file: 'packages/react-charting/src/components/LineChart/eventAnnotation/LabelLink.tsx', - hash: '4839885737511228824', - }, - { - file: 'packages/react-charting/src/components/LineChart/eventAnnotation/Textbox.tsx', - hash: '5832348627714078393', - }, - { file: 'packages/react-charting/src/components/LineChart/index.ts', hash: '4650408877452069117' }, - { file: 'packages/react-charting/src/components/PieChart/Arc/Arc.styles.ts', hash: '13106112677766064183' }, - { file: 'packages/react-charting/src/components/PieChart/Arc/Arc.tsx', hash: '10390303130266047054' }, - { file: 'packages/react-charting/src/components/PieChart/Arc/Arc.types.ts', hash: '3997819974378711901' }, - { file: 'packages/react-charting/src/components/PieChart/Arc/index.ts', hash: '1900034318969066403' }, - { file: 'packages/react-charting/src/components/PieChart/Pie/Pie.styles.ts', hash: '11381302664912127439' }, - { file: 'packages/react-charting/src/components/PieChart/Pie/Pie.tsx', hash: '5623368322288978473' }, - { file: 'packages/react-charting/src/components/PieChart/Pie/Pie.types.ts', hash: '1875472874734088782' }, - { file: 'packages/react-charting/src/components/PieChart/Pie/index.ts', hash: '10239719749643656780' }, - { file: 'packages/react-charting/src/components/PieChart/PieChart.base.tsx', hash: '12921994545695521033' }, - { file: 'packages/react-charting/src/components/PieChart/PieChart.styles.ts', hash: '11321424857209075565' }, - { file: 'packages/react-charting/src/components/PieChart/PieChart.test.tsx', hash: '11677544683436052134' }, - { file: 'packages/react-charting/src/components/PieChart/PieChart.tsx', hash: '4527556264484607554' }, - { file: 'packages/react-charting/src/components/PieChart/PieChart.types.ts', hash: '15623409056434247426' }, - { file: 'packages/react-charting/src/components/PieChart/PieChartRTL.test.tsx', hash: '16233211447376373011' }, - { - file: 'packages/react-charting/src/components/PieChart/__snapshots__/PieChart.test.tsx.snap', - hash: '4016198114503601082', - }, - { - file: 'packages/react-charting/src/components/PieChart/__snapshots__/PieChartRTL.test.tsx.snap', - hash: '8413701594029012718', - }, - { file: 'packages/react-charting/src/components/PieChart/index.ts', hash: '5955166752264931769' }, - { file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.base.tsx', hash: '4238588452395692138' }, - { - file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.styles.ts', - hash: '11368532189204175738', - }, - { file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.test.tsx', hash: '16134333975133506558' }, - { file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.tsx', hash: '9289951482328354569' }, - { file: 'packages/react-charting/src/components/SankeyChart/SankeyChart.types.ts', hash: '15014298009889412684' }, - { - file: 'packages/react-charting/src/components/SankeyChart/SankeyChartRTL.test.tsx', - hash: '868790866629945990', - }, - { - file: 'packages/react-charting/src/components/SankeyChart/__snapshots__/SankeyChart.test.tsx.snap', - hash: '4049212962907979931', - }, - { - file: 'packages/react-charting/src/components/SankeyChart/__snapshots__/SankeyChartRTL.test.tsx.snap', - hash: '5700523192183358557', - }, - { file: 'packages/react-charting/src/components/SankeyChart/index.ts', hash: '13870984042315143866' }, - { file: 'packages/react-charting/src/components/Sparkline/Sparkline.base.tsx', hash: '7967151691860791302' }, - { file: 'packages/react-charting/src/components/Sparkline/Sparkline.styles.ts', hash: '2202640113884915397' }, - { file: 'packages/react-charting/src/components/Sparkline/Sparkline.test.tsx', hash: '8468249823093830932' }, - { file: 'packages/react-charting/src/components/Sparkline/Sparkline.tsx', hash: '8843740910926078940' }, - { file: 'packages/react-charting/src/components/Sparkline/Sparkline.types.ts', hash: '8837031610239272804' }, - { file: 'packages/react-charting/src/components/Sparkline/SparklineRTL.test.tsx', hash: '17767147002141960667' }, - { - file: 'packages/react-charting/src/components/Sparkline/__snapshots__/Sparkline.test.tsx.snap', - hash: '18168444434486593058', - }, - { - file: 'packages/react-charting/src/components/Sparkline/__snapshots__/SparklineRTL.test.tsx.snap', - hash: '17716551567309776610', - }, - { file: 'packages/react-charting/src/components/Sparkline/index.ts', hash: '9268351487690962554' }, - { - file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.base.tsx', - hash: '16352182103019411834', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.styles.ts', - hash: '14038483678757699445', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.test.tsx', - hash: '5169005374924869809', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.tsx', - hash: '6725276213177702647', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChart.types.ts', - hash: '431656116944400988', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/MultiStackedBarChartRTL.test.tsx', - hash: '14736367081219831047', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.base.tsx', - hash: '2927471067626698909', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.styles.ts', - hash: '11603146486475755241', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.test.tsx', - hash: '5336773472540129552', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.tsx', - hash: '4436183465389462436', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChart.types.ts', - hash: '10981829443029230848', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/StackedBarChartRTL.test.tsx', - hash: '3869922963895117385', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/__snapshots__/MultiStackedBarChart.test.tsx.snap', - hash: '8446879553536508446', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/__snapshots__/MultiStackedBarChartRTL.test.tsx.snap', - hash: '16448004251364457038', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/__snapshots__/StackedBarChart.test.tsx.snap', - hash: '7252639629933796491', - }, - { - file: 'packages/react-charting/src/components/StackedBarChart/__snapshots__/StackedBarChartRTL.test.tsx.snap', - hash: '9503984772139484704', - }, - { file: 'packages/react-charting/src/components/StackedBarChart/index.ts', hash: '15578486466730932711' }, - { file: 'packages/react-charting/src/components/TreeChart/TreeChart.base.tsx', hash: '10623309691759917195' }, - { file: 'packages/react-charting/src/components/TreeChart/TreeChart.md', hash: '5175369282106178614' }, - { file: 'packages/react-charting/src/components/TreeChart/TreeChart.styles.ts', hash: '17861002185407290370' }, - { file: 'packages/react-charting/src/components/TreeChart/TreeChart.test.tsx', hash: '8465420044933020987' }, - { file: 'packages/react-charting/src/components/TreeChart/TreeChart.tsx', hash: '13438935336731785436' }, - { file: 'packages/react-charting/src/components/TreeChart/TreeChart.types.ts', hash: '9815794191923244384' }, - { - file: 'packages/react-charting/src/components/TreeChart/__snapshots__/TreeChart.test.tsx.snap', - hash: '238652132373299106', - }, - { file: 'packages/react-charting/src/components/TreeChart/index.ts', hash: '2826009403154309363' }, - { - file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.base.tsx', - hash: '8336076320828394951', - }, - { - file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.styles.ts', - hash: '6267631615960523739', - }, - { - file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.test.tsx', - hash: '10655231889810527960', - }, - { - file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.tsx', - hash: '3592096069015647087', - }, - { - file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChart.types.ts', - hash: '1360416350825185069', - }, - { - file: 'packages/react-charting/src/components/VerticalBarChart/VerticalBarChartRTL.test.tsx', - hash: '17820943011845170989', - }, - { - file: 'packages/react-charting/src/components/VerticalBarChart/__snapshots__/VerticalBarChart.test.tsx.snap', - hash: '13303928231674988916', - }, - { - file: 'packages/react-charting/src/components/VerticalBarChart/__snapshots__/VerticalBarChartRTL.test.tsx.snap', - hash: '8170413271310272463', - }, - { file: 'packages/react-charting/src/components/VerticalBarChart/index.ts', hash: '9875808817767585330' }, - { file: 'packages/react-charting/src/components/VerticalBarChart/react-dom.jsx', hash: '17581154772148716541' }, - { - file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.base.tsx', - hash: '12977454775737757480', - }, - { - file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.styles.ts', - hash: '14229107687470008229', - }, - { - file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.test.tsx', - hash: '4877115899948100379', - }, - { - file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.tsx', - hash: '11335430591061979311', - }, - { - file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChart.types.ts', - hash: '18235795669827468523', - }, - { - file: 'packages/react-charting/src/components/VerticalStackedBarChart/VerticalStackedBarChartRTL.test.tsx', - hash: '8425206743206271978', - }, - { - file: 'packages/react-charting/src/components/VerticalStackedBarChart/__snapshots__/VerticalStackedBarChart.test.tsx.snap', - hash: '5222520582796619900', - }, - { - file: 'packages/react-charting/src/components/VerticalStackedBarChart/__snapshots__/VerticalStackedBarChartRTL.test.tsx.snap', - hash: '12764028698035015713', - }, - { file: 'packages/react-charting/src/components/VerticalStackedBarChart/index.ts', hash: '1771243465102915081' }, - { file: 'packages/react-charting/src/index.ts', hash: '16175531709538828878' }, - { file: 'packages/react-charting/src/types/IDataPoint.ts', hash: '12293155624419644902' }, - { file: 'packages/react-charting/src/types/IEventAnnotation.ts', hash: '9553620252041460313' }, - { file: 'packages/react-charting/src/types/ILegendDataItem.ts', hash: '453827769507159528' }, - { file: 'packages/react-charting/src/types/index.ts', hash: '17984122460489873361' }, - { - file: 'packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.base.tsx', - hash: '13613396689005880572', - }, - { - file: 'packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.styles.ts', - hash: '1188961640666456662', - }, - { file: 'packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.tsx', hash: '16352669973586416577' }, - { - file: 'packages/react-charting/src/utilities/ChartHoverCard/ChartHoverCard.types.ts', - hash: '2731466171182375306', - }, - { file: 'packages/react-charting/src/utilities/ChartHoverCard/index.ts', hash: '18016841014173982452' }, - { file: 'packages/react-charting/src/utilities/FocusableTooltipText.tsx', hash: '8807412423501985193' }, - { file: 'packages/react-charting/src/utilities/SVGTooltipText.tsx', hash: '15758375221240808115' }, - { file: 'packages/react-charting/src/utilities/TestUtility.test.tsx', hash: '13941124207198777159' }, - { file: 'packages/react-charting/src/utilities/UtilityUnitTests.test.ts', hash: '12459529793627868533' }, - { - file: 'packages/react-charting/src/utilities/__snapshots__/UtilityUnitTests.test.ts.snap', - hash: '5180532810822606706', - }, - { file: 'packages/react-charting/src/utilities/colors.ts', hash: '18245164562320937467' }, - { file: 'packages/react-charting/src/utilities/index.ts', hash: '7657671373760345128' }, - { file: 'packages/react-charting/src/utilities/test-data.ts', hash: '5562381519452570272' }, - { file: 'packages/react-charting/src/utilities/utilities.ts', hash: '4711024040231083860' }, - { file: 'packages/react-charting/src/version.ts', hash: '15896380775009511348' }, - { file: 'packages/react-charting/tsconfig.json', hash: '7639079792952290029' }, - { file: 'packages/react-charting/webpack.codepen.config.js', hash: '10315398573475886442' }, - { file: 'packages/react-charting/webpack.config.js', hash: '399209706662205981' }, - { file: 'packages/react-charting/webpack.serve.config.js', hash: '7443825724669908634' }, - ], - '@fluentui/common-styles': [ - { file: 'packages/common-styles/.npmignore', hash: '327479296810377636' }, - { file: 'packages/common-styles/CHANGELOG.json', hash: '273257757340656739' }, - { file: 'packages/common-styles/CHANGELOG.md', hash: '3103668277148981926' }, - { file: 'packages/common-styles/LICENSE', hash: '4436358303113749104' }, - { file: 'packages/common-styles/README.md', hash: '4674155591335065321' }, - { file: 'packages/common-styles/config/pre-copy.json', hash: '13536315415449720583' }, - { file: 'packages/common-styles/just.config.ts', hash: '1976825945203391633' }, - { - file: 'packages/common-styles/package.json', - hash: '17165989050030419928', - deps: ['npm:office-ui-fabric-core', '@fluentui/style-utilities', '@fluentui/scripts-tasks'], - }, - { file: 'packages/common-styles/project.json', hash: '9937167994900158632' }, - { file: 'packages/common-styles/scripts/generateDefaultThemeSassFiles.js', hash: '4930205392535843957' }, - { file: 'packages/common-styles/src/ThemingSass.scss', hash: '6636654454988071435' }, - { file: 'packages/common-styles/src/_common.scss', hash: '6954687516387477622' }, - { file: 'packages/common-styles/src/_constants.scss', hash: '1069234499133074227' }, - { file: 'packages/common-styles/src/_effects.scss', hash: '8102725403571912427' }, - { file: 'packages/common-styles/src/_focusBorder.scss', hash: '10537019636132615427' }, - { file: 'packages/common-styles/src/_highContrast.scss', hash: '17939297006735694085' }, - { file: 'packages/common-styles/src/_i18n.scss', hash: '13301901823299427213' }, - { file: 'packages/common-styles/src/_legacyThemePalette.scss', hash: '6382729561059486833' }, - { file: 'packages/common-styles/src/_semanticSlots.scss', hash: '15520402900566886591' }, - { file: 'packages/common-styles/src/_themeCssVariables.scss', hash: '13486063986535911847' }, - { file: 'packages/common-styles/src/_themeOverrides.scss', hash: '6442887095598285123' }, - { file: 'packages/common-styles/src/_themeVariables.scss', hash: '8347442751634693629' }, - ], - '@fluentui/react-portal-compat': [ - { file: 'packages/react-components/react-portal-compat/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-portal-compat/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-portal-compat/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-portal-compat/CHANGELOG.json', hash: '6310547495553252113' }, - { file: 'packages/react-components/react-portal-compat/CHANGELOG.md', hash: '637890491534529925' }, - { file: 'packages/react-components/react-portal-compat/LICENSE', hash: '2734216586406312338' }, - { file: 'packages/react-components/react-portal-compat/README.md', hash: '13552660956899760048' }, - { - file: 'packages/react-components/react-portal-compat/bundle-size/PortalCompat.fixture.js', - hash: '8933784648953307496', - }, - { file: 'packages/react-components/react-portal-compat/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-portal-compat/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-portal-compat/cypress.config.ts', hash: '17230281421398791592' }, - { - file: 'packages/react-components/react-portal-compat/etc/react-portal-compat.api.md', - hash: '12672897639085221881', - }, - { file: 'packages/react-components/react-portal-compat/jest.config.js', hash: '7201973850221979533' }, - { file: 'packages/react-components/react-portal-compat/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-portal-compat/package.json', - hash: '2242680828023904012', - deps: [ - '@fluentui/react-portal-compat-context', - '@fluentui/react-tabster', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-components', - '@fluentui/react-shared-contexts', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-components/react-portal-compat/project.json', hash: '4163289893969820182' }, - { file: 'packages/react-components/react-portal-compat/src/PortalCompat.cy.tsx', hash: '7224010505980293781' }, - { - file: 'packages/react-components/react-portal-compat/src/PortalCompatProvider.test.tsx', - hash: '4950300713413640133', - }, - { - file: 'packages/react-components/react-portal-compat/src/PortalCompatProvider.tsx', - hash: '6743743402925755352', - }, - { file: 'packages/react-components/react-portal-compat/src/index.ts', hash: '11087139990223362374' }, - { file: 'packages/react-components/react-portal-compat/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-portal-compat/tsconfig.json', hash: '5596071008249197618' }, - { file: 'packages/react-components/react-portal-compat/tsconfig.lib.json', hash: '4109592473830538944' }, - { file: 'packages/react-components/react-portal-compat/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-timepicker-compat': [ - { file: 'packages/react-components/react-timepicker-compat/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-timepicker-compat/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-timepicker-compat/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-timepicker-compat/.storybook/preview.js', hash: '1791378012295456991' }, - { - file: 'packages/react-components/react-timepicker-compat/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-timepicker-compat/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-timepicker-compat/CHANGELOG.json', hash: '11191853975729478248' }, - { file: 'packages/react-components/react-timepicker-compat/CHANGELOG.md', hash: '16788805867679456860' }, - { file: 'packages/react-components/react-timepicker-compat/LICENSE', hash: '5894441072731856187' }, - { file: 'packages/react-components/react-timepicker-compat/README.md', hash: '3680685275246455558' }, - { - file: 'packages/react-components/react-timepicker-compat/bundle-size/TimePicker.fixture.js', - hash: '16899056741609557245', - }, - { - file: 'packages/react-components/react-timepicker-compat/config/api-extractor.json', - hash: '124052868224837692', - }, - { file: 'packages/react-components/react-timepicker-compat/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-timepicker-compat/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-timepicker-compat/docs/Migration.md', hash: '7575090176618687513' }, - { file: 'packages/react-components/react-timepicker-compat/docs/Spec.md', hash: '4434180370389108781' }, - { - file: 'packages/react-components/react-timepicker-compat/etc/react-timepicker-compat.api.md', - hash: '806412966990929511', - }, - { file: 'packages/react-components/react-timepicker-compat/jest.config.js', hash: '12661834635702904638' }, - { file: 'packages/react-components/react-timepicker-compat/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-timepicker-compat/package.json', - hash: '9651141473165413674', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-combobox', - '@fluentui/react-field', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-timepicker-compat/project.json', hash: '12017860013643936176' }, - { file: 'packages/react-components/react-timepicker-compat/src/TimePicker.ts', hash: '8919003633615161634' }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.cy.tsx', - hash: '577280389277013309', - }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.test.tsx', - hash: '4625180512860312676', - }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.tsx', - hash: '6856338812317042222', - }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/TimePicker.types.ts', - hash: '16705913128014134642', - }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/index.ts', - hash: '14317002683791819993', - }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/timeMath.test.ts', - hash: '9610495087449809696', - }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/timeMath.ts', - hash: '16427594297458443598', - }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/useTimePicker.tsx', - hash: '10101090423944398224', - }, - { - file: 'packages/react-components/react-timepicker-compat/src/components/TimePicker/useTimePickerStyles.styles.ts', - hash: '9323957650113310013', - }, - { file: 'packages/react-components/react-timepicker-compat/src/index.ts', hash: '15110596364222141948' }, - { - file: 'packages/react-components/react-timepicker-compat/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerBestPractices.md', - hash: '4715016281428560167', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerControlled.md', - hash: '4542577073511108011', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerControlled.stories.tsx', - hash: '12390911091164732918', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerDefault.stories.tsx', - hash: '8034977353354719858', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerDescription.md', - hash: '6543020975323479896', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformCustomParsing.md', - hash: '8328212493981358431', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformCustomParsing.stories.tsx', - hash: '10623384923512153992', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformWithErrorHandling.md', - hash: '9839268275704554451', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerFreeformWithErrorHandling.stories.tsx', - hash: '726484920919964579', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/TimePickerWithDatePicker.stories.tsx', - hash: '16534919271336122442', - }, - { - file: 'packages/react-components/react-timepicker-compat/stories/TimePicker/index.stories.tsx', - hash: '6042911818401085451', - }, - { file: 'packages/react-components/react-timepicker-compat/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-timepicker-compat/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-timepicker-compat/tsconfig.lib.json', hash: '8117551715541039118' }, - { file: 'packages/react-components/react-timepicker-compat/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/style-utilities': [ - { file: 'packages/style-utilities/.eslintrc.json', hash: '777445592424795063' }, - { file: 'packages/style-utilities/.npmignore', hash: '47056201363133096' }, - { file: 'packages/style-utilities/CHANGELOG.json', hash: '16559089319701978657' }, - { file: 'packages/style-utilities/CHANGELOG.md', hash: '11293021336094530000' }, - { file: 'packages/style-utilities/LICENSE', hash: '10631102846389405471' }, - { file: 'packages/style-utilities/README.md', hash: '8785584383498049932' }, - { file: 'packages/style-utilities/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/style-utilities/config/config.json', hash: '492575458105150550' }, - { file: 'packages/style-utilities/config/write-manifests.json', hash: '9493299321895719529' }, - { file: 'packages/style-utilities/etc/style-utilities.api.md', hash: '1346941679710414993' }, - { file: 'packages/style-utilities/jest.config.js', hash: '3240558433730290797' }, - { file: 'packages/style-utilities/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/style-utilities/package.json', - hash: '10054612952908139680', - deps: [ - 'npm:@microsoft/load-themed-styles', - '@fluentui/theme', - '@fluentui/merge-styles', - '@fluentui/set-version', - '@fluentui/utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/style-utilities/project.json', hash: '2354001145725204558' }, - { file: 'packages/style-utilities/src/MergeStyles.ts', hash: '12687567316096870855' }, - { file: 'packages/style-utilities/src/Utilities.ts', hash: '7452799764049456122' }, - { file: 'packages/style-utilities/src/cdn.ts', hash: '2068649209194047104' }, - { file: 'packages/style-utilities/src/classNames/AnimationClassNames.ts', hash: '10911362795623760003' }, - { file: 'packages/style-utilities/src/classNames/ColorClassNames.ts', hash: '15467006911252499549' }, - { file: 'packages/style-utilities/src/classNames/FontClassNames.ts', hash: '12726977663961178186' }, - { file: 'packages/style-utilities/src/classNames/index.ts', hash: '14430502139131911936' }, - { file: 'packages/style-utilities/src/index.ts', hash: '16923130164332550840' }, - { file: 'packages/style-utilities/src/interfaces/IAnimationStyles.ts', hash: '12986432637445274053' }, - { file: 'packages/style-utilities/src/interfaces/IGetFocusStyles.ts', hash: '6841339027325532436' }, - { file: 'packages/style-utilities/src/interfaces/index.ts', hash: '4233406151298891077' }, - { file: 'packages/style-utilities/src/styles/AnimationStyles.ts', hash: '13873762751663857941' }, - { file: 'packages/style-utilities/src/styles/CommonStyles.ts', hash: '17789799438239226639' }, - { file: 'packages/style-utilities/src/styles/DefaultEffects.ts', hash: '17737879615641440019' }, - { file: 'packages/style-utilities/src/styles/DefaultFontStyles.ts', hash: '16110133181151166893' }, - { file: 'packages/style-utilities/src/styles/DefaultPalette.ts', hash: '308226778033962556' }, - { file: 'packages/style-utilities/src/styles/DefaultSpacing.ts', hash: '9920566915208494979' }, - { file: 'packages/style-utilities/src/styles/GeneralStyles.ts', hash: '351343555411730221' }, - { file: 'packages/style-utilities/src/styles/PulsingBeaconAnimationStyles.ts', hash: '1690259696892853135' }, - { file: 'packages/style-utilities/src/styles/fonts.ts', hash: '8465894030987436105' }, - { file: 'packages/style-utilities/src/styles/getFadedOverflowStyle.ts', hash: '2192178636602906456' }, - { file: 'packages/style-utilities/src/styles/getFocusStyle.ts', hash: '14892328874399091488' }, - { file: 'packages/style-utilities/src/styles/getGlobalClassNames.test.ts', hash: '15322990379229959297' }, - { file: 'packages/style-utilities/src/styles/getGlobalClassNames.ts', hash: '11769296658838531911' }, - { file: 'packages/style-utilities/src/styles/getPlaceholderStyles.ts', hash: '1528620556961214673' }, - { file: 'packages/style-utilities/src/styles/hiddenContentStyle.ts', hash: '15085522144708332270' }, - { file: 'packages/style-utilities/src/styles/index.ts', hash: '13699769295309937200' }, - { file: 'packages/style-utilities/src/styles/scheme.test.ts', hash: '14291007267009640848' }, - { file: 'packages/style-utilities/src/styles/scheme.ts', hash: '7384403392194222555' }, - { file: 'packages/style-utilities/src/styles/theme.test.ts', hash: '17085591667890151459' }, - { file: 'packages/style-utilities/src/styles/theme.ts', hash: '6368189951590670151' }, - { file: 'packages/style-utilities/src/styles/zIndexes.ts', hash: '5466025012238433759' }, - { file: 'packages/style-utilities/src/utilities/buildClassMap.ts', hash: '8219739827132639559' }, - { file: 'packages/style-utilities/src/utilities/getIconClassName.ts', hash: '7401286075380243893' }, - { file: 'packages/style-utilities/src/utilities/icons.test.ts', hash: '13392146120626313866' }, - { file: 'packages/style-utilities/src/utilities/icons.ts', hash: '11770390318349620343' }, - { file: 'packages/style-utilities/src/utilities/index.ts', hash: '14587868060223513086' }, - { file: 'packages/style-utilities/src/version.ts', hash: '571632617522871792' }, - { file: 'packages/style-utilities/tsconfig.json', hash: '1525836875762683581' }, - ], - '@fluentui/react-combobox': [ - { file: 'packages/react-components/react-combobox/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-combobox/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-combobox/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-combobox/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-combobox/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-combobox/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-combobox/CHANGELOG.json', hash: '3985528873419017670' }, - { file: 'packages/react-components/react-combobox/CHANGELOG.md', hash: '9154813673257028545' }, - { file: 'packages/react-components/react-combobox/LICENSE', hash: '9860549950015593842' }, - { file: 'packages/react-components/react-combobox/README.md', hash: '9155355691234160061' }, - { file: 'packages/react-components/react-combobox/bundle-size/Combobox.fixture.js', hash: '9982117868040139071' }, - { file: 'packages/react-components/react-combobox/bundle-size/Dropdown.fixture.js', hash: '8112300604899923822' }, - { file: 'packages/react-components/react-combobox/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-combobox/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-combobox/docs/Migration.md', hash: '15736839676233684150' }, - { file: 'packages/react-components/react-combobox/docs/Spec.md', hash: '13792868429925902060' }, - { file: 'packages/react-components/react-combobox/etc/react-combobox.api.md', hash: '12110621555092127445' }, - { file: 'packages/react-components/react-combobox/jest.config.js', hash: '14434437269927222502' }, - { file: 'packages/react-components/react-combobox/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-combobox/package.json', - hash: '8415023961919121570', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-context-selector', - '@fluentui/react-field', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-portal', - '@fluentui/react-positioning', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-combobox/project.json', hash: '17856213337526301744' }, - { file: 'packages/react-components/react-combobox/src/Combobox.ts', hash: '13212991580912314567' }, - { file: 'packages/react-components/react-combobox/src/Dropdown.ts', hash: '18194367805350925119' }, - { file: 'packages/react-components/react-combobox/src/Listbox.ts', hash: '2994750780024488790' }, - { file: 'packages/react-components/react-combobox/src/Option.ts', hash: '8134140143396359331' }, - { file: 'packages/react-components/react-combobox/src/OptionGroup.ts', hash: '3135556529192386201' }, - { file: 'packages/react-components/react-combobox/src/Selection.ts', hash: '9515203752361595812' }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/Combobox.test.tsx', - hash: '11060583859767248781', - }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/Combobox.tsx', - hash: '10311117368400437139', - }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/Combobox.types.ts', - hash: '6722880387444505841', - }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/__snapshots__/Combobox.test.tsx.snap', - hash: '84774976154997620', - }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/index.ts', - hash: '6601828869047344697', - }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/renderCombobox.tsx', - hash: '6280296408622563178', - }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/useCombobox.tsx', - hash: '520267582978251132', - }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/useComboboxStyles.styles.ts', - hash: '15274002347501714576', - }, - { - file: 'packages/react-components/react-combobox/src/components/Combobox/useInputTriggerSlot.ts', - hash: '9223211072539326676', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/Dropdown.test.tsx', - hash: '627380512353886242', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/Dropdown.tsx', - hash: '5534345575162447099', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/Dropdown.types.ts', - hash: '14900938450773068428', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/__snapshots__/Dropdown.test.tsx.snap', - hash: '14529732928227940878', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/index.ts', - hash: '2679793517316704607', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/renderDropdown.tsx', - hash: '2334816031473000713', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/useButtonTriggerSlot.ts', - hash: '17670001280220951598', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/useDropdown.tsx', - hash: '7158597820481445308', - }, - { - file: 'packages/react-components/react-combobox/src/components/Dropdown/useDropdownStyles.styles.ts', - hash: '8988619665109997777', - }, - { - file: 'packages/react-components/react-combobox/src/components/Listbox/Listbox.test.tsx', - hash: '5240177981222686361', - }, - { - file: 'packages/react-components/react-combobox/src/components/Listbox/Listbox.tsx', - hash: '11961102491274010486', - }, - { - file: 'packages/react-components/react-combobox/src/components/Listbox/Listbox.types.ts', - hash: '2057681249960441904', - }, - { - file: 'packages/react-components/react-combobox/src/components/Listbox/__snapshots__/Listbox.test.tsx.snap', - hash: '16313140357488500172', - }, - { - file: 'packages/react-components/react-combobox/src/components/Listbox/index.ts', - hash: '10149829330954397429', - }, - { - file: 'packages/react-components/react-combobox/src/components/Listbox/renderListbox.tsx', - hash: '9529356921915895894', - }, - { - file: 'packages/react-components/react-combobox/src/components/Listbox/useListbox.ts', - hash: '9517705189017094768', - }, - { - file: 'packages/react-components/react-combobox/src/components/Listbox/useListboxStyles.styles.ts', - hash: '10512360566143520474', - }, - { - file: 'packages/react-components/react-combobox/src/components/Option/Option.test.tsx', - hash: '5177864859865280746', - }, - { - file: 'packages/react-components/react-combobox/src/components/Option/Option.tsx', - hash: '12671939144116063908', - }, - { - file: 'packages/react-components/react-combobox/src/components/Option/Option.types.ts', - hash: '3862608407678106174', - }, - { - file: 'packages/react-components/react-combobox/src/components/Option/__snapshots__/Option.test.tsx.snap', - hash: '12111334467294524539', - }, - { file: 'packages/react-components/react-combobox/src/components/Option/index.ts', hash: '3914311942511823178' }, - { - file: 'packages/react-components/react-combobox/src/components/Option/renderOption.tsx', - hash: '16662341201277600348', - }, - { - file: 'packages/react-components/react-combobox/src/components/Option/useOption.tsx', - hash: '2142576164571353029', - }, - { - file: 'packages/react-components/react-combobox/src/components/Option/useOptionStyles.styles.ts', - hash: '5670469110030125289', - }, - { - file: 'packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.test.tsx', - hash: '4384866626424502977', - }, - { - file: 'packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.tsx', - hash: '3182087730059989119', - }, - { - file: 'packages/react-components/react-combobox/src/components/OptionGroup/OptionGroup.types.ts', - hash: '8445554751423183315', - }, - { - file: 'packages/react-components/react-combobox/src/components/OptionGroup/__snapshots__/OptionGroup.test.tsx.snap', - hash: '163861498277196073', - }, - { - file: 'packages/react-components/react-combobox/src/components/OptionGroup/index.ts', - hash: '16578744468575825163', - }, - { - file: 'packages/react-components/react-combobox/src/components/OptionGroup/renderOptionGroup.tsx', - hash: '3110647036943882995', - }, - { - file: 'packages/react-components/react-combobox/src/components/OptionGroup/useOptionGroup.ts', - hash: '11097943236829005456', - }, - { - file: 'packages/react-components/react-combobox/src/components/OptionGroup/useOptionGroupStyles.styles.ts', - hash: '17434221321981968949', - }, - { file: 'packages/react-components/react-combobox/src/contexts/ComboboxContext.ts', hash: '929963705666598824' }, - { file: 'packages/react-components/react-combobox/src/contexts/ListboxContext.ts', hash: '3439369373193236577' }, - { - file: 'packages/react-components/react-combobox/src/contexts/useComboboxContextValues.ts', - hash: '13340091498314471026', - }, - { - file: 'packages/react-components/react-combobox/src/contexts/useListboxContextValues.ts', - hash: '13800266999970494762', - }, - { file: 'packages/react-components/react-combobox/src/index.ts', hash: '9936586546212580500' }, - { file: 'packages/react-components/react-combobox/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-combobox/src/utils/ComboboxBase.types.ts', - hash: '16300109512749709073', - }, - { - file: 'packages/react-components/react-combobox/src/utils/OptionCollection.types.ts', - hash: '6054787405511182417', - }, - { file: 'packages/react-components/react-combobox/src/utils/Selection.types.ts', hash: '11972870952754376840' }, - { file: 'packages/react-components/react-combobox/src/utils/dropdownKeyActions.ts', hash: '1316510657660803656' }, - { file: 'packages/react-components/react-combobox/src/utils/internalTokens.ts', hash: '14963293680083608660' }, - { - file: 'packages/react-components/react-combobox/src/utils/useComboboxBaseState.ts', - hash: '8250739279614188233', - }, - { - file: 'packages/react-components/react-combobox/src/utils/useComboboxPositioning.ts', - hash: '2550337742911701970', - }, - { file: 'packages/react-components/react-combobox/src/utils/useListboxSlot.ts', hash: '13952757643081324859' }, - { - file: 'packages/react-components/react-combobox/src/utils/useOptionCollection.ts', - hash: '7314571815979167399', - }, - { - file: 'packages/react-components/react-combobox/src/utils/useScrollOptionsIntoView.ts', - hash: '4142049665632735367', - }, - { file: 'packages/react-components/react-combobox/src/utils/useSelection.ts', hash: '14996013758550257473' }, - { file: 'packages/react-components/react-combobox/src/utils/useTriggerSlot.ts', hash: '9101709088659355024' }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxAppearance.stories.tsx', - hash: '8548703503941685749', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxBestPractices.md', - hash: '744684511504791082', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxComplexOptions.stories.tsx', - hash: '297723454355376697', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxControlled.stories.tsx', - hash: '3456633706628545626', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxCustomOptions.stories.tsx', - hash: '12685238925861146979', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxDefault.stories.tsx', - hash: '18266674055953269566', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxDescription.md', - hash: '17843666779395466277', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxDisabled.stories.tsx', - hash: '3128410187237974780', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxFiltering.stories.tsx', - hash: '17936456203850376223', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxFreeform.stories.tsx', - hash: '18323167836197074615', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxGrouped.stories.tsx', - hash: '13215087173770388938', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselect.stories.tsx', - hash: '10893488920315906460', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselectWithTags.stories.tsx', - hash: '15979300667814621916', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxMultiselectWithValueString.stories.tsx', - hash: '12249468363876146555', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxSize.stories.tsx', - hash: '5130255855723498846', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/ComboboxVirtualizer.stories.tsx', - hash: '12188006947587273256', - }, - { - file: 'packages/react-components/react-combobox/stories/Combobox/index.stories.tsx', - hash: '2631140498889026435', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownAccessibility.md', - hash: '4273687250426205790', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownAccessibility.stories.mdx', - hash: '9909411046506801934', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownAppearance.stories.tsx', - hash: '4084551238588706930', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownBestPractices.md', - hash: '10254108218710739116', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownComplexOptions.stories.tsx', - hash: '3922375352896055609', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownControlled.stories.tsx', - hash: '9427431566998959031', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownCustomOptions.stories.tsx', - hash: '15198432756208424589', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownDefault.stories.tsx', - hash: '13981062825270634122', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownDescription.md', - hash: '11457027239647719668', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownDisabled.stories.tsx', - hash: '11574745316902443091', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownGrouped.stories.tsx', - hash: '14312832856975740807', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownMultiselect.stories.tsx', - hash: '11055633430384623307', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/DropdownSize.stories.tsx', - hash: '11497543963552536578', - }, - { - file: 'packages/react-components/react-combobox/stories/Dropdown/index.stories.tsx', - hash: '210961802901619491', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-click.png', - hash: '12453121186810189264', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-collapsed.png', - hash: '10962727780164198655', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-hover.png', - hash: '10323365367312532038', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-key-select.png', - hash: '1567787049728258184', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-multiselection1.png', - hash: '6198988657172575792', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-multiselection2.png', - hash: '7045883760343802146', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-nav.png', - hash: '16470357799642190126', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-open.png', - hash: '17524257435370515355', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-option-hover.png', - hash: '5908223504128174873', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-selected-open.png', - hash: '6726587615125601571', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-semantics.png', - hash: '14939116960473785956', - }, - { - file: 'packages/react-components/react-combobox/stories/assets/Dropdown/dropdown-tabbing.png', - hash: '10541967115071968036', - }, - { file: 'packages/react-components/react-combobox/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-combobox/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-combobox/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-skeleton': [ - { file: 'packages/react-components/react-skeleton/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-skeleton/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-skeleton/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-skeleton/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-skeleton/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-skeleton/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-skeleton/CHANGELOG.json', hash: '679359539185323451' }, - { file: 'packages/react-components/react-skeleton/CHANGELOG.md', hash: '6334137216127598218' }, - { file: 'packages/react-components/react-skeleton/LICENSE', hash: '6250075351376405297' }, - { file: 'packages/react-components/react-skeleton/README.md', hash: '9945271824711735043' }, - { file: 'packages/react-components/react-skeleton/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-skeleton/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-skeleton/docs/Spec.md', hash: '13897816479466826881' }, - { file: 'packages/react-components/react-skeleton/etc/react-skeleton.api.md', hash: '12992069425819779816' }, - { file: 'packages/react-components/react-skeleton/jest.config.js', hash: '16818982385918863004' }, - { file: 'packages/react-components/react-skeleton/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-skeleton/package.json', - hash: '9881502438741616805', - deps: [ - '@fluentui/react-field', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-skeleton/project.json', hash: '6832058475924967679' }, - { file: 'packages/react-components/react-skeleton/src/Skeleton.ts', hash: '9461944777064965632' }, - { file: 'packages/react-components/react-skeleton/src/SkeletonItem.ts', hash: '665334022754508154' }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.test.tsx', - hash: '13394572200286725794', - }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.tsx', - hash: '18086715874337061343', - }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/Skeleton.types.ts', - hash: '13299571602345388126', - }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/__snapshots__/Skeleton.test.tsx.snap', - hash: '3334217445587362770', - }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/index.ts', - hash: '13841092410544054723', - }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/renderSkeleton.tsx', - hash: '7305045366474573892', - }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/useSkeleton.ts', - hash: '2740017611819742026', - }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/useSkeletonContextValues.ts', - hash: '11854161295718927797', - }, - { - file: 'packages/react-components/react-skeleton/src/components/Skeleton/useSkeletonStyles.ts', - hash: '6689079878448742591', - }, - { - file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.test.tsx', - hash: '4791116720155630220', - }, - { - file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.tsx', - hash: '13870262086932997147', - }, - { - file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/SkeletonItem.types.ts', - hash: '8046039834720139265', - }, - { - file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/__snapshots__/SkeletonItem.test.tsx.snap', - hash: '6578516573999757376', - }, - { - file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/index.ts', - hash: '6483213234680238457', - }, - { - file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/renderSkeletonItem.tsx', - hash: '770450448065870423', - }, - { - file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/useSkeletonItem.tsx', - hash: '7107674077111646501', - }, - { - file: 'packages/react-components/react-skeleton/src/components/SkeletonItem/useSkeletonItemStyles.styles.ts', - hash: '13609891270571949523', - }, - { file: 'packages/react-components/react-skeleton/src/contexts/SkeletonContext.ts', hash: '2682913424966864288' }, - { file: 'packages/react-components/react-skeleton/src/contexts/index.ts', hash: '1181885011368758139' }, - { file: 'packages/react-components/react-skeleton/src/index.ts', hash: '12430779751846790640' }, - { file: 'packages/react-components/react-skeleton/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonAnimation.stories.tsx', - hash: '1551141379498317756', - }, - { - file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonAppearance.stories.tsx', - hash: '3606600594729972921', - }, - { - file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonBestPractices.md', - hash: '647232277873355848', - }, - { - file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonDefault.stories.tsx', - hash: '4735990163474792631', - }, - { - file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonDescription.md', - hash: '4308074357904685784', - }, - { - file: 'packages/react-components/react-skeleton/stories/Skeleton/SkeletonRow.stories.tsx', - hash: '1889883679642715937', - }, - { - file: 'packages/react-components/react-skeleton/stories/Skeleton/index.stories.tsx', - hash: '3159015755476887438', - }, - { file: 'packages/react-components/react-skeleton/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-skeleton/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-skeleton/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-shared-contexts': [ - { file: 'packages/react-components/react-shared-contexts/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-shared-contexts/.eslintrc.json', hash: '2655957677577488347' }, - { file: 'packages/react-components/react-shared-contexts/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-shared-contexts/CHANGELOG.json', hash: '11450723176664332258' }, - { file: 'packages/react-components/react-shared-contexts/CHANGELOG.md', hash: '8041467250161143580' }, - { file: 'packages/react-components/react-shared-contexts/LICENSE', hash: '13088925295509647167' }, - { file: 'packages/react-components/react-shared-contexts/README.md', hash: '4751810605471065515' }, - { file: 'packages/react-components/react-shared-contexts/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-shared-contexts/config/tests.js', hash: '16913843724990866890' }, - { - file: 'packages/react-components/react-shared-contexts/etc/react-shared-contexts.api.md', - hash: '11556634729467213907', - }, - { file: 'packages/react-components/react-shared-contexts/jest.config.js', hash: '538613335903488751' }, - { file: 'packages/react-components/react-shared-contexts/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-shared-contexts/package.json', - hash: '13537722509734511610', - deps: [ - '@fluentui/react-theme', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-components/react-shared-contexts/project.json', hash: '5371634384165049691' }, - { - file: 'packages/react-components/react-shared-contexts/src/AnnounceContext/AnnounceContext.ts', - hash: '2101100231139745435', - }, - { - file: 'packages/react-components/react-shared-contexts/src/AnnounceContext/index.ts', - hash: '11793601976036868298', - }, - { - file: 'packages/react-components/react-shared-contexts/src/BackgroundAppearanceContext/BackgroundAppearanceContext.ts', - hash: '11073209310416173040', - }, - { - file: 'packages/react-components/react-shared-contexts/src/BackgroundAppearanceContext/index.ts', - hash: '4791795188203536339', - }, - { - file: 'packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/CustomStyleHooksContext.ts', - hash: '8144953372014138588', - }, - { - file: 'packages/react-components/react-shared-contexts/src/CustomStyleHooksContext/index.ts', - hash: '9912580371128432978', - }, - { - file: 'packages/react-components/react-shared-contexts/src/CustomStyleHooksContext.ts', - hash: '8242274099778806427', - }, - { - file: 'packages/react-components/react-shared-contexts/src/OverridesContext/OverridesContext.ts', - hash: '11500774440824693477', - }, - { - file: 'packages/react-components/react-shared-contexts/src/OverridesContext/index.ts', - hash: '11711806393149686484', - }, - { - file: 'packages/react-components/react-shared-contexts/src/PortalMountNodeContext.ts', - hash: '11399465082133766208', - }, - { - file: 'packages/react-components/react-shared-contexts/src/ProviderContext/ProviderContext.ts', - hash: '9227668728843902181', - }, - { - file: 'packages/react-components/react-shared-contexts/src/ProviderContext/index.ts', - hash: '7579138418481595432', - }, - { file: 'packages/react-components/react-shared-contexts/src/ProviderContext.ts', hash: '7037424765520462353' }, - { - file: 'packages/react-components/react-shared-contexts/src/ThemeClassNameContext/ThemeClassNameContext.ts', - hash: '3418753637748263121', - }, - { - file: 'packages/react-components/react-shared-contexts/src/ThemeClassNameContext/index.ts', - hash: '17327136154859927590', - }, - { - file: 'packages/react-components/react-shared-contexts/src/ThemeClassNameContext.ts', - hash: '16685286281086879188', - }, - { - file: 'packages/react-components/react-shared-contexts/src/ThemeContext/ThemeContext.ts', - hash: '17138251330974077870', - }, - { - file: 'packages/react-components/react-shared-contexts/src/ThemeContext/index.ts', - hash: '8055522461387744849', - }, - { file: 'packages/react-components/react-shared-contexts/src/ThemeContext.ts', hash: '5803292591144406153' }, - { - file: 'packages/react-components/react-shared-contexts/src/TooltipVisibilityContext/TooltipContext.ts', - hash: '6624600191869567184', - }, - { - file: 'packages/react-components/react-shared-contexts/src/TooltipVisibilityContext/index.ts', - hash: '17125185529833455986', - }, - { - file: 'packages/react-components/react-shared-contexts/src/TooltipVisibilityContext.ts', - hash: '6523660209536733373', - }, - { file: 'packages/react-components/react-shared-contexts/src/index.ts', hash: '9275468125053272462' }, - { file: 'packages/react-components/react-shared-contexts/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/react-shared-contexts/tsconfig.lib.json', hash: '14975475306433073951' }, - { file: 'packages/react-components/react-shared-contexts/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-storybook-addon': [ - { file: 'packages/react-components/react-storybook-addon/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-storybook-addon/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-storybook-addon/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-storybook-addon/.storybook/preview.js', hash: '1791378012295456991' }, - { - file: 'packages/react-components/react-storybook-addon/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-storybook-addon/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-storybook-addon/CHANGELOG.json', hash: '3474712915487995213' }, - { file: 'packages/react-components/react-storybook-addon/CHANGELOG.md', hash: '8184359278978525016' }, - { file: 'packages/react-components/react-storybook-addon/LICENSE', hash: '6669073305911860467' }, - { file: 'packages/react-components/react-storybook-addon/README.md', hash: '8064450981890936119' }, - { file: 'packages/react-components/react-storybook-addon/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-storybook-addon/config/tests.js', hash: '16913843724990866890' }, - { - file: 'packages/react-components/react-storybook-addon/etc/react-storybook-addon.api.md', - hash: '11258033129711696263', - }, - { file: 'packages/react-components/react-storybook-addon/jest.config.js', hash: '7521503279647251132' }, - { file: 'packages/react-components/react-storybook-addon/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-storybook-addon/package.json', - hash: '8384255895641764171', - deps: [ - '@fluentui/react-theme', - '@fluentui/react-provider', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:@storybook/addons', - 'npm:@storybook/api', - 'npm:@storybook/components', - 'npm:@storybook/core-events', - 'npm:@storybook/theming', - ], - }, - { file: 'packages/react-components/react-storybook-addon/preset.js', hash: '2087058436361447367' }, - { file: 'packages/react-components/react-storybook-addon/project.json', hash: '1682233284854212766' }, - { - file: 'packages/react-components/react-storybook-addon/src/components/ReactStrictMode.tsx', - hash: '1709717175354952452', - }, - { - file: 'packages/react-components/react-storybook-addon/src/components/ThemePicker.tsx', - hash: '3302378609426153071', - }, - { file: 'packages/react-components/react-storybook-addon/src/constants.ts', hash: '6964172751209884361' }, - { - file: 'packages/react-components/react-storybook-addon/src/decorators/withFluentProvider.tsx', - hash: '4816286417694522871', - }, - { - file: 'packages/react-components/react-storybook-addon/src/decorators/withReactStrictMode.tsx', - hash: '16425806883864595845', - }, - { file: 'packages/react-components/react-storybook-addon/src/hooks.ts', hash: '586825407018303425' }, - { file: 'packages/react-components/react-storybook-addon/src/index.ts', hash: '18114374399441569147' }, - { file: 'packages/react-components/react-storybook-addon/src/preset/manager.ts', hash: '13384330975042902281' }, - { file: 'packages/react-components/react-storybook-addon/src/preset/preview.ts', hash: '14589431869663794454' }, - { file: 'packages/react-components/react-storybook-addon/src/theme.ts', hash: '11652898211575247400' }, - { - file: 'packages/react-components/react-storybook-addon/stories/index.stories.tsx', - hash: '8107404018508303844', - }, - { file: 'packages/react-components/react-storybook-addon/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-storybook-addon/tsconfig.lib.json', hash: '2330431448937249608' }, - { file: 'packages/react-components/react-storybook-addon/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/cra-template': [ - { file: 'packages/cra-template/.eslintrc.json', hash: '13251576554014608349' }, - { file: 'packages/cra-template/CHANGELOG.json', hash: '1129702337645733471' }, - { file: 'packages/cra-template/CHANGELOG.md', hash: '5106358608425566554' }, - { file: 'packages/cra-template/LICENSE', hash: '1636749174329294352' }, - { file: 'packages/cra-template/README.md', hash: '6730490654183036004' }, - { - file: 'packages/cra-template/package.json', - hash: '3922138108394395761', - deps: ['@fluentui/react', '@fluentui/scripts-projects-test'], - }, - { file: 'packages/cra-template/project.json', hash: '17234406872818167309' }, - { file: 'packages/cra-template/scripts/test.ts', hash: '290681558778133128' }, - { file: 'packages/cra-template/template/LICENSE', hash: '8375661779484895636' }, - { file: 'packages/cra-template/template/README.md', hash: '6288567372830560670' }, - { file: 'packages/cra-template/template/gitignore', hash: '1381922197083867790' }, - { file: 'packages/cra-template/template/public/favicon.ico', hash: '2949791817221603359' }, - { file: 'packages/cra-template/template/public/index.html', hash: '6909331186721011181' }, - { file: 'packages/cra-template/template/public/manifest.json', hash: '14151889650470291185' }, - { file: 'packages/cra-template/template/src/App.css', hash: '16457583553712152214' }, - { file: 'packages/cra-template/template/src/App.test.tsx', hash: '1523758530738999894' }, - { file: 'packages/cra-template/template/src/App.tsx', hash: '17897325894100752891' }, - { file: 'packages/cra-template/template/src/index.css', hash: '11080820211780778568' }, - { file: 'packages/cra-template/template/src/index.tsx', hash: '272227226428571209' }, - { file: 'packages/cra-template/template/src/logo.svg', hash: '6417502148039611605' }, - { file: 'packages/cra-template/template/src/react-app-env.d.ts', hash: '4668673524524593686' }, - { file: 'packages/cra-template/template/src/reportWebVitals.ts', hash: '10503513403266688488' }, - { file: 'packages/cra-template/template/src/setupTests.ts', hash: '56515321623462775' }, - { file: 'packages/cra-template/template.json', hash: '860757225757618039' }, - { file: 'packages/cra-template/tsconfig.json', hash: '4217186867484741619' }, - ], - '@fluentui/react-image': [ - { file: 'packages/react-components/react-image/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-image/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-image/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-image/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-image/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-image/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-image/CHANGELOG.json', hash: '12972083916301177064' }, - { file: 'packages/react-components/react-image/CHANGELOG.md', hash: '3050448768160993159' }, - { file: 'packages/react-components/react-image/LICENSE', hash: '6217079007318333882' }, - { file: 'packages/react-components/react-image/README.md', hash: '1363519546262385559' }, - { file: 'packages/react-components/react-image/bundle-size/Image.fixture.js', hash: '16899974605924331648' }, - { file: 'packages/react-components/react-image/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-image/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-image/docs/MIGRATION.md', hash: '11324318193252804635' }, - { file: 'packages/react-components/react-image/docs/Spec.md', hash: '3759599989017744849' }, - { file: 'packages/react-components/react-image/etc/react-image.api.md', hash: '16047758325502523106' }, - { file: 'packages/react-components/react-image/jest.config.js', hash: '17059578713221881884' }, - { file: 'packages/react-components/react-image/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-image/package.json', - hash: '13785354620659825348', - deps: [ - '@fluentui/react-shared-contexts', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - '@fluentui/react-theme', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-image/project.json', hash: '14014664761946749721' }, - { file: 'packages/react-components/react-image/src/Image.ts', hash: '16464656776672641880' }, - { - file: 'packages/react-components/react-image/src/components/Image/Image.test.tsx', - hash: '12718530982841221568', - }, - { file: 'packages/react-components/react-image/src/components/Image/Image.tsx', hash: '5286392891935920670' }, - { file: 'packages/react-components/react-image/src/components/Image/Image.types.ts', hash: '109715587094993652' }, - { - file: 'packages/react-components/react-image/src/components/Image/__snapshots__/Image.test.tsx.snap', - hash: '16033528447138702018', - }, - { file: 'packages/react-components/react-image/src/components/Image/index.ts', hash: '3654391162566112964' }, - { - file: 'packages/react-components/react-image/src/components/Image/renderImage.tsx', - hash: '8704104212170780282', - }, - { file: 'packages/react-components/react-image/src/components/Image/useImage.ts', hash: '7614888159156795171' }, - { - file: 'packages/react-components/react-image/src/components/Image/useImageStyles.styles.ts', - hash: '5034345938613758190', - }, - { file: 'packages/react-components/react-image/src/index.ts', hash: '9024266930531352710' }, - { file: 'packages/react-components/react-image/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-image/stories/Image/ImageBestPractices.md', - hash: '12632277717522951694', - }, - { - file: 'packages/react-components/react-image/stories/Image/ImageBlock.stories.tsx', - hash: '11733438778682927144', - }, - { - file: 'packages/react-components/react-image/stories/Image/ImageBordered.stories.tsx', - hash: '18093213642290742067', - }, - { - file: 'packages/react-components/react-image/stories/Image/ImageDefault.stories.tsx', - hash: '15360143901742590023', - }, - { file: 'packages/react-components/react-image/stories/Image/ImageDescription.md', hash: '1568935439820178083' }, - { - file: 'packages/react-components/react-image/stories/Image/ImageFallback.stories.tsx', - hash: '5767623493687585505', - }, - { file: 'packages/react-components/react-image/stories/Image/ImageFit.stories.tsx', hash: '1094106785743098401' }, - { - file: 'packages/react-components/react-image/stories/Image/ImageShadow.stories.tsx', - hash: '11132081493084711018', - }, - { - file: 'packages/react-components/react-image/stories/Image/ImageShape.stories.tsx', - hash: '15738169211055779651', - }, - { file: 'packages/react-components/react-image/stories/Image/index.stories.tsx', hash: '809696348755387075' }, - { file: 'packages/react-components/react-image/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-image/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-image/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/babel-preset-global-context': [ - { file: 'packages/react-components/babel-preset-global-context/.babelrc.json', hash: '8174012058119950495' }, - { file: 'packages/react-components/babel-preset-global-context/.eslintrc.json', hash: '11018738359270224912' }, - { file: 'packages/react-components/babel-preset-global-context/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/babel-preset-global-context/CHANGELOG.json', hash: '5417064940796633011' }, - { file: 'packages/react-components/babel-preset-global-context/CHANGELOG.md', hash: '1179969149095187494' }, - { file: 'packages/react-components/babel-preset-global-context/LICENSE', hash: '14190649456716274433' }, - { file: 'packages/react-components/babel-preset-global-context/README.md', hash: '2765826339745082237' }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import/code.ts', - hash: '540836392442536101', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import/output.ts', - hash: '8855713537863264717', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import/package.json', - hash: '5845952152817567832', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/code.ts', - hash: '5755535872738424522', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/output.ts', - hash: '16344199303412147364', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/alias-import-context-selector/package.json', - hash: '5845952152817567832', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/call-expression/code.ts', - hash: '6457279347199086388', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/call-expression/output.ts', - hash: '18170017368785370515', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/call-expression/package.json', - hash: '5845952152817567832', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/context-selector/code.ts', - hash: '4212325560787905314', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/context-selector/output.ts', - hash: '13486019690859880148', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/context-selector/package.json', - hash: '5845952152817567832', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/member-expression/code.ts', - hash: '4301657457449045903', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/member-expression/output.ts', - hash: '2550115010040710680', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/member-expression/package.json', - hash: '2153100761834963628', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/code.ts', - hash: '11786811587042864195', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/output.ts', - hash: '17579592712235480589', - }, - { - file: 'packages/react-components/babel-preset-global-context/__fixtures__/native-and-context-selector/package.json', - hash: '5845952152817567832', - }, - { - file: 'packages/react-components/babel-preset-global-context/config/api-extractor.json', - hash: '124052868224837692', - }, - { file: 'packages/react-components/babel-preset-global-context/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/babel-preset-global-context/cypress.config.ts', hash: '13649228528803766538' }, - { - file: 'packages/react-components/babel-preset-global-context/etc/babel-preset-global-context.api.md', - hash: '12834843629459989830', - }, - { file: 'packages/react-components/babel-preset-global-context/jest.config.js', hash: '6273091954231700587' }, - { file: 'packages/react-components/babel-preset-global-context/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/babel-preset-global-context/package.json', - hash: '16706351104698363424', - deps: [ - 'npm:@babel/core', - 'npm:@babel/generator', - 'npm:@babel/helper-plugin-utils', - 'npm:@babel/template', - 'npm:@babel/traverse', - 'npm:@emotion/hash', - 'npm:@swc/helpers', - 'npm:find-up', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - '@fluentui/global-context', - ], - }, - { file: 'packages/react-components/babel-preset-global-context/project.json', hash: '3325210329699772171' }, - { file: 'packages/react-components/babel-preset-global-context/src/Test.cy.tsx', hash: '1050395668237072729' }, - { file: 'packages/react-components/babel-preset-global-context/src/constants.ts', hash: '1647429312599845483' }, - { file: 'packages/react-components/babel-preset-global-context/src/index.ts', hash: '11265352065572634989' }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.0.0/index.ts', - hash: '6805989268245995993', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.0.0/package.json', - hash: '7963718438922702732', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.1.0/index.ts', - hash: '8948839052546966835', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v1.1.0/package.json', - hash: '10943502151074734339', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v2.0.0/index.ts', - hash: '7358917093904128037', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/context-v2.0.0/package.json', - hash: '16359445692526088068', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.0.0/index.ts', - hash: '6303143986350152029', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.0.0/package.json', - hash: '17824096733509037060', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.1.0/index.ts', - hash: '5082100761918055252', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/testing/fake_node_modules/ignored-context-v1.1.0/package.json', - hash: '11003212486459360733', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/transformPlugin.test.ts', - hash: '13741100513004991440', - }, - { - file: 'packages/react-components/babel-preset-global-context/src/transformPlugin.ts', - hash: '15750846611983059767', - }, - { file: 'packages/react-components/babel-preset-global-context/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/babel-preset-global-context/tsconfig.json', hash: '5596071008249197618' }, - { file: 'packages/react-components/babel-preset-global-context/tsconfig.lib.json', hash: '3693653838336081970' }, - { file: 'packages/react-components/babel-preset-global-context/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/public-docsite': [ - { file: 'apps/public-docsite/.eslintrc.json', hash: '337673835369909864' }, - { file: 'apps/public-docsite/.markdownlint.json', hash: '3193456444247028636' }, - { file: 'apps/public-docsite/.npmignore', hash: '2926714820578262549' }, - { file: 'apps/public-docsite/.vscode/settings.json', hash: '18069303981834661546' }, - { file: 'apps/public-docsite/CHANGELOG.json', hash: '5555074616181483386' }, - { file: 'apps/public-docsite/CHANGELOG.md', hash: '14192424771490611728' }, - { file: 'apps/public-docsite/LICENSE', hash: '16915259497383323988' }, - { file: 'apps/public-docsite/README.md', hash: '3559688253950229776' }, - { file: 'apps/public-docsite/Third Party Notices.txt', hash: '14646301618710015874' }, - { file: 'apps/public-docsite/config/pre-copy.json', hash: '7054591292658078092' }, - { file: 'apps/public-docsite/just.config.ts', hash: '10393370776333958822' }, - { - file: 'apps/public-docsite/package.json', - hash: '9136041470273463055', - deps: [ - '@fluentui/font-icons-mdl2', - '@fluentui/public-docsite-resources', - '@fluentui/public-docsite-setup', - '@fluentui/react', - '@fluentui/react-docsite-components', - '@fluentui/react-examples', - '@fluentui/react-experiments', - '@fluentui/fluent2-theme', - '@fluentui/react-file-type-icons', - '@fluentui/react-icons-mdl2', - '@fluentui/react-icons-mdl2-branded', - '@fluentui/set-version', - '@fluentui/theme', - '@fluentui/theme-samples', - '@fluentui/utilities', - 'npm:@microsoft/load-themed-styles', - 'npm:office-ui-fabric-core', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - 'npm:whatwg-fetch', - '@fluentui/common-styles', - '@fluentui/eslint-plugin', - '@fluentui/react-monaco-editor', - 'npm:write-file-webpack-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'apps/public-docsite/project.json', hash: '7196581607791710012' }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/Controls.pages.tsx', - hash: '10145604053049751028', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/android.tsx', - hash: '17738143955260006201', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/cross.tsx', - hash: '1058502723279157309', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/index.ts', - hash: '6413192895410987168', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/ios.tsx', - hash: '7399549156069476958', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/mac.tsx', - hash: '16436402022180708284', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/web.tsx', - hash: '408483203285204310', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/webcomponents.tsx', - hash: '6792765439676230780', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Controls/windows.tsx', - hash: '12124107861870090256', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/GetStarted/GetStarted.pages.tsx', - hash: '13847506009956934136', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/GetStarted/index.ts', - hash: '7608958459492300262', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Resources/Resources.pages.tsx', - hash: '7467311968307614147', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Resources/index.ts', - hash: '11141788384203020155', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/Styles.pages.tsx', - hash: '3354179824228056507', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/index.ts', - hash: '9885949247618547411', - }, - { - file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/Styles/web.tsx', - hash: '13036525375730422403', - }, - { file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.pages/index.ts', hash: '15668129546048702595' }, - { file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.platforms.ts', hash: '4374814516883291103' }, - { file: 'apps/public-docsite/src/SiteDefinition/SiteDefinition.tsx', hash: '7416597600515030422' }, - { file: 'apps/public-docsite/src/SiteDefinition/index.ts', hash: '16170069659361476539' }, - { file: 'apps/public-docsite/src/components/IconGrid/IconGrid.module.scss', hash: '10088935074752784208' }, - { file: 'apps/public-docsite/src/components/IconGrid/IconGrid.tsx', hash: '3126832381939275604' }, - { file: 'apps/public-docsite/src/components/Nav/Nav.module.scss', hash: '17010202827328751810' }, - { file: 'apps/public-docsite/src/components/Nav/Nav.tsx', hash: '5895207924940259300' }, - { file: 'apps/public-docsite/src/components/Nav/index.ts', hash: '8845112648504599256' }, - { file: 'apps/public-docsite/src/components/PageHeader/PageHeader.ts', hash: '2023580731281621870' }, - { file: 'apps/public-docsite/src/components/Site/AppThemes.ts', hash: '8449132186114492836' }, - { file: 'apps/public-docsite/src/components/Site/Site.module.scss', hash: '1167611558215402625' }, - { file: 'apps/public-docsite/src/components/Site/Site.tsx', hash: '11712024304722443777' }, - { file: 'apps/public-docsite/src/components/Site/index.ts', hash: '4416097142125773802' }, - { file: 'apps/public-docsite/src/components/Table/Table.module.scss', hash: '2351390884860253930' }, - { file: 'apps/public-docsite/src/components/Table/Table.tsx', hash: '10981690018718548291' }, - { file: 'apps/public-docsite/src/data/colors-neutral.json', hash: '16653124453141777542' }, - { file: 'apps/public-docsite/src/data/colors-persona-groups.json', hash: '3616184185780250103' }, - { file: 'apps/public-docsite/src/data/colors-personas.json', hash: '2075722162646162911' }, - { file: 'apps/public-docsite/src/data/colors-shared.json', hash: '5294560336154413274' }, - { file: 'apps/public-docsite/src/data/colors-theme-accents.json', hash: '13906940430607557455' }, - { file: 'apps/public-docsite/src/data/colors-theme-neutrals.json', hash: '181167838507207900' }, - { file: 'apps/public-docsite/src/data/colors-theme-slots.json', hash: '17490638679045466346' }, - { file: 'apps/public-docsite/src/data/directional-icons.json', hash: '14304305003999879088' }, - { file: 'apps/public-docsite/src/data/layout-visibility.json', hash: '8022012966563745167' }, - { file: 'apps/public-docsite/src/data/localized-fonts.json', hash: '4593860147000401033' }, - { file: 'apps/public-docsite/src/data/product-icons-documents.json', hash: '17196664511062641524' }, - { file: 'apps/public-docsite/src/data/product-icons.json', hash: '14205424375330295192' }, - { file: 'apps/public-docsite/src/data/responsive-breakpoints.json', hash: '12157493310076411491' }, - { file: 'apps/public-docsite/src/interfaces/Platforms.ts', hash: '7456260135347758029' }, - { - file: 'apps/public-docsite/src/pages/Controls/ActivityItemPage/ActivityItemPage.doc.ts', - hash: '12084996801726727128', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ActivityItemPage/ActivityItemPage.tsx', - hash: '10525847806067360709', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedBulkOperationsPage.doc.ts', - hash: '765722563957421787', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedBulkOperationsPage.tsx', - hash: '193322179625131144', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedLazyLoadingPage.doc.ts', - hash: '15566486176498941210', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedLazyLoadingPage.tsx', - hash: '17777911651455362870', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedPage.doc.ts', - hash: '15674441994070588327', - }, - { file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedPage.tsx', hash: '8232552932583924532' }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedQuickActionsPage.doc.ts', - hash: '15362780660373157918', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedQuickActionsPage.tsx', - hash: '12352004516650637228', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedSearchResultsPage.doc.ts', - hash: '16198598794387830431', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AnnouncedPage/AnnouncedSearchResultsPage.tsx', - hash: '5328511635142039063', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AreaChartPage/AreaChartPage.doc.ts', - hash: '6722728441282287493', - }, - { file: 'apps/public-docsite/src/pages/Controls/AreaChartPage/AreaChartPage.tsx', hash: '8859288386603113959' }, - { file: 'apps/public-docsite/src/pages/Controls/AvatarPage/AvatarPage.doc.ts', hash: '12515277458764441324' }, - { file: 'apps/public-docsite/src/pages/Controls/AvatarPage/AvatarPage.tsx', hash: '9083556730732774728' }, - { - file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/android/AvatarImplementation.md', - hash: '16726958883259254492', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/android/AvatarOverview.md', - hash: '2647093289656117320', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/ios/AvatarImplementation.md', - hash: '17606495654142164819', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/ios/AvatarOverview.md', - hash: '18186034623443237973', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarImplementation.md', - hash: '5199120976977691610', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarOverview.md', - hash: '6959005975866544522', - }, - { - file: 'apps/public-docsite/src/pages/Controls/AvatarPage/docs/mac/AvatarUsage.md', - hash: '11821820304812674613', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/BottomNavigationPage.doc.ts', - hash: '15569579807820313583', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/BottomNavigationPage.tsx', - hash: '8488861682256094075', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/android/BottomNavigationImplementation.md', - hash: '1435366324864337035', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/android/BottomNavigationOverview.md', - hash: '10514823264895514315', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/ios/BottomNavigationImplementation.md', - hash: '18025927293153857052', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomNavigationPage/docs/ios/BottomNavigationOverview.md', - hash: '2617859208595378528', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomSheetPage/BottomSheetPage.doc.ts', - hash: '9673062355771995912', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomSheetPage/BottomSheetPage.tsx', - hash: '2031437537765094207', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomSheetPage/docs/android/BottomSheetImplementation.md', - hash: '1327623026650085087', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BottomSheetPage/docs/android/BottomSheetOverview.md', - hash: '13377435451580553570', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BreadcrumbPage/BreadcrumbPage.doc.ts', - hash: '1160032916934762643', - }, - { - file: 'apps/public-docsite/src/pages/Controls/BreadcrumbPage/BreadcrumbPage.tsx', - hash: '12715444766885574444', - }, - { file: 'apps/public-docsite/src/pages/Controls/ButtonPage/ButtonPage.doc.ts', hash: '5592476238467391864' }, - { file: 'apps/public-docsite/src/pages/Controls/ButtonPage/ButtonPage.tsx', hash: '11913245284362943875' }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/android/ButtonImplementation.md', - hash: '1658627094040539265', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/android/ButtonOverview.md', - hash: '4417937612509791357', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonImplementation.md', - hash: '14266053475926286467', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonOverview.md', - hash: '6639038237332629321', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/cross/ButtonUsage.md', - hash: '8882723746766233591', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/ios/ButtonImplementation.md', - hash: '9913277924895889569', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/ios/ButtonOverview.md', - hash: '14531658870536079463', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonImplementation.md', - hash: '17284353348286665677', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonOverview.md', - hash: '13523925454607623553', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/mac/ButtonUsage.md', - hash: '13729646828336872891', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonImplementation.md', - hash: '10916114615457699893', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonOverview.md', - hash: '6639038237332629321', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ButtonPage/docs/windows/ButtonUsage.md', - hash: '1439538779926957798', - }, - { file: 'apps/public-docsite/src/pages/Controls/CalendarPage/CalendarPage.doc.ts', hash: '15404698135211720064' }, - { file: 'apps/public-docsite/src/pages/Controls/CalendarPage/CalendarPage.tsx', hash: '733924089141682023' }, - { - file: 'apps/public-docsite/src/pages/Controls/CalendarPage/docs/android/CalendarImplementation.md', - hash: '4860285518777187466', - }, - { - file: 'apps/public-docsite/src/pages/Controls/CalendarPage/docs/android/CalendarOverview.md', - hash: '5705143573515914746', - }, - { file: 'apps/public-docsite/src/pages/Controls/CalloutPage/CalloutPage.doc.ts', hash: '17209687824658981404' }, - { file: 'apps/public-docsite/src/pages/Controls/CalloutPage/CalloutPage.tsx', hash: '4954896427572159163' }, - { file: 'apps/public-docsite/src/pages/Controls/CheckboxPage/CheckboxPage.doc.ts', hash: '17682692614187019453' }, - { file: 'apps/public-docsite/src/pages/Controls/CheckboxPage/CheckboxPage.tsx', hash: '15199835598879362142' }, - { file: 'apps/public-docsite/src/pages/Controls/ChipPage/ChipPage.doc.ts', hash: '9154869513355420399' }, - { file: 'apps/public-docsite/src/pages/Controls/ChipPage/ChipPage.tsx', hash: '981184700842655718' }, - { - file: 'apps/public-docsite/src/pages/Controls/ChipPage/docs/android/ChipImplementation.md', - hash: '14417461789034157394', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ChipPage/docs/android/ChipOverview.md', - hash: '1523854707197205553', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ChipPage/docs/ios/ChipImplementation.md', - hash: '11470797543630326488', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ChipPage/docs/ios/ChipOverview.md', - hash: '11319279887742645925', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ChoiceGroupPage/ChoiceGroupPage.doc.ts', - hash: '7647967381634329619', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ChoiceGroupPage/ChoiceGroupPage.tsx', - hash: '16877181384541805954', - }, - { - file: 'apps/public-docsite/src/pages/Controls/CoachmarkPage/CoachmarkPage.doc.ts', - hash: '14163935830576365816', - }, - { file: 'apps/public-docsite/src/pages/Controls/CoachmarkPage/CoachmarkPage.tsx', hash: '8670254362732558332' }, - { - file: 'apps/public-docsite/src/pages/Controls/ColorPickerPage/ColorPickerPage.doc.ts', - hash: '9648425641137727669', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ColorPickerPage/ColorPickerPage.tsx', - hash: '1953534517712852428', - }, - { file: 'apps/public-docsite/src/pages/Controls/ComboBoxPage/ComboBoxPage.doc.ts', hash: '17894563094905674110' }, - { file: 'apps/public-docsite/src/pages/Controls/ComboBoxPage/ComboBoxPage.tsx', hash: '15755905243024863031' }, - { - file: 'apps/public-docsite/src/pages/Controls/CommandBarPage/CommandBarPage.doc.ts', - hash: '10705841520651205980', - }, - { - file: 'apps/public-docsite/src/pages/Controls/CommandBarPage/CommandBarPage.tsx', - hash: '16602894129752653191', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ContextualMenuPage/ContextualMenuPage.doc.ts', - hash: '17593522149548888502', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ContextualMenuPage/ContextualMenuPage.tsx', - hash: '13424275747858799542', - }, - { file: 'apps/public-docsite/src/pages/Controls/ControlsAreaPage.tsx', hash: '9958449542131719090' }, - { - file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/DatePickerPage.doc.ts', - hash: '3993601356330496007', - }, - { file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/DatePickerPage.tsx', hash: '1723921104985000544' }, - { - file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/android/DateTimePickerImplementation.md', - hash: '4345043770986870496', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/android/DateTimePickerOverview.md', - hash: '11120022423482682019', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/ios/DateTimePickerImplementation.md', - hash: '14053008236220258161', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/ios/DateTimePickerOverview.md', - hash: '4486063773040028910', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerImplementation.md', - hash: '4082356119249858996', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerOverview.md', - hash: '15042893916627662031', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DatePickerPage/docs/mac/DatePickerUsage.md', - hash: '17536202668797782112', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAdvancedPage.doc.ts', - hash: '13724797365802926226', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAdvancedPage.tsx', - hash: '8378129203862067121', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAnimationPage.doc.ts', - hash: '273818136230702976', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListAnimationPage.tsx', - hash: '6670837662453517114', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListBasicPage.doc.ts', - hash: '1442216069029798172', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListBasicPage.tsx', - hash: '4221366272271259902', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCompactPage.doc.ts', - hash: '6232054459873438925', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCompactPage.tsx', - hash: '18182423396708136557', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomColumnsPage.doc.ts', - hash: '15223218059571854467', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomColumnsPage.tsx', - hash: '12996021462166043167', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomFooterPage.doc.ts', - hash: '10919167593613811146', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomFooterPage.tsx', - hash: '7518356388618202761', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomGroupHeadersPage.doc.ts', - hash: '17610097000352036009', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomGroupHeadersPage.tsx', - hash: '15389447506854098798', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomRowsPage.doc.ts', - hash: '11557821808808553995', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListCustomRowsPage.tsx', - hash: '17778521908305216176', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListDragDropPage.doc.ts', - hash: '15376862959987969006', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListDragDropPage.tsx', - hash: '13925969251211828899', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedPage.doc.ts', - hash: '5039276744638943818', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedPage.tsx', - hash: '13234611186431244970', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedV2Page.doc.ts', - hash: '14584174087660249527', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListGroupedV2Page.tsx', - hash: '7869708837554642335', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardDragDropPage.doc.ts', - hash: '10248465266551079389', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardDragDropPage.tsx', - hash: '7771372193160661271', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardOverrides.doc.ts', - hash: '13903439600356956947', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListKeyboardOverridesPage.tsx', - hash: '13769261388459893054', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedPage.doc.ts', - hash: '7589110390501473746', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedPage.tsx', - hash: '16649160011157063345', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedV2Page.doc.ts', - hash: '15039681966980186456', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListLargeGroupedV2Page.tsx', - hash: '5613915619387420589', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListNavigatingFocusPage.doc.ts', - hash: '10978504225563324314', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListNavigatingFocusPage.tsx', - hash: '18444419229465588680', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListPage.doc.ts', - hash: '13633038424697591891', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListPage.tsx', - hash: '5795984366319231084', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListProportionalColumnsPage.doc.ts', - hash: '13880518862320453327', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListProportionalColumnsPage.tsx', - hash: '5728239731010542367', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListScrollToIndexGroupedV2Page.doc.ts', - hash: '13772461902671039983', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListScrollToIndexGroupedV2Page.tsx', - hash: '751985772745896294', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListShimmerPage.doc.ts', - hash: '16886325733296036163', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DetailsListPage/DetailsListShimmerPage.tsx', - hash: '17986580787370038200', - }, - { file: 'apps/public-docsite/src/pages/Controls/DialogPage/DialogPage.doc.ts', hash: '8114424727878114054' }, - { file: 'apps/public-docsite/src/pages/Controls/DialogPage/DialogPage.tsx', hash: '16571889001557518810' }, - { - file: 'apps/public-docsite/src/pages/Controls/DocumentCardPage/DocumentCardPage.doc.ts', - hash: '5798884632274572457', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DocumentCardPage/DocumentCardPage.tsx', - hash: '14114745195456671394', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DonutChartPage/DonutChartPage.doc.ts', - hash: '9925495805804097607', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DonutChartPage/DonutChartPage.tsx', - hash: '13140207290823243844', - }, - { file: 'apps/public-docsite/src/pages/Controls/DrawerPage/DrawerPage.doc.ts', hash: '8809379390024773173' }, - { file: 'apps/public-docsite/src/pages/Controls/DrawerPage/DrawerPage.tsx', hash: '7007852614279864723' }, - { - file: 'apps/public-docsite/src/pages/Controls/DrawerPage/docs/android/DrawerImplementation.md', - hash: '17858680396931236249', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DrawerPage/docs/android/DrawerOverview.md', - hash: '11716337942532244924', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DrawerPage/docs/ios/DrawerImplementation.md', - hash: '11983059621422817768', - }, - { - file: 'apps/public-docsite/src/pages/Controls/DrawerPage/docs/ios/DrawerOverview.md', - hash: '5111313044522355867', - }, - { file: 'apps/public-docsite/src/pages/Controls/DropdownPage/DropdownPage.doc.ts', hash: '9046898387726582968' }, - { file: 'apps/public-docsite/src/pages/Controls/DropdownPage/DropdownPage.tsx', hash: '4993205477226125515' }, - { file: 'apps/public-docsite/src/pages/Controls/FacepilePage/FacepilePage.doc.ts', hash: '11140776998441194718' }, - { file: 'apps/public-docsite/src/pages/Controls/FacepilePage/FacepilePage.tsx', hash: '14403058980587352582' }, - { - file: 'apps/public-docsite/src/pages/Controls/FocusTrapZonePage/FocusTrapZonePage.doc.ts', - hash: '17285560986103134198', - }, - { - file: 'apps/public-docsite/src/pages/Controls/FocusTrapZonePage/FocusTrapZonePage.tsx', - hash: '8686318644067342747', - }, - { - file: 'apps/public-docsite/src/pages/Controls/FocusZonePage/FocusZonePage.doc.ts', - hash: '11651121915621513982', - }, - { file: 'apps/public-docsite/src/pages/Controls/FocusZonePage/FocusZonePage.tsx', hash: '5773578364287739971' }, - { - file: 'apps/public-docsite/src/pages/Controls/GaugeChartPage/GaugeChartPage.doc.ts', - hash: '6968035975342074349', - }, - { - file: 'apps/public-docsite/src/pages/Controls/GaugeChartPage/GaugeChartPage.tsx', - hash: '15615937935738864018', - }, - { - file: 'apps/public-docsite/src/pages/Controls/GroupedListPage/GroupedListPage.doc.ts', - hash: '7967128270511032399', - }, - { - file: 'apps/public-docsite/src/pages/Controls/GroupedListPage/GroupedListPage.tsx', - hash: '703544659258297209', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HeatMapChartPage/HeatMapChartPage.doc.ts', - hash: '18432271012134230268', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HeatMapChartPage/HeatMapChartPage.tsx', - hash: '1325089474077311913', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartPage.doc.ts', - hash: '12161394458131890595', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartPage.tsx', - hash: '12506076174393262754', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartWithAxisPage.doc.ts', - hash: '10690241468891464352', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/HorizontalBarChartWithAxisPage.tsx', - hash: '2086325801396426601', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/MultiStackedBarChartPage.doc.ts', - hash: '18349688674284806158', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/MultiStackedBarChartPage.tsx', - hash: '4440166238265478633', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/StackedBarChartPage.doc.ts', - hash: '2223329163564677843', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HorizontalBarChartPage/StackedBarChartPage.tsx', - hash: '14809007092545647863', - }, - { - file: 'apps/public-docsite/src/pages/Controls/HoverCardPage/HoverCardPage.doc.ts', - hash: '2636562850252085917', - }, - { file: 'apps/public-docsite/src/pages/Controls/HoverCardPage/HoverCardPage.tsx', hash: '13868840759782232781' }, - { file: 'apps/public-docsite/src/pages/Controls/IconPage/IconPage.doc.ts', hash: '14320589840826195768' }, - { file: 'apps/public-docsite/src/pages/Controls/IconPage/IconPage.tsx', hash: '64311493418413559' }, - { file: 'apps/public-docsite/src/pages/Controls/ImagePage/ImagePage.doc.ts', hash: '7988651808500005441' }, - { file: 'apps/public-docsite/src/pages/Controls/ImagePage/ImagePage.tsx', hash: '11931915285603305728' }, - { file: 'apps/public-docsite/src/pages/Controls/KeytipsPage/KeytipsPage.doc.ts', hash: '18207607363175849480' }, - { file: 'apps/public-docsite/src/pages/Controls/KeytipsPage/KeytipsPage.tsx', hash: '6670239696591483784' }, - { file: 'apps/public-docsite/src/pages/Controls/LabelPage/LabelPage.doc.ts', hash: '12862325935849575873' }, - { file: 'apps/public-docsite/src/pages/Controls/LabelPage/LabelPage.tsx', hash: '1362646498263943376' }, - { file: 'apps/public-docsite/src/pages/Controls/LayerPage/LayerPage.doc.ts', hash: '13150585050034998454' }, - { file: 'apps/public-docsite/src/pages/Controls/LayerPage/LayerPage.tsx', hash: '15712879744679708674' }, - { file: 'apps/public-docsite/src/pages/Controls/LegendsPage/LegendsPage.doc.ts', hash: '13025909135398732412' }, - { file: 'apps/public-docsite/src/pages/Controls/LegendsPage/LegendsPage.tsx', hash: '3594589130378637610' }, - { - file: 'apps/public-docsite/src/pages/Controls/LineChartPage/LineChartPage.doc.ts', - hash: '8123770768122993985', - }, - { file: 'apps/public-docsite/src/pages/Controls/LineChartPage/LineChartPage.tsx', hash: '9907654634238606126' }, - { file: 'apps/public-docsite/src/pages/Controls/LinkPage/LinkPage.doc.ts', hash: '13092967827659090455' }, - { file: 'apps/public-docsite/src/pages/Controls/LinkPage/LinkPage.tsx', hash: '17634813694797845520' }, - { - file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkImplementation.md', - hash: '17106399576572784288', - }, - { - file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkOverview.md', - hash: '14935792960205653974', - }, - { file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/cross/LinkUsage.md', hash: '574308995351374939' }, - { - file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkImplementation.md', - hash: '9700325112175340981', - }, - { - file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkOverview.md', - hash: '14051902312080603746', - }, - { file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/mac/LinkUsage.md', hash: '2205135936392778140' }, - { - file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkImplementation.md', - hash: '11016907395505236155', - }, - { - file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkOverview.md', - hash: '14935792960205653974', - }, - { - file: 'apps/public-docsite/src/pages/Controls/LinkPage/docs/windows/LinkUsage.md', - hash: '12676870463584061993', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/ListCellsPage.doc.ts', - hash: '11180251346063450202', - }, - { file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/ListCellsPage.tsx', hash: '2988382794666245470' }, - { - file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/docs/android/ListCellsImplementation.md', - hash: '17993162330760725826', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/docs/android/ListCellsOverview.md', - hash: '179484507631924202', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/docs/ios/ListCellsImplementation.md', - hash: '17351970042206748282', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ListCellsPage/docs/ios/ListCellsOverview.md', - hash: '3442453361108839689', - }, - { file: 'apps/public-docsite/src/pages/Controls/ListPage/ListPage.doc.ts', hash: '2301015653585082199' }, - { file: 'apps/public-docsite/src/pages/Controls/ListPage/ListPage.tsx', hash: '5736725840541138556' }, - { - file: 'apps/public-docsite/src/pages/Controls/MarqueeSelectionPage/MarqueeSelectionPage.doc.ts', - hash: '16568125096922152773', - }, - { - file: 'apps/public-docsite/src/pages/Controls/MarqueeSelectionPage/MarqueeSelectionPage.tsx', - hash: '9351457843573166754', - }, - { - file: 'apps/public-docsite/src/pages/Controls/MessageBarPage/MessageBarPage.doc.ts', - hash: '10642099967354842490', - }, - { file: 'apps/public-docsite/src/pages/Controls/MessageBarPage/MessageBarPage.tsx', hash: '7371696166946877741' }, - { - file: 'apps/public-docsite/src/pages/Controls/MessageBarPage/docs/ios/MessageBarImplementation.md', - hash: '9135534442852614741', - }, - { - file: 'apps/public-docsite/src/pages/Controls/MessageBarPage/docs/ios/MessageBarOverview.md', - hash: '16816993281554800685', - }, - { file: 'apps/public-docsite/src/pages/Controls/ModalPage/ModalPage.doc.ts', hash: '14953419698933388913' }, - { file: 'apps/public-docsite/src/pages/Controls/ModalPage/ModalPage.tsx', hash: '9565379238246035586' }, - { file: 'apps/public-docsite/src/pages/Controls/NavBarPage/NavBarPage.doc.ts', hash: '10719528931963184631' }, - { file: 'apps/public-docsite/src/pages/Controls/NavBarPage/NavBarPage.tsx', hash: '10936268848263953483' }, - { - file: 'apps/public-docsite/src/pages/Controls/NavBarPage/docs/android/NavBarImplementation.md', - hash: '1783050725314136794', - }, - { - file: 'apps/public-docsite/src/pages/Controls/NavBarPage/docs/android/NavBarOverview.md', - hash: '7625782876387635132', - }, - { - file: 'apps/public-docsite/src/pages/Controls/NavBarPage/docs/ios/NavBarImplementation.md', - hash: '982664057702071391', - }, - { - file: 'apps/public-docsite/src/pages/Controls/NavBarPage/docs/ios/NavBarOverview.md', - hash: '4333661315575739487', - }, - { file: 'apps/public-docsite/src/pages/Controls/NavPage/NavPage.doc.ts', hash: '16485914742907636236' }, - { file: 'apps/public-docsite/src/pages/Controls/NavPage/NavPage.tsx', hash: '10147833889521608864' }, - { - file: 'apps/public-docsite/src/pages/Controls/OverflowSetPage/OverflowSetPage.doc.ts', - hash: '430419847824661530', - }, - { - file: 'apps/public-docsite/src/pages/Controls/OverflowSetPage/OverflowSetPage.tsx', - hash: '8723062280124814020', - }, - { file: 'apps/public-docsite/src/pages/Controls/OverlayPage/OverlayPage.doc.ts', hash: '7152352627564917321' }, - { file: 'apps/public-docsite/src/pages/Controls/OverlayPage/OverlayPage.tsx', hash: '8099233458936522353' }, - { file: 'apps/public-docsite/src/pages/Controls/PanelPage/PanelPage.doc.ts', hash: '12944203394740296953' }, - { file: 'apps/public-docsite/src/pages/Controls/PanelPage/PanelPage.tsx', hash: '15825828482154862989' }, - { - file: 'apps/public-docsite/src/pages/Controls/PeoplePickerPage/PeoplePickerPage.doc.ts', - hash: '2300266927767413033', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PeoplePickerPage/PeoplePickerPage.tsx', - hash: '16377269163422996503', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PeoplePickerPage/docs/android/PeoplePickerImplementation.md', - hash: '17195704506742427669', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PeoplePickerPage/docs/android/PeoplePickerOverview.md', - hash: '11396020997468636727', - }, - { file: 'apps/public-docsite/src/pages/Controls/PersonaPage/PersonaPage.doc.ts', hash: '16810002338180568264' }, - { file: 'apps/public-docsite/src/pages/Controls/PersonaPage/PersonaPage.tsx', hash: '3845501556021269696' }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/android/PersonaImplementation.md', - hash: '9137167883852598922', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/android/PersonaOverview.md', - hash: '9940780276971069007', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaImplementation.md', - hash: '4174781638758350021', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaOverview.md', - hash: '13949429323385095957', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/cross/PersonaUsage.md', - hash: '11952547679957023592', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaDonts.md', - hash: '13591587715632279480', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaDos.md', - hash: '7471256642317270680', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaImplementation.md', - hash: '7814508756737995088', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PersonaPage/docs/ios/PersonaOverview.md', - hash: '17809409197730676625', - }, - { file: 'apps/public-docsite/src/pages/Controls/PickersPage/PickersPage.doc.ts', hash: '3574709739493425796' }, - { file: 'apps/public-docsite/src/pages/Controls/PickersPage/PickersPage.tsx', hash: '1072062355713612559' }, - { file: 'apps/public-docsite/src/pages/Controls/PieChartPage/PieChartPage.doc.ts', hash: '8610861634097736947' }, - { file: 'apps/public-docsite/src/pages/Controls/PieChartPage/PieChartPage.tsx', hash: '17628955712828535439' }, - { - file: 'apps/public-docsite/src/pages/Controls/PillButtonBarPage/PillButtonBarPage.doc.ts', - hash: '9959120100527712235', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PillButtonBarPage/PillButtonBarPage.tsx', - hash: '3511437485944024034', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PillButtonBarPage/docs/ios/PillButtonBarImplementation.md', - hash: '8164387113171008361', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PillButtonBarPage/docs/ios/PillButtonBarOverview.md', - hash: '1311771358032116984', - }, - { file: 'apps/public-docsite/src/pages/Controls/PivotPage/PivotPage.doc.ts', hash: '12797279737032918886' }, - { file: 'apps/public-docsite/src/pages/Controls/PivotPage/PivotPage.tsx', hash: '15299694073578426860' }, - { - file: 'apps/public-docsite/src/pages/Controls/PivotPage/docs/ios/PivotImplementation.md', - hash: '4427576342081942127', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PivotPage/docs/ios/PivotOverview.md', - hash: '11302721871784110641', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/PopupMenuPage.doc.ts', - hash: '5617733850255104610', - }, - { file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/PopupMenuPage.tsx', hash: '9794250830285127360' }, - { - file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/android/PopupMenuImplementation.md', - hash: '5020177404051028794', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/android/PopupMenuOverview.md', - hash: '7290210998594527902', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/ios/PopupMenuImplementation.md', - hash: '2743838143178393759', - }, - { - file: 'apps/public-docsite/src/pages/Controls/PopupMenuPage/docs/ios/PopupMenuOverview.md', - hash: '2323001488577540827', - }, - { file: 'apps/public-docsite/src/pages/Controls/PopupPage/PopupPage.doc.ts', hash: '17816142309948511850' }, - { file: 'apps/public-docsite/src/pages/Controls/PopupPage/PopupPage.tsx', hash: '14142913708830808491' }, - { - file: 'apps/public-docsite/src/pages/Controls/ProgressIndicatorPage/ProgressIndicatorPage.doc.ts', - hash: '15168136959043150323', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ProgressIndicatorPage/ProgressIndicatorPage.tsx', - hash: '16828944186777538232', - }, - { file: 'apps/public-docsite/src/pages/Controls/RatingPage/RatingPage.doc.ts', hash: '15930522879045080288' }, - { file: 'apps/public-docsite/src/pages/Controls/RatingPage/RatingPage.tsx', hash: '17430307553838477372' }, - { - file: 'apps/public-docsite/src/pages/Controls/ResizeGroupPage/ResizeGroupPage.doc.ts', - hash: '12453097290421274476', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ResizeGroupPage/ResizeGroupPage.tsx', - hash: '12724627887686361752', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SankeyChartPage/SankeyChartPage.doc.ts', - hash: '4714530689649545039', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SankeyChartPage/SankeyChartPage.tsx', - hash: '7367984007280521841', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ScrollablePanePage/ScrollablePanePage.doc.ts', - hash: '10517815238812573514', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ScrollablePanePage/ScrollablePanePage.tsx', - hash: '3794982073534288445', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SearchBoxPage/SearchBoxPage.doc.ts', - hash: '3109877617295800527', - }, - { file: 'apps/public-docsite/src/pages/Controls/SearchBoxPage/SearchBoxPage.tsx', hash: '12119673235668910121' }, - { - file: 'apps/public-docsite/src/pages/Controls/SelectionPage/SelectionPage.doc.ts', - hash: '4064413911248877629', - }, - { file: 'apps/public-docsite/src/pages/Controls/SelectionPage/SelectionPage.tsx', hash: '16645407528859551007' }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/SeparatorPage.doc.ts', - hash: '1869624805197331867', - }, - { file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/SeparatorPage.tsx', hash: '16530346594627497113' }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/android/SeparatorImplementation.md', - hash: '12050467316544862538', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/android/SeparatorOverview.md', - hash: '3262490832239817243', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorImplementation.md', - hash: '12735278674009299795', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorOverview.md', - hash: '1638982018715209032', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/cross/SeparatorUsage.md', - hash: '6447265103101755700', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/ios/SeparatorImplementation.md', - hash: '385144131002868470', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/ios/SeparatorOverview.md', - hash: '6917827556785225902', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorImplementation.md', - hash: '11121036677182941869', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorOverview.md', - hash: '14689844598752795287', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SeparatorPage/docs/mac/SeparatorUsage.md', - hash: '3022219560847233209', - }, - { file: 'apps/public-docsite/src/pages/Controls/ShimmerPage/ShimmerPage.doc.ts', hash: '4599512040229497021' }, - { file: 'apps/public-docsite/src/pages/Controls/ShimmerPage/ShimmerPage.tsx', hash: '878300177551071679' }, - { - file: 'apps/public-docsite/src/pages/Controls/ShimmerPage/docs/ios/ShimmerImplementation.md', - hash: '15492298048019929155', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ShimmerPage/docs/ios/ShimmerOverview.md', - hash: '8414580170604108926', - }, - { file: 'apps/public-docsite/src/pages/Controls/SliderPage/SliderPage.doc.ts', hash: '8834532409719588553' }, - { file: 'apps/public-docsite/src/pages/Controls/SliderPage/SliderPage.tsx', hash: '14698906948989490334' }, - { file: 'apps/public-docsite/src/pages/Controls/SnackbarPage/SnackbarPage.doc.ts', hash: '15438585596944920328' }, - { file: 'apps/public-docsite/src/pages/Controls/SnackbarPage/SnackbarPage.tsx', hash: '1654437770309584305' }, - { - file: 'apps/public-docsite/src/pages/Controls/SnackbarPage/docs/android/SnackbarImplementation.md', - hash: '17388804743906070461', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SnackbarPage/docs/android/SnackbarOverview.md', - hash: '11312290812971405184', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SparklineChartPage/SparklineChartPage.doc.ts', - hash: '7943019505043975866', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SparklineChartPage/SparklineChartPage.tsx', - hash: '4869292233657636749', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SpinButtonPage/SpinButtonPage.doc.ts', - hash: '1286261109085750776', - }, - { file: 'apps/public-docsite/src/pages/Controls/SpinButtonPage/SpinButtonPage.tsx', hash: '9268993758022694057' }, - { file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/SpinnerPage.doc.ts', hash: '1896652091488762683' }, - { file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/SpinnerPage.tsx', hash: '9394631982953595234' }, - { - file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/docs/android/SpinnerImplementation.md', - hash: '10118420338312992410', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/docs/android/SpinnerOverview.md', - hash: '18348680623727412435', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/docs/ios/SpinnerImplementation.md', - hash: '13216727849992575340', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SpinnerPage/docs/ios/SpinnerOverview.md', - hash: '529524600353268627', - }, - { file: 'apps/public-docsite/src/pages/Controls/StackPage/StackPage.doc.ts', hash: '4896656422620049208' }, - { file: 'apps/public-docsite/src/pages/Controls/StackPage/StackPage.tsx', hash: '1396217349101542509' }, - { - file: 'apps/public-docsite/src/pages/Controls/SwatchColorPickerPage/SwatchColorPickerPage.doc.ts', - hash: '8742501851320362146', - }, - { - file: 'apps/public-docsite/src/pages/Controls/SwatchColorPickerPage/SwatchColorPickerPage.tsx', - hash: '4210928475728699833', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TeachingBubblePage/TeachingBubblePage.doc.ts', - hash: '11210860060788798223', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TeachingBubblePage/TeachingBubblePage.tsx', - hash: '13265818964473803315', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TextFieldPage/TextFieldPage.doc.ts', - hash: '16844169516739817994', - }, - { file: 'apps/public-docsite/src/pages/Controls/TextFieldPage/TextFieldPage.tsx', hash: '1449781130504185070' }, - { file: 'apps/public-docsite/src/pages/Controls/TextPage/TextPage.doc.ts', hash: '14795579619725173204' }, - { file: 'apps/public-docsite/src/pages/Controls/TextPage/TextPage.tsx', hash: '6444362485742213388' }, - { - file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/android/TextImplementation.md', - hash: '6925117502959094792', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/android/TextOverview.md', - hash: '9300573456933043605', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextImplementation.md', - hash: '14482685637634165402', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextOverview.md', - hash: '9847077317112859434', - }, - { file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/cross/TextUsage.md', hash: '10221235043224874219' }, - { - file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/ios/TextImplementation.md', - hash: '4487517554098015359', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TextPage/docs/ios/TextOverview.md', - hash: '17732920760835217296', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ThemeProviderPage/ThemeProviderPage.doc.ts', - hash: '10132739553311476432', - }, - { - file: 'apps/public-docsite/src/pages/Controls/ThemeProviderPage/ThemeProviderPage.tsx', - hash: '9993449517972929988', - }, - { file: 'apps/public-docsite/src/pages/Controls/ThemesPage/ThemesPage.doc.ts', hash: '16869713101131606107' }, - { file: 'apps/public-docsite/src/pages/Controls/ThemesPage/ThemesPage.tsx', hash: '18264313343382082196' }, - { - file: 'apps/public-docsite/src/pages/Controls/TimePickerPage/TimePickerPage.doc.ts', - hash: '15443779538362138546', - }, - { file: 'apps/public-docsite/src/pages/Controls/TimePickerPage/TimePickerPage.tsx', hash: '1756852736786007892' }, - { file: 'apps/public-docsite/src/pages/Controls/TogglePage/TogglePage.doc.ts', hash: '1437864563683354605' }, - { file: 'apps/public-docsite/src/pages/Controls/TogglePage/TogglePage.tsx', hash: '16970515178361027990' }, - { file: 'apps/public-docsite/src/pages/Controls/TooltipPage/TooltipPage.doc.ts', hash: '13004555359529279060' }, - { file: 'apps/public-docsite/src/pages/Controls/TooltipPage/TooltipPage.tsx', hash: '14058489552994957425' }, - { - file: 'apps/public-docsite/src/pages/Controls/TooltipPage/docs/android/TooltipImplementation.md', - hash: '3456588364072825371', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TooltipPage/docs/android/TooltipOverview.md', - hash: '13455839940298411742', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TooltipPage/docs/ios/TooltipImplementation.md', - hash: '16965261284922775306', - }, - { - file: 'apps/public-docsite/src/pages/Controls/TooltipPage/docs/ios/TooltipOverview.md', - hash: '1046254076984026596', - }, - { file: 'apps/public-docsite/src/pages/Controls/TreeChartPage/TreeChartPage.doc.ts', hash: '363208411377797558' }, - { file: 'apps/public-docsite/src/pages/Controls/TreeChartPage/TreeChartPage.tsx', hash: '7076431616057000589' }, - { - file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/GroupedVerticalBarChartPage.doc.ts', - hash: '15633758479616455994', - }, - { - file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/GroupedVerticalBarChartPage.tsx', - hash: '16990192553217188860', - }, - { - file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartPage.doc.ts', - hash: '2049947327391988989', - }, - { - file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartPage.tsx', - hash: '4883971900739832624', - }, - { - file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartStandardPage.doc.ts', - hash: '620999018417199421', - }, - { - file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalBarChartStandardPage.tsx', - hash: '6590169349353606228', - }, - { - file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalStackedBarChartPage.doc.ts', - hash: '8155972576439835208', - }, - { - file: 'apps/public-docsite/src/pages/Controls/VerticalBarChartPage/VerticalStackedBarChartPage.tsx', - hash: '9550842220108020399', - }, - { file: 'apps/public-docsite/src/pages/HomePage/HomePage.base.tsx', hash: '465866457058775620' }, - { file: 'apps/public-docsite/src/pages/HomePage/HomePage.styles.ts', hash: '10861640978446414062' }, - { file: 'apps/public-docsite/src/pages/HomePage/HomePage.tsx', hash: '18276424432609590467' }, - { file: 'apps/public-docsite/src/pages/HomePage/HomePage.types.ts', hash: '13340032817135044576' }, - { file: 'apps/public-docsite/src/pages/NotFoundPage/NotFoundPage.tsx', hash: '16207216040893461209' }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/ControlsPage.doc.ts', - hash: '18380040089134554336', - }, - { file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/ControlsPage.tsx', hash: '16414020117622852720' }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/android/ControlsOverview.md', - hash: '3916707571718470487', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/android/ControlsRequest.md', - hash: '15489980504060478950', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/cross/ControlsOverview.md', - hash: '6622634875300562460', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/cross/ControlsRequest.md', - hash: '14193834682038686587', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/ios/ControlsOverview.md', - hash: '1695529372061376072', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/ios/ControlsRequest.md', - hash: '12954123961090236040', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/mac/ControlsOverview.md', - hash: '7424290293222382000', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/mac/ControlsRequest.md', - hash: '12954123961090236040', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/web/ControlsOverview.md', - hash: '5663961913773712180', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/web/ControlsRequest.md', - hash: '15105504059791492762', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/webcomponents/ControlsOverview.md', - hash: '2414983111943358773', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ControlsPage/docs/windows/ControlsOverview.md', - hash: '9037427483021073364', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/GetStartedPage.doc.ts', - hash: '11826556445642419724', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/GetStartedPage.tsx', - hash: '7268018460850661290', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/android/GetStartedOverview.md', - hash: '12060562653436793345', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/cross/GetStartedOverview.md', - hash: '16091509152687312443', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/ios/GetStartedOverview.md', - hash: '9274172313490666165', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/mac/GetStartedOverview.md', - hash: '164867267244845671', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDesign.md', - hash: '8569760566844298580', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopCore.md', - hash: '10927339412684879146', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopExisting.md', - hash: '14091981290948965896', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedDevelopSimple.md', - hash: '460857128821419712', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedNextSteps.md', - hash: '2931506436585850526', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/web/GetStartedOverview.md', - hash: '3274675777583234778', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/webcomponents/GetStartedOverview.md', - hash: '2414983111943358773', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/GetStartedPage/docs/windows/GetStartedOverview.md', - hash: '629152349317496328', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/ResourcesPage.doc.ts', - hash: '17499625808237404491', - }, - { file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/ResourcesPage.tsx', hash: '13149788078858940663' }, - { - file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/MicrosoftEmployees.md', - hash: '6370171942935038278', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesContributionProcess.md', - hash: '1080822247761201590', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesDesignResources.md', - hash: '7106528753518723741', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesDeveloperResources.md', - hash: '5756619609720157923', - }, - { - file: 'apps/public-docsite/src/pages/Overviews/ResourcesPage/docs/default/ResourcesOverview.md', - hash: '8996628649432074956', - }, - { file: 'apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.doc.ts', hash: '15501069257697476063' }, - { - file: 'apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.module.scss', - hash: '12219944696373065363', - }, - { file: 'apps/public-docsite/src/pages/Overviews/StylesPage/StylesPage.tsx', hash: '15067860422087630323' }, - { - file: 'apps/public-docsite/src/pages/Overviews/StylesPage/docs/web/StylesOverview.md', - hash: '3244421341483603138', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.doc.ts', - hash: '7583962091710138917', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.module.scss', - hash: '4445718406155664912', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/TemplatePage.tsx', - hash: '7799339281702303232', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateBestPractices.md', - hash: '6424746113342347311', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateContact.md', - hash: '2267529183204956536', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateCustom.md', - hash: '3501294107890524915', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDesign.md', - hash: '8252275691557389867', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDonts.md', - hash: '16777043376435169207', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateDos.md', - hash: '17181944727235091082', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateMarkdown.md', - hash: '1824316788706149358', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateOverview.md', - hash: '2353018080647090922', - }, - { - file: 'apps/public-docsite/src/pages/PageTemplates/TemplatePage/docs/default/TemplateUsage.md', - hash: '17999602798252555441', - }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/MessagingPage.doc.ts', hash: '4029206581609651525' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/MessagingPage.tsx', hash: '8517833539006814777' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/NeutralsPage.doc.ts', hash: '8557524095289881833' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/NeutralsPage.tsx', hash: '3881861710033677192' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/PersonasPage.doc.ts', hash: '6969256656078507324' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/PersonasPage.tsx', hash: '4181755802529383445' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/PresencePage.doc.ts', hash: '7698330973277559727' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/PresencePage.tsx', hash: '10452373578783830576' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/ProductsPage.doc.ts', hash: '12064673447368071473' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/ProductsPage.tsx', hash: '8166681864376445004' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/SharedPage.doc.ts', hash: '8709294250181685180' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/SharedPage.tsx', hash: '16477473000087952085' }, - { - file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsImplementation.md', - hash: '9662445079717403281', - }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsMessaging.md', hash: '12057596805615388585' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsNeutrals.md', hash: '8166035078035367122' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPersonas.md', hash: '766096296213343466' }, - { - file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPersonasGroups.md', - hash: '3244421341483603138', - }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsPresence.md', hash: '12188095201817930748' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsProducts.md', hash: '17564225775262966216' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/docs/web/ColorsShared.md', hash: '5320481516820254115' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/getColorsImplementation.tsx', hash: '9396878996590273337' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Excel.tsx', hash: '6668403593313565275' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Exchange.tsx', hash: '5874575945733322646' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/OneDrive.tsx', hash: '4908314519718315370' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/OneNote.tsx', hash: '1931898637381696069' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/PowerPoint.tsx', hash: '7528087448102567999' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/SharePoint.tsx', hash: '11970481403739113120' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Skype.tsx', hash: '18324379671806732775' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Teams.tsx', hash: '6050608167770584322' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/WXPNeutrals.tsx', hash: '8359383161438920081' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/Word.tsx', hash: '249723548676881716' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/index.ts', hash: '2054469954853867485' }, - { file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/palettes.tsx', hash: '9146560715594749357' }, - { - file: 'apps/public-docsite/src/pages/Styles/Colors/palettes/sharePointThemes.ts', - hash: '17648378765769579029', - }, - { file: 'apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.doc.ts', hash: '15552069943951308130' }, - { - file: 'apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.module.scss', - hash: '7345581142680317731', - }, - { file: 'apps/public-docsite/src/pages/Styles/ElevationPage/ElevationPage.tsx', hash: '6842210506591976353' }, - { - file: 'apps/public-docsite/src/pages/Styles/ElevationPage/docs/web/ElevationDepth.md', - hash: '10648356807866455467', - }, - { - file: 'apps/public-docsite/src/pages/Styles/ElevationPage/docs/web/ElevationImplementation.md', - hash: '6698065193994919867', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.doc.ts', - hash: '13287110333933946288', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.module.scss', - hash: '16603198109401679117', - }, - { file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/FabricIconsPage.tsx', hash: '3215356932259775497' }, - { - file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsOverview.md', - hash: '14584716617056468743', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsSvgUsage.md', - hash: '4660598507310955359', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FabricIconsPage/docs/web/FabricIconsUsage.md', - hash: '2763351544178437746', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.doc.ts', - hash: '13738324400228116747', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.module.scss', - hash: '5442444884118063709', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/FileTypeIconsPage.tsx', - hash: '9814549566499373451', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsFormat.md', - hash: '13099450167737000846', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsImplementation.md', - hash: '17767304393597237392', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsOverview.md', - hash: '2860311402143920947', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsResolutions.md', - hash: '3244421341483603138', - }, - { - file: 'apps/public-docsite/src/pages/Styles/FileTypeIconsPage/docs/web/FileTypeIconsSingleColor.md', - hash: '8025714887263263869', - }, - { file: 'apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.doc.ts', hash: '6624340925972145937' }, - { file: 'apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.module.scss', hash: '3083280209208898114' }, - { file: 'apps/public-docsite/src/pages/Styles/LayoutPage/LayoutPage.tsx', hash: '689216079218174724' }, - { - file: 'apps/public-docsite/src/pages/Styles/LayoutPage/docs/web/LayoutGridImplementation.md', - hash: '3762983355142824943', - }, - { - file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.doc.ts', - hash: '13592687785339047277', - }, - { - file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.module.scss', - hash: '3580745211607670472', - }, - { - file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/LocalizationPage.tsx', - hash: '9117877808176694225', - }, - { - file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/docs/web/LocalizationFonts.md', - hash: '13947455427954126849', - }, - { - file: 'apps/public-docsite/src/pages/Styles/LocalizationPage/docs/web/LocalizationRTL.md', - hash: '12243536948304525425', - }, - { - file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.doc.ts', - hash: '14850740324986435630', - }, - { - file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.module.scss', - hash: '1501359429485906614', - }, - { - file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/M365ProductIconsPage.tsx', - hash: '8637326613161354274', - }, - { - file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsFormat.md', - hash: '14137903468084545672', - }, - { - file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsImplementation.md', - hash: '7064531828854196736', - }, - { - file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsOverview.md', - hash: '4644609833618920221', - }, - { - file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsResolutions.md', - hash: '9882773965947757517', - }, - { - file: 'apps/public-docsite/src/pages/Styles/M365ProductIconsPage/docs/web/M365ProductIconsSingleColor.md', - hash: '6428363293740106994', - }, - { file: 'apps/public-docsite/src/pages/Styles/MotionPage/MotionPage.doc.ts', hash: '7551229294685878607' }, - { file: 'apps/public-docsite/src/pages/Styles/MotionPage/MotionPage.tsx', hash: '4255866037727374519' }, - { - file: 'apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionAnimationPatterns.md', - hash: '2424745151389010475', - }, - { - file: 'apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionBasicAnimations.md', - hash: '11591939522054441904', - }, - { - file: 'apps/public-docsite/src/pages/Styles/MotionPage/docs/web/MotionOverview.md', - hash: '17619066456585865023', - }, - { file: 'apps/public-docsite/src/pages/Styles/StylesAreaPage.tsx', hash: '2330551012169262981' }, - { - file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.base.tsx', - hash: '13978554545030628372', - }, - { - file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.doc.ts', - hash: '8797032471318912664', - }, - { - file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.styles.ts', - hash: '670745936737153511', - }, - { file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.ts', hash: '17448422164112446045' }, - { - file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/ThemeSlotsPage.types.ts', - hash: '17598414037388291257', - }, - { - file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/docs/web/ThemeSlotsImplementation.md', - hash: '10651296754730631708', - }, - { - file: 'apps/public-docsite/src/pages/Styles/ThemeSlotsPage/docs/web/ThemeSlotsOverview.md', - hash: '2166965680185322299', - }, - { - file: 'apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.doc.ts', - hash: '9165765088336036121', - }, - { - file: 'apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.module.scss', - hash: '16018951629111799776', - }, - { file: 'apps/public-docsite/src/pages/Styles/TypographyPage/TypographyPage.tsx', hash: '10818548696224375374' }, - { - file: 'apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyCustomization.md', - hash: '13014783898773428593', - }, - { - file: 'apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyImplementation.md', - hash: '238697434924652490', - }, - { - file: 'apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographySizes.md', - hash: '15059354838444238039', - }, - { - file: 'apps/public-docsite/src/pages/Styles/TypographyPage/docs/web/TypographyWeights.md', - hash: '7954208076253865127', - }, - { file: 'apps/public-docsite/src/root.tsx', hash: '2758584264461977324' }, - { file: 'apps/public-docsite/src/styles/_base.scss', hash: '1849673723161206113' }, - { file: 'apps/public-docsite/src/styles/_common.scss', hash: '9046917025896875813' }, - { file: 'apps/public-docsite/src/styles/_overrides.scss', hash: '4420994798235433884' }, - { file: 'apps/public-docsite/src/styles/_reset.scss', hash: '17974127147527998359' }, - { file: 'apps/public-docsite/src/styles/_semanticSlots.scss', hash: '15520402900566886591' }, - { file: 'apps/public-docsite/src/styles/_typography.scss', hash: '2598463171315010195' }, - { file: 'apps/public-docsite/src/styles/constants.ts', hash: '15680145100038897039' }, - { file: 'apps/public-docsite/src/styles/styles.scss', hash: '2768824223736871501' }, - { file: 'apps/public-docsite/src/utilities/cdn.ts', hash: '2720323465115190399' }, - { file: 'apps/public-docsite/src/utilities/createSite.tsx', hash: '13422298383237972784' }, - { file: 'apps/public-docsite/src/utilities/getSubTitle.ts', hash: '1812390680457891556' }, - { file: 'apps/public-docsite/src/utilities/index.ts', hash: '15090850838105549481' }, - { file: 'apps/public-docsite/src/utilities/location.ts', hash: '2937621053370628509' }, - { file: 'apps/public-docsite/src/utilities/svgIcons.module.scss', hash: '3242932209884530734' }, - { file: 'apps/public-docsite/src/utilities/svgIcons.tsx', hash: '5235987200223732108' }, - { file: 'apps/public-docsite/src/utilities/svgIconsColor.tsx', hash: '4853467040983417652' }, - { file: 'apps/public-docsite/src/version.ts', hash: '9775686497058364768' }, - { file: 'apps/public-docsite/tsconfig.json', hash: '12512132474600727181' }, - { file: 'apps/public-docsite/webpack.config.js', hash: '2835503529795351612' }, - { file: 'apps/public-docsite/webpack.serve.config.js', hash: '13648462903372555254' }, - ], - '@fluentui/react-slider': [ - { file: 'packages/react-components/react-slider/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-slider/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-slider/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-slider/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-slider/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-slider/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-slider/CHANGELOG.json', hash: '13041546859904341740' }, - { file: 'packages/react-components/react-slider/CHANGELOG.md', hash: '1836801970457878877' }, - { file: 'packages/react-components/react-slider/LICENSE', hash: '910721805169595338' }, - { file: 'packages/react-components/react-slider/README.md', hash: '6584753154889502669' }, - { file: 'packages/react-components/react-slider/bundle-size/Slider.fixture.js', hash: '4536442547704901623' }, - { file: 'packages/react-components/react-slider/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-slider/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-slider/docs/MIGRATION.md', hash: '447967121623278016' }, - { file: 'packages/react-components/react-slider/docs/Spec.md', hash: '9843651694675404780' }, - { file: 'packages/react-components/react-slider/etc/react-slider.api.md', hash: '14398793584258195333' }, - { file: 'packages/react-components/react-slider/jest.config.js', hash: '17269232337421067095' }, - { file: 'packages/react-components/react-slider/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-slider/package.json', - hash: '2946398219333391235', - deps: [ - '@fluentui/react-field', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/react-label', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-slider/project.json', hash: '15063960313449581197' }, - { file: 'packages/react-components/react-slider/src/Slider.ts', hash: '8062765663185726667' }, - { - file: 'packages/react-components/react-slider/src/components/Slider/Slider.test.tsx', - hash: '12394107146913416909', - }, - { file: 'packages/react-components/react-slider/src/components/Slider/Slider.tsx', hash: '1124189894502122660' }, - { - file: 'packages/react-components/react-slider/src/components/Slider/Slider.types.ts', - hash: '13961785930442891420', - }, - { - file: 'packages/react-components/react-slider/src/components/Slider/__snapshots__/Slider.test.tsx.snap', - hash: '16814355515039523231', - }, - { file: 'packages/react-components/react-slider/src/components/Slider/index.ts', hash: '16057955284477178882' }, - { - file: 'packages/react-components/react-slider/src/components/Slider/renderSlider.tsx', - hash: '1322961609272530897', - }, - { - file: 'packages/react-components/react-slider/src/components/Slider/useSlider.ts', - hash: '12810398614195122939', - }, - { - file: 'packages/react-components/react-slider/src/components/Slider/useSliderState.tsx', - hash: '7902361668391337869', - }, - { - file: 'packages/react-components/react-slider/src/components/Slider/useSliderStyles.styles.ts', - hash: '7767678614377780417', - }, - { file: 'packages/react-components/react-slider/src/index.ts', hash: '310119894017311457' }, - { file: 'packages/react-components/react-slider/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderBestPractices.md', - hash: '6974346443867987720', - }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderControlled.stories.tsx', - hash: '7808949571775154240', - }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderDefault.stories.tsx', - hash: '14440247799581749403', - }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderDescription.md', - hash: '11502253636498399750', - }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderDisabled.stories.tsx', - hash: '7697954300354409130', - }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderMinMax.stories.tsx', - hash: '6656091609376794109', - }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderSize.stories.tsx', - hash: '1159612092057231215', - }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderStep.stories.tsx', - hash: '10001321265726034349', - }, - { - file: 'packages/react-components/react-slider/stories/Slider/SliderVertical.stories.tsx', - hash: '15791609136650339470', - }, - { file: 'packages/react-components/react-slider/stories/Slider/index.stories.tsx', hash: '7287745665975848010' }, - { file: 'packages/react-components/react-slider/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-slider/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-slider/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/public-docsite-setup': [ - { file: 'packages/public-docsite-setup/.eslintrc.json', hash: '11992839191132505596' }, - { file: 'packages/public-docsite-setup/.npmignore', hash: '3740656116866054585' }, - { file: 'packages/public-docsite-setup/CHANGELOG.json', hash: '8618547025339672593' }, - { file: 'packages/public-docsite-setup/CHANGELOG.md', hash: '16215403087015415764' }, - { file: 'packages/public-docsite-setup/LICENSE', hash: '16265811467916620523' }, - { file: 'packages/public-docsite-setup/README.md', hash: '18053332391643812672' }, - { file: 'packages/public-docsite-setup/bin/create-site-manifests.js', hash: '2399047235238828921' }, - { file: 'packages/public-docsite-setup/homepage.htm', hash: '981869816544868480' }, - { file: 'packages/public-docsite-setup/index.html', hash: '12007521206803077125' }, - { file: 'packages/public-docsite-setup/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/public-docsite-setup/package.json', - hash: '16349764460524795731', - deps: ['@fluentui/eslint-plugin', '@fluentui/scripts-tasks'], - }, - { file: 'packages/public-docsite-setup/project.json', hash: '3891386790338302307' }, - { file: 'packages/public-docsite-setup/scripts/generateHomepage.js', hash: '14016511638093064764' }, - { file: 'packages/public-docsite-setup/scripts/getLoadSiteConfig.js', hash: '8884841564332900835' }, - { file: 'packages/public-docsite-setup/src/constants.ts', hash: '16801533152691260155' }, - { file: 'packages/public-docsite-setup/src/index.ts', hash: '10886664963278811071' }, - { file: 'packages/public-docsite-setup/src/loadSite.ts', hash: '12087338822941859946' }, - { file: 'packages/public-docsite-setup/src/types.ts', hash: '17941423265517989148' }, - { file: 'packages/public-docsite-setup/tsconfig.json', hash: '5177948260028589190' }, - ], - '@fluentui/react-button': [ - { file: 'packages/react-components/react-button/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-button/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-button/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-button/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-button/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-button/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-button/CHANGELOG.json', hash: '17401411806497239454' }, - { file: 'packages/react-components/react-button/CHANGELOG.md', hash: '3853339592724016178' }, - { file: 'packages/react-components/react-button/LICENSE', hash: '15868623612285827359' }, - { file: 'packages/react-components/react-button/README.md', hash: '5927466127429275027' }, - { file: 'packages/react-components/react-button/bundle-size/Button.fixture.js', hash: '11196911714669572347' }, - { - file: 'packages/react-components/react-button/bundle-size/CompoundButton.fixture.js', - hash: '15437191715127790243', - }, - { - file: 'packages/react-components/react-button/bundle-size/MenuButton.fixture.js', - hash: '16399742671333906926', - }, - { file: 'packages/react-components/react-button/bundle-size/SplitButton.fixture.js', hash: '846732347456677371' }, - { - file: 'packages/react-components/react-button/bundle-size/ToggleButton.fixture.js', - hash: '17911106882285084354', - }, - { file: 'packages/react-components/react-button/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-button/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-button/docs/MIGRATION.md', hash: '10748989622082685018' }, - { file: 'packages/react-components/react-button/docs/SPEC.md', hash: '12520006170877160397' }, - { file: 'packages/react-components/react-button/etc/react-button.api.md', hash: '11861696843617479842' }, - { file: 'packages/react-components/react-button/jest.config.js', hash: '18021156044048013372' }, - { file: 'packages/react-components/react-button/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-button/package.json', - hash: '10168246310506993332', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-aria', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/a11y-testing', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-button/project.json', hash: '16431721494337088002' }, - { file: 'packages/react-components/react-button/src/Button.tsx', hash: '8626324674700708044' }, - { file: 'packages/react-components/react-button/src/CompoundButton.ts', hash: '153412803858965389' }, - { file: 'packages/react-components/react-button/src/MenuButton.ts', hash: '6393132779025454217' }, - { file: 'packages/react-components/react-button/src/SplitButton.ts', hash: '7296004887201615859' }, - { file: 'packages/react-components/react-button/src/ToggleButton.ts', hash: '9087773820539969166' }, - { - file: 'packages/react-components/react-button/src/components/Button/Button.test.tsx', - hash: '13234018766360395070', - }, - { file: 'packages/react-components/react-button/src/components/Button/Button.tsx', hash: '7131784988858573117' }, - { - file: 'packages/react-components/react-button/src/components/Button/Button.types.ts', - hash: '18132117076552392300', - }, - { file: 'packages/react-components/react-button/src/components/Button/index.ts', hash: '14415446849596795722' }, - { - file: 'packages/react-components/react-button/src/components/Button/renderButton.tsx', - hash: '3788273996539907589', - }, - { - file: 'packages/react-components/react-button/src/components/Button/useButton.ts', - hash: '18239797257817765877', - }, - { - file: 'packages/react-components/react-button/src/components/Button/useButtonStyles.styles.ts', - hash: '16766982605993587713', - }, - { - file: 'packages/react-components/react-button/src/components/CompoundButton/CompoundButton.test.tsx', - hash: '17699079322699347030', - }, - { - file: 'packages/react-components/react-button/src/components/CompoundButton/CompoundButton.tsx', - hash: '12527753452428197456', - }, - { - file: 'packages/react-components/react-button/src/components/CompoundButton/CompoundButton.types.ts', - hash: '10403113155713189779', - }, - { - file: 'packages/react-components/react-button/src/components/CompoundButton/index.ts', - hash: '17693470936175651660', - }, - { - file: 'packages/react-components/react-button/src/components/CompoundButton/renderCompoundButton.tsx', - hash: '9392084413752564294', - }, - { - file: 'packages/react-components/react-button/src/components/CompoundButton/useCompoundButton.ts', - hash: '11789753697687684577', - }, - { - file: 'packages/react-components/react-button/src/components/CompoundButton/useCompoundButtonStyles.styles.ts', - hash: '4022940355968932853', - }, - { - file: 'packages/react-components/react-button/src/components/MenuButton/MenuButton.test.tsx', - hash: '5565395958656768489', - }, - { - file: 'packages/react-components/react-button/src/components/MenuButton/MenuButton.tsx', - hash: '5952211904245417062', - }, - { - file: 'packages/react-components/react-button/src/components/MenuButton/MenuButton.types.ts', - hash: '12380706571984102748', - }, - { - file: 'packages/react-components/react-button/src/components/MenuButton/index.ts', - hash: '11687749806294814925', - }, - { - file: 'packages/react-components/react-button/src/components/MenuButton/renderMenuButton.tsx', - hash: '2242695625944355651', - }, - { - file: 'packages/react-components/react-button/src/components/MenuButton/useMenuButton.tsx', - hash: '4984356046412164557', - }, - { - file: 'packages/react-components/react-button/src/components/MenuButton/useMenuButtonStyles.styles.ts', - hash: '1835897370503685351', - }, - { - file: 'packages/react-components/react-button/src/components/SplitButton/SplitButton.test.tsx', - hash: '2434348402973527636', - }, - { - file: 'packages/react-components/react-button/src/components/SplitButton/SplitButton.tsx', - hash: '1351240890806868292', - }, - { - file: 'packages/react-components/react-button/src/components/SplitButton/SplitButton.types.ts', - hash: '16806214858697550880', - }, - { - file: 'packages/react-components/react-button/src/components/SplitButton/index.ts', - hash: '9834531422308196215', - }, - { - file: 'packages/react-components/react-button/src/components/SplitButton/renderSplitButton.tsx', - hash: '14418301058346299709', - }, - { - file: 'packages/react-components/react-button/src/components/SplitButton/useSplitButton.ts', - hash: '563564198843507208', - }, - { - file: 'packages/react-components/react-button/src/components/SplitButton/useSplitButtonStyles.styles.ts', - hash: '4700348312000575170', - }, - { - file: 'packages/react-components/react-button/src/components/ToggleButton/ToggleButton.test.tsx', - hash: '13746632596170630901', - }, - { - file: 'packages/react-components/react-button/src/components/ToggleButton/ToggleButton.tsx', - hash: '8650462963352411057', - }, - { - file: 'packages/react-components/react-button/src/components/ToggleButton/ToggleButton.types.ts', - hash: '3341137315114432486', - }, - { - file: 'packages/react-components/react-button/src/components/ToggleButton/index.ts', - hash: '510559736809727155', - }, - { - file: 'packages/react-components/react-button/src/components/ToggleButton/renderToggleButton.tsx', - hash: '10961580694544111609', - }, - { - file: 'packages/react-components/react-button/src/components/ToggleButton/useToggleButton.ts', - hash: '7201515539310652846', - }, - { - file: 'packages/react-components/react-button/src/components/ToggleButton/useToggleButtonStyles.styles.ts', - hash: '16388660867399193722', - }, - { file: 'packages/react-components/react-button/src/contexts/ButtonContext.ts', hash: '16773333999453776678' }, - { file: 'packages/react-components/react-button/src/contexts/index.ts', hash: '13132760355664250784' }, - { file: 'packages/react-components/react-button/src/index.ts', hash: '13339233335156002081' }, - { file: 'packages/react-components/react-button/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { file: 'packages/react-components/react-button/src/utils/index.ts', hash: '250554734181228029' }, - { file: 'packages/react-components/react-button/src/utils/useToggleState.test.ts', hash: '16429899316216024046' }, - { file: 'packages/react-components/react-button/src/utils/useToggleState.ts', hash: '18013134462047555620' }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonAppearance.stories.tsx', - hash: '18327432462363093567', - }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonBestPractices.md', - hash: '15966904879684831389', - }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonDefault.stories.tsx', - hash: '16309520140968874517', - }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonDescription.md', - hash: '16532145145344636837', - }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonDisabled.stories.tsx', - hash: '14560255335512811980', - }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonIcon.stories.tsx', - hash: '18026469457173329885', - }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonShape.stories.tsx', - hash: '10293515556003357551', - }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonSize.stories.tsx', - hash: '10198198054469729891', - }, - { - file: 'packages/react-components/react-button/stories/Button/ButtonWithLongText.stories.tsx', - hash: '5582045194995381624', - }, - { file: 'packages/react-components/react-button/stories/Button/index.stories.tsx', hash: '10629806941826268136' }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonAppearance.stories.tsx', - hash: '11751323304847853244', - }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonDefault.stories.tsx', - hash: '6554013591312608741', - }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonDescription.md', - hash: '11239283790606707108', - }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonDisabled.stories.tsx', - hash: '14823921486630978871', - }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonIcon.stories.tsx', - hash: '8025939386619198410', - }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonShape.stories.tsx', - hash: '12767597618316035307', - }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonSize.stories.tsx', - hash: '11351827693353756555', - }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/CompoundButtonWithLongText.stories.tsx', - hash: '10636944211269219355', - }, - { - file: 'packages/react-components/react-button/stories/CompoundButton/index.stories.tsx', - hash: '18420395090802840095', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonAppearance.stories.tsx', - hash: '11772149593198224779', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonDefault.stories.tsx', - hash: '14407394285640449777', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonDescription.md', - hash: '7709633773581627486', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonDisabled.stories.tsx', - hash: '172889004189161693', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonIcon.stories.tsx', - hash: '12403472180433417597', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonShape.stories.tsx', - hash: '1625891071317679416', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonSize.stories.tsx', - hash: '15865604958975837898', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonSizeLarge.stories.tsx', - hash: '15800808442274998205', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonSizeMedium.stories.tsx', - hash: '14883010632519272607', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonSizeSmall.stories.tsx', - hash: '9004306881864596423', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/MenuButtonWithLongText.stories.tsx', - hash: '1089695309675211024', - }, - { - file: 'packages/react-components/react-button/stories/MenuButton/index.stories.tsx', - hash: '12902323920864641887', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonAppearance.stories.tsx', - hash: '16001178453275385358', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonDefault.stories.tsx', - hash: '16390183972199802935', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonDescription.md', - hash: '1218508324013847579', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonDisabled.stories.tsx', - hash: '6999498071146279140', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonIcon.stories.tsx', - hash: '3096822792677050391', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonShape.stories.tsx', - hash: '17602511593093438153', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonSize.stories.tsx', - hash: '6396106470924168525', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonSizeLarge.stories.tsx', - hash: '7470419675292342106', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonSizeMedium.stories.tsx', - hash: '16591027078031376997', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonSizeSmall.stories.tsx', - hash: '18281348385773762433', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/SplitButtonWithLongText.stories.tsx', - hash: '16343968451839078562', - }, - { - file: 'packages/react-components/react-button/stories/SplitButton/index.stories.tsx', - hash: '12187964862290984524', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonAppearance.stories.tsx', - hash: '17780270857595078579', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonChecked.stories.tsx', - hash: '14152692013864493219', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonDefault.stories.tsx', - hash: '1097715229128497190', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonDescription.md', - hash: '12813726539373137853', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonDisabled.stories.tsx', - hash: '18227486994944172131', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonIcon.stories.tsx', - hash: '18321466124278295375', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonShape.stories.tsx', - hash: '14209255492890451017', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonSize.stories.tsx', - hash: '4734052364110908515', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/ToggleButtonWithLongText.stories.tsx', - hash: '16462181566839467831', - }, - { - file: 'packages/react-components/react-button/stories/ToggleButton/index.stories.tsx', - hash: '377636607901370479', - }, - { file: 'packages/react-components/react-button/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-button/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-button/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-field': [ - { file: 'packages/react-components/react-field/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-field/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-field/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-field/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-field/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-field/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-field/CHANGELOG.json', hash: '8039457963269041194' }, - { file: 'packages/react-components/react-field/CHANGELOG.md', hash: '1060451877954283372' }, - { file: 'packages/react-components/react-field/LICENSE', hash: '554933104331199409' }, - { file: 'packages/react-components/react-field/README.md', hash: '893706678477031575' }, - { file: 'packages/react-components/react-field/bundle-size/Field.fixture.js', hash: '4838490527905075486' }, - { file: 'packages/react-components/react-field/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-field/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-field/docs/Migration.md', hash: '10612980883908926799' }, - { file: 'packages/react-components/react-field/docs/Spec.md', hash: '3881094108645122580' }, - { file: 'packages/react-components/react-field/etc/react-field.api.md', hash: '12427575368903476413' }, - { file: 'packages/react-components/react-field/jest.config.js', hash: '16251327533616583441' }, - { file: 'packages/react-components/react-field/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-field/package.json', - hash: '17322716232717629014', - deps: [ - '@fluentui/react-context-selector', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-label', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-field/project.json', hash: '10933597292463507432' }, - { file: 'packages/react-components/react-field/src/Field.ts', hash: '9870089672195185903' }, - { - file: 'packages/react-components/react-field/src/components/Field/Field.test.tsx', - hash: '8461276573503618894', - }, - { file: 'packages/react-components/react-field/src/components/Field/Field.tsx', hash: '12598293249723199107' }, - { - file: 'packages/react-components/react-field/src/components/Field/Field.types.ts', - hash: '5054979877071605023', - }, - { file: 'packages/react-components/react-field/src/components/Field/index.ts', hash: '5707729203640261208' }, - { - file: 'packages/react-components/react-field/src/components/Field/renderField.tsx', - hash: '14499036947624830423', - }, - { file: 'packages/react-components/react-field/src/components/Field/useField.tsx', hash: '5536967628399082504' }, - { - file: 'packages/react-components/react-field/src/components/Field/useFieldStyles.styles.ts', - hash: '14064633758097641501', - }, - { file: 'packages/react-components/react-field/src/contexts/FieldContext.ts', hash: '14919646964922443401' }, - { file: 'packages/react-components/react-field/src/contexts/index.ts', hash: '4751556762048871598' }, - { - file: 'packages/react-components/react-field/src/contexts/useFieldContextValues.ts', - hash: '17279845786865652248', - }, - { - file: 'packages/react-components/react-field/src/contexts/useFieldControlProps.ts', - hash: '6840257994312578601', - }, - { file: 'packages/react-components/react-field/src/index.ts', hash: '16864027966588469169' }, - { file: 'packages/react-components/react-field/src/testing/isConformant.ts', hash: '17159661999478583888' }, - { - file: 'packages/react-components/react-field/stories/Field/FieldBestPractices.md', - hash: '15241567885935055286', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldComponentExamples.stories.tsx', - hash: '7102357499471409146', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldDefault.stories.tsx', - hash: '2389481372061903880', - }, - { file: 'packages/react-components/react-field/stories/Field/FieldDescription.md', hash: '8562502418038242748' }, - { - file: 'packages/react-components/react-field/stories/Field/FieldDisabled.stories.tsx', - hash: '8279245328832126716', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldHint.stories.tsx', - hash: '4859776890358075498', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldHorizontal.stories.tsx', - hash: '17955668180315832249', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldInfo.stories.tsx', - hash: '13887433711882633123', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldRenderFunction.stories.tsx', - hash: '11505527767084781239', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldRequired.stories.tsx', - hash: '9204847011564345692', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldSize.stories.tsx', - hash: '4363541870704469900', - }, - { - file: 'packages/react-components/react-field/stories/Field/FieldValidationMessage.stories.tsx', - hash: '3714923557314846878', - }, - { file: 'packages/react-components/react-field/stories/Field/index.stories.tsx', hash: '11784715857108891473' }, - { file: 'packages/react-components/react-field/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-field/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-field/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/tokens': [ - { file: 'packages/tokens/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/tokens/.eslintrc.json', hash: '7826845955212215663' }, - { file: 'packages/tokens/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/tokens/CHANGELOG.json', hash: '14841026886481865649' }, - { file: 'packages/tokens/CHANGELOG.md', hash: '3366136784723633930' }, - { file: 'packages/tokens/LICENSE', hash: '2957492313707768209' }, - { file: 'packages/tokens/README.md', hash: '1744177084782103850' }, - { file: 'packages/tokens/config/api-extractor.json', hash: '10178698400109090564' }, - { file: 'packages/tokens/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/tokens/etc/tokens.api.md', hash: '9001732672187428224' }, - { file: 'packages/tokens/jest.config.js', hash: '15807496765609650508' }, - { file: 'packages/tokens/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/tokens/package.json', - hash: '2400468319047909006', - deps: [ - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/tokens/project.json', hash: '207057935229196254' }, - { file: 'packages/tokens/src/alias/darkColor.ts', hash: '6524628836699045198' }, - { file: 'packages/tokens/src/alias/darkColorPalette.ts', hash: '18318455665690501717' }, - { file: 'packages/tokens/src/alias/highContrastColor.ts', hash: '17333459973956732870' }, - { file: 'packages/tokens/src/alias/highContrastColorPalette.ts', hash: '7598837583164836057' }, - { file: 'packages/tokens/src/alias/lightColor.ts', hash: '699927236436408252' }, - { file: 'packages/tokens/src/alias/lightColorPalette.ts', hash: '15665362712347405664' }, - { file: 'packages/tokens/src/alias/teamsDarkColor.ts', hash: '495554757685176995' }, - { file: 'packages/tokens/src/global/borderRadius.ts', hash: '10922533387751712670' }, - { file: 'packages/tokens/src/global/brandColors.ts', hash: '13470927145154942037' }, - { file: 'packages/tokens/src/global/colorPalette.ts', hash: '14811325803284691358' }, - { file: 'packages/tokens/src/global/colors.ts', hash: '7382183712404700876' }, - { file: 'packages/tokens/src/global/curves.ts', hash: '15506710049223549044' }, - { file: 'packages/tokens/src/global/durations.ts', hash: '11571525354434980387' }, - { file: 'packages/tokens/src/global/fonts.ts', hash: '16300469290703263152' }, - { file: 'packages/tokens/src/global/index.ts', hash: '2397229802645905796' }, - { file: 'packages/tokens/src/global/spacings.ts', hash: '6252071470469473214' }, - { file: 'packages/tokens/src/global/strokeWidths.ts', hash: '1605802753556060163' }, - { file: 'packages/tokens/src/global/typographyStyles.ts', hash: '18192818131277542845' }, - { file: 'packages/tokens/src/index.ts', hash: '10799930784753146153' }, - { file: 'packages/tokens/src/sharedColorNames.ts', hash: '17837956492232571546' }, - { file: 'packages/tokens/src/statusColorMapping.ts', hash: '3958570264250862025' }, - { file: 'packages/tokens/src/themeToTokensObject.test.ts', hash: '15766396418114753078' }, - { file: 'packages/tokens/src/themeToTokensObject.ts', hash: '8566019407815526884' }, - { file: 'packages/tokens/src/themes/index.ts', hash: '16328840743172684649' }, - { file: 'packages/tokens/src/themes/teams/darkTheme.ts', hash: '10162129513779528421' }, - { file: 'packages/tokens/src/themes/teams/highContrastTheme.ts', hash: '8737380161356881067' }, - { file: 'packages/tokens/src/themes/teams/index.ts', hash: '17608448649042645716' }, - { file: 'packages/tokens/src/themes/teams/lightTheme.ts', hash: '15856732036176289418' }, - { file: 'packages/tokens/src/themes/web/darkTheme.ts', hash: '12650699875162499107' }, - { file: 'packages/tokens/src/themes/web/index.ts', hash: '13361016594897630736' }, - { file: 'packages/tokens/src/themes/web/lightTheme.ts', hash: '13431256856349139698' }, - { file: 'packages/tokens/src/tokens.test.ts', hash: '3282789169986695786' }, - { file: 'packages/tokens/src/tokens.ts', hash: '2285311445095864008' }, - { file: 'packages/tokens/src/types.ts', hash: '528143425245606708' }, - { file: 'packages/tokens/src/utils/createDarkTheme.ts', hash: '7754017445960908345' }, - { file: 'packages/tokens/src/utils/createHighContrastTheme.ts', hash: '5919985595387454286' }, - { file: 'packages/tokens/src/utils/createLightTheme.ts', hash: '13838707512292291141' }, - { file: 'packages/tokens/src/utils/createTeamsDarkTheme.ts', hash: '313717060099057838' }, - { file: 'packages/tokens/src/utils/index.ts', hash: '15545758859304259047' }, - { file: 'packages/tokens/src/utils/shadows.ts', hash: '2299298543354272552' }, - { file: 'packages/tokens/tsconfig.json', hash: '3768914200062126724' }, - { file: 'packages/tokens/tsconfig.lib.json', hash: '13671966270683185407' }, - { file: 'packages/tokens/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/ts-minbar-test-react-components': [ - { file: 'apps/ts-minbar-test-react-components/CHANGELOG.json', hash: '656745615605467027' }, - { file: 'apps/ts-minbar-test-react-components/CHANGELOG.md', hash: '7646044303546398326' }, - { file: 'apps/ts-minbar-test-react-components/README.md', hash: '16461979801860699917' }, - { file: 'apps/ts-minbar-test-react-components/files/src/index.tsx', hash: '18098612965669564749' }, - { file: 'apps/ts-minbar-test-react-components/files/tsconfig.json', hash: '11617511591496749178' }, - { file: 'apps/ts-minbar-test-react-components/just.config.ts', hash: '7156839958691239049' }, - { - file: 'apps/ts-minbar-test-react-components/package.json', - hash: '13593808421142598329', - deps: ['@fluentui/react-components', '@fluentui/scripts-tasks', '@fluentui/scripts-projects-test'], - }, - { file: 'apps/ts-minbar-test-react-components/project.json', hash: '1464494342633365324' }, - { file: 'apps/ts-minbar-test-react-components/src/index.ts', hash: '13329464376822014146' }, - { file: 'apps/ts-minbar-test-react-components/tsconfig.json', hash: '10809149894665832803' }, - ], - '@fluentui/react-virtualizer': [ - { file: 'packages/react-components/react-virtualizer/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-virtualizer/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-virtualizer/.storybook/main.js', hash: '11617744840349284164' }, - { - file: 'packages/react-components/react-virtualizer/.storybook/preview-body.html', - hash: '16210685040217365676', - }, - { file: 'packages/react-components/react-virtualizer/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-virtualizer/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-virtualizer/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-virtualizer/CHANGELOG.json', hash: '2673709193866183261' }, - { file: 'packages/react-components/react-virtualizer/CHANGELOG.md', hash: '1256483738986476246' }, - { file: 'packages/react-components/react-virtualizer/LICENSE', hash: '3825891881571607092' }, - { file: 'packages/react-components/react-virtualizer/README.md', hash: '3856986220850823081' }, - { file: 'packages/react-components/react-virtualizer/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-virtualizer/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-virtualizer/etc/react-virtualizer.api.md', hash: '5965603531558644273' }, - { file: 'packages/react-components/react-virtualizer/jest.config.js', hash: '13492638879859403130' }, - { file: 'packages/react-components/react-virtualizer/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-virtualizer/package.json', - hash: '2669636919577574734', - deps: [ - '@fluentui/react-jsx-runtime', - '@fluentui/react-utilities', - '@fluentui/react-shared-contexts', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-virtualizer/project.json', hash: '5902224839509606522' }, - { file: 'packages/react-components/react-virtualizer/src/Hooks.ts', hash: '13096719515407822478' }, - { file: 'packages/react-components/react-virtualizer/src/Utilities.ts', hash: '7452799764049456122' }, - { file: 'packages/react-components/react-virtualizer/src/Virtualizer.ts', hash: '7518409004355669143' }, - { - file: 'packages/react-components/react-virtualizer/src/VirtualizerScrollView.ts', - hash: '11480930697508633208', - }, - { - file: 'packages/react-components/react-virtualizer/src/VirtualizerScrollViewDynamic.ts', - hash: '4620222288124351857', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/Virtualizer.ts', - hash: '7927844774255893543', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/Virtualizer.types.ts', - hash: '14998671851453166952', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/index.ts', - hash: '223893684398285344', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/renderVirtualizer.tsx', - hash: '5049901196873287610', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizer.ts', - hash: '11296231769951241238', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizerStyles.styles.ts', - hash: '16200927493257981129', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/VirtualizerScrollView.ts', - hash: '14670667260237630417', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/VirtualizerScrollView.types.ts', - hash: '12726462037379246806', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/index.ts', - hash: '5341561606535506170', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/renderVirtualizerScrollView.tsx', - hash: '9987866317880670081', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/useVirtualizerScrollView.ts', - hash: '6242430380123640601', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollView/useVirtualizerScrollViewStyles.styles.ts', - hash: '14637414451604734747', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.ts', - hash: '3091671186485391286', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.types.ts', - hash: '1268211048994777683', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/index.ts', - hash: '4575113466604915676', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/renderVirtualizerScrollViewDynamic.tsx', - hash: '517632922593748593', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamic.tsx', - hash: '11382510692058695315', - }, - { - file: 'packages/react-components/react-virtualizer/src/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamicStyles.styles.ts', - hash: '15915807425457867423', - }, - { file: 'packages/react-components/react-virtualizer/src/hooks/hooks.types.ts', hash: '11437064553272591592' }, - { file: 'packages/react-components/react-virtualizer/src/hooks/index.ts', hash: '11212568211093860115' }, - { - file: 'packages/react-components/react-virtualizer/src/hooks/useDynamicVirtualizerMeasure.ts', - hash: '1401715616925791324', - }, - { - file: 'packages/react-components/react-virtualizer/src/hooks/useIntersectionObserver.ts', - hash: '9327842803804721', - }, - { file: 'packages/react-components/react-virtualizer/src/hooks/useMeasureList.ts', hash: '7611797157667966265' }, - { - file: 'packages/react-components/react-virtualizer/src/hooks/useMutationObserver.ts', - hash: '890252352384347130', - }, - { - file: 'packages/react-components/react-virtualizer/src/hooks/useResizeObserverRef.ts', - hash: '1724813061379453082', - }, - { - file: 'packages/react-components/react-virtualizer/src/hooks/useVirtualizerMeasure.ts', - hash: '17204283105924926987', - }, - { file: 'packages/react-components/react-virtualizer/src/index.ts', hash: '12055461814549449062' }, - { - file: 'packages/react-components/react-virtualizer/src/testing/useVirtualizer.test.ts', - hash: '17923925798907638535', - }, - { - file: 'packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrolling.ts', - hash: '10130952681932487924', - }, - { - file: 'packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrolling.types.ts', - hash: '15254358818932563361', - }, - { - file: 'packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/imperativeScrollingDynamic.ts', - hash: '12482063325179436183', - }, - { - file: 'packages/react-components/react-virtualizer/src/utilities/ImperativeScrolling/index.ts', - hash: '11870388641348364336', - }, - { - file: 'packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/VirtualizerContext.ts', - hash: '15927935393898582112', - }, - { - file: 'packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/index.ts', - hash: '7211653521627416542', - }, - { - file: 'packages/react-components/react-virtualizer/src/utilities/VirtualizerContext/types.ts', - hash: '14680922875446214691', - }, - { - file: 'packages/react-components/react-virtualizer/src/utilities/createResizeObserverFromDocument.ts', - hash: '15813223612896660990', - }, - { file: 'packages/react-components/react-virtualizer/src/utilities/debounce.ts', hash: '16454772419717378051' }, - { file: 'packages/react-components/react-virtualizer/src/utilities/index.ts', hash: '5587345159392749401' }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/Default.stories.tsx', - hash: '136999915172207859', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/DefaultUnbounded.stories.tsx', - hash: '13655720455891631220', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/Dynamic.stories.tsx', - hash: '4055773401446967685', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/Horizontal.stories.tsx', - hash: '3108876537717609011', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/MultiUnbounded.stories.tsx', - hash: '8935973420982175120', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/RTL.stories.tsx', - hash: '8439153336966493360', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/Reversed.stories.tsx', - hash: '15184551952582601701', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/ReversedHorizontal.stories.tsx', - hash: '17483635137462024459', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/VirtualizerDescription.md', - hash: '14678160273834792229', - }, - { - file: 'packages/react-components/react-virtualizer/stories/Virtualizer/index.stories.ts', - hash: '7671933387398296295', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/Default.stories.tsx', - hash: '11832986632353617854', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/ScrollTo.stories.tsx', - hash: '7929370554351259593', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/SnapToAlignment.stories.tsx', - hash: '8680098754472857303', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/VirtualizerScrollViewDescription.md', - hash: '2316021851908929761', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollView/index.stories.ts', - hash: '8372571143132881416', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/AutoMeasure.stories.tsx', - hash: '5028243045914419788', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/Default.stories.tsx', - hash: '11215602148714725309', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/ScrollLoading.stories.tsx', - hash: '1876399932572606927', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/ScrollTo.stories.tsx', - hash: '10867398943529884768', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamicDescription.md', - hash: '11114530826542561672', - }, - { - file: 'packages/react-components/react-virtualizer/stories/VirtualizerScrollViewDynamic/index.stories.ts', - hash: '17243437446105887357', - }, - { file: 'packages/react-components/react-virtualizer/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-virtualizer/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-virtualizer/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/scripts-github': [ - { file: 'scripts/github/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/github/jest.config.js', hash: '8128260008604718717' }, - { file: 'scripts/github/package.json', hash: '5070381828275052321' }, - { file: 'scripts/github/project.json', hash: '6576404163705013612' }, - { file: 'scripts/github/src/constants.ts', hash: '10180569673778437792' }, - { file: 'scripts/github/src/index.ts', hash: '17300117057778175664' }, - { file: 'scripts/github/src/pullRequests.ts', hash: '4776695204948789570' }, - { file: 'scripts/github/src/types.ts', hash: '10055482745627176296' }, - { file: 'scripts/github/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/github/tsconfig.lib.json', hash: '15222053984038389170' }, - { file: 'scripts/github/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-focus': [ - { file: 'packages/react-focus/.eslintrc.js', hash: '11599896202272347932' }, - { file: 'packages/react-focus/.npmignore', hash: '47056201363133096' }, - { file: 'packages/react-focus/CHANGELOG.json', hash: '11397692279063814692' }, - { file: 'packages/react-focus/CHANGELOG.md', hash: '9242204259519410788' }, - { file: 'packages/react-focus/LICENSE', hash: '7265601084779359537' }, - { file: 'packages/react-focus/README.md', hash: '18222287515603784300' }, - { file: 'packages/react-focus/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/react-focus/config/tests.js', hash: '2484785926023527183' }, - { file: 'packages/react-focus/etc/react-focus.api.md', hash: '8432716012628281751' }, - { file: 'packages/react-focus/jest.config.js', hash: '8193037916930093299' }, - { file: 'packages/react-focus/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-focus/package.json', - hash: '1454256065022966065', - deps: [ - '@fluentui/keyboard-key', - '@fluentui/merge-styles', - '@fluentui/set-version', - '@fluentui/style-utilities', - '@fluentui/utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/test-utilities', - '@fluentui/jest-serializer-merge-styles', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-focus/project.json', hash: '12135015730228535780' }, - { file: 'packages/react-focus/src/common/isConformant.ts', hash: '17939211175933685277' }, - { - file: 'packages/react-focus/src/components/FocusZone/FocusZone.EventHandler.test.tsx', - hash: '16947583524623201794', - }, - { - file: 'packages/react-focus/src/components/FocusZone/FocusZone.deprecated.test.tsx', - hash: '16034862313093379614', - }, - { file: 'packages/react-focus/src/components/FocusZone/FocusZone.test.tsx', hash: '11650445686348954059' }, - { file: 'packages/react-focus/src/components/FocusZone/FocusZone.tsx', hash: '828175718691919235' }, - { file: 'packages/react-focus/src/components/FocusZone/FocusZone.types.ts', hash: '3786532300293271588' }, - { - file: 'packages/react-focus/src/components/FocusZone/__snapshots__/FocusZone.deprecated.test.tsx.snap', - hash: '4503134291514100538', - }, - { - file: 'packages/react-focus/src/components/FocusZone/__snapshots__/FocusZone.test.tsx.snap', - hash: '1103751063082866005', - }, - { file: 'packages/react-focus/src/components/FocusZone/index.ts', hash: '4235833670383521310' }, - { file: 'packages/react-focus/src/index.ts', hash: '9196176394022516894' }, - { file: 'packages/react-focus/src/version.ts', hash: '1527424341116993644' }, - { file: 'packages/react-focus/tsconfig.json', hash: '9970069326013741624' }, - { file: 'packages/react-focus/webpack.config.js', hash: '16051215899742671889' }, - ], - '@fluentui/test-utilities': [ - { file: 'packages/test-utilities/.eslintrc.json', hash: '9627670268003919245' }, - { file: 'packages/test-utilities/.npmignore', hash: '47056201363133096' }, - { file: 'packages/test-utilities/CHANGELOG.json', hash: '6925444267223690531' }, - { file: 'packages/test-utilities/CHANGELOG.md', hash: '245017999491184014' }, - { file: 'packages/test-utilities/LICENSE', hash: '17713567152459448383' }, - { file: 'packages/test-utilities/README.md', hash: '11222179757855280088' }, - { file: 'packages/test-utilities/jest.config.js', hash: '8457350006614220129' }, - { file: 'packages/test-utilities/just.config.ts', hash: '2411455081002746933' }, - { - file: 'packages/test-utilities/package.json', - hash: '15251649362734981725', - deps: [ - '@fluentui/eslint-plugin', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:enzyme', - 'npm:react', - 'npm:react-test-renderer', - ], - }, - { file: 'packages/test-utilities/project.json', hash: '6621699011379255295' }, - { file: 'packages/test-utilities/src/createTestContainer.ts', hash: '11747895423438256529' }, - { file: 'packages/test-utilities/src/getCSSRules.test.ts', hash: '11036085907418427536' }, - { file: 'packages/test-utilities/src/getCSSRules.ts', hash: '2768262409733817568' }, - { file: 'packages/test-utilities/src/index.ts', hash: '6090673740632506280' }, - { file: 'packages/test-utilities/src/reactTestRenderer.ts', hash: '7045247159912462473' }, - { file: 'packages/test-utilities/src/safeCreate.ts', hash: '9642739023254695591' }, - { file: 'packages/test-utilities/src/safeMount.ts', hash: '6689811110183811221' }, - { file: 'packages/test-utilities/tsconfig.json', hash: '13522081573676588409' }, - ], - '@fluentui/web-components': [ - { file: 'packages/web-components/.eslintignore', hash: '5775863605913830991' }, - { file: 'packages/web-components/.eslintrc.js', hash: '14755478749016622181' }, - { file: 'packages/web-components/.mocharc.json', hash: '15702441908913539244' }, - { file: 'packages/web-components/.npmignore', hash: '4758005407379917060' }, - { file: 'packages/web-components/.storybook/main.js', hash: '6854078585881544184' }, - { file: 'packages/web-components/.storybook/manager-head.html', hash: '1303988664724770496' }, - { file: 'packages/web-components/.storybook/manager.js', hash: '9922702844286404452' }, - { file: 'packages/web-components/.storybook/preview-body.html', hash: '8850778173875476467' }, - { file: 'packages/web-components/.storybook/preview-head.html', hash: '13062935119136599012' }, - { file: 'packages/web-components/.storybook/preview.js', hash: '12365267785927470531' }, - { file: 'packages/web-components/.storybook/theme.js', hash: '18352466443106182508' }, - { file: 'packages/web-components/CHANGELOG.json', hash: '8058481764020614289' }, - { file: 'packages/web-components/CHANGELOG.md', hash: '6384940985575291649' }, - { file: 'packages/web-components/README.md', hash: '4957194106169855827' }, - { file: 'packages/web-components/api-extractor.json', hash: '9874037910410511459' }, - { file: 'packages/web-components/build/clean.js', hash: '11994715428858511375' }, - { file: 'packages/web-components/build/transform-fragments.js', hash: '1955758831314508427' }, - { file: 'packages/web-components/docs/api-report.md', hash: '844890942029344443' }, - { file: 'packages/web-components/karma.conf.js', hash: '14430480556588129331' }, - { - file: 'packages/web-components/package.json', - hash: '15722874774916562492', - deps: [ - 'npm:@microsoft/fast-colors', - 'npm:@microsoft/fast-element', - 'npm:@microsoft/fast-foundation', - 'npm:@microsoft/fast-web-utilities', - 'npm:tslib', - 'npm:@types/chai', - 'npm:@types/chai-spies', - 'npm:@types/karma', - 'npm:@types/mocha', - 'npm:chai', - 'npm:chai-spies', - 'npm:esm', - 'npm:ignore-loader', - 'npm:istanbul', - 'npm:istanbul-instrumenter-loader', - 'npm:jsdom-global', - 'npm:karma', - 'npm:karma-chrome-launcher', - 'npm:karma-coverage', - 'npm:karma-coverage-istanbul-reporter', - 'npm:karma-firefox-launcher', - 'npm:karma-mocha', - 'npm:karma-mocha-reporter', - 'npm:karma-source-map-support', - 'npm:karma-sourcemap-loader', - 'npm:karma-webpack', - 'npm:mocha', - ], - }, - { file: 'packages/web-components/project.json', hash: '7492841716046999594' }, - { file: 'packages/web-components/public/SegoeUI-VF.ttf', hash: '159686266127969426' }, - { file: 'packages/web-components/public/favicon.ico', hash: '16917280242094002623' }, - { file: 'packages/web-components/public/favicon.png', hash: '16917280242094002623' }, - { file: 'packages/web-components/public/switches.ts', hash: '14622635503477959780' }, - { file: 'packages/web-components/rollup.config.js', hash: '7231520777044994700' }, - { file: 'packages/web-components/src/__test__/setup-browser.ts', hash: '6393925655190445281' }, - { file: 'packages/web-components/src/__test__/setup-node.ts', hash: '10490210284254745630' }, - { file: 'packages/web-components/src/_docs/design-system/color-explorer/app.ts', hash: '16525852101308145550' }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/colors.ts', - hash: '11069410898767285125', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/component-types.ts', - hash: '2864670655219117529', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-block.ts', - hash: '1726259444168974953', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/README.md', - hash: '573207147273672762', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.form-associated.ts', - hash: '4081018318203536876', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.styles.ts', - hash: '14217737468289347354', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.template.ts', - hash: '6460489283275707263', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/color-picker.ts', - hash: '1188287099420052879', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/color-picker/index.ts', - hash: '4796903837287128591', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.styles.ts', - hash: '13389882208060587252', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.template.ts', - hash: '7850318752774051418', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/control-pane.ts', - hash: '752439651934052007', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/control-pane/index.ts', - hash: '11120522045483047713', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.styles.ts', - hash: '3501318262647633045', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.template.ts', - hash: '6158298528985374425', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/gradient/gradient.ts', - hash: '7588390216618702944', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/gradient/index.ts', - hash: '2196251964914651675', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/layer-background/index.ts', - hash: '18236296328006163975', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/index.ts', - hash: '16377584099774881830', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.styles.ts', - hash: '12061728961981948522', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.template.ts', - hash: '4788615482582359415', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-app/sample-app.ts', - hash: '16153773168746232984', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/index.ts', - hash: '6340537480537054989', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.styles.ts', - hash: '9130564643805750499', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.template.ts', - hash: '12771066886177107872', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/sample-page/sample-page.ts', - hash: '9635151930465854500', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/components/swatch.ts', - hash: '2374441040995379727', - }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer/custom-elements.ts', - hash: '16005845429757574099', - }, - { file: 'packages/web-components/src/_docs/design-system/color-explorer/index.ts', hash: '4139861018587252333' }, - { - file: 'packages/web-components/src/_docs/design-system/color-explorer.stories.mdx', - hash: '6027445366609787259', - }, - { - file: 'packages/web-components/src/_docs/design-system/design-tokens.stories.mdx', - hash: '4311551588301406129', - }, - { - file: 'packages/web-components/src/_docs/design-system/high-contrast.stories.mdx', - hash: '1191903792423292585', - }, - { - file: 'packages/web-components/src/_docs/getting-started/customization.stories.mdx', - hash: '6142489713038292709', - }, - { - file: 'packages/web-components/src/_docs/getting-started/installation.stories.mdx', - hash: '11992526890383732411', - }, - { file: 'packages/web-components/src/_docs/getting-started/overview.stories.mdx', hash: '15478620496390793328' }, - { file: 'packages/web-components/src/_docs/integrations/angular.stories.mdx', hash: '6548470739007879103' }, - { file: 'packages/web-components/src/_docs/integrations/asp-net.stories.mdx', hash: '1204259937998840622' }, - { file: 'packages/web-components/src/_docs/integrations/aurelia.stories.mdx', hash: '16909805295122252141' }, - { file: 'packages/web-components/src/_docs/integrations/blazor.stories.mdx', hash: '3869770627389256989' }, - { file: 'packages/web-components/src/_docs/integrations/ember.stories.mdx', hash: '4203072166496955732' }, - { file: 'packages/web-components/src/_docs/integrations/introduction.stories.mdx', hash: '12602937042859133081' }, - { file: 'packages/web-components/src/_docs/integrations/react.stories.mdx', hash: '13708967245288712513' }, - { file: 'packages/web-components/src/_docs/integrations/vue.stories.mdx', hash: '6426963800392484861' }, - { file: 'packages/web-components/src/_docs/integrations/webpack.stories.mdx', hash: '13317554170485302751' }, - { file: 'packages/web-components/src/_docs/resources/browsersupport.stories.mdx', hash: '6524546059336092673' }, - { file: 'packages/web-components/src/_docs/resources/faq.stories.mdx', hash: '1456453727682391063' }, - { file: 'packages/web-components/src/_docs/resources/license.stories.mdx', hash: '17683392767993753638' }, - { file: 'packages/web-components/src/_docs/resources/security.stories.mdx', hash: '3322758800487682588' }, - { - file: 'packages/web-components/src/accordion/accordion-item/accordion-item.styles.ts', - hash: '14627617678842515919', - }, - { - file: 'packages/web-components/src/accordion/accordion-item/accordion-item.vscode.definition.json', - hash: '10920057210901896913', - }, - { file: 'packages/web-components/src/accordion/accordion-item/index.ts', hash: '4286703823452132924' }, - { file: 'packages/web-components/src/accordion/accordion.stories.ts', hash: '2382937437500019241' }, - { file: 'packages/web-components/src/accordion/accordion.styles.ts', hash: '2616249570117394811' }, - { file: 'packages/web-components/src/accordion/accordion.vscode.definition.json', hash: '3672417981681016275' }, - { file: 'packages/web-components/src/accordion/fixtures/base.html', hash: '3024182331118481628' }, - { file: 'packages/web-components/src/accordion/index.ts', hash: '15914740497616545827' }, - { file: 'packages/web-components/src/anchor/anchor.stories.ts', hash: '9035706192012038979' }, - { file: 'packages/web-components/src/anchor/anchor.styles.ts', hash: '15465582227507334647' }, - { file: 'packages/web-components/src/anchor/anchor.vscode.definition.json', hash: '8651034818913508540' }, - { file: 'packages/web-components/src/anchor/fixtures/anchor.html', hash: '1883443565225204972' }, - { file: 'packages/web-components/src/anchor/index.ts', hash: '9458058924011538243' }, - { file: 'packages/web-components/src/anchored-region/anchored-region.stories.ts', hash: '6610076333735702586' }, - { file: 'packages/web-components/src/anchored-region/anchored-region.styles.ts', hash: '2080261711970935100' }, - { - file: 'packages/web-components/src/anchored-region/anchored-region.vscode.definition.json', - hash: '7027541124759585311', - }, - { - file: 'packages/web-components/src/anchored-region/fixtures/anchored-region.html', - hash: '13833082773725244734', - }, - { file: 'packages/web-components/src/anchored-region/fixtures/base.html', hash: '10206902182629300261' }, - { file: 'packages/web-components/src/anchored-region/index.ts', hash: '14805381512806178877' }, - { file: 'packages/web-components/src/badge/badge.stories.ts', hash: '7829870913424487971' }, - { file: 'packages/web-components/src/badge/badge.styles.ts', hash: '12835744543244711667' }, - { file: 'packages/web-components/src/badge/badge.vscode.definition.json', hash: '9410590778436486830' }, - { file: 'packages/web-components/src/badge/fixtures/badge.html', hash: '16582051032870590828' }, - { file: 'packages/web-components/src/badge/index.ts', hash: '6337176198244249127' }, - { file: 'packages/web-components/src/breadcrumb/breadcrumb.stories.ts', hash: '5576414352984007107' }, - { file: 'packages/web-components/src/breadcrumb/breadcrumb.styles.ts', hash: '9025531678944737635' }, - { - file: 'packages/web-components/src/breadcrumb/breadcrumb.vscode.definition.json', - hash: '15362924125727856865', - }, - { file: 'packages/web-components/src/breadcrumb/fixtures/breadcrumb.html', hash: '17580794197360813354' }, - { file: 'packages/web-components/src/breadcrumb/index.ts', hash: '12107279212669363072' }, - { file: 'packages/web-components/src/breadcrumb-item/breadcrumb-item.stories.ts', hash: '13923942058307616526' }, - { file: 'packages/web-components/src/breadcrumb-item/breadcrumb-item.styles.ts', hash: '5697066427813550138' }, - { - file: 'packages/web-components/src/breadcrumb-item/breadcrumb-item.vscode.definition.json', - hash: '14973238164249621524', - }, - { - file: 'packages/web-components/src/breadcrumb-item/fixtures/breadcrumb-item.html', - hash: '2256941841461897698', - }, - { file: 'packages/web-components/src/breadcrumb-item/index.ts', hash: '10170598475715757416' }, - { file: 'packages/web-components/src/button/button.stories.ts', hash: '15149950852222389704' }, - { file: 'packages/web-components/src/button/button.styles.ts', hash: '5581033725893685730' }, - { file: 'packages/web-components/src/button/button.vscode.definition.json', hash: '10606722258837298009' }, - { file: 'packages/web-components/src/button/fixtures/button.html', hash: '16048526820639725636' }, - { file: 'packages/web-components/src/button/index.ts', hash: '10025134503936741972' }, - { file: 'packages/web-components/src/calendar/calendar.stories.ts', hash: '5415731527118018368' }, - { file: 'packages/web-components/src/calendar/calendar.styles.ts', hash: '16178939379219751620' }, - { file: 'packages/web-components/src/calendar/calendar.vscode.definition.json', hash: '16600596959429761196' }, - { file: 'packages/web-components/src/calendar/index.ts', hash: '15025313120163570844' }, - { file: 'packages/web-components/src/card/README.md', hash: '11211708820769945594' }, - { file: 'packages/web-components/src/card/card.stories.ts', hash: '12665353260196568301' }, - { file: 'packages/web-components/src/card/card.styles.ts', hash: '6642788192196104020' }, - { file: 'packages/web-components/src/card/card.vscode.definition.json', hash: '17543345289019782769' }, - { file: 'packages/web-components/src/card/fixtures/card.html', hash: '6380789712877866529' }, - { file: 'packages/web-components/src/card/index.ts', hash: '5042732203638931431' }, - { file: 'packages/web-components/src/checkbox/checkbox.stories.ts', hash: '13426973479653470345' }, - { file: 'packages/web-components/src/checkbox/checkbox.styles.ts', hash: '17928013517930224953' }, - { file: 'packages/web-components/src/checkbox/checkbox.vscode.definition.json', hash: '16978196820818757251' }, - { file: 'packages/web-components/src/checkbox/fixtures/checkbox.html', hash: '6155825574223549734' }, - { file: 'packages/web-components/src/checkbox/index.ts', hash: '17137250591561709651' }, - { file: 'packages/web-components/src/color/README.md', hash: '4936538017083268507' }, - { file: 'packages/web-components/src/color/palette.ts', hash: '6346372797428139526' }, - { file: 'packages/web-components/src/color/recipe.ts', hash: '17848275818537597627' }, - { - file: 'packages/web-components/src/color/recipes/contrast-and-delta-swatch-set.ts', - hash: '8821478327577403201', - }, - { file: 'packages/web-components/src/color/recipes/contrast-swatch.spec.ts', hash: '6763034643025562411' }, - { file: 'packages/web-components/src/color/recipes/contrast-swatch.ts', hash: '7186179222835665608' }, - { file: 'packages/web-components/src/color/recipes/delta-swatch-set.ts', hash: '7250566564026757202' }, - { file: 'packages/web-components/src/color/recipes/delta-swatch.ts', hash: '5230101181632974034' }, - { file: 'packages/web-components/src/color/recipes/focus-stroke.ts', hash: '11313432750226566291' }, - { file: 'packages/web-components/src/color/recipes/foreground-on-accent.spec.ts', hash: '8984772606233286102' }, - { file: 'packages/web-components/src/color/recipes/foreground-on-accent.ts', hash: '7868139582681267883' }, - { file: 'packages/web-components/src/color/recipes/gradient-shadow-stroke.ts', hash: '1080599906647216754' }, - { file: 'packages/web-components/src/color/recipes/gradient-swatch.ts', hash: '16930925285077040022' }, - { file: 'packages/web-components/src/color/recipes/neutral-layer-1.ts', hash: '16539227990178814071' }, - { file: 'packages/web-components/src/color/recipes/neutral-layer-2.ts', hash: '2950854254364558014' }, - { file: 'packages/web-components/src/color/recipes/neutral-layer-3.ts', hash: '1932920790538911795' }, - { file: 'packages/web-components/src/color/recipes/neutral-layer-4.ts', hash: '13763578604655049880' }, - { file: 'packages/web-components/src/color/recipes/neutral-layer-floating.ts', hash: '10634764317331887319' }, - { file: 'packages/web-components/src/color/recipes/neutral-layer.spec.ts', hash: '17728122078622142462' }, - { file: 'packages/web-components/src/color/recipes/underline-stroke.ts', hash: '2940626098590149659' }, - { file: 'packages/web-components/src/color/swatch.ts', hash: '1182115399952126154' }, - { file: 'packages/web-components/src/color/utilities/base-layer-luminance.ts', hash: '908846549069598899' }, - { file: 'packages/web-components/src/color/utilities/binary-search.ts', hash: '15965810484399746558' }, - { file: 'packages/web-components/src/color/utilities/color-constants.ts', hash: '911283116326368460' }, - { file: 'packages/web-components/src/color/utilities/direction-by-is-dark.ts', hash: '18271209538472530614' }, - { file: 'packages/web-components/src/color/utilities/is-dark.ts', hash: '6499864583431099903' }, - { file: 'packages/web-components/src/color/utilities/relative-luminance.ts', hash: '14920099726333320744' }, - { file: 'packages/web-components/src/combobox/combobox.stories.ts', hash: '17737189549554104347' }, - { file: 'packages/web-components/src/combobox/combobox.styles.ts', hash: '3612590046027629706' }, - { file: 'packages/web-components/src/combobox/combobox.vscode.definition.json', hash: '9215948502134970537' }, - { file: 'packages/web-components/src/combobox/fixtures/base.html', hash: '6377341256028355854' }, - { file: 'packages/web-components/src/combobox/index.ts', hash: '3868760329188361549' }, - { file: 'packages/web-components/src/component-definitions.js', hash: '11596938288017647617' }, - { file: 'packages/web-components/src/custom-elements.ts', hash: '6853381506349662742' }, - { file: 'packages/web-components/src/data-grid/data-grid-cell.styles.ts', hash: '6470686871497764974' }, - { - file: 'packages/web-components/src/data-grid/data-grid-cell.vscode.definition.json', - hash: '9813169389670938623', - }, - { file: 'packages/web-components/src/data-grid/data-grid-row.styles.ts', hash: '11995342787697800927' }, - { - file: 'packages/web-components/src/data-grid/data-grid-row.vscode.definition.json', - hash: '11698027083491170633', - }, - { file: 'packages/web-components/src/data-grid/data-grid.stories.ts', hash: '195082341198715577' }, - { file: 'packages/web-components/src/data-grid/data-grid.styles.ts', hash: '13015545836734548464' }, - { file: 'packages/web-components/src/data-grid/data-grid.vscode.definition.json', hash: '306394395578200698' }, - { file: 'packages/web-components/src/data-grid/fixtures/base.html', hash: '2029975176933840135' }, - { file: 'packages/web-components/src/data-grid/index.ts', hash: '4479416102272360583' }, - { - file: 'packages/web-components/src/design-system-provider/design-system-provider.vscode.definition.json', - hash: '6893455381211055281', - }, - { file: 'packages/web-components/src/design-system-provider/index.ts', hash: '3408274569365595348' }, - { file: 'packages/web-components/src/design-tokens.ts', hash: '1346759514197492713' }, - { file: 'packages/web-components/src/dialog/dialog.stories.ts', hash: '2154549264856264739' }, - { file: 'packages/web-components/src/dialog/dialog.styles.ts', hash: '5515912159065122827' }, - { file: 'packages/web-components/src/dialog/dialog.vscode.definition.json', hash: '16390661561666024442' }, - { file: 'packages/web-components/src/dialog/fixtures/dialog-button-test.html', hash: '11659848668155489028' }, - { file: 'packages/web-components/src/dialog/fixtures/dialog.html', hash: '9387354624656226834' }, - { file: 'packages/web-components/src/dialog/index.ts', hash: '13366407519684789611' }, - { file: 'packages/web-components/src/divider/divider.stories.ts', hash: '17515431205036180141' }, - { file: 'packages/web-components/src/divider/divider.styles.ts', hash: '6522522780375068846' }, - { file: 'packages/web-components/src/divider/divider.vscode.definition.json', hash: '6566644835494387709' }, - { file: 'packages/web-components/src/divider/fixtures/divider.html', hash: '16919230271383725260' }, - { file: 'packages/web-components/src/divider/index.ts', hash: '8744051297202798600' }, - { file: 'packages/web-components/src/flipper/fixtures/flipper.html', hash: '18037503031749648176' }, - { file: 'packages/web-components/src/flipper/flipper.stories.ts', hash: '2029950660051487243' }, - { file: 'packages/web-components/src/flipper/flipper.styles.ts', hash: '4668183589375500408' }, - { file: 'packages/web-components/src/flipper/flipper.vscode.definition.json', hash: '12395863857403691147' }, - { file: 'packages/web-components/src/flipper/index.ts', hash: '6961115814822049464' }, - { file: 'packages/web-components/src/fluent-design-system.ts', hash: '5328357756403196513' }, - { - file: 'packages/web-components/src/horizontal-scroll/fixtures/horizontal-scroll.html', - hash: '7407142165672045966', - }, - { - file: 'packages/web-components/src/horizontal-scroll/horizontal-scroll.stories.ts', - hash: '4659753969493120079', - }, - { - file: 'packages/web-components/src/horizontal-scroll/horizontal-scroll.styles.ts', - hash: '17117201230261875828', - }, - { - file: 'packages/web-components/src/horizontal-scroll/horizontal-scroll.vscode.definition.json', - hash: '15741080570528073250', - }, - { file: 'packages/web-components/src/horizontal-scroll/index.ts', hash: '3921419103069630757' }, - { file: 'packages/web-components/src/index-rollup.ts', hash: '12034689146002278856' }, - { file: 'packages/web-components/src/index.ts', hash: '11220157624258882526' }, - { file: 'packages/web-components/src/listbox/fixtures/base.html', hash: '17450593149878454417' }, - { file: 'packages/web-components/src/listbox/index.ts', hash: '16849842894902376949' }, - { file: 'packages/web-components/src/listbox/listbox.stories.ts', hash: '13218899992076915796' }, - { file: 'packages/web-components/src/listbox/listbox.styles.ts', hash: '13134007790432984126' }, - { file: 'packages/web-components/src/listbox/listbox.vscode.definition.json', hash: '2285504249297576385' }, - { file: 'packages/web-components/src/listbox-option/fixtures/base.html', hash: '3298043976123174324' }, - { file: 'packages/web-components/src/listbox-option/index.ts', hash: '16884845165196211430' }, - { file: 'packages/web-components/src/listbox-option/listbox-option.stories.ts', hash: '3911485353912942204' }, - { file: 'packages/web-components/src/listbox-option/listbox-option.styles.ts', hash: '5472503796825828800' }, - { - file: 'packages/web-components/src/listbox-option/listbox-option.vscode.definition.json', - hash: '12169738874365537443', - }, - { file: 'packages/web-components/src/menu/README.md', hash: '4690086985797850547' }, - { file: 'packages/web-components/src/menu/fixtures/menu.html', hash: '5223795368357672574' }, - { file: 'packages/web-components/src/menu/index.ts', hash: '12984518409457391743' }, - { file: 'packages/web-components/src/menu/menu.stories.ts', hash: '1915731898569110702' }, - { file: 'packages/web-components/src/menu/menu.styles.ts', hash: '18032407382470608123' }, - { file: 'packages/web-components/src/menu/menu.vscode.definition.json', hash: '18361015692746540616' }, - { file: 'packages/web-components/src/menu-item/README.md', hash: '2471380614271240054' }, - { file: 'packages/web-components/src/menu-item/fixtures/menu-item.html', hash: '5477478551196226019' }, - { file: 'packages/web-components/src/menu-item/index.ts', hash: '13279240957752518825' }, - { file: 'packages/web-components/src/menu-item/menu-item.stories.ts', hash: '15838076638865005660' }, - { file: 'packages/web-components/src/menu-item/menu-item.styles.ts', hash: '2974801370502077276' }, - { file: 'packages/web-components/src/menu-item/menu-item.vscode.definition.json', hash: '4234336076730373087' }, - { file: 'packages/web-components/src/number-field/fixtures/number-field.html', hash: '12708685999913269967' }, - { file: 'packages/web-components/src/number-field/index.ts', hash: '17115789385951625638' }, - { file: 'packages/web-components/src/number-field/number-field.stories.ts', hash: '10394814183714311962' }, - { file: 'packages/web-components/src/number-field/number-field.styles.ts', hash: '14623549441627572541' }, - { - file: 'packages/web-components/src/number-field/number-field.vscode.definition.json', - hash: '17028415243423832455', - }, - { file: 'packages/web-components/src/progress/index.ts', hash: '9496752774618153345' }, - { file: 'packages/web-components/src/progress/progress/fixtures/linear.html', hash: '14829341784378032052' }, - { file: 'packages/web-components/src/progress/progress/index.ts', hash: '8564604076877239707' }, - { file: 'packages/web-components/src/progress/progress/progress.stories.ts', hash: '10058603555464601723' }, - { file: 'packages/web-components/src/progress/progress/progress.styles.ts', hash: '7330116120779358919' }, - { - file: 'packages/web-components/src/progress/progress/progress.vscode.definition.json', - hash: '643769287652126004', - }, - { file: 'packages/web-components/src/progress/progress-ring/fixtures/circular.html', hash: '996605311265918770' }, - { file: 'packages/web-components/src/progress/progress-ring/index.ts', hash: '3669697685676353985' }, - { - file: 'packages/web-components/src/progress/progress-ring/progress-ring.stories.ts', - hash: '5925755196880654290', - }, - { - file: 'packages/web-components/src/progress/progress-ring/progress-ring.styles.ts', - hash: '13716354703004415471', - }, - { - file: 'packages/web-components/src/progress/progress-ring/progress-ring.vscode.definition.json', - hash: '1596825291672570393', - }, - { file: 'packages/web-components/src/radio/fixtures/radio.html', hash: '3697080352666891110' }, - { file: 'packages/web-components/src/radio/index.ts', hash: '9493466062086373076' }, - { file: 'packages/web-components/src/radio/radio.stories.ts', hash: '16960884279123718841' }, - { file: 'packages/web-components/src/radio/radio.styles.ts', hash: '15891108481971467349' }, - { file: 'packages/web-components/src/radio/radio.vscode.definition.json', hash: '15322865574627303302' }, - { file: 'packages/web-components/src/radio-group/fixtures/radio-group.html', hash: '3544612516605771549' }, - { file: 'packages/web-components/src/radio-group/index.ts', hash: '10678490228381938292' }, - { file: 'packages/web-components/src/radio-group/radio-group.stories.ts', hash: '13806414560882825653' }, - { file: 'packages/web-components/src/radio-group/radio-group.styles.ts', hash: '8385177110378110077' }, - { - file: 'packages/web-components/src/radio-group/radio-group.vscode.definition.json', - hash: '9271414887629310175', - }, - { file: 'packages/web-components/src/search/fixtures/search.html', hash: '6265150396064403674' }, - { file: 'packages/web-components/src/search/index.ts', hash: '8294135650557793902' }, - { file: 'packages/web-components/src/search/search.stories.ts', hash: '216592019599942783' }, - { file: 'packages/web-components/src/search/search.styles.ts', hash: '13868212863949268972' }, - { file: 'packages/web-components/src/search/search.template.ts', hash: '4266947506982034813' }, - { file: 'packages/web-components/src/search/search.vscode.definition.json', hash: '3563472923699786280' }, - { file: 'packages/web-components/src/select/fixtures/base.html', hash: '11891972925697834096' }, - { file: 'packages/web-components/src/select/index.ts', hash: '15687565201409112674' }, - { file: 'packages/web-components/src/select/select.stories.ts', hash: '5863175660897259663' }, - { file: 'packages/web-components/src/select/select.styles.ts', hash: '3712406194482296781' }, - { file: 'packages/web-components/src/select/select.vscode.definition.json', hash: '1271918521554254770' }, - { file: 'packages/web-components/src/skeleton/fixtures/base.html', hash: '3861851238801918486' }, - { file: 'packages/web-components/src/skeleton/index.ts', hash: '14218825009776077853' }, - { file: 'packages/web-components/src/skeleton/skeleton.stories.ts', hash: '16344059134848271871' }, - { file: 'packages/web-components/src/skeleton/skeleton.styles.ts', hash: '11569102660410314421' }, - { file: 'packages/web-components/src/skeleton/skeleton.vscode.definition.json', hash: '13776399384905340449' }, - { file: 'packages/web-components/src/slider/fixtures/slider.html', hash: '3716629413656055620' }, - { file: 'packages/web-components/src/slider/index.ts', hash: '5357812953333546672' }, - { file: 'packages/web-components/src/slider/slider.stories.ts', hash: '13123047633146822298' }, - { file: 'packages/web-components/src/slider/slider.styles.ts', hash: '1892611936955814405' }, - { file: 'packages/web-components/src/slider/slider.vscode.definition.json', hash: '483900830475074249' }, - { file: 'packages/web-components/src/slider-label/fixtures/slider-label.html', hash: '5161368272209451404' }, - { file: 'packages/web-components/src/slider-label/index.ts', hash: '4092561486820287710' }, - { file: 'packages/web-components/src/slider-label/slider-label.stories.ts', hash: '7954258599589121077' }, - { file: 'packages/web-components/src/slider-label/slider-label.styles.ts', hash: '15491455773337860108' }, - { - file: 'packages/web-components/src/slider-label/slider-label.vscode.definition.json', - hash: '12483410102321937264', - }, - { file: 'packages/web-components/src/storybook-typings.d.ts', hash: '3211079156530734795' }, - { file: 'packages/web-components/src/styles/direction.ts', hash: '12153415263316843969' }, - { file: 'packages/web-components/src/styles/elevation.ts', hash: '18412120983521623359' }, - { file: 'packages/web-components/src/styles/focus.ts', hash: '17539677533372493279' }, - { file: 'packages/web-components/src/styles/index.ts', hash: '6230421608586153211' }, - { file: 'packages/web-components/src/styles/patterns/button.styles.ts', hash: '5706917304841520211' }, - { file: 'packages/web-components/src/styles/patterns/index.ts', hash: '4458343837008236369' }, - { file: 'packages/web-components/src/styles/patterns/input.styles.ts', hash: '181101141302214379' }, - { file: 'packages/web-components/src/styles/patterns/type-ramp.ts', hash: '17065074643329213778' }, - { file: 'packages/web-components/src/styles/size.ts', hash: '15940819158744117174' }, - { file: 'packages/web-components/src/switch/fixtures/switch.html', hash: '10602632632551276568' }, - { file: 'packages/web-components/src/switch/index.ts', hash: '5179464485079991269' }, - { file: 'packages/web-components/src/switch/switch.stories.ts', hash: '3466964228880452094' }, - { file: 'packages/web-components/src/switch/switch.styles.ts', hash: '5702651356821793779' }, - { file: 'packages/web-components/src/switch/switch.vscode.definition.json', hash: '5174398227224275632' }, - { file: 'packages/web-components/src/tabs/fixtures/tabs.html', hash: '10764808029296259753' }, - { file: 'packages/web-components/src/tabs/index.ts', hash: '6864070573253276769' }, - { file: 'packages/web-components/src/tabs/tab/index.ts', hash: '7968168443944979516' }, - { file: 'packages/web-components/src/tabs/tab/tab.styles.ts', hash: '10696814832104289036' }, - { file: 'packages/web-components/src/tabs/tab/tab.vscode.definition.json', hash: '7548102164156459410' }, - { file: 'packages/web-components/src/tabs/tab-panel/index.ts', hash: '4232187005100764135' }, - { file: 'packages/web-components/src/tabs/tab-panel/tab-panel.styles.ts', hash: '15248109099456817024' }, - { - file: 'packages/web-components/src/tabs/tab-panel/tab-panel.vscode.definition.json', - hash: '5488351415097828677', - }, - { file: 'packages/web-components/src/tabs/tabs.stories.ts', hash: '2082227165927264768' }, - { file: 'packages/web-components/src/tabs/tabs.styles.ts', hash: '600355650265281296' }, - { file: 'packages/web-components/src/tabs/tabs.vscode.definition.json', hash: '9227590925350873549' }, - { file: 'packages/web-components/src/text-area/fixtures/text-area.html', hash: '17685073421574527347' }, - { file: 'packages/web-components/src/text-area/index.ts', hash: '12878684250332954269' }, - { file: 'packages/web-components/src/text-area/text-area.stories.ts', hash: '11877407321391546524' }, - { file: 'packages/web-components/src/text-area/text-area.styles.ts', hash: '15065223636243919006' }, - { file: 'packages/web-components/src/text-area/text-area.vscode.definition.json', hash: '7076320621770108386' }, - { file: 'packages/web-components/src/text-field/fixtures/text-field.html', hash: '15248188101787500482' }, - { file: 'packages/web-components/src/text-field/index.ts', hash: '1431468122200118439' }, - { file: 'packages/web-components/src/text-field/text-field.stories.ts', hash: '7013818112713918649' }, - { file: 'packages/web-components/src/text-field/text-field.styles.ts', hash: '12256332793993937125' }, - { - file: 'packages/web-components/src/text-field/text-field.vscode.definition.json', - hash: '15993315262587875629', - }, - { file: 'packages/web-components/src/toolbar/fixtures/toolbar.html', hash: '17064050504128491248' }, - { file: 'packages/web-components/src/toolbar/index.ts', hash: '12453222644810232136' }, - { file: 'packages/web-components/src/toolbar/toolbar.stories.ts', hash: '1697799914310593179' }, - { file: 'packages/web-components/src/toolbar/toolbar.styles.ts', hash: '4289308017211955597' }, - { file: 'packages/web-components/src/toolbar/toolbar.vscode.definition.json', hash: '16347874792378119250' }, - { file: 'packages/web-components/src/tooltip/fixtures/tooltip.html', hash: '12389500920015921635' }, - { file: 'packages/web-components/src/tooltip/index.ts', hash: '743200588034782954' }, - { file: 'packages/web-components/src/tooltip/tooltip.stories.ts', hash: '10665079383825093491' }, - { file: 'packages/web-components/src/tooltip/tooltip.styles.ts', hash: '11453551560318568053' }, - { file: 'packages/web-components/src/tooltip/tooltip.vscode.definition.json', hash: '255164464472711194' }, - { file: 'packages/web-components/src/tree-item/fixtures/tree-item.html', hash: '6727518786838440297' }, - { file: 'packages/web-components/src/tree-item/index.ts', hash: '16017492355039150238' }, - { file: 'packages/web-components/src/tree-item/tree-item.stories.ts', hash: '9783937195087600816' }, - { file: 'packages/web-components/src/tree-item/tree-item.styles.ts', hash: '2044030214397984029' }, - { file: 'packages/web-components/src/tree-item/tree-item.vscode.definition.json', hash: '16684450343776413349' }, - { file: 'packages/web-components/src/tree-view/fixtures/tree-view.html', hash: '3740603599119795018' }, - { file: 'packages/web-components/src/tree-view/index.ts', hash: '8827730462378185588' }, - { file: 'packages/web-components/src/tree-view/tree-view.stories.ts', hash: '7887196535139156937' }, - { file: 'packages/web-components/src/tree-view/tree-view.styles.ts', hash: '462034363628475408' }, - { file: 'packages/web-components/src/tree-view/tree-view.vscode.definition.json', hash: '10110096905446449680' }, - { file: 'packages/web-components/src/utilities/behaviors.ts', hash: '16191844928733345933' }, - { file: 'packages/web-components/src/utilities/type-ramp.ts', hash: '4704993640298765791' }, - { file: 'packages/web-components/storybook-typings.d.ts', hash: '3211079156530734795' }, - { file: 'packages/web-components/tsconfig.json', hash: '6412759596685248991' }, - ], - '@fluentui/typings': [ - { file: 'typings/README.md', hash: '10583482367772263258' }, - { file: 'typings/custom-global/README.md', hash: '5649541318408753542' }, - { file: 'typings/custom-global/index.d.ts', hash: '7011206993849892993' }, - { file: 'typings/custom-global/tsconfig.json', hash: '18038664144425018676' }, - { file: 'typings/environment/README.md', hash: '10578036741537756312' }, - { file: 'typings/environment/index.d.ts', hash: '12285001276050637139' }, - { file: 'typings/environment/tsconfig.json', hash: '18038664144425018676' }, - { file: 'typings/find-free-port/index.d.ts', hash: '2397853445417492311' }, - { file: 'typings/find-free-port/tsconfig.json', hash: '18038664144425018676' }, - { file: 'typings/ignore-not-found-export-webpack-plugin/index.d.ts', hash: '1725452347235429415' }, - { file: 'typings/ignore-not-found-export-webpack-plugin/tsconfig.json', hash: '4750736256261933835' }, - { file: 'typings/json-stable-stringify-without-jsonify/index.d.ts', hash: '18439733450073198259' }, - { file: 'typings/json-stable-stringify-without-jsonify/tsconfig.json', hash: '18038664144425018676' }, - { file: 'typings/lerna/index.d.ts', hash: '9898149106273015856' }, - { file: 'typings/lerna/tsconfig.json', hash: '18038664144425018676' }, - { file: 'typings/package.json', hash: '12934772172736494740' }, - { file: 'typings/project.json', hash: '12537270325437916372' }, - { file: 'typings/static-assets/README.md', hash: '17775554958060567487' }, - { file: 'typings/static-assets/index.d.ts', hash: '10117523410007827376' }, - { file: 'typings/static-assets/tsconfig.json', hash: '18038664144425018676' }, - { file: 'typings/storybook__addons/index.d.ts', hash: '13039226549181277056' }, - { file: 'typings/storybook__addons/tsconfig.json', hash: '18038664144425018676' }, - { file: 'typings/tsconfig.json', hash: '15097887487356030189' }, - ], - '@fluentui/react-icons-mdl2': [ - { file: 'packages/react-icons-mdl2/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/react-icons-mdl2/.npmignore', hash: '7699079327417375383' }, - { file: 'packages/react-icons-mdl2/CHANGELOG.json', hash: '1430423070199017856' }, - { file: 'packages/react-icons-mdl2/CHANGELOG.md', hash: '1264357153435679050' }, - { file: 'packages/react-icons-mdl2/LICENSE', hash: '9395811624481750314' }, - { file: 'packages/react-icons-mdl2/README.md', hash: '12012648870062646297' }, - { file: 'packages/react-icons-mdl2/config/tests.js', hash: '2484785926023527183' }, - { file: 'packages/react-icons-mdl2/jest.config.js', hash: '8193037916930093299' }, - { file: 'packages/react-icons-mdl2/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-icons-mdl2/package.json', - hash: '12554934536586602710', - deps: [ - 'npm:@microsoft/load-themed-styles', - '@fluentui/react-icon-provider', - '@fluentui/set-version', - '@fluentui/utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:react', - ], - }, - { file: 'packages/react-icons-mdl2/project.json', hash: '9405952407540858057' }, - { file: 'packages/react-icons-mdl2/src/components/AcceptIcon.tsx', hash: '13272820529719697754' }, - { file: 'packages/react-icons-mdl2/src/components/AcceptMediumIcon.tsx', hash: '233759165174457955' }, - { file: 'packages/react-icons-mdl2/src/components/AccessLogoIcon.tsx', hash: '10076820615385413143' }, - { file: 'packages/react-icons-mdl2/src/components/AccessibiltyCheckerIcon.tsx', hash: '17163154328238480502' }, - { file: 'packages/react-icons-mdl2/src/components/AccountActivityIcon.tsx', hash: '10083780395725044448' }, - { file: 'packages/react-icons-mdl2/src/components/AccountBrowserIcon.tsx', hash: '4886838405698581415' }, - { file: 'packages/react-icons-mdl2/src/components/AccountManagementIcon.tsx', hash: '14240924682416561361' }, - { file: 'packages/react-icons-mdl2/src/components/AccountsIcon.tsx', hash: '5091094539386694432' }, - { file: 'packages/react-icons-mdl2/src/components/ActionCenterIcon.tsx', hash: '7299586471180464700' }, - { file: 'packages/react-icons-mdl2/src/components/ActivateOrdersIcon.tsx', hash: '4724335180979374061' }, - { file: 'packages/react-icons-mdl2/src/components/ActivityFeedIcon.tsx', hash: '9930772763792149030' }, - { file: 'packages/react-icons-mdl2/src/components/AddBookmarkIcon.tsx', hash: '9685299498471779185' }, - { file: 'packages/react-icons-mdl2/src/components/AddEventIcon.tsx', hash: '9223382545511878618' }, - { file: 'packages/react-icons-mdl2/src/components/AddFavoriteFillIcon.tsx', hash: '13153789552411326133' }, - { file: 'packages/react-icons-mdl2/src/components/AddFavoriteIcon.tsx', hash: '16108295555277104516' }, - { file: 'packages/react-icons-mdl2/src/components/AddFriendIcon.tsx', hash: '11602302526096078759' }, - { file: 'packages/react-icons-mdl2/src/components/AddGroupIcon.tsx', hash: '8297395296545127141' }, - { file: 'packages/react-icons-mdl2/src/components/AddHomeIcon.tsx', hash: '11775157314316771124' }, - { file: 'packages/react-icons-mdl2/src/components/AddIcon.tsx', hash: '649995549095629328' }, - { file: 'packages/react-icons-mdl2/src/components/AddInIcon.tsx', hash: '5951209157788023487' }, - { file: 'packages/react-icons-mdl2/src/components/AddLinkIcon.tsx', hash: '7371973306206784109' }, - { file: 'packages/react-icons-mdl2/src/components/AddNotesIcon.tsx', hash: '4656052725575234588' }, - { file: 'packages/react-icons-mdl2/src/components/AddOnlineMeetingIcon.tsx', hash: '14406263341432389439' }, - { file: 'packages/react-icons-mdl2/src/components/AddPhoneIcon.tsx', hash: '3625529200821399716' }, - { file: 'packages/react-icons-mdl2/src/components/AddReactionIcon.tsx', hash: '13460751958280979491' }, - { file: 'packages/react-icons-mdl2/src/components/AddSpaceAfterIcon.tsx', hash: '15074348565770991976' }, - { file: 'packages/react-icons-mdl2/src/components/AddSpaceBeforeIcon.tsx', hash: '3142131346206110407' }, - { file: 'packages/react-icons-mdl2/src/components/AddToIcon.tsx', hash: '538841695346118641' }, - { file: 'packages/react-icons-mdl2/src/components/AddToShoppingListIcon.tsx', hash: '8565378581856667931' }, - { file: 'packages/react-icons-mdl2/src/components/AddWorkIcon.tsx', hash: '7602013393075909897' }, - { file: 'packages/react-icons-mdl2/src/components/AirTicketsIcon.tsx', hash: '17373350328176895637' }, - { file: 'packages/react-icons-mdl2/src/components/AirplaneIcon.tsx', hash: '5054051762224313358' }, - { file: 'packages/react-icons-mdl2/src/components/AirplaneSolidIcon.tsx', hash: '3959451231147223815' }, - { file: 'packages/react-icons-mdl2/src/components/AlarmClockIcon.tsx', hash: '4729092436626120955' }, - { file: 'packages/react-icons-mdl2/src/components/AlbumIcon.tsx', hash: '3945464638930199870' }, - { file: 'packages/react-icons-mdl2/src/components/AlbumRemoveIcon.tsx', hash: '11070708387356752287' }, - { file: 'packages/react-icons-mdl2/src/components/AlertSettingsIcon.tsx', hash: '16533100387166307350' }, - { file: 'packages/react-icons-mdl2/src/components/AlertSolidIcon.tsx', hash: '13010023221781344193' }, - { file: 'packages/react-icons-mdl2/src/components/AlignCenterIcon.tsx', hash: '17076325177021464640' }, - { file: 'packages/react-icons-mdl2/src/components/AlignHorizontalCenterIcon.tsx', hash: '14349572761959928148' }, - { file: 'packages/react-icons-mdl2/src/components/AlignHorizontalLeftIcon.tsx', hash: '9773512587719486081' }, - { file: 'packages/react-icons-mdl2/src/components/AlignHorizontalRightIcon.tsx', hash: '16947375829587998009' }, - { file: 'packages/react-icons-mdl2/src/components/AlignJustifyIcon.tsx', hash: '4802981133282120135' }, - { file: 'packages/react-icons-mdl2/src/components/AlignLeftIcon.tsx', hash: '17564125727224245385' }, - { file: 'packages/react-icons-mdl2/src/components/AlignRightIcon.tsx', hash: '5970481821484554499' }, - { file: 'packages/react-icons-mdl2/src/components/AlignVerticalBottomIcon.tsx', hash: '9971142954072746645' }, - { file: 'packages/react-icons-mdl2/src/components/AlignVerticalCenterIcon.tsx', hash: '351673482399466793' }, - { file: 'packages/react-icons-mdl2/src/components/AlignVerticalTopIcon.tsx', hash: '8851249200156919191' }, - { file: 'packages/react-icons-mdl2/src/components/AllAppsIcon.tsx', hash: '16292576204589409158' }, - { file: 'packages/react-icons-mdl2/src/components/AllAppsMirroredIcon.tsx', hash: '4672918375225717266' }, - { file: 'packages/react-icons-mdl2/src/components/AllCurrencyIcon.tsx', hash: '4596000769812652830' }, - { file: 'packages/react-icons-mdl2/src/components/AltTextIcon.tsx', hash: '17657616199898733800' }, - { file: 'packages/react-icons-mdl2/src/components/AmazonWebServicesLogoIcon.tsx', hash: '11765565114057427639' }, - { file: 'packages/react-icons-mdl2/src/components/AnalyticsQueryIcon.tsx', hash: '11433855487017698147' }, - { file: 'packages/react-icons-mdl2/src/components/AnalyticsReportIcon.tsx', hash: '18354054869655929023' }, - { file: 'packages/react-icons-mdl2/src/components/AnalyticsViewIcon.tsx', hash: '10418305492179508701' }, - { file: 'packages/react-icons-mdl2/src/components/AnchorLockIcon.tsx', hash: '3423082534614830402' }, - { file: 'packages/react-icons-mdl2/src/components/AndroidLogoIcon.tsx', hash: '14686412471023102815' }, - { file: 'packages/react-icons-mdl2/src/components/AnnotationIcon.tsx', hash: '11342377332737430043' }, - { file: 'packages/react-icons-mdl2/src/components/ApacheIvyLogo32Icon.tsx', hash: '2918134896312448658' }, - { file: 'packages/react-icons-mdl2/src/components/ApacheMavenLogoIcon.tsx', hash: '16399596079327715994' }, - { file: 'packages/react-icons-mdl2/src/components/ArchiveIcon.tsx', hash: '12280332357717161867' }, - { file: 'packages/react-icons-mdl2/src/components/ArchiveUndoIcon.tsx', hash: '10856545521803800470' }, - { file: 'packages/react-icons-mdl2/src/components/AreaChartIcon.tsx', hash: '5179382537274327584' }, - { file: 'packages/react-icons-mdl2/src/components/ArrangeBringForwardIcon.tsx', hash: '5433898051558651326' }, - { file: 'packages/react-icons-mdl2/src/components/ArrangeBringToFrontIcon.tsx', hash: '1505051143939122001' }, - { file: 'packages/react-icons-mdl2/src/components/ArrangeByFromIcon.tsx', hash: '11165324307950102881' }, - { file: 'packages/react-icons-mdl2/src/components/ArrangeSendBackwardIcon.tsx', hash: '3571562683944194254' }, - { file: 'packages/react-icons-mdl2/src/components/ArrangeSendToBackIcon.tsx', hash: '17278998742575976905' }, - { file: 'packages/react-icons-mdl2/src/components/ArrivalsIcon.tsx', hash: '18235477685319469615' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowDownRight8Icon.tsx', hash: '12907225691599052628' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowDownRightMirrored8Icon.tsx', hash: '4497171579545271048' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowTallDownLeftIcon.tsx', hash: '17174274091977555889' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowTallDownRightIcon.tsx', hash: '12343213447484503186' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowTallUpLeftIcon.tsx', hash: '5438583383881980943' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowTallUpRightIcon.tsx', hash: '5856822185825999666' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowUpRight8Icon.tsx', hash: '15423363474761989994' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowUpRightIcon.tsx', hash: '5633293037068413854' }, - { file: 'packages/react-icons-mdl2/src/components/ArrowUpRightMirrored8Icon.tsx', hash: '16226342630129853713' }, - { file: 'packages/react-icons-mdl2/src/components/ArticlesIcon.tsx', hash: '4505935511685500431' }, - { file: 'packages/react-icons-mdl2/src/components/AscendingIcon.tsx', hash: '17273836348684464916' }, - { file: 'packages/react-icons-mdl2/src/components/AspectRatioIcon.tsx', hash: '9472692140636682439' }, - { file: 'packages/react-icons-mdl2/src/components/AssessmentGroupIcon.tsx', hash: '9990042987655129422' }, - { file: 'packages/react-icons-mdl2/src/components/AssessmentGroupTemplateIcon.tsx', hash: '2062691050575372150' }, - { file: 'packages/react-icons-mdl2/src/components/AssetLibraryIcon.tsx', hash: '7791059590913763172' }, - { file: 'packages/react-icons-mdl2/src/components/AssignIcon.tsx', hash: '14743301672967242916' }, - { file: 'packages/react-icons-mdl2/src/components/AssignPolicyIcon.tsx', hash: '1142747429676413857' }, - { file: 'packages/react-icons-mdl2/src/components/AsteriskIcon.tsx', hash: '14432692334937635758' }, - { file: 'packages/react-icons-mdl2/src/components/AsteriskSolidIcon.tsx', hash: '10298288423353384806' }, - { file: 'packages/react-icons-mdl2/src/components/AttachIcon.tsx', hash: '11845773719191763640' }, - { file: 'packages/react-icons-mdl2/src/components/AustralianRulesIcon.tsx', hash: '4152554014500550815' }, - { file: 'packages/react-icons-mdl2/src/components/AutoDeploySettingsIcon.tsx', hash: '5682077687972027110' }, - { file: 'packages/react-icons-mdl2/src/components/AutoEnhanceOffIcon.tsx', hash: '3171393689469182643' }, - { file: 'packages/react-icons-mdl2/src/components/AutoEnhanceOnIcon.tsx', hash: '698710895866528245' }, - { file: 'packages/react-icons-mdl2/src/components/AutoFillTemplateIcon.tsx', hash: '13695873113605750361' }, - { file: 'packages/react-icons-mdl2/src/components/AutoFitContentsIcon.tsx', hash: '2501936783055150056' }, - { file: 'packages/react-icons-mdl2/src/components/AutoFitWindowIcon.tsx', hash: '13452477990359238332' }, - { file: 'packages/react-icons-mdl2/src/components/AutoHeightIcon.tsx', hash: '2752523469179302565' }, - { file: 'packages/react-icons-mdl2/src/components/AutoRacingIcon.tsx', hash: '3132079180733486488' }, - { file: 'packages/react-icons-mdl2/src/components/AutomateFlowIcon.tsx', hash: '16831072257370889941' }, - { file: 'packages/react-icons-mdl2/src/components/AwayStatusIcon.tsx', hash: '16196688126001285506' }, - { file: 'packages/react-icons-mdl2/src/components/BIDashboardIcon.tsx', hash: '18233375696995378311' }, - { file: 'packages/react-icons-mdl2/src/components/BackIcon.tsx', hash: '9049703118809299925' }, - { file: 'packages/react-icons-mdl2/src/components/BackToWindowIcon.tsx', hash: '11285424535009773565' }, - { file: 'packages/react-icons-mdl2/src/components/BackgroundColorIcon.tsx', hash: '13239767601679223355' }, - { file: 'packages/react-icons-mdl2/src/components/BacklogBoardIcon.tsx', hash: '15475298857584077772' }, - { file: 'packages/react-icons-mdl2/src/components/BacklogIcon.tsx', hash: '8025374010749681963' }, - { file: 'packages/react-icons-mdl2/src/components/BacklogListIcon.tsx', hash: '12282522729595068441' }, - { file: 'packages/react-icons-mdl2/src/components/BadgeIcon.tsx', hash: '18225924514525553158' }, - { file: 'packages/react-icons-mdl2/src/components/BalloonsIcon.tsx', hash: '13689663511218690347' }, - { file: 'packages/react-icons-mdl2/src/components/BankIcon.tsx', hash: '1418173345319401536' }, - { file: 'packages/react-icons-mdl2/src/components/BankSolidIcon.tsx', hash: '15889746559469221934' }, - { file: 'packages/react-icons-mdl2/src/components/BarChart4Icon.tsx', hash: '14519428920477073539' }, - { file: 'packages/react-icons-mdl2/src/components/BarChartHorizontalIcon.tsx', hash: '15035881198223458022' }, - { file: 'packages/react-icons-mdl2/src/components/BarChartVerticalEditIcon.tsx', hash: '10723949843818994593' }, - { file: 'packages/react-icons-mdl2/src/components/BarChartVerticalFillIcon.tsx', hash: '3129620341778946443' }, - { file: 'packages/react-icons-mdl2/src/components/BarChartVerticalFilterIcon.tsx', hash: '18371318246119377910' }, - { - file: 'packages/react-icons-mdl2/src/components/BarChartVerticalFilterSolidIcon.tsx', - hash: '14678037970012215655', - }, - { file: 'packages/react-icons-mdl2/src/components/BarChartVerticalIcon.tsx', hash: '12226677053677932853' }, - { file: 'packages/react-icons-mdl2/src/components/BaseballIcon.tsx', hash: '12818296635193741142' }, - { file: 'packages/react-icons-mdl2/src/components/BeerMugIcon.tsx', hash: '12665371620776874704' }, - { file: 'packages/react-icons-mdl2/src/components/BidiLtrIcon.tsx', hash: '10928894856767197769' }, - { file: 'packages/react-icons-mdl2/src/components/BidiRtlIcon.tsx', hash: '3395616160090573366' }, - { file: 'packages/react-icons-mdl2/src/components/BirthdayCakeIcon.tsx', hash: '576834721585654637' }, - { file: 'packages/react-icons-mdl2/src/components/BitbucketLogo32Icon.tsx', hash: '6575071044668833382' }, - { file: 'packages/react-icons-mdl2/src/components/BlobStorageIcon.tsx', hash: '13514398799207035118' }, - { file: 'packages/react-icons-mdl2/src/components/BlockContactIcon.tsx', hash: '11565246906910685738' }, - { file: 'packages/react-icons-mdl2/src/components/Blocked12Icon.tsx', hash: '13462460695764374955' }, - { file: 'packages/react-icons-mdl2/src/components/Blocked2Icon.tsx', hash: '2520160366904418187' }, - { file: 'packages/react-icons-mdl2/src/components/Blocked2SolidIcon.tsx', hash: '8458365681183234441' }, - { file: 'packages/react-icons-mdl2/src/components/BlockedIcon.tsx', hash: '3749446691227940562' }, - { file: 'packages/react-icons-mdl2/src/components/BlockedSiteIcon.tsx', hash: '12610611766096702608' }, - { file: 'packages/react-icons-mdl2/src/components/BlockedSiteSolid12Icon.tsx', hash: '13735398763025222883' }, - { file: 'packages/react-icons-mdl2/src/components/BlockedSolidIcon.tsx', hash: '11543517390104023728' }, - { file: 'packages/react-icons-mdl2/src/components/BlogIcon.tsx', hash: '15238138213428866603' }, - { file: 'packages/react-icons-mdl2/src/components/BlowingSnowIcon.tsx', hash: '15016544739088464871' }, - { file: 'packages/react-icons-mdl2/src/components/BlurIcon.tsx', hash: '15939225359960098363' }, - { file: 'packages/react-icons-mdl2/src/components/BoardsIcon.tsx', hash: '10829570643337490973' }, - { file: 'packages/react-icons-mdl2/src/components/BoldIcon.tsx', hash: '10380225123111595334' }, - { file: 'packages/react-icons-mdl2/src/components/BookAnswersIcon.tsx', hash: '14791394905429321702' }, - { file: 'packages/react-icons-mdl2/src/components/BookmarkReportIcon.tsx', hash: '4210713580408367132' }, - { file: 'packages/react-icons-mdl2/src/components/BookmarksIcon.tsx', hash: '15356635029801629161' }, - { file: 'packages/react-icons-mdl2/src/components/BookmarksMirroredIcon.tsx', hash: '875828057988760076' }, - { file: 'packages/react-icons-mdl2/src/components/BorderDashIcon.tsx', hash: '8829457069107821324' }, - { file: 'packages/react-icons-mdl2/src/components/BorderDotIcon.tsx', hash: '9240317214925189417' }, - { file: 'packages/react-icons-mdl2/src/components/BoxAdditionSolidIcon.tsx', hash: '11350503466850356760' }, - { file: 'packages/react-icons-mdl2/src/components/BoxCheckmarkSolidIcon.tsx', hash: '3993984423108653768' }, - { file: 'packages/react-icons-mdl2/src/components/BoxLogoIcon.tsx', hash: '3477822992375579248' }, - { file: 'packages/react-icons-mdl2/src/components/BoxMultiplySolidIcon.tsx', hash: '3025940095014892577' }, - { file: 'packages/react-icons-mdl2/src/components/BoxPlaySolidIcon.tsx', hash: '651778939019116633' }, - { file: 'packages/react-icons-mdl2/src/components/BoxSubtractSolidIcon.tsx', hash: '15828442106320112550' }, - { file: 'packages/react-icons-mdl2/src/components/BranchCommitIcon.tsx', hash: '1701598958667655873' }, - { file: 'packages/react-icons-mdl2/src/components/BranchCompareIcon.tsx', hash: '7455107304051907662' }, - { file: 'packages/react-icons-mdl2/src/components/BranchFork2Icon.tsx', hash: '16019747120871666258' }, - { file: 'packages/react-icons-mdl2/src/components/BranchForkIcon.tsx', hash: '11917755225984172871' }, - { file: 'packages/react-icons-mdl2/src/components/BranchLockedIcon.tsx', hash: '11676671461632403921' }, - { file: 'packages/react-icons-mdl2/src/components/BranchMergeIcon.tsx', hash: '11636727331798320000' }, - { file: 'packages/react-icons-mdl2/src/components/BranchPullRequestIcon.tsx', hash: '18185688154471541900' }, - { file: 'packages/react-icons-mdl2/src/components/BranchSearchIcon.tsx', hash: '15942190495184577267' }, - { file: 'packages/react-icons-mdl2/src/components/BranchShelvesetIcon.tsx', hash: '9506880191029106661' }, - { file: 'packages/react-icons-mdl2/src/components/BreadcrumbIcon.tsx', hash: '16302978875050387015' }, - { file: 'packages/react-icons-mdl2/src/components/BreakfastIcon.tsx', hash: '4434316272013442903' }, - { file: 'packages/react-icons-mdl2/src/components/BrightnessIcon.tsx', hash: '4502688003795424689' }, - { file: 'packages/react-icons-mdl2/src/components/BroomIcon.tsx', hash: '15601692763557396697' }, - { file: 'packages/react-icons-mdl2/src/components/BrowserScreenShotIcon.tsx', hash: '387157802078007804' }, - { file: 'packages/react-icons-mdl2/src/components/BrowserTabIcon.tsx', hash: '16720728111746037477' }, - { file: 'packages/react-icons-mdl2/src/components/BrowserTabScreenshotIcon.tsx', hash: '9486182720700898248' }, - { file: 'packages/react-icons-mdl2/src/components/BrunchIcon.tsx', hash: '9304993816741728195' }, - { file: 'packages/react-icons-mdl2/src/components/BrushIcon.tsx', hash: '2083197491638533728' }, - { file: 'packages/react-icons-mdl2/src/components/BucketColorFillIcon.tsx', hash: '9533337610559240832' }, - { file: 'packages/react-icons-mdl2/src/components/BucketColorIcon.tsx', hash: '7483666238641885831' }, - { file: 'packages/react-icons-mdl2/src/components/BufferTimeAfterIcon.tsx', hash: '7575934789210637908' }, - { file: 'packages/react-icons-mdl2/src/components/BufferTimeBeforeIcon.tsx', hash: '10657985189959504185' }, - { file: 'packages/react-icons-mdl2/src/components/BufferTimeBothIcon.tsx', hash: '15953428896414748271' }, - { file: 'packages/react-icons-mdl2/src/components/BugBlockIcon.tsx', hash: '14977946201663289590' }, - { file: 'packages/react-icons-mdl2/src/components/BugIcon.tsx', hash: '7308488488840840943' }, - { file: 'packages/react-icons-mdl2/src/components/BugSolidIcon.tsx', hash: '13965227196570703817' }, - { file: 'packages/react-icons-mdl2/src/components/BugSyncIcon.tsx', hash: '11993139694121706389' }, - { file: 'packages/react-icons-mdl2/src/components/BuildDefinitionIcon.tsx', hash: '7405946235420127193' }, - { file: 'packages/react-icons-mdl2/src/components/BuildIcon.tsx', hash: '5745313003747949584' }, - { file: 'packages/react-icons-mdl2/src/components/BuildIssueIcon.tsx', hash: '15729409904590152849' }, - { file: 'packages/react-icons-mdl2/src/components/BuildQueueIcon.tsx', hash: '1045754058954301815' }, - { file: 'packages/react-icons-mdl2/src/components/BuildQueueNewIcon.tsx', hash: '16937549947035433544' }, - { file: 'packages/react-icons-mdl2/src/components/BulkUploadIcon.tsx', hash: '13960447598965911434' }, - { file: 'packages/react-icons-mdl2/src/components/BulletedList2Icon.tsx', hash: '10178406528500791691' }, - { file: 'packages/react-icons-mdl2/src/components/BulletedList2MirroredIcon.tsx', hash: '2258742585605214586' }, - { file: 'packages/react-icons-mdl2/src/components/BulletedListBulletIcon.tsx', hash: '1388559911534605379' }, - { - file: 'packages/react-icons-mdl2/src/components/BulletedListBulletMirroredIcon.tsx', - hash: '13952921300372285478', - }, - { file: 'packages/react-icons-mdl2/src/components/BulletedListIcon.tsx', hash: '7216178630996754817' }, - { file: 'packages/react-icons-mdl2/src/components/BulletedListMirroredIcon.tsx', hash: '6002486582315584292' }, - { file: 'packages/react-icons-mdl2/src/components/BulletedListTextIcon.tsx', hash: '6332928603076498646' }, - { - file: 'packages/react-icons-mdl2/src/components/BulletedListTextMirroredIcon.tsx', - hash: '13827292519455109191', - }, - { file: 'packages/react-icons-mdl2/src/components/BulletedTreeListIcon.tsx', hash: '17841013603095641202' }, - { file: 'packages/react-icons-mdl2/src/components/BullseyeIcon.tsx', hash: '16080619879843331969' }, - { file: 'packages/react-icons-mdl2/src/components/BullseyeTargetEditIcon.tsx', hash: '6635034443595197483' }, - { file: 'packages/react-icons-mdl2/src/components/BullseyeTargetIcon.tsx', hash: '985692057574074255' }, - { file: 'packages/react-icons-mdl2/src/components/BusIcon.tsx', hash: '12406265701944432854' }, - { file: 'packages/react-icons-mdl2/src/components/BusSolidIcon.tsx', hash: '3315766964639000487' }, - { file: 'packages/react-icons-mdl2/src/components/BusinessHoursSignIcon.tsx', hash: '10489361169986732175' }, - { file: 'packages/react-icons-mdl2/src/components/ButtonControlIcon.tsx', hash: '6206420526372154740' }, - { file: 'packages/react-icons-mdl2/src/components/CPlusPlusIcon.tsx', hash: '8979710346279727933' }, - { file: 'packages/react-icons-mdl2/src/components/CPlusPlusLanguageIcon.tsx', hash: '4941896980217157487' }, - { file: 'packages/react-icons-mdl2/src/components/CRMProcessesIcon.tsx', hash: '2938521056354911192' }, - { file: 'packages/react-icons-mdl2/src/components/CRMReportIcon.tsx', hash: '9112533953352470445' }, - { file: 'packages/react-icons-mdl2/src/components/CRMServicesIcon.tsx', hash: '12711185398904941315' }, - { file: 'packages/react-icons-mdl2/src/components/CSSIcon.tsx', hash: '3945126511682309994' }, - { file: 'packages/react-icons-mdl2/src/components/CafeIcon.tsx', hash: '7242226240974353393' }, - { file: 'packages/react-icons-mdl2/src/components/CakeIcon.tsx', hash: '4772879894474086202' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorAdditionIcon.tsx', hash: '10209418255044745710' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorDeltaIcon.tsx', hash: '7288234815715793986' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorEqualToIcon.tsx', hash: '17995372526080182029' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorGroupIcon.tsx', hash: '7666201474766909219' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorIcon.tsx', hash: '10526111833223188068' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorMultiplyIcon.tsx', hash: '7337527738134685536' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorNotEqualToIcon.tsx', hash: '14515316967948697658' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorPercentageIcon.tsx', hash: '12714490605531493306' }, - { file: 'packages/react-icons-mdl2/src/components/CalculatorSubtractIcon.tsx', hash: '7830007881922087373' }, - { file: 'packages/react-icons-mdl2/src/components/CalendarAgendaIcon.tsx', hash: '9891795127440824099' }, - { file: 'packages/react-icons-mdl2/src/components/CalendarDayIcon.tsx', hash: '11055456678255689564' }, - { file: 'packages/react-icons-mdl2/src/components/CalendarIcon.tsx', hash: '9228334659105536946' }, - { file: 'packages/react-icons-mdl2/src/components/CalendarMirroredIcon.tsx', hash: '16974288181652211965' }, - { file: 'packages/react-icons-mdl2/src/components/CalendarReplyIcon.tsx', hash: '13500005999876734340' }, - { file: 'packages/react-icons-mdl2/src/components/CalendarSettingsIcon.tsx', hash: '17100028494597246284' }, - { - file: 'packages/react-icons-mdl2/src/components/CalendarSettingsMirroredIcon.tsx', - hash: '7879742555155452791', - }, - { file: 'packages/react-icons-mdl2/src/components/CalendarWeekIcon.tsx', hash: '10398595753853743173' }, - { file: 'packages/react-icons-mdl2/src/components/CalendarWorkWeekIcon.tsx', hash: '11045818085162155973' }, - { file: 'packages/react-icons-mdl2/src/components/CalendarYearIcon.tsx', hash: '16838791748025679221' }, - { file: 'packages/react-icons-mdl2/src/components/CaloriesAddIcon.tsx', hash: '4303229413379001786' }, - { file: 'packages/react-icons-mdl2/src/components/CaloriesIcon.tsx', hash: '5463516468239336469' }, - { file: 'packages/react-icons-mdl2/src/components/CameraIcon.tsx', hash: '4195313564462257519' }, - { file: 'packages/react-icons-mdl2/src/components/CampaignTemplateIcon.tsx', hash: '3719909990425432023' }, - { file: 'packages/react-icons-mdl2/src/components/CancelIcon.tsx', hash: '10317700657146339525' }, - { file: 'packages/react-icons-mdl2/src/components/CannedChatIcon.tsx', hash: '15835322069038419693' }, - { file: 'packages/react-icons-mdl2/src/components/CarIcon.tsx', hash: '16485912454163323039' }, - { file: 'packages/react-icons-mdl2/src/components/CaretBottomLeftCenter8Icon.tsx', hash: '4973559050578265754' }, - { file: 'packages/react-icons-mdl2/src/components/CaretBottomLeftSolid8Icon.tsx', hash: '3785565672890408237' }, - { file: 'packages/react-icons-mdl2/src/components/CaretBottomRightCenter8Icon.tsx', hash: '5405021413196033014' }, - { file: 'packages/react-icons-mdl2/src/components/CaretBottomRightSolid8Icon.tsx', hash: '10231170155544951846' }, - { file: 'packages/react-icons-mdl2/src/components/CaretDown8Icon.tsx', hash: '12671861183780382583' }, - { file: 'packages/react-icons-mdl2/src/components/CaretDownSolid8Icon.tsx', hash: '3509733715106366075' }, - { file: 'packages/react-icons-mdl2/src/components/CaretHollowIcon.tsx', hash: '17702062177780790927' }, - { file: 'packages/react-icons-mdl2/src/components/CaretHollowMirroredIcon.tsx', hash: '16063090921609294476' }, - { file: 'packages/react-icons-mdl2/src/components/CaretLeft8Icon.tsx', hash: '1327169153711640634' }, - { file: 'packages/react-icons-mdl2/src/components/CaretLeftSolid8Icon.tsx', hash: '11402471956695437421' }, - { file: 'packages/react-icons-mdl2/src/components/CaretRight8Icon.tsx', hash: '2201211074827386143' }, - { file: 'packages/react-icons-mdl2/src/components/CaretRightIcon.tsx', hash: '11036717627633799736' }, - { file: 'packages/react-icons-mdl2/src/components/CaretRightSolid8Icon.tsx', hash: '18306534689265925179' }, - { file: 'packages/react-icons-mdl2/src/components/CaretSolid16Icon.tsx', hash: '14410687348052949902' }, - { file: 'packages/react-icons-mdl2/src/components/CaretSolidDownIcon.tsx', hash: '16375333673336697431' }, - { file: 'packages/react-icons-mdl2/src/components/CaretSolidIcon.tsx', hash: '17873238766448089274' }, - { file: 'packages/react-icons-mdl2/src/components/CaretSolidLeftIcon.tsx', hash: '17428990906911923042' }, - { file: 'packages/react-icons-mdl2/src/components/CaretSolidMirroredIcon.tsx', hash: '1243666110724694783' }, - { file: 'packages/react-icons-mdl2/src/components/CaretSolidRightIcon.tsx', hash: '7084165137666742875' }, - { file: 'packages/react-icons-mdl2/src/components/CaretSolidUpIcon.tsx', hash: '15884194277471378635' }, - { file: 'packages/react-icons-mdl2/src/components/CaretTopLeftCenter8Icon.tsx', hash: '11022898863557850878' }, - { file: 'packages/react-icons-mdl2/src/components/CaretTopLeftSolid8Icon.tsx', hash: '5263494152959946163' }, - { file: 'packages/react-icons-mdl2/src/components/CaretTopRightCenter8Icon.tsx', hash: '2686558306914655194' }, - { file: 'packages/react-icons-mdl2/src/components/CaretTopRightSolid8Icon.tsx', hash: '6964924610046017557' }, - { file: 'packages/react-icons-mdl2/src/components/CaretUp8Icon.tsx', hash: '1258617837263280580' }, - { file: 'packages/react-icons-mdl2/src/components/CaretUpSolid8Icon.tsx', hash: '9775824517440082506' }, - { file: 'packages/react-icons-mdl2/src/components/CatIcon.tsx', hash: '1307423506134103033' }, - { file: 'packages/react-icons-mdl2/src/components/CellPhoneIcon.tsx', hash: '11744883050395067387' }, - { file: 'packages/react-icons-mdl2/src/components/CertificateIcon.tsx', hash: '11098577087768643512' }, - { file: 'packages/react-icons-mdl2/src/components/CertifiedDatabaseIcon.tsx', hash: '3268197506929327507' }, - { file: 'packages/react-icons-mdl2/src/components/ChangeEntitlementsIcon.tsx', hash: '15952062856069144014' }, - { file: 'packages/react-icons-mdl2/src/components/ChartIcon.tsx', hash: '18370750908098125836' }, - { file: 'packages/react-icons-mdl2/src/components/ChartSeriesIcon.tsx', hash: '13748079417130253292' }, - { file: 'packages/react-icons-mdl2/src/components/ChartTemplateIcon.tsx', hash: '5187461118188430376' }, - { file: 'packages/react-icons-mdl2/src/components/ChartXAngleIcon.tsx', hash: '702266279550083036' }, - { file: 'packages/react-icons-mdl2/src/components/ChartYAngleIcon.tsx', hash: '3018945442186707874' }, - { file: 'packages/react-icons-mdl2/src/components/ChatBotIcon.tsx', hash: '18082123027226981785' }, - { file: 'packages/react-icons-mdl2/src/components/ChatIcon.tsx', hash: '6946313934754875430' }, - { file: 'packages/react-icons-mdl2/src/components/ChatInviteFriendIcon.tsx', hash: '1143757992597114980' }, - { file: 'packages/react-icons-mdl2/src/components/ChatSolidIcon.tsx', hash: '17207532252608704526' }, - { file: 'packages/react-icons-mdl2/src/components/CheckListCheckIcon.tsx', hash: '13976979216990533746' }, - { file: 'packages/react-icons-mdl2/src/components/CheckListCheckMirroredIcon.tsx', hash: '2823743636131034514' }, - { file: 'packages/react-icons-mdl2/src/components/CheckListIcon.tsx', hash: '11788721469608473297' }, - { file: 'packages/react-icons-mdl2/src/components/CheckListTextIcon.tsx', hash: '14074386913156541324' }, - { file: 'packages/react-icons-mdl2/src/components/CheckListTextMirroredIcon.tsx', hash: '15363031630517891306' }, - { file: 'packages/react-icons-mdl2/src/components/CheckMarkIcon.tsx', hash: '17574435840898453412' }, - { file: 'packages/react-icons-mdl2/src/components/CheckboxCompositeIcon.tsx', hash: '3700817757984051146' }, - { - file: 'packages/react-icons-mdl2/src/components/CheckboxCompositeReversedIcon.tsx', - hash: '2417548281134889934', - }, - { file: 'packages/react-icons-mdl2/src/components/CheckboxFillIcon.tsx', hash: '5705636971628196823' }, - { file: 'packages/react-icons-mdl2/src/components/CheckboxIcon.tsx', hash: '13025963719826327705' }, - { file: 'packages/react-icons-mdl2/src/components/CheckboxIndeterminateIcon.tsx', hash: '9025144963287070040' }, - { file: 'packages/react-icons-mdl2/src/components/CheckedOutByOther12Icon.tsx', hash: '7597136235526734925' }, - { file: 'packages/react-icons-mdl2/src/components/CheckedOutByYou12Icon.tsx', hash: '9202668097808352856' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronDownEnd6Icon.tsx', hash: '1506321891243306814' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronDownIcon.tsx', hash: '11856688968333907060' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronDownMedIcon.tsx', hash: '3739656185100519795' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronDownSmallIcon.tsx', hash: '3912213855241788999' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronFold10Icon.tsx', hash: '7741275830037417768' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronLeftEnd6Icon.tsx', hash: '10190919535291550235' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronLeftIcon.tsx', hash: '8188154068860645136' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronLeftMedIcon.tsx', hash: '12287503609853250159' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronLeftSmallIcon.tsx', hash: '4861024202375522754' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronRightEnd6Icon.tsx', hash: '1000325959569808691' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronRightIcon.tsx', hash: '7320161935500998060' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronRightMedIcon.tsx', hash: '15746619642856054936' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronRightSmallIcon.tsx', hash: '17577741214588845828' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronUnfold10Icon.tsx', hash: '5432534879181972370' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronUpEnd6Icon.tsx', hash: '17078105125300754063' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronUpIcon.tsx', hash: '17634438659387761604' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronUpMedIcon.tsx', hash: '4243233577030550262' }, - { file: 'packages/react-icons-mdl2/src/components/ChevronUpSmallIcon.tsx', hash: '11900635987956573641' }, - { file: 'packages/react-icons-mdl2/src/components/ChildofIcon.tsx', hash: '3083904410355819819' }, - { file: 'packages/react-icons-mdl2/src/components/ChopsticksIcon.tsx', hash: '12625847592625114711' }, - { file: 'packages/react-icons-mdl2/src/components/ChromeBackIcon.tsx', hash: '6919618187088778088' }, - { file: 'packages/react-icons-mdl2/src/components/ChromeBackMirroredIcon.tsx', hash: '10591631473798040220' }, - { file: 'packages/react-icons-mdl2/src/components/ChromeCloseIcon.tsx', hash: '16206970251003091389' }, - { file: 'packages/react-icons-mdl2/src/components/ChromeFullScreenIcon.tsx', hash: '2062494960606940699' }, - { file: 'packages/react-icons-mdl2/src/components/ChromeMinimizeIcon.tsx', hash: '17056646203191558710' }, - { file: 'packages/react-icons-mdl2/src/components/ChromeRestoreIcon.tsx', hash: '225347269264565974' }, - { file: 'packages/react-icons-mdl2/src/components/ChronosLogoIcon.tsx', hash: '3449218141873443765' }, - { file: 'packages/react-icons-mdl2/src/components/CircleAdditionIcon.tsx', hash: '15650364575169129058' }, - { file: 'packages/react-icons-mdl2/src/components/CircleAdditionSolidIcon.tsx', hash: '17176571996376701633' }, - { file: 'packages/react-icons-mdl2/src/components/CircleFillIcon.tsx', hash: '635408020464104748' }, - { file: 'packages/react-icons-mdl2/src/components/CircleHalfFullIcon.tsx', hash: '13078515937468162613' }, - { file: 'packages/react-icons-mdl2/src/components/CirclePauseIcon.tsx', hash: '10423095171760345779' }, - { file: 'packages/react-icons-mdl2/src/components/CirclePauseSolidIcon.tsx', hash: '201342975848082306' }, - { file: 'packages/react-icons-mdl2/src/components/CirclePlusIcon.tsx', hash: '16048474883211561128' }, - { file: 'packages/react-icons-mdl2/src/components/CircleRingIcon.tsx', hash: '13932617260710316939' }, - { file: 'packages/react-icons-mdl2/src/components/CircleShapeIcon.tsx', hash: '10337641278022257801' }, - { file: 'packages/react-icons-mdl2/src/components/CircleShapeSolidIcon.tsx', hash: '5947548758375999968' }, - { file: 'packages/react-icons-mdl2/src/components/CircleStopIcon.tsx', hash: '1746423648542538736' }, - { file: 'packages/react-icons-mdl2/src/components/CircleStopSolidIcon.tsx', hash: '17837113459357032578' }, - { file: 'packages/react-icons-mdl2/src/components/CityNext2Icon.tsx', hash: '1763087302644378770' }, - { file: 'packages/react-icons-mdl2/src/components/CityNextIcon.tsx', hash: '5006818496716556497' }, - { file: 'packages/react-icons-mdl2/src/components/ClearFilterIcon.tsx', hash: '18094972209246152564' }, - { file: 'packages/react-icons-mdl2/src/components/ClearFormattingAIcon.tsx', hash: '7989722697092274864' }, - { file: 'packages/react-icons-mdl2/src/components/ClearFormattingEraserIcon.tsx', hash: '12773764554699946939' }, - { file: 'packages/react-icons-mdl2/src/components/ClearFormattingIcon.tsx', hash: '1502190740290008586' }, - { file: 'packages/react-icons-mdl2/src/components/ClearIcon.tsx', hash: '17999460206231765560' }, - { file: 'packages/react-icons-mdl2/src/components/ClearNightIcon.tsx', hash: '8981354330252798935' }, - { file: 'packages/react-icons-mdl2/src/components/ClearSelectionIcon.tsx', hash: '8882426128133630838' }, - { file: 'packages/react-icons-mdl2/src/components/ClearSelectionMirroredIcon.tsx', hash: '3689265543794296852' }, - { file: 'packages/react-icons-mdl2/src/components/ClipboardListIcon.tsx', hash: '9949364234238621675' }, - { file: 'packages/react-icons-mdl2/src/components/ClipboardListMirroredIcon.tsx', hash: '7507542986998954617' }, - { file: 'packages/react-icons-mdl2/src/components/ClipboardSolidIcon.tsx', hash: '4016618141286983825' }, - { file: 'packages/react-icons-mdl2/src/components/ClockIcon.tsx', hash: '7108679265632247294' }, - { file: 'packages/react-icons-mdl2/src/components/CloneToDesktopIcon.tsx', hash: '16300739152915666307' }, - { file: 'packages/react-icons-mdl2/src/components/ClosePaneIcon.tsx', hash: '737646660074456284' }, - { file: 'packages/react-icons-mdl2/src/components/ClosePaneMirroredIcon.tsx', hash: '12926614467006734660' }, - { file: 'packages/react-icons-mdl2/src/components/ClosedCaptionIcon.tsx', hash: '3551295924436979273' }, - { file: 'packages/react-icons-mdl2/src/components/CloudWeatherIcon.tsx', hash: '11576958249735124404' }, - { file: 'packages/react-icons-mdl2/src/components/CloudyIcon.tsx', hash: '17413852503268998504' }, - { file: 'packages/react-icons-mdl2/src/components/CocktailsIcon.tsx', hash: '18417245516501428895' }, - { file: 'packages/react-icons-mdl2/src/components/CodeEditIcon.tsx', hash: '17489331345713312538' }, - { file: 'packages/react-icons-mdl2/src/components/CodeIcon.tsx', hash: '14096608821262520464' }, - { file: 'packages/react-icons-mdl2/src/components/CoffeeIcon.tsx', hash: '8186344784075218361' }, - { file: 'packages/react-icons-mdl2/src/components/CoffeeScriptIcon.tsx', hash: '4585287023832242224' }, - { file: 'packages/react-icons-mdl2/src/components/CollapseContentIcon.tsx', hash: '2764738467455020992' }, - { file: 'packages/react-icons-mdl2/src/components/CollapseContentSingleIcon.tsx', hash: '7832927660457611682' }, - { file: 'packages/react-icons-mdl2/src/components/CollapseMenuIcon.tsx', hash: '15690932050925209701' }, - { file: 'packages/react-icons-mdl2/src/components/CollegeFootballIcon.tsx', hash: '2165529139282588287' }, - { file: 'packages/react-icons-mdl2/src/components/CollegeHoopsIcon.tsx', hash: '5971236503493505870' }, - { file: 'packages/react-icons-mdl2/src/components/ColorIcon.tsx', hash: '12876084734020488421' }, - { file: 'packages/react-icons-mdl2/src/components/ColorSolidIcon.tsx', hash: '8778203053351823905' }, - { file: 'packages/react-icons-mdl2/src/components/ColumnIcon.tsx', hash: '14550024425629291177' }, - { file: 'packages/react-icons-mdl2/src/components/ColumnLeftTwoThirdsEditIcon.tsx', hash: '4510690927811420875' }, - { file: 'packages/react-icons-mdl2/src/components/ColumnLeftTwoThirdsIcon.tsx', hash: '10422959551643051765' }, - { file: 'packages/react-icons-mdl2/src/components/ColumnOptionsIcon.tsx', hash: '11806481398288836965' }, - { - file: 'packages/react-icons-mdl2/src/components/ColumnRightTwoThirdsEditIcon.tsx', - hash: '12696569162881326759', - }, - { file: 'packages/react-icons-mdl2/src/components/ColumnRightTwoThirdsIcon.tsx', hash: '7766809221375275712' }, - { - file: 'packages/react-icons-mdl2/src/components/ColumnVerticalSectionEditIcon.tsx', - hash: '5193286935066942189', - }, - { file: 'packages/react-icons-mdl2/src/components/ColumnVerticalSectionIcon.tsx', hash: '16260772812663125171' }, - { file: 'packages/react-icons-mdl2/src/components/CombineIcon.tsx', hash: '2646162695904339986' }, - { file: 'packages/react-icons-mdl2/src/components/ComboboxIcon.tsx', hash: '16457432093153970010' }, - { file: 'packages/react-icons-mdl2/src/components/CommandPromptIcon.tsx', hash: '15673370497459872355' }, - { file: 'packages/react-icons-mdl2/src/components/CommentActiveIcon.tsx', hash: '14547628466497745489' }, - { file: 'packages/react-icons-mdl2/src/components/CommentAddIcon.tsx', hash: '7354878907854091305' }, - { file: 'packages/react-icons-mdl2/src/components/CommentIcon.tsx', hash: '84187469314459891' }, - { file: 'packages/react-icons-mdl2/src/components/CommentNextIcon.tsx', hash: '14934145650932481133' }, - { file: 'packages/react-icons-mdl2/src/components/CommentPreviousIcon.tsx', hash: '11977205977425684281' }, - { file: 'packages/react-icons-mdl2/src/components/CommentSolidIcon.tsx', hash: '8048573688429425426' }, - { file: 'packages/react-icons-mdl2/src/components/CommentUrgentIcon.tsx', hash: '12154048446593945708' }, - { file: 'packages/react-icons-mdl2/src/components/CommitmentsIcon.tsx', hash: '12777910001507088329' }, - { file: 'packages/react-icons-mdl2/src/components/CommonDataServiceCDSIcon.tsx', hash: '10573383667002356640' }, - { file: 'packages/react-icons-mdl2/src/components/CommunicationsIcon.tsx', hash: '2616929262148546398' }, - { file: 'packages/react-icons-mdl2/src/components/CompanyDirectoryIcon.tsx', hash: '13229678923851993044' }, - { - file: 'packages/react-icons-mdl2/src/components/CompanyDirectoryMirroredIcon.tsx', - hash: '17662995171579934161', - }, - { file: 'packages/react-icons-mdl2/src/components/CompareIcon.tsx', hash: '8908469758530488215' }, - { file: 'packages/react-icons-mdl2/src/components/CompareUnevenIcon.tsx', hash: '1166031646701734056' }, - { file: 'packages/react-icons-mdl2/src/components/CompassNWIcon.tsx', hash: '15545334371181703758' }, - { file: 'packages/react-icons-mdl2/src/components/CompletedIcon.tsx', hash: '13803484294149978788' }, - { file: 'packages/react-icons-mdl2/src/components/CompletedSolidIcon.tsx', hash: '13245474842797249698' }, - { file: 'packages/react-icons-mdl2/src/components/ComplianceAuditIcon.tsx', hash: '16180906599517909755' }, - { file: 'packages/react-icons-mdl2/src/components/ConfigurationSolidIcon.tsx', hash: '18029601955623297912' }, - { file: 'packages/react-icons-mdl2/src/components/ConnectContactsIcon.tsx', hash: '12318593344407479499' }, - { file: 'packages/react-icons-mdl2/src/components/ConnectVirtualMachineIcon.tsx', hash: '15465924176916549286' }, - { file: 'packages/react-icons-mdl2/src/components/ConstructionConeIcon.tsx', hash: '3273716421616658463' }, - { file: 'packages/react-icons-mdl2/src/components/ConstructionConeSolidIcon.tsx', hash: '586555395824016181' }, - { file: 'packages/react-icons-mdl2/src/components/ContactCardIcon.tsx', hash: '15211984991523126093' }, - { file: 'packages/react-icons-mdl2/src/components/ContactCardSettingsIcon.tsx', hash: '16272932285940802787' }, - { - file: 'packages/react-icons-mdl2/src/components/ContactCardSettingsMirroredIcon.tsx', - hash: '6977373102157537623', - }, - { file: 'packages/react-icons-mdl2/src/components/ContactHeartIcon.tsx', hash: '7536220108992365098' }, - { file: 'packages/react-icons-mdl2/src/components/ContactIcon.tsx', hash: '18132497067285314627' }, - { file: 'packages/react-icons-mdl2/src/components/ContactInfoIcon.tsx', hash: '15701291551790808988' }, - { file: 'packages/react-icons-mdl2/src/components/ContactLinkIcon.tsx', hash: '7472781293705724966' }, - { file: 'packages/react-icons-mdl2/src/components/ContactListIcon.tsx', hash: '10816086027455427927' }, - { file: 'packages/react-icons-mdl2/src/components/ContactLockIcon.tsx', hash: '2009772246809814970' }, - { file: 'packages/react-icons-mdl2/src/components/ContentFeedIcon.tsx', hash: '17789668203001170336' }, - { file: 'packages/react-icons-mdl2/src/components/ContentSettingsIcon.tsx', hash: '4091778186971523972' }, - { file: 'packages/react-icons-mdl2/src/components/ContextMenuIcon.tsx', hash: '4889107644686224881' }, - { file: 'packages/react-icons-mdl2/src/components/ContrastIcon.tsx', hash: '7174159877536029563' }, - { file: 'packages/react-icons-mdl2/src/components/CopyEditIcon.tsx', hash: '15774444388513629603' }, - { file: 'packages/react-icons-mdl2/src/components/CopyIcon.tsx', hash: '10619559648487427597' }, - { file: 'packages/react-icons-mdl2/src/components/CottonIcon.tsx', hash: '18209531163290041460' }, - { file: 'packages/react-icons-mdl2/src/components/CouponIcon.tsx', hash: '3611873400401667095' }, - { file: 'packages/react-icons-mdl2/src/components/CreateMailRuleIcon.tsx', hash: '6571912614160142078' }, - { file: 'packages/react-icons-mdl2/src/components/CricketIcon.tsx', hash: '532957463090142947' }, - { file: 'packages/react-icons-mdl2/src/components/CropIcon.tsx', hash: '3165893832516880279' }, - { file: 'packages/react-icons-mdl2/src/components/CrownIcon.tsx', hash: '2168070742611806496' }, - { file: 'packages/react-icons-mdl2/src/components/CrownSolidIcon.tsx', hash: '1596557615099764967' }, - { file: 'packages/react-icons-mdl2/src/components/CubeShapeIcon.tsx', hash: '4069367604900402339' }, - { file: 'packages/react-icons-mdl2/src/components/CubeShapeSolidIcon.tsx', hash: '6848415574728862623' }, - { file: 'packages/react-icons-mdl2/src/components/CurrencyIcon.tsx', hash: '198131067017148195' }, - { file: 'packages/react-icons-mdl2/src/components/CustomListIcon.tsx', hash: '5133831396031101349' }, - { file: 'packages/react-icons-mdl2/src/components/CustomListMirroredIcon.tsx', hash: '7095106435472983257' }, - { file: 'packages/react-icons-mdl2/src/components/CustomizeToolbarIcon.tsx', hash: '6290254269650954141' }, - { file: 'packages/react-icons-mdl2/src/components/CutIcon.tsx', hash: '14916081014776173377' }, - { file: 'packages/react-icons-mdl2/src/components/CyclingIcon.tsx', hash: '13683378182102682960' }, - { file: 'packages/react-icons-mdl2/src/components/DOMIcon.tsx', hash: '12906128418122963318' }, - { file: 'packages/react-icons-mdl2/src/components/DRMIcon.tsx', hash: '4407261542633884651' }, - { file: 'packages/react-icons-mdl2/src/components/DashboardAddIcon.tsx', hash: '1539717290960865228' }, - { file: 'packages/react-icons-mdl2/src/components/DataConnectionLibraryIcon.tsx', hash: '14933785751434321440' }, - { file: 'packages/react-icons-mdl2/src/components/DataManagementSettingsIcon.tsx', hash: '6818008293843099093' }, - { file: 'packages/react-icons-mdl2/src/components/DatabaseIcon.tsx', hash: '11588229290270208748' }, - { file: 'packages/react-icons-mdl2/src/components/DatabaseSyncIcon.tsx', hash: '15094968328211527615' }, - { file: 'packages/react-icons-mdl2/src/components/DatabaseViewIcon.tsx', hash: '843483723858348348' }, - { file: 'packages/react-icons-mdl2/src/components/DataflowsIcon.tsx', hash: '8136763344477157282' }, - { file: 'packages/react-icons-mdl2/src/components/DataflowsLinkIcon.tsx', hash: '15298746876672502190' }, - { file: 'packages/react-icons-mdl2/src/components/DateTime12Icon.tsx', hash: '6627149704556179487' }, - { file: 'packages/react-icons-mdl2/src/components/DateTime2Icon.tsx', hash: '17375769868341167560' }, - { file: 'packages/react-icons-mdl2/src/components/DateTimeIcon.tsx', hash: '10442348742589426501' }, - { file: 'packages/react-icons-mdl2/src/components/DateTimeMirroredIcon.tsx', hash: '18073453778555505627' }, - { file: 'packages/react-icons-mdl2/src/components/DeactivateOrdersIcon.tsx', hash: '6649839772695767699' }, - { file: 'packages/react-icons-mdl2/src/components/DecimalsIcon.tsx', hash: '17081099173842890308' }, - { file: 'packages/react-icons-mdl2/src/components/DecisionSolidIcon.tsx', hash: '17081738077200227352' }, - { file: 'packages/react-icons-mdl2/src/components/DeclineCallIcon.tsx', hash: '452032942065278201' }, - { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentArrowIcon.tsx', hash: '13870574334268841884' }, - { - file: 'packages/react-icons-mdl2/src/components/DecreaseIndentArrowMirroredIcon.tsx', - hash: '15011548357798424123', - }, - { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentIcon.tsx', hash: '13065577369695178636' }, - { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentLegacyIcon.tsx', hash: '9104839253663370211' }, - { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentMirroredIcon.tsx', hash: '13014325612888836477' }, - { file: 'packages/react-icons-mdl2/src/components/DecreaseIndentTextIcon.tsx', hash: '18373508170355261206' }, - { - file: 'packages/react-icons-mdl2/src/components/DecreaseIndentTextMirroredIcon.tsx', - hash: '2564754211783847726', - }, - { file: 'packages/react-icons-mdl2/src/components/DefaultRatioIcon.tsx', hash: '738622148229922878' }, - { file: 'packages/react-icons-mdl2/src/components/DefectSolidIcon.tsx', hash: '16558742789062669957' }, - { file: 'packages/react-icons-mdl2/src/components/DeleteColumnsIcon.tsx', hash: '6313488992643060020' }, - { file: 'packages/react-icons-mdl2/src/components/DeleteIcon.tsx', hash: '10792912710594963359' }, - { file: 'packages/react-icons-mdl2/src/components/DeleteRowsIcon.tsx', hash: '587318337482175522' }, - { file: 'packages/react-icons-mdl2/src/components/DeleteRowsMirroredIcon.tsx', hash: '643304616330280781' }, - { file: 'packages/react-icons-mdl2/src/components/DeleteTableIcon.tsx', hash: '12778033820978051742' }, - { file: 'packages/react-icons-mdl2/src/components/DeliveryTruckIcon.tsx', hash: '7364374569024104758' }, - { file: 'packages/react-icons-mdl2/src/components/DependencyAddIcon.tsx', hash: '8354637014378472414' }, - { file: 'packages/react-icons-mdl2/src/components/DependencyRemoveIcon.tsx', hash: '1599367741390634032' }, - { file: 'packages/react-icons-mdl2/src/components/DeployIcon.tsx', hash: '12556496360695971026' }, - { file: 'packages/react-icons-mdl2/src/components/DescendingIcon.tsx', hash: '8325601826213020045' }, - { file: 'packages/react-icons-mdl2/src/components/DesignIcon.tsx', hash: '1235725354522916293' }, - { file: 'packages/react-icons-mdl2/src/components/DesktopScreenshotIcon.tsx', hash: '16279311035412850738' }, - { file: 'packages/react-icons-mdl2/src/components/DeveloperToolsIcon.tsx', hash: '5233866801892475567' }, - { file: 'packages/react-icons-mdl2/src/components/DeviceBugIcon.tsx', hash: '4458294965863833774' }, - { file: 'packages/react-icons-mdl2/src/components/DeviceOffIcon.tsx', hash: '2548122455670673767' }, - { file: 'packages/react-icons-mdl2/src/components/DeviceRunIcon.tsx', hash: '6663728061603578123' }, - { file: 'packages/react-icons-mdl2/src/components/Devices2Icon.tsx', hash: '13195787250915366201' }, - { file: 'packages/react-icons-mdl2/src/components/Devices3Icon.tsx', hash: '2195077419375007119' }, - { file: 'packages/react-icons-mdl2/src/components/Devices4Icon.tsx', hash: '9032833672927497181' }, - { - file: 'packages/react-icons-mdl2/src/components/DiagnosticDataBarTooltipIcon.tsx', - hash: '7308105095845127562', - }, - { file: 'packages/react-icons-mdl2/src/components/DiagnosticIcon.tsx', hash: '3943560896905082647' }, - { file: 'packages/react-icons-mdl2/src/components/DialpadIcon.tsx', hash: '1595420172598995832' }, - { file: 'packages/react-icons-mdl2/src/components/DiamondIcon.tsx', hash: '15385166146377920364' }, - { file: 'packages/react-icons-mdl2/src/components/DiamondSolidIcon.tsx', hash: '13946867766219515064' }, - { file: 'packages/react-icons-mdl2/src/components/DictionaryIcon.tsx', hash: '12118255852228972890' }, - { file: 'packages/react-icons-mdl2/src/components/DictionaryRemoveIcon.tsx', hash: '13370862255201060675' }, - { file: 'packages/react-icons-mdl2/src/components/DietPlanNotebookIcon.tsx', hash: '3826030876867074456' }, - { file: 'packages/react-icons-mdl2/src/components/DiffInlineIcon.tsx', hash: '15011859094277716599' }, - { file: 'packages/react-icons-mdl2/src/components/DiffSideBySideIcon.tsx', hash: '178459671925869865' }, - { file: 'packages/react-icons-mdl2/src/components/DisableUpdatesIcon.tsx', hash: '16137860201828138151' }, - { - file: 'packages/react-icons-mdl2/src/components/DisconnectVirtualMachineIcon.tsx', - hash: '2930597107750432543', - }, - { file: 'packages/react-icons-mdl2/src/components/DislikeIcon.tsx', hash: '18225817531545216062' }, - { file: 'packages/react-icons-mdl2/src/components/DislikeSolidIcon.tsx', hash: '14087480645264709742' }, - { file: 'packages/react-icons-mdl2/src/components/DistributeDownIcon.tsx', hash: '1548125120911779786' }, - { file: 'packages/react-icons-mdl2/src/components/DocLibraryIcon.tsx', hash: '11591439189986323684' }, - { file: 'packages/react-icons-mdl2/src/components/DockLeftIcon.tsx', hash: '16847431728497961728' }, - { file: 'packages/react-icons-mdl2/src/components/DockLeftMirroredIcon.tsx', hash: '15710463884680529297' }, - { file: 'packages/react-icons-mdl2/src/components/DockRightIcon.tsx', hash: '6658426372807392828' }, - { file: 'packages/react-icons-mdl2/src/components/DockerLogoIcon.tsx', hash: '356095859023745588' }, - { file: 'packages/react-icons-mdl2/src/components/DocumentApprovalIcon.tsx', hash: '1072757051443608965' }, - { file: 'packages/react-icons-mdl2/src/components/DocumentIcon.tsx', hash: '7350668992681437371' }, - { file: 'packages/react-icons-mdl2/src/components/DocumentManagementIcon.tsx', hash: '12832475181564272735' }, - { file: 'packages/react-icons-mdl2/src/components/DocumentReplyIcon.tsx', hash: '5580080027402339929' }, - { file: 'packages/react-icons-mdl2/src/components/DocumentSearchIcon.tsx', hash: '18194129163128018046' }, - { file: 'packages/react-icons-mdl2/src/components/DocumentSetIcon.tsx', hash: '13231352338473935499' }, - { file: 'packages/react-icons-mdl2/src/components/DocumentationIcon.tsx', hash: '1944399801209430445' }, - { file: 'packages/react-icons-mdl2/src/components/DonutChartIcon.tsx', hash: '6013093794290304399' }, - { file: 'packages/react-icons-mdl2/src/components/DoorIcon.tsx', hash: '5093568903579292976' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleBookmarkIcon.tsx', hash: '580642304868621494' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronDown12Icon.tsx', hash: '17862630360870678403' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronDown8Icon.tsx', hash: '3718988317405081816' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronDownIcon.tsx', hash: '4060633296743134167' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeft12Icon.tsx', hash: '12129472693083176351' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeft8Icon.tsx', hash: '3479157522484228650' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeftIcon.tsx', hash: '5239193503131271211' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeftMedIcon.tsx', hash: '18421213284534102233' }, - { - file: 'packages/react-icons-mdl2/src/components/DoubleChevronLeftMedMirroredIcon.tsx', - hash: '14826784435274098125', - }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronRight12Icon.tsx', hash: '8787847077895803394' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronRight8Icon.tsx', hash: '5185405441418862327' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronRightIcon.tsx', hash: '4370086810030902255' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronUp12Icon.tsx', hash: '4319255572784241793' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronUp8Icon.tsx', hash: '3769547499968682415' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleChevronUpIcon.tsx', hash: '6295237240279208030' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleColumnEditIcon.tsx', hash: '338044593060043662' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleColumnIcon.tsx', hash: '4963904430013447512' }, - { file: 'packages/react-icons-mdl2/src/components/DoubleDownArrowIcon.tsx', hash: '12947437490613649800' }, - { file: 'packages/react-icons-mdl2/src/components/DownIcon.tsx', hash: '1830363173706684750' }, - { file: 'packages/react-icons-mdl2/src/components/DownloadDocumentIcon.tsx', hash: '1550953316812736269' }, - { file: 'packages/react-icons-mdl2/src/components/DownloadIcon.tsx', hash: '11905139494507468856' }, - { file: 'packages/react-icons-mdl2/src/components/DragObjectIcon.tsx', hash: '16313792608666370824' }, - { file: 'packages/react-icons-mdl2/src/components/DrillDownIcon.tsx', hash: '3192472893310371370' }, - { file: 'packages/react-icons-mdl2/src/components/DrillDownSolidIcon.tsx', hash: '17814311297808427278' }, - { file: 'packages/react-icons-mdl2/src/components/DrillExpandIcon.tsx', hash: '12023259070909879851' }, - { file: 'packages/react-icons-mdl2/src/components/DrillShowIcon.tsx', hash: '907855544090803318' }, - { file: 'packages/react-icons-mdl2/src/components/DrillThroughIcon.tsx', hash: '270564848319592953' }, - { file: 'packages/react-icons-mdl2/src/components/DriverOffIcon.tsx', hash: '2646796161699213401' }, - { file: 'packages/react-icons-mdl2/src/components/DropIcon.tsx', hash: '2500983101290595010' }, - { file: 'packages/react-icons-mdl2/src/components/DropShapeIcon.tsx', hash: '4656051841581653680' }, - { file: 'packages/react-icons-mdl2/src/components/DropShapeSolidIcon.tsx', hash: '3848711829998676861' }, - { file: 'packages/react-icons-mdl2/src/components/DropboxLogoIcon.tsx', hash: '9875714476061571' }, - { file: 'packages/react-icons-mdl2/src/components/DropdownIcon.tsx', hash: '3555689926512850428' }, - { file: 'packages/react-icons-mdl2/src/components/DuplicateRowIcon.tsx', hash: '13697707925593633752' }, - { file: 'packages/react-icons-mdl2/src/components/DuststormIcon.tsx', hash: '292901588076733830' }, - { file: 'packages/react-icons-mdl2/src/components/EMIIcon.tsx', hash: '7026920700117073739' }, - { file: 'packages/react-icons-mdl2/src/components/EatDrinkIcon.tsx', hash: '405852760394722860' }, - { file: 'packages/react-icons-mdl2/src/components/EditContactIcon.tsx', hash: '1150372315902143826' }, - { file: 'packages/react-icons-mdl2/src/components/EditCreateIcon.tsx', hash: '13907203705880503221' }, - { file: 'packages/react-icons-mdl2/src/components/EditIcon.tsx', hash: '17431200438072034596' }, - { file: 'packages/react-icons-mdl2/src/components/EditMailIcon.tsx', hash: '15970390906079408472' }, - { file: 'packages/react-icons-mdl2/src/components/EditMirroredIcon.tsx', hash: '6262748336865108686' }, - { file: 'packages/react-icons-mdl2/src/components/EditNoteIcon.tsx', hash: '1286799354555306996' }, - { file: 'packages/react-icons-mdl2/src/components/EditPhotoIcon.tsx', hash: '661536436530324462' }, - { file: 'packages/react-icons-mdl2/src/components/EditSolid12Icon.tsx', hash: '10589666406189014261' }, - { file: 'packages/react-icons-mdl2/src/components/EditSolidMirrored12Icon.tsx', hash: '10665478881594893882' }, - { file: 'packages/react-icons-mdl2/src/components/EditStyleIcon.tsx', hash: '2678806848845973724' }, - { file: 'packages/react-icons-mdl2/src/components/EducationIcon.tsx', hash: '498702559917801758' }, - { file: 'packages/react-icons-mdl2/src/components/EgnyteLogoIcon.tsx', hash: '11787586365363039828' }, - { file: 'packages/react-icons-mdl2/src/components/EllipseIcon.tsx', hash: '7563388097856529345' }, - { file: 'packages/react-icons-mdl2/src/components/EmbedIcon.tsx', hash: '12421049566526858297' }, - { file: 'packages/react-icons-mdl2/src/components/Emoji2Icon.tsx', hash: '9632797341218035400' }, - { file: 'packages/react-icons-mdl2/src/components/EmojiDisappointedIcon.tsx', hash: '11292699018502769948' }, - { file: 'packages/react-icons-mdl2/src/components/EmojiIcon.tsx', hash: '3527785752414452552' }, - { file: 'packages/react-icons-mdl2/src/components/EmojiNeutralIcon.tsx', hash: '4832038927171425591' }, - { file: 'packages/react-icons-mdl2/src/components/EmojiTabSymbolsIcon.tsx', hash: '14052316026912103488' }, - { file: 'packages/react-icons-mdl2/src/components/EmptyRecycleBinIcon.tsx', hash: '14995044938165035199' }, - { file: 'packages/react-icons-mdl2/src/components/EncryptionIcon.tsx', hash: '15075199846642749840' }, - { file: 'packages/react-icons-mdl2/src/components/EndPointSolidIcon.tsx', hash: '3167677454794359558' }, - { file: 'packages/react-icons-mdl2/src/components/EngineeringGroupIcon.tsx', hash: '998933366201572470' }, - { file: 'packages/react-icons-mdl2/src/components/EntitlementPolicyIcon.tsx', hash: '1793133232166007266' }, - { file: 'packages/react-icons-mdl2/src/components/EntitlementRedemptionIcon.tsx', hash: '16842033997814526566' }, - { file: 'packages/react-icons-mdl2/src/components/EntryDeclineIcon.tsx', hash: '6195158794810210978' }, - { file: 'packages/react-icons-mdl2/src/components/EntryViewIcon.tsx', hash: '6340409500225097365' }, - { file: 'packages/react-icons-mdl2/src/components/EqualizerIcon.tsx', hash: '5020681445912180101' }, - { file: 'packages/react-icons-mdl2/src/components/EraseToolIcon.tsx', hash: '1207971189339545279' }, - { file: 'packages/react-icons-mdl2/src/components/ErrorBadgeIcon.tsx', hash: '8777689618958285548' }, - { file: 'packages/react-icons-mdl2/src/components/ErrorIcon.tsx', hash: '12165290586267258948' }, - { file: 'packages/react-icons-mdl2/src/components/Event12Icon.tsx', hash: '2431490381627945469' }, - { file: 'packages/react-icons-mdl2/src/components/EventAcceptedIcon.tsx', hash: '5320856392963509965' }, - { file: 'packages/react-icons-mdl2/src/components/EventDateIcon.tsx', hash: '13151646515665406908' }, - { file: 'packages/react-icons-mdl2/src/components/EventDateMissed12Icon.tsx', hash: '6189471729333629318' }, - { file: 'packages/react-icons-mdl2/src/components/EventDeclinedIcon.tsx', hash: '14114511301469755687' }, - { file: 'packages/react-icons-mdl2/src/components/EventIcon.tsx', hash: '13625411325414082247' }, - { file: 'packages/react-icons-mdl2/src/components/EventInfoIcon.tsx', hash: '1391354774988071725' }, - { file: 'packages/react-icons-mdl2/src/components/EventTentativeIcon.tsx', hash: '11989511012280391708' }, - { file: 'packages/react-icons-mdl2/src/components/EventTentativeMirroredIcon.tsx', hash: '1553750628165621737' }, - { file: 'packages/react-icons-mdl2/src/components/EventToDoLogoIcon.tsx', hash: '1732699839277899742' }, - { file: 'packages/react-icons-mdl2/src/components/ExerciseTrackerIcon.tsx', hash: '11619246031913373899' }, - { file: 'packages/react-icons-mdl2/src/components/ExpandMenuIcon.tsx', hash: '2883637658086310412' }, - { file: 'packages/react-icons-mdl2/src/components/ExploreContentIcon.tsx', hash: '15939418160088449230' }, - { file: 'packages/react-icons-mdl2/src/components/ExploreContentSingleIcon.tsx', hash: '1357890855973722731' }, - { file: 'packages/react-icons-mdl2/src/components/ExploreDataIcon.tsx', hash: '13240326137614761264' }, - { file: 'packages/react-icons-mdl2/src/components/ExportIcon.tsx', hash: '6176838404383274226' }, - { file: 'packages/react-icons-mdl2/src/components/ExportMirroredIcon.tsx', hash: '17058149608204609598' }, - { file: 'packages/react-icons-mdl2/src/components/ExternalBuildIcon.tsx', hash: '7805834724391293006' }, - { file: 'packages/react-icons-mdl2/src/components/ExternalGitIcon.tsx', hash: '2979922376124883597' }, - { file: 'packages/react-icons-mdl2/src/components/ExternalTFVCIcon.tsx', hash: '8770119390497201960' }, - { file: 'packages/react-icons-mdl2/src/components/ExternalXAMLIcon.tsx', hash: '14897169727878082254' }, - { file: 'packages/react-icons-mdl2/src/components/EyeShadowIcon.tsx', hash: '11547250779044996711' }, - { file: 'packages/react-icons-mdl2/src/components/EyedropperIcon.tsx', hash: '17489759088299487201' }, - { file: 'packages/react-icons-mdl2/src/components/F12DevToolsIcon.tsx', hash: '15795590193304864300' }, - { file: 'packages/react-icons-mdl2/src/components/FacebookLogoIcon.tsx', hash: '3945007834451489679' }, - { file: 'packages/react-icons-mdl2/src/components/FamilyIcon.tsx', hash: '1944465575896356847' }, - { file: 'packages/react-icons-mdl2/src/components/FangBodyIcon.tsx', hash: '17642602016488988479' }, - { file: 'packages/react-icons-mdl2/src/components/FastForwardEightXIcon.tsx', hash: '18178309367561894583' }, - { file: 'packages/react-icons-mdl2/src/components/FastForwardFourXIcon.tsx', hash: '6705881211608202785' }, - { file: 'packages/react-icons-mdl2/src/components/FastForwardIcon.tsx', hash: '16351946631805874388' }, - { file: 'packages/react-icons-mdl2/src/components/FastForwardOneFiveXIcon.tsx', hash: '9945217581225705551' }, - { file: 'packages/react-icons-mdl2/src/components/FastForwardOneXIcon.tsx', hash: '1275773114276841049' }, - { file: 'packages/react-icons-mdl2/src/components/FastForwardPointFiveXIcon.tsx', hash: '17652874859284714523' }, - { file: 'packages/react-icons-mdl2/src/components/FastForwardTwoXIcon.tsx', hash: '6288769981516574323' }, - { file: 'packages/react-icons-mdl2/src/components/FastModeIcon.tsx', hash: '8565396335278143488' }, - { file: 'packages/react-icons-mdl2/src/components/FaviconIcon.tsx', hash: '12942536079808820041' }, - { file: 'packages/react-icons-mdl2/src/components/FavoriteListIcon.tsx', hash: '12205614405595495904' }, - { file: 'packages/react-icons-mdl2/src/components/FavoriteStarFillIcon.tsx', hash: '11957377664756637903' }, - { file: 'packages/react-icons-mdl2/src/components/FavoriteStarIcon.tsx', hash: '276723320467206854' }, - { file: 'packages/react-icons-mdl2/src/components/FaxIcon.tsx', hash: '15174575052554189774' }, - { file: 'packages/react-icons-mdl2/src/components/FeedbackIcon.tsx', hash: '14179107003696613703' }, - { - file: 'packages/react-icons-mdl2/src/components/FeedbackRequestMirroredSolidIcon.tsx', - hash: '6167066386013211705', - }, - { file: 'packages/react-icons-mdl2/src/components/FeedbackRequestSolidIcon.tsx', hash: '11345199070943455551' }, - { file: 'packages/react-icons-mdl2/src/components/FeedbackResponseSolidIcon.tsx', hash: '844989139249440000' }, - { file: 'packages/react-icons-mdl2/src/components/FerryIcon.tsx', hash: '3927782908157924236' }, - { file: 'packages/react-icons-mdl2/src/components/FerrySolidIcon.tsx', hash: '16922795746977067197' }, - { file: 'packages/react-icons-mdl2/src/components/FieldChangedIcon.tsx', hash: '6362867984287681842' }, - { file: 'packages/react-icons-mdl2/src/components/FieldEmptyIcon.tsx', hash: '12951541487822180241' }, - { file: 'packages/react-icons-mdl2/src/components/FieldFilledIcon.tsx', hash: '2829813208719522960' }, - { file: 'packages/react-icons-mdl2/src/components/FieldNotChangedIcon.tsx', hash: '9143517295368689068' }, - { file: 'packages/react-icons-mdl2/src/components/FieldReadOnlyIcon.tsx', hash: '1383806378416658822' }, - { file: 'packages/react-icons-mdl2/src/components/FieldRequiredIcon.tsx', hash: '9874506948980735455' }, - { file: 'packages/react-icons-mdl2/src/components/FileASPXIcon.tsx', hash: '6895839686502133855' }, - { file: 'packages/react-icons-mdl2/src/components/FileBugIcon.tsx', hash: '7640769980279416101' }, - { file: 'packages/react-icons-mdl2/src/components/FileCSSIcon.tsx', hash: '1050684036460858812' }, - { file: 'packages/react-icons-mdl2/src/components/FileCodeIcon.tsx', hash: '16719505228843895462' }, - { file: 'packages/react-icons-mdl2/src/components/FileCommentIcon.tsx', hash: '606968050369362343' }, - { file: 'packages/react-icons-mdl2/src/components/FileHTMLIcon.tsx', hash: '765214480847777695' }, - { file: 'packages/react-icons-mdl2/src/components/FileImageIcon.tsx', hash: '4844641701165238743' }, - { file: 'packages/react-icons-mdl2/src/components/FileJAVAIcon.tsx', hash: '4450722937973378228' }, - { file: 'packages/react-icons-mdl2/src/components/FileLessIcon.tsx', hash: '8881253924066945591' }, - { file: 'packages/react-icons-mdl2/src/components/FileOffIcon.tsx', hash: '9345742102333117451' }, - { file: 'packages/react-icons-mdl2/src/components/FilePDBIcon.tsx', hash: '5282290141971118284' }, - { file: 'packages/react-icons-mdl2/src/components/FileRequestIcon.tsx', hash: '7269778805807155600' }, - { file: 'packages/react-icons-mdl2/src/components/FileSQLIcon.tsx', hash: '4971825357918078797' }, - { file: 'packages/react-icons-mdl2/src/components/FileSassIcon.tsx', hash: '6262095417547644767' }, - { file: 'packages/react-icons-mdl2/src/components/FileSymlinkIcon.tsx', hash: '6888643214960891177' }, - { file: 'packages/react-icons-mdl2/src/components/FileSystemIcon.tsx', hash: '4586503443833768744' }, - { file: 'packages/react-icons-mdl2/src/components/FileTemplateIcon.tsx', hash: '102524233678650' }, - { file: 'packages/react-icons-mdl2/src/components/FileYMLIcon.tsx', hash: '7373943771233632903' }, - { file: 'packages/react-icons-mdl2/src/components/FilterAscendingIcon.tsx', hash: '7986231996921620159' }, - { file: 'packages/react-icons-mdl2/src/components/FilterDescendingIcon.tsx', hash: '9036833625296158708' }, - { file: 'packages/react-icons-mdl2/src/components/FilterIcon.tsx', hash: '15632557997728755643' }, - { file: 'packages/react-icons-mdl2/src/components/FilterSettingsIcon.tsx', hash: '18384344814770433702' }, - { file: 'packages/react-icons-mdl2/src/components/FilterSolidIcon.tsx', hash: '16527487026441098924' }, - { file: 'packages/react-icons-mdl2/src/components/FiltersIcon.tsx', hash: '17788291567474260736' }, - { file: 'packages/react-icons-mdl2/src/components/FiltersSolidIcon.tsx', hash: '2955836481941787615' }, - { file: 'packages/react-icons-mdl2/src/components/FinancialIcon.tsx', hash: '6417373302479088294' }, - { file: 'packages/react-icons-mdl2/src/components/FinancialMirroredSolidIcon.tsx', hash: '12472787632715591727' }, - { file: 'packages/react-icons-mdl2/src/components/FinancialSolidIcon.tsx', hash: '16759164632230079118' }, - { file: 'packages/react-icons-mdl2/src/components/FingerprintIcon.tsx', hash: '1814464459187160317' }, - { file: 'packages/react-icons-mdl2/src/components/FitPageIcon.tsx', hash: '18087310676152160539' }, - { file: 'packages/react-icons-mdl2/src/components/FitWidthIcon.tsx', hash: '3330934962504444846' }, - { file: 'packages/react-icons-mdl2/src/components/FiveTileGridIcon.tsx', hash: '4303387150744159805' }, - { file: 'packages/react-icons-mdl2/src/components/FixedAssetManagementIcon.tsx', hash: '4450397116994178154' }, - { file: 'packages/react-icons-mdl2/src/components/FixedColumnWidthIcon.tsx', hash: '1282486324231742294' }, - { file: 'packages/react-icons-mdl2/src/components/FlagIcon.tsx', hash: '1404061495096326413' }, - { file: 'packages/react-icons-mdl2/src/components/FlameSolidIcon.tsx', hash: '1580665274438723795' }, - { file: 'packages/react-icons-mdl2/src/components/FlashAutoIcon.tsx', hash: '6815009142415122429' }, - { file: 'packages/react-icons-mdl2/src/components/FlashOffIcon.tsx', hash: '6505550303339807125' }, - { file: 'packages/react-icons-mdl2/src/components/FlashlightIcon.tsx', hash: '3477643417563353345' }, - { file: 'packages/react-icons-mdl2/src/components/FlickDownIcon.tsx', hash: '3353038571830785712' }, - { file: 'packages/react-icons-mdl2/src/components/FlickLeftIcon.tsx', hash: '15950772530127709782' }, - { file: 'packages/react-icons-mdl2/src/components/FlickRightIcon.tsx', hash: '10771208732872140808' }, - { file: 'packages/react-icons-mdl2/src/components/FlickUpIcon.tsx', hash: '8892451043636875937' }, - { file: 'packages/react-icons-mdl2/src/components/FlowChartIcon.tsx', hash: '226511449971238124' }, - { file: 'packages/react-icons-mdl2/src/components/FlowIcon.tsx', hash: '1235278112582679794' }, - { file: 'packages/react-icons-mdl2/src/components/FlowerIcon.tsx', hash: '4427719849604199650' }, - { file: 'packages/react-icons-mdl2/src/components/FocalPointIcon.tsx', hash: '15911317157455942097' }, - { file: 'packages/react-icons-mdl2/src/components/FocusIcon.tsx', hash: '5539639720883062777' }, - { file: 'packages/react-icons-mdl2/src/components/FocusViewIcon.tsx', hash: '3939117956871096782' }, - { file: 'packages/react-icons-mdl2/src/components/FogIcon.tsx', hash: '1980192386355863521' }, - { file: 'packages/react-icons-mdl2/src/components/FolderFillIcon.tsx', hash: '9389817415866479663' }, - { file: 'packages/react-icons-mdl2/src/components/FolderHorizontalIcon.tsx', hash: '6956772245809174415' }, - { file: 'packages/react-icons-mdl2/src/components/FolderIcon.tsx', hash: '1712208359337412229' }, - { file: 'packages/react-icons-mdl2/src/components/FolderListIcon.tsx', hash: '9551306821671813083' }, - { file: 'packages/react-icons-mdl2/src/components/FolderListMirroredIcon.tsx', hash: '9938125311101616247' }, - { file: 'packages/react-icons-mdl2/src/components/FolderOpenIcon.tsx', hash: '16236857408621192617' }, - { file: 'packages/react-icons-mdl2/src/components/FolderQueryIcon.tsx', hash: '757534951338790000' }, - { file: 'packages/react-icons-mdl2/src/components/FolderSearchIcon.tsx', hash: '15912130893073646850' }, - { file: 'packages/react-icons-mdl2/src/components/FollowUserIcon.tsx', hash: '6727622312615324985' }, - { file: 'packages/react-icons-mdl2/src/components/FontColorAIcon.tsx', hash: '11470237927172903368' }, - { file: 'packages/react-icons-mdl2/src/components/FontColorIcon.tsx', hash: '15275041937967336194' }, - { file: 'packages/react-icons-mdl2/src/components/FontColorSwatchIcon.tsx', hash: '12200134352683161273' }, - { file: 'packages/react-icons-mdl2/src/components/FontDecreaseIcon.tsx', hash: '13742892961586592786' }, - { file: 'packages/react-icons-mdl2/src/components/FontIcon.tsx', hash: '13724598167896502006' }, - { file: 'packages/react-icons-mdl2/src/components/FontIncreaseIcon.tsx', hash: '11026524880036930460' }, - { file: 'packages/react-icons-mdl2/src/components/FontSize2Icon.tsx', hash: '17809756178006834445' }, - { file: 'packages/react-icons-mdl2/src/components/FontSizeIcon.tsx', hash: '5696547717711169794' }, - { file: 'packages/react-icons-mdl2/src/components/FooterIcon.tsx', hash: '2763034011155046097' }, - { file: 'packages/react-icons-mdl2/src/components/FormLibraryIcon.tsx', hash: '16894238111626919263' }, - { file: 'packages/react-icons-mdl2/src/components/FormLibraryMirroredIcon.tsx', hash: '1164345260899139517' }, - { file: 'packages/react-icons-mdl2/src/components/FormatPainterIcon.tsx', hash: '15912854457010730699' }, - { file: 'packages/react-icons-mdl2/src/components/ForumIcon.tsx', hash: '14594499032992496602' }, - { file: 'packages/react-icons-mdl2/src/components/ForwardEventIcon.tsx', hash: '12838663604244959435' }, - { file: 'packages/react-icons-mdl2/src/components/ForwardIcon.tsx', hash: '8618057237755943493' }, - { file: 'packages/react-icons-mdl2/src/components/FreezingIcon.tsx', hash: '7147821662650477276' }, - { file: 'packages/react-icons-mdl2/src/components/FrigidIcon.tsx', hash: '9172736073466509726' }, - { file: 'packages/react-icons-mdl2/src/components/FrontCameraIcon.tsx', hash: '7890552227182908605' }, - { file: 'packages/react-icons-mdl2/src/components/FullCircleMaskIcon.tsx', hash: '4033135983242084915' }, - { file: 'packages/react-icons-mdl2/src/components/FullHistoryIcon.tsx', hash: '12488798171462511493' }, - { file: 'packages/react-icons-mdl2/src/components/FullScreenIcon.tsx', hash: '12958098732161905706' }, - { file: 'packages/react-icons-mdl2/src/components/FullViewIcon.tsx', hash: '5235475494113882152' }, - { file: 'packages/react-icons-mdl2/src/components/FullWidthEditIcon.tsx', hash: '5465637594615076102' }, - { file: 'packages/react-icons-mdl2/src/components/FullWidthIcon.tsx', hash: '15366904044629970765' }, - { - file: 'packages/react-icons-mdl2/src/components/FunctionalManagerDashboardIcon.tsx', - hash: '12203260525418953853', - }, - { file: 'packages/react-icons-mdl2/src/components/FunnelChartIcon.tsx', hash: '10790643609584269218' }, - { file: 'packages/react-icons-mdl2/src/components/GIFIcon.tsx', hash: '9632731809471011174' }, - { file: 'packages/react-icons-mdl2/src/components/GUIDIcon.tsx', hash: '15534661867014684872' }, - { file: 'packages/react-icons-mdl2/src/components/GameIcon.tsx', hash: '15746196390646228787' }, - { file: 'packages/react-icons-mdl2/src/components/GatherIcon.tsx', hash: '15848159200387148602' }, - { file: 'packages/react-icons-mdl2/src/components/GenerateIcon.tsx', hash: '8156502823136479518' }, - { file: 'packages/react-icons-mdl2/src/components/GenericScanFilledIcon.tsx', hash: '11097470524340453746' }, - { file: 'packages/react-icons-mdl2/src/components/GenericScanIcon.tsx', hash: '5566996355092293666' }, - { file: 'packages/react-icons-mdl2/src/components/GiftBoxSolidIcon.tsx', hash: '7571481021195839227' }, - { file: 'packages/react-icons-mdl2/src/components/GiftCardIcon.tsx', hash: '2807842151596238352' }, - { file: 'packages/react-icons-mdl2/src/components/GiftboxIcon.tsx', hash: '17845510496809357564' }, - { file: 'packages/react-icons-mdl2/src/components/GiftboxOpenIcon.tsx', hash: '14201350368078001710' }, - { file: 'packages/react-icons-mdl2/src/components/GitForkIcon.tsx', hash: '16940210332522310039' }, - { file: 'packages/react-icons-mdl2/src/components/GitGraphIcon.tsx', hash: '16374940073848176332' }, - { file: 'packages/react-icons-mdl2/src/components/GitHubLogoIcon.tsx', hash: '11928675214469758864' }, - { file: 'packages/react-icons-mdl2/src/components/GitLogoIcon.tsx', hash: '11522156507346313112' }, - { file: 'packages/react-icons-mdl2/src/components/GlassesIcon.tsx', hash: '8565278624735671618' }, - { file: 'packages/react-icons-mdl2/src/components/GlimmerIcon.tsx', hash: '10243000354255117688' }, - { file: 'packages/react-icons-mdl2/src/components/GlobalNavButtonActiveIcon.tsx', hash: '565660960618390405' }, - { file: 'packages/react-icons-mdl2/src/components/GlobalNavButtonIcon.tsx', hash: '9326193492154063760' }, - { file: 'packages/react-icons-mdl2/src/components/Globe2Icon.tsx', hash: '14479270011036253116' }, - { file: 'packages/react-icons-mdl2/src/components/GlobeFavoriteIcon.tsx', hash: '6439401632011068110' }, - { file: 'packages/react-icons-mdl2/src/components/GlobeIcon.tsx', hash: '13412169222349203733' }, - { file: 'packages/react-icons-mdl2/src/components/GoIcon.tsx', hash: '3851795450163977084' }, - { file: 'packages/react-icons-mdl2/src/components/GoMirroredIcon.tsx', hash: '10247853145577366265' }, - { file: 'packages/react-icons-mdl2/src/components/GoToDashboardIcon.tsx', hash: '15740169657036959208' }, - { file: 'packages/react-icons-mdl2/src/components/GolfIcon.tsx', hash: '10545511422697821400' }, - { - file: 'packages/react-icons-mdl2/src/components/GoogleDriveLogoBottomBlueIcon.tsx', - hash: '3001119224492718906', - }, - { file: 'packages/react-icons-mdl2/src/components/GoogleDriveLogoIcon.tsx', hash: '18004521176360559242' }, - { - file: 'packages/react-icons-mdl2/src/components/GoogleDriveLogoLeftGreenIcon.tsx', - hash: '14815230303350470687', - }, - { - file: 'packages/react-icons-mdl2/src/components/GoogleDriveLogoRightYellowIcon.tsx', - hash: '17655187547932670362', - }, - { file: 'packages/react-icons-mdl2/src/components/GotoTodayIcon.tsx', hash: '11786306560619474198' }, - { file: 'packages/react-icons-mdl2/src/components/GradleLogo32Icon.tsx', hash: '5235762091848188661' }, - { file: 'packages/react-icons-mdl2/src/components/GreetingCardIcon.tsx', hash: '2652324495810548652' }, - { file: 'packages/react-icons-mdl2/src/components/GridViewLargeIcon.tsx', hash: '7773270874283410534' }, - { file: 'packages/react-icons-mdl2/src/components/GridViewMediumIcon.tsx', hash: '11534935878292624677' }, - { file: 'packages/react-icons-mdl2/src/components/GridViewSmallIcon.tsx', hash: '12237242453908160281' }, - { file: 'packages/react-icons-mdl2/src/components/GripperBarHorizontalIcon.tsx', hash: '6308142595012791984' }, - { file: 'packages/react-icons-mdl2/src/components/GripperBarVerticalIcon.tsx', hash: '7470598359065919341' }, - { file: 'packages/react-icons-mdl2/src/components/GripperDotsVerticalIcon.tsx', hash: '15307366740827741066' }, - { file: 'packages/react-icons-mdl2/src/components/GripperToolIcon.tsx', hash: '716840007844796444' }, - { file: 'packages/react-icons-mdl2/src/components/GroupIcon.tsx', hash: '13608367865003462107' }, - { file: 'packages/react-icons-mdl2/src/components/GroupListIcon.tsx', hash: '6518290500881406538' }, - { file: 'packages/react-icons-mdl2/src/components/GroupObjectIcon.tsx', hash: '1586879418830404806' }, - { file: 'packages/react-icons-mdl2/src/components/GroupedAscendingIcon.tsx', hash: '6856150591813394404' }, - { file: 'packages/react-icons-mdl2/src/components/GroupedDescendingIcon.tsx', hash: '13375481586542023244' }, - { file: 'packages/react-icons-mdl2/src/components/GroupedListIcon.tsx', hash: '7376169769524108343' }, - { file: 'packages/react-icons-mdl2/src/components/GuitarIcon.tsx', hash: '17314515334492037841' }, - { file: 'packages/react-icons-mdl2/src/components/HailDayIcon.tsx', hash: '12947649342042611772' }, - { file: 'packages/react-icons-mdl2/src/components/HailNightIcon.tsx', hash: '18391447311035016800' }, - { file: 'packages/react-icons-mdl2/src/components/HalfAlphaIcon.tsx', hash: '6922565485971119060' }, - { file: 'packages/react-icons-mdl2/src/components/HalfCircleIcon.tsx', hash: '2897520889126335567' }, - { file: 'packages/react-icons-mdl2/src/components/HandsFreeIcon.tsx', hash: '11239064513804798904' }, - { file: 'packages/react-icons-mdl2/src/components/HandwritingIcon.tsx', hash: '15421536123762955104' }, - { file: 'packages/react-icons-mdl2/src/components/HardDriveGroupIcon.tsx', hash: '7633148961616627245' }, - { file: 'packages/react-icons-mdl2/src/components/HardDriveIcon.tsx', hash: '5939750842377694100' }, - { file: 'packages/react-icons-mdl2/src/components/HardDriveLockIcon.tsx', hash: '17656948361291404624' }, - { file: 'packages/react-icons-mdl2/src/components/HardDriveUnlockIcon.tsx', hash: '8004000311676833368' }, - { file: 'packages/react-icons-mdl2/src/components/Header1Icon.tsx', hash: '8351749191063511306' }, - { file: 'packages/react-icons-mdl2/src/components/Header2Icon.tsx', hash: '5390568727727418817' }, - { file: 'packages/react-icons-mdl2/src/components/Header3Icon.tsx', hash: '840488768817872929' }, - { file: 'packages/react-icons-mdl2/src/components/Header4Icon.tsx', hash: '14967090543487683017' }, - { file: 'packages/react-icons-mdl2/src/components/HeaderIcon.tsx', hash: '2899809964069853826' }, - { file: 'packages/react-icons-mdl2/src/components/HeadsetIcon.tsx', hash: '1913138919122316805' }, - { file: 'packages/react-icons-mdl2/src/components/HeadsetSolidIcon.tsx', hash: '1680033626700166228' }, - { file: 'packages/react-icons-mdl2/src/components/HealthIcon.tsx', hash: '14799223708863617884' }, - { file: 'packages/react-icons-mdl2/src/components/HealthRefreshIcon.tsx', hash: '14799706733515662794' }, - { file: 'packages/react-icons-mdl2/src/components/HealthSolidIcon.tsx', hash: '15046539076256353862' }, - { file: 'packages/react-icons-mdl2/src/components/HeartBrokenIcon.tsx', hash: '1070767128146372350' }, - { file: 'packages/react-icons-mdl2/src/components/HeartFillIcon.tsx', hash: '2370001366264079587' }, - { file: 'packages/react-icons-mdl2/src/components/HeartIcon.tsx', hash: '14890364970617740611' }, - { file: 'packages/react-icons-mdl2/src/components/HelpIcon.tsx', hash: '17388551513070667300' }, - { file: 'packages/react-icons-mdl2/src/components/HelpMirroredIcon.tsx', hash: '8186137454020037762' }, - { - file: 'packages/react-icons-mdl2/src/components/HexaditeInvestigationCancelIcon.tsx', - hash: '8670293296701721833', - }, - { file: 'packages/react-icons-mdl2/src/components/HexaditeInvestigationIcon.tsx', hash: '14080127459799947212' }, - { - file: 'packages/react-icons-mdl2/src/components/HexaditeInvestigationSemiAutoIcon.tsx', - hash: '10609077070546900329', - }, - { file: 'packages/react-icons-mdl2/src/components/HexagonIcon.tsx', hash: '3897459486326302618' }, - { file: 'packages/react-icons-mdl2/src/components/Hide2Icon.tsx', hash: '5182329091472537173' }, - { file: 'packages/react-icons-mdl2/src/components/Hide3Icon.tsx', hash: '2906922485346461460' }, - { file: 'packages/react-icons-mdl2/src/components/HideIcon.tsx', hash: '12862215902863030841' }, - { file: 'packages/react-icons-mdl2/src/components/HighlightIcon.tsx', hash: '15762583331867575297' }, - { file: 'packages/react-icons-mdl2/src/components/HighlightMappedShapesIcon.tsx', hash: '16132141732380379547' }, - { file: 'packages/react-icons-mdl2/src/components/HintTextIcon.tsx', hash: '4279486080758729787' }, - { file: 'packages/react-icons-mdl2/src/components/HistoricalWeatherIcon.tsx', hash: '13818466974725287815' }, - { file: 'packages/react-icons-mdl2/src/components/HistoryIcon.tsx', hash: '16030330658754714190' }, - { file: 'packages/react-icons-mdl2/src/components/HomeDropdownIcon.tsx', hash: '2488444561259964042' }, - { file: 'packages/react-icons-mdl2/src/components/HomeGroupIcon.tsx', hash: '14908559223308932072' }, - { file: 'packages/react-icons-mdl2/src/components/HomeIcon.tsx', hash: '12724622983047291653' }, - { file: 'packages/react-icons-mdl2/src/components/HomeSolidIcon.tsx', hash: '11148478484135002227' }, - { file: 'packages/react-icons-mdl2/src/components/HomeVerifyIcon.tsx', hash: '15066446849328693732' }, - { - file: 'packages/react-icons-mdl2/src/components/HorizontalDistributeCenterIcon.tsx', - hash: '13579758295283409353', - }, - { file: 'packages/react-icons-mdl2/src/components/HorizontalTabKeyIcon.tsx', hash: '2735500143879888466' }, - { file: 'packages/react-icons-mdl2/src/components/HospitalIcon.tsx', hash: '16954429495584924657' }, - { file: 'packages/react-icons-mdl2/src/components/HotelIcon.tsx', hash: '1602330941386012729' }, - { file: 'packages/react-icons-mdl2/src/components/HourGlassIcon.tsx', hash: '3191346496426536019' }, - { file: 'packages/react-icons-mdl2/src/components/IDBadgeIcon.tsx', hash: '897528330211741886' }, - { file: 'packages/react-icons-mdl2/src/components/IOTIcon.tsx', hash: '5285884083806935808' }, - { file: 'packages/react-icons-mdl2/src/components/IRMForwardIcon.tsx', hash: '362575832829977312' }, - { file: 'packages/react-icons-mdl2/src/components/IRMForwardMirroredIcon.tsx', hash: '13155918519999883784' }, - { file: 'packages/react-icons-mdl2/src/components/IRMReplyIcon.tsx', hash: '13947164312188832822' }, - { file: 'packages/react-icons-mdl2/src/components/IRMReplyMirroredIcon.tsx', hash: '1145353507746735981' }, - { file: 'packages/react-icons-mdl2/src/components/IconSetsFlagIcon.tsx', hash: '15214257063406701202' }, - { file: 'packages/react-icons-mdl2/src/components/IgnoreConversationIcon.tsx', hash: '9335776128620278432' }, - { file: 'packages/react-icons-mdl2/src/components/ImageCrosshairIcon.tsx', hash: '5138187599671604052' }, - { file: 'packages/react-icons-mdl2/src/components/ImageDiffIcon.tsx', hash: '13599864074318182656' }, - { file: 'packages/react-icons-mdl2/src/components/ImageInARIcon.tsx', hash: '13855592006667470306' }, - { file: 'packages/react-icons-mdl2/src/components/ImagePixelIcon.tsx', hash: '9154411159137130252' }, - { file: 'packages/react-icons-mdl2/src/components/ImageSearchIcon.tsx', hash: '9041697212803531685' }, - { file: 'packages/react-icons-mdl2/src/components/ImportAllMirroredIcon.tsx', hash: '3025801446152077118' }, - { file: 'packages/react-icons-mdl2/src/components/ImportIcon.tsx', hash: '13040661219662628437' }, - { file: 'packages/react-icons-mdl2/src/components/ImportMirroredIcon.tsx', hash: '12908089643626136740' }, - { file: 'packages/react-icons-mdl2/src/components/ImportantIcon.tsx', hash: '7826677808925451366' }, - { file: 'packages/react-icons-mdl2/src/components/InboxCheckIcon.tsx', hash: '13209492309610537868' }, - { file: 'packages/react-icons-mdl2/src/components/InboxIcon.tsx', hash: '16589216967091416154' }, - { file: 'packages/react-icons-mdl2/src/components/IncidentTriangleIcon.tsx', hash: '9235238053814830523' }, - { file: 'packages/react-icons-mdl2/src/components/IncomingCallIcon.tsx', hash: '4007250706804841898' }, - { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentArrowIcon.tsx', hash: '5427824453044875567' }, - { - file: 'packages/react-icons-mdl2/src/components/IncreaseIndentArrowMirroredIcon.tsx', - hash: '16626271714978007440', - }, - { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentHangingIcon.tsx', hash: '3186950272609104279' }, - { - file: 'packages/react-icons-mdl2/src/components/IncreaseIndentHangingMirroredIcon.tsx', - hash: '9996178347351637205', - }, - { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentIcon.tsx', hash: '9678011342676446086' }, - { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentLegacyIcon.tsx', hash: '13386453491918711782' }, - { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentMirroredIcon.tsx', hash: '1303278817606075548' }, - { file: 'packages/react-icons-mdl2/src/components/IncreaseIndentTextIcon.tsx', hash: '9430603589597575034' }, - { - file: 'packages/react-icons-mdl2/src/components/IncreaseIndentTextMirroredIcon.tsx', - hash: '6756712163376617801', - }, - { file: 'packages/react-icons-mdl2/src/components/IndentFirstLineIcon.tsx', hash: '370488840276189328' }, - { file: 'packages/react-icons-mdl2/src/components/Info2Icon.tsx', hash: '14020597724569194775' }, - { file: 'packages/react-icons-mdl2/src/components/InfoIcon.tsx', hash: '3721390302452091834' }, - { file: 'packages/react-icons-mdl2/src/components/InfoSolidIcon.tsx', hash: '2432153378739515036' }, - { file: 'packages/react-icons-mdl2/src/components/InformationBarriersIcon.tsx', hash: '8696582436277744629' }, - { file: 'packages/react-icons-mdl2/src/components/InkingToolIcon.tsx', hash: '11459756636301925682' }, - { file: 'packages/react-icons-mdl2/src/components/InputAddressIcon.tsx', hash: '13812358188248488657' }, - { file: 'packages/react-icons-mdl2/src/components/InsertColumnsLeftIcon.tsx', hash: '13708775557086203284' }, - { file: 'packages/react-icons-mdl2/src/components/InsertColumnsRightIcon.tsx', hash: '11557471302491603282' }, - { file: 'packages/react-icons-mdl2/src/components/InsertIcon.tsx', hash: '12107165173487530471' }, - { file: 'packages/react-icons-mdl2/src/components/InsertRowsAboveIcon.tsx', hash: '13485979422068241069' }, - { file: 'packages/react-icons-mdl2/src/components/InsertRowsBelowIcon.tsx', hash: '5877492448004420133' }, - { file: 'packages/react-icons-mdl2/src/components/InsertSignatureLineIcon.tsx', hash: '12840188565611841260' }, - { file: 'packages/react-icons-mdl2/src/components/InsertTextBoxIcon.tsx', hash: '879948278558379041' }, - { file: 'packages/react-icons-mdl2/src/components/InsightsIcon.tsx', hash: '15701471209360575195' }, - { file: 'packages/react-icons-mdl2/src/components/InstallToDriveIcon.tsx', hash: '1266954311457013518' }, - { file: 'packages/react-icons-mdl2/src/components/InstallationIcon.tsx', hash: '168933430430857110' }, - { file: 'packages/react-icons-mdl2/src/components/InternalInvestigationIcon.tsx', hash: '14733996250043645076' }, - { file: 'packages/react-icons-mdl2/src/components/InternetSharingIcon.tsx', hash: '231211082630324067' }, - { file: 'packages/react-icons-mdl2/src/components/IssueSolidIcon.tsx', hash: '10205135659021210842' }, - { file: 'packages/react-icons-mdl2/src/components/IssueTrackingIcon.tsx', hash: '13078163167098961521' }, - { file: 'packages/react-icons-mdl2/src/components/IssueTrackingMirroredIcon.tsx', hash: '6853285071464396522' }, - { file: 'packages/react-icons-mdl2/src/components/ItalicIcon.tsx', hash: '10688617757439753808' }, - { file: 'packages/react-icons-mdl2/src/components/JSIcon.tsx', hash: '7001057569749280823' }, - { file: 'packages/react-icons-mdl2/src/components/JavaLogoIcon.tsx', hash: '12341234154489462799' }, - { file: 'packages/react-icons-mdl2/src/components/JavaScriptLanguageIcon.tsx', hash: '2734361147194257907' }, - { file: 'packages/react-icons-mdl2/src/components/JenkinsLogoIcon.tsx', hash: '2671724868545436197' }, - { file: 'packages/react-icons-mdl2/src/components/JoinOnlineMeetingIcon.tsx', hash: '11532035316407786879' }, - { file: 'packages/react-icons-mdl2/src/components/KeubernetesLogoIcon.tsx', hash: '2977458046132010956' }, - { file: 'packages/react-icons-mdl2/src/components/KeyPhraseExtractionIcon.tsx', hash: '17790650281198840541' }, - { file: 'packages/react-icons-mdl2/src/components/KeyboardClassicIcon.tsx', hash: '411576966672510523' }, - { file: 'packages/react-icons-mdl2/src/components/KnowledgeArticleIcon.tsx', hash: '12469477897422924243' }, - { file: 'packages/react-icons-mdl2/src/components/LabelIcon.tsx', hash: '3378231475701239352' }, - { file: 'packages/react-icons-mdl2/src/components/LadybugSolidIcon.tsx', hash: '2255768388802589476' }, - { file: 'packages/react-icons-mdl2/src/components/LampIcon.tsx', hash: '2980312443538296758' }, - { file: 'packages/react-icons-mdl2/src/components/LandscapeOrientationIcon.tsx', hash: '4067546757606619660' }, - { file: 'packages/react-icons-mdl2/src/components/LaptopSecureIcon.tsx', hash: '6296328661135281654' }, - { file: 'packages/react-icons-mdl2/src/components/LaptopSelectedIcon.tsx', hash: '16074226251523455567' }, - { file: 'packages/react-icons-mdl2/src/components/LargeGridIcon.tsx', hash: '5229171462323349257' }, - { file: 'packages/react-icons-mdl2/src/components/LearningToolsIcon.tsx', hash: '1478670133257245649' }, - { file: 'packages/react-icons-mdl2/src/components/LeaveIcon.tsx', hash: '3413862808121824360' }, - { file: 'packages/react-icons-mdl2/src/components/LeaveUserIcon.tsx', hash: '12989890662915153188' }, - { file: 'packages/react-icons-mdl2/src/components/LibraryIcon.tsx', hash: '1291483442627924261' }, - { file: 'packages/react-icons-mdl2/src/components/LifesaverIcon.tsx', hash: '15719069419304250576' }, - { file: 'packages/react-icons-mdl2/src/components/LifesaverLockIcon.tsx', hash: '8818896047143933430' }, - { file: 'packages/react-icons-mdl2/src/components/LightIcon.tsx', hash: '5156483312012830102' }, - { file: 'packages/react-icons-mdl2/src/components/LightWeightIcon.tsx', hash: '3865104666332960985' }, - { file: 'packages/react-icons-mdl2/src/components/LightbulbIcon.tsx', hash: '2436163697764661261' }, - { file: 'packages/react-icons-mdl2/src/components/LightningBoltIcon.tsx', hash: '13485616252088130492' }, - { file: 'packages/react-icons-mdl2/src/components/LightningBoltSolidIcon.tsx', hash: '15054961729375683944' }, - { file: 'packages/react-icons-mdl2/src/components/LikeIcon.tsx', hash: '9032546788293939018' }, - { file: 'packages/react-icons-mdl2/src/components/LikeSolidIcon.tsx', hash: '18382395873982313140' }, - { file: 'packages/react-icons-mdl2/src/components/LineChartIcon.tsx', hash: '794669679327992310' }, - { file: 'packages/react-icons-mdl2/src/components/LineIcon.tsx', hash: '9556042467546249456' }, - { file: 'packages/react-icons-mdl2/src/components/LineSpacingIcon.tsx', hash: '15896967001335665868' }, - { file: 'packages/react-icons-mdl2/src/components/LineStyleIcon.tsx', hash: '18211431930869399084' }, - { file: 'packages/react-icons-mdl2/src/components/LineThicknessIcon.tsx', hash: '14859153643587611765' }, - { file: 'packages/react-icons-mdl2/src/components/Link12Icon.tsx', hash: '16081584489473752658' }, - { file: 'packages/react-icons-mdl2/src/components/LinkIcon.tsx', hash: '1908750425081902690' }, - { file: 'packages/react-icons-mdl2/src/components/LinkedDatabaseIcon.tsx', hash: '4325267157746077126' }, - { file: 'packages/react-icons-mdl2/src/components/LinuxLogo32Icon.tsx', hash: '12568846083970101391' }, - { file: 'packages/react-icons-mdl2/src/components/ListIcon.tsx', hash: '16023719582074195209' }, - { file: 'packages/react-icons-mdl2/src/components/ListMirroredIcon.tsx', hash: '5098251431463116358' }, - { file: 'packages/react-icons-mdl2/src/components/LiveSiteIcon.tsx', hash: '14048768654735729185' }, - { file: 'packages/react-icons-mdl2/src/components/LocaleLanguageIcon.tsx', hash: '12337575125571454357' }, - { file: 'packages/react-icons-mdl2/src/components/LocationCircleIcon.tsx', hash: '9758846971576171370' }, - { file: 'packages/react-icons-mdl2/src/components/LocationDotIcon.tsx', hash: '3278405111715028294' }, - { file: 'packages/react-icons-mdl2/src/components/LocationFillIcon.tsx', hash: '2138561064316564498' }, - { file: 'packages/react-icons-mdl2/src/components/LocationIcon.tsx', hash: '5208443676669918505' }, - { file: 'packages/react-icons-mdl2/src/components/LocationOutlineIcon.tsx', hash: '13218853813874807588' }, - { file: 'packages/react-icons-mdl2/src/components/Lock12Icon.tsx', hash: '16013286017315295053' }, - { file: 'packages/react-icons-mdl2/src/components/LockIcon.tsx', hash: '4801981410903331805' }, - { file: 'packages/react-icons-mdl2/src/components/LockShareIcon.tsx', hash: '10342601556498003565' }, - { file: 'packages/react-icons-mdl2/src/components/LockSolidIcon.tsx', hash: '9752255275577661679' }, - { file: 'packages/react-icons-mdl2/src/components/LogRemoveIcon.tsx', hash: '18249700207254304282' }, - { file: 'packages/react-icons-mdl2/src/components/LookupEntitiesIcon.tsx', hash: '14469241137300715864' }, - { file: 'packages/react-icons-mdl2/src/components/LowerBrightnessIcon.tsx', hash: '13419595406937683625' }, - { file: 'packages/react-icons-mdl2/src/components/MachineLearningIcon.tsx', hash: '760629027388695268' }, - { file: 'packages/react-icons-mdl2/src/components/MailAlertIcon.tsx', hash: '15677037478095270277' }, - { file: 'packages/react-icons-mdl2/src/components/MailAttachedIcon.tsx', hash: '4025552307791860117' }, - { file: 'packages/react-icons-mdl2/src/components/MailCheckIcon.tsx', hash: '15178557980211822363' }, - { file: 'packages/react-icons-mdl2/src/components/MailFillIcon.tsx', hash: '11483268666054294702' }, - { file: 'packages/react-icons-mdl2/src/components/MailForwardIcon.tsx', hash: '3527035253875913326' }, - { file: 'packages/react-icons-mdl2/src/components/MailForwardMirroredIcon.tsx', hash: '2291238011890235092' }, - { file: 'packages/react-icons-mdl2/src/components/MailIcon.tsx', hash: '17100991757315805198' }, - { file: 'packages/react-icons-mdl2/src/components/MailLowImportanceIcon.tsx', hash: '567478396963195491' }, - { file: 'packages/react-icons-mdl2/src/components/MailOptionsIcon.tsx', hash: '200921925700068875' }, - { file: 'packages/react-icons-mdl2/src/components/MailPauseIcon.tsx', hash: '5629390760476035405' }, - { file: 'packages/react-icons-mdl2/src/components/MailReminderIcon.tsx', hash: '10098715243774779943' }, - { file: 'packages/react-icons-mdl2/src/components/MailRepeatIcon.tsx', hash: '17862325693321671302' }, - { file: 'packages/react-icons-mdl2/src/components/MailReplyAllIcon.tsx', hash: '7702777610664294929' }, - { file: 'packages/react-icons-mdl2/src/components/MailReplyAllMirroredIcon.tsx', hash: '11280323338549747454' }, - { file: 'packages/react-icons-mdl2/src/components/MailReplyIcon.tsx', hash: '6802930256440607638' }, - { file: 'packages/react-icons-mdl2/src/components/MailReplyMirroredIcon.tsx', hash: '2233973513224742586' }, - { file: 'packages/react-icons-mdl2/src/components/MailScheduleIcon.tsx', hash: '757776144436321925' }, - { file: 'packages/react-icons-mdl2/src/components/MailSolidIcon.tsx', hash: '4634490987071651103' }, - { file: 'packages/react-icons-mdl2/src/components/MailTentativeIcon.tsx', hash: '5135978347665218306' }, - { file: 'packages/react-icons-mdl2/src/components/MailTentativeMirroredIcon.tsx', hash: '4300182470474070687' }, - { file: 'packages/react-icons-mdl2/src/components/MailUndeliveredIcon.tsx', hash: '14903593936856019428' }, - { file: 'packages/react-icons-mdl2/src/components/ManagerSelfServiceIcon.tsx', hash: '1848510673883736166' }, - { file: 'packages/react-icons-mdl2/src/components/ManufacturingIcon.tsx', hash: '18047977118807371741' }, - { file: 'packages/react-icons-mdl2/src/components/MapDirectionsIcon.tsx', hash: '4747623359582002035' }, - { file: 'packages/react-icons-mdl2/src/components/MapLayersIcon.tsx', hash: '8481507691523574033' }, - { file: 'packages/react-icons-mdl2/src/components/MapPin12Icon.tsx', hash: '211162128284100738' }, - { file: 'packages/react-icons-mdl2/src/components/MapPinIcon.tsx', hash: '17733996541851463646' }, - { file: 'packages/react-icons-mdl2/src/components/MapPinSolidIcon.tsx', hash: '10658541521136810339' }, - { file: 'packages/react-icons-mdl2/src/components/MarkAsProtectedIcon.tsx', hash: '3760294448808538624' }, - { file: 'packages/react-icons-mdl2/src/components/MarkDownLanguageIcon.tsx', hash: '10998137402310667703' }, - { file: 'packages/react-icons-mdl2/src/components/MarketDownIcon.tsx', hash: '1927915898613886495' }, - { file: 'packages/react-icons-mdl2/src/components/MarketIcon.tsx', hash: '9428958624159950454' }, - { file: 'packages/react-icons-mdl2/src/components/MasterDatabaseIcon.tsx', hash: '12765781549694057240' }, - { file: 'packages/react-icons-mdl2/src/components/MaximumValueIcon.tsx', hash: '9548851655060404668' }, - { file: 'packages/react-icons-mdl2/src/components/MedalIcon.tsx', hash: '9016574582699757751' }, - { file: 'packages/react-icons-mdl2/src/components/MedalSolidIcon.tsx', hash: '9775549943191019333' }, - { file: 'packages/react-icons-mdl2/src/components/MediaAddIcon.tsx', hash: '1530213724134119045' }, - { file: 'packages/react-icons-mdl2/src/components/MediaIcon.tsx', hash: '13693312563984438343' }, - { file: 'packages/react-icons-mdl2/src/components/MedicalIcon.tsx', hash: '17678556182467551513' }, - { file: 'packages/react-icons-mdl2/src/components/MegaphoneIcon.tsx', hash: '16847710342780168526' }, - { file: 'packages/react-icons-mdl2/src/components/MegaphoneSolidIcon.tsx', hash: '9812427839658596847' }, - { file: 'packages/react-icons-mdl2/src/components/MemoIcon.tsx', hash: '2637519265040979218' }, - { file: 'packages/react-icons-mdl2/src/components/MergeDuplicateIcon.tsx', hash: '14987944302662535701' }, - { file: 'packages/react-icons-mdl2/src/components/MergeIcon.tsx', hash: '16459949698224202006' }, - { file: 'packages/react-icons-mdl2/src/components/MessageFillIcon.tsx', hash: '7028167948487732677' }, - { file: 'packages/react-icons-mdl2/src/components/MessageFriendRequestIcon.tsx', hash: '10447816732492443022' }, - { file: 'packages/react-icons-mdl2/src/components/MessageIcon.tsx', hash: '9016057551501316676' }, - { file: 'packages/react-icons-mdl2/src/components/MicOff2Icon.tsx', hash: '831218772748006399' }, - { file: 'packages/react-icons-mdl2/src/components/MicOffIcon.tsx', hash: '10987570889496568468' }, - { file: 'packages/react-icons-mdl2/src/components/MicrophoneIcon.tsx', hash: '14513278060535966782' }, - { file: 'packages/react-icons-mdl2/src/components/MiniContractIcon.tsx', hash: '16511800240076613720' }, - { file: 'packages/react-icons-mdl2/src/components/MiniContractMirroredIcon.tsx', hash: '10630210747251287634' }, - { file: 'packages/react-icons-mdl2/src/components/MiniExpandIcon.tsx', hash: '13680889919501484112' }, - { file: 'packages/react-icons-mdl2/src/components/MiniExpandMirroredIcon.tsx', hash: '2291813261765776362' }, - { file: 'packages/react-icons-mdl2/src/components/MiniLinkIcon.tsx', hash: '248848982504484274' }, - { file: 'packages/react-icons-mdl2/src/components/MinimumValueIcon.tsx', hash: '13613713551566134421' }, - { file: 'packages/react-icons-mdl2/src/components/MiracastLogoLargeIcon.tsx', hash: '13842928032969802526' }, - { file: 'packages/react-icons-mdl2/src/components/MobileAngledIcon.tsx', hash: '2757052120309127402' }, - { file: 'packages/react-icons-mdl2/src/components/MobileReportIcon.tsx', hash: '9428374822461622031' }, - { file: 'packages/react-icons-mdl2/src/components/MobileSelectedIcon.tsx', hash: '16784153577217981592' }, - { file: 'packages/react-icons-mdl2/src/components/ModelingViewIcon.tsx', hash: '11311555510747362676' }, - { file: 'packages/react-icons-mdl2/src/components/MoneyIcon.tsx', hash: '1393140136935152030' }, - { file: 'packages/react-icons-mdl2/src/components/MoreIcon.tsx', hash: '4658167228466283777' }, - { file: 'packages/react-icons-mdl2/src/components/MoreSportsIcon.tsx', hash: '9221304452546249716' }, - { file: 'packages/react-icons-mdl2/src/components/MoreVerticalIcon.tsx', hash: '6230043297841631422' }, - { file: 'packages/react-icons-mdl2/src/components/MountainClimbingIcon.tsx', hash: '621750915275139874' }, - { file: 'packages/react-icons-mdl2/src/components/MoveIcon.tsx', hash: '2987620761554093824' }, - { file: 'packages/react-icons-mdl2/src/components/MoveToFolderIcon.tsx', hash: '12206384036935632470' }, - { file: 'packages/react-icons-mdl2/src/components/MoversIcon.tsx', hash: '17572755030686178354' }, - { file: 'packages/react-icons-mdl2/src/components/MultiSelectIcon.tsx', hash: '16169117549836272193' }, - { file: 'packages/react-icons-mdl2/src/components/MultiSelectMirroredIcon.tsx', hash: '10970075712547181569' }, - { file: 'packages/react-icons-mdl2/src/components/MusicInCollectionFillIcon.tsx', hash: '11485106460390186839' }, - { file: 'packages/react-icons-mdl2/src/components/MusicInCollectionIcon.tsx', hash: '16669926402142356515' }, - { file: 'packages/react-icons-mdl2/src/components/MusicNoteIcon.tsx', hash: '7789904933433989372' }, - { file: 'packages/react-icons-mdl2/src/components/MuteChatIcon.tsx', hash: '3631919255804943778' }, - { file: 'packages/react-icons-mdl2/src/components/MyMoviesTVIcon.tsx', hash: '6406183886708476503' }, - { file: 'packages/react-icons-mdl2/src/components/MyNetworkIcon.tsx', hash: '15556630167642081635' }, - { file: 'packages/react-icons-mdl2/src/components/NPMLogoIcon.tsx', hash: '15938419132213830913' }, - { file: 'packages/react-icons-mdl2/src/components/Nav2DMapViewIcon.tsx', hash: '1861942974503405839' }, - { file: 'packages/react-icons-mdl2/src/components/NavigateBackIcon.tsx', hash: '15249469567878012490' }, - { file: 'packages/react-icons-mdl2/src/components/NavigateBackMirroredIcon.tsx', hash: '1817649965554632624' }, - { file: 'packages/react-icons-mdl2/src/components/NavigateExternalInlineIcon.tsx', hash: '6636555198967266856' }, - { file: 'packages/react-icons-mdl2/src/components/NavigateForwardIcon.tsx', hash: '14548222247030754116' }, - { file: 'packages/react-icons-mdl2/src/components/NavigateForwardMirroredIcon.tsx', hash: '9630908319510065411' }, - { file: 'packages/react-icons-mdl2/src/components/NavigationFlipperIcon.tsx', hash: '16780771950942383103' }, - { file: 'packages/react-icons-mdl2/src/components/NetworkTowerIcon.tsx', hash: '8956230440629168518' }, - { file: 'packages/react-icons-mdl2/src/components/NewAnalyticsQueryIcon.tsx', hash: '5795625520702608746' }, - { file: 'packages/react-icons-mdl2/src/components/NewFolderIcon.tsx', hash: '638387074709881957' }, - { file: 'packages/react-icons-mdl2/src/components/NewMailIcon.tsx', hash: '10242820263861230200' }, - { file: 'packages/react-icons-mdl2/src/components/NewTeamProjectIcon.tsx', hash: '2354857052378159660' }, - { file: 'packages/react-icons-mdl2/src/components/NewsIcon.tsx', hash: '9041237247619422980' }, - { file: 'packages/react-icons-mdl2/src/components/NewsSearchIcon.tsx', hash: '6774536564163043043' }, - { file: 'packages/react-icons-mdl2/src/components/NextIcon.tsx', hash: '1434721563549479484' }, - { file: 'packages/react-icons-mdl2/src/components/NonprofitLogo32Icon.tsx', hash: '17298146378948801665' }, - { file: 'packages/react-icons-mdl2/src/components/NormalWeightIcon.tsx', hash: '15211035032334837971' }, - { file: 'packages/react-icons-mdl2/src/components/NotExecutedIcon.tsx', hash: '6112908944121663220' }, - { file: 'packages/react-icons-mdl2/src/components/NotImpactedSolidIcon.tsx', hash: '9668204014136724574' }, - { file: 'packages/react-icons-mdl2/src/components/NoteForwardIcon.tsx', hash: '2033093137143398401' }, - { file: 'packages/react-icons-mdl2/src/components/NotePinnedIcon.tsx', hash: '15308229896399402511' }, - { file: 'packages/react-icons-mdl2/src/components/NoteReplyIcon.tsx', hash: '5397651241606373899' }, - { file: 'packages/react-icons-mdl2/src/components/NumberFieldIcon.tsx', hash: '1073357588587963185' }, - { file: 'packages/react-icons-mdl2/src/components/NumberIcon.tsx', hash: '17254717544082558121' }, - { file: 'packages/react-icons-mdl2/src/components/NumberSequenceIcon.tsx', hash: '2062763852355939642' }, - { file: 'packages/react-icons-mdl2/src/components/NumberSymbolIcon.tsx', hash: '600780750503080926' }, - { file: 'packages/react-icons-mdl2/src/components/NumberedListIcon.tsx', hash: '13513586621250451638' }, - { file: 'packages/react-icons-mdl2/src/components/NumberedListMirroredIcon.tsx', hash: '10445687537115426123' }, - { file: 'packages/react-icons-mdl2/src/components/NumberedListNumberIcon.tsx', hash: '15541807436844196483' }, - { - file: 'packages/react-icons-mdl2/src/components/NumberedListNumberMirroredIcon.tsx', - hash: '7523321592675558698', - }, - { file: 'packages/react-icons-mdl2/src/components/NumberedListTextIcon.tsx', hash: '17348478231420593090' }, - { - file: 'packages/react-icons-mdl2/src/components/NumberedListTextMirroredIcon.tsx', - hash: '9358275100316027589', - }, - { file: 'packages/react-icons-mdl2/src/components/OEMIcon.tsx', hash: '16884975489193646219' }, - { file: 'packages/react-icons-mdl2/src/components/OctagonIcon.tsx', hash: '7051997867406169889' }, - { file: 'packages/react-icons-mdl2/src/components/OfficeChatIcon.tsx', hash: '3135032991082863206' }, - { file: 'packages/react-icons-mdl2/src/components/OfficeChatSolidIcon.tsx', hash: '7579003419417093508' }, - { file: 'packages/react-icons-mdl2/src/components/OfflineStorageIcon.tsx', hash: '351924355410058825' }, - { file: 'packages/react-icons-mdl2/src/components/OfflineStorageSolidIcon.tsx', hash: '2163296287816341950' }, - { file: 'packages/react-icons-mdl2/src/components/OnboardingIcon.tsx', hash: '17978163123947726803' }, - { file: 'packages/react-icons-mdl2/src/components/OpenEnrollmentIcon.tsx', hash: '9409831895624258892' }, - { file: 'packages/react-icons-mdl2/src/components/OpenFileIcon.tsx', hash: '13716013895282716360' }, - { file: 'packages/react-icons-mdl2/src/components/OpenFolderHorizontalIcon.tsx', hash: '4720433802176078702' }, - { file: 'packages/react-icons-mdl2/src/components/OpenInNewTabIcon.tsx', hash: '12616026608623184577' }, - { file: 'packages/react-icons-mdl2/src/components/OpenInNewWindowIcon.tsx', hash: '16709764145623596082' }, - { file: 'packages/react-icons-mdl2/src/components/OpenPaneIcon.tsx', hash: '14167942678189328958' }, - { file: 'packages/react-icons-mdl2/src/components/OpenPaneMirroredIcon.tsx', hash: '17902852270134103661' }, - { file: 'packages/react-icons-mdl2/src/components/OpenSourceIcon.tsx', hash: '6022581724396109402' }, - { file: 'packages/react-icons-mdl2/src/components/OpenWithIcon.tsx', hash: '16757941053329032655' }, - { file: 'packages/react-icons-mdl2/src/components/OpenWithMirroredIcon.tsx', hash: '1238747352425009933' }, - { file: 'packages/react-icons-mdl2/src/components/OrgIcon.tsx', hash: '17958497940558097203' }, - { file: 'packages/react-icons-mdl2/src/components/Orientation2Icon.tsx', hash: '9165835761068707409' }, - { file: 'packages/react-icons-mdl2/src/components/OrientationIcon.tsx', hash: '2261330004914625799' }, - { file: 'packages/react-icons-mdl2/src/components/OutOfOfficeIcon.tsx', hash: '9033234528837519595' }, - { file: 'packages/react-icons-mdl2/src/components/PC1Icon.tsx', hash: '17118061778132244317' }, - { file: 'packages/react-icons-mdl2/src/components/PDFIcon.tsx', hash: '16953159234422781856' }, - { file: 'packages/react-icons-mdl2/src/components/POIIcon.tsx', hash: '17081025063363847104' }, - { file: 'packages/react-icons-mdl2/src/components/POISolidIcon.tsx', hash: '17987066840688022197' }, - { file: 'packages/react-icons-mdl2/src/components/PYIcon.tsx', hash: '15062122769409242350' }, - { file: 'packages/react-icons-mdl2/src/components/PackageIcon.tsx', hash: '8188806034944821664' }, - { file: 'packages/react-icons-mdl2/src/components/PackagesIcon.tsx', hash: '7530672802951546585' }, - { file: 'packages/react-icons-mdl2/src/components/PaddingBottomIcon.tsx', hash: '16329407378974243459' }, - { file: 'packages/react-icons-mdl2/src/components/PaddingIcon.tsx', hash: '3693454047174570108' }, - { file: 'packages/react-icons-mdl2/src/components/PaddingLeftIcon.tsx', hash: '1940723243895739869' }, - { file: 'packages/react-icons-mdl2/src/components/PaddingRightIcon.tsx', hash: '15575572852872359348' }, - { file: 'packages/react-icons-mdl2/src/components/PaddingTopIcon.tsx', hash: '3059126148886145452' }, - { file: 'packages/react-icons-mdl2/src/components/PageAddIcon.tsx', hash: '1028128955597352055' }, - { file: 'packages/react-icons-mdl2/src/components/PageArrowRightIcon.tsx', hash: '10299368263307558240' }, - { file: 'packages/react-icons-mdl2/src/components/PageCheckedOutIcon.tsx', hash: '5540250238565489701' }, - { file: 'packages/react-icons-mdl2/src/components/PageCheckedinIcon.tsx', hash: '8733252113380883530' }, - { file: 'packages/react-icons-mdl2/src/components/PageDataIcon.tsx', hash: '5429006082615274734' }, - { file: 'packages/react-icons-mdl2/src/components/PageEditIcon.tsx', hash: '1302190554096056533' }, - { file: 'packages/react-icons-mdl2/src/components/PageHeaderEditIcon.tsx', hash: '2745440594367033058' }, - { file: 'packages/react-icons-mdl2/src/components/PageHeaderIcon.tsx', hash: '484643801273417624' }, - { file: 'packages/react-icons-mdl2/src/components/PageIcon.tsx', hash: '13143986509256477909' }, - { file: 'packages/react-icons-mdl2/src/components/PageLeftIcon.tsx', hash: '5225179526940112834' }, - { file: 'packages/react-icons-mdl2/src/components/PageLinkIcon.tsx', hash: '2235935547175998368' }, - { file: 'packages/react-icons-mdl2/src/components/PageListFilterIcon.tsx', hash: '4958536397877730157' }, - { file: 'packages/react-icons-mdl2/src/components/PageListIcon.tsx', hash: '15592393887722894984' }, - { file: 'packages/react-icons-mdl2/src/components/PageListMirroredSolidIcon.tsx', hash: '7072452421696131187' }, - { file: 'packages/react-icons-mdl2/src/components/PageListSolidIcon.tsx', hash: '3011846427870316812' }, - { file: 'packages/react-icons-mdl2/src/components/PageLockIcon.tsx', hash: '8328618170239710913' }, - { file: 'packages/react-icons-mdl2/src/components/PageRemoveIcon.tsx', hash: '15226280653443240296' }, - { file: 'packages/react-icons-mdl2/src/components/PageRightIcon.tsx', hash: '3409547421310272122' }, - { file: 'packages/react-icons-mdl2/src/components/PageSharedIcon.tsx', hash: '18303121269314325046' }, - { file: 'packages/react-icons-mdl2/src/components/PageSolidIcon.tsx', hash: '11681020525884514699' }, - { file: 'packages/react-icons-mdl2/src/components/PanoIndicatorIcon.tsx', hash: '2581465768954382431' }, - { file: 'packages/react-icons-mdl2/src/components/ParachuteIcon.tsx', hash: '12501200481557600275' }, - { file: 'packages/react-icons-mdl2/src/components/ParachuteSolidIcon.tsx', hash: '1192630446492557179' }, - { file: 'packages/react-icons-mdl2/src/components/ParameterIcon.tsx', hash: '4042220669581533546' }, - { file: 'packages/react-icons-mdl2/src/components/ParatureLogoIcon.tsx', hash: '11611626752464336572' }, - { file: 'packages/react-icons-mdl2/src/components/ParkingLocationIcon.tsx', hash: '8568967650502471935' }, - { - file: 'packages/react-icons-mdl2/src/components/ParkingLocationMirroredIcon.tsx', - hash: '17018586187571511755', - }, - { file: 'packages/react-icons-mdl2/src/components/ParkingMirroredSolidIcon.tsx', hash: '8427913959764438159' }, - { file: 'packages/react-icons-mdl2/src/components/ParkingSolidIcon.tsx', hash: '1262591929795560141' }, - { file: 'packages/react-icons-mdl2/src/components/PartlyCloudyDayIcon.tsx', hash: '8716126962689890947' }, - { file: 'packages/react-icons-mdl2/src/components/PartlyCloudyNightIcon.tsx', hash: '16235715570424586919' }, - { file: 'packages/react-icons-mdl2/src/components/PartyLeaderIcon.tsx', hash: '12711893955536705188' }, - { file: 'packages/react-icons-mdl2/src/components/PassiveAuthenticationIcon.tsx', hash: '14002588332142220944' }, - { file: 'packages/react-icons-mdl2/src/components/PasswordFieldIcon.tsx', hash: '3131426377826399559' }, - { file: 'packages/react-icons-mdl2/src/components/PasteAsCodeIcon.tsx', hash: '4805260552399940501' }, - { file: 'packages/react-icons-mdl2/src/components/PasteAsTextIcon.tsx', hash: '12623295337668507458' }, - { file: 'packages/react-icons-mdl2/src/components/PasteIcon.tsx', hash: '5004523753740808524' }, - { file: 'packages/react-icons-mdl2/src/components/PauseIcon.tsx', hash: '9059877663732204795' }, - { file: 'packages/react-icons-mdl2/src/components/PaymentCardIcon.tsx', hash: '8072989350727579864' }, - { file: 'packages/react-icons-mdl2/src/components/PenWorkspaceIcon.tsx', hash: '16399862149305076952' }, - { file: 'packages/react-icons-mdl2/src/components/PencilReplyIcon.tsx', hash: '7964544734391619918' }, - { file: 'packages/react-icons-mdl2/src/components/PentagonIcon.tsx', hash: '12576470515379649977' }, - { file: 'packages/react-icons-mdl2/src/components/PeopleAddIcon.tsx', hash: '740077196701986885' }, - { file: 'packages/react-icons-mdl2/src/components/PeopleAlertIcon.tsx', hash: '1200751904829860538' }, - { file: 'packages/react-icons-mdl2/src/components/PeopleBlockIcon.tsx', hash: '11520566292680214548' }, - { file: 'packages/react-icons-mdl2/src/components/PeopleIcon.tsx', hash: '5546815075608181083' }, - { file: 'packages/react-icons-mdl2/src/components/PeoplePauseIcon.tsx', hash: '2384543899794990203' }, - { file: 'packages/react-icons-mdl2/src/components/PeopleRepeatIcon.tsx', hash: '14144925183828792268' }, - { file: 'packages/react-icons-mdl2/src/components/PermissionsIcon.tsx', hash: '8360012995862892653' }, - { file: 'packages/react-icons-mdl2/src/components/PermissionsSolidIcon.tsx', hash: '2616240249421986755' }, - { file: 'packages/react-icons-mdl2/src/components/PersonalizeIcon.tsx', hash: '14943945156655188411' }, - { file: 'packages/react-icons-mdl2/src/components/PhishingIcon.tsx', hash: '9518959580653265457' }, - { file: 'packages/react-icons-mdl2/src/components/PhoneIcon.tsx', hash: '10123189969608843806' }, - { file: 'packages/react-icons-mdl2/src/components/Photo2AddIcon.tsx', hash: '12890535897327362569' }, - { file: 'packages/react-icons-mdl2/src/components/Photo2FillIcon.tsx', hash: '11916973734202296104' }, - { file: 'packages/react-icons-mdl2/src/components/Photo2Icon.tsx', hash: '6217669434528424813' }, - { file: 'packages/react-icons-mdl2/src/components/Photo2RemoveIcon.tsx', hash: '11045243933391741734' }, - { file: 'packages/react-icons-mdl2/src/components/PhotoCollectionIcon.tsx', hash: '14853854378220941481' }, - { file: 'packages/react-icons-mdl2/src/components/PhotoErrorIcon.tsx', hash: '15843725646187763745' }, - { file: 'packages/react-icons-mdl2/src/components/PhotoIcon.tsx', hash: '2410398483773033272' }, - { file: 'packages/react-icons-mdl2/src/components/PhotoVideoMediaIcon.tsx', hash: '11327066028793385582' }, - { file: 'packages/react-icons-mdl2/src/components/PictureCenterIcon.tsx', hash: '84076699459718279' }, - { file: 'packages/react-icons-mdl2/src/components/PictureFillIcon.tsx', hash: '14181410728380315086' }, - { file: 'packages/react-icons-mdl2/src/components/PictureIcon.tsx', hash: '15806894766658361974' }, - { file: 'packages/react-icons-mdl2/src/components/PictureLibraryIcon.tsx', hash: '5311483414434365136' }, - { file: 'packages/react-icons-mdl2/src/components/PicturePositionIcon.tsx', hash: '17409430305773109518' }, - { file: 'packages/react-icons-mdl2/src/components/PictureStretchIcon.tsx', hash: '9909515815194791190' }, - { file: 'packages/react-icons-mdl2/src/components/PictureTileIcon.tsx', hash: '5991148569776167026' }, - { file: 'packages/react-icons-mdl2/src/components/PieDoubleIcon.tsx', hash: '16668444301135366429' }, - { file: 'packages/react-icons-mdl2/src/components/PieSingleIcon.tsx', hash: '11084927429971105756' }, - { file: 'packages/react-icons-mdl2/src/components/PieSingleSolidIcon.tsx', hash: '14776155998409612678' }, - { file: 'packages/react-icons-mdl2/src/components/PillIcon.tsx', hash: '6256599255750287452' }, - { file: 'packages/react-icons-mdl2/src/components/PinIcon.tsx', hash: '1983240911784268789' }, - { file: 'packages/react-icons-mdl2/src/components/PinSolid12Icon.tsx', hash: '15020687617927332339' }, - { file: 'packages/react-icons-mdl2/src/components/PinSolidOff12Icon.tsx', hash: '3499118347569957809' }, - { file: 'packages/react-icons-mdl2/src/components/PinnedFillIcon.tsx', hash: '10585700449523261373' }, - { file: 'packages/react-icons-mdl2/src/components/PinnedIcon.tsx', hash: '9070205068592037520' }, - { file: 'packages/react-icons-mdl2/src/components/PinnedSolidIcon.tsx', hash: '5936043922736609729' }, - { file: 'packages/react-icons-mdl2/src/components/PivotChartIcon.tsx', hash: '4259767106459863102' }, - { file: 'packages/react-icons-mdl2/src/components/PlainTextIcon.tsx', hash: '7745879903020174346' }, - { file: 'packages/react-icons-mdl2/src/components/PlanViewIcon.tsx', hash: '15229642606192990519' }, - { file: 'packages/react-icons-mdl2/src/components/PlayIcon.tsx', hash: '13347942971552831209' }, - { file: 'packages/react-icons-mdl2/src/components/PlayResumeIcon.tsx', hash: '6978019009270265637' }, - { file: 'packages/react-icons-mdl2/src/components/PlayReverseIcon.tsx', hash: '886294037536270616' }, - { file: 'packages/react-icons-mdl2/src/components/PlayReverseResumeIcon.tsx', hash: '11828144696321574113' }, - { file: 'packages/react-icons-mdl2/src/components/PlaySolidIcon.tsx', hash: '16883681959444751019' }, - { file: 'packages/react-icons-mdl2/src/components/PlaybackRate1xIcon.tsx', hash: '11422776004876274435' }, - { file: 'packages/react-icons-mdl2/src/components/PlayerSettingsIcon.tsx', hash: '2891640004616963952' }, - { file: 'packages/react-icons-mdl2/src/components/PlugConnectedIcon.tsx', hash: '15231900144038686883' }, - { file: 'packages/react-icons-mdl2/src/components/PlugDisconnectedIcon.tsx', hash: '9482677610736263718' }, - { file: 'packages/react-icons-mdl2/src/components/PlugIcon.tsx', hash: '14457238032728110736' }, - { file: 'packages/react-icons-mdl2/src/components/PlugSolidIcon.tsx', hash: '14985347379238626930' }, - { file: 'packages/react-icons-mdl2/src/components/PollResultsIcon.tsx', hash: '4372641809118635212' }, - { file: 'packages/react-icons-mdl2/src/components/PostUpdateIcon.tsx', hash: '13690140920683735685' }, - { file: 'packages/react-icons-mdl2/src/components/PowerButtonIcon.tsx', hash: '13473089005670940816' }, - { file: 'packages/react-icons-mdl2/src/components/PrecipitationIcon.tsx', hash: '8700523600035334889' }, - { file: 'packages/react-icons-mdl2/src/components/PresenceChickletVideoIcon.tsx', hash: '6520898751220495588' }, - { file: 'packages/react-icons-mdl2/src/components/Presentation12Icon.tsx', hash: '12739060340199533788' }, - { file: 'packages/react-icons-mdl2/src/components/PresentationIcon.tsx', hash: '5580057635504441568' }, - { file: 'packages/react-icons-mdl2/src/components/PreviewIcon.tsx', hash: '15795109478497264543' }, - { file: 'packages/react-icons-mdl2/src/components/PreviewLinkIcon.tsx', hash: '10029955962533993761' }, - { file: 'packages/react-icons-mdl2/src/components/PreviousIcon.tsx', hash: '6343179605604117917' }, - { file: 'packages/react-icons-mdl2/src/components/PrimaryCalendarIcon.tsx', hash: '4012658748296620011' }, - { file: 'packages/react-icons-mdl2/src/components/PrintIcon.tsx', hash: '6855816325772339277' }, - { file: 'packages/react-icons-mdl2/src/components/PrintfaxPrinterFileIcon.tsx', hash: '2412318128665022986' }, - { file: 'packages/react-icons-mdl2/src/components/ProFootballIcon.tsx', hash: '7394168027841297393' }, - { file: 'packages/react-icons-mdl2/src/components/ProHockeyIcon.tsx', hash: '8132842062475414845' }, - { file: 'packages/react-icons-mdl2/src/components/ProcessMetaTaskIcon.tsx', hash: '1761377875794956459' }, - { file: 'packages/react-icons-mdl2/src/components/ProcessingCancelIcon.tsx', hash: '9583304782707343752' }, - { file: 'packages/react-icons-mdl2/src/components/ProcessingIcon.tsx', hash: '12905437028183494715' }, - { file: 'packages/react-icons-mdl2/src/components/ProcessingPauseIcon.tsx', hash: '10446149742784483989' }, - { file: 'packages/react-icons-mdl2/src/components/ProcessingRunIcon.tsx', hash: '5844569557443581261' }, - { file: 'packages/react-icons-mdl2/src/components/ProductCatalogIcon.tsx', hash: '3464921564878584487' }, - { file: 'packages/react-icons-mdl2/src/components/ProductIcon.tsx', hash: '6348565145369557334' }, - { file: 'packages/react-icons-mdl2/src/components/ProductListIcon.tsx', hash: '3024724900075315777' }, - { file: 'packages/react-icons-mdl2/src/components/ProductReleaseIcon.tsx', hash: '7348620547503983607' }, - { file: 'packages/react-icons-mdl2/src/components/ProductVariantIcon.tsx', hash: '14137645095470379174' }, - { - file: 'packages/react-icons-mdl2/src/components/ProductionFloorManagementIcon.tsx', - hash: '8211043819524321465', - }, - { file: 'packages/react-icons-mdl2/src/components/ProfileSearchIcon.tsx', hash: '5360651681193046320' }, - { file: 'packages/react-icons-mdl2/src/components/ProgressLoopInnerIcon.tsx', hash: '7344307724570892451' }, - { file: 'packages/react-icons-mdl2/src/components/ProgressLoopOuterIcon.tsx', hash: '14115966853268295239' }, - { file: 'packages/react-icons-mdl2/src/components/ProgressRingDotsIcon.tsx', hash: '8827595993003570158' }, - { file: 'packages/react-icons-mdl2/src/components/PromotedDatabaseIcon.tsx', hash: '13494185727052834572' }, - { file: 'packages/react-icons-mdl2/src/components/ProtectRestrictIcon.tsx', hash: '12593153285092641043' }, - { file: 'packages/react-icons-mdl2/src/components/ProtectedDocumentIcon.tsx', hash: '17116528624998015036' }, - { file: 'packages/react-icons-mdl2/src/components/ProvisioningPackageIcon.tsx', hash: '10104819019290694702' }, - { file: 'packages/react-icons-mdl2/src/components/PublicCalendarIcon.tsx', hash: '7928576299592465227' }, - { file: 'packages/react-icons-mdl2/src/components/PublicContactCardIcon.tsx', hash: '17137969832944727124' }, - { - file: 'packages/react-icons-mdl2/src/components/PublicContactCardMirroredIcon.tsx', - hash: '10653560057174265194', - }, - { file: 'packages/react-icons-mdl2/src/components/PublicEmailIcon.tsx', hash: '16125961118093947862' }, - { file: 'packages/react-icons-mdl2/src/components/PublicFolderIcon.tsx', hash: '10615570374849555494' }, - { file: 'packages/react-icons-mdl2/src/components/PublishContentIcon.tsx', hash: '7418653213081864290' }, - { file: 'packages/react-icons-mdl2/src/components/PublishCourseIcon.tsx', hash: '7778181979101581966' }, - { file: 'packages/react-icons-mdl2/src/components/PuzzleIcon.tsx', hash: '16331125217924665582' }, - { file: 'packages/react-icons-mdl2/src/components/PythonLanguageIcon.tsx', hash: '12740295932941603018' }, - { file: 'packages/react-icons-mdl2/src/components/PythonLogoBlueIcon.tsx', hash: '10897963344070205190' }, - { file: 'packages/react-icons-mdl2/src/components/PythonLogoYellowIcon.tsx', hash: '10740076806574036198' }, - { file: 'packages/react-icons-mdl2/src/components/QRCodeIcon.tsx', hash: '4193817246005580075' }, - { file: 'packages/react-icons-mdl2/src/components/QandAIcon.tsx', hash: '7090567364829688083' }, - { file: 'packages/react-icons-mdl2/src/components/QandAMirrorIcon.tsx', hash: '14649054812286063495' }, - { file: 'packages/react-icons-mdl2/src/components/QuadColumnIcon.tsx', hash: '7779026997445231794' }, - { file: 'packages/react-icons-mdl2/src/components/QuantityIcon.tsx', hash: '13475748671267665668' }, - { file: 'packages/react-icons-mdl2/src/components/QuarterCircleIcon.tsx', hash: '301889233684729556' }, - { file: 'packages/react-icons-mdl2/src/components/QueryListIcon.tsx', hash: '17188232317815383853' }, - { file: 'packages/react-icons-mdl2/src/components/QuestionnaireIcon.tsx', hash: '8292236868458306187' }, - { file: 'packages/react-icons-mdl2/src/components/QuestionnaireMirroredIcon.tsx', hash: '16353546243071202079' }, - { file: 'packages/react-icons-mdl2/src/components/QuickNoteIcon.tsx', hash: '14698033081490920685' }, - { file: 'packages/react-icons-mdl2/src/components/QuickNoteSolidIcon.tsx', hash: '3853804771265454467' }, - { file: 'packages/react-icons-mdl2/src/components/RIcon.tsx', hash: '3642147187287238543' }, - { file: 'packages/react-icons-mdl2/src/components/RadioBtnOffIcon.tsx', hash: '15968365517372088454' }, - { file: 'packages/react-icons-mdl2/src/components/RadioBtnOnIcon.tsx', hash: '10401097749420578475' }, - { file: 'packages/react-icons-mdl2/src/components/RadioBulletIcon.tsx', hash: '1948109167659139504' }, - { file: 'packages/react-icons-mdl2/src/components/RainIcon.tsx', hash: '1224377299511878005' }, - { file: 'packages/react-icons-mdl2/src/components/RainShowersDayIcon.tsx', hash: '18140602978554118692' }, - { file: 'packages/react-icons-mdl2/src/components/RainShowersNightIcon.tsx', hash: '772223889186546672' }, - { file: 'packages/react-icons-mdl2/src/components/RainSnowIcon.tsx', hash: '18316749923815146432' }, - { file: 'packages/react-icons-mdl2/src/components/RawSourceIcon.tsx', hash: '2346521877928885898' }, - { file: 'packages/react-icons-mdl2/src/components/ReactLogoIcon.tsx', hash: '11478464493583554511' }, - { file: 'packages/react-icons-mdl2/src/components/ReadIcon.tsx', hash: '16339774116571551264' }, - { file: 'packages/react-icons-mdl2/src/components/ReadOutLoudIcon.tsx', hash: '15512938224017499748' }, - { file: 'packages/react-icons-mdl2/src/components/ReadingModeIcon.tsx', hash: '11225680917459055690' }, - { file: 'packages/react-icons-mdl2/src/components/ReadingModeSolidIcon.tsx', hash: '13630184717491842494' }, - { file: 'packages/react-icons-mdl2/src/components/RealEstateIcon.tsx', hash: '12132961416106915656' }, - { file: 'packages/react-icons-mdl2/src/components/ReceiptCheckIcon.tsx', hash: '14861339649639821612' }, - { file: 'packages/react-icons-mdl2/src/components/ReceiptForwardIcon.tsx', hash: '16249487772177911246' }, - { file: 'packages/react-icons-mdl2/src/components/ReceiptReplyIcon.tsx', hash: '6675712624277309058' }, - { file: 'packages/react-icons-mdl2/src/components/ReceiptTentativeIcon.tsx', hash: '1827539807926652219' }, - { - file: 'packages/react-icons-mdl2/src/components/ReceiptTentativeMirroredIcon.tsx', - hash: '10058669923175591734', - }, - { file: 'packages/react-icons-mdl2/src/components/ReceiptUndeliveredIcon.tsx', hash: '7138586237687849925' }, - { file: 'packages/react-icons-mdl2/src/components/RecentIcon.tsx', hash: '4974316867987717424' }, - { file: 'packages/react-icons-mdl2/src/components/Record2Icon.tsx', hash: '6887536974244129139' }, - { file: 'packages/react-icons-mdl2/src/components/RecruitmentManagementIcon.tsx', hash: '8365263359070724006' }, - { file: 'packages/react-icons-mdl2/src/components/RectangleShapeIcon.tsx', hash: '4970472544847083318' }, - { file: 'packages/react-icons-mdl2/src/components/RectangleShapeSolidIcon.tsx', hash: '16095443467310730950' }, - { file: 'packages/react-icons-mdl2/src/components/RectangularClippingIcon.tsx', hash: '1887047080859169150' }, - { file: 'packages/react-icons-mdl2/src/components/RecurringEventIcon.tsx', hash: '10689152471386577241' }, - { file: 'packages/react-icons-mdl2/src/components/RecurringTaskIcon.tsx', hash: '17696826538813074695' }, - { file: 'packages/react-icons-mdl2/src/components/RedEye12Icon.tsx', hash: '9382944788646394558' }, - { file: 'packages/react-icons-mdl2/src/components/RedEyeIcon.tsx', hash: '10003350948056097541' }, - { file: 'packages/react-icons-mdl2/src/components/RedeployIcon.tsx', hash: '3176549235353100481' }, - { file: 'packages/react-icons-mdl2/src/components/RedoIcon.tsx', hash: '17889709285162817999' }, - { file: 'packages/react-icons-mdl2/src/components/RefreshIcon.tsx', hash: '1584001357827257939' }, - { file: 'packages/react-icons-mdl2/src/components/RegistryEditorIcon.tsx', hash: '9576647226559022693' }, - { file: 'packages/react-icons-mdl2/src/components/RelationshipIcon.tsx', hash: '6771934588418170257' }, - { file: 'packages/react-icons-mdl2/src/components/ReleaseDefinitionIcon.tsx', hash: '4343117846936556152' }, - { file: 'packages/react-icons-mdl2/src/components/ReleaseGateCheckIcon.tsx', hash: '9227000183618148389' }, - { file: 'packages/react-icons-mdl2/src/components/ReleaseGateErrorIcon.tsx', hash: '4769541476719542996' }, - { file: 'packages/react-icons-mdl2/src/components/ReleaseGateIcon.tsx', hash: '1338124056235790076' }, - { file: 'packages/react-icons-mdl2/src/components/ReminderGroupIcon.tsx', hash: '15062653789748442733' }, - { file: 'packages/react-icons-mdl2/src/components/ReminderPersonIcon.tsx', hash: '14076556494330434589' }, - { file: 'packages/react-icons-mdl2/src/components/ReminderTimeIcon.tsx', hash: '14963898626635056410' }, - { file: 'packages/react-icons-mdl2/src/components/RemoteIcon.tsx', hash: '1119526599082208697' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveContentIcon.tsx', hash: '10095104375646589464' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveEventIcon.tsx', hash: '1770474505220109854' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveFilterIcon.tsx', hash: '14826721607759685205' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveFromShoppingListIcon.tsx', hash: '5120763859319093342' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveFromTrashIcon.tsx', hash: '16437043087880572921' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveIcon.tsx', hash: '3340436694186455162' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveLinkChainIcon.tsx', hash: '5246466319381276908' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveLinkIcon.tsx', hash: '4934873079743891604' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveLinkXIcon.tsx', hash: '13933265474745522070' }, - { file: 'packages/react-icons-mdl2/src/components/RemoveOccurrenceIcon.tsx', hash: '17596365826540530619' }, - { file: 'packages/react-icons-mdl2/src/components/RenameIcon.tsx', hash: '8779737737100377722' }, - { file: 'packages/react-icons-mdl2/src/components/RenewalCurrentIcon.tsx', hash: '17155907495199144621' }, - { file: 'packages/react-icons-mdl2/src/components/RenewalFutureIcon.tsx', hash: '18040312749706135716' }, - { file: 'packages/react-icons-mdl2/src/components/ReopenPagesIcon.tsx', hash: '4527483304029555468' }, - { file: 'packages/react-icons-mdl2/src/components/RepairIcon.tsx', hash: '6712323806304165735' }, - { file: 'packages/react-icons-mdl2/src/components/RepeatAllIcon.tsx', hash: '4738265788125894750' }, - { file: 'packages/react-icons-mdl2/src/components/RepeatHeaderRowsIcon.tsx', hash: '281035913588419001' }, - { file: 'packages/react-icons-mdl2/src/components/RepeatOneIcon.tsx', hash: '10153655218457688238' }, - { file: 'packages/react-icons-mdl2/src/components/ReplyAllAltIcon.tsx', hash: '15130769254717827934' }, - { file: 'packages/react-icons-mdl2/src/components/ReplyAllIcon.tsx', hash: '3511993612472050835' }, - { file: 'packages/react-icons-mdl2/src/components/ReplyAllMirroredIcon.tsx', hash: '14234054208958806201' }, - { file: 'packages/react-icons-mdl2/src/components/ReplyAltIcon.tsx', hash: '933229403573599355' }, - { file: 'packages/react-icons-mdl2/src/components/ReplyIcon.tsx', hash: '18009439126632338426' }, - { file: 'packages/react-icons-mdl2/src/components/ReplyMirroredIcon.tsx', hash: '4500588386003863876' }, - { file: 'packages/react-icons-mdl2/src/components/RepoIcon.tsx', hash: '7678565709884576038' }, - { file: 'packages/react-icons-mdl2/src/components/RepoSolidIcon.tsx', hash: '1226700904681954769' }, - { file: 'packages/react-icons-mdl2/src/components/ReportAddIcon.tsx', hash: '9850194945981834406' }, - { file: 'packages/react-icons-mdl2/src/components/ReportDocumentIcon.tsx', hash: '8565569295537691921' }, - { file: 'packages/react-icons-mdl2/src/components/ReportHackedIcon.tsx', hash: '1554548226913281174' }, - { file: 'packages/react-icons-mdl2/src/components/ReportLibraryIcon.tsx', hash: '7939213985314856280' }, - { file: 'packages/react-icons-mdl2/src/components/ReportLibraryMirroredIcon.tsx', hash: '15909586393315648358' }, - { file: 'packages/react-icons-mdl2/src/components/ReportLockIcon.tsx', hash: '6301977591104010011' }, - { file: 'packages/react-icons-mdl2/src/components/ReportWarningIcon.tsx', hash: '85910912891216710' }, - { file: 'packages/react-icons-mdl2/src/components/RerunIcon.tsx', hash: '15819459681624916149' }, - { file: 'packages/react-icons-mdl2/src/components/ReservationOrdersIcon.tsx', hash: '5956032173693218776' }, - { file: 'packages/react-icons-mdl2/src/components/ResetDeviceIcon.tsx', hash: '18311413279124365488' }, - { file: 'packages/react-icons-mdl2/src/components/ResetIcon.tsx', hash: '11078483500098772524' }, - { file: 'packages/react-icons-mdl2/src/components/ResponsesMenuIcon.tsx', hash: '12905327334886469706' }, - { file: 'packages/react-icons-mdl2/src/components/ReturnKeyIcon.tsx', hash: '778062027127388163' }, - { file: 'packages/react-icons-mdl2/src/components/ReturnToSessionIcon.tsx', hash: '13767458985926589178' }, - { file: 'packages/react-icons-mdl2/src/components/RevToggleKeyIcon.tsx', hash: '17268417034066985821' }, - { - file: 'packages/react-icons-mdl2/src/components/ReviewRequestMirroredSolidIcon.tsx', - hash: '4198469853792849307', - }, - { file: 'packages/react-icons-mdl2/src/components/ReviewRequestSolidIcon.tsx', hash: '6789506402724558845' }, - { file: 'packages/react-icons-mdl2/src/components/ReviewResponseSolidIcon.tsx', hash: '13746903940658559773' }, - { file: 'packages/react-icons-mdl2/src/components/ReviewSolidIcon.tsx', hash: '10405471729572573818' }, - { file: 'packages/react-icons-mdl2/src/components/RewindEightXIcon.tsx', hash: '5440996717647720617' }, - { file: 'packages/react-icons-mdl2/src/components/RewindFourXIcon.tsx', hash: '5950063720265872760' }, - { file: 'packages/react-icons-mdl2/src/components/RewindIcon.tsx', hash: '2976542701811024713' }, - { file: 'packages/react-icons-mdl2/src/components/RewindOneFiveXIcon.tsx', hash: '14597450931488491666' }, - { file: 'packages/react-icons-mdl2/src/components/RewindOneXIcon.tsx', hash: '96598580019507794' }, - { file: 'packages/react-icons-mdl2/src/components/RewindPointFiveXIcon.tsx', hash: '6816021643797619988' }, - { file: 'packages/react-icons-mdl2/src/components/RewindTwoXIcon.tsx', hash: '2597622895947953652' }, - { file: 'packages/react-icons-mdl2/src/components/RibbonIcon.tsx', hash: '12505056453875423322' }, - { file: 'packages/react-icons-mdl2/src/components/RibbonSolidIcon.tsx', hash: '4925073625398304103' }, - { file: 'packages/react-icons-mdl2/src/components/RightDoubleQuoteIcon.tsx', hash: '13228962573922254349' }, - { file: 'packages/react-icons-mdl2/src/components/RightTriangleIcon.tsx', hash: '8631049789896987274' }, - { file: 'packages/react-icons-mdl2/src/components/RingerIcon.tsx', hash: '10812818586902825629' }, - { file: 'packages/react-icons-mdl2/src/components/RingerOffIcon.tsx', hash: '15465109539414954011' }, - { file: 'packages/react-icons-mdl2/src/components/RingerRemoveIcon.tsx', hash: '12710104732587573905' }, - { file: 'packages/react-icons-mdl2/src/components/RingerSolidIcon.tsx', hash: '3455581175423440233' }, - { file: 'packages/react-icons-mdl2/src/components/RobotIcon.tsx', hash: '10547657026122777550' }, - { file: 'packages/react-icons-mdl2/src/components/RocketIcon.tsx', hash: '6980348616626812903' }, - { file: 'packages/react-icons-mdl2/src/components/RoomIcon.tsx', hash: '981533212673309040' }, - { file: 'packages/react-icons-mdl2/src/components/Rotate90ClockwiseIcon.tsx', hash: '1915276215806620306' }, - { - file: 'packages/react-icons-mdl2/src/components/Rotate90CounterClockwiseIcon.tsx', - hash: '3094633106778963512', - }, - { file: 'packages/react-icons-mdl2/src/components/RotateIcon.tsx', hash: '3085258773834909203' }, - { file: 'packages/react-icons-mdl2/src/components/RowsChildIcon.tsx', hash: '4916625815271698479' }, - { file: 'packages/react-icons-mdl2/src/components/RowsGroupIcon.tsx', hash: '38971737369893317' }, - { file: 'packages/react-icons-mdl2/src/components/RubyGemsLogoIcon.tsx', hash: '1188502604572156228' }, - { file: 'packages/react-icons-mdl2/src/components/RugbyIcon.tsx', hash: '4096135401668474396' }, - { file: 'packages/react-icons-mdl2/src/components/RunningIcon.tsx', hash: '2732066696930349364' }, - { file: 'packages/react-icons-mdl2/src/components/RustLanguageLogoIcon.tsx', hash: '16245091142252201879' }, - { file: 'packages/react-icons-mdl2/src/components/SDCardIcon.tsx', hash: '16779381262121573745' }, - { file: 'packages/react-icons-mdl2/src/components/SIPMoveIcon.tsx', hash: '1292993801675064692' }, - { file: 'packages/react-icons-mdl2/src/components/SQLAnalyticsPoolIcon.tsx', hash: '16632034557361220597' }, - { file: 'packages/react-icons-mdl2/src/components/SVNLogoIcon.tsx', hash: '14471498460908665124' }, - { file: 'packages/react-icons-mdl2/src/components/SadIcon.tsx', hash: '10257664822202938065' }, - { file: 'packages/react-icons-mdl2/src/components/SadSolidIcon.tsx', hash: '2704558455731967475' }, - { file: 'packages/react-icons-mdl2/src/components/SaveAllIcon.tsx', hash: '13407768255962734586' }, - { file: 'packages/react-icons-mdl2/src/components/SaveAndCloseIcon.tsx', hash: '8461015559875601893' }, - { file: 'packages/react-icons-mdl2/src/components/SaveAsIcon.tsx', hash: '14980452498052129489' }, - { file: 'packages/react-icons-mdl2/src/components/SaveIcon.tsx', hash: '18446627481487444184' }, - { file: 'packages/react-icons-mdl2/src/components/SaveTemplateIcon.tsx', hash: '3826771779893005564' }, - { file: 'packages/react-icons-mdl2/src/components/SaveToMobileIcon.tsx', hash: '15319590927912761851' }, - { file: 'packages/react-icons-mdl2/src/components/SavingsIcon.tsx', hash: '8290884341068876497' }, - { file: 'packages/react-icons-mdl2/src/components/ScaleUpIcon.tsx', hash: '4668475401339689006' }, - { file: 'packages/react-icons-mdl2/src/components/ScaleVolumeIcon.tsx', hash: '7057780815839547310' }, - { file: 'packages/react-icons-mdl2/src/components/ScatterChartIcon.tsx', hash: '11542201772664481956' }, - { file: 'packages/react-icons-mdl2/src/components/ScheduleEventActionIcon.tsx', hash: '1143339648876710002' }, - { file: 'packages/react-icons-mdl2/src/components/ScopeTemplateIcon.tsx', hash: '13578920299653898424' }, - { file: 'packages/react-icons-mdl2/src/components/ScreenCastIcon.tsx', hash: '13459668514947933080' }, - { file: 'packages/react-icons-mdl2/src/components/ScreenTimeIcon.tsx', hash: '10830108454758817807' }, - { file: 'packages/react-icons-mdl2/src/components/ScriptIcon.tsx', hash: '14893943413659353151' }, - { file: 'packages/react-icons-mdl2/src/components/ScrollUpDownIcon.tsx', hash: '14808730472109868911' }, - { file: 'packages/react-icons-mdl2/src/components/SearchAndAppsIcon.tsx', hash: '12029624657504546412' }, - { file: 'packages/react-icons-mdl2/src/components/SearchBookmarkIcon.tsx', hash: '4453953204921014339' }, - { file: 'packages/react-icons-mdl2/src/components/SearchCalendarIcon.tsx', hash: '14309122506085434499' }, - { file: 'packages/react-icons-mdl2/src/components/SearchDataIcon.tsx', hash: '7405319181413241696' }, - { file: 'packages/react-icons-mdl2/src/components/SearchIcon.tsx', hash: '4737552673585211755' }, - { file: 'packages/react-icons-mdl2/src/components/SearchIssueIcon.tsx', hash: '12314263131119293997' }, - { file: 'packages/react-icons-mdl2/src/components/SearchIssueMirroredIcon.tsx', hash: '3761166264222642810' }, - { file: 'packages/react-icons-mdl2/src/components/SearchNearbyIcon.tsx', hash: '1744408291289346365' }, - { file: 'packages/react-icons-mdl2/src/components/SecondaryNavIcon.tsx', hash: '15282810402009236543' }, - { file: 'packages/react-icons-mdl2/src/components/SectionIcon.tsx', hash: '14395512304549333743' }, - { file: 'packages/react-icons-mdl2/src/components/SectionsIcon.tsx', hash: '9340033941601416787' }, - { file: 'packages/react-icons-mdl2/src/components/SecurityGroupIcon.tsx', hash: '8368168062014436270' }, - { file: 'packages/react-icons-mdl2/src/components/SeeDoIcon.tsx', hash: '864327855801395180' }, - { file: 'packages/react-icons-mdl2/src/components/SelectAllIcon.tsx', hash: '2167693616497991928' }, - { file: 'packages/react-icons-mdl2/src/components/SellIcon.tsx', hash: '6706494628509969641' }, - { file: 'packages/react-icons-mdl2/src/components/SemiboldWeightIcon.tsx', hash: '12437959718188817198' }, - { file: 'packages/react-icons-mdl2/src/components/SendIcon.tsx', hash: '163473083102885524' }, - { file: 'packages/react-icons-mdl2/src/components/SendMirroredIcon.tsx', hash: '8070310300829844729' }, - { file: 'packages/react-icons-mdl2/src/components/SentimentAnalysisIcon.tsx', hash: '17008129519430365444' }, - { file: 'packages/react-icons-mdl2/src/components/SeparatorIcon.tsx', hash: '14584941974872368354' }, - { file: 'packages/react-icons-mdl2/src/components/ServerEnviromentIcon.tsx', hash: '1750681348992383196' }, - { file: 'packages/react-icons-mdl2/src/components/ServerIcon.tsx', hash: '18418596094918028176' }, - { file: 'packages/react-icons-mdl2/src/components/ServerProcessesIcon.tsx', hash: '2626435703916635677' }, - { file: 'packages/react-icons-mdl2/src/components/ServiceOffIcon.tsx', hash: '7398322484195335319' }, - { file: 'packages/react-icons-mdl2/src/components/SetActionIcon.tsx', hash: '10759412809435968518' }, - { file: 'packages/react-icons-mdl2/src/components/SettingsIcon.tsx', hash: '5137684744719239592' }, - { file: 'packages/react-icons-mdl2/src/components/ShakeDeviceIcon.tsx', hash: '1835023828739771936' }, - { file: 'packages/react-icons-mdl2/src/components/ShapeSolidIcon.tsx', hash: '17617902965165026156' }, - { file: 'packages/react-icons-mdl2/src/components/ShapesIcon.tsx', hash: '6072476137017589863' }, - { file: 'packages/react-icons-mdl2/src/components/ShareIcon.tsx', hash: '14422464686258237836' }, - { file: 'packages/react-icons-mdl2/src/components/SharedDatabaseIcon.tsx', hash: '14493329677068654487' }, - { file: 'packages/react-icons-mdl2/src/components/ShareiOSIcon.tsx', hash: '10752875289514497033' }, - { file: 'packages/react-icons-mdl2/src/components/ShirtIcon.tsx', hash: '7533321663603564465' }, - { file: 'packages/react-icons-mdl2/src/components/ShopIcon.tsx', hash: '1486282593886927215' }, - { file: 'packages/react-icons-mdl2/src/components/ShopServerIcon.tsx', hash: '13775298968890066560' }, - { file: 'packages/react-icons-mdl2/src/components/ShoppingCartIcon.tsx', hash: '6101534900506134985' }, - { file: 'packages/react-icons-mdl2/src/components/ShoppingCartSolidIcon.tsx', hash: '15153900375002037428' }, - { file: 'packages/react-icons-mdl2/src/components/ShowGridIcon.tsx', hash: '16948102533089602630' }, - { file: 'packages/react-icons-mdl2/src/components/ShowResultsIcon.tsx', hash: '4042039513768687844' }, - { file: 'packages/react-icons-mdl2/src/components/ShowResultsMirroredIcon.tsx', hash: '4971854075298613045' }, - { file: 'packages/react-icons-mdl2/src/components/ShowTimeAsIcon.tsx', hash: '10802116526854333441' }, - { file: 'packages/react-icons-mdl2/src/components/SidePanelIcon.tsx', hash: '5230482954554972066' }, - { file: 'packages/react-icons-mdl2/src/components/SidePanelMirroredIcon.tsx', hash: '13194465453275835615' }, - { file: 'packages/react-icons-mdl2/src/components/SignOutIcon.tsx', hash: '5833233050480284596' }, - { file: 'packages/react-icons-mdl2/src/components/SigninIcon.tsx', hash: '16397904076306255883' }, - { file: 'packages/react-icons-mdl2/src/components/SingleBookmarkIcon.tsx', hash: '13733961213117870249' }, - { file: 'packages/react-icons-mdl2/src/components/SingleBookmarkSolidIcon.tsx', hash: '13761241669223380881' }, - { file: 'packages/react-icons-mdl2/src/components/SingleColumnEditIcon.tsx', hash: '11657131149938670241' }, - { file: 'packages/react-icons-mdl2/src/components/SingleColumnIcon.tsx', hash: '10036499463712198961' }, - { file: 'packages/react-icons-mdl2/src/components/SiteScanIcon.tsx', hash: '15691472348770795130' }, - { file: 'packages/react-icons-mdl2/src/components/SixPointStarIcon.tsx', hash: '640268993964068647' }, - { file: 'packages/react-icons-mdl2/src/components/SizeLegacyIcon.tsx', hash: '3291225599099704555' }, - { file: 'packages/react-icons-mdl2/src/components/SkiResortsIcon.tsx', hash: '6555314944313474416' }, - { file: 'packages/react-icons-mdl2/src/components/SkipBack10Icon.tsx', hash: '17395500014457854958' }, - { file: 'packages/react-icons-mdl2/src/components/SkipForward30Icon.tsx', hash: '12807473448559234229' }, - { file: 'packages/react-icons-mdl2/src/components/SkypeArrowIcon.tsx', hash: '651592052032054337' }, - { file: 'packages/react-icons-mdl2/src/components/SkypeCheckIcon.tsx', hash: '12254126427628535507' }, - { file: 'packages/react-icons-mdl2/src/components/SkypeClockIcon.tsx', hash: '8988849702104238369' }, - { file: 'packages/react-icons-mdl2/src/components/SkypeMinusIcon.tsx', hash: '1855910970699005054' }, - { file: 'packages/react-icons-mdl2/src/components/SliderHandleSizeIcon.tsx', hash: '15024772977431511613' }, - { file: 'packages/react-icons-mdl2/src/components/SliderIcon.tsx', hash: '15128534207791862157' }, - { file: 'packages/react-icons-mdl2/src/components/SliderThumbIcon.tsx', hash: '513949632778702932' }, - { file: 'packages/react-icons-mdl2/src/components/SlideshowIcon.tsx', hash: '5071345657789319507' }, - { file: 'packages/react-icons-mdl2/src/components/SmartGlassRemoteIcon.tsx', hash: '10303634573842614020' }, - { file: 'packages/react-icons-mdl2/src/components/SnapToGridIcon.tsx', hash: '15414810379784499860' }, - { file: 'packages/react-icons-mdl2/src/components/SnoozeIcon.tsx', hash: '4519353568915020605' }, - { file: 'packages/react-icons-mdl2/src/components/SnowIcon.tsx', hash: '7951985243083773438' }, - { file: 'packages/react-icons-mdl2/src/components/SnowShowerDayIcon.tsx', hash: '9897566426056788277' }, - { file: 'packages/react-icons-mdl2/src/components/SnowShowerNightIcon.tsx', hash: '9605588432192508244' }, - { file: 'packages/react-icons-mdl2/src/components/SnowflakeIcon.tsx', hash: '11706543066981683239' }, - { file: 'packages/react-icons-mdl2/src/components/SoccerIcon.tsx', hash: '17852056075053764593' }, - { file: 'packages/react-icons-mdl2/src/components/SortDownIcon.tsx', hash: '3485561566724709043' }, - { file: 'packages/react-icons-mdl2/src/components/SortIcon.tsx', hash: '7609051582730240082' }, - { file: 'packages/react-icons-mdl2/src/components/SortLinesAscendingIcon.tsx', hash: '14233191291534846813' }, - { file: 'packages/react-icons-mdl2/src/components/SortLinesIcon.tsx', hash: '11891192657420845013' }, - { file: 'packages/react-icons-mdl2/src/components/SortUpIcon.tsx', hash: '10961926071507470926' }, - { file: 'packages/react-icons-mdl2/src/components/SourceIcon.tsx', hash: '2728937754359467002' }, - { file: 'packages/react-icons-mdl2/src/components/SpacerIcon.tsx', hash: '7050828993623671572' }, - { file: 'packages/react-icons-mdl2/src/components/SpeakersIcon.tsx', hash: '2440059018986861119' }, - { file: 'packages/react-icons-mdl2/src/components/SpecialEventIcon.tsx', hash: '16554944522040486282' }, - { file: 'packages/react-icons-mdl2/src/components/SpeedHighIcon.tsx', hash: '1870364148806547670' }, - { file: 'packages/react-icons-mdl2/src/components/SpellingIcon.tsx', hash: '5150751164294727237' }, - { file: 'packages/react-icons-mdl2/src/components/SplitIcon.tsx', hash: '5645423701987504952' }, - { file: 'packages/react-icons-mdl2/src/components/SplitObjectIcon.tsx', hash: '7696917508827033867' }, - { file: 'packages/react-icons-mdl2/src/components/SprintIcon.tsx', hash: '14509685609150224857' }, - { file: 'packages/react-icons-mdl2/src/components/SquallsIcon.tsx', hash: '13790844818296483669' }, - { file: 'packages/react-icons-mdl2/src/components/SquareShapeIcon.tsx', hash: '14194069350332456557' }, - { file: 'packages/react-icons-mdl2/src/components/SquareShapeSolidIcon.tsx', hash: '6091668410091044064' }, - { file: 'packages/react-icons-mdl2/src/components/StackColumnChartIcon.tsx', hash: '5750033709428168935' }, - { file: 'packages/react-icons-mdl2/src/components/StackIcon.tsx', hash: '2508613136410619416' }, - { file: 'packages/react-icons-mdl2/src/components/StackIndicatorIcon.tsx', hash: '17350034510560911365' }, - { file: 'packages/react-icons-mdl2/src/components/StackedBarChartIcon.tsx', hash: '2818483888288699403' }, - { file: 'packages/react-icons-mdl2/src/components/StackedColumnChart2FillIcon.tsx', hash: '6161322009720672112' }, - { file: 'packages/react-icons-mdl2/src/components/StackedColumnChart2Icon.tsx', hash: '3000388554856050094' }, - { file: 'packages/react-icons-mdl2/src/components/StackedLineChartIcon.tsx', hash: '1107216935189249093' }, - { file: 'packages/react-icons-mdl2/src/components/StarburstIcon.tsx', hash: '10780411602915789659' }, - { file: 'packages/react-icons-mdl2/src/components/StarburstSolidIcon.tsx', hash: '12448992283496117374' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleBlock2Icon.tsx', hash: '17684175596652858312' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleBlockIcon.tsx', hash: '16024578287257359985' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleCheckmarkIcon.tsx', hash: '13588980792697650161' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleErrorXIcon.tsx', hash: '8297623033959191316' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleExclamationIcon.tsx', hash: '1627855386051443053' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleInfoIcon.tsx', hash: '8350899233453241488' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleInnerIcon.tsx', hash: '12712482180441686353' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleOuterIcon.tsx', hash: '11708521576305204729' }, - { - file: 'packages/react-icons-mdl2/src/components/StatusCircleQuestionMarkIcon.tsx', - hash: '13112912123387201026', - }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleRingIcon.tsx', hash: '5409734124201155449' }, - { file: 'packages/react-icons-mdl2/src/components/StatusCircleSyncIcon.tsx', hash: '7621020559065265920' }, - { file: 'packages/react-icons-mdl2/src/components/StatusErrorFullIcon.tsx', hash: '5355917476705477943' }, - { - file: 'packages/react-icons-mdl2/src/components/StatusTriangleExclamationIcon.tsx', - hash: '4611265576263259478', - }, - { file: 'packages/react-icons-mdl2/src/components/StatusTriangleIcon.tsx', hash: '12461641900645362306' }, - { file: 'packages/react-icons-mdl2/src/components/StatusTriangleInnerIcon.tsx', hash: '15395814127262114514' }, - { file: 'packages/react-icons-mdl2/src/components/StatusTriangleOuterIcon.tsx', hash: '16298246760123913593' }, - { file: 'packages/react-icons-mdl2/src/components/StepIcon.tsx', hash: '215624494747363591' }, - { file: 'packages/react-icons-mdl2/src/components/StepInsertIcon.tsx', hash: '10138403059801626484' }, - { file: 'packages/react-icons-mdl2/src/components/StepSharedAddIcon.tsx', hash: '16344984184801001506' }, - { file: 'packages/react-icons-mdl2/src/components/StepSharedIcon.tsx', hash: '11206024398945775038' }, - { file: 'packages/react-icons-mdl2/src/components/StepSharedInsertIcon.tsx', hash: '1106979598169663081' }, - { file: 'packages/react-icons-mdl2/src/components/StockDownIcon.tsx', hash: '11921382229344091863' }, - { file: 'packages/react-icons-mdl2/src/components/StockUpIcon.tsx', hash: '1919785388202511728' }, - { file: 'packages/react-icons-mdl2/src/components/StopIcon.tsx', hash: '11185447640838295692' }, - { file: 'packages/react-icons-mdl2/src/components/StopSolidIcon.tsx', hash: '5531259320411293803' }, - { file: 'packages/react-icons-mdl2/src/components/StopwatchIcon.tsx', hash: '10549353697781477510' }, - { file: 'packages/react-icons-mdl2/src/components/StorageAcountIcon.tsx', hash: '15183665518429330152' }, - { file: 'packages/react-icons-mdl2/src/components/StorageOpticalIcon.tsx', hash: '16875020361414625799' }, - { file: 'packages/react-icons-mdl2/src/components/StoryboardIcon.tsx', hash: '10240115390494074559' }, - { file: 'packages/react-icons-mdl2/src/components/StreamingIcon.tsx', hash: '14590603862509932730' }, - { file: 'packages/react-icons-mdl2/src/components/StreamingOffIcon.tsx', hash: '18153643219661865252' }, - { file: 'packages/react-icons-mdl2/src/components/StreetIcon.tsx', hash: '15770083353298191910' }, - { - file: 'packages/react-icons-mdl2/src/components/StreetsideSplitMinimizeIcon.tsx', - hash: '16797873411790734665', - }, - { file: 'packages/react-icons-mdl2/src/components/StrikethroughIcon.tsx', hash: '17843657592475299928' }, - { file: 'packages/react-icons-mdl2/src/components/SubscribeIcon.tsx', hash: '15333737165870772998' }, - { file: 'packages/react-icons-mdl2/src/components/SubscriptIcon.tsx', hash: '4287449504425088846' }, - { file: 'packages/react-icons-mdl2/src/components/SubstitutionsInIcon.tsx', hash: '15877960703464877683' }, - { file: 'packages/react-icons-mdl2/src/components/SuitcaseIcon.tsx', hash: '8990696133843045428' }, - { file: 'packages/react-icons-mdl2/src/components/SunAddIcon.tsx', hash: '12992348011854256285' }, - { file: 'packages/react-icons-mdl2/src/components/SunQuestionMarkIcon.tsx', hash: '11469911801746140277' }, - { file: 'packages/react-icons-mdl2/src/components/SunnyIcon.tsx', hash: '15889047483369918896' }, - { file: 'packages/react-icons-mdl2/src/components/SuperscriptIcon.tsx', hash: '16578034173194686970' }, - { file: 'packages/react-icons-mdl2/src/components/SurveyQuestionsIcon.tsx', hash: '4132590427036402223' }, - { file: 'packages/react-icons-mdl2/src/components/SwiftLogoIcon.tsx', hash: '1081384326788574017' }, - { file: 'packages/react-icons-mdl2/src/components/SwitchIcon.tsx', hash: '8855533022142411121' }, - { file: 'packages/react-icons-mdl2/src/components/SwitchUserIcon.tsx', hash: '122057253456993291' }, - { file: 'packages/react-icons-mdl2/src/components/SwitcherStartEndIcon.tsx', hash: '2850956600846505452' }, - { file: 'packages/react-icons-mdl2/src/components/SyncFolderIcon.tsx', hash: '485126926028164730' }, - { file: 'packages/react-icons-mdl2/src/components/SyncIcon.tsx', hash: '16599196910082932774' }, - { file: 'packages/react-icons-mdl2/src/components/SyncOccurenceIcon.tsx', hash: '17681248839885934426' }, - { file: 'packages/react-icons-mdl2/src/components/SyncStatusIcon.tsx', hash: '8831246306662635170' }, - { file: 'packages/react-icons-mdl2/src/components/SyncStatusSolidIcon.tsx', hash: '8739424996180616133' }, - { file: 'packages/react-icons-mdl2/src/components/SyncToPCIcon.tsx', hash: '15438372302526567778' }, - { file: 'packages/react-icons-mdl2/src/components/SystemIcon.tsx', hash: '2334158159692651821' }, - { file: 'packages/react-icons-mdl2/src/components/TVMonitorIcon.tsx', hash: '7695717662123278557' }, - { file: 'packages/react-icons-mdl2/src/components/TVMonitorSelectedIcon.tsx', hash: '18154342861238382312' }, - { file: 'packages/react-icons-mdl2/src/components/TabCenterIcon.tsx', hash: '16365803943440280956' }, - { file: 'packages/react-icons-mdl2/src/components/TabIcon.tsx', hash: '11709620884374064982' }, - { file: 'packages/react-icons-mdl2/src/components/TabOneColumnIcon.tsx', hash: '662354409894200120' }, - { file: 'packages/react-icons-mdl2/src/components/TabThreeColumnIcon.tsx', hash: '4409269179587711443' }, - { file: 'packages/react-icons-mdl2/src/components/TabTwoColumnIcon.tsx', hash: '12412377849340051037' }, - { file: 'packages/react-icons-mdl2/src/components/TableBrandedColumnIcon.tsx', hash: '16290784899039879524' }, - { file: 'packages/react-icons-mdl2/src/components/TableBrandedRowIcon.tsx', hash: '13986843412325957834' }, - { file: 'packages/react-icons-mdl2/src/components/TableComputedIcon.tsx', hash: '3949507090249516656' }, - { file: 'packages/react-icons-mdl2/src/components/TableFirstColumnIcon.tsx', hash: '1884071651585108751' }, - { file: 'packages/react-icons-mdl2/src/components/TableGroupIcon.tsx', hash: '21416960461031223' }, - { file: 'packages/react-icons-mdl2/src/components/TableHeaderRowIcon.tsx', hash: '10415755673543766256' }, - { file: 'packages/react-icons-mdl2/src/components/TableIcon.tsx', hash: '7979377382125911255' }, - { file: 'packages/react-icons-mdl2/src/components/TableLastColumnIcon.tsx', hash: '10783688531401041457' }, - { file: 'packages/react-icons-mdl2/src/components/TableLinkIcon.tsx', hash: '5973576160447014475' }, - { file: 'packages/react-icons-mdl2/src/components/TableTotalRowIcon.tsx', hash: '4092767187779916452' }, - { file: 'packages/react-icons-mdl2/src/components/TabletIcon.tsx', hash: '9899473991876600081' }, - { file: 'packages/react-icons-mdl2/src/components/TabletModeIcon.tsx', hash: '13921024654679220987' }, - { file: 'packages/react-icons-mdl2/src/components/TabletSelectedIcon.tsx', hash: '6712523699481882152' }, - { file: 'packages/react-icons-mdl2/src/components/TagGroupIcon.tsx', hash: '17594586503679999232' }, - { file: 'packages/react-icons-mdl2/src/components/TagIcon.tsx', hash: '13685325487298013991' }, - { file: 'packages/react-icons-mdl2/src/components/TagSolidIcon.tsx', hash: '2495836356536292545' }, - { file: 'packages/react-icons-mdl2/src/components/TagUnknown12Icon.tsx', hash: '2598473569960929343' }, - { file: 'packages/react-icons-mdl2/src/components/TagUnknown12MirrorIcon.tsx', hash: '5777145997851759824' }, - { file: 'packages/react-icons-mdl2/src/components/TagUnknownIcon.tsx', hash: '14497305695419693170' }, - { file: 'packages/react-icons-mdl2/src/components/TagUnknownMirrorIcon.tsx', hash: '17711266976664051055' }, - { file: 'packages/react-icons-mdl2/src/components/TaskGroupIcon.tsx', hash: '11785630834522752706' }, - { file: 'packages/react-icons-mdl2/src/components/TaskGroupMirroredIcon.tsx', hash: '4676750509033243593' }, - { file: 'packages/react-icons-mdl2/src/components/TaskListIcon.tsx', hash: '5954157389475038868' }, - { file: 'packages/react-icons-mdl2/src/components/TaskManagerIcon.tsx', hash: '18017696453288394664' }, - { file: 'packages/react-icons-mdl2/src/components/TaskManagerMirroredIcon.tsx', hash: '17364828386753924183' }, - { file: 'packages/react-icons-mdl2/src/components/TaskSolidIcon.tsx', hash: '16676768704629323954' }, - { file: 'packages/react-icons-mdl2/src/components/TaskboardIcon.tsx', hash: '1465072882454830290' }, - { file: 'packages/react-icons-mdl2/src/components/TaxiIcon.tsx', hash: '9939668690623139701' }, - { file: 'packages/react-icons-mdl2/src/components/TeamFavoriteIcon.tsx', hash: '8834906264133174991' }, - { file: 'packages/react-icons-mdl2/src/components/TeamworkIcon.tsx', hash: '1385894294154520673' }, - { file: 'packages/react-icons-mdl2/src/components/TeethIcon.tsx', hash: '1039096284028888661' }, - { file: 'packages/react-icons-mdl2/src/components/TelemarketerIcon.tsx', hash: '6202991518436709224' }, - { file: 'packages/react-icons-mdl2/src/components/TemporaryUserIcon.tsx', hash: '2390283079187540413' }, - { file: 'packages/react-icons-mdl2/src/components/TennisIcon.tsx', hash: '9939280365510716542' }, - { file: 'packages/react-icons-mdl2/src/components/TestAutoSolidIcon.tsx', hash: '17552513329626189757' }, - { file: 'packages/react-icons-mdl2/src/components/TestBeakerIcon.tsx', hash: '5724817032542410021' }, - { file: 'packages/react-icons-mdl2/src/components/TestBeakerSolidIcon.tsx', hash: '16039530830701812924' }, - { file: 'packages/react-icons-mdl2/src/components/TestCaseIcon.tsx', hash: '3361764228168393807' }, - { file: 'packages/react-icons-mdl2/src/components/TestExploreSolidIcon.tsx', hash: '15688596397733369335' }, - { file: 'packages/react-icons-mdl2/src/components/TestImpactSolidIcon.tsx', hash: '4838804235311193529' }, - { file: 'packages/react-icons-mdl2/src/components/TestParameterIcon.tsx', hash: '13233135773568991009' }, - { file: 'packages/react-icons-mdl2/src/components/TestPlanIcon.tsx', hash: '5840777192923539247' }, - { file: 'packages/react-icons-mdl2/src/components/TestStepIcon.tsx', hash: '2539868854009493894' }, - { file: 'packages/react-icons-mdl2/src/components/TestSuiteIcon.tsx', hash: '11612852314150027326' }, - { file: 'packages/react-icons-mdl2/src/components/TestUserSolidIcon.tsx', hash: '17021241125114305919' }, - { file: 'packages/react-icons-mdl2/src/components/TextAlignBottomIcon.tsx', hash: '15595304680101858004' }, - { file: 'packages/react-icons-mdl2/src/components/TextAlignMiddleIcon.tsx', hash: '13088597654272774899' }, - { file: 'packages/react-icons-mdl2/src/components/TextAlignTopIcon.tsx', hash: '12409789330926784540' }, - { file: 'packages/react-icons-mdl2/src/components/TextBoxIcon.tsx', hash: '12640038380248915976' }, - { file: 'packages/react-icons-mdl2/src/components/TextCalloutIcon.tsx', hash: '8768374329086488041' }, - { file: 'packages/react-icons-mdl2/src/components/TextDocumentEditIcon.tsx', hash: '14033498016627891288' }, - { file: 'packages/react-icons-mdl2/src/components/TextDocumentIcon.tsx', hash: '15681509163935654252' }, - { file: 'packages/react-icons-mdl2/src/components/TextDocumentSettingsIcon.tsx', hash: '243054128054786567' }, - { file: 'packages/react-icons-mdl2/src/components/TextDocumentSharedIcon.tsx', hash: '10056072914160791288' }, - { file: 'packages/react-icons-mdl2/src/components/TextFieldIcon.tsx', hash: '16554991455092500846' }, - { file: 'packages/react-icons-mdl2/src/components/TextOverflowIcon.tsx', hash: '14266834217281845925' }, - { file: 'packages/react-icons-mdl2/src/components/TextParagraphOptionIcon.tsx', hash: '10524706672158436483' }, - { file: 'packages/react-icons-mdl2/src/components/TextRecognitionIcon.tsx', hash: '5475597562621601112' }, - { file: 'packages/react-icons-mdl2/src/components/TextRotate270DegreesIcon.tsx', hash: '3868367543183284951' }, - { file: 'packages/react-icons-mdl2/src/components/TextRotate90DegreesIcon.tsx', hash: '7709931387604465793' }, - { file: 'packages/react-icons-mdl2/src/components/TextRotateHorizontalIcon.tsx', hash: '9332426960722168438' }, - { file: 'packages/react-icons-mdl2/src/components/TextRotationIcon.tsx', hash: '5024976556154126592' }, - { file: 'packages/react-icons-mdl2/src/components/ThisPCIcon.tsx', hash: '4762656769096430490' }, - { file: 'packages/react-icons-mdl2/src/components/ThreeQuarterCircleIcon.tsx', hash: '14952954392359190791' }, - { file: 'packages/react-icons-mdl2/src/components/ThumbnailViewIcon.tsx', hash: '360297995023738561' }, - { file: 'packages/react-icons-mdl2/src/components/ThumbnailViewMirroredIcon.tsx', hash: '17846539039875697634' }, - { file: 'packages/react-icons-mdl2/src/components/ThunderstormsIcon.tsx', hash: '9106945935558199340' }, - { file: 'packages/react-icons-mdl2/src/components/TicketIcon.tsx', hash: '13190640847014651075' }, - { file: 'packages/react-icons-mdl2/src/components/Tiles2Icon.tsx', hash: '17203248268860884999' }, - { file: 'packages/react-icons-mdl2/src/components/TilesIcon.tsx', hash: '2672010188457684975' }, - { file: 'packages/react-icons-mdl2/src/components/TimeEntryIcon.tsx', hash: '12031904183135700464' }, - { file: 'packages/react-icons-mdl2/src/components/TimePickerIcon.tsx', hash: '8958829646877776263' }, - { file: 'packages/react-icons-mdl2/src/components/TimeSheetIcon.tsx', hash: '15539474987423139369' }, - { file: 'packages/react-icons-mdl2/src/components/TimelineDeliveryIcon.tsx', hash: '514264487208080729' }, - { file: 'packages/react-icons-mdl2/src/components/TimelineIcon.tsx', hash: '2940680805171877867' }, - { file: 'packages/react-icons-mdl2/src/components/TimelineMatrixViewIcon.tsx', hash: '5163027931014784165' }, - { file: 'packages/react-icons-mdl2/src/components/TimelineProgressIcon.tsx', hash: '12837504728733867949' }, - { file: 'packages/react-icons-mdl2/src/components/TimerIcon.tsx', hash: '10813898219243920306' }, - { file: 'packages/react-icons-mdl2/src/components/ToggleBorderIcon.tsx', hash: '14032634263947972089' }, - { file: 'packages/react-icons-mdl2/src/components/ToggleFilledIcon.tsx', hash: '15135642495766784714' }, - { file: 'packages/react-icons-mdl2/src/components/ToggleLeftIcon.tsx', hash: '2486283043481064334' }, - { file: 'packages/react-icons-mdl2/src/components/ToggleRightIcon.tsx', hash: '10855279613245750547' }, - { file: 'packages/react-icons-mdl2/src/components/ToggleThumbIcon.tsx', hash: '2749474144310917420' }, - { file: 'packages/react-icons-mdl2/src/components/TollIcon.tsx', hash: '3314679699864345856' }, - { file: 'packages/react-icons-mdl2/src/components/ToolboxIcon.tsx', hash: '4839246670380035611' }, - { file: 'packages/react-icons-mdl2/src/components/TotalIcon.tsx', hash: '4185728115118303116' }, - { file: 'packages/react-icons-mdl2/src/components/TouchIcon.tsx', hash: '10861349985175317319' }, - { file: 'packages/react-icons-mdl2/src/components/TouchPointerIcon.tsx', hash: '9852648877114095369' }, - { file: 'packages/react-icons-mdl2/src/components/TrackersIcon.tsx', hash: '13770614269976701744' }, - { file: 'packages/react-icons-mdl2/src/components/TrackersMirroredIcon.tsx', hash: '1805565580387664998' }, - { file: 'packages/react-icons-mdl2/src/components/TrainIcon.tsx', hash: '15721639617417914895' }, - { file: 'packages/react-icons-mdl2/src/components/TrainSolidIcon.tsx', hash: '976821243448214259' }, - { file: 'packages/react-icons-mdl2/src/components/TransferCallIcon.tsx', hash: '16048110274897933973' }, - { file: 'packages/react-icons-mdl2/src/components/TransitionEffectIcon.tsx', hash: '16289364194199249024' }, - { file: 'packages/react-icons-mdl2/src/components/TransitionIcon.tsx', hash: '2619796789854161438' }, - { file: 'packages/react-icons-mdl2/src/components/TransitionPopIcon.tsx', hash: '10155185082051010804' }, - { file: 'packages/react-icons-mdl2/src/components/TransitionPushIcon.tsx', hash: '16646538414614373831' }, - { file: 'packages/react-icons-mdl2/src/components/TranslateIcon.tsx', hash: '10526960969593700992' }, - { file: 'packages/react-icons-mdl2/src/components/Trending12Icon.tsx', hash: '2106873409364248506' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleDown12Icon.tsx', hash: '171981401139167507' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleLeft12Icon.tsx', hash: '16648485182410559664' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleRight12Icon.tsx', hash: '5798641180598467117' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleShapeIcon.tsx', hash: '17092372385959061650' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleShapeSolidIcon.tsx', hash: '688773254519750686' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleSolidDown12Icon.tsx', hash: '12573133610066222696' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleSolidIcon.tsx', hash: '6797382738731967916' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleSolidLeft12Icon.tsx', hash: '10900009224046619716' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleSolidRight12Icon.tsx', hash: '6567523118415963780' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleSolidUp12Icon.tsx', hash: '5329892573400991169' }, - { file: 'packages/react-icons-mdl2/src/components/TriangleUp12Icon.tsx', hash: '5945898828306457746' }, - { file: 'packages/react-icons-mdl2/src/components/TriggerApprovalIcon.tsx', hash: '10529063875031607672' }, - { file: 'packages/react-icons-mdl2/src/components/TriggerAutoIcon.tsx', hash: '11476050854862480564' }, - { file: 'packages/react-icons-mdl2/src/components/TriggerUserIcon.tsx', hash: '4184658008236004234' }, - { file: 'packages/react-icons-mdl2/src/components/TrimEndIcon.tsx', hash: '4965514454211828622' }, - { file: 'packages/react-icons-mdl2/src/components/TrimIcon.tsx', hash: '4807443960521026868' }, - { file: 'packages/react-icons-mdl2/src/components/TrimStartIcon.tsx', hash: '17844194230036320959' }, - { file: 'packages/react-icons-mdl2/src/components/TripleColumnEditIcon.tsx', hash: '12058208683152277294' }, - { file: 'packages/react-icons-mdl2/src/components/TripleColumnIcon.tsx', hash: '13361733788665401723' }, - { file: 'packages/react-icons-mdl2/src/components/TripleColumnWideIcon.tsx', hash: '15774745564128248294' }, - { file: 'packages/react-icons-mdl2/src/components/Trophy2Icon.tsx', hash: '3673672684917614623' }, - { file: 'packages/react-icons-mdl2/src/components/Trophy2SolidIcon.tsx', hash: '12793846497707369710' }, - { file: 'packages/react-icons-mdl2/src/components/TrophyIcon.tsx', hash: '6385230499807289860' }, - { file: 'packages/react-icons-mdl2/src/components/TurnRightIcon.tsx', hash: '15099009340328704249' }, - { file: 'packages/react-icons-mdl2/src/components/TwelvePointStarIcon.tsx', hash: '2615911893080009096' }, - { file: 'packages/react-icons-mdl2/src/components/TwitterLogoIcon.tsx', hash: '14191461990643700502' }, - { file: 'packages/react-icons-mdl2/src/components/URLBlockIcon.tsx', hash: '1925379512545042518' }, - { file: 'packages/react-icons-mdl2/src/components/USBIcon.tsx', hash: '15098287371858184580' }, - { file: 'packages/react-icons-mdl2/src/components/UmbrellaIcon.tsx', hash: '9137237141480703628' }, - { file: 'packages/react-icons-mdl2/src/components/UnSetColorIcon.tsx', hash: '4950692113525656602' }, - { file: 'packages/react-icons-mdl2/src/components/UnderlineIcon.tsx', hash: '14365306570852551521' }, - { file: 'packages/react-icons-mdl2/src/components/UndoIcon.tsx', hash: '5047100941423645842' }, - { file: 'packages/react-icons-mdl2/src/components/Uneditable2Icon.tsx', hash: '9311493851993525006' }, - { file: 'packages/react-icons-mdl2/src/components/Uneditable2MirroredIcon.tsx', hash: '3871595863416323192' }, - { file: 'packages/react-icons-mdl2/src/components/UneditableIcon.tsx', hash: '6404617348036391786' }, - { file: 'packages/react-icons-mdl2/src/components/UneditableMirroredIcon.tsx', hash: '8726101644786177988' }, - { file: 'packages/react-icons-mdl2/src/components/UneditableSolid12Icon.tsx', hash: '7635003590489640246' }, - { - file: 'packages/react-icons-mdl2/src/components/UneditableSolidMirrored12Icon.tsx', - hash: '9921092478533934651', - }, - { file: 'packages/react-icons-mdl2/src/components/UnfavoriteIcon.tsx', hash: '17681077919815737489' }, - { file: 'packages/react-icons-mdl2/src/components/UngroupObjectIcon.tsx', hash: '14882233682302492470' }, - { file: 'packages/react-icons-mdl2/src/components/UnknownCallIcon.tsx', hash: '5029389003388271009' }, - { file: 'packages/react-icons-mdl2/src/components/UnknownIcon.tsx', hash: '1735921039361749128' }, - { file: 'packages/react-icons-mdl2/src/components/UnknownMirroredIcon.tsx', hash: '9296861312750383545' }, - { file: 'packages/react-icons-mdl2/src/components/UnknownMirroredSolidIcon.tsx', hash: '2077397235634052500' }, - { file: 'packages/react-icons-mdl2/src/components/UnknownSolidIcon.tsx', hash: '12375948387710609319' }, - { file: 'packages/react-icons-mdl2/src/components/UnlockIcon.tsx', hash: '3440807599248599373' }, - { file: 'packages/react-icons-mdl2/src/components/UnlockSolidIcon.tsx', hash: '6894086335639184342' }, - { file: 'packages/react-icons-mdl2/src/components/UnpinIcon.tsx', hash: '7061079865495252339' }, - { file: 'packages/react-icons-mdl2/src/components/UnpublishContentIcon.tsx', hash: '8092480453385525234' }, - { file: 'packages/react-icons-mdl2/src/components/UnstackSelectedIcon.tsx', hash: '12346661599890970553' }, - { file: 'packages/react-icons-mdl2/src/components/UnsubscribeIcon.tsx', hash: '3774803546099902552' }, - { file: 'packages/react-icons-mdl2/src/components/UnsyncFolderIcon.tsx', hash: '15440579740730076712' }, - { file: 'packages/react-icons-mdl2/src/components/UnsyncOccurenceIcon.tsx', hash: '1425590890607565353' }, - { file: 'packages/react-icons-mdl2/src/components/UntagIcon.tsx', hash: '8416428745272919438' }, - { file: 'packages/react-icons-mdl2/src/components/UpIcon.tsx', hash: '1277400271266174921' }, - { file: 'packages/react-icons-mdl2/src/components/UpdateRestoreIcon.tsx', hash: '549519074071086844' }, - { file: 'packages/react-icons-mdl2/src/components/UpgradeAnalysisIcon.tsx', hash: '16560770761218336942' }, - { file: 'packages/react-icons-mdl2/src/components/UploadIcon.tsx', hash: '11995652079479661348' }, - { file: 'packages/react-icons-mdl2/src/components/UserEventIcon.tsx', hash: '3769311157832514887' }, - { file: 'packages/react-icons-mdl2/src/components/UserFollowedIcon.tsx', hash: '5966706362599236619' }, - { file: 'packages/react-icons-mdl2/src/components/UserGaugeIcon.tsx', hash: '18432081529086621043' }, - { file: 'packages/react-icons-mdl2/src/components/UserOptionalIcon.tsx', hash: '5662138790735657746' }, - { file: 'packages/react-icons-mdl2/src/components/UserPauseIcon.tsx', hash: '6151704219333905884' }, - { file: 'packages/react-icons-mdl2/src/components/UserRemoveIcon.tsx', hash: '11588591275980118322' }, - { file: 'packages/react-icons-mdl2/src/components/UserSyncIcon.tsx', hash: '17310207728181411047' }, - { file: 'packages/react-icons-mdl2/src/components/UserWarningIcon.tsx', hash: '14669492216490763227' }, - { file: 'packages/react-icons-mdl2/src/components/VBIcon.tsx', hash: '9829828778039629487' }, - { file: 'packages/react-icons-mdl2/src/components/VacationIcon.tsx', hash: '8022110324115674063' }, - { file: 'packages/react-icons-mdl2/src/components/VaccinationIcon.tsx', hash: '1178726231502318145' }, - { file: 'packages/react-icons-mdl2/src/components/Variable2Icon.tsx', hash: '755960883817735294' }, - { file: 'packages/react-icons-mdl2/src/components/VariableGroupIcon.tsx', hash: '8436465373430061460' }, - { file: 'packages/react-icons-mdl2/src/components/VariableIcon.tsx', hash: '2609031573367013787' }, - { file: 'packages/react-icons-mdl2/src/components/VennDiagramIcon.tsx', hash: '6647072432606819893' }, - { file: 'packages/react-icons-mdl2/src/components/VerifiedBrandIcon.tsx', hash: '505586560668839378' }, - { file: 'packages/react-icons-mdl2/src/components/VerifiedBrandSolidIcon.tsx', hash: '8937652609160012839' }, - { file: 'packages/react-icons-mdl2/src/components/VersionControlPushIcon.tsx', hash: '1300042390675965738' }, - { - file: 'packages/react-icons-mdl2/src/components/VerticalDistributeCenterIcon.tsx', - hash: '13794147682172231350', - }, - { file: 'packages/react-icons-mdl2/src/components/Video360GenericIcon.tsx', hash: '17226930219280265807' }, - { file: 'packages/react-icons-mdl2/src/components/VideoIcon.tsx', hash: '12278496161795627048' }, - { file: 'packages/react-icons-mdl2/src/components/VideoLightOffIcon.tsx', hash: '8856116492274615799' }, - { file: 'packages/react-icons-mdl2/src/components/VideoOff2Icon.tsx', hash: '6271894715959040359' }, - { file: 'packages/react-icons-mdl2/src/components/VideoOffIcon.tsx', hash: '10226797869303350920' }, - { file: 'packages/react-icons-mdl2/src/components/VideoSearchIcon.tsx', hash: '7205577982062949833' }, - { file: 'packages/react-icons-mdl2/src/components/VideoSolidIcon.tsx', hash: '8537354773411979077' }, - { file: 'packages/react-icons-mdl2/src/components/ViewAll2Icon.tsx', hash: '11868068469109024683' }, - { file: 'packages/react-icons-mdl2/src/components/ViewAllIcon.tsx', hash: '16818098509911006179' }, - { file: 'packages/react-icons-mdl2/src/components/ViewDashboardIcon.tsx', hash: '17093070343339581297' }, - { file: 'packages/react-icons-mdl2/src/components/ViewIcon.tsx', hash: '3174608005014370504' }, - { file: 'packages/react-icons-mdl2/src/components/ViewInARIcon.tsx', hash: '2288265271718830259' }, - { file: 'packages/react-icons-mdl2/src/components/ViewListGroupIcon.tsx', hash: '16872704757062896557' }, - { file: 'packages/react-icons-mdl2/src/components/ViewListIcon.tsx', hash: '13188750737974225743' }, - { file: 'packages/react-icons-mdl2/src/components/ViewListTreeIcon.tsx', hash: '18233067532528468437' }, - { file: 'packages/react-icons-mdl2/src/components/ViewOriginalIcon.tsx', hash: '3170951622338842638' }, - { file: 'packages/react-icons-mdl2/src/components/VisuallyImpairedIcon.tsx', hash: '4029080719537829282' }, - { file: 'packages/react-icons-mdl2/src/components/VisualsFolderIcon.tsx', hash: '15342863668915656662' }, - { file: 'packages/react-icons-mdl2/src/components/VisualsStoreIcon.tsx', hash: '3301177936267219314' }, - { file: 'packages/react-icons-mdl2/src/components/VivaEngageIcon.tsx', hash: '342057237145551020' }, - { file: 'packages/react-icons-mdl2/src/components/VoicemailForwardIcon.tsx', hash: '11252099681565531834' }, - { file: 'packages/react-icons-mdl2/src/components/VoicemailIRMIcon.tsx', hash: '5784027932985602268' }, - { file: 'packages/react-icons-mdl2/src/components/VoicemailReplyIcon.tsx', hash: '2670152969925082360' }, - { file: 'packages/react-icons-mdl2/src/components/Volume0Icon.tsx', hash: '14711966802494310008' }, - { file: 'packages/react-icons-mdl2/src/components/Volume1Icon.tsx', hash: '8628403532537549482' }, - { file: 'packages/react-icons-mdl2/src/components/Volume2Icon.tsx', hash: '10947955841676995522' }, - { file: 'packages/react-icons-mdl2/src/components/Volume3Icon.tsx', hash: '6255732894877839840' }, - { file: 'packages/react-icons-mdl2/src/components/VolumeDisabledIcon.tsx', hash: '15274266247179145671' }, - { file: 'packages/react-icons-mdl2/src/components/WaffleIcon.tsx', hash: '2950068325310779157' }, - { file: 'packages/react-icons-mdl2/src/components/WaitlistConfirmIcon.tsx', hash: '16350565265423816673' }, - { file: 'packages/react-icons-mdl2/src/components/WaitlistConfirmMirroredIcon.tsx', hash: '3192900391078337040' }, - { file: 'packages/react-icons-mdl2/src/components/Warning12Icon.tsx', hash: '10414927247423762544' }, - { file: 'packages/react-icons-mdl2/src/components/WarningIcon.tsx', hash: '11558870242564616294' }, - { file: 'packages/react-icons-mdl2/src/components/WarningSolidIcon.tsx', hash: '4806809002654438437' }, - { file: 'packages/react-icons-mdl2/src/components/WavingHandIcon.tsx', hash: '5328126403369927808' }, - { file: 'packages/react-icons-mdl2/src/components/WebComponentsIcon.tsx', hash: '6368115053369553368' }, - { file: 'packages/react-icons-mdl2/src/components/WebEnvironmentIcon.tsx', hash: '381704530527454706' }, - { file: 'packages/react-icons-mdl2/src/components/WebPublishIcon.tsx', hash: '14472183168093975238' }, - { file: 'packages/react-icons-mdl2/src/components/WebTemplateIcon.tsx', hash: '7673288651544450874' }, - { file: 'packages/react-icons-mdl2/src/components/Webcam2Icon.tsx', hash: '11408324897112205977' }, - { file: 'packages/react-icons-mdl2/src/components/Webcam2OffIcon.tsx', hash: '11112019980159583410' }, - { file: 'packages/react-icons-mdl2/src/components/WebsiteIcon.tsx', hash: '109363059098112457' }, - { file: 'packages/react-icons-mdl2/src/components/WeightsIcon.tsx', hash: '9131258169715892532' }, - { file: 'packages/react-icons-mdl2/src/components/WheelchairIcon.tsx', hash: '16945724465006768625' }, - { file: 'packages/react-icons-mdl2/src/components/WifiEthernetIcon.tsx', hash: '5960548132930795026' }, - { file: 'packages/react-icons-mdl2/src/components/WifiWarning4Icon.tsx', hash: '7927677858534751771' }, - { file: 'packages/react-icons-mdl2/src/components/WindDirectionIcon.tsx', hash: '9221883227530736535' }, - { file: 'packages/react-icons-mdl2/src/components/WindowEditIcon.tsx', hash: '4076965312930675053' }, - { file: 'packages/react-icons-mdl2/src/components/WinesIcon.tsx', hash: '1465806768413311133' }, - { file: 'packages/react-icons-mdl2/src/components/WipePhoneIcon.tsx', hash: '12670699704701586796' }, - { file: 'packages/react-icons-mdl2/src/components/WorkFlowIcon.tsx', hash: '4175996887759720125' }, - { file: 'packages/react-icons-mdl2/src/components/WorkIcon.tsx', hash: '7487163304911749789' }, - { file: 'packages/react-icons-mdl2/src/components/WorkItemAlertIcon.tsx', hash: '18002172167790808215' }, - { file: 'packages/react-icons-mdl2/src/components/WorkItemBarIcon.tsx', hash: '10251941423352191173' }, - { file: 'packages/react-icons-mdl2/src/components/WorkItemBarSolidIcon.tsx', hash: '8361787609476204851' }, - { file: 'packages/react-icons-mdl2/src/components/WorkItemBugIcon.tsx', hash: '16243598830165268723' }, - { file: 'packages/react-icons-mdl2/src/components/WorkItemIcon.tsx', hash: '7038981634753058738' }, - { file: 'packages/react-icons-mdl2/src/components/WorkforceManagementIcon.tsx', hash: '358477104320586984' }, - { file: 'packages/react-icons-mdl2/src/components/WorldClockIcon.tsx', hash: '3089081544197638278' }, - { file: 'packages/react-icons-mdl2/src/components/WorldIcon.tsx', hash: '649726162345103873' }, - { file: 'packages/react-icons-mdl2/src/components/XamarinLogoIcon.tsx', hash: '14047036378370404231' }, - { file: 'packages/react-icons-mdl2/src/components/XboxControllerIcon.tsx', hash: '9369385320898542725' }, - { file: 'packages/react-icons-mdl2/src/components/ZipFolderIcon.tsx', hash: '9100929772659195530' }, - { file: 'packages/react-icons-mdl2/src/components/ZoomIcon.tsx', hash: '5661510962276466081' }, - { file: 'packages/react-icons-mdl2/src/components/ZoomInIcon.tsx', hash: '6270376369614251228' }, - { file: 'packages/react-icons-mdl2/src/components/ZoomOutIcon.tsx', hash: '3454829544366928700' }, - { file: 'packages/react-icons-mdl2/src/components/ZoomToFitIcon.tsx', hash: '3268567365489041315' }, - { file: 'packages/react-icons-mdl2/src/components/eDiscoveryIcon.tsx', hash: '7159112877709818566' }, - { file: 'packages/react-icons-mdl2/src/components/iOSAppStoreLogoIcon.tsx', hash: '7627089926395288748' }, - { file: 'packages/react-icons-mdl2/src/components.test.tsx', hash: '6663979517663972277' }, - { file: 'packages/react-icons-mdl2/src/index.ts', hash: '10045948948610575782' }, - { file: 'packages/react-icons-mdl2/src/utils/SvgIcon.scss', hash: '17239050675246297646' }, - { file: 'packages/react-icons-mdl2/src/utils/SvgIcon.types.ts', hash: '6367189759970436552' }, - { file: 'packages/react-icons-mdl2/src/utils/createSvgIcon.test.tsx', hash: '2001542643760954125' }, - { file: 'packages/react-icons-mdl2/src/utils/createSvgIcon.ts', hash: '11651772376542528354' }, - { file: 'packages/react-icons-mdl2/src/utils/types.ts', hash: '14103007282502894067' }, - { file: 'packages/react-icons-mdl2/src/version.ts', hash: '1883088086173265942' }, - { file: 'packages/react-icons-mdl2/tsconfig.json', hash: '10956001999050876945' }, - { file: 'packages/react-icons-mdl2/webpack.config.js', hash: '3997384588979449621' }, - ], - '@fluentui/react-search-preview': [ - { file: 'packages/react-components/react-search-preview/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-search-preview/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-search-preview/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-search-preview/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-search-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-search-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-search-preview/CHANGELOG.json', hash: '4422059300176138933' }, - { file: 'packages/react-components/react-search-preview/CHANGELOG.md', hash: '4671157039965199214' }, - { file: 'packages/react-components/react-search-preview/LICENSE', hash: '10208143628444227491' }, - { file: 'packages/react-components/react-search-preview/README.md', hash: '15299480567783003405' }, - { file: 'packages/react-components/react-search-preview/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-search-preview/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-search-preview/docs/MIGRATION.md', hash: '2865705533281265171' }, - { file: 'packages/react-components/react-search-preview/docs/Spec.md', hash: '18435160378759031464' }, - { - file: 'packages/react-components/react-search-preview/etc/react-search-preview.api.md', - hash: '2996165423955728843', - }, - { file: 'packages/react-components/react-search-preview/jest.config.js', hash: '2413236386355797934' }, - { file: 'packages/react-components/react-search-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-search-preview/package.json', - hash: '16063317431784896488', - deps: [ - 'npm:@fluentui/react-icons', - '@fluentui/react-input', - '@fluentui/react-jsx-runtime', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-search-preview/project.json', hash: '6245122481400325168' }, - { file: 'packages/react-components/react-search-preview/src/SearchBox.ts', hash: '15808954179607126400' }, - { - file: 'packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.test.tsx', - hash: '11990646386900636944', - }, - { - file: 'packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.tsx', - hash: '2638780876376384531', - }, - { - file: 'packages/react-components/react-search-preview/src/components/SearchBox/SearchBox.types.ts', - hash: '10944253874763523961', - }, - { - file: 'packages/react-components/react-search-preview/src/components/SearchBox/__snapshots__/SearchBox.test.tsx.snap', - hash: '6499561349979786200', - }, - { - file: 'packages/react-components/react-search-preview/src/components/SearchBox/index.ts', - hash: '8943459759748143116', - }, - { - file: 'packages/react-components/react-search-preview/src/components/SearchBox/renderSearchBox.tsx', - hash: '12848093918605820140', - }, - { - file: 'packages/react-components/react-search-preview/src/components/SearchBox/useSearchBox.tsx', - hash: '1203285435378804120', - }, - { - file: 'packages/react-components/react-search-preview/src/components/SearchBox/useSearchBoxStyles.styles.ts', - hash: '274536282407907923', - }, - { file: 'packages/react-components/react-search-preview/src/index.ts', hash: '10703430971917101752' }, - { - file: 'packages/react-components/react-search-preview/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxAppearance.stories.tsx', - hash: '479309571099364156', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxBestPractices.md', - hash: '18322882289744529866', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxContentBeforeAfter.stories.tsx', - hash: '17369466639462581414', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxControlled.stories.tsx', - hash: '17397495220176592807', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDefault.stories.tsx', - hash: '3984914430258979310', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDescription.md', - hash: '11379297500412622701', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxDisabled.stories.tsx', - hash: '5166324980640455577', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxPlaceholder.stories.tsx', - hash: '8194263709905614805', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/SearchBoxSize.stories.tsx', - hash: '4334577727586338959', - }, - { - file: 'packages/react-components/react-search-preview/stories/SearchBox/index.stories.tsx', - hash: '14993770248065248151', - }, - { file: 'packages/react-components/react-search-preview/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-search-preview/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-search-preview/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-label': [ - { file: 'packages/react-components/react-label/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-label/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-label/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-label/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-label/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-label/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-label/CHANGELOG.json', hash: '15967607658001790716' }, - { file: 'packages/react-components/react-label/CHANGELOG.md', hash: '2679890539344327293' }, - { file: 'packages/react-components/react-label/LICENSE', hash: '12737615233351762377' }, - { file: 'packages/react-components/react-label/README.md', hash: '16581094109821911033' }, - { file: 'packages/react-components/react-label/bundle-size/Label.fixture.js', hash: '12714736312436909972' }, - { file: 'packages/react-components/react-label/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-label/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-label/docs/MIGRATION.md', hash: '8973789574999379237' }, - { file: 'packages/react-components/react-label/docs/Spec.md', hash: '9483683590469917676' }, - { file: 'packages/react-components/react-label/etc/react-label.api.md', hash: '9487234802999168387' }, - { file: 'packages/react-components/react-label/jest.config.js', hash: '15752885123418439598' }, - { file: 'packages/react-components/react-label/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-label/package.json', - hash: '14662469562447826963', - deps: [ - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-label/project.json', hash: '12851828682182600309' }, - { file: 'packages/react-components/react-label/src/Label.ts', hash: '4712475947755339018' }, - { file: 'packages/react-components/react-label/src/components/Label/Label.test.tsx', hash: '753838017696023469' }, - { file: 'packages/react-components/react-label/src/components/Label/Label.tsx', hash: '18398721846668611007' }, - { - file: 'packages/react-components/react-label/src/components/Label/Label.types.ts', - hash: '15292574198375936571', - }, - { - file: 'packages/react-components/react-label/src/components/Label/__snapshots__/Label.test.tsx.snap', - hash: '16100124649470847201', - }, - { file: 'packages/react-components/react-label/src/components/Label/index.ts', hash: '5020371410472237279' }, - { - file: 'packages/react-components/react-label/src/components/Label/renderLabel.tsx', - hash: '16436124598547877124', - }, - { file: 'packages/react-components/react-label/src/components/Label/useLabel.tsx', hash: '7056413739845035308' }, - { - file: 'packages/react-components/react-label/src/components/Label/useLabelStyles.styles.ts', - hash: '9164626135008328986', - }, - { file: 'packages/react-components/react-label/src/index.ts', hash: '5978491449724056660' }, - { file: 'packages/react-components/react-label/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-label/stories/Label/LabelDefault.stories.tsx', - hash: '14841468930192781303', - }, - { file: 'packages/react-components/react-label/stories/Label/LabelDescription.md', hash: '7798368864438073846' }, - { - file: 'packages/react-components/react-label/stories/Label/LabelDisabled.stories.tsx', - hash: '1464439726235154207', - }, - { - file: 'packages/react-components/react-label/stories/Label/LabelRequired.stories.tsx', - hash: '10394030120071368744', - }, - { file: 'packages/react-components/react-label/stories/Label/LabelSize.stories.tsx', hash: '420198798163138293' }, - { - file: 'packages/react-components/react-label/stories/Label/LabelWeight.stories.tsx', - hash: '1458579849047401397', - }, - { file: 'packages/react-components/react-label/stories/Label/index.stories.tsx', hash: '3602262048666383799' }, - { file: 'packages/react-components/react-label/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-label/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-label/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-portal-compat-context': [ - { file: 'packages/react-components/react-portal-compat-context/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-portal-compat-context/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-portal-compat-context/.swcrc', hash: '246811047642206189' }, - { file: 'packages/react-components/react-portal-compat-context/CHANGELOG.json', hash: '3286043060232160725' }, - { file: 'packages/react-components/react-portal-compat-context/CHANGELOG.md', hash: '16083951032521964094' }, - { file: 'packages/react-components/react-portal-compat-context/LICENSE', hash: '15132429679533339073' }, - { file: 'packages/react-components/react-portal-compat-context/README.md', hash: '12732380853969159320' }, - { - file: 'packages/react-components/react-portal-compat-context/config/api-extractor.json', - hash: '124052868224837692', - }, - { file: 'packages/react-components/react-portal-compat-context/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-portal-compat-context/docs/Spec.md', hash: '12839968031342266899' }, - { - file: 'packages/react-components/react-portal-compat-context/etc/react-portal-compat-context.api.md', - hash: '11239910211046275802', - }, - { file: 'packages/react-components/react-portal-compat-context/jest.config.js', hash: '8444108561492533698' }, - { file: 'packages/react-components/react-portal-compat-context/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-portal-compat-context/package.json', - hash: '11825902232626046996', - deps: [ - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-components/react-portal-compat-context/project.json', hash: '16365174501960435076' }, - { - file: 'packages/react-components/react-portal-compat-context/src/PortalCompatContext.ts', - hash: '2242893524372144892', - }, - { file: 'packages/react-components/react-portal-compat-context/src/index.ts', hash: '16361580812256184490' }, - { file: 'packages/react-components/react-portal-compat-context/src/types.ts', hash: '15037039190645892516' }, - { file: 'packages/react-components/react-portal-compat-context/tsconfig.json', hash: '1281030173985602576' }, - { file: 'packages/react-components/react-portal-compat-context/tsconfig.lib.json', hash: '7009046833260972717' }, - { - file: 'packages/react-components/react-portal-compat-context/tsconfig.spec.json', - hash: '13916911291935990408', - }, - ], - '@fluentui/recipes-react-components': [ - { file: 'apps/recipes-react-components/.eslintrc.json', hash: '6745579680639719580' }, - { file: 'apps/recipes-react-components/.storybook/main.js', hash: '3573351146020217563' }, - { file: 'apps/recipes-react-components/.storybook/preview.js', hash: '13060507936672259436' }, - { file: 'apps/recipes-react-components/just.config.ts', hash: '10393370776333958822' }, - { - file: 'apps/recipes-react-components/package.json', - hash: '10025438426730395084', - deps: [ - '@fluentui/react-components', - 'npm:@fluentui/react-icons', - '@fluentui/react-theme', - '@fluentui/react-provider', - '@fluentui/react-storybook-addon', - '@fluentui/react-storybook-addon-export-to-sandbox', - 'npm:@griffel/react', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - ], - }, - { file: 'apps/recipes-react-components/project.json', hash: '16331129437784993323' }, - { - file: 'apps/recipes-react-components/src/DocComponents/FluentDocsContainer.stories.tsx', - hash: '2324064054925248616', - }, - { file: 'apps/recipes-react-components/src/index.ts', hash: '15555827964896839803' }, - { - file: 'apps/recipes-react-components/src/recipes/media-object/MediaObject.stories.mdx', - hash: '2100852699300778383', - }, - { - file: 'apps/recipes-react-components/src/recipes/media-object/code-snippets/MediaObject.tsx', - hash: '15951393116113450384', - }, - { - file: 'apps/recipes-react-components/src/recipes/media-object/code-snippets/index.ts', - hash: '9585924820972516427', - }, - { file: 'apps/recipes-react-components/src/templates/Example.tsx', hash: '270058714944668880' }, - { file: 'apps/recipes-react-components/src/templates/index.ts', hash: '6433543791903200750' }, - { file: 'apps/recipes-react-components/tsconfig.app.json', hash: '7286160734465805905' }, - { file: 'apps/recipes-react-components/tsconfig.json', hash: '820111550898000748' }, - ], - '@fluentui/ts-minbar-test-react': [ - { file: 'apps/ts-minbar-test-react/CHANGELOG.json', hash: '17761077664360148852' }, - { file: 'apps/ts-minbar-test-react/CHANGELOG.md', hash: '14470523675549078295' }, - { file: 'apps/ts-minbar-test-react/README.md', hash: '4419651569658703681' }, - { file: 'apps/ts-minbar-test-react/files/src/index.tsx', hash: '18103345228235893227' }, - { file: 'apps/ts-minbar-test-react/files/tsconfig.json', hash: '5092064063558585511' }, - { file: 'apps/ts-minbar-test-react/just.config.ts', hash: '7156839958691239049' }, - { - file: 'apps/ts-minbar-test-react/package.json', - hash: '17975545398563137137', - deps: ['@fluentui/react', '@fluentui/scripts-tasks', '@fluentui/scripts-projects-test'], - }, - { file: 'apps/ts-minbar-test-react/project.json', hash: '1282750908468855311' }, - { file: 'apps/ts-minbar-test-react/src/index.ts', hash: '6919848813558476158' }, - { file: 'apps/ts-minbar-test-react/tsconfig.json', hash: '10809149894665832803' }, - ], - '@fluentui/perf-test-northstar': [ - { file: 'packages/fluentui/perf-test-northstar/.digest/config.tsx', hash: '4770113341000384297' }, - { file: 'packages/fluentui/perf-test-northstar/just.config.ts', hash: '13576606665214849514' }, - { - file: 'packages/fluentui/perf-test-northstar/package.json', - hash: '8642285019896310713', - deps: [ - '@fluentui/react-northstar', - '@fluentui/react-northstar-prototypes', - '@fluentui/digest', - 'npm:flamegrill', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/fluentui/perf-test-northstar/project.json', hash: '16333162126337688832' }, - { file: 'packages/fluentui/perf-test-northstar/tasks/fluentPerfRegressions.ts', hash: '10043449040042657596' }, - { file: 'packages/fluentui/perf-test-northstar/tasks/perf-test.config.ts', hash: '6425901650244247513' }, - { file: 'packages/fluentui/perf-test-northstar/tasks/perf-test.ts', hash: '6993888231747376071' }, - { file: 'packages/fluentui/perf-test-northstar/tsconfig.json', hash: '14973691866308938473' }, - ], - '@fluentui/react-context-selector': [ - { file: 'packages/react-components/react-context-selector/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-context-selector/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-context-selector/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-context-selector/CHANGELOG.json', hash: '12357456438201883679' }, - { file: 'packages/react-components/react-context-selector/CHANGELOG.md', hash: '1688705207205191806' }, - { file: 'packages/react-components/react-context-selector/LICENSE', hash: '14418648610861842636' }, - { file: 'packages/react-components/react-context-selector/README.md', hash: '4793703731858594212' }, - { - file: 'packages/react-components/react-context-selector/config/api-extractor.json', - hash: '124052868224837692', - }, - { file: 'packages/react-components/react-context-selector/config/tests.js', hash: '9971916367882244724' }, - { - file: 'packages/react-components/react-context-selector/etc/react-context-selector.api.md', - hash: '817145045488550826', - }, - { file: 'packages/react-components/react-context-selector/jest.config.js', hash: '396823205152653422' }, - { file: 'packages/react-components/react-context-selector/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-context-selector/package.json', - hash: '14209163811172208834', - deps: [ - '@fluentui/react-utilities', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-context-selector/project.json', hash: '10672805380923032364' }, - { - file: 'packages/react-components/react-context-selector/src/createContext.test.tsx', - hash: '4604017868584066298', - }, - { file: 'packages/react-components/react-context-selector/src/createContext.ts', hash: '1937703165389642557' }, - { file: 'packages/react-components/react-context-selector/src/index.ts', hash: '15808868075184724918' }, - { file: 'packages/react-components/react-context-selector/src/types.ts', hash: '3342966834093442693' }, - { - file: 'packages/react-components/react-context-selector/src/useContextSelector.test.tsx', - hash: '2957338539505755381', - }, - { - file: 'packages/react-components/react-context-selector/src/useContextSelector.ts', - hash: '5840336099139347811', - }, - { - file: 'packages/react-components/react-context-selector/src/useHasParentContext.test.tsx', - hash: '1290164710762769818', - }, - { - file: 'packages/react-components/react-context-selector/src/useHasParentContext.ts', - hash: '6039941632328716696', - }, - { file: 'packages/react-components/react-context-selector/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/react-context-selector/tsconfig.lib.json', hash: '14975475306433073951' }, - { file: 'packages/react-components/react-context-selector/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/perf-test': [ - { file: 'apps/perf-test/.eslintrc.json', hash: '10547952771306076160' }, - { file: 'apps/perf-test/CHANGELOG.json', hash: '3690860680265631274' }, - { file: 'apps/perf-test/CHANGELOG.md', hash: '9969572947780794950' }, - { file: 'apps/perf-test/README.md', hash: '12764928321652014507' }, - { file: 'apps/perf-test/config/perf-test/index.ts', hash: '15575701111399511894' }, - { file: 'apps/perf-test/config/perf-test/scenarioIterations.ts', hash: '1467367775531702909' }, - { file: 'apps/perf-test/config/perf-test/scenarioNames.ts', hash: '10066279640267329814' }, - { file: 'apps/perf-test/config/perf-test/scenarioRenderTypes.ts', hash: '14788378254920081233' }, - { file: 'apps/perf-test/config/pre-copy.json', hash: '5251859254196291210' }, - { file: 'apps/perf-test/index.html', hash: '2745716322290525623' }, - { file: 'apps/perf-test/just.config.ts', hash: '4618050165307861195' }, - { - file: 'apps/perf-test/package.json', - hash: '4151768643695656396', - deps: [ - '@fluentui/scripts-perf-test-flamegrill', - '@fluentui/example-data', - '@fluentui/react', - 'npm:@microsoft/load-themed-styles', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-storybook', - ], - }, - { file: 'apps/perf-test/project.json', hash: '5899890915664975397' }, - { file: 'apps/perf-test/src/app.tsx', hash: '12332207993597947267' }, - { file: 'apps/perf-test/src/scenarios/BaseButton.tsx', hash: '7039729498171122609' }, - { file: 'apps/perf-test/src/scenarios/Breadcrumb.tsx', hash: '16313024224495253730' }, - { file: 'apps/perf-test/src/scenarios/Checkbox.tsx', hash: '17155260053343035107' }, - { file: 'apps/perf-test/src/scenarios/CheckboxBase.tsx', hash: '10358952204764439200' }, - { file: 'apps/perf-test/src/scenarios/ChoiceGroup.tsx', hash: '15318243762546027140' }, - { file: 'apps/perf-test/src/scenarios/ComboBox.tsx', hash: '18118694370519216172' }, - { file: 'apps/perf-test/src/scenarios/CommandBar.tsx', hash: '6091443890586328828' }, - { file: 'apps/perf-test/src/scenarios/ContextualMenu.tsx', hash: '14094654232604367120' }, - { file: 'apps/perf-test/src/scenarios/DefaultButton.tsx', hash: '13562761979210098938' }, - { file: 'apps/perf-test/src/scenarios/DetailsRow.tsx', hash: '10889146823819281010' }, - { file: 'apps/perf-test/src/scenarios/DetailsRowFast.tsx', hash: '9350356486541871260' }, - { file: 'apps/perf-test/src/scenarios/DetailsRowNoStyles.tsx', hash: '3324923498330798880' }, - { file: 'apps/perf-test/src/scenarios/Dialog.tsx', hash: '1622520893332066150' }, - { file: 'apps/perf-test/src/scenarios/DocumentCardTitle.tsx', hash: '4017785122739704762' }, - { file: 'apps/perf-test/src/scenarios/Dropdown.tsx', hash: '9674266945938654081' }, - { file: 'apps/perf-test/src/scenarios/FocusTrapZone.tsx', hash: '12804820792601734124' }, - { file: 'apps/perf-test/src/scenarios/FocusZone.tsx', hash: '1772332301941374739' }, - { file: 'apps/perf-test/src/scenarios/GroupedList.tsx', hash: '2729166176625295421' }, - { file: 'apps/perf-test/src/scenarios/GroupedListV2.tsx', hash: '6083440523386377794' }, - { file: 'apps/perf-test/src/scenarios/IconButton.tsx', hash: '9783541165587624706' }, - { file: 'apps/perf-test/src/scenarios/Label.tsx', hash: '10333297231209743060' }, - { file: 'apps/perf-test/src/scenarios/Layer.tsx', hash: '7525187532864277839' }, - { file: 'apps/perf-test/src/scenarios/Link.tsx', hash: '17134170605875713013' }, - { file: 'apps/perf-test/src/scenarios/MenuButton.tsx', hash: '12482470571362753709' }, - { file: 'apps/perf-test/src/scenarios/MessageBar.tsx', hash: '6613648289670595058' }, - { file: 'apps/perf-test/src/scenarios/Nav.tsx', hash: '5798771953346508490' }, - { file: 'apps/perf-test/src/scenarios/OverflowSet.tsx', hash: '9513079940270145993' }, - { file: 'apps/perf-test/src/scenarios/Panel.tsx', hash: '1158665086373748648' }, - { file: 'apps/perf-test/src/scenarios/Persona.tsx', hash: '18289029128740009386' }, - { file: 'apps/perf-test/src/scenarios/Pivot.tsx', hash: '10244319942289181285' }, - { file: 'apps/perf-test/src/scenarios/PrimaryButton.tsx', hash: '12459806105681511644' }, - { file: 'apps/perf-test/src/scenarios/Rating.tsx', hash: '14731327159912128514' }, - { file: 'apps/perf-test/src/scenarios/SearchBox.tsx', hash: '5237818112665442932' }, - { file: 'apps/perf-test/src/scenarios/Shimmer.tsx', hash: '11956647389275749102' }, - { file: 'apps/perf-test/src/scenarios/Slider.tsx', hash: '11778722341113439217' }, - { file: 'apps/perf-test/src/scenarios/SpinButton.tsx', hash: '9965853523492667198' }, - { file: 'apps/perf-test/src/scenarios/Spinner.tsx', hash: '2726138929103130728' }, - { file: 'apps/perf-test/src/scenarios/SplitButton.tsx', hash: '477263295800307708' }, - { file: 'apps/perf-test/src/scenarios/Stack.tsx', hash: '1140119322094176286' }, - { file: 'apps/perf-test/src/scenarios/StackWithIntrinsicChildren.tsx', hash: '1362817365828357956' }, - { file: 'apps/perf-test/src/scenarios/StackWithTextChildren.tsx', hash: '11161962004038112758' }, - { file: 'apps/perf-test/src/scenarios/SwatchColorPicker.tsx', hash: '13643965778697826890' }, - { file: 'apps/perf-test/src/scenarios/TagPicker.tsx', hash: '4504938228669326581' }, - { file: 'apps/perf-test/src/scenarios/TeachingBubble.tsx', hash: '2658825098623550378' }, - { file: 'apps/perf-test/src/scenarios/Text.tsx', hash: '11640958193635725056' }, - { file: 'apps/perf-test/src/scenarios/TextField.tsx', hash: '17031475880417719245' }, - { file: 'apps/perf-test/src/scenarios/ThemeProvider.tsx', hash: '11898213004948485176' }, - { file: 'apps/perf-test/src/scenarios/Toggle.tsx', hash: '4108297911933308158' }, - { file: 'apps/perf-test/src/scenarios/buttonNative.tsx', hash: '15107688448206415163' }, - { file: 'apps/perf-test/tsconfig.json', hash: '14794982171392571729' }, - { file: 'apps/perf-test/webpack.config.js', hash: '14057463434392795636' }, - ], - '@fluentui/react-tabs': [ - { file: 'packages/react-components/react-tabs/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-tabs/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-tabs/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-tabs/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-tabs/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-tabs/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-tabs/CHANGELOG.json', hash: '16653990280561800435' }, - { file: 'packages/react-components/react-tabs/CHANGELOG.md', hash: '5147253273970416832' }, - { file: 'packages/react-components/react-tabs/LICENSE', hash: '4740908718758378364' }, - { file: 'packages/react-components/react-tabs/README.md', hash: '18127596344126903308' }, - { file: 'packages/react-components/react-tabs/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-tabs/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-tabs/docs/MIGRATION.md', hash: '15527478377883104682' }, - { file: 'packages/react-components/react-tabs/docs/Spec.md', hash: '5069091585937724395' }, - { file: 'packages/react-components/react-tabs/etc/react-tabs.api.md', hash: '7006711000172869136' }, - { file: 'packages/react-components/react-tabs/jest.config.js', hash: '14708845933115558170' }, - { file: 'packages/react-components/react-tabs/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-tabs/package.json', - hash: '2435507149752619818', - deps: [ - '@fluentui/react-context-selector', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-tabs/project.json', hash: '2488794906819146532' }, - { file: 'packages/react-components/react-tabs/src/Tab.ts', hash: '18052715041612667837' }, - { file: 'packages/react-components/react-tabs/src/TabList.ts', hash: '14259566883412751833' }, - { file: 'packages/react-components/react-tabs/src/components/Tab/Tab.test.tsx', hash: '5284346870856331647' }, - { file: 'packages/react-components/react-tabs/src/components/Tab/Tab.tsx', hash: '14262278411334138962' }, - { file: 'packages/react-components/react-tabs/src/components/Tab/Tab.types.ts', hash: '13892973305630266674' }, - { - file: 'packages/react-components/react-tabs/src/components/Tab/__snapshots__/Tab.test.tsx.snap', - hash: '16130306086249008716', - }, - { file: 'packages/react-components/react-tabs/src/components/Tab/index.ts', hash: '571853373705559422' }, - { file: 'packages/react-components/react-tabs/src/components/Tab/renderTab.tsx', hash: '438513960010848710' }, - { file: 'packages/react-components/react-tabs/src/components/Tab/useTab.ts', hash: '17930474082868536927' }, - { - file: 'packages/react-components/react-tabs/src/components/Tab/useTabAnimatedIndicator.styles.ts', - hash: '17878737750085263788', - }, - { - file: 'packages/react-components/react-tabs/src/components/Tab/useTabStyles.styles.ts', - hash: '3339130946495387865', - }, - { - file: 'packages/react-components/react-tabs/src/components/TabList/TabList.test.tsx', - hash: '248552595994159964', - }, - { file: 'packages/react-components/react-tabs/src/components/TabList/TabList.tsx', hash: '16824515058622491938' }, - { - file: 'packages/react-components/react-tabs/src/components/TabList/TabList.types.ts', - hash: '15050565246393575960', - }, - { - file: 'packages/react-components/react-tabs/src/components/TabList/TabListContext.ts', - hash: '3869552624891089499', - }, - { - file: 'packages/react-components/react-tabs/src/components/TabList/__snapshots__/TabList.test.tsx.snap', - hash: '17408894838225022682', - }, - { file: 'packages/react-components/react-tabs/src/components/TabList/index.ts', hash: '14418839090107905003' }, - { - file: 'packages/react-components/react-tabs/src/components/TabList/renderTabList.tsx', - hash: '13702244115276528829', - }, - { - file: 'packages/react-components/react-tabs/src/components/TabList/useTabList.ts', - hash: '11356167478206479845', - }, - { - file: 'packages/react-components/react-tabs/src/components/TabList/useTabListContextValues.tsx', - hash: '5865239856627346423', - }, - { - file: 'packages/react-components/react-tabs/src/components/TabList/useTabListStyles.styles.ts', - hash: '12502061653707237914', - }, - { file: 'packages/react-components/react-tabs/src/index.ts', hash: '4303965408378135432' }, - { file: 'packages/react-components/react-tabs/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListAppearance.stories.tsx', - hash: '1756544703328115970', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListBestPractices.md', - hash: '9690510840193383523', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListDefault.stories.tsx', - hash: '6373688234211709605', - }, - { file: 'packages/react-components/react-tabs/stories/Tabs/TabListDescription.md', hash: '9843865439273724282' }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListDisabled.stories.tsx', - hash: '1181981537502838116', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListHorizontal.stories.tsx', - hash: '1364604632286623277', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListIconOnly.stories.tsx', - hash: '13443109350217072013', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListSelectTabOnFocus.stories.tsx', - hash: '10089458872641528139', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListSizeLarge.stories.tsx', - hash: '9903831177196541741', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListSizeMedium.stories.tsx', - hash: '12348057756948710175', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListSizeSmall.stories.tsx', - hash: '130845448440742280', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListVertical.stories.tsx', - hash: '9914209083956496614', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListWithIcon.stories.tsx', - hash: '9957205148378025404', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListWithOverflow.stories.tsx', - hash: '17612162312056098804', - }, - { - file: 'packages/react-components/react-tabs/stories/Tabs/TabListWithPanels.stories.tsx', - hash: '4021389843633563591', - }, - { file: 'packages/react-components/react-tabs/stories/Tabs/index.stories.tsx', hash: '1465033720456171245' }, - { file: 'packages/react-components/react-tabs/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-tabs/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-tabs/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/scripts-cypress': [ - { file: 'scripts/cypress/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/cypress/jest.config.js', hash: '518561776419926196' }, - { file: 'scripts/cypress/package.json', hash: '17552627759162863426' }, - { file: 'scripts/cypress/project.json', hash: '3565894995875395203' }, - { file: 'scripts/cypress/src/base.config.ts', hash: '15157171578083653468' }, - { file: 'scripts/cypress/src/fixtures/example.json', hash: '13882982864087580737' }, - { file: 'scripts/cypress/src/index.ts', hash: '16896299082554130027' }, - { file: 'scripts/cypress/src/support/commands.js', hash: '11219619752715906948' }, - { file: 'scripts/cypress/src/support/component-index.html', hash: '1832624220235093789' }, - { file: 'scripts/cypress/src/support/component.js', hash: '7239146018917213442' }, - { file: 'scripts/cypress/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/cypress/tsconfig.lib.json', hash: '7437868646531824504' }, - { file: 'scripts/cypress/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-dialog': [ - { file: 'packages/react-components/react-dialog/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-dialog/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-dialog/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-dialog/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-dialog/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-dialog/.swcrc', hash: '471348148265161299' }, - { file: 'packages/react-components/react-dialog/CHANGELOG.json', hash: '6085765037859185787' }, - { file: 'packages/react-components/react-dialog/CHANGELOG.md', hash: '2434122158939463922' }, - { file: 'packages/react-components/react-dialog/LICENSE', hash: '4256434193176290151' }, - { file: 'packages/react-components/react-dialog/README.md', hash: '1497980874896642378' }, - { file: 'packages/react-components/react-dialog/bundle-size/Dialog.fixture.js', hash: '5764444469502119445' }, - { file: 'packages/react-components/react-dialog/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-dialog/config/tests.js', hash: '14010006175392234982' }, - { file: 'packages/react-components/react-dialog/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-dialog/docs/Spec.md', hash: '18129707136231408032' }, - { - file: 'packages/react-components/react-dialog/docs/assets/AlertDialogKeyboardInteraction.png', - hash: '13183178900446740370', - }, - { - file: 'packages/react-components/react-dialog/docs/assets/AlertDialogMouseInteraction.png', - hash: '14303341550723004589', - }, - { - file: 'packages/react-components/react-dialog/docs/assets/ModalDialogKeyboardInteraction.png', - hash: '11090212249781690940', - }, - { - file: 'packages/react-components/react-dialog/docs/assets/ModalDialogMouseInteraction.png', - hash: '5309545076786861609', - }, - { - file: 'packages/react-components/react-dialog/docs/assets/NonModalDialogKeyboardInteraction.png', - hash: '11487147899341732505', - }, - { - file: 'packages/react-components/react-dialog/docs/assets/NonModalDialogMouseInteraction.png', - hash: '7627930701325333139', - }, - { file: 'packages/react-components/react-dialog/etc/react-dialog.api.md', hash: '13186150910557458242' }, - { file: 'packages/react-components/react-dialog/jest.config.js', hash: '2212714289394290007' }, - { file: 'packages/react-components/react-dialog/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-dialog/package.json', - hash: '1137127162811369009', - deps: [ - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:react-transition-group', - '@fluentui/keyboard-keys', - '@fluentui/react-context-selector', - '@fluentui/react-shared-contexts', - '@fluentui/react-aria', - 'npm:@fluentui/react-icons', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-portal', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-dialog/project.json', hash: '1593776171207895375' }, - { file: 'packages/react-components/react-dialog/src/Dialog.ts', hash: '7614391750837937500' }, - { file: 'packages/react-components/react-dialog/src/DialogActions.ts', hash: '6501368177261565003' }, - { file: 'packages/react-components/react-dialog/src/DialogBody.ts', hash: '1679083201725254068' }, - { file: 'packages/react-components/react-dialog/src/DialogContent.ts', hash: '6834626365839640188' }, - { file: 'packages/react-components/react-dialog/src/DialogSurface.ts', hash: '2183784150146559110' }, - { file: 'packages/react-components/react-dialog/src/DialogTitle.ts', hash: '3159547512722278904' }, - { file: 'packages/react-components/react-dialog/src/DialogTrigger.ts', hash: '14937508139502512966' }, - { - file: 'packages/react-components/react-dialog/src/components/Dialog/Dialog.cy.tsx', - hash: '2739398937444627575', - }, - { - file: 'packages/react-components/react-dialog/src/components/Dialog/Dialog.test.tsx', - hash: '3844477481217755323', - }, - { file: 'packages/react-components/react-dialog/src/components/Dialog/Dialog.tsx', hash: '17117780814439457607' }, - { - file: 'packages/react-components/react-dialog/src/components/Dialog/Dialog.types.ts', - hash: '3167557189119634950', - }, - { - file: 'packages/react-components/react-dialog/src/components/Dialog/__snapshots__/Dialog.test.tsx.snap', - hash: '6387916450749041874', - }, - { file: 'packages/react-components/react-dialog/src/components/Dialog/index.ts', hash: '9063948780008868764' }, - { - file: 'packages/react-components/react-dialog/src/components/Dialog/renderDialog.tsx', - hash: '15434040824683363960', - }, - { - file: 'packages/react-components/react-dialog/src/components/Dialog/useDialog.test.ts', - hash: '13640949584726189974', - }, - { - file: 'packages/react-components/react-dialog/src/components/Dialog/useDialog.ts', - hash: '9234251070886907331', - }, - { - file: 'packages/react-components/react-dialog/src/components/Dialog/useDialogContextValues.ts', - hash: '14604638666966312339', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogActions/DialogActions.test.tsx', - hash: '3862407181068648115', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogActions/DialogActions.tsx', - hash: '2665085773669039653', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogActions/DialogActions.types.ts', - hash: '13952106127501133459', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogActions/__snapshots__/DialogActions.test.tsx.snap', - hash: '9879192408649306339', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogActions/index.ts', - hash: '10997266245526734202', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogActions/renderDialogActions.tsx', - hash: '12604892974082609712', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogActions/useDialogActions.ts', - hash: '11701599453758756444', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogActions/useDialogActionsStyles.styles.ts', - hash: '10819211647069438860', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogBody/DialogBody.test.tsx', - hash: '14475823408062819496', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogBody/DialogBody.tsx', - hash: '14017098954018666482', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogBody/DialogBody.types.ts', - hash: '9658295494660160346', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogBody/__snapshots__/DialogBody.test.tsx.snap', - hash: '11651296553611813582', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogBody/index.ts', - hash: '14036818210030993605', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogBody/renderDialogBody.tsx', - hash: '4670394357462636632', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogBody/useDialogBody.ts', - hash: '10540755511073542654', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogBody/useDialogBodyStyles.styles.ts', - hash: '5142001486085645225', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogContent/DialogContent.test.tsx', - hash: '7579162779048284428', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogContent/DialogContent.tsx', - hash: '6285589207963179145', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogContent/DialogContent.types.ts', - hash: '5680115798417242790', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogContent/__snapshots__/DialogContent.test.tsx.snap', - hash: '4103540723511950746', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogContent/index.ts', - hash: '14518234974361262884', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogContent/renderDialogContent.tsx', - hash: '8525939742007444644', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogContent/useDialogContent.ts', - hash: '9956821653223924569', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogContent/useDialogContentStyles.styles.ts', - hash: '2680471230329021351', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.test.tsx', - hash: '8550862405162377121', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.tsx', - hash: '10302476452612932521', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/DialogSurface.types.ts', - hash: '15073482470524864646', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/__snapshots__/DialogSurface.test.tsx.snap', - hash: '5754145182784132163', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/index.ts', - hash: '4045975660109409458', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/renderDialogSurface.tsx', - hash: '12541449551639055808', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurface.ts', - hash: '9107214140896834439', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurfaceContextValues.ts', - hash: '2363445813728113956', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogSurface/useDialogSurfaceStyles.styles.ts', - hash: '13214703133443642860', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.cy.tsx', - hash: '8039933273383891584', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.test.tsx', - hash: '1613995791781650658', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.tsx', - hash: '13145752080337682920', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/DialogTitle.types.ts', - hash: '1996415862795187750', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/__snapshots__/DialogTitle.test.tsx.snap', - hash: '4812873543797308805', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/index.ts', - hash: '2680563011959958634', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/renderDialogTitle.tsx', - hash: '292258614427830609', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/useDialogTitle.tsx', - hash: '15310505910673020995', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTitle/useDialogTitleStyles.styles.ts', - hash: '7636358250199335822', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.test.tsx', - hash: '1402232731592992356', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.tsx', - hash: '16111386851757642694', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTrigger/DialogTrigger.types.ts', - hash: '15754792245182397714', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTrigger/__snapshots__/DialogTrigger.test.tsx.snap', - hash: '15349658709586452249', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTrigger/index.ts', - hash: '5301397907530381498', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTrigger/renderDialogTrigger.tsx', - hash: '5459199244809190499', - }, - { - file: 'packages/react-components/react-dialog/src/components/DialogTrigger/useDialogTrigger.ts', - hash: '12286782142162182081', - }, - { file: 'packages/react-components/react-dialog/src/contexts/constants.ts', hash: '6190891133932018158' }, - { file: 'packages/react-components/react-dialog/src/contexts/dialogContext.ts', hash: '4234838693206379174' }, - { - file: 'packages/react-components/react-dialog/src/contexts/dialogSurfaceContext.ts', - hash: '16279975393744354586', - }, - { - file: 'packages/react-components/react-dialog/src/contexts/dialogTransitionContext.ts', - hash: '8520465009143452270', - }, - { file: 'packages/react-components/react-dialog/src/contexts/index.ts', hash: '14786615568304329742' }, - { file: 'packages/react-components/react-dialog/src/index.ts', hash: '11179932823285468334' }, - { file: 'packages/react-components/react-dialog/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-dialog/src/testing/mockUseDialogContext.ts', - hash: '15081100806553676964', - }, - { file: 'packages/react-components/react-dialog/src/testing/selectors.ts', hash: '14197921886153798563' }, - { file: 'packages/react-components/react-dialog/src/utils/index.ts', hash: '9921567441268489854' }, - { - file: 'packages/react-components/react-dialog/src/utils/useDisableBodyScroll.ts', - hash: '10847958514196072311', - }, - { - file: 'packages/react-components/react-dialog/src/utils/useFocusFirstElement.ts', - hash: '10941774999208531161', - }, - { file: 'packages/react-components/react-dialog/stories/Dialog/DialogA11y.md', hash: '679082905829069796' }, - { file: 'packages/react-components/react-dialog/stories/Dialog/DialogAlert.md', hash: '2672952536005254418' }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogAlert.stories.tsx', - hash: '12397098830725963885', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogBestPractices.md', - hash: '5032283973958903493', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogChangeFocus.stories.tsx', - hash: '676013714115936995', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogControllingOpenAndClose.md', - hash: '14656403629598821845', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogControllingOpenAndClose.stories.tsx', - hash: '3641672445058163436', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogCustomTrigger.md', - hash: '16816646341237511822', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogCustomTrigger.stories.tsx', - hash: '1374547463519489314', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogDefault.stories.tsx', - hash: '854035252666479494', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogDescription.md', - hash: '11000425708368126382', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogFluidDialogActions.md', - hash: '12247949510009193278', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogFluidDialogActions.stories.tsx', - hash: '5383668325653872167', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogNoFocusableElement.md', - hash: '6143738976469988971', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogNoFocusableElement.stories.tsx', - hash: '17216947668804365391', - }, - { file: 'packages/react-components/react-dialog/stories/Dialog/DialogNonModal.md', hash: '5441682859607869665' }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogNonModal.stories.tsx', - hash: '17621734798983363303', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogScrollingLongContent.stories.tsx', - hash: '14247822807945780299', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogTitleCustomAction.md', - hash: '650878191513690735', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogTitleCustomAction.stories.tsx', - hash: '4100443228224733194', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogTitleNoAction.md', - hash: '8381986865674275003', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogTitleNoAction.stories.tsx', - hash: '17768139917992326981', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogTriggerOutsideDialog.md', - hash: '555082381172387824', - }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogTriggerOutsideDialog.stories.tsx', - hash: '13910480372673957340', - }, - { file: 'packages/react-components/react-dialog/stories/Dialog/DialogWithForm.md', hash: '17307812149546381291' }, - { - file: 'packages/react-components/react-dialog/stories/Dialog/DialogWithForm.stories.tsx', - hash: '13325038626143987414', - }, - { file: 'packages/react-components/react-dialog/stories/Dialog/index.stories.tsx', hash: '15727902005989339948' }, - { file: 'packages/react-components/react-dialog/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-dialog/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-dialog/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-dialog/tsconfig.spec.json', hash: '6578707152334499940' }, - ], - '@fluentui/react-message-bar': [ - { file: 'packages/react-components/react-message-bar/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-message-bar/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-message-bar/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-message-bar/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-message-bar/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-message-bar/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-message-bar/CHANGELOG.json', hash: '12868552992585073378' }, - { file: 'packages/react-components/react-message-bar/CHANGELOG.md', hash: '3351778526796692282' }, - { file: 'packages/react-components/react-message-bar/LICENSE', hash: '16327043439041055681' }, - { file: 'packages/react-components/react-message-bar/README.md', hash: '15953389640457019950' }, - { - file: 'packages/react-components/react-message-bar/bundle-size/Default.fixture.js', - hash: '13627711057272473768', - }, - { file: 'packages/react-components/react-message-bar/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-message-bar/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-message-bar/docs/Spec.md', hash: '13237932483207544458' }, - { file: 'packages/react-components/react-message-bar/etc/react-message-bar.api.md', hash: '2630926883949754792' }, - { file: 'packages/react-components/react-message-bar/jest.config.js', hash: '16413207529227807353' }, - { file: 'packages/react-components/react-message-bar/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-message-bar/package.json', - hash: '124120508206091990', - deps: [ - '@fluentui/react-button', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - 'npm:react-transition-group', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-message-bar/project.json', hash: '7248934092611567757' }, - { file: 'packages/react-components/react-message-bar/src/MessageBar.ts', hash: '11069752646730668502' }, - { file: 'packages/react-components/react-message-bar/src/MessageBarActions.ts', hash: '6350244474931654916' }, - { file: 'packages/react-components/react-message-bar/src/MessageBarBody.ts', hash: '15258723960017893150' }, - { file: 'packages/react-components/react-message-bar/src/MessageBarGroup.ts', hash: '13446753258376394884' }, - { file: 'packages/react-components/react-message-bar/src/MessageBarTitle.ts', hash: '12103042897925369057' }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.test.tsx', - hash: '9506020889676043856', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.tsx', - hash: '11248815863695310059', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/MessageBar.types.ts', - hash: '10265815128886080638', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/__snapshots__/MessageBar.test.tsx.snap', - hash: '7502280520215239903', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/getIntentIcon.tsx', - hash: '4277324912438122135', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/index.ts', - hash: '9803266154576642022', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/renderMessageBar.tsx', - hash: '7217534775651955585', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/useMessageBar.ts', - hash: '3795650310140008286', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarContextValues.ts', - hash: '6205540263050481251', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarReflow.ts', - hash: '3614108844810135926', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBar/useMessageBarStyles.styles.ts', - hash: '10150166265258600139', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.test.tsx', - hash: '6343373343822998356', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.tsx', - hash: '2692361793179622035', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/MessageBarActions.types.ts', - hash: '5031837590524241274', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/__snapshots__/MessageBarActions.test.tsx.snap', - hash: '5374791425502198609', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/index.ts', - hash: '6652705818627569799', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/renderMessageBarActions.tsx', - hash: '17591955117442494635', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActions.ts', - hash: '811010621446034593', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActionsContextValues.ts', - hash: '5538020371246007312', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarActions/useMessageBarActionsStyles.styles.ts', - hash: '5228797381152039444', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.test.tsx', - hash: '4203182302311597189', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.tsx', - hash: '10959738536866784870', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/MessageBarBody.types.ts', - hash: '13189627554707243979', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/__snapshots__/MessageBarBody.test.tsx.snap', - hash: '3169659039358924689', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/index.ts', - hash: '6409436879092391979', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/renderMessageBarBody.tsx', - hash: '7153916570245760883', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/useMessageBarBody.ts', - hash: '16009894493284767820', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarBody/useMessageBarBodyStyles.styles.ts', - hash: '786785408048331858', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.test.tsx', - hash: '10746505726784798319', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.tsx', - hash: '11942212723426358383', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarGroup.types.ts', - hash: '17580485053530706223', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/MessageBarTransition.tsx', - hash: '1897606092423574196', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/__snapshots__/MessageBarGroup.test.tsx.snap', - hash: '11797626360229827566', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/index.ts', - hash: '141029932104411197', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/renderMessageBarGroup.tsx', - hash: '9292110846219555557', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/useMessageBarGroup.ts', - hash: '13080914534948221759', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarGroup/useMessageBarGroupStyles.styles.ts', - hash: '4114910048574266033', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.test.tsx', - hash: '13107564461531935709', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.tsx', - hash: '15080023250269401769', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/MessageBarTitle.types.ts', - hash: '16764194630667813256', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/__snapshots__/MessageBarTitle.test.tsx.snap', - hash: '17734021380652132090', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/index.ts', - hash: '15767480419136494943', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/renderMessageBarTitle.tsx', - hash: '17586122560297000640', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/useMessageBarTitle.ts', - hash: '13066611263584781770', - }, - { - file: 'packages/react-components/react-message-bar/src/components/MessageBarTitle/useMessageBarTitleStyles.styles.ts', - hash: '13091896643774309043', - }, - { - file: 'packages/react-components/react-message-bar/src/contexts/messageBarContext.ts', - hash: '435413260933637702', - }, - { - file: 'packages/react-components/react-message-bar/src/contexts/messageBarTransitionContext.ts', - hash: '6522240939806347526', - }, - { file: 'packages/react-components/react-message-bar/src/index.ts', hash: '8389702385165675435' }, - { file: 'packages/react-components/react-message-bar/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/Actions.stories.tsx', - hash: '2287271431760496557', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/Animation.stories.tsx', - hash: '881524708691207187', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/Default.stories.tsx', - hash: '4575863936191746397', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/Dismiss.stories.tsx', - hash: '16912282858601457050', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/Intent.stories.tsx', - hash: '14771748215068096830', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/ManualLayout.stories.tsx', - hash: '17909419254727221572', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/MessageBarBestPractices.md', - hash: '689727808186723124', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/MessageBarDescription.md', - hash: '2054562495258492479', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/Reflow.stories.tsx', - hash: '2381235900578476619', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/Shape.stories.tsx', - hash: '11863170233070670412', - }, - { - file: 'packages/react-components/react-message-bar/stories/MessageBar/index.stories.tsx', - hash: '7570405686550661948', - }, - { file: 'packages/react-components/react-message-bar/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-message-bar/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-message-bar/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-storybook-addon-export-to-sandbox': [ - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/.babelrc.json', - hash: '496283691468190474', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/.eslintrc.json', - hash: '11018738359270224912', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/.swcrc', - hash: '16532409398616988134', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/LICENSE', - hash: '5967641454269899786', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/README.md', - hash: '2499909989248215183', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/config/api-extractor.json', - hash: '124052868224837692', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/config/tests.js', - hash: '16913843724990866890', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/etc/react-storybook-addon-export-to-sandbox.api.md', - hash: '5494337558277006328', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/jest.config.js', - hash: '9919031605228870875', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/just.config.ts', - hash: '4613957333426947832', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/package.json', - hash: '5155999668375146046', - deps: [ - 'npm:@swc/helpers', - 'npm:@types/dedent', - 'npm:codesandbox-import-utils', - '@fluentui/babel-preset-storybook-full-source', - 'npm:dedent', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@storybook/addons', - ], - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/preset.js', - hash: '6822632498536641539', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/project.json', - hash: '6370982920554095857', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/decorators/with-export-to-sandbox-button.ts', - hash: '466454051426915967', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/getDependencies.test.ts', - hash: '17898521010029603023', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/getDependencies.ts', - hash: '15483781329479952564', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/index.ts', - hash: '15555827964896839803', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preset.ts', - hash: '17366032390171216343', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/preset/preview.ts', - hash: '6360847473423006182', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/public-types.ts', - hash: '12101660067213946265', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-factory.spec.ts', - hash: '14851454481375425606', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-factory.ts', - hash: '3768624125514363470', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-scaffold.spec.ts', - hash: '904384803371274770', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-scaffold.ts', - hash: '8649250263437017824', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-utils.spec.ts', - hash: '5331689109961892313', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/sandbox-utils.ts', - hash: '16034308923572524868', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/styles.css', - hash: '18413253947347252396', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/types.ts', - hash: '15294403858832099609', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/utils.ts', - hash: '1265135705758458783', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/webpack.spec.ts', - hash: '11999431958700731244', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/src/webpack.ts', - hash: '14753243909660912317', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.json', - hash: '11066276364833551840', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.lib.json', - hash: '12699777983452779566', - }, - { - file: 'packages/react-components/react-storybook-addon-export-to-sandbox/tsconfig.spec.json', - hash: '13916911291935990408', - }, - ], - '@fluentui/react-provider': [ - { file: 'packages/react-components/react-provider/.babelrc.json', hash: '2096462375136904521' }, - { file: 'packages/react-components/react-provider/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-provider/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-provider/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-provider/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-provider/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-provider/CHANGELOG.json', hash: '108417590726351912' }, - { file: 'packages/react-components/react-provider/CHANGELOG.md', hash: '1116526773130530825' }, - { file: 'packages/react-components/react-provider/LICENSE', hash: '13549150797464198841' }, - { file: 'packages/react-components/react-provider/README.md', hash: '3720615893207556971' }, - { - file: 'packages/react-components/react-provider/bundle-size/FluentProvider.fixture.js', - hash: '12527860066414405224', - }, - { file: 'packages/react-components/react-provider/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-provider/config/tests.js', hash: '14010006175392234982' }, - { file: 'packages/react-components/react-provider/etc/react-provider.api.md', hash: '5506599900252811007' }, - { file: 'packages/react-components/react-provider/jest.config.js', hash: '5036142973094437254' }, - { file: 'packages/react-components/react-provider/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-provider/package.json', - hash: '1619886676318507914', - deps: [ - 'npm:@fluentui/react-icons', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/core', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-provider/project.json', hash: '9180676873197508756' }, - { file: 'packages/react-components/react-provider/src/FluentProvider.ts', hash: '3850447221714993967' }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider-hydrate.test.tsx', - hash: '13880435843164414546', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider-node.test.tsx', - hash: '7793367056400359495', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.test.tsx', - hash: '3377541994227020635', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.tsx', - hash: '2751246076442384735', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/FluentProvider.types.ts', - hash: '6772065816773142755', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/__snapshots__/FluentProvider.test.tsx.snap', - hash: '10433890136069603039', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/createCSSRuleFromTheme.test.ts', - hash: '2527967971133399553', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/createCSSRuleFromTheme.ts', - hash: '13841534288587055296', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/index.ts', - hash: '6883603651365901962', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/renderFluentProvider.tsx', - hash: '16727318347714133982', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProvider.test.tsx', - hash: '15464636707560200947', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProvider.ts', - hash: '11108514811781860865', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderContextValues.test.ts', - hash: '4277988110613911860', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderContextValues.ts', - hash: '16628905926299651978', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderStyles.styles.ts', - hash: '4840669889939752003', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderThemeStyleTag.test.tsx', - hash: '8101357930343770428', - }, - { - file: 'packages/react-components/react-provider/src/components/FluentProvider/useFluentProviderThemeStyleTag.ts', - hash: '10077234436893861533', - }, - { file: 'packages/react-components/react-provider/src/index.ts', hash: '17864331557252480625' }, - { file: 'packages/react-components/react-provider/src/testing/isConformant.ts', hash: '3528474470343364133' }, - { - file: 'packages/react-components/react-provider/stories/Provider/FluentProviderApplyStylesToPortals.stories.tsx', - hash: '15066956984639683240', - }, - { - file: 'packages/react-components/react-provider/stories/Provider/FluentProviderBestPractices.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-provider/stories/Provider/FluentProviderDefault.stories.tsx', - hash: '1104809821168894069', - }, - { - file: 'packages/react-components/react-provider/stories/Provider/FluentProviderDescription.md', - hash: '10297569764496749529', - }, - { - file: 'packages/react-components/react-provider/stories/Provider/FluentProviderDir.stories.tsx', - hash: '5915476121845915577', - }, - { - file: 'packages/react-components/react-provider/stories/Provider/FluentProviderFrame.stories.tsx', - hash: '17764123855331912505', - }, - { - file: 'packages/react-components/react-provider/stories/Provider/FluentProviderNested.stories.tsx', - hash: '18297391744563059933', - }, - { - file: 'packages/react-components/react-provider/stories/Provider/index.stories.tsx', - hash: '3190944166615926852', - }, - { file: 'packages/react-components/react-provider/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-provider/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-provider/tsconfig.spec.json', hash: '6578707152334499940' }, - ], - '@fluentui/workspace-plugin': [ - { file: 'tools/workspace-plugin/.eslintrc.json', hash: '15149754208101589499' }, - { file: 'tools/workspace-plugin/README.md', hash: '6672627314745788036' }, - { file: 'tools/workspace-plugin/STYLE-GUIDE.md', hash: '3643452117874720686' }, - { file: 'tools/workspace-plugin/generators.json', hash: '14874084490014433884' }, - { file: 'tools/workspace-plugin/jest.config.ts', hash: '15153650075111198033' }, - { file: 'tools/workspace-plugin/package.json', hash: '3887346704352140538' }, - { file: 'tools/workspace-plugin/project.json', hash: '15713253905208780959' }, - { file: 'tools/workspace-plugin/scripts/check-dep-graph.js', hash: '8914802890105624146' }, - { file: 'tools/workspace-plugin/src/generators/add-codeowners.spec.ts', hash: '12173538524254972528' }, - { file: 'tools/workspace-plugin/src/generators/add-codeowners.ts', hash: '17572063765493066791' }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/README.md', - hash: '9195191598039456271', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/files/cypress.config.ts__tmpl__', - hash: '17230281421398791592', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/files/tsconfig.cy.json__tmpl__', - hash: '583687292406309619', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/index.spec.ts', - hash: '2318255691944314322', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/index.ts', - hash: '8797936809098149602', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/lib/add-files.ts', - hash: '2938181488416777877', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/lib/utils.spec.ts', - hash: '11181311015782311627', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/lib/utils.ts', - hash: '9065718880996606846', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/schema.json', - hash: '17452041331960852312', - }, - { - file: 'tools/workspace-plugin/src/generators/cypress-component-configuration/schema.ts', - hash: '5622245695872283378', - }, - { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/README.md', hash: '7206131889877981370' }, - { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/index.spec.ts', hash: '8624903429065322064' }, - { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/index.ts', hash: '140651421153146290' }, - { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/schema.json', hash: '865300350200578861' }, - { file: 'tools/workspace-plugin/src/generators/dependency-mismatch/schema.ts', hash: '16632993977426318585' }, - { file: 'tools/workspace-plugin/src/generators/epic-generator/README.md', hash: '16999690254569500391' }, - { file: 'tools/workspace-plugin/src/generators/epic-generator/index.spec.ts', hash: '10508293609049539359' }, - { file: 'tools/workspace-plugin/src/generators/epic-generator/index.ts', hash: '9154235588228773010' }, - { file: 'tools/workspace-plugin/src/generators/epic-generator/schema.json', hash: '7342797308065425147' }, - { file: 'tools/workspace-plugin/src/generators/epic-generator/schema.ts', hash: '14871870936190718481' }, - { file: 'tools/workspace-plugin/src/generators/generate-change-file.spec.ts', hash: '7911062531575789942' }, - { file: 'tools/workspace-plugin/src/generators/generate-change-files.ts', hash: '4364069018731787781' }, - { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/README.md', hash: '3654033943011462935' }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/conformance-setup.ts__tmpl__', - hash: '4945883377006641019', - }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/just-config.ts__tmpl__', - hash: '10393370776333958822', - }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/old-jest-config.js__tmpl__', - hash: '1536723015234762507', - }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__fixtures__/ts-ignore-story.ts__tmpl__', - hash: '4346103498686954704', - }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/__snapshots__/index.spec.ts.snap', - hash: '10832486388624247092', - }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/files/.gitkeep', - hash: '3244421341483603138', - }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/files/just-config.ts__tmpl__', - hash: '4613957333426947832', - }, - { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/index.spec.ts', hash: '993719406763264172' }, - { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/index.ts', hash: '16807171603041999988' }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/__fixtures__/utils-hello-substitute.ts__tmpl__', - hash: '14220718920917696154', - }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/__fixtures__/utils-hello.ts__tmpl__', - hash: '13350959345360961417', - }, - { - file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/utils.spec.ts', - hash: '5968007191018436234', - }, - { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/lib/utils.ts', hash: '8873963753325977415' }, - { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/schema.json', hash: '3534760653604611747' }, - { file: 'tools/workspace-plugin/src/generators/migrate-converged-pkg/schema.ts', hash: '4895008639756688876' }, - { file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/README.md', hash: '12450870298660097504' }, - { - file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/index.spec.ts', - hash: '1801846956210178590', - }, - { file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/index.ts', hash: '13441194817743428609' }, - { - file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/schema.json', - hash: '14796316966131261389', - }, - { file: 'tools/workspace-plugin/src/generators/migrate-fixed-versions/schema.ts', hash: '263215702101659815' }, - { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/README.md', hash: '8702247513273588859' }, - { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/index.spec.ts', hash: '6563393165061308225' }, - { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/index.ts', hash: '17397782312510274601' }, - { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/lib/utils.spec.ts', hash: '8222153512403384692' }, - { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/lib/utils.ts', hash: '549574462343596953' }, - { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/schema.json', hash: '18188452103508093176' }, - { file: 'tools/workspace-plugin/src/generators/migrate-v8-pkg/schema.ts', hash: '11890221334435483209' }, - { file: 'tools/workspace-plugin/src/generators/move-packages/README.md', hash: '15369626182250540239' }, - { file: 'tools/workspace-plugin/src/generators/move-packages/index.spec.ts', hash: '9963499119880645124' }, - { file: 'tools/workspace-plugin/src/generators/move-packages/index.ts', hash: '1840851322697263929' }, - { file: 'tools/workspace-plugin/src/generators/move-packages/schema.json', hash: '3008817952145443497' }, - { file: 'tools/workspace-plugin/src/generators/move-packages/schema.ts', hash: '17347108861724480960' }, - { - file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/README.md', - hash: '11889442463540326504', - }, - { - file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/index.spec.ts', - hash: '2788168539185477742', - }, - { - file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/index.ts', - hash: '2358735029119276862', - }, - { - file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/lib/.gitkeep', - hash: '3244421341483603138', - }, - { - file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/schema.json', - hash: '959331019707851958', - }, - { - file: 'tools/workspace-plugin/src/generators/normalize-package-dependencies/schema.ts', - hash: '3746319603399027876', - }, - { file: 'tools/workspace-plugin/src/generators/prepare-initial-release/README.md', hash: '18280291482919668423' }, - { - file: 'tools/workspace-plugin/src/generators/prepare-initial-release/index.spec.ts', - hash: '17951933054430477244', - }, - { file: 'tools/workspace-plugin/src/generators/prepare-initial-release/index.ts', hash: '15073543577756916111' }, - { - file: 'tools/workspace-plugin/src/generators/prepare-initial-release/lib/.gitkeep', - hash: '3244421341483603138', - }, - { - file: 'tools/workspace-plugin/src/generators/prepare-initial-release/schema.json', - hash: '5882686008657364503', - }, - { file: 'tools/workspace-plugin/src/generators/prepare-initial-release/schema.ts', hash: '16506159453550357987' }, - { file: 'tools/workspace-plugin/src/generators/print-stats.spec.ts', hash: '1280574985528973253' }, - { file: 'tools/workspace-plugin/src/generators/print-stats.ts', hash: '3989581104140317561' }, - { file: 'tools/workspace-plugin/src/generators/rc-caret/README.md', hash: '1174057707215016959' }, - { file: 'tools/workspace-plugin/src/generators/rc-caret/index.spec.ts', hash: '8046872970532016323' }, - { file: 'tools/workspace-plugin/src/generators/rc-caret/index.ts', hash: '12202838045906057022' }, - { file: 'tools/workspace-plugin/src/generators/rc-caret/schema.json', hash: '13430321724244114237' }, - { file: 'tools/workspace-plugin/src/generators/rc-caret/schema.ts', hash: '15545508060181886231' }, - { file: 'tools/workspace-plugin/src/generators/react-component/README.md', hash: '15509040416326092319' }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.test.tsx__tmpl__', - hash: '9776823715391656097', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.tsx__tmpl__', - hash: '6395415828085913288', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/component/__componentName__.types.ts__tmpl__', - hash: '17965595033275169239', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/component/index.ts__tmpl__', - hash: '2919728859339381699', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/component/render__componentName__.tsx__tmpl__', - hash: '12530167117660777622', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/component/use__componentName__.ts__tmpl__', - hash: '5974329661946724656', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/component/use__componentName__Styles.styles.ts__tmpl__', - hash: '1139185616779782212', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/story/__componentName__BestPractices.md__tmpl__', - hash: '13132854725403121719', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/story/__componentName__Default.stories.tsx__tmpl__', - hash: '3467293824812820226', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/story/__componentName__Description.md__tmpl__', - hash: '3244421341483603138', - }, - { - file: 'tools/workspace-plugin/src/generators/react-component/files/story/index.stories.tsx__tmpl__', - hash: '5655101799178136947', - }, - { file: 'tools/workspace-plugin/src/generators/react-component/index.spec.ts', hash: '12818061419512492949' }, - { file: 'tools/workspace-plugin/src/generators/react-component/index.ts', hash: '10149141456045580625' }, - { file: 'tools/workspace-plugin/src/generators/react-component/lib/.gitkeep', hash: '3244421341483603138' }, - { file: 'tools/workspace-plugin/src/generators/react-component/schema.json', hash: '3420955762081798541' }, - { file: 'tools/workspace-plugin/src/generators/react-component/schema.ts', hash: '3282902116051628156' }, - { file: 'tools/workspace-plugin/src/generators/react-library/README.md', hash: '114414758584016906' }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/.babelrc.json__tmpl__', - hash: '14815445141901096491', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/.eslintrc.json__tmpl__', - hash: '11822209983446579696', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/.storybook/main.js__tmpl__', - hash: '11617744840349284164', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/.storybook/preview.js__tmpl__', - hash: '1791378012295456991', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/.storybook/tsconfig.json__tmpl__', - hash: '14611368028782818158', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/.swcrc__tmpl__', - hash: '16532409398616988134', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/LICENSE__tmpl__', - hash: '13024596769977255008', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/README.md__tmpl__', - hash: '13221908493670670010', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/config/api-extractor.json__tmpl__', - hash: '124052868224837692', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/config/tests.js__tmpl__', - hash: '16913843724990866890', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/docs/Spec.md__tmpl__', - hash: '17802667132668971412', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/etc/__packageName__.api.md', - hash: '3244421341483603138', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/jest.config.js__tmpl__', - hash: '9239487721821393767', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/just.config.ts__tmpl__', - hash: '4613957333426947832', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/package.json__tmpl__', - hash: '14606909362012068991', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/src/index.ts__tmpl__', - hash: '15555827964896839803', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/src/testing/isConformant.ts__tmpl__', - hash: '7325949189279658038', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/stories/.gitkeep', - hash: '3244421341483603138', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/tsconfig.json__tmpl__', - hash: '5237217701871136285', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/tsconfig.lib.json__tmpl__', - hash: '1202804459946898179', - }, - { - file: 'tools/workspace-plugin/src/generators/react-library/files/tsconfig.spec.json__tmpl__', - hash: '6114153871167405290', - }, - { file: 'tools/workspace-plugin/src/generators/react-library/index.spec.ts', hash: '9062493083910514758' }, - { file: 'tools/workspace-plugin/src/generators/react-library/index.ts', hash: '13805441570442854906' }, - { file: 'tools/workspace-plugin/src/generators/react-library/lib/.gitkeep', hash: '3244421341483603138' }, - { file: 'tools/workspace-plugin/src/generators/react-library/schema.json', hash: '7218774757126974420' }, - { file: 'tools/workspace-plugin/src/generators/react-library/schema.ts', hash: '14010440605010742358' }, - { file: 'tools/workspace-plugin/src/generators/recipe-generator/README.md', hash: '7894436322904197761' }, - { - file: 'tools/workspace-plugin/src/generators/recipe-generator/__snapshots__/index.spec.ts.snap', - hash: '18218013101938864112', - }, - { - file: 'tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/__fileName__.stories.mdx__tmpl__', - hash: '14323085748279977626', - }, - { - file: 'tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/code-snippets/__fileName__.tsx__tmpl__', - hash: '4194914096576941895', - }, - { - file: 'tools/workspace-plugin/src/generators/recipe-generator/files/__packageName__/code-snippets/index.ts__tmpl__', - hash: '2285662923644655059', - }, - { file: 'tools/workspace-plugin/src/generators/recipe-generator/index.spec.ts', hash: '1806201693205694550' }, - { file: 'tools/workspace-plugin/src/generators/recipe-generator/index.ts', hash: '3887584550230851344' }, - { file: 'tools/workspace-plugin/src/generators/recipe-generator/schema.json', hash: '763716532980099231' }, - { file: 'tools/workspace-plugin/src/generators/recipe-generator/schema.ts', hash: '5109310080379739482' }, - { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/README.md', hash: '12453587723963083178' }, - { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/index.spec.ts', hash: '7413380692194170252' }, - { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/index.ts', hash: '10444091968450267048' }, - { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/lib/utils.ts', hash: '624116704349760242' }, - { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/schema.json', hash: '584102150782507131' }, - { file: 'tools/workspace-plugin/src/generators/tsconfig-base-all/schema.ts', hash: '5764224920941233305' }, - { file: 'tools/workspace-plugin/src/generators/version-bump/README.md', hash: '7394436249831666532' }, - { file: 'tools/workspace-plugin/src/generators/version-bump/index.spec.ts', hash: '8713901855072782460' }, - { file: 'tools/workspace-plugin/src/generators/version-bump/index.ts', hash: '15492460185168430214' }, - { file: 'tools/workspace-plugin/src/generators/version-bump/schema.json', hash: '17458402893301617402' }, - { file: 'tools/workspace-plugin/src/generators/version-bump/schema.ts', hash: '13768604396498144359' }, - { - file: 'tools/workspace-plugin/src/generators/workspace-generator/files/README.md__tmpl__', - hash: '18433070323338931926', - }, - { - file: 'tools/workspace-plugin/src/generators/workspace-generator/files/index.spec.ts__tmpl__', - hash: '8962363898122267371', - }, - { - file: 'tools/workspace-plugin/src/generators/workspace-generator/files/index.ts__tmpl__', - hash: '5747756663658172206', - }, - { - file: 'tools/workspace-plugin/src/generators/workspace-generator/files/lib/utils.spec.ts__tmpl__', - hash: '9830935905014520824', - }, - { - file: 'tools/workspace-plugin/src/generators/workspace-generator/files/lib/utils.ts__tmpl__', - hash: '4280877079534460457', - }, - { - file: 'tools/workspace-plugin/src/generators/workspace-generator/files/schema.json__tmpl__', - hash: '15111506626007889917', - }, - { - file: 'tools/workspace-plugin/src/generators/workspace-generator/files/schema.ts__tmpl__', - hash: '8608164264497028668', - }, - { file: 'tools/workspace-plugin/src/generators/workspace-generator/index.spec.ts', hash: '4325094757841254756' }, - { file: 'tools/workspace-plugin/src/generators/workspace-generator/index.ts', hash: '5373845662918497412' }, - { file: 'tools/workspace-plugin/src/generators/workspace-generator/schema.json', hash: '12664351878789124797' }, - { file: 'tools/workspace-plugin/src/generators/workspace-generator/schema.ts', hash: '8894746255615101147' }, - { file: 'tools/workspace-plugin/src/index.ts', hash: '15555827964896839803' }, - { file: 'tools/workspace-plugin/src/types.spec.ts', hash: '6230618375099818853' }, - { file: 'tools/workspace-plugin/src/types.ts', hash: '10718822113111555341' }, - { file: 'tools/workspace-plugin/src/utils-testing.ts', hash: '11083126349809196906' }, - { file: 'tools/workspace-plugin/src/utils.spec.ts', hash: '14536241497883098565' }, - { file: 'tools/workspace-plugin/src/utils.ts', hash: '10457732344948097597' }, - { file: 'tools/workspace-plugin/tsconfig.json', hash: '7642656943241257331' }, - { file: 'tools/workspace-plugin/tsconfig.lib.json', hash: '17512648156706774563' }, - { file: 'tools/workspace-plugin/tsconfig.spec.json', hash: '12478527556459153090' }, - ], - '@fluentui/scripts-utils': [ - { file: 'scripts/utils/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/utils/jest.config.js', hash: '17478340034450362864' }, - { file: 'scripts/utils/package.json', hash: '542681258199471675' }, - { file: 'scripts/utils/project.json', hash: '10329661453886386946' }, - { file: 'scripts/utils/src/find-config.js', hash: '7121643082165988615' }, - { file: 'scripts/utils/src/index.d.ts', hash: '8147967967359353990' }, - { file: 'scripts/utils/src/index.js', hash: '16511538452090280361' }, - { file: 'scripts/utils/src/logging.js', hash: '16191873597712382186' }, - { file: 'scripts/utils/src/merge.js', hash: '7681850102607767771' }, - { file: 'scripts/utils/src/read-config.js', hash: '16708908046750970227' }, - { file: 'scripts/utils/src/sh.js', hash: '13078038786871011385' }, - { file: 'scripts/utils/src/write-config.js', hash: '14568723559054940193' }, - { file: 'scripts/utils/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/utils/tsconfig.lib.json', hash: '15222053984038389170' }, - { file: 'scripts/utils/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/webpack-utilities': [ - { file: 'packages/webpack-utilities/.eslintrc.json', hash: '3822933907657161418' }, - { file: 'packages/webpack-utilities/.npmignore', hash: '47056201363133096' }, - { file: 'packages/webpack-utilities/CHANGELOG.json', hash: '3147647764206316685' }, - { file: 'packages/webpack-utilities/CHANGELOG.md', hash: '9984789422986868432' }, - { file: 'packages/webpack-utilities/LICENSE', hash: '2164827662511184675' }, - { file: 'packages/webpack-utilities/README.md', hash: '6604358329591510428' }, - { file: 'packages/webpack-utilities/just.config.ts', hash: '7929889154186778640' }, - { - file: 'packages/webpack-utilities/package.json', - hash: '4032820640168261114', - deps: ['npm:loader-utils', 'npm:tslib', '@fluentui/eslint-plugin', '@fluentui/scripts-tasks', 'npm:webpack'], - }, - { file: 'packages/webpack-utilities/project.json', hash: '12787831108535473542' }, - { file: 'packages/webpack-utilities/src/fabricAsyncLoader.ts', hash: '9895115907536178426' }, - { file: 'packages/webpack-utilities/src/fabricAsyncLoaderInclude.ts', hash: '11145807179976432354' }, - { file: 'packages/webpack-utilities/src/index.ts', hash: '9127318911146067856' }, - { file: 'packages/webpack-utilities/tsconfig.json', hash: '13744738655515373811' }, - ], - '@fluentui/api-docs': [ - { file: 'packages/api-docs/.eslintrc.json', hash: '9627670268003919245' }, - { file: 'packages/api-docs/.npmignore', hash: '47056201363133096' }, - { file: 'packages/api-docs/CHANGELOG.json', hash: '12711583694195328654' }, - { file: 'packages/api-docs/CHANGELOG.md', hash: '2344515844001916141' }, - { file: 'packages/api-docs/LICENSE', hash: '7466169225848381887' }, - { file: 'packages/api-docs/README.md', hash: '4151301246977188865' }, - { file: 'packages/api-docs/just.config.ts', hash: '2411455081002746933' }, - { - file: 'packages/api-docs/package.json', - hash: '8623523342725706688', - deps: [ - 'npm:@microsoft/api-extractor-model', - 'npm:@microsoft/tsdoc', - 'npm:fs-extra', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/api-docs/project.json', hash: '9716814402591382366' }, - { file: 'packages/api-docs/src/generatePageJsonFiles.ts', hash: '12223137603416192167' }, - { file: 'packages/api-docs/src/index.ts', hash: '15889215557140595103' }, - { file: 'packages/api-docs/src/pageJson.ts', hash: '5578611035939541223' }, - { file: 'packages/api-docs/src/rendering.ts', hash: '7915129139089798906' }, - { file: 'packages/api-docs/src/tableJson.ts', hash: '18347889133488948496' }, - { file: 'packages/api-docs/src/tableRowJson.ts', hash: '12702627324845232143' }, - { file: 'packages/api-docs/src/types-private.ts', hash: '5292858344273348012' }, - { file: 'packages/api-docs/src/types.ts', hash: '9057104128889182660' }, - { file: 'packages/api-docs/tsconfig.json', hash: '7070703656195421188' }, - ], - '@fluentui/react-menu': [ - { file: 'packages/react-components/react-menu/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-menu/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-menu/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-menu/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-menu/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-menu/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-menu/CHANGELOG.json', hash: '13476910229160629174' }, - { file: 'packages/react-components/react-menu/CHANGELOG.md', hash: '14554664184101537573' }, - { file: 'packages/react-components/react-menu/LICENSE', hash: '15736152015969238586' }, - { file: 'packages/react-components/react-menu/README.md', hash: '9974219480792599156' }, - { - file: 'packages/react-components/react-menu/bundle-size/Menu.Selectable.fixture.js', - hash: '10055718406591672962', - }, - { file: 'packages/react-components/react-menu/bundle-size/Menu.fixture.js', hash: '7380423072833944343' }, - { file: 'packages/react-components/react-menu/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-menu/config/tests.js', hash: '14010006175392234982' }, - { file: 'packages/react-components/react-menu/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-menu/docs/Spec.md', hash: '3976522757863907944' }, - { - file: 'packages/react-components/react-menu/etc/images/linked-keyboard-mouse-navigation.gif', - hash: '9534445546290517565', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide1.PNG', - hash: '10996843919047425143', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide10.PNG', - hash: '7762249894771317134', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide11.PNG', - hash: '13152679522862275183', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide12.PNG', - hash: '8847288720715588337', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide13.PNG', - hash: '9104014278253187127', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide14.PNG', - hash: '7315926729919914999', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide15.PNG', - hash: '8236518680473418181', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide16.PNG', - hash: '9980447627512903644', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide17.PNG', - hash: '17422977984885863150', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide18.PNG', - hash: '14759594747101336129', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide19.PNG', - hash: '17650756235105260437', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide2.PNG', - hash: '30424365879784040', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide20.PNG', - hash: '1612062547793799900', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide21.PNG', - hash: '11124503703698606421', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide22.PNG', - hash: '811262722789076426', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide3.PNG', - hash: '10845368115041205445', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide4.PNG', - hash: '8986088429055328339', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide5.PNG', - hash: '10871140165914991445', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide6.PNG', - hash: '13977431754554812773', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide7.PNG', - hash: '499398108476843717', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide8.PNG', - hash: '3744764180890858266', - }, - { - file: 'packages/react-components/react-menu/etc/images/menu-interactions/Slide9.PNG', - hash: '892375687068162726', - }, - { - file: 'packages/react-components/react-menu/etc/images/splitbutton-left-right.jpg', - hash: '11974008894047502409', - }, - { file: 'packages/react-components/react-menu/etc/images/splitbutton-up-down.jpg', hash: '3421245233520048777' }, - { file: 'packages/react-components/react-menu/etc/react-menu.api.md', hash: '2625235660532732525' }, - { file: 'packages/react-components/react-menu/jest.config.js', hash: '1745463398219509870' }, - { file: 'packages/react-components/react-menu/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-menu/package.json', - hash: '16266155024367291616', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-aria', - '@fluentui/react-context-selector', - 'npm:@fluentui/react-icons', - '@fluentui/react-portal', - '@fluentui/react-positioning', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-menu/project.json', hash: '9575547020162500401' }, - { file: 'packages/react-components/react-menu/src/Menu.ts', hash: '8756792321904454806' }, - { file: 'packages/react-components/react-menu/src/MenuDivider.ts', hash: '9623716229305140831' }, - { file: 'packages/react-components/react-menu/src/MenuGroup.ts', hash: '12488100988105222327' }, - { file: 'packages/react-components/react-menu/src/MenuGroupHeader.ts', hash: '14350848624142614817' }, - { file: 'packages/react-components/react-menu/src/MenuItem.ts', hash: '3661288238805445610' }, - { file: 'packages/react-components/react-menu/src/MenuItemCheckbox.ts', hash: '17719054125879305473' }, - { file: 'packages/react-components/react-menu/src/MenuItemLink.ts', hash: '558019554312927506' }, - { file: 'packages/react-components/react-menu/src/MenuItemRadio.ts', hash: '12593718358566802102' }, - { file: 'packages/react-components/react-menu/src/MenuList.ts', hash: '8846519038441631805' }, - { file: 'packages/react-components/react-menu/src/MenuPopover.ts', hash: '2983509257027835571' }, - { file: 'packages/react-components/react-menu/src/MenuSplitGroup.ts', hash: '15513016859210475093' }, - { file: 'packages/react-components/react-menu/src/MenuTrigger.ts', hash: '11698345674200359338' }, - { file: 'packages/react-components/react-menu/src/components/Menu/Menu.cy.tsx', hash: '6444122186839663883' }, - { file: 'packages/react-components/react-menu/src/components/Menu/Menu.test.tsx', hash: '17729822688881618421' }, - { file: 'packages/react-components/react-menu/src/components/Menu/Menu.tsx', hash: '5848268992573469282' }, - { file: 'packages/react-components/react-menu/src/components/Menu/Menu.types.ts', hash: '9651040264007662262' }, - { - file: 'packages/react-components/react-menu/src/components/Menu/__snapshots__/Menu.test.tsx.snap', - hash: '3975719831104486533', - }, - { file: 'packages/react-components/react-menu/src/components/Menu/index.ts', hash: '1304198499668176681' }, - { file: 'packages/react-components/react-menu/src/components/Menu/renderMenu.tsx', hash: '9385651029638656923' }, - { file: 'packages/react-components/react-menu/src/components/Menu/useMenu.tsx', hash: '14860197231320244296' }, - { - file: 'packages/react-components/react-menu/src/components/Menu/useMenuContextValues.test.tsx', - hash: '5547672389280910376', - }, - { - file: 'packages/react-components/react-menu/src/components/Menu/useMenuContextValues.ts', - hash: '12642077360124745015', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.test.tsx', - hash: '11549581151984489972', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.tsx', - hash: '16805562512970289459', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuDivider/MenuDivider.types.ts', - hash: '15007456810137280687', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuDivider/__snapshots__/MenuDivider.test.tsx.snap', - hash: '14233671526668994289', - }, - { file: 'packages/react-components/react-menu/src/components/MenuDivider/index.ts', hash: '2565091352590454773' }, - { - file: 'packages/react-components/react-menu/src/components/MenuDivider/renderMenuDivider.tsx', - hash: '11018995948109107341', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuDivider/useMenuDivider.ts', - hash: '5780887031541246803', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuDivider/useMenuDividerStyles.styles.ts', - hash: '10077324190440540609', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.test.tsx', - hash: '1204087493474192749', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.tsx', - hash: '4498560461645350515', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/MenuGroup.types.ts', - hash: '15219881719761407189', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/__snapshots__/MenuGroup.test.tsx.snap', - hash: '16965914614106720477', - }, - { file: 'packages/react-components/react-menu/src/components/MenuGroup/index.ts', hash: '9209511433755125706' }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/renderMenuGroup.tsx', - hash: '8181753885401947257', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/useMenuGroup.ts', - hash: '3910564680106426846', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupContextValues.test.ts', - hash: '18001211045297471397', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupContextValues.ts', - hash: '9216932486656446401', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroup/useMenuGroupStyles.styles.ts', - hash: '8932499573143732756', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.test.tsx', - hash: '6988462447077728607', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.tsx', - hash: '1503771799834923441', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/MenuGroupHeader.types.ts', - hash: '17330269037191754353', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/__snapshots__/MenuGroupHeader.test.tsx.snap', - hash: '7337392803220596786', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/index.ts', - hash: '6033635462197304978', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/renderMenuGroupHeader.tsx', - hash: '3324830091053494995', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/useMenuGroupHeader.ts', - hash: '15653895465410418163', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuGroupHeader/useMenuGroupHeaderStyles.styles.ts', - hash: '14997030694868856005', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItem/MenuItem.test.tsx', - hash: '2873679684291235423', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItem/MenuItem.tsx', - hash: '12024201470866756651', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItem/MenuItem.types.ts', - hash: '10707482172801795547', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItem/__snapshots__/MenuItem.test.tsx.snap', - hash: '5385709528323368001', - }, - { file: 'packages/react-components/react-menu/src/components/MenuItem/index.ts', hash: '9541045283331288441' }, - { - file: 'packages/react-components/react-menu/src/components/MenuItem/renderMenuItem.tsx', - hash: '14942392158866532539', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItem/useCharacterSearch.ts', - hash: '6267469289989024961', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItem/useMenuItem.tsx', - hash: '1396724368639234346', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItem/useMenuItemStyles.styles.ts', - hash: '6460526830763324982', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.test.tsx', - hash: '14984384382944601371', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.tsx', - hash: '787477252537168940', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/MenuItemCheckbox.types.ts', - hash: '5905203447588022674', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/__snapshots__/MenuItemCheckbox.test.tsx.snap', - hash: '7828754620629991266', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/index.ts', - hash: '3588188147991430141', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/renderMenuItemCheckbox.tsx', - hash: '258385211829308265', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/useMenuItemCheckbox.tsx', - hash: '5944646457710051085', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemCheckbox/useMenuItemCheckboxStyles.styles.ts', - hash: '7462323984399882305', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.test.tsx', - hash: '17595296506760269868', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.tsx', - hash: '17248523960727803144', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemLink/MenuItemLink.types.ts', - hash: '2020161238381044485', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemLink/__snapshots__/MenuItemLink.test.tsx.snap', - hash: '15703671203227564493', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemLink/index.ts', - hash: '13697213369728295884', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemLink/renderMenuItemLink.tsx', - hash: '1571195633627266707', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemLink/useMenuItemLink.ts', - hash: '15485512175090047445', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemLink/useMenuItemLinkStyles.styles.ts', - hash: '10673459437642068479', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.test.tsx', - hash: '17830365470523402000', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.tsx', - hash: '15806557780886661014', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemRadio/MenuItemRadio.types.ts', - hash: '5784410031569147629', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemRadio/__snapshots__/MenuItemRadio.test.tsx.snap', - hash: '7601418981291270276', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemRadio/index.ts', - hash: '16477535113948742245', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemRadio/renderMenuItemRadio.tsx', - hash: '6094725217997746798', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemRadio/useMenuItemRadio.tsx', - hash: '18361762024477785461', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuItemRadio/useMenuItemRadioStyles.styles.ts', - hash: '7787085258183418184', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/MenuList.cy.tsx', - hash: '10558493214717613555', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/MenuList.test.tsx', - hash: '7501375996347123259', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/MenuList.tsx', - hash: '17587090556546066160', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/MenuList.types.ts', - hash: '13914750447147370364', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/__snapshots__/MenuList.test.tsx.snap', - hash: '2592775585730575933', - }, - { file: 'packages/react-components/react-menu/src/components/MenuList/index.ts', hash: '15342917811343006430' }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/renderMenuList.tsx', - hash: '5602566865692845045', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/useMenuList.test.ts', - hash: '12471856953641215156', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/useMenuList.ts', - hash: '9802933237562563138', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/useMenuListContextValues.test.ts', - hash: '17123086118342755317', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/useMenuListContextValues.ts', - hash: '13896741539445495081', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuList/useMenuListStyles.styles.ts', - hash: '4780194249150348842', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.test.tsx', - hash: '6189729203934803945', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.tsx', - hash: '12082762929186071460', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuPopover/MenuPopover.types.ts', - hash: '8455769478368286917', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuPopover/__snapshots__/MenuPopover.test.tsx.snap', - hash: '2150294699172352256', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuPopover/index.ts', - hash: '14317626586151272452', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuPopover/renderMenuPopover.tsx', - hash: '8869926913492328294', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuPopover/useMenuPopover.ts', - hash: '13420499812023202946', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuPopover/useMenuPopoverStyles.styles.ts', - hash: '1253775784838469533', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.test.tsx', - hash: '1840138852833662611', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.tsx', - hash: '16572984695100801171', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/MenuSplitGroup.types.ts', - hash: '13031355897166894941', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/__snapshots__/MenuSplitGroup.test.tsx.snap', - hash: '17458023320221705773', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/index.ts', - hash: '318475417289781564', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/renderMenuSplitGroup.tsx', - hash: '5901409832995632926', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/useMenuSplitGroup.ts', - hash: '17746241506547851787', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuSplitGroup/useMenuSplitGroupStyles.styles.ts', - hash: '12933949261295792806', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.test.tsx', - hash: '11060889766755576204', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.tsx', - hash: '1394653538801574152', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuTrigger/MenuTrigger.types.ts', - hash: '946719309818581252', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuTrigger/__snapshots__/MenuTrigger.test.tsx.snap', - hash: '11843977669537975918', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuTrigger/index.ts', - hash: '10359213883192490894', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuTrigger/renderMenuTrigger.tsx', - hash: '486853907445320152', - }, - { - file: 'packages/react-components/react-menu/src/components/MenuTrigger/useMenuTrigger.ts', - hash: '9150439686645890667', - }, - { file: 'packages/react-components/react-menu/src/components/index.ts', hash: '15281374471627944273' }, - { file: 'packages/react-components/react-menu/src/contexts/menuContext.ts', hash: '6239917358806324505' }, - { file: 'packages/react-components/react-menu/src/contexts/menuGroupContext.ts', hash: '6370087999253214975' }, - { file: 'packages/react-components/react-menu/src/contexts/menuListContext.tsx', hash: '6819638168391932370' }, - { file: 'packages/react-components/react-menu/src/contexts/menuTriggerContext.ts', hash: '6036099642596285418' }, - { file: 'packages/react-components/react-menu/src/index.ts', hash: '10360275651669209236' }, - { file: 'packages/react-components/react-menu/src/selectable/index.ts', hash: '4319182688114126685' }, - { file: 'packages/react-components/react-menu/src/selectable/types.ts', hash: '16485900127811599667' }, - { - file: 'packages/react-components/react-menu/src/selectable/useCheckmarkStyles.styles.ts', - hash: '3906585967852877939', - }, - { file: 'packages/react-components/react-menu/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { file: 'packages/react-components/react-menu/src/testing/mockUseMenuContext.ts', hash: '6314525062221789050' }, - { file: 'packages/react-components/react-menu/src/testing/selectors.ts', hash: '8209790805045598641' }, - { file: 'packages/react-components/react-menu/src/utils/index.ts', hash: '4078004951295563239' }, - { file: 'packages/react-components/react-menu/src/utils/useIsSubmenu.ts', hash: '11033603198558854107' }, - { file: 'packages/react-components/react-menu/src/utils/useOnMenuEnter.ts', hash: '6826503496950204850' }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuAligningWithIcons.stories.tsx', - hash: '16433524456963419092', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuAligningWithSelectableItems.stories.tsx', - hash: '14474345408241564020', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuAnchorToTarget.stories.tsx', - hash: '9486718017680407788', - }, - { file: 'packages/react-components/react-menu/stories/Menu/MenuBestPractices.md', hash: '5249056618079920833' }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuCheckboxItems.stories.tsx', - hash: '8841710572274735202', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuControlledCheckboxItems.stories.tsx', - hash: '16683035339345466174', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuControlledRadioItems.stories.tsx', - hash: '1922948447837293872', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuControllingOpenAndClose.stories.tsx', - hash: '987124754558044067', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuCustomTrigger.stories.tsx', - hash: '18094199124507674772', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuDefault.stories.tsx', - hash: '16799265814272918058', - }, - { file: 'packages/react-components/react-menu/stories/Menu/MenuDescription.md', hash: '9350708939226578245' }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuGroupingItems.stories.tsx', - hash: '6589559459586809781', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuInteraction.stories.tsx', - hash: '5236924903760670398', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuItemLinkNavigation.stories.tsx', - hash: '10427912434970875220', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuMemoizedMenuItems.stories.tsx', - hash: '18299823585577487381', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuMenuItemsWithIcons.stories.tsx', - hash: '17400593762694855498', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuNestedSubmenus.stories.tsx', - hash: '16674356508768541596', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuNestedSubmenusControlled.stories.tsx', - hash: '3051040041580907048', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuRadioItems.stories.tsx', - hash: '15098987322999033693', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuRenderFunctionTrigger.stories.tsx', - hash: '15200765170839343603', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuSecondaryContentForMenuItems.stories.tsx', - hash: '10654468810932398313', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuSelectionGroup.stories.tsx', - hash: '306600798412747459', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuSplitMenuItem.stories.tsx', - hash: '797134403737860059', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuTriggerWithTooltip.stories.tsx', - hash: '13215432807511638517', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/MenuVisualDividerOnly.stories.tsx', - hash: '4883926450294571262', - }, - { - file: 'packages/react-components/react-menu/stories/Menu/NestedSubmenusResponsiveness.stories.tsx', - hash: '14146194086814006414', - }, - { file: 'packages/react-components/react-menu/stories/Menu/index.stories.tsx', hash: '3296822820272671917' }, - { - file: 'packages/react-components/react-menu/stories/MenuList/MenuListCheckboxItems.stories.tsx', - hash: '3251768030696211806', - }, - { - file: 'packages/react-components/react-menu/stories/MenuList/MenuListControlledCheckboxItems.stories.tsx', - hash: '16990448086722515461', - }, - { - file: 'packages/react-components/react-menu/stories/MenuList/MenuListControlledRadioItems.stories.tsx', - hash: '7291360822499525379', - }, - { - file: 'packages/react-components/react-menu/stories/MenuList/MenuListDefault.stories.tsx', - hash: '10353579900915928948', - }, - { - file: 'packages/react-components/react-menu/stories/MenuList/MenuListDescription.md', - hash: '4214626428591226389', - }, - { - file: 'packages/react-components/react-menu/stories/MenuList/MenuListNestedSubmenus.stories.tsx', - hash: '12052013926643032775', - }, - { - file: 'packages/react-components/react-menu/stories/MenuList/MenuListRadioItems.stories.tsx', - hash: '3448944709947031326', - }, - { file: 'packages/react-components/react-menu/stories/MenuList/index.stories.tsx', hash: '17161123005114922980' }, - { file: 'packages/react-components/react-menu/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-menu/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-menu/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-menu/tsconfig.spec.json', hash: '6578707152334499940' }, - ], - '@fluentui/ability-attributes': [ - { file: 'packages/fluentui/ability-attributes/.gitignore', hash: '11739575227553609806' }, - { file: 'packages/fluentui/ability-attributes/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/ability-attributes/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/ability-attributes/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/ability-attributes/package.json', - hash: '15170941952482138179', - deps: [ - 'npm:ability-attributes', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - 'npm:ability-attributes-generator', - ], - }, - { file: 'packages/fluentui/ability-attributes/project.json', hash: '1227490013893515185' }, - { file: 'packages/fluentui/ability-attributes/schema.json', hash: '10503311233137281773' }, - { file: 'packages/fluentui/ability-attributes/src/index.ts', hash: '2999499642231436910' }, - { file: 'packages/fluentui/ability-attributes/tsconfig.json', hash: '9156245422548100079' }, - ], - '@fluentui/date-time-utilities': [ - { file: 'packages/date-time-utilities/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/date-time-utilities/.npmignore', hash: '47056201363133096' }, - { file: 'packages/date-time-utilities/CHANGELOG.json', hash: '2164381804076873918' }, - { file: 'packages/date-time-utilities/CHANGELOG.md', hash: '3188049663660729300' }, - { file: 'packages/date-time-utilities/LICENSE', hash: '1406600530965153382' }, - { file: 'packages/date-time-utilities/README.md', hash: '15663058025015777167' }, - { file: 'packages/date-time-utilities/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/date-time-utilities/etc/date-time-utilities.api.md', hash: '4147546351800268056' }, - { file: 'packages/date-time-utilities/jest.config.js', hash: '14422260967582952706' }, - { file: 'packages/date-time-utilities/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/date-time-utilities/package.json', - hash: '11495122545919054215', - deps: [ - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/date-time-utilities/project.json', hash: '14457318988314402231' }, - { - file: 'packages/date-time-utilities/src/dateFormatting/dateFormatting.defaults.ts', - hash: '3121003231405885904', - }, - { file: 'packages/date-time-utilities/src/dateFormatting/dateFormatting.test.ts', hash: '10780573025705000265' }, - { file: 'packages/date-time-utilities/src/dateFormatting/dateFormatting.types.ts', hash: '17447457680448716723' }, - { file: 'packages/date-time-utilities/src/dateFormatting/index.ts', hash: '10491802775163290807' }, - { - file: 'packages/date-time-utilities/src/dateGrid/__snapshots__/getDayGrid.test.ts.snap', - hash: '2311635867604483689', - }, - { file: 'packages/date-time-utilities/src/dateGrid/dateGrid.types.ts', hash: '10377546010866108302' }, - { file: 'packages/date-time-utilities/src/dateGrid/findAvailableDate.test.ts', hash: '16014593248943699532' }, - { file: 'packages/date-time-utilities/src/dateGrid/findAvailableDate.ts', hash: '17812579345659974705' }, - { file: 'packages/date-time-utilities/src/dateGrid/getBoundedDateRange.test.ts', hash: '16271701688173551694' }, - { file: 'packages/date-time-utilities/src/dateGrid/getBoundedDateRange.ts', hash: '5151142947748778290' }, - { file: 'packages/date-time-utilities/src/dateGrid/getDateRangeTypeToUse.test.ts', hash: '13578684931193299139' }, - { file: 'packages/date-time-utilities/src/dateGrid/getDateRangeTypeToUse.ts', hash: '16696959932960635992' }, - { file: 'packages/date-time-utilities/src/dateGrid/getDayGrid.test.ts', hash: '15740649517213788929' }, - { file: 'packages/date-time-utilities/src/dateGrid/getDayGrid.ts', hash: '9476685343421711322' }, - { file: 'packages/date-time-utilities/src/dateGrid/index.ts', hash: '12957004530838335926' }, - { file: 'packages/date-time-utilities/src/dateGrid/isAfterMaxDate.test.ts', hash: '10840956339319765451' }, - { file: 'packages/date-time-utilities/src/dateGrid/isAfterMaxDate.ts', hash: '4879284728703250347' }, - { file: 'packages/date-time-utilities/src/dateGrid/isBeforeMinDate.test.ts', hash: '13690478736915468966' }, - { file: 'packages/date-time-utilities/src/dateGrid/isBeforeMinDate.ts', hash: '9762482266014451107' }, - { file: 'packages/date-time-utilities/src/dateGrid/isContiguous.test.ts', hash: '2343134183304754683' }, - { file: 'packages/date-time-utilities/src/dateGrid/isContiguous.ts', hash: '9358593535087643745' }, - { file: 'packages/date-time-utilities/src/dateGrid/isRestrictedDate.test.ts', hash: '609331876505347603' }, - { file: 'packages/date-time-utilities/src/dateGrid/isRestrictedDate.ts', hash: '8608321153134897550' }, - { file: 'packages/date-time-utilities/src/dateMath/dateMath.test.ts', hash: '6289703901015116667' }, - { file: 'packages/date-time-utilities/src/dateMath/dateMath.ts', hash: '5518748274490320630' }, - { file: 'packages/date-time-utilities/src/dateValues/dateValues.ts', hash: '18269157894089480859' }, - { file: 'packages/date-time-utilities/src/dateValues/timeConstants.ts', hash: '13010220875930774354' }, - { file: 'packages/date-time-utilities/src/index.ts', hash: '5651837990155102462' }, - { file: 'packages/date-time-utilities/src/timeFormatting/index.ts', hash: '881792922337031636' }, - { file: 'packages/date-time-utilities/src/timeFormatting/timeFormatting.test.ts', hash: '2360306042898603230' }, - { file: 'packages/date-time-utilities/src/timeMath/timeMath.test.ts', hash: '491224792424595929' }, - { file: 'packages/date-time-utilities/src/timeMath/timeMath.ts', hash: '16292546276501068965' }, - { file: 'packages/date-time-utilities/src/version.ts', hash: '8665770230245968868' }, - { file: 'packages/date-time-utilities/tsconfig.json', hash: '1822303577405251995' }, - ], - '@fluentui/react-breadcrumb': [ - { file: 'packages/react-components/react-breadcrumb/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-breadcrumb/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-breadcrumb/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-breadcrumb/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-breadcrumb/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-breadcrumb/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-breadcrumb/CHANGELOG.json', hash: '2570283488899410161' }, - { file: 'packages/react-components/react-breadcrumb/CHANGELOG.md', hash: '1735034764987370929' }, - { file: 'packages/react-components/react-breadcrumb/LICENSE', hash: '16481799524039364263' }, - { file: 'packages/react-components/react-breadcrumb/README.md', hash: '16815256696382455714' }, - { file: 'packages/react-components/react-breadcrumb/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-breadcrumb/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-breadcrumb/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-breadcrumb/docs/MIGRATION.md', hash: '17124393446517252405' }, - { file: 'packages/react-components/react-breadcrumb/docs/Spec.md', hash: '16525832846360908320' }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb-overflow.png', - hash: '2473429825315886427', - }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb-truncated-text.png', - hash: '16585691422223282118', - }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/a11y-breadcrumb.png', - hash: '11475088599067018810', - }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/beadcrumb-states.png', - hash: '1882688032436144693', - }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/breadcrumb-anatomy.png', - hash: '4894770811587900772', - }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/breadcrumb-collapsed-items.png', - hash: '4795354596016889485', - }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/breadcrumb-keyboard-interaction.png', - hash: '9771384705522163308', - }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/breadcrumb-tooltip.png', - hash: '9656854138789449118', - }, - { - file: 'packages/react-components/react-breadcrumb/docs/assets/button-beadcrumb.png', - hash: '2606983199978138996', - }, - { file: 'packages/react-components/react-breadcrumb/etc/react-breadcrumb.api.md', hash: '5866624564911992559' }, - { file: 'packages/react-components/react-breadcrumb/jest.config.js', hash: '15096978446821584885' }, - { file: 'packages/react-components/react-breadcrumb/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-breadcrumb/package.json', - hash: '8595538614651167172', - deps: [ - '@fluentui/react-aria', - '@fluentui/react-button', - 'npm:@fluentui/react-icons', - '@fluentui/react-link', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-breadcrumb/project.json', hash: '16891773604498379506' }, - { file: 'packages/react-components/react-breadcrumb/src/Breadcrumb.ts', hash: '4692325558598841885' }, - { file: 'packages/react-components/react-breadcrumb/src/BreadcrumbButton.ts', hash: '13142461312489699262' }, - { file: 'packages/react-components/react-breadcrumb/src/BreadcrumbDivider.ts', hash: '17595441548180529431' }, - { file: 'packages/react-components/react-breadcrumb/src/BreadcrumbItem.ts', hash: '1650401439078923478' }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.cy.tsx', - hash: '5131453721576360491', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.test.tsx', - hash: '1478477349638612290', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.tsx', - hash: '17948809077375736751', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/Breadcrumb.types.ts', - hash: '8628138238589389834', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/BreadcrumbContext.ts', - hash: '16805312103383567144', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/BreadcrumbWithMenu.cy.tsx', - hash: '7203087750206932430', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/index.ts', - hash: '9032724877765988093', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/renderBreadcrumb.tsx', - hash: '5792393368173279133', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumb.ts', - hash: '6340783675223266602', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbContextValue.ts', - hash: '17467019924492118170', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/Breadcrumb/useBreadcrumbStyles.styles.ts', - hash: '7820283913277421146', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.test.tsx', - hash: '2653884237723303862', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.tsx', - hash: '16222238748512939394', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/BreadcrumbButton.types.ts', - hash: '7142817545924236721', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/index.ts', - hash: '10954122702786375744', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/renderBreadcrumbButton.tsx', - hash: '10083161542978976558', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/useBreadcrumbButton.ts', - hash: '10220476350761926617', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbButton/useBreadcrumbButtonStyles.styles.ts', - hash: '13929106455172225784', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.test.tsx', - hash: '2740829010159730811', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.tsx', - hash: '6530941049629619903', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/BreadcrumbDivider.types.ts', - hash: '9811041371185527372', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/index.ts', - hash: '2366895614594973706', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/renderBreadcrumbDivider.tsx', - hash: '9225555914960429542', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/useBreadcrumbDivider.tsx', - hash: '1405733621306022692', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbDivider/useBreadcrumbDividerStyles.styles.ts', - hash: '9947518297677346549', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.test.tsx', - hash: '3021827718308952245', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.tsx', - hash: '5649139577683726299', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/BreadcrumbItem.types.ts', - hash: '6057980798464983090', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/index.ts', - hash: '14997305546070859164', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/renderBreadcrumbItem.tsx', - hash: '16948262709942899186', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/useBreadcrumbItem.ts', - hash: '8502803056347678860', - }, - { - file: 'packages/react-components/react-breadcrumb/src/components/BreadcrumbItem/useBreadcrumbItemStyles.styles.ts', - hash: '7253756977649122971', - }, - { file: 'packages/react-components/react-breadcrumb/src/index.ts', hash: '403224537735235068' }, - { file: 'packages/react-components/react-breadcrumb/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { file: 'packages/react-components/react-breadcrumb/src/utils/index.ts', hash: '6102866357142899175' }, - { - file: 'packages/react-components/react-breadcrumb/src/utils/partitionBreadcrumbItems.test.ts', - hash: '10295724281836694216', - }, - { - file: 'packages/react-components/react-breadcrumb/src/utils/partitionBreadcrumbItems.ts', - hash: '10722155471173273905', - }, - { - file: 'packages/react-components/react-breadcrumb/src/utils/truncateBreadcrumb.test.ts', - hash: '2965978281950772724', - }, - { - file: 'packages/react-components/react-breadcrumb/src/utils/truncateBreadcrumb.ts', - hash: '10752014325791471505', - }, - { - file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbDefault.stories.tsx', - hash: '8869935600499207876', - }, - { - file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbDescription.md', - hash: '17689646751484476668', - }, - { - file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbSize.stories.tsx', - hash: '13976348487297585255', - }, - { - file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbWithOverflow.stories.tsx', - hash: '2989295134577667826', - }, - { - file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/BreadcrumbWithTooltip.stories.tsx', - hash: '12929963736895107743', - }, - { - file: 'packages/react-components/react-breadcrumb/stories/Breadcrumb/index.stories.tsx', - hash: '6924523627962872578', - }, - { file: 'packages/react-components/react-breadcrumb/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-breadcrumb/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-breadcrumb/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-breadcrumb/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/global-context': [ - { file: 'packages/react-components/global-context/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/global-context/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/global-context/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/global-context/CHANGELOG.json', hash: '3559008600431803229' }, - { file: 'packages/react-components/global-context/CHANGELOG.md', hash: '3002425371666790025' }, - { file: 'packages/react-components/global-context/LICENSE', hash: '16085635044836667477' }, - { file: 'packages/react-components/global-context/README.md', hash: '11497599280276646781' }, - { - file: 'packages/react-components/global-context/bundle-size/createContext.fixture.js', - hash: '18051433675935440280', - }, - { - file: 'packages/react-components/global-context/bundle-size/createContextSelector.fixture.js', - hash: '6607661730451392027', - }, - { file: 'packages/react-components/global-context/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/global-context/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/global-context/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/global-context/etc/global-context.api.md', hash: '16388687583245900658' }, - { file: 'packages/react-components/global-context/jest.config.js', hash: '11996786684390609645' }, - { file: 'packages/react-components/global-context/just.config.ts', hash: '4613957333426947832' }, - { file: 'packages/react-components/global-context/monosize.config.mjs', hash: '5627908047013620305' }, - { - file: 'packages/react-components/global-context/package.json', - hash: '779619587821778079', - deps: [ - '@fluentui/react-context-selector', - '@fluentui/react-utilities', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/global-context/project.json', hash: '16893704753425154668' }, - { - file: 'packages/react-components/global-context/src/global-context-selector.test.ts', - hash: '6487703100303991950', - }, - { file: 'packages/react-components/global-context/src/global-context-selector.ts', hash: '1078475965261159391' }, - { file: 'packages/react-components/global-context/src/global-context.cy.tsx', hash: '14149888652164360210' }, - { file: 'packages/react-components/global-context/src/global-context.test.ts', hash: '8559469442155352347' }, - { file: 'packages/react-components/global-context/src/global-context.ts', hash: '5788531003606375031' }, - { file: 'packages/react-components/global-context/src/index.ts', hash: '6688086211177314226' }, - { file: 'packages/react-components/global-context/src/types.ts', hash: '1907364711162234682' }, - { file: 'packages/react-components/global-context/src/utils.test.ts', hash: '195903445294291101' }, - { file: 'packages/react-components/global-context/src/utils.ts', hash: '6047271728724939229' }, - { file: 'packages/react-components/global-context/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/global-context/tsconfig.json', hash: '5596071008249197618' }, - { file: 'packages/react-components/global-context/tsconfig.lib.json', hash: '6390891856014566094' }, - { file: 'packages/react-components/global-context/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/scripts-webpack': [ - { file: 'scripts/webpack/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/webpack/README.md', hash: '4067032978229351632' }, - { file: 'scripts/webpack/jest.config.js', hash: '14139019284460164056' }, - { - file: 'scripts/webpack/package.json', - hash: '9113209827864624699', - deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-utils'], - }, - { file: 'scripts/webpack/project.json', hash: '8527254449760351839' }, - { file: 'scripts/webpack/src/getResolveAlias.js', hash: '15182557477202690456' }, - { file: 'scripts/webpack/src/index.d.ts', hash: '10952550470895145852' }, - { file: 'scripts/webpack/src/index.js', hash: '10843399883229391707' }, - { file: 'scripts/webpack/src/storybook-webpack.config.js', hash: '17136657291484397150' }, - { file: 'scripts/webpack/src/webpack-resources.js', hash: '10289861416065351518' }, - { file: 'scripts/webpack/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/webpack/tsconfig.lib.json', hash: '7589346801816210336' }, - { file: 'scripts/webpack/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-aria': [ - { file: 'packages/react-components/react-aria/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-aria/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-aria/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-aria/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-aria/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-aria/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-aria/CHANGELOG.json', hash: '5002040490185146431' }, - { file: 'packages/react-components/react-aria/CHANGELOG.md', hash: '9845108113925652540' }, - { file: 'packages/react-components/react-aria/LICENSE', hash: '7531954833459612349' }, - { file: 'packages/react-components/react-aria/README.md', hash: '14375212147544522453' }, - { file: 'packages/react-components/react-aria/bundle-size/Default.fixture.js', hash: '11831374877528803617' }, - { file: 'packages/react-components/react-aria/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-aria/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-aria/docs/Spec.md', hash: '14175263881684879744' }, - { file: 'packages/react-components/react-aria/etc/react-aria.api.md', hash: '17480600883303618628' }, - { file: 'packages/react-components/react-aria/jest.config.js', hash: '5668187947540498334' }, - { file: 'packages/react-components/react-aria/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-aria/package.json', - hash: '11413694720494713369', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-shared-contexts', - '@fluentui/react-utilities', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-aria/project.json', hash: '6597091360640365171' }, - { file: 'packages/react-components/react-aria/src/activedescendant/constants.ts', hash: '2666008086063449551' }, - { file: 'packages/react-components/react-aria/src/activedescendant/index.ts', hash: '9186068050361306869' }, - { file: 'packages/react-components/react-aria/src/activedescendant/types.ts', hash: '17616275751509811525' }, - { - file: 'packages/react-components/react-aria/src/activedescendant/useActiveDescendant.ts', - hash: '5696088335642593312', - }, - { - file: 'packages/react-components/react-aria/src/activedescendant/useActivedescendant.test.tsx', - hash: '10147830263085325805', - }, - { - file: 'packages/react-components/react-aria/src/activedescendant/useOptionWalker.ts', - hash: '17164705128178287278', - }, - { file: 'packages/react-components/react-aria/src/button/index.ts', hash: '10853837358746446063' }, - { file: 'packages/react-components/react-aria/src/button/types.ts', hash: '3047686119329172592' }, - { - file: 'packages/react-components/react-aria/src/button/useARIAButtonProps.test.tsx', - hash: '10819497450726165514', - }, - { file: 'packages/react-components/react-aria/src/button/useARIAButtonProps.ts', hash: '724969559128884261' }, - { - file: 'packages/react-components/react-aria/src/button/useARIAButtonShorthand.test.tsx', - hash: '12952904029879209806', - }, - { - file: 'packages/react-components/react-aria/src/button/useARIAButtonShorthand.ts', - hash: '14643602163518543160', - }, - { file: 'packages/react-components/react-aria/src/index.ts', hash: '1321370508676472973' }, - { file: 'packages/react-components/react-aria/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-aria/tsconfig.lib.json', hash: '2330431448937249608' }, - { file: 'packages/react-components/react-aria/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-drawer': [ - { file: 'packages/react-components/react-drawer/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-drawer/.eslintrc.json', hash: '2955813886510177408' }, - { file: 'packages/react-components/react-drawer/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-drawer/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-drawer/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-drawer/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-drawer/CHANGELOG.json', hash: '3334772755866320042' }, - { file: 'packages/react-components/react-drawer/CHANGELOG.md', hash: '13301267702379936773' }, - { file: 'packages/react-components/react-drawer/LICENSE', hash: '740118108425064671' }, - { file: 'packages/react-components/react-drawer/README.md', hash: '11963902967276611543' }, - { file: 'packages/react-components/react-drawer/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-drawer/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-drawer/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-drawer/docs/Spec.md', hash: '2197025006070261905' }, - { file: 'packages/react-components/react-drawer/docs/assets/drawer-anatomy.png', hash: '1500223499677642584' }, - { - file: 'packages/react-components/react-drawer/docs/assets/drawer-content-anatomy.png', - hash: '7337310129908385365', - }, - { - file: 'packages/react-components/react-drawer/docs/assets/drawer-footer-anatomy.png', - hash: '15968075167955159306', - }, - { - file: 'packages/react-components/react-drawer/docs/assets/drawer-header-anatomy-2.png', - hash: '15111955334914916166', - }, - { - file: 'packages/react-components/react-drawer/docs/assets/drawer-header-anatomy.png', - hash: '3803359533875519043', - }, - { file: 'packages/react-components/react-drawer/docs/assets/inline.png', hash: '5978580365629415041' }, - { - file: 'packages/react-components/react-drawer/docs/assets/left-drawer-entering.png', - hash: '13990966208435724679', - }, - { - file: 'packages/react-components/react-drawer/docs/assets/left-drawer-exiting.png', - hash: '10933889414890912981', - }, - { file: 'packages/react-components/react-drawer/docs/assets/overlay.png', hash: '10025973739764391600' }, - { - file: 'packages/react-components/react-drawer/docs/assets/right-drawer-entering.png', - hash: '11906352803476453494', - }, - { - file: 'packages/react-components/react-drawer/docs/assets/right-drawer-exiting.png', - hash: '6335665869796474774', - }, - { file: 'packages/react-components/react-drawer/etc/react-drawer.api.md', hash: '13302017186739810777' }, - { file: 'packages/react-components/react-drawer/jest.config.js', hash: '4250780866251609094' }, - { file: 'packages/react-components/react-drawer/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-drawer/package.json', - hash: '12517140293057050843', - deps: [ - '@fluentui/react-dialog', - '@fluentui/react-jsx-runtime', - '@fluentui/react-motion-preview', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - '@fluentui/scripts-cypress', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-drawer/project.json', hash: '9919233202400054757' }, - { file: 'packages/react-components/react-drawer/src/Drawer.ts', hash: '11221601650910664334' }, - { file: 'packages/react-components/react-drawer/src/DrawerBody.ts', hash: '7338982733713392097' }, - { file: 'packages/react-components/react-drawer/src/DrawerFooter.ts', hash: '5695661765252072865' }, - { file: 'packages/react-components/react-drawer/src/DrawerHeader.ts', hash: '13535607987439298798' }, - { file: 'packages/react-components/react-drawer/src/DrawerHeaderNavigation.ts', hash: '6953221975415457948' }, - { file: 'packages/react-components/react-drawer/src/DrawerHeaderTitle.ts', hash: '16108223116441377991' }, - { file: 'packages/react-components/react-drawer/src/InlineDrawer.ts', hash: '3467980062468343437' }, - { file: 'packages/react-components/react-drawer/src/OverlayDrawer.ts', hash: '6005987632714369128' }, - { - file: 'packages/react-components/react-drawer/src/components/Drawer/Drawer.cy.tsx', - hash: '9976548186562610025', - }, - { - file: 'packages/react-components/react-drawer/src/components/Drawer/Drawer.test.tsx', - hash: '3258138558465537535', - }, - { file: 'packages/react-components/react-drawer/src/components/Drawer/Drawer.tsx', hash: '14189538430868974037' }, - { - file: 'packages/react-components/react-drawer/src/components/Drawer/Drawer.types.ts', - hash: '7596568606038435688', - }, - { file: 'packages/react-components/react-drawer/src/components/Drawer/index.ts', hash: '8903003969802349622' }, - { - file: 'packages/react-components/react-drawer/src/components/Drawer/renderDrawer.tsx', - hash: '1962203168411743376', - }, - { - file: 'packages/react-components/react-drawer/src/components/Drawer/useDrawer.ts', - hash: '16023591426944063555', - }, - { - file: 'packages/react-components/react-drawer/src/components/Drawer/useDrawerStyles.styles.ts', - hash: '3440636274415578957', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.cy.tsx', - hash: '14312254338312974357', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.test.tsx', - hash: '11124466918374216574', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.tsx', - hash: '9899299681699977181', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerBody/DrawerBody.types.ts', - hash: '5970414215130956080', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerBody/index.ts', - hash: '2213989776887775833', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerBody/renderDrawerBody.tsx', - hash: '12051762259788356439', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerBody/useDrawerBody.ts', - hash: '5951737292486433185', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerBody/useDrawerBodyStyles.styles.ts', - hash: '14117735045889604548', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.cy.tsx', - hash: '4176957745829325863', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.test.tsx', - hash: '6315412814367390570', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.tsx', - hash: '10474972272773722473', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerFooter/DrawerFooter.types.ts', - hash: '1254037035957768607', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerFooter/index.ts', - hash: '2668743984619182660', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerFooter/renderDrawerFooter.tsx', - hash: '2364940287036197384', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerFooter/useDrawerFooter.ts', - hash: '2629575781960125765', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerFooter/useDrawerFooterStyles.styles.ts', - hash: '14195586442062588538', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.cy.tsx', - hash: '2720505955624318008', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.test.tsx', - hash: '13287733185764092304', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.tsx', - hash: '15198858964118093034', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeader/DrawerHeader.types.ts', - hash: '1981631250559778022', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeader/index.ts', - hash: '14935830325701069661', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeader/renderDrawerHeader.tsx', - hash: '8637027449203313542', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeader/useDrawerHeader.ts', - hash: '5439588260000478116', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeader/useDrawerHeaderStyles.styles.ts', - hash: '3600667656694694657', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.cy.tsx', - hash: '6842686981357806109', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.test.tsx', - hash: '286593939728550244', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.tsx', - hash: '13907663498001911842', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/DrawerHeaderNavigation.types.ts', - hash: '15748492738947212670', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/index.ts', - hash: '16525415580323529597', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/renderDrawerHeaderNavigation.tsx', - hash: '2030483516903315656', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/useDrawerHeaderNavigation.ts', - hash: '3714757292895032918', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderNavigation/useDrawerHeaderNavigationStyles.styles.ts', - hash: '14688416647222067346', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.cy.tsx', - hash: '4874390888203798273', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.test.tsx', - hash: '4659425440310179178', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.tsx', - hash: '9759918053055998438', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/DrawerHeaderTitle.types.ts', - hash: '6708213319646751915', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/index.ts', - hash: '553152765299639280', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/renderDrawerHeaderTitle.tsx', - hash: '2880605945908819152', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/useDrawerHeaderTitle.ts', - hash: '16962668464797352460', - }, - { - file: 'packages/react-components/react-drawer/src/components/DrawerHeaderTitle/useDrawerHeaderTitleStyles.styles.ts', - hash: '4462460874600345803', - }, - { - file: 'packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.cy.tsx', - hash: '10935299378541551079', - }, - { - file: 'packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.test.tsx', - hash: '5459550878774982041', - }, - { - file: 'packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.tsx', - hash: '2316461845720527923', - }, - { - file: 'packages/react-components/react-drawer/src/components/InlineDrawer/InlineDrawer.types.ts', - hash: '12211214710166012354', - }, - { - file: 'packages/react-components/react-drawer/src/components/InlineDrawer/index.ts', - hash: '12743325615369778070', - }, - { - file: 'packages/react-components/react-drawer/src/components/InlineDrawer/renderInlineDrawer.tsx', - hash: '12410200335359328618', - }, - { - file: 'packages/react-components/react-drawer/src/components/InlineDrawer/useInlineDrawer.ts', - hash: '7131000520997258422', - }, - { - file: 'packages/react-components/react-drawer/src/components/InlineDrawer/useInlineDrawerStyles.styles.ts', - hash: '3573487867951650531', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.cy.tsx', - hash: '8908117202890831376', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.test.tsx', - hash: '4147783508785600839', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.tsx', - hash: '15373047995135411071', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawer.types.ts', - hash: '193052991178562131', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.tsx', - hash: '5497055863831459516', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/OverlayDrawerSurface.types.ts', - hash: '14701729419117754100', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/index.ts', - hash: '9425620489322803056', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/OverlayDrawerSurface/useOverlayDrawerSurfaceStyles.styles.ts', - hash: '4555814239666234639', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/index.ts', - hash: '17879692229770633251', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/renderOverlayDrawer.tsx', - hash: '2556628436156881064', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/useOverlayDrawer.ts', - hash: '7605551203464800685', - }, - { - file: 'packages/react-components/react-drawer/src/components/OverlayDrawer/useOverlayDrawerStyles.styles.ts', - hash: '10580201821703971096', - }, - { file: 'packages/react-components/react-drawer/src/e2e/DrawerShared.tsx', hash: '936115772091026838' }, - { file: 'packages/react-components/react-drawer/src/index.ts', hash: '775526746411328515' }, - { file: 'packages/react-components/react-drawer/src/shared/DrawerBase.types.ts', hash: '11496680792337184124' }, - { - file: 'packages/react-components/react-drawer/src/shared/useDrawerBaseStyles.styles.ts', - hash: '16702909432180860514', - }, - { - file: 'packages/react-components/react-drawer/src/shared/useDrawerDefaultProps.ts', - hash: '12462017753033126715', - }, - { file: 'packages/react-components/react-drawer/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerAlwaysOpen.stories.tsx', - hash: '17441129776678279830', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerBestPractices.md', - hash: '8576535028433213605', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerCustomSize.stories.tsx', - hash: '12659231673979654430', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerDefault.stories.tsx', - hash: '6085860333003416708', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerDescription.md', - hash: '9808324706794076649', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerMotionCustom.stories.tsx', - hash: '9523834993317055105', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerMotionDisabled.stories.tsx', - hash: '13839616447163935751', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerMultipleLevels.stories.tsx', - hash: '9540883675482678570', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerPosition.stories.tsx', - hash: '2394237202950561636', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerPreventClose.stories.tsx', - hash: '11771866130608760234', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerResizable.stories.tsx', - hash: '3845362180623033104', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerResponsive.stories.tsx', - hash: '3565589653073552824', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerSeparator.stories.tsx', - hash: '12197121116589288703', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerSize.stories.tsx', - hash: '6072210477412842010', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerWithNavigation.stories.tsx', - hash: '17182879587578834946', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerWithScroll.stories.tsx', - hash: '17078029246368551938', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/DrawerWithTitle.stories.tsx', - hash: '10695556627122993750', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/InlineDrawer.stories.tsx', - hash: '7668429865114850623', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/OverlayDrawer.stories.tsx', - hash: '5354320336788476906', - }, - { - file: 'packages/react-components/react-drawer/stories/Drawer/OverlayDrawerNoModal.stories.tsx', - hash: '10703118439062497997', - }, - { file: 'packages/react-components/react-drawer/stories/Drawer/index.stories.tsx', hash: '13012963814919023462' }, - { file: 'packages/react-components/react-drawer/tsconfig.cy.json', hash: '18261064269935263965' }, - { file: 'packages/react-components/react-drawer/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-drawer/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-drawer/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/monaco-editor': [ - { file: 'packages/monaco-editor/.eslintrc.json', hash: '16401897427305223968' }, - { file: 'packages/monaco-editor/.npmignore', hash: '1899321021843931458' }, - { file: 'packages/monaco-editor/CHANGELOG.json', hash: '15516623440398366724' }, - { file: 'packages/monaco-editor/CHANGELOG.md', hash: '5240386572839593668' }, - { file: 'packages/monaco-editor/LICENSE', hash: '15366233199009037529' }, - { file: 'packages/monaco-editor/README.md', hash: '5047488952633449612' }, - { file: 'packages/monaco-editor/config/pre-copy.json', hash: '2815249492915298685' }, - { file: 'packages/monaco-editor/just.config.ts', hash: '2285251981020918959' }, - { - file: 'packages/monaco-editor/package.json', - hash: '11766581813993022377', - deps: [ - 'npm:@microsoft/load-themed-styles', - 'npm:tslib', - '@fluentui/eslint-plugin', - 'npm:monaco-editor', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/monaco-editor/project.json', hash: '12676125939877011820' }, - { file: 'packages/monaco-editor/scripts/addMonacoWebpackConfig.js', hash: '568918676415136703' }, - { file: 'packages/monaco-editor/src/configureEnvironment.ts', hash: '10685711845254021009' }, - { file: 'packages/monaco-editor/src/monacoBundle.ts', hash: '14849047751141537856' }, - { file: 'packages/monaco-editor/src/monacoCoreBundle.ts', hash: '10703107346378158529' }, - { file: 'packages/monaco-editor/tasks/transformCssTask.ts', hash: '15488444608261061401' }, - { file: 'packages/monaco-editor/tsconfig.json', hash: '14351017736851024254' }, - ], - '@fluentui/react-cards': [ - { file: 'packages/react-cards/.eslintrc.json', hash: '16931605920801268830' }, - { file: 'packages/react-cards/.npmignore', hash: '17767374615507000718' }, - { file: 'packages/react-cards/.npmrc', hash: '12117094813882964499' }, - { file: 'packages/react-cards/CHANGELOG.json', hash: '3202147163405935073' }, - { file: 'packages/react-cards/CHANGELOG.md', hash: '8747396549153497235' }, - { file: 'packages/react-cards/LICENSE', hash: '6253960424893387650' }, - { file: 'packages/react-cards/README.md', hash: '3477479143146211668' }, - { file: 'packages/react-cards/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/react-cards/config/tests.js', hash: '13209895427940926327' }, - { file: 'packages/react-cards/etc/react-cards.api.md', hash: '16727656835047585474' }, - { file: 'packages/react-cards/jest.config.js', hash: '8193037916930093299' }, - { file: 'packages/react-cards/just.config.ts', hash: '1545929909583215690' }, - { - file: 'packages/react-cards/package.json', - hash: '16789738612353226731', - deps: [ - '@fluentui/react', - '@fluentui/foundation-legacy', - '@fluentui/set-version', - 'npm:@microsoft/load-themed-styles', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/jest-serializer-merge-styles', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-cards/project.json', hash: '16529944636819246352' }, - { file: 'packages/react-cards/src/Card.ts', hash: '18296053792853651864' }, - { file: 'packages/react-cards/src/components/Card/Card.styles.ts', hash: '4685103703702010267' }, - { file: 'packages/react-cards/src/components/Card/Card.ts', hash: '1929423536789811973' }, - { file: 'packages/react-cards/src/components/Card/Card.types.ts', hash: '10662042676040928081' }, - { file: 'packages/react-cards/src/components/Card/Card.view.test.tsx', hash: '2651085214474441422' }, - { file: 'packages/react-cards/src/components/Card/Card.view.tsx', hash: '9706861711378212277' }, - { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.styles.ts', hash: '11849349042222325569' }, - { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.test.tsx', hash: '5993415043714882287' }, - { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.ts', hash: '13327635575716341322' }, - { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.types.ts', hash: '7220844002946880497' }, - { file: 'packages/react-cards/src/components/Card/CardItem/CardItem.view.tsx', hash: '11750096245423007155' }, - { - file: 'packages/react-cards/src/components/Card/CardItem/__snapshots__/CardItem.test.tsx.snap', - hash: '14582495706397215933', - }, - { - file: 'packages/react-cards/src/components/Card/CardSection/CardSection.styles.ts', - hash: '9502018824459970625', - }, - { - file: 'packages/react-cards/src/components/Card/CardSection/CardSection.test.tsx', - hash: '8362349948071743185', - }, - { file: 'packages/react-cards/src/components/Card/CardSection/CardSection.ts', hash: '14518757228773854290' }, - { - file: 'packages/react-cards/src/components/Card/CardSection/CardSection.types.ts', - hash: '6877821299742157632', - }, - { - file: 'packages/react-cards/src/components/Card/CardSection/CardSection.view.tsx', - hash: '10937983149567166874', - }, - { - file: 'packages/react-cards/src/components/Card/CardSection/__snapshots__/CardSection.test.tsx.snap', - hash: '9695464788230094255', - }, - { - file: 'packages/react-cards/src/components/Card/__snapshots__/Card.view.test.tsx.snap', - hash: '12038355267061100924', - }, - { file: 'packages/react-cards/src/components/Card/index.ts', hash: '14729802027828598904' }, - { file: 'packages/react-cards/src/index.ts', hash: '8179513586981371037' }, - { file: 'packages/react-cards/src/version.ts', hash: '389976962689502133' }, - { file: 'packages/react-cards/tsconfig.json', hash: '15516134720009168635' }, - { file: 'packages/react-cards/webpack.config.js', hash: '17634613195548132917' }, - ], - '@fluentui/styles': [ - { file: 'packages/fluentui/styles/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/styles/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/styles/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/styles/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/styles/jest.config.js', hash: '15647476349875375422' }, - { - file: 'packages/fluentui/styles/package.json', - hash: '11071553275048489771', - deps: [ - 'npm:@babel/runtime', - 'npm:csstype', - 'npm:lodash', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:lerna-alias', - ], - }, - { file: 'packages/fluentui/styles/project.json', hash: '17384367070850273645' }, - { file: 'packages/fluentui/styles/src/callable.ts', hash: '14898759116337720669' }, - { file: 'packages/fluentui/styles/src/createTheme.ts', hash: '12329304854575333027' }, - { file: 'packages/fluentui/styles/src/debugEnabled.ts', hash: '260520645944752742' }, - { file: 'packages/fluentui/styles/src/deepmerge.ts', hash: '2446057837788726932' }, - { file: 'packages/fluentui/styles/src/index.ts', hash: '13730197638323966220' }, - { file: 'packages/fluentui/styles/src/mergeThemes.ts', hash: '16347750142281054157' }, - { file: 'packages/fluentui/styles/src/objectKeysToValues.ts', hash: '7930115653642188401' }, - { file: 'packages/fluentui/styles/src/types.ts', hash: '3955806072566441450' }, - { file: 'packages/fluentui/styles/src/withDebugId.ts', hash: '6145826506046863525' }, - { file: 'packages/fluentui/styles/test/deepmerge-test.ts', hash: '16642574076278537669' }, - { file: 'packages/fluentui/styles/test/mergeThemes/mergeComponentStyles-test.ts', hash: '98280428890954350' }, - { - file: 'packages/fluentui/styles/test/mergeThemes/mergeComponentVariables-test.ts', - hash: '13200727275279230669', - }, - { file: 'packages/fluentui/styles/test/mergeThemes/mergeFontFaces-test.ts', hash: '16551537175877227090' }, - { file: 'packages/fluentui/styles/test/mergeThemes/mergeSiteVariables-test.ts', hash: '10628393023615026415' }, - { file: 'packages/fluentui/styles/test/mergeThemes/mergeStaticStyles-test.ts', hash: '6893282198271389648' }, - { file: 'packages/fluentui/styles/test/mergeThemes/mergeThemeVariables-test.ts', hash: '10108992874118614309' }, - { file: 'packages/fluentui/styles/test/mergeThemes/mergeThemes-test.ts', hash: '2201778227520253577' }, - { file: 'packages/fluentui/styles/test/objectKeysToValues-test.ts', hash: '13631092081735629577' }, - { file: 'packages/fluentui/styles/tsconfig.json', hash: '6941511733406172219' }, - ], - '@fluentui/react-northstar-fela-renderer': [ - { file: 'packages/fluentui/react-northstar-fela-renderer/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-northstar-fela-renderer/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-northstar-fela-renderer/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-northstar-fela-renderer/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-northstar-fela-renderer/jest.config.js', hash: '5879943202201643412' }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/package.json', - hash: '18253410728196785871', - deps: [ - 'npm:@babel/runtime', - '@fluentui/react-northstar-styles-renderer', - '@fluentui/styles', - 'npm:css-in-js-utils', - 'npm:fela', - 'npm:fela-dom', - 'npm:fela-plugin-embedded', - 'npm:fela-plugin-fallback-value', - 'npm:fela-plugin-placeholder-prefixer', - 'npm:fela-plugin-rtl', - 'npm:fela-tools', - 'npm:fela-utils', - 'npm:inline-style-expand-shorthand', - 'npm:lodash', - 'npm:stylis', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:lerna-alias', - 'npm:react-fela', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-northstar-fela-renderer/project.json', hash: '7529833180970546709' }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/RendererProvider.tsx', - hash: '15292973742708445201', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/createFelaRenderer.tsx', - hash: '14134932690113469333', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/felaDisableAnimationsPlugin.ts', - hash: '5106913408155805634', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/felaExpandCssShorthandsPlugin.ts', - hash: '12364266764064975304', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/felaFocusVisibleEnhancer.ts', - hash: '3489409456963574353', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/felaInvokeKeyframesPlugin.ts', - hash: '13086869777306745688', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/felaPerformanceEnhancer.ts', - hash: '8934157626271065107', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/felaSanitizeCssPlugin.ts', - hash: '1128726876603739196', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/src/felaStylisEnhancer.ts', - hash: '8281562568320323558', - }, - { file: 'packages/fluentui/react-northstar-fela-renderer/src/index.ts', hash: '3768293676213746420' }, - { file: 'packages/fluentui/react-northstar-fela-renderer/src/types.ts', hash: '1872083320472232584' }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/test/__snapshots__/felaFocusVisibleEnhancer-test.ts.snap', - hash: '4974099359602810550', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/test/__snapshots__/felaRenderer-test.tsx.snap', - hash: '457621670829538595', - }, - { file: 'packages/fluentui/react-northstar-fela-renderer/test/consoleUtil.ts', hash: '11997294564447184338' }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/test/felaDisableAnimationsPlugin-test.ts', - hash: '16412109138465579885', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/test/felaExpandCssShorthandsPlugin-test.ts', - hash: '12816623850070173611', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/test/felaFocusVisibleEnhancer-test.ts', - hash: '1019784981095022855', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/test/felaInvokeKeyframesPlugin-test.ts', - hash: '6460114641417994686', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/test/felaRenderer-test.tsx', - hash: '10647218092623789302', - }, - { - file: 'packages/fluentui/react-northstar-fela-renderer/test/felaSanitizeCssPlugin-test.ts', - hash: '6683618071771223667', - }, - { file: 'packages/fluentui/react-northstar-fela-renderer/tsconfig.json', hash: '4544399996272942243' }, - ], - '@fluentui/react-northstar-prototypes': [ - { file: 'packages/fluentui/react-northstar-prototypes/.eslintrc.json', hash: '3016770829865385537' }, - { file: 'packages/fluentui/react-northstar-prototypes/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-northstar-prototypes/README.md', hash: '9816779029527592217' }, - { file: 'packages/fluentui/react-northstar-prototypes/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-northstar-prototypes/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/react-northstar-prototypes/package.json', - hash: '16036884325989784037', - deps: [ - 'npm:@babel/runtime', - '@fluentui/accessibility', - '@fluentui/code-sandbox', - '@fluentui/docs-components', - '@fluentui/react-bindings', - '@fluentui/react-component-event-listener', - '@fluentui/react-component-ref', - '@fluentui/react-icons-northstar', - '@fluentui/react-northstar', - 'npm:classnames', - 'npm:copy-to-clipboard', - 'npm:csstype', - 'npm:faker', - 'npm:formik', - 'npm:lodash', - 'npm:moment', - 'npm:react-custom-scrollbars', - 'npm:react-document-title', - 'npm:react-dom', - 'npm:react-hook-form', - 'npm:react-textarea-autosize', - 'npm:react-virtualized', - 'npm:react-window', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - 'npm:@types/classnames', - 'npm:@types/faker', - 'npm:@types/react-custom-scrollbars', - 'npm:@types/react-virtualized', - 'npm:@types/react-window', - 'npm:react', - ], - }, - { file: 'packages/fluentui/react-northstar-prototypes/project.json', hash: '6886430218315295405' }, - { file: 'packages/fluentui/react-northstar-prototypes/src/index.ts', hash: '15523276757469001647' }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/AsyncShorthand/AsyncShorthand.tsx', - hash: '4666694168826124059', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/AsyncShorthand/index.ts', - hash: '16572492250719503250', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/CopyToClipboard.tsx', - hash: '16139491727209802991', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/NotificationProvider.tsx', - hash: '2013404344230368604', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/index.tsx', - hash: '8498148850336520649', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/CopyToClipboard/themeOverrides.ts', - hash: '12351912667975777465', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/EditorToolbar.tsx', - hash: '5151494454522358996', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/EditorToolbarTable.tsx', - hash: '3640519683252577060', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/PortalWindow.tsx', - hash: '5792280337595091743', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/editorToolbarReducer.ts', - hash: '9583114788120990687', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/EditorToolbar/index.tsx', - hash: '7397171196134146399', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/FormHooks.tsx', - hash: '2494698095444226618', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/Formik.tsx', - hash: '9102962171879800100', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/FormValidation/index.tsx', - hash: '7274259884984694722', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/Menu.tsx', - hash: '8629232587523790782', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuButton.tsx', - hash: '9006084202427548109', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuItem.tsx', - hash: '13103428700998832060', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuList.tsx', - hash: '2487141510217772541', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/MenuTrigger.tsx', - hash: '10976183634001532481', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/index.tsx', - hash: '18332154448991086610', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/menuContext.ts', - hash: '17782320631648149413', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/MenuList/menuListContext.tsx', - hash: '14993198406917925287', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/NestedPopupsAndDialogs/index.tsx', - hash: '1786212070449744493', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/ParticipantsList/index.tsx', - hash: '11122842396313230268', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Prototypes.tsx', - hash: '11002418107785047261', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/animations.tsx', - hash: '8011321726213482462', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/index.tsx', - hash: '9750242519854799147', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/participant.tsx', - hash: '1908497880154833078', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/participantData.tsx', - hash: '16995079246413273861', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/presentersData.tsx', - hash: '11413443463145832458', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/Roster/styles.tsx', - hash: '8681317249512926709', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/SearchPage/SearchPage.tsx', - hash: '10043146942965451830', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/SearchPage/index.ts', - hash: '5111008576834445045', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/TextAreaAutoSize/TextAreaAutoResize.tsx', - hash: '5899564604445925894', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/TextAreaAutoSize/index.tsx', - hash: '12960044669039013142', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/VirtualStickyTree.tsx', - hash: '18312785735105369972', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/VirtualStickyTreePrototype.tsx', - hash: '15487238422160188716', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/index.tsx', - hash: '9119716162571119978', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedStickyTree/itemsGenerator.ts', - hash: '13610599499519671039', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/VirtualizedTable.tsx', - hash: '15908692109639964535', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/VirtualizedTables.tsx', - hash: '5363058945850172332', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/index.tsx', - hash: '1129921799744469312', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTable/itemsGenerator.ts', - hash: '7508346131761412752', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/VirtualTree.tsx', - hash: '3954137309594916393', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/VirtualTreePrototype.tsx', - hash: '7421258757962426229', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/index.tsx', - hash: '2218309949858402834', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/VirtualizedTree/itemsGenerator.ts', - hash: '15771527193717335030', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/AnimatedBannerAlert.tsx', - hash: '17051906888739797582', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/BannerAlerts.tsx', - hash: '164096548589224380', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/alerts/index.tsx', - hash: '542944501762417749', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/ChatWithPopover.tsx', - hash: '7719768216659998424', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/Popover.tsx', - hash: '7110368926253847972', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/ReactionPopup.tsx', - hash: '1809282408748721844', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ChatMessageWithPopover/index.tsx', - hash: '2363228290761620536', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/ControlMessage.tsx', - hash: '9083963234031169891', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/GroupControlMessages.tsx', - hash: '15712001723372243367', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/controlMessagesGroupBehavior.ts', - hash: '363546636055422204', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/index.tsx', - hash: '8124578659080196615', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ControlMessages/mockData.tsx', - hash: '13929098419252934815', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ImportantAndMentionMessages/index.tsx', - hash: '7229266695634489078', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ScreenReaderHeaderText.tsx', - hash: '10353957772979700593', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadReplies.tsx', - hash: '1942287349317638581', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadReplyEditor.tsx', - hash: '9957383241598274658', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/ThreadedMessage.tsx', - hash: '7837775770648961687', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/classNames.ts', - hash: '3650699319544402311', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/index.tsx', - hash: '7871235040883754343', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/mockData.tsx', - hash: '14452775535735897762', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/repliesButtonBehavior.ts', - hash: '12128219743725138914', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/theme.tsx', - hash: '11066989221639267136', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/threadChatBehavior.ts', - hash: '1441781496556702753', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/ThreadedMessages/threadedMessageBehavior.ts', - hash: '3858861000785802665', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatMessages/index.tsx', - hash: '9449896320086879311', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneContent.tsx', - hash: '6658772003455648363', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneHeader.tsx', - hash: '643323282552019782', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatPaneLayout.tsx', - hash: '14116176100758089028', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/chatProtoStyle.ts', - hash: '475572491409726938', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/composeMessage.tsx', - hash: '12541651470084120461', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/index.tsx', - hash: '163284684608788454', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/dataMock.ts', - hash: '11566122887388108984', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/dateUtils.ts', - hash: '9986525303334363468', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/index.ts', - hash: '9049264600443968590', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/messageFactoryMock.tsx', - hash: '14942065203643453962', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatPane/services/types.ts', - hash: '14861415723836622381', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshSimple.tsx', - hash: '13663591883845115261', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshStressTest.tsx', - hash: '15770991472046356681', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/ChatRefreshTimestampTooltip.tsx', - hash: '17200046557466620008', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/chatRefresh/index.tsx', - hash: '6314076623887472756', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatErrorState.tsx', - hash: '8306663112845027098', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatSlots.tsx', - hash: '15622079419906473134', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithAuthor.tsx', - hash: '10933173294027489801', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithBadges.tsx', - hash: '10067159577153996227', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithDetails.tsx', - hash: '12176481734681230005', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithReactions.tsx', - hash: '12675957219152936570', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/CompactChatWithReadReceipts.tsx', - hash: '8201566125102339683', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/compactAvatars.ts', - hash: '11621426604052727034', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/compactChat/index.tsx', - hash: '4222694708370470229', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customScrollbar/index.tsx', - hash: '16423493249816236908', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/CustomToolbar.tsx', - hash: '14798705590211106914', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/darkThemeOverrides.ts', - hash: '1765730341598063989', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/highContrastThemeOverrides.ts', - hash: '7341831179174477997', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/customToolbar/index.tsx', - hash: '3818480630864383081', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/dropdowns/AsyncDropdownSearch.tsx', - hash: '4245437456080655048', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/dropdowns/index.tsx', - hash: '10504698972700931271', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/AvatarEmployeeCard.tsx', - hash: '18080501605845941120', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/CustomText.tsx', - hash: '15147690821457289889', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/EmployeeCard.tsx', - hash: '17647767873511892219', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/employeeCard/index.tsx', - hash: '12239498765757344987', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/hexagonalAvatar/CustomAvatar.tsx', - hash: '5584088432540470900', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/hexagonalAvatar/index.tsx', - hash: '8379883381403321309', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsFooter.tsx', - hash: '4813121796634612750', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsHeader.tsx', - hash: '7945036494904555092', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsLink.tsx', - hash: '15822692067236061508', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsLogo.tsx', - hash: '15193117497529466118', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/MSTeamsMeetingOptions.tsx', - hash: '5195077200654195155', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/components/TransparentDivider.tsx', - hash: '11355458298767631749', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/index.tsx', - hash: '8044441448311472388', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/meetingOptions/styles.ts', - hash: '6968770458826471464', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/MentionsDropdown.tsx', - hash: '8803027406609593843', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/MentionsEditor.tsx', - hash: '10665932680699585384', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/PortalAtCursorPosition.ts', - hash: '15136805012626452053', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/dataMocks.ts', - hash: '3503103682131204402', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/index.tsx', - hash: '33233848936932089', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/mentions/utils.ts', - hash: '11455328573947869477', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/GridImagePicker/GridImagePicker.tsx', - hash: '5931266799517865445', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/GridImagePicker/GridImagePickerItem.tsx', - hash: '2326425296192747302', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/dataMocks.ts', - hash: '16378935872851174954', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/emojiPicker.tsx', - hash: '17257330712623278054', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/index.tsx', - hash: '3156365344886310754', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/popups/stickerPicker.tsx', - hash: '16248346637506964495', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/AdvancedTable.tsx', - hash: '13074602433465138810', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/InteractiveTable.tsx', - hash: '17153306276689477036', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/ResponsiveTableContainer.tsx', - hash: '4594526012647494857', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/SelectableTable.tsx', - hash: '2077966948058956818', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/calculateBreakpoints.ts', - hash: '17045471959855509527', - }, - { - file: 'packages/fluentui/react-northstar-prototypes/src/prototypes/table/index.tsx', - hash: '13735701997417262705', - }, - { file: 'packages/fluentui/react-northstar-prototypes/tsconfig.json', hash: '253585536554020032' }, - ], - '@fluentui/react-timepicker-compat-preview': [ - { file: 'packages/react-components/react-timepicker-compat-preview/.babelrc.json', hash: '18339585439895240691' }, - { - file: 'packages/react-components/react-timepicker-compat-preview/.eslintrc.json', - hash: '11822209983446579696', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/.storybook/main.js', - hash: '11617744840349284164', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/.storybook/preview.js', - hash: '1791378012295456991', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-timepicker-compat-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-timepicker-compat-preview/CHANGELOG.json', hash: '7443897928512652454' }, - { file: 'packages/react-components/react-timepicker-compat-preview/CHANGELOG.md', hash: '10288519529322773910' }, - { file: 'packages/react-components/react-timepicker-compat-preview/LICENSE', hash: '16008528871596961028' }, - { file: 'packages/react-components/react-timepicker-compat-preview/README.md', hash: '1809579314509941543' }, - { - file: 'packages/react-components/react-timepicker-compat-preview/bundle-size/TimePicker.fixture.js', - hash: '14241624297653717010', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/config/api-extractor.json', - hash: '124052868224837692', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/config/tests.js', - hash: '16913843724990866890', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/cypress.config.ts', - hash: '17230281421398791592', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/docs/Migration.md', - hash: '4021833649227823482', - }, - { file: 'packages/react-components/react-timepicker-compat-preview/docs/Spec.md', hash: '8635174822444888522' }, - { - file: 'packages/react-components/react-timepicker-compat-preview/etc/react-timepicker-compat-preview.api.md', - hash: '10410088753599407092', - }, - { file: 'packages/react-components/react-timepicker-compat-preview/jest.config.js', hash: '9766146148654026096' }, - { file: 'packages/react-components/react-timepicker-compat-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-timepicker-compat-preview/package.json', - hash: '18075287189948415372', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-combobox', - '@fluentui/react-field', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-timepicker-compat-preview/project.json', hash: '11623526912155252897' }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/TimePicker.ts', - hash: '8919003633615161634', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.cy.tsx', - hash: '2268766357020981108', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.test.tsx', - hash: '4625180512860312676', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.tsx', - hash: '6856338812317042222', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/TimePicker.types.ts', - hash: '16705913128014134642', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/index.ts', - hash: '14317002683791819993', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/timeMath.test.ts', - hash: '9610495087449809696', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/timeMath.ts', - hash: '16427594297458443598', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/useTimePicker.tsx', - hash: '10101090423944398224', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/components/TimePicker/useTimePickerStyles.styles.ts', - hash: '9323957650113310013', - }, - { file: 'packages/react-components/react-timepicker-compat-preview/src/index.ts', hash: '15110596364222141948' }, - { - file: 'packages/react-components/react-timepicker-compat-preview/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerBestPractices.md', - hash: '4715016281428560167', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerControlled.md', - hash: '4542577073511108011', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerControlled.stories.tsx', - hash: '14159446324711651597', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerDefault.stories.tsx', - hash: '3866129310777451618', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerDescription.md', - hash: '6543020975323479896', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformCustomParsing.md', - hash: '8328212493981358431', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformCustomParsing.stories.tsx', - hash: '13973002934670696970', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformWithErrorHandling.md', - hash: '9839268275704554451', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerFreeformWithErrorHandling.stories.tsx', - hash: '4213027057161624603', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/TimePickerWithDatePicker.stories.tsx', - hash: '11484153653506326666', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/stories/TimePicker/index.stories.tsx', - hash: '2147694366172160105', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/tsconfig.cy.json', - hash: '7215147373970103512', - }, - { file: 'packages/react-components/react-timepicker-compat-preview/tsconfig.json', hash: '5326137440511234645' }, - { - file: 'packages/react-components/react-timepicker-compat-preview/tsconfig.lib.json', - hash: '8117551715541039118', - }, - { - file: 'packages/react-components/react-timepicker-compat-preview/tsconfig.spec.json', - hash: '6114153871167405290', - }, - ], - '@fluentui/react-conformance-griffel': [ - { file: 'packages/react-components/react-conformance-griffel/.babelrc.json', hash: '8174012058119950495' }, - { file: 'packages/react-components/react-conformance-griffel/.eslintrc.json', hash: '11018738359270224912' }, - { file: 'packages/react-components/react-conformance-griffel/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-conformance-griffel/CHANGELOG.json', hash: '1599448451519957366' }, - { file: 'packages/react-components/react-conformance-griffel/CHANGELOG.md', hash: '15963932008129979815' }, - { file: 'packages/react-components/react-conformance-griffel/LICENSE', hash: '9276497511127924988' }, - { file: 'packages/react-components/react-conformance-griffel/README.md', hash: '17310260780896769631' }, - { - file: 'packages/react-components/react-conformance-griffel/config/api-extractor.json', - hash: '124052868224837692', - }, - { file: 'packages/react-components/react-conformance-griffel/config/tests.js', hash: '16913843724990866890' }, - { - file: 'packages/react-components/react-conformance-griffel/etc/react-conformance-griffel.api.md', - hash: '17760332850409220085', - }, - { file: 'packages/react-components/react-conformance-griffel/jest.config.js', hash: '15227294323143014741' }, - { file: 'packages/react-components/react-conformance-griffel/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-conformance-griffel/package.json', - hash: '13528663482705912139', - deps: [ - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:typescript', - ], - }, - { file: 'packages/react-components/react-conformance-griffel/project.json', hash: '13900267515539558779' }, - { file: 'packages/react-components/react-conformance-griffel/src/index.ts', hash: '7791951983184089960' }, - { - file: 'packages/react-components/react-conformance-griffel/src/matchers/index.ts', - hash: '12326396871232725303', - }, - { - file: 'packages/react-components/react-conformance-griffel/src/matchers/toContainClassNameLastInCalls.test.ts', - hash: '8633457890093301366', - }, - { - file: 'packages/react-components/react-conformance-griffel/src/matchers/toContainClassNameLastInCalls.ts', - hash: '419654042826238667', - }, - { - file: 'packages/react-components/react-conformance-griffel/src/matchers/toHaveMergeClassesCalledTimesWithClassName.test.ts', - hash: '17095451530468328915', - }, - { - file: 'packages/react-components/react-conformance-griffel/src/matchers/toHaveMergeClassesCalledTimesWithClassName.ts', - hash: '10742531573460176078', - }, - { file: 'packages/react-components/react-conformance-griffel/src/overridesWin.ts', hash: '5177685846648410797' }, - { file: 'packages/react-components/react-conformance-griffel/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/react-conformance-griffel/tsconfig.lib.json', hash: '13650566283900444399' }, - { file: 'packages/react-components/react-conformance-griffel/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-progress': [ - { file: 'packages/react-components/react-progress/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-progress/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-progress/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-progress/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-progress/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-progress/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-progress/CHANGELOG.json', hash: '9943518116241887368' }, - { file: 'packages/react-components/react-progress/CHANGELOG.md', hash: '2919392667075419280' }, - { file: 'packages/react-components/react-progress/LICENSE', hash: '14720059712718439480' }, - { file: 'packages/react-components/react-progress/README.md', hash: '13443295487418840260' }, - { - file: 'packages/react-components/react-progress/bundle-size/ProgressBar.fixture.js', - hash: '15597136298352513674', - }, - { file: 'packages/react-components/react-progress/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-progress/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-progress/docs/MIGRATION.md', hash: '17724398627946676243' }, - { file: 'packages/react-components/react-progress/docs/Spec.md', hash: '438580243654009753' }, - { file: 'packages/react-components/react-progress/etc/react-progress.api.md', hash: '2044101360763309253' }, - { file: 'packages/react-components/react-progress/jest.config.js', hash: '15037937544956502248' }, - { file: 'packages/react-components/react-progress/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-progress/package.json', - hash: '11790477356992419563', - deps: [ - '@fluentui/react-field', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-progress/project.json', hash: '5040085670575357633' }, - { file: 'packages/react-components/react-progress/src/ProgressBar.ts', hash: '364130850726833580' }, - { - file: 'packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.test.tsx', - hash: '14575183606779621510', - }, - { - file: 'packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.tsx', - hash: '4512060500927164739', - }, - { - file: 'packages/react-components/react-progress/src/components/ProgressBar/ProgressBar.types.ts', - hash: '9316131922315655010', - }, - { - file: 'packages/react-components/react-progress/src/components/ProgressBar/index.ts', - hash: '4919717671078177086', - }, - { - file: 'packages/react-components/react-progress/src/components/ProgressBar/renderProgressBar.tsx', - hash: '11139269590983552304', - }, - { - file: 'packages/react-components/react-progress/src/components/ProgressBar/useProgressBar.tsx', - hash: '17486562887893116895', - }, - { - file: 'packages/react-components/react-progress/src/components/ProgressBar/useProgressBarStyles.styles.ts', - hash: '2415416680026256368', - }, - { file: 'packages/react-components/react-progress/src/index.ts', hash: '1052162520942589490' }, - { file: 'packages/react-components/react-progress/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { file: 'packages/react-components/react-progress/src/utils/clampMax.test.ts', hash: '695087334567732346' }, - { file: 'packages/react-components/react-progress/src/utils/clampMax.ts', hash: '12888234946148193959' }, - { file: 'packages/react-components/react-progress/src/utils/clampValue.test.ts', hash: '5779163804989289991' }, - { file: 'packages/react-components/react-progress/src/utils/clampValue.ts', hash: '16938278361569231669' }, - { file: 'packages/react-components/react-progress/src/utils/index.ts', hash: '3102189156362851491' }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarBestPractices.md', - hash: '1479531832796336749', - }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarColor.stories.tsx', - hash: '13098706062395114051', - }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarDefault.stories.tsx', - hash: '3754883609787042687', - }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarDescription.md', - hash: '9681824475682879438', - }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarIndeterminate.stories.tsx', - hash: '1451847449685400166', - }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarMax.stories.tsx', - hash: '56730184557657606', - }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarShape.stories.tsx', - hash: '4732385307276466804', - }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/ProgressBarThickness.stories.tsx', - hash: '7152955996834570477', - }, - { - file: 'packages/react-components/react-progress/stories/ProgressBar/index.stories.tsx', - hash: '11861079216936079150', - }, - { file: 'packages/react-components/react-progress/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-progress/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-progress/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/docs': [ - { file: 'packages/fluentui/docs/.eslintrc.json', hash: '1170321389672620885' }, - { file: 'packages/fluentui/docs/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/docs/.storybook/main.js', hash: '12358817451942068777' }, - { file: 'packages/fluentui/docs/.storybook/preview.js', hash: '3982093891370695252' }, - { file: 'packages/fluentui/docs/README.md', hash: '12267980008240015629' }, - { file: 'packages/fluentui/docs/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/docs/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/docs/package.json', - hash: '8290575613183760036', - deps: [ - 'npm:@charlietango/use-script', - '@fluentui/ability-attributes', - '@fluentui/accessibility', - '@fluentui/code-sandbox', - '@fluentui/docs-components', - '@fluentui/react-bindings', - '@fluentui/react-builder', - '@fluentui/react-component-event-listener', - '@fluentui/react-component-ref', - '@fluentui/react-icons-northstar', - '@fluentui/react-northstar', - '@fluentui/react-northstar-emotion-renderer', - '@fluentui/react-northstar-fela-renderer', - '@fluentui/react-northstar-prototypes', - '@fluentui/react-northstar-styles-renderer', - '@fluentui/react-telemetry', - '@fluentui/styles', - 'npm:@mdx-js/react', - 'npm:classnames', - 'npm:color', - 'npm:copy-to-clipboard', - 'npm:csstype', - 'npm:faker', - 'npm:formik', - 'npm:lodash', - 'npm:moment', - 'npm:prop-types', - 'npm:qs', - 'npm:react', - 'npm:react-codesandboxer', - 'npm:react-custom-scrollbars', - 'npm:react-document-title', - 'npm:react-dom', - 'npm:react-hook-form', - 'npm:react-hot-loader', - 'npm:react-markdown', - 'npm:react-router-dom', - 'npm:react-source-render', - 'npm:react-textarea-autosize', - 'npm:react-virtualized', - 'npm:react-vis', - 'npm:react-window', - 'npm:semver', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-storybook', - 'npm:@types/classnames', - 'npm:@types/color', - 'npm:@types/faker', - 'npm:@types/react-custom-scrollbars', - 'npm:@types/react-router-dom', - 'npm:@types/react-virtualized', - 'npm:@types/react-window', - ], - }, - { file: 'packages/fluentui/docs/project.json', hash: '4100322648323751291' }, - { file: 'packages/fluentui/docs/src/404.html', hash: '16925733810327691789' }, - { file: 'packages/fluentui/docs/src/app.tsx', hash: '18133583866406948391' }, - { file: 'packages/fluentui/docs/src/components/CategoryColorSchemes.tsx', hash: '15471500166894313476' }, - { file: 'packages/fluentui/docs/src/components/ColorBox.tsx', hash: '14313769847234351375' }, - { file: 'packages/fluentui/docs/src/components/ColorSchemes.tsx', hash: '3520451365588087548' }, - { file: 'packages/fluentui/docs/src/components/ColorVariants.tsx', hash: '842961233657171499' }, - { file: 'packages/fluentui/docs/src/components/ComponentBestPractices.tsx', hash: '13258213592237770558' }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/BehaviorCard.tsx', hash: '13248919281639354955' }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/BehaviorDescription.tsx', - hash: '11611880834697824134', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentBestPractices.tsx', - hash: '12268344819894559200', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/ComponentBundleSizeChart.tsx', - hash: '5854648503741754888', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/ComponentBundleSizeExample.tsx', - hash: '15384963319034106554', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/index.ts', - hash: '14862062994631854818', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/CodeSnippetIcon.tsx', - hash: '14251722938533789516', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/ComponentControls.tsx', - hash: '9947607547435043640', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/ComponentControlsCopyLink.tsx', - hash: '7333719996921105622', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentControls/index.tsx', - hash: '13908880925817708925', - }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentDoc.tsx', hash: '5520896650160253888' }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentDocAccessibility.tsx', - hash: '14757167341788460626', - }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentDocLinks.tsx', hash: '839836439025932509' }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentDocSee.tsx', hash: '12461586076268291141' }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExample.tsx', - hash: '5514555960395912952', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleColorPicker.tsx', - hash: '7037081424336012966', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleTitle.tsx', - hash: '2105810739355291829', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleVariable.tsx', - hash: '7458209552924434794', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/ComponentExampleVariables.tsx', - hash: '8891305186508476923', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExample/index.tsx', - hash: '2296233322321885223', - }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentExamples.tsx', hash: '4233547624388976179' }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentPerfChart.tsx', - hash: '14815322288871573142', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentPerfExample.tsx', - hash: '15847736411030574387', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/ComponentResourcesChart.tsx', - hash: '2363646192975627812', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPerfExample/index.ts', - hash: '1676134879561531313', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropExtra.tsx', - hash: '6838830300296755682', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropFunctionSignature.tsx', - hash: '10792148067626293752', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProp/ComponentPropName.tsx', - hash: '14551087482273992161', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentPropCard.tsx', - hash: '17734443721751745496', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentProps.tsx', - hash: '8021120662876666781', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/ComponentPropsOutline.tsx', - hash: '1812145246479991942', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentProps/index.tsx', - hash: '14760205468189979139', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/ComponentPropsRow.tsx', - hash: '8804751983735030185', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/ComponentPropsTable.tsx', - hash: '3033990319844379436', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentPropsTable/index.tsx', - hash: '15915107543961869783', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/ComponentSourceManager.ts', - hash: '12290598306417344934', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/componentAPIs.ts', - hash: '17725740098421921107', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/getExampleModule.ts', - hash: '1528303749855518129', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ComponentSourceManager/index.ts', - hash: '14841104208504728645', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/ContributionPrompt.tsx', - hash: '3821542561099762451', - }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/ExampleSection.tsx', hash: '9424508500379564987' }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/InlineMarkdown.tsx', hash: '7764978463030319620' }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/LazyWithBabel.tsx', hash: '7266537121864960789' }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/MegaphoneIcon.tsx', hash: '1353394853001713106' }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/NonPublicSection.tsx', hash: '5071796385606465642' }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/BundleSizeChart.tsx', - hash: '1230066324202601264', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/BundleSizeChartTooltip.tsx', - hash: '9294095566216501043', - }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/Chart.tsx', hash: '15073388818411239276' }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ComponentChart.tsx', - hash: '2349492653467491734', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfChart.tsx', - hash: '10722755004997547482', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfChartTooltip.tsx', - hash: '16354879607043443697', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfDataContext.ts', - hash: '17768741877392199555', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/PerfDataProvider.tsx', - hash: '13018281500416904568', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChart.tsx', - hash: '15920626007856751052', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChartTooltip.tsx', - hash: '6613165649107428623', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/ResourcesChartValues.ts', - hash: '7226839342472307850', - }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/index.ts', hash: '2832162539747081776' }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/useBundleSizeData.ts', - hash: '5349831237877493080', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PerfChart/usePerfData.ts', - hash: '5249215270999363975', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/PrototypePerfControls.tsx', - hash: '9976991334716769425', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/PrototypePerfExample.tsx', - hash: '852200345847239746', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/index.ts', - hash: '4729113650901068359', - }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/SourceRender.tsx', hash: '10553593762698452511' }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/Suggestions.tsx', hash: '18179397695680456104' }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/index.tsx', hash: '7960769531776792410' }, - { - file: 'packages/fluentui/docs/src/components/ComponentDoc/useAccessibilityKnob.ts', - hash: '1885682283062558721', - }, - { file: 'packages/fluentui/docs/src/components/ComponentDoc/useComponentProps.ts', hash: '14616206315160726672' }, - { - file: 'packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlayground.tsx', - hash: '16798864798174922360', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlaygroundSnippet.tsx', - hash: '12726973953832627498', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentPlayground/ComponentPlaygroundTemplate.tsx', - hash: '12391832860362490896', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentPlayground/componentGenerators.tsx', - hash: '4442013590407697715', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentPlayground/createHookGenerator.ts', - hash: '3350539221678551323', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentPlayground/propGenerators.tsx', - hash: '14831694351072993146', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentPlayground/typeGenerators.ts', - hash: '6837634186526809821', - }, - { - file: 'packages/fluentui/docs/src/components/ComponentPlayground/usePlaygroundComponent.tsx', - hash: '14080850754774097617', - }, - { file: 'packages/fluentui/docs/src/components/DocPage/DocPage.tsx', hash: '2808652576979717110' }, - { file: 'packages/fluentui/docs/src/components/DocPage/index.tsx', hash: '3554578022119957414' }, - { file: 'packages/fluentui/docs/src/components/DocsBehaviorRoot.tsx', hash: '3267577223041500795' }, - { file: 'packages/fluentui/docs/src/components/DocsLayout.tsx', hash: '10910177656516070161' }, - { file: 'packages/fluentui/docs/src/components/DocsRoot.tsx', hash: '15835475100706638555' }, - { file: 'packages/fluentui/docs/src/components/ExampleSnippet/ExampleSnippet.tsx', hash: '7883815714929857953' }, - { file: 'packages/fluentui/docs/src/components/ExampleSnippet/index.ts', hash: '17429250596636602902' }, - { file: 'packages/fluentui/docs/src/components/ExternalExampleLayout.tsx', hash: '1824287292430373603' }, - { file: 'packages/fluentui/docs/src/components/Fader.tsx', hash: '12119643171890670621' }, - { file: 'packages/fluentui/docs/src/components/GuidesNavigationFooter.tsx', hash: '17244329877842186098' }, - { file: 'packages/fluentui/docs/src/components/Icons/CodeSandboxIcon.tsx', hash: '12825871339196808359' }, - { file: 'packages/fluentui/docs/src/components/Icons/GitHubIcon.tsx', hash: '13546583538224460080' }, - { file: 'packages/fluentui/docs/src/components/Logo/Logo.tsx', hash: '13542005493777121336' }, - { file: 'packages/fluentui/docs/src/components/MarkdownPage.tsx', hash: '4953894111157650411' }, - { file: 'packages/fluentui/docs/src/components/Playground/renderConfig.ts', hash: '10431467891315399907' }, - { file: 'packages/fluentui/docs/src/components/Sidebar/Sidebar.tsx', hash: '8581565888016772807' }, - { file: 'packages/fluentui/docs/src/components/Sidebar/SidebarTitle.tsx', hash: '16945465435959960216' }, - { file: 'packages/fluentui/docs/src/components/Sidebar/VersionDropdown.tsx', hash: '12481878360155018358' }, - { file: 'packages/fluentui/docs/src/components/SystemColors.tsx', hash: '12396673138560940111' }, - { file: 'packages/fluentui/docs/src/components/ThemeDropdown.tsx', hash: '14901215571694103867' }, - { - file: 'packages/fluentui/docs/src/components/VariableResolver/VariableResolver.tsx', - hash: '16680318961348211176', - }, - { - file: 'packages/fluentui/docs/src/components/VariableResolver/useClassNamesListener.ts', - hash: '11649694264640734161', - }, - { - file: 'packages/fluentui/docs/src/components/VariableResolver/useEnhancedRenderer.ts', - hash: '15034481148342293240', - }, - { file: 'packages/fluentui/docs/src/config.ts', hash: '6996878476232482390' }, - { file: 'packages/fluentui/docs/src/context/ExampleContext.ts', hash: '10330266777140873919' }, - { file: 'packages/fluentui/docs/src/context/ThemeContext.tsx', hash: '16056950884178562898' }, - { file: 'packages/fluentui/docs/src/contexts/exampleBestPracticesContext.ts', hash: '12541982430198054583' }, - { file: 'packages/fluentui/docs/src/contexts/exampleIndexContext.ts', hash: '3797907133032756872' }, - { file: 'packages/fluentui/docs/src/contexts/examplePlaygroundContext.ts', hash: '17947392003372189775' }, - { file: 'packages/fluentui/docs/src/contexts/exampleSourcesContext.ts', hash: '8034222086074861764' }, - { file: 'packages/fluentui/docs/src/contexts/examplesContext.ts', hash: '12651984967732339594' }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/BestPractices/AccordionBestPractices.tsx', - hash: '14940093359008461823', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Performance/AccordionDefault.bsize.tsx', - hash: '5038944270254129774', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Performance/AccordionMinimal.perf.tsx', - hash: '4523842466251260104', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Performance/index.tsx', - hash: '8866257628355307503', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Rtl/AccordionExample.rtl.tsx', - hash: '1340717939325240012', - }, - { file: 'packages/fluentui/docs/src/examples/components/Accordion/Rtl/index.tsx', hash: '5552494584834402354' }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExample.shorthand.tsx', - hash: '3147689295083767338', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExclusiveExample.shorthand.tsx', - hash: '15034575430186873739', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Types/AccordionExclusiveExpandedExample.shorthand.tsx', - hash: '15676788536874893013', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Types/index.tsx', - hash: '14312132533086915079', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Usage/AccordionPanelCustomContentExample.shorthand.tsx', - hash: '7961165322085785908', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Usage/AccordionPanelCustomTitleExample.shorthand.tsx', - hash: '8110444025715338724', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Usage/index.tsx', - hash: '17414639719818391537', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Visual/AccordionExampleCustomTitle.shorthand.tsx', - hash: '18093647188251049061', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Visual/AccordionExampleDefault.shorthand.tsx', - hash: '2490953812708114604', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Accordion/Visual/index.tsx', - hash: '10396872897756178975', - }, - { file: 'packages/fluentui/docs/src/examples/components/Accordion/index.tsx', hash: '11939699836458558174' }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/BestPractices/AlertBestPractices.tsx', - hash: '7390556831277044686', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Performance/AlertDefault.bsize.tsx', - hash: '7400263696216573396', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Performance/AlertMinimal.perf.tsx', - hash: '7491789731685439785', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Performance/index.tsx', - hash: '3486656088797749483', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExample.rtl.tsx', - hash: '5833501351144547293', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExampleChildren.rtl.tsx', - hash: '12215913207571214134', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Rtl/AlertExampleDismissAction.rtl.tsx', - hash: '4960020110180002666', - }, - { file: 'packages/fluentui/docs/src/examples/components/Alert/Rtl/index.tsx', hash: '18392778337533776532' }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleActions.shorthand.tsx', - hash: '7214084965447715805', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleDismissAction.shorthand.tsx', - hash: '14975932104835320922', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleHeader.shorthand.tsx', - hash: '15241039013902720472', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleHeader.tsx', - hash: '15241039013902720472', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleIcon.shorthand.tsx', - hash: '11946303643665979959', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/AlertExampleIcon.tsx', - hash: '11946303643665979959', - }, - { file: 'packages/fluentui/docs/src/examples/components/Alert/Slots/index.tsx', hash: '9417792554044457971' }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/State/AlertExampleVisible.shorthand.tsx', - hash: '4314747878253818932', - }, - { file: 'packages/fluentui/docs/src/examples/components/Alert/State/index.tsx', hash: '427501161644241166' }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Types/AlertExample.shorthand.tsx', - hash: '6679581942737953936', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Types/AlertExample.tsx', - hash: '14282449354851154943', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Types/AlertExampleDismissible.shorthand.tsx', - hash: '4521264338600019335', - }, - { file: 'packages/fluentui/docs/src/examples/components/Alert/Types/index.tsx', hash: '1993823099664567117' }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleDismissActions.shorthand.tsx', - hash: '12664361614821025048', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleImportantMessage.shorthand.tsx', - hash: '8126990145533658212', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleImportantMessage.tsx', - hash: '16239592046038933070', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/AlertExampleWidth.shorthand.tsx', - hash: '16822018458802875153', - }, - { file: 'packages/fluentui/docs/src/examples/components/Alert/Usage/index.tsx', hash: '4901587673450050108' }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleAttached.shorthand.tsx', - hash: '3025165918987383951', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleAttached.tsx', - hash: '5383005919345233169', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleDanger.shorthand.tsx', - hash: '13738658100729092838', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleDanger.tsx', - hash: '8624847794273310051', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleFitted.shorthand.tsx', - hash: '10384659722601669421', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleInfo.shorthand.tsx', - hash: '12429957374972912633', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleInfo.tsx', - hash: '6158313321973269291', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleOofs.shorthand.tsx', - hash: '14878611782723821420', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleOofs.tsx', - hash: '8687939285475336161', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleSuccess.shorthand.tsx', - hash: '12170565269305523670', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleSuccess.tsx', - hash: '8327763406932136591', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleUrgent.shorthand.tsx', - hash: '2288896043914439472', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleUrgent.tsx', - hash: '11981014665208428662', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleWarning.shorthand.tsx', - hash: '6109440345280173133', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/AlertExampleWarning.tsx', - hash: '11344022326745153812', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Alert/Variations/index.tsx', - hash: '3522446524631300400', - }, - { file: 'packages/fluentui/docs/src/examples/components/Alert/index.tsx', hash: '6156151819414933177' }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Performance/AnimationMinimal.perf.tsx', - hash: '2381218558170861435', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExample.shorthand.tsx', - hash: '3918693122533672885', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDelay.shorthand.tsx', - hash: '2091576222896710552', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDirection.shorthand.tsx', - hash: '4658602649524581668', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleDuration.shorthand.tsx', - hash: '6551064054536947130', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleFillMode.shorthand.tsx', - hash: '11254807112587801880', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleIterationCount.shorthand.tsx', - hash: '11637399197514567584', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleKeyframeParams.shorthand.tsx', - hash: '13004954253678987714', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExamplePlayState.shorthand.tsx', - hash: '6519757348253113407', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Types/AnimationExampleTimingFunction.shorthand.tsx', - hash: '15834656771211499058', - }, - { file: 'packages/fluentui/docs/src/examples/components/Animation/Types/index.tsx', hash: '1892899388103006614' }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Usage/AnimationExampleVisible.shorthand.tsx', - hash: '2585833965021996678', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Animation/Usage/index.tsx', - hash: '15802851789513126937', - }, - { file: 'packages/fluentui/docs/src/examples/components/Animation/index.tsx', hash: '9269300506542533759' }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentDefault.bsize.tsx', - hash: '6702521006817921355', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentMinimal.perf.tsx', - hash: '17668472981551080779', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Performance/AttachmentSlots.perf.tsx', - hash: '13203505537913137537', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Performance/index.tsx', - hash: '10043924621416924896', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Rtl/AttachmentExample.rtl.tsx', - hash: '3773914650402755856', - }, - { file: 'packages/fluentui/docs/src/examples/components/Attachment/Rtl/index.tsx', hash: '7918308442798410107' }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentActionExample.shorthand.tsx', - hash: '14423791370968139949', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentDescriptionExample.shorthand.tsx', - hash: '18212994103096220748', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentHeaderExample.shorthand.tsx', - hash: '11467050344618666719', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/AttachmentIconExample.shorthand.tsx', - hash: '529101159307576502', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Slots/index.tsx', - hash: '13875462072877340926', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Types/AttachmentExample.shorthand.tsx', - hash: '11475662725209531559', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Types/AttachmentProgressExample.shorthand.tsx', - hash: '4267523487196377390', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Types/index.tsx', - hash: '16150497455545793404', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Variations/AttachmentActionableExample.shorthand.tsx', - hash: '16317017442072917555', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Attachment/Variations/index.tsx', - hash: '14864620316228068394', - }, - { file: 'packages/fluentui/docs/src/examples/components/Attachment/index.tsx', hash: '15967332739376281903' }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Performance/AvatarDefault.bsize.tsx', - hash: '1993116627814229169', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Performance/AvatarMinimal.perf.tsx', - hash: '9403745575313193219', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Performance/index.tsx', - hash: '6542918934081901377', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Rtl/AvatarExample.rtl.tsx', - hash: '3766421030295524250', - }, - { file: 'packages/fluentui/docs/src/examples/components/Avatar/Rtl/index.tsx', hash: '704258527059101064' }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Types/AvatarExample.shorthand.tsx', - hash: '1777762071026836373', - }, - { file: 'packages/fluentui/docs/src/examples/components/Avatar/Types/index.tsx', hash: '16081847642128254144' }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Usage/AvatarUsageExample.shorthand.tsx', - hash: '6133089331845764022', - }, - { file: 'packages/fluentui/docs/src/examples/components/Avatar/Usage/index.tsx', hash: '4919268998864960207' }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleExcludedInitials.shorthand.tsx', - hash: '9691484376749818242', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleGetInitials.shorthand.tsx', - hash: '11980464763288742306', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleIcon.shorthand.tsx', - hash: '9292214088414339760', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleImage.shorthand.tsx', - hash: '6931871230275748642', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleLabel.shorthand.tsx', - hash: '13239318061369965763', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleName.shorthand.tsx', - hash: '3765438618458682092', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleSize.shorthand.tsx', - hash: '995651699228554888', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleSquare.shorthand.tsx', - hash: '7535329349351590670', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatus.shorthand.tsx', - hash: '12764376649431176331', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatusCustomization.shorthand.tsx', - hash: '5665191359621923461', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/AvatarExampleStatusImage.shorthand.tsx', - hash: '13641513045200282607', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Variations/index.tsx', - hash: '9169180906304167841', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Avatar/Visual/AvatarStatusOverrideExample.shorthand.tsx', - hash: '10472091611668977334', - }, - { file: 'packages/fluentui/docs/src/examples/components/Avatar/Visual/index.tsx', hash: '13634418070411306125' }, - { file: 'packages/fluentui/docs/src/examples/components/Avatar/index.tsx', hash: '17452750855947681835' }, - { - file: 'packages/fluentui/docs/src/examples/components/Box/Performance/BoxDefault.bsize.tsx', - hash: '5878861180993128281', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Box/Performance/BoxMinimal.perf.tsx', - hash: '11528177275513521419', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Box/Performance/index.tsx', - hash: '12468667700184196719', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Box/Types/BoxExample.shorthand.tsx', - hash: '2621463162801806623', - }, - { file: 'packages/fluentui/docs/src/examples/components/Box/Types/BoxExample.tsx', hash: '11822710890006965982' }, - { file: 'packages/fluentui/docs/src/examples/components/Box/Types/index.tsx', hash: '16292168244991601444' }, - { file: 'packages/fluentui/docs/src/examples/components/Box/index.tsx', hash: '8445463683172518341' }, - { - file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/BestPractices/BreadcrumbBestPractices.tsx', - hash: '12037027317396022887', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Content/BreadcrumbExampleIconDivider.tsx', - hash: '13040774096198084811', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Content/index.tsx', - hash: '5737535689842502282', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Types/BreadcrumbExampleBasic.tsx', - hash: '10867835066367364838', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Types/index.tsx', - hash: '6251320465555826583', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Variations/BreadcrumbExampleSizes.tsx', - hash: '3756439437541515697', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/Variations/index.tsx', - hash: '17864851291665966953', - }, - { file: 'packages/fluentui/docs/src/examples/components/Breadcrumb/index.tsx', hash: '11963669822888507151' }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/BestPractices/ButtonBestPractices.tsx', - hash: '875405029256638882', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Groups/ButtonGroupCircularExample.shorthand.tsx', - hash: '10014541288147975902', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Groups/ButtonGroupExample.shorthand.tsx', - hash: '12616941824892942654', - }, - { file: 'packages/fluentui/docs/src/examples/components/Button/Groups/index.tsx', hash: '14608855000457409706' }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Performance/ButtonDefault.bsize.tsx', - hash: '14013260610212467529', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Performance/ButtonMinimal.perf.tsx', - hash: '17702693323586748847', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Performance/ButtonOverridesMiss.perf.tsx', - hash: '246033419451815290', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Performance/ButtonSlots.perf.tsx', - hash: '1232086238686224207', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Performance/index.tsx', - hash: '5684247435424607199', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Rtl/ButtonExample.rtl.tsx', - hash: '10401747556514954499', - }, - { file: 'packages/fluentui/docs/src/examples/components/Button/Rtl/index.tsx', hash: '13167615523401755239' }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabled.shorthand.tsx', - hash: '7501376052839836585', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabled.tsx', - hash: '12680506556909276531', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabledFocusable.shorthand.tsx', - hash: '11418740839881366692', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleDisabledFocusable.tsx', - hash: '8223189472340503350', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/States/ButtonExampleLoading.shorthand.tsx', - hash: '7387668981444340419', - }, - { file: 'packages/fluentui/docs/src/examples/components/Button/States/index.tsx', hash: '8104062184649371336' }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExample.shorthand.tsx', - hash: '13949356969555112957', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExample.tsx', - hash: '1770835918201234538', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleEmphasis.shorthand.tsx', - hash: '9141195104899468218', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleEmphasis.tsx', - hash: '4417989313376075228', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleIconOnly.shorthand.tsx', - hash: '3634071676473637322', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleIconOnly.tsx', - hash: '8460167654876772802', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleInverted.tsx', - hash: '17687677670120489335', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleText.shorthand.tsx', - hash: '4888038742337651213', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Types/ButtonExampleText.tsx', - hash: '3859583648668982831', - }, - { file: 'packages/fluentui/docs/src/examples/components/Button/Types/index.tsx', hash: '14640357627717561574' }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleContentAndIcon.shorthand.tsx', - hash: '5196548647582650534', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleContentAndIcon.tsx', - hash: '5592983281587280992', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleOverflow.shorthand.tsx', - hash: '15179431573106673255', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleOverflow.tsx', - hash: '2042263174918498793', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonExampleWithTooltip.shorthand.tsx', - hash: '13714099140756432098', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Usage/ButtonUsageExample.shorthand.tsx', - hash: '1604253431835541038', - }, - { file: 'packages/fluentui/docs/src/examples/components/Button/Usage/index.tsx', hash: '17896536485132705289' }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleCircular.shorthand.tsx', - hash: '12465483641909329594', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleCircular.tsx', - hash: '16231051050308741969', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFlat.shorthand.tsx', - hash: '5922720345605217261', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFluid.shorthand.tsx', - hash: '8376453203529581016', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleFluid.tsx', - hash: '3869666308436030997', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Variations/ButtonExampleSize.shorthand.tsx', - hash: '14569123258309762053', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Variations/index.tsx', - hash: '17927782900865629373', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Button/Visual/ButtonExampleCompose.shorthand.tsx', - hash: '3313797131089084689', - }, - { file: 'packages/fluentui/docs/src/examples/components/Button/Visual/index.tsx', hash: '18308318623693669223' }, - { file: 'packages/fluentui/docs/src/examples/components/Button/index.tsx', hash: '8430030252345530972' }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/BestPractices/CardBestPractices.tsx', - hash: '6175072564179136722', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Performance/CardMinimal.perf.tsx', - hash: '7683423593541735565', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleBody.tsx', - hash: '3670140939178073629', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleFooter.tsx', - hash: '13947850720017990863', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Slots/CardExampleHeader.tsx', - hash: '3871336181361575552', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Slots/CardExamplePreview.tsx', - hash: '1607326112717492472', - }, - { file: 'packages/fluentui/docs/src/examples/components/Card/Slots/index.tsx', hash: '276288527915583652' }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/States/CardExampleDisabled.tsx', - hash: '12903340330589409049', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/States/CardExampleSelected.tsx', - hash: '4743335789023795653', - }, - { file: 'packages/fluentui/docs/src/examples/components/Card/States/index.tsx', hash: '4326877489289388573' }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleContextMenu.tsx', - hash: '16278614755070598860', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleExpandable.tsx', - hash: '8649390718286655876', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusable.tsx', - hash: '6380226764451546460', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusableChildrenGrid.tsx', - hash: '6133487715791923353', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleFocusableGrid.tsx', - hash: '14970933824604047026', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleSelectableGrid.tsx', - hash: '7940517742425222555', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleSimple.tsx', - hash: '14390955054934178808', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Usage/CardExampleWithPreview.tsx', - hash: '6755223202306762576', - }, - { file: 'packages/fluentui/docs/src/examples/components/Card/Usage/index.tsx', hash: '14661769582418275555' }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleCentered.tsx', - hash: '16162090632028658213', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleElevated.tsx', - hash: '4937534743147512554', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleFluid.tsx', - hash: '3882323249492889843', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleHorizontal.tsx', - hash: '7447178276334602059', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleInverted.tsx', - hash: '11869197865997729597', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleQuiet.tsx', - hash: '10258900114037369883', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Variations/CardExampleSize.tsx', - hash: '15604663897001783874', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Card/Variations/index.tsx', - hash: '14404897511921736607', - }, - { file: 'packages/fluentui/docs/src/examples/components/Card/index.tsx', hash: '12440696140065370056' }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/BestPractices/CarouselBestPractices.tsx', - hash: '5104464237642387440', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/Performance/CarouselMinimal.perf.tsx', - hash: '17230944198296978089', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/Types/CarouselExample.shorthand.tsx', - hash: '3019474799700121608', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/Types/CarouselPaginationExample.shorthand.tsx', - hash: '10219382050743159723', - }, - { file: 'packages/fluentui/docs/src/examples/components/Carousel/Types/index.tsx', hash: '16549052418389007332' }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselCircularExample.shorthand.tsx', - hash: '726029106221673650', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselExampleWithFocusableElements.tsx', - hash: '10412458986088851923', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselSlideAnimationExample.shorthand.tsx', - hash: '11437707182698079093', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/CarouselThumbnailsExample.shorthand.tsx', - hash: '3376835901612583306', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Carousel/Variations/index.tsx', - hash: '2236036551358009719', - }, - { file: 'packages/fluentui/docs/src/examples/components/Carousel/index.tsx', hash: '8852005626228076387' }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleActions.shorthand.tsx', - hash: '11499081318773462966', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleHeader.shorthand.tsx', - hash: '17627840143032452273', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleHeaderOverride.shorthand.tsx', - hash: '10286084095369574056', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReactionGroup.shorthand.tsx', - hash: '8638907150003707098', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReactionGroupMeReacting.shorthand.tsx', - hash: '5402390244908178596', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Content/ChatExampleReadStatus.shorthand.tsx', - hash: '17553154374675903213', - }, - { file: 'packages/fluentui/docs/src/examples/components/Chat/Content/index.tsx', hash: '14432992613578840826' }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Performance/ChatDuplicateMessages.perf.tsx', - hash: '5328917073152073046', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Performance/ChatMinimal.perf.tsx', - hash: '17663247331696372307', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Performance/ChatWithPopover.perf.tsx', - hash: '929883892646559438', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Performance/index.tsx', - hash: '8533950221499546871', - }, - { file: 'packages/fluentui/docs/src/examples/components/Chat/Playground.tsx', hash: '482100186069058437' }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Rtl/ChatExample.rtl.tsx', - hash: '12890530333579628741', - }, - { file: 'packages/fluentui/docs/src/examples/components/Chat/Rtl/index.tsx', hash: '7651977407876655266' }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExample.shorthand.tsx', - hash: '6447802063656597961', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleComfyRefresh.tsx', - hash: '9349394183632742337', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleCompact.shorthand.tsx', - hash: '13715037756615115885', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleCompact.tsx', - hash: '6775219425799289574', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleContentPosition.shorthand.tsx', - hash: '15861811597540900890', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatExampleDetails.shorthand.tsx', - hash: '8029995682815196086', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatMessageExampleBadge.shorthand.tsx', - hash: '17776264375069324126', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Types/ChatMessageExampleStyled.shorthand.tsx', - hash: '5027022958570589282', - }, - { file: 'packages/fluentui/docs/src/examples/components/Chat/Types/index.tsx', hash: '10701634754456562503' }, - { - file: 'packages/fluentui/docs/src/examples/components/Chat/Usage/ChatExampleInScrollable.shorthand.tsx', - hash: '8374238996916588629', - }, - { file: 'packages/fluentui/docs/src/examples/components/Chat/Usage/index.tsx', hash: '9980155400741893378' }, - { file: 'packages/fluentui/docs/src/examples/components/Chat/index.tsx', hash: '8493367295079208248' }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/BestPractices/CheckboxBestPractices.tsx', - hash: '18223611762110439939', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/Performance/CheckboxMinimal.perf.tsx', - hash: '548755024468105758', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/Rtl/CheckboxExample.rtl.tsx', - hash: '1128826523532930705', - }, - { file: 'packages/fluentui/docs/src/examples/components/Checkbox/Rtl/index.tsx', hash: '1395384208118196672' }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/Slots/CheckboxExampleLabel.shorthand.tsx', - hash: '13064520088118359332', - }, - { file: 'packages/fluentui/docs/src/examples/components/Checkbox/Slots/index.tsx', hash: '9385043156927810366' }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleChecked.shorthand.tsx', - hash: '1021615820140575379', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleCheckedMixed.tsx', - hash: '2279404225432948332', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/States/CheckboxExampleDisabled.shorthand.tsx', - hash: '5799044504758222972', - }, - { file: 'packages/fluentui/docs/src/examples/components/Checkbox/States/index.tsx', hash: '1443320154760987498' }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/Types/CheckboxExample.shorthand.tsx', - hash: '2803361228273614712', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/Types/CheckboxExampleToggle.shorthand.tsx', - hash: '6490823576580920212', - }, - { file: 'packages/fluentui/docs/src/examples/components/Checkbox/Types/index.tsx', hash: '6143827655904626084' }, - { - file: 'packages/fluentui/docs/src/examples/components/Checkbox/Visual/CheckboxExampleLabelFlexColumn.shorthand.tsx', - hash: '1248585251262906403', - }, - { file: 'packages/fluentui/docs/src/examples/components/Checkbox/Visual/index.tsx', hash: '4703329705091263656' }, - { file: 'packages/fluentui/docs/src/examples/components/Checkbox/index.tsx', hash: '7699016520185168354' }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/BestPractices/DatepickerBestPractices.tsx', - hash: '14658038377629620116', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Performance/DatepickerMinimal.perf.tsx', - hash: '11883786566201308365', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Performance/index.tsx', - hash: '10285630222835501286', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerCellExample.shorthand.tsx', - hash: '2216960557906603023', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerExampleClearable.shorthand.tsx', - hash: '691503666246176747', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerHeaderCellExample.shorthand.tsx', - hash: '2954066980042365464', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/DatepickerHeaderExample.shorthand.tsx', - hash: '4738431955016572938', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Slots/index.tsx', - hash: '18386959363850184352', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleDisabled.shorthand.tsx', - hash: '12255600267163387649', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleRequired.shorthand.tsx', - hash: '17702199861644173417', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleSelectedDate.shorthand.tsx', - hash: '8532825318168330503', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/DatepickerExampleToday.shorthand.tsx', - hash: '8713734961732335095', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/States/index.tsx', - hash: '11296468703106288343', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExample.shorthand.tsx', - hash: '6846107523874285218', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleLocalizationStrings.shorthand.tsx', - hash: '17524216608660332950', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleMinMaxDate.shorthand.tsx', - hash: '7777605866903021481', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleNoInput.shorthand.tsx', - hash: '16605143463380033608', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleOpen.shorthand.tsx', - hash: '4543526859621525767', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleRestrictedDates.shorthand.tsx', - hash: '11273520771450330651', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/DatepickerExampleWeek.shorthand.tsx', - hash: '17700066685642168358', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Types/index.tsx', - hash: '5123663188391578147', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerFirstWeekDayExample.shorthand.tsx', - hash: '6801357975378394323', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerFormatExample.shorthand.tsx', - hash: '6926030396132538520', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerNoInputPlaceholderExample.shorthand.tsx', - hash: '11592675238822744600', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/DatepickerParseExample.shorthand.tsx', - hash: '11358215010058344895', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Usage/index.tsx', - hash: '12813493520771041761', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Variations/DatepickerExampleStandaloneCalendarButton.shorthand.tsx', - hash: '14190744365069654201', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Variations/DatepickerExampleStandaloneCalendarInput.shorthand.tsx', - hash: '3280141344322348081', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/Variations/index.tsx', - hash: '14877018099015199576', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Datepicker/datepickerCalendarCellSelector.ts', - hash: '4512443095283466106', - }, - { file: 'packages/fluentui/docs/src/examples/components/Datepicker/index.tsx', hash: '2577934043163934210' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/BestPractices/DialogBestPractices.tsx', - hash: '14260830851629896857', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleContent.shorthand.tsx', - hash: '12377463484984823727', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleFooter.shorthand.tsx', - hash: '17988792199130038865', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleFullWidth.shorthand.tsx', - hash: '16078279811160423478', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleHeaderAction.shorthand.tsx', - hash: '12456284637876482599', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleZoomContent.shorthand.tsx', - hash: '7395294606546393853', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/DialogExampleZoomCustomFooter.shorthand.tsx', - hash: '12988031539830275311', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dialog/Content/index.tsx', hash: '7519254899298717488' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Performance/DialogMinimal.perf.tsx', - hash: '12277136355006118770', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Rtl/DialogExample.rtl.tsx', - hash: '12130562440285824815', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dialog/Rtl/index.tsx', hash: '6285202181558572658' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Types/DialogExample.shorthand.tsx', - hash: '13993226013804074696', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dialog/Types/index.tsx', hash: '18282978571056602747' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Usage/DialogExampleCallbacks.shorthand.tsx', - hash: '2381692102417755746', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dialog/Usage/index.tsx', hash: '7882165995889355660' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Variations/DialogExampleBackdrop.shorthand.tsx', - hash: '4307433218568996125', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Variations/DialogExampleScroll.shorthand.tsx', - hash: '9671806836586772310', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dialog/Variations/index.tsx', - hash: '16158666808898205471', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dialog/index.tsx', hash: '4142905135655717486' }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Performance/DividerMinimal.perf.tsx', - hash: '1618744828317117143', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Performance/index.tsx', - hash: '2284629446526020790', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Rtl/DividerExample.rtl.tsx', - hash: '12247005208114230384', - }, - { file: 'packages/fluentui/docs/src/examples/components/Divider/Rtl/index.tsx', hash: '7078633835680831899' }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Types/DividerExample.shorthand.tsx', - hash: '5746094543465502941', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Types/DividerExampleContent.shorthand.tsx', - hash: '1611823870656417247', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Types/DividerExampleContent.tsx', - hash: '4194350913838679961', - }, - { file: 'packages/fluentui/docs/src/examples/components/Divider/Types/index.tsx', hash: '11368777759905312335' }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleColor.shorthand.tsx', - hash: '2681676744265735788', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleFitted.shorthand.tsx', - hash: '13684475891877616638', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleImportant.shorthand.tsx', - hash: '437776456355447840', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleImportant.tsx', - hash: '6386113623863546527', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleSize.shorthand.tsx', - hash: '12928272173652669541', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleSize.tsx', - hash: '10864025889517401905', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/DividerExampleVertical.shorthand.tsx', - hash: '14552765098852998269', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Variations/index.tsx', - hash: '1785542878842749187', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Divider/Visuals/DividerExampleRtlAndLtr.tsx', - hash: '9798021593130619224', - }, - { file: 'packages/fluentui/docs/src/examples/components/Divider/Visuals/index.tsx', hash: '9222615053153918782' }, - { file: 'packages/fluentui/docs/src/examples/components/Divider/index.tsx', hash: '14235140459762121043' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/BestPractices/DropdownBestPractices.tsx', - hash: '16726827083630930640', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Performance/DropdownManyItems.perf.tsx', - hash: '8315175362323959522', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Performance/DropdownMinimal.perf.tsx', - hash: '12532562062498627334', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Performance/index.tsx', - hash: '5374991165033626972', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Rtl/DropdownExample.rtl.tsx', - hash: '13183277357458072753', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Rtl/index.tsx', hash: '2820325268687576580' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Slots/DropdownExampleHeaderMessage.shorthand.tsx', - hash: '12627865128962361689', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Slots/index.tsx', hash: '3945549868267392271' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/State/DropdownExampleDisabled.shorthand.tsx', - hash: '6213534420806785166', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/State/DropdownExampleLoading.shorthand.tsx', - hash: '14531425989713052820', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dropdown/State/index.tsx', hash: '17101438230209286123' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExample.shorthand.tsx', - hash: '17080911572702169315', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleClearable.shorthand.tsx', - hash: '14649463536937589220', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleFreeform.shorthand.tsx', - hash: '36631747644339491', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleInline.shorthand.tsx', - hash: '2368225702870682798', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleInverted.shorthand.tsx', - hash: '1256304487568835216', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleMultiple.shorthand.tsx', - hash: '14453131596234298619', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleSearch.shorthand.tsx', - hash: '11345981179193784990', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/DropdownExampleSearchMultiple.shorthand.tsx', - hash: '16912889630350609564', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Types/index.tsx', hash: '11249932439843066393' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleControlled.shorthand.tsx', - hash: '10914293369711090357', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleHeaderMessage.shorthand.tsx', - hash: '7484846361714883755', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Usage/DropdownExampleRender.shorthand.tsx', - hash: '12735533195513404349', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Usage/index.tsx', hash: '10372174955857748557' }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleOffset.shorthand.tsx', - hash: '8878106917840913450', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExamplePosition.shorthand.tsx', - hash: '15030695889532996878', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleFluid.shorthand.tsx', - hash: '2823634216814611259', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleFrenchLanguage.shorthand.tsx', - hash: '11500036917111802737', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/DropdownExampleSearchMultipleImageAndContent.shorthand.tsx', - hash: '899871089361290733', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Variations/index.tsx', - hash: '10984380790981850041', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Dropdown/Visual/DropdownExampleCustomClearable.shorthand.tsx', - hash: '9297663856524401359', - }, - { file: 'packages/fluentui/docs/src/examples/components/Dropdown/Visual/index.tsx', hash: '9129097450560402411' }, - { file: 'packages/fluentui/docs/src/examples/components/Dropdown/index.tsx', hash: '10937488397683749460' }, - { - file: 'packages/fluentui/docs/src/examples/components/Embed/Performance/EmbedMinimal.perf.tsx', - hash: '13349535745803780087', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Embed/Slots/EmbedExampleVideo.shorthand.tsx', - hash: '5521089746614766109', - }, - { file: 'packages/fluentui/docs/src/examples/components/Embed/Slots/index.tsx', hash: '4311408216226913591' }, - { - file: 'packages/fluentui/docs/src/examples/components/Embed/Usage/EmbedExampleYouTube.shorthand.tsx', - hash: '15513298030058753217', - }, - { file: 'packages/fluentui/docs/src/examples/components/Embed/Usage/index.tsx', hash: '7470763844759721977' }, - { file: 'packages/fluentui/docs/src/examples/components/Embed/index.tsx', hash: '10144010630743895149' }, - { - file: 'packages/fluentui/docs/src/examples/components/Flex/Performance/FlexMinimal.perf.tsx', - hash: '12501107038452642246', - }, - { file: 'packages/fluentui/docs/src/examples/components/Flex/Recipes.mdx', hash: '17295467775326810200' }, - { - file: 'packages/fluentui/docs/src/examples/components/Flex/Rtl/FlexExample.rtl.tsx', - hash: '8048699383448891868', - }, - { file: 'packages/fluentui/docs/src/examples/components/Flex/Rtl/index.tsx', hash: '12333133982344563985' }, - { - file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleColumns.shorthand.tsx', - hash: '9494669297093995444', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleInput.shorthand.tsx', - hash: '6151230046666799951', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleItemsAlignment.shorthand.tsx', - hash: '17665003590332687702', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleMediaCard.shorthand.tsx', - hash: '5255190600379815597', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleMixedAlignment.shorthand.tsx', - hash: '14670896287883140894', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Flex/Types/FlexExampleNavMenu.shorthand.tsx', - hash: '42145263656539355', - }, - { file: 'packages/fluentui/docs/src/examples/components/Flex/Types/index.tsx', hash: '2783746349735568035' }, - { file: 'packages/fluentui/docs/src/examples/components/Flex/index.tsx', hash: '9529941190943702247' }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/BestPractices/FormBestPractices.tsx', - hash: '4136184157997267686', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Performance/FormMinimal.perf.tsx', - hash: '2571551938411128386', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Rtl/FormExample.rtl.tsx', - hash: '10506727184234633255', - }, - { file: 'packages/fluentui/docs/src/examples/components/Form/Rtl/index.tsx', hash: '4614138208583971475' }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Types/FormExampleBase.tsx', - hash: '10121099561877496153', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Types/FormExampleInline.tsx', - hash: '2538286387249164206', - }, - { file: 'packages/fluentui/docs/src/examples/components/Form/Types/index.tsx', hash: '16126961388117750847' }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleCheckbox.tsx', - hash: '4046681236153968736', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleDatepicker.tsx', - hash: '11361687445062035356', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleDropdown.tsx', - hash: '16899693285659366324', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleErrorAndSuccessful.tsx', - hash: '13266856889811549954', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Usage/FormExampleSlider.tsx', - hash: '10198029342425902438', - }, - { file: 'packages/fluentui/docs/src/examples/components/Form/Usage/index.tsx', hash: '15086437689148636434' }, - { - file: 'packages/fluentui/docs/src/examples/components/Form/Variants/FormExampleComponents.tsx', - hash: '2573371969871522344', - }, - { file: 'packages/fluentui/docs/src/examples/components/Form/Variants/index.tsx', hash: '9823028957988922526' }, - { file: 'packages/fluentui/docs/src/examples/components/Form/index.tsx', hash: '11972671644921053635' }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/BestPractices/GridBestPractices.tsx', - hash: '1193691283068665299', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Performance/GridMinimal.perf.tsx', - hash: '4079832271606619442', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Rtl/GridExample.rtl.tsx', - hash: '12468929948335278655', - }, - { file: 'packages/fluentui/docs/src/examples/components/Grid/Rtl/index.tsx', hash: '7983227345755296662' }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Types/GridExample.shorthand.tsx', - hash: '11467276478685629311', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Types/GridExample.tsx', - hash: '8643475293237398036', - }, - { file: 'packages/fluentui/docs/src/examples/components/Grid/Types/index.tsx', hash: '13229359958304259286' }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumns.shorthand.tsx', - hash: '6425137964439956574', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumns.tsx', - hash: '7420224291209639457', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumnsAndRows.shorthand.tsx', - hash: '3567925282059655667', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleColumnsAndRows.tsx', - hash: '4824891686913113193', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleKeyboardNavigable.shorthand.tsx', - hash: '9131649190027849541', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleKeyboardNavigable.tsx', - hash: '4293702764822798471', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleRows.shorthand.tsx', - hash: '15962531291130856093', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/GridExampleRows.tsx', - hash: '8543754780402711167', - }, - { file: 'packages/fluentui/docs/src/examples/components/Grid/Variations/index.tsx', hash: '9972281313863506308' }, - { file: 'packages/fluentui/docs/src/examples/components/Grid/index.tsx', hash: '10416747021370596299' }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Performance/HeaderMinimal.perf.tsx', - hash: '5323374520410167057', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Performance/HeaderSlots.perf.tsx', - hash: '8830529866730138179', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Performance/index.tsx', - hash: '5795973500029634072', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Rtl/HeaderExample.rtl.tsx', - hash: '8397027536443740326', - }, - { file: 'packages/fluentui/docs/src/examples/components/Header/Rtl/index.tsx', hash: '14621479683050448407' }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Types/HeaderExample.shorthand.tsx', - hash: '15385530257979275701', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Types/HeaderExample.tsx', - hash: '7968422868759978259', - }, - { file: 'packages/fluentui/docs/src/examples/components/Header/Types/index.tsx', hash: '15468349939030115969' }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExample.shorthand.tsx', - hash: '11022697380901723002', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleAlign.tsx', - hash: '8225784069630751692', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleColor.shorthand.tsx', - hash: '17405830202188634827', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleColor.tsx', - hash: '16859685718898289475', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescription.shorthand.tsx', - hash: '15241634986814391461', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescription.tsx', - hash: '14029563099860337841', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescriptionCustomization.shorthand.tsx', - hash: '1620088646142946953', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/HeaderExampleDescriptionCustomization.tsx', - hash: '6282939784028655517', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Header/Variations/index.tsx', - hash: '16357029446829677127', - }, - { file: 'packages/fluentui/docs/src/examples/components/Header/index.tsx', hash: '15138625360246765758' }, - { - file: 'packages/fluentui/docs/src/examples/components/Image/Performance/ImageMinimal.perf.tsx', - hash: '4482660474477179886', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Image/Rtl/ImageExample.rtl.tsx', - hash: '568591531191807451', - }, - { file: 'packages/fluentui/docs/src/examples/components/Image/Rtl/index.tsx', hash: '16250337141935650130' }, - { - file: 'packages/fluentui/docs/src/examples/components/Image/Types/ImageExample.shorthand.tsx', - hash: '7033086185340563868', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Image/Types/ImageExampleAvatar.shorthand.tsx', - hash: '16106436339944453184', - }, - { file: 'packages/fluentui/docs/src/examples/components/Image/Types/index.tsx', hash: '8871094264144824226' }, - { - file: 'packages/fluentui/docs/src/examples/components/Image/Variations/ImageExampleCircular.tsx', - hash: '16218168966715421410', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Image/Variations/ImageExampleFluid.tsx', - hash: '3771396024984176184', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Image/Variations/index.tsx', - hash: '12718161915963599283', - }, - { file: 'packages/fluentui/docs/src/examples/components/Image/index.tsx', hash: '14778751457497188202' }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/BestPractices/InputBestPractices.tsx', - hash: '4536840931722831119', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Performance/InputMinimal.perf.tsx', - hash: '1742422238398296030', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Rtl/InputExample.rtl.tsx', - hash: '5453138406020243009', - }, - { file: 'packages/fluentui/docs/src/examples/components/Input/Rtl/index.tsx', hash: '5209340204092211504' }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Slots/InputExampleLabel.shorthand.tsx', - hash: '3651591885077867826', - }, - { file: 'packages/fluentui/docs/src/examples/components/Input/Slots/index.tsx', hash: '13661927172029543202' }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/State/InputExampleDisabled.shorthand.tsx', - hash: '14365373317059379602', - }, - { file: 'packages/fluentui/docs/src/examples/components/Input/State/index.tsx', hash: '12831465518877123178' }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Types/InputExample.shorthand.tsx', - hash: '6755849521905541062', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Types/InputInvertedExample.shorthand.tsx', - hash: '4117066794446027951', - }, - { file: 'packages/fluentui/docs/src/examples/components/Input/Types/index.tsx', hash: '7632673967977727996' }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleClearable.shorthand.tsx', - hash: '9404606633555359873', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleFluid.shorthand.tsx', - hash: '15266243787978450262', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIcon.shorthand.tsx', - hash: '15895186166085714878', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIconClearable.shorthand.tsx', - hash: '7104733062363489717', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleIconPosition.shorthand.tsx', - hash: '9935358360489714868', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInline.shorthand.tsx', - hash: '5468257279265642045', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInlineIconClearable.shorthand.tsx', - hash: '10478121607870935520', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleInputSlot.shorthand.tsx', - hash: '2201703452647000286', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleTargeting.shorthand.tsx', - hash: '4209791436950689520', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/InputExampleWrapperSlot.shorthand.tsx', - hash: '7800523774844648983', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Input/Variations/index.tsx', - hash: '13104632528145391550', - }, - { file: 'packages/fluentui/docs/src/examples/components/Input/index.tsx', hash: '1509719792316300905' }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleContent.shorthand.tsx', - hash: '14894828782699454086', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleContentMedia.shorthand.tsx', - hash: '7573352761909351504', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleEndMedia.shorthand.tsx', - hash: '15740083457201401325', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeader.shorthand.tsx', - hash: '8410753305863486273', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeaderContent.shorthand.tsx', - hash: '16895479213370900048', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleHeaderMedia.shorthand.tsx', - hash: '11253012967216694098', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/ItemLayoutExampleMedia.shorthand.tsx', - hash: '17926492654675453519', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Content/index.tsx', - hash: '13030288130334378633', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Performance/ItemLayoutMinimal.perf.tsx', - hash: '6631643315923856192', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Rtl/ItemLayoutExample.rtl.tsx', - hash: '2444060836574253170', - }, - { file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Rtl/index.tsx', hash: '2780506083804436194' }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Types/ItemLayoutExample.shorthand.tsx', - hash: '10247570755509089808', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Types/ItemLayoutExampleSelection.shorthand.tsx', - hash: '4981524316985719543', - }, - { - file: 'packages/fluentui/docs/src/examples/components/ItemLayout/Types/index.tsx', - hash: '18017725912507536879', - }, - { file: 'packages/fluentui/docs/src/examples/components/ItemLayout/index.tsx', hash: '10709585972443187997' }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExample.shorthand.tsx', - hash: '2696046522043543355', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExample.tsx', - hash: '10559071231023839069', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleContentCustomization.shorthand.tsx', - hash: '9851366695884214163', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleIcon.shorthand.tsx', - hash: '8646930987303616079', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleIconPosition.shorthand.tsx', - hash: '1622761577410217418', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleImage.shorthand.tsx', - hash: '1926729956091713246', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Content/LabelExampleImagePosition.shorthand.tsx', - hash: '18244060208028061242', - }, - { file: 'packages/fluentui/docs/src/examples/components/Label/Content/index.tsx', hash: '14951390822192745489' }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Performance/LabelMinimal.perf.tsx', - hash: '5844538879014925645', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Rtl/LabelExample.rtl.tsx', - hash: '12525130322147919346', - }, - { file: 'packages/fluentui/docs/src/examples/components/Label/Rtl/index.tsx', hash: '6166665281101154932' }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Variations/LabelExampleCircular.shorthand.tsx', - hash: '5966462711603098031', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Variations/LabelExampleColor.shorthand.tsx', - hash: '16476847855911341045', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Label/Variations/index.tsx', - hash: '9682314536491900536', - }, - { file: 'packages/fluentui/docs/src/examples/components/Label/index.tsx', hash: '15608403142644399383' }, - { - file: 'packages/fluentui/docs/src/examples/components/Layout/Performance/LayoutMinimal.perf.tsx', - hash: '10124786163741257471', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Layout/Types/LayoutExample.shorthand.tsx', - hash: '10004038094153834525', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Layout/Types/LayoutExampleVertical.shorthand.tsx', - hash: '13323460735978321752', - }, - { file: 'packages/fluentui/docs/src/examples/components/Layout/Types/index.tsx', hash: '3361086206811625978' }, - { - file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExample.shorthand.tsx', - hash: '10004038094153834525', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleDisappearing.shorthand.tsx', - hash: '4691140278882749774', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleGap.shorthand.tsx', - hash: '7999888195762166326', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/LayoutExampleReducing.shorthand.tsx', - hash: '634677705856392968', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Layout/Variations/index.tsx', - hash: '763791615822724394', - }, - { file: 'packages/fluentui/docs/src/examples/components/Layout/index.tsx', hash: '9774975278713176393' }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleContent.shorthand.tsx', - hash: '9231151213039467861', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleContent.tsx', - hash: '10885188019894963771', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleContentMedia.shorthand.tsx', - hash: '4325683898037784798', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleContentMedia.tsx', - hash: '6363831081270265783', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleEndMedia.shorthand.tsx', - hash: '17569021195811716801', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleEndMedia.tsx', - hash: '14049157749409821911', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeader.shorthand.tsx', - hash: '12422873342579196668', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeader.tsx', - hash: '1361664582927291347', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderContent.shorthand.tsx', - hash: '15027504677421412306', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderContent.tsx', - hash: '68215173808336733', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderMedia.shorthand.tsx', - hash: '4824113237188296040', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleHeaderMedia.tsx', - hash: '8487392130030578913', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleMedia.shorthand.tsx', - hash: '18000108466405842359', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Content/ListExampleMedia.tsx', - hash: '9930526857857226875', - }, - { file: 'packages/fluentui/docs/src/examples/components/List/Content/index.tsx', hash: '1748480120885819339' }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Performance/ListCommon.perf.tsx', - hash: '6561515821134606538', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Performance/ListMinimal.perf.tsx', - hash: '9571773797160334331', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Performance/ListNested.perf.tsx', - hash: '3216303131903272594', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Performance/ListWith60ListItems.perf.tsx', - hash: '3855415483199286809', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Performance/index.tsx', - hash: '14285660182588942022', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Rtl/ListExample.rtl.tsx', - hash: '13442933759393369223', - }, - { file: 'packages/fluentui/docs/src/examples/components/List/Rtl/index.tsx', hash: '11819586909959517693' }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExample.shorthand.tsx', - hash: '15333657866263057316', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExample.tsx', - hash: '16258065849372258640', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleNavigable.shorthand.tsx', - hash: '6407980487296804294', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleNavigable.tsx', - hash: '7635503171903939112', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectable.shorthand.tsx', - hash: '1873769023807454836', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectable.tsx', - hash: '1698957149768324171', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Types/ListExampleSelectableControlled.shorthand.tsx', - hash: '12782378747286920342', - }, - { file: 'packages/fluentui/docs/src/examples/components/List/Types/index.tsx', hash: '5415106785487907370' }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Usage/ListExampleMemo.tsx', - hash: '8917577665825762351', - }, - { file: 'packages/fluentui/docs/src/examples/components/List/Usage/index.tsx', hash: '15349833127032366157' }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Variations/ListExampleFixedTruncate.shorthand.tsx', - hash: '2730379426120339855', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Variations/ListExampleHorizontal.shorthand.tsx', - hash: '16997648851325108063', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Variations/ListExampleTruncate.shorthand.tsx', - hash: '16550693054611575574', - }, - { - file: 'packages/fluentui/docs/src/examples/components/List/Variations/ListExampleTruncate.tsx', - hash: '13452277803109662735', - }, - { file: 'packages/fluentui/docs/src/examples/components/List/Variations/index.tsx', hash: '5881166162270636169' }, - { file: 'packages/fluentui/docs/src/examples/components/List/index.tsx', hash: '6856587354159162620' }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/BestPractices/LoaderBestPractices.tsx', - hash: '17076787117927919687', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Performance/LoaderMinimal.perf.tsx', - hash: '10825944497092424482', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Performance/index.tsx', - hash: '2672455834481754469', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Rtl/LoaderExample.rtl.tsx', - hash: '6894689127573694081', - }, - { file: 'packages/fluentui/docs/src/examples/components/Loader/Rtl/index.tsx', hash: '11467653178340820209' }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Types/LoaderExample.shorthand.tsx', - hash: '17386374381567659804', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Types/LoaderExampleLabel.shorthand.tsx', - hash: '536227871747389527', - }, - { file: 'packages/fluentui/docs/src/examples/components/Loader/Types/index.tsx', hash: '1853722176510785772' }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Usage/LoaderExampleDelay.tsx', - hash: '3124554476920325960', - }, - { file: 'packages/fluentui/docs/src/examples/components/Loader/Usage/index.tsx', hash: '12904058592937147794' }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleInline.tsx', - hash: '1865826805469384195', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleLabelPosition.shorthand.tsx', - hash: '14823352032932489651', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleSecondary.tsx', - hash: '6805369726553471930', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/LoaderExampleSize.tsx', - hash: '928971371710753426', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Loader/Variations/index.tsx', - hash: '7707531497740640339', - }, - { file: 'packages/fluentui/docs/src/examples/components/Loader/index.tsx', hash: '15491664950196071284' }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/BestPractices/MenuBestPractices.tsx', - hash: '1148764178301497175', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Performance/MenuMinimal.perf.tsx', - hash: '2401373787281935539', - }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/Playground.tsx', hash: '1091516363403052049' }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Rtl/MenuExample.rtl.tsx', - hash: '11856368448634044769', - }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/Rtl/index.tsx', hash: '11822002180748385531' }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDivider.shorthand.tsx', - hash: '15129455285604720244', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDivider.tsx', - hash: '11841541853492995378', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDividerHorizontal.shorthand.tsx', - hash: '13359961286051787592', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleDividerHorizontal.tsx', - hash: '5143724620376855284', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleIconOnly.shorthand.tsx', - hash: '11000640034821314031', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleIconOnly.tsx', - hash: '2306115093079629299', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleSlot.shorthand.tsx', - hash: '9656116265171394237', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleSlot.tsx', - hash: '945046029822481092', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleWithIcons.shorthand.tsx', - hash: '4785937693664823680', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/MenuExampleWithIcons.tsx', - hash: '2971564546782610091', - }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/Slots/index.tsx', hash: '6283686420977361754' }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/States/MenuControlledExample.shorthand.tsx', - hash: '10194642940947694217', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/States/MenuItemExampleDisabled.shorthand.tsx', - hash: '235258550393281513', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/States/MenuItemExampleDisabled.tsx', - hash: '4812993067582864952', - }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/States/index.tsx', hash: '17402268562551851474' }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExample.shorthand.tsx', - hash: '18127778721870174508', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExample.tsx', - hash: '4746656654908753746', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExamplePointing.shorthand.tsx', - hash: '3306766872106443980', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExamplePointing.tsx', - hash: '9515561015913587630', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.shorthand.tsx', - hash: '8847444862932826819', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.tsx', - hash: '3492819735314541593', - }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/Types/index.tsx', hash: '16878301856711676587' }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleTabList.shorthand.tsx', - hash: '7610120576477353894', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleTabList.tsx', - hash: '2011627756318785489', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleToolbar.shorthand.tsx', - hash: '17064202586037134935', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenu.shorthand.tsx', - hash: '5596368956995949414', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenuControlled.shorthand.tsx', - hash: '220813465245031774', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithSubmenuHover.shorthand.tsx', - hash: '17161303855803153450', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithTooltip.shorthand.tsx', - hash: '6243550488720737656', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/MenuExampleWithTooltip.tsx', - hash: '12000097960576681213', - }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/Usage/index.tsx', hash: '12302412292361952698' }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleFluid.shorthand.tsx', - hash: '13064471807127524035', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleFluid.tsx', - hash: '13692909798327607747', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVertical.shorthand.tsx', - hash: '13733685118568006661', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPointing.shorthand.tsx', - hash: '8068757237899528017', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPointing.tsx', - hash: '13474885059913991450', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/MenuExampleVerticalPrimary.shorthand.tsx', - hash: '9419549282178692813', - }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/Variations/index.tsx', hash: '9812201022681861443' }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExamplePositioning.shorthand.tsx', - hash: '7352296603393000933', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExamplePositioningUpdate.shorthand.tsx', - hash: '16893348791643087442', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Menu/Visual/MenuExampleVertical.tsx', - hash: '1918671705400028108', - }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/Visual/index.tsx', hash: '14921709986822918982' }, - { file: 'packages/fluentui/docs/src/examples/components/Menu/index.tsx', hash: '7093431700049905369' }, - { - file: 'packages/fluentui/docs/src/examples/components/MenuButton/Performance/MenuButtonMinimal.perf.tsx', - hash: '8542732171269113775', - }, - { - file: 'packages/fluentui/docs/src/examples/components/MenuButton/Rtl/MenuButtonExample.rtl.tsx', - hash: '6337724502663305552', - }, - { file: 'packages/fluentui/docs/src/examples/components/MenuButton/Rtl/index.tsx', hash: '6638186061182872564' }, - { - file: 'packages/fluentui/docs/src/examples/components/MenuButton/State/MenuButtonExampleOpen.shorthand.tsx', - hash: '2608597770808588352', - }, - { - file: 'packages/fluentui/docs/src/examples/components/MenuButton/State/index.tsx', - hash: '14634225165658357467', - }, - { - file: 'packages/fluentui/docs/src/examples/components/MenuButton/Usage/MenuButtonExampleContextMenu.shorthand.tsx', - hash: '1026610848202498026', - }, - { - file: 'packages/fluentui/docs/src/examples/components/MenuButton/Usage/MenuButtonExampleOn.shorthand.tsx', - hash: '3135948295889322686', - }, - { - file: 'packages/fluentui/docs/src/examples/components/MenuButton/Usage/index.tsx', - hash: '10027429472797848590', - }, - { file: 'packages/fluentui/docs/src/examples/components/MenuButton/index.tsx', hash: '16849312605865228993' }, - { - file: 'packages/fluentui/docs/src/examples/components/PerformanceTests/Performance/Roster.perf.tsx', - hash: '1671137001377166992', - }, - { - file: 'packages/fluentui/docs/src/examples/components/PerformanceTests/index.tsx', - hash: '16182572711134628967', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/BestPractices/PillBestPractices.tsx', - hash: '15184619707213158796', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/State/PillExampleDisabled.tsx', - hash: '225635531870302008', - }, - { file: 'packages/fluentui/docs/src/examples/components/Pill/State/index.tsx', hash: '7850230691816422967' }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Types/PillExample.tsx', - hash: '3917196493748856429', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Types/PillsExample.tsx', - hash: '8180071303992218841', - }, - { file: 'packages/fluentui/docs/src/examples/components/Pill/Types/index.tsx', hash: '11535681964715845934' }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleActionable.tsx', - hash: '13550250194486157707', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleAppearance.tsx', - hash: '12642313646398949118', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleIcon.tsx', - hash: '3033494631218963635', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleImage.tsx', - hash: '12025962676000518988', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleRectangular.tsx', - hash: '9475227123919005662', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleSelectable.tsx', - hash: '4059077961421342466', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/PillExampleSizes.tsx', - hash: '1372461143642718047', - }, - { file: 'packages/fluentui/docs/src/examples/components/Pill/Variations/index.tsx', hash: '4794134926682899725' }, - { file: 'packages/fluentui/docs/src/examples/components/Pill/index.tsx', hash: '308800105363798938' }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/BestPractices/PopupBestPractices.tsx', - hash: '14691495679088971408', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Performance/PopupMinimal.perf.tsx', - hash: '769127780080565910', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Rtl/PopupExample.rtl.tsx', - hash: '4025468581995924373', - }, - { file: 'packages/fluentui/docs/src/examples/components/Popup/Rtl/index.tsx', hash: '10873636211257697823' }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupControlledExample.shorthand.tsx', - hash: '11360271729888420335', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupControlledExample.tsx', - hash: '15236078454659808077', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupCustomTargetExample.shorthand.tsx', - hash: '14177824506531876219', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupCustomTargetExample.tsx', - hash: '15618421921267612568', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExample.shorthand.tsx', - hash: '5651623114942915273', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExample.tsx', - hash: '2201968360249751569', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExampleInline.shorthand.tsx', - hash: '16143307516772722391', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExampleInline.tsx', - hash: '15436059692901633142', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupExamplePointing.shorthand.tsx', - hash: '11380429919678701304', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Types/PopupFocusTrapExample.shorthand.tsx', - hash: '4844970199294400171', - }, - { file: 'packages/fluentui/docs/src/examples/components/Popup/Types/index.tsx', hash: '1038283187659463283' }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleAsync.shorthand.tsx', - hash: '13310281521799433826', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleCloseButton.shorthand.tsx', - hash: '15497765193228430672', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleCloseButton.tsx', - hash: '9958856842982015940', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleContextOnElement.tsx', - hash: '16810053831311380677', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleNested.shorthand.tsx', - hash: '6977345676829096553', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOn.shorthand.tsx', - hash: '12040021593308161947', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOnMultiple.shorthand.tsx', - hash: '11901628195575852306', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/PopupExampleOnWithFocusTrap.shorthand.tsx', - hash: '11387245286688535625', - }, - { file: 'packages/fluentui/docs/src/examples/components/Popup/Usage/index.tsx', hash: '15583074628811659850' }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExampleAutoSize.shorthand.tsx', - hash: '18051787308840745700', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExampleOffset.shorthand.tsx', - hash: '2598279928927838796', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExamplePosition.shorthand.tsx', - hash: '5014667790535831638', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/PopupExamplePosition.tsx', - hash: '14724531471909272772', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Variations/index.tsx', - hash: '11205808743807307793', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopperExamplePositioning.tsx', - hash: '3402356215985975741', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopperExampleVisibilityModifiers.tsx', - hash: '5930513785737904564', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExampleContainerTransformed.tsx', - hash: '6454123585379870685', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExamplePointerMargin.shorthand.tsx', - hash: '12246850078535057943', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopupExamplePointerOffset.tsx', - hash: '8557789888384105072', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/PopupScrollExample.tsx', - hash: '1092456042955589651', - }, - { file: 'packages/fluentui/docs/src/examples/components/Popup/Visual/index.tsx', hash: '1257556053517955659' }, - { file: 'packages/fluentui/docs/src/examples/components/Popup/index.tsx', hash: '14244818971203151580' }, - { - file: 'packages/fluentui/docs/src/examples/components/Portal/Performance/PortalMinimal.perf.tsx', - hash: '1280050399468706846', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Portal/State/PortalExampleOpen.tsx', - hash: '7747918653201416489', - }, - { file: 'packages/fluentui/docs/src/examples/components/Portal/State/index.tsx', hash: '2471947539793886914' }, - { - file: 'packages/fluentui/docs/src/examples/components/Portal/Types/PortalExample.shorthand.tsx', - hash: '7093133557609363165', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Portal/Types/PortalExample.tsx', - hash: '16973700092145622013', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Portal/Types/PortalExampleFocusTrapped.shorthand.tsx', - hash: '18157629743013996375', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Portal/Types/PortalExampleFocusTrapped.tsx', - hash: '6823047004923659443', - }, - { file: 'packages/fluentui/docs/src/examples/components/Portal/Types/index.tsx', hash: '12807792126420428514' }, - { file: 'packages/fluentui/docs/src/examples/components/Portal/index.tsx', hash: '4816663574998133171' }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Performance/ProviderMergeThemes.perf.tsx', - hash: '10357042662153941278', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Performance/ProviderMinimal.perf.tsx', - hash: '875685099328132794', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Performance/index.tsx', - hash: '14396567022906488393', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderDisableAnimationsExample.shorthand.tsx', - hash: '12158931261228946976', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExample.shorthand.tsx', - hash: '7876580913304867265', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleFocusBorder.shorthand.tsx', - hash: '18315534677363544150', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleRendererFelaPluginFallbackValue.shorthand.tsx', - hash: '9376927013985860098', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleScrollbar.shorthand.tsx', - hash: '14869269664997133421', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderExampleStyles.shorthand.tsx', - hash: '915498641226028817', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Types/ProviderRtlExample.shorthand.tsx', - hash: '971324591208205115', - }, - { file: 'packages/fluentui/docs/src/examples/components/Provider/Types/index.tsx', hash: '1548681423522224763' }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Usage/ProviderExampleTarget.tsx', - hash: '13947434155337757662', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Provider/Usage/ProviderExampleTargetFrame.tsx', - hash: '10241159316166337828', - }, - { file: 'packages/fluentui/docs/src/examples/components/Provider/Usage/index.tsx', hash: '1591294953056712013' }, - { file: 'packages/fluentui/docs/src/examples/components/Provider/index.tsx', hash: '14961953425430424666' }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExample.shorthand.tsx', - hash: '8794932438885348780', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExampleChecked.shorthand.tsx', - hash: '10851098855382529857', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Item/RadioGroupItemExampleDisabled.shorthand.tsx', - hash: '11656138751705946866', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Item/index.tsx', - hash: '14497407002158091465', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Performance/RadioGroupMinimal.perf.tsx', - hash: '15053198625352535132', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Rtl/RadioGroupExample.rtl.tsx', - hash: '4471510346867972515', - }, - { file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Rtl/index.tsx', hash: '3850717975312738992' }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupColorPickerExample.shorthand.tsx', - hash: '1963146957713849165', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupExample.shorthand.tsx', - hash: '15576873279871783334', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Types/RadioGroupVerticalExample.shorthand.tsx', - hash: '6799207127209368586', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Types/index.tsx', - hash: '1765245586396985668', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Usage/RadioGroupCustomExample.shorthand.tsx', - hash: '13561962407174439681', - }, - { - file: 'packages/fluentui/docs/src/examples/components/RadioGroup/Usage/index.tsx', - hash: '16582427638124774793', - }, - { file: 'packages/fluentui/docs/src/examples/components/RadioGroup/index.tsx', hash: '8270839829663713461' }, - { - file: 'packages/fluentui/docs/src/examples/components/Reaction/BestPractices/ReactionBestPractices.tsx', - hash: '9273372572363071132', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Reaction/Performance/ReactionMinimal.perf.tsx', - hash: '1050040320316407323', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Reaction/Rtl/ReactionExample.rtl.tsx', - hash: '4248876968732174230', - }, - { file: 'packages/fluentui/docs/src/examples/components/Reaction/Rtl/index.tsx', hash: '2015079013080726768' }, - { - file: 'packages/fluentui/docs/src/examples/components/Reaction/Types/ReactionExample.shorthand.tsx', - hash: '17305309175171886727', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Reaction/Types/ReactionGroupExample.shorthand.tsx', - hash: '5653765080526238268', - }, - { file: 'packages/fluentui/docs/src/examples/components/Reaction/Types/index.tsx', hash: '4533187858270278955' }, - { file: 'packages/fluentui/docs/src/examples/components/Reaction/index.tsx', hash: '13552494968983937345' }, - { - file: 'packages/fluentui/docs/src/examples/components/Ref/Performance/RefMinimal.perf.tsx', - hash: '12734421099743106835', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Ref/Types/RefExample.shorthand.tsx', - hash: '947545573143756399', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Ref/Types/RefForwardingExample.shorthand.tsx', - hash: '12714715976648162928', - }, - { file: 'packages/fluentui/docs/src/examples/components/Ref/Types/index.tsx', hash: '17846087013936532796' }, - { file: 'packages/fluentui/docs/src/examples/components/Ref/index.tsx', hash: '15630243285341224194' }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Performance/SegmentMinimal.perf.tsx', - hash: '6106209279245030302', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Rtl/SegmentExample.rtl.tsx', - hash: '4984314994571441949', - }, - { file: 'packages/fluentui/docs/src/examples/components/Segment/Rtl/index.tsx', hash: '7264175941352362763' }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/States/SegmentExampleDisabled.shorthand.tsx', - hash: '1447666560336142634', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/States/SegmentExampleDisabled.tsx', - hash: '9939080071452335784', - }, - { file: 'packages/fluentui/docs/src/examples/components/Segment/States/index.tsx', hash: '15510553270873649507' }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Types/SegmentExample.shorthand.tsx', - hash: '4521252015219986379', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Types/SegmentExample.tsx', - hash: '14191539552345947271', - }, - { file: 'packages/fluentui/docs/src/examples/components/Segment/Types/index.tsx', hash: '6425801768050272369' }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleColor.shorthand.tsx', - hash: '4018577540283862271', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleColor.tsx', - hash: '11898578555204733155', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleInverted.shorthand.tsx', - hash: '5006772346970981875', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/SegmentExampleInverted.tsx', - hash: '4674557655748034557', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Segment/Variations/index.tsx', - hash: '17210751842025928867', - }, - { file: 'packages/fluentui/docs/src/examples/components/Segment/index.tsx', hash: '13165167863480646704' }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/BestPractices/SkeletonBestPractices.tsx', - hash: '11299779863031749491', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/Performance/SkeletonMinimal.perf.tsx', - hash: '17151828783466057607', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/Performance/index.tsx', - hash: '13068110492453554314', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleCard.tsx', - hash: '11681636039219057772', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleDefault.tsx', - hash: '5298862632862212220', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/Usage/SkeletonExampleList.tsx', - hash: '3994728901000370391', - }, - { file: 'packages/fluentui/docs/src/examples/components/Skeleton/Usage/index.tsx', hash: '8658623377452207069' }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/Variations/SkeletonExampleAnimations.tsx', - hash: '5840051234383928667', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/Variations/SkeletonExampleComponents.tsx', - hash: '6146256229951310790', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Skeleton/Variations/index.tsx', - hash: '4963526455682049474', - }, - { file: 'packages/fluentui/docs/src/examples/components/Skeleton/index.tsx', hash: '4930155455556413528' }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/BestPractices/SliderBestPractices.tsx', - hash: '16971553798248851448', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/Performance/SliderMinimal.perf.tsx', - hash: '5683915994532975308', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/Rtl/SliderExample.rtl.tsx', - hash: '11110359940013906638', - }, - { file: 'packages/fluentui/docs/src/examples/components/Slider/Rtl/index.tsx', hash: '5828325333876107293' }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/States/SliderExampleDisabled.shorthand.tsx', - hash: '14759118373998593037', - }, - { file: 'packages/fluentui/docs/src/examples/components/Slider/States/index.tsx', hash: '5819082409675027780' }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/Types/SliderExample.shorthand.tsx', - hash: '5451486256462625366', - }, - { file: 'packages/fluentui/docs/src/examples/components/Slider/Types/index.tsx', hash: '7324547195758132067' }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/Usage/SliderExampleAction.shorthand.tsx', - hash: '7745582782640576862', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/Usage/SliderExampleForm.shorthand.tsx', - hash: '2111231209869031445', - }, - { file: 'packages/fluentui/docs/src/examples/components/Slider/Usage/index.tsx', hash: '3885309747960239628' }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/Variations/SliderExampleFluid.shorthand.tsx', - hash: '4637699113225425671', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/Variations/SliderExampleVertical.shorthand.tsx', - hash: '17437641334520746677', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Slider/Variations/index.tsx', - hash: '11924443720597252865', - }, - { file: 'packages/fluentui/docs/src/examples/components/Slider/index.tsx', hash: '5206201463804797308' }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/BestPractices/SplitButtonBestPractices.tsx', - hash: '2000902291897511495', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Performance/SplitButtonMinimal.perf.tsx', - hash: '3500159460743084221', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Slots/SplitButtonIconAndContentExample.shorthand.tsx', - hash: '13085330416997443259', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Slots/SplitButtonToggleButtonExample.shorthand.tsx', - hash: '10202142522989619458', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Slots/index.tsx', - hash: '7830322805396207627', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/States/SplitButtonExampleDisabled.shorthand.tsx', - hash: '9620865874445391479', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/States/index.tsx', - hash: '11088877437828424103', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExample.shorthand.tsx', - hash: '18444227571953934657', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExampleFlat.shorthand.tsx', - hash: '2950485000675828410', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExamplePrimary.shorthand.tsx', - hash: '3342011974196004167', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/SplitButtonExampleSmall.shorthand.tsx', - hash: '4795058889272829421', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Types/index.tsx', - hash: '7397507779112941418', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Usage/SplitButtonMainOptionChangeExample.shorthand.tsx', - hash: '9023600002190709651', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Usage/SplitButtonPositioningExampleShorthand.shorthand.tsx', - hash: '8489259726922924849', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Usage/index.tsx', - hash: '16562305662577179570', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Visual/SplitButtonExampleSmallContainer.tsx', - hash: '13278820737132459641', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SplitButton/Visual/index.tsx', - hash: '133837785704319957', - }, - { file: 'packages/fluentui/docs/src/examples/components/SplitButton/index.tsx', hash: '12516377041553330988' }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/BestPractices/StatusBestPractices.tsx', - hash: '2842206438674642976', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/Performance/StatusMinimal.perf.tsx', - hash: '3467231160851523327', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/Types/StatusExample.shorthand.tsx', - hash: '12044042368016196218', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/Types/StatusTypeExample.shorthand.tsx', - hash: '13350748024954070133', - }, - { file: 'packages/fluentui/docs/src/examples/components/Status/Types/index.tsx', hash: '2811353043156884507' }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/Variations/StatusColorExample.shorthand.tsx', - hash: '3987068556304091057', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/Variations/StatusCustomExample.shorthand.tsx', - hash: '2548938419948027605', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/Variations/StatusIconExample.shorthand.tsx', - hash: '5524818873389068964', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/Variations/StatusSizeExample.shorthand.tsx', - hash: '5707553982966709248', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Status/Variations/index.tsx', - hash: '9120569656874648802', - }, - { file: 'packages/fluentui/docs/src/examples/components/Status/index.tsx', hash: '2816738493521398893' }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/BestPractices/IconBestPractices.tsx', - hash: '4072626567249075080', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Performance/IconMinimal.perf.tsx', - hash: '5190579029005441788', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Performance/index.tsx', - hash: '16814660870533487226', - }, - { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Playground.tsx', hash: '8812012154417175908' }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/SvgIconExample.rtl.tsx', - hash: '14644173506843824353', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/SvgIconExampleRotate.rtl.tsx', - hash: '15057195332144981474', - }, - { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Rtl/index.tsx', hash: '1612672297693581878' }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/States/SvgIconExampleDisabled.shorthand.tsx', - hash: '3470608587583128076', - }, - { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/States/index.tsx', hash: '10545754726360979463' }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Types/SvgIconExample.shorthand.tsx', - hash: '10086633318723837555', - }, - { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Types/index.tsx', hash: '17535747109177872834' }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Usage/SvgIconSetExample.shorthand.tsx', - hash: '712280352364671982', - }, - { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Usage/index.tsx', hash: '7787500621832502210' }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleBordered.shorthand.tsx', - hash: '13663934745164798152', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleCircular.shorthand.tsx', - hash: '10039662552931739', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleColor.shorthand.tsx', - hash: '11096658655423303569', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleRotate.shorthand.tsx', - hash: '9100232926702492531', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleSize.shorthand.tsx', - hash: '4188316930125539160', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/SvgIconExampleSpace.shorthand.tsx', - hash: '5992719719142309327', - }, - { - file: 'packages/fluentui/docs/src/examples/components/SvgIcon/Variations/index.tsx', - hash: '167430481359948232', - }, - { file: 'packages/fluentui/docs/src/examples/components/SvgIcon/index.tsx', hash: '17532453811600698785' }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/BestPractices/TableBestPractices.tsx', - hash: '13116952679854774648', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Performance/TableManyItems.perf.tsx', - hash: '8843379085853058190', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Performance/TableMinimal.perf.tsx', - hash: '6451763713975397742', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Performance/index.tsx', - hash: '5455578957824022592', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleNavigable.shorthand.tsx', - hash: '1321971208257382513', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStatic.shorthand.tsx', - hash: '14512923368632768022', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStatic.tsx', - hash: '5761370134080040759', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticCompact.shorthand.tsx', - hash: '5032942767772539042', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticHeadless.shorthand.tsx', - hash: '1984701926003492154', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticRowless.shorthand.tsx', - hash: '12862859521290575140', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Table/Usage/TableExampleStaticTruncate.shorthand.tsx', - hash: '3789911366669930488', - }, - { file: 'packages/fluentui/docs/src/examples/components/Table/Usage/index.tsx', hash: '7212079707197341769' }, - { file: 'packages/fluentui/docs/src/examples/components/Table/index.tsx', hash: '8209480989900875119' }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/BestPractices/TextBestPractices.tsx', - hash: '13758922197264512339', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Performance/TextMinimal.perf.tsx', - hash: '6082426067430696487', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Rtl/TextExample.rtl.tsx', - hash: '18253220197384221052', - }, - { file: 'packages/fluentui/docs/src/examples/components/Text/Rtl/index.tsx', hash: '7916814126989481073' }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleDisabled.shorthand.tsx', - hash: '10005342357982055357', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleDisabled.tsx', - hash: '10682467434654740662', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleError.shorthand.tsx', - hash: '12523200570024022826', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleError.tsx', - hash: '2268246935270334744', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleSuccess.shorthand.tsx', - hash: '2741758658117195387', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleSuccess.tsx', - hash: '12695842757449186386', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleTemporary.shorthand.tsx', - hash: '12157727285162703176', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleTemporary.tsx', - hash: '10489178677587453901', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleTruncated.shorthand.tsx', - hash: '3078072220366705288', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/States/TextExampleTruncated.tsx', - hash: '4460110182775161240', - }, - { file: 'packages/fluentui/docs/src/examples/components/Text/States/index.tsx', hash: '14949581414261390973' }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Types/TextSizesExample.shorthand.tsx', - hash: '3821817729761856817', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Types/TextSizesExample.tsx', - hash: '7100085658781908208', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Types/TextWeightsExample.shorthand.tsx', - hash: '7898500173523470913', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Types/TextWeightsExample.tsx', - hash: '7525213490240351962', - }, - { file: 'packages/fluentui/docs/src/examples/components/Text/Types/index.tsx', hash: '8170466156453858773' }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAlign.shorthand.tsx', - hash: '10090528081301512500', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAlign.tsx', - hash: '9602188435828454504', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAtMention.shorthand.tsx', - hash: '9568381306981174747', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleAtMention.tsx', - hash: '7273333936839378560', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleColor.shorthand.tsx', - hash: '593035909691715305', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleColor.tsx', - hash: '14979348856804430653', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleImportant.shorthand.tsx', - hash: '16945189331882039626', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleImportant.tsx', - hash: '15237789108945229891', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleTimestamp.shorthand.tsx', - hash: '7819109379560072233', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/TextExampleTimestamp.tsx', - hash: '5887414291140974047', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Text/Variations/index.tsx', - hash: '18148527819162278688', - }, - { file: 'packages/fluentui/docs/src/examples/components/Text/index.tsx', hash: '5505583030986180768' }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/Performance/TextAreaMinimal.perf.tsx', - hash: '787763541317368544', - }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/States/TextAreaDisabledExample.shorthand.tsx', - hash: '1398148223167664272', - }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/States/TextAreaValueExample.shorthand.tsx', - hash: '10331862364447876823', - }, - { file: 'packages/fluentui/docs/src/examples/components/TextArea/States/index.tsx', hash: '6698344117014108055' }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/Types/TextAreaExample.shorthand.tsx', - hash: '14733924463548594253', - }, - { file: 'packages/fluentui/docs/src/examples/components/TextArea/Types/index.tsx', hash: '3683382352963583728' }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleHeight.shorthand.tsx', - hash: '1211085858101929404', - }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleMaxLength.shorthand.tsx', - hash: '9562510689858609706', - }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/Usage/TextAreaExampleResize.shorthand.tsx', - hash: '4876842304034575135', - }, - { file: 'packages/fluentui/docs/src/examples/components/TextArea/Usage/index.tsx', hash: '2237594003502654008' }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/Variations/TextAreaExampleFluid.shorthand.tsx', - hash: '3545887297492075263', - }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/Variations/TextAreaExampleInverted.shorthand.tsx', - hash: '17087013464811584960', - }, - { - file: 'packages/fluentui/docs/src/examples/components/TextArea/Variations/index.tsx', - hash: '4704806062673855327', - }, - { file: 'packages/fluentui/docs/src/examples/components/TextArea/index.tsx', hash: '12188412524533348165' }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/BestPractices/ToolbarBestPractices.tsx', - hash: '7690630516491632299', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleCustomContent.shorthand.tsx', - hash: '9350437590169425941', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenu.shorthand.tsx', - hash: '14374045559814061777', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuItemToggle.shorthand.tsx', - hash: '11619348413229807632', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuRadioGroup.shorthand.tsx', - hash: '12932498558254125079', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleMenuWithSubmenu.shorthand.tsx', - hash: '9181858135213078479', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleOverflow.shorthand.tsx', - hash: '14123305047218867877', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExamplePopup.shorthand.tsx', - hash: '6947040501896189720', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/ToolbarExampleRadioGroup.shorthand.tsx', - hash: '10794513158764683839', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Content/index.tsx', - hash: '10481282122210591927', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Performance/CustomToolbar.perf.tsx', - hash: '12947291466463780126', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Performance/ToolbarMinimal.perf.tsx', - hash: '8305048149129463206', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Performance/index.tsx', - hash: '6873361932430304586', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExample.shorthand.tsx', - hash: '7261997885886261076', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExample.tsx', - hash: '14847037438949442568', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Types/ToolbarExampleEditor.shorthand.tsx', - hash: '17212861393922761147', - }, - { file: 'packages/fluentui/docs/src/examples/components/Toolbar/Types/index.tsx', hash: '10426904223974509115' }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExampleActionPopupInMenu.shorthand.tsx', - hash: '16581044095774214451', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExamplePopupInMenu.shorthand.tsx', - hash: '15559958015729382474', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Usage/ToolbarExampleWithTooltip.shorthand.tsx', - hash: '9360949351884014708', - }, - { file: 'packages/fluentui/docs/src/examples/components/Toolbar/Usage/index.tsx', hash: '3741193560673302929' }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleChatMessage.tsx', - hash: '597807714766702107', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleCompose.shorthand.tsx', - hash: '2943541742173150125', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleOverflowPositioning.rtl.tsx', - hash: '8896970923041455552', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleOverflowPositioning.shorthand.tsx', - hash: '8392159780916116340', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/ToolbarExampleVariables.shorthand.tsx', - hash: '973954519216817273', - }, - { file: 'packages/fluentui/docs/src/examples/components/Toolbar/Visual/index.tsx', hash: '2280780949824614506' }, - { file: 'packages/fluentui/docs/src/examples/components/Toolbar/index.tsx', hash: '3955145262259009939' }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/BestPractices/TooltipBestPractices.tsx', - hash: '12264769787489140472', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Performance/TooltipMinimal.perf.tsx', - hash: '8391989295459389123', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Rtl/TooltipExample.rtl.tsx', - hash: '17501348274045005215', - }, - { file: 'packages/fluentui/docs/src/examples/components/Tooltip/Rtl/index.tsx', hash: '8231368109071058412' }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/States/TooltipOpenControlledExample.shorthand.tsx', - hash: '6291038619515393728', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/States/TooltipOpenControlledExample.tsx', - hash: '5717027646454076412', - }, - { file: 'packages/fluentui/docs/src/examples/components/Tooltip/States/index.tsx', hash: '4692331360484948060' }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExample.shorthand.tsx', - hash: '14387757590222922955', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExample.tsx', - hash: '3040316856705893337', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExamplePointing.shorthand.tsx', - hash: '13893994275100589306', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/TooltipExamplePointing.tsx', - hash: '6599114506851208409', - }, - { file: 'packages/fluentui/docs/src/examples/components/Tooltip/Types/index.tsx', hash: '9674896746410444932' }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDialogContent.shorthand.tsx', - hash: '16672009771982611827', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDisabledTrigger.shorthand.tsx', - hash: '9432946789900165765', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleDismissOnContentMouseEnter.tsx', - hash: '1895508525939336631', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleTarget.shorthand.tsx', - hash: '10439831362752589746', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/TooltipExampleTarget.tsx', - hash: '10582264869563911497', - }, - { file: 'packages/fluentui/docs/src/examples/components/Tooltip/Usage/index.tsx', hash: '1997186623739287675' }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Variations/TooltipExamplePosition.shorthand.tsx', - hash: '16854894253130607416', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Variations/TooltipExamplePosition.tsx', - hash: '11808497640753109890', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Variations/index.tsx', - hash: '6731401908207692704', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tooltip/Visual/TooltipExamplePointerMargin.shorthand.tsx', - hash: '12872392821532343061', - }, - { file: 'packages/fluentui/docs/src/examples/components/Tooltip/Visual/index.tsx', hash: '13603571994211374586' }, - { file: 'packages/fluentui/docs/src/examples/components/Tooltip/index.tsx', hash: '2058144254470973416' }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/BestPractices/TreeBestPractices.tsx', - hash: '5269011941010168614', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Performance/TreeMinimal.perf.tsx', - hash: '489946794118741384', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Performance/TreeWith60ListItems.perf.tsx', - hash: '12416168620018960866', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Performance/index.tsx', - hash: '18200172470583665933', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Types/TreeExample.shorthand.tsx', - hash: '10987719260332768720', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Types/TreeExclusiveExample.shorthand.tsx', - hash: '8101844356066711523', - }, - { file: 'packages/fluentui/docs/src/examples/components/Tree/Types/index.tsx', hash: '10799362557329168225' }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/TreeInitiallyOpenExample.shorthand.tsx', - hash: '17737307388979450495', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/TreeMultiselectBasicExample.shorthand.tsx', - hash: '6401296778527594059', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/TreeMultiselectExample.shorthand.tsx', - hash: '12495650092802007936', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/TreeTitleCustomizationExample.shorthand.tsx', - hash: '11056546458539147302', - }, - { file: 'packages/fluentui/docs/src/examples/components/Tree/Usage/index.tsx', hash: '8490738550400826673' }, - { file: 'packages/fluentui/docs/src/examples/components/Tree/index.tsx', hash: '7170014822219967037' }, - { - file: 'packages/fluentui/docs/src/examples/components/Video/Performance/VideoMinimal.perf.tsx', - hash: '4983642729868410970', - }, - { - file: 'packages/fluentui/docs/src/examples/components/Video/Types/VideoExample.shorthand.tsx', - hash: '17150204613404177820', - }, - { file: 'packages/fluentui/docs/src/examples/components/Video/Types/index.tsx', hash: '3759187239395817059' }, - { file: 'packages/fluentui/docs/src/examples/components/Video/index.tsx', hash: '259172865122869557' }, - { file: 'packages/fluentui/docs/src/global.d.ts', hash: '14936706255065350562' }, - { file: 'packages/fluentui/docs/src/index.ejs', hash: '4900373226579034748' }, - { file: 'packages/fluentui/docs/src/index.html', hash: '9592085092662455894' }, - { file: 'packages/fluentui/docs/src/index.tsx', hash: '9684143093088289648' }, - { file: 'packages/fluentui/docs/src/pages/Composition.mdx', hash: '10186491244501102909' }, - { file: 'packages/fluentui/docs/src/pages/Debugging.mdx', hash: '18375082099652213990' }, - { file: 'packages/fluentui/docs/src/pages/Layout.mdx', hash: '3180541691175480199' }, - { file: 'packages/fluentui/docs/src/pages/ShorthandProps.mdx', hash: '15976754765035424430' }, - { - file: 'packages/fluentui/docs/src/public/images/2020_MSFT_Icon_Celebration_placeholder.jpg', - hash: '2925398530444399930', - }, - { file: 'packages/fluentui/docs/src/public/images/avatar/AllanMunger.jpg', hash: '3613388593767865605' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/AmandaBrady.jpg', hash: '5478322598207531530' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/AshleyMcCarthy.jpg', hash: '2754307271603289620' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/CameronEvans.jpg', hash: '5294189036657935794' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/CarlosSlattery.jpg', hash: '10178184967006338761' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/CarolePoland.jpg', hash: '11147373829946689608' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/CecilFolk.jpg', hash: '14225108329051412439' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/CelesteBurton.jpg', hash: '11316135954594294363' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/CharlotteWaltson.jpg', hash: '2774426450807629827' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/ColinBallinger.jpg', hash: '17681050335581092084' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/DaisyPhillips.jpg', hash: '10949871083575484027' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/ElliotWoodward.jpg', hash: '3405760508019923303' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/ElviaAtkins.jpg', hash: '5611089447394491790' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/ErikNason.jpg', hash: '1413017518416054984' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/HenryBrill.jpg', hash: '15861918850676483061' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/IsaacFielder.jpg', hash: '7118775979671994925' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/JohnieMcConnell.jpg', hash: '17367508280523725103' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/KatLarsson.jpg', hash: '2670919255846102339' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/KatriAthokas.jpg', hash: '487231194185754540' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/KevinSturgis.jpg', hash: '3013064020880462661' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/KristinPatterson.jpg', hash: '13412995139552529437' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/LydiaBauer.jpg', hash: '4175277172402001465' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/MauricioAugust.jpg', hash: '5491418556314909777' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/MiguelGarcia.jpg', hash: '3336511373738327952' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/MonaKane.jpg', hash: '18325328201356331133' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/RobertTolbert.jpg', hash: '4300254536734927938' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/RobinCounts.jpg', hash: '13340930959792462337' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/TimDeboer.jpg', hash: '10257406127647555763' }, - { file: 'packages/fluentui/docs/src/public/images/avatar/WandaHoward.jpg', hash: '11836273278313166429' }, - { file: 'packages/fluentui/docs/src/public/images/debug-panel.png', hash: '1763594797351844515' }, - { file: 'packages/fluentui/docs/src/public/images/flex-column.svg', hash: '13420908369708187834' }, - { file: 'packages/fluentui/docs/src/public/images/flex.svg', hash: '12705524441791002011' }, - { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo-black.png', hash: '17285458065082868156' }, - { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo-dev.png', hash: '18384050230717677814' }, - { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo-inverted.png', hash: '7323049856764235678' }, - { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo-white.png', hash: '16873796944914726880' }, - { file: 'packages/fluentui/docs/src/public/images/fluent-ui-logo.png', hash: '4223357833293521573' }, - { file: 'packages/fluentui/docs/src/public/images/grid-page.svg', hash: '5845272755759141768' }, - { file: 'packages/fluentui/docs/src/public/images/grid.svg', hash: '18145659620074116750' }, - { file: 'packages/fluentui/docs/src/public/images/leaves/4.png', hash: '9698121306957908242' }, - { file: 'packages/fluentui/docs/src/public/images/merge-themes.png', hash: '10780854662329195358' }, - { file: 'packages/fluentui/docs/src/public/images/telemetry-popover.png', hash: '14868284227356840303' }, - { - file: 'packages/fluentui/docs/src/public/images/wireframe/centered-paragraph.png', - hash: '10969773164831580739', - }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/image-square.png', hash: '16581090418038656475' }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/image-text.png', hash: '3041367255737086447' }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/image.png', hash: '747346878701406979' }, - { - file: 'packages/fluentui/docs/src/public/images/wireframe/media-paragraph-alt.png', - hash: '4471622377677331550', - }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/media-paragraph.png', hash: '11364423197818185453' }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/paragraph.png', hash: '9934416593936712637' }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/short-paragraph.png', hash: '16858210220403627072' }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/square-image.png', hash: '16889948977609430935' }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/text-image.png', hash: '7314099801723707747' }, - { file: 'packages/fluentui/docs/src/public/images/wireframe/white-image.png', hash: '8491941802269190219' }, - { file: 'packages/fluentui/docs/src/routes.tsx', hash: '548899793948079259' }, - { file: 'packages/fluentui/docs/src/types.ts', hash: '3690356436343090709' }, - { file: 'packages/fluentui/docs/src/utils/componentInfoContext.ts', hash: '14141966615007506394' }, - { file: 'packages/fluentui/docs/src/utils/exampleKebabNameToFilename.ts', hash: '13723917716259720251' }, - { file: 'packages/fluentui/docs/src/utils/examplePathToHash.ts', hash: '17785041489810962660' }, - { file: 'packages/fluentui/docs/src/utils/getComponentGroup.ts', hash: '10023209888705973382' }, - { file: 'packages/fluentui/docs/src/utils/getComponentPathname.ts', hash: '15202045931346218345' }, - { file: 'packages/fluentui/docs/src/utils/getFormattedHash.ts', hash: '3411076362027193243' }, - { file: 'packages/fluentui/docs/src/utils/getInfoForSeeTags.ts', hash: '4991392641415004304' }, - { file: 'packages/fluentui/docs/src/utils/helpers.tsx', hash: '1810044703867440324' }, - { file: 'packages/fluentui/docs/src/utils/index.tsx', hash: '13806331586645047503' }, - { file: 'packages/fluentui/docs/src/utils/parseExamplePath.ts', hash: '16706072088821032380' }, - { file: 'packages/fluentui/docs/src/utils/scrollToAnchor.ts', hash: '17162046583042382009' }, - { file: 'packages/fluentui/docs/src/utils/systemColors.ts', hash: '12421366474515129353' }, - { file: 'packages/fluentui/docs/src/views/Accessibility.tsx', hash: '14313422365893815015' }, - { file: 'packages/fluentui/docs/src/views/AccessibilityBehaviors.tsx', hash: '4339850402107540172' }, - { file: 'packages/fluentui/docs/src/views/AutoFocusZoneDoc.tsx', hash: '7307499123829744760' }, - { file: 'packages/fluentui/docs/src/views/ButtonNameComputation.tsx', hash: '12480504237081445002' }, - { file: 'packages/fluentui/docs/src/views/CategoryColorPalette.tsx', hash: '16022603617278599885' }, - { file: 'packages/fluentui/docs/src/views/CategoryColorSchemes.tsx', hash: '6249285355893149247' }, - { file: 'packages/fluentui/docs/src/views/ColorPalette.tsx', hash: '14361136615216977425' }, - { file: 'packages/fluentui/docs/src/views/ColorSchemes.tsx', hash: '5696274395708458130' }, - { file: 'packages/fluentui/docs/src/views/Colors.tsx', hash: '18267685702508182429' }, - { file: 'packages/fluentui/docs/src/views/FAQ.tsx', hash: '9327556336647218856' }, - { file: 'packages/fluentui/docs/src/views/FocusTrapZoneDoc.tsx', hash: '5869377137718940548' }, - { file: 'packages/fluentui/docs/src/views/FocusZoneDoc.tsx', hash: '14378636742874247590' }, - { file: 'packages/fluentui/docs/src/views/IconViewer.tsx', hash: '4798597363505578805' }, - { file: 'packages/fluentui/docs/src/views/IntegrateCustomComponents.tsx', hash: '6622788869327045608' }, - { file: 'packages/fluentui/docs/src/views/Introduction.tsx', hash: '11800775140060361692' }, - { file: 'packages/fluentui/docs/src/views/Layout.tsx', hash: '13766368756168310176' }, - { file: 'packages/fluentui/docs/src/views/PageNotFound.tsx', hash: '3991127502619281965' }, - { file: 'packages/fluentui/docs/src/views/Performance.tsx', hash: '6468674394624662279' }, - { file: 'packages/fluentui/docs/src/views/PerformanceTests.tsx', hash: '11399504417377192266' }, - { file: 'packages/fluentui/docs/src/views/QuickStart.tsx', hash: '5780470598893800470' }, - { file: 'packages/fluentui/docs/src/views/Theming.tsx', hash: '645654017210929903' }, - { file: 'packages/fluentui/docs/src/views/ThemingExamples.tsx', hash: '16084639066734426970' }, - { file: 'packages/fluentui/docs/src/vr-tests/Accordion/Accordion.stories.tsx', hash: '2908197600057391553' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Accordion/AccordionExampleCustomTitle.stories.tsx', - hash: '16179710846324635696', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Alert/Alert.stories.tsx', hash: '10767343889850384505' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleDanger.stories.tsx', - hash: '15155761001088390209', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleDismissible.stories.tsx', - hash: '6857463277843533941', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleInfo.stories.tsx', hash: '3791698035384736485' }, - { file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleOof.stories.tsx', hash: '2342828234592925900' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Alert/AlertExampleUrgent.stories.tsx', - hash: '17054968989162414493', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Alert/commonStoryWrightSteps.ts', hash: '12721790327113813325' }, - { file: 'packages/fluentui/docs/src/vr-tests/Animation/Animation.stories.tsx', hash: '4181148551675552707' }, - { file: 'packages/fluentui/docs/src/vr-tests/Attachment/Attachment.stories.tsx', hash: '16642720576436713986' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Attachment/AttachmentActionExampleShorthand.stories.tsx', - hash: '3716793378492317277', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Attachment/AttachmentActionableExampleShorthand.stories.tsx', - hash: '10698904945091264204', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Attachment/commonStoryWrightSteps.ts', hash: '1980623060784981451' }, - { file: 'packages/fluentui/docs/src/vr-tests/Avatar/Avatar.stories.tsx', hash: '11199104726299349165' }, - { file: 'packages/fluentui/docs/src/vr-tests/Box/Box.stories.tsx', hash: '3317368452319233198' }, - { file: 'packages/fluentui/docs/src/vr-tests/Breadcrumb/Breadcrumb.stories.tsx', hash: '14840601935862189481' }, - { file: 'packages/fluentui/docs/src/vr-tests/Button/Button.stories.tsx', hash: '6775530068213781537' }, - { file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExample.stories.tsx', hash: '13171374555278763771' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExampleContentAndIcon.stories.tsx', - hash: '16926446962302972010', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExampleDisabled.stories.tsx', - hash: '8847011181951402328', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExampleTextShorthand.stories.tsx', - hash: '2002621327211757642', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonExampleWithTooltip.stories.tsx', - hash: '10371603433001352361', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonGroupCircularExampleShorthand.stories.tsx', - hash: '12419436000181409993', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Button/ButtonGroupExampleShorthand.stories.tsx', - hash: '594990976777991069', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Button/commonStoryWrightSteps.ts', hash: '13040400329679067273' }, - { file: 'packages/fluentui/docs/src/vr-tests/Card/Card.stories.tsx', hash: '15326725132438471431' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Card/CardExampleFocusable.stories.tsx', - hash: '4156768447595492362', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Card/CardExampleWithPreview.stories.tsx', - hash: '13478840147494527644', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Carousel/Carousel.stories.tsx', hash: '14817153570410016798' }, - { file: 'packages/fluentui/docs/src/vr-tests/Chat/Chat.stories.tsx', hash: '15245816339893430959' }, - { file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatExample.stories.tsx', hash: '1425446495779930194' }, - { file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatExampleCompact.stories.tsx', hash: '13251803643511980833' }, - { file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatExampleDetails.stories.tsx', hash: '7469309566711005970' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatExampleInScrollableShorthand.stories.tsx', - hash: '14139475853124801776', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Chat/ChatMessageExampleBadge.stories.tsx', - hash: '6649561404943581914', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Chat/MessageReactionsWithPopup.stories.tsx', - hash: '2125275788346988499', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Checkbox/Checkbox.stories.tsx', hash: '9297591130763312835' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExample.stories.tsx', - hash: '11981576073340880701', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExampleCheckedMixed.stories.tsx', - hash: '6988841085427624024', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Checkbox/CheckboxExampleToggle.stories.tsx', - hash: '17041672079763277726', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Checkbox/commonStoryWrightSteps.ts', hash: '15779623513387323485' }, - { file: 'packages/fluentui/docs/src/vr-tests/Datepicker/Datepicker.stories.tsx', hash: '16950762239704288937' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerCellExample.stories.tsx', - hash: '5803726279486497054', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleClearable.stories.tsx', - hash: '17708742659733322937', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleLocalizationStrings.stories.tsx', - hash: '9501925128341184053', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleMinMaxDate.stories.tsx', - hash: '4670026384566950417', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleNoInput.stories.tsx', - hash: '15040560426204632860', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleRequired.stories.tsx', - hash: '9370669105425882114', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleRestrictedDates.stories.tsx', - hash: '5967310705340174608', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleStandaloneCalendarButton.stories.tsx', - hash: '15633474592787066601', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleToday.stories.tsx', - hash: '7515178996452324600', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerExampleWeek.stories.tsx', - hash: '6208343740595701430', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerFormatExample.stories.tsx', - hash: '16933697073992990458', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Datepicker/DatepickerHeaderCellExample.stories.tsx', - hash: '395850943947398801', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Datepicker/utils.ts', hash: '4512443095283466106' }, - { file: 'packages/fluentui/docs/src/vr-tests/Dialog/Dialog.stories.tsx', hash: '14959937483740676108' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleBackdrop.stories.tsx', - hash: '10310462023880394967', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleContent.stories.tsx', - hash: '15603482485839891799', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleFooter.stories.tsx', - hash: '8780643621620224764', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleFullWidth.stories.tsx', - hash: '12526215090824633553', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleHeaderAction.stories.tsx', - hash: '3608597711373337505', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleRtl.stories.tsx', hash: '13913266811227693801' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleScroll.stories.tsx', - hash: '8727638438511381346', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dialog/DialogExampleZoomContent.stories.tsx', - hash: '2646322061726867805', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Dialog/commonStoryWrightSteps.ts', hash: '5035117655443987294' }, - { file: 'packages/fluentui/docs/src/vr-tests/Divider/Divider.stories.tsx', hash: '2336088392374210039' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleColor.stories.tsx', - hash: '9350984882141975047', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleContent.stories.tsx', - hash: '15713735976335551192', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleFittedShorthand.stories.tsx', - hash: '7575714561514384677', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleImportantShorthand.stories.tsx', - hash: '7934661102588913154', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleRtl.stories.tsx', - hash: '1919741483563311435', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleRtlAndLtr.stories.tsx', - hash: '1596553248176707554', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleShorthand.stories.tsx', - hash: '1836745762037086729', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Divider/DividerExampleSize.stories.tsx', - hash: '749462362943519466', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Dropdown/Dropdown.stories.tsx', hash: '7380798490621690637' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownClearableExample.stories.tsx', - hash: '10901930380665357639', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownCustomClearableExample.stories.tsx', - hash: '16599115945490633817', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExample.stories.tsx', hash: '6746037870592578958' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleDisabled.stories.tsx', - hash: '2548138539726891611', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleHeaderMessage.stories.tsx', - hash: '7474610870874134535', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleLoading.stories.tsx', - hash: '4750019353543139535', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleMultiple.stories.tsx', - hash: '4943875313427980342', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExamplePosition.stories.tsx', - hash: '5226721723577165111', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleRtl.stories.tsx', - hash: '4267473619245331597', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Dropdown/DropdownExampleSearchMultiple.stories.tsx', - hash: '17639475738577957204', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Embed/Embed.stories.tsx', hash: '14352696819000693300' }, - { file: 'packages/fluentui/docs/src/vr-tests/Flex/Flex.stories.tsx', hash: '4876944789388275395' }, - { file: 'packages/fluentui/docs/src/vr-tests/Form/Form.stories.tsx', hash: '10319055880626561175' }, - { file: 'packages/fluentui/docs/src/vr-tests/Grid/Grid.stories.tsx', hash: '9747090622440024910' }, - { file: 'packages/fluentui/docs/src/vr-tests/Header/Header.stories.tsx', hash: '11713594437092210982' }, - { file: 'packages/fluentui/docs/src/vr-tests/Image/Image.stories.tsx', hash: '13728569992723813207' }, - { file: 'packages/fluentui/docs/src/vr-tests/Input/Input.stories.tsx', hash: '3117706994055304869' }, - { file: 'packages/fluentui/docs/src/vr-tests/Input/InputExample.stories.tsx', hash: '4259709115869032841' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Input/InputExampleClearable.stories.tsx', - hash: '13357124920678294349', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Input/InputExampleLabelShorthand.stories.tsx', - hash: '9403554131586270215', - }, - { file: 'packages/fluentui/docs/src/vr-tests/ItemLayout/ItemLayout.stories.tsx', hash: '11291004727629675957' }, - { file: 'packages/fluentui/docs/src/vr-tests/Label/Label.stories.tsx', hash: '8322646797296035677' }, - { file: 'packages/fluentui/docs/src/vr-tests/Layout/Layout.stories.tsx', hash: '12305168029748552920' }, - { file: 'packages/fluentui/docs/src/vr-tests/List/List.stories.tsx', hash: '10005658482092092172' }, - { - file: 'packages/fluentui/docs/src/vr-tests/List/ListExampleNavigable.stories.tsx', - hash: '2033264551140513567', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/List/ListExampleSelectable.stories.tsx', - hash: '14791665715268384357', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Loader/Loader.stories.tsx', hash: '8685629729393552982' }, - { file: 'packages/fluentui/docs/src/vr-tests/Menu/Menu.stories.tsx', hash: '16522996101712812439' }, - { file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExample.stories.tsx', hash: '7874842300195873502' }, - { file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleIconOnly.stories.tsx', hash: '8811514051065876803' }, - { file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePointing.stories.tsx', hash: '1770809861026398977' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePositioningShorthand.stories.tsx', - hash: '12047715271551824840', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExamplePositioningUpdateShorthand.stories.tsx', - hash: '9844235307744556267', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleToolbarShorthand.stories.tsx', - hash: '12430374699620979123', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleUnderlined.stories.tsx', - hash: '2828156010439144931', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleVertical.stories.tsx', hash: '3930389962001801874' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleVerticalPointing.stories.tsx', - hash: '2242695733298295403', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithIcons.stories.tsx', - hash: '7212200464392574991', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithSubMenu.stories.tsx', - hash: '12177337937806814467', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithSubMenuHover.stories.tsx', - hash: '13893143021108359130', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Menu/MenuExampleWithTooltip.stories.tsx', - hash: '13597485382012665494', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Menu/commonStoryWrightSteps.ts', hash: '2988540096115097198' }, - { file: 'packages/fluentui/docs/src/vr-tests/MenuButton/MenuButton.stories.tsx', hash: '13465199678920766931' }, - { - file: 'packages/fluentui/docs/src/vr-tests/MenuButton/MenuButtonExampleRtl.stories.tsx', - hash: '14881944460208222872', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Pill/Pill.stories.tsx', hash: '16209955480601373171' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Popup/PopperExamplePositioning.stories.tsx', - hash: '17108778031370138215', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Popup/PopperExampleVisibilityModifiers.stories.tsx', - hash: '14496472523165935743', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Popup/Popup.stories.tsx', hash: '12982035354835778622' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupControlledExample.stories.tsx', - hash: '14219445074388559561', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupCustomTargetExample.stories.tsx', - hash: '16628596992789755265', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupExample.stories.tsx', hash: '273093962948343256' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupExampleOffset.stories.tsx', - hash: '17279656499074273202', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupExampleRtl.stories.tsx', hash: '17821588893262132237' }, - { file: 'packages/fluentui/docs/src/vr-tests/Popup/PopupScrollExample.stories.tsx', hash: '7472589559301459687' }, - { file: 'packages/fluentui/docs/src/vr-tests/Portal/Portal.stories.tsx', hash: '18329814951255029859' }, - { file: 'packages/fluentui/docs/src/vr-tests/Provider/Provider.stories.tsx', hash: '1849411383435458007' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Provider/ProviderExampleFocusBorderShorthand.stories.tsx', - hash: '556263522791941668', - }, - { file: 'packages/fluentui/docs/src/vr-tests/RadioGroup/RadioGroup.stories.tsx', hash: '3002626285268418385' }, - { - file: 'packages/fluentui/docs/src/vr-tests/RadioGroup/RadioGroupVerticalExample.stories.tsx', - hash: '1882653333358837562', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Reaction/Reaction.stories.tsx', hash: '12197126940858620978' }, - { file: 'packages/fluentui/docs/src/vr-tests/Segment/Segment.stories.tsx', hash: '5752809249559982694' }, - { file: 'packages/fluentui/docs/src/vr-tests/Skeleton/Skeleton.stories.tsx', hash: '452440236106245320' }, - { file: 'packages/fluentui/docs/src/vr-tests/Slider/Slider.stories.tsx', hash: '5261459962563409855' }, - { file: 'packages/fluentui/docs/src/vr-tests/Slider/SliderExampleRtl.stories.tsx', hash: '3914854734713079222' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Slider/SliderExampleShorthand.stories.tsx', - hash: '9929060552557872639', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Slider/commonStoryWrightSteps.ts', hash: '2651038160251967308' }, - { file: 'packages/fluentui/docs/src/vr-tests/SplitButton/SplitButton.stories.tsx', hash: '8519984363954494070' }, - { - file: 'packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonExamplePrimaryShorthand.stories.tsx', - hash: '8422849834173982846', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonExampleSmallContainer.stories.tsx', - hash: '7689840483461586695', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/SplitButton/SplitButtonPositioningExampleShorthand.stories.tsx', - hash: '5894858692563044601', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Status/Status.stories.tsx', hash: '14667992198519604702' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Status/StatusTypeExampleShorthand.stories.tsx', - hash: '1420982689125655842', - }, - { file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIcon.stories.tsx', hash: '13844315544099130747' }, - { file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExample.stories.tsx', hash: '17296559805843725617' }, - { - file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleCircular.stories.tsx', - hash: '15602236924226983002', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleColor.stories.tsx', - hash: '3200142409606409793', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleDisabled.stories.tsx', - hash: '12086886858916930169', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleSize.stories.tsx', - hash: '3300404581410564444', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconExampleSpace.stories.tsx', - hash: '16223808322314871624', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgIconSetExampleShorthand.stories.tsx', - hash: '3614912091945043787', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/SvgIcon/SvgconExampleBordered.stories.tsx', - hash: '3229855193108540106', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Table/StaticTable.stories.tsx', hash: '6191690595588093057' }, - { file: 'packages/fluentui/docs/src/vr-tests/Table/Table.stories.tsx', hash: '925276430554274312' }, - { file: 'packages/fluentui/docs/src/vr-tests/Text/Text.stories.tsx', hash: '17715685917275609993' }, - { file: 'packages/fluentui/docs/src/vr-tests/TextArea/TextArea.stories.tsx', hash: '10595951872412841348' }, - { file: 'packages/fluentui/docs/src/vr-tests/TextArea/TextAreaExample.stories.tsx', hash: '9931006383186087473' }, - { - file: 'packages/fluentui/docs/src/vr-tests/TextArea/TextAreaExampleInverted.stories.tsx', - hash: '9373604424649653510', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Toolbar/Toolbar.stories.tsx', hash: '8697615237273139195' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleActionPopupInMenu.stories.tsx', - hash: '11324502800226063998', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleEditorShorthand.stories.tsx', - hash: '17289603700788241000', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleMenuShorthand.stories.tsx', - hash: '7548137847935688166', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleMenuWithSubmenuShorthand.stories.tsx', - hash: '10032109462229660098', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflow.stories.tsx', - hash: '3169480496775116993', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflowPositioningShorthand.stories.tsx', - hash: '18419392648893855481', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleOverflowPositioningShorthandRtl.stories.tsx', - hash: '3162366872774944657', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExamplePopupInMenu.stories.tsx', - hash: '3063647798902196619', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExamplePopupShorthand.stories.tsx', - hash: '4914685865878468106', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleRadioGroupShorthand.stories.tsx', - hash: '8706800865705494388', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleShorthand.stories.tsx', - hash: '16747780565214128517', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Toolbar/ToolbarExampleVariables.stories.tsx', - hash: '4469272913605194531', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Tooltip/Tooltip.stories.tsx', hash: '15792984072210537690' }, - { file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExample.stories.tsx', hash: '15679492189176217862' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleDialogContentShorthand.stories.tsx', - hash: '13135746159300986169', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExamplePointing.stories.tsx', - hash: '12950718817577864559', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleRtl.stories.tsx', - hash: '12279619360757980168', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Tooltip/TooltipExampleTarget.stories.tsx', - hash: '16157157304124443814', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Tree/Tree.stories.tsx', hash: '1332342421862574948' }, - { - file: 'packages/fluentui/docs/src/vr-tests/Tree/TreeExampleShorthand.stories.tsx', - hash: '4500943896345512926', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Tree/TreeMultiselectExample.stories.tsx', - hash: '14765947487485746937', - }, - { - file: 'packages/fluentui/docs/src/vr-tests/Tree/TreeTitleCustomizationExample.stories.tsx', - hash: '10973446212198458933', - }, - { file: 'packages/fluentui/docs/src/vr-tests/Video/Video.stories.tsx', hash: '8562641388055379331' }, - { file: 'packages/fluentui/docs/src/vr-tests/utilities/getThemeStoryVariant.tsx', hash: '15628272627810505572' }, - { file: 'packages/fluentui/docs/src/vr-tests/utilities/index.ts', hash: '4893167292256393098' }, - { file: 'packages/fluentui/docs/tsconfig.json', hash: '872626015430090431' }, - ], - '@fluentui/react-swatch-picker-preview': [ - { file: 'packages/react-components/react-swatch-picker-preview/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-swatch-picker-preview/.eslintrc.json', hash: '11822209983446579696' }, - { - file: 'packages/react-components/react-swatch-picker-preview/.storybook/main.js', - hash: '11617744840349284164', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/.storybook/preview.js', - hash: '1791378012295456991', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-swatch-picker-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-swatch-picker-preview/LICENSE', hash: '5934331551714403714' }, - { file: 'packages/react-components/react-swatch-picker-preview/README.md', hash: '7419281624987644468' }, - { - file: 'packages/react-components/react-swatch-picker-preview/config/api-extractor.json', - hash: '124052868224837692', - }, - { file: 'packages/react-components/react-swatch-picker-preview/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-swatch-picker-preview/docs/Spec.md', hash: '6103625817265663911' }, - { - file: 'packages/react-components/react-swatch-picker-preview/etc/react-swatch-picker-preview.api.md', - hash: '16193202918846092278', - }, - { file: 'packages/react-components/react-swatch-picker-preview/jest.config.js', hash: '17033989963135647545' }, - { file: 'packages/react-components/react-swatch-picker-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-swatch-picker-preview/package.json', - hash: '549445429650425408', - deps: [ - '@fluentui/react-jsx-runtime', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-swatch-picker-preview/project.json', hash: '18290180041366416211' }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/SwatchPicker.ts', - hash: '9804286450005810402', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.test.tsx', - hash: '9571205629442676551', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.tsx', - hash: '10932485903494897566', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/SwatchPicker.types.ts', - hash: '2241787495689417402', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/__snapshots__/SwatchPicker.test.tsx.snap', - hash: '18252006600174267969', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/index.ts', - hash: '7361079493278890998', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/renderSwatchPicker.tsx', - hash: '6990947521985192591', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/useSwatchPicker.ts', - hash: '769200771881258129', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/components/SwatchPicker/useSwatchPickerStyles.styles.ts', - hash: '17752194373954321560', - }, - { file: 'packages/react-components/react-swatch-picker-preview/src/index.ts', hash: '1833191522506500701' }, - { - file: 'packages/react-components/react-swatch-picker-preview/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { file: 'packages/react-components/react-swatch-picker-preview/stories/.gitkeep', hash: '3244421341483603138' }, - { - file: 'packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerBestPractices.md', - hash: '13132854725403121719', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerDefault.stories.tsx', - hash: '17318452984797150085', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/SwatchPickerDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-swatch-picker-preview/stories/SwatchPicker/index.stories.tsx', - hash: '12173169998730479378', - }, - { file: 'packages/react-components/react-swatch-picker-preview/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-swatch-picker-preview/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-swatch-picker-preview/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/stress-test': [ - { file: 'apps/stress-test/.babelrc', hash: '12862917896289059134' }, - { file: 'apps/stress-test/.eslintrc.json', hash: '17415001537957764759' }, - { file: 'apps/stress-test/.gitignore', hash: '15381081997006216537' }, - { file: 'apps/stress-test/.npmignore', hash: '6985117138208138805' }, - { file: 'apps/stress-test/CHANGELOG.json', hash: '3437580707295011777' }, - { file: 'apps/stress-test/CHANGELOG.md', hash: '11176202236824542392' }, - { file: 'apps/stress-test/README.md', hash: '6390444478274191284' }, - { file: 'apps/stress-test/config/tests.js', hash: '11168571691074990614' }, - { file: 'apps/stress-test/jest.config.js', hash: '9458445199894798693' }, - { file: 'apps/stress-test/just.config.ts', hash: '10393370776333958822' }, - { - file: 'apps/stress-test/package.json', - hash: '15481262008595934140', - deps: [ - '@fluentui/react', - '@fluentui/react-components', - 'npm:@fluentui/react-icons', - '@fluentui/web-components', - 'npm:@microsoft/fast-element', - 'npm:afterframe', - 'npm:react', - 'npm:react-dom', - 'npm:random-seedable', - '@fluentui/scripts-tasks', - '@fluentui/scripts-storybook', - ], - }, - { file: 'apps/stress-test/project.json', hash: '8519279046864749978' }, - { file: 'apps/stress-test/scenarios/default.js', hash: '5667652972228170629' }, - { file: 'apps/stress-test/scripts/commands/build.ts', hash: '9419308908411865324' }, - { file: 'apps/stress-test/scripts/commands/buildFixture.ts', hash: '4525318911210783745' }, - { file: 'apps/stress-test/scripts/commands/buildTestConfig.ts', hash: '10914442217612715419' }, - { file: 'apps/stress-test/scripts/commands/dev.ts', hash: '717550860288446011' }, - { file: 'apps/stress-test/scripts/commands/processResults.ts', hash: '12562565022016957121' }, - { file: 'apps/stress-test/scripts/commands/run.ts', hash: '4847220144281690301' }, - { file: 'apps/stress-test/scripts/commands/runServer.ts', hash: '1695533053367418885' }, - { file: 'apps/stress-test/scripts/commands/runTachometer.ts', hash: '14114252202943153800' }, - { file: 'apps/stress-test/scripts/stressTest.ts', hash: '11797513512940166661' }, - { file: 'apps/stress-test/scripts/utils/configureYargs.ts', hash: '16260029187749751820' }, - { file: 'apps/stress-test/scripts/utils/fixtures.ts', hash: '10863951851903674631' }, - { file: 'apps/stress-test/scripts/utils/getBrowsers.ts', hash: '2767025493846740149' }, - { file: 'apps/stress-test/scripts/utils/paths.ts', hash: '5278825876081271854' }, - { file: 'apps/stress-test/scripts/utils/server.ts', hash: '822087886506422870' }, - { file: 'apps/stress-test/scripts/utils/tachometer.ts', hash: '3168697832787878755' }, - { file: 'apps/stress-test/scripts/utils/tree/RandomSelectorTreeNode.ts', hash: '6146005535267643186' }, - { file: 'apps/stress-test/scripts/utils/tree/RandomTree.ts', hash: '13001941047399227604' }, - { file: 'apps/stress-test/scripts/utils/types.ts', hash: '5655566756638933089' }, - { file: 'apps/stress-test/src/components/v8/StressApp.tsx', hash: '18116729224501891286' }, - { file: 'apps/stress-test/src/components/v8/StressComponent.tsx', hash: '4244808785460217124' }, - { file: 'apps/stress-test/src/components/v8/StressContainer.tsx', hash: '9963871457639355036' }, - { file: 'apps/stress-test/src/components/v9/StressApp.tsx', hash: '8514184576449260536' }, - { file: 'apps/stress-test/src/components/v9/StressComponent.tsx', hash: '2111244307928688142' }, - { file: 'apps/stress-test/src/components/v9/StressContainer.tsx', hash: '13765506946664693107' }, - { file: 'apps/stress-test/src/components/wc/stressApp.ts', hash: '4924957931395796051' }, - { file: 'apps/stress-test/src/components/wc/stressComponent.ts', hash: '17691895993458559136' }, - { file: 'apps/stress-test/src/components/wc/stressContainer.ts', hash: '6793612953422835054' }, - { file: 'apps/stress-test/src/fixtures/.gitignore', hash: '5942482769455841618' }, - { file: 'apps/stress-test/src/pages/v8/simple-stress/index.html', hash: '17054045918937358546' }, - { file: 'apps/stress-test/src/pages/v8/simple-stress/index.tsx', hash: '8145014336300914316' }, - { file: 'apps/stress-test/src/pages/v8/stress-tree/index.html', hash: '15931849501101204950' }, - { file: 'apps/stress-test/src/pages/v8/stress-tree/index.tsx', hash: '10784484438983706757' }, - { file: 'apps/stress-test/src/pages/v9/simple-stress/index.html', hash: '17996328833487928766' }, - { file: 'apps/stress-test/src/pages/v9/simple-stress/index.tsx', hash: '5275492453195147599' }, - { file: 'apps/stress-test/src/pages/v9/stress-tree/index.html', hash: '16355370479256157553' }, - { file: 'apps/stress-test/src/pages/v9/stress-tree/index.tsx', hash: '5258794036800619415' }, - { file: 'apps/stress-test/src/pages/wc/simple-stress/index.html', hash: '1270571087989138208' }, - { file: 'apps/stress-test/src/pages/wc/simple-stress/index.ts', hash: '15556660320515370092' }, - { file: 'apps/stress-test/src/pages/wc/stress-tree/index.html', hash: '11835810937514846385' }, - { file: 'apps/stress-test/src/pages/wc/stress-tree/index.ts', hash: '15833416144539563430' }, - { file: 'apps/stress-test/src/renderers/v8/button.tsx', hash: '9045728902588530340' }, - { file: 'apps/stress-test/src/renderers/v8/checkbox.tsx', hash: '6539321948897356327' }, - { file: 'apps/stress-test/src/renderers/v8/spinButton.tsx', hash: '16265282132677230376' }, - { file: 'apps/stress-test/src/renderers/v8/stress.tsx', hash: '11516277076088170648' }, - { file: 'apps/stress-test/src/renderers/v8/textField.tsx', hash: '15777792370713890617' }, - { file: 'apps/stress-test/src/renderers/v8/textarea.tsx', hash: '5651749419672941671' }, - { file: 'apps/stress-test/src/renderers/v9/btn/basic.tsx', hash: '7135601453948143150' }, - { file: 'apps/stress-test/src/renderers/v9/btn/idiomatic.tsx', hash: '17785011319006702868' }, - { file: 'apps/stress-test/src/renderers/v9/btn/override.tsx', hash: '5832742309068265507' }, - { file: 'apps/stress-test/src/renderers/v9/btn/styles.ts', hash: '2372224596345633038' }, - { file: 'apps/stress-test/src/renderers/v9/button.tsx', hash: '12612410767034293702' }, - { file: 'apps/stress-test/src/renderers/v9/checkbox.tsx', hash: '3401473945961708472' }, - { file: 'apps/stress-test/src/renderers/v9/input.tsx', hash: '8820280999885685987' }, - { file: 'apps/stress-test/src/renderers/v9/spinButton/noPseudos.tsx', hash: '2688120599484118925' }, - { file: 'apps/stress-test/src/renderers/v9/spinButton/vanilla.tsx', hash: '13829098914655280350' }, - { file: 'apps/stress-test/src/renderers/v9/spinButton.tsx', hash: '6121116104547615511' }, - { file: 'apps/stress-test/src/renderers/v9/stress.tsx', hash: '14702699307755792534' }, - { file: 'apps/stress-test/src/renderers/v9/textarea/noPseudo.tsx', hash: '1389311219434304303' }, - { file: 'apps/stress-test/src/renderers/v9/textarea.tsx', hash: '12873383168720038622' }, - { file: 'apps/stress-test/src/renderers/v9/vanillaButton.tsx', hash: '4516616351088856213' }, - { file: 'apps/stress-test/src/renderers/wc/btn/vanillaButton.ts', hash: '10811222679811356956' }, - { file: 'apps/stress-test/src/renderers/wc/btn/wcBasicButton.ts', hash: '11539836511375251289' }, - { file: 'apps/stress-test/src/renderers/wc/button.ts', hash: '6999027257311316012' }, - { file: 'apps/stress-test/src/renderers/wc/checkbox.ts', hash: '15970545569051510853' }, - { file: 'apps/stress-test/src/renderers/wc/numberField/vanilla.ts', hash: '8959457943263928112' }, - { file: 'apps/stress-test/src/renderers/wc/numberField.ts', hash: '16321108348585429551' }, - { file: 'apps/stress-test/src/renderers/wc/stress.ts', hash: '10883422701119623451' }, - { file: 'apps/stress-test/src/renderers/wc/textField.ts', hash: '291657744163180278' }, - { file: 'apps/stress-test/src/shared/css/RandomSelector.ts', hash: '16765679475685581804' }, - { file: 'apps/stress-test/src/shared/css/injectStyles.ts', hash: '874717523769405550' }, - { file: 'apps/stress-test/src/shared/react/ReactSelectorTree.tsx', hash: '1904747251329859137' }, - { file: 'apps/stress-test/src/shared/react/ReactTest.tsx', hash: '15293360124561503855' }, - { file: 'apps/stress-test/src/shared/react/ReactTree.tsx', hash: '7152825019561051430' }, - { file: 'apps/stress-test/src/shared/react/TestAdd.tsx', hash: '12303512287437308333' }, - { file: 'apps/stress-test/src/shared/react/TestInjectStyles.tsx', hash: '15879335621216282780' }, - { file: 'apps/stress-test/src/shared/react/TestMount.tsx', hash: '7958151074071589670' }, - { file: 'apps/stress-test/src/shared/react/TestReRenderAll.tsx', hash: '11165957533216239885' }, - { file: 'apps/stress-test/src/shared/react/TestRemoveAll.tsx', hash: '9728966942634649684' }, - { file: 'apps/stress-test/src/shared/react/onRender.ts', hash: '13278968105407979487' }, - { file: 'apps/stress-test/src/shared/react/types.ts', hash: '17179176776844544347' }, - { file: 'apps/stress-test/src/shared/tree/iterators/dfs.ts', hash: '12875190868999900583' }, - { file: 'apps/stress-test/src/shared/tree/types.ts', hash: '7464791436826229288' }, - { file: 'apps/stress-test/src/shared/utils/performanceMeasure.ts', hash: '3012816799120387809' }, - { file: 'apps/stress-test/src/shared/utils/random.ts', hash: '16404106474801088880' }, - { file: 'apps/stress-test/src/shared/utils/testOptions.ts', hash: '17341661357557143378' }, - { file: 'apps/stress-test/src/shared/utils/testUtils.ts', hash: '12817262226704966804' }, - { file: 'apps/stress-test/src/shared/vanilla/TestAdd.ts', hash: '9408687668738176897' }, - { file: 'apps/stress-test/src/shared/vanilla/TestInjectStyles.ts', hash: '14944531061658898293' }, - { file: 'apps/stress-test/src/shared/vanilla/TestMount.ts', hash: '4062758155564446044' }, - { file: 'apps/stress-test/src/shared/vanilla/TestReRenderAll.ts', hash: '505702295482162602' }, - { file: 'apps/stress-test/src/shared/vanilla/TestRemoveAll.ts', hash: '6839898938459418030' }, - { file: 'apps/stress-test/src/shared/vanilla/VanillaSelectorTree.ts', hash: '13281375955283748015' }, - { file: 'apps/stress-test/src/shared/vanilla/VanillaTree.ts', hash: '577304213019575576' }, - { file: 'apps/stress-test/src/shared/vanilla/types.ts', hash: '11716853905215850052' }, - { file: 'apps/stress-test/src/shared/wc/TestAdd.ts', hash: '7712416855864373058' }, - { file: 'apps/stress-test/src/shared/wc/TestInjectStyles.ts', hash: '17649406931455398846' }, - { file: 'apps/stress-test/src/shared/wc/TestMount.ts', hash: '12906067654388519872' }, - { file: 'apps/stress-test/src/shared/wc/TestReRenderAll.ts', hash: '5312913760596417727' }, - { file: 'apps/stress-test/src/shared/wc/TestRemoveAll.ts', hash: '18443864224568875877' }, - { file: 'apps/stress-test/src/shared/wc/WCSelectorTree.ts', hash: '14790884250663509401' }, - { file: 'apps/stress-test/src/shared/wc/WCTest.ts', hash: '16321518401394895901' }, - { file: 'apps/stress-test/src/shared/wc/WCTree.ts', hash: '6417409144636896365' }, - { file: 'apps/stress-test/src/shared/wc/types.ts', hash: '16914982769205636568' }, - { file: 'apps/stress-test/tsconfig.json', hash: '14768176472458847426' }, - { file: 'apps/stress-test/tsconfig.scripts.json', hash: '14672983425013350832' }, - { file: 'apps/stress-test/tsconfig.type.json', hash: '14876708043234667071' }, - { file: 'apps/stress-test/webpack/griffelConfig.ts', hash: '5590847160006798528' }, - { file: 'apps/stress-test/webpack/pageConfig.ts', hash: '49920576016816112' }, - { file: 'apps/stress-test/webpack/webpack.config.ts', hash: '12028734856447424120' }, - ], - '@fluentui/scripts-beachball': [ - { file: 'scripts/beachball/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/beachball/base.config.json', hash: '18294427476962403546' }, - { file: 'scripts/beachball/config.test.ts', hash: '17068829733399846091' }, - { file: 'scripts/beachball/customRenderers.ts', hash: '2804302704640461371' }, - { file: 'scripts/beachball/index.ts', hash: '3737354317537434882' }, - { file: 'scripts/beachball/jest.config.js', hash: '2008262210406061286' }, - { - file: 'scripts/beachball/package.json', - hash: '953464476337955798', - deps: ['@fluentui/scripts-github', '@fluentui/scripts-monorepo', '@fluentui/scripts-ts-node'], - }, - { file: 'scripts/beachball/project.json', hash: '73363171559233326' }, - { file: 'scripts/beachball/register.js', hash: '7204532544120368288' }, - { file: 'scripts/beachball/release-v8.config.js', hash: '12329776896108476656' }, - { file: 'scripts/beachball/release-vNext.config.js', hash: '12645380069464220490' }, - { file: 'scripts/beachball/shared.config.ts', hash: '3554874950759589528' }, - { file: 'scripts/beachball/tsconfig.json', hash: '3297202739442548297' }, - { file: 'scripts/beachball/tsconfig.lib.json', hash: '2990800560681471715' }, - { file: 'scripts/beachball/tsconfig.spec.json', hash: '16242416785763058919' }, - { file: 'scripts/beachball/utils.ts', hash: '13805748505039690586' }, - ], - '@fluentui/circulars-test': [ - { file: 'packages/fluentui/circulars-test/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/circulars-test/README.md', hash: '16627736154734360742' }, - { file: 'packages/fluentui/circulars-test/gulpfile.ts', hash: '8697200394590035566' }, - { - file: 'packages/fluentui/circulars-test/package.json', - hash: '12258503670094856879', - deps: ['@fluentui/react-northstar', '@fluentui/scripts-gulp'], - }, - { file: 'packages/fluentui/circulars-test/project.json', hash: '14472453665394675939' }, - ], - '@fluentui/react-link': [ - { file: 'packages/react-components/react-link/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-link/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-link/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-link/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-link/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-link/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-link/CHANGELOG.json', hash: '3962037913672436497' }, - { file: 'packages/react-components/react-link/CHANGELOG.md', hash: '18194813021463348387' }, - { file: 'packages/react-components/react-link/LICENSE', hash: '9832907009994579246' }, - { file: 'packages/react-components/react-link/README.md', hash: '6792617757650079592' }, - { file: 'packages/react-components/react-link/bundle-size/Label.fixture.js', hash: '9121178836648557554' }, - { file: 'packages/react-components/react-link/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-link/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-link/docs/MIGRATION.md', hash: '15493690066707415440' }, - { file: 'packages/react-components/react-link/docs/SPEC.md', hash: '12261141108370125154' }, - { file: 'packages/react-components/react-link/etc/react-link.api.md', hash: '9312917724489390831' }, - { file: 'packages/react-components/react-link/jest.config.js', hash: '11862231451554250380' }, - { file: 'packages/react-components/react-link/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-link/package.json', - hash: '12694717080936649426', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/a11y-testing', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-link/project.json', hash: '11422930109814152197' }, - { file: 'packages/react-components/react-link/src/Link.ts', hash: '7031503808279670627' }, - { file: 'packages/react-components/react-link/src/components/Link/Link.test.tsx', hash: '17540359287886314045' }, - { file: 'packages/react-components/react-link/src/components/Link/Link.tsx', hash: '3711147948241012629' }, - { file: 'packages/react-components/react-link/src/components/Link/Link.types.ts', hash: '3756492797898260450' }, - { - file: 'packages/react-components/react-link/src/components/Link/__snapshots__/Link.test.tsx.snap', - hash: '18030217870111124529', - }, - { file: 'packages/react-components/react-link/src/components/Link/index.ts', hash: '4320358890099633430' }, - { file: 'packages/react-components/react-link/src/components/Link/renderLink.tsx', hash: '9789431458503251801' }, - { file: 'packages/react-components/react-link/src/components/Link/useLink.ts', hash: '17399821058666932648' }, - { file: 'packages/react-components/react-link/src/components/Link/useLinkState.ts', hash: '3824048378179671478' }, - { - file: 'packages/react-components/react-link/src/components/Link/useLinkStyles.styles.ts', - hash: '300714945188623948', - }, - { file: 'packages/react-components/react-link/src/index.ts', hash: '4845491281378724120' }, - { file: 'packages/react-components/react-link/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-link/stories/Link/LinkAppearance.stories.tsx', - hash: '4374522065294609674', - }, - { - file: 'packages/react-components/react-link/stories/Link/LinkAsButton.stories.tsx', - hash: '7456747567086542617', - }, - { file: 'packages/react-components/react-link/stories/Link/LinkAsSpan.stories.tsx', hash: '3652403217738880018' }, - { file: 'packages/react-components/react-link/stories/Link/LinkBestPractices.md', hash: '3244421341483603138' }, - { - file: 'packages/react-components/react-link/stories/Link/LinkDefault.stories.tsx', - hash: '15067384076845671705', - }, - { file: 'packages/react-components/react-link/stories/Link/LinkDescription.md', hash: '7236969301982012236' }, - { - file: 'packages/react-components/react-link/stories/Link/LinkDisabled.stories.tsx', - hash: '4914115128158846428', - }, - { - file: 'packages/react-components/react-link/stories/Link/LinkDisabledFocusable.stories.tsx', - hash: '14219911784243672353', - }, - { file: 'packages/react-components/react-link/stories/Link/LinkInline.stories.tsx', hash: '9590348700846670455' }, - { file: 'packages/react-components/react-link/stories/Link/index.stories.tsx', hash: '1901570717605656364' }, - { file: 'packages/react-components/react-link/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-link/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-link/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-jsx-runtime': [ - { file: 'packages/react-components/react-jsx-runtime/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-jsx-runtime/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-jsx-runtime/.gitignore', hash: '9550321157120374298' }, - { file: 'packages/react-components/react-jsx-runtime/.swcrc', hash: '471348148265161299' }, - { file: 'packages/react-components/react-jsx-runtime/CHANGELOG.json', hash: '10971670868821144686' }, - { file: 'packages/react-components/react-jsx-runtime/CHANGELOG.md', hash: '12062860809062640425' }, - { file: 'packages/react-components/react-jsx-runtime/LICENSE', hash: '8462864562846768755' }, - { file: 'packages/react-components/react-jsx-runtime/README.md', hash: '11109812187361138131' }, - { - file: 'packages/react-components/react-jsx-runtime/bundle-size/Classic.fixture.js', - hash: '2189361890724554761', - }, - { - file: 'packages/react-components/react-jsx-runtime/bundle-size/DevRuntime.fixture.js', - hash: '12091473808950978917', - }, - { - file: 'packages/react-components/react-jsx-runtime/bundle-size/Runtime.fixture.js', - hash: '6901675173806772497', - }, - { file: 'packages/react-components/react-jsx-runtime/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-jsx-runtime/config/pre-copy.json', hash: '447189867406931907' }, - { file: 'packages/react-components/react-jsx-runtime/config/tests.js', hash: '16913843724990866890' }, - { - file: 'packages/react-components/react-jsx-runtime/etc/react-jsx-runtime.api.md', - hash: '16798684193978159480', - }, - { file: 'packages/react-components/react-jsx-runtime/jest.config.js', hash: '2360704257532875213' }, - { file: 'packages/react-components/react-jsx-runtime/just.config.ts', hash: '8807236478034018475' }, - { - file: 'packages/react-components/react-jsx-runtime/package.json', - hash: '7260507828872674596', - deps: [ - '@fluentui/react-utilities', - 'npm:react-is', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-components/react-jsx-runtime/project.json', hash: '10908212225777993114' }, - { file: 'packages/react-components/react-jsx-runtime/src/createElement.test.tsx', hash: '7857934002103683381' }, - { file: 'packages/react-components/react-jsx-runtime/src/createElement.ts', hash: '5143903251423192488' }, - { file: 'packages/react-components/react-jsx-runtime/src/index.ts', hash: '10432910293518490296' }, - { file: 'packages/react-components/react-jsx-runtime/src/interop.test.tsx', hash: '7355979823247544430' }, - { - file: 'packages/react-components/react-jsx-runtime/src/jsx/createElementFromSlotComponent.ts', - hash: '3242772620948003538', - }, - { file: 'packages/react-components/react-jsx-runtime/src/jsx/createJSX.ts', hash: '16587162612105716723' }, - { file: 'packages/react-components/react-jsx-runtime/src/jsx/jsxDEVSlot.ts', hash: '13641530372240414573' }, - { file: 'packages/react-components/react-jsx-runtime/src/jsx/jsxSlot.ts', hash: '3757873525937880939' }, - { file: 'packages/react-components/react-jsx-runtime/src/jsx/jsxsSlot.ts', hash: '14860851723228540792' }, - { - file: 'packages/react-components/react-jsx-runtime/src/jsx-dev-runtime/index.d.ts__tmpl__', - hash: '853853025402546499', - }, - { - file: 'packages/react-components/react-jsx-runtime/src/jsx-dev-runtime/package.json__tmpl__', - hash: '12566889565698761272', - }, - { file: 'packages/react-components/react-jsx-runtime/src/jsx-dev-runtime.ts', hash: '1020294888243174344' }, - { - file: 'packages/react-components/react-jsx-runtime/src/jsx-runtime/index.d.ts__tmpl__', - hash: '9028021041769997884', - }, - { - file: 'packages/react-components/react-jsx-runtime/src/jsx-runtime/package.json__tmpl__', - hash: '4896823238390758319', - }, - { file: 'packages/react-components/react-jsx-runtime/src/jsx-runtime.test.tsx', hash: '4011489009326148226' }, - { file: 'packages/react-components/react-jsx-runtime/src/jsx-runtime.ts', hash: '1117252994552105149' }, - { file: 'packages/react-components/react-jsx-runtime/src/utils/DevRuntime.ts', hash: '16814367357734031505' }, - { file: 'packages/react-components/react-jsx-runtime/src/utils/Runtime.ts', hash: '1866520596003103388' }, - { - file: 'packages/react-components/react-jsx-runtime/src/utils/createCompatSlotComponent.ts', - hash: '3622659148642250765', - }, - { - file: 'packages/react-components/react-jsx-runtime/src/utils/getMetadataFromSlotComponent.test.ts', - hash: '6977890710643796475', - }, - { - file: 'packages/react-components/react-jsx-runtime/src/utils/getMetadataFromSlotComponent.ts', - hash: '7143021942311493841', - }, - { file: 'packages/react-components/react-jsx-runtime/src/utils/types.ts', hash: '12638258598676338443' }, - { - file: 'packages/react-components/react-jsx-runtime/src/utils/warnIfElementTypeIsInvalid.ts', - hash: '17606458788076983412', - }, - { file: 'packages/react-components/react-jsx-runtime/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/react-jsx-runtime/tsconfig.lib.json', hash: '14975475306433073951' }, - { file: 'packages/react-components/react-jsx-runtime/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/projects-test': [ - { file: 'packages/fluentui/projects-test/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/projects-test/README.md', hash: '7712439429583937954' }, - { file: 'packages/fluentui/projects-test/assets/.eslintrc.json', hash: '9463757486019526557' }, - { file: 'packages/fluentui/projects-test/assets/cra/src/App.tsx', hash: '13975067287482039525' }, - { file: 'packages/fluentui/projects-test/assets/nextjs/pages/index.js', hash: '16720790296375983707' }, - { file: 'packages/fluentui/projects-test/assets/rollup/app.js', hash: '13611222878904424794' }, - { file: 'packages/fluentui/projects-test/assets/rollup/index.html', hash: '11741015068606122975' }, - { file: 'packages/fluentui/projects-test/assets/rollup/rollup.config.js', hash: '13323537449881479399' }, - { file: 'packages/fluentui/projects-test/assets/typings/src/index.tsx', hash: '9172007156886044749' }, - { file: 'packages/fluentui/projects-test/assets/typings/tsconfig.json', hash: '3933573742264779466' }, - { file: 'packages/fluentui/projects-test/babel.config.js', hash: '7654395597360391156' }, - { file: 'packages/fluentui/projects-test/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/projects-test/package.json', - hash: '4974496406254325970', - deps: [ - '@fluentui/react-northstar', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-projects-test', - ], - }, - { file: 'packages/fluentui/projects-test/project.json', hash: '11570660909808003153' }, - { file: 'packages/fluentui/projects-test/src/createReactApp.ts', hash: '14019440883191487480' }, - { file: 'packages/fluentui/projects-test/src/index.ts', hash: '6599092941110334536' }, - { file: 'packages/fluentui/projects-test/src/nextjs.ts', hash: '13103653866778791666' }, - { file: 'packages/fluentui/projects-test/src/rollup.ts', hash: '15862608973975210540' }, - { file: 'packages/fluentui/projects-test/src/typings.ts', hash: '1801624949097448713' }, - { file: 'packages/fluentui/projects-test/tsconfig.json', hash: '16064600855511744168' }, - ], - '@fluentui/scripts-projects-test': [ - { file: 'scripts/projects-test/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/projects-test/jest.config.js', hash: '14803115449739597477' }, - { - file: 'scripts/projects-test/package.json', - hash: '2440450978402607536', - deps: ['@fluentui/scripts-utils', '@fluentui/scripts-puppeteer', '@fluentui/scripts-monorepo'], - }, - { file: 'scripts/projects-test/project.json', hash: '7187626296521124201' }, - { file: 'scripts/projects-test/src/createReactApp.ts', hash: '12302227798055165115' }, - { file: 'scripts/projects-test/src/index.ts', hash: '14506511509153432346' }, - { file: 'scripts/projects-test/src/packPackages.ts', hash: '11290851018015733867' }, - { file: 'scripts/projects-test/src/performBrowserTest.ts', hash: '13012556253100885968' }, - { file: 'scripts/projects-test/src/utils.ts', hash: '3861302237109431008' }, - { file: 'scripts/projects-test/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/projects-test/tsconfig.lib.json', hash: '15222053984038389170' }, - { file: 'scripts/projects-test/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-proptypes': [ - { file: 'packages/fluentui/react-proptypes/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-proptypes/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-proptypes/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-proptypes/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-proptypes/jest.config.js', hash: '13298147580513423019' }, - { - file: 'packages/fluentui/react-proptypes/package.json', - hash: '7789869904881339211', - deps: [ - 'npm:@babel/runtime', - 'npm:lodash', - 'npm:prop-types', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:lerna-alias', - ], - }, - { file: 'packages/fluentui/react-proptypes/project.json', hash: '15801865268072002675' }, - { file: 'packages/fluentui/react-proptypes/src/index.ts', hash: '1441906070263022901' }, - { file: 'packages/fluentui/react-proptypes/src/leven.ts', hash: '8912276677069105379' }, - { file: 'packages/fluentui/react-proptypes/test/customPropTypes-test.ts', hash: '17583040494138182165' }, - { file: 'packages/fluentui/react-proptypes/tsconfig.json', hash: '2135287164835617870' }, - ], - '@fluentui/react-list-preview': [ - { file: 'packages/react-components/react-list-preview/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-list-preview/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-list-preview/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-list-preview/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-list-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-list-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-list-preview/LICENSE', hash: '5128350754157408457' }, - { file: 'packages/react-components/react-list-preview/README.md', hash: '13329727955369014943' }, - { file: 'packages/react-components/react-list-preview/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-list-preview/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-list-preview/docs/Spec.md', hash: '17280073763812887463' }, - { - file: 'packages/react-components/react-list-preview/etc/react-list-preview.api.md', - hash: '17650744448258090218', - }, - { file: 'packages/react-components/react-list-preview/jest.config.js', hash: '16230585065887809640' }, - { file: 'packages/react-components/react-list-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-list-preview/package.json', - hash: '5076334288358975452', - deps: [ - '@fluentui/react-jsx-runtime', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-shared-contexts', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-list-preview/project.json', hash: '18301453267181054182' }, - { file: 'packages/react-components/react-list-preview/src/List.ts', hash: '10892037581495151528' }, - { file: 'packages/react-components/react-list-preview/src/ListItem.ts', hash: '14415772845252035707' }, - { file: 'packages/react-components/react-list-preview/src/ListItemButton.ts', hash: '12363711673052210096' }, - { - file: 'packages/react-components/react-list-preview/src/components/List/List.test.tsx', - hash: '12322910775799983605', - }, - { - file: 'packages/react-components/react-list-preview/src/components/List/List.tsx', - hash: '1906116023345710491', - }, - { - file: 'packages/react-components/react-list-preview/src/components/List/List.types.ts', - hash: '8206792748462071029', - }, - { - file: 'packages/react-components/react-list-preview/src/components/List/__snapshots__/List.test.tsx.snap', - hash: '1227827408222929890', - }, - { - file: 'packages/react-components/react-list-preview/src/components/List/index.ts', - hash: '17107546934093025866', - }, - { - file: 'packages/react-components/react-list-preview/src/components/List/renderList.tsx', - hash: '15714918800686291357', - }, - { - file: 'packages/react-components/react-list-preview/src/components/List/useList.ts', - hash: '1027276539563479344', - }, - { - file: 'packages/react-components/react-list-preview/src/components/List/useListStyles.styles.ts', - hash: '6095077202937619016', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItem/ListItem.test.tsx', - hash: '3230708006815606248', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItem/ListItem.tsx', - hash: '3046689597475996224', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItem/ListItem.types.ts', - hash: '8027419436099248507', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItem/__snapshots__/ListItem.test.tsx.snap', - hash: '2250098978442735994', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItem/index.ts', - hash: '13458219659794583076', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItem/renderListItem.tsx', - hash: '4538665908862285107', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItem/useListItem.ts', - hash: '8332993251183877292', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItem/useListItemStyles.styles.ts', - hash: '145972862822319399', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.test.tsx', - hash: '8574153664309206265', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.tsx', - hash: '15946025473178805384', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItemButton/ListItemButton.types.ts', - hash: '12013190060983824846', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItemButton/__snapshots__/ListItemButton.test.tsx.snap', - hash: '7851601325088660553', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItemButton/index.ts', - hash: '10205948326421395785', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItemButton/renderListItemButton.tsx', - hash: '4278382112469247585', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItemButton/useListItemButton.ts', - hash: '17042796213188080990', - }, - { - file: 'packages/react-components/react-list-preview/src/components/ListItemButton/useListItemButtonStyles.styles.ts', - hash: '8509921485527948458', - }, - { file: 'packages/react-components/react-list-preview/src/index.ts', hash: '12167157468152511670' }, - { file: 'packages/react-components/react-list-preview/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-list-preview/stories/List/ListBestPractices.md', - hash: '13132854725403121719', - }, - { - file: 'packages/react-components/react-list-preview/stories/List/ListDefault.stories.tsx', - hash: '5601696470293348097', - }, - { - file: 'packages/react-components/react-list-preview/stories/List/ListDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-list-preview/stories/List/index.stories.tsx', - hash: '9555990577237225551', - }, - { - file: 'packages/react-components/react-list-preview/stories/ListItem/ListItemBestPractices.md', - hash: '13132854725403121719', - }, - { - file: 'packages/react-components/react-list-preview/stories/ListItem/ListItemDefault.stories.tsx', - hash: '13381635606214282007', - }, - { - file: 'packages/react-components/react-list-preview/stories/ListItem/ListItemDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-list-preview/stories/ListItem/index.stories.tsx', - hash: '9558837703344875089', - }, - { - file: 'packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonBestPractices.md', - hash: '13132854725403121719', - }, - { - file: 'packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonDefault.stories.tsx', - hash: '6954470783452371311', - }, - { - file: 'packages/react-components/react-list-preview/stories/ListItemButton/ListItemButtonDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-list-preview/stories/ListItemButton/index.stories.tsx', - hash: '5432902562725269627', - }, - { file: 'packages/react-components/react-list-preview/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-list-preview/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-list-preview/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-motion-preview': [ - { file: 'packages/react-components/react-motion-preview/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-motion-preview/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-motion-preview/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-motion-preview/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-motion-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-motion-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-motion-preview/CHANGELOG.json', hash: '11137084770627020814' }, - { file: 'packages/react-components/react-motion-preview/CHANGELOG.md', hash: '7183679563961265393' }, - { file: 'packages/react-components/react-motion-preview/LICENSE', hash: '1234262793966931881' }, - { file: 'packages/react-components/react-motion-preview/README.md', hash: '5121976902997572308' }, - { file: 'packages/react-components/react-motion-preview/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-motion-preview/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-motion-preview/docs/Spec.md', hash: '17845913729800975033' }, - { - file: 'packages/react-components/react-motion-preview/etc/react-motion-preview.api.md', - hash: '11822234989690462944', - }, - { file: 'packages/react-components/react-motion-preview/jest.config.js', hash: '14155382610793147225' }, - { file: 'packages/react-components/react-motion-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-motion-preview/package.json', - hash: '15544045345364563922', - deps: [ - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-motion-preview/project.json', hash: '9755635695534125383' }, - { file: 'packages/react-components/react-motion-preview/src/hooks/index.ts', hash: '8858878511737786592' }, - { - file: 'packages/react-components/react-motion-preview/src/hooks/useMotion.test.ts', - hash: '5083954587357687141', - }, - { file: 'packages/react-components/react-motion-preview/src/hooks/useMotion.ts', hash: '8532028455825888123' }, - { - file: 'packages/react-components/react-motion-preview/src/hooks/useMotionClassNames.test.ts', - hash: '2430367888544834912', - }, - { - file: 'packages/react-components/react-motion-preview/src/hooks/useMotionClassNames.ts', - hash: '10739644114435117367', - }, - { - file: 'packages/react-components/react-motion-preview/src/hooks/useReducedMotion.ts', - hash: '15515325398588090509', - }, - { file: 'packages/react-components/react-motion-preview/src/index.ts', hash: '479877564955136295' }, - { - file: 'packages/react-components/react-motion-preview/src/styles/useReducedMotionStyles.styles.ts', - hash: '4540984684513496074', - }, - { - file: 'packages/react-components/react-motion-preview/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { file: 'packages/react-components/react-motion-preview/src/utils/dom-style.ts', hash: '6443096568349431012' }, - { - file: 'packages/react-components/react-motion-preview/stories/UseMotion/MotionDescription.md', - hash: '4620999901264858225', - }, - { - file: 'packages/react-components/react-motion-preview/stories/UseMotion/MotionPreview.md', - hash: '9912155066303383782', - }, - { - file: 'packages/react-components/react-motion-preview/stories/UseMotion/MotionUsage.md', - hash: '10800830911355677136', - }, - { - file: 'packages/react-components/react-motion-preview/stories/UseMotion/UseMotion.stories.tsx', - hash: '3965154038000933055', - }, - { - file: 'packages/react-components/react-motion-preview/stories/UseMotion/UseMotionClassNames.stories.tsx', - hash: '972675374824631381', - }, - { - file: 'packages/react-components/react-motion-preview/stories/UseMotion/UseMotionWithDuration.stories.tsx', - hash: '7144854141420674605', - }, - { - file: 'packages/react-components/react-motion-preview/stories/UseMotion/index.stories.ts', - hash: '8283014325877865669', - }, - { file: 'packages/react-components/react-motion-preview/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-motion-preview/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-motion-preview/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/storybook': [ - { file: 'packages/storybook/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/storybook/.npmignore', hash: '15779616407447347661' }, - { file: 'packages/storybook/CHANGELOG.json', hash: '9684832229916596120' }, - { file: 'packages/storybook/CHANGELOG.md', hash: '6591049344540378333' }, - { file: 'packages/storybook/LICENSE', hash: '6831112954983569679' }, - { file: 'packages/storybook/README.md', hash: '14770738643865662074' }, - { file: 'packages/storybook/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/storybook/package.json', - hash: '11762021688884133970', - deps: [ - '@fluentui/react', - '@fluentui/theme', - 'npm:@storybook/addon-knobs', - 'npm:@storybook/addon-essentials', - 'npm:@storybook/addons', - '@fluentui/azure-themes', - '@fluentui/theme-samples', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/storybook/project.json', hash: '10709984597705834020' }, - { file: 'packages/storybook/src/decorators/index.ts', hash: '16391345502308910273' }, - { file: 'packages/storybook/src/decorators/withKeytipLayer.tsx', hash: '8532635969922419204' }, - { file: 'packages/storybook/src/decorators/withStrictMode.tsx', hash: '13082330610558521527' }, - { file: 'packages/storybook/src/index.ts', hash: '15433361193389949391' }, - { file: 'packages/storybook/src/knobs/useStrictMode.ts', hash: '1532086437071717950' }, - { file: 'packages/storybook/tsconfig.json', hash: '3498435803851457058' }, - ], - '@fluentui/theme': [ - { file: 'packages/theme/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/theme/.npmignore', hash: '7699079327417375383' }, - { file: 'packages/theme/CHANGELOG.json', hash: '8694526630624738678' }, - { file: 'packages/theme/CHANGELOG.md', hash: '5405190803702508355' }, - { file: 'packages/theme/LICENSE', hash: '15786973076553793748' }, - { file: 'packages/theme/README.md', hash: '9513324721564020061' }, - { file: 'packages/theme/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/theme/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/theme/etc/theme.api.md', hash: '11990291598636491933' }, - { file: 'packages/theme/jest.config.js', hash: '8193037916930093299' }, - { file: 'packages/theme/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/theme/package.json', - hash: '4880658300010728294', - deps: [ - '@fluentui/merge-styles', - '@fluentui/utilities', - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/theme/project.json', hash: '5594824764663362836' }, - { file: 'packages/theme/src/FluentTheme.ts', hash: '8872927701412996736' }, - { file: 'packages/theme/src/__snapshots__/createTheme.test.ts.snap', hash: '1620181105913435241' }, - { file: 'packages/theme/src/__snapshots__/mergeThemes.test.ts.snap', hash: '3437625483425530701' }, - { file: 'packages/theme/src/colors/DefaultPalette.ts', hash: '9047280692656939649' }, - { file: 'packages/theme/src/colors/FluentColors.ts', hash: '3901943768402102586' }, - { file: 'packages/theme/src/colors/index.ts', hash: '17068496585037409656' }, - { file: 'packages/theme/src/createTheme.test.ts', hash: '13146216824160332649' }, - { file: 'packages/theme/src/createTheme.ts', hash: '165150282001144514' }, - { file: 'packages/theme/src/effects/DefaultEffects.ts', hash: '12509924764455750919' }, - { file: 'packages/theme/src/effects/FluentDepths.ts', hash: '17261250879660942101' }, - { file: 'packages/theme/src/effects/index.ts', hash: '11784798050056506025' }, - { file: 'packages/theme/src/fonts/DefaultFontStyles.ts', hash: '7513078596996372857' }, - { file: 'packages/theme/src/fonts/FluentFonts.ts', hash: '15183035779480308768' }, - { file: 'packages/theme/src/fonts/__snapshots__/createFontStyles.test.ts.snap', hash: '13260755682867724243' }, - { file: 'packages/theme/src/fonts/createFontStyles.test.ts', hash: '342084165563790114' }, - { file: 'packages/theme/src/fonts/createFontStyles.ts', hash: '6054997297777341246' }, - { file: 'packages/theme/src/fonts/index.ts', hash: '7989996203233507146' }, - { file: 'packages/theme/src/index.ts', hash: '5096156196141648071' }, - { file: 'packages/theme/src/mergeThemes.test.ts', hash: '1854964498231524841' }, - { file: 'packages/theme/src/mergeThemes.ts', hash: '8066733853025885142' }, - { file: 'packages/theme/src/motion/AnimationStyles.ts', hash: '6009016863933539960' }, - { file: 'packages/theme/src/motion/FluentMotion.ts', hash: '14434753786724348979' }, - { file: 'packages/theme/src/motion/index.ts', hash: '11675984740600839755' }, - { file: 'packages/theme/src/spacing/DefaultSpacing.ts', hash: '10219715360821251712' }, - { file: 'packages/theme/src/spacing/index.ts', hash: '3486351936943740825' }, - { file: 'packages/theme/src/types/IAnimationStyles.ts', hash: '12653971684196105051' }, - { file: 'packages/theme/src/types/IEffects.ts', hash: '10026907101397233905' }, - { file: 'packages/theme/src/types/IFabricConfig.ts', hash: '5071856735493168297' }, - { file: 'packages/theme/src/types/IFontStyles.ts', hash: '2182319282794586696' }, - { file: 'packages/theme/src/types/IPalette.ts', hash: '2529464931097454784' }, - { file: 'packages/theme/src/types/IScheme.ts', hash: '9513225299507328404' }, - { file: 'packages/theme/src/types/ISemanticColors.ts', hash: '4202804278930620465' }, - { file: 'packages/theme/src/types/ISemanticTextColors.ts', hash: '14306295845370698813' }, - { file: 'packages/theme/src/types/ISpacing.ts', hash: '15242286375604099718' }, - { file: 'packages/theme/src/types/ITheme.ts', hash: '3909617946113210701' }, - { file: 'packages/theme/src/types/Theme.ts', hash: '10290910868267444293' }, - { file: 'packages/theme/src/types/index.ts', hash: '11830819220037665655' }, - { file: 'packages/theme/src/utilities/makeSemanticColors.ts', hash: '7063463176732882313' }, - { file: 'packages/theme/src/version.ts', hash: '14766332737427891807' }, - { file: 'packages/theme/tsconfig.json', hash: '12924358714988094235' }, - ], - '@fluentui/scripts-generators': [ - { file: 'scripts/generators/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/generators/README.md', hash: '3244421341483603138' }, - { file: 'scripts/generators/copy-notices.js', hash: '8339956232807130894' }, - { file: 'scripts/generators/create-package/index.ts', hash: '1023464366955464488' }, - { file: 'scripts/generators/create-package/plop-templates/.npmignore', hash: '15779616407447347661' }, - { file: 'scripts/generators/create-package/plop-templates/LICENSE', hash: '7784678994578688470' }, - { file: 'scripts/generators/create-package/plop-templates-node/.eslintrc.json', hash: '11018738359270224912' }, - { file: 'scripts/generators/create-package/plop-templates-node/README.md', hash: '11488531901706867964' }, - { file: 'scripts/generators/create-package/plop-templates-node/jest.config.js', hash: '5767287689832801759' }, - { file: 'scripts/generators/create-package/plop-templates-node/just.config.ts', hash: '10393370776333958822' }, - { file: 'scripts/generators/create-package/plop-templates-node/package.json.hbs', hash: '1858263664827995967' }, - { file: 'scripts/generators/create-package/plop-templates-node/src/index.ts', hash: '3244421341483603138' }, - { file: 'scripts/generators/create-package/plop-templates-node/tsconfig.json', hash: '14003963471471549059' }, - { file: 'scripts/generators/generate-package-manifest.js', hash: '829917185810683924' }, - { file: 'scripts/generators/generate-version-files.spec.ts', hash: '11734705974912052662' }, - { file: 'scripts/generators/generate-version-files.ts', hash: '16599489589663836752' }, - { file: 'scripts/generators/jest.config.js', hash: '17142233150211201331' }, - { - file: 'scripts/generators/package.json', - hash: '17736771304901104740', - deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-projects-test'], - }, - { file: 'scripts/generators/project.json', hash: '13911854573080798778' }, - { file: 'scripts/generators/rename-package.ts', hash: '18400035219499976562' }, - { file: 'scripts/generators/token-pipeline.ts', hash: '3747370135770113790' }, - { file: 'scripts/generators/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/generators/tsconfig.lib.json', hash: '504082678461750961' }, - { file: 'scripts/generators/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/scripts-storybook': [ - { file: 'scripts/storybook/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/storybook/README.md', hash: '6260771668642713165' }, - { file: 'scripts/storybook/jest.config.js', hash: '16159426598495183550' }, - { file: 'scripts/storybook/package.json', hash: '12768044836505529310', deps: ['@fluentui/scripts-monorepo'] }, - { file: 'scripts/storybook/project.json', hash: '11232580624195990329' }, - { file: 'scripts/storybook/src/index.d.ts', hash: '826157356781274866' }, - { file: 'scripts/storybook/src/index.js', hash: '1482846448957198356' }, - { file: 'scripts/storybook/src/loaders/custom-loader.js', hash: '4294621560128078241' }, - { file: 'scripts/storybook/src/rules.js', hash: '3284759671334880193' }, - { file: 'scripts/storybook/src/rules.spec.ts', hash: '13748453131777334686' }, - { file: 'scripts/storybook/src/utils.js', hash: '16447078335761239049' }, - { file: 'scripts/storybook/src/utils.spec.js', hash: '7235305373409857463' }, - { file: 'scripts/storybook/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/storybook/tsconfig.lib.json', hash: '3593133700658772030' }, - { file: 'scripts/storybook/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-icon-provider': [ - { file: 'packages/react-icon-provider/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-icon-provider/.npmignore', hash: '7699079327417375383' }, - { file: 'packages/react-icon-provider/CHANGELOG.json', hash: '7676443020765681429' }, - { file: 'packages/react-icon-provider/CHANGELOG.md', hash: '4138333685783748774' }, - { file: 'packages/react-icon-provider/LICENSE', hash: '3916819357349058896' }, - { file: 'packages/react-icon-provider/README.md', hash: '11260395080290584789' }, - { file: 'packages/react-icon-provider/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/react-icon-provider/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-icon-provider/etc/react-icon-provider.api.md', hash: '2639769618235613758' }, - { file: 'packages/react-icon-provider/jest.config.js', hash: '12858682342254308337' }, - { file: 'packages/react-icon-provider/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-icon-provider/package.json', - hash: '16700522927875202724', - deps: [ - '@fluentui/set-version', - '@fluentui/style-utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-icon-provider/project.json', hash: '11213610105968358891' }, - { file: 'packages/react-icon-provider/src/IconProvider.test.tsx', hash: '9471100122187543170' }, - { file: 'packages/react-icon-provider/src/IconProvider.tsx', hash: '5846544110297203840' }, - { file: 'packages/react-icon-provider/src/IconProvider.types.ts', hash: '18141011749410796467' }, - { file: 'packages/react-icon-provider/src/index.ts', hash: '14545138585849154184' }, - { file: 'packages/react-icon-provider/src/version.ts', hash: '14409932537788799216' }, - { file: 'packages/react-icon-provider/tsconfig.json', hash: '5979352251281818134' }, - { file: 'packages/react-icon-provider/webpack.config.js', hash: '15864044479926769048' }, - ], - '@fluentui/react-infolabel': [ - { file: 'packages/react-components/react-infolabel/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-infolabel/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-infolabel/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-infolabel/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-infolabel/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-infolabel/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-infolabel/CHANGELOG.json', hash: '14825917095076416560' }, - { file: 'packages/react-components/react-infolabel/CHANGELOG.md', hash: '5575191642924707850' }, - { file: 'packages/react-components/react-infolabel/LICENSE', hash: '2987466484218074898' }, - { file: 'packages/react-components/react-infolabel/README.md', hash: '5543000756530108389' }, - { file: 'packages/react-components/react-infolabel/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-infolabel/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-infolabel/docs/Spec.md', hash: '12415704727702896077' }, - { file: 'packages/react-components/react-infolabel/etc/images/anatomy.png', hash: '13995183815818235250' }, - { file: 'packages/react-components/react-infolabel/etc/react-infolabel.api.md', hash: '9231325368668071686' }, - { file: 'packages/react-components/react-infolabel/jest.config.js', hash: '5573754893493331513' }, - { file: 'packages/react-components/react-infolabel/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-infolabel/package.json', - hash: '3691223503924983980', - deps: [ - 'npm:@fluentui/react-icons', - '@fluentui/react-label', - '@fluentui/react-popover', - '@fluentui/react-tabster', - '@fluentui/react-jsx-runtime', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-infolabel/project.json', hash: '2136490827902334281' }, - { file: 'packages/react-components/react-infolabel/src/InfoButton.ts', hash: '6736681049567293007' }, - { file: 'packages/react-components/react-infolabel/src/InfoLabel.ts', hash: '10491035089563452821' }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoButton/DefaultInfoButtonIcons.tsx', - hash: '2356653625358885392', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.test.tsx', - hash: '13091422380860995039', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.tsx', - hash: '5812446199269029862', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoButton/InfoButton.types.ts', - hash: '14174263946567083160', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoButton/index.ts', - hash: '7451520123696318723', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoButton/renderInfoButton.tsx', - hash: '16476543032585061641', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoButton/useInfoButton.tsx', - hash: '12562846819852203468', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoButton/useInfoButtonStyles.styles.ts', - hash: '4457053427318314740', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.cy.tsx', - hash: '2745939329689272907', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.test.tsx', - hash: '6162167383950242729', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.tsx', - hash: '12414993670554885735', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoLabel/InfoLabel.types.ts', - hash: '12259668345002550793', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoLabel/index.ts', - hash: '1040167975180781477', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoLabel/renderInfoLabel.tsx', - hash: '5569550196608831394', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoLabel/useInfoLabel.ts', - hash: '14332118226680718175', - }, - { - file: 'packages/react-components/react-infolabel/src/components/InfoLabel/useInfoLabelStyles.styles.ts', - hash: '11079399471116346237', - }, - { file: 'packages/react-components/react-infolabel/src/index.ts', hash: '12739416375820815573' }, - { file: 'packages/react-components/react-infolabel/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelBestPractices.md', - hash: '18109648245575154087', - }, - { - file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelDefault.stories.tsx', - hash: '33809515516315681', - }, - { - file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelDescription.md', - hash: '3255656647713314223', - }, - { - file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelInField.stories.tsx', - hash: '15564638452241970423', - }, - { - file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelPatternDecision.md', - hash: '14148502240650949226', - }, - { - file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelRequired.stories.tsx', - hash: '16536409628055983147', - }, - { - file: 'packages/react-components/react-infolabel/stories/InfoLabel/InfoLabelSize.stories.tsx', - hash: '14310723017255313418', - }, - { - file: 'packages/react-components/react-infolabel/stories/InfoLabel/index.stories.tsx', - hash: '4506291592511583485', - }, - { file: 'packages/react-components/react-infolabel/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-infolabel/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-infolabel/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-date-time': [ - { file: 'packages/react-date-time/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/react-date-time/.npmignore', hash: '47056201363133096' }, - { file: 'packages/react-date-time/CHANGELOG.json', hash: '18156196373815370050' }, - { file: 'packages/react-date-time/CHANGELOG.md', hash: '4855813969435406760' }, - { file: 'packages/react-date-time/LICENSE', hash: '12975953156565096830' }, - { file: 'packages/react-date-time/README.md', hash: '15691804740406296083' }, - { file: 'packages/react-date-time/jest.config.js', hash: '8193037916930093299' }, - { file: 'packages/react-date-time/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-date-time/package.json', - hash: '9250053857878111678', - deps: [ - '@fluentui/react', - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-date-time/project.json', hash: '17422642528566626285' }, - { file: 'packages/react-date-time/src/Calendar.ts', hash: '14700922771323523697' }, - { file: 'packages/react-date-time/src/DatePicker.ts', hash: '3623451289574798351' }, - { file: 'packages/react-date-time/src/DateTimeUtilities.ts', hash: '5456722169763545772' }, - { file: 'packages/react-date-time/src/WeeklyDayPicker.ts', hash: '1544570974339003405' }, - { file: 'packages/react-date-time/src/index.ts', hash: '15527264248861218523' }, - { file: 'packages/react-date-time/src/version.ts', hash: '9682315595235674523' }, - { file: 'packages/react-date-time/tsconfig.json', hash: '15516134720009168635' }, - { file: 'packages/react-date-time/webpack.config.js', hash: '13232597493584319508' }, - ], - '@fluentui/react-spinbutton': [ - { file: 'packages/react-components/react-spinbutton/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-spinbutton/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-spinbutton/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-spinbutton/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-spinbutton/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-spinbutton/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-spinbutton/CHANGELOG.json', hash: '4847245186650734891' }, - { file: 'packages/react-components/react-spinbutton/CHANGELOG.md', hash: '4902713454531527375' }, - { file: 'packages/react-components/react-spinbutton/LICENSE', hash: '4901619448559189631' }, - { file: 'packages/react-components/react-spinbutton/README.md', hash: '6512108027180420597' }, - { - file: 'packages/react-components/react-spinbutton/bundle-size/SpinButton.fixture.js', - hash: '16023973476048778455', - }, - { file: 'packages/react-components/react-spinbutton/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-spinbutton/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-spinbutton/docs/Spec.md', hash: '17048980095820677857' }, - { - file: 'packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-anatomy-alt-optional.png', - hash: '13753539968611981470', - }, - { - file: 'packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-anatomy.png', - hash: '18087276809080644822', - }, - { - file: 'packages/react-components/react-spinbutton/docs/assets/spec-spinbutton-rtl.png', - hash: '10178174469976600135', - }, - { file: 'packages/react-components/react-spinbutton/etc/react-spinbutton.api.md', hash: '18118992056737806686' }, - { file: 'packages/react-components/react-spinbutton/jest.config.js', hash: '5038573041434583937' }, - { file: 'packages/react-components/react-spinbutton/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-spinbutton/package.json', - hash: '17080806880489308285', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-field', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/react-label', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-spinbutton/project.json', hash: '6379772465996644580' }, - { file: 'packages/react-components/react-spinbutton/src/SpinButton.ts', hash: '10602772673075263099' }, - { - file: 'packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.test.tsx', - hash: '2529374188480590348', - }, - { - file: 'packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.tsx', - hash: '788511591351181259', - }, - { - file: 'packages/react-components/react-spinbutton/src/components/SpinButton/SpinButton.types.ts', - hash: '3207195866649797051', - }, - { - file: 'packages/react-components/react-spinbutton/src/components/SpinButton/index.ts', - hash: '5065932832394680212', - }, - { - file: 'packages/react-components/react-spinbutton/src/components/SpinButton/renderSpinButton.tsx', - hash: '17782965779459944100', - }, - { - file: 'packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButton.tsx', - hash: '10465556537581682721', - }, - { - file: 'packages/react-components/react-spinbutton/src/components/SpinButton/useSpinButtonStyles.styles.ts', - hash: '15271342305082281981', - }, - { file: 'packages/react-components/react-spinbutton/src/index.ts', hash: '2388138643531843309' }, - { file: 'packages/react-components/react-spinbutton/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { file: 'packages/react-components/react-spinbutton/src/utils/clamp.test.ts', hash: '3964669773551288141' }, - { file: 'packages/react-components/react-spinbutton/src/utils/clamp.ts', hash: '10177435754315781459' }, - { file: 'packages/react-components/react-spinbutton/src/utils/getBound.test.ts', hash: '18120932611634343469' }, - { file: 'packages/react-components/react-spinbutton/src/utils/getBound.ts', hash: '515581470280674119' }, - { file: 'packages/react-components/react-spinbutton/src/utils/index.ts', hash: '16890875363210734367' }, - { file: 'packages/react-components/react-spinbutton/src/utils/precision.test.ts', hash: '798415561525743906' }, - { file: 'packages/react-components/react-spinbutton/src/utils/precision.ts', hash: '16903292310337878641' }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonAccessibility.stories.mdx', - hash: '1503270725368707028', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonAppearance.stories.tsx', - hash: '13092748199560825495', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonBestPractices.md', - hash: '4783838838611473205', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonBounds.stories.tsx', - hash: '7858054212332861516', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonControlled.stories.tsx', - hash: '207977934062393475', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDefault.stories.tsx', - hash: '1013817923674569921', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDescription.md', - hash: '13202291952905790897', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDisabled.stories.tsx', - hash: '4734117348533727561', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonDisplayValue.stories.tsx', - hash: '10424051550481513902', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonSize.stories.tsx', - hash: '1604059465229598492', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonStep.stories.tsx', - hash: '231949000919450310', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/SpinButtonUncontrolled.stories.tsx', - hash: '16327167484923159262', - }, - { - file: 'packages/react-components/react-spinbutton/stories/SpinButton/index.stories.tsx', - hash: '16340081334536213963', - }, - { file: 'packages/react-components/react-spinbutton/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-spinbutton/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-spinbutton/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-conformance': [ - { file: 'packages/react-conformance/.eslintrc.json', hash: '11018738359270224912' }, - { file: 'packages/react-conformance/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-conformance/CHANGELOG.json', hash: '6578657003336071113' }, - { file: 'packages/react-conformance/CHANGELOG.md', hash: '66641472905235873' }, - { file: 'packages/react-conformance/LICENSE', hash: '7780562789533159941' }, - { file: 'packages/react-conformance/README.md', hash: '6556208184847558914' }, - { file: 'packages/react-conformance/config/api-extractor.json', hash: '13718895879978423572' }, - { file: 'packages/react-conformance/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-conformance/etc/react-conformance.api.md', hash: '840228627974102754' }, - { file: 'packages/react-conformance/jest.config.js', hash: '5527543839095969732' }, - { file: 'packages/react-conformance/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-conformance/package.json', - hash: '58094267094777417', - deps: [ - 'npm:lodash', - 'npm:chalk', - 'npm:react-docgen-typescript', - 'npm:react-is', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:@testing-library/react', - 'npm:jest', - 'npm:react', - 'npm:react-dom', - 'npm:typescript', - ], - }, - { file: 'packages/react-conformance/project.json', hash: '214209136939617400' }, - { file: 'packages/react-conformance/src/defaultErrorMessages.tsx', hash: '1214813805605604373' }, - { file: 'packages/react-conformance/src/defaultTests.tsx', hash: '214491534434202084' }, - { file: 'packages/react-conformance/src/index.ts', hash: '13966697755180852351' }, - { file: 'packages/react-conformance/src/isConformant.ts', hash: '2029686572280398735' }, - { file: 'packages/react-conformance/src/types.ts', hash: '1086329725081600766' }, - { file: 'packages/react-conformance/src/utils/createTsProgram.ts', hash: '15323993820830846187' }, - { file: 'packages/react-conformance/src/utils/errorMessages.ts', hash: '12936357018639293921' }, - { file: 'packages/react-conformance/src/utils/getCallbackArguments.test.ts', hash: '3190033166404173726' }, - { file: 'packages/react-conformance/src/utils/getCallbackArguments.ts', hash: '10149531500130398942' }, - { file: 'packages/react-conformance/src/utils/getComponentDoc.ts', hash: '16416622701949776911' }, - { file: 'packages/react-conformance/src/utils/getPackagePath.ts', hash: '14010501437001551216' }, - { file: 'packages/react-conformance/src/utils/index.ts', hash: '17773056335241924487' }, - { file: 'packages/react-conformance/src/utils/merge.test.ts', hash: '11835591977761030799' }, - { file: 'packages/react-conformance/src/utils/merge.ts', hash: '16613229026682068851' }, - { file: 'packages/react-conformance/src/utils/validateCallbackArguments.test.ts', hash: '3119507892883401399' }, - { file: 'packages/react-conformance/src/utils/validateCallbackArguments.ts', hash: '14962630765061713958' }, - { file: 'packages/react-conformance/tsconfig.json', hash: '1064149269220154025' }, - { file: 'packages/react-conformance/tsconfig.lib.json', hash: '16857783929210866443' }, - { file: 'packages/react-conformance/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-switch': [ - { file: 'packages/react-components/react-switch/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-switch/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-switch/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-switch/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-switch/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-switch/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-switch/CHANGELOG.json', hash: '93480200567092769' }, - { file: 'packages/react-components/react-switch/CHANGELOG.md', hash: '4993373179594467646' }, - { file: 'packages/react-components/react-switch/LICENSE', hash: '7758643350479616012' }, - { file: 'packages/react-components/react-switch/README.md', hash: '6695124769051641866' }, - { file: 'packages/react-components/react-switch/bundle-size/Switch.fixture.js', hash: '18142234447983599749' }, - { file: 'packages/react-components/react-switch/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-switch/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-switch/docs/MIGRATION.md', hash: '15118859291030401714' }, - { file: 'packages/react-components/react-switch/docs/Spec.md', hash: '17548703377455617725' }, - { file: 'packages/react-components/react-switch/etc/react-switch.api.md', hash: '10388195155800950811' }, - { file: 'packages/react-components/react-switch/jest.config.js', hash: '11796909119431137923' }, - { file: 'packages/react-components/react-switch/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-switch/package.json', - hash: '13345183038821483661', - deps: [ - '@fluentui/react-field', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-label', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-switch/project.json', hash: '17239642703487167945' }, - { file: 'packages/react-components/react-switch/src/Switch.ts', hash: '4931084963559363607' }, - { - file: 'packages/react-components/react-switch/src/components/Switch/Switch.test.tsx', - hash: '7606500747307139081', - }, - { file: 'packages/react-components/react-switch/src/components/Switch/Switch.tsx', hash: '159146658299780809' }, - { - file: 'packages/react-components/react-switch/src/components/Switch/Switch.types.ts', - hash: '3218403624876301764', - }, - { file: 'packages/react-components/react-switch/src/components/Switch/index.ts', hash: '792032061260370567' }, - { - file: 'packages/react-components/react-switch/src/components/Switch/renderSwitch.tsx', - hash: '10093392201553883072', - }, - { - file: 'packages/react-components/react-switch/src/components/Switch/useSwitch.tsx', - hash: '12151981653417627061', - }, - { - file: 'packages/react-components/react-switch/src/components/Switch/useSwitchStyles.styles.ts', - hash: '5898159194979167501', - }, - { file: 'packages/react-components/react-switch/src/index.ts', hash: '13437810719619271071' }, - { file: 'packages/react-components/react-switch/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-switch/stories/Switch/SwitchBestPractices.md', - hash: '8459364606907620813', - }, - { - file: 'packages/react-components/react-switch/stories/Switch/SwitchChecked.stories.tsx', - hash: '3140098803061046154', - }, - { - file: 'packages/react-components/react-switch/stories/Switch/SwitchDefault.stories.tsx', - hash: '3109229446861735999', - }, - { - file: 'packages/react-components/react-switch/stories/Switch/SwitchDescription.md', - hash: '16734928102220688292', - }, - { - file: 'packages/react-components/react-switch/stories/Switch/SwitchDisabled.stories.tsx', - hash: '2972558941372219207', - }, - { - file: 'packages/react-components/react-switch/stories/Switch/SwitchLabel.stories.tsx', - hash: '6846171252178115747', - }, - { - file: 'packages/react-components/react-switch/stories/Switch/SwitchLabelWrapping.stories.tsx', - hash: '13592280099387883871', - }, - { - file: 'packages/react-components/react-switch/stories/Switch/SwitchRequired.stories.tsx', - hash: '341782030343560004', - }, - { file: 'packages/react-components/react-switch/stories/Switch/index.stories.tsx', hash: '8026541863353447357' }, - { file: 'packages/react-components/react-switch/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-switch/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-switch/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/public-docsite-v9': [ - { file: 'apps/public-docsite-v9/.eslintrc.json', hash: '12497812907571400468' }, - { file: 'apps/public-docsite-v9/.storybook/docs-root-v9.css', hash: '16563406447022184093' }, - { file: 'apps/public-docsite-v9/.storybook/fix-title.js', hash: '17599399265234770426' }, - { file: 'apps/public-docsite-v9/.storybook/main.js', hash: '6496718208363723616' }, - { file: 'apps/public-docsite-v9/.storybook/manager-head.html', hash: '13902987237282594488' }, - { file: 'apps/public-docsite-v9/.storybook/manager.js', hash: '540459751487629314' }, - { file: 'apps/public-docsite-v9/.storybook/preview.js', hash: '628810804158154204' }, - { file: 'apps/public-docsite-v9/.storybook/theme.js', hash: '7607713174807756313' }, - { file: 'apps/public-docsite-v9/.storybook/tsconfig.json', hash: '15192856431060810840' }, - { file: 'apps/public-docsite-v9/CHANGELOG.json', hash: '5406493558112367419' }, - { file: 'apps/public-docsite-v9/CHANGELOG.md', hash: '8062893342931727325' }, - { file: 'apps/public-docsite-v9/README.md', hash: '537846658286629306' }, - { file: 'apps/public-docsite-v9/just.config.ts', hash: '2411455081002746933' }, - { - file: 'apps/public-docsite-v9/package.json', - hash: '16525272186147476408', - deps: [ - '@fluentui/react-calendar-compat', - '@fluentui/react-datepicker-compat', - '@fluentui/react-migration-v8-v9', - '@fluentui/react-migration-v0-v9', - '@fluentui/react', - '@fluentui/react-northstar', - '@fluentui/react-icons-northstar', - '@fluentui/react-components', - '@fluentui/react-storybook-addon', - '@fluentui/react-storybook-addon-export-to-sandbox', - '@fluentui/theme-designer', - '@fluentui/react-rating-preview', - '@fluentui/react-search-preview', - '@fluentui/react-motion-preview', - '@fluentui/react-teaching-popover-preview', - '@fluentui/react-timepicker-compat-preview', - 'npm:@griffel/react', - 'npm:@microsoft/applicationinsights-web', - 'npm:react', - 'npm:react-dom', - 'npm:react-window', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-storybook', - '@fluentui/scripts-tasks', - ], - }, - { file: 'apps/public-docsite-v9/project.json', hash: '1043518714100618396' }, - { file: 'apps/public-docsite-v9/public/brand-ramp-example.png', hash: '15610878053853781255' }, - { file: 'apps/public-docsite-v9/public/favicon-192.ico', hash: '8084905982277287563' }, - { file: 'apps/public-docsite-v9/public/favicon.ico', hash: '16917280242094002623' }, - { file: 'apps/public-docsite-v9/public/fluent.svg', hash: '18218964943649168724' }, - { file: 'apps/public-docsite-v9/public/fluent9-chevrons.png', hash: '12840033210156090801' }, - { file: 'apps/public-docsite-v9/public/fluent9-spring.png', hash: '11573364905124166842' }, - { file: 'apps/public-docsite-v9/public/fluent9-stars.png', hash: '9893314943427985760' }, - { file: 'apps/public-docsite-v9/public/fluent9.png', hash: '5704881173370893026' }, - { file: 'apps/public-docsite-v9/public/fluentui-banner-meta.png', hash: '1719012936996521465' }, - { file: 'apps/public-docsite-v9/public/fluentui-banner2.jpg', hash: '18306632541452318124' }, - { file: 'apps/public-docsite-v9/public/fluentui-logo.svg', hash: '15653200647526419127' }, - { file: 'apps/public-docsite-v9/public/fluentui-wide-banner.webp', hash: '7418162448352499674' }, - { file: 'apps/public-docsite-v9/public/lightweight.svg', hash: '5657497639188991046' }, - { file: 'apps/public-docsite-v9/public/shell.css', hash: '5646785212764741393' }, - { file: 'apps/public-docsite-v9/public/spring.svg', hash: '1151285431788351073' }, - { file: 'apps/public-docsite-v9/public/style-resolution.excalidraw', hash: '1279300784780131453' }, - { file: 'apps/public-docsite-v9/public/style-resolution.png', hash: '3903023650636210804' }, - { file: 'apps/public-docsite-v9/public/tokens.svg', hash: '13691732948447367898' }, - { file: 'apps/public-docsite-v9/src/Concepts/AdvancedConfiguration.stories.mdx', hash: '6027268182050122246' }, - { file: 'apps/public-docsite-v9/src/Concepts/BrowserSupportMatrix.stories.mdx', hash: '1228607429917320857' }, - { file: 'apps/public-docsite-v9/src/Concepts/BuildTimeStyles.stories.mdx', hash: '12437946029172170614' }, - { file: 'apps/public-docsite-v9/src/Concepts/Introduction.stories.mdx', hash: '3509193672195860507' }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Avatar.stories.mdx', - hash: '7500159876916604705', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Box.stories.mdx', - hash: '17726929489974387754', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Button.stories.mdx', - hash: '5165102981189121498', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/Card.stories.mdx', - hash: '14151972520219956278', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardBody.stories.mdx', - hash: '18162109570330781614', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardFooter.stories.mdx', - hash: '4687093865631735497', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardHeader.stories.mdx', - hash: '2050221457843558006', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Card/CardPreview.stories.mdx', - hash: '11621837033913569045', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Checkbox.stories.mdx', - hash: '18407956735545093769', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Divider.stories.mdx', - hash: '13595048683221264730', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Flex.stories.mdx', - hash: '11954588101481249892', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/FlexItem.stories.mdx', - hash: '8420309599134924583', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Grid.stories.mdx', - hash: '6700576905807336071', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Header.stories.mdx', - hash: '4058145472704301164', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/ComparisonTile.styles.ts', - hash: '1623254964187684935', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/ComparisonTile.tsx', - hash: '6031510467069933075', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconCatalog.styles.ts', - hash: '14720705468818279735', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconCatalog.tsx', - hash: '10029602955996080382', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/IconGrid.tsx', - hash: '13375498134383154357', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/iconMapping.ts', - hash: '17191414831423116710', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/types.ts', - hash: '13320189052275250119', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/IconCatalog/useDebounce.ts', - hash: '1627091520647089283', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Image.stories.mdx', - hash: '9617825166794162424', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Input.stories.mdx', - hash: '8366871421104612219', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/ItemLayout.stories.mdx', - hash: '2291507764460056594', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Label.stories.mdx', - hash: '10055988712162174323', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Loader.stories.mdx', - hash: '14988360606182076802', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Menu.stories.mdx', - hash: '13915961584180156834', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Popup.stories.mdx', - hash: '18317202100908469848', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/RadioGroup.stories.mdx', - hash: '2435464880236261514', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Ref.stories.mdx', - hash: '6423583874536323626', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Segment.stories.mdx', - hash: '5477278039908075779', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Slider.stories.mdx', - hash: '18101668614946165878', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Spinner.stories.mdx', - hash: '15312019235072516276', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/SplitButton.stories.mdx', - hash: '1847294588723170087', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/TabList.stories.mdx', - hash: '8391983318858567681', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Text.stories.mdx', - hash: '10058089897799736192', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Textarea.stories.mdx', - hash: '9208490595500693037', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Toolbar.stories.mdx', - hash: '17071380723254082436', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Components/Tooltip.stories.mdx', - hash: '17455365854773573149', - }, - { file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/Icons.stories.mdx', hash: '17010056017852607842' }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-custom-accessibility.stories.mdx', - hash: '2596856736038670889', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-positioning.stories.mdx', - hash: '17529793891355272427', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV0/migrate-styles.stories.mdx', - hash: '17794812762778613022', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ComponentMapping.stories.mdx', - hash: '16243915867913704219', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/AvatarGroup.stories.mdx', - hash: '10119565970722557988', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Button.stories.mdx', - hash: '11656382532750115105', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/Card.stories.mdx', - hash: '14903830942748763588', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardFooter.stories.mdx', - hash: '4062734561496252096', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardHeader.stories.mdx', - hash: '10725482604752600152', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Card/CardPreview.stories.mdx', - hash: '2059119778639415486', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Checkbox.stories.mdx', - hash: '6823461108728301975', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Divider.stories.mdx', - hash: '17785455521448078061', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Input.stories.mdx', - hash: '15431601912224865768', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Label.stories.mdx', - hash: '9054058141062094741', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Menu.stories.mdx', - hash: '2558282556221331632', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/RadioGroup.stories.mdx', - hash: '12226839331106575731', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Slider.stories.mdx', - hash: '8003497693586564560', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv8Examples.stories.tsx', - hash: '14715459287100320010', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Slider/Sliderv9Examples.stories.tsx', - hash: '5673282445582931303', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/SpinButton.stories.mdx', - hash: '9332700504183803319', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Spinner.stories.mdx', - hash: '1809941066840167935', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Tabs.stories.mdx', - hash: '4052626642361921649', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Textarea.stories.mdx', - hash: '17808685935793411891', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Components/Theme.stories.mdx', - hash: '4384252736065296258', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/BrandColors.stories.tsx', - hash: '16329563639900296559', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorBlock.styles.ts', - hash: '3160347553800729901', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorBlock.tsx', - hash: '8565745042529971498', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorCompare.tsx', - hash: '15976953488790079976', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/ColorMapping.stories.mdx', - hash: '3020894949684801504', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/NamedColors.stories.tsx', - hash: '11934418843702881095', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/NeutralColors.stories.tsx', - hash: '2966669084201347416', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/SemanticColors.stories.tsx', - hash: '5560789208522828535', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/colorMap.ts', - hash: '1488055267438205957', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/colorUtils.ts', - hash: '11801248277102989709', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/themeMap.ts', - hash: '17925504785797383915', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/ThemeColors/types.ts', - hash: '13063420644715283401', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/FromV8/Troubleshooting.stories.mdx', - hash: '8747907334094583065', - }, - { file: 'apps/public-docsite-v9/src/Concepts/Migration/GettingStarted.stories.mdx', hash: '9451779699191391096' }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/HandlingBreakingChanges.stories.mdx', - hash: '13000995019411734332', - }, - { - file: 'apps/public-docsite-v9/src/Concepts/Migration/KeepingDesignConsistent.stories.mdx', - hash: '4274985729871756294', - }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/AreaCard.styles.ts', hash: '11383167343776703189' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/AreaCard.tsx', hash: '6998504548639232531' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/CodeItemCard.styles.ts', hash: '5690225079957065794' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/CodeItemCard.tsx', hash: '11390534584125618959' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/CodeItemIcons.tsx', hash: '1009357634118917580' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/Legend.styles.ts', hash: '10289947676290531535' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/Legend.tsx', hash: '13163962968913761556' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/OverviewCard.styles.ts', hash: '13023911342358279998' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/OverviewCard.tsx', hash: '3896737839883874452' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/PackageCard.styles.ts', hash: '3178517568105324799' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/PackageCard.tsx', hash: '8149333433858496621' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/Poster.stories.mdx', hash: '11768706133390347465' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/Poster.styles.ts', hash: '10078616957021919379' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/Poster.tsx', hash: '13510609166964038907' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/metadata.ts', hash: '246122072962373895' }, - { file: 'apps/public-docsite-v9/src/Concepts/Poster/types.ts', hash: '18096539967471875526' }, - { file: 'apps/public-docsite-v9/src/Concepts/QuickStart.stories.mdx', hash: '3639996361033081603' }, - { file: 'apps/public-docsite-v9/src/Concepts/SSR/MenuSSRDefaultOpen.stories.tsx', hash: '17417466496504427195' }, - { file: 'apps/public-docsite-v9/src/Concepts/SSR/NextJSAppDir.stories.mdx', hash: '5618765040692212335' }, - { file: 'apps/public-docsite-v9/src/Concepts/SSR/Nextjs.stories.mdx', hash: '6329398926014210453' }, - { file: 'apps/public-docsite-v9/src/Concepts/SSR/Portals.stories.mdx', hash: '14703143921670652091' }, - { file: 'apps/public-docsite-v9/src/Concepts/SSR/SSR.stories.mdx', hash: '17007025667679716727' }, - { file: 'apps/public-docsite-v9/src/Concepts/Slots/SlotSketch.stories.tsx', hash: '15629017638520325281' }, - { file: 'apps/public-docsite-v9/src/Concepts/Slots/Slots.stories.mdx', hash: '3201251314176313597' }, - { file: 'apps/public-docsite-v9/src/Concepts/StylingComponents.stories.mdx', hash: '14475903966694824475' }, - { file: 'apps/public-docsite-v9/src/Concepts/ThemeDesigner.stories.mdx', hash: '10163196227003295423' }, - { file: 'apps/public-docsite-v9/src/Concepts/Theming.stories.mdx', hash: '18265015977572975070' }, - { file: 'apps/public-docsite-v9/src/Concepts/components/WhatsNewBoxes.styles.ts', hash: '3505954724490374240' }, - { file: 'apps/public-docsite-v9/src/Concepts/components/WhatsNewBoxes.tsx', hash: '5997681001706950540' }, - { file: 'apps/public-docsite-v9/src/DocsComponents/DirSwitch.stories.tsx', hash: '17835614396368939615' }, - { - file: 'apps/public-docsite-v9/src/DocsComponents/FluentDocsContainer.stories.tsx', - hash: '7165188870592901014', - }, - { file: 'apps/public-docsite-v9/src/DocsComponents/FluentDocsPage.stories.tsx', hash: '7081773190048278332' }, - { file: 'apps/public-docsite-v9/src/DocsComponents/ThemePicker.stories.tsx', hash: '15694390206129851378' }, - { file: 'apps/public-docsite-v9/src/DocsComponents/Toc.stories.tsx', hash: '12094141171645307537' }, - { file: 'apps/public-docsite-v9/src/shims/ThemeShim/themeDuplicates.ts', hash: '11231048427901921409' }, - { file: 'apps/public-docsite-v9/src/shims/ThemeShim/v8ThemeShim.ts', hash: '11884523527404188288' }, - { file: 'apps/public-docsite-v9/src/shims/ThemeShim/v9BrandVariantsShim.ts', hash: '6259229093326138167' }, - { file: 'apps/public-docsite-v9/src/shims/ThemeShim/v9ThemeShim.ts', hash: '9946586764904553104' }, - { file: 'apps/public-docsite-v9/tsconfig.app.json', hash: '2683353677112626789' }, - { file: 'apps/public-docsite-v9/tsconfig.json', hash: '12149056959744678629' }, - ], - '@fluentui/react': [ - { file: 'packages/react/.eslintrc.js', hash: '18322613162592272510' }, - { file: 'packages/react/.npmignore', hash: '47056201363133096' }, - { file: 'packages/react/.vscode/settings.json', hash: '12021589480221246916' }, - { file: 'packages/react/CHANGELOG.json', hash: '6951825329134936821' }, - { file: 'packages/react/CHANGELOG.md', hash: '12099638385382086950' }, - { file: 'packages/react/LICENSE', hash: '2813735303365335595' }, - { file: 'packages/react/README.md', hash: '3435017277481595030' }, - { file: 'packages/react/__mocks__/@fluentui/utilities.ts', hash: '12050978786399858000' }, - { file: 'packages/react/bundle-size-auditor.config.js', hash: '1614748617965411486' }, - { file: 'packages/react/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/react/config/pre-copy.json', hash: '14026383330722125688' }, - { file: 'packages/react/config/tests.js', hash: '13158865319411973838' }, - { file: 'packages/react/empty-entrypoint.js', hash: '1610763553242483540' }, - { file: 'packages/react/etc/react.api.md', hash: '10965535314750180986' }, - { file: 'packages/react/jest.config.js', hash: '8193037916930093299' }, - { file: 'packages/react/just.config.ts', hash: '3344775425486365003' }, - { - file: 'packages/react/package.json', - hash: '12246868904466760490', - deps: [ - '@fluentui/date-time-utilities', - '@fluentui/foundation-legacy', - '@fluentui/font-icons-mdl2', - '@fluentui/merge-styles', - '@fluentui/react-focus', - '@fluentui/react-hooks', - '@fluentui/react-portal-compat-context', - '@fluentui/react-window-provider', - '@fluentui/set-version', - '@fluentui/style-utilities', - '@fluentui/theme', - '@fluentui/utilities', - 'npm:@microsoft/load-themed-styles', - 'npm:tslib', - '@fluentui/common-styles', - '@fluentui/eslint-plugin', - '@fluentui/example-data', - '@fluentui/jest-serializer-merge-styles', - '@fluentui/react-conformance', - '@fluentui/test-utilities', - '@fluentui/webpack-utilities', - 'npm:office-ui-fabric-core', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react/project.json', hash: '17701349262890228270' }, - { file: 'packages/react/src/ActivityItem.ts', hash: '15691553335115204721' }, - { file: 'packages/react/src/Announced.ts', hash: '7828906494215171216' }, - { file: 'packages/react/src/Autofill.ts', hash: '16457316051496421810' }, - { file: 'packages/react/src/Breadcrumb.ts', hash: '4692325558598841885' }, - { file: 'packages/react/src/Button.ts', hash: '8626324674700708044' }, - { file: 'packages/react/src/ButtonGrid.ts', hash: '881856585163408327' }, - { file: 'packages/react/src/Calendar.ts', hash: '569100325234550221' }, - { file: 'packages/react/src/Callout.ts', hash: '11821162718730855739' }, - { file: 'packages/react/src/Check.ts', hash: '12837435387320211305' }, - { file: 'packages/react/src/Checkbox.ts', hash: '15174834295790980707' }, - { file: 'packages/react/src/ChoiceGroup.ts', hash: '8551466585424623975' }, - { file: 'packages/react/src/ChoiceGroupOption.ts', hash: '12282666165702349379' }, - { file: 'packages/react/src/Coachmark.ts', hash: '10298383592307786534' }, - { file: 'packages/react/src/Color.ts', hash: '1851453512554942402' }, - { file: 'packages/react/src/ColorPicker.ts', hash: '11367027736402733854' }, - { file: 'packages/react/src/ComboBox.ts', hash: '6941430331366320497' }, - { file: 'packages/react/src/CommandBar.ts', hash: '13781943264137645943' }, - { file: 'packages/react/src/ContextualMenu.ts', hash: '11044360894834949697' }, - { file: 'packages/react/src/DatePicker.ts', hash: '14140387775859161252' }, - { file: 'packages/react/src/DateTimeUtilities.ts', hash: '16407665973972677758' }, - { file: 'packages/react/src/DetailsList.ts', hash: '11060283209431896804' }, - { file: 'packages/react/src/Dialog.ts', hash: '4454994753170598490' }, - { file: 'packages/react/src/Divider.ts', hash: '11741977117356417348' }, - { file: 'packages/react/src/DocumentCard.ts', hash: '15635077762585676697' }, - { file: 'packages/react/src/DragDrop.ts', hash: '15334126186863286998' }, - { file: 'packages/react/src/DraggableZone.ts', hash: '8347592647128284806' }, - { file: 'packages/react/src/Dropdown.ts', hash: '18194367805350925119' }, - { file: 'packages/react/src/ExtendedPicker.ts', hash: '1781688548792408840' }, - { file: 'packages/react/src/Fabric.ts', hash: '9388144000989131059' }, - { file: 'packages/react/src/Facepile.ts', hash: '13878559315498248276' }, - { file: 'packages/react/src/FloatingPicker.ts', hash: '8168562264864126910' }, - { file: 'packages/react/src/FocusTrapZone.ts', hash: '13340226361778469587' }, - { file: 'packages/react/src/FocusZone.ts', hash: '17163596780283843540' }, - { file: 'packages/react/src/Grid.ts', hash: '881856585163408327' }, - { file: 'packages/react/src/GroupedList.ts', hash: '17984522349933548027' }, - { file: 'packages/react/src/GroupedListV2.ts', hash: '5354730782250258919' }, - { file: 'packages/react/src/HoverCard.ts', hash: '10703228722220731271' }, - { file: 'packages/react/src/Icon.ts', hash: '313947480257717044' }, - { file: 'packages/react/src/Icons.ts', hash: '11257336694483866853' }, - { file: 'packages/react/src/Image.ts', hash: '16464656776672641880' }, - { file: 'packages/react/src/Keytip.ts', hash: '14735860805141051080' }, - { file: 'packages/react/src/KeytipData.ts', hash: '13233209451898491569' }, - { file: 'packages/react/src/KeytipLayer.ts', hash: '5673003055379526700' }, - { file: 'packages/react/src/Keytips.ts', hash: '10469364805952831599' }, - { file: 'packages/react/src/Label.ts', hash: '4712475947755339018' }, - { file: 'packages/react/src/Layer.ts', hash: '1733045992777260244' }, - { file: 'packages/react/src/Link.ts', hash: '10181647052088224625' }, - { file: 'packages/react/src/List.ts', hash: '10892037581495151528' }, - { file: 'packages/react/src/MarqueeSelection.ts', hash: '10113684216889674368' }, - { file: 'packages/react/src/MessageBar.ts', hash: '11069752646730668502' }, - { file: 'packages/react/src/Modal.ts', hash: '4724632803121488282' }, - { file: 'packages/react/src/Nav.ts', hash: '16517290324481129723' }, - { file: 'packages/react/src/OverflowSet.ts', hash: '16078762239706375810' }, - { file: 'packages/react/src/Overlay.ts', hash: '3285303095679141452' }, - { file: 'packages/react/src/Panel.ts', hash: '16595715402019817627' }, - { file: 'packages/react/src/Persona.ts', hash: '11634239554265983330' }, - { file: 'packages/react/src/PersonaCoin.ts', hash: '11634239554265983330' }, - { file: 'packages/react/src/PersonaPresence.ts', hash: '16657819352363000963' }, - { file: 'packages/react/src/Pickers.ts', hash: '7315127516418647489' }, - { file: 'packages/react/src/Pivot.ts', hash: '13900400919767902771' }, - { file: 'packages/react/src/Popup.ts', hash: '11254074860887789694' }, - { file: 'packages/react/src/Positioning.ts', hash: '12929630452344570883' }, - { file: 'packages/react/src/PositioningContainer.ts', hash: '14723175961025769754' }, - { file: 'packages/react/src/ProgressIndicator.ts', hash: '6533264803521264651' }, - { file: 'packages/react/src/Rating.ts', hash: '15823645109042535388' }, - { file: 'packages/react/src/ResizeGroup.ts', hash: '17736351568471188817' }, - { file: 'packages/react/src/ResponsiveMode.ts', hash: '4238096090649122928' }, - { file: 'packages/react/src/ScrollablePane.ts', hash: '11525201575146771343' }, - { file: 'packages/react/src/SearchBox.ts', hash: '15808954179607126400' }, - { file: 'packages/react/src/SelectableOption.ts', hash: '12748464959660480730' }, - { file: 'packages/react/src/SelectedItemsList.ts', hash: '8395059039592633644' }, - { file: 'packages/react/src/Selection.ts', hash: '10143265323494697518' }, - { file: 'packages/react/src/Separator.ts', hash: '1811822594030495246' }, - { file: 'packages/react/src/Shimmer.ts', hash: '3579635837268703050' }, - { file: 'packages/react/src/ShimmeredDetailsList.ts', hash: '3558579282568365265' }, - { file: 'packages/react/src/Slider.ts', hash: '8062765663185726667' }, - { file: 'packages/react/src/SpinButton.ts', hash: '10602772673075263099' }, - { file: 'packages/react/src/Spinner.ts', hash: '17775753931591747303' }, - { file: 'packages/react/src/Stack.ts', hash: '14506809887411988561' }, - { file: 'packages/react/src/Sticky.ts', hash: '4023672496774955026' }, - { file: 'packages/react/src/Styling.ts', hash: '18075108818090873357' }, - { file: 'packages/react/src/SwatchColorPicker.ts', hash: '6007149929098899385' }, - { file: 'packages/react/src/TeachingBubble.ts', hash: '14630397906653552215' }, - { file: 'packages/react/src/Text.ts', hash: '18074790047408023562' }, - { file: 'packages/react/src/TextField.ts', hash: '8776486715515654409' }, - { file: 'packages/react/src/Theme.ts', hash: '4060037938213976140' }, - { file: 'packages/react/src/ThemeGenerator.ts', hash: '10341606355790351710' }, - { file: 'packages/react/src/TimePicker.ts', hash: '8919003633615161634' }, - { file: 'packages/react/src/Toggle.ts', hash: '17043961152625470253' }, - { file: 'packages/react/src/Tooltip.ts', hash: '17674670289509594830' }, - { file: 'packages/react/src/Utilities.ts', hash: '17137381318660875692' }, - { file: 'packages/react/src/Viewport.ts', hash: '9695251108878314796' }, - { file: 'packages/react/src/WeeklyDayPicker.ts', hash: '13543915856335724087' }, - { file: 'packages/react/src/WindowProvider.ts', hash: '10613406804967383798' }, - { file: 'packages/react/src/common/DirectionalHint.ts', hash: '4075025867885052120' }, - { file: 'packages/react/src/common/DocPage.types.ts', hash: '3317054908413247007' }, - { file: 'packages/react/src/common/IAccessiblePopupProps.ts', hash: '15218209719259118451' }, - { file: 'packages/react/src/common/TestImages.ts', hash: '10252575403022796568' }, - { file: 'packages/react/src/common/isConformant.ts', hash: '14501087979372828339' }, - { file: 'packages/react/src/common/shallowUntilTarget.ts', hash: '9363535113840956016' }, - { file: 'packages/react/src/common/testUtilities.ts', hash: '15153870803575118415' }, - { file: 'packages/react/src/components/ActivityItem/ActivityItem.classNames.ts', hash: '10959441434876498415' }, - { file: 'packages/react/src/components/ActivityItem/ActivityItem.styles.ts', hash: '17922129355434787187' }, - { file: 'packages/react/src/components/ActivityItem/ActivityItem.test.tsx', hash: '9308564639709118220' }, - { file: 'packages/react/src/components/ActivityItem/ActivityItem.tsx', hash: '15024881015934520035' }, - { file: 'packages/react/src/components/ActivityItem/ActivityItem.types.ts', hash: '5658929453140030040' }, - { - file: 'packages/react/src/components/ActivityItem/__snapshots__/ActivityItem.test.tsx.snap', - hash: '2875045296901384882', - }, - { file: 'packages/react/src/components/ActivityItem/index.ts', hash: '15613685813342155204' }, - { file: 'packages/react/src/components/Announced/Announced.base.tsx', hash: '14808936570361767980' }, - { file: 'packages/react/src/components/Announced/Announced.styles.ts', hash: '2609277003134345376' }, - { file: 'packages/react/src/components/Announced/Announced.test.tsx', hash: '13159186001787092755' }, - { file: 'packages/react/src/components/Announced/Announced.ts', hash: '5520471808720202213' }, - { file: 'packages/react/src/components/Announced/Announced.types.ts', hash: '1166604111861235670' }, - { - file: 'packages/react/src/components/Announced/__snapshots__/Announced.test.tsx.snap', - hash: '11083460018032104443', - }, - { file: 'packages/react/src/components/Announced/index.ts', hash: '15185491289973397311' }, - { file: 'packages/react/src/components/Autofill/Autofill.test.tsx', hash: '14829303470930849800' }, - { file: 'packages/react/src/components/Autofill/Autofill.tsx', hash: '2844735981914153753' }, - { file: 'packages/react/src/components/Autofill/Autofill.types.ts', hash: '1324609616284281878' }, - { file: 'packages/react/src/components/Autofill/index.ts', hash: '9802973723482047247' }, - { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.base.tsx', hash: '2959849278643511780' }, - { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.styles.ts', hash: '5490687911274150064' }, - { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.test.tsx', hash: '1397742070578054284' }, - { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.tsx', hash: '1697940405249114382' }, - { file: 'packages/react/src/components/Breadcrumb/Breadcrumb.types.ts', hash: '8602583152421031524' }, - { - file: 'packages/react/src/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap', - hash: '11005458348753777619', - }, - { file: 'packages/react/src/components/Breadcrumb/index.ts', hash: '2400277785402358351' }, - { file: 'packages/react/src/components/Button/ActionButton/ActionButton.styles.ts', hash: '5681673974154994069' }, - { file: 'packages/react/src/components/Button/ActionButton/ActionButton.tsx', hash: '13604987828611667561' }, - { file: 'packages/react/src/components/Button/BaseButton.classNames.ts', hash: '17560792537917575282' }, - { file: 'packages/react/src/components/Button/BaseButton.styles.ts', hash: '13775319018755096354' }, - { file: 'packages/react/src/components/Button/BaseButton.tsx', hash: '11691847524303977471' }, - { file: 'packages/react/src/components/Button/Button.deprecated.test.tsx', hash: '3790866997069875783' }, - { file: 'packages/react/src/components/Button/Button.test.tsx', hash: '8768289926859505225' }, - { file: 'packages/react/src/components/Button/Button.tsx', hash: '2897151106942011808' }, - { file: 'packages/react/src/components/Button/Button.types.ts', hash: '2214420206943208397' }, - { file: 'packages/react/src/components/Button/ButtonThemes.ts', hash: '858669685161863380' }, - { - file: 'packages/react/src/components/Button/CommandBarButton/CommandBarButton.styles.ts', - hash: '12384204530508226570', - }, - { - file: 'packages/react/src/components/Button/CommandBarButton/CommandBarButton.tsx', - hash: '12454085510449396776', - }, - { file: 'packages/react/src/components/Button/CommandButton/CommandButton.tsx', hash: '15919999991405643341' }, - { - file: 'packages/react/src/components/Button/CompoundButton/CompoundButton.styles.ts', - hash: '15121334606545964834', - }, - { file: 'packages/react/src/components/Button/CompoundButton/CompoundButton.tsx', hash: '11269834283536570675' }, - { - file: 'packages/react/src/components/Button/DefaultButton/DefaultButton.styles.ts', - hash: '18241509591047606021', - }, - { file: 'packages/react/src/components/Button/DefaultButton/DefaultButton.tsx', hash: '15772839065412790331' }, - { file: 'packages/react/src/components/Button/IconButton/IconButton.styles.ts', hash: '9769004099447041949' }, - { file: 'packages/react/src/components/Button/IconButton/IconButton.tsx', hash: '2733847614666169059' }, - { - file: 'packages/react/src/components/Button/MessageBarButton/MessageBarButton.styles.ts', - hash: '9568488038348577146', - }, - { - file: 'packages/react/src/components/Button/MessageBarButton/MessageBarButton.tsx', - hash: '4960487562370824955', - }, - { file: 'packages/react/src/components/Button/PrimaryButton/PrimaryButton.tsx', hash: '611494823225309972' }, - { - file: 'packages/react/src/components/Button/SplitButton/SplitButton.classNames.ts', - hash: '180913642668624058', - }, - { file: 'packages/react/src/components/Button/SplitButton/SplitButton.styles.ts', hash: '13161165176196832651' }, - { - file: 'packages/react/src/components/Button/__snapshots__/Button.deprecated.test.tsx.snap', - hash: '10779387157892625644', - }, - { file: 'packages/react/src/components/Button/__snapshots__/Button.test.tsx.snap', hash: '6525828065674363022' }, - { file: 'packages/react/src/components/Button/index.ts', hash: '3026621165842617645' }, - { file: 'packages/react/src/components/Calendar/Calendar.base.tsx', hash: '3698885589942741371' }, - { file: 'packages/react/src/components/Calendar/Calendar.styles.ts', hash: '7681885833460442019' }, - { file: 'packages/react/src/components/Calendar/Calendar.test.tsx', hash: '12113283689946056276' }, - { file: 'packages/react/src/components/Calendar/Calendar.tsx', hash: '17842804668188421221' }, - { file: 'packages/react/src/components/Calendar/Calendar.types.ts', hash: '16761844729622092230' }, - { file: 'packages/react/src/components/Calendar/CalendarDay/CalendarDay.base.tsx', hash: '8612771638643633009' }, - { - file: 'packages/react/src/components/Calendar/CalendarDay/CalendarDay.styles.ts', - hash: '14371245373320384030', - }, - { file: 'packages/react/src/components/Calendar/CalendarDay/CalendarDay.tsx', hash: '2868624136863589280' }, - { file: 'packages/react/src/components/Calendar/CalendarDay/CalendarDay.types.ts', hash: '1572652125125308751' }, - { - file: 'packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.base.tsx', - hash: '14029913455996670188', - }, - { - file: 'packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.styles.ts', - hash: '13220094357196562209', - }, - { file: 'packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.tsx', hash: '14175881740264283095' }, - { - file: 'packages/react/src/components/Calendar/CalendarMonth/CalendarMonth.types.ts', - hash: '11761404676563048345', - }, - { - file: 'packages/react/src/components/Calendar/CalendarPicker/CalendarPicker.styles.ts', - hash: '16513698440551210411', - }, - { - file: 'packages/react/src/components/Calendar/CalendarPicker/CalendarPicker.types.ts', - hash: '13641312866335280338', - }, - { - file: 'packages/react/src/components/Calendar/CalendarYear/CalendarYear.base.tsx', - hash: '14931817285159607366', - }, - { - file: 'packages/react/src/components/Calendar/CalendarYear/CalendarYear.styles.ts', - hash: '5022118626516064814', - }, - { file: 'packages/react/src/components/Calendar/CalendarYear/CalendarYear.tsx', hash: '3790852113301377423' }, - { - file: 'packages/react/src/components/Calendar/CalendarYear/CalendarYear.types.ts', - hash: '1212633857493091969', - }, - { file: 'packages/react/src/components/Calendar/defaults.ts', hash: '10932514365007165542' }, - { file: 'packages/react/src/components/Calendar/index.ts', hash: '8926931160772554368' }, - { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.base.tsx', hash: '9364545756154110372' }, - { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.styles.ts', hash: '5474799333794445305' }, - { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.test.tsx', hash: '14077376632654469516' }, - { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.tsx', hash: '13954748508369387771' }, - { file: 'packages/react/src/components/CalendarDayGrid/CalendarDayGrid.types.ts', hash: '1315148665165774731' }, - { file: 'packages/react/src/components/CalendarDayGrid/CalendarGridDayCell.tsx', hash: '4377391835895631601' }, - { file: 'packages/react/src/components/CalendarDayGrid/CalendarGridRow.tsx', hash: '11836484162619787282' }, - { file: 'packages/react/src/components/CalendarDayGrid/CalendarMonthHeaderRow.tsx', hash: '1425249185322741479' }, - { file: 'packages/react/src/components/Callout/Callout.test.tsx', hash: '5054917375884985643' }, - { file: 'packages/react/src/components/Callout/Callout.tsx', hash: '15098348347424675166' }, - { file: 'packages/react/src/components/Callout/Callout.types.ts', hash: '9671085334529620331' }, - { file: 'packages/react/src/components/Callout/CalloutContent.base.tsx', hash: '7711216549782122145' }, - { file: 'packages/react/src/components/Callout/CalloutContent.styles.ts', hash: '14671269818620114958' }, - { file: 'packages/react/src/components/Callout/CalloutContent.tsx', hash: '2613599015627140647' }, - { file: 'packages/react/src/components/Callout/FocusTrapCallout.tsx', hash: '5711466981505374301' }, - { file: 'packages/react/src/components/Callout/FocusTrapCallout.types.ts', hash: '13099154175811699019' }, - { - file: 'packages/react/src/components/Callout/__snapshots__/Callout.test.tsx.snap', - hash: '7092676668363738687', - }, - { file: 'packages/react/src/components/Callout/index.ts', hash: '18337988706537354723' }, - { file: 'packages/react/src/components/Check/Check.base.tsx', hash: '8099389880777908630' }, - { file: 'packages/react/src/components/Check/Check.styles.ts', hash: '11959653952883669852' }, - { file: 'packages/react/src/components/Check/Check.test.tsx', hash: '7098964263180304704' }, - { file: 'packages/react/src/components/Check/Check.tsx', hash: '2854772255457713049' }, - { file: 'packages/react/src/components/Check/Check.types.ts', hash: '1581118031102622036' }, - { file: 'packages/react/src/components/Check/__snapshots__/Check.test.tsx.snap', hash: '2994867670221716739' }, - { file: 'packages/react/src/components/Check/index.ts', hash: '760208717723128464' }, - { file: 'packages/react/src/components/Checkbox/Checkbox.base.tsx', hash: '17742414755561541210' }, - { file: 'packages/react/src/components/Checkbox/Checkbox.styles.ts', hash: '14738880418511813030' }, - { file: 'packages/react/src/components/Checkbox/Checkbox.test.tsx', hash: '3079724934788581514' }, - { file: 'packages/react/src/components/Checkbox/Checkbox.tsx', hash: '13026628343713587440' }, - { file: 'packages/react/src/components/Checkbox/Checkbox.types.ts', hash: '12031426030660668047' }, - { - file: 'packages/react/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap', - hash: '13716157077664308640', - }, - { file: 'packages/react/src/components/Checkbox/index.ts', hash: '7986300600148701571' }, - { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.base.tsx', hash: '13068795033757508402' }, - { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.styles.ts', hash: '4320475055744560416' }, - { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.test.tsx', hash: '14850742821881609942' }, - { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.tsx', hash: '8195161768483642804' }, - { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroup.types.ts', hash: '758817708746738591' }, - { - file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.base.tsx', - hash: '16705429588975673989', - }, - { - file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.styles.ts', - hash: '7899251538753065410', - }, - { - file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.test.tsx', - hash: '15957366648578097033', - }, - { - file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.tsx', - hash: '4190193031612152205', - }, - { - file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/ChoiceGroupOption.types.ts', - hash: '12527274131552227495', - }, - { - file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/__snapshots__/ChoiceGroupOption.test.tsx.snap', - hash: '8810824705317029428', - }, - { file: 'packages/react/src/components/ChoiceGroup/ChoiceGroupOption/index.ts', hash: '18423094160257844331' }, - { - file: 'packages/react/src/components/ChoiceGroup/__snapshots__/ChoiceGroup.test.tsx.snap', - hash: '9569553682240889905', - }, - { file: 'packages/react/src/components/ChoiceGroup/index.ts', hash: '328194483357894544' }, - { file: 'packages/react/src/components/Coachmark/Beak/Beak.styles.ts', hash: '10190924621190518847' }, - { file: 'packages/react/src/components/Coachmark/Beak/Beak.tsx', hash: '5905785957078046086' }, - { file: 'packages/react/src/components/Coachmark/Beak/Beak.types.ts', hash: '7291097281646749393' }, - { file: 'packages/react/src/components/Coachmark/Coachmark.base.tsx', hash: '9056756754402703923' }, - { file: 'packages/react/src/components/Coachmark/Coachmark.styles.ts', hash: '10326954716722979061' }, - { file: 'packages/react/src/components/Coachmark/Coachmark.test.tsx', hash: '16185438735178022700' }, - { file: 'packages/react/src/components/Coachmark/Coachmark.ts', hash: '5196593985187011138' }, - { file: 'packages/react/src/components/Coachmark/Coachmark.types.ts', hash: '7489711855929492755' }, - { - file: 'packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.styles.ts', - hash: '2162783246021921799', - }, - { - file: 'packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.tsx', - hash: '6990834051214097788', - }, - { - file: 'packages/react/src/components/Coachmark/PositioningContainer/PositioningContainer.types.ts', - hash: '13774772956859115836', - }, - { file: 'packages/react/src/components/Coachmark/PositioningContainer/index.ts', hash: '10130805448946875991' }, - { - file: 'packages/react/src/components/Coachmark/__snapshots__/Coachmark.test.tsx.snap', - hash: '3728261009976044833', - }, - { file: 'packages/react/src/components/Coachmark/index.ts', hash: '17067815343666058002' }, - { file: 'packages/react/src/components/ColorPicker/ColorPicker.base.tsx', hash: '7180003949049537184' }, - { - file: 'packages/react/src/components/ColorPicker/ColorPicker.deprecated.test.tsx', - hash: '1858759756402820397', - }, - { file: 'packages/react/src/components/ColorPicker/ColorPicker.styles.ts', hash: '13861598838815848006' }, - { file: 'packages/react/src/components/ColorPicker/ColorPicker.test.tsx', hash: '14055911644872002613' }, - { file: 'packages/react/src/components/ColorPicker/ColorPicker.tsx', hash: '3828925813868702320' }, - { file: 'packages/react/src/components/ColorPicker/ColorPicker.types.ts', hash: '18374948044378105293' }, - { - file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.base.tsx', - hash: '2973631643717621166', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.styles.ts', - hash: '157313535816601706', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.test.tsx', - hash: '15268079714026099074', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.tsx', - hash: '6995462218313240219', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorRectangle/ColorRectangle.types.ts', - hash: '10322384115733206371', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorRectangle/__snapshots__/ColorRectangle.test.tsx.snap', - hash: '10729672506798250519', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.base.tsx', - hash: '13278161114456779756', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.deprecated.test.tsx', - hash: '13316991814195708224', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.styles.ts', - hash: '17221012701587550663', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.test.tsx', - hash: '3883018588900249454', - }, - { file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.tsx', hash: '5339430979491373150' }, - { - file: 'packages/react/src/components/ColorPicker/ColorSlider/ColorSlider.types.ts', - hash: '447516077491216644', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorSlider/__snapshots__/ColorSlider.deprecated.test.tsx.snap', - hash: '16239289712154164621', - }, - { - file: 'packages/react/src/components/ColorPicker/ColorSlider/__snapshots__/ColorSlider.test.tsx.snap', - hash: '12518773005539682818', - }, - { - file: 'packages/react/src/components/ColorPicker/__snapshots__/ColorPicker.test.tsx.snap', - hash: '7343175688397682026', - }, - { file: 'packages/react/src/components/ColorPicker/index.ts', hash: '7939662011628958779' }, - { file: 'packages/react/src/components/ComboBox/ComboBox.classNames.ts', hash: '3467725814675995660' }, - { file: 'packages/react/src/components/ComboBox/ComboBox.styles.ts', hash: '6464576420747089558' }, - { file: 'packages/react/src/components/ComboBox/ComboBox.test.tsx', hash: '16954748442404999255' }, - { file: 'packages/react/src/components/ComboBox/ComboBox.tsx', hash: '8989906260515157173' }, - { file: 'packages/react/src/components/ComboBox/ComboBox.types.ts', hash: '957405394456490575' }, - { file: 'packages/react/src/components/ComboBox/VirtualizedComboBox.tsx', hash: '18330214605208399631' }, - { - file: 'packages/react/src/components/ComboBox/__snapshots__/ComboBox.test.tsx.snap', - hash: '5482146850650565127', - }, - { file: 'packages/react/src/components/ComboBox/index.ts', hash: '9834057037475040238' }, - { file: 'packages/react/src/components/CommandBar/CommandBar.base.tsx', hash: '2552079397073764410' }, - { file: 'packages/react/src/components/CommandBar/CommandBar.deprecated.test.tsx', hash: '12378369935626821833' }, - { file: 'packages/react/src/components/CommandBar/CommandBar.styles.ts', hash: '5993613558436675319' }, - { file: 'packages/react/src/components/CommandBar/CommandBar.test.tsx', hash: '11216319412535445892' }, - { file: 'packages/react/src/components/CommandBar/CommandBar.tsx', hash: '700267282760851139' }, - { file: 'packages/react/src/components/CommandBar/CommandBar.types.ts', hash: '3532179943527593242' }, - { - file: 'packages/react/src/components/CommandBar/__snapshots__/CommandBar.deprecated.test.tsx.snap', - hash: '16088271511149617368', - }, - { - file: 'packages/react/src/components/CommandBar/__snapshots__/CommandBar.test.tsx.snap', - hash: '12207775744090479986', - }, - { file: 'packages/react/src/components/CommandBar/index.ts', hash: '3215200113690211413' }, - { file: 'packages/react/src/components/ComponentConformance.test.tsx', hash: '10480277133274272228' }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.base.tsx', hash: '5877188823725891655' }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenu.classNames.ts', - hash: '10706196024534983914', - }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.cnstyles.ts', hash: '3654706946123482754' }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenu.deprecated.test.tsx', - hash: '198235862324324028', - }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.styles.ts', hash: '17175239582403304459' }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.test.tsx', hash: '2120930861885774156' }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.tsx', hash: '3920779922044026270' }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenu.types.ts', hash: '11798924850247416531' }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenuItem.base.tsx', hash: '6854375821061177190' }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenuItem.test.tsx', hash: '9752520632902479921' }, - { file: 'packages/react/src/components/ContextualMenu/ContextualMenuItem.ts', hash: '63171619528417113' }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItem.types.ts', - hash: '13270971864325546680', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.deprecated.test.tsx', - hash: '3558946452323923907', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.test.tsx', - hash: '9918131864879234023', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuAnchor.tsx', - hash: '3098687527450227800', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.deprecated.test.tsx', - hash: '12212037314653515053', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.test.tsx', - hash: '15584535416442484383', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuButton.tsx', - hash: '9063110335323343604', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.tsx', - hash: '14701963235740302031', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuItemWrapper.types.ts', - hash: '13008443172857294424', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.deprecated.test.tsx', - hash: '3989543743399102394', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.test.tsx', - hash: '5321812505019653351', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/ContextualMenuSplitButton.tsx', - hash: '4663915473238241475', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuAnchor.deprecated.test.tsx.snap', - hash: '14041414160285571668', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuAnchor.test.tsx.snap', - hash: '14041414160285571668', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuButton.deprecated.test.tsx.snap', - hash: '14710957708359584012', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuButton.test.tsx.snap', - hash: '14710957708359584012', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuSplitButton.deprecated.test.tsx.snap', - hash: '8437199313117887841', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/__snapshots__/ContextualMenuSplitButton.test.tsx.snap', - hash: '8437199313117887841', - }, - { - file: 'packages/react/src/components/ContextualMenu/ContextualMenuItemWrapper/index.ts', - hash: '11528547953994929240', - }, - { - file: 'packages/react/src/components/ContextualMenu/__snapshots__/ContextualMenu.test.tsx.snap', - hash: '3252836540291663345', - }, - { - file: 'packages/react/src/components/ContextualMenu/__snapshots__/ContextualMenuItem.test.tsx.snap', - hash: '17054590227599556346', - }, - { file: 'packages/react/src/components/ContextualMenu/index.ts', hash: '3835542198813000796' }, - { file: 'packages/react/src/components/DatePicker/DatePicker.base.tsx', hash: '11556118508861459365' }, - { file: 'packages/react/src/components/DatePicker/DatePicker.styles.ts', hash: '13564743909105234986' }, - { file: 'packages/react/src/components/DatePicker/DatePicker.test.tsx', hash: '1752159393780274598' }, - { file: 'packages/react/src/components/DatePicker/DatePicker.tsx', hash: '4670714210270594435' }, - { file: 'packages/react/src/components/DatePicker/DatePicker.types.ts', hash: '15140280667936305477' }, - { - file: 'packages/react/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap', - hash: '13576409900070206139', - }, - { file: 'packages/react/src/components/DatePicker/defaults.ts', hash: '9768572084554514711' }, - { file: 'packages/react/src/components/DatePicker/index.ts', hash: '17974637769310028943' }, - { file: 'packages/react/src/components/DetailsList/DetailsColumn.base.tsx', hash: '6308648217640225380' }, - { file: 'packages/react/src/components/DetailsList/DetailsColumn.styles.ts', hash: '4880164232418754095' }, - { file: 'packages/react/src/components/DetailsList/DetailsColumn.test.tsx', hash: '6798921407981461914' }, - { file: 'packages/react/src/components/DetailsList/DetailsColumn.ts', hash: '4902399603567842665' }, - { file: 'packages/react/src/components/DetailsList/DetailsColumn.types.ts', hash: '8180062505592077016' }, - { file: 'packages/react/src/components/DetailsList/DetailsFooter.types.ts', hash: '11446456440966141852' }, - { file: 'packages/react/src/components/DetailsList/DetailsHeader.base.tsx', hash: '3928141695731168504' }, - { file: 'packages/react/src/components/DetailsList/DetailsHeader.styles.ts', hash: '5073662827578508154' }, - { file: 'packages/react/src/components/DetailsList/DetailsHeader.test.tsx', hash: '3014066941567472289' }, - { file: 'packages/react/src/components/DetailsList/DetailsHeader.ts', hash: '17422579751459550432' }, - { file: 'packages/react/src/components/DetailsList/DetailsHeader.types.ts', hash: '7637123501724238546' }, - { file: 'packages/react/src/components/DetailsList/DetailsList.base.tsx', hash: '2799961499477794228' }, - { file: 'packages/react/src/components/DetailsList/DetailsList.styles.ts', hash: '7526554567819721912' }, - { file: 'packages/react/src/components/DetailsList/DetailsList.test.tsx', hash: '6228800664354956955' }, - { file: 'packages/react/src/components/DetailsList/DetailsList.ts', hash: '12728534349659462744' }, - { file: 'packages/react/src/components/DetailsList/DetailsList.types.ts', hash: '9537843069676358412' }, - { file: 'packages/react/src/components/DetailsList/DetailsListV2.test.tsx', hash: '18360992886402272534' }, - { file: 'packages/react/src/components/DetailsList/DetailsRow.base.tsx', hash: '5406961765015794815' }, - { file: 'packages/react/src/components/DetailsList/DetailsRow.styles.ts', hash: '3731969425006369055' }, - { file: 'packages/react/src/components/DetailsList/DetailsRow.test.tsx', hash: '2834031795765256016' }, - { file: 'packages/react/src/components/DetailsList/DetailsRow.ts', hash: '11470577206839450556' }, - { file: 'packages/react/src/components/DetailsList/DetailsRow.types.ts', hash: '17665153010720544130' }, - { file: 'packages/react/src/components/DetailsList/DetailsRowCheck.styles.ts', hash: '15671426098715829029' }, - { file: 'packages/react/src/components/DetailsList/DetailsRowCheck.tsx', hash: '5242923550637359098' }, - { file: 'packages/react/src/components/DetailsList/DetailsRowCheck.types.ts', hash: '7924190524800312148' }, - { file: 'packages/react/src/components/DetailsList/DetailsRowFields.tsx', hash: '11847639474237705982' }, - { file: 'packages/react/src/components/DetailsList/DetailsRowFields.types.ts', hash: '1010241688363163897' }, - { file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.base.tsx', hash: '3035507686770242754' }, - { - file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.styles.ts', - hash: '14244971813247985296', - }, - { file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.test.tsx', hash: '2424496070241863869' }, - { file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.ts', hash: '5199934512938546464' }, - { file: 'packages/react/src/components/DetailsList/ShimmeredDetailsList.types.ts', hash: '11982842825329048243' }, - { - file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsColumn.test.tsx.snap', - hash: '10877029629695718863', - }, - { - file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsHeader.test.tsx.snap', - hash: '7752035837626973782', - }, - { - file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsList.test.tsx.snap', - hash: '9571333155875344655', - }, - { - file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsListV2.test.tsx.snap', - hash: '16889062212530889471', - }, - { - file: 'packages/react/src/components/DetailsList/__snapshots__/DetailsRow.test.tsx.snap', - hash: '11109931562984326200', - }, - { - file: 'packages/react/src/components/DetailsList/__snapshots__/ShimmeredDetailsList.test.tsx.snap', - hash: '13956054951020044610', - }, - { file: 'packages/react/src/components/DetailsList/index.ts', hash: '11905967269357664057' }, - { file: 'packages/react/src/components/Dialog/Dialog.base.tsx', hash: '1335031672704243772' }, - { file: 'packages/react/src/components/Dialog/Dialog.deprecated.test.tsx', hash: '2188927542479579813' }, - { file: 'packages/react/src/components/Dialog/Dialog.styles.ts', hash: '1274186165067202097' }, - { file: 'packages/react/src/components/Dialog/Dialog.test.tsx', hash: '1250079322956341113' }, - { file: 'packages/react/src/components/Dialog/Dialog.tsx', hash: '10039529914607071950' }, - { file: 'packages/react/src/components/Dialog/Dialog.types.ts', hash: '18136777266972422495' }, - { file: 'packages/react/src/components/Dialog/DialogContent.base.tsx', hash: '11343728294232910282' }, - { file: 'packages/react/src/components/Dialog/DialogContent.styles.ts', hash: '4270458193570647094' }, - { file: 'packages/react/src/components/Dialog/DialogContent.tsx', hash: '17518100903877368017' }, - { file: 'packages/react/src/components/Dialog/DialogContent.types.ts', hash: '4747961404545812644' }, - { file: 'packages/react/src/components/Dialog/DialogFooter.base.tsx', hash: '10782995317447912366' }, - { file: 'packages/react/src/components/Dialog/DialogFooter.styles.ts', hash: '17208002434260655427' }, - { file: 'packages/react/src/components/Dialog/DialogFooter.tsx', hash: '12109203749703017200' }, - { file: 'packages/react/src/components/Dialog/DialogFooter.types.ts', hash: '6262905726334995933' }, - { - file: 'packages/react/src/components/Dialog/__snapshots__/Dialog.deprecated.test.tsx.snap', - hash: '1205677692101133734', - }, - { file: 'packages/react/src/components/Dialog/__snapshots__/Dialog.test.tsx.snap', hash: '14260178774430004740' }, - { file: 'packages/react/src/components/Dialog/index.ts', hash: '7399685691520743552' }, - { file: 'packages/react/src/components/Divider/VerticalDivider.base.tsx', hash: '14747514845048329254' }, - { file: 'packages/react/src/components/Divider/VerticalDivider.classNames.ts', hash: '14958285190679663562' }, - { file: 'packages/react/src/components/Divider/VerticalDivider.styles.ts', hash: '2333036108043844947' }, - { file: 'packages/react/src/components/Divider/VerticalDivider.test.tsx', hash: '15996912185164124298' }, - { file: 'packages/react/src/components/Divider/VerticalDivider.tsx', hash: '4835536727331111736' }, - { file: 'packages/react/src/components/Divider/VerticalDivider.types.ts', hash: '10846488578576759054' }, - { file: 'packages/react/src/components/Divider/index.ts', hash: '11460793940690681257' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCard.base.tsx', hash: '13812626508580200819' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCard.styles.ts', hash: '2131296789428441065' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCard.test.tsx', hash: '15482888094788676500' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCard.ts', hash: '8676978884832092435' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCard.types.ts', hash: '15823224865111213520' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardActions.base.tsx', hash: '12618360925624178049' }, - { - file: 'packages/react/src/components/DocumentCard/DocumentCardActions.styles.ts', - hash: '18073006403572164218', - }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardActions.ts', hash: '7210607681946114376' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardActions.types.ts', hash: '17216634669902609499' }, - { - file: 'packages/react/src/components/DocumentCard/DocumentCardActivity.base.tsx', - hash: '15733532529261222511', - }, - { - file: 'packages/react/src/components/DocumentCard/DocumentCardActivity.styles.ts', - hash: '4735425582448454346', - }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardActivity.ts', hash: '15086127853218677837' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardActivity.types.ts', hash: '9561565954234648002' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardDetails.base.tsx', hash: '6440829969312645425' }, - { - file: 'packages/react/src/components/DocumentCard/DocumentCardDetails.styles.ts', - hash: '11880948122737474571', - }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardDetails.ts', hash: '18132989513726564615' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardDetails.types.ts', hash: '2756943457533117735' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.base.tsx', hash: '11014604612367552221' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.styles.ts', hash: '3780284966890539977' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.test.tsx', hash: '1580886441918862054' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.ts', hash: '10433805243649759860' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardImage.types.ts', hash: '15934884145645343404' }, - { - file: 'packages/react/src/components/DocumentCard/DocumentCardLocation.base.tsx', - hash: '11939763814866414085', - }, - { - file: 'packages/react/src/components/DocumentCard/DocumentCardLocation.styles.ts', - hash: '13514891004140091333', - }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardLocation.ts', hash: '8735208547155425896' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardLocation.types.ts', hash: '8841526483942904591' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardLogo.base.tsx', hash: '8438097103948406750' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardLogo.styles.ts', hash: '15136768782429072113' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardLogo.ts', hash: '7856356439067054499' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardLogo.types.ts', hash: '14701492463350455067' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardPreview.base.tsx', hash: '11848821011500897044' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardPreview.styles.ts', hash: '5544712449354910585' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardPreview.ts', hash: '11787269282631307300' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardPreview.types.ts', hash: '8047917283408471306' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardStatus.base.tsx', hash: '12393731567818105572' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardStatus.styles.ts', hash: '3622145673328933221' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardStatus.ts', hash: '5034770503855371748' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardStatus.types.ts', hash: '12693285533780951481' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardTitle.base.tsx', hash: '2674068828407692747' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardTitle.styles.ts', hash: '746101100616079977' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardTitle.ts', hash: '4490870589977340710' }, - { file: 'packages/react/src/components/DocumentCard/DocumentCardTitle.types.ts', hash: '10582359202711643083' }, - { - file: 'packages/react/src/components/DocumentCard/__snapshots__/DocumentCard.test.tsx.snap', - hash: '4538584156885630867', - }, - { - file: 'packages/react/src/components/DocumentCard/__snapshots__/DocumentCardImage.test.tsx.snap', - hash: '9362918664972220624', - }, - { file: 'packages/react/src/components/DocumentCard/index.ts', hash: '15416848639888338244' }, - { file: 'packages/react/src/components/Dropdown/Dropdown.base.tsx', hash: '5982101215514390747' }, - { file: 'packages/react/src/components/Dropdown/Dropdown.styles.ts', hash: '6706815686211379956' }, - { file: 'packages/react/src/components/Dropdown/Dropdown.test.tsx', hash: '10675635400111409800' }, - { file: 'packages/react/src/components/Dropdown/Dropdown.tsx', hash: '3664291599270262346' }, - { file: 'packages/react/src/components/Dropdown/Dropdown.types.ts', hash: '805386249723069476' }, - { - file: 'packages/react/src/components/Dropdown/__snapshots__/Dropdown.test.tsx.snap', - hash: '13951042411364693238', - }, - { file: 'packages/react/src/components/Dropdown/index.ts', hash: '10944128569618040409' }, - { - file: 'packages/react/src/components/Dropdown/utilities/DropdownSizePosCache.test.ts', - hash: '14298618403894076114', - }, - { - file: 'packages/react/src/components/Dropdown/utilities/DropdownSizePosCache.ts', - hash: '14573545613857367131', - }, - { file: 'packages/react/src/components/ExtendedPicker/BaseExtendedPicker.scss', hash: '12208239487391689192' }, - { file: 'packages/react/src/components/ExtendedPicker/BaseExtendedPicker.test.tsx', hash: '2841294449776155583' }, - { file: 'packages/react/src/components/ExtendedPicker/BaseExtendedPicker.tsx', hash: '2417453781687326962' }, - { - file: 'packages/react/src/components/ExtendedPicker/BaseExtendedPicker.types.ts', - hash: '15463802587148449884', - }, - { - file: 'packages/react/src/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.scss', - hash: '17786163747904205632', - }, - { - file: 'packages/react/src/components/ExtendedPicker/PeoplePicker/ExtendedPeoplePicker.tsx', - hash: '13191670132860696607', - }, - { - file: 'packages/react/src/components/ExtendedPicker/__snapshots__/BaseExtendedPicker.test.tsx.snap', - hash: '6741546184545952465', - }, - { file: 'packages/react/src/components/ExtendedPicker/index.ts', hash: '16868542197048982054' }, - { file: 'packages/react/src/components/Fabric/Fabric.base.tsx', hash: '15683732381298373787' }, - { file: 'packages/react/src/components/Fabric/Fabric.styles.ts', hash: '3127272392985933000' }, - { file: 'packages/react/src/components/Fabric/Fabric.test.tsx', hash: '17910243263768585833' }, - { file: 'packages/react/src/components/Fabric/Fabric.tsx', hash: '1121061255147231937' }, - { file: 'packages/react/src/components/Fabric/Fabric.types.ts', hash: '9200626287532995187' }, - { file: 'packages/react/src/components/Fabric/__snapshots__/Fabric.test.tsx.snap', hash: '1783002843621059971' }, - { file: 'packages/react/src/components/Fabric/index.ts', hash: '16845651033210989707' }, - { file: 'packages/react/src/components/Facepile/Facepile.base.tsx', hash: '11217134564165655591' }, - { file: 'packages/react/src/components/Facepile/Facepile.styles.ts', hash: '3138742609820872548' }, - { file: 'packages/react/src/components/Facepile/Facepile.test.tsx', hash: '11808318394624143691' }, - { file: 'packages/react/src/components/Facepile/Facepile.tsx', hash: '4306908805761378642' }, - { file: 'packages/react/src/components/Facepile/Facepile.types.ts', hash: '10072003322857041114' }, - { file: 'packages/react/src/components/Facepile/FacepileButton.styles.ts', hash: '7829359605023940665' }, - { file: 'packages/react/src/components/Facepile/FacepileButton.tsx', hash: '2155259046902727571' }, - { - file: 'packages/react/src/components/Facepile/__snapshots__/Facepile.test.tsx.snap', - hash: '6035729035787766585', - }, - { file: 'packages/react/src/components/Facepile/index.ts', hash: '3843010742943322381' }, - { file: 'packages/react/src/components/FloatingPicker/BaseFloatingPicker.scss', hash: '3604756766474209425' }, - { - file: 'packages/react/src/components/FloatingPicker/BaseFloatingPicker.test.tsx', - hash: '10402050741886698050', - }, - { file: 'packages/react/src/components/FloatingPicker/BaseFloatingPicker.tsx', hash: '11401685007576339654' }, - { file: 'packages/react/src/components/FloatingPicker/BaseFloatingPicker.types.ts', hash: '1645066791828351675' }, - { - file: 'packages/react/src/components/FloatingPicker/PeoplePicker/FloatingPeoplePicker.tsx', - hash: '10382637701827323538', - }, - { - file: 'packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePicker.scss', - hash: '3905654351229104045', - }, - { - file: 'packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/PickerItemsDefault.scss', - hash: '998801082346015725', - }, - { - file: 'packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SelectedItemDefault.tsx', - hash: '897588648460287399', - }, - { - file: 'packages/react/src/components/FloatingPicker/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx', - hash: '10345250805301606220', - }, - { - file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionStore.test.tsx', - hash: '17752174539815674325', - }, - { - file: 'packages/react/src/components/FloatingPicker/Suggestions/Suggestions.types.ts', - hash: '1619086524390486592', - }, - { - file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.scss', - hash: '14094996955090584456', - }, - { - file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.test.tsx', - hash: '2858897028514122286', - }, - { - file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsControl.tsx', - hash: '5387100967775322843', - }, - { - file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsCore.scss', - hash: '1212577356362130966', - }, - { - file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsCore.tsx', - hash: '17624290543989563506', - }, - { - file: 'packages/react/src/components/FloatingPicker/Suggestions/SuggestionsStore.ts', - hash: '647289822927373071', - }, - { - file: 'packages/react/src/components/FloatingPicker/__snapshots__/BaseFloatingPicker.test.tsx.snap', - hash: '16517390094975721383', - }, - { file: 'packages/react/src/components/FloatingPicker/index.ts', hash: '1170539822572092906' }, - { file: 'packages/react/src/components/FocusTrapZone/FocusTrapZone.test.tsx', hash: '3653120050351888108' }, - { file: 'packages/react/src/components/FocusTrapZone/FocusTrapZone.tsx', hash: '10749728776021839597' }, - { file: 'packages/react/src/components/FocusTrapZone/FocusTrapZone.types.ts', hash: '6325135567045903758' }, - { file: 'packages/react/src/components/FocusTrapZone/index.ts', hash: '8327216471932571554' }, - { file: 'packages/react/src/components/GroupedList/GroupFooter.base.tsx', hash: '14198741911962538297' }, - { file: 'packages/react/src/components/GroupedList/GroupFooter.styles.ts', hash: '14745204278246478319' }, - { file: 'packages/react/src/components/GroupedList/GroupFooter.ts', hash: '14580690585539484982' }, - { file: 'packages/react/src/components/GroupedList/GroupFooter.types.ts', hash: '1147400551367794739' }, - { file: 'packages/react/src/components/GroupedList/GroupHeader.base.tsx', hash: '3726588132786848597' }, - { file: 'packages/react/src/components/GroupedList/GroupHeader.styles.ts', hash: '127249141428848245' }, - { file: 'packages/react/src/components/GroupedList/GroupHeader.ts', hash: '14406360241147099907' }, - { file: 'packages/react/src/components/GroupedList/GroupHeader.types.ts', hash: '869293819287687801' }, - { file: 'packages/react/src/components/GroupedList/GroupShowAll.base.tsx', hash: '13430177116838777970' }, - { file: 'packages/react/src/components/GroupedList/GroupShowAll.styles.ts', hash: '9173240059922396704' }, - { file: 'packages/react/src/components/GroupedList/GroupShowAll.ts', hash: '18241463491945654086' }, - { file: 'packages/react/src/components/GroupedList/GroupShowAll.types.ts', hash: '15505112258738188159' }, - { file: 'packages/react/src/components/GroupedList/GroupSpacer.tsx', hash: '2382614986997954733' }, - { file: 'packages/react/src/components/GroupedList/GroupSpacer.types.ts', hash: '16962133135384591377' }, - { file: 'packages/react/src/components/GroupedList/GroupedList.base.tsx', hash: '15701306319172639078' }, - { file: 'packages/react/src/components/GroupedList/GroupedList.styles.ts', hash: '14642443188238030052' }, - { file: 'packages/react/src/components/GroupedList/GroupedList.test.tsx', hash: '14268783024355777066' }, - { file: 'packages/react/src/components/GroupedList/GroupedList.ts', hash: '4364629580250318037' }, - { file: 'packages/react/src/components/GroupedList/GroupedList.types.ts', hash: '6313853039955612053' }, - { file: 'packages/react/src/components/GroupedList/GroupedListSection.tsx', hash: '15904592677032813529' }, - { file: 'packages/react/src/components/GroupedList/GroupedListV2.base.tsx', hash: '6481450481892001553' }, - { file: 'packages/react/src/components/GroupedList/GroupedListV2.test.tsx', hash: '17238450217629509752' }, - { file: 'packages/react/src/components/GroupedList/GroupedListV2.tsx', hash: '6260798994381323732' }, - { file: 'packages/react/src/components/GroupedList/GroupedListV2.types.ts', hash: '8326581936979434519' }, - { file: 'packages/react/src/components/GroupedList/index.ts', hash: '1461761807935333812' }, - { file: 'packages/react/src/components/HoverCard/BaseCard.types.ts', hash: '7854988721086480335' }, - { file: 'packages/react/src/components/HoverCard/CardCallout/CardCallout.tsx', hash: '6318903072711304556' }, - { file: 'packages/react/src/components/HoverCard/ExpandingCard.base.tsx', hash: '12920278905857343993' }, - { file: 'packages/react/src/components/HoverCard/ExpandingCard.styles.ts', hash: '2569486849539241092' }, - { file: 'packages/react/src/components/HoverCard/ExpandingCard.ts', hash: '14634468554846579407' }, - { file: 'packages/react/src/components/HoverCard/ExpandingCard.types.ts', hash: '6870429964911366844' }, - { file: 'packages/react/src/components/HoverCard/HoverCard.base.tsx', hash: '7594950086626185659' }, - { file: 'packages/react/src/components/HoverCard/HoverCard.styles.ts', hash: '13603738129536779165' }, - { file: 'packages/react/src/components/HoverCard/HoverCard.test.tsx', hash: '12683699210328003784' }, - { file: 'packages/react/src/components/HoverCard/HoverCard.ts', hash: '9256784689499188401' }, - { file: 'packages/react/src/components/HoverCard/HoverCard.types.ts', hash: '9375330990542611125' }, - { file: 'packages/react/src/components/HoverCard/PlainCard/PlainCard.base.tsx', hash: '3832709380523488574' }, - { file: 'packages/react/src/components/HoverCard/PlainCard/PlainCard.styles.ts', hash: '1750819295487788524' }, - { file: 'packages/react/src/components/HoverCard/PlainCard/PlainCard.ts', hash: '876829282032579574' }, - { file: 'packages/react/src/components/HoverCard/PlainCard/PlainCard.types.ts', hash: '17980034747921061565' }, - { - file: 'packages/react/src/components/HoverCard/__snapshots__/HoverCard.test.tsx.snap', - hash: '8142014490582894703', - }, - { file: 'packages/react/src/components/HoverCard/index.ts', hash: '9603968589460798746' }, - { file: 'packages/react/src/components/Icon/FontIcon.test.tsx', hash: '9649120469191571884' }, - { file: 'packages/react/src/components/Icon/FontIcon.tsx', hash: '7793447455696767318' }, - { file: 'packages/react/src/components/Icon/Icon.base.tsx', hash: '3422716483088640348' }, - { file: 'packages/react/src/components/Icon/Icon.styles.ts', hash: '15493732365313653034' }, - { file: 'packages/react/src/components/Icon/Icon.test.tsx', hash: '17082809089358473376' }, - { file: 'packages/react/src/components/Icon/Icon.tsx', hash: '17379752979197206906' }, - { file: 'packages/react/src/components/Icon/Icon.types.ts', hash: '3134559495065858448' }, - { file: 'packages/react/src/components/Icon/ImageIcon.test.tsx', hash: '18144711626394801617' }, - { file: 'packages/react/src/components/Icon/ImageIcon.tsx', hash: '1808967559310429816' }, - { file: 'packages/react/src/components/Icon/__snapshots__/FontIcon.test.tsx.snap', hash: '13051146926087860573' }, - { file: 'packages/react/src/components/Icon/__snapshots__/Icon.test.tsx.snap', hash: '120175245064663605' }, - { file: 'packages/react/src/components/Icon/__snapshots__/ImageIcon.test.tsx.snap', hash: '4160491147454961750' }, - { file: 'packages/react/src/components/Icon/index.ts', hash: '18332890298919647701' }, - { file: 'packages/react/src/components/Image/Image.base.tsx', hash: '14123135419720583714' }, - { file: 'packages/react/src/components/Image/Image.styles.ts', hash: '7530737254051669603' }, - { file: 'packages/react/src/components/Image/Image.test.tsx', hash: '72724674218984311' }, - { file: 'packages/react/src/components/Image/Image.tsx', hash: '4184098376163028342' }, - { file: 'packages/react/src/components/Image/Image.types.ts', hash: '17944297075205116667' }, - { file: 'packages/react/src/components/Image/__snapshots__/Image.test.tsx.snap', hash: '8589950869797284375' }, - { file: 'packages/react/src/components/Image/index.ts', hash: '6117348458737991291' }, - { file: 'packages/react/src/components/Keytip/Keytip.styles.ts', hash: '26470584495180607' }, - { file: 'packages/react/src/components/Keytip/Keytip.tsx', hash: '1766817765311778495' }, - { file: 'packages/react/src/components/Keytip/Keytip.types.ts', hash: '16293725386152764984' }, - { file: 'packages/react/src/components/Keytip/KeytipContent.base.tsx', hash: '5493927869174904437' }, - { file: 'packages/react/src/components/Keytip/KeytipContent.test.tsx', hash: '5086309600864173535' }, - { file: 'packages/react/src/components/Keytip/KeytipContent.tsx', hash: '11611940156425372619' }, - { - file: 'packages/react/src/components/Keytip/__snapshots__/KeytipContent.test.tsx.snap', - hash: '2596460814892278429', - }, - { file: 'packages/react/src/components/Keytip/index.ts', hash: '1589728284157203563' }, - { file: 'packages/react/src/components/KeytipData/KeytipData.tsx', hash: '15775201828664799680' }, - { file: 'packages/react/src/components/KeytipData/KeytipData.types.ts', hash: '12324447823866814267' }, - { file: 'packages/react/src/components/KeytipData/index.ts', hash: '4712198936381945548' }, - { file: 'packages/react/src/components/KeytipData/useKeytipData.test.tsx', hash: '17009869791449521401' }, - { file: 'packages/react/src/components/KeytipData/useKeytipData.ts', hash: '5488949258786574622' }, - { file: 'packages/react/src/components/KeytipData/useKeytipRef.test.ts', hash: '6346566064757434343' }, - { file: 'packages/react/src/components/KeytipData/useKeytipRef.ts', hash: '14435606425695323098' }, - { file: 'packages/react/src/components/KeytipLayer/IKeytipTreeNode.ts', hash: '4259987714669396673' }, - { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.base.tsx', hash: '6544893700817273089' }, - { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.styles.ts', hash: '16884186816077888808' }, - { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.test.tsx', hash: '9818784360532204726' }, - { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.tsx', hash: '9909297938001309774' }, - { file: 'packages/react/src/components/KeytipLayer/KeytipLayer.types.ts', hash: '15640944128209193732' }, - { file: 'packages/react/src/components/KeytipLayer/KeytipTree.test.tsx', hash: '9517751630103101293' }, - { file: 'packages/react/src/components/KeytipLayer/KeytipTree.ts', hash: '14167456441228340020' }, - { file: 'packages/react/src/components/KeytipLayer/index.ts', hash: '333553465631618123' }, - { file: 'packages/react/src/components/Label/Label.base.tsx', hash: '8190575964210506548' }, - { file: 'packages/react/src/components/Label/Label.styles.ts', hash: '5738839503600392947' }, - { file: 'packages/react/src/components/Label/Label.test.tsx', hash: '10090713217767425577' }, - { file: 'packages/react/src/components/Label/Label.tsx', hash: '8942462394854847624' }, - { file: 'packages/react/src/components/Label/Label.types.ts', hash: '8823718327343549516' }, - { file: 'packages/react/src/components/Label/LabelMixins.scss', hash: '2865796132641773676' }, - { file: 'packages/react/src/components/Label/__snapshots__/Label.test.tsx.snap', hash: '16950664531217292276' }, - { file: 'packages/react/src/components/Label/index.ts', hash: '701782372226603037' }, - { file: 'packages/react/src/components/Layer/Layer.base.tsx', hash: '14484890726556761152' }, - { file: 'packages/react/src/components/Layer/Layer.notification.ts', hash: '14110203098247553111' }, - { file: 'packages/react/src/components/Layer/Layer.styles.ts', hash: '9132996130234515054' }, - { file: 'packages/react/src/components/Layer/Layer.test.tsx', hash: '10526067785847207172' }, - { file: 'packages/react/src/components/Layer/Layer.tsx', hash: '16441278557794939293' }, - { file: 'packages/react/src/components/Layer/Layer.types.ts', hash: '18253182603761913277' }, - { file: 'packages/react/src/components/Layer/LayerHost.tsx', hash: '6415687165915280246' }, - { file: 'packages/react/src/components/Layer/LayerHost.types.ts', hash: '12435084507892692287' }, - { file: 'packages/react/src/components/Layer/__snapshots__/Layer.test.tsx.snap', hash: '4347345238023347739' }, - { file: 'packages/react/src/components/Layer/index.ts', hash: '2702225210959749876' }, - { file: 'packages/react/src/components/Link/Link.base.tsx', hash: '4696009851687537006' }, - { file: 'packages/react/src/components/Link/Link.styles.ts', hash: '6380541707633307769' }, - { file: 'packages/react/src/components/Link/Link.test.tsx', hash: '13162337841979270382' }, - { file: 'packages/react/src/components/Link/Link.tsx', hash: '1483460583795267065' }, - { file: 'packages/react/src/components/Link/Link.types.ts', hash: '7950997878673908950' }, - { file: 'packages/react/src/components/Link/__snapshots__/Link.test.tsx.snap', hash: '13236755011027298137' }, - { file: 'packages/react/src/components/Link/index.ts', hash: '16962753458348462360' }, - { file: 'packages/react/src/components/Link/useLink.ts', hash: '6771451659717631459' }, - { file: 'packages/react/src/components/List/List.test.tsx', hash: '14182207209684571411' }, - { file: 'packages/react/src/components/List/List.tsx', hash: '337398525385147578' }, - { file: 'packages/react/src/components/List/List.types.ts', hash: '1931441716112280094' }, - { file: 'packages/react/src/components/List/__snapshots__/List.test.tsx.snap', hash: '6603110722863245756' }, - { file: 'packages/react/src/components/List/index.ts', hash: '3791292240660287058' }, - { file: 'packages/react/src/components/List/utils/scroll.test.ts', hash: '5035250436686997299' }, - { file: 'packages/react/src/components/List/utils/scroll.ts', hash: '3276954363382087534' }, - { file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.base.tsx', hash: '8108986356865954062' }, - { - file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.styles.tsx', - hash: '11629235192520125274', - }, - { file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.test.tsx', hash: '4097529235713830466' }, - { file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.tsx', hash: '3131729497757785613' }, - { file: 'packages/react/src/components/MarqueeSelection/MarqueeSelection.types.ts', hash: '7652722384397140480' }, - { - file: 'packages/react/src/components/MarqueeSelection/__snapshots__/MarqueeSelection.test.tsx.snap', - hash: '1476072118831675136', - }, - { file: 'packages/react/src/components/MessageBar/MessageBar.base.tsx', hash: '3641725290805595446' }, - { file: 'packages/react/src/components/MessageBar/MessageBar.styles.ts', hash: '16901430479262789866' }, - { file: 'packages/react/src/components/MessageBar/MessageBar.test.tsx', hash: '4200531768298042001' }, - { file: 'packages/react/src/components/MessageBar/MessageBar.tsx', hash: '15934533885780135935' }, - { file: 'packages/react/src/components/MessageBar/MessageBar.types.ts', hash: '12107460841232965387' }, - { - file: 'packages/react/src/components/MessageBar/__snapshots__/MessageBar.test.tsx.snap', - hash: '12089438488535566985', - }, - { file: 'packages/react/src/components/MessageBar/index.ts', hash: '10165783190127395700' }, - { file: 'packages/react/src/components/Modal/Modal.base.tsx', hash: '7774473038141256639' }, - { file: 'packages/react/src/components/Modal/Modal.styles.ts', hash: '13010493938273472658' }, - { file: 'packages/react/src/components/Modal/Modal.test.tsx', hash: '7330042059600029952' }, - { file: 'packages/react/src/components/Modal/Modal.ts', hash: '13683187870561493708' }, - { file: 'packages/react/src/components/Modal/Modal.types.ts', hash: '9311092462398275867' }, - { file: 'packages/react/src/components/Modal/__snapshots__/Modal.test.tsx.snap', hash: '16603919199555912093' }, - { file: 'packages/react/src/components/Modal/index.ts', hash: '13798025325857153668' }, - { file: 'packages/react/src/components/Nav/Nav.base.tsx', hash: '8394582414073501513' }, - { file: 'packages/react/src/components/Nav/Nav.styles.ts', hash: '14512050744103400087' }, - { file: 'packages/react/src/components/Nav/Nav.test.tsx', hash: '15514537140918235707' }, - { file: 'packages/react/src/components/Nav/Nav.tsx', hash: '10638284599870328707' }, - { file: 'packages/react/src/components/Nav/Nav.types.ts', hash: '8186856480909759678' }, - { file: 'packages/react/src/components/Nav/__snapshots__/Nav.test.tsx.snap', hash: '9307439353878066651' }, - { file: 'packages/react/src/components/Nav/index.ts', hash: '12662416181288669629' }, - { file: 'packages/react/src/components/OverflowSet/OverflowButton.tsx', hash: '9769707305996342513' }, - { file: 'packages/react/src/components/OverflowSet/OverflowSet.base.tsx', hash: '7113035684216930208' }, - { file: 'packages/react/src/components/OverflowSet/OverflowSet.styles.ts', hash: '5647135014154387382' }, - { file: 'packages/react/src/components/OverflowSet/OverflowSet.test.tsx', hash: '10333146601109509690' }, - { file: 'packages/react/src/components/OverflowSet/OverflowSet.ts', hash: '11238335157785127924' }, - { file: 'packages/react/src/components/OverflowSet/OverflowSet.types.ts', hash: '13948203100630407433' }, - { - file: 'packages/react/src/components/OverflowSet/__snapshots__/OverflowSet.test.tsx.snap', - hash: '248229536782956095', - }, - { file: 'packages/react/src/components/OverflowSet/index.ts', hash: '16933137934852433852' }, - { file: 'packages/react/src/components/Overlay/Overlay.base.tsx', hash: '11398904192435363344' }, - { file: 'packages/react/src/components/Overlay/Overlay.styles.ts', hash: '12479301927551480916' }, - { file: 'packages/react/src/components/Overlay/Overlay.test.tsx', hash: '5375182851494505692' }, - { file: 'packages/react/src/components/Overlay/Overlay.tsx', hash: '14338623169213129149' }, - { file: 'packages/react/src/components/Overlay/Overlay.types.ts', hash: '2235807634895380003' }, - { file: 'packages/react/src/components/Overlay/index.ts', hash: '11296397034515992856' }, - { file: 'packages/react/src/components/Panel/Panel.base.tsx', hash: '12463543702726193236' }, - { file: 'packages/react/src/components/Panel/Panel.styles.ts', hash: '11077941591310445928' }, - { file: 'packages/react/src/components/Panel/Panel.test.tsx', hash: '1588567945652832575' }, - { file: 'packages/react/src/components/Panel/Panel.ts', hash: '8839731453608919663' }, - { file: 'packages/react/src/components/Panel/Panel.types.ts', hash: '6670275864375140828' }, - { file: 'packages/react/src/components/Panel/__snapshots__/Panel.test.tsx.snap', hash: '559260894059668605' }, - { file: 'packages/react/src/components/Panel/index.ts', hash: '13335174913237626780' }, - { file: 'packages/react/src/components/Persona/Persona.base.tsx', hash: '6194967196605028938' }, - { file: 'packages/react/src/components/Persona/Persona.deprecated.test.tsx', hash: '11989340987137030740' }, - { file: 'packages/react/src/components/Persona/Persona.styles.ts', hash: '1920607507152248627' }, - { file: 'packages/react/src/components/Persona/Persona.test.tsx', hash: '17539018815879877692' }, - { file: 'packages/react/src/components/Persona/Persona.tsx', hash: '9379532642372744584' }, - { file: 'packages/react/src/components/Persona/Persona.types.ts', hash: '17005696098342686371' }, - { file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.base.tsx', hash: '7978214084573190099' }, - { - file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.deprecated.test.tsx', - hash: '12416360491602756091', - }, - { file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.styles.ts', hash: '3840381039426790312' }, - { file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.test.tsx', hash: '2750927891149479510' }, - { file: 'packages/react/src/components/Persona/PersonaCoin/PersonaCoin.tsx', hash: '1454207390708087949' }, - { - file: 'packages/react/src/components/Persona/PersonaCoin/__snapshots__/PersonaCoin.deprecated.test.tsx.snap', - hash: '8688578988288194326', - }, - { - file: 'packages/react/src/components/Persona/PersonaCoin/__snapshots__/PersonaCoin.test.tsx.snap', - hash: '4893031829279367457', - }, - { file: 'packages/react/src/components/Persona/PersonaCoin/index.ts', hash: '10833710250217357347' }, - { file: 'packages/react/src/components/Persona/PersonaConsts.tsx', hash: '1957132599773504778' }, - { file: 'packages/react/src/components/Persona/PersonaInitialsColor.test.ts', hash: '301179335668360928' }, - { file: 'packages/react/src/components/Persona/PersonaInitialsColor.ts', hash: '18170963028405037460' }, - { - file: 'packages/react/src/components/Persona/PersonaPresence/PersonaPresence.base.tsx', - hash: '3062885056415174826', - }, - { - file: 'packages/react/src/components/Persona/PersonaPresence/PersonaPresence.styles.ts', - hash: '6615263651250958481', - }, - { - file: 'packages/react/src/components/Persona/PersonaPresence/PersonaPresence.test.tsx', - hash: '13226130009014815513', - }, - { - file: 'packages/react/src/components/Persona/PersonaPresence/PersonaPresence.tsx', - hash: '9491698373175359234', - }, - { - file: 'packages/react/src/components/Persona/PersonaPresence/__snapshots__/PersonaPresence.test.tsx.snap', - hash: '1987937457430225355', - }, - { file: 'packages/react/src/components/Persona/PersonaPresence/index.ts', hash: '8712998843474566045' }, - { - file: 'packages/react/src/components/Persona/__snapshots__/Persona.deprecated.test.tsx.snap', - hash: '12606532779411858656', - }, - { - file: 'packages/react/src/components/Persona/__snapshots__/Persona.test.tsx.snap', - hash: '5243408820705783769', - }, - { file: 'packages/react/src/components/Persona/index.ts', hash: '1003635016468659877' }, - { file: 'packages/react/src/components/Persona/test-utils.tsx', hash: '18432891952579134324' }, - { file: 'packages/react/src/components/Pivot/Pivot.base.tsx', hash: '5254684007184867388' }, - { file: 'packages/react/src/components/Pivot/Pivot.deprecated.test.tsx', hash: '1235740737998705772' }, - { file: 'packages/react/src/components/Pivot/Pivot.styles.ts', hash: '9108562916062400261' }, - { file: 'packages/react/src/components/Pivot/Pivot.test.tsx', hash: '1862426908183434633' }, - { file: 'packages/react/src/components/Pivot/Pivot.tsx', hash: '5829419170269708419' }, - { file: 'packages/react/src/components/Pivot/Pivot.types.ts', hash: '15724983107723831286' }, - { file: 'packages/react/src/components/Pivot/PivotItem.tsx', hash: '5498227973895913176' }, - { file: 'packages/react/src/components/Pivot/PivotItem.types.ts', hash: '7463314133865753309' }, - { - file: 'packages/react/src/components/Pivot/__snapshots__/Pivot.deprecated.test.tsx.snap', - hash: '9350737731021987462', - }, - { file: 'packages/react/src/components/Pivot/__snapshots__/Pivot.test.tsx.snap', hash: '14812844193113361128' }, - { file: 'packages/react/src/components/Pivot/index.ts', hash: '16401592313694217989' }, - { file: 'packages/react/src/components/Popup/Popup.test.tsx', hash: '14748219392463636319' }, - { file: 'packages/react/src/components/Popup/Popup.tsx', hash: '18303114733075754228' }, - { file: 'packages/react/src/components/Popup/Popup.types.ts', hash: '2644822833966833698' }, - { file: 'packages/react/src/components/Popup/index.ts', hash: '15938578186587982924' }, - { - file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.base.tsx', - hash: '2266128567453655067', - }, - { - file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.styles.ts', - hash: '17437177184475748779', - }, - { - file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.test.tsx', - hash: '13377810921948144940', - }, - { file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.tsx', hash: '3338648644072271163' }, - { - file: 'packages/react/src/components/ProgressIndicator/ProgressIndicator.types.ts', - hash: '13275827929777402920', - }, - { - file: 'packages/react/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.test.tsx.snap', - hash: '5669310949553554689', - }, - { file: 'packages/react/src/components/ProgressIndicator/index.ts', hash: '16364455361019886446' }, - { file: 'packages/react/src/components/Rating/Rating.base.tsx', hash: '4565165120321522700' }, - { file: 'packages/react/src/components/Rating/Rating.styles.ts', hash: '9112171566781846387' }, - { file: 'packages/react/src/components/Rating/Rating.test.tsx', hash: '12019971281630417718' }, - { file: 'packages/react/src/components/Rating/Rating.tsx', hash: '8474775138709046972' }, - { file: 'packages/react/src/components/Rating/Rating.types.ts', hash: '3293957530885947735' }, - { file: 'packages/react/src/components/Rating/__snapshots__/Rating.test.tsx.snap', hash: '6878166199175042678' }, - { file: 'packages/react/src/components/Rating/index.ts', hash: '6936810521464100990' }, - { file: 'packages/react/src/components/ResizeGroup/ResizeGroup.base.tsx', hash: '9694591702737967514' }, - { file: 'packages/react/src/components/ResizeGroup/ResizeGroup.test.tsx', hash: '5245675499839808625' }, - { file: 'packages/react/src/components/ResizeGroup/ResizeGroup.tsx', hash: '11042089564242243766' }, - { file: 'packages/react/src/components/ResizeGroup/ResizeGroup.types.ts', hash: '18215672949674225534' }, - { - file: 'packages/react/src/components/ResizeGroup/__snapshots__/ResizeGroup.test.tsx.snap', - hash: '11336585111154751236', - }, - { file: 'packages/react/src/components/ResizeGroup/index.ts', hash: '18030751737929359966' }, - { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.base.tsx', hash: '4728891024798577999' }, - { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.scss', hash: '12660556819721993651' }, - { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.styles.ts', hash: '7630057771040368786' }, - { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.test.tsx', hash: '5450045075671214421' }, - { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.tsx', hash: '10278226015705813013' }, - { file: 'packages/react/src/components/ScrollablePane/ScrollablePane.types.ts', hash: '11149654521789685360' }, - { - file: 'packages/react/src/components/ScrollablePane/__snapshots__/ScrollablePane.test.tsx.snap', - hash: '11917452609133122703', - }, - { file: 'packages/react/src/components/ScrollablePane/index.ts', hash: '9022712096012739667' }, - { file: 'packages/react/src/components/SearchBox/SearchBox.base.tsx', hash: '4225740635739479085' }, - { file: 'packages/react/src/components/SearchBox/SearchBox.styles.tsx', hash: '1901328636794627212' }, - { file: 'packages/react/src/components/SearchBox/SearchBox.test.tsx', hash: '15270693759819107024' }, - { file: 'packages/react/src/components/SearchBox/SearchBox.tsx', hash: '14815922271880527031' }, - { file: 'packages/react/src/components/SearchBox/SearchBox.types.ts', hash: '16561624650344526815' }, - { - file: 'packages/react/src/components/SearchBox/__snapshots__/SearchBox.test.tsx.snap', - hash: '5163262981591412955', - }, - { file: 'packages/react/src/components/SearchBox/index.ts', hash: '2002340183405233581' }, - { - file: 'packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.test.tsx', - hash: '2439461074165366957', - }, - { - file: 'packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.tsx', - hash: '15017942153576064679', - }, - { - file: 'packages/react/src/components/SelectedItemsList/BaseSelectedItemsList.types.ts', - hash: '13036270235408570430', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.scss', - hash: '15475341105828219619', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.styles.ts', - hash: '15633592521000750806', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.tsx', - hash: '14514987165749763434', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/EditingItem.types.ts', - hash: '14366127583648771435', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.scss', - hash: '758761801215317040', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/ExtendedSelectedItem.tsx', - hash: '17437319372558202829', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedItemWithContextMenu.tsx', - hash: '17756749329382603092', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.test.tsx', - hash: '13657963705753195239', - }, - { - file: 'packages/react/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.tsx', - hash: '2188525700728877068', - }, - { - file: 'packages/react/src/components/SelectedItemsList/__snapshots__/BaseSelectedItemsList.test.tsx.snap', - hash: '17274296306189210980', - }, - { file: 'packages/react/src/components/SelectedItemsList/index.ts', hash: '7595379961393666277' }, - { file: 'packages/react/src/components/Separator/Separator.base.tsx', hash: '17294625678770939029' }, - { file: 'packages/react/src/components/Separator/Separator.styles.ts', hash: '14230472610755643944' }, - { file: 'packages/react/src/components/Separator/Separator.test.tsx', hash: '7738872471754358071' }, - { file: 'packages/react/src/components/Separator/Separator.tsx', hash: '2708132967434374502' }, - { file: 'packages/react/src/components/Separator/Separator.types.ts', hash: '13040932608955788124' }, - { file: 'packages/react/src/components/Separator/index.ts', hash: '14575455021946241513' }, - { file: 'packages/react/src/components/Shimmer/Shimmer.base.tsx', hash: '622305100319727334' }, - { file: 'packages/react/src/components/Shimmer/Shimmer.styles.ts', hash: '7858803940928495535' }, - { file: 'packages/react/src/components/Shimmer/Shimmer.test.tsx', hash: '14192583860063774916' }, - { file: 'packages/react/src/components/Shimmer/Shimmer.tsx', hash: '1394717753894766880' }, - { file: 'packages/react/src/components/Shimmer/Shimmer.types.ts', hash: '17331228457676528659' }, - { - file: 'packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.base.tsx', - hash: '10275032889626978683', - }, - { - file: 'packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.styles.ts', - hash: '11420523654698134729', - }, - { file: 'packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.tsx', hash: '9694371307250105703' }, - { - file: 'packages/react/src/components/Shimmer/ShimmerCircle/ShimmerCircle.types.ts', - hash: '1728577304450374260', - }, - { - file: 'packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.base.tsx', - hash: '18379310095005316743', - }, - { - file: 'packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.styles.ts', - hash: '2545105839221331446', - }, - { - file: 'packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.tsx', - hash: '14250368054107805040', - }, - { - file: 'packages/react/src/components/Shimmer/ShimmerElementsGroup/ShimmerElementsGroup.types.ts', - hash: '7115051155111137833', - }, - { file: 'packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.base.tsx', hash: '78556124504108996' }, - { file: 'packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.styles.ts', hash: '2064652991532358343' }, - { file: 'packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.tsx', hash: '11476010222559961913' }, - { file: 'packages/react/src/components/Shimmer/ShimmerGap/ShimmerGap.types.ts', hash: '2110669865470376426' }, - { file: 'packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.base.tsx', hash: '11316009371793371654' }, - { file: 'packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.styles.ts', hash: '16825660826402859755' }, - { file: 'packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.tsx', hash: '6810202527433669183' }, - { file: 'packages/react/src/components/Shimmer/ShimmerLine/ShimmerLine.types.ts', hash: '18351243406956033223' }, - { - file: 'packages/react/src/components/Shimmer/__snapshots__/Shimmer.test.tsx.snap', - hash: '3185768282225296628', - }, - { file: 'packages/react/src/components/Shimmer/index.ts', hash: '13927227349171452284' }, - { file: 'packages/react/src/components/Slider/Slider.base.tsx', hash: '15798451710094592561' }, - { file: 'packages/react/src/components/Slider/Slider.styles.ts', hash: '4607291680675548022' }, - { file: 'packages/react/src/components/Slider/Slider.test.tsx', hash: '8613310415484639048' }, - { file: 'packages/react/src/components/Slider/Slider.tsx', hash: '7410622987581707582' }, - { file: 'packages/react/src/components/Slider/Slider.types.ts', hash: '14952151059140667704' }, - { file: 'packages/react/src/components/Slider/__snapshots__/Slider.test.tsx.snap', hash: '9285732807236239098' }, - { file: 'packages/react/src/components/Slider/index.ts', hash: '16670111655346245754' }, - { file: 'packages/react/src/components/Slider/useSlider.ts', hash: '12900564936250592122' }, - { file: 'packages/react/src/components/SpinButton/SpinButton.base.tsx', hash: '18058269695188263893' }, - { file: 'packages/react/src/components/SpinButton/SpinButton.styles.ts', hash: '9802419801197429803' }, - { file: 'packages/react/src/components/SpinButton/SpinButton.test.tsx', hash: '1102850678003036987' }, - { file: 'packages/react/src/components/SpinButton/SpinButton.tsx', hash: '5507489409647508695' }, - { file: 'packages/react/src/components/SpinButton/SpinButton.types.ts', hash: '2703760200830686057' }, - { - file: 'packages/react/src/components/SpinButton/__snapshots__/SpinButton.test.tsx.snap', - hash: '12546769869747196784', - }, - { file: 'packages/react/src/components/SpinButton/index.ts', hash: '6778975452233565727' }, - { file: 'packages/react/src/components/Spinner/Spinner.base.tsx', hash: '7258097721326686377' }, - { file: 'packages/react/src/components/Spinner/Spinner.styles.tsx', hash: '716100486567492388' }, - { file: 'packages/react/src/components/Spinner/Spinner.test.tsx', hash: '12060499305856970384' }, - { file: 'packages/react/src/components/Spinner/Spinner.tsx', hash: '3200211062084468851' }, - { file: 'packages/react/src/components/Spinner/Spinner.types.ts', hash: '1544606461056547194' }, - { - file: 'packages/react/src/components/Spinner/__snapshots__/Spinner.test.tsx.snap', - hash: '10255693095285678582', - }, - { file: 'packages/react/src/components/Spinner/index.ts', hash: '1855220178076017776' }, - { file: 'packages/react/src/components/Stack/Stack.styles.ts', hash: '16321254993662249061' }, - { file: 'packages/react/src/components/Stack/Stack.test.tsx', hash: '11883216989281561254' }, - { file: 'packages/react/src/components/Stack/Stack.tsx', hash: '4140006760718240707' }, - { file: 'packages/react/src/components/Stack/Stack.types.ts', hash: '13977158692936683168' }, - { file: 'packages/react/src/components/Stack/StackItem/StackItem.styles.ts', hash: '10908263818739168703' }, - { file: 'packages/react/src/components/Stack/StackItem/StackItem.test.tsx', hash: '15972135318103519144' }, - { file: 'packages/react/src/components/Stack/StackItem/StackItem.tsx', hash: '15838468526064014217' }, - { file: 'packages/react/src/components/Stack/StackItem/StackItem.types.ts', hash: '3129159544618735975' }, - { file: 'packages/react/src/components/Stack/StackUtils.test.ts', hash: '521690037370632650' }, - { file: 'packages/react/src/components/Stack/StackUtils.ts', hash: '12286636882102513809' }, - { file: 'packages/react/src/components/Stack/__snapshots__/Stack.test.tsx.snap', hash: '12864004073364256598' }, - { file: 'packages/react/src/components/Stack/index.ts', hash: '1979466436394549136' }, - { file: 'packages/react/src/components/Sticky/Sticky.test.tsx', hash: '483009900348746854' }, - { file: 'packages/react/src/components/Sticky/Sticky.tsx', hash: '4820400588900345897' }, - { file: 'packages/react/src/components/Sticky/Sticky.types.ts', hash: '3615404119608318992' }, - { file: 'packages/react/src/components/Sticky/index.ts', hash: '2542216627679221864' }, - { file: 'packages/react/src/components/Sticky/util/comparison.test.ts', hash: '14096854823836155200' }, - { file: 'packages/react/src/components/Sticky/util/comparison.ts', hash: '4588257025943731766' }, - { file: 'packages/react/src/components/Sticky/util/scroll.test.ts', hash: '12778441671228486454' }, - { file: 'packages/react/src/components/Sticky/util/scroll.ts', hash: '7073818532586250683' }, - { - file: 'packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.base.tsx', - hash: '4877535088844461282', - }, - { - file: 'packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.styles.ts', - hash: '1746093924526525911', - }, - { file: 'packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.tsx', hash: '12490850924711508436' }, - { - file: 'packages/react/src/components/SwatchColorPicker/ColorPickerGridCell.types.ts', - hash: '11755498344911849810', - }, - { - file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.base.tsx', - hash: '15148770286190928984', - }, - { - file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.styles.ts', - hash: '10927866444432786096', - }, - { - file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.test.tsx', - hash: '14920126625218364277', - }, - { file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.tsx', hash: '11572086435543663291' }, - { - file: 'packages/react/src/components/SwatchColorPicker/SwatchColorPicker.types.ts', - hash: '804021372959073378', - }, - { - file: 'packages/react/src/components/SwatchColorPicker/__snapshots__/SwatchColorPicker.test.tsx.snap', - hash: '9703469669882626284', - }, - { file: 'packages/react/src/components/SwatchColorPicker/index.ts', hash: '13458739188607801516' }, - { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.base.tsx', hash: '11960677283213387231' }, - { - file: 'packages/react/src/components/TeachingBubble/TeachingBubble.deprecated.test.tsx', - hash: '11992566066080602646', - }, - { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.styles.ts', hash: '15359886714365052297' }, - { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.test.tsx', hash: '13726719835642907185' }, - { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.ts', hash: '2444446477830155936' }, - { file: 'packages/react/src/components/TeachingBubble/TeachingBubble.types.ts', hash: '16828074886234505184' }, - { - file: 'packages/react/src/components/TeachingBubble/TeachingBubbleContent.base.tsx', - hash: '16413351954180758506', - }, - { file: 'packages/react/src/components/TeachingBubble/TeachingBubbleContent.ts', hash: '14936507102622600629' }, - { - file: 'packages/react/src/components/TeachingBubble/__snapshots__/TeachingBubble.deprecated.test.tsx.snap', - hash: '13317529128477000448', - }, - { - file: 'packages/react/src/components/TeachingBubble/__snapshots__/TeachingBubble.test.tsx.snap', - hash: '11608354909874598053', - }, - { file: 'packages/react/src/components/TeachingBubble/index.ts', hash: '5537273073495594935' }, - { file: 'packages/react/src/components/Text/Text.styles.ts', hash: '16557720552861338265' }, - { file: 'packages/react/src/components/Text/Text.test.tsx', hash: '10229486515428514407' }, - { file: 'packages/react/src/components/Text/Text.ts', hash: '18117337464299047121' }, - { file: 'packages/react/src/components/Text/Text.types.tsx', hash: '17642157339175361608' }, - { file: 'packages/react/src/components/Text/Text.view.tsx', hash: '10365127091762030027' }, - { file: 'packages/react/src/components/Text/__snapshots__/Text.test.tsx.snap', hash: '9078894318583755413' }, - { file: 'packages/react/src/components/Text/index.ts', hash: '230878242475216758' }, - { - file: 'packages/react/src/components/TextField/MaskedTextField/MaskedTextField.test.tsx', - hash: '14177584564035837064', - }, - { - file: 'packages/react/src/components/TextField/MaskedTextField/MaskedTextField.tsx', - hash: '9197609096631929679', - }, - { - file: 'packages/react/src/components/TextField/MaskedTextField/__snapshots__/MaskedTextField.test.tsx.snap', - hash: '2368489911375711210', - }, - { - file: 'packages/react/src/components/TextField/MaskedTextField/inputMask.test.ts', - hash: '12837909525862283635', - }, - { file: 'packages/react/src/components/TextField/MaskedTextField/inputMask.ts', hash: '3204972971904546695' }, - { file: 'packages/react/src/components/TextField/TextField.base.tsx', hash: '3135520502977693022' }, - { file: 'packages/react/src/components/TextField/TextField.styles.tsx', hash: '16053279269199542379' }, - { file: 'packages/react/src/components/TextField/TextField.test.tsx', hash: '12025014664871757235' }, - { file: 'packages/react/src/components/TextField/TextField.ts', hash: '6203821991228467732' }, - { file: 'packages/react/src/components/TextField/TextField.types.ts', hash: '9000956738092230779' }, - { - file: 'packages/react/src/components/TextField/__snapshots__/TextField.test.tsx.snap', - hash: '16446484854028579884', - }, - { file: 'packages/react/src/components/TextField/index.ts', hash: '9634891770694366652' }, - { file: 'packages/react/src/components/ThemeGenerator/IThemeRules.ts', hash: '343349790449113474' }, - { file: 'packages/react/src/components/ThemeGenerator/IThemeSlotRule.ts', hash: '2798819573170736586' }, - { file: 'packages/react/src/components/ThemeGenerator/ThemeGenerator.ts', hash: '4318009942218972946' }, - { file: 'packages/react/src/components/ThemeGenerator/ThemeRulesStandard.ts', hash: '15460702558815436477' }, - { file: 'packages/react/src/components/ThemeGenerator/index.ts', hash: '2662606445442538581' }, - { file: 'packages/react/src/components/TimePicker/TimePicker.test.tsx', hash: '4430602795911846347' }, - { file: 'packages/react/src/components/TimePicker/TimePicker.tsx', hash: '14587751084581473926' }, - { file: 'packages/react/src/components/TimePicker/TimePicker.types.ts', hash: '4871830345667101562' }, - { - file: 'packages/react/src/components/TimePicker/__snapshots__/TimePicker.test.tsx.snap', - hash: '1192043543094055950', - }, - { file: 'packages/react/src/components/TimePicker/index.ts', hash: '4043660638174848621' }, - { file: 'packages/react/src/components/Toggle/Toggle.base.tsx', hash: '17041455243236331064' }, - { file: 'packages/react/src/components/Toggle/Toggle.deprecated.test.tsx', hash: '16420708565250016535' }, - { file: 'packages/react/src/components/Toggle/Toggle.styles.ts', hash: '10235414160628441935' }, - { file: 'packages/react/src/components/Toggle/Toggle.test.tsx', hash: '4749697846961425208' }, - { file: 'packages/react/src/components/Toggle/Toggle.tsx', hash: '13754746495419401585' }, - { file: 'packages/react/src/components/Toggle/Toggle.types.ts', hash: '10425114743254470105' }, - { file: 'packages/react/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap', hash: '14294764514930879696' }, - { file: 'packages/react/src/components/Toggle/index.ts', hash: '10198894087612340427' }, - { file: 'packages/react/src/components/Tooltip/Tooltip.base.tsx', hash: '14315739255581701896' }, - { file: 'packages/react/src/components/Tooltip/Tooltip.styles.ts', hash: '14364410225416825987' }, - { file: 'packages/react/src/components/Tooltip/Tooltip.test.tsx', hash: '6829170781879921284' }, - { file: 'packages/react/src/components/Tooltip/Tooltip.tsx', hash: '17811006348031671798' }, - { file: 'packages/react/src/components/Tooltip/Tooltip.types.ts', hash: '2660943847897709290' }, - { file: 'packages/react/src/components/Tooltip/TooltipHost.base.tsx', hash: '4222571360856747469' }, - { file: 'packages/react/src/components/Tooltip/TooltipHost.styles.ts', hash: '7084784521266667387' }, - { file: 'packages/react/src/components/Tooltip/TooltipHost.test.tsx', hash: '9044319496664347486' }, - { file: 'packages/react/src/components/Tooltip/TooltipHost.ts', hash: '15304936019843856429' }, - { file: 'packages/react/src/components/Tooltip/TooltipHost.types.ts', hash: '15670380784192667360' }, - { - file: 'packages/react/src/components/Tooltip/__snapshots__/Tooltip.test.tsx.snap', - hash: '2529886458703393903', - }, - { - file: 'packages/react/src/components/Tooltip/__snapshots__/TooltipHost.test.tsx.snap', - hash: '13426358771837104817', - }, - { file: 'packages/react/src/components/Tooltip/index.ts', hash: '13628541413104800808' }, - { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.base.tsx', hash: '10662405248411854209' }, - { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.styles.ts', hash: '17655471458969559384' }, - { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.test.tsx', hash: '1018673177354104156' }, - { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.tsx', hash: '14453694537649714043' }, - { file: 'packages/react/src/components/WeeklyDayPicker/WeeklyDayPicker.types.ts', hash: '14595811500325100502' }, - { - file: 'packages/react/src/components/WeeklyDayPicker/__snapshots__/WeeklyDayPicker.test.tsx.snap', - hash: '2528983063086393230', - }, - { file: 'packages/react/src/components/WeeklyDayPicker/defaults.ts', hash: '11377986538922612005' }, - { file: 'packages/react/src/components/WeeklyDayPicker/index.ts', hash: '6171109175880934046' }, - { file: 'packages/react/src/components/pickers/AutoFill/BaseAutoFill.tsx', hash: '7343802070330089599' }, - { file: 'packages/react/src/components/pickers/AutoFill/BaseAutoFill.types.ts', hash: '6487201084997771499' }, - { file: 'packages/react/src/components/pickers/BasePicker.scss', hash: '2254284533524560358' }, - { file: 'packages/react/src/components/pickers/BasePicker.styles.ts', hash: '3491115508506418137' }, - { file: 'packages/react/src/components/pickers/BasePicker.test.tsx', hash: '15043266091913983080' }, - { file: 'packages/react/src/components/pickers/BasePicker.tsx', hash: '4054535122222800596' }, - { file: 'packages/react/src/components/pickers/BasePicker.types.ts', hash: '717340499218281756' }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePicker.test.tsx', - hash: '17876839589477737141', - }, - { file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePicker.tsx', hash: '16286230654566725538' }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.styles.ts', - hash: '10855489273418432861', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.tsx', - hash: '9083961797742224049', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItem.types.ts', - hash: '16912167381812988428', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.styles.ts', - hash: '4670107728068065016', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PeoplePickerItemSuggestion.tsx', - hash: '15063617562799640000', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/PickerItemsDefault.scss', - hash: '6384005023815280495', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SelectedItemDefault.tsx', - hash: '15159392081114259751', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.scss', - hash: '5379873812562665385', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/PeoplePickerItems/SuggestionItemDefault.tsx', - hash: '9441381518993515989', - }, - { - file: 'packages/react/src/components/pickers/PeoplePicker/__snapshots__/PeoplePicker.test.tsx.snap', - hash: '1340262275578671623', - }, - { file: 'packages/react/src/components/pickers/PickerItem.types.ts', hash: '5019879866432474699' }, - { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.scss', hash: '7217102423921295318' }, - { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.styles.ts', hash: '13383952703102640475' }, - { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.test.tsx', hash: '15081865941454159082' }, - { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.tsx', hash: '14271707022680072031' }, - { file: 'packages/react/src/components/pickers/Suggestions/Suggestions.types.ts', hash: '13968761647371279988' }, - { - file: 'packages/react/src/components/pickers/Suggestions/SuggestionsController.ts', - hash: '4740113206090778515', - }, - { - file: 'packages/react/src/components/pickers/Suggestions/SuggestionsItem.styles.ts', - hash: '9617715724013431436', - }, - { file: 'packages/react/src/components/pickers/Suggestions/SuggestionsItem.tsx', hash: '12808779264432058945' }, - { - file: 'packages/react/src/components/pickers/Suggestions/SuggestionsItem.types.ts', - hash: '3287646201182813027', - }, - { - file: 'packages/react/src/components/pickers/Suggestions/__snapshots__/Suggestions.test.tsx.snap', - hash: '13924503482300913537', - }, - { file: 'packages/react/src/components/pickers/TagPicker/TagItem.styles.ts', hash: '17090589944968694753' }, - { file: 'packages/react/src/components/pickers/TagPicker/TagItem.test.tsx', hash: '2142568253152648703' }, - { file: 'packages/react/src/components/pickers/TagPicker/TagItem.tsx', hash: '17339491415717015901' }, - { - file: 'packages/react/src/components/pickers/TagPicker/TagItemSuggestion.styles.ts', - hash: '12290923035788842340', - }, - { file: 'packages/react/src/components/pickers/TagPicker/TagItemSuggestion.tsx', hash: '3602386350156259409' }, - { file: 'packages/react/src/components/pickers/TagPicker/TagPicker.test.tsx', hash: '10483533162038956926' }, - { file: 'packages/react/src/components/pickers/TagPicker/TagPicker.tsx', hash: '13849646905761086680' }, - { file: 'packages/react/src/components/pickers/TagPicker/TagPicker.types.ts', hash: '2960981203569246534' }, - { - file: 'packages/react/src/components/pickers/TagPicker/__snapshots__/TagItem.test.tsx.snap', - hash: '7121888399084993878', - }, - { - file: 'packages/react/src/components/pickers/TagPicker/__snapshots__/TagPicker.test.tsx.snap', - hash: '10689900816861068695', - }, - { - file: 'packages/react/src/components/pickers/__snapshots__/BasePicker.test.tsx.snap', - hash: '6231335031253357456', - }, - { file: 'packages/react/src/components/pickers/index.ts', hash: '6869692424936090453' }, - { file: 'packages/react/src/index.bundle.ts', hash: '15702876611017698133' }, - { file: 'packages/react/src/index.ts', hash: '3984584751531391776' }, - { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.base.tsx', hash: '13048871594096070691' }, - { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.styles.ts', hash: '10672241857310378691' }, - { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.test.tsx', hash: '2437098213636126623' }, - { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.tsx', hash: '5275609746550163481' }, - { file: 'packages/react/src/utilities/ButtonGrid/ButtonGrid.types.ts', hash: '7471614519619311838' }, - { file: 'packages/react/src/utilities/ButtonGrid/ButtonGridCell.tsx', hash: '8863275249735168504' }, - { file: 'packages/react/src/utilities/ButtonGrid/ButtonGridCell.types.ts', hash: '12269526535022680538' }, - { file: 'packages/react/src/utilities/ButtonGrid/index.ts', hash: '5606101914026628430' }, - { file: 'packages/react/src/utilities/DraggableZone/DraggableZone.styles.ts', hash: '7360859405718713398' }, - { file: 'packages/react/src/utilities/DraggableZone/DraggableZone.tsx', hash: '14662144876543203208' }, - { file: 'packages/react/src/utilities/DraggableZone/DraggableZone.types.ts', hash: '5286539702076790666' }, - { file: 'packages/react/src/utilities/DraggableZone/index.ts', hash: '991165440448171187' }, - { file: 'packages/react/src/utilities/MenuContext/MenuContext.ts', hash: '13949440192832242509' }, - { file: 'packages/react/src/utilities/MenuContext/index.ts', hash: '4195339341740520128' }, - { file: 'packages/react/src/utilities/MenuContext/types.ts', hash: '601766763771540766' }, - { file: 'packages/react/src/utilities/ThemeProvider/README.md', hash: '17637903867269031542' }, - { file: 'packages/react/src/utilities/ThemeProvider/ThemeContext.ts', hash: '13892208870743977838' }, - { file: 'packages/react/src/utilities/ThemeProvider/ThemeProvider.test.tsx', hash: '13679567931341185936' }, - { file: 'packages/react/src/utilities/ThemeProvider/ThemeProvider.tsx', hash: '6179047605470404754' }, - { file: 'packages/react/src/utilities/ThemeProvider/ThemeProvider.types.ts', hash: '17118972086321263161' }, - { - file: 'packages/react/src/utilities/ThemeProvider/__snapshots__/ThemeProvider.test.tsx.snap', - hash: '9894426767005176096', - }, - { file: 'packages/react/src/utilities/ThemeProvider/index.ts', hash: '15095908332300329015' }, - { file: 'packages/react/src/utilities/ThemeProvider/makeStyles.test.tsx', hash: '13703934544629777309' }, - { file: 'packages/react/src/utilities/ThemeProvider/makeStyles.ts', hash: '13518684396676587434' }, - { file: 'packages/react/src/utilities/ThemeProvider/renderThemeProvider.tsx', hash: '7031715562059584568' }, - { - file: 'packages/react/src/utilities/ThemeProvider/styleRenderers/mergeStylesRenderer.tsx', - hash: '3592602241860269066', - }, - { file: 'packages/react/src/utilities/ThemeProvider/styleRenderers/types.ts', hash: '10071936263955037148' }, - { file: 'packages/react/src/utilities/ThemeProvider/useTheme.ts', hash: '7002881355475012640' }, - { file: 'packages/react/src/utilities/ThemeProvider/useThemeProvider.tsx', hash: '16631113233994729461' }, - { file: 'packages/react/src/utilities/ThemeProvider/useThemeProviderClasses.tsx', hash: '5375575044419126164' }, - { file: 'packages/react/src/utilities/ThemeProvider/useThemeProviderState.tsx', hash: '17027141080033889589' }, - { file: 'packages/react/src/utilities/color/_rgbaOrHexString.ts', hash: '670629510036329557' }, - { file: 'packages/react/src/utilities/color/clamp.ts', hash: '8432403036522356124' }, - { file: 'packages/react/src/utilities/color/colors.test.ts', hash: '6514813408979578421' }, - { file: 'packages/react/src/utilities/color/colors.ts', hash: '14938309597260952164' }, - { file: 'packages/react/src/utilities/color/consts.ts', hash: '9659661416934864320' }, - { file: 'packages/react/src/utilities/color/correctHSV.ts', hash: '14305033368774440121' }, - { file: 'packages/react/src/utilities/color/correctHex.ts', hash: '14248417825592490956' }, - { file: 'packages/react/src/utilities/color/correctRGB.ts', hash: '15564249153975134575' }, - { file: 'packages/react/src/utilities/color/cssColor.ts', hash: '17411936481260342773' }, - { file: 'packages/react/src/utilities/color/getColorFromHSV.ts', hash: '5677659457274240736' }, - { file: 'packages/react/src/utilities/color/getColorFromRGBA.ts', hash: '1765799052939282201' }, - { file: 'packages/react/src/utilities/color/getColorFromString.ts', hash: '6313423634844260228' }, - { file: 'packages/react/src/utilities/color/getFullColorString.ts', hash: '3471378158992256582' }, - { file: 'packages/react/src/utilities/color/hsl2hsv.ts', hash: '6244023491766357157' }, - { file: 'packages/react/src/utilities/color/hsl2rgb.ts', hash: '15569236605928242144' }, - { file: 'packages/react/src/utilities/color/hsv2hex.ts', hash: '15287927800285061921' }, - { file: 'packages/react/src/utilities/color/hsv2hsl.ts', hash: '10595103910974750850' }, - { file: 'packages/react/src/utilities/color/hsv2rgb.ts', hash: '17472983733505672226' }, - { file: 'packages/react/src/utilities/color/index.ts', hash: '915658032881491641' }, - { file: 'packages/react/src/utilities/color/interfaces.ts', hash: '2432356879188360615' }, - { file: 'packages/react/src/utilities/color/rgb2hex.ts', hash: '12975140826208974199' }, - { file: 'packages/react/src/utilities/color/rgb2hsv.ts', hash: '5684905026209857335' }, - { file: 'packages/react/src/utilities/color/shades.ts', hash: '6374966934341090657' }, - { file: 'packages/react/src/utilities/color/updateA.ts', hash: '14416377082519676806' }, - { file: 'packages/react/src/utilities/color/updateH.ts', hash: '10044554694569887243' }, - { file: 'packages/react/src/utilities/color/updateRGB.ts', hash: '11322026034603094475' }, - { file: 'packages/react/src/utilities/color/updateSV.ts', hash: '15989758908719986538' }, - { file: 'packages/react/src/utilities/color/updateT.ts', hash: '11425172802903888793' }, - { - file: 'packages/react/src/utilities/contextualMenu/contextualMenuUtility.test.ts', - hash: '11775032268395869200', - }, - { file: 'packages/react/src/utilities/contextualMenu/contextualMenuUtility.ts', hash: '6439318017315226732' }, - { file: 'packages/react/src/utilities/contextualMenu/index.ts', hash: '14561010750715978131' }, - { file: 'packages/react/src/utilities/decorators/BaseDecorator.ts', hash: '12680571413768582546' }, - { file: 'packages/react/src/utilities/decorators/withContainsFocus.tsx', hash: '4199916114998813247' }, - { file: 'packages/react/src/utilities/decorators/withResponsiveMode.test.tsx', hash: '15396955314160038481' }, - { file: 'packages/react/src/utilities/decorators/withResponsiveMode.tsx', hash: '17698455087137585448' }, - { file: 'packages/react/src/utilities/decorators/withViewport.tsx', hash: '17941994249211471417' }, - { file: 'packages/react/src/utilities/dragdrop/DragDropHelper.tsx', hash: '2030077348553558869' }, - { file: 'packages/react/src/utilities/dragdrop/index.ts', hash: '3437101347851446346' }, - { file: 'packages/react/src/utilities/dragdrop/interfaces.ts', hash: '7577495661441722234' }, - { file: 'packages/react/src/utilities/groupedList/GroupedListUtility.test.tsx', hash: '16326497141718659536' }, - { file: 'packages/react/src/utilities/groupedList/GroupedListUtility.tsx', hash: '9856016773806578336' }, - { file: 'packages/react/src/utilities/hooks/useResponsiveMode.test.tsx', hash: '5869527387854552719' }, - { file: 'packages/react/src/utilities/hooks/useResponsiveMode.tsx', hash: '8652722068210931815' }, - { file: 'packages/react/src/utilities/keytips/IKeytipTransitionKey.test.ts', hash: '4487932675350890302' }, - { file: 'packages/react/src/utilities/keytips/IKeytipTransitionKey.ts', hash: '3993741686850747808' }, - { file: 'packages/react/src/utilities/keytips/KeytipConfig.test.ts', hash: '16228241456219329106' }, - { file: 'packages/react/src/utilities/keytips/KeytipConfig.ts', hash: '7633671420559248320' }, - { file: 'packages/react/src/utilities/keytips/KeytipConstants.ts', hash: '11846497808787026280' }, - { file: 'packages/react/src/utilities/keytips/KeytipManager.test.tsx', hash: '17114794707717858153' }, - { file: 'packages/react/src/utilities/keytips/KeytipManager.ts', hash: '4203378422840049741' }, - { file: 'packages/react/src/utilities/keytips/KeytipUtils.test.ts', hash: '7804697362348876619' }, - { file: 'packages/react/src/utilities/keytips/KeytipUtils.ts', hash: '3236660558323138655' }, - { file: 'packages/react/src/utilities/keytips/index.ts', hash: '6578652756422328106' }, - { file: 'packages/react/src/utilities/observeResize.ts', hash: '2332028751791908020' }, - { file: 'packages/react/src/utilities/positioning/index.ts', hash: '13313221551798480810' }, - { file: 'packages/react/src/utilities/positioning/positioning.test.ts', hash: '12108737569186708694' }, - { file: 'packages/react/src/utilities/positioning/positioning.ts', hash: '2267803550900081928' }, - { file: 'packages/react/src/utilities/positioning/positioning.types.ts', hash: '1308506524023896539' }, - { file: 'packages/react/src/utilities/positioning.ts', hash: '7688065479262789318' }, - { - file: 'packages/react/src/utilities/selectableOption/SelectableDroppableText.types.ts', - hash: '9756133308604085986', - }, - { file: 'packages/react/src/utilities/selectableOption/SelectableOption.ts', hash: '10362914716162970193' }, - { file: 'packages/react/src/utilities/selectableOption/SelectableOption.types.ts', hash: '539190171132149946' }, - { file: 'packages/react/src/utilities/selectableOption/index.ts', hash: '14391316765249285599' }, - { file: 'packages/react/src/utilities/selection/Selection.ts', hash: '15273105317210853787' }, - { file: 'packages/react/src/utilities/selection/SelectionZone.test.tsx', hash: '9021204914729111832' }, - { file: 'packages/react/src/utilities/selection/SelectionZone.tsx', hash: '8379252325004428129' }, - { file: 'packages/react/src/utilities/selection/index.ts', hash: '4368398702750911810' }, - { file: 'packages/react/src/utilities/selection/interfaces.ts', hash: '4575419091812881390' }, - { file: 'packages/react/src/utilities/useOverflow.ts', hash: '17763233002228636342' }, - { file: 'packages/react/src/version.ts', hash: '3619079259107913232' }, - { file: 'packages/react/tsconfig.json', hash: '5170099299450870280' }, - { file: 'packages/react/webpack.codepen.config.js', hash: '7053689822501882700' }, - { file: 'packages/react/webpack.config.js', hash: '7917211140041849215' }, - { file: 'packages/react/webpack.mf.config.js', hash: '14493054853418434433' }, - ], - '@fluentui/digest': [ - { file: 'packages/fluentui/digest/README.md', hash: '4858304439522311096' }, - { file: 'packages/fluentui/digest/assets/index.html', hash: '3216416950227096753' }, - { file: 'packages/fluentui/digest/just.config.ts', hash: '8979360801753407872' }, - { file: 'packages/fluentui/digest/package.json', hash: '8214724770717997582', deps: ['npm:querystring'] }, - { file: 'packages/fluentui/digest/project.json', hash: '3735961437424315139' }, - { file: 'packages/fluentui/digest/src/bundle/index.digest.tsx', hash: '6951110182645338430' }, - { file: 'packages/fluentui/digest/src/bundle/stories.tsx', hash: '2490260158626841599' }, - { file: 'packages/fluentui/digest/src/config.tsx', hash: '6214931607336280193' }, - { file: 'packages/fluentui/digest/src/digest.tsx', hash: '2244345445035896456' }, - { file: 'packages/fluentui/digest/src/webpack.config.ts', hash: '15142160838349309385' }, - { file: 'packages/fluentui/digest/tsconfig.json', hash: '16047973009729968895' }, - ], - '@fluentui/eslint-plugin': [ - { file: 'packages/eslint-plugin/.eslintrc.json', hash: '6702248602835585560' }, - { file: 'packages/eslint-plugin/CHANGELOG.json', hash: '13566414994364152721' }, - { file: 'packages/eslint-plugin/CHANGELOG.md', hash: '2382653209781718305' }, - { file: 'packages/eslint-plugin/README.md', hash: '6515429868455497447' }, - { - file: 'packages/eslint-plugin/package.json', - hash: '2069193219073938718', - deps: [ - 'npm:@griffel/eslint-plugin', - 'npm:@rnx-kit/eslint-plugin', - 'npm:@typescript-eslint/eslint-plugin', - 'npm:@typescript-eslint/experimental-utils', - 'npm:@typescript-eslint/parser', - 'npm:eslint-config-airbnb', - 'npm:eslint-config-prettier', - 'npm:eslint-import-resolver-typescript', - 'npm:eslint-plugin-deprecation', - 'npm:eslint-plugin-import', - 'npm:eslint-plugin-jest', - 'npm:eslint-plugin-jsdoc', - 'npm:eslint-plugin-jsx-a11y', - 'npm:eslint-plugin-react', - 'npm:eslint-plugin-react-hooks', - 'npm:fs-extra', - 'npm:minimatch', - 'npm:jju', - 'npm:eslint', - 'npm:typescript', - ], - }, - { file: 'packages/eslint-plugin/project.json', hash: '1301597791484806568' }, - { file: 'packages/eslint-plugin/src/configs/base-legacy.js', hash: '14665444077677365009' }, - { file: 'packages/eslint-plugin/src/configs/base.js', hash: '13118811890005841714' }, - { file: 'packages/eslint-plugin/src/configs/core.js', hash: '7987804994885855829' }, - { file: 'packages/eslint-plugin/src/configs/imports.js', hash: '11327634237007787886' }, - { file: 'packages/eslint-plugin/src/configs/node-legacy.js', hash: '10767308883214650760' }, - { file: 'packages/eslint-plugin/src/configs/node.js', hash: '1222248047971981401' }, - { file: 'packages/eslint-plugin/src/configs/react-config.js', hash: '9068321685220036799' }, - { file: 'packages/eslint-plugin/src/configs/react-legacy.js', hash: '9470003892035401491' }, - { file: 'packages/eslint-plugin/src/configs/react-northstar.js', hash: '9533814243477463140' }, - { file: 'packages/eslint-plugin/src/configs/react.js', hash: '8307907617103516118' }, - { file: 'packages/eslint-plugin/src/configs/restricted-globals.js', hash: '18376104961223750479' }, - { file: 'packages/eslint-plugin/src/index.js', hash: '17643391091811701371' }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/src/context.ts', - hash: '921614066716619819', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/src/index.ts', - hash: '12767886012319403268', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/context-selector/tsconfig.json', - hash: '8939312372276470872', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/exclude/special-path/src/index.ts', - hash: '12767886012319403268', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/exclude/tsconfig.json', - hash: '8939312372276470872', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/src/context.ts', - hash: '6433024526995447386', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/src/index.ts', - hash: '12767886012319403268', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/export-specifier/tsconfig.json', - hash: '8939312372276470872', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/src/internal/context.ts', - hash: '6433024526995447386', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/src/internal/index.ts', - hash: '12767886012319403268', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/internal-export/tsconfig.json', - hash: '8939312372276470872', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/named-export/src/index.ts', - hash: '12767886012319403268', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/named-export/tsconfig.json', - hash: '8939312372276470872', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/src/context.ts', - hash: '17105299796982801295', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/src/index.ts', - hash: '12767886012319403268', - }, - { - file: 'packages/eslint-plugin/src/rules/ban-context-export/fixtures/not-a-context/tsconfig.json', - hash: '8939312372276470872', - }, - { file: 'packages/eslint-plugin/src/rules/ban-context-export/index.js', hash: '12847161635521615310' }, - { file: 'packages/eslint-plugin/src/rules/ban-context-export/index.test.js', hash: '464311512855807170' }, - { file: 'packages/eslint-plugin/src/rules/ban-imports.js', hash: '14494031545397940759' }, - { file: 'packages/eslint-plugin/src/rules/ban-instanceof-html-element/index.js', hash: '17266374067885429294' }, - { - file: 'packages/eslint-plugin/src/rules/ban-instanceof-html-element/index.test.js', - hash: '6679306743942455995', - }, - { file: 'packages/eslint-plugin/src/rules/deprecated-keyboard-event-props.js', hash: '14382391648336116412' }, - { file: 'packages/eslint-plugin/src/rules/max-len.js', hash: '6542972604164962236' }, - { file: 'packages/eslint-plugin/src/rules/no-context-default-value/index.js', hash: '12837708352970806418' }, - { file: 'packages/eslint-plugin/src/rules/no-context-default-value/index.test.js', hash: '11131012401618805739' }, - { file: 'packages/eslint-plugin/src/rules/no-global-react.js', hash: '2921266244182474215' }, - { file: 'packages/eslint-plugin/src/rules/no-restricted-imports/index.js', hash: '13917956998549149408' }, - { file: 'packages/eslint-plugin/src/rules/no-restricted-imports/index.test.js', hash: '9202308256820145329' }, - { file: 'packages/eslint-plugin/src/rules/no-tslint-comments.js', hash: '12222375696974991780' }, - { file: 'packages/eslint-plugin/src/rules/no-visibility-modifiers.js', hash: '9342359926437404469' }, - { file: 'packages/eslint-plugin/src/utils/configHelpers.js', hash: '2104693757629241199' }, - { file: 'packages/eslint-plugin/src/utils/createRule.js', hash: '9300592942279712397' }, - { file: 'packages/eslint-plugin/src/utils/type-services.js', hash: '12027578898158183503' }, - { file: 'packages/eslint-plugin/tsconfig.json', hash: '17734194482250290088' }, - ], - '@fluentui/scripts-executors': [ - { file: 'scripts/executors/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/executors/README.md', hash: '3244421341483603138' }, - { file: 'scripts/executors/buildTo.js', hash: '3177712464592732161' }, - { file: 'scripts/executors/check-for-modified-files.ts', hash: '10763607801252226068' }, - { file: 'scripts/executors/checkIfPackagesAffected.js', hash: '9043336426953832291' }, - { file: 'scripts/executors/debug-test.js', hash: '8593654279449055223' }, - { file: 'scripts/executors/format.js', hash: '10819326993618316495' }, - { file: 'scripts/executors/invalidate-just-cache.js', hash: '7264489028234806785' }, - { file: 'scripts/executors/jest.config.js', hash: '13109292494898296739' }, - { file: 'scripts/executors/local-codepen.js', hash: '10392194689106589533' }, - { - file: 'scripts/executors/package.json', - hash: '2367017281587144268', - deps: ['@fluentui/scripts-utils', '@fluentui/scripts-monorepo', '@fluentui/scripts-prettier'], - }, - { file: 'scripts/executors/project.json', hash: '4424758346050050205' }, - { file: 'scripts/executors/runPublished.js', hash: '10512724592827008811' }, - { file: 'scripts/executors/runPublished.spec.ts', hash: '13578313146003609025' }, - { file: 'scripts/executors/runTo.js', hash: '16974010502221615189' }, - { file: 'scripts/executors/scrub.js', hash: '13651139657942254610' }, - { file: 'scripts/executors/start.js', hash: '4541487088238761962' }, - { file: 'scripts/executors/tag-react-components.ts', hash: '6138569374629742911' }, - { file: 'scripts/executors/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/executors/tsconfig.lib.json', hash: '3753806828268919288' }, - { file: 'scripts/executors/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/accessibility': [ - { file: 'packages/fluentui/accessibility/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/accessibility/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/accessibility/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/accessibility/gulpfile.ts', hash: '176942506073220361' }, - { file: 'packages/fluentui/accessibility/jest.config.js', hash: '17874205282351665656' }, - { - file: 'packages/fluentui/accessibility/package.json', - hash: '1428119293457422413', - deps: [ - 'npm:@babel/runtime', - 'npm:lodash', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:lerna-alias', - ], - }, - { file: 'packages/fluentui/accessibility/project.json', hash: '2397489462938001575' }, - { file: 'packages/fluentui/accessibility/src/attributes.ts', hash: '6126580553423144593' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Accordion/accordionBehavior.ts', - hash: '17324611406861834071', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Accordion/accordionContentBehavior.ts', - hash: '12181381870618121400', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Accordion/accordionTitleBehavior.ts', - hash: '17796073271152580', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Alert/alertBaseBehavior.ts', - hash: '15503638703161663370', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Alert/alertBehavior.ts', hash: '14876942720104755676' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Alert/alertWarningBehavior.ts', - hash: '16670372342351572102', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Attachment/attachmentBehavior.ts', - hash: '14711350566311191339', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Box/indicatorBehavior.ts', hash: '4710211886869035027' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbBehavior.ts', - hash: '6624882585753288771', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbDividerBehavior.ts', - hash: '15345187736983796585', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Breadcrumb/breadcrumbItemBehavior.ts', - hash: '2474998566450288440', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Button/buttonBehavior.ts', hash: '4436560634489457374' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Button/buttonGroupBehavior.ts', - hash: '15604332073167090358', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Button/toggleButtonBehavior.ts', - hash: '6341598390491948665', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Card/cardBehavior.ts', hash: '7147184136409471442' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Card/cardChildrenFocusableBehavior.ts', - hash: '1480635677105411390', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Card/cardFocusableBehavior.ts', - hash: '8581885383405449382', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Card/cardSelectableBehavior.ts', - hash: '9823225621542171085', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Card/cardsContainerBehavior.ts', - hash: '8399647585268892796', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Carousel/carouselBehavior.ts', - hash: '16735531794753117694', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Carousel/carouselItemBehavior.ts', - hash: '666533224599054599', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Chat/chatBehavior.ts', hash: '10307880287350282214' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Chat/chatMessageBehavior.ts', - hash: '14062608507289014893', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Checkbox/checkboxBehavior.ts', hash: '5573660540498990' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Common/hiddenComponentBehavior.ts', - hash: '8752565833665693320', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerBehavior.ts', - hash: '16681584818965517163', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarBehavior.ts', - hash: '6694622893463831583', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarCellBehavior.ts', - hash: '15743873885274486004', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarCellButtonBehavior.ts', - hash: '14811251142968646419', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarGridBehavior.ts', - hash: '436589778918574077', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarGridRowBehavior.ts', - hash: '11408415070483512748', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Datepicker/datepickerCalendarHeaderBehavior.ts', - hash: '11583385781059816627', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Dialog/dialogBehavior.ts', hash: '3238470165136100361' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Dropdown/dropdownSelectedItemBehavior.ts', - hash: '110616840354724677', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Embed/embedBehavior.ts', hash: '6943112027252523091' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Form/formFieldBehavior.tsx', hash: '8410832565631631431' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Grid/gridBehavior.ts', hash: '4359446512837990017' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Grid/gridHorizontalBehavior.ts', - hash: '15843361779325307873', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Icon/iconBehavior.ts', hash: '2207992782795803718' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Image/imageBehavior.ts', hash: '13577625865581953782' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Input/inputBehavior.ts', hash: '1320238384030157432' }, - { file: 'packages/fluentui/accessibility/src/behaviors/List/basicListBehavior.ts', hash: '12896324333351505002' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/List/basicListItemBehavior.ts', - hash: '5678163359671203676', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/List/listBehavior.ts', hash: '15868999383422317488' }, - { file: 'packages/fluentui/accessibility/src/behaviors/List/listItemBehavior.ts', hash: '17611607068265691873' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/List/navigableListBehavior.ts', - hash: '1138383627412710723', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/List/navigableListItemBehavior.ts', - hash: '8352293840311308214', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/List/selectableListBehavior.ts', - hash: '4590781714857354592', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/List/selectableListItemBehavior.ts', - hash: '3143195808065744213', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Loader/loaderBehavior.ts', hash: '13855327585064394709' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Menu/menuBehavior.ts', hash: '14678079248792887047' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Menu/menuDividerBehavior.ts', - hash: '16474793021650517124', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Menu/menuItemBehavior.ts', hash: '7179572448282857084' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Menu/submenuBehavior.ts', hash: '13096512577056529572' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/MenuButton/menuButtonBehavior.ts', - hash: '5038428572466939489', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillActionBehavior.ts', hash: '7155328372028007540' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillBehavior.ts', hash: '11077768158910457625' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillGroupBehavior.ts', hash: '15643334338602012397' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillIconBehavior.ts', hash: '1320149294645573451' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillImageBehavior.ts', hash: '17028543991514093621' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Pill/pillOptionBehavior.ts', hash: '9922794901762647086' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Popup/popupBehavior.ts', hash: '14955898547553867919' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Radio/radioGroupBehavior.ts', - hash: '13697404999060333401', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Radio/radioGroupItemBehavior.ts', - hash: '10842489646198712586', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Slider/sliderBehavior.ts', hash: '16619822794642755440' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/SplitButton/splitButtonBehavior.ts', - hash: '10498336736474909429', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Status/statusBehavior.ts', hash: '15095623654951310160' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Tab/tabBehavior.ts', hash: '13343668174251408028' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Tab/tabListBehavior.ts', hash: '3649750043955821807' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Table/gridCellBehavior.ts', hash: '16115154876003545072' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Table/gridCellMultipleFocusableBehavior.ts', - hash: '8205386212064830567', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Table/gridCellWithFocusableElementBehavior.ts', - hash: '11169401865825718455', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Table/gridHeaderCellBehavior.ts', - hash: '10316613685585593548', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Table/gridHeaderRowBehavior.ts', - hash: '14353233905207834678', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Table/gridNestedBehavior.ts', - hash: '5223927548405850610', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Table/gridRowBehavior.ts', hash: '11534643350766657695' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Table/gridRowNestedBehavior.ts', - hash: '6036028543837403233', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Table/tableBehavior.ts', hash: '15734694712075449666' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Table/tableCellBehavior.ts', hash: '247888810071717795' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Table/tableHeaderCellBehavior.ts', - hash: '8543257944544197065', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Table/tableRowBehavior.ts', hash: '13529178146159239947' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/TextArea/textAreaBehavior.ts', - hash: '6844501444659162474', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/menuAsToolbarBehavior.ts', - hash: '1168779870270907687', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/menuItemAsToolbarButtonBehavior.ts', - hash: '13604841550587544122', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarBehavior.ts', - hash: '10375286365453415016', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarItemBehavior.ts', - hash: '3223369498067500941', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuBehavior.ts', - hash: '14285729647871437262', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuDividerBehavior.ts', - hash: '15861708930917223847', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemBehavior.ts', - hash: '10779092372332843312', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemCheckboxBehavior.ts', - hash: '12585360257044015499', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuItemRadioBehavior.ts', - hash: '14398017813178023378', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuRadioGroupBehavior.ts', - hash: '13209139658156443905', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarMenuRadioGroupWrapperBehavior.ts', - hash: '10315186287981664781', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarRadioGroupBehavior.ts', - hash: '14423838109163982625', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Toolbar/toolbarRadioGroupItemBehavior.ts', - hash: '4945835072624273403', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Tooltip/tooltipAsDescriptionBehavior.ts', - hash: '6750563588637322290', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Tooltip/tooltipAsLabelBehavior.ts', - hash: '1463731405657391158', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeAsListBehavior.ts', hash: '6548396450394702602' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeAsListboxBehavior.ts', - hash: '15994951088316249662', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeBehavior.ts', hash: '16075950710176999397' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeItemAsListItemBehavior.ts', - hash: '2754809114498177875', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeItemAsOptionBehavior.ts', - hash: '2738733369485414781', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeItemBehavior.ts', hash: '853033884357985145' }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeTitleAsListItemTitleBehavior.ts', - hash: '8550309938789182057', - }, - { - file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeTitleAsOptionBehavior.ts', - hash: '4750004437661185204', - }, - { file: 'packages/fluentui/accessibility/src/behaviors/Tree/treeTitleBehavior.ts', hash: '1279045353923030959' }, - { file: 'packages/fluentui/accessibility/src/behaviors/Video/videoBehavior.ts', hash: '17435873847915410399' }, - { file: 'packages/fluentui/accessibility/src/behaviors/index.ts', hash: '10592048789013221274' }, - { file: 'packages/fluentui/accessibility/src/focusZone/types.ts', hash: '8290525201717420413' }, - { file: 'packages/fluentui/accessibility/src/index.ts', hash: '17846023419384888294' }, - { file: 'packages/fluentui/accessibility/src/keyboard-key/codes.ts', hash: '8066867947356659420' }, - { file: 'packages/fluentui/accessibility/src/keyboard-key/index.test.ts', hash: '11586213541177350052' }, - { file: 'packages/fluentui/accessibility/src/keyboard-key/index.ts', hash: '15545154138089162926' }, - { file: 'packages/fluentui/accessibility/src/types.ts', hash: '943053640310977860' }, - { - file: 'packages/fluentui/accessibility/test/behaviors/accordionTitleBehavior-test.tsx', - hash: '8591737914797308393', - }, - { file: 'packages/fluentui/accessibility/test/behaviors/alertBehavior-test.tsx', hash: '3800300251770286795' }, - { file: 'packages/fluentui/accessibility/test/behaviors/behavior-test.tsx', hash: '16838078441122709130' }, - { file: 'packages/fluentui/accessibility/test/behaviors/caroselBehavior-test.tsx', hash: '2681040911353087361' }, - { - file: 'packages/fluentui/accessibility/test/behaviors/caroseltemBehavior-test.tsx', - hash: '12757169696399672513', - }, - { file: 'packages/fluentui/accessibility/test/behaviors/dialogBehavior-test.tsx', hash: '7702041866389015810' }, - { file: 'packages/fluentui/accessibility/test/behaviors/gridRowBehavior-test.tsx', hash: '12429407748112289925' }, - { file: 'packages/fluentui/accessibility/test/behaviors/listBehavior-test.tsx', hash: '15933862797684258290' }, - { file: 'packages/fluentui/accessibility/test/behaviors/listItemBehavior-test.tsx', hash: '6331805374367020114' }, - { file: 'packages/fluentui/accessibility/test/behaviors/loaderBehavior-test.tsx', hash: '9965769228119512081' }, - { - file: 'packages/fluentui/accessibility/test/behaviors/menuButtonBehavior-test.tsx', - hash: '3474631202858190529', - }, - { file: 'packages/fluentui/accessibility/test/behaviors/popupBehavior-test.tsx', hash: '4455620227373588680' }, - { file: 'packages/fluentui/accessibility/test/behaviors/sliderBehavior-test.ts', hash: '1496488828314145704' }, - { - file: 'packages/fluentui/accessibility/test/behaviors/splitButtonBehavior-test.tsx', - hash: '5237191764740671671', - }, - { - file: 'packages/fluentui/accessibility/test/behaviors/tableRowBehavior-test.tsx', - hash: '13911979183562314470', - }, - { file: 'packages/fluentui/accessibility/test/behaviors/testDefinitions.ts', hash: '18350988259364493242' }, - { file: 'packages/fluentui/accessibility/test/behaviors/testHelper.tsx', hash: '13187273701176546577' }, - { - file: 'packages/fluentui/accessibility/test/behaviors/treeItemAsListItemBehavior-test.tsx', - hash: '3914609384428714413', - }, - { - file: 'packages/fluentui/accessibility/test/behaviors/treeItemAsOptionBehavior-test.tsx', - hash: '9405458900547864979', - }, - { - file: 'packages/fluentui/accessibility/test/behaviors/treeItemBehavior-test.tsx', - hash: '16616006821624562727', - }, - { - file: 'packages/fluentui/accessibility/test/behaviors/treeTitleAsListItemTitleBehavior-test.tsx', - hash: '10422237936892479508', - }, - { - file: 'packages/fluentui/accessibility/test/behaviors/treeTitleAsOptionBehavior-test.tsx', - hash: '14002345569026863398', - }, - { - file: 'packages/fluentui/accessibility/test/behaviors/treeTitleBehavior-test.tsx', - hash: '17773411748774405789', - }, - { file: 'packages/fluentui/accessibility/tsconfig.json', hash: '5873357200515143860' }, - ], - '@fluentui/react-component-event-listener': [ - { file: 'packages/fluentui/react-component-event-listener/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-component-event-listener/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-component-event-listener/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-component-event-listener/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-component-event-listener/jest.config.js', hash: '17864063104223117741' }, - { - file: 'packages/fluentui/react-component-event-listener/package.json', - hash: '982990065091895253', - deps: [ - 'npm:@babel/runtime', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:@types/simulant', - 'npm:lerna-alias', - 'npm:simulant', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-component-event-listener/project.json', hash: '7603987250497277862' }, - { file: 'packages/fluentui/react-component-event-listener/src/EventListener.ts', hash: '6339105570437663348' }, - { file: 'packages/fluentui/react-component-event-listener/src/index.ts', hash: '16230065282180187300' }, - { file: 'packages/fluentui/react-component-event-listener/src/types.ts', hash: '2021465131345141924' }, - { file: 'packages/fluentui/react-component-event-listener/src/useEventListener.ts', hash: '2879126978776296235' }, - { - file: 'packages/fluentui/react-component-event-listener/test/EventListener-test.tsx', - hash: '14784711746104707618', - }, - { file: 'packages/fluentui/react-component-event-listener/tsconfig.json', hash: '12214264623402812273' }, - ], - '@fluentui/scripts-dangerjs': [ - { file: 'scripts/dangerjs/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/dangerjs/jest.config.js', hash: '15039385487328949367' }, - { - file: 'scripts/dangerjs/package.json', - hash: '14603021980298066337', - deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-utils'], - }, - { file: 'scripts/dangerjs/project.json', hash: '13321965326957637416' }, - { file: 'scripts/dangerjs/src/api.ts', hash: '12918818137725486638' }, - { file: 'scripts/dangerjs/src/checkChangelog.ts', hash: '15268879974615931016' }, - { file: 'scripts/dangerjs/src/checkStorybookVersions.ts', hash: '3640144866496664527' }, - { file: 'scripts/dangerjs/src/detectNonApprovedDependencies/approvedPackages.ts', hash: '2479532893562050074' }, - { file: 'scripts/dangerjs/src/detectNonApprovedDependencies/index.ts', hash: '1357749020419503428' }, - { - file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/getFailedPackageVersionConstraints.ts', - hash: '1282063424853297229', - }, - { - file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/getRuntimeDependencies.ts', - hash: '14851787653196049793', - }, - { - file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/getVersionConstraints.ts', - hash: '11852620236094004296', - }, - { file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/index.ts', hash: '2091566142952858380' }, - { - file: 'scripts/dangerjs/src/detectNonApprovedDependencies/utils/packageNameUtils.ts', - hash: '17117849726828671038', - }, - { file: 'scripts/dangerjs/src/index.js', hash: '8330967872875689137' }, - { file: 'scripts/dangerjs/src/types.ts', hash: '7630856845524243144' }, - { file: 'scripts/dangerjs/src/utils.ts', hash: '17556742610557548328' }, - { file: 'scripts/dangerjs/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/dangerjs/tsconfig.lib.json', hash: '15222053984038389170' }, - { file: 'scripts/dangerjs/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/priority-overflow': [ - { file: 'packages/react-components/priority-overflow/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/priority-overflow/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/priority-overflow/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/priority-overflow/CHANGELOG.json', hash: '4333659162810779590' }, - { file: 'packages/react-components/priority-overflow/CHANGELOG.md', hash: '4398841463571116898' }, - { file: 'packages/react-components/priority-overflow/LICENSE', hash: '11030407222875521344' }, - { file: 'packages/react-components/priority-overflow/README.md', hash: '10857736672267528914' }, - { - file: 'packages/react-components/priority-overflow/bundle-size/overflow-manager.fixture.js', - hash: '8551267840124202928', - }, - { file: 'packages/react-components/priority-overflow/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/priority-overflow/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/priority-overflow/etc/priority-overflow.api.md', hash: '7306121779845882287' }, - { file: 'packages/react-components/priority-overflow/jest.config.js', hash: '2868823370633145472' }, - { file: 'packages/react-components/priority-overflow/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/priority-overflow/package.json', - hash: '15007389892501600147', - deps: [ - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/react-components/priority-overflow/project.json', hash: '14779383503117085597' }, - { file: 'packages/react-components/priority-overflow/src/consts.ts', hash: '6620526346221759496' }, - { file: 'packages/react-components/priority-overflow/src/createResizeObserver.ts', hash: '4909053736922267358' }, - { file: 'packages/react-components/priority-overflow/src/debounce.test.ts', hash: '5063760544945907806' }, - { file: 'packages/react-components/priority-overflow/src/debounce.ts', hash: '17670239388147233622' }, - { file: 'packages/react-components/priority-overflow/src/index.ts', hash: '3206036393944881754' }, - { file: 'packages/react-components/priority-overflow/src/overflowManager.ts', hash: '9555740708619762309' }, - { file: 'packages/react-components/priority-overflow/src/priorityQueue.test.ts', hash: '16760683918500211316' }, - { file: 'packages/react-components/priority-overflow/src/priorityQueue.ts', hash: '12058761107106633401' }, - { file: 'packages/react-components/priority-overflow/src/types.ts', hash: '3269039576612425811' }, - { file: 'packages/react-components/priority-overflow/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/priority-overflow/tsconfig.lib.json', hash: '14975475306433073951' }, - { file: 'packages/react-components/priority-overflow/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-migration-v0-v9': [ - { file: 'packages/react-components/react-migration-v0-v9/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-migration-v0-v9/.eslintrc.json', hash: '12940771472901318782' }, - { file: 'packages/react-components/react-migration-v0-v9/.storybook/main.js', hash: '4776051661051838074' }, - { file: 'packages/react-components/react-migration-v0-v9/.storybook/preview.js', hash: '1791378012295456991' }, - { - file: 'packages/react-components/react-migration-v0-v9/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-migration-v0-v9/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-migration-v0-v9/CHANGELOG.json', hash: '10897993854186447786' }, - { file: 'packages/react-components/react-migration-v0-v9/CHANGELOG.md', hash: '13587647231916958745' }, - { file: 'packages/react-components/react-migration-v0-v9/LICENSE', hash: '11594246018623427034' }, - { file: 'packages/react-components/react-migration-v0-v9/README.md', hash: '9978296153426966189' }, - { file: 'packages/react-components/react-migration-v0-v9/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-migration-v0-v9/config/tests.js', hash: '16913843724990866890' }, - { - file: 'packages/react-components/react-migration-v0-v9/etc/react-migration-v0-v9.api.md', - hash: '7256229108422340938', - }, - { file: 'packages/react-components/react-migration-v0-v9/jest.config.js', hash: '12315810592738285777' }, - { file: 'packages/react-components/react-migration-v0-v9/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-migration-v0-v9/package.json', - hash: '4946657624895448195', - deps: [ - '@fluentui/react-aria', - '@fluentui/react-components', - '@fluentui/react-context-selector', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-northstar', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - '@fluentui/scripts-storybook', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-migration-v0-v9/project.json', hash: '8381556923960860136' }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Button/ButtonMigration.mixins.test.ts', - hash: '13688439579328644579', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Button/ButtonMigration.mixins.ts', - hash: '1521380022745067625', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Button/__snapshots__/ButtonMigration.mixins.test.ts.snap', - hash: '15238523249422194295', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Button/index.tsx', - hash: '15015419502366000969', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.styles.ts', - hash: '9815013043102458902', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.test.tsx', - hash: '10901172007854977441', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/Flex.tsx', - hash: '17887385485034197387', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/FlexItem.mixins.test.ts', - hash: '11976568329525176935', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/FlexItem.mixins.ts', - hash: '387312665307964792', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Flex/index.ts', - hash: '3930111333542680336', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/FormField/FormFieldShim.tsx', - hash: '8378950965437301147', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/FormField/index.ts', - hash: '14212427842038029290', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.mixins.test.ts', - hash: '5330293473945457870', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.mixins.ts', - hash: '9668215664283966023', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/Grid.styles.ts', - hash: '10034584101967878894', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/GridShim.test.tsx', - hash: '755034056319894577', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/GridShim.tsx', - hash: '626707608599544926', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Grid/index.ts', - hash: '15523671876724164145', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Input/Input.mixins.test.ts', - hash: '15443926802107261170', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Input/Input.mixins.ts', - hash: '1228629484584016948', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Input/index.ts', - hash: '406734113437868625', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.styles.ts', - hash: '9958570926942258881', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.test.tsx', - hash: '16916108475755138538', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/ItemLayout/ItemLayout.tsx', - hash: '475159289973551721', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/ItemLayout/index.tsx', - hash: '3113838002366069990', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/List.test.tsx', - hash: '12805398032478901779', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/List.tsx', - hash: '4068680904225237891', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/List.types.ts', - hash: '11908378584937348503', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/__snapshots__/List.test.tsx.snap', - hash: '12189414601608078303', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/index.ts', - hash: '17107546934093025866', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/listContext.ts', - hash: '9337597684660879030', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/renderList.tsx', - hash: '2186521174788678765', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/useList.ts', - hash: '11318024193224137697', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/useListContextValues.ts', - hash: '11563979621193940730', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/List/useListStyles.styles.ts', - hash: '10381177976274865563', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.test.tsx', - hash: '8056764134477992026', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.tsx', - hash: '12481687515454290723', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/ListItem.types.ts', - hash: '13437384804128457294', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/__snapshots__/ListItem.test.tsx.snap', - hash: '9019909192155778823', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/index.ts', - hash: '13458219659794583076', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/renderListItem.tsx', - hash: '14567909198214388091', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/useListItem.tsx', - hash: '8349808383490405801', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/ListItem/useListItemStyles.styles.ts', - hash: '10549323801670309271', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/hooks/index.ts', - hash: '14536450081702718010', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/hooks/types.ts', - hash: '11011618432504847952', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/hooks/useListSelection.tsx', - hash: '18367481209994946833', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/List/index.ts', - hash: '6837911686204013385', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Primitive/Primitive.test.tsx', - hash: '10954895803829758288', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Primitive/Primitive.tsx', - hash: '8102630166808687777', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Primitive/index.tsx', - hash: '8320853195778671583', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.styles.ts', - hash: '163465406698795241', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.test.tsx', - hash: '2074843457095701442', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Segment/Segment.tsx', - hash: '9318348374337572435', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Segment/index.ts', - hash: '6478703878423887942', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Slider/Slider.mixins.test.ts', - hash: '14618851225306044609', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Slider/Slider.mixins.ts', - hash: '1724504369532945724', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Slider/index.ts', - hash: '4185767866868550439', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Spinner/SpinnerMigration.mixins.test.ts', - hash: '2617086967168608302', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Spinner/SpinnerMigration.mixins.ts', - hash: '1036577262271937885', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/Spinner/index.tsx', - hash: '1625672833113366276', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.styles.ts', - hash: '9672829306212420518', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.test.tsx', - hash: '11969189071958437142', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/StyledText/StyledText.tsx', - hash: '11324608273378346647', - }, - { - file: 'packages/react-components/react-migration-v0-v9/src/components/StyledText/index.tsx', - hash: '9128570621886886223', - }, - { file: 'packages/react-components/react-migration-v0-v9/src/index.ts', hash: '1478560306537712184' }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/Button/Description.md', - hash: '17654230325647330180', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/Button/index.stories.tsx', - hash: '2357883713191857365', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/Flex/Description.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/Flex/index.stories.tsx', - hash: '11624234279834608424', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/FormFieldShim/Description.md', - hash: '17245299467260723598', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/FormFieldShim/index.stories.tsx', - hash: '5822881442487782254', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/GridShim/Description.md', - hash: '11904517854334539499', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/GridShim/index.stories.tsx', - hash: '6258327294094268259', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/Input/Description.md', - hash: '13460661974646312287', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/Input/index.stories.tsx', - hash: '4344639936932010242', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/List/Default.stories.tsx', - hash: '7596825406422268438', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/List/ListDescription.md', - hash: '17355733937330781996', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/List/Navigable.stories.tsx', - hash: '15380368917294536797', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/List/Selectable.stories.tsx', - hash: '12620296337149399839', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/List/index.stories.tsx', - hash: '6157921948866129838', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/SegmentShim/Description.md', - hash: '15545594269846251957', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/SegmentShim/index.stories.tsx', - hash: '12880934640704780643', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/SliderMixin/Description.md', - hash: '8272780712725776392', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/SliderMixin/index.stories.tsx', - hash: '6363553375590128729', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/Spinner/Description.md', - hash: '10637276773146727799', - }, - { - file: 'packages/react-components/react-migration-v0-v9/stories/Spinner/index.stories.tsx', - hash: '10694249060338362664', - }, - { file: 'packages/react-components/react-migration-v0-v9/tsconfig.json', hash: '13343058975825373724' }, - { file: 'packages/react-components/react-migration-v0-v9/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-migration-v0-v9/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/keyboard-key': [ - { file: 'packages/keyboard-key/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/keyboard-key/.npmignore', hash: '7699079327417375383' }, - { file: 'packages/keyboard-key/CHANGELOG.json', hash: '10179365370606137091' }, - { file: 'packages/keyboard-key/CHANGELOG.md', hash: '147863297539555338' }, - { file: 'packages/keyboard-key/LICENSE', hash: '8930695425710127949' }, - { file: 'packages/keyboard-key/README.md', hash: '17220773256264690709' }, - { file: 'packages/keyboard-key/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/keyboard-key/etc/keyboard-key.api.md', hash: '10686124383883084997' }, - { file: 'packages/keyboard-key/jest.config.js', hash: '9635769799634201842' }, - { file: 'packages/keyboard-key/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/keyboard-key/package.json', - hash: '1170975034285432666', - deps: [ - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/keyboard-key/project.json', hash: '15756375364528527746' }, - { file: 'packages/keyboard-key/src/codes.ts', hash: '8066867947356659420' }, - { file: 'packages/keyboard-key/src/index.test.ts', hash: '11586213541177350052' }, - { file: 'packages/keyboard-key/src/index.ts', hash: '11633495272869031359' }, - { file: 'packages/keyboard-key/tsconfig.json', hash: '17161308168961447910' }, - ], - '@fluentui/scripts-monorepo': [ - { file: 'scripts/monorepo/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/monorepo/jest.config.js', hash: '1384953526716204487' }, - { file: 'scripts/monorepo/package.json', hash: '3151914312966891220', deps: ['@fluentui/scripts-utils'] }, - { file: 'scripts/monorepo/project.json', hash: '17093955917889568889' }, - { file: 'scripts/monorepo/src/eslint-constants.js', hash: '7443856441866657412' }, - { file: 'scripts/monorepo/src/findGitRoot.js', hash: '4363463957869502799' }, - { file: 'scripts/monorepo/src/findRepoDeps.js', hash: '7553372038547408261' }, - { file: 'scripts/monorepo/src/get-lerna-aliases.js', hash: '11009367209609457683' }, - { file: 'scripts/monorepo/src/getAffectedPackages.js', hash: '17525808605986894312' }, - { file: 'scripts/monorepo/src/getAllPackageInfo.js', hash: '2379402033617125376' }, - { file: 'scripts/monorepo/src/getAllPackageInfo.spec.ts', hash: '1140840808034567865' }, - { file: 'scripts/monorepo/src/getDefaultEnvironmentVars.js', hash: '5734650452138389015' }, - { file: 'scripts/monorepo/src/getDependencies.d.ts', hash: '11422852845790360359' }, - { file: 'scripts/monorepo/src/getDependencies.js', hash: '7623291918152264365' }, - { file: 'scripts/monorepo/src/getDependencies.spec.js', hash: '18441659048142407685' }, - { file: 'scripts/monorepo/src/getNthCommit.js', hash: '508999649282071492' }, - { file: 'scripts/monorepo/src/index.d.ts', hash: '633307509083187231' }, - { file: 'scripts/monorepo/src/index.js', hash: '3480277268839262091' }, - { file: 'scripts/monorepo/src/isConvergedPackage.js', hash: '5285532099277225326' }, - { file: 'scripts/monorepo/src/tree.js', hash: '3417107466093454766' }, - { file: 'scripts/monorepo/src/types.ts', hash: '12073047551950673729' }, - { file: 'scripts/monorepo/src/utils.js', hash: '13391023183473540106' }, - { file: 'scripts/monorepo/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/monorepo/tsconfig.lib.json', hash: '3593133700658772030' }, - { file: 'scripts/monorepo/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/ssr-tests-v9': [ - { file: 'apps/ssr-tests-v9/.eslintrc.json', hash: '17415001537957764759' }, - { file: 'apps/ssr-tests-v9/.npmignore', hash: '6985117138208138805' }, - { file: 'apps/ssr-tests-v9/.storybook/main.js', hash: '1212305810175821020' }, - { file: 'apps/ssr-tests-v9/.storybook/preview.js', hash: '3771044947140527406' }, - { file: 'apps/ssr-tests-v9/.storybook/tsconfig.json', hash: '14109446059604296292' }, - { file: 'apps/ssr-tests-v9/CHANGELOG.json', hash: '10565813083365182125' }, - { file: 'apps/ssr-tests-v9/CHANGELOG.md', hash: '7027171009374181352' }, - { file: 'apps/ssr-tests-v9/README.md', hash: '14065455051967402252' }, - { file: 'apps/ssr-tests-v9/config/tests.js', hash: '11168571691074990614' }, - { file: 'apps/ssr-tests-v9/jest.config.js', hash: '9458445199894798693' }, - { file: 'apps/ssr-tests-v9/just.config.ts', hash: '10393370776333958822' }, - { - file: 'apps/ssr-tests-v9/package.json', - hash: '8923427910776151549', - deps: [ - '@fluentui/react-components', - '@fluentui/react-utilities', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-storybook', - ], - }, - { file: 'apps/ssr-tests-v9/project.json', hash: '15064735109472825928' }, - { file: 'apps/ssr-tests-v9/src/stories/Menu/DefaultOpen.stories.tsx', hash: '9756001618427095260' }, - { file: 'apps/ssr-tests-v9/src/stories/Menu/index.stories.tsx', hash: '9459470396080333721' }, - { file: 'apps/ssr-tests-v9/src/stories/Tooltip/DefaultOpen.stories.tsx', hash: '14503999588850100551' }, - { file: 'apps/ssr-tests-v9/src/stories/Tooltip/index.stories.tsx', hash: '2359036706156696468' }, - { file: 'apps/ssr-tests-v9/src/stories/Utilitites/index.stories.tsx', hash: '11459814591521163889' }, - { file: 'apps/ssr-tests-v9/src/stories/Utilitites/useAnimationFrame.stories.tsx', hash: '4136409707688092330' }, - { file: 'apps/ssr-tests-v9/tsconfig.json', hash: '4637104942856286995' }, - { file: 'apps/ssr-tests-v9/tsconfig.lib.json', hash: '9469665441243672593' }, - { file: 'apps/ssr-tests-v9/tsconfig.spec.json', hash: '13287603543641469083' }, - { file: 'apps/ssr-tests-v9/tsconfig.stories.json', hash: '3244421341483603138' }, - ], - '@fluentui/react-badge': [ - { file: 'packages/react-components/react-badge/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-badge/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-badge/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-badge/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-badge/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-badge/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-badge/CHANGELOG.json', hash: '3838142065842905213' }, - { file: 'packages/react-components/react-badge/CHANGELOG.md', hash: '8328083364379344161' }, - { file: 'packages/react-components/react-badge/LICENSE', hash: '5659285969361613184' }, - { file: 'packages/react-components/react-badge/README.md', hash: '741049524515709119' }, - { file: 'packages/react-components/react-badge/bundle-size/Badge.fixture.js', hash: '18016310058213888091' }, - { - file: 'packages/react-components/react-badge/bundle-size/CounterBadge.fixture.js', - hash: '11116175457104908609', - }, - { - file: 'packages/react-components/react-badge/bundle-size/PresenseBadge.fixture.js', - hash: '14243990803293442333', - }, - { file: 'packages/react-components/react-badge/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-badge/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-badge/docs/MIGRATION.md', hash: '12718996084650884249' }, - { file: 'packages/react-components/react-badge/docs/Spec.md', hash: '4981436966355345762' }, - { file: 'packages/react-components/react-badge/etc/react-badge.api.md', hash: '17669930272481993235' }, - { file: 'packages/react-components/react-badge/jest.config.js', hash: '5702010820628736971' }, - { file: 'packages/react-components/react-badge/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-badge/package.json', - hash: '13596268650071717014', - deps: [ - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-badge/project.json', hash: '1247452013363452004' }, - { file: 'packages/react-components/react-badge/src/Badge.ts', hash: '2510791038021244676' }, - { file: 'packages/react-components/react-badge/src/CounterBadge.ts', hash: '6039544832911443106' }, - { file: 'packages/react-components/react-badge/src/PresenceBadge.ts', hash: '966139791510714730' }, - { - file: 'packages/react-components/react-badge/src/components/Badge/Badge.test.tsx', - hash: '2291120686699126936', - }, - { file: 'packages/react-components/react-badge/src/components/Badge/Badge.tsx', hash: '5730875022532459229' }, - { - file: 'packages/react-components/react-badge/src/components/Badge/Badge.types.ts', - hash: '4284246403350811291', - }, - { - file: 'packages/react-components/react-badge/src/components/Badge/__snapshots__/Badge.test.tsx.snap', - hash: '6711022694333634888', - }, - { file: 'packages/react-components/react-badge/src/components/Badge/index.ts', hash: '1476629210370430931' }, - { - file: 'packages/react-components/react-badge/src/components/Badge/renderBadge.tsx', - hash: '9996716902381900230', - }, - { file: 'packages/react-components/react-badge/src/components/Badge/useBadge.ts', hash: '6249942987623297178' }, - { - file: 'packages/react-components/react-badge/src/components/Badge/useBadgeStyles.styles.ts', - hash: '2198511761615120709', - }, - { - file: 'packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.test.tsx', - hash: '16785701196245371781', - }, - { - file: 'packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.tsx', - hash: '1852761979729563729', - }, - { - file: 'packages/react-components/react-badge/src/components/CounterBadge/CounterBadge.types.ts', - hash: '13654828388063681108', - }, - { - file: 'packages/react-components/react-badge/src/components/CounterBadge/__snapshots__/CounterBadge.test.tsx.snap', - hash: '8082377041564993844', - }, - { - file: 'packages/react-components/react-badge/src/components/CounterBadge/index.ts', - hash: '6547105508262150940', - }, - { - file: 'packages/react-components/react-badge/src/components/CounterBadge/useCounterBadge.ts', - hash: '14338285655892039809', - }, - { - file: 'packages/react-components/react-badge/src/components/CounterBadge/useCounterBadgeStyles.styles.ts', - hash: '10120133273911278700', - }, - { - file: 'packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.test.tsx', - hash: '5815693297904013980', - }, - { - file: 'packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.tsx', - hash: '9644698475507516468', - }, - { - file: 'packages/react-components/react-badge/src/components/PresenceBadge/PresenceBadge.types.ts', - hash: '16229658686092641977', - }, - { - file: 'packages/react-components/react-badge/src/components/PresenceBadge/__snapshots__/PresenceBadge.test.tsx.snap', - hash: '15228924334910826003', - }, - { - file: 'packages/react-components/react-badge/src/components/PresenceBadge/index.ts', - hash: '11517521578520876854', - }, - { - file: 'packages/react-components/react-badge/src/components/PresenceBadge/presenceIcons.ts', - hash: '14406401175654278430', - }, - { - file: 'packages/react-components/react-badge/src/components/PresenceBadge/usePresenceBadge.tsx', - hash: '7288458005042661885', - }, - { - file: 'packages/react-components/react-badge/src/components/PresenceBadge/usePresenceBadgeStyles.styles.ts', - hash: '15934854199050763595', - }, - { file: 'packages/react-components/react-badge/src/index.ts', hash: '16013987246277682438' }, - { file: 'packages/react-components/react-badge/src/testing/isConformant.ts', hash: '14447437808059758114' }, - { - file: 'packages/react-components/react-badge/stories/Badge/BadgeAppearance.stories.tsx', - hash: '9157737770137255570', - }, - { - file: 'packages/react-components/react-badge/stories/Badge/BadgeBestPractices.md', - hash: '7394302782434059313', - }, - { - file: 'packages/react-components/react-badge/stories/Badge/BadgeColor.stories.tsx', - hash: '8736371573721917301', - }, - { - file: 'packages/react-components/react-badge/stories/Badge/BadgeDefault.stories.tsx', - hash: '16490059828019383252', - }, - { file: 'packages/react-components/react-badge/stories/Badge/BadgeDescription.md', hash: '10544040785170591815' }, - { - file: 'packages/react-components/react-badge/stories/Badge/BadgeIcon.stories.tsx', - hash: '3092952115653825428', - }, - { - file: 'packages/react-components/react-badge/stories/Badge/BadgeShapes.stories.tsx', - hash: '3012525196355438962', - }, - { - file: 'packages/react-components/react-badge/stories/Badge/BadgeSizes.stories.tsx', - hash: '8996124492394830949', - }, - { file: 'packages/react-components/react-badge/stories/Badge/index.stories.tsx', hash: '9336081823336802656' }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeAppearance.stories.tsx', - hash: '1132782369760502827', - }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeBestPractices.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeColor.stories.tsx', - hash: '3726008495638286061', - }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDefault.stories.tsx', - hash: '12495911009820026675', - }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDescription.md', - hash: '17199299847592287892', - }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeDot.stories.tsx', - hash: '11304165446131649687', - }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeShapes.stories.tsx', - hash: '2293809520768402959', - }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/CounterBadgeSizes.stories.tsx', - hash: '16654987495768560853', - }, - { - file: 'packages/react-components/react-badge/stories/CounterBadge/index.stories.tsx', - hash: '8535943447027099881', - }, - { - file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeBestPractices.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeDefault.stories.tsx', - hash: '15264240781375830137', - }, - { - file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeDescription.md', - hash: '2055988351009907164', - }, - { - file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeOutOfOffice.stories.tsx', - hash: '14955421743325613433', - }, - { - file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeSizes.stories.tsx', - hash: '12704301323912754084', - }, - { - file: 'packages/react-components/react-badge/stories/PresenceBadge/PresenceBadgeStatus.stories.tsx', - hash: '13799869294717671623', - }, - { - file: 'packages/react-components/react-badge/stories/PresenceBadge/index.stories.tsx', - hash: '2602818216760981976', - }, - { file: 'packages/react-components/react-badge/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-badge/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-badge/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/example-data': [ - { file: 'packages/example-data/.eslintrc.json', hash: '3229880202825641002' }, - { file: 'packages/example-data/.npmignore', hash: '47056201363133096' }, - { file: 'packages/example-data/CHANGELOG.json', hash: '9048642913278741833' }, - { file: 'packages/example-data/CHANGELOG.md', hash: '12235872426400347757' }, - { file: 'packages/example-data/LICENSE', hash: '12367838612108125011' }, - { file: 'packages/example-data/README.md', hash: '7119854316177950935' }, - { file: 'packages/example-data/config/api-extractor.json', hash: '10981721980506993079' }, - { file: 'packages/example-data/etc/example-data.api.md', hash: '4672979637124934763' }, - { file: 'packages/example-data/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/example-data/package.json', - hash: '17742021473028152345', - deps: [ - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'packages/example-data/project.json', hash: '17680685214412804652' }, - { file: 'packages/example-data/src/facepile.ts', hash: '2655635451145751592' }, - { file: 'packages/example-data/src/index.ts', hash: '476073902722847914' }, - { file: 'packages/example-data/src/listItems.ts', hash: '4874104725793960628' }, - { file: 'packages/example-data/src/lorem.ts', hash: '8053126041927246028' }, - { file: 'packages/example-data/src/people.ts', hash: '6416917373887433733' }, - { file: 'packages/example-data/src/range.ts', hash: '3302006145478468298' }, - { file: 'packages/example-data/src/testImages.ts', hash: '4417580955949983984' }, - { file: 'packages/example-data/tsconfig.json', hash: '10705276064557648381' }, - { file: 'packages/example-data/webpack.config.js', hash: '1655035376737530180' }, - ], - '@fluentui/react-persona': [ - { file: 'packages/react-components/react-persona/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-persona/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-persona/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-persona/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-persona/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-persona/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-persona/CHANGELOG.json', hash: '5916678123087417001' }, - { file: 'packages/react-components/react-persona/CHANGELOG.md', hash: '3363492742739613050' }, - { file: 'packages/react-components/react-persona/LICENSE', hash: '6137498738426131383' }, - { file: 'packages/react-components/react-persona/README.md', hash: '12675629857136863246' }, - { file: 'packages/react-components/react-persona/bundle-size/Persona.fixture.js', hash: '15487570408879567833' }, - { file: 'packages/react-components/react-persona/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-persona/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-persona/docs/MIGRATION.md', hash: '17378712130195637222' }, - { file: 'packages/react-components/react-persona/docs/Spec.md', hash: '6967437294349522091' }, - { file: 'packages/react-components/react-persona/etc/images/anatomy.png', hash: '10781667208635285558' }, - { file: 'packages/react-components/react-persona/etc/images/avatar.png', hash: '9562625475398502185' }, - { file: 'packages/react-components/react-persona/etc/images/avatar_badge.png', hash: '9338819851581626892' }, - { file: 'packages/react-components/react-persona/etc/images/badge.png', hash: '17522195762955017669' }, - { file: 'packages/react-components/react-persona/etc/images/grid_after.png', hash: '6933613033871152976' }, - { file: 'packages/react-components/react-persona/etc/images/grid_before.png', hash: '13998141908743472922' }, - { file: 'packages/react-components/react-persona/etc/images/grid_below.png', hash: '3859323812046760721' }, - { file: 'packages/react-components/react-persona/etc/react-persona.api.md', hash: '14795997154590965053' }, - { file: 'packages/react-components/react-persona/jest.config.js', hash: '8129347973438031603' }, - { file: 'packages/react-components/react-persona/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-persona/package.json', - hash: '7140288082976502672', - deps: [ - '@fluentui/react-avatar', - '@fluentui/react-badge', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-persona/project.json', hash: '5858224934607894803' }, - { file: 'packages/react-components/react-persona/src/Persona.ts', hash: '11634239554265983330' }, - { - file: 'packages/react-components/react-persona/src/components/Persona/Persona.test.tsx', - hash: '8861398421216942861', - }, - { - file: 'packages/react-components/react-persona/src/components/Persona/Persona.tsx', - hash: '6767483379236609829', - }, - { - file: 'packages/react-components/react-persona/src/components/Persona/Persona.types.ts', - hash: '891732937289352445', - }, - { file: 'packages/react-components/react-persona/src/components/Persona/index.ts', hash: '815066361299291068' }, - { - file: 'packages/react-components/react-persona/src/components/Persona/renderPersona.tsx', - hash: '12503343474919913859', - }, - { - file: 'packages/react-components/react-persona/src/components/Persona/usePersona.ts', - hash: '7299955268610853887', - }, - { - file: 'packages/react-components/react-persona/src/components/Persona/usePersonaStyles.styles.ts', - hash: '13429552607938862653', - }, - { file: 'packages/react-components/react-persona/src/index.ts', hash: '733085347323584427' }, - { file: 'packages/react-components/react-persona/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-persona/stories/Persona/PersonaAvatarSize.stories.tsx', - hash: '7330072247446824330', - }, - { - file: 'packages/react-components/react-persona/stories/Persona/PersonaDefault.stories.tsx', - hash: '6962823296596584994', - }, - { - file: 'packages/react-components/react-persona/stories/Persona/PersonaDescription.md', - hash: '2005954066348145499', - }, - { - file: 'packages/react-components/react-persona/stories/Persona/PersonaPresencePreviousBehavior.stories.tsx', - hash: '7780860207726490895', - }, - { - file: 'packages/react-components/react-persona/stories/Persona/PersonaPresenceSize.stories.tsx', - hash: '17996713618212360785', - }, - { - file: 'packages/react-components/react-persona/stories/Persona/PersonaTextAlignment.stories.tsx', - hash: '14036210296442852602', - }, - { - file: 'packages/react-components/react-persona/stories/Persona/PersonaTextPosition.stories.tsx', - hash: '3716010766339279556', - }, - { - file: 'packages/react-components/react-persona/stories/Persona/index.stories.tsx', - hash: '11619656050038070907', - }, - { file: 'packages/react-components/react-persona/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-persona/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-persona/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/pr-deploy-site': [ - { file: 'apps/pr-deploy-site/.eslintrc.json', hash: '13367636068836493348' }, - { file: 'apps/pr-deploy-site/CHANGELOG.json', hash: '10223425423810861213' }, - { file: 'apps/pr-deploy-site/CHANGELOG.md', hash: '14685531263075523780' }, - { file: 'apps/pr-deploy-site/README.md', hash: '6722478197317014790' }, - { file: 'apps/pr-deploy-site/chiclet-test.html', hash: '9993395785341340820' }, - { file: 'apps/pr-deploy-site/index.html', hash: '100795799416268803' }, - { file: 'apps/pr-deploy-site/just.config.ts', hash: '17822963251943017025' }, - { - file: 'apps/pr-deploy-site/package.json', - hash: '15767832108474548373', - deps: ['@fluentui/eslint-plugin', '@fluentui/scripts-tasks', '@fluentui/scripts-monorepo'], - }, - { file: 'apps/pr-deploy-site/pr-deploy-site.css', hash: '4709491619076049329' }, - { file: 'apps/pr-deploy-site/pr-deploy-site.js', hash: '6526057395852723073' }, - { file: 'apps/pr-deploy-site/project.json', hash: '15758273448551696582' }, - { file: 'apps/pr-deploy-site/tsconfig.json', hash: '5982494929140394036' }, - ], - '@fluentui/scripts-jest': [ - { file: 'scripts/jest/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/jest/jest.config.js', hash: '3813261862233335890' }, - { - file: 'scripts/jest/package.json', - hash: '14164984823080938344', - deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-utils'], - }, - { file: 'scripts/jest/project.json', hash: '12078030697868316929' }, - { file: 'scripts/jest/src/index.js', hash: '16087382004284617467' }, - { file: 'scripts/jest/src/jest.preset.v0.js', hash: '5867124286943409158' }, - { file: 'scripts/jest/src/jest.preset.v0.spec.ts', hash: '14542700976601267891' }, - { file: 'scripts/jest/src/jest.preset.v8.js', hash: '7214783837184776239' }, - { file: 'scripts/jest/src/jest.preset.v8.spec.ts', hash: '12951278503786579953' }, - { file: 'scripts/jest/src/v0/setupTests.js', hash: '12654493952027143402' }, - { file: 'scripts/jest/src/v8/jest-mock.js', hash: '10441877977763399001' }, - { file: 'scripts/jest/src/v8/jest-reporter.js', hash: '17340096134020818293' }, - { file: 'scripts/jest/src/v8/jest-setup.js', hash: '7778886422321321206' }, - { file: 'scripts/jest/src/v8/jest-style-mock.js', hash: '3486721905956313351' }, - { file: 'scripts/jest/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/jest/tsconfig.lib.json', hash: '3593133700658772030' }, - { file: 'scripts/jest/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-rating-preview': [ - { file: 'packages/react-components/react-rating-preview/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-rating-preview/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-rating-preview/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-rating-preview/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-rating-preview/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-rating-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-rating-preview/CHANGELOG.json', hash: '1386950926958177706' }, - { file: 'packages/react-components/react-rating-preview/CHANGELOG.md', hash: '7481927941742122982' }, - { file: 'packages/react-components/react-rating-preview/LICENSE', hash: '11029626774304352386' }, - { file: 'packages/react-components/react-rating-preview/README.md', hash: '2315553695549024501' }, - { file: 'packages/react-components/react-rating-preview/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-rating-preview/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-rating-preview/docs/Spec.md', hash: '13399743181965079106' }, - { - file: 'packages/react-components/react-rating-preview/etc/react-rating-preview.api.md', - hash: '546737215946085466', - }, - { file: 'packages/react-components/react-rating-preview/jest.config.js', hash: '13638262759997247348' }, - { file: 'packages/react-components/react-rating-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-rating-preview/package.json', - hash: '6500567209729890407', - deps: [ - '@fluentui/react-jsx-runtime', - 'npm:@fluentui/react-icons', - '@fluentui/react-theme', - '@fluentui/react-tabster', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-rating-preview/project.json', hash: '309846336706056488' }, - { file: 'packages/react-components/react-rating-preview/src/Rating.ts', hash: '15823645109042535388' }, - { file: 'packages/react-components/react-rating-preview/src/RatingItem.ts', hash: '2041029226151546635' }, - { - file: 'packages/react-components/react-rating-preview/src/components/Rating/Rating.test.tsx', - hash: '5283780706645667459', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/Rating/Rating.tsx', - hash: '17937483042811168623', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/Rating/Rating.types.ts', - hash: '11581003550124668523', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/Rating/__snapshots__/Rating.test.tsx.snap', - hash: '12871779555702267298', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/Rating/index.ts', - hash: '16560610711340093657', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/Rating/renderRating.tsx', - hash: '17511663661061571492', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/Rating/useRating.tsx', - hash: '778443718043001840', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/Rating/useRatingStyles.styles.ts', - hash: '8465426701306811937', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.test.tsx', - hash: '6919100699748520443', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.tsx', - hash: '14249217300465265132', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/RatingItem/RatingItem.types.ts', - hash: '3463608295260686451', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/RatingItem/__snapshots__/RatingItem.test.tsx.snap', - hash: '12673552041574392517', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/RatingItem/index.ts', - hash: '7256066201974826524', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/RatingItem/renderRatingItem.tsx', - hash: '17922546264381731658', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/RatingItem/useRatingItem.tsx', - hash: '73122377714334878', - }, - { - file: 'packages/react-components/react-rating-preview/src/components/RatingItem/useRatingItemStyles.styles.ts', - hash: '13473747997341116040', - }, - { - file: 'packages/react-components/react-rating-preview/src/contexts/RatingContext.tsx', - hash: '14442501886031449970', - }, - { file: 'packages/react-components/react-rating-preview/src/contexts/index.ts', hash: '897686478701984368' }, - { - file: 'packages/react-components/react-rating-preview/src/contexts/useRatingContextValues.ts', - hash: '14732512412813204150', - }, - { file: 'packages/react-components/react-rating-preview/src/index.ts', hash: '542036710468795052' }, - { - file: 'packages/react-components/react-rating-preview/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingBestPractices.md', - hash: '13132854725403121719', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingCompact.stories.tsx', - hash: '10038980048705258013', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingDefault.stories.tsx', - hash: '10411813347289797490', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingMax.stories.tsx', - hash: '13823895250729025068', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingPrecision.stories.tsx', - hash: '13010653961703171182', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingReadOnly.stories.tsx', - hash: '16740155415181268133', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingShape.stories.tsx', - hash: '10702844511181810660', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/RatingSize.stories.tsx', - hash: '15592318112463151981', - }, - { - file: 'packages/react-components/react-rating-preview/stories/Rating/index.stories.tsx', - hash: '16840504286423106121', - }, - { file: 'packages/react-components/react-rating-preview/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-rating-preview/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-rating-preview/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-toolbar': [ - { file: 'packages/react-components/react-toolbar/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-toolbar/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-toolbar/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-toolbar/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-toolbar/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-toolbar/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-toolbar/CHANGELOG.json', hash: '2679299470989409940' }, - { file: 'packages/react-components/react-toolbar/CHANGELOG.md', hash: '7443287667751919479' }, - { file: 'packages/react-components/react-toolbar/LICENSE', hash: '11699752302272615156' }, - { file: 'packages/react-components/react-toolbar/README.md', hash: '17327849331251576092' }, - { file: 'packages/react-components/react-toolbar/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-toolbar/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-toolbar/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-toolbar/docs/Spec.md', hash: '6230791134705908197' }, - { file: 'packages/react-components/react-toolbar/etc/react-toolbar.api.md', hash: '14892045251414762508' }, - { file: 'packages/react-components/react-toolbar/jest.config.js', hash: '1491522759465693041' }, - { file: 'packages/react-components/react-toolbar/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-toolbar/package.json', - hash: '4069504963295153829', - deps: [ - '@fluentui/react-button', - '@fluentui/react-divider', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - '@fluentui/react-context-selector', - '@fluentui/react-radio', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-toolbar/project.json', hash: '15938424473686317514' }, - { file: 'packages/react-components/react-toolbar/src/Toolbar.ts', hash: '8394812810816711041' }, - { file: 'packages/react-components/react-toolbar/src/ToolbarButton.ts', hash: '15095606044855941967' }, - { file: 'packages/react-components/react-toolbar/src/ToolbarDivider.ts', hash: '5910102740128292344' }, - { file: 'packages/react-components/react-toolbar/src/ToolbarGroup.ts', hash: '1334304663874257745' }, - { file: 'packages/react-components/react-toolbar/src/ToolbarRadioButton.ts', hash: '16683479119449201369' }, - { file: 'packages/react-components/react-toolbar/src/ToolbarRadioGroup.ts', hash: '11025653910760393630' }, - { file: 'packages/react-components/react-toolbar/src/ToolbarToggleButton.ts', hash: '11558050513028606074' }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.cy.tsx', - hash: '18190796771724329956', - }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.test.tsx', - hash: '13039308109964193960', - }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.tsx', - hash: '6125519897848849531', - }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/Toolbar.types.ts', - hash: '5769296385799820899', - }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/ToolbarContext.ts', - hash: '16254330530638847001', - }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/__snapshots__/Toolbar.test.tsx.snap', - hash: '3213917547931842953', - }, - { file: 'packages/react-components/react-toolbar/src/components/Toolbar/index.ts', hash: '738351043517473027' }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/renderToolbar.tsx', - hash: '5344923693916361181', - }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/useToolbar.ts', - hash: '16259873341228918636', - }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/useToolbarContextValues.tsx', - hash: '12166336615514259420', - }, - { - file: 'packages/react-components/react-toolbar/src/components/Toolbar/useToolbarStyles.styles.ts', - hash: '603069451744682951', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.test.tsx', - hash: '13745661509449217165', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.tsx', - hash: '6836800995793072290', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/ToolbarButton.types.ts', - hash: '6180758115617748565', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/__snapshots__/ToolbarButton.test.tsx.snap', - hash: '10247478132621931341', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/index.ts', - hash: '11524062334948930900', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButton.ts', - hash: '1039717625327272054', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButtonStyles.styles.ts', - hash: '2967340636566566587', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.test.tsx', - hash: '7264474627499337873', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.tsx', - hash: '16225773209810846008', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/ToolbarDivider.types.ts', - hash: '14744270117949556840', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/__snapshots__/ToolbarDivider.test.tsx.snap', - hash: '14415100046558031978', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/index.ts', - hash: '1526444007332312428', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/useToolbarDivider.ts', - hash: '17605264207797018150', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarDivider/useToolbarDividerStyles.styles.ts', - hash: '5137750223570700400', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.test.tsx', - hash: '3652445854445709654', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.tsx', - hash: '10022688157462161383', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/ToolbarGroup.types.ts', - hash: '16010779742453253805', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/__snapshots__/ToolbarGroup.test.tsx.snap', - hash: '16684155283501614261', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/index.ts', - hash: '11269338224905271946', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/renderToolbarGroup.tsx', - hash: '8478142400781213724', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroup.ts', - hash: '16077103092893388185', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroupStyles.styles.ts', - hash: '16900409052136883615', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.test.tsx', - hash: '15085146305304111742', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.tsx', - hash: '13585266228605300355', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/ToolbarRadioButton.types.ts', - hash: '1084262974156884328', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/__snapshots__/ToolbarRadioButton.test.tsx.snap', - hash: '16686308830081031237', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/index.ts', - hash: '1287773747565266338', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/useToolbarRadioButton.ts', - hash: '13585520412147692119', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioButton/useToolbarRadioButtonStyles.styles.ts', - hash: '882772897875100667', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.test.tsx', - hash: '1666645086624633077', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.tsx', - hash: '11597493060405972029', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/ToolbarRadioGroup.types.ts', - hash: '5362057759819616453', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/__snapshots__/ToolbarRadioGroup.test.tsx.snap', - hash: '6778642779289195059', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarRadioGroup/index.ts', - hash: '6797519109209546610', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.test.tsx', - hash: '2785987815279519313', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.tsx', - hash: '17286377178801905329', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/ToolbarToggleButton.types.ts', - hash: '2799630108927680878', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/__snapshots__/ToolbarToggleButton.test.tsx.snap', - hash: '6448662158044233507', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/index.ts', - hash: '3726334219305394579', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/useToolbarToggleButton.ts', - hash: '10839425491090565227', - }, - { - file: 'packages/react-components/react-toolbar/src/components/ToolbarToggleButton/useToolbarToggleButtonStyles.styles.ts', - hash: '4298852610540032162', - }, - { file: 'packages/react-components/react-toolbar/src/index.ts', hash: '13436624389201452827' }, - { file: 'packages/react-components/react-toolbar/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarBestPractices.md', - hash: '15729850903231663767', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarControlledToggleButton.stories.tsx', - hash: '2229491058474026133', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarDefault.stories.tsx', - hash: '12754270821430915606', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarDescription.md', - hash: '11864277242571194941', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarFarGroup.stories.tsx', - hash: '15410378090287586604', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarLarge.stories.tsx', - hash: '1969991914501961647', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarMedium.stories.tsx', - hash: '10266984033920926402', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarOverflow.stories.tsx', - hash: '7713723578793215758', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarRadio.stories.tsx', - hash: '2319780391350821451', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarRadioControlled.stories.tsx', - hash: '6752560067054092764', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarSmall.stories.tsx', - hash: '16300341684049215640', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarSubtle.stories.tsx', - hash: '11114266572266597332', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarVertical.stories.tsx', - hash: '112779657426848656', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarVerticalButton.stories.tsx', - hash: '1450220188507366907', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarWithPopover.stories.tsx', - hash: '15385353564918673854', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/ToolbarWithTooltip.stories.tsx', - hash: '14225052960477459882', - }, - { - file: 'packages/react-components/react-toolbar/stories/Toolbar/index.stories.tsx', - hash: '8744702613617176196', - }, - { file: 'packages/react-components/react-toolbar/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-toolbar/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-toolbar/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-toolbar/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-text': [ - { file: 'packages/react-components/react-text/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-text/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-text/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-text/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-text/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-text/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-text/CHANGELOG.json', hash: '14746472734011799848' }, - { file: 'packages/react-components/react-text/CHANGELOG.md', hash: '5530030983973534839' }, - { file: 'packages/react-components/react-text/LICENSE', hash: '4936020564043377923' }, - { file: 'packages/react-components/react-text/README.md', hash: '14594000409558953178' }, - { file: 'packages/react-components/react-text/bundle-size/Text.Default.fixture.js', hash: '9372275947322015042' }, - { - file: 'packages/react-components/react-text/bundle-size/Text.Wrappers.fixture.js', - hash: '4343285488848262892', - }, - { file: 'packages/react-components/react-text/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-text/config/tests.js', hash: '14010006175392234982' }, - { file: 'packages/react-components/react-text/docs/MIGRATION.md', hash: '4926594767893644190' }, - { file: 'packages/react-components/react-text/docs/Spec.md', hash: '11156190551232632838' }, - { file: 'packages/react-components/react-text/docs/assets/typography-examples.gif', hash: '5944766188234749424' }, - { file: 'packages/react-components/react-text/etc/react-text.api.md', hash: '15630657575673412419' }, - { file: 'packages/react-components/react-text/jest.config.js', hash: '13250048585224657153' }, - { file: 'packages/react-components/react-text/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-text/package.json', - hash: '9181332167887385646', - deps: [ - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-text/project.json', hash: '497480200449367797' }, - { file: 'packages/react-components/react-text/src/Body1.ts', hash: '9667282400563853276' }, - { file: 'packages/react-components/react-text/src/Body1Strong.ts', hash: '13823224720861472657' }, - { file: 'packages/react-components/react-text/src/Body1Stronger.ts', hash: '3286566584428617482' }, - { file: 'packages/react-components/react-text/src/Body2.ts', hash: '8183283637965760260' }, - { file: 'packages/react-components/react-text/src/Caption1.ts', hash: '4788522305935816127' }, - { file: 'packages/react-components/react-text/src/Caption1Strong.ts', hash: '2149384589348724474' }, - { file: 'packages/react-components/react-text/src/Caption1Stronger.ts', hash: '10916957720193657172' }, - { file: 'packages/react-components/react-text/src/Caption2.ts', hash: '5102526396849719794' }, - { file: 'packages/react-components/react-text/src/Caption2Strong.ts', hash: '7572462389090243622' }, - { file: 'packages/react-components/react-text/src/Display.ts', hash: '4685022632235662968' }, - { file: 'packages/react-components/react-text/src/LargeTitle.ts', hash: '16487674571008795637' }, - { file: 'packages/react-components/react-text/src/Subtitle1.ts', hash: '16033303200156257737' }, - { file: 'packages/react-components/react-text/src/Subtitle2.ts', hash: '3476755232628464350' }, - { file: 'packages/react-components/react-text/src/Subtitle2Stronger.ts', hash: '16315524108236767900' }, - { file: 'packages/react-components/react-text/src/Text.ts', hash: '18074790047408023562' }, - { file: 'packages/react-components/react-text/src/Title1.ts', hash: '17555355943170034657' }, - { file: 'packages/react-components/react-text/src/Title2.ts', hash: '7269104715253581064' }, - { file: 'packages/react-components/react-text/src/Title3.ts', hash: '13543050376223625530' }, - { file: 'packages/react-components/react-text/src/components/Text/Text.test.tsx', hash: '10358087802752874407' }, - { file: 'packages/react-components/react-text/src/components/Text/Text.tsx', hash: '15225570993742240023' }, - { file: 'packages/react-components/react-text/src/components/Text/Text.types.ts', hash: '14628039381215441828' }, - { file: 'packages/react-components/react-text/src/components/Text/index.ts', hash: '3679423971540201261' }, - { file: 'packages/react-components/react-text/src/components/Text/renderText.tsx', hash: '12277062145316794641' }, - { file: 'packages/react-components/react-text/src/components/Text/useText.ts', hash: '10631330431687230925' }, - { - file: 'packages/react-components/react-text/src/components/Text/useTextStyles.styles.ts', - hash: '8180430562340821244', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1/Body1.test.tsx', - hash: '9894037939799415333', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1/Body1.tsx', - hash: '5366069605146131494', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1/index.ts', - hash: '14114934386458292686', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1/useBody1Styles.styles.ts', - hash: '12844845312353658561', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1Strong/Body1Strong.test.tsx', - hash: '10855272301661388234', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1Strong/Body1Strong.tsx', - hash: '11524714835326398685', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1Strong/index.ts', - hash: '1459948605428759386', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1Strong/useBody1StrongStyles.styles.ts', - hash: '6414602464149070199', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1Stronger/Body1Stronger.test.tsx', - hash: '1484282817804899892', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1Stronger/Body1Stronger.tsx', - hash: '3334814281589344133', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1Stronger/index.ts', - hash: '10194746070259772281', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body1Stronger/useBody1StrongerStyles.styles.ts', - hash: '8876787566301622094', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body2/Body2.test.tsx', - hash: '16080733609312017065', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body2/Body2.tsx', - hash: '10543167376626268951', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body2/index.ts', - hash: '15734780964608692484', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Body2/useBody2Styles.styles.ts', - hash: '2179965817036105151', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1/Caption1.test.tsx', - hash: '18364219394070326703', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1/Caption1.tsx', - hash: '5365603815581407077', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1/index.ts', - hash: '13292481802490231528', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1/useCaption1Styles.styles.ts', - hash: '17678336276744860638', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1Strong/Caption1Strong.test.tsx', - hash: '10855745484138944673', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1Strong/Caption1Strong.tsx', - hash: '13139698996938859077', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1Strong/index.ts', - hash: '15003375483982098027', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1Strong/useCaption1StrongStyles.styles.ts', - hash: '14992344039816775280', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1Stronger/Caption1Stronger.test.tsx', - hash: '145900403893458087', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1Stronger/Caption1Stronger.tsx', - hash: '8060776291855045773', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1Stronger/index.ts', - hash: '15869920445770356096', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption1Stronger/useCaption1Stronger.styles.ts', - hash: '6637626472059456130', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption2/Caption2.test.tsx', - hash: '18403821228559899680', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption2/Caption2.tsx', - hash: '4576498597993247268', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption2/index.ts', - hash: '7336284101298750631', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption2/useCaption2Styles.styles.ts', - hash: '3351567266887346725', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption2Strong/Caption2Strong.test.tsx', - hash: '2398079818540772501', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption2Strong/Caption2Strong.tsx', - hash: '4951760950137277604', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption2Strong/index.ts', - hash: '17023856116505366051', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Caption2Strong/useCaption2StrongStyles.styles.ts', - hash: '16711009952230674581', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Display/Display.test.tsx', - hash: '8902387253771320134', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Display/Display.tsx', - hash: '15163273678942990099', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Display/index.ts', - hash: '1655129168591164529', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Display/useDisplayStyles.styles.ts', - hash: '2155688834321594944', - }, - { - file: 'packages/react-components/react-text/src/components/presets/LargeTitle/LargeTitle.test.tsx', - hash: '10689996326037032312', - }, - { - file: 'packages/react-components/react-text/src/components/presets/LargeTitle/LargeTitle.tsx', - hash: '10845770827182851022', - }, - { - file: 'packages/react-components/react-text/src/components/presets/LargeTitle/index.ts', - hash: '10381804999879881593', - }, - { - file: 'packages/react-components/react-text/src/components/presets/LargeTitle/useLargeTitleStyles.styles.ts', - hash: '9204784057218126288', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle1/Subtitle1.test.tsx', - hash: '8400411135710061570', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle1/Subtitle1.tsx', - hash: '6818323249646657027', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle1/index.ts', - hash: '17144394370666913272', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle1/useSubtitle1Styles.styles.ts', - hash: '13973796368695964185', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle2/Subtitle2.test.tsx', - hash: '16800739000274466640', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle2/Subtitle2.tsx', - hash: '15995954742755224260', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle2/index.ts', - hash: '2395262566287968836', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle2/useSubtitle2Styles.styles.ts', - hash: '3548578033972741049', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle2Stronger/Subtitle2Stronger.test.tsx', - hash: '9486754707899734006', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle2Stronger/Subtitle2Stronger.tsx', - hash: '11834028200088074682', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle2Stronger/index.ts', - hash: '15834411329339240732', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Subtitle2Stronger/useSubtitle2Stronger.styles.ts', - hash: '14099105492801059828', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title1/Title1.test.tsx', - hash: '13980206727970199045', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title1/Title1.tsx', - hash: '15892461228380942200', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title1/index.ts', - hash: '8932830417608409787', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title1/useTitle1Styles.styles.ts', - hash: '10323980728201993935', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title2/Title2.test.tsx', - hash: '9313693279109464292', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title2/Title2.tsx', - hash: '16219814511697192588', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title2/index.ts', - hash: '13092072330785019922', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title2/useTitle2Styles.styles.ts', - hash: '15767653350255270679', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title3/Title3.test.tsx', - hash: '16041612927712782515', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title3/Title3.tsx', - hash: '1482714465420909906', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title3/index.ts', - hash: '5421005612796075725', - }, - { - file: 'packages/react-components/react-text/src/components/presets/Title3/useTitle3Styles.styles.ts', - hash: '13551327395414956915', - }, - { - file: 'packages/react-components/react-text/src/components/presets/createPreset.ts', - hash: '17313362690045924117', - }, - { file: 'packages/react-components/react-text/src/index.ts', hash: '4004944184614105514' }, - { file: 'packages/react-components/react-text/src/testing/isConformant.ts', hash: '10210662947692554095' }, - { file: 'packages/react-components/react-text/stories/Text/Default.stories.tsx', hash: '5287666121360600616' }, - { - file: 'packages/react-components/react-text/stories/Text/TextAlignment.stories.tsx', - hash: '6242707523860852359', - }, - { file: 'packages/react-components/react-text/stories/Text/TextBestPractices.md', hash: '7035477963273089456' }, - { file: 'packages/react-components/react-text/stories/Text/TextDescription.md', hash: '16470577204288111202' }, - { file: 'packages/react-components/react-text/stories/Text/TextFont.stories.tsx', hash: '11116949968316746227' }, - { - file: 'packages/react-components/react-text/stories/Text/TextItalic.stories.tsx', - hash: '10422272221648492172', - }, - { file: 'packages/react-components/react-text/stories/Text/TextPresets.md', hash: '10418459320242657564' }, - { - file: 'packages/react-components/react-text/stories/Text/TextPresets.stories.tsx', - hash: '8737629838560008759', - }, - { file: 'packages/react-components/react-text/stories/Text/TextSize.stories.tsx', hash: '14604640943488556546' }, - { - file: 'packages/react-components/react-text/stories/Text/TextStrikeThrough.stories.tsx', - hash: '5360501811450986755', - }, - { - file: 'packages/react-components/react-text/stories/Text/TextTruncate.stories.tsx', - hash: '11750770438919753549', - }, - { - file: 'packages/react-components/react-text/stories/Text/TextUnderline.stories.tsx', - hash: '16315826356528260583', - }, - { file: 'packages/react-components/react-text/stories/Text/TextWeight.stories.tsx', hash: '6081025630306336337' }, - { file: 'packages/react-components/react-text/stories/Text/index.stories.tsx', hash: '2698621728331086757' }, - { file: 'packages/react-components/react-text/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-text/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-text/tsconfig.spec.json', hash: '6578707152334499940' }, - ], - '@fluentui/scripts-test-ssr': [ - { file: 'scripts/test-ssr/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/test-ssr/README.md', hash: '12699687466976303239' }, - { file: 'scripts/test-ssr/bin/test-ssr.js', hash: '8805610837379847465' }, - { file: 'scripts/test-ssr/jest.config.js', hash: '11527576380239430971' }, - { - file: 'scripts/test-ssr/package.json', - hash: '5757712170384653205', - deps: ['@fluentui/scripts-puppeteer', '@fluentui/scripts-ts-node'], - }, - { file: 'scripts/test-ssr/project.json', hash: '8607452646844129216' }, - { file: 'scripts/test-ssr/src/cli.ts', hash: '9681510604885864279' }, - { file: 'scripts/test-ssr/src/commands/main.ts', hash: '5373798188839451215' }, - { file: 'scripts/test-ssr/src/shims/module.js', hash: '6994254687357316236' }, - { file: 'scripts/test-ssr/src/utils/buildAssets.test.ts', hash: '7131330003385329020' }, - { file: 'scripts/test-ssr/src/utils/buildAssets.ts', hash: '8657021135056357882' }, - { file: 'scripts/test-ssr/src/utils/constants.ts', hash: '13310172053469550506' }, - { file: 'scripts/test-ssr/src/utils/generateEntryPoints.test.ts', hash: '4312975137369069285' }, - { file: 'scripts/test-ssr/src/utils/generateEntryPoints.ts', hash: '15091510962787083993' }, - { file: 'scripts/test-ssr/src/utils/getExportFromFile.test.ts', hash: '15350347943875414675' }, - { file: 'scripts/test-ssr/src/utils/getExportFromFile.ts', hash: '16525910075835513493' }, - { file: 'scripts/test-ssr/src/utils/helpers.ts', hash: '907485589681988891' }, - { file: 'scripts/test-ssr/src/utils/renderToHTML.test.ts', hash: '18102029768147530086' }, - { file: 'scripts/test-ssr/src/utils/renderToHTML.ts', hash: '8653651019165466798' }, - { file: 'scripts/test-ssr/src/utils/visitPage.ts', hash: '13302790300574375017' }, - { file: 'scripts/test-ssr/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/test-ssr/tsconfig.lib.json', hash: '15222053984038389170' }, - { file: 'scripts/test-ssr/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-theme-sass': [ - { file: 'packages/react-components/react-theme-sass/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-theme-sass/.eslintrc.json', hash: '11018738359270224912' }, - { file: 'packages/react-components/react-theme-sass/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-theme-sass/CHANGELOG.json', hash: '5594685481643840414' }, - { file: 'packages/react-components/react-theme-sass/CHANGELOG.md', hash: '4856582190832297662' }, - { file: 'packages/react-components/react-theme-sass/LICENSE', hash: '7651792034110510731' }, - { file: 'packages/react-components/react-theme-sass/README.md', hash: '15214253752717970109' }, - { file: 'packages/react-components/react-theme-sass/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-theme-sass/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-theme-sass/etc/react-theme-sass.api.md', hash: '14358162522400668675' }, - { file: 'packages/react-components/react-theme-sass/jest.config.js', hash: '17399809852034663364' }, - { file: 'packages/react-components/react-theme-sass/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-theme-sass/package.json', - hash: '5930055320158030255', - deps: [ - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-theme', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/react-components/react-theme-sass/project.json', hash: '2766526344846927114' }, - { file: 'packages/react-components/react-theme-sass/sass/Sass.test.ts', hash: '3297823665033471734' }, - { file: 'packages/react-components/react-theme-sass/sass/borderRadiusTokens.scss', hash: '4143081919880994643' }, - { file: 'packages/react-components/react-theme-sass/sass/colorPaletteTokens.scss', hash: '1410739843977013578' }, - { file: 'packages/react-components/react-theme-sass/sass/colorTokens.scss', hash: '5989857681329073660' }, - { file: 'packages/react-components/react-theme-sass/sass/curveTokens.scss', hash: '17869535884671872417' }, - { file: 'packages/react-components/react-theme-sass/sass/durationTokens.scss', hash: '5806122938809088304' }, - { file: 'packages/react-components/react-theme-sass/sass/fontTokens.scss', hash: '6033061885418814247' }, - { file: 'packages/react-components/react-theme-sass/sass/shadowTokens.scss', hash: '4177663170137987842' }, - { file: 'packages/react-components/react-theme-sass/sass/spacingTokens.scss', hash: '977102655101265716' }, - { file: 'packages/react-components/react-theme-sass/sass/strokeWidthTokens.scss', hash: '8747232526648247088' }, - { file: 'packages/react-components/react-theme-sass/sass/tokens.scss', hash: '17672327996225294765' }, - { file: 'packages/react-components/react-theme-sass/src/index.ts', hash: '15196355143394379680' }, - { file: 'packages/react-components/react-theme-sass/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/react-theme-sass/tsconfig.lib.json', hash: '14975475306433073951' }, - { file: 'packages/react-components/react-theme-sass/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/vr-tests': [ - { file: 'apps/vr-tests/.eslintrc.json', hash: '10551831104493574097' }, - { file: 'apps/vr-tests/.storybook/main.js', hash: '14940333360803121656' }, - { file: 'apps/vr-tests/.storybook/manager.js', hash: '8031267414392898657' }, - { file: 'apps/vr-tests/.storybook/preview.js', hash: '3982292904030882131' }, - { file: 'apps/vr-tests/CHANGELOG.json', hash: '7449587578967385188' }, - { file: 'apps/vr-tests/CHANGELOG.md', hash: '2930179689752298073' }, - { file: 'apps/vr-tests/dndSim.js', hash: '724746063622656033' }, - { file: 'apps/vr-tests/just.config.ts', hash: '2411455081002746933' }, - { - file: 'apps/vr-tests/package.json', - hash: '5047474567217814010', - deps: [ - '@fluentui/example-data', - '@fluentui/font-icons-mdl2', - '@fluentui/react', - '@fluentui/react-experiments', - '@fluentui/react-hooks', - '@fluentui/react-icons-mdl2', - '@fluentui/storybook', - '@fluentui/react-charting', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-storybook', - '@fluentui/scripts-tasks', - ], - }, - { file: 'apps/vr-tests/project.json', hash: '15420030406986740766' }, - { file: 'apps/vr-tests/src/stories/ActivityItem.stories.tsx', hash: '11569687009388202467' }, - { file: 'apps/vr-tests/src/stories/Breadcrumb.stories.tsx', hash: '15341591510460372817' }, - { file: 'apps/vr-tests/src/stories/Button.stories.tsx', hash: '2914444188833757479' }, - { file: 'apps/vr-tests/src/stories/Calendar.stories.tsx', hash: '8538109429933462804' }, - { file: 'apps/vr-tests/src/stories/Checkbox.stories.tsx', hash: '3325419673387896680' }, - { file: 'apps/vr-tests/src/stories/ChoiceGroup.stories.tsx', hash: '1195574547624136369' }, - { file: 'apps/vr-tests/src/stories/Coachmark.stories.tsx', hash: '13321973702134234996' }, - { file: 'apps/vr-tests/src/stories/ColorPicker.stories.tsx', hash: '1213299846978993705' }, - { file: 'apps/vr-tests/src/stories/ComboBox.stories.tsx', hash: '9573414728786821330' }, - { file: 'apps/vr-tests/src/stories/CommandBar.stories.tsx', hash: '16263711139643921965' }, - { file: 'apps/vr-tests/src/stories/ContextualMenu.stories.tsx', hash: '7001519228488221050' }, - { file: 'apps/vr-tests/src/stories/DatePicker.stories.tsx', hash: '11469137129615659110' }, - { file: 'apps/vr-tests/src/stories/DetailsHeader.stories.tsx', hash: '5006577645632454049' }, - { file: 'apps/vr-tests/src/stories/DetailsList.stories.tsx', hash: '2879269659033154743' }, - { file: 'apps/vr-tests/src/stories/Dialog.stories.tsx', hash: '8052652729179956677' }, - { file: 'apps/vr-tests/src/stories/DocumentCard.stories.tsx', hash: '13899581374990015662' }, - { file: 'apps/vr-tests/src/stories/Dropdown.stories.tsx', hash: '2496251228511985784' }, - { file: 'apps/vr-tests/src/stories/Facepile.stories.tsx', hash: '12643002484132090873' }, - { file: 'apps/vr-tests/src/stories/FocusTrapZone.stories.tsx', hash: '5799413550175548528' }, - { file: 'apps/vr-tests/src/stories/FolderCover.stories.tsx', hash: '4906025218546588645' }, - { file: 'apps/vr-tests/src/stories/Fonts.stories.tsx', hash: '9549012890812409892' }, - { file: 'apps/vr-tests/src/stories/GroupedList.stories.tsx', hash: '11989572581811905811' }, - { file: 'apps/vr-tests/src/stories/HoverCard.stories.tsx', hash: '9319677405272986757' }, - { file: 'apps/vr-tests/src/stories/Icon.stories.tsx', hash: '15565848215587566233' }, - { file: 'apps/vr-tests/src/stories/Image.stories.tsx', hash: '6543648971192419845' }, - { file: 'apps/vr-tests/src/stories/Keytip.stories.tsx', hash: '14260629868498047882' }, - { file: 'apps/vr-tests/src/stories/Label.stories.tsx', hash: '16290920097226483294' }, - { file: 'apps/vr-tests/src/stories/Layer.stories.tsx', hash: '5774399677897090021' }, - { file: 'apps/vr-tests/src/stories/Link.stories.tsx', hash: '7575426125237736148' }, - { file: 'apps/vr-tests/src/stories/List.stories.tsx', hash: '8890180346033902095' }, - { file: 'apps/vr-tests/src/stories/MessageBar.stories.tsx', hash: '17616959218745846857' }, - { file: 'apps/vr-tests/src/stories/Modal.stories.tsx', hash: '9481699508246475797' }, - { file: 'apps/vr-tests/src/stories/Nav.stories.tsx', hash: '3467793982394536754' }, - { file: 'apps/vr-tests/src/stories/OverflowSet.stories.tsx', hash: '11103702669391570247' }, - { file: 'apps/vr-tests/src/stories/Overlay.stories.tsx', hash: '7861384592809448582' }, - { file: 'apps/vr-tests/src/stories/Panel.stories.tsx', hash: '4738198071916866546' }, - { file: 'apps/vr-tests/src/stories/PeoplePicker.stories.tsx', hash: '9173552436371785845' }, - { file: 'apps/vr-tests/src/stories/Persona.stories.tsx', hash: '16082800449887917174' }, - { file: 'apps/vr-tests/src/stories/Pivot.stories.tsx', hash: '484161555692287630' }, - { file: 'apps/vr-tests/src/stories/ProgressIndicator.stories.tsx', hash: '7137422605283021864' }, - { file: 'apps/vr-tests/src/stories/Rating.stories.tsx', hash: '8013473872216302645' }, - { file: 'apps/vr-tests/src/stories/ResizeGroup.stories.tsx', hash: '14761542910375483519' }, - { file: 'apps/vr-tests/src/stories/ScrollablePane.DetailsList.stories.tsx', hash: '2739168817822626656' }, - { file: 'apps/vr-tests/src/stories/ScrollablePane.GroupedDetailsList.stories.tsx', hash: '14761350823260518667' }, - { file: 'apps/vr-tests/src/stories/ScrollablePane.stories.tsx', hash: '13192871338079180854' }, - { file: 'apps/vr-tests/src/stories/SearchBox.stories.tsx', hash: '10379901043117580437' }, - { file: 'apps/vr-tests/src/stories/Separator.stories.tsx', hash: '13858622861667232974' }, - { file: 'apps/vr-tests/src/stories/Shimmer.stories.tsx', hash: '2903504102464264659' }, - { file: 'apps/vr-tests/src/stories/Signals.stories.tsx', hash: '17328372343649759425' }, - { file: 'apps/vr-tests/src/stories/Slider.stories.tsx', hash: '2368783335741726350' }, - { file: 'apps/vr-tests/src/stories/SpinButton.stories.tsx', hash: '8338452628845866471' }, - { file: 'apps/vr-tests/src/stories/Spinner.stories.tsx', hash: '1055217432712008178' }, - { file: 'apps/vr-tests/src/stories/Stack.stories.tsx', hash: '6523560878963516561' }, - { file: 'apps/vr-tests/src/stories/Sticky.Breadcrumb.stories.tsx', hash: '4487830027107272051' }, - { file: 'apps/vr-tests/src/stories/Suggestions.stories.tsx', hash: '17815861088103051556' }, - { file: 'apps/vr-tests/src/stories/SwatchColorPicker.stories.tsx', hash: '13775012423130559181' }, - { file: 'apps/vr-tests/src/stories/TagPicker.stories.tsx', hash: '14671286227568644399' }, - { file: 'apps/vr-tests/src/stories/TeachingBubble.stories.tsx', hash: '9348122633621119111' }, - { file: 'apps/vr-tests/src/stories/Text.stories.tsx', hash: '8527555373311206159' }, - { file: 'apps/vr-tests/src/stories/TextField.stories.tsx', hash: '11402453234080773139' }, - { file: 'apps/vr-tests/src/stories/ThemeProvider.stories.tsx', hash: '16275933529011562097' }, - { file: 'apps/vr-tests/src/stories/Tile.stories.tsx', hash: '14561588542669597183' }, - { file: 'apps/vr-tests/src/stories/TilesList.stories.tsx', hash: '3260762837761387433' }, - { file: 'apps/vr-tests/src/stories/Toggle.stories.tsx', hash: '10938683553158804823' }, - { file: 'apps/vr-tests/src/stories/Tooltip.stories.tsx', hash: '15939194512245739562' }, - { file: 'apps/vr-tests/src/stories/react-charting/AreaChart.stories.tsx', hash: '8203280599867073608' }, - { file: 'apps/vr-tests/src/stories/react-charting/DonutChart.stories.tsx', hash: '11937359916768393790' }, - { file: 'apps/vr-tests/src/stories/react-charting/GaugeChart.stories.tsx', hash: '15594215412651597314' }, - { file: 'apps/vr-tests/src/stories/react-charting/HeatMapChart.stories.tsx', hash: '17519556808732036733' }, - { file: 'apps/vr-tests/src/stories/react-charting/HorizontalBarChart.stories.tsx', hash: '13460446107341381296' }, - { file: 'apps/vr-tests/src/stories/react-charting/Legend.stories.tsx', hash: '4654126725540170806' }, - { file: 'apps/vr-tests/src/stories/react-charting/LineChart.stories.tsx', hash: '6506744441684266097' }, - { file: 'apps/vr-tests/src/stories/react-charting/MultiStackBarChart.stories.tsx', hash: '7178505763800800532' }, - { file: 'apps/vr-tests/src/stories/react-charting/Piechart.stories.tsx', hash: '15708474069628495010' }, - { file: 'apps/vr-tests/src/stories/react-charting/SankeyChart.stories.tsx', hash: '1792240597863600821' }, - { file: 'apps/vr-tests/src/stories/react-charting/SparklineChart.stories.tsx', hash: '5855342004212481143' }, - { file: 'apps/vr-tests/src/stories/react-charting/StackedBarChart.stories.tsx', hash: '14972009123979681780' }, - { file: 'apps/vr-tests/src/stories/react-charting/TreeChart.stories.tsx', hash: '15398948019288529805' }, - { file: 'apps/vr-tests/src/stories/react-charting/VerticalBarChart.stories.tsx', hash: '7754085844637102451' }, - { file: 'apps/vr-tests/src/stories/z_Callout.stories.tsx', hash: '4524354447780660422' }, - { file: 'apps/vr-tests/src/utilities/DevOnlyStoryHeader.tsx', hash: '8874774277832379592' }, - { file: 'apps/vr-tests/src/utilities/TestWrapperDecorator.tsx', hash: '13027273294579000586' }, - { file: 'apps/vr-tests/src/utilities/index.ts', hash: '77713048722310053' }, - { file: 'apps/vr-tests/src/utilities/types.ts', hash: '9013455218348419096' }, - { file: 'apps/vr-tests/tsconfig.json', hash: '3557499061294487570' }, - ], - '@fluentui/react-positioning': [ - { file: 'packages/react-components/react-positioning/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-positioning/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-positioning/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-positioning/CHANGELOG.json', hash: '4356248270442561023' }, - { file: 'packages/react-components/react-positioning/CHANGELOG.md', hash: '4847233942356914741' }, - { file: 'packages/react-components/react-positioning/LICENSE', hash: '5089922527070038048' }, - { file: 'packages/react-components/react-positioning/README.md', hash: '2417768606010098926' }, - { - file: 'packages/react-components/react-positioning/bundle-size/usePopper.fixture.js', - hash: '5183258026047587937', - }, - { file: 'packages/react-components/react-positioning/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-positioning/config/tests.js', hash: '16913843724990866890' }, - { - file: 'packages/react-components/react-positioning/etc/react-positioning.api.md', - hash: '18364179009656134909', - }, - { file: 'packages/react-components/react-positioning/jest.config.js', hash: '1911801824510823535' }, - { file: 'packages/react-components/react-positioning/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-positioning/package.json', - hash: '11419968880051446930', - deps: [ - 'npm:@floating-ui/dom', - 'npm:@floating-ui/devtools', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-positioning/project.json', hash: '5245284538107226970' }, - { file: 'packages/react-components/react-positioning/src/constants.ts', hash: '4812450824066108556' }, - { file: 'packages/react-components/react-positioning/src/createArrowStyles.ts', hash: '4816621363801924689' }, - { - file: 'packages/react-components/react-positioning/src/createPositionManager.ts', - hash: '10300998202434588247', - }, - { file: 'packages/react-components/react-positioning/src/createSlideStyles.ts', hash: '3653766009363043840' }, - { - file: 'packages/react-components/react-positioning/src/createVirtualElementFromClick.ts', - hash: '2923071022768484245', - }, - { file: 'packages/react-components/react-positioning/src/index.ts', hash: '3889687764181437663' }, - { - file: 'packages/react-components/react-positioning/src/middleware/coverTarget.ts', - hash: '11446814345254290307', - }, - { file: 'packages/react-components/react-positioning/src/middleware/flip.ts', hash: '4128332339311583311' }, - { file: 'packages/react-components/react-positioning/src/middleware/index.ts', hash: '10004993199977720656' }, - { - file: 'packages/react-components/react-positioning/src/middleware/intersecting.ts', - hash: '10280650566629227467', - }, - { - file: 'packages/react-components/react-positioning/src/middleware/matchTargetSize.test.ts', - hash: '15419830195167683077', - }, - { - file: 'packages/react-components/react-positioning/src/middleware/matchTargetSize.ts', - hash: '15376750943530628376', - }, - { - file: 'packages/react-components/react-positioning/src/middleware/maxSize.test.ts', - hash: '11847409733577590675', - }, - { file: 'packages/react-components/react-positioning/src/middleware/maxSize.ts', hash: '10958991407201312433' }, - { file: 'packages/react-components/react-positioning/src/middleware/offset.ts', hash: '1347711306628883277' }, - { file: 'packages/react-components/react-positioning/src/middleware/shift.ts', hash: '13982566745452618280' }, - { file: 'packages/react-components/react-positioning/src/types.test.ts', hash: '16061796271944754604' }, - { file: 'packages/react-components/react-positioning/src/types.ts', hash: '4162330794092529449' }, - { file: 'packages/react-components/react-positioning/src/usePositioning.ts', hash: '17591020286304693906' }, - { - file: 'packages/react-components/react-positioning/src/usePositioningMouseTarget.ts', - hash: '8779354366062893755', - }, - { file: 'packages/react-components/react-positioning/src/utils/debounce.ts', hash: '13930592765832964864' }, - { file: 'packages/react-components/react-positioning/src/utils/devtools.ts', hash: '6102556645022930270' }, - { - file: 'packages/react-components/react-positioning/src/utils/fromFloatingUIPlacement.test.ts', - hash: '14530768433800914418', - }, - { - file: 'packages/react-components/react-positioning/src/utils/fromFloatingUIPlacement.ts', - hash: '5306564900046691192', - }, - { file: 'packages/react-components/react-positioning/src/utils/getBoundary.ts', hash: '3368949379853203911' }, - { - file: 'packages/react-components/react-positioning/src/utils/getFloatingUIOffset.test.ts', - hash: '7575841896073806048', - }, - { - file: 'packages/react-components/react-positioning/src/utils/getFloatingUIOffset.ts', - hash: '9985513219821945968', - }, - { - file: 'packages/react-components/react-positioning/src/utils/getReactFiberFromNode.ts', - hash: '8959436210742527297', - }, - { - file: 'packages/react-components/react-positioning/src/utils/getScrollParent.ts', - hash: '18070071901955288061', - }, - { - file: 'packages/react-components/react-positioning/src/utils/hasAutoFocusFilter.ts', - hash: '2112971738028654481', - }, - { file: 'packages/react-components/react-positioning/src/utils/index.ts', hash: '998032976871910048' }, - { - file: 'packages/react-components/react-positioning/src/utils/listScrollParents.test.ts', - hash: '11927392465683226617', - }, - { - file: 'packages/react-components/react-positioning/src/utils/listScrollParents.ts', - hash: '1611437915141190212', - }, - { - file: 'packages/react-components/react-positioning/src/utils/mergeArrowOffset.test.ts', - hash: '12878054589651221300', - }, - { - file: 'packages/react-components/react-positioning/src/utils/mergeArrowOffset.ts', - hash: '14933934374399891510', - }, - { - file: 'packages/react-components/react-positioning/src/utils/normalizeAutoSize.test.ts', - hash: '3117602037330931432', - }, - { - file: 'packages/react-components/react-positioning/src/utils/normalizeAutoSize.ts', - hash: '990736725046059569', - }, - { - file: 'packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.test.ts', - hash: '1498123558613702867', - }, - { - file: 'packages/react-components/react-positioning/src/utils/parseFloatingUIPlacement.ts', - hash: '13333945119299100587', - }, - { - file: 'packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.test.ts', - hash: '4826160436314984224', - }, - { - file: 'packages/react-components/react-positioning/src/utils/resolvePositioningShorthand.ts', - hash: '16730999955673908650', - }, - { - file: 'packages/react-components/react-positioning/src/utils/toFloatingUIPadding.test.ts', - hash: '1971653496535654260', - }, - { - file: 'packages/react-components/react-positioning/src/utils/toFloatingUIPadding.ts', - hash: '14419864248559003091', - }, - { - file: 'packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.test.ts', - hash: '11727863645223188803', - }, - { - file: 'packages/react-components/react-positioning/src/utils/toFloatingUIPlacement.ts', - hash: '6079489230626652709', - }, - { - file: 'packages/react-components/react-positioning/src/utils/toggleScrollListener.test.ts', - hash: '10649142849159055061', - }, - { - file: 'packages/react-components/react-positioning/src/utils/toggleScrollListener.ts', - hash: '2156607211095016409', - }, - { - file: 'packages/react-components/react-positioning/src/utils/useCallbackRef.test.ts', - hash: '4294465573577228095', - }, - { file: 'packages/react-components/react-positioning/src/utils/useCallbackRef.ts', hash: '9531693418244808481' }, - { - file: 'packages/react-components/react-positioning/src/utils/writeArrowUpdates.ts', - hash: '6018473284504345707', - }, - { - file: 'packages/react-components/react-positioning/src/utils/writeContainerupdates.ts', - hash: '4817679150978717204', - }, - { file: 'packages/react-components/react-positioning/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/react-positioning/tsconfig.lib.json', hash: '14975475306433073951' }, - { file: 'packages/react-components/react-positioning/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-window-provider': [ - { file: 'packages/react-window-provider/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-window-provider/.npmignore', hash: '7699079327417375383' }, - { file: 'packages/react-window-provider/CHANGELOG.json', hash: '17196202453103955991' }, - { file: 'packages/react-window-provider/CHANGELOG.md', hash: '14116626830318945402' }, - { file: 'packages/react-window-provider/LICENSE', hash: '11661279664396385797' }, - { file: 'packages/react-window-provider/README.md', hash: '7476292892779210215' }, - { file: 'packages/react-window-provider/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/react-window-provider/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-window-provider/etc/react-window-provider.api.md', hash: '17731887639684768729' }, - { file: 'packages/react-window-provider/jest.config.js', hash: '12858682342254308337' }, - { file: 'packages/react-window-provider/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-window-provider/package.json', - hash: '16162568207572742971', - deps: [ - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/test-utilities', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-window-provider/project.json', hash: '9373053046562156021' }, - { file: 'packages/react-window-provider/src/WindowProvider.test.tsx', hash: '2877876259272044445' }, - { file: 'packages/react-window-provider/src/WindowProvider.tsx', hash: '2732980198195700826' }, - { file: 'packages/react-window-provider/src/index.ts', hash: '9447988520403946318' }, - { file: 'packages/react-window-provider/src/version.ts', hash: '11880968333285263790' }, - { file: 'packages/react-window-provider/tsconfig.json', hash: '17912118017775714616' }, - ], - '@fluentui/react-bindings': [ - { file: 'packages/fluentui/react-bindings/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-bindings/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-bindings/README.md', hash: '5554826359153268764' }, - { file: 'packages/fluentui/react-bindings/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-bindings/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-bindings/jest.config.js', hash: '13482069522961692092' }, - { - file: 'packages/fluentui/react-bindings/package.json', - hash: '14346723190653309755', - deps: [ - 'npm:@babel/runtime', - '@fluentui/accessibility', - '@fluentui/dom-utilities', - '@fluentui/react-component-event-listener', - '@fluentui/react-component-ref', - '@fluentui/react-northstar-fela-renderer', - '@fluentui/react-northstar-styles-renderer', - '@fluentui/state', - '@fluentui/styles', - 'npm:classnames', - 'npm:lodash', - 'npm:prop-types', - 'npm:react-is', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:@types/classnames', - 'npm:lerna-alias', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/fluentui/react-bindings/project.json', hash: '3098724062779490806' }, - { file: 'packages/fluentui/react-bindings/src/FocusZone/AutoFocusZone.tsx', hash: '4199334887796948956' }, - { file: 'packages/fluentui/react-bindings/src/FocusZone/AutoFocusZone.types.tsx', hash: '16937245917268822243' }, - { file: 'packages/fluentui/react-bindings/src/FocusZone/CHANGELOG.md', hash: '5737717684221164128' }, - { file: 'packages/fluentui/react-bindings/src/FocusZone/FocusTrapZone.tsx', hash: '9271770944176692894' }, - { file: 'packages/fluentui/react-bindings/src/FocusZone/FocusTrapZone.types.tsx', hash: '6721933620429714223' }, - { file: 'packages/fluentui/react-bindings/src/FocusZone/FocusZone.tsx', hash: '14087648694060844766' }, - { file: 'packages/fluentui/react-bindings/src/FocusZone/FocusZone.types.ts', hash: '6484887556753817232' }, - { file: 'packages/fluentui/react-bindings/src/FocusZone/focusUtilities.ts', hash: '2134347144387795778' }, - { file: 'packages/fluentui/react-bindings/src/accessibility/getAccessibility.ts', hash: '9905959387087432414' }, - { file: 'packages/fluentui/react-bindings/src/accessibility/getKeyDownHandlers.ts', hash: '6508602261516528592' }, - { - file: 'packages/fluentui/react-bindings/src/accessibility/shouldHandleOnKeys.ts', - hash: '12329884440950941235', - }, - { file: 'packages/fluentui/react-bindings/src/accessibility/types.ts', hash: '8507962475349685827' }, - { file: 'packages/fluentui/react-bindings/src/compose/compose.ts', hash: '16921634422497416980' }, - { file: 'packages/fluentui/react-bindings/src/compose/computeDisplayNames.ts', hash: '704472153739541249' }, - { file: 'packages/fluentui/react-bindings/src/compose/consts.ts', hash: '18337356828678773963' }, - { file: 'packages/fluentui/react-bindings/src/compose/index.ts', hash: '7773316450141562148' }, - { file: 'packages/fluentui/react-bindings/src/compose/mergeComposeOptions.ts', hash: '17185748125330766477' }, - { file: 'packages/fluentui/react-bindings/src/compose/mergeProps.ts', hash: '15881221697179785074' }, - { file: 'packages/fluentui/react-bindings/src/compose/mergeSlotProp.ts', hash: '18383256050663696082' }, - { file: 'packages/fluentui/react-bindings/src/compose/resolveSlotProps.ts', hash: '8030070576146247010' }, - { file: 'packages/fluentui/react-bindings/src/compose/wasComposedPreviously.ts', hash: '1226672711091759257' }, - { file: 'packages/fluentui/react-bindings/src/context-selector/createContext.ts', hash: '6163243789877254688' }, - { file: 'packages/fluentui/react-bindings/src/context-selector/types.ts', hash: '3161780195518143211' }, - { - file: 'packages/fluentui/react-bindings/src/context-selector/useContextSelector.ts', - hash: '3491395144900557629', - }, - { - file: 'packages/fluentui/react-bindings/src/context-selector/useContextSelectors.ts', - hash: '1342159682866982236', - }, - { file: 'packages/fluentui/react-bindings/src/context-selector/utils.ts', hash: '17756608188575203033' }, - { file: 'packages/fluentui/react-bindings/src/context.ts', hash: '2504617840057081701' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useAccessibility.ts', hash: '3730530656873314231' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useAutoControlled.ts', hash: '12020210326362175081' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useCallbackRef.ts', hash: '15260364968763194765' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useDeepMemo.ts', hash: '17664904316742192049' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useDispatchEffect.ts', hash: '523797428438187487' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useEventCallback.ts', hash: '11138167901000764022' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useFirstMount.ts', hash: '5753842204700810434' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useIFrameFocusDispatch.ts', hash: '13901258080296261682' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useIFrameListener.ts', hash: '4676672547320515687' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useIsomorphicLayoutEffect.ts', hash: '16377582332034814703' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useMergedRefs.ts', hash: '15582394188849760782' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useOnIFrameFocus.ts', hash: '56459656605781305' }, - { file: 'packages/fluentui/react-bindings/src/hooks/usePrevious.ts', hash: '5452705422744365770' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useStateManager.ts', hash: '8134058115156793670' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useStyles.ts', hash: '11209977391116869457' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useTriggerElement.tsx', hash: '9730828956065644548' }, - { file: 'packages/fluentui/react-bindings/src/hooks/useUnhandledProps.ts', hash: '4316059602380733165' }, - { file: 'packages/fluentui/react-bindings/src/index.ts', hash: '13182088506342331974' }, - { file: 'packages/fluentui/react-bindings/src/renderer/RendererContext.ts', hash: '4606835393501439883' }, - { file: 'packages/fluentui/react-bindings/src/styles/calculateAnimationTimeout.ts', hash: '3577142684966313424' }, - { file: 'packages/fluentui/react-bindings/src/styles/convertCssTimeToNumber.ts', hash: '3428534051178975951' }, - { file: 'packages/fluentui/react-bindings/src/styles/createAnimationStyles.tsx', hash: '14985851399239248408' }, - { file: 'packages/fluentui/react-bindings/src/styles/getStyles.ts', hash: '7851722266115206239' }, - { file: 'packages/fluentui/react-bindings/src/styles/resolveStyles.ts', hash: '7494741231570264675' }, - { file: 'packages/fluentui/react-bindings/src/styles/resolveVariables.ts', hash: '3897312963989673948' }, - { file: 'packages/fluentui/react-bindings/src/styles/types.ts', hash: '2676463631309134474' }, - { file: 'packages/fluentui/react-bindings/src/telemetry/types.ts', hash: '3385728758588133783' }, - { file: 'packages/fluentui/react-bindings/src/telemetry/useTelemetry.ts', hash: '14279666623156289577' }, - { file: 'packages/fluentui/react-bindings/src/utils/childrenExist.ts', hash: '3619272524856284343' }, - { file: 'packages/fluentui/react-bindings/src/utils/findScrollableParent.ts', hash: '8216732174798600668' }, - { file: 'packages/fluentui/react-bindings/src/utils/getDocument.ts', hash: '397452915165775464' }, - { file: 'packages/fluentui/react-bindings/src/utils/getElementType.ts', hash: '14632862614401893634' }, - { file: 'packages/fluentui/react-bindings/src/utils/getUnhandledProps.ts', hash: '14871327633567128163' }, - { file: 'packages/fluentui/react-bindings/src/utils/getWindow.ts', hash: '7683375961842184637' }, - { file: 'packages/fluentui/react-bindings/src/utils/mergeVariablesOverrides.ts', hash: '14811737278601338124' }, - { file: 'packages/fluentui/react-bindings/src/utils/shouldWrapFocus.ts', hash: '8136869381532219162' }, - { file: 'packages/fluentui/react-bindings/test/FocusZone/AutoFocusZone-test.tsx', hash: '432487377960798699' }, - { file: 'packages/fluentui/react-bindings/test/FocusZone/FocusTrapZone-test.tsx', hash: '14127515033989798787' }, - { - file: 'packages/fluentui/react-bindings/test/FocusZone/FocusZone-EventHandler-test.tsx', - hash: '5758157999812473111', - }, - { file: 'packages/fluentui/react-bindings/test/FocusZone/FocusZone-test.tsx', hash: '11460017440070152700' }, - { file: 'packages/fluentui/react-bindings/test/FocusZone/test-utils.ts', hash: '16799898351626858078' }, - { - file: 'packages/fluentui/react-bindings/test/accesibility/getKeyDownHandlers-test.ts', - hash: '1314342481233369549', - }, - { - file: 'packages/fluentui/react-bindings/test/accesibility/shouldHandleOnKeys-test.ts', - hash: '13917629719032260976', - }, - { file: 'packages/fluentui/react-bindings/test/compose/compose-test.tsx', hash: '3618138711751616693' }, - { file: 'packages/fluentui/react-bindings/test/compose/mergeProps-test.ts', hash: '1891371554949461375' }, - { file: 'packages/fluentui/react-bindings/test/compose/resolveSlotProps-test.tsx', hash: '2129678302506557664' }, - { file: 'packages/fluentui/react-bindings/test/compose/useCompose-test.tsx', hash: '14515254382037114858' }, - { file: 'packages/fluentui/react-bindings/test/consoleUtil.ts', hash: '11997294564447184338' }, - { - file: 'packages/fluentui/react-bindings/test/context-selector/createContext-test.tsx', - hash: '15993208680747699154', - }, - { - file: 'packages/fluentui/react-bindings/test/context-selector/useContextSelector-test.tsx', - hash: '6822936490356771304', - }, - { - file: 'packages/fluentui/react-bindings/test/context-selector/useContextSelectors-test.tsx', - hash: '3338357613132226466', - }, - { file: 'packages/fluentui/react-bindings/test/hooks/useAccessibility-test.tsx', hash: '5452579922559097617' }, - { file: 'packages/fluentui/react-bindings/test/hooks/useAutoControlled-test.tsx', hash: '14614999468088827773' }, - { file: 'packages/fluentui/react-bindings/test/hooks/useDispatchEffect-test.tsx', hash: '6496925804728216557' }, - { file: 'packages/fluentui/react-bindings/test/hooks/usePrevious-test.tsx', hash: '13651472287362297844' }, - { file: 'packages/fluentui/react-bindings/test/hooks/useStateManager-test.tsx', hash: '11737377582758503546' }, - { file: 'packages/fluentui/react-bindings/test/hooks/useStyles-test.tsx', hash: '2925905690540636262' }, - { file: 'packages/fluentui/react-bindings/test/hooks/useTriggerElement-test.tsx', hash: '18153385961075510546' }, - { - file: 'packages/fluentui/react-bindings/test/styles/convertCssTimeToNumber-test.ts', - hash: '5642114857287271136', - }, - { - file: 'packages/fluentui/react-bindings/test/styles/createAnimationStyles-test.ts', - hash: '15257190023862954681', - }, - { file: 'packages/fluentui/react-bindings/test/styles/resolveStyles-test.ts', hash: '8240816706156827159' }, - { file: 'packages/fluentui/react-bindings/test/styles/resolveVariables-test.ts', hash: '10826720913442109057' }, - { file: 'packages/fluentui/react-bindings/test/utils/childrenExist-test.tsx', hash: '13994241964374512709' }, - { file: 'packages/fluentui/react-bindings/test/utils/getElementType-test.ts', hash: '13908434027580439892' }, - { file: 'packages/fluentui/react-bindings/test/utils/getUnhandledProps-test.ts', hash: '1460976605323951307' }, - { file: 'packages/fluentui/react-bindings/tsconfig.json', hash: '1277968607411436930' }, - ], - '@fluentui/react-components': [ - { file: 'packages/react-components/react-components/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-components/.eslintrc.json', hash: '16150242168540975786' }, - { file: 'packages/react-components/react-components/.gitignore', hash: '13372735117233221667' }, - { file: 'packages/react-components/react-components/.storybook/main.js', hash: '5645485037555221482' }, - { file: 'packages/react-components/react-components/.storybook/preview.js', hash: '8038481416891966773' }, - { file: 'packages/react-components/react-components/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-components/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-components/CHANGELOG.json', hash: '3933417667138973232' }, - { file: 'packages/react-components/react-components/CHANGELOG.md', hash: '15663227018170933658' }, - { file: 'packages/react-components/react-components/LICENSE', hash: '10255657226477075794' }, - { file: 'packages/react-components/react-components/README.md', hash: '11587884417356817137' }, - { file: 'packages/react-components/react-components/assets/alert-keyboard.png', hash: '15249732195573034994' }, - { file: 'packages/react-components/react-components/assets/alert-mouse-touch.png', hash: '12249460593997234403' }, - { file: 'packages/react-components/react-components/assets/dialog-anatomy.png', hash: '9790416628323586517' }, - { file: 'packages/react-components/react-components/assets/modal-keyboard.png', hash: '9012292467073880542' }, - { file: 'packages/react-components/react-components/assets/modal-mouse-touch.png', hash: '3033643199014309546' }, - { - file: 'packages/react-components/react-components/assets/non-modal-keyboard.png', - hash: '11384655701996986210', - }, - { - file: 'packages/react-components/react-components/assets/non-modal-mouse-touch.png', - hash: '16247262641136131571', - }, - { - file: 'packages/react-components/react-components/bundle-size/ButtonProviderAndTheme.fixture.js', - hash: '17019747510632370214', - }, - { - file: 'packages/react-components/react-components/bundle-size/MultipleComponents.fixture.js', - hash: '7427445305648856257', - }, - { - file: 'packages/react-components/react-components/bundle-size/ProviderAndTheme.fixture.js', - hash: '12914286093854360655', - }, - { file: 'packages/react-components/react-components/config/api-extractor.json', hash: '124052868224837692' }, - { - file: 'packages/react-components/react-components/config/api-extractor.unstable.json', - hash: '9512960027067289088', - }, - { file: 'packages/react-components/react-components/config/pre-copy.json', hash: '8933244511250124822' }, - { file: 'packages/react-components/react-components/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-components/docs/MIGRATION-NOTES.md', hash: '4521324631345225068' }, - { file: 'packages/react-components/react-components/etc/react-components.api.md', hash: '18095309827241643254' }, - { - file: 'packages/react-components/react-components/etc/react-components.unstable.api.md', - hash: '4109143100580997913', - }, - { file: 'packages/react-components/react-components/jest.config.js', hash: '11810330001400121529' }, - { file: 'packages/react-components/react-components/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-components/package.json', - hash: '6821435458712997046', - deps: [ - '@fluentui/react-accordion', - '@fluentui/react-alert', - '@fluentui/react-avatar', - '@fluentui/react-badge', - '@fluentui/react-button', - '@fluentui/react-card', - '@fluentui/react-checkbox', - '@fluentui/react-combobox', - '@fluentui/react-dialog', - '@fluentui/react-divider', - '@fluentui/react-drawer', - '@fluentui/react-field', - '@fluentui/react-image', - '@fluentui/react-infobutton', - '@fluentui/react-infolabel', - '@fluentui/react-input', - '@fluentui/react-label', - '@fluentui/react-link', - '@fluentui/react-menu', - '@fluentui/react-overflow', - '@fluentui/react-persona', - '@fluentui/react-portal', - '@fluentui/react-popover', - '@fluentui/react-positioning', - '@fluentui/react-progress', - '@fluentui/react-provider', - '@fluentui/react-radio', - '@fluentui/react-select', - '@fluentui/react-shared-contexts', - '@fluentui/react-skeleton', - '@fluentui/react-slider', - '@fluentui/react-spinbutton', - '@fluentui/react-spinner', - '@fluentui/react-switch', - '@fluentui/react-table', - '@fluentui/react-tabs', - '@fluentui/react-tabster', - '@fluentui/react-tags', - '@fluentui/react-textarea', - '@fluentui/react-theme', - '@fluentui/react-toast', - '@fluentui/react-toolbar', - '@fluentui/react-tooltip', - '@fluentui/react-utilities', - '@fluentui/react-text', - '@fluentui/react-virtualizer', - '@fluentui/react-tree', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/react-message-bar', - '@fluentui/react-breadcrumb', - '@fluentui/eslint-plugin', - 'npm:react-hook-form', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-components/project.json', hash: '15915132305255283070' }, - { - file: 'packages/react-components/react-components/src/Concepts/Icons/ReactIconGrid.tsx', - hash: '15648366075411592656', - }, - { file: 'packages/react-components/react-components/src/index.ts', hash: '9602633354990534895' }, - { file: 'packages/react-components/react-components/src/unstable/index.ts', hash: '17127110014653250113' }, - { - file: 'packages/react-components/react-components/src/unstable/package.json__tmpl__', - hash: '14469017445902889019', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Accordion.stories.tsx', - hash: '5261274850033724196', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/AccordionFaq.stories.tsx', - hash: '3711296761758539461', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Button.stories.tsx', - hash: '9135053873053394162', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Checkbox.stories.tsx', - hash: '18422225923861027839', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Input.stories.tsx', - hash: '13031699296131987255', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Link.stories.tsx', - hash: '9284047790819060564', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/ListOfScenarios.stories.mdx', - hash: '18008776474087302263', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Menu.stories.tsx', - hash: '5496036381131988450', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/MenuSplitGroup.stories.tsx', - hash: '13714132678203560925', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Popover.stories.tsx', - hash: '1484726241091602586', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/RadioGroup.stories.tsx', - hash: '7308888334073459506', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Slider.stories.tsx', - hash: '13192574564934461371', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Spinner.stories.tsx', - hash: '6986065893612221448', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/SplitButton.stories.tsx', - hash: '7176544829687519936', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Switch.stories.tsx', - hash: '15970436396001209984', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/TabListHorizontal.stories.tsx', - hash: '9938150602800442377', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/TabListOverflow.stories.tsx', - hash: '15038822242040527851', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/TabListVertical.stories.tsx', - hash: '16057335239807774657', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Textarea.stories.tsx', - hash: '9635748482005322625', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/ToggleButton.stories.tsx', - hash: '17407275276966444104', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/Tooltip.stories.tsx', - hash: '17546321637487339355', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/index.stories.tsx', - hash: '14658705870973190500', - }, - { - file: 'packages/react-components/react-components/stories/AccessibilityScenarios/utils.tsx', - hash: '7215302430949320194', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Accessibility/AccessibleComponents.stories.mdx', - hash: '3295771942860848592', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Accessibility/AccessibleExperiences.stories.mdx', - hash: '2900291657079817589', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Accessibility/FocusIndicator.stories.mdx', - hash: '1717337186527803258', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Axis.stories.tsx', - hash: '10318348332393326457', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/CircularNavigation.stories.tsx', - hash: '6781750418223870091', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Default.stories.tsx', - hash: '13313594812236532657', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/Memorize.stories.tsx', - hash: '1820798249934632278', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/index.stories.tsx', - hash: '6967816180948552799', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useArrowNavigationGroup/useArrowNavigationGroupDescription.md', - hash: '2031447657270072240', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/Default.stories.tsx', - hash: '13224545909870604584', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindAllWhere.stories.tsx', - hash: '9017130571781111926', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindFirst.stories.tsx', - hash: '317264299185587249', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindLast.stories.tsx', - hash: '18052296652579568309', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindNext.stories.tsx', - hash: '17925103578502891443', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/FindPrevious.stories.tsx', - hash: '10084829099646404716', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/index.stories.tsx', - hash: '9794805248352104971', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusFinders/useFocusFindersDescription.md', - hash: '9049217529934217066', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/Default.stories.tsx', - hash: '9065252716333350570', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/Limited.stories.tsx', - hash: '9555705919210714710', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/LimitedTrapFocus.stories.tsx', - hash: '13702213217400448084', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/index.stories.tsx', - hash: '157374974440116360', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useFocusableGroup/useFocusableGroupDescription.md', - hash: '8837756520973428757', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/Default.stories.tsx', - hash: '12297290380505646340', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/InertFocusTrap.stories.tsx', - hash: '18201555536110422598', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/index.stories.tsx', - hash: '6330308829316680025', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useModalAttributes/useModalAttributesDescription.md', - hash: '8341388369435401062', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/Default.stories.tsx', - hash: '10152294546566560089', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/MultipleNames.stories.tsx', - hash: '9397108312180853844', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/index.stories.tsx', - hash: '2051553537147974031', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useObservedElement/useObservedElementDescription.md', - hash: '9542011707964967918', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/Default.stories.stories.tsx', - hash: '11494446748156496224', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/FocusRestoreHistory.stories.tsx', - hash: '3681364596967862819', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/UserRestoreFocus.stories.stories.tsx', - hash: '9793947365179708427', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/index.stories.tsx', - hash: '1448366491964554873', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useRestoreFocusSource/useRestoreFocusSourceDescription.md', - hash: '727321225129794077', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/Default.stories.tsx', - hash: '6326143576473960437', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/index.stories.tsx', - hash: '5639657332615332719', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/FocusManagement/useUncontrolledFocus/useUncontrolledFocusDescription.md', - hash: '9882522118220737320', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Icons/Icon.stories.mdx', - hash: '1197053246392928276', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Icons/IconTable.stories.mdx', - hash: '4896154475220076794', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/MatchTargetSize.stories.tsx', - hash: '4487974487102015866', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/OverflowBoundaryPadding.stories.tsx', - hash: '14304319794708833793', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningAnchorToTarget.stories.tsx', - hash: '12152022627674249494', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningBestPractices.md', - hash: '4693427405734490301', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningCoverTarget.stories.tsx', - hash: '15984490079701264594', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningDefault.stories.tsx', - hash: '14129962775143693627', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningDescription.md', - hash: '12862623453561421564', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningDisableTransform.stories.tsx', - hash: '6806805123184905778', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningFlipBoundary.stories.tsx', - hash: '15305995841896426816', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningImperativeAnchorTarget.stories.tsx', - hash: '6229434466729398121', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningImperativePositionUpdate.stories.tsx', - hash: '12186453763733206915', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningOffsetFunction.stories.tsx', - hash: '11624576393760387377', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningOffsetValue.stories.tsx', - hash: '13170786133550262509', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningOverflowBoundary.stories.tsx', - hash: '8317968229863701716', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/PositioningShorthandPositions.stories.tsx', - hash: '7414638675247295275', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/index.stories.tsx', - hash: '9056885794431434983', - }, - { - file: 'packages/react-components/react-components/stories/Concepts/Positioning/utils.stories.tsx', - hash: '9474602900711575872', - }, - { - file: 'packages/react-components/react-components/stories/Migrations/Flex.Stack.stories.mdx', - hash: '828823711976364144', - }, - { - file: 'packages/react-components/react-components/stories/Migrations/Flex.StackItem.stories.mdx', - hash: '7377444694311401484', - }, - { - file: 'packages/react-components/react-components/stories/Migrations/utils.stories.test.tsx', - hash: '15201130176337142924', - }, - { - file: 'packages/react-components/react-components/stories/Migrations/utils.stories.tsx', - hash: '10595453595829049863', - }, - { file: 'packages/react-components/react-components/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-components/tsconfig.lib.json', hash: '2330431448937249608' }, - { file: 'packages/react-components/react-components/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-spinner': [ - { file: 'packages/react-components/react-spinner/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-spinner/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-spinner/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-spinner/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-spinner/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-spinner/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-spinner/CHANGELOG.json', hash: '3280890749163842627' }, - { file: 'packages/react-components/react-spinner/CHANGELOG.md', hash: '12792390149026574823' }, - { file: 'packages/react-components/react-spinner/LICENSE', hash: '14553388487284712078' }, - { file: 'packages/react-components/react-spinner/README.md', hash: '10087843760024113769' }, - { file: 'packages/react-components/react-spinner/bundle-size/Spinner.fixture.js', hash: '5992710611579886911' }, - { file: 'packages/react-components/react-spinner/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-spinner/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-spinner/docs/MIGRATION.md', hash: '4271430718709456187' }, - { file: 'packages/react-components/react-spinner/docs/Spec.md', hash: '8108242124769863167' }, - { file: 'packages/react-components/react-spinner/etc/react-spinner.api.md', hash: '6943912974007911651' }, - { file: 'packages/react-components/react-spinner/jest.config.js', hash: '11572584267529988690' }, - { file: 'packages/react-components/react-spinner/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-spinner/package.json', - hash: '12596561334443842269', - deps: [ - '@fluentui/react-jsx-runtime', - '@fluentui/react-label', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-spinner/project.json', hash: '16333624156321919677' }, - { file: 'packages/react-components/react-spinner/src/Spinner.ts', hash: '17775753931591747303' }, - { - file: 'packages/react-components/react-spinner/src/components/Spinner/DefaultSvg.tsx', - hash: '2492171149641849851', - }, - { - file: 'packages/react-components/react-spinner/src/components/Spinner/Spinner.test.tsx', - hash: '16612308379317311160', - }, - { - file: 'packages/react-components/react-spinner/src/components/Spinner/Spinner.tsx', - hash: '11487284038740981348', - }, - { - file: 'packages/react-components/react-spinner/src/components/Spinner/Spinner.types.ts', - hash: '11615634852342602324', - }, - { file: 'packages/react-components/react-spinner/src/components/Spinner/index.ts', hash: '5479350457561490387' }, - { - file: 'packages/react-components/react-spinner/src/components/Spinner/renderSpinner.tsx', - hash: '5967742638171182429', - }, - { - file: 'packages/react-components/react-spinner/src/components/Spinner/useSpinner.tsx', - hash: '5315405786166520951', - }, - { - file: 'packages/react-components/react-spinner/src/components/Spinner/useSpinnerStyles.styles.ts', - hash: '9739165177237335620', - }, - { file: 'packages/react-components/react-spinner/src/contexts/SpinnerContext.ts', hash: '15656672469164403534' }, - { file: 'packages/react-components/react-spinner/src/contexts/index.ts', hash: '18421418232924887404' }, - { file: 'packages/react-components/react-spinner/src/index.ts', hash: '12925949466018778405' }, - { file: 'packages/react-components/react-spinner/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerAppearance.stories.tsx', - hash: '2553746132280526795', - }, - { - file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerBestPractices.md', - hash: '14494351965436565766', - }, - { - file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerDefault.stories.tsx', - hash: '5947288127862564020', - }, - { - file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerDescription.md', - hash: '2258339333508008098', - }, - { - file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerLabel.stories.tsx', - hash: '15822432114109503670', - }, - { - file: 'packages/react-components/react-spinner/stories/Spinner/SpinnerSize.stories.tsx', - hash: '3317730365577270949', - }, - { - file: 'packages/react-components/react-spinner/stories/Spinner/index.stories.tsx', - hash: '17876671725641816133', - }, - { file: 'packages/react-components/react-spinner/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-spinner/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-spinner/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-motions-preview': [ - { file: 'packages/react-components/react-motions-preview/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-motions-preview/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-motions-preview/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-motions-preview/.storybook/preview.js', hash: '1791378012295456991' }, - { - file: 'packages/react-components/react-motions-preview/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-motions-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-motions-preview/LICENSE', hash: '7138711571438781774' }, - { file: 'packages/react-components/react-motions-preview/README.md', hash: '17498722335979354024' }, - { file: 'packages/react-components/react-motions-preview/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-motions-preview/config/tests.js', hash: '16913843724990866890' }, - { - file: 'packages/react-components/react-motions-preview/etc/react-motions-preview.api.md', - hash: '12743696528407065677', - }, - { file: 'packages/react-components/react-motions-preview/jest.config.js', hash: '15864305436409793865' }, - { file: 'packages/react-components/react-motions-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-motions-preview/package.json', - hash: '3696756658694654553', - deps: [ - '@fluentui/react-shared-contexts', - '@fluentui/react-utilities', - 'npm:@swc/helpers', - 'npm:react-is', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-motions-preview/project.json', hash: '12296590422921745095' }, - { - file: 'packages/react-components/react-motions-preview/src/factories/createAtom.test.tsx', - hash: '1047206177802055811', - }, - { - file: 'packages/react-components/react-motions-preview/src/factories/createAtom.ts', - hash: '17739657523056274812', - }, - { - file: 'packages/react-components/react-motions-preview/src/factories/createPresence.test.tsx', - hash: '2448045071357828784', - }, - { - file: 'packages/react-components/react-motions-preview/src/factories/createPresence.ts', - hash: '11236981719297968322', - }, - { - file: 'packages/react-components/react-motions-preview/src/hooks/useIsReducedMotion.test.tsx', - hash: '8887201488767817033', - }, - { - file: 'packages/react-components/react-motions-preview/src/hooks/useIsReducedMotion.ts', - hash: '4106377544759115907', - }, - { - file: 'packages/react-components/react-motions-preview/src/hooks/useMotionImperativeRef.test.tsx', - hash: '7993664620419479161', - }, - { - file: 'packages/react-components/react-motions-preview/src/hooks/useMotionImperativeRef.ts', - hash: '1632631879080868129', - }, - { file: 'packages/react-components/react-motions-preview/src/index.ts', hash: '8131632330745602255' }, - { file: 'packages/react-components/react-motions-preview/src/motions/atom/fade.ts', hash: '7486748159940927914' }, - { - file: 'packages/react-components/react-motions-preview/src/motions/atom/index.ts', - hash: '16753120998278687480', - }, - { - file: 'packages/react-components/react-motions-preview/src/motions/atom/scale.ts', - hash: '16979265713479036920', - }, - { - file: 'packages/react-components/react-motions-preview/src/motions/atom/slide.ts', - hash: '5741435285593211782', - }, - { - file: 'packages/react-components/react-motions-preview/src/motions/atom/tokens.ts', - hash: '15231772390421822079', - }, - { - file: 'packages/react-components/react-motions-preview/src/motions/presence/fade.ts', - hash: '10807810800143017859', - }, - { - file: 'packages/react-components/react-motions-preview/src/motions/presence/index.ts', - hash: '16753120998278687480', - }, - { - file: 'packages/react-components/react-motions-preview/src/motions/presence/scale.ts', - hash: '7134190811033882315', - }, - { - file: 'packages/react-components/react-motions-preview/src/motions/presence/slide.ts', - hash: '8481780441080782244', - }, - { file: 'packages/react-components/react-motions-preview/src/types.ts', hash: '16229776850125672679' }, - { - file: 'packages/react-components/react-motions-preview/src/utils/getChildElement.test.tsx', - hash: '8841238823050513452', - }, - { - file: 'packages/react-components/react-motions-preview/src/utils/getChildElement.ts', - hash: '12546952061692389581', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/CreateAtom.stories.md', - hash: '5893255975788056106', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/CreateAtom.stories.tsx', - hash: '5782165169486360963', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/CreatePresence.stories.md', - hash: '12142141077619929634', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/CreatePresence.stories.tsx', - hash: '11545114550073710457', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/CustomAtom.stories.md', - hash: '8191854486238302831', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/CustomAtom.stories.tsx', - hash: '4462772013305188622', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/ImperativeRefPlayState.stories.md', - hash: '5961784044077758105', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/ImperativeRefPlayState.stories.tsx', - hash: '11804399789389445656', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/MotionDefault.stories.tsx', - hash: '12159791219112165896', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/MotionDescription.md', - hash: '6774937818624891077', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/MotionLibrary.stories.md', - hash: '4799461372227860502', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/MotionLibrary.stories.tsx', - hash: '18001169511280264377', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/PresenceAppear.stories.md', - hash: '16813191778445729025', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/PresenceAppear.stories.tsx', - hash: '10249922983205892831', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/PresenceUnmountOnExit.stories.md', - hash: '4980239457863910445', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/PresenceUnmountOnExit.stories.tsx', - hash: '16450904187679412076', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/TokensUsage.stories.md', - hash: '13013623227649516115', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/TokensUsage.stories.tsx', - hash: '7189530296843671807', - }, - { - file: 'packages/react-components/react-motions-preview/stories/Motion/index.stories.ts', - hash: '11605213295335544089', - }, - { file: 'packages/react-components/react-motions-preview/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-motions-preview/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-motions-preview/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/scheme-utilities': [ - { file: 'packages/scheme-utilities/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/scheme-utilities/.npmignore', hash: '47056201363133096' }, - { file: 'packages/scheme-utilities/CHANGELOG.json', hash: '10831990114637121424' }, - { file: 'packages/scheme-utilities/CHANGELOG.md', hash: '11561547596405105751' }, - { file: 'packages/scheme-utilities/LICENSE', hash: '15398908318832700008' }, - { file: 'packages/scheme-utilities/README.md', hash: '17462190804923423170' }, - { file: 'packages/scheme-utilities/example.png', hash: '5304605585461739441' }, - { file: 'packages/scheme-utilities/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/scheme-utilities/package.json', - hash: '16797713160660247554', - deps: [ - '@fluentui/theme', - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'packages/scheme-utilities/project.json', hash: '18207278494590169669' }, - { file: 'packages/scheme-utilities/src/index.ts', hash: '12035799633836013526' }, - { file: 'packages/scheme-utilities/src/utilities.ts', hash: '12593228511294575624' }, - { file: 'packages/scheme-utilities/src/variantThemeType.ts', hash: '848702664263651221' }, - { file: 'packages/scheme-utilities/src/variants.ts', hash: '11090517405357739151' }, - { file: 'packages/scheme-utilities/src/version.ts', hash: '6347835831859264688' }, - { file: 'packages/scheme-utilities/tsconfig.json', hash: '2384178432518439606' }, - { file: 'packages/scheme-utilities/webpack.config.js', hash: '3900466450664749944' }, - ], - '@fluentui/react-input': [ - { file: 'packages/react-components/react-input/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-input/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-input/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-input/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-input/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-input/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-input/CHANGELOG.json', hash: '16902776417506954393' }, - { file: 'packages/react-components/react-input/CHANGELOG.md', hash: '12659363144881103523' }, - { file: 'packages/react-components/react-input/LICENSE', hash: '17921975243735857791' }, - { file: 'packages/react-components/react-input/README.md', hash: '5789151720033807483' }, - { file: 'packages/react-components/react-input/bundle-size/Input.fixture.js', hash: '15446350093573765852' }, - { file: 'packages/react-components/react-input/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-input/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-input/docs/Spec-styling.md', hash: '12893795690828629797' }, - { file: 'packages/react-components/react-input/docs/Spec-variants.md', hash: '14494830944240525083' }, - { file: 'packages/react-components/react-input/docs/Spec.md', hash: '5306108129554253618' }, - { file: 'packages/react-components/react-input/etc/react-input.api.md', hash: '8395695789212950644' }, - { file: 'packages/react-components/react-input/jest.config.js', hash: '8466466753515983120' }, - { file: 'packages/react-components/react-input/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-input/package.json', - hash: '10777907370065733381', - deps: [ - '@fluentui/react-field', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/react-text', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-input/project.json', hash: '10199176759041895704' }, - { file: 'packages/react-components/react-input/src/Input.ts', hash: '10429882019873203426' }, - { - file: 'packages/react-components/react-input/src/components/Input/Input.test.tsx', - hash: '9943754574556771396', - }, - { file: 'packages/react-components/react-input/src/components/Input/Input.tsx', hash: '2593076107497856454' }, - { - file: 'packages/react-components/react-input/src/components/Input/Input.types.ts', - hash: '5991618772507553577', - }, - { - file: 'packages/react-components/react-input/src/components/Input/__snapshots__/Input.test.tsx.snap', - hash: '8696547501521471701', - }, - { file: 'packages/react-components/react-input/src/components/Input/index.ts', hash: '9629035020677552243' }, - { - file: 'packages/react-components/react-input/src/components/Input/renderInput.tsx', - hash: '17464159116055354529', - }, - { file: 'packages/react-components/react-input/src/components/Input/useInput.ts', hash: '7096296182051013434' }, - { - file: 'packages/react-components/react-input/src/components/Input/useInputStyles.styles.ts', - hash: '17030352388227783114', - }, - { file: 'packages/react-components/react-input/src/index.ts', hash: '1860518375733372751' }, - { file: 'packages/react-components/react-input/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-input/stories/Input/InputAppearance.stories.tsx', - hash: '16605839565629747390', - }, - { file: 'packages/react-components/react-input/stories/Input/InputBestPractices.md', hash: '84526309930099766' }, - { - file: 'packages/react-components/react-input/stories/Input/InputContentBeforeAfter.stories.tsx', - hash: '8269160108933136866', - }, - { - file: 'packages/react-components/react-input/stories/Input/InputControlled.stories.tsx', - hash: '1485009000094407100', - }, - { - file: 'packages/react-components/react-input/stories/Input/InputDefault.stories.tsx', - hash: '5448587894533551399', - }, - { file: 'packages/react-components/react-input/stories/Input/InputDescription.md', hash: '11217759867033227655' }, - { - file: 'packages/react-components/react-input/stories/Input/InputDisabled.stories.tsx', - hash: '10764757400929231557', - }, - { - file: 'packages/react-components/react-input/stories/Input/InputInline.stories.tsx', - hash: '9245622638907234352', - }, - { - file: 'packages/react-components/react-input/stories/Input/InputPlaceholder.stories.tsx', - hash: '7248062527841234398', - }, - { - file: 'packages/react-components/react-input/stories/Input/InputSize.stories.tsx', - hash: '18091173436190785431', - }, - { - file: 'packages/react-components/react-input/stories/Input/InputType.stories.tsx', - hash: '13006764319554437671', - }, - { - file: 'packages/react-components/react-input/stories/Input/InputUncontrolled.stories.tsx', - hash: '3016126986246343470', - }, - { file: 'packages/react-components/react-input/stories/Input/index.stories.tsx', hash: '668131335390485946' }, - { file: 'packages/react-components/react-input/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-input/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-input/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-alert': [ - { file: 'packages/react-components/react-alert/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-alert/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-alert/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-alert/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-alert/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-alert/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-alert/CHANGELOG.json', hash: '83764038971076835' }, - { file: 'packages/react-components/react-alert/CHANGELOG.md', hash: '5175289707873145207' }, - { file: 'packages/react-components/react-alert/LICENSE', hash: '16252253352334995182' }, - { file: 'packages/react-components/react-alert/README.md', hash: '8131351181258092235' }, - { file: 'packages/react-components/react-alert/bundle-size/Alert.fixture.js', hash: '6960359331564279967' }, - { file: 'packages/react-components/react-alert/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-alert/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-alert/docs/Migration.md', hash: '3244421341483603138' }, - { file: 'packages/react-components/react-alert/docs/Spec.md', hash: '3535638354464497682' }, - { file: 'packages/react-components/react-alert/etc/react-alert.api.md', hash: '11555109672566503552' }, - { file: 'packages/react-components/react-alert/jest.config.js', hash: '6773733652008972475' }, - { file: 'packages/react-components/react-alert/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-alert/package.json', - hash: '9312706055205409696', - deps: [ - '@fluentui/react-avatar', - '@fluentui/react-button', - 'npm:@fluentui/react-icons', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-alert/project.json', hash: '17708818428810623099' }, - { file: 'packages/react-components/react-alert/src/Alert.ts', hash: '478807590469964963' }, - { - file: 'packages/react-components/react-alert/src/components/Alert/Alert.test.tsx', - hash: '17628692932786280219', - }, - { file: 'packages/react-components/react-alert/src/components/Alert/Alert.tsx', hash: '8611980662277149012' }, - { - file: 'packages/react-components/react-alert/src/components/Alert/Alert.types.ts', - hash: '8366251069357697620', - }, - { file: 'packages/react-components/react-alert/src/components/Alert/index.ts', hash: '11930097802137833911' }, - { - file: 'packages/react-components/react-alert/src/components/Alert/renderAlert.tsx', - hash: '264769270216256867', - }, - { file: 'packages/react-components/react-alert/src/components/Alert/useAlert.tsx', hash: '14231640179437609527' }, - { - file: 'packages/react-components/react-alert/src/components/Alert/useAlertStyles.styles.ts', - hash: '4259845399899254015', - }, - { file: 'packages/react-components/react-alert/src/index.ts', hash: '6190406855358997804' }, - { file: 'packages/react-components/react-alert/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-alert/stories/Alert/AlertAction.stories.tsx', - hash: '8515455195432805008', - }, - { - file: 'packages/react-components/react-alert/stories/Alert/AlertAppearance.stories.tsx', - hash: '4232635026830561594', - }, - { - file: 'packages/react-components/react-alert/stories/Alert/AlertAvatar.stories.tsx', - hash: '11364985778976863191', - }, - { - file: 'packages/react-components/react-alert/stories/Alert/AlertDefault.stories.tsx', - hash: '10864479039782208759', - }, - { file: 'packages/react-components/react-alert/stories/Alert/AlertDescription.md', hash: '3742228099756735432' }, - { - file: 'packages/react-components/react-alert/stories/Alert/AlertIcon.stories.tsx', - hash: '10179515381949480946', - }, - { - file: 'packages/react-components/react-alert/stories/Alert/AlertIntent.stories.tsx', - hash: '8283473983697123165', - }, - { file: 'packages/react-components/react-alert/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-alert/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-alert/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-northstar': [ - { file: 'packages/fluentui/react-northstar/.eslintrc.json', hash: '13803004907869012609' }, - { file: 'packages/fluentui/react-northstar/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-northstar/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-northstar/bundle-size-auditor.config.js', hash: '8028542614695662015' }, - { file: 'packages/fluentui/react-northstar/gulpfile.ts', hash: '14333776487082390359' }, - { file: 'packages/fluentui/react-northstar/jest-setup.js', hash: '17870551335504754824' }, - { file: 'packages/fluentui/react-northstar/jest.config.js', hash: '4825447735539633911' }, - { - file: 'packages/fluentui/react-northstar/package.json', - hash: '499347416330387156', - deps: [ - 'npm:@babel/runtime', - '@fluentui/accessibility', - '@fluentui/dom-utilities', - '@fluentui/react-bindings', - '@fluentui/react-component-event-listener', - '@fluentui/react-component-nesting-registry', - '@fluentui/react-component-ref', - '@fluentui/react-icons-northstar', - '@fluentui/react-northstar-styles-renderer', - '@fluentui/react-portal-compat-context', - '@fluentui/react-proptypes', - '@fluentui/state', - '@fluentui/styles', - 'npm:@popperjs/core', - 'npm:body-scroll-lock', - 'npm:classnames', - 'npm:compute-scroll-into-view', - 'npm:downshift', - 'npm:lodash', - 'npm:prop-types', - 'npm:react-is', - 'npm:react-transition-group', - '@fluentui/a11y-testing', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:@types/classnames', - 'npm:@types/faker', - 'npm:@types/simulant', - 'npm:csstype', - 'npm:faker', - 'npm:fela-tools', - 'npm:lerna-alias', - 'npm:qs', - 'npm:simulant', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-northstar/project.json', hash: '7507003061923116844' }, - { file: 'packages/fluentui/react-northstar/src/components/Accordion/Accordion.tsx', hash: '7847851307995452672' }, - { - file: 'packages/fluentui/react-northstar/src/components/Accordion/AccordionContent.tsx', - hash: '5958238493847788660', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Accordion/AccordionTitle.tsx', - hash: '11415776891352447674', - }, - { file: 'packages/fluentui/react-northstar/src/components/Alert/Alert.tsx', hash: '9224562400260505665' }, - { - file: 'packages/fluentui/react-northstar/src/components/Alert/AlertDismissAction.tsx', - hash: '7141232459421707385', - }, - { file: 'packages/fluentui/react-northstar/src/components/Animation/Animation.tsx', hash: '4846505342841501437' }, - { - file: 'packages/fluentui/react-northstar/src/components/Animation/useAnimationStyles.ts', - hash: '14061391268464766749', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Attachment/Attachment.tsx', - hash: '6863685528312287349', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentAction.tsx', - hash: '9228082367920242983', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentBody.tsx', - hash: '5925296059771866051', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentDescription.tsx', - hash: '6198469028872251324', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentHeader.tsx', - hash: '3372430972652335250', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Attachment/AttachmentIcon.tsx', - hash: '8521330284142418811', - }, - { file: 'packages/fluentui/react-northstar/src/components/Avatar/Avatar.tsx', hash: '748495765262535632' }, - { file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarIcon.tsx', hash: '6356413093529093028' }, - { file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarImage.tsx', hash: '10099046153004731582' }, - { file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarLabel.tsx', hash: '6515048819985511977' }, - { - file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarStatus.tsx', - hash: '12428186955649381416', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarStatusIcon.tsx', - hash: '23743443202367657', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Avatar/AvatarStatusImage.tsx', - hash: '7400669439155618306', - }, - { file: 'packages/fluentui/react-northstar/src/components/Box/Box.tsx', hash: '17633032765631059213' }, - { - file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/Breadcrumb.tsx', - hash: '14104155212011880671', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbDivider.tsx', - hash: '8114640623799863659', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbItem.tsx', - hash: '17240006574900530403', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/BreadcrumbLink.tsx', - hash: '1048134297688410819', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Breadcrumb/breadcrumbContext.ts', - hash: '1438190142722133938', - }, - { file: 'packages/fluentui/react-northstar/src/components/Button/Button.tsx', hash: '4311649433023922831' }, - { - file: 'packages/fluentui/react-northstar/src/components/Button/ButtonContent.tsx', - hash: '3931831893392389213', - }, - { file: 'packages/fluentui/react-northstar/src/components/Button/ButtonGroup.tsx', hash: '7402632697949078434' }, - { file: 'packages/fluentui/react-northstar/src/components/Card/Card.tsx', hash: '9533175431319145381' }, - { file: 'packages/fluentui/react-northstar/src/components/Card/CardBody.tsx', hash: '3806087985347141687' }, - { file: 'packages/fluentui/react-northstar/src/components/Card/CardColumn.tsx', hash: '2871691175852794018' }, - { - file: 'packages/fluentui/react-northstar/src/components/Card/CardExpandableBox.tsx', - hash: '17304646012266738418', - }, - { file: 'packages/fluentui/react-northstar/src/components/Card/CardFooter.tsx', hash: '6069914877925460964' }, - { file: 'packages/fluentui/react-northstar/src/components/Card/CardHeader.tsx', hash: '14899392316230501271' }, - { file: 'packages/fluentui/react-northstar/src/components/Card/CardPreview.tsx', hash: '1386160146759486587' }, - { - file: 'packages/fluentui/react-northstar/src/components/Card/CardTopControls.tsx', - hash: '17777570770525993895', - }, - { file: 'packages/fluentui/react-northstar/src/components/Carousel/Carousel.tsx', hash: '11520270933550892655' }, - { - file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselItem.tsx', - hash: '1704241988545725264', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselNavigation.tsx', - hash: '4510245105983260686', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselNavigationItem.tsx', - hash: '10603463667236101339', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselPaddle.tsx', - hash: '9122961265585463134', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Carousel/CarouselPaddlesContainer.tsx', - hash: '5884466783611926198', - }, - { file: 'packages/fluentui/react-northstar/src/components/Carousel/utils.ts', hash: '6646904547431357450' }, - { file: 'packages/fluentui/react-northstar/src/components/Chat/Chat.tsx', hash: '13880991049888535467' }, - { file: 'packages/fluentui/react-northstar/src/components/Chat/ChatItem.tsx', hash: '1137720096355947257' }, - { file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessage.tsx', hash: '8979923955515009671' }, - { - file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessageContent.tsx', - hash: '2975300193933132172', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessageDetails.tsx', - hash: '10975285986126230325', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessageHeader.tsx', - hash: '4772325511787546898', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Chat/ChatMessageReadStatus.tsx', - hash: '17571050160211548251', - }, - { file: 'packages/fluentui/react-northstar/src/components/Chat/chatContext.ts', hash: '5000819501526969887' }, - { file: 'packages/fluentui/react-northstar/src/components/Chat/chatDensity.ts', hash: '5054885706948365266' }, - { - file: 'packages/fluentui/react-northstar/src/components/Chat/chatItemContext.ts', - hash: '13614626662989007113', - }, - { file: 'packages/fluentui/react-northstar/src/components/Checkbox/Checkbox.tsx', hash: '14439246164524684209' }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/Datepicker.tsx', - hash: '9534980117701527084', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendar.tsx', - hash: '3211241399984334245', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarCell.tsx', - hash: '16785975453348029131', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarCellButton.tsx', - hash: '2761189948651095557', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarGrid.tsx', - hash: '5019574059023183656', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarGridRow.tsx', - hash: '12416200835622390859', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeader.tsx', - hash: '17486710640239626226', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeaderAction.tsx', - hash: '8284481544334173905', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/DatepickerCalendarHeaderCell.tsx', - hash: '8518396826686737330', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/navigateToNewDate.tsx', - hash: '7051424537855326066', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Datepicker/validateDate.tsx', - hash: '9396488240033088261', - }, - { file: 'packages/fluentui/react-northstar/src/components/Debug/Debug.tsx', hash: '14065203870232706053' }, - { - file: 'packages/fluentui/react-northstar/src/components/Debug/DebugComponentViewer.tsx', - hash: '312272768687233713', - }, - { file: 'packages/fluentui/react-northstar/src/components/Debug/DebugLine.tsx', hash: '6997002265541711848' }, - { file: 'packages/fluentui/react-northstar/src/components/Debug/DebugPanel.tsx', hash: '2098947295622538161' }, - { - file: 'packages/fluentui/react-northstar/src/components/Debug/DebugPanelData.tsx', - hash: '8428394548659896147', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Debug/DebugPanelItem.tsx', - hash: '9645300271690604629', - }, - { file: 'packages/fluentui/react-northstar/src/components/Debug/DebugRect.tsx', hash: '16625045838109269939' }, - { file: 'packages/fluentui/react-northstar/src/components/Debug/DebugSelector.tsx', hash: '3361885019360260680' }, - { - file: 'packages/fluentui/react-northstar/src/components/Debug/FiberNavigator.ts', - hash: '10855844848543490871', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Debug/ScrollToBottom.tsx', - hash: '14726500017049937957', - }, - { file: 'packages/fluentui/react-northstar/src/components/Debug/utils.ts', hash: '9684972719826588233' }, - { file: 'packages/fluentui/react-northstar/src/components/Design/Design.tsx', hash: '6229896215043380269' }, - { file: 'packages/fluentui/react-northstar/src/components/Dialog/Dialog.tsx', hash: '18211608977012615962' }, - { file: 'packages/fluentui/react-northstar/src/components/Dialog/DialogFooter.tsx', hash: '1435085386463972271' }, - { file: 'packages/fluentui/react-northstar/src/components/Divider/Divider.tsx', hash: '6350215477669300948' }, - { - file: 'packages/fluentui/react-northstar/src/components/Divider/DividerContent.tsx', - hash: '9591743889610800047', - }, - { file: 'packages/fluentui/react-northstar/src/components/Dropdown/Dropdown.tsx', hash: '13599762255086408029' }, - { - file: 'packages/fluentui/react-northstar/src/components/Dropdown/DropdownItem.tsx', - hash: '3323611497200258084', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Dropdown/DropdownSearchInput.tsx', - hash: '17164119620919997898', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Dropdown/DropdownSelectedItem.tsx', - hash: '2904683542301281280', - }, - { file: 'packages/fluentui/react-northstar/src/components/Embed/Embed.tsx', hash: '12376322776372112440' }, - { file: 'packages/fluentui/react-northstar/src/components/Flex/Flex.tsx', hash: '6982818452667314494' }, - { file: 'packages/fluentui/react-northstar/src/components/Flex/FlexItem.tsx', hash: '7403794678590116362' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/Form.tsx', hash: '8800910644203565529' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormButton.tsx', hash: '6828241720533638517' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormCheckbox.tsx', hash: '8436042708466632685' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormDatepicker.tsx', hash: '9982491292209506743' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormDropdown.tsx', hash: '18343620127439352258' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormField.tsx', hash: '9850188118835358297' }, - { - file: 'packages/fluentui/react-northstar/src/components/Form/FormFieldCustom.tsx', - hash: '16478427839518575650', - }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormInput.tsx', hash: '4163778940666564276' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormLabel.tsx', hash: '17043166478578447646' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormMessage.tsx', hash: '14582622186573458664' }, - { - file: 'packages/fluentui/react-northstar/src/components/Form/FormRadioGroup.tsx', - hash: '13787505355590378398', - }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormSlider.tsx', hash: '2295018312442464350' }, - { file: 'packages/fluentui/react-northstar/src/components/Form/FormTextArea.tsx', hash: '11999103602418495457' }, - { - file: 'packages/fluentui/react-northstar/src/components/Form/utils/formFieldBase.tsx', - hash: '16744216472522332613', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Form/utils/formFieldBaseContext.ts', - hash: '6795608341138352021', - }, - { file: 'packages/fluentui/react-northstar/src/components/Grid/Grid.tsx', hash: '17829217997130257266' }, - { file: 'packages/fluentui/react-northstar/src/components/Header/Header.tsx', hash: '8321592622301865843' }, - { - file: 'packages/fluentui/react-northstar/src/components/Header/HeaderDescription.tsx', - hash: '12329129616562820040', - }, - { file: 'packages/fluentui/react-northstar/src/components/Image/Image.tsx', hash: '11715297073047328469' }, - { file: 'packages/fluentui/react-northstar/src/components/Input/Input.tsx', hash: '17524959832323688861' }, - { file: 'packages/fluentui/react-northstar/src/components/Input/InputLabel.tsx', hash: '3206187582738539858' }, - { - file: 'packages/fluentui/react-northstar/src/components/ItemLayout/ItemLayout.tsx', - hash: '12259100651728852178', - }, - { file: 'packages/fluentui/react-northstar/src/components/Label/Label.tsx', hash: '5574878035520448894' }, - { file: 'packages/fluentui/react-northstar/src/components/Layout/Layout.tsx', hash: '15086000609764124919' }, - { file: 'packages/fluentui/react-northstar/src/components/List/List.tsx', hash: '6719230630130939027' }, - { file: 'packages/fluentui/react-northstar/src/components/List/ListItem.tsx', hash: '10782306238570299215' }, - { file: 'packages/fluentui/react-northstar/src/components/List/ListItemContent.tsx', hash: '48301783195265259' }, - { - file: 'packages/fluentui/react-northstar/src/components/List/ListItemContentMedia.tsx', - hash: '5598481049636795501', - }, - { - file: 'packages/fluentui/react-northstar/src/components/List/ListItemEndMedia.tsx', - hash: '6789731293643721633', - }, - { file: 'packages/fluentui/react-northstar/src/components/List/ListItemHeader.tsx', hash: '7891876198223932068' }, - { - file: 'packages/fluentui/react-northstar/src/components/List/ListItemHeaderMedia.tsx', - hash: '17353093073515839995', - }, - { file: 'packages/fluentui/react-northstar/src/components/List/ListItemMedia.tsx', hash: '1839407672304566822' }, - { file: 'packages/fluentui/react-northstar/src/components/List/listContext.ts', hash: '5582826283619864480' }, - { file: 'packages/fluentui/react-northstar/src/components/Loader/Loader.tsx', hash: '15483985739222235559' }, - { file: 'packages/fluentui/react-northstar/src/components/Menu/Menu.tsx', hash: '12313766017894638815' }, - { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuDivider.tsx', hash: '17427088955008148713' }, - { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItem.tsx', hash: '11169096155311292931' }, - { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItemContent.tsx', hash: '157525961668173349' }, - { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItemIcon.tsx', hash: '762586184035746897' }, - { - file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItemIndicator.tsx', - hash: '6320687466613633373', - }, - { file: 'packages/fluentui/react-northstar/src/components/Menu/MenuItemWrapper.tsx', hash: '782835574565158855' }, - { file: 'packages/fluentui/react-northstar/src/components/Menu/menuContext.ts', hash: '15576168683242631358' }, - { - file: 'packages/fluentui/react-northstar/src/components/MenuButton/MenuButton.tsx', - hash: '17186151859409294592', - }, - { - file: 'packages/fluentui/react-northstar/src/components/MenuButton/focusUtils.ts', - hash: '4021202567179231632', - }, - { file: 'packages/fluentui/react-northstar/src/components/Pill/Pill.tsx', hash: '6737044775224698236' }, - { file: 'packages/fluentui/react-northstar/src/components/Pill/PillAction.tsx', hash: '16439491134552422595' }, - { file: 'packages/fluentui/react-northstar/src/components/Pill/PillContent.tsx', hash: '15130144542802390574' }, - { file: 'packages/fluentui/react-northstar/src/components/Pill/PillGroup.tsx', hash: '2031881207353659816' }, - { file: 'packages/fluentui/react-northstar/src/components/Pill/PillIcon.tsx', hash: '2997520707141875519' }, - { file: 'packages/fluentui/react-northstar/src/components/Pill/PillImage.tsx', hash: '10744709375563168633' }, - { file: 'packages/fluentui/react-northstar/src/components/Pill/pillContext.ts', hash: '2505511281109627168' }, - { file: 'packages/fluentui/react-northstar/src/components/Popup/Popup.tsx', hash: '2116950962772469808' }, - { file: 'packages/fluentui/react-northstar/src/components/Popup/PopupContent.tsx', hash: '13214942977844333994' }, - { file: 'packages/fluentui/react-northstar/src/components/Portal/Portal.tsx', hash: '4059113526247197181' }, - { file: 'packages/fluentui/react-northstar/src/components/Portal/PortalInner.tsx', hash: '15771138805122631486' }, - { file: 'packages/fluentui/react-northstar/src/components/Portal/usePortalBox.ts', hash: '7292873357741174388' }, - { file: 'packages/fluentui/react-northstar/src/components/Provider/Provider.tsx', hash: '17319200045661840105' }, - { - file: 'packages/fluentui/react-northstar/src/components/Provider/ProviderConsumer.tsx', - hash: '9577051673823507002', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Provider/portalContext.ts', - hash: '2790279822616713840', - }, - { - file: 'packages/fluentui/react-northstar/src/components/RadioGroup/RadioGroup.tsx', - hash: '8185987492309397036', - }, - { - file: 'packages/fluentui/react-northstar/src/components/RadioGroup/RadioGroupItem.tsx', - hash: '17763337922187266080', - }, - { file: 'packages/fluentui/react-northstar/src/components/Reaction/Reaction.tsx', hash: '9855657459992333918' }, - { - file: 'packages/fluentui/react-northstar/src/components/Reaction/ReactionGroup.tsx', - hash: '12898639338834562081', - }, - { file: 'packages/fluentui/react-northstar/src/components/Segment/Segment.tsx', hash: '10802148962264378566' }, - { file: 'packages/fluentui/react-northstar/src/components/Skeleton/Skeleton.tsx', hash: '9194215087688328488' }, - { - file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonAvatar.tsx', - hash: '1752780832066126053', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonButton.tsx', - hash: '13776964169747188024', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonInput.tsx', - hash: '10520006317011318873', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonLine.tsx', - hash: '6189182797866988357', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonShape.tsx', - hash: '12564093305001034373', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Skeleton/SkeletonText.tsx', - hash: '16689091522861482541', - }, - { file: 'packages/fluentui/react-northstar/src/components/Slider/Slider.tsx', hash: '12542593756393248009' }, - { - file: 'packages/fluentui/react-northstar/src/components/SplitButton/SplitButton.tsx', - hash: '4787098714518653252', - }, - { - file: 'packages/fluentui/react-northstar/src/components/SplitButton/SplitButtonDivider.tsx', - hash: '175848223623461295', - }, - { - file: 'packages/fluentui/react-northstar/src/components/SplitButton/SplitButtonToggle.tsx', - hash: '2707343881608045507', - }, - { file: 'packages/fluentui/react-northstar/src/components/Status/Status.tsx', hash: '10821702057553428900' }, - { file: 'packages/fluentui/react-northstar/src/components/SvgIcon/SvgIcon.tsx', hash: '3109903244853284027' }, - { file: 'packages/fluentui/react-northstar/src/components/Table/Table.tsx', hash: '778871863897788019' }, - { file: 'packages/fluentui/react-northstar/src/components/Table/TableCell.tsx', hash: '8238803278213630517' }, - { file: 'packages/fluentui/react-northstar/src/components/Table/TableRow.tsx', hash: '6734512422896790121' }, - { file: 'packages/fluentui/react-northstar/src/components/Text/Text.tsx', hash: '9973884439099941954' }, - { file: 'packages/fluentui/react-northstar/src/components/TextArea/TextArea.tsx', hash: '5641130885212054333' }, - { file: 'packages/fluentui/react-northstar/src/components/Toolbar/Toolbar.tsx', hash: '11935729523711567724' }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarCustomItem.tsx', - hash: '1279085528159215065', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarDivider.tsx', - hash: '5043878662361527710', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItem.tsx', - hash: '12695800097714476460', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItemIcon.tsx', - hash: '16151370246926301063', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarItemWrapper.tsx', - hash: '9012982409637720351', - }, - { file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenu.tsx', hash: '6478316462425984571' }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuDivider.tsx', - hash: '6546410737380971683', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItem.tsx', - hash: '15769073730736985424', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemActiveIndicator.tsx', - hash: '14041778004530243120', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemContent.tsx', - hash: '3998710959312647803', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemIcon.tsx', - hash: '16155135638075618501', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItemSubmenuIndicator.tsx', - hash: '13302511047352503675', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuRadioGroup.tsx', - hash: '5603033942394130558', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuRadioGroupWrapper.tsx', - hash: '8466623792113768046', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/ToolbarRadioGroup.tsx', - hash: '3123593901161826064', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/toolbarMenuContext.ts', - hash: '1238926081544242605', - }, - { - file: 'packages/fluentui/react-northstar/src/components/Toolbar/toolbarVariablesContext.ts', - hash: '13932160866218966251', - }, - { file: 'packages/fluentui/react-northstar/src/components/Tooltip/Tooltip.tsx', hash: '13070181950608226518' }, - { - file: 'packages/fluentui/react-northstar/src/components/Tooltip/TooltipContent.tsx', - hash: '4939757598129192274', - }, - { file: 'packages/fluentui/react-northstar/src/components/Tree/Tree.tsx', hash: '12771547015248644605' }, - { file: 'packages/fluentui/react-northstar/src/components/Tree/TreeItem.tsx', hash: '15202258227432023831' }, - { file: 'packages/fluentui/react-northstar/src/components/Tree/TreeTitle.tsx', hash: '16953890156543402421' }, - { file: 'packages/fluentui/react-northstar/src/components/Tree/context.ts', hash: '8437912965928316617' }, - { - file: 'packages/fluentui/react-northstar/src/components/Tree/hooks/flattenTree.ts', - hash: '4113590590764830277', - }, - { file: 'packages/fluentui/react-northstar/src/components/Tree/hooks/useTree.ts', hash: '6320206367937777801' }, - { - file: 'packages/fluentui/react-northstar/src/components/Tree/hooks/useVirtualTree.ts', - hash: '9631571422855687019', - }, - { file: 'packages/fluentui/react-northstar/src/components/Video/Video.tsx', hash: '18023367418046249698' }, - { file: 'packages/fluentui/react-northstar/src/index.ts', hash: '6778225692631498331' }, - { file: 'packages/fluentui/react-northstar/src/styles/debugStyles.ts', hash: '7688079653834349124' }, - { file: 'packages/fluentui/react-northstar/src/styles/translateAlignProp.ts', hash: '752370909825380216' }, - { file: 'packages/fluentui/react-northstar/src/themes/colorUtils.ts', hash: '8838768133109851282' }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/animations/durations.ts', - hash: '14771948159306756204', - }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/animations/fade.ts', hash: '14454986281428325810' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/animations/index.ts', hash: '5678496085930231257' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/animations/scale.ts', hash: '5109538634901918243' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/animations/slide.ts', hash: '14163477310393579173' }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/animations/timingFunctions.ts', - hash: '14028571513420355031', - }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/categoryColors.ts', hash: '15037112319325605062' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/colors.ts', hash: '9976161978364344114' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/componentStyles.ts', hash: '16362963385923622430' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/componentVariables.ts', hash: '6218887021869389764' }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionContentStyles.ts', - hash: '17970759815785909371', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionStyles.ts', - hash: '10413457414052477945', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionTitleStyles.ts', - hash: '295522687558612603', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionTitleVariables.ts', - hash: '3774561873064648852', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/accordionVariables.ts', - hash: '2912430932263239034', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Accordion/activeIndicatorUrl.ts', - hash: '16959025885783912107', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertDismissActionStyles.ts', - hash: '8883629395591772539', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertDismissActionVariables.ts', - hash: '10804710916761328142', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertStyles.ts', - hash: '4347489529828032292', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/alertVariables.ts', - hash: '12020207677689671077', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Alert/dismissIndicatorUrl.ts', - hash: '17196885391107542824', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentActionStyles.ts', - hash: '3122251545754751723', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentActionVariables.ts', - hash: '596237278780895444', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentBodyStyles.ts', - hash: '1236954075014915745', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentBodyVariables.ts', - hash: '12990805591124852936', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionStyles.ts', - hash: '14860428913123777034', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionVariables.ts', - hash: '12291059340948640249', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentHeaderStyles.ts', - hash: '12349457700947533899', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentHeaderVariables.ts', - hash: '4518110835309799445', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentIconStyles.ts', - hash: '11569135969451134352', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentIconVariables.ts', - hash: '9483175780455240001', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentStyles.ts', - hash: '15779846505997170050', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentVariables.ts', - hash: '3257016234041658496', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarIconStyles.ts', - hash: '4028758838427045017', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarIconVariables.ts', - hash: '2591587808385506936', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarImageStyles.ts', - hash: '96468916043586572', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarImageVariables.ts', - hash: '364078636829947123', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarLabelStyles.ts', - hash: '13782254950157830747', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarLabelVariables.ts', - hash: '15759326830419612042', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarSizes.ts', - hash: '17627426635900559520', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusIconStyles.ts', - hash: '7312150310195387786', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusIconVariables.ts', - hash: '17985283974275043652', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusImageStyles.ts', - hash: '17469601204550358676', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusImageVariables.ts', - hash: '11925769658427898988', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusStyles.ts', - hash: '332835912119700268', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStatusVariables.ts', - hash: '2572589371592075388', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarStyles.ts', - hash: '7585220263493020546', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Avatar/avatarVariables.ts', - hash: '1013220856886105656', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbDividerStyles.ts', - hash: '4926331907265324786', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbDividerVariables.ts', - hash: '796340858591518739', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbItemStyles.ts', - hash: '13388667582142870191', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbItemVariables.ts', - hash: '18399125144127877635', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbLinkStyles.ts', - hash: '15716129793825526055', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbLinkVariables.ts', - hash: '10738404229116591081', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbStyles.ts', - hash: '4179557242661646205', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Breadcrumb/breadcrumbVariables.ts', - hash: '17363705806688584245', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonContentStyles.ts', - hash: '4077583070496852803', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonContentVariables.ts', - hash: '3289841248962264502', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonGroupStyles.ts', - hash: '9666507498286403452', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonGroupVariables.ts', - hash: '10499263055740846178', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonStyles.ts', - hash: '17973504828742089357', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Button/buttonVariables.ts', - hash: '2640286218711607201', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardBodyStyles.ts', - hash: '14909172558254849017', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardBodyVariables.ts', - hash: '2437497254977026043', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardExpandableBoxStyles.ts', - hash: '980512905984835656', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardExpandableBoxVariables.ts', - hash: '7021338153745781003', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardFooterStyles.ts', - hash: '17580288039580491037', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardFooterVariables.ts', - hash: '12358596455283625937', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardHeaderStyles.ts', - hash: '14086292031994645477', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardHeaderVariables.ts', - hash: '2022030864723901395', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardPreviewStyles.ts', - hash: '5004518115363761937', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardPreviewVariables.ts', - hash: '16953706850035132585', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardStyles.ts', - hash: '8302957385846401488', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardTopControlsStyles.ts', - hash: '13727651601497210158', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardTopControlsVariables.ts', - hash: '16228876906977315452', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Card/cardVariables.ts', - hash: '16781711713357575232', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselItemStyles.ts', - hash: '11574307512058055804', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselItemVariables.ts', - hash: '1924793607788525017', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationItemStyles.ts', - hash: '10541311879922069072', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationItemVariables.ts', - hash: '17505837565706332131', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationStyles.ts', - hash: '17465257619175089673', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselNavigationVariables.ts', - hash: '14862644286814505112', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddleStyles.ts', - hash: '15768400598026354031', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddleVariables.ts', - hash: '7026837716515901632', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddlesContainerStyles.ts', - hash: '1218307281472286341', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselPaddlesContainerVariables.ts', - hash: '13329330458608992530', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselStyles.ts', - hash: '7060921143444106976', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/carouselVariables.ts', - hash: '11487998778791836037', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Carousel/paddleIndicatorUrl.ts', - hash: '8627628437681655368', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStyles.ts', - hash: '1582706642481936333', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStylesComfy.ts', - hash: '11386244492140747182', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemStylesCompact.ts', - hash: '5016674558785701877', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatItemVariables.ts', - hash: '16688620331680813181', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageContentStyles.ts', - hash: '11540241569015783983', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageContentVariables.ts', - hash: '5708450603124165917', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageDetailsStyles.ts', - hash: '6048357409017311258', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageDetailsVariables.ts', - hash: '16718678480987624974', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageReadStatusStyles.ts', - hash: '5475193133926447801', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageReadStatusVariables.ts', - hash: '15740441158743863734', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStyles.ts', - hash: '17222338827680820446', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesComfy.ts', - hash: '16595188472100188261', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesComfyRefresh.ts', - hash: '4128950085386110082', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageStylesCompact.ts', - hash: '757629473240833905', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatMessageVariables.ts', - hash: '8007373764332878604', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatStyles.ts', - hash: '15390513661512796187', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Chat/chatVariables.ts', - hash: '6419897043496563561', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxIndeterminateIndicatorUrl.ts', - hash: '12604005374596722201', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxIndicatorUrl.ts', - hash: '2353877159274223154', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxStyles.ts', - hash: '7878158666403457041', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Checkbox/checkboxVariables.ts', - hash: '364391724717931561', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellButtonStyles.ts', - hash: '3176373166612231046', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellButtonVariables.ts', - hash: '15696217644406185001', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellStyles.ts', - hash: '3042327811010476138', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarCellVariables.ts', - hash: '4640561316133584018', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridRowStyles.ts', - hash: '16537271159983756821', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridRowVariables.ts', - hash: '9947680763140590997', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridStyles.ts', - hash: '15005502310321623331', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarGridVariables.ts', - hash: '2746967052288976729', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderCellStyles.ts', - hash: '16834387999097607022', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderCellVariables.ts', - hash: '5137706892589995908', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderStyles.ts', - hash: '3409270825204207165', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarHeaderVariables.ts', - hash: '17773754208072779203', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarStyles.ts', - hash: '11348966078360204974', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerCalendarVariables.ts', - hash: '17049658367728325474', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerStyles.ts', - hash: '11904634714735254465', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Datepicker/datepickerVariables.ts', - hash: '1230329683489056098', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogFooterStyles.ts', - hash: '8619218828106996268', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogStyles.ts', - hash: '8701768500376985092', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dialog/dialogVariables.ts', - hash: '14149951396267779743', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerContentStyles.ts', - hash: '7008797215036081870', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerStyles.ts', - hash: '13628850534872246317', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Divider/dividerVariables.ts', - hash: '6700241170430353431', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/checkableIndicatorUrl.ts', - hash: '8426540039198534384', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownItemStyles.ts', - hash: '452058418927530843', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownItemVariables.ts', - hash: '12518581659264948700', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSearchInputStyles.ts', - hash: '17403407436454230120', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSearchInputVariables.ts', - hash: '4778959973055463483', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSelectedItemStyles.ts', - hash: '5036604166569706092', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownSelectedItemVariables.ts', - hash: '14555252578886112431', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownStyles.ts', - hash: '12075814017562592102', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Dropdown/dropdownVariables.ts', - hash: '11773654079465347425', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Embed/embedStyles.ts', - hash: '11157393565182874186', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Embed/embedVariables.ts', - hash: '10946929391434652119', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Embed/pauseIndicatorUrl.ts', - hash: '14163463494638038708', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Embed/playIndicatorUrl.ts', - hash: '1165694472322477497', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexItemStyles.ts', - hash: '2381351329806131630', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexItemVariables.ts', - hash: '11530360091302042085', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexStyles.ts', - hash: '5534555220898109500', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/flexVariables.ts', - hash: '5828825052348643989', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Flex/utils.ts', - hash: '4853854352747265011', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formFieldStyles.ts', - hash: '17727513840262178993', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formFieldVariables.ts', - hash: '18442808810925646135', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formLabelStyles.ts', - hash: '6489034326455172577', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formLabelVariables.ts', - hash: '9967727401450345621', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formMessageStyles.ts', - hash: '11729883337119568865', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formMessageVariables.ts', - hash: '8869872308474735363', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formStyles.ts', - hash: '14707309113461419683', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Form/formVariables.tsx', - hash: '2786566580798801176', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Grid/gridStyles.ts', - hash: '10049913074815360538', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Grid/gridVariables.ts', - hash: '12210096003294268830', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Header/headerDescriptionStyles.ts', - hash: '11898695898065277973', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Header/headerDescriptionVariables.ts', - hash: '3619509329923923644', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Header/headerStyles.ts', - hash: '16835135212128136021', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Header/headerVariables.ts', - hash: '7758571779047444865', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Image/imageStyles.ts', - hash: '17845919072455127529', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Image/imageVariables.ts', - hash: '1845819916963201984', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Input/inputLabelStyles.ts', - hash: '15104638982297733077', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Input/inputLabelVariables.ts', - hash: '11133331271628197753', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Input/inputStyles.ts', - hash: '16976371114124373927', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Input/inputVariables.ts', - hash: '11698651023241377505', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/ItemLayout/itemLayoutStyles.ts', - hash: '100148364675088556', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/ItemLayout/itemLayoutVariables.ts', - hash: '14521132758200335944', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Label/labelStyles.ts', - hash: '14608065136488682405', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Label/labelVariables.ts', - hash: '7479397155226657895', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Layout/layoutStyles.ts', - hash: '13744831783491541854', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Layout/layoutVariables.ts', - hash: '7302828397390671261', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentMediaStyles.ts', - hash: '1727630438167673409', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentMediaVariables.ts', - hash: '6423418385782322076', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentStyles.ts', - hash: '7860236970815947468', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemContentVariables.ts', - hash: '17891798796238203862', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemEndMediaStyles.ts', - hash: '246926601143118644', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemEndMediaVariables.ts', - hash: '7729472269563542419', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderMediaStyles.ts', - hash: '12777502619116582480', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderMediaVariables.ts', - hash: '7507427195942104304', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderStyles.ts', - hash: '14906219517476433568', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemHeaderVariables.ts', - hash: '12344372430050573068', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemMediaStyles.ts', - hash: '17898380125799493607', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemMediaVariables.ts', - hash: '6861309937633703425', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemStyles.ts', - hash: '205333425101367318', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listItemVariables.ts', - hash: '7222413230872375070', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/List/listStyles.ts', - hash: '5463710304513147120', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Loader/loaderStyles.ts', - hash: '5135493479101604144', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Loader/loaderVariables.ts', - hash: '1883827659536054756', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuDividerStyles.ts', - hash: '15828338080211425311', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuDividerVariables.ts', - hash: '11560978881139451417', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemContentStyles.ts', - hash: '1918897226975957072', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemContentVariables.ts', - hash: '621507624809262373', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIconStyles.ts', - hash: '1657821507101974044', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIconVariables.ts', - hash: '6954194845806585307', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIndicatorStyles.ts', - hash: '4334389388364090134', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemIndicatorVariables.ts', - hash: '8707343247379130288', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemStyles.ts', - hash: '10906382449999724608', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemVariables.ts', - hash: '9114105854017503869', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemWrapperStyles.ts', - hash: '6570713768429180434', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuItemWrapperVariables.ts', - hash: '6034023239339142317', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuStyles.ts', - hash: '11330709786324826763', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/menuVariables.ts', - hash: '12202973407267122016', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Menu/submenuIndicatorDirection.ts', - hash: '16676013216713793391', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/MenuButton/menuButtonStyles.ts', - hash: '14056489040055258236', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillActionStyles.ts', - hash: '8218667687715450430', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillContentStyles.ts', - hash: '5988198946627089021', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillGroupStyles.ts', - hash: '14234046157967030444', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillIconStyles.ts', - hash: '4833084607297422898', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillImageStyles.ts', - hash: '5722176440840103726', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillStyles.ts', - hash: '7875089542439177635', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Pill/pillVariables.ts', - hash: '16970434371176489441', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Popup/popupContentStyles.ts', - hash: '11551065107006703006', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Popup/popupContentVariables.ts', - hash: '15155299609498501605', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Provider/providerStyles.ts', - hash: '12246946909178636635', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Provider/providerVariables.ts', - hash: '4237050843596393851', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupItemStyles.ts', - hash: '11733141247895106973', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupItemVariables.ts', - hash: '1410963406810642414', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/RadioGroup/radioGroupStyles.ts', - hash: '11216109689208890084', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionGroupStyles.ts', - hash: '15600202085985659691', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionGroupVariables.ts', - hash: '18279501337260248711', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionStyles.ts', - hash: '16702933675759395312', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Reaction/reactionVariables.ts', - hash: '2326991576926697453', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Segment/segmentStyles.ts', - hash: '6018260944382324087', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Segment/segmentVariables.ts', - hash: '2340445252375615581', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonAvatarStyles.ts', - hash: '4671061646797557270', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonAvatarVariables.ts', - hash: '14164441955309142561', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonButtonStyles.ts', - hash: '11213343765328628389', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonButtonVariables.ts', - hash: '14164441955309142561', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonInputStyles.ts', - hash: '9558645324788876370', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonInputVariables.ts', - hash: '14164441955309142561', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonLineStyles.ts', - hash: '72797108529890029', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonLineVariables.ts', - hash: '14164441955309142561', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonShapeStyles.ts', - hash: '10985309027364307359', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonShapeVariables.ts', - hash: '14164441955309142561', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonStyles.ts', - hash: '11582752166254840270', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonTextStyles.ts', - hash: '10892819700266300746', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonTextVariables.ts', - hash: '14164441955309142561', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/skeletonVariables.ts', - hash: '12261413425486166426', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/utils/animations.ts', - hash: '1544522978559374540', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Skeleton/utils/keyframes.ts', - hash: '10955688557993146324', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Slider/sliderStyles.ts', - hash: '6775086548562939701', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Slider/sliderVariables.ts', - hash: '12781842405418282858', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonDividerStyles.ts', - hash: '14170254709512265654', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonDividerVariables.ts', - hash: '13873446195431433000', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonStyles.ts', - hash: '11310296505673783875', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonToggleStyles.ts', - hash: '140511560137775517', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonToggleVariables.ts', - hash: '9706228838613710649', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/splitButtonVariables.ts', - hash: '14969065795237070330', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SplitButton/toggleIndicatorUrl.ts', - hash: '17515531167061030155', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Status/statusStyles.ts', - hash: '7498377440803947079', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Status/statusVariables.ts', - hash: '5995887502689944116', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SvgIcon/svgIconStyles.ts', - hash: '13789787697452677280', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/SvgIcon/svgIconVariables.ts', - hash: '16830963035373843584', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableCellStyles.ts', - hash: '9998047582789173077', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableCellVariables.ts', - hash: '17179676172813842787', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableRowStyles.ts', - hash: '569206166407569943', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableRowVariables.ts', - hash: '7014195797531800777', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableStyles.ts', - hash: '11099077070308203536', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Table/tableVariables.ts', - hash: '14836140358238840768', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Text/textStyles.ts', - hash: '13098771883429361252', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Text/textVariables.ts', - hash: '7484315766041928064', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/TextArea/textAreaStyles.ts', - hash: '12699271763260628640', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/TextArea/textAreaVariables.ts', - hash: '7855750672377342463', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/activeIndicatorUrl.ts', - hash: '2132244196695703598', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarCustomItemStyles.ts', - hash: '11824158878246713951', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarCustomItemVariables.ts', - hash: '17800092133851657140', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarDividerStyles.ts', - hash: '9220078841634176508', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarDividerVariables.ts', - hash: '13693107050922161757', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarItemStyles.ts', - hash: '3328062806257722365', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarItemVariables.ts', - hash: '17798359867619653287', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuDividerStyles.ts', - hash: '18250406595810300819', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuDividerVariables.ts', - hash: '13636735754107782600', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemActiveIndicatorStyles.ts', - hash: '17858199384397461495', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemActiveIndicatorVariables.ts', - hash: '4530719691202493349', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemIconStyles.ts', - hash: '17700533519447906336', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemIconVariables.ts', - hash: '5608597360865866046', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemStyles.ts', - hash: '5949064902679255671', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemSubmenuIndicatorStyles.ts', - hash: '15101458209206663075', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemSubmenuIndicatorVariables.ts', - hash: '17449689611987700443', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuItemVariables.ts', - hash: '8470828041757837184', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupStyles.ts', - hash: '15990216618563936162', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupVariables.ts', - hash: '17782808359179237346', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupWrapperStyles.ts', - hash: '8420482674146878097', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuRadioGroupWrapperVariables.ts', - hash: '6053349822566342387', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuStyles.ts', - hash: '8946254653014395366', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarMenuVariables.ts', - hash: '6550857273809841135', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarRadioGroupStyles.ts', - hash: '14314529550618535408', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarStyles.ts', - hash: '9226371412509812252', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Toolbar/toolbarVariables.ts', - hash: '3149192147963050155', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tooltip/tooltipContentStyles.ts', - hash: '16289553962671155894', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tooltip/tooltipContentVariables.ts', - hash: '4629835890193990737', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/checkboxIndicatorIndeterminatedUrl.ts', - hash: '16599601719567193527', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeItemStyles.ts', - hash: '12208941305020675428', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeStyles.ts', - hash: '8258447660898337239', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeTitleStyles.ts', - hash: '14461539179534007204', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Tree/treeTitleVariables.ts', - hash: '10503889573482266724', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Video/videoStyles.ts', - hash: '10973700802785870748', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/components/Video/videoVariables.ts', - hash: '7696286689663916995', - }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/fontFaces.ts', hash: '5974686039723308038' }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/getBorderFocusStyles.ts', - hash: '9125604089500988430', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/getIconFillOrOutlineStyles.ts', - hash: '8643445364266943120', - }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/getPointerStyles.ts', hash: '4467874883863290210' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/index.tsx', hash: '1581374776596636836' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/pointerSvgUrl.ts', hash: '2857368959516864884' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/siteVariables.ts', hash: '14661460717873001608' }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/staticStyles/globalStyles.ts', - hash: '15748922728945704003', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/staticStyles/index.ts', - hash: '12265298600364461032', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams/staticStyles/normalizeCSS.ts', - hash: '17217307756892067800', - }, - { file: 'packages/fluentui/react-northstar/src/themes/teams/types.ts', hash: '7556703929819539276' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams-dark/colors.ts', hash: '14687655991173518735' }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/componentVariables.ts', - hash: '2041102859363169439', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Avatar/avatarVariables.ts', - hash: '7485469476929669546', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Chat/chatMessageVariables.ts', - hash: '10541089496613679112', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Datepicker/datepickerCalendarCellButtonVariables.ts', - hash: '13743134975937251199', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Datepicker/datepickerCalendarCellVariables.ts', - hash: '13635538325655268603', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Dialog/dialogVariables.ts', - hash: '16661416746382876765', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Divider/dividerVariables.ts', - hash: '457606091003616472', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Header/headerDescriptionVariables.ts', - hash: '13740213389422477604', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Header/headerVariables.ts', - hash: '15951103257039214959', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Label/labelVariables.ts', - hash: '12614290507403279127', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuDividerVariables.ts', - hash: '11560978881139451417', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemContentVariables.ts', - hash: '621507624809262373', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemIconVariables.ts', - hash: '6954194845806585307', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemIndicatorVariables.ts', - hash: '8707343247379130288', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemVariables.ts', - hash: '9114105854017503869', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuItemWrapperVariables.ts', - hash: '6034023239339142317', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Menu/menuVariables.ts', - hash: '18299115008131538027', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Provider/providerVariables.ts', - hash: '8926038134835895724', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/RadioGroup/radioGroupItemVariables.ts', - hash: '2019025478424256877', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Reaction/reactionVariables.ts', - hash: '7086243477847928114', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Segment/segmentVariables.ts', - hash: '3470197313996434519', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/SplitButton/splitButtonVariables.ts', - hash: '4894562380788390580', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/SvgIcon/svgIconVariables.ts', - hash: '10250719142105668304', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/components/Text/textVariables.ts', - hash: '7219713579841817306', - }, - { file: 'packages/fluentui/react-northstar/src/themes/teams-dark/index.ts', hash: '8831629279983580483' }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark/siteVariables.ts', - hash: '13865421087482632956', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/componentVariables.ts', - hash: '33620482670618895', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Chat/chatMessageDetailsVariables.ts', - hash: '10294568132566105829', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Chat/chatMessageVariables.ts', - hash: '12838676128597460041', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Datepicker/datepickerCalendarCellButtonVariables.ts', - hash: '17272841726990664443', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Dialog/dialogVariables.ts', - hash: '12638905351755113117', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/components/Text/textVariables.ts', - hash: '6345058832963791127', - }, - { file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/index.ts', hash: '9797885670991484222' }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-dark-v2/siteVariables.ts', - hash: '9936863096117855431', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/componentStyles.ts', - hash: '2359425232917487546', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/componentVariables.ts', - hash: '1708402668906207631', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Button/buttonStyles.ts', - hash: '7008985540648425028', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Checkbox/checkboxStyles.ts', - hash: '15138412880018022295', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarCellButtonStyles.ts', - hash: '7870619796997738972', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarCellStyles.ts', - hash: '6206233104341220487', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Datepicker/datepickerCalendarGridRowStyles.ts', - hash: '2119543217722202588', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Dropdown/dropdownItemStyles.ts', - hash: '4165428385506424575', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Embed/embedVariables.ts', - hash: '7897291940205825257', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Menu/menuItemWrapperStyles.ts', - hash: '13211947306758208686', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Slider/sliderStyles.ts', - hash: '2080253347622693642', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SplitButton/splitButtonDividerStyles.ts', - hash: '5778044792599420671', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SplitButton/splitButtonToggleStyles.ts', - hash: '12593872137564797775', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/SvgIcon/svgIconStyles.ts', - hash: '1467745510690848118', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/components/Toolbar/toolbarItemStyles.ts', - hash: '6529203507339313836', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-forced-colors/index.ts', - hash: '13828693508172020337', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/colors.ts', - hash: '13380170100585365255', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/componentVariables.ts', - hash: '12850886699449788115', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Avatar/avatarVariables.ts', - hash: '5929945505833645363', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Button/buttonVariables.ts', - hash: '4230100176295354725', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Card/cardVariables.ts', - hash: '4441392006693378487', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Chat/chatMessageVariables.ts', - hash: '10277153225320233374', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Chat/chatVariables.ts', - hash: '15428558076173865476', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Checkbox/checkboxVariables.ts', - hash: '1438647470493103546', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarCellButtonVariables.ts', - hash: '5108786434431634510', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarCellVariables.ts', - hash: '15882597416321592805', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Datepicker/datepickerCalendarGridRowVariables.ts', - hash: '3274762635991417057', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dialog/dialogVariables.ts', - hash: '800524904879833383', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Divider/dividerVariables.ts', - hash: '7016648034119248666', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownItemVariables.ts', - hash: '12518581659264948700', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownSelectedItemVariables.ts', - hash: '14555252578886112431', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Dropdown/dropdownVariables.ts', - hash: '13983034283305393777', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Embed/embedVariables.ts', - hash: '13092970836696786627', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Header/headerVariables.ts', - hash: '8503267197439685170', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Input/inputVariables.ts', - hash: '520353307861641229', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Label/labelVariables.ts', - hash: '11589864746261847205', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Loader/loaderVariables.ts', - hash: '9405199539273439418', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuDividerVariables.ts', - hash: '11560978881139451417', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemContentVariables.ts', - hash: '621507624809262373', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemIconVariables.ts', - hash: '6954194845806585307', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemIndicatorVariables.ts', - hash: '8707343247379130288', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemVariables.ts', - hash: '9114105854017503869', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuItemWrapperVariables.ts', - hash: '6034023239339142317', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Menu/menuVariables.ts', - hash: '1277746220742188888', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Provider/providerVariables.ts', - hash: '10571309971208651489', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/RadioGroup/radioGroupItemVariables.ts', - hash: '1439639555343322710', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Reaction/reactionVariables.ts', - hash: '5062189662819961655', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Segment/segmentVariables.ts', - hash: '14062126404753888651', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/SplitButton/splitButtonVariables.ts', - hash: '2324856329243342733', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Text/textVariables.ts', - hash: '7369839868744494882', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/TextArea/textAreaVariables.ts', - hash: '5737337775538968850', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarCustomItemVariables.ts', - hash: '17800092133851657140', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarDividerVariables.ts', - hash: '13693107050922161757', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarItemVariables.ts', - hash: '17798359867619653287', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuDividerVariables.ts', - hash: '13636735754107782600', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemActiveIndicatorVariables.ts', - hash: '4530719691202493349', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemIconVariables.ts', - hash: '5608597360865866046', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemSubmenuIndicatorVariables.ts', - hash: '17449689611987700443', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuItemVariables.ts', - hash: '8470828041757837184', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuRadioGroupVariables.ts', - hash: '17782808359179237346', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuRadioGroupWrapperVariables.ts', - hash: '6053349822566342387', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarMenuVariables.ts', - hash: '6550857273809841135', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Toolbar/toolbarVariables.ts', - hash: '15415334169765226340', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/components/Tooltip/tooltipContentVariables.ts', - hash: '11033527039317202465', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/index.ts', - hash: '10952774136721087966', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-high-contrast/siteVariables.ts', - hash: '4549791645439227052', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-v2/componentVariables.ts', - hash: '15533000153074961336', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-v2/components/Chat/chatMessageDetailsVariables.ts', - hash: '10294568132566105829', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-v2/components/Chat/chatMessageVariables.ts', - hash: '4391401100274700451', - }, - { - file: 'packages/fluentui/react-northstar/src/themes/teams-v2/components/Text/textVariables.ts', - hash: '6345058832963791127', - }, - { file: 'packages/fluentui/react-northstar/src/themes/teams-v2/index.ts', hash: '4177525779689153766' }, - { file: 'packages/fluentui/react-northstar/src/themes/teams-v2/siteVariables.ts', hash: '17867815598183882592' }, - { file: 'packages/fluentui/react-northstar/src/themes/types.ts', hash: '4007152926719875180' }, - { file: 'packages/fluentui/react-northstar/src/types.ts', hash: '8034626796951276018' }, - { - file: 'packages/fluentui/react-northstar/src/utils/accessibility/FocusHandling/FocusContainer.ts', - hash: '8373133028965064743', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/accessibility/Styles/accessibilityStyles.ts', - hash: '3664069971041003478', - }, - { file: 'packages/fluentui/react-northstar/src/utils/commonPropInterfaces.ts', hash: '1867192726082976183' }, - { file: 'packages/fluentui/react-northstar/src/utils/commonPropTypes.ts', hash: '9865645421311194631' }, - { file: 'packages/fluentui/react-northstar/src/utils/constants.ts', hash: '16875657864767821301' }, - { file: 'packages/fluentui/react-northstar/src/utils/createComponent.tsx', hash: '13489270601672849222' }, - { file: 'packages/fluentui/react-northstar/src/utils/createComponentInternal.ts', hash: '4922907263354399064' }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/dateFormatting.defaults.ts', - hash: '13692590557899151685', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/dateFormatting.types.ts', - hash: '16508226785106265770', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatDay.ts', - hash: '18225295570491744117', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatMonthDayYear.ts', - hash: '13079395079301750418', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatMonthYear.ts', - hash: '8693233030079857638', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/formatYear.ts', - hash: '11737192759499506409', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateFormatting/index.ts', - hash: '17338481091946929409', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/dateGrid.types.ts', - hash: '9429451993053819858', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/findAvailableDate.ts', - hash: '17812579345659974705', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getBoundedDateRange.ts', - hash: '5151142947748778290', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getDateRangeTypeToUse.ts', - hash: '16696959932960635992', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/getDayGrid.ts', - hash: '8170172914110350314', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/index.ts', - hash: '12957004530838335926', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isAfterMaxDate.ts', - hash: '4879284728703250347', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isBeforeMinDate.ts', - hash: '9762482266014451107', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isContiguous.ts', - hash: '17889414780369493822', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateGrid/isRestrictedDate.ts', - hash: '8608321153134897550', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateMath/dateMath.ts', - hash: '1559935868198869990', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateValues/dateValues.ts', - hash: '6136428444968832474', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/dateValues/timeConstants.ts', - hash: '11246283356384718781', - }, - { file: 'packages/fluentui/react-northstar/src/utils/date-time-utilities/index.ts', hash: '9964063213143333808' }, - { file: 'packages/fluentui/react-northstar/src/utils/doesNodeContainClick.tsx', hash: '12125759582258943223' }, - { file: 'packages/fluentui/react-northstar/src/utils/factories.ts', hash: '17858959541041954517' }, - { file: 'packages/fluentui/react-northstar/src/utils/fontSizeUtility.ts', hash: '8951310441334447681' }, - { file: 'packages/fluentui/react-northstar/src/utils/format.ts', hash: '660643786560617444' }, - { file: 'packages/fluentui/react-northstar/src/utils/getKindProp.ts', hash: '10668323006325811482' }, - { - file: 'packages/fluentui/react-northstar/src/utils/getOrGenerateIdFromShorthand.ts', - hash: '7159609441996775627', - }, - { file: 'packages/fluentui/react-northstar/src/utils/getReactFiberFromNode.ts', hash: '15887164690270712100' }, - { file: 'packages/fluentui/react-northstar/src/utils/htmlPropsUtils.tsx', hash: '8492245048141318554' }, - { file: 'packages/fluentui/react-northstar/src/utils/index.ts', hash: '10809702915518222560' }, - { file: 'packages/fluentui/react-northstar/src/utils/isBrowser.tsx', hash: '8377252813388330231' }, - { file: 'packages/fluentui/react-northstar/src/utils/isRightClick.ts', hash: '9229416080838438451' }, - { file: 'packages/fluentui/react-northstar/src/utils/mergeProviderContexts.ts', hash: '5994964037716514132' }, - { file: 'packages/fluentui/react-northstar/src/utils/positioner/Popper.tsx', hash: '6388171080340640615' }, - { - file: 'packages/fluentui/react-northstar/src/utils/positioner/createReferenceFromClick.ts', - hash: '7463861146748463910', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/positioner/getBasePlacement.ts', - hash: '9075466749088351681', - }, - { file: 'packages/fluentui/react-northstar/src/utils/positioner/getBoundary.ts', hash: '4063574645465863990' }, - { - file: 'packages/fluentui/react-northstar/src/utils/positioner/getScrollParent.ts', - hash: '6406857083616074429', - }, - { file: 'packages/fluentui/react-northstar/src/utils/positioner/index.ts', hash: '16741470065971830342' }, - { - file: 'packages/fluentui/react-northstar/src/utils/positioner/isIntersectingModifier.ts', - hash: '14996281385889671915', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/positioner/partitionPopperPropsFromShorthand.ts', - hash: '60902350216586212', - }, - { - file: 'packages/fluentui/react-northstar/src/utils/positioner/positioningHelper.ts', - hash: '11838972231834093918', - }, - { file: 'packages/fluentui/react-northstar/src/utils/positioner/types.internal.ts', hash: '8041393692256519971' }, - { file: 'packages/fluentui/react-northstar/src/utils/positioner/types.ts', hash: '10059359397654935976' }, - { file: 'packages/fluentui/react-northstar/src/utils/positioner/usePopper.ts', hash: '5361783124069308182' }, - { file: 'packages/fluentui/react-northstar/src/utils/providerMissingHandler.ts', hash: '1279551015713903316' }, - { file: 'packages/fluentui/react-northstar/src/utils/renderComponent.tsx', hash: '16927930450112016967' }, - { file: 'packages/fluentui/react-northstar/src/utils/rtlTextContainer.tsx', hash: '4868725216145875527' }, - { - file: 'packages/fluentui/react-northstar/src/utils/shouldPreventDefaultOnKeyDown.ts', - hash: '5655537719905651960', - }, - { file: 'packages/fluentui/react-northstar/src/utils/stringLiteralsArray.ts', hash: '10689007480493641009' }, - { file: 'packages/fluentui/react-northstar/src/utils/whatInput.ts', hash: '15905753664237270166' }, - { file: 'packages/fluentui/react-northstar/test/__mocks__/@popperjs/core.ts', hash: '7478175262164732181' }, - { file: 'packages/fluentui/react-northstar/test/__mocks__/lodash.ts', hash: '17131456654501248151' }, - { - file: 'packages/fluentui/react-northstar/test/__mocks__/react-transition-group.ts', - hash: '12729441849589802586', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/commonHelpers.ts', - hash: '15161560263721820605', - }, - { file: 'packages/fluentui/react-northstar/test/specs/commonTests/eventTarget.ts', hash: '10879088653306825915' }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/extraConformanceTests.tsx', - hash: '7660913897739216792', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/handlesAccessibility.tsx', - hash: '14547718182071292892', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/htmlIsAccessibilityCompliant.ts', - hash: '10577071958328154685', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/implementsCollectionShorthandProp.tsx', - hash: '3217428025445274887', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/implementsPopperProps.tsx', - hash: '9652296180090228330', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/implementsShorthandProp.tsx', - hash: '17761144056956912361', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/implementsWrapperProp.tsx', - hash: '3773268252436089902', - }, - { file: 'packages/fluentui/react-northstar/test/specs/commonTests/index.ts', hash: '2058280329446324209' }, - { - file: 'packages/fluentui/react-northstar/test/specs/commonTests/isConformant.tsx', - hash: '10778236703368157250', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Accordion/Accordion-test.tsx', - hash: '16603233108252648288', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Accordion/AccordionContent-test.tsx', - hash: '8235180871538684066', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Accordion/AccordionTitle-test.tsx', - hash: '1913859106925668364', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Alert/Alert-test.tsx', - hash: '17921665851972536059', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Alert/AlertDismissAction-test.tsx', - hash: '10345856310136386920', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Animation/Animation-test.tsx', - hash: '13826604861874426066', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/Attachment-test.tsx', - hash: '16957293851459536363', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentAction-test.tsx', - hash: '14620159586847349890', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentBody-test.tsx', - hash: '7772374243305788108', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentDescription-test.tsx', - hash: '17209875525350538285', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentHeader-test.tsx', - hash: '1651566118295417225', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Attachment/AttachmentIcon-test.tsx', - hash: '17933537462765513484', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Avatar/Avatar-test.tsx', - hash: '4322381528047759922', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Avatar/AvatarStatusIcon-test.tsx', - hash: '6251030996757450195', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Box/Box-test.tsx', - hash: '17835161325052902783', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Breadcrumb/Breadcrumb-test.ts', - hash: '16386882857663541002', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbDivider-test.ts', - hash: '8035817973357532220', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbItem-test.ts', - hash: '3181156825954883132', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Breadcrumb/BreadcrumbLink-test.ts', - hash: '11147658363668547992', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Button/Button-test.tsx', - hash: '1326436848149099376', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Button/ButtonContent-test.tsx', - hash: '10169093068037721396', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Button/ButtonGroup-test.tsx', - hash: '13404732748774538333', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Card/Card-test.tsx', - hash: '14872801092154452183', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardBody-test.tsx', - hash: '4961802290389165907', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardColumn-test.tsx', - hash: '2946857707153904783', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardExpandableBox-test.tsx', - hash: '18081246896977472476', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardFooter-test.tsx', - hash: '4568333006684685536', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardHeader-test.tsx', - hash: '5973905523470608280', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardPreview-test.tsx', - hash: '15380903345359050138', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Card/CardTopControls-test.tsx', - hash: '12718460699447619691', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/Carousel-test.tsx', - hash: '6512271293541251118', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselItem-test.tsx', - hash: '15488894922033434421', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselNavigation-test.tsx', - hash: '1989696240370193656', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselNavigationItem-test.tsx', - hash: '4630459689601325689', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Carousel/CarouselPaddle-test.tsx', - hash: '17284552819210128139', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Chat/Chat-test.tsx', - hash: '16240544497376105969', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatItem-test.tsx', - hash: '9317815919826984931', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessage-test.tsx', - hash: '15704714301524573565', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageContent-test.tsx', - hash: '12206648926544507089', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageDetails-test.tsx', - hash: '3897749336843958446', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageHeader-test.tsx', - hash: '12042384580656900705', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Chat/ChatMessageReadStatus-test.tsx', - hash: '13588198715754619111', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Checkbox/Checkbox-test.tsx', - hash: '7825630663755003476', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/Datepicker-test.tsx', - hash: '1861003246359552439', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendar-test.tsx', - hash: '2233720293546010797', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarCell-test.tsx', - hash: '15892486420343153903', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarCellButton-test.tsx', - hash: '8997437747079875984', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarGrid-test.tsx', - hash: '12491487181544275019', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarGridRow-test.tsx', - hash: '6748518535575405844', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeader-test.tsx', - hash: '15227031319512760357', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeaderAction-test.tsx', - hash: '14664648722850097564', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/DatepickerCalendarHeaderCell-test.tsx', - hash: '8616588072472146297', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/navigateToNewDate-test.tsx', - hash: '8732936018653634364', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Datepicker/validateDate-test.tsx', - hash: '2834079238353411400', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Debug/utils-test.ts', - hash: '1339206635125466021', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Dialog/Dialog-test.tsx', - hash: '9237941996732807559', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Dialog/DialogFooter-test.tsx', - hash: '9235047452155095681', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Divider/Divider-test.tsx', - hash: '12854080868881418619', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Divider/DividerContent-test.tsx', - hash: '14342575122727540692', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/Dropdown-test.tsx', - hash: '7604599215403052112', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownItem-test.tsx', - hash: '1473585089237751717', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownSearchInput-test.tsx', - hash: '3925975303508541947', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/DropdownSelectedItem-test.tsx', - hash: '12109862275815818659', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Dropdown/test-utils.tsx', - hash: '9778718411390596817', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Embed/Embed-test.tsx', - hash: '18004703066055679324', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/Form-test.tsx', - hash: '4357145295874511821', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormButton-test.tsx', - hash: '2480530927011052275', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormCheckbox-test.tsx', - hash: '16595455459410141480', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormDatepicker-test.tsx', - hash: '6123129437006011085', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormDropdown-test.tsx', - hash: '3439503302665132723', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormField-test.tsx', - hash: '9414094539119391119', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormFieldCustom-test.tsx', - hash: '7542078810202115053', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormInput-test.tsx', - hash: '8382766727191067703', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormLabel-test.tsx', - hash: '2042354020208887865', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormMessage-test.tsx', - hash: '15906543573128503902', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormRadioGroup-test.tsx', - hash: '5056958632862126533', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormSlider-test.tsx', - hash: '364414860270359616', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Form/FormTextArea-test.tsx', - hash: '14998274972297178761', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Grid/Grid-test.tsx', - hash: '17892297248944202229', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Header/Header-test.ts', - hash: '9487762096743194623', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Header/HeaderDescription-test.ts', - hash: '15842708465317391877', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Image/Image-test.tsx', - hash: '12851937568039079063', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Input/Input-test.tsx', - hash: '1691823196277230616', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Input/InputLabel-test.tsx', - hash: '877087592278268379', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/ItemLayout/ItemLayout-test.ts', - hash: '8485818133839845423', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Label/Label-test.tsx', - hash: '9474396410541813616', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Layout/Layout-test.ts', - hash: '1900237706348259417', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/List/List-test.tsx', - hash: '3097287775703992573', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItem-test.tsx', - hash: '9928356118452444044', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemContent-test.tsx', - hash: '1095048506653080069', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemContentMedia-test.tsx', - hash: '17371151810202432116', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemEndMedia-test.tsx', - hash: '1322925889570751378', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemHeader-test.tsx', - hash: '2846611475396535397', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemHeaderMedia-test.tsx', - hash: '4877505627170088792', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/List/ListItemMedia-test.tsx', - hash: '18069936088151066910', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Loader/Loader-test.tsx', - hash: '9449749231197165968', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Menu/Menu-test.tsx', - hash: '12165382481008066044', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuDivider-test.ts', - hash: '11686102310312265839', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItem-test.tsx', - hash: '2654099299647523812', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemContent-test.tsx', - hash: '7715872639743413366', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemIcon-test.tsx', - hash: '14320571732615103337', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemIndicator-test.tsx', - hash: '8332513050282139750', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Menu/MenuItemWrapper-test.tsx', - hash: '5853615396637177252', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/MenuButton/MenuButton-test.tsx', - hash: '10459616558362422535', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Pill/Pill-test.tsx', - hash: '9581060234870722120', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Pill/PillAction-test.ts', - hash: '6179880651922626996', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Pill/PillGroup-test.ts', - hash: '11981612515295806007', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Popup/Popup-test.tsx', - hash: '8434777514512007216', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Popup/PopupContent-test.ts', - hash: '13638739475903005750', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Portal/Portal-test.tsx', - hash: '15465996118162269272', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Portal/PortalInner-test.tsx', - hash: '5754434891661785018', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Provider/Provider-test.tsx', - hash: '2240640287140070383', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Provider/ProviderConsumer-test.tsx', - hash: '13002904769286609320', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/RadioGroup/RadioGroup-test.tsx', - hash: '17457288701005817085', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/RadioGroup/RadioGroupItem-test.ts', - hash: '3694787136224530727', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Reaction/Reaction-test.tsx', - hash: '17460569499475553055', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Reaction/ReactionGroup-test.tsx', - hash: '8891288184075771422', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Segment/Segment-test.ts', - hash: '18342948157651185262', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/Skeleton-test.tsx', - hash: '5431693271941474537', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonAvatar-test.tsx', - hash: '633215657105970504', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonButton-test.tsx', - hash: '857912520415791019', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonInput-test.tsx', - hash: '16014302676971243686', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonLine-test.tsx', - hash: '6710987888418158263', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonShape-test.tsx', - hash: '417051666742724868', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Skeleton/SkeletonText-test.tsx', - hash: '13342668590815722830', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Slider/Slider-test.tsx', - hash: '17195985081238689502', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/SplitButton/SplitButton-test.tsx', - hash: '6285634676352090825', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/SplitButton/SplitButtonToggle-test.tsx', - hash: '17168430121306085647', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Status/Status-test.tsx', - hash: '9207495202148573899', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Table/Table-test.tsx', - hash: '14320851970052755336', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Table/TableCell-test.tsx', - hash: '13268733205756804476', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Table/TableRow-test.tsx', - hash: '15721665457219970259', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Text/Text-test.tsx', - hash: '15774609461339472960', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/TextArea/TextArea-test.tsx', - hash: '10904772413893805454', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/Toolbar-test.tsx', - hash: '3273080662216660222', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarCustomItem-test.ts', - hash: '1971629901099191306', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarDivider-test.ts', - hash: '1961608604314474618', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItem-test.tsx', - hash: '18244914693327485303', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItemIcon-test.tsx', - hash: '13596680737528963805', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarItemWrapper-test.tsx', - hash: '13156786441078339060', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenu-test.tsx', - hash: '17322254714369170926', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuDivider-test.ts', - hash: '2317588345846814381', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItem-test.ts', - hash: '14252176927580183276', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemActiveIndicator-test.ts', - hash: '7338121822972968481', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemContent-test.ts', - hash: '16940688787172569278', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemIcon-test.ts', - hash: '12036502141770290712', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuItemSubmenuIndicator-test.ts', - hash: '17060725767436850200', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuRadioGroup-test.ts', - hash: '13251209218976290123', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarMenuRadioGroupWrapper-test.ts', - hash: '12304408542935772201', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Toolbar/ToolbarRadioGroup-test.tsx', - hash: '10137003306110435359', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Tooltip/Tooltip-test.tsx', - hash: '8889331025271088718', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Tooltip/TooltipContent-test.ts', - hash: '7678283977980244711', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Tree/Tree-test.tsx', - hash: '10244675648720734018', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Tree/TreeItem-test.tsx', - hash: '4945161483942705254', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Tree/TreeTitle-test.tsx', - hash: '8773859907745772342', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Tree/useTree-test.tsx', - hash: '5793822819577735110', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Tree/useVirtualTree-test.tsx', - hash: '5626760577217895360', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/components/Video/Video-test.tsx', - hash: '1926816928517605541', - }, - { file: 'packages/fluentui/react-northstar/test/specs/themes/colorUtils-test.ts', hash: '7657706024055204904' }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/accessibility/FocusContainer-test.ts', - hash: '223800887962504547', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/createComponent-test.tsx', - hash: '7246460273016057939', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatDay-test.ts', - hash: '2311094940376933322', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatMonthDayYear-test.ts', - hash: '1872098968821842300', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatMonthYear-test.ts', - hash: '2459189009262561277', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateFormatting/formatYear-test.ts', - hash: '16280194774285350298', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/__snapshots__/getDayGrid-test.ts.snap', - hash: '2311635867604483689', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/findAvailableDate-test.ts', - hash: '15572784148609697340', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getBoundedDateRange-test.ts', - hash: '2623791697737703526', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getDateRangeTypeToUse-test.ts', - hash: '14573867150223039839', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/getDayGrid-test.ts', - hash: '6975924948134206302', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isAfterMaxDate-test.ts', - hash: '12815467872040329995', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isBeforeMinDate-test.ts', - hash: '3803387967835514747', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isContiguous-test.ts', - hash: '16494931337448801984', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateGrid/isRestrictedDate-test.ts', - hash: '3940731087686096730', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/date-time-utils/dateMath/dateMath-test.ts', - hash: '10661094989801549340', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/doesNodeContainClick-test.ts', - hash: '16229342285576678393', - }, - { file: 'packages/fluentui/react-northstar/test/specs/utils/factories-test.tsx', hash: '15646126022037774298' }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/fontSizeUtility-test.ts', - hash: '17646536945264760221', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/getReactFiberFromNode-test.tsx', - hash: '14994895051922141272', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/htmlInputPropsUtils-test.ts', - hash: '7674098100722179265', - }, - { file: 'packages/fluentui/react-northstar/test/specs/utils/isBrowser-test.ts', hash: '17150880185040762390' }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/mergeProviderContexts/mergeBooleanValues-test.ts', - hash: '16868530262621193395', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/mergeProviderContexts/mergeProviderContexts-test.ts', - hash: '15934990098831498959', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/positioner/getScrollParent-test.ts', - hash: '15923669357357889226', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/positioner/positioningHelper-test.ts', - hash: '12724373629963656299', - }, - { - file: 'packages/fluentui/react-northstar/test/specs/utils/shouldPreventDefaultOnKeyDown-test.ts', - hash: '284482009341561469', - }, - { file: 'packages/fluentui/react-northstar/test/specs/utils/whatInput-test.tsx', hash: '4965920864058832888' }, - { file: 'packages/fluentui/react-northstar/test/utils/assertNodeContains.ts', hash: '16326988012836660074' }, - { file: 'packages/fluentui/react-northstar/test/utils/consoleUtil.ts', hash: '1538858825893602837' }, - { file: 'packages/fluentui/react-northstar/test/utils/domEvent.ts', hash: '1337068844579757941' }, - { file: 'packages/fluentui/react-northstar/test/utils/findIntrinsicElement.ts', hash: '11574652103696867807' }, - { file: 'packages/fluentui/react-northstar/test/utils/getDisplayName.ts', hash: '13697273738737733112' }, - { file: 'packages/fluentui/react-northstar/test/utils/index.ts', hash: '1972489484976587726' }, - { file: 'packages/fluentui/react-northstar/test/utils/nextFrame.ts', hash: '7596599917002412285' }, - { file: 'packages/fluentui/react-northstar/test/utils/syntheticEvent.ts', hash: '10249353881461568646' }, - { file: 'packages/fluentui/react-northstar/test/utils/withProvider.tsx', hash: '14725531562489182975' }, - { file: 'packages/fluentui/react-northstar/tsconfig.json', hash: '3307365675788742834' }, - { file: 'packages/fluentui/react-northstar/tsconfig.spec.json', hash: '8498668848331699403' }, - ], - '@fluentui/public-docsite-resources': [ - { file: 'apps/public-docsite-resources/.eslintrc.json', hash: '1006039826695126320' }, - { file: 'apps/public-docsite-resources/.npmignore', hash: '2926714820578262549' }, - { file: 'apps/public-docsite-resources/CHANGELOG.json', hash: '16283141252976196454' }, - { file: 'apps/public-docsite-resources/CHANGELOG.md', hash: '16861719145102182217' }, - { file: 'apps/public-docsite-resources/LICENSE', hash: '10066751927269712564' }, - { file: 'apps/public-docsite-resources/README.md', hash: '7141883042692341254' }, - { file: 'apps/public-docsite-resources/config/api-docs.js', hash: '11668101459963587459' }, - { file: 'apps/public-docsite-resources/config/pre-copy.json', hash: '6078374637344320600' }, - { file: 'apps/public-docsite-resources/just.config.ts', hash: '3934073888276956957' }, - { - file: 'apps/public-docsite-resources/package.json', - hash: '3404403150191974449', - deps: [ - '@fluentui/react', - '@fluentui/react-charting', - '@fluentui/react-examples', - 'npm:@microsoft/load-themed-styles', - '@fluentui/azure-themes', - '@fluentui/react-docsite-components', - '@fluentui/font-icons-mdl2', - '@fluentui/set-version', - '@fluentui/theme-samples', - '@fluentui/react-monaco-editor', - 'npm:office-ui-fabric-core', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/api-docs', - '@fluentui/eslint-plugin', - '@fluentui/scripts-monorepo', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'apps/public-docsite-resources/project.json', hash: '1147105777361919067' }, - { file: 'apps/public-docsite-resources/src/AppDefinition.tsx', hash: '7277832506832781573' }, - { file: 'apps/public-docsite-resources/src/GettingStartedPage.tsx', hash: '3862410802762460924' }, - { file: 'apps/public-docsite-resources/src/components/DemoPage.tsx', hash: '9020549840902458335' }, - { file: 'apps/public-docsite-resources/src/components/DemoPage.types.ts', hash: '13637648667090905659' }, - { file: 'apps/public-docsite-resources/src/components/pages/ActivityItemPage.tsx', hash: '12874555494259594381' }, - { - file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedBulkOperationsPage.tsx', - hash: '14152797804181136183', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedLazyLoadingPage.tsx', - hash: '12845085304038823878', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedPage.tsx', - hash: '7616571420309216578', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedQuickActionsPage.tsx', - hash: '3085789639514069691', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Announced/AnnouncedSearchResultsPage.tsx', - hash: '4759661553964954805', - }, - { file: 'apps/public-docsite-resources/src/components/pages/BreadcrumbPage.tsx', hash: '17749543750938202238' }, - { file: 'apps/public-docsite-resources/src/components/pages/ButtonPage.tsx', hash: '1074859371510836896' }, - { file: 'apps/public-docsite-resources/src/components/pages/CalendarPage.tsx', hash: '9066959064675474449' }, - { file: 'apps/public-docsite-resources/src/components/pages/CalloutPage.tsx', hash: '3985615511416534706' }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/AreaChartPage.tsx', - hash: '9142849699720576026', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/DonutChartPage.tsx', - hash: '8401913092164120335', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/GaugeChartPage.tsx', - hash: '5909945778333785594', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/GroupedVerticalBarChartPage.tsx', - hash: '5871885321022510668', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/HeatMapChartPage.tsx', - hash: '447712487347504671', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/HorizontalBarChartPage.tsx', - hash: '10635783908789682392', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/HorizontalBarChartWithAxisPage.tsx', - hash: '15860945913932029918', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/LegendsPage.tsx', - hash: '5931039197259354517', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/LineChartPage.tsx', - hash: '5931039197259354517', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/MultiStackedBarChartPage.tsx', - hash: '6864870389254610389', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/PieChartPage.tsx', - hash: '14073402168693410464', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/SankeyChartPage.tsx', - hash: '1773501327481125982', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/SparklineChartPage.tsx', - hash: '234023845337169016', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/StackedBarChartPage.tsx', - hash: '3762902924545887431', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/TreeChartPage.tsx', - hash: '6379781915487945751', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/VerticalBarChartStandardPage.tsx', - hash: '10657208350562091459', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/Charting/VerticalStackedBarChartPage.tsx', - hash: '18035167189116711073', - }, - { file: 'apps/public-docsite-resources/src/components/pages/CheckboxPage.tsx', hash: '4704363360278678460' }, - { file: 'apps/public-docsite-resources/src/components/pages/ChoiceGroupPage.tsx', hash: '14065659955961397923' }, - { file: 'apps/public-docsite-resources/src/components/pages/CoachmarkPage.tsx', hash: '6023492553801230509' }, - { file: 'apps/public-docsite-resources/src/components/pages/ColorPickerPage.tsx', hash: '9314814354432295747' }, - { - file: 'apps/public-docsite-resources/src/components/pages/ColorsPage.global.scss', - hash: '8516477111204758268', - }, - { file: 'apps/public-docsite-resources/src/components/pages/ColorsPage.tsx', hash: '14293885024317434682' }, - { file: 'apps/public-docsite-resources/src/components/pages/ComboBoxPage.tsx', hash: '14225846150450310921' }, - { file: 'apps/public-docsite-resources/src/components/pages/CommandBarPage.tsx', hash: '2983211923980480407' }, - { - file: 'apps/public-docsite-resources/src/components/pages/ContextualMenuPage.tsx', - hash: '11322341863360396305', - }, - { file: 'apps/public-docsite-resources/src/components/pages/DatePickerPage.tsx', hash: '9693425122656743109' }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListAdvancedPage.tsx', - hash: '10497699611319342029', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListAnimationPage.tsx', - hash: '13246065446364453753', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListBasicPage.tsx', - hash: '5610768878447358512', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCompactPage.tsx', - hash: '9764384910422782275', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomColumnsPage.tsx', - hash: '1693193915191907175', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomFooterPage.tsx', - hash: '17455300748596259298', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomGroupHeadersPage.tsx', - hash: '17528947698984247944', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListCustomRowsPage.tsx', - hash: '18378788640799452555', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListDragDropPage.tsx', - hash: '14997912916660581544', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListKeyboardDragDropPage.tsx', - hash: '1981206541946206946', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListKeyboardOverridesPage.tsx', - hash: '7924074756106420545', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListLargeGroupedPage.tsx', - hash: '17556143238825852135', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListNavigatingFocusPage.tsx', - hash: '17751629156569546517', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListPage.tsx', - hash: '16641730452823548384', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListProportionalColumnsPage.tsx', - hash: '16630306616595775231', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListShimmerPage.tsx', - hash: '14148595482952030923', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/DetailsList/DetailsListSimpleGroupedPage.tsx', - hash: '3338805991866415156', - }, - { file: 'apps/public-docsite-resources/src/components/pages/DialogPage.tsx', hash: '5841632104556317487' }, - { file: 'apps/public-docsite-resources/src/components/pages/DividerPage.tsx', hash: '17426411170169843402' }, - { file: 'apps/public-docsite-resources/src/components/pages/DocumentCardPage.tsx', hash: '14158468745118722213' }, - { file: 'apps/public-docsite-resources/src/components/pages/DropdownPage.tsx', hash: '14720258869656067591' }, - { - file: 'apps/public-docsite-resources/src/components/pages/ExtendedPeoplePickerPage.tsx', - hash: '12659529066039516185', - }, - { file: 'apps/public-docsite-resources/src/components/pages/FacepilePage.tsx', hash: '3803403514969383383' }, - { - file: 'apps/public-docsite-resources/src/components/pages/FloatingPeoplePickerPage.tsx', - hash: '18005353677452631413', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/FocusTrapZonePage.tsx', - hash: '15037290987307246733', - }, - { file: 'apps/public-docsite-resources/src/components/pages/FocusZonePage.tsx', hash: '11010664311417327928' }, - { file: 'apps/public-docsite-resources/src/components/pages/GroupedListPage.tsx', hash: '15069269515386649438' }, - { file: 'apps/public-docsite-resources/src/components/pages/HoverCardPage.tsx', hash: '10856368801549589069' }, - { file: 'apps/public-docsite-resources/src/components/pages/IconPage.tsx', hash: '2231566654499636239' }, - { file: 'apps/public-docsite-resources/src/components/pages/ImagePage.tsx', hash: '1743385979724412862' }, - { file: 'apps/public-docsite-resources/src/components/pages/KeytipsPage.tsx', hash: '7131832946901219494' }, - { file: 'apps/public-docsite-resources/src/components/pages/LabelPage.tsx', hash: '5089297279315795147' }, - { file: 'apps/public-docsite-resources/src/components/pages/LayerPage.tsx', hash: '10390176672824469574' }, - { file: 'apps/public-docsite-resources/src/components/pages/LinkPage.tsx', hash: '6989305525356878229' }, - { file: 'apps/public-docsite-resources/src/components/pages/ListPage.tsx', hash: '15036518738078275188' }, - { - file: 'apps/public-docsite-resources/src/components/pages/MarqueeSelectionPage.tsx', - hash: '804408648016633702', - }, - { file: 'apps/public-docsite-resources/src/components/pages/MessageBarPage.tsx', hash: '7035159494733576301' }, - { file: 'apps/public-docsite-resources/src/components/pages/ModalPage.tsx', hash: '547344146741172952' }, - { file: 'apps/public-docsite-resources/src/components/pages/NavPage.tsx', hash: '15148247899806790313' }, - { file: 'apps/public-docsite-resources/src/components/pages/OverflowSetPage.tsx', hash: '3573843971840842412' }, - { file: 'apps/public-docsite-resources/src/components/pages/OverlayPage.tsx', hash: '15606061420059807231' }, - { file: 'apps/public-docsite-resources/src/components/pages/PanelPage.tsx', hash: '1119918289902627721' }, - { file: 'apps/public-docsite-resources/src/components/pages/PeoplePickerPage.tsx', hash: '12052940092962775123' }, - { file: 'apps/public-docsite-resources/src/components/pages/PersonaPage.tsx', hash: '6831941677144068143' }, - { file: 'apps/public-docsite-resources/src/components/pages/PickersPage.tsx', hash: '11964132278983850456' }, - { file: 'apps/public-docsite-resources/src/components/pages/PivotPage.tsx', hash: '2959788360604830538' }, - { file: 'apps/public-docsite-resources/src/components/pages/PopupPage.tsx', hash: '13606486863467912445' }, - { - file: 'apps/public-docsite-resources/src/components/pages/ProgressIndicatorPage.tsx', - hash: '4186603000795134820', - }, - { file: 'apps/public-docsite-resources/src/components/pages/RatingPage.tsx', hash: '4350031286872721266' }, - { file: 'apps/public-docsite-resources/src/components/pages/ResizeGroupPage.tsx', hash: '2973060030244344700' }, - { - file: 'apps/public-docsite-resources/src/components/pages/ScrollablePanePage.tsx', - hash: '16819364679994888960', - }, - { file: 'apps/public-docsite-resources/src/components/pages/SearchBoxPage.tsx', hash: '3029224427276024716' }, - { - file: 'apps/public-docsite-resources/src/components/pages/SelectedPeopleListPage.tsx', - hash: '7772640726096248692', - }, - { file: 'apps/public-docsite-resources/src/components/pages/SelectionPage.tsx', hash: '12409427404313953929' }, - { file: 'apps/public-docsite-resources/src/components/pages/SeparatorPage.tsx', hash: '17281088957051862846' }, - { file: 'apps/public-docsite-resources/src/components/pages/ShimmerPage.tsx', hash: '3280936027558693643' }, - { file: 'apps/public-docsite-resources/src/components/pages/SliderPage.tsx', hash: '8366292712707135930' }, - { file: 'apps/public-docsite-resources/src/components/pages/SpinButtonPage.tsx', hash: '12119173098289938380' }, - { file: 'apps/public-docsite-resources/src/components/pages/SpinnerPage.tsx', hash: '2885100480385886395' }, - { file: 'apps/public-docsite-resources/src/components/pages/StackPage.tsx', hash: '12041367432076032971' }, - { - file: 'apps/public-docsite-resources/src/components/pages/SwatchColorPickerPage.tsx', - hash: '11506943068731345318', - }, - { - file: 'apps/public-docsite-resources/src/components/pages/TeachingBubblePage.tsx', - hash: '6577733362138824835', - }, - { file: 'apps/public-docsite-resources/src/components/pages/TextFieldPage.tsx', hash: '1127323915038076733' }, - { file: 'apps/public-docsite-resources/src/components/pages/TextPage.tsx', hash: '17491494741568173358' }, - { file: 'apps/public-docsite-resources/src/components/pages/ThemePage.styles.ts', hash: '16939098392212581786' }, - { file: 'apps/public-docsite-resources/src/components/pages/ThemePage.tsx', hash: '5968573234874446418' }, - { - file: 'apps/public-docsite-resources/src/components/pages/ThemeProviderPage.tsx', - hash: '18028324695488637599', - }, - { file: 'apps/public-docsite-resources/src/components/pages/TimePickerPage.tsx', hash: '2391481625512082875' }, - { file: 'apps/public-docsite-resources/src/components/pages/TogglePage.tsx', hash: '611908229068244253' }, - { file: 'apps/public-docsite-resources/src/components/pages/TooltipPage.tsx', hash: '4157242533682705545' }, - { file: 'apps/public-docsite-resources/src/docs/GettingStartedOverview.md', hash: '9186252321786039138' }, - { file: 'apps/public-docsite-resources/src/index.tsx', hash: '15810414772634229766' }, - { file: 'apps/public-docsite-resources/src/theme/AppThemes.ts', hash: '2651411579354420478' }, - { file: 'apps/public-docsite-resources/src/version.ts', hash: '3127048310947807269' }, - { file: 'apps/public-docsite-resources/tsconfig.json', hash: '1759609835745211941' }, - { file: 'apps/public-docsite-resources/webpack.config.js', hash: '8276713782046820680' }, - { file: 'apps/public-docsite-resources/webpack.serve.config.js', hash: '16193407125720974232' }, - ], - '@fluentui/react-hooks': [ - { file: 'packages/react-hooks/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/react-hooks/.npmignore', hash: '47056201363133096' }, - { file: 'packages/react-hooks/CHANGELOG.json', hash: '6903353318491270734' }, - { file: 'packages/react-hooks/CHANGELOG.md', hash: '4373204522688068180' }, - { file: 'packages/react-hooks/LICENSE', hash: '8744700261631581284' }, - { file: 'packages/react-hooks/README.md', hash: '9078140562214112263' }, - { file: 'packages/react-hooks/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/react-hooks/config/tests.js', hash: '2484785926023527183' }, - { file: 'packages/react-hooks/etc/react-hooks.api.md', hash: '14890692399752787928' }, - { file: 'packages/react-hooks/jest.config.js', hash: '12858682342254308337' }, - { file: 'packages/react-hooks/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-hooks/package.json', - hash: '6276994753942711587', - deps: [ - '@fluentui/react-window-provider', - '@fluentui/set-version', - '@fluentui/utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/test-utilities', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-hooks/project.json', hash: '6754036360657165220' }, - { file: 'packages/react-hooks/src/index.ts', hash: '8812997253771358596' }, - { file: 'packages/react-hooks/src/testUtilities.tsx', hash: '15657115562759724898' }, - { file: 'packages/react-hooks/src/useAsync.ts', hash: '1414020915847618581' }, - { file: 'packages/react-hooks/src/useBoolean.test.tsx', hash: '10482234089618244690' }, - { file: 'packages/react-hooks/src/useBoolean.ts', hash: '16859819035326470427' }, - { file: 'packages/react-hooks/src/useConst.test.tsx', hash: '6312687103484766497' }, - { file: 'packages/react-hooks/src/useConst.ts', hash: '10777778552058882248' }, - { file: 'packages/react-hooks/src/useConstCallback.test.tsx', hash: '16043395328514584024' }, - { file: 'packages/react-hooks/src/useConstCallback.ts', hash: '1361219448301389173' }, - { file: 'packages/react-hooks/src/useControllableValue.test.tsx', hash: '5762110490075486825' }, - { file: 'packages/react-hooks/src/useControllableValue.ts', hash: '6509890426237455715' }, - { file: 'packages/react-hooks/src/useEventCallback.test.ts', hash: '17051523471062309998' }, - { file: 'packages/react-hooks/src/useEventCallback.ts', hash: '11398682938274370856' }, - { file: 'packages/react-hooks/src/useForceUpdate.test.tsx', hash: '888582721771798845' }, - { file: 'packages/react-hooks/src/useForceUpdate.ts', hash: '2712133802208231920' }, - { file: 'packages/react-hooks/src/useId.test.tsx', hash: '15852945873220308736' }, - { file: 'packages/react-hooks/src/useId.ts', hash: '783247756396774564' }, - { file: 'packages/react-hooks/src/useMergedRefs.test.tsx', hash: '10700249183639223030' }, - { file: 'packages/react-hooks/src/useMergedRefs.ts', hash: '15582394188849760782' }, - { file: 'packages/react-hooks/src/useMount.test.tsx', hash: '14206136109322867617' }, - { file: 'packages/react-hooks/src/useMount.ts', hash: '18329731702911365804' }, - { file: 'packages/react-hooks/src/useMountSync.test.tsx', hash: '11189345965072550047' }, - { file: 'packages/react-hooks/src/useMountSync.ts', hash: '9299027787812325818' }, - { file: 'packages/react-hooks/src/useOnEvent.ts', hash: '17052043779489947676' }, - { file: 'packages/react-hooks/src/usePrevious.test.tsx', hash: '9069046424079428945' }, - { file: 'packages/react-hooks/src/usePrevious.ts', hash: '12310076477386868431' }, - { file: 'packages/react-hooks/src/useRefEffect.test.tsx', hash: '2259278510254299602' }, - { file: 'packages/react-hooks/src/useRefEffect.ts', hash: '17383740752291583544' }, - { file: 'packages/react-hooks/src/useSetInterval.test.tsx', hash: '13864624324407150233' }, - { file: 'packages/react-hooks/src/useSetInterval.ts', hash: '18010635980916199311' }, - { file: 'packages/react-hooks/src/useSetTimeout.test.tsx', hash: '13604802953379833692' }, - { file: 'packages/react-hooks/src/useSetTimeout.ts', hash: '762592617994036615' }, - { file: 'packages/react-hooks/src/useTarget.ts', hash: '12682105242997500082' }, - { file: 'packages/react-hooks/src/useUnmount.test.tsx', hash: '12554573688970283861' }, - { file: 'packages/react-hooks/src/useUnmount.ts', hash: '14158102226970174047' }, - { file: 'packages/react-hooks/src/useWarnings.test.tsx', hash: '11910066874523431865' }, - { file: 'packages/react-hooks/src/useWarnings.ts', hash: '10008379029190216816' }, - { file: 'packages/react-hooks/src/version.ts', hash: '5995781004115751505' }, - { file: 'packages/react-hooks/tsconfig.json', hash: '15516134720009168635' }, - { file: 'packages/react-hooks/webpack.config.js', hash: '5701859674302912997' }, - ], - '@fluentui/react-monaco-editor': [ - { file: 'packages/react-monaco-editor/.eslintrc.json', hash: '7340591681907052528' }, - { file: 'packages/react-monaco-editor/.npmignore', hash: '7699079327417375383' }, - { file: 'packages/react-monaco-editor/CHANGELOG.json', hash: '4052769043464886293' }, - { file: 'packages/react-monaco-editor/CHANGELOG.md', hash: '4378676521123102836' }, - { file: 'packages/react-monaco-editor/LICENSE', hash: '15857057829823514426' }, - { file: 'packages/react-monaco-editor/README.md', hash: '215778933993031194' }, - { file: 'packages/react-monaco-editor/config/pre-copy.json', hash: '10496597701824624187' }, - { file: 'packages/react-monaco-editor/index.html', hash: '1791716988592375380' }, - { file: 'packages/react-monaco-editor/jest.config.js', hash: '5168375124118756559' }, - { file: 'packages/react-monaco-editor/just.config.ts', hash: '404017912661233600' }, - { - file: 'packages/react-monaco-editor/package.json', - hash: '10660752150120145130', - deps: [ - '@fluentui/react', - 'npm:@microsoft/load-themed-styles', - '@fluentui/example-data', - '@fluentui/monaco-editor', - '@fluentui/react-hooks', - '@fluentui/react-charting', - 'npm:raw-loader', - 'npm:react-syntax-highlighter', - 'npm:tslib', - '@fluentui/eslint-plugin', - 'npm:@types/react-syntax-highlighter', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-monaco-editor/project.json', hash: '1052909350799747146' }, - { file: 'packages/react-monaco-editor/scripts/addMonacoWebpackConfig.js', hash: '5333027717716750886' }, - { file: 'packages/react-monaco-editor/scripts/copyTypes.ts', hash: '15470147487360395774' }, - { file: 'packages/react-monaco-editor/src/Editor.ts', hash: '6017495469224351667' }, - { file: 'packages/react-monaco-editor/src/EditorWrapper.ts', hash: '10125870415289685067' }, - { file: 'packages/react-monaco-editor/src/TsxEditor.ts', hash: '10751227075439005751' }, - { file: 'packages/react-monaco-editor/src/components/Editor.tsx', hash: '13590339725241717557' }, - { file: 'packages/react-monaco-editor/src/components/Editor.types.ts', hash: '931518761748666165' }, - { file: 'packages/react-monaco-editor/src/components/EditorError.tsx', hash: '6978711720466275879' }, - { file: 'packages/react-monaco-editor/src/components/EditorErrorHandler.tsx', hash: '7094031796655130638' }, - { file: 'packages/react-monaco-editor/src/components/EditorLoading.tsx', hash: '17756141341694568257' }, - { file: 'packages/react-monaco-editor/src/components/EditorWrapper.tsx', hash: '14675879456062578953' }, - { file: 'packages/react-monaco-editor/src/components/EditorWrapper.types.ts', hash: '10918850883274788009' }, - { file: 'packages/react-monaco-editor/src/components/TsxEditor.tsx', hash: '16895967541425618893' }, - { file: 'packages/react-monaco-editor/src/components/TsxEditor.types.ts', hash: '6382517796676619793' }, - { file: 'packages/react-monaco-editor/src/components/TypeScriptSnippet.tsx', hash: '9289521752302825874' }, - { file: 'packages/react-monaco-editor/src/components/consts.ts', hash: '17899882920572319776' }, - { file: 'packages/react-monaco-editor/src/components/index.ts', hash: '17378269472056454119' }, - { file: 'packages/react-monaco-editor/src/demo/App.tsx', hash: '3398055607368439105' }, - { file: 'packages/react-monaco-editor/src/demo/index.tsx', hash: '6366974914566276988' }, - { file: 'packages/react-monaco-editor/src/imports.test.ts', hash: '16558841996641162330' }, - { file: 'packages/react-monaco-editor/src/index.ts', hash: '2660105875934296833' }, - { file: 'packages/react-monaco-editor/src/interfaces/index.ts', hash: '10563128095872578362' }, - { file: 'packages/react-monaco-editor/src/interfaces/monaco.ts', hash: '5365919266167576279' }, - { file: 'packages/react-monaco-editor/src/interfaces/packageGroup.ts', hash: '15072110747073265711' }, - { file: 'packages/react-monaco-editor/src/interfaces/transformedCode.ts', hash: '9629925872874446454' }, - { - file: 'packages/react-monaco-editor/src/transpiler/__snapshots__/exampleTransform.test.ts.snap', - hash: '10292795761254527001', - }, - { file: 'packages/react-monaco-editor/src/transpiler/exampleParser.test.ts', hash: '9891990965669883703' }, - { file: 'packages/react-monaco-editor/src/transpiler/exampleParser.ts', hash: '8211624242523849272' }, - { file: 'packages/react-monaco-editor/src/transpiler/exampleTransform.test.ts', hash: '1522140756961621850' }, - { file: 'packages/react-monaco-editor/src/transpiler/exampleTransform.ts', hash: '14477424259989592192' }, - { file: 'packages/react-monaco-editor/src/transpiler/examples/class.txt', hash: '12975026045123300332' }, - { - file: 'packages/react-monaco-editor/src/transpiler/examples/classTranspiled.txt', - hash: '16439102531686810302', - }, - { file: 'packages/react-monaco-editor/src/transpiler/examples/customPackages.txt', hash: '7179133814494836586' }, - { - file: 'packages/react-monaco-editor/src/transpiler/examples/customPackagesFluent.txt', - hash: '10058548755387005189', - }, - { file: 'packages/react-monaco-editor/src/transpiler/examples/function.txt', hash: '9563192592967671900' }, - { - file: 'packages/react-monaco-editor/src/transpiler/examples/functionTranspiled.txt', - hash: '6749082270165661166', - }, - { file: 'packages/react-monaco-editor/src/transpiler/examples/relativeImport.txt', hash: '6088749950053757682' }, - { file: 'packages/react-monaco-editor/src/transpiler/index.ts', hash: '18278831555090185964' }, - { file: 'packages/react-monaco-editor/src/transpiler/transpile.ts', hash: '16889766031692255838' }, - { file: 'packages/react-monaco-editor/src/transpiler/transpileHelpers.test.ts', hash: '4371018842887360839' }, - { file: 'packages/react-monaco-editor/src/transpiler/transpileHelpers.ts', hash: '2760415028804555715' }, - { file: 'packages/react-monaco-editor/src/utilities/defaultSupportedPackages.ts', hash: '667082477780337268' }, - { file: 'packages/react-monaco-editor/src/utilities/getQueryParam.test.ts', hash: '17807893369167537417' }, - { file: 'packages/react-monaco-editor/src/utilities/getQueryParam.ts', hash: '5415427488872325615' }, - { file: 'packages/react-monaco-editor/src/utilities/index.ts', hash: '5755389207234709934' }, - { file: 'packages/react-monaco-editor/src/utilities/isEditorSupported.ts', hash: '14471034323467341722' }, - { file: 'packages/react-monaco-editor/src/utilities/settings.ts', hash: '4543245557747589830' }, - { file: 'packages/react-monaco-editor/tsconfig.json', hash: '18188014709090939787' }, - { file: 'packages/react-monaco-editor/webpack.serve.config.js', hash: '14712024823986301981' }, - ], - '@fluentui/code-sandbox': [ - { file: 'packages/fluentui/code-sandbox/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/code-sandbox/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/code-sandbox/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/code-sandbox/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/code-sandbox/package.json', - hash: '11253220741395450065', - deps: [ - '@fluentui/docs-components', - 'npm:lodash', - '@fluentui/eslint-plugin', - '@fluentui/react-northstar', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/code-sandbox/project.json', hash: '5162402659160918655' }, - { file: 'packages/fluentui/code-sandbox/src/KnobsSnippet.tsx', hash: '1773927934854982206' }, - { file: 'packages/fluentui/code-sandbox/src/SandboxApp.tsx', hash: '3987921530467467936' }, - { file: 'packages/fluentui/code-sandbox/src/createCallbackLogFormatter.ts', hash: '5527801291715599944' }, - { file: 'packages/fluentui/code-sandbox/src/index.ts', hash: '3876221794154391346' }, - { file: 'packages/fluentui/code-sandbox/src/knobComponents.tsx', hash: '12929511866022094531' }, - { file: 'packages/fluentui/code-sandbox/tsconfig.json', hash: '10710169321765083407' }, - ], - '@fluentui/react-component-ref': [ - { file: 'packages/fluentui/react-component-ref/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-component-ref/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-component-ref/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-component-ref/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-component-ref/jest.config.js', hash: '16229841778322564435' }, - { - file: 'packages/fluentui/react-component-ref/package.json', - hash: '7529430488905102947', - deps: [ - 'npm:@babel/runtime', - 'npm:react-is', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:lerna-alias', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-component-ref/project.json', hash: '6126110977524113939' }, - { file: 'packages/fluentui/react-component-ref/src/Ref.tsx', hash: '8736695420541124411' }, - { file: 'packages/fluentui/react-component-ref/src/index.ts', hash: '2957471030756768947' }, - { file: 'packages/fluentui/react-component-ref/src/utils.ts', hash: '5021221117969286327' }, - { file: 'packages/fluentui/react-component-ref/test/Ref-test.tsx', hash: '15199118732810061095' }, - { file: 'packages/fluentui/react-component-ref/test/fixtures.tsx', hash: '17981835075008341893' }, - { file: 'packages/fluentui/react-component-ref/test/handleRef-test.ts', hash: '14323864877924546412' }, - { file: 'packages/fluentui/react-component-ref/test/isRefObject-test.ts', hash: '1265088125532153475' }, - { file: 'packages/fluentui/react-component-ref/tsconfig.json', hash: '12214264623402812273' }, - ], - '@fluentui/scripts-gulp': [ - { file: 'scripts/gulp/.eslintrc.json', hash: '1780714561029609382' }, - { file: 'scripts/gulp/jest.config.js', hash: '5062185366330253835' }, - { - file: 'scripts/gulp/package.json', - hash: '620703661800637679', - deps: [ - '@fluentui/scripts-monorepo', - '@fluentui/scripts-utils', - '@fluentui/scripts-prettier', - '@fluentui/scripts-puppeteer', - '@fluentui/scripts-babel', - '@fluentui/scripts-projects-test', - ], - }, - { file: 'scripts/gulp/project.json', hash: '3096408817704266345' }, - { file: 'scripts/gulp/src/config.ts', hash: '1152274046574746097' }, - { file: 'scripts/gulp/src/index.ts', hash: '7155269880542520414' }, - { file: 'scripts/gulp/src/plugins/gulp-component-menu-behaviors.ts', hash: '14794995339262339082' }, - { file: 'scripts/gulp/src/plugins/gulp-cypress.ts', hash: '594034633777443767' }, - { file: 'scripts/gulp/src/plugins/gulp-doctoc.ts', hash: '16179003157117981064' }, - { file: 'scripts/gulp/src/plugins/gulp-example-menu.ts', hash: '16356696777619040236' }, - { file: 'scripts/gulp/src/plugins/gulp-example-source.ts', hash: '385517391147554585' }, - { file: 'scripts/gulp/src/plugins/gulp-jest.ts', hash: '8955289815280817773' }, - { file: 'scripts/gulp/src/plugins/gulp-react-docgen.ts', hash: '6408676183752597483' }, - { file: 'scripts/gulp/src/plugins/gulp-webpack.ts', hash: '9370131498478486856' }, - { file: 'scripts/gulp/src/plugins/util/docgen.ts', hash: '10272339795154204934' }, - { file: 'scripts/gulp/src/plugins/util/docs-types.ts', hash: '11426038160844139699' }, - { file: 'scripts/gulp/src/plugins/util/getComponentInfo.ts', hash: '2980768138909657298' }, - { file: 'scripts/gulp/src/plugins/util/getRelativePathToSourceFile.ts', hash: '4636174730281639056' }, - { file: 'scripts/gulp/src/plugins/util/getShorthandInfo.ts', hash: '82871639742268498' }, - { file: 'scripts/gulp/src/plugins/util/index.ts', hash: '10847390264829094108' }, - { file: 'scripts/gulp/src/plugins/util/parseBuffer.ts', hash: '4873230922314432063' }, - { file: 'scripts/gulp/src/plugins/util/parseDefaultPropsValues.ts', hash: '5238221904296974450' }, - { file: 'scripts/gulp/src/plugins/util/parseDocSection.ts', hash: '13639522712631005195' }, - { file: 'scripts/gulp/src/plugins/util/parseDocblock.ts', hash: '5229957627777581211' }, - { file: 'scripts/gulp/src/plugins/util/parseType.ts', hash: '2020153800369620730' }, - { file: 'scripts/gulp/src/plugins/util/parseTypeAnnotation.ts', hash: '17653591491975389214' }, - { file: 'scripts/gulp/src/plugins/util/tsLanguageService.ts', hash: '15783400455653817887' }, - { file: 'scripts/gulp/src/preset.ts', hash: '2711454985674092336' }, - { file: 'scripts/gulp/src/tasks/browserAdapters.ts', hash: '4567420568985195828' }, - { file: 'scripts/gulp/src/tasks/bundle.ts', hash: '16595672668696770467' }, - { file: 'scripts/gulp/src/tasks/component-info.ts', hash: '9646456630648543387' }, - { file: 'scripts/gulp/src/tasks/docs.ts', hash: '4428791750588770695' }, - { file: 'scripts/gulp/src/tasks/serve.ts', hash: '2927945412709591114' }, - { file: 'scripts/gulp/src/tasks/stats.ts', hash: '10337716767911269452' }, - { file: 'scripts/gulp/src/tasks/test-circulars/config.ts', hash: '3696039267764445384' }, - { file: 'scripts/gulp/src/tasks/test-circulars/index.ts', hash: '4002982004987266417' }, - { file: 'scripts/gulp/src/tasks/test-circulars/utils.ts', hash: '10987622128974484970' }, - { file: 'scripts/gulp/src/tasks/test-dependencies/index.ts', hash: '9734234285232294639' }, - { file: 'scripts/gulp/src/tasks/test-dependencies/utils.ts', hash: '11287650727847866426' }, - { file: 'scripts/gulp/src/tasks/test-e2e.ts', hash: '3235213262210072558' }, - { file: 'scripts/gulp/src/tasks/test-unit.ts', hash: '9289024222620648246' }, - { file: 'scripts/gulp/src/webpack/webpack.config.e2e.ts', hash: '13987955866919355449' }, - { file: 'scripts/gulp/src/webpack/webpack.config.stats.ts', hash: '17071462924856297081' }, - { file: 'scripts/gulp/src/webpack/webpack.config.ts', hash: '8112596741759733054' }, - { file: 'scripts/gulp/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/gulp/tsconfig.lib.json', hash: '10054891788177936356' }, - { file: 'scripts/gulp/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/scripts-package-manager': [ - { file: 'scripts/package-manager/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/package-manager/jest.config.js', hash: '16568789143873113093' }, - { file: 'scripts/package-manager/package.json', hash: '2809962615901878866' }, - { file: 'scripts/package-manager/postinstall.js', hash: '9250556824353534057' }, - { file: 'scripts/package-manager/project.json', hash: '16573537905473013173' }, - { file: 'scripts/package-manager/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/package-manager/tsconfig.lib.json', hash: '3753806828268919288' }, - { file: 'scripts/package-manager/tsconfig.spec.json', hash: '16242416785763058919' }, - { file: 'scripts/package-manager/use-yarn-please.js', hash: '363289590456864077' }, - ], - '@fluentui/scripts-fluentui-publish': [ - { file: 'scripts/fluentui-publish/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/fluentui-publish/index.ts', hash: '1957588669308405884' }, - { file: 'scripts/fluentui-publish/jest.config.js', hash: '5846928013675828309' }, - { - file: 'scripts/fluentui-publish/package.json', - hash: '6624435746520159601', - deps: ['@fluentui/scripts-monorepo'], - }, - { file: 'scripts/fluentui-publish/project.json', hash: '6709988330732270986' }, - { file: 'scripts/fluentui-publish/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/fluentui-publish/tsconfig.lib.json', hash: '3753806828268919288' }, - { file: 'scripts/fluentui-publish/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/fluent2-theme': [ - { file: 'packages/fluent2-theme/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/fluent2-theme/.npmignore', hash: '47056201363133096' }, - { file: 'packages/fluent2-theme/CHANGELOG.json', hash: '14000262545189246502' }, - { file: 'packages/fluent2-theme/CHANGELOG.md', hash: '12092648922828663973' }, - { file: 'packages/fluent2-theme/LICENSE', hash: '13314032916801402668' }, - { file: 'packages/fluent2-theme/README.md', hash: '5178866690875074267' }, - { file: 'packages/fluent2-theme/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/fluent2-theme/package.json', - hash: '15050535793510851951', - deps: [ - '@fluentui/react', - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'packages/fluent2-theme/project.json', hash: '4537333210814173348' }, - { file: 'packages/fluent2-theme/src/componentStyles/BasePicker.styles.ts', hash: '15260600776551767882' }, - { file: 'packages/fluent2-theme/src/componentStyles/Breadcrumb.styles.ts', hash: '15372291180115099675' }, - { file: 'packages/fluent2-theme/src/componentStyles/Button.styles.ts', hash: '17753640107838954652' }, - { file: 'packages/fluent2-theme/src/componentStyles/Callout.styles.ts', hash: '16077482378149077721' }, - { file: 'packages/fluent2-theme/src/componentStyles/Check.styles.ts', hash: '13810909077831846777' }, - { file: 'packages/fluent2-theme/src/componentStyles/Checkbox.styles.ts', hash: '3424414869442365214' }, - { file: 'packages/fluent2-theme/src/componentStyles/ChoiceGroup.styles.ts', hash: '7308999010808507589' }, - { file: 'packages/fluent2-theme/src/componentStyles/ChoiceGroupOption.styles.ts', hash: '15788544625313028693' }, - { - file: 'packages/fluent2-theme/src/componentStyles/ColorPickerGridStyles.styles.ts', - hash: '16658141192552402060', - }, - { file: 'packages/fluent2-theme/src/componentStyles/CommandBar.styles.ts', hash: '12555985599653262034' }, - { file: 'packages/fluent2-theme/src/componentStyles/CommandBarButton.styles.ts', hash: '6257552873011644753' }, - { file: 'packages/fluent2-theme/src/componentStyles/ContextualMenu.styles.ts', hash: '6595251738348705689' }, - { file: 'packages/fluent2-theme/src/componentStyles/DetailsRowCheck.styles.ts', hash: '15893703503136844888' }, - { file: 'packages/fluent2-theme/src/componentStyles/Dialog.styles.ts', hash: '15676106242050735701' }, - { file: 'packages/fluent2-theme/src/componentStyles/Dropdown.styles.ts', hash: '17429374229032292005' }, - { file: 'packages/fluent2-theme/src/componentStyles/HoverCard.styles.ts', hash: '11420731975731615304' }, - { file: 'packages/fluent2-theme/src/componentStyles/MessageBar.styles.ts', hash: '6970817193015414941' }, - { file: 'packages/fluent2-theme/src/componentStyles/Modal.styles.ts', hash: '6149565223591052328' }, - { file: 'packages/fluent2-theme/src/componentStyles/Pivot.styles.ts', hash: '17110489539848042310' }, - { file: 'packages/fluent2-theme/src/componentStyles/SearchBox.styles.ts', hash: '11165416111356502027' }, - { file: 'packages/fluent2-theme/src/componentStyles/Slider.styles.ts', hash: '1801686107186612471' }, - { file: 'packages/fluent2-theme/src/componentStyles/SpinButton.styles.ts', hash: '5436783297629394729' }, - { file: 'packages/fluent2-theme/src/componentStyles/Spinner.styles.ts', hash: '2297587064235108640' }, - { file: 'packages/fluent2-theme/src/componentStyles/TagItem.styles.ts', hash: '8562803234129863321' }, - { file: 'packages/fluent2-theme/src/componentStyles/TextField.styles.ts', hash: '4531925913638019222' }, - { file: 'packages/fluent2-theme/src/componentStyles/Toggle.styles.ts', hash: '1148580698831778292' }, - { file: 'packages/fluent2-theme/src/componentStyles/inputStyleHelpers.utils.ts', hash: '10599679107732509558' }, - { file: 'packages/fluent2-theme/src/fluent2ComponentStyles.ts', hash: '4167974845032497451' }, - { file: 'packages/fluent2-theme/src/fluent2SharedColors.ts', hash: '17417864239864681637' }, - { file: 'packages/fluent2-theme/src/fluent2WebDarkTheme.ts', hash: '4115228166445543492' }, - { file: 'packages/fluent2-theme/src/fluent2WebLightTheme.ts', hash: '6879190915920168265' }, - { file: 'packages/fluent2-theme/src/index.ts', hash: '10220108571584631462' }, - { file: 'packages/fluent2-theme/src/types.ts', hash: '6590217542999449010' }, - { file: 'packages/fluent2-theme/src/version.ts', hash: '16446534884769303039' }, - { file: 'packages/fluent2-theme/tsconfig.json', hash: '6054155811259967380' }, - { file: 'packages/fluent2-theme/webpack.config.js', hash: '203595246380395220' }, - ], - '@fluentui/react-overflow': [ - { file: 'packages/react-components/react-overflow/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-overflow/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-overflow/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-overflow/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-overflow/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-overflow/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-overflow/CHANGELOG.json', hash: '17151345637925750323' }, - { file: 'packages/react-components/react-overflow/CHANGELOG.md', hash: '11159453311878671621' }, - { file: 'packages/react-components/react-overflow/LICENSE', hash: '9818542165238110929' }, - { file: 'packages/react-components/react-overflow/README.md', hash: '14042413657447533493' }, - { file: 'packages/react-components/react-overflow/bundle-size/hooks.fixture.js', hash: '98538218520861936' }, - { file: 'packages/react-components/react-overflow/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-overflow/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-overflow/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-overflow/etc/react-overflow.api.md', hash: '5944085284944377635' }, - { - file: 'packages/react-components/react-overflow/etc/react-priority-overflow.api.md', - hash: '6850313133803861984', - }, - { file: 'packages/react-components/react-overflow/jest.config.js', hash: '1514962155860067226' }, - { file: 'packages/react-components/react-overflow/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-overflow/package.json', - hash: '2219755465510116858', - deps: [ - '@fluentui/priority-overflow', - '@fluentui/react-context-selector', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-overflow/project.json', hash: '14511368221817073832' }, - { file: 'packages/react-components/react-overflow/src/Overflow.cy.tsx', hash: '5903549386456079078' }, - { - file: 'packages/react-components/react-overflow/src/components/Overflow.test.tsx', - hash: '4616096457460375706', - }, - { file: 'packages/react-components/react-overflow/src/components/Overflow.tsx', hash: '15335767250878277368' }, - { - file: 'packages/react-components/react-overflow/src/components/OverflowDivider/OverflowDivider.tsx', - hash: '9991237880667566221', - }, - { - file: 'packages/react-components/react-overflow/src/components/OverflowDivider/OverflowDivider.types.ts', - hash: '10260336547526921784', - }, - { - file: 'packages/react-components/react-overflow/src/components/OverflowItem/OverflowItem.tsx', - hash: '13525090351953575094', - }, - { - file: 'packages/react-components/react-overflow/src/components/OverflowItem/OverflowItem.types.ts', - hash: '8179926864947790425', - }, - { - file: 'packages/react-components/react-overflow/src/components/OverflowItem/index.ts', - hash: '18199425824488830312', - }, - { - file: 'packages/react-components/react-overflow/src/components/useOverflowStyles.styles.ts', - hash: '16931751093871652445', - }, - { file: 'packages/react-components/react-overflow/src/constants.ts', hash: '11914410734725550543' }, - { file: 'packages/react-components/react-overflow/src/index.ts', hash: '928923642684209487' }, - { file: 'packages/react-components/react-overflow/src/overflowContext.ts', hash: '7769612302933074122' }, - { file: 'packages/react-components/react-overflow/src/types.ts', hash: '5492746861660879830' }, - { - file: 'packages/react-components/react-overflow/src/useIsOverflowGroupVisible.ts', - hash: '4841996585229831820', - }, - { file: 'packages/react-components/react-overflow/src/useIsOverflowItemVisible.ts', hash: '6306945866532867469' }, - { - file: 'packages/react-components/react-overflow/src/useOverflowContainer.test.ts', - hash: '11708115788843291653', - }, - { file: 'packages/react-components/react-overflow/src/useOverflowContainer.ts', hash: '6511953937396193454' }, - { file: 'packages/react-components/react-overflow/src/useOverflowCount.ts', hash: '5628822841071015476' }, - { file: 'packages/react-components/react-overflow/src/useOverflowDivider.ts', hash: '7563026932439474358' }, - { file: 'packages/react-components/react-overflow/src/useOverflowItem.test.tsx', hash: '6068719971330329687' }, - { file: 'packages/react-components/react-overflow/src/useOverflowItem.ts', hash: '11076561095104277063' }, - { file: 'packages/react-components/react-overflow/src/useOverflowMenu.ts', hash: '2665228874597285133' }, - { - file: 'packages/react-components/react-overflow/src/useOverflowVisibility.test.tsx', - hash: '3159144109608287371', - }, - { file: 'packages/react-components/react-overflow/src/useOverflowVisibility.ts', hash: '816675367100410748' }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/Default.stories.tsx', - hash: '13636933276269901073', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/Dividers.stories.tsx', - hash: '17525297437007530058', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/LargerDividers.stories.tsx', - hash: '12330010832915645500', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/MinimumVisible.stories.tsx', - hash: '14537983058431798177', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/OverflowByPriority.stories.tsx', - hash: '14209658414845891889', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/OverflowDescription.md', - hash: '3103387157794012604', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/Pinned.stories.tsx', - hash: '6120787215013052902', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/PriorityWithDividers.stories.tsx', - hash: '1841267361857628080', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/ReverseDomOrder.stories.tsx', - hash: '528035539893611447', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/Vertical.stories.tsx', - hash: '15263716140745374237', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/Wrapped.stories.tsx', - hash: '3049936368731116819', - }, - { - file: 'packages/react-components/react-overflow/stories/Overflow/index.stories.tsx', - hash: '11843265896563295928', - }, - { file: 'packages/react-components/react-overflow/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-overflow/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-overflow/tsconfig.lib.json', hash: '2390123189881839961' }, - { file: 'packages/react-components/react-overflow/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-migration-v8-v9': [ - { file: 'packages/react-components/react-migration-v8-v9/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-migration-v8-v9/.eslintrc.json', hash: '12940771472901318782' }, - { file: 'packages/react-components/react-migration-v8-v9/.storybook/main.js', hash: '7685356111495756458' }, - { file: 'packages/react-components/react-migration-v8-v9/.storybook/preview.js', hash: '1791378012295456991' }, - { - file: 'packages/react-components/react-migration-v8-v9/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-migration-v8-v9/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-migration-v8-v9/CHANGELOG.json', hash: '4482660811503421238' }, - { file: 'packages/react-components/react-migration-v8-v9/CHANGELOG.md', hash: '3437347504588188651' }, - { file: 'packages/react-components/react-migration-v8-v9/LICENSE', hash: '10913970292391220170' }, - { file: 'packages/react-components/react-migration-v8-v9/README.md', hash: '15667163717531608187' }, - { file: 'packages/react-components/react-migration-v8-v9/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-migration-v8-v9/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-migration-v8-v9/docs/Spec.md', hash: '3855974602588191742' }, - { - file: 'packages/react-components/react-migration-v8-v9/etc/react-migration-v8-v9.api.md', - hash: '2219432216497333075', - }, - { file: 'packages/react-components/react-migration-v8-v9/jest.config.js', hash: '12480753325623125896' }, - { file: 'packages/react-components/react-migration-v8-v9/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-migration-v8-v9/package.json', - hash: '663868487500583523', - deps: [ - 'npm:@ctrl/tinycolor', - '@fluentui/fluent2-theme', - '@fluentui/react', - '@fluentui/react-components', - 'npm:@fluentui/react-icons', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-migration-v8-v9/project.json', hash: '17528918550118370943' }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/ActionButtonShim.tsx', - hash: '4110087356959872754', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/ButtonShim.tsx', - hash: '16685654881402239626', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/CommandButtonShim.tsx', - hash: '4759681242635364297', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/CompoundButtonShim.tsx', - hash: '980584788610671562', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/DefaultButtonShim.tsx', - hash: '1506610680792068683', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/MenuButtonShim.tsx', - hash: '8742878838054043627', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/PrimaryButtonShim.tsx', - hash: '6779100275448036846', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/ToggleButtonShim.tsx', - hash: '14084275913679095107', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/index.ts', - hash: '15474820367684411221', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Button/shimButtonProps.tsx', - hash: '13480263659535974927', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Menu/MenuShim.tsx', - hash: '326950797068294927', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Menu/index.ts', - hash: '8609775169523161902', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Menu/shimMenuProps.tsx', - hash: '6020802296135092829', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/StackItemShim.styles.ts', - hash: '4960978407952946760', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/StackItemShim.tsx', - hash: '14483473330383428973', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/StackShim.styles.ts', - hash: '6869802001657343935', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/StackShim.tsx', - hash: '7702757711522861692', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/index.ts', - hash: '1941368763660759388', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Stack/stackUtils.ts', - hash: '523900441251478792', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/index.ts', - hash: '3659296414290183689', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/themeDuplicates.ts', - hash: '3014332871161126707', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/v8ThemeShim.ts', - hash: '7128294389039183692', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/v9BrandVariantsShim.ts', - hash: '15701946189222231667', - }, - { - file: 'packages/react-components/react-migration-v8-v9/src/components/Theme/v9ThemeShim.ts', - hash: '16396774737410343002', - }, - { file: 'packages/react-components/react-migration-v8-v9/src/index.ts', hash: '15917486237367269151' }, - { - file: 'packages/react-components/react-migration-v8-v9/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ActionButtonShim/Description.md', - hash: '17799358882441678529', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ActionButtonShim/index.stories.tsx', - hash: '9619742389496589062', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/CommandButtonShim/Description.md', - hash: '15808068507500321486', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/CommandButtonShim/index.stories.tsx', - hash: '18400507665025012879', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/CompoundButtonShim/Description.md', - hash: '15615121418417537709', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/CompoundButtonShim/index.stories.tsx', - hash: '6103598228001237977', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/DefaultButtonShim/Description.md', - hash: '15808068507500321486', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/DefaultButtonShim/index.stories.tsx', - hash: '265941327074415516', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/MenuButtonShim/Description.md', - hash: '14517934418526815308', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/MenuButtonShim/index.stories.tsx', - hash: '17296333858974276990', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/PrimaryButtonShim/Description.md', - hash: '6403447194976241983', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/PrimaryButtonShim/index.stories.tsx', - hash: '9512401406819475429', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/Stack/Description.md', - hash: '15468957204558403920', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/Stack/index.stories.tsx', - hash: '13606024100413921215', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/ThemePreviewV8.stories.tsx', - hash: '8609587245661663745', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/ThemePreviewV9.stories.tsx', - hash: '13812748298400740871', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createBrandVariants/Description.md', - hash: '2972834094669803032', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createBrandVariants/index.stories.tsx', - hash: '3007379002370881485', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV8Theme/Description.md', - hash: '8730786855857856968', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV8Theme/index.stories.tsx', - hash: '7073847923381154773', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV9Theme/Description.md', - hash: '16317707978565389600', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ThemeShim/createV9Theme/index.stories.tsx', - hash: '1981086446371619663', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ToggleButtonShim/Description.md', - hash: '6884975637287055051', - }, - { - file: 'packages/react-components/react-migration-v8-v9/stories/ToggleButtonShim/index.stories.tsx', - hash: '12333612406901703840', - }, - { file: 'packages/react-components/react-migration-v8-v9/tsconfig.json', hash: '4817934933929993148' }, - { file: 'packages/react-components/react-migration-v8-v9/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-migration-v8-v9/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-tabster': [ - { file: 'packages/react-components/react-tabster/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-tabster/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-tabster/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-tabster/CHANGELOG.json', hash: '17283868674843285410' }, - { file: 'packages/react-components/react-tabster/CHANGELOG.md', hash: '1343400762706998062' }, - { file: 'packages/react-components/react-tabster/LICENSE', hash: '8780663838113620346' }, - { file: 'packages/react-components/react-tabster/README.md', hash: '12252804276424131116' }, - { file: 'packages/react-components/react-tabster/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-tabster/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-tabster/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-tabster/etc/react-tabster.api.md', hash: '2288916014796255296' }, - { file: 'packages/react-components/react-tabster/jest.config.js', hash: '18325348387735168838' }, - { file: 'packages/react-components/react-tabster/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-tabster/package.json', - hash: '9722559108762075220', - deps: [ - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - 'npm:keyborg', - 'npm:tabster', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-tabster/project.json', hash: '4885231158788135051' }, - { file: 'packages/react-components/react-tabster/src/focus/constants.ts', hash: '11610761315621037017' }, - { - file: 'packages/react-components/react-tabster/src/focus/createCustomFocusIndicatorStyle.ts', - hash: '10135999026179805427', - }, - { - file: 'packages/react-components/react-tabster/src/focus/createFocusOutlineStyle.ts', - hash: '2999734728216420753', - }, - { - file: 'packages/react-components/react-tabster/src/focus/focusVisiblePolyfill.test.ts', - hash: '7780914345110669573', - }, - { - file: 'packages/react-components/react-tabster/src/focus/focusVisiblePolyfill.ts', - hash: '17613086650502476862', - }, - { - file: 'packages/react-components/react-tabster/src/focus/focusWithinPolyfill.ts', - hash: '13269786247543402149', - }, - { file: 'packages/react-components/react-tabster/src/focus/index.ts', hash: '119617557468013632' }, - { file: 'packages/react-components/react-tabster/src/hooks/index.ts', hash: '10780671055306574479' }, - { - file: 'packages/react-components/react-tabster/src/hooks/useArrowNavigationGroup.ts', - hash: '13010941348645235525', - }, - { file: 'packages/react-components/react-tabster/src/hooks/useFocusFinders.ts', hash: '4287553250764137007' }, - { file: 'packages/react-components/react-tabster/src/hooks/useFocusObserved.ts', hash: '5423822093800652739' }, - { file: 'packages/react-components/react-tabster/src/hooks/useFocusVisible.cy.tsx', hash: '7947075782985402033' }, - { - file: 'packages/react-components/react-tabster/src/hooks/useFocusVisible.test.tsx', - hash: '1954438373418047311', - }, - { file: 'packages/react-components/react-tabster/src/hooks/useFocusVisible.ts', hash: '11746992728975359453' }, - { file: 'packages/react-components/react-tabster/src/hooks/useFocusWithin.ts', hash: '514927461607676297' }, - { file: 'packages/react-components/react-tabster/src/hooks/useFocusableGroup.ts', hash: '3474408154515309341' }, - { - file: 'packages/react-components/react-tabster/src/hooks/useKeyboardNavAttribute.ts', - hash: '13537309225714687781', - }, - { - file: 'packages/react-components/react-tabster/src/hooks/useMergeTabsterAttributes.ts', - hash: '10846465615831234216', - }, - { file: 'packages/react-components/react-tabster/src/hooks/useModalAttributes.ts', hash: '7363526368192805001' }, - { file: 'packages/react-components/react-tabster/src/hooks/useObservedElement.ts', hash: '5721509457510651126' }, - { file: 'packages/react-components/react-tabster/src/hooks/useRestoreFocus.ts', hash: '11825775820569907957' }, - { file: 'packages/react-components/react-tabster/src/hooks/useTabster.ts', hash: '6433329624895994249' }, - { - file: 'packages/react-components/react-tabster/src/hooks/useTabsterAttributes.ts', - hash: '12511269325455079018', - }, - { - file: 'packages/react-components/react-tabster/src/hooks/useUncontrolledFocus.ts', - hash: '3918052114715897957', - }, - { file: 'packages/react-components/react-tabster/src/index.ts', hash: '11056968312503357075' }, - { file: 'packages/react-components/react-tabster/src/useFocusObserved.cy.tsx', hash: '4941677566385580864' }, - { file: 'packages/react-components/react-tabster/src/useKeyborg.cy.tsx', hash: '2163661386752319470' }, - { file: 'packages/react-components/react-tabster/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-tabster/tsconfig.json', hash: '5596071008249197618' }, - { file: 'packages/react-components/react-tabster/tsconfig.lib.json', hash: '4109592473830538944' }, - { file: 'packages/react-components/react-tabster/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-textarea': [ - { file: 'packages/react-components/react-textarea/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-textarea/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-textarea/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-textarea/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-textarea/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-textarea/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-textarea/CHANGELOG.json', hash: '11520373447395147471' }, - { file: 'packages/react-components/react-textarea/CHANGELOG.md', hash: '11980578315049592601' }, - { file: 'packages/react-components/react-textarea/LICENSE', hash: '4498715062543112309' }, - { file: 'packages/react-components/react-textarea/README.md', hash: '5344125108621430649' }, - { - file: 'packages/react-components/react-textarea/bundle-size/Textarea.fixture.js', - hash: '17192439065238344351', - }, - { file: 'packages/react-components/react-textarea/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-textarea/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-textarea/docs/MIGRATION.md', hash: '17526740844244675212' }, - { file: 'packages/react-components/react-textarea/docs/Spec.md', hash: '14303084858892571145' }, - { file: 'packages/react-components/react-textarea/etc/react-textarea.api.md', hash: '5342628119613252095' }, - { file: 'packages/react-components/react-textarea/jest.config.js', hash: '10624360471583357965' }, - { file: 'packages/react-components/react-textarea/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-textarea/package.json', - hash: '4053548600420780000', - deps: [ - '@fluentui/react-field', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-textarea/project.json', hash: '1644416225662266477' }, - { file: 'packages/react-components/react-textarea/src/Textarea.ts', hash: '13370679537604069238' }, - { - file: 'packages/react-components/react-textarea/src/components/Textarea/Textarea.test.tsx', - hash: '16757346701550754906', - }, - { - file: 'packages/react-components/react-textarea/src/components/Textarea/Textarea.tsx', - hash: '16800492880889954221', - }, - { - file: 'packages/react-components/react-textarea/src/components/Textarea/Textarea.types.ts', - hash: '13003143832388706091', - }, - { - file: 'packages/react-components/react-textarea/src/components/Textarea/__snapshots__/Textarea.test.tsx.snap', - hash: '16171152998841505643', - }, - { - file: 'packages/react-components/react-textarea/src/components/Textarea/index.ts', - hash: '10698797457300083130', - }, - { - file: 'packages/react-components/react-textarea/src/components/Textarea/renderTextarea.tsx', - hash: '6185419952357045299', - }, - { - file: 'packages/react-components/react-textarea/src/components/Textarea/useTextarea.ts', - hash: '11772613917085952848', - }, - { - file: 'packages/react-components/react-textarea/src/components/Textarea/useTextareaStyles.styles.ts', - hash: '13631958646115528732', - }, - { file: 'packages/react-components/react-textarea/src/index.ts', hash: '6584368484105727560' }, - { file: 'packages/react-components/react-textarea/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaAppearance.stories.tsx', - hash: '3539206738445718143', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaBestPractices.md', - hash: '18227114171815669424', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaControlled.stories.tsx', - hash: '6872279739035536493', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaDefault.stories.tsx', - hash: '8318281564179232897', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaDescription.md', - hash: '13485520316389720001', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaDisabled.stories.tsx', - hash: '983048653998254023', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaPlaceholder.stories.tsx', - hash: '462631168486124274', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaResize.stories.tsx', - hash: '5894749941129343810', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaSize.stories.tsx', - hash: '13553877523019339375', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/TextareaUncontrolled.stories.tsx', - hash: '16181491644002402100', - }, - { - file: 'packages/react-components/react-textarea/stories/Textarea/index.stories.tsx', - hash: '4062141522867859029', - }, - { file: 'packages/react-components/react-textarea/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-textarea/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-textarea/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-divider': [ - { file: 'packages/react-components/react-divider/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-divider/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-divider/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-divider/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-divider/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-divider/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-divider/CHANGELOG.json', hash: '13479079640864241012' }, - { file: 'packages/react-components/react-divider/CHANGELOG.md', hash: '1395793154130333585' }, - { file: 'packages/react-components/react-divider/LICENSE', hash: '14023817589098421944' }, - { file: 'packages/react-components/react-divider/README.md', hash: '4056766105974983014' }, - { file: 'packages/react-components/react-divider/bundle-size/Divider.fixture.js', hash: '11373332966181672710' }, - { file: 'packages/react-components/react-divider/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-divider/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-divider/docs/MIGRATION.md', hash: '1643705267251793566' }, - { file: 'packages/react-components/react-divider/docs/Spec.md', hash: '10507791707433600269' }, - { file: 'packages/react-components/react-divider/etc/react-divider.api.md', hash: '16630984229525847963' }, - { file: 'packages/react-components/react-divider/jest.config.js', hash: '1152927763039745529' }, - { file: 'packages/react-components/react-divider/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-divider/package.json', - hash: '414161679037595975', - deps: [ - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-divider/project.json', hash: '12787666147608019291' }, - { file: 'packages/react-components/react-divider/src/Divider.ts', hash: '11741977117356417348' }, - { - file: 'packages/react-components/react-divider/src/components/Divider/Divider.test.tsx', - hash: '3056478946647445040', - }, - { - file: 'packages/react-components/react-divider/src/components/Divider/Divider.tsx', - hash: '9130488984128699236', - }, - { - file: 'packages/react-components/react-divider/src/components/Divider/Divider.types.ts', - hash: '13344028649484127587', - }, - { - file: 'packages/react-components/react-divider/src/components/Divider/__snapshots__/Divider.test.tsx.snap', - hash: '8915016820289301301', - }, - { file: 'packages/react-components/react-divider/src/components/Divider/index.ts', hash: '8553978515837008839' }, - { - file: 'packages/react-components/react-divider/src/components/Divider/renderDivider.tsx', - hash: '10546145220103482807', - }, - { - file: 'packages/react-components/react-divider/src/components/Divider/useDivider.ts', - hash: '8203516345352424438', - }, - { - file: 'packages/react-components/react-divider/src/components/Divider/useDividerStyles.styles.ts', - hash: '2052352461363498101', - }, - { file: 'packages/react-components/react-divider/src/index.ts', hash: '12277375761739938933' }, - { file: 'packages/react-components/react-divider/src/testing/isConformant.ts', hash: '17159661999478583888' }, - { - file: 'packages/react-components/react-divider/stories/Divider/DividerAlignContent.stories.tsx', - hash: '15576400069782630240', - }, - { - file: 'packages/react-components/react-divider/stories/Divider/DividerAppearance.stories.tsx', - hash: '14036585423451622453', - }, - { - file: 'packages/react-components/react-divider/stories/Divider/DividerCustomStyles.stories.tsx', - hash: '6179818489606984873', - }, - { - file: 'packages/react-components/react-divider/stories/Divider/DividerDefault.stories.tsx', - hash: '5883094048084295487', - }, - { - file: 'packages/react-components/react-divider/stories/Divider/DividerDescription.md', - hash: '1060509776422159278', - }, - { - file: 'packages/react-components/react-divider/stories/Divider/DividerInset.stories.tsx', - hash: '11405478731423348346', - }, - { - file: 'packages/react-components/react-divider/stories/Divider/DividerVertical.stories.tsx', - hash: '16290598666283219629', - }, - { - file: 'packages/react-components/react-divider/stories/Divider/index.stories.tsx', - hash: '17125349910069173416', - }, - { file: 'packages/react-components/react-divider/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-divider/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-divider/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/codemods': [ - { file: 'packages/codemods/.eslintrc.json', hash: '4428152067048705317' }, - { file: 'packages/codemods/.npmignore', hash: '47056201363133096' }, - { file: 'packages/codemods/CHANGELOG.json', hash: '11347495108269306727' }, - { file: 'packages/codemods/CHANGELOG.md', hash: '8867042710605885765' }, - { file: 'packages/codemods/LICENSE', hash: '14163660608650232522' }, - { file: 'packages/codemods/README.md', hash: '13860676800098945886' }, - { file: 'packages/codemods/bin/upgrade.js', hash: '16520232535087589005' }, - { file: 'packages/codemods/documentation/howTo.md', hash: '7461052920490961802' }, - { file: 'packages/codemods/documentation/renamePropTransforms.md', hash: '241704516325919730' }, - { file: 'packages/codemods/jest.config.js', hash: '5767287689832801759' }, - { file: 'packages/codemods/just.config.ts', hash: '2411455081002746933' }, - { - file: 'packages/codemods/package.json', - hash: '2182322265430513456', - deps: [ - 'npm:tslib', - 'npm:react', - 'npm:ts-morph', - 'npm:glob', - 'npm:yargs', - '@fluentui/eslint-plugin', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/codemods/project.json', hash: '1183081484802960152' }, - { file: 'packages/codemods/src/codeMods/mods/componentToCompat/compatHelpers.ts', hash: '9240806428948769680' }, - { - file: 'packages/codemods/src/codeMods/mods/componentToCompat/componentToCompat.mod.ts', - hash: '17273743481686930406', - }, - { file: 'packages/codemods/src/codeMods/mods/componentToCompat/namedExports.ts', hash: '10333643041167619988' }, - { file: 'packages/codemods/src/codeMods/mods/configMod/configMod.mod.ts', hash: '8256406929658905577' }, - { - file: 'packages/codemods/src/codeMods/mods/officeToFluentImport/officeToFluentImport.mod.ts', - hash: '16353032478154865044', - }, - { file: 'packages/codemods/src/codeMods/mods/oldToNewButton/oldToNewButton.mod.ts', hash: '1357173166044755082' }, - { - file: 'packages/codemods/src/codeMods/mods/personaToAvatar/personaToAvatar.mod.ts', - hash: '3425367627829998026', - }, - { file: 'packages/codemods/src/codeMods/mods/upgrades.json', hash: '8534611347961339460' }, - { - file: 'packages/codemods/src/codeMods/tests/componentToCompat/componentToCompat.test.ts', - hash: '9545073426540253167', - }, - { file: 'packages/codemods/src/codeMods/tests/configMod/configMod.test.ts', hash: '9507343427469922246' }, - { file: 'packages/codemods/src/codeMods/tests/mock/button/mButtonProps.tsx', hash: '7468149991658358259' }, - { file: 'packages/codemods/src/codeMods/tests/mock/button/mButtonStyles.tsx', hash: '12384006366854582909' }, - { - file: 'packages/codemods/src/codeMods/tests/mock/button/mCompoundButtonProps.tsx', - hash: '15112058447461572698', - }, - { file: 'packages/codemods/src/codeMods/tests/mock/compat/Button.tsx', hash: '10262838276442804862' }, - { file: 'packages/codemods/src/codeMods/tests/mock/compat/DefaultButton.tsx', hash: '8256931557089837956' }, - { file: 'packages/codemods/src/codeMods/tests/mock/compat/ImportsStuff.tsx', hash: '1518893783011304840' }, - { file: 'packages/codemods/src/codeMods/tests/mock/compat/mockIndex.ts', hash: '3709648605083778684' }, - { file: 'packages/codemods/src/codeMods/tests/mock/dropdown/mDropdownProps.tsx', hash: '4363796598908677651' }, - { - file: 'packages/codemods/src/codeMods/tests/mock/dropdown/mDropdownSpreadProps.tsx', - hash: '4375066566216277476', - }, - { file: 'packages/codemods/src/codeMods/tests/mock/mockFunction.tsx', hash: '311456311444952405' }, - { file: 'packages/codemods/src/codeMods/tests/mock/mockImport.tsx', hash: '17710243442170095470' }, - { file: 'packages/codemods/src/codeMods/tests/mock/persona/mClass.tsx', hash: '17753879045974249120' }, - { file: 'packages/codemods/src/codeMods/tests/mock/persona/mFunction.tsx', hash: '5626766255761670481' }, - { file: 'packages/codemods/src/codeMods/tests/mock/persona/mInterface.tsx', hash: '9034839761500607237' }, - { file: 'packages/codemods/src/codeMods/tests/mock/persona/mPersonaProps.tsx', hash: '11328331329653495165' }, - { - file: 'packages/codemods/src/codeMods/tests/mock/persona/mPersonaSpreadProps.tsx', - hash: '13995810082966974410', - }, - { file: 'packages/codemods/src/codeMods/tests/mock/persona/mWithPersonaSize.tsx', hash: '3491347508505688659' }, - { file: 'packages/codemods/src/codeMods/tests/mock/spinner/mSpinnerProps.tsx', hash: '7870275173352507482' }, - { - file: 'packages/codemods/src/codeMods/tests/mock/spinner/mSpinnerSpreadProps.tsx', - hash: '11413584911410415206', - }, - { file: 'packages/codemods/src/codeMods/tests/mock/utils/mockEdgeImports.tsx', hash: '6904143302243784622' }, - { file: 'packages/codemods/src/codeMods/tests/mock/utils/mockImports.tsx', hash: '4989490717297183261' }, - { - file: 'packages/codemods/src/codeMods/tests/officeToFluentImport/officeToFluentImport.test.ts', - hash: '7003135997588781179', - }, - { - file: 'packages/codemods/src/codeMods/tests/oldToNewButton/oldToNewButton.test.ts', - hash: '1764156562373966815', - }, - { - file: 'packages/codemods/src/codeMods/tests/personaToAvatar/componentMod.test.ts', - hash: '12262799446987997670', - }, - { file: 'packages/codemods/src/codeMods/tests/personaToAvatar/propsMod.test.ts', hash: '11171104898829191255' }, - { file: 'packages/codemods/src/codeMods/tests/utilities/importUtils.test.ts', hash: '7159995125621984221' }, - { file: 'packages/codemods/src/codeMods/tests/utilities/jsxUtilities.test.ts', hash: '8007580690693405560' }, - { file: 'packages/codemods/src/codeMods/tests/utilities/propUtilities.test.ts', hash: '4677491295252227055' }, - { file: 'packages/codemods/src/codeMods/types.ts', hash: '13021417299316460312' }, - { file: 'packages/codemods/src/codeMods/utilities/helpers/propHelpers.ts', hash: '2484056730035742925' }, - { file: 'packages/codemods/src/codeMods/utilities/imports.ts', hash: '15301094299013895104' }, - { file: 'packages/codemods/src/codeMods/utilities/index.ts', hash: '2555049955491844014' }, - { file: 'packages/codemods/src/codeMods/utilities/jsx.ts', hash: '13793530493669573769' }, - { file: 'packages/codemods/src/codeMods/utilities/props.ts', hash: '12666028733730733197' }, - { file: 'packages/codemods/src/codeMods/utilities/transforms.ts', hash: '16926870991077811697' }, - { file: 'packages/codemods/src/command.ts', hash: '18096051007695008033' }, - { file: 'packages/codemods/src/helpers/chainable.ts', hash: '8733383370644214781' }, - { file: 'packages/codemods/src/helpers/maybe.ts', hash: '14176675661170324955' }, - { file: 'packages/codemods/src/helpers/result.ts', hash: '5450803410888169633' }, - { file: 'packages/codemods/src/helpers/tests/maybe.test.ts', hash: '4721878516108784302' }, - { file: 'packages/codemods/src/helpers/tests/result.test.ts', hash: '12287505420809316455' }, - { file: 'packages/codemods/src/index.ts', hash: '7306275544208333527' }, - { file: 'packages/codemods/src/modRunner/logger.ts', hash: '3590337614079459744' }, - { file: 'packages/codemods/src/modRunner/modFilter.ts', hash: '7822802422462301002' }, - { file: 'packages/codemods/src/modRunner/runnerUtilities.ts', hash: '16535238509257622858' }, - { file: 'packages/codemods/src/modRunner/tests/command.test.ts', hash: '12681799096963602133' }, - { file: 'packages/codemods/src/modRunner/tests/filters.test.ts', hash: '3040657239305293440' }, - { file: 'packages/codemods/src/modRunner/tests/mocks/MockMods/CodeMod.mock.ts', hash: '15197719005968264090' }, - { file: 'packages/codemods/src/modRunner/tests/mocks/MockMods/JSMock.mod.js', hash: '11801600890007965326' }, - { - file: 'packages/codemods/src/modRunner/tests/mocks/MockProject/projects/subProject/tsconfig.json', - hash: '5954153889229813267', - }, - { - file: 'packages/codemods/src/modRunner/tests/mocks/MockProject/src/File-react.tsx', - hash: '15555827964896839803', - }, - { file: 'packages/codemods/src/modRunner/tests/mocks/MockProject/src/File.ts', hash: '15555827964896839803' }, - { file: 'packages/codemods/src/modRunner/tests/mocks/MockProject/tsconfig.json', hash: '5954153889229813267' }, - { file: 'packages/codemods/src/modRunner/tests/modRunner.test.ts', hash: '15492578309836042993' }, - { file: 'packages/codemods/src/modRunner/tests/upgrade.test.ts', hash: '17926476974248175499' }, - { file: 'packages/codemods/src/upgrade.ts', hash: '10683793787605745167' }, - { file: 'packages/codemods/tsconfig.json', hash: '9192670197236996538' }, - ], - '@fluentui/react-examples': [ - { file: 'packages/react-examples/.eslintrc.json', hash: '1702330080249613942' }, - { file: 'packages/react-examples/.npmignore', hash: '47056201363133096' }, - { file: 'packages/react-examples/.storybook/main.js', hash: '14816398585331678918' }, - { file: 'packages/react-examples/.storybook/manager.js', hash: '10262691162070439084' }, - { file: 'packages/react-examples/.storybook/preview-loader.js', hash: '11880477845897264629' }, - { file: 'packages/react-examples/.storybook/preview.js', hash: '285925511367961485' }, - { file: 'packages/react-examples/.storybook/tsconfig.json', hash: '8998439185517558766' }, - { file: 'packages/react-examples/CHANGELOG.json', hash: '1657021903900291541' }, - { file: 'packages/react-examples/CHANGELOG.md', hash: '8540291172350589844' }, - { file: 'packages/react-examples/LICENSE', hash: '16146362590109763261' }, - { file: 'packages/react-examples/README.md', hash: '9006185454830750184' }, - { file: 'packages/react-examples/cypress.config.ts', hash: '14032725885983203266' }, - { file: 'packages/react-examples/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-examples/package.json', - hash: '15873865825890157794', - deps: [ - '@fluentui/azure-themes', - '@fluentui/date-time-utilities', - '@fluentui/dom-utilities', - '@fluentui/example-data', - '@fluentui/font-icons-mdl2', - '@fluentui/foundation-legacy', - '@fluentui/merge-styles', - '@fluentui/react', - '@fluentui/react-cards', - '@fluentui/react-charting', - '@fluentui/react-docsite-components', - '@fluentui/react-experiments', - '@fluentui/react-file-type-icons', - '@fluentui/react-focus', - '@fluentui/react-hooks', - '@fluentui/react-icons-mdl2', - '@fluentui/scheme-utilities', - '@fluentui/style-utilities', - '@fluentui/theme', - '@fluentui/theme-samples', - '@fluentui/utilities', - 'npm:@microsoft/load-themed-styles', - 'npm:d3-fetch', - 'npm:d3-format', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/storybook', - 'npm:@types/d3-format', - 'npm:@types/d3-fetch', - '@fluentui/scripts-webpack', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/react-examples/project.json', hash: '9649139128656182995' }, - { - file: 'packages/react-examples/src/azure-themes/stories/Themes/Themes.stories.tsx', - hash: '2125217204908134883', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/CalendarInlineMultidayDayView.stories.tsx', - hash: '9777485459679979455', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/ContextMenu.stories.tsx', - hash: '11906792680589086576', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/DetailsListCustomColumnsExample.stories.tsx', - hash: '1526604806666311017', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/Pivots.stories.tsx', - hash: '8505117310795656110', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/ProgressIndicator.stories.tsx', - hash: '7878042562887496662', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/SpinButton.stories.tsx', - hash: '9644363006615395796', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/TeachingBubble.stories.tsx', - hash: '6363913365421312335', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/actionButton.stories.tsx', - hash: '2943437613734380711', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx', - hash: '15773176792318513295', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/activityitempersonas.stories.tsx', - hash: '17493377115708891980', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/buttonToggle.stories.tsx', - hash: '13322041471963459713', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/callout.stories.tsx', - hash: '12572487828916593340', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/choiceGroupWithImagesandIcons.stories.tsx', - hash: '11988481674102576150', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/choicegroup.stories.tsx', - hash: '1830356398977442236', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/colorpicker.stories.tsx', - hash: '17135174824570336702', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/comboBox.stories.tsx', - hash: '11774074986199852070', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/commandBar.stories.tsx', - hash: '18251599124601402250', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/commandBarButton.stories.tsx', - hash: '7982136203595322144', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/contextualMenu.stories.tsx', - hash: '9107686953554100721', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/dateBoundary.stories.tsx', - hash: '13784003701073842051', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/defaultDatePicker.tsx', - hash: '12667593297047487456', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/detailsList.stories.tsx', - hash: '9912609037404072743', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/dropdown.stories.tsx', - hash: '10420437495479310291', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/iconButton.stories.tsx', - hash: '3357533028131049247', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/iconTooltip.stories.tsx', - hash: '5754928710161508947', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/messageBar.stories.tsx', - hash: '16203732642630267765', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/slider.stories.tsx', - hash: '14770656390957719230', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/spinner.stories.tsx', - hash: '5676613769831055307', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/splitButton.stories.tsx', - hash: '13342035394552227782', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/tags.stories.tsx', - hash: '3454619756727937887', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/toggle.stories.tsx', - hash: '3283213291269405540', - }, - { - file: 'packages/react-examples/src/azure-themes/stories/components/tooltip.stories.tsx', - hash: '10393279098064559619', - }, - { - file: 'packages/react-examples/src/react/ActivityItem/ActivityItem.Basic.Example.tsx', - hash: '13914346728006709604', - }, - { - file: 'packages/react-examples/src/react/ActivityItem/ActivityItem.Compact.Example.tsx', - hash: '10799670486824503656', - }, - { - file: 'packages/react-examples/src/react/ActivityItem/ActivityItem.Persona.Example.tsx', - hash: '4530460165784137223', - }, - { file: 'packages/react-examples/src/react/ActivityItem/ActivityItem.doc.tsx', hash: '18382057917831206852' }, - { - file: 'packages/react-examples/src/react/ActivityItem/docs/ActivityItemBestPractices.md', - hash: '14641514549794392494', - }, - { - file: 'packages/react-examples/src/react/ActivityItem/docs/ActivityItemOverview.md', - hash: '13943306819186175577', - }, - { - file: 'packages/react-examples/src/react/Announced/Announced.BulkOperations.Example.tsx', - hash: '723390365406397872', - }, - { - file: 'packages/react-examples/src/react/Announced/Announced.LazyLoading.Example.tsx', - hash: '5721743437762442725', - }, - { - file: 'packages/react-examples/src/react/Announced/Announced.QuickActions.Example.tsx', - hash: '13040897774565725346', - }, - { - file: 'packages/react-examples/src/react/Announced/Announced.SearchResults.Example.tsx', - hash: '8593960476119642725', - }, - { file: 'packages/react-examples/src/react/Announced/Announced.doc.tsx', hash: '13290861637697161815' }, - { file: 'packages/react-examples/src/react/Announced/docs/AnnouncedOverview.md', hash: '7286146550152171442' }, - { file: 'packages/react-examples/src/react/Announced/docs/Asynchronous/Donts.md', hash: '10308843472612849527' }, - { file: 'packages/react-examples/src/react/Announced/docs/Asynchronous/Dos.md', hash: '8151809050993285928' }, - { - file: 'packages/react-examples/src/react/Announced/docs/Asynchronous/Overview.md', - hash: '17122414855820838170', - }, - { - file: 'packages/react-examples/src/react/Announced/docs/BulkLongRunning/Donts.md', - hash: '3313655889678117965', - }, - { file: 'packages/react-examples/src/react/Announced/docs/BulkLongRunning/Dos.md', hash: '5257417610796255358' }, - { - file: 'packages/react-examples/src/react/Announced/docs/BulkLongRunning/Overview.md', - hash: '13728180440979579656', - }, - { file: 'packages/react-examples/src/react/Announced/docs/QuickActions/Donts.md', hash: '3921478636485365154' }, - { file: 'packages/react-examples/src/react/Announced/docs/QuickActions/Dos.md', hash: '15174421481868869367' }, - { - file: 'packages/react-examples/src/react/Announced/docs/QuickActions/Overview.md', - hash: '15688976934623723027', - }, - { file: 'packages/react-examples/src/react/Announced/docs/SearchResults/Donts.md', hash: '7961540872895838551' }, - { file: 'packages/react-examples/src/react/Announced/docs/SearchResults/Dos.md', hash: '14589829831559595933' }, - { - file: 'packages/react-examples/src/react/Announced/docs/SearchResults/Overview.md', - hash: '15600377904142434146', - }, - { - file: 'packages/react-examples/src/react/Breadcrumb/Breadcrumb.Basic.Example.tsx', - hash: '3179480932676095995', - }, - { - file: 'packages/react-examples/src/react/Breadcrumb/Breadcrumb.Collapsing.Example.tsx', - hash: '12999198751733228695', - }, - { - file: 'packages/react-examples/src/react/Breadcrumb/Breadcrumb.Static.Example.tsx', - hash: '16266848918167291560', - }, - { file: 'packages/react-examples/src/react/Breadcrumb/Breadcrumb.doc.tsx', hash: '1036348250448252175' }, - { - file: 'packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbBestPractices.md', - hash: '13343729804615205774', - }, - { file: 'packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbDonts.md', hash: '15126643046228785634' }, - { file: 'packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbDos.md', hash: '9779072492094064773' }, - { file: 'packages/react-examples/src/react/Breadcrumb/docs/BreadcrumbOverview.md', hash: '18079527568158322334' }, - { file: 'packages/react-examples/src/react/Button/Button.Action.Example.tsx', hash: '17593143648911728928' }, - { file: 'packages/react-examples/src/react/Button/Button.Anchor.Example.tsx', hash: '10364344687196047790' }, - { file: 'packages/react-examples/src/react/Button/Button.Command.Example.tsx', hash: '17701013651033269340' }, - { file: 'packages/react-examples/src/react/Button/Button.CommandBar.Example.tsx', hash: '2442938012510837186' }, - { file: 'packages/react-examples/src/react/Button/Button.Compound.Example.tsx', hash: '10064596175304087228' }, - { - file: 'packages/react-examples/src/react/Button/Button.ContextualMenu.Example.tsx', - hash: '2327815820929103506', - }, - { file: 'packages/react-examples/src/react/Button/Button.CustomSplit.Example.tsx', hash: '3510559926954356307' }, - { file: 'packages/react-examples/src/react/Button/Button.Default.Example.tsx', hash: '15170870096351325084' }, - { file: 'packages/react-examples/src/react/Button/Button.Icon.Example.tsx', hash: '16864707904196884373' }, - { - file: 'packages/react-examples/src/react/Button/Button.IconWithTooltip.Example.tsx', - hash: '5856918498084472394', - }, - { file: 'packages/react-examples/src/react/Button/Button.Split.Example.tsx', hash: '6443594856225278219' }, - { file: 'packages/react-examples/src/react/Button/Button.Toggle.Example.tsx', hash: '11273168701657466174' }, - { file: 'packages/react-examples/src/react/Button/Button.doc.tsx', hash: '14798888054962382957' }, - { file: 'packages/react-examples/src/react/Button/docs/ButtonBestPractices.md', hash: '8262488791457160795' }, - { file: 'packages/react-examples/src/react/Button/docs/ButtonOverview.md', hash: '15025314181002136189' }, - { file: 'packages/react-examples/src/react/Calendar/Calendar.Button.Example.tsx', hash: '11670713828649373426' }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.ContiguousWorkWeekDays.Example.tsx', - hash: '6025642632513182041', - }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.CustomDayCellRef.Example.tsx', - hash: '10101935902661584177', - }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.DateBoundaries.Example.tsx', - hash: '14122370693085520131', - }, - { file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.Example.tsx', hash: '5895412511470144388' }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.MarkedDays.Example.tsx', - hash: '7115975224915797628', - }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.MonthOnly.Example.tsx', - hash: '7514301355919486445', - }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.MonthSelection.Example.tsx', - hash: '12194911337183155096', - }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.MultidayDayView.Example.tsx', - hash: '9777485459679979455', - }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.NonContiguousWorkWeekDays.Example.tsx', - hash: '16739657324829049689', - }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.OverlaidMonthPicker.Example.tsx', - hash: '8598152411539421499', - }, - { file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.SixWeeks.tsx', hash: '9814512951353916548' }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.WeekNumbers.Example.tsx', - hash: '2353257937602785635', - }, - { - file: 'packages/react-examples/src/react/Calendar/Calendar.Inline.WeekSelection.Example.tsx', - hash: '711746990858717859', - }, - { file: 'packages/react-examples/src/react/Calendar/Calendar.doc.tsx', hash: '5098259750648110690' }, - { file: 'packages/react-examples/src/react/Calendar/docs/CalendarBestPractices.md', hash: '1724779152274891464' }, - { file: 'packages/react-examples/src/react/Calendar/docs/CalendarOverview.md', hash: '621070059803414892' }, - { file: 'packages/react-examples/src/react/Callout/Callout.Basic.Example.tsx', hash: '10375834041956947410' }, - { file: 'packages/react-examples/src/react/Callout/Callout.Cover.Example.tsx', hash: '13961468534046685528' }, - { - file: 'packages/react-examples/src/react/Callout/Callout.Directional.Example.tsx', - hash: '4473873551862082509', - }, - { file: 'packages/react-examples/src/react/Callout/Callout.FocusTrap.Example.tsx', hash: '5386241572332227912' }, - { file: 'packages/react-examples/src/react/Callout/Callout.Status.Example.tsx', hash: '4084051320422216883' }, - { file: 'packages/react-examples/src/react/Callout/Callout.doc.tsx', hash: '6417004314429107130' }, - { file: 'packages/react-examples/src/react/Callout/docs/CalloutBestPractices.md', hash: '240584423619826575' }, - { file: 'packages/react-examples/src/react/Callout/docs/CalloutOverview.md', hash: '1386018283761269927' }, - { file: 'packages/react-examples/src/react/Checkbox/Checkbox.Basic.Example.tsx', hash: '16088471200763141215' }, - { - file: 'packages/react-examples/src/react/Checkbox/Checkbox.Indeterminate.Example.tsx', - hash: '2573388622640783503', - }, - { file: 'packages/react-examples/src/react/Checkbox/Checkbox.Other.Example.tsx', hash: '17065609027463333266' }, - { file: 'packages/react-examples/src/react/Checkbox/Checkbox.doc.tsx', hash: '7637244348529120014' }, - { - file: 'packages/react-examples/src/react/Checkbox/docs/CheckboxBestPractices.md', - hash: '17643376500449998917', - }, - { file: 'packages/react-examples/src/react/Checkbox/docs/CheckboxOverview.md', hash: '6127085583634782780' }, - { - file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Basic.Example.tsx', - hash: '1830356398977442236', - }, - { - file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Controlled.Example.tsx', - hash: '13372284433648480700', - }, - { - file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Custom.Example.tsx', - hash: '6563198185507424076', - }, - { - file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Icon.Example.tsx', - hash: '11509984463129156349', - }, - { - file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Image.Example.tsx', - hash: '9440296067970459789', - }, - { - file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.Label.Example.tsx', - hash: '3118031141092502161', - }, - { file: 'packages/react-examples/src/react/ChoiceGroup/ChoiceGroup.doc.tsx', hash: '10803705851408154810' }, - { - file: 'packages/react-examples/src/react/ChoiceGroup/docs/ChoiceGroupBestPractices.md', - hash: '6729357172259799389', - }, - { - file: 'packages/react-examples/src/react/ChoiceGroup/docs/ChoiceGroupOverview.md', - hash: '13427093563652446624', - }, - { file: 'packages/react-examples/src/react/Coachmark/Coachmark.Basic.Example.tsx', hash: '8115923272607319524' }, - { file: 'packages/react-examples/src/react/Coachmark/Coachmark.doc.tsx', hash: '2170188443948751602' }, - { - file: 'packages/react-examples/src/react/Coachmark/docs/CoachmarkBestPractices.md', - hash: '3542754544981209669', - }, - { file: 'packages/react-examples/src/react/Coachmark/docs/CoachmarkOverview.md', hash: '8005866302720607190' }, - { - file: 'packages/react-examples/src/react/ColorPicker/ColorPicker.Basic.Example.tsx', - hash: '10522614933577852925', - }, - { file: 'packages/react-examples/src/react/ColorPicker/ColorPicker.doc.tsx', hash: '12006933118369254888' }, - { - file: 'packages/react-examples/src/react/ColorPicker/docs/ColorPickerBestPractices.md', - hash: '3795548029277003302', - }, - { - file: 'packages/react-examples/src/react/ColorPicker/docs/ColorPickerOverview.md', - hash: '3453145954457329699', - }, - { file: 'packages/react-examples/src/react/ComboBox/ComboBox.Basic.Example.tsx', hash: '7502722137008929143' }, - { - file: 'packages/react-examples/src/react/ComboBox/ComboBox.Controlled.Example.tsx', - hash: '14501769400595421085', - }, - { - file: 'packages/react-examples/src/react/ComboBox/ComboBox.ControlledMulti.Example.tsx', - hash: '16765727178232050486', - }, - { - file: 'packages/react-examples/src/react/ComboBox/ComboBox.CustomStyled.Example.tsx', - hash: '5820589524560737520', - }, - { - file: 'packages/react-examples/src/react/ComboBox/ComboBox.ErrorHandling.Example.tsx', - hash: '13622785407850884952', - }, - { - file: 'packages/react-examples/src/react/ComboBox/ComboBox.FreeInput.Example.tsx', - hash: '4208904628665600564', - }, - { file: 'packages/react-examples/src/react/ComboBox/ComboBox.Inline.Example.tsx', hash: '2616579794797596961' }, - { - file: 'packages/react-examples/src/react/ComboBox/ComboBox.SelectAll.Example.tsx', - hash: '5983196249930964714', - }, - { file: 'packages/react-examples/src/react/ComboBox/ComboBox.Toggles.Example.tsx', hash: '2377940844185308494' }, - { - file: 'packages/react-examples/src/react/ComboBox/ComboBox.Virtualized.Example.tsx', - hash: '365148847710436100', - }, - { file: 'packages/react-examples/src/react/ComboBox/ComboBox.doc.tsx', hash: '357185813601538313' }, - { - file: 'packages/react-examples/src/react/ComboBox/docs/ComboBoxBestPractices.md', - hash: '17035604686479250820', - }, - { file: 'packages/react-examples/src/react/ComboBox/docs/ComboBoxOverview.md', hash: '9370671476619575997' }, - { - file: 'packages/react-examples/src/react/CommandBar/CommandBar.Basic.Example.tsx', - hash: '17066427437658259595', - }, - { - file: 'packages/react-examples/src/react/CommandBar/CommandBar.ButtonAs.Example.tsx', - hash: '5837946070733281923', - }, - { - file: 'packages/react-examples/src/react/CommandBar/CommandBar.CommandBarButtonAs.Example.tsx', - hash: '14239124937065302117', - }, - { - file: 'packages/react-examples/src/react/CommandBar/CommandBar.Lazy.Example.tsx', - hash: '17807876090463777179', - }, - { - file: 'packages/react-examples/src/react/CommandBar/CommandBar.SplitDisabled.Example.tsx', - hash: '7982136203595322144', - }, - { file: 'packages/react-examples/src/react/CommandBar/CommandBar.doc.tsx', hash: '1658365400337715044' }, - { - file: 'packages/react-examples/src/react/CommandBar/docs/CommandBarBestPractices.md', - hash: '3244421341483603138', - }, - { file: 'packages/react-examples/src/react/CommandBar/docs/CommandBarDonts.md', hash: '2936847419132216345' }, - { file: 'packages/react-examples/src/react/CommandBar/docs/CommandBarDos.md', hash: '8038266723043974091' }, - { file: 'packages/react-examples/src/react/CommandBar/docs/CommandBarOverview.md', hash: '12433928073671197593' }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Basic.Example.tsx', - hash: '15024050478757158039', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Checkmarks.Example.tsx', - hash: '14515122039023548947', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomMenuItem.Example.tsx', - hash: '15406133367855884805', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomMenuList.Example.tsx', - hash: '18080008874280316465', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Customization.Example.tsx', - hash: '10303354487583732973', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.CustomizationWithNoWrap.Example.tsx', - hash: '7575207669815626429', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Default.Example.tsx', - hash: '1530319152823290747', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Directional.Example.tsx', - hash: '15516342593661369094', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Header.Example.tsx', - hash: '8334550483772262315', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.CustomLayout.Example.tsx', - hash: '13454632454935162608', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.Example.tsx', - hash: '6142740927821312183', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Icon.SecondaryText.Example.tsx', - hash: '5961826317856918036', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Persisted.Example.tsx', - hash: '8213806715052253524', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.ScreenReader.Example.tsx', - hash: '10697606395198110360', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.ScrollBar.Example.tsx', - hash: '1722708791515401786', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Section.Example.tsx', - hash: '18436301671278993690', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.Submenu.Example.tsx', - hash: '9533551810157961455', - }, - { file: 'packages/react-examples/src/react/ContextualMenu/ContextualMenu.doc.tsx', hash: '14800238289383689439' }, - { - file: 'packages/react-examples/src/react/ContextualMenu/docs/ContextualMenuBestPractices.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-examples/src/react/ContextualMenu/docs/ContextualMenuOverview.md', - hash: '12656464994679017844', - }, - { - file: 'packages/react-examples/src/react/DatePicker/DatePicker.Basic.Example.tsx', - hash: '6549048858535079254', - }, - { - file: 'packages/react-examples/src/react/DatePicker/DatePicker.Bounded.Example.tsx', - hash: '945690607138379041', - }, - { - file: 'packages/react-examples/src/react/DatePicker/DatePicker.Disabled.Example.tsx', - hash: '7852459322286540417', - }, - { - file: 'packages/react-examples/src/react/DatePicker/DatePicker.ExternalControls.Example.tsx', - hash: '2929655713090247834', - }, - { - file: 'packages/react-examples/src/react/DatePicker/DatePicker.Format.Example.tsx', - hash: '4800851782533937854', - }, - { - file: 'packages/react-examples/src/react/DatePicker/DatePicker.Input.Example.tsx', - hash: '17862152781842630711', - }, - { - file: 'packages/react-examples/src/react/DatePicker/DatePicker.Required.Example.tsx', - hash: '1199588964446882734', - }, - { - file: 'packages/react-examples/src/react/DatePicker/DatePicker.WeekNumbers.Example.tsx', - hash: '455026032289058001', - }, - { file: 'packages/react-examples/src/react/DatePicker/DatePicker.doc.tsx', hash: '9390102577745904173' }, - { - file: 'packages/react-examples/src/react/DatePicker/docs/DatePickerBestPractices.md', - hash: '6027517843294263285', - }, - { file: 'packages/react-examples/src/react/DatePicker/docs/DatePickerOverview.md', hash: '16501907132069119744' }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.Advanced.Example.tsx', - hash: '10936658170286572027', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.Animation.Example.tsx', - hash: '12952134854918913476', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.Basic.Example.tsx', - hash: '12601034262536179240', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.ColumnResize.Example.tsx', - hash: '7933016525740133567', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.Compact.Example.tsx', - hash: '17284966156754520880', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.CustomColumns.Example.tsx', - hash: '15299506464582400188', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.CustomFooter.Example.tsx', - hash: '5723594411723316360', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.CustomGroupHeaders.Example.tsx', - hash: '17474804655111743620', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.CustomRows.Example.tsx', - hash: '17718844388107480115', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.Documents.Example.tsx', - hash: '16360957095806271966', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.DragDrop.Example.tsx', - hash: '13225220291514927647', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.Grouped.Example.tsx', - hash: '15295013036594439238', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.Grouped.Large.Example.tsx', - hash: '9002360090695420523', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.Example.tsx', - hash: '7191711872095586308', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.Large.Example.tsx', - hash: '13050903748181177330', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.GroupedV2.ScrollToIndex.Example.tsx', - hash: '3810081735068958509', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.KeyboardAccessibleResizeAndReorder.Example.tsx', - hash: '12957527607896668759', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.KeyboardOverrides.Example.tsx', - hash: '1988461786659592263', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.NavigatingFocus.Example.tsx', - hash: '10665961175021256090', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.OnRender.Example.tsx', - hash: '2862235458283001317', - }, - { - file: 'packages/react-examples/src/react/DetailsList/DetailsList.ProportionalColumns.Example.tsx', - hash: '3643204862810472365', - }, - { file: 'packages/react-examples/src/react/DetailsList/DetailsList.doc.tsx', hash: '17139182265007990631' }, - { - file: 'packages/react-examples/src/react/DetailsList/docs/DetailsListBestPractices.md', - hash: '14636184564336669454', - }, - { - file: 'packages/react-examples/src/react/DetailsList/docs/DetailsListOverview.md', - hash: '11157854257701048090', - }, - { file: 'packages/react-examples/src/react/Dialog/Dialog.Basic.Example.tsx', hash: '14926128857017700522' }, - { file: 'packages/react-examples/src/react/Dialog/Dialog.Blocking.Example.tsx', hash: '119258777603234032' }, - { file: 'packages/react-examples/src/react/Dialog/Dialog.LargeHeader.Example.tsx', hash: '12232932083852256459' }, - { file: 'packages/react-examples/src/react/Dialog/Dialog.Modeless.Example.tsx', hash: '9025354215202154957' }, - { - file: 'packages/react-examples/src/react/Dialog/Dialog.TopOffsetFixed.Example.tsx', - hash: '13790338846169811872', - }, - { file: 'packages/react-examples/src/react/Dialog/Dialog.doc.tsx', hash: '2269612876944993533' }, - { file: 'packages/react-examples/src/react/Dialog/docs/DialogBestPractices.md', hash: '11907210801286321316' }, - { file: 'packages/react-examples/src/react/Dialog/docs/DialogOverview.md', hash: '3268738518893757993' }, - { file: 'packages/react-examples/src/react/Divider/Divider.doc.tsx', hash: '1350864656580636149' }, - { - file: 'packages/react-examples/src/react/Divider/VerticalDivider.Basic.Example.tsx', - hash: '3257087342624713968', - }, - { - file: 'packages/react-examples/src/react/Divider/VerticalDivider.Custom.Example.tsx', - hash: '7108559914889829781', - }, - { file: 'packages/react-examples/src/react/Divider/docs/DividerBestPractices.md', hash: '11242884916003164840' }, - { file: 'packages/react-examples/src/react/Divider/docs/DividerDonts.md', hash: '13755611818631916263' }, - { file: 'packages/react-examples/src/react/Divider/docs/DividerDos.md', hash: '14635313222160471004' }, - { file: 'packages/react-examples/src/react/Divider/docs/DividerOverview.md', hash: '10876792181377551346' }, - { - file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Basic.Example.tsx', - hash: '3873407903814701928', - }, - { - file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Compact.Example.tsx', - hash: '7410695870915872714', - }, - { - file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Complete.Example.tsx', - hash: '14950282326681339256', - }, - { - file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Conversation.Example.tsx', - hash: '7359603887504081024', - }, - { - file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.Image.Example.tsx', - hash: '12288266672582981378', - }, - { file: 'packages/react-examples/src/react/DocumentCard/DocumentCard.doc.tsx', hash: '6543750251896297702' }, - { - file: 'packages/react-examples/src/react/DocumentCard/docs/DocumentCardBestPractices.md', - hash: '18440794351515262745', - }, - { - file: 'packages/react-examples/src/react/DocumentCard/docs/DocumentCardOverview.md', - hash: '16511513555890905893', - }, - { file: 'packages/react-examples/src/react/Dropdown/Dropdown.Basic.Example.tsx', hash: '9014889844532656913' }, - { - file: 'packages/react-examples/src/react/Dropdown/Dropdown.Controlled.Example.tsx', - hash: '9831538055339985201', - }, - { - file: 'packages/react-examples/src/react/Dropdown/Dropdown.ControlledMulti.Example.tsx', - hash: '17207319378954556138', - }, - { file: 'packages/react-examples/src/react/Dropdown/Dropdown.Custom.Example.tsx', hash: '7423142535989082375' }, - { file: 'packages/react-examples/src/react/Dropdown/Dropdown.Error.Example.tsx', hash: '18282001024220261190' }, - { file: 'packages/react-examples/src/react/Dropdown/Dropdown.Required.Example.tsx', hash: '169052893274483609' }, - { - file: 'packages/react-examples/src/react/Dropdown/Dropdown.SelectStyle.Example.tsx', - hash: '15296133929690564301', - }, - { - file: 'packages/react-examples/src/react/Dropdown/Dropdown.Wrapping.Example.tsx', - hash: '11743290379097092920', - }, - { file: 'packages/react-examples/src/react/Dropdown/Dropdown.doc.tsx', hash: '9086926411011225144' }, - { file: 'packages/react-examples/src/react/Dropdown/docs/DropdownBestPractices.md', hash: '6884534436204458575' }, - { file: 'packages/react-examples/src/react/Dropdown/docs/DropdownOverview.md', hash: '1588924648391255177' }, - { - file: 'packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.Basic.Example.tsx', - hash: '5193709435476630783', - }, - { - file: 'packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.Controlled.Example.tsx', - hash: '12108009187713968836', - }, - { - file: 'packages/react-examples/src/react/ExtendedPeoplePicker/ExtendedPeoplePicker.doc.tsx', - hash: '9397038313871032020', - }, - { - file: 'packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerBestPractices.md', - hash: '17994737321331640608', - }, - { - file: 'packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerDonts.md', - hash: '13761658156329873951', - }, - { - file: 'packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerDos.md', - hash: '2988442599845077013', - }, - { - file: 'packages/react-examples/src/react/ExtendedPeoplePicker/docs/ExtendedPeoplePickerOverview.md', - hash: '7342423013769981200', - }, - { - file: 'packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.Basic.Example.tsx', - hash: '802101070041496746', - }, - { - file: 'packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.Controlled.Example.tsx', - hash: '2701111392899146044', - }, - { - file: 'packages/react-examples/src/react/ExtendedPicker/ExtendedPeoplePicker.doc.tsx', - hash: '9904931083626785664', - }, - { - file: 'packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerBestPractices.md', - hash: '17994737321331640608', - }, - { - file: 'packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerDonts.md', - hash: '13761658156329873951', - }, - { - file: 'packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerDos.md', - hash: '2988442599845077013', - }, - { - file: 'packages/react-examples/src/react/ExtendedPicker/docs/ExtendedPeoplePickerOverview.md', - hash: '7342423013769981200', - }, - { file: 'packages/react-examples/src/react/Facepile/Facepile.AddFace.Example.tsx', hash: '3378218549063950791' }, - { file: 'packages/react-examples/src/react/Facepile/Facepile.Basic.Example.tsx', hash: '10441413266599899897' }, - { file: 'packages/react-examples/src/react/Facepile/Facepile.Overflow.Example.tsx', hash: '7638052892921375329' }, - { file: 'packages/react-examples/src/react/Facepile/Facepile.doc.tsx', hash: '11908784292302046334' }, - { file: 'packages/react-examples/src/react/Facepile/docs/FacepileBestPractices.md', hash: '3422765395890976172' }, - { file: 'packages/react-examples/src/react/Facepile/docs/FacepileOverview.md', hash: '9798433928308762020' }, - { - file: 'packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.Basic.Example.tsx', - hash: '12622245239280094415', - }, - { - file: 'packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.SelectableFooter.Example.tsx', - hash: '123789111774379882', - }, - { - file: 'packages/react-examples/src/react/FloatingPeoplePicker/FloatingPeoplePicker.doc.tsx', - hash: '14963739742697498603', - }, - { - file: 'packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerBestPractices.md', - hash: '15181747479013544023', - }, - { - file: 'packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerDonts.md', - hash: '5113401384613823537', - }, - { - file: 'packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerDos.md', - hash: '15524347270405680831', - }, - { - file: 'packages/react-examples/src/react/FloatingPeoplePicker/docs/FloatingPeoplePickerOverview.md', - hash: '6547824185873455057', - }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.Click.Example.tsx', - hash: '257684823259240373', - }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.Example.tsx', - hash: '4891878368416196997', - }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Box.FocusOnCustomElement.Example.tsx', - hash: '8218921500198309959', - }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.DialogInPanel.Example.tsx', - hash: '8454932298771962096', - }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.FocusZone.Example.tsx', - hash: '13002184895825458792', - }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.Nested.Example.tsx', - hash: '7467898439076848824', - }, - { file: 'packages/react-examples/src/react/FocusTrapZone/FocusTrapZone.doc.tsx', hash: '10554829977581816321' }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/docs/FocusTrapZoneBestPractices.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/docs/FocusTrapZoneOverview.md', - hash: '16489263610855687923', - }, - { - file: 'packages/react-examples/src/react/FocusTrapZone/e2e/FocusTrapZone.e2e.tsx', - hash: '2315340949449524344', - }, - { - file: 'packages/react-examples/src/react/GroupedList/GroupedList.Basic.Example.tsx', - hash: '3068219762651657477', - }, - { - file: 'packages/react-examples/src/react/GroupedList/GroupedList.Custom.Example.tsx', - hash: '5036102286324939709', - }, - { - file: 'packages/react-examples/src/react/GroupedList/GroupedList.CustomCheckbox.Example.tsx', - hash: '3409300813165441827', - }, - { file: 'packages/react-examples/src/react/GroupedList/GroupedList.doc.tsx', hash: '13027056762316810629' }, - { - file: 'packages/react-examples/src/react/GroupedList/GroupedListV2.Basic.Example.tsx', - hash: '6877910189807441405', - }, - { - file: 'packages/react-examples/src/react/GroupedList/GroupedListV2.Custom.Example.tsx', - hash: '6166019240691139606', - }, - { - file: 'packages/react-examples/src/react/GroupedList/GroupedListV2.CustomCheckbox.Example.tsx', - hash: '7013803679530459064', - }, - { - file: 'packages/react-examples/src/react/GroupedList/docs/GroupedListBestPractices.md', - hash: '4396915049264391582', - }, - { - file: 'packages/react-examples/src/react/GroupedList/docs/GroupedListOverview.md', - hash: '17801108937409570084', - }, - { file: 'packages/react-examples/src/react/HoverCard/HoverCard.Basic.Example.tsx', hash: '15689722060711630441' }, - { - file: 'packages/react-examples/src/react/HoverCard/HoverCard.EventListenerTarget.Example.tsx', - hash: '1184877838989704587', - }, - { - file: 'packages/react-examples/src/react/HoverCard/HoverCard.InstantDismiss.Example.tsx', - hash: '4282847255970339858', - }, - { - file: 'packages/react-examples/src/react/HoverCard/HoverCard.PlainCard.Example.tsx', - hash: '17731134095378448713', - }, - { file: 'packages/react-examples/src/react/HoverCard/HoverCard.Target.Example.tsx', hash: '8142630273180268427' }, - { file: 'packages/react-examples/src/react/HoverCard/HoverCard.doc.tsx', hash: '17447330564499037589' }, - { - file: 'packages/react-examples/src/react/HoverCard/docs/HoverCardBestPractices.md', - hash: '6402841024745661251', - }, - { file: 'packages/react-examples/src/react/HoverCard/docs/HoverCardDonts.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/HoverCard/docs/HoverCardDos.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/HoverCard/docs/HoverCardOverview.md', hash: '1328985595064008706' }, - { file: 'packages/react-examples/src/react/Icon/Icon.Basic.Example.tsx', hash: '17984128308105474954' }, - { file: 'packages/react-examples/src/react/Icon/Icon.Color.Example.tsx', hash: '16645252243482480020' }, - { file: 'packages/react-examples/src/react/Icon/Icon.ImageSheet.Example.tsx', hash: '12417527067508713040' }, - { file: 'packages/react-examples/src/react/Icon/Icon.Svg.Example.tsx', hash: '9804999214021296737' }, - { file: 'packages/react-examples/src/react/Icon/Icon.SvgFactory.Example.tsx', hash: '12995738621667765130' }, - { file: 'packages/react-examples/src/react/Icon/Icon.doc.tsx', hash: '9600632903019317388' }, - { file: 'packages/react-examples/src/react/Icon/docs/IconBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Icon/docs/IconDonts.md', hash: '15344252599448800187' }, - { file: 'packages/react-examples/src/react/Icon/docs/IconDos.md', hash: '15524612824331846611' }, - { file: 'packages/react-examples/src/react/Icon/docs/IconOverview.md', hash: '14232662465928493194' }, - { file: 'packages/react-examples/src/react/Image/Image.Center.Example.tsx', hash: '13688308880362680216' }, - { file: 'packages/react-examples/src/react/Image/Image.CenterContain.Example.tsx', hash: '15537033815011706562' }, - { file: 'packages/react-examples/src/react/Image/Image.CenterCover.Example.tsx', hash: '16676516025593185140' }, - { file: 'packages/react-examples/src/react/Image/Image.Contain.Example.tsx', hash: '3464235972853729614' }, - { file: 'packages/react-examples/src/react/Image/Image.Cover.Example.tsx', hash: '14128222888645305083' }, - { file: 'packages/react-examples/src/react/Image/Image.Default.Example.tsx', hash: '16195834891851780437' }, - { file: 'packages/react-examples/src/react/Image/Image.MaximizeFrame.Example.tsx', hash: '1849642479791586733' }, - { file: 'packages/react-examples/src/react/Image/Image.None.Example.tsx', hash: '310091402227357972' }, - { file: 'packages/react-examples/src/react/Image/Image.doc.tsx', hash: '16404311410705072998' }, - { file: 'packages/react-examples/src/react/Image/docs/ImageBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Image/docs/ImageDonts.md', hash: '13782942017733195935' }, - { file: 'packages/react-examples/src/react/Image/docs/ImageDos.md', hash: '15316394944600606401' }, - { file: 'packages/react-examples/src/react/Image/docs/ImageOverview.md', hash: '9859623914128876128' }, - { file: 'packages/react-examples/src/react/Keytip/KeytipSetup.ts', hash: '11317631626897306946' }, - { file: 'packages/react-examples/src/react/Keytip/Keytips.Basic.Example.tsx', hash: '6640280617156300280' }, - { file: 'packages/react-examples/src/react/Keytip/Keytips.Button.Example.tsx', hash: '16592718340595109676' }, - { file: 'packages/react-examples/src/react/Keytip/Keytips.CommandBar.Example.tsx', hash: '6426746182364253601' }, - { file: 'packages/react-examples/src/react/Keytip/Keytips.Dynamic.Example.tsx', hash: '3832300351857332106' }, - { file: 'packages/react-examples/src/react/Keytip/Keytips.Overflow.Example.tsx', hash: '7360673924545900757' }, - { file: 'packages/react-examples/src/react/Keytip/Keytips.doc.tsx', hash: '13060212283774655089' }, - { file: 'packages/react-examples/src/react/Keytip/docs/KeytipBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Keytip/docs/KeytipDonts.md', hash: '7427975219778042435' }, - { file: 'packages/react-examples/src/react/Keytip/docs/KeytipDos.md', hash: '16533272425370690610' }, - { file: 'packages/react-examples/src/react/Keytip/docs/KeytipOverview.md', hash: '5466366661710388407' }, - { file: 'packages/react-examples/src/react/Label/Label.Basic.Example.tsx', hash: '3115439932532188730' }, - { file: 'packages/react-examples/src/react/Label/Label.doc.tsx', hash: '13629702760836766009' }, - { file: 'packages/react-examples/src/react/Label/docs/LabelBestPractices.md', hash: '2651885143282491468' }, - { file: 'packages/react-examples/src/react/Label/docs/LabelOverview.md', hash: '12429300776760883752' }, - { file: 'packages/react-examples/src/react/Layer/Layer.Basic.Example.tsx', hash: '12030336442605652258' }, - { file: 'packages/react-examples/src/react/Layer/Layer.Customized.Example.tsx', hash: '11956652046660618414' }, - { file: 'packages/react-examples/src/react/Layer/Layer.Hosted.Example.tsx', hash: '10293813580636768822' }, - { file: 'packages/react-examples/src/react/Layer/Layer.NestedLayers.Example.tsx', hash: '10313887427342640125' }, - { file: 'packages/react-examples/src/react/Layer/Layer.doc.tsx', hash: '15060647147787646094' }, - { file: 'packages/react-examples/src/react/Layer/docs/LayerBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Layer/docs/LayerDonts.md', hash: '14968157154523423' }, - { file: 'packages/react-examples/src/react/Layer/docs/LayerDos.md', hash: '3762722919646391153' }, - { file: 'packages/react-examples/src/react/Layer/docs/LayerOverview.md', hash: '8188173414299539873' }, - { file: 'packages/react-examples/src/react/Link/Link.Basic.Example.tsx', hash: '9677832399895249361' }, - { file: 'packages/react-examples/src/react/Link/Link.doc.tsx', hash: '4750051426322737107' }, - { file: 'packages/react-examples/src/react/Link/docs/LinkBestPractices.md', hash: '2033998257774753154' }, - { file: 'packages/react-examples/src/react/Link/docs/LinkOverview.md', hash: '8574338900119621794' }, - { file: 'packages/react-examples/src/react/List/List.Basic.Example.tsx', hash: '15939721599071437024' }, - { file: 'packages/react-examples/src/react/List/List.Ghosting.Example.tsx', hash: '17859063248793674054' }, - { file: 'packages/react-examples/src/react/List/List.Grid.Example.tsx', hash: '10849003690715510287' }, - { file: 'packages/react-examples/src/react/List/List.Scrolling.Example.tsx', hash: '15072124581431867101' }, - { file: 'packages/react-examples/src/react/List/List.doc.tsx', hash: '6049496841500809671' }, - { file: 'packages/react-examples/src/react/List/docs/ListBestPractices.md', hash: '906673786462981672' }, - { file: 'packages/react-examples/src/react/List/docs/ListOverview.md', hash: '7235412708700446784' }, - { - file: 'packages/react-examples/src/react/MarqueeSelection/MarqueeSelection.Basic.Example.tsx', - hash: '8571825305728269079', - }, - { - file: 'packages/react-examples/src/react/MarqueeSelection/MarqueeSelection.doc.tsx', - hash: '3267846887614393481', - }, - { - file: 'packages/react-examples/src/react/MarqueeSelection/docs/MarqueeSelectionBestPractices.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-examples/src/react/MarqueeSelection/docs/MarqueeSelectionOverview.md', - hash: '9757531769826842687', - }, - { - file: 'packages/react-examples/src/react/MessageBar/MessageBar.Basic.Example.tsx', - hash: '9255977763381882612', - }, - { - file: 'packages/react-examples/src/react/MessageBar/MessageBar.NoDelay.Example.tsx', - hash: '8419449418470358759', - }, - { file: 'packages/react-examples/src/react/MessageBar/MessageBar.doc.tsx', hash: '3375136037863448156' }, - { - file: 'packages/react-examples/src/react/MessageBar/docs/MessageBarBestPractices.md', - hash: '14552579103480173435', - }, - { file: 'packages/react-examples/src/react/MessageBar/docs/MessageBarOverview.md', hash: '18169650851106535878' }, - { file: 'packages/react-examples/src/react/Modal/Modal.Basic.Example.tsx', hash: '12053434654761993165' }, - { file: 'packages/react-examples/src/react/Modal/Modal.Modeless.Example.tsx', hash: '8430039276142769105' }, - { file: 'packages/react-examples/src/react/Modal/Modal.doc.tsx', hash: '1692491552675013468' }, - { file: 'packages/react-examples/src/react/Modal/docs/ModalBestPractices.md', hash: '17303831486824291557' }, - { file: 'packages/react-examples/src/react/Modal/docs/ModalOverview.md', hash: '750264115238529685' }, - { file: 'packages/react-examples/src/react/Nav/Nav.Basic.Example.tsx', hash: '7068700491956882868' }, - { - file: 'packages/react-examples/src/react/Nav/Nav.CustomGroupHeaders.Example.tsx', - hash: '11381396761722683633', - }, - { file: 'packages/react-examples/src/react/Nav/Nav.FabricDemoApp.Example.tsx', hash: '14556451596879196930' }, - { file: 'packages/react-examples/src/react/Nav/Nav.FocusZone.Example.tsx', hash: '9346626568314365401' }, - { file: 'packages/react-examples/src/react/Nav/Nav.Nested.Example.tsx', hash: '5579623567974645982' }, - { file: 'packages/react-examples/src/react/Nav/Nav.Wrapped.Example.tsx', hash: '448985030608262017' }, - { file: 'packages/react-examples/src/react/Nav/Nav.doc.tsx', hash: '336230450141047609' }, - { file: 'packages/react-examples/src/react/Nav/docs/NavBestPractices.md', hash: '14284117560595097883' }, - { file: 'packages/react-examples/src/react/Nav/docs/NavOverview.md', hash: '1264928082970175275' }, - { - file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.Basic.Example.tsx', - hash: '13374794158924025300', - }, - { - file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.BasicReversed.Example.tsx', - hash: '6883040674335126457', - }, - { - file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.Custom.Example.tsx', - hash: '18395805109691746051', - }, - { - file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.Vertical.Example.tsx', - hash: '2772424211657725630', - }, - { file: 'packages/react-examples/src/react/OverflowSet/OverflowSet.doc.tsx', hash: '17904403700316649397' }, - { - file: 'packages/react-examples/src/react/OverflowSet/docs/OverflowSetOverview.md', - hash: '16450753773806735512', - }, - { file: 'packages/react-examples/src/react/Overlay/Overlay.Dark.Example.tsx', hash: '5211673163618366885' }, - { file: 'packages/react-examples/src/react/Overlay/Overlay.Light.Example.tsx', hash: '12813896686728752122' }, - { file: 'packages/react-examples/src/react/Overlay/Overlay.doc.tsx', hash: '12351709045741002672' }, - { file: 'packages/react-examples/src/react/Overlay/docs/OverlayBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Overlay/docs/OverlayDonts.md', hash: '7421340973886295081' }, - { file: 'packages/react-examples/src/react/Overlay/docs/OverlayDos.md', hash: '1721162984869848674' }, - { file: 'packages/react-examples/src/react/Overlay/docs/OverlayOverview.md', hash: '109444894527994868' }, - { file: 'packages/react-examples/src/react/Panel/Panel.Basic.Example.tsx', hash: '18348534594647973417' }, - { - file: 'packages/react-examples/src/react/Panel/Panel.ConfirmDismiss.Example.tsx', - hash: '13758804553242827638', - }, - { file: 'packages/react-examples/src/react/Panel/Panel.Controlled.Example.tsx', hash: '11469069615638120232' }, - { file: 'packages/react-examples/src/react/Panel/Panel.Footer.Example.tsx', hash: '282488112062051188' }, - { - file: 'packages/react-examples/src/react/Panel/Panel.HandleDismissTarget.Example.tsx', - hash: '6813491291038054532', - }, - { - file: 'packages/react-examples/src/react/Panel/Panel.HiddenOnDismiss.Example.tsx', - hash: '8068150090023928072', - }, - { file: 'packages/react-examples/src/react/Panel/Panel.LightDismiss.Example.tsx', hash: '10066513719817603751' }, - { - file: 'packages/react-examples/src/react/Panel/Panel.LightDismissCustom.Example.tsx', - hash: '5480968978251464037', - }, - { file: 'packages/react-examples/src/react/Panel/Panel.Navigation.Example.tsx', hash: '14746977786281311809' }, - { file: 'packages/react-examples/src/react/Panel/Panel.NonModal.Example.tsx', hash: '8537776278560152960' }, - { file: 'packages/react-examples/src/react/Panel/Panel.Sizes.Example.tsx', hash: '11589826232157726221' }, - { file: 'packages/react-examples/src/react/Panel/Panel.doc.tsx', hash: '12570788300801762430' }, - { file: 'packages/react-examples/src/react/Panel/docs/PanelBestPractices.md', hash: '8066461067264139077' }, - { file: 'packages/react-examples/src/react/Panel/docs/PanelOverview.md', hash: '12758515869681944156' }, - { - file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.Compact.Example.tsx', - hash: '6698475318564411316', - }, - { - file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.Controlled.Example.tsx', - hash: '10151453783919524204', - }, - { - file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.LimitedSearch.Example.tsx', - hash: '2497287395716121825', - }, - { - file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.List.Example.tsx', - hash: '17729190275421189817', - }, - { - file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.Normal.Example.tsx', - hash: '4039497620015636126', - }, - { - file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.PreselectedItems.Example.tsx', - hash: '15252965684870874172', - }, - { - file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.ProcessSelection.Example.tsx', - hash: '7503099760438933307', - }, - { file: 'packages/react-examples/src/react/PeoplePicker/PeoplePicker.doc.tsx', hash: '778687821583669658' }, - { - file: 'packages/react-examples/src/react/PeoplePicker/docs/PeoplePickerBestPractices.md', - hash: '9928440444910866942', - }, - { - file: 'packages/react-examples/src/react/PeoplePicker/docs/PeoplePickerOverview.md', - hash: '15330317123451214903', - }, - { - file: 'packages/react-examples/src/react/PeoplePicker/examples/PeoplePickerExampleData.ts', - hash: '14353130418831610367', - }, - { file: 'packages/react-examples/src/react/Persona/Persona.Alternate.Example.tsx', hash: '2866159117048715114' }, - { file: 'packages/react-examples/src/react/Persona/Persona.Basic.Example.tsx', hash: '7932380203044306436' }, - { file: 'packages/react-examples/src/react/Persona/Persona.Colors.Example.tsx', hash: '2032631877590110768' }, - { - file: 'packages/react-examples/src/react/Persona/Persona.CustomCoinRender.Example.tsx', - hash: '13016865546518992020', - }, - { - file: 'packages/react-examples/src/react/Persona/Persona.CustomRender.Example.tsx', - hash: '7454634260085383601', - }, - { file: 'packages/react-examples/src/react/Persona/Persona.Initials.Example.tsx', hash: '2802357776118691299' }, - { file: 'packages/react-examples/src/react/Persona/Persona.Presence.Example.tsx', hash: '8911648096661539539' }, - { - file: 'packages/react-examples/src/react/Persona/Persona.PresenceColor.Example.tsx', - hash: '14904713972765434990', - }, - { - file: 'packages/react-examples/src/react/Persona/Persona.UnknownPersona.Example.tsx', - hash: '16568116341804152510', - }, - { file: 'packages/react-examples/src/react/Persona/Persona.doc.tsx', hash: '2240522496260828325' }, - { file: 'packages/react-examples/src/react/Persona/docs/PersonaBestPractices.md', hash: '16737357533417045300' }, - { file: 'packages/react-examples/src/react/Persona/docs/PersonaOverview.md', hash: '6206273138744719771' }, - { - file: 'packages/react-examples/src/react/Pickers/Picker.CustomResult.Example.tsx', - hash: '15301754753278259359', - }, - { file: 'packages/react-examples/src/react/Pickers/Pickers.doc.tsx', hash: '5987417366770875328' }, - { file: 'packages/react-examples/src/react/Pickers/TagPicker.Basic.Example.tsx', hash: '2914453979140321065' }, - { - file: 'packages/react-examples/src/react/Pickers/TagPicker.CustomRemoveIcon.Example.tsx', - hash: '5506752771543619207', - }, - { file: 'packages/react-examples/src/react/Pickers/TagPicker.Inline.Example.tsx', hash: '10670703175363899826' }, - { file: 'packages/react-examples/src/react/Pickers/docs/PickersBestPractices.md', hash: '3300666071909453850' }, - { file: 'packages/react-examples/src/react/Pickers/docs/PickersOverview.md', hash: '8724244213473266172' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.AlwaysRender.Example.tsx', hash: '16012670621837773894' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.Basic.Example.tsx', hash: '997670773469861034' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.IconCount.Example.tsx', hash: '11061311590518813315' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.Large.Example.tsx', hash: '16210398516447265344' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.OnChange.Example.tsx', hash: '4429540683677202104' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.OverflowMenu.Example.tsx', hash: '1648219339233567984' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.Override.Example.tsx', hash: '4593536575634024443' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.Remove.Example.tsx', hash: '18273271464801981813' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.Separate.Example.tsx', hash: '9803273520945449452' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.Tabs.Example.tsx', hash: '208905264665611074' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.TabsLarge.Example.tsx', hash: '583401572950803339' }, - { file: 'packages/react-examples/src/react/Pivot/Pivot.doc.tsx', hash: '6678416039317864807' }, - { file: 'packages/react-examples/src/react/Pivot/docs/PivotBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Pivot/docs/PivotDonts.md', hash: '13132784219352103008' }, - { file: 'packages/react-examples/src/react/Pivot/docs/PivotDos.md', hash: '13517426324971769199' }, - { file: 'packages/react-examples/src/react/Pivot/docs/PivotOverview.md', hash: '12751248200398699321' }, - { file: 'packages/react-examples/src/react/Popup/Popup.Basic.Example.tsx', hash: '15279825885362117643' }, - { file: 'packages/react-examples/src/react/Popup/Popup.Modal.Example.tsx', hash: '14146653354220845648' }, - { file: 'packages/react-examples/src/react/Popup/Popup.doc.tsx', hash: '6530362493639771944' }, - { file: 'packages/react-examples/src/react/Popup/docs/PopupBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Popup/docs/PopupDonts.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Popup/docs/PopupDos.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Popup/docs/PopupOverview.md', hash: '6239682717430606881' }, - { - file: 'packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.Basic.Example.tsx', - hash: '7878042562887496662', - }, - { - file: 'packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.Indeterminate.Example.tsx', - hash: '13545740794685865816', - }, - { - file: 'packages/react-examples/src/react/ProgressIndicator/ProgressIndicator.doc.tsx', - hash: '4525749493416033155', - }, - { - file: 'packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorBestPractices.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorDonts.md', - hash: '1846679186045071833', - }, - { - file: 'packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorDos.md', - hash: '2737665049045063520', - }, - { - file: 'packages/react-examples/src/react/ProgressIndicator/docs/ProgressIndicatorOverview.md', - hash: '4902324094361584629', - }, - { file: 'packages/react-examples/src/react/Rating/Rating.Basic.Example.tsx', hash: '541982030987552717' }, - { - file: 'packages/react-examples/src/react/Rating/Rating.ButtonControlled.Example.tsx', - hash: '9584707866723820214', - }, - { file: 'packages/react-examples/src/react/Rating/Rating.doc.tsx', hash: '9281360173408764036' }, - { file: 'packages/react-examples/src/react/Rating/docs/RatingBestPractices.md', hash: '15970256686322638446' }, - { file: 'packages/react-examples/src/react/Rating/docs/RatingOverview.md', hash: '4717872153473304763' }, - { - file: 'packages/react-examples/src/react/ResizeGroup/ResizeGroup.FlexBox.Example.tsx', - hash: '5819645475632931604', - }, - { - file: 'packages/react-examples/src/react/ResizeGroup/ResizeGroup.OverflowSet.Example.tsx', - hash: '5721473211608888978', - }, - { - file: 'packages/react-examples/src/react/ResizeGroup/ResizeGroup.VerticalOverflowSet.Example.tsx', - hash: '9364272985055697723', - }, - { file: 'packages/react-examples/src/react/ResizeGroup/ResizeGroup.doc.tsx', hash: '9940807793702429141' }, - { - file: 'packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupBestPractices.md', - hash: '3244421341483603138', - }, - { file: 'packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupDonts.md', hash: '1750390794817632172' }, - { file: 'packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupDos.md', hash: '7245572358491681391' }, - { - file: 'packages/react-examples/src/react/ResizeGroup/docs/ResizeGroupOverview.md', - hash: '2352326427353831267', - }, - { - file: 'packages/react-examples/src/react/ScrollablePane/ScrollablePane.Default.Example.tsx', - hash: '11113877117518547723', - }, - { - file: 'packages/react-examples/src/react/ScrollablePane/ScrollablePane.DetailsList.Example.tsx', - hash: '1882085002600555650', - }, - { file: 'packages/react-examples/src/react/ScrollablePane/ScrollablePane.doc.tsx', hash: '8461319800418810321' }, - { - file: 'packages/react-examples/src/react/ScrollablePane/docs/ScrollablePaneBestPractices.md', - hash: '13904886968403828885', - }, - { - file: 'packages/react-examples/src/react/ScrollablePane/docs/ScrollablePaneOverview.md', - hash: '10084326919845044900', - }, - { - file: 'packages/react-examples/src/react/SearchBox/SearchBox.CustomIcon.Example.tsx', - hash: '5426414070818314082', - }, - { - file: 'packages/react-examples/src/react/SearchBox/SearchBox.Disabled.Example.tsx', - hash: '7664933528098226509', - }, - { - file: 'packages/react-examples/src/react/SearchBox/SearchBox.FullSize.Example.tsx', - hash: '9644008808837079699', - }, - { file: 'packages/react-examples/src/react/SearchBox/SearchBox.Small.Example.tsx', hash: '11299667884153755044' }, - { - file: 'packages/react-examples/src/react/SearchBox/SearchBox.Underlined.Example.tsx', - hash: '16619076302738754714', - }, - { file: 'packages/react-examples/src/react/SearchBox/SearchBox.doc.tsx', hash: '11032357203793675680' }, - { - file: 'packages/react-examples/src/react/SearchBox/docs/SearchBoxBestPractices.md', - hash: '3557439061338581490', - }, - { file: 'packages/react-examples/src/react/SearchBox/docs/SearchBoxOverview.md', hash: '6266717057770798423' }, - { - file: 'packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.Basic.Example.tsx', - hash: '10946830108355350291', - }, - { - file: 'packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.Controlled.Example.tsx', - hash: '17272459144010908201', - }, - { - file: 'packages/react-examples/src/react/SelectedPeopleList/SelectedPeopleList.doc.tsx', - hash: '5408048338806923770', - }, - { - file: 'packages/react-examples/src/react/SelectedPeopleList/docs/SelectedPeopleListDonts.md', - hash: '970258102470137051', - }, - { - file: 'packages/react-examples/src/react/SelectedPeopleList/docs/SelectedPeopleListDos.md', - hash: '14926848229419922236', - }, - { file: 'packages/react-examples/src/react/Selection/Selection.Basic.Example.tsx', hash: '14256235658935737442' }, - { file: 'packages/react-examples/src/react/Selection/Selection.doc.tsx', hash: '14968163274251836508' }, - { file: 'packages/react-examples/src/react/Selection/docs/SelectionOverview.md', hash: '1749544745534143256' }, - { file: 'packages/react-examples/src/react/Separator/Separator.Basic.Example.tsx', hash: '9574867819311136970' }, - { file: 'packages/react-examples/src/react/Separator/Separator.Icon.Example.tsx', hash: '13637856394144991987' }, - { file: 'packages/react-examples/src/react/Separator/Separator.Theming.Example.tsx', hash: '23141840819740680' }, - { file: 'packages/react-examples/src/react/Separator/Separator.doc.tsx', hash: '3926454664949544719' }, - { - file: 'packages/react-examples/src/react/Separator/docs/SeparatorBestPractices.md', - hash: '3244421341483603138', - }, - { file: 'packages/react-examples/src/react/Separator/docs/SeparatorDonts.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Separator/docs/SeparatorDos.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Separator/docs/SeparatorOverview.md', hash: '9460225228566615517' }, - { - file: 'packages/react-examples/src/react/Shimmer/Shimmer.Application.Example.tsx', - hash: '16376361212863184150', - }, - { file: 'packages/react-examples/src/react/Shimmer/Shimmer.Basic.Example.tsx', hash: '9370768287624512121' }, - { - file: 'packages/react-examples/src/react/Shimmer/Shimmer.CustomElements.Example.tsx', - hash: '17104489554377523890', - }, - { file: 'packages/react-examples/src/react/Shimmer/Shimmer.LoadData.Example.tsx', hash: '5030842721342374838' }, - { file: 'packages/react-examples/src/react/Shimmer/Shimmer.Styling.Example.tsx', hash: '6915665004198389032' }, - { file: 'packages/react-examples/src/react/Shimmer/Shimmer.doc.tsx', hash: '8736141412298840736' }, - { file: 'packages/react-examples/src/react/Shimmer/docs/ShimmerBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Shimmer/docs/ShimmerDonts.md', hash: '13934448943707141694' }, - { file: 'packages/react-examples/src/react/Shimmer/docs/ShimmerDos.md', hash: '1558710628742347330' }, - { file: 'packages/react-examples/src/react/Shimmer/docs/ShimmerOverview.md', hash: '4843985997669345004' }, - { file: 'packages/react-examples/src/react/Slider/Slider.Basic.Example.tsx', hash: '16122885293446272894' }, - { file: 'packages/react-examples/src/react/Slider/Slider.Ranged.Example.tsx', hash: '11422561318027565393' }, - { file: 'packages/react-examples/src/react/Slider/Slider.Vertical.Example.tsx', hash: '13206520944105997136' }, - { file: 'packages/react-examples/src/react/Slider/Slider.doc.tsx', hash: '8913922147770701189' }, - { file: 'packages/react-examples/src/react/Slider/docs/SliderBestPractices.md', hash: '2387148131789983162' }, - { file: 'packages/react-examples/src/react/Slider/docs/SliderOverview.md', hash: '8504488320612513093' }, - { - file: 'packages/react-examples/src/react/SpinButton/SpinButton.Basic.Example.tsx', - hash: '9006433823948792522', - }, - { - file: 'packages/react-examples/src/react/SpinButton/SpinButton.Controlled.Example.tsx', - hash: '12209496242538369748', - }, - { - file: 'packages/react-examples/src/react/SpinButton/SpinButton.CustomStyled.Example.tsx', - hash: '16465650619764579179', - }, - { file: 'packages/react-examples/src/react/SpinButton/SpinButton.Icon.Example.tsx', hash: '6626788932726993518' }, - { - file: 'packages/react-examples/src/react/SpinButton/SpinButton.Suffix.Example.tsx', - hash: '1079251097865055762', - }, - { - file: 'packages/react-examples/src/react/SpinButton/SpinButton.TopPosition.Example.tsx', - hash: '582843143874513756', - }, - { file: 'packages/react-examples/src/react/SpinButton/SpinButton.doc.tsx', hash: '7586160469216796173' }, - { - file: 'packages/react-examples/src/react/SpinButton/docs/SpinButtonBestPractices.md', - hash: '7394595204008996672', - }, - { file: 'packages/react-examples/src/react/SpinButton/docs/SpinButtonOverview.md', hash: '1350428310209392348' }, - { file: 'packages/react-examples/src/react/Spinner/Spinner.Basic.Example.tsx', hash: '5676613769831055307' }, - { file: 'packages/react-examples/src/react/Spinner/Spinner.Labeled.Example.tsx', hash: '6554690103655359792' }, - { file: 'packages/react-examples/src/react/Spinner/Spinner.doc.tsx', hash: '2680295685347079214' }, - { file: 'packages/react-examples/src/react/Spinner/docs/SpinnerBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Spinner/docs/SpinnerDonts.md', hash: '13465962442451970729' }, - { file: 'packages/react-examples/src/react/Spinner/docs/SpinnerDos.md', hash: '15907047634456378207' }, - { file: 'packages/react-examples/src/react/Spinner/docs/SpinnerOverview.md', hash: '1153354032756284251' }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Basic.Example.tsx', - hash: '397185853371300849', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Configure.Example.tsx', - hash: '3068600573305640316', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Grow.Example.tsx', - hash: '7663043324894099728', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.HorizontalAlign.Example.tsx', - hash: '16107132022246210787', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Reversed.Example.tsx', - hash: '6241489615533027431', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Shrink.Example.tsx', - hash: '4124600081374028027', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Spacing.Example.tsx', - hash: '1220623790429356324', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.VerticalAlign.Example.tsx', - hash: '2844202655523336279', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.Wrap.Example.tsx', - hash: '4432830012103328674', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.WrapAdvanced.Example.tsx', - hash: '5719721466279762631', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Horizontal.WrapNested.Example.tsx', - hash: '8495148496978143621', - }, - { file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Basic.Example.tsx', hash: '6782079249119429213' }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Configure.Example.tsx', - hash: '8514056594295328011', - }, - { file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Grow.Example.tsx', hash: '17937660614534801046' }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Vertical.HorizontalAlign.Example.tsx', - hash: '4266961035406961486', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Reversed.Example.tsx', - hash: '11573608768450252432', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Shrink.Example.tsx', - hash: '15026509761358180518', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Spacing.Example.tsx', - hash: '10900219514926473354', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Vertical.VerticalAlign.Example.tsx', - hash: '3270795531306189517', - }, - { file: 'packages/react-examples/src/react/Stack/Stack.Vertical.Wrap.Example.tsx', hash: '15143405347761112638' }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Vertical.WrapAdvanced.Example.tsx', - hash: '921574311353468954', - }, - { - file: 'packages/react-examples/src/react/Stack/Stack.Vertical.WrapNested.Example.tsx', - hash: '15383052396031418364', - }, - { file: 'packages/react-examples/src/react/Stack/Stack.doc.tsx', hash: '7761546058475299469' }, - { file: 'packages/react-examples/src/react/Stack/docs/StackBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Stack/docs/StackDonts.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Stack/docs/StackDos.md', hash: '11728596372223301314' }, - { file: 'packages/react-examples/src/react/Stack/docs/StackOverview.md', hash: '12397352656042692504' }, - { - file: 'packages/react-examples/src/react/SwatchColorPicker/SwatchColorPicker.Basic.Example.tsx', - hash: '4923638072801173377', - }, - { - file: 'packages/react-examples/src/react/SwatchColorPicker/SwatchColorPicker.doc.tsx', - hash: '5507998858411018179', - }, - { - file: 'packages/react-examples/src/react/SwatchColorPicker/docs/SwatchColorPickerBestPractices.md', - hash: '4392559887818317006', - }, - { - file: 'packages/react-examples/src/react/SwatchColorPicker/docs/SwatchColorPickerOverview.md', - hash: '17352028475438906319', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.Basic.Example.tsx', - hash: '7495237260950355108', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.ButtonOrder.Example.tsx', - hash: '5239155264005845143', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.Condensed.Example.tsx', - hash: '877446611084859392', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.Illustration.Example.tsx', - hash: '7966558914940147995', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.MultiStep.Example.tsx', - hash: '1471557829804882323', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.SmallHeadline.Example.tsx', - hash: '6347084873900866086', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.Wide.Example.tsx', - hash: '11343270132436278903', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.WideIllustration.Example.tsx', - hash: '18124615145562684929', - }, - { file: 'packages/react-examples/src/react/TeachingBubble/TeachingBubble.doc.tsx', hash: '3164002226905703915' }, - { - file: 'packages/react-examples/src/react/TeachingBubble/docs/TeachingBubbleBestPractices.md', - hash: '12253372352985739055', - }, - { - file: 'packages/react-examples/src/react/TeachingBubble/docs/TeachingBubbleOverview.md', - hash: '9592985478022845846', - }, - { file: 'packages/react-examples/src/react/Text/Text.Block.Example.tsx', hash: '2572640488515201257' }, - { file: 'packages/react-examples/src/react/Text/Text.Ramp.Example.tsx', hash: '17910302471956741708' }, - { file: 'packages/react-examples/src/react/Text/Text.Weights.Example.tsx', hash: '651063831392855072' }, - { file: 'packages/react-examples/src/react/Text/Text.Wrap.Example.tsx', hash: '1806536952248660360' }, - { file: 'packages/react-examples/src/react/Text/Text.doc.tsx', hash: '11970359592381181046' }, - { file: 'packages/react-examples/src/react/Text/docs/TextBestPractices.md', hash: '3244421341483603138' }, - { file: 'packages/react-examples/src/react/Text/docs/TextDonts.md', hash: '1812687761537955713' }, - { file: 'packages/react-examples/src/react/Text/docs/TextDos.md', hash: '3552494451723474854' }, - { file: 'packages/react-examples/src/react/Text/docs/TextOverview.md', hash: '6201808888188087402' }, - { file: 'packages/react-examples/src/react/TextField/TextField.Basic.Example.tsx', hash: '17697340126601025361' }, - { - file: 'packages/react-examples/src/react/TextField/TextField.Borderless.Example.tsx', - hash: '5776762670076842305', - }, - { - file: 'packages/react-examples/src/react/TextField/TextField.Controlled.Example.tsx', - hash: '13387913485237516134', - }, - { - file: 'packages/react-examples/src/react/TextField/TextField.CustomRender.Example.tsx', - hash: '15731781620662596897', - }, - { - file: 'packages/react-examples/src/react/TextField/TextField.ErrorMessage.Example.tsx', - hash: '13848334992902664893', - }, - { - file: 'packages/react-examples/src/react/TextField/TextField.Masked.Example.tsx', - hash: '16940421866897217217', - }, - { - file: 'packages/react-examples/src/react/TextField/TextField.Multiline.Example.tsx', - hash: '14466852683033202902', - }, - { - file: 'packages/react-examples/src/react/TextField/TextField.PrefixAndSuffix.Example.tsx', - hash: '5621047978049180529', - }, - { - file: 'packages/react-examples/src/react/TextField/TextField.Styled.Example.tsx', - hash: '17474113732489640237', - }, - { file: 'packages/react-examples/src/react/TextField/TextField.doc.tsx', hash: '351449129733137615' }, - { - file: 'packages/react-examples/src/react/TextField/docs/TextFieldBestPractices.md', - hash: '4891779884027992136', - }, - { file: 'packages/react-examples/src/react/TextField/docs/TextFieldOverview.md', hash: '1575292705357077088' }, - { file: 'packages/react-examples/src/react/Theme/Theme.doc.tsx', hash: '5725525103292734150' }, - { file: 'packages/react-examples/src/react/Theme/docs/ThemesOverview.md', hash: '1025689132255097325' }, - { file: 'packages/react-examples/src/react/ThemeGenerator/ThemeGenerator.doc.tsx', hash: '2481012262064489377' }, - { - file: 'packages/react-examples/src/react/ThemeProvider/ThemeProvider.Basic.Example.tsx', - hash: '18065435800720689216', - }, - { - file: 'packages/react-examples/src/react/ThemeProvider/ThemeProvider.Nested.Example.tsx', - hash: '17498722943115260456', - }, - { file: 'packages/react-examples/src/react/ThemeProvider/ThemeProvider.doc.tsx', hash: '14679110571809507221' }, - { - file: 'packages/react-examples/src/react/ThemeProvider/ThemeProvider.stories.tsx', - hash: '4360939645926293819', - }, - { - file: 'packages/react-examples/src/react/ThemeProvider/docs/ThemeProviderBestPractices.md', - hash: '9291823125102619223', - }, - { - file: 'packages/react-examples/src/react/ThemeProvider/docs/ThemeProviderOverview.md', - hash: '16911649373008640709', - }, - { - file: 'packages/react-examples/src/react/TimePicker/TimePicker.Basic.Example.tsx', - hash: '2986069269055991177', - }, - { - file: 'packages/react-examples/src/react/TimePicker/TimePicker.Controlled.Example.tsx', - hash: '175125299373631613', - }, - { - file: 'packages/react-examples/src/react/TimePicker/TimePicker.CustomTimeStrings.Example.tsx', - hash: '7605314919297467891', - }, - { - file: 'packages/react-examples/src/react/TimePicker/TimePicker.DateTimePicker.Example.tsx', - hash: '8634935140509827042', - }, - { - file: 'packages/react-examples/src/react/TimePicker/TimePicker.ValidationResult.Example.tsx', - hash: '4869507487398466300', - }, - { file: 'packages/react-examples/src/react/TimePicker/TimePicker.doc.tsx', hash: '15162167716925661256' }, - { - file: 'packages/react-examples/src/react/TimePicker/docs/TimePickerBestPractices.md', - hash: '17184947854592075536', - }, - { file: 'packages/react-examples/src/react/TimePicker/docs/TimePickerOverview.md', hash: '12628229697985609328' }, - { file: 'packages/react-examples/src/react/Toggle/Toggle.Basic.Example.tsx', hash: '296997063617274157' }, - { file: 'packages/react-examples/src/react/Toggle/Toggle.CustomLabel.Example.tsx', hash: '12819052129733986050' }, - { file: 'packages/react-examples/src/react/Toggle/Toggle.doc.tsx', hash: '16648643731009257993' }, - { file: 'packages/react-examples/src/react/Toggle/docs/ToggleBestPractices.md', hash: '14671921759592124956' }, - { file: 'packages/react-examples/src/react/Toggle/docs/ToggleOverview.md', hash: '5058309645448523639' }, - { - file: 'packages/react-examples/src/react/Tooltip/Tooltip.AbsolutePosition.Example.tsx', - hash: '6422947980529143287', - }, - { file: 'packages/react-examples/src/react/Tooltip/Tooltip.Basic.Example.tsx', hash: '11598663710486420109' }, - { file: 'packages/react-examples/src/react/Tooltip/Tooltip.Custom.Example.tsx', hash: '13584977360149752361' }, - { file: 'packages/react-examples/src/react/Tooltip/Tooltip.Display.Example.tsx', hash: '4847577445051092212' }, - { - file: 'packages/react-examples/src/react/Tooltip/Tooltip.Interactive.Example.tsx', - hash: '7828051206751308669', - }, - { file: 'packages/react-examples/src/react/Tooltip/Tooltip.Overflow.Example.tsx', hash: '806920868530231686' }, - { file: 'packages/react-examples/src/react/Tooltip/Tooltip.doc.tsx', hash: '296399804726274849' }, - { file: 'packages/react-examples/src/react/Tooltip/docs/TooltipBestPractices.md', hash: '7755171346331932930' }, - { file: 'packages/react-examples/src/react/Tooltip/docs/TooltipOverview.md', hash: '8796628313378671712' }, - { - file: 'packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Example.scss', - hash: '8887148203940963303', - }, - { - file: 'packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Example.tsx', - hash: '11074158271954337286', - }, - { - file: 'packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.Expandable.Example.tsx', - hash: '1782051463240559076', - }, - { - file: 'packages/react-examples/src/react/WeeklyDayPicker/WeeklyDayPicker.Inline.MarkedDays.Example.tsx', - hash: '83617302861297456', - }, - { file: 'packages/react-examples/src/react-cards/Card/Card.Configure.Example.tsx', hash: '6829387816201221529' }, - { - file: 'packages/react-examples/src/react-cards/Card/Card.Horizontal.Example.tsx', - hash: '17316572223916603990', - }, - { file: 'packages/react-examples/src/react-cards/Card/Card.Vertical.Example.tsx', hash: '8828664300500480205' }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.Basic.Example.tsx', - hash: '17280228016338608640', - }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.CustomAccessibility.Example.tsx', - hash: '91286154134076767', - }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.DataChange.Example.tsx', - hash: '6688939291679086171', - }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.LargeData.Example.tsx', - hash: '14375772672176497300', - }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.Multiple.Example.tsx', - hash: '5790932728445775074', - }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.Styled.Example.tsx', - hash: '3219925141936248769', - }, - { file: 'packages/react-examples/src/react-charting/AreaChart/AreaChart.doc.tsx', hash: '4837721049513527166' }, - { file: 'packages/react-examples/src/react-charting/AreaChart/AreaChartPage.tsx', hash: '4908599330711186091' }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/docs/AreaChartBestPractices.md', - hash: '8667501283021664942', - }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/docs/AreaChartDonts.md', - hash: '6341862057868122032', - }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/docs/AreaChartDos.md', - hash: '13112543964230723538', - }, - { - file: 'packages/react-examples/src/react-charting/AreaChart/docs/AreaChartOverview.md', - hash: '6557352484419296085', - }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.Basic.Example.tsx', - hash: '14742041563816254972', - }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.CustomAccessibility.Example.tsx', - hash: '5947170745589368987', - }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.CustomCallout.Example.tsx', - hash: '10044935613886027628', - }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.Dynamic.Example.tsx', - hash: '12862431042025783292', - }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/DonutChart.doc.tsx', - hash: '12628122887827348086', - }, - { file: 'packages/react-examples/src/react-charting/DonutChart/DonutChartPage.tsx', hash: '372760954603184761' }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/docs/DonutChartBestPractices.md', - hash: '16300067599723018120', - }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/docs/DonutChartDonts.md', - hash: '13677672991812468743', - }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/docs/DonutChartDos.md', - hash: '13594512462831129291', - }, - { - file: 'packages/react-examples/src/react-charting/DonutChart/docs/DonutChartOverview.md', - hash: '6204014879587669217', - }, - { - file: 'packages/react-examples/src/react-charting/GaugeChart/GaugeChart.Basic.Example.tsx', - hash: '16149580628524933008', - }, - { - file: 'packages/react-examples/src/react-charting/GaugeChart/GaugeChart.Variant.Example.tsx', - hash: '9126260302719343105', - }, - { - file: 'packages/react-examples/src/react-charting/GaugeChart/GaugeChart.doc.tsx', - hash: '10718149355691209173', - }, - { - file: 'packages/react-examples/src/react-charting/GaugeChart/GaugeChartPage.tsx', - hash: '16640437771472467039', - }, - { - file: 'packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartBestPractices.md', - hash: '15727587785304445954', - }, - { - file: 'packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartDonts.md', - hash: '1081792757328488596', - }, - { - file: 'packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartDos.md', - hash: '7794023420355098591', - }, - { - file: 'packages/react-examples/src/react-charting/GaugeChart/docs/GaugeChartOverview.md', - hash: '17251215862264929766', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Basic.Example.tsx', - hash: '8765749276400440476', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.CustomAccessibility.Example.tsx', - hash: '7855107173035791090', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Styled.Example.tsx', - hash: '10072552460465707316', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.Truncated.Example.tsx', - hash: '14359382740573587985', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChart.doc.tsx', - hash: '11514123822468590747', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/GroupedVerticalBarChartPage.tsx', - hash: '8452333274806373661', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartBestPractices.md', - hash: '15294929844943858089', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartDonts.md', - hash: '16148048113015171770', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartDos.md', - hash: '14610165816610031867', - }, - { - file: 'packages/react-examples/src/react-charting/GroupedVerticalBarChart/docs/GroupedVerticalBarChartOverview.md', - hash: '10931229892839990338', - }, - { - file: 'packages/react-examples/src/react-charting/HeatMapChart/HeatMapChart.doc.tsx', - hash: '16115623563074567806', - }, - { - file: 'packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartBasic.CustomAccessibility.Example.tsx', - hash: '11708850517126970876', - }, - { - file: 'packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartBasic.Example.tsx', - hash: '10262357403800107', - }, - { - file: 'packages/react-examples/src/react-charting/HeatMapChart/HeatMapChartPage.tsx', - hash: '6875793756240523159', - }, - { - file: 'packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartBestPractices.md', - hash: '2397917437906085447', - }, - { - file: 'packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartDonts.md', - hash: '3773423687848795802', - }, - { - file: 'packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartDos.md', - hash: '15371103820530549100', - }, - { - file: 'packages/react-examples/src/react-charting/HeatMapChart/docs/HeatMapChartOverview.md', - hash: '11879653409540920034', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Basic.Example.tsx', - hash: '13252158935887926671', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Benchmark.Example.tsx', - hash: '4287642655868330949', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.CustomAccessibility.Example.tsx', - hash: '8745243420945124223', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.CustomCallout.Example.tsx', - hash: '13406079384862782588', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.Variant.Example.tsx', - hash: '2920049457733182532', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChart.doc.tsx', - hash: '17502781025553440606', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/HorizontalBarChartPage.tsx', - hash: '8291344898342706236', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartBestPractices.md', - hash: '16151128446301762382', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartDonts.md', - hash: '9744770780362582179', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartDos.md', - hash: '325930012420447456', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChart/docs/HorizontalBarChartOverview.md', - hash: '10347106881597446108', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.AxisTooltip.Example.tsx', - hash: '6459704628651063468', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.Basic.Example.tsx', - hash: '5516921156313325496', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.StringAxisTooltip.Example.tsx', - hash: '16828106331991834440', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.doc.tsx', - hash: '14590401134663921680', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/HorizontalBarChartWithAxisPage.tsx', - hash: '5035299730033890133', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisBestPractices.md', - hash: '1883076091925546845', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisDonts.md', - hash: '1929719836825879626', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisDos.md', - hash: '7882006878115043204', - }, - { - file: 'packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/docs/HorizontalBarChartWithAxisOverview.md', - hash: '2090146818650993319', - }, - { - file: 'packages/react-examples/src/react-charting/Legends/Legends.Basic.Example.tsx', - hash: '13318547901894743623', - }, - { - file: 'packages/react-examples/src/react-charting/Legends/Legends.OnChange.Example.tsx', - hash: '254509847114453779', - }, - { - file: 'packages/react-examples/src/react-charting/Legends/Legends.Overflow.Example.tsx', - hash: '13509103622834344877', - }, - { - file: 'packages/react-examples/src/react-charting/Legends/Legends.Styled.Example.tsx', - hash: '14549351446904751647', - }, - { - file: 'packages/react-examples/src/react-charting/Legends/Legends.WrapLines.Example.tsx', - hash: '10763696579939743825', - }, - { file: 'packages/react-examples/src/react-charting/Legends/Legends.doc.tsx', hash: '7266834029940545539' }, - { file: 'packages/react-examples/src/react-charting/Legends/LegendsPage.tsx', hash: '5015802845987146061' }, - { - file: 'packages/react-examples/src/react-charting/Legends/docs/LegendsBestPractices.md', - hash: '16372519399062358981', - }, - { - file: 'packages/react-examples/src/react-charting/Legends/docs/LegendsOverview.md', - hash: '6669044032918395598', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Basic.Example.tsx', - hash: '16609453156609940493', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/LineChart.CustomAccessibility.Example.tsx', - hash: '15848904157802634625', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/LineChart.CustomLocaleDateAxis.Example.tsx', - hash: '17424975472863078490', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Events.Example.tsx', - hash: '11443099609081595243', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Gaps.Example.tsx', - hash: '6439669200786227256', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/LineChart.LargeData.Example.tsx', - hash: '16829926365893456599', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Multiple.Example.tsx', - hash: '17987367081455407416', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/LineChart.Styled.Example.tsx', - hash: '12410478632737069679', - }, - { file: 'packages/react-examples/src/react-charting/LineChart/LineChart.doc.tsx', hash: '7678613275504857548' }, - { file: 'packages/react-examples/src/react-charting/LineChart/LineChartPage.tsx', hash: '6723436798090404763' }, - { - file: 'packages/react-examples/src/react-charting/LineChart/docs/LineChartBestPractices.md', - hash: '6714629733050737300', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/docs/LineChartDonts.md', - hash: '14412880537195715769', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/docs/LineChartDos.md', - hash: '3909689919490469374', - }, - { - file: 'packages/react-examples/src/react-charting/LineChart/docs/LineChartOverview.md', - hash: '10371717520503731024', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.Example.tsx', - hash: '3428263105847588170', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.Variant.Example.tsx', - hash: '14478237278453578125', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChart.doc.tsx', - hash: '10516361952942143793', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChartPage.tsx', - hash: '8031095526414554570', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/MultiStackedBarChartWithPlaceHolder.Example.tsx', - hash: '5387327515635763623', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartBestPractices.md', - hash: '2690332724878924286', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartDonts.md', - hash: '9744770780362582179', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartDos.md', - hash: '17058286745613894005', - }, - { - file: 'packages/react-examples/src/react-charting/MultiStackedBarChart/docs/MultiStackedBarChartOverview.md', - hash: '9567727283032560252', - }, - { - file: 'packages/react-examples/src/react-charting/PieChart/PieChart.Basic.Example.tsx', - hash: '8203334510932548198', - }, - { - file: 'packages/react-examples/src/react-charting/PieChart/PieChart.Dynamic.Example.tsx', - hash: '10449071395922245157', - }, - { file: 'packages/react-examples/src/react-charting/PieChart/PieChart.doc.tsx', hash: '11344460396535720753' }, - { file: 'packages/react-examples/src/react-charting/PieChart/PieChartPage.tsx', hash: '3067168850426368882' }, - { - file: 'packages/react-examples/src/react-charting/PieChart/docs/PieChartBestPractices.md', - hash: '9239548385463694443', - }, - { - file: 'packages/react-examples/src/react-charting/PieChart/docs/PieChartOverview.md', - hash: '12435926360300087351', - }, - { - file: 'packages/react-examples/src/react-charting/SankeyChart/SankeyChart.Basic.Example.tsx', - hash: '15895521692770891123', - }, - { - file: 'packages/react-examples/src/react-charting/SankeyChart/SankeyChart.Inbox.Example.tsx', - hash: '11338422240875637555', - }, - { - file: 'packages/react-examples/src/react-charting/SankeyChart/SankeyChart.doc.tsx', - hash: '5612032228516822569', - }, - { - file: 'packages/react-examples/src/react-charting/SankeyChart/SankeyChartPage.tsx', - hash: '6599378000696069918', - }, - { - file: 'packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartBestPractices.md', - hash: '10660018979829767509', - }, - { - file: 'packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartDonts.md', - hash: '13301146973251673370', - }, - { - file: 'packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartDos.md', - hash: '1539175195150153200', - }, - { - file: 'packages/react-examples/src/react-charting/SankeyChart/docs/SankeyChartOverview.md', - hash: '7891621325208064656', - }, - { - file: 'packages/react-examples/src/react-charting/SparklineChart/SparklineChart.Basic.Example.tsx', - hash: '7996953674632164929', - }, - { - file: 'packages/react-examples/src/react-charting/SparklineChart/SparklineChart.doc.tsx', - hash: '520593925782042104', - }, - { - file: 'packages/react-examples/src/react-charting/SparklineChart/SparklineChartPage.tsx', - hash: '6550554335150726180', - }, - { - file: 'packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartBestPractices.md', - hash: '13483173933522190353', - }, - { - file: 'packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartDonts.md', - hash: '11299798707424545592', - }, - { - file: 'packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartDos.md', - hash: '1697315164222562053', - }, - { - file: 'packages/react-examples/src/react-charting/SparklineChart/docs/SparklineChartOverview.md', - hash: '14809910634717392563', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChart.CustomAccessibility.Example.tsx', - hash: '7681705201021791043', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChart.Example.tsx', - hash: '11601994178156060431', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/MultiStackedBarChartWithPlaceHolder.Example.tsx', - hash: '15927852500748954627', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.BaseBar.Example.tsx', - hash: '9651160196089340776', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Basic.Example.tsx', - hash: '5364722359703304730', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Benchmark.Example.tsx', - hash: '11978417296447961080', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.CustomAccessibility.Example.tsx', - hash: '2288295920028534361', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Dynamic.Example.tsx', - hash: '16401953707966301386', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.Multiple.Example.tsx', - hash: '15030752846565030223', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChart.doc.tsx', - hash: '15556279018016952835', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/StackedBarChartPage.tsx', - hash: '12068599533954281772', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartBestPractices.md', - hash: '16329234638281406580', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartDonts.md', - hash: '9744770780362582179', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartDos.md', - hash: '12392110646580197178', - }, - { - file: 'packages/react-examples/src/react-charting/StackedBarChart/docs/StackedBarChartOverview.md', - hash: '9514828762490962803', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayer.Example.tsx', - hash: '7678522819956493260', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerCompact.Example.tsx', - hash: '12235799044053510801', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerCompactDocSite.Example.tsx', - hash: '16627233669655998907', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerDocSite.Example.tsx', - hash: '14668717497310929772', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.ThreeLayerLong.Example.tsx', - hash: '2717068418213538167', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.TwoLayer.Example.tsx', - hash: '10571073613589868518', - }, - { file: 'packages/react-examples/src/react-charting/TreeChart/TreeChart.doc.tsx', hash: '11173162709033730647' }, - { file: 'packages/react-examples/src/react-charting/TreeChart/TreeChartPage.tsx', hash: '2366910803326724394' }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/docs/TreeChartBestPractices.md', - hash: '4433147631214615208', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/docs/TreeChartDonts.md', - hash: '17448766090531150739', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/docs/TreeChartDos.md', - hash: '17299718083732552010', - }, - { - file: 'packages/react-examples/src/react-charting/TreeChart/docs/TreeChartOverview.md', - hash: '13281315253395855539', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.AxisTooltip.Example.tsx', - hash: '3440368874285633954', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Basic.Example.tsx', - hash: '7236293491875440718', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.CustomAccessibility.Example.tsx', - hash: '9720292503266491395', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Dynamic.Example.tsx', - hash: '13174372272560557644', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.RotateLabels.Example.tsx', - hash: '9266907551817692921', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.Styled.Example.tsx', - hash: '16741806930992796868', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChart.doc.tsx', - hash: '4797540806541545801', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/VerticalBarChartPage.tsx', - hash: '15128301750103217480', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartBestPractices.md', - hash: '16364767162395907158', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartDonts.md', - hash: '7968404933206089384', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartDos.md', - hash: '15311150692622924592', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalBarChart/docs/VerticalBarChartOverview.md', - hash: '765353722265452356', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.AxisTooltip.Example.tsx', - hash: '13191895355624307502', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Basic.Example.tsx', - hash: '17782065064180114250', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Callout.Example.tsx', - hash: '10944347787777491182', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.CustomAccessibility.Example.tsx', - hash: '1070898371773461860', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.Styled.Example.tsx', - hash: '4504351050897917110', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChart.doc.tsx', - hash: '3287708940831127290', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/VerticalStackedBarChartPage.tsx', - hash: '15864858780968607914', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartBestPractices.md', - hash: '7575666629590817987', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartDonts.md', - hash: '16148048113015171770', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartDos.md', - hash: '14610165816610031867', - }, - { - file: 'packages/react-examples/src/react-charting/VerticalStackedBarChart/docs/VerticalStackedBarChartOverview.md', - hash: '17155804307757386673', - }, - { file: 'packages/react-examples/src/react-charting/demo/AppDefinition.tsx', hash: '5500226316546506996' }, - { file: 'packages/react-examples/src/react-charting/demo/AppThemes.ts', hash: '4733901559184113020' }, - { file: 'packages/react-examples/src/react-charting/demo/GettingStartedPage.tsx', hash: '16105541935593779438' }, - { file: 'packages/react-examples/src/react-charting/demo/index.tsx', hash: '17416720422326067006' }, - { - file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Basic.Example.tsx', - hash: '8930719020880385792', - }, - { - file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Breadcrumb.Example.tsx', - hash: '4984296336724180173', - }, - { - file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Footer.Example.tsx', - hash: '8685788575260044113', - }, - { - file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Preview.Example.tsx', - hash: '9204835405452805309', - }, - { - file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Xsmall.Example.tsx', - hash: '9883949284175000331', - }, - { - file: 'packages/react-examples/src/react-experiments/Chiclet/Chiclet.Xsmall.Footer.Example.tsx', - hash: '13684300580914819009', - }, - { file: 'packages/react-examples/src/react-experiments/Chiclet/ChicletPage.tsx', hash: '6309817484233845154' }, - { - file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Accordion.Example.tsx', - hash: '15159333797981158652', - }, - { - file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Basic.Example.tsx', - hash: '12659675144452419206', - }, - { - file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Controlled.Example.tsx', - hash: '8952443015251807929', - }, - { - file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Recursive.Example.tsx', - hash: '9112946933932153761', - }, - { - file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Slots.Example.tsx', - hash: '6677308251806862729', - }, - { - file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSection.Styled.Example.tsx', - hash: '8619495061269822495', - }, - { - file: 'packages/react-examples/src/react-experiments/CollapsibleSection/CollapsibleSectionPage.tsx', - hash: '5288564094978258535', - }, - { - file: 'packages/react-examples/src/react-experiments/FileTypeIcon/FileTypeIcon.Basic.Example.tsx', - hash: '917684447694156665', - }, - { - file: 'packages/react-examples/src/react-experiments/FileTypeIcon/FileTypeIconPage.tsx', - hash: '858993541312384290', - }, - { - file: 'packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.CustomRender.Example.tsx', - hash: '6292110668678104288', - }, - { - file: 'packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.Example.tsx', - hash: '707642620583749699', - }, - { - file: 'packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingPeopleSuggestions.HeaderFooter.Example.tsx', - hash: '13106417764492493310', - }, - { - file: 'packages/react-examples/src/react-experiments/FloatingPeopleSuggestions/FloatingSuggestionsPage.tsx', - hash: '16474647862080665137', - }, - { - file: 'packages/react-examples/src/react-experiments/FolderCover/FolderCover.Basic.Example.tsx', - hash: '13644616959959750103', - }, - { - file: 'packages/react-examples/src/react-experiments/FolderCover/FolderCoverPage.tsx', - hash: '16138332361658578983', - }, - { - file: 'packages/react-examples/src/react-experiments/LayoutGroup/LayoutGroup.Basic.Example.tsx', - hash: '2242368482669957303', - }, - { - file: 'packages/react-examples/src/react-experiments/LayoutGroup/LayoutGroupPage.tsx', - hash: '10999466950766503186', - }, - { - file: 'packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedback.Example.tsx', - hash: '9963588234996656191', - }, - { - file: 'packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackCallout.Example.tsx', - hash: '7009666584489671037', - }, - { - file: 'packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackPage.tsx', - hash: '8117285971645963619', - }, - { - file: 'packages/react-examples/src/react-experiments/MicroFeedback/MicroFeedbackStack.Example.tsx', - hash: '8215761124552069416', - }, - { - file: 'packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Basic.Example.tsx', - hash: '16672023748927658570', - }, - { - file: 'packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Customization.Example.tsx', - hash: '15746267823289451390', - }, - { - file: 'packages/react-examples/src/react-experiments/Pagination/Pagination.Buttons.Customization.Round.Example.tsx', - hash: '16588942881062896611', - }, - { - file: 'packages/react-examples/src/react-experiments/Pagination/Pagination.ComboBox.Example.tsx', - hash: '10221865281541950791', - }, - { - file: 'packages/react-examples/src/react-experiments/Pagination/PaginationPage.tsx', - hash: '8871130369002585937', - }, - { - file: 'packages/react-examples/src/react-experiments/Persona/Persona.Example.tsx', - hash: '13323610891568828947', - }, - { file: 'packages/react-examples/src/react-experiments/Persona/PersonaPage.tsx', hash: '4386929712448366979' }, - { - file: 'packages/react-examples/src/react-experiments/Persona/VerticalPersona.Example.tsx', - hash: '6280952920806886611', - }, - { - file: 'packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoin.Example.tsx', - hash: '5198304688619672463', - }, - { - file: 'packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoinPage.tsx', - hash: '597153685931096748', - }, - { - file: 'packages/react-examples/src/react-experiments/PersonaCoin/PersonaCoinSizeAndColor.Example.tsx', - hash: '15925621842330965615', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.Basic.DragDrop.Example.tsx', - hash: '11998599855861317186', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.Basic.Example.tsx', - hash: '1813147298084512047', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.DragDropBetweenWells.Example.tsx', - hash: '10334562335982740605', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithContextMenu.Example.tsx', - hash: '15548997466564876088', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithEdit.Example.tsx', - hash: '7110135765839362365', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithEditInContextMenu.Example.tsx', - hash: '17140363768491353808', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleList.WithGroupExpand.Example.tsx', - hash: '12324471504246880713', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/SelectedPeopleListPage.tsx', - hash: '13688015502388949655', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/docs/SelectedPeopleListDonts.md', - hash: '970258102470137051', - }, - { - file: 'packages/react-examples/src/react-experiments/SelectedPeopleList/docs/SelectedPeopleListDos.md', - hash: '14926848229419922236', - }, - { - file: 'packages/react-examples/src/react-experiments/Sidebar/Sidebar.Basic.Example.tsx', - hash: '16661739891134879041', - }, - { - file: 'packages/react-examples/src/react-experiments/Sidebar/Sidebar.Collapsed.Example.tsx', - hash: '15003512523536440179', - }, - { file: 'packages/react-examples/src/react-experiments/Sidebar/SidebarPage.tsx', hash: '14960004064937642663' }, - { - file: 'packages/react-examples/src/react-experiments/Signals/SignalField.Basic.Example.tsx', - hash: '10922412750446698665', - }, - { - file: 'packages/react-examples/src/react-experiments/Signals/Signals.Basic.Example.tsx', - hash: '10060294351317517165', - }, - { - file: 'packages/react-examples/src/react-experiments/Signals/Signals.Example.scss', - hash: '8438670691459106267', - }, - { file: 'packages/react-examples/src/react-experiments/Signals/SignalsPage.tsx', hash: '14146406673869305765' }, - { file: 'packages/react-examples/src/react-experiments/Slider/Slider.Example.tsx', hash: '9917636369122157024' }, - { - file: 'packages/react-examples/src/react-experiments/Slider/Slider.Vertical.Example.tsx', - hash: '11870888312804408806', - }, - { file: 'packages/react-examples/src/react-experiments/Slider/SliderPage.tsx', hash: '16202212692805425480' }, - { - file: 'packages/react-examples/src/react-experiments/StaticList/StaticListPage.tsx', - hash: '16599220045566881237', - }, - { - file: 'packages/react-examples/src/react-experiments/Theming/Theming.Schemes.Custom.Example.tsx', - hash: '6092325306258851700', - }, - { - file: 'packages/react-examples/src/react-experiments/Theming/Theming.Schemes.Variant.Example.tsx', - hash: '6414750604467205160', - }, - { file: 'packages/react-examples/src/react-experiments/Theming/ThemingPage.tsx', hash: '11929647568890781490' }, - { - file: 'packages/react-examples/src/react-experiments/Tile/Tile.Document.Example.tsx', - hash: '1451127257262809525', - }, - { file: 'packages/react-examples/src/react-experiments/Tile/Tile.Example.scss', hash: '9239083632746717173' }, - { - file: 'packages/react-examples/src/react-experiments/Tile/Tile.Folder.Example.tsx', - hash: '10313966864598219856', - }, - { - file: 'packages/react-examples/src/react-experiments/Tile/Tile.Media.Example.tsx', - hash: '7825783569121455932', - }, - { file: 'packages/react-examples/src/react-experiments/Tile/TilePage.tsx', hash: '16986402846290123940' }, - { - file: 'packages/react-examples/src/react-experiments/TilesList/ExampleHelpers.tsx', - hash: '5885130793784814347', - }, - { - file: 'packages/react-examples/src/react-experiments/TilesList/TilesList.Basic.Example.tsx', - hash: '12689940136040547907', - }, - { - file: 'packages/react-examples/src/react-experiments/TilesList/TilesList.Document.Example.tsx', - hash: '15268770873391847911', - }, - { - file: 'packages/react-examples/src/react-experiments/TilesList/TilesList.Example.scss', - hash: '16795486179587091785', - }, - { - file: 'packages/react-examples/src/react-experiments/TilesList/TilesList.Media.Example.tsx', - hash: '5060510999175829594', - }, - { - file: 'packages/react-examples/src/react-experiments/TilesList/TilesListPage.tsx', - hash: '5893706552312839035', - }, - { - file: 'packages/react-examples/src/react-experiments/UnifiedPeoplePicker/DoubleUnifiedPeoplePicker.Example.tsx', - hash: '17345325041048264800', - }, - { - file: 'packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePicker.Example.tsx', - hash: '17726985096447711321', - }, - { - file: 'packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePicker.WithEdit.Example.tsx', - hash: '18072241743869642673', - }, - { - file: 'packages/react-examples/src/react-experiments/UnifiedPeoplePicker/UnifiedPeoplePickerPage.tsx', - hash: '17760392667692101835', - }, - { - file: 'packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Basic.Example.tsx', - hash: '68072280452097755', - }, - { - file: 'packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Basic2.Example.tsx', - hash: '1955269037613322544', - }, - { - file: 'packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedList.Example.scss', - hash: '13239750418457062169', - }, - { - file: 'packages/react-examples/src/react-experiments/VirtualizedList/VirtualizedListPage.tsx', - hash: '11902707775214362543', - }, - { file: 'packages/react-examples/src/react-experiments/demo/AppDefinition.tsx', hash: '18428760086075985217' }, - { file: 'packages/react-examples/src/react-experiments/demo/AppThemes.ts', hash: '16940588306323476143' }, - { - file: 'packages/react-examples/src/react-experiments/demo/GettingStartedPage.tsx', - hash: '8926393232991035941', - }, - { file: 'packages/react-examples/src/react-experiments/demo/index.tsx', hash: '8452953617370397632' }, - { - file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.Disabled.Example.tsx', - hash: '591105582283659640', - }, - { - file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.HorizontalMenu.Example.tsx', - hash: '15025677695253467860', - }, - { - file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.List.Example.tsx', - hash: '7052917308202375780', - }, - { - file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.Photos.Example.tsx', - hash: '15312191457300881752', - }, - { - file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.Tabbable.Example.tsx', - hash: '14660928901055405455', - }, - { file: 'packages/react-examples/src/react-focus/FocusZone/FocusZone.doc.tsx', hash: '1079957587186782410' }, - { - file: 'packages/react-examples/src/react-focus/FocusZone/docs/FocusZoneOverview.md', - hash: '13397458153671891240', - }, - { file: 'packages/react-examples/tsconfig.cy.json', hash: '15298769101167954295' }, - { file: 'packages/react-examples/tsconfig.json', hash: '6768911732744882519' }, - ], - '@fluentui/scripts-perf-test-flamegrill': [ - { file: 'scripts/perf-test-flamegrill/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/perf-test-flamegrill/jest.config.js', hash: '8618634705738605800' }, - { - file: 'scripts/perf-test-flamegrill/package.json', - hash: '11021363269324038115', - deps: ['npm:@types/react', 'npm:@types/react-dom', 'npm:react', 'npm:react-dom', 'npm:webpack'], - }, - { file: 'scripts/perf-test-flamegrill/project.json', hash: '10759724985611859010' }, - { file: 'scripts/perf-test-flamegrill/src/index.ts', hash: '11035012132823640935' }, - { file: 'scripts/perf-test-flamegrill/src/load-scenarios.ts', hash: '7976963383113325782' }, - { file: 'scripts/perf-test-flamegrill/src/renderer.tsx', hash: '12543503922466542873' }, - { file: 'scripts/perf-test-flamegrill/src/types.ts', hash: '16361176486131323805' }, - { file: 'scripts/perf-test-flamegrill/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/perf-test-flamegrill/tsconfig.lib.json', hash: '14190301940653848041' }, - { file: 'scripts/perf-test-flamegrill/tsconfig.spec.json', hash: '11895456033159184725' }, - ], - '@fluentui/react-card': [ - { file: 'packages/react-components/react-card/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-card/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-card/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-card/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-card/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-card/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-card/CHANGELOG.json', hash: '16120836240991081328' }, - { file: 'packages/react-components/react-card/CHANGELOG.md', hash: '982678929693669752' }, - { file: 'packages/react-components/react-card/LICENSE', hash: '2188560866401644945' }, - { file: 'packages/react-components/react-card/README.md', hash: '11877879705104426476' }, - { file: 'packages/react-components/react-card/bundle-size/Card.All.fixture.js', hash: '9678671079204535147' }, - { file: 'packages/react-components/react-card/bundle-size/Card.fixture.js', hash: '17044429561188065558' }, - { file: 'packages/react-components/react-card/bundle-size/CardFooter.fixture.js', hash: '15097452954087720794' }, - { file: 'packages/react-components/react-card/bundle-size/CardHeader.fixture.js', hash: '9372357943462304670' }, - { file: 'packages/react-components/react-card/bundle-size/CardPreview.fixture.js', hash: '2766458474759225677' }, - { file: 'packages/react-components/react-card/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-card/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-card/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-card/docs/Spec.md', hash: '133649701608289193' }, - { file: 'packages/react-components/react-card/docs/assets/Card.png', hash: '8621537168628927824' }, - { file: 'packages/react-components/react-card/docs/assets/CardHeader.png', hash: '14490283695070957660' }, - { file: 'packages/react-components/react-card/docs/assets/CardPreview.png', hash: '1838343721682392559' }, - { file: 'packages/react-components/react-card/docs/assets/ai_deck_template.png', hash: '7288944920457398910' }, - { file: 'packages/react-components/react-card/docs/assets/avatar_mauricio.svg', hash: '798618793155809767' }, - { file: 'packages/react-components/react-card/docs/assets/card-example.png', hash: '16213957152649995111' }, - { - file: 'packages/react-components/react-card/docs/assets/context-interaction-keyboard.png', - hash: '16120849394699770653', - }, - { - file: 'packages/react-components/react-card/docs/assets/context-interaction-mouse.png', - hash: '17968123321031789650', - }, - { file: 'packages/react-components/react-card/docs/assets/context-narrator.png', hash: '12645539401046132098' }, - { file: 'packages/react-components/react-card/docs/assets/disabled-narrator.png', hash: '2566029565229306184' }, - { file: 'packages/react-components/react-card/docs/assets/disabled.png', hash: '826913629030223189' }, - { file: 'packages/react-components/react-card/docs/assets/intelligence.png', hash: '8986692323019308027' }, - { - file: 'packages/react-components/react-card/docs/assets/interactive-example.png', - hash: '16139223062879931574', - }, - { - file: 'packages/react-components/react-card/docs/assets/interactive-interaction-keyboard.png', - hash: '15639838958589057587', - }, - { - file: 'packages/react-components/react-card/docs/assets/interactive-interaction-mouse.png', - hash: '13603809071411899987', - }, - { - file: 'packages/react-components/react-card/docs/assets/interactive-narrator.png', - hash: '8045885383518893015', - }, - { - file: 'packages/react-components/react-card/docs/assets/non-interactive-interaction-keyboard.png', - hash: '7324405548581008515', - }, - { - file: 'packages/react-components/react-card/docs/assets/non-interactive-interaction-mouse.png', - hash: '14389441996799242835', - }, - { - file: 'packages/react-components/react-card/docs/assets/non-interactive-narrator.png', - hash: '18012095954511675112', - }, - { - file: 'packages/react-components/react-card/docs/assets/non-interactive-selectable-interaction-keyboard.png', - hash: '12221987790543441657', - }, - { - file: 'packages/react-components/react-card/docs/assets/non-interactive-selectable-interaction-mouse.png', - hash: '8943180528124548767', - }, - { - file: 'packages/react-components/react-card/docs/assets/selectable-interaction-keyboard.png', - hash: '3413035361011770976', - }, - { - file: 'packages/react-components/react-card/docs/assets/selectable-interaction-mouse.png', - hash: '13723554415792087034', - }, - { - file: 'packages/react-components/react-card/docs/assets/selectable-narrator.png', - hash: '17363651610905279991', - }, - { file: 'packages/react-components/react-card/etc/react-card.api.md', hash: '10685004744171166720' }, - { file: 'packages/react-components/react-card/jest.config.js', hash: '1186570427670545163' }, - { file: 'packages/react-components/react-card/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-card/package.json', - hash: '1922847737090488424', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance-griffel', - '@fluentui/react-conformance', - '@fluentui/react-button', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-card/project.json', hash: '3792275988646366268' }, - { file: 'packages/react-components/react-card/src/Card.ts', hash: '18296053792853651864' }, - { file: 'packages/react-components/react-card/src/CardFooter.ts', hash: '7561174730803302695' }, - { file: 'packages/react-components/react-card/src/CardHeader.ts', hash: '11488685953149160992' }, - { file: 'packages/react-components/react-card/src/CardPreview.ts', hash: '13744048761580656089' }, - { file: 'packages/react-components/react-card/src/components/Card/Card.cy.tsx', hash: '2105453024913473649' }, - { file: 'packages/react-components/react-card/src/components/Card/Card.test.tsx', hash: '553476840907813350' }, - { file: 'packages/react-components/react-card/src/components/Card/Card.tsx', hash: '7076191578603293422' }, - { file: 'packages/react-components/react-card/src/components/Card/Card.types.ts', hash: '9093785096818348353' }, - { file: 'packages/react-components/react-card/src/components/Card/CardContext.ts', hash: '5313906443440265390' }, - { - file: 'packages/react-components/react-card/src/components/Card/__snapshots__/Card.test.tsx.snap', - hash: '10908852138267868471', - }, - { file: 'packages/react-components/react-card/src/components/Card/index.ts', hash: '4412053949287446293' }, - { file: 'packages/react-components/react-card/src/components/Card/renderCard.tsx', hash: '1433067605483476608' }, - { file: 'packages/react-components/react-card/src/components/Card/useCard.ts', hash: '7381777414402087275' }, - { - file: 'packages/react-components/react-card/src/components/Card/useCardContextValue.ts', - hash: '11473343537526781780', - }, - { - file: 'packages/react-components/react-card/src/components/Card/useCardSelectable.ts', - hash: '4499997916310000329', - }, - { - file: 'packages/react-components/react-card/src/components/Card/useCardStyles.styles.ts', - hash: '3260247311744362996', - }, - { - file: 'packages/react-components/react-card/src/components/CardFooter/CardFooter.test.tsx', - hash: '7622635874606375345', - }, - { - file: 'packages/react-components/react-card/src/components/CardFooter/CardFooter.tsx', - hash: '7889064387052454866', - }, - { - file: 'packages/react-components/react-card/src/components/CardFooter/CardFooter.types.ts', - hash: '15847435805993234907', - }, - { - file: 'packages/react-components/react-card/src/components/CardFooter/__snapshots__/CardFooter.test.tsx.snap', - hash: '13290122802036257097', - }, - { file: 'packages/react-components/react-card/src/components/CardFooter/index.ts', hash: '17558814753364081460' }, - { - file: 'packages/react-components/react-card/src/components/CardFooter/renderCardFooter.tsx', - hash: '9307070283238530438', - }, - { - file: 'packages/react-components/react-card/src/components/CardFooter/useCardFooter.ts', - hash: '2145180249134842105', - }, - { - file: 'packages/react-components/react-card/src/components/CardFooter/useCardFooterStyles.styles.ts', - hash: '1083821341387929360', - }, - { - file: 'packages/react-components/react-card/src/components/CardHeader/CardHeader.test.tsx', - hash: '14165954293035533075', - }, - { - file: 'packages/react-components/react-card/src/components/CardHeader/CardHeader.tsx', - hash: '4181728876463672231', - }, - { - file: 'packages/react-components/react-card/src/components/CardHeader/CardHeader.types.ts', - hash: '6184633634019281557', - }, - { - file: 'packages/react-components/react-card/src/components/CardHeader/__snapshots__/CardHeader.test.tsx.snap', - hash: '7156722307139223011', - }, - { file: 'packages/react-components/react-card/src/components/CardHeader/index.ts', hash: '16584665457828373794' }, - { - file: 'packages/react-components/react-card/src/components/CardHeader/renderCardHeader.tsx', - hash: '1737812013511382678', - }, - { - file: 'packages/react-components/react-card/src/components/CardHeader/useCardHeader.ts', - hash: '10695894625791794917', - }, - { - file: 'packages/react-components/react-card/src/components/CardHeader/useCardHeaderStyles.styles.ts', - hash: '4022899973834377131', - }, - { - file: 'packages/react-components/react-card/src/components/CardPreview/CardPreview.test.tsx', - hash: '951239204372092264', - }, - { - file: 'packages/react-components/react-card/src/components/CardPreview/CardPreview.tsx', - hash: '14878782731745105216', - }, - { - file: 'packages/react-components/react-card/src/components/CardPreview/CardPreview.types.ts', - hash: '14504123763327617675', - }, - { - file: 'packages/react-components/react-card/src/components/CardPreview/__snapshots__/CardPreview.test.tsx.snap', - hash: '8716685275269430990', - }, - { file: 'packages/react-components/react-card/src/components/CardPreview/index.ts', hash: '3007392998775828301' }, - { - file: 'packages/react-components/react-card/src/components/CardPreview/renderCardPreview.tsx', - hash: '14553561723104936319', - }, - { - file: 'packages/react-components/react-card/src/components/CardPreview/useCardPreview.ts', - hash: '4307043996778361696', - }, - { - file: 'packages/react-components/react-card/src/components/CardPreview/useCardPreviewStyles.styles.ts', - hash: '11199041551264682609', - }, - { file: 'packages/react-components/react-card/src/index.ts', hash: '15466602958638333138' }, - { file: 'packages/react-components/react-card/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-card/stories/Card/CardAppearance.stories.tsx', - hash: '5604951275060761597', - }, - { file: 'packages/react-components/react-card/stories/Card/CardBestPractices.md', hash: '9308224653380770229' }, - { - file: 'packages/react-components/react-card/stories/Card/CardDefault.stories.tsx', - hash: '12855457768309390333', - }, - { file: 'packages/react-components/react-card/stories/Card/CardDescription.md', hash: '3049495499082503502' }, - { - file: 'packages/react-components/react-card/stories/Card/CardFocusMode.stories.tsx', - hash: '13084607985882534580', - }, - { - file: 'packages/react-components/react-card/stories/Card/CardOrientation.stories.tsx', - hash: '4533715330779289813', - }, - { - file: 'packages/react-components/react-card/stories/Card/CardSelectable.stories.tsx', - hash: '8302053683602571951', - }, - { - file: 'packages/react-components/react-card/stories/Card/CardSelectableIndicator.stories.tsx', - hash: '18084073634622817532', - }, - { file: 'packages/react-components/react-card/stories/Card/CardSize.stories.tsx', hash: '16436840345511589357' }, - { - file: 'packages/react-components/react-card/stories/Card/CardTemplates.stories.tsx', - hash: '987134944539571023', - }, - { file: 'packages/react-components/react-card/stories/Card/index.stories.tsx', hash: '8678212714962414506' }, - { - file: 'packages/react-components/react-card/stories/CardFooter/CardFooterDefault.stories.tsx', - hash: '10194971669813246487', - }, - { - file: 'packages/react-components/react-card/stories/CardFooter/CardFooterDescription.md', - hash: '17958053600000174792', - }, - { - file: 'packages/react-components/react-card/stories/CardFooter/index.stories.tsx', - hash: '15149208140262958802', - }, - { - file: 'packages/react-components/react-card/stories/CardHeader/CardHeaderDefault.stories.tsx', - hash: '7030182012670348854', - }, - { - file: 'packages/react-components/react-card/stories/CardHeader/CardHeaderDescription.md', - hash: '278184689441639698', - }, - { - file: 'packages/react-components/react-card/stories/CardHeader/index.stories.tsx', - hash: '17193498931451041088', - }, - { - file: 'packages/react-components/react-card/stories/CardPreview/CardPreviewDefault.stories.tsx', - hash: '14549936026171874196', - }, - { - file: 'packages/react-components/react-card/stories/CardPreview/CardPreviewDescription.md', - hash: '8805484546756020533', - }, - { - file: 'packages/react-components/react-card/stories/CardPreview/index.stories.tsx', - hash: '6381064104818270081', - }, - { file: 'packages/react-components/react-card/stories/assets/app_logo.svg', hash: '1145867221942749854' }, - { file: 'packages/react-components/react-card/stories/assets/avatar_colin.svg', hash: '13980132709968424389' }, - { file: 'packages/react-components/react-card/stories/assets/avatar_elvia.svg', hash: '12306115599923301814' }, - { file: 'packages/react-components/react-card/stories/assets/doc_template.png', hash: '16781486718899349419' }, - { file: 'packages/react-components/react-card/stories/assets/docx.png', hash: '12646787685627878886' }, - { file: 'packages/react-components/react-card/stories/assets/intelligence.png', hash: '8986692323019308027' }, - { file: 'packages/react-components/react-card/stories/assets/logo.svg', hash: '16479129341081339952' }, - { file: 'packages/react-components/react-card/stories/assets/logo2.svg', hash: '15824796547274656557' }, - { file: 'packages/react-components/react-card/stories/assets/logo3.svg', hash: '8392637098591831239' }, - { file: 'packages/react-components/react-card/stories/assets/office1.png', hash: '13326536504039238663' }, - { file: 'packages/react-components/react-card/stories/assets/office2.png', hash: '4573548322140247346' }, - { file: 'packages/react-components/react-card/stories/assets/pptx.png', hash: '3265152117027098916' }, - { file: 'packages/react-components/react-card/stories/assets/sales_template.png', hash: '10998262158388512370' }, - { file: 'packages/react-components/react-card/stories/assets/xlsx.png', hash: '5592114303427511673' }, - { file: 'packages/react-components/react-card/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-card/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-card/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-card/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/scripts-update-release-notes': [ - { file: 'scripts/update-release-notes/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/update-release-notes/changelogsAndTags.ts', hash: '9695448628784925143' }, - { file: 'scripts/update-release-notes/index.ts', hash: '4586362800451860761' }, - { file: 'scripts/update-release-notes/init.ts', hash: '7376748252051231026' }, - { file: 'scripts/update-release-notes/jest.config.js', hash: '14450656967466977753' }, - { file: 'scripts/update-release-notes/markdown.ts', hash: '2689630508375349858' }, - { - file: 'scripts/update-release-notes/package.json', - hash: '10460076229097447114', - deps: ['@fluentui/scripts-github'], - }, - { file: 'scripts/update-release-notes/project.json', hash: '14473144405799169564' }, - { file: 'scripts/update-release-notes/pullRequests.ts', hash: '13578436414946334968' }, - { file: 'scripts/update-release-notes/releases.ts', hash: '5175589060836789611' }, - { file: 'scripts/update-release-notes/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/update-release-notes/tsconfig.lib.json', hash: '3753806828268919288' }, - { file: 'scripts/update-release-notes/tsconfig.spec.json', hash: '16242416785763058919' }, - { file: 'scripts/update-release-notes/types.ts', hash: '2247159842994839983' }, - ], - '@fluentui/font-icons-mdl2': [ - { file: 'packages/font-icons-mdl2/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/font-icons-mdl2/.npmignore', hash: '47056201363133096' }, - { file: 'packages/font-icons-mdl2/CHANGELOG.json', hash: '6596473413517250674' }, - { file: 'packages/font-icons-mdl2/CHANGELOG.md', hash: '11813262917588591655' }, - { file: 'packages/font-icons-mdl2/LICENSE', hash: '12908007654657131543' }, - { file: 'packages/font-icons-mdl2/README.md', hash: '1942754853377387705' }, - { file: 'packages/font-icons-mdl2/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-0.json', hash: '7706377881449390395' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-1.json', hash: '12994875537715451137' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-10.json', hash: '2815620732732830195' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-11.json', hash: '7236241969158321736' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-12.json', hash: '9678062810318118885' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-13.json', hash: '5156040440638150948' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-14.json', hash: '13039891500113351097' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-15.json', hash: '8801652855336313148' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-16.json', hash: '15516953590367115156' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-17.json', hash: '13589667259558619548' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-2.json', hash: '7875540344301974216' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-3.json', hash: '16077858637040139431' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-4.json', hash: '2841366491057342586' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-5.json', hash: '2556643830595083093' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-6.json', hash: '15068278795867487161' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-7.json', hash: '9212439579894632972' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-8.json', hash: '2080398174427644166' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons-9.json', hash: '4759858566820518147' }, - { file: 'packages/font-icons-mdl2/config/fabric-icons.json', hash: '6963775744796371758' }, - { file: 'packages/font-icons-mdl2/config/pre-copy.json', hash: '7054591292658078092' }, - { file: 'packages/font-icons-mdl2/etc/font-icons-mdl2.api.md', hash: '1040272583929107432' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-0-467ee27f.woff', hash: '9727409240084950456' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-1-4d521695.woff', hash: '11782482911719233328' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-10-c4ded8e4.woff', hash: '8683213800300962823' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-11-2a8393d6.woff', hash: '4800192945444416049' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-12-7e945a1e.woff', hash: '7152385435025376386' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-13-c3989a02.woff', hash: '15826418001211840958' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-14-5cf58db8.woff', hash: '1568575544080586197' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-15-3807251b.woff', hash: '6679690953050194640' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-16-9cf93f3b.woff', hash: '10385869052298718372' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-17-0c4ed701.woff', hash: '9879264519512726611' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-2-63c99abf.woff', hash: '4248354025373691406' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-3-089e217a.woff', hash: '10079215862186498571' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-4-a656cc0a.woff', hash: '763904542900725867' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-5-f95ba260.woff', hash: '12283581664107513526' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-6-ef6fd590.woff', hash: '6636588578906150594' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-7-2b97bb99.woff', hash: '1562652165603914188' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-8-6fdf1528.woff', hash: '10760299555913719264' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-9-c6162b42.woff', hash: '11880077812956966882' }, - { file: 'packages/font-icons-mdl2/fonts/fabric-icons-a13498cf.woff', hash: '9094530928610613666' }, - { file: 'packages/font-icons-mdl2/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/font-icons-mdl2/package.json', - hash: '6766348593423021237', - deps: [ - '@fluentui/set-version', - '@fluentui/style-utilities', - '@fluentui/utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/font-icons-mdl2/project.json', hash: '16347449220567014521' }, - { file: 'packages/font-icons-mdl2/src/IconNames.ts', hash: '15040646129596948898' }, - { file: 'packages/font-icons-mdl2/src/data/AllIconNames.json', hash: '255000302489916290' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-0.ts', hash: '8915246145745466284' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-1.ts', hash: '8405252460772238398' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-10.ts', hash: '13454595347227280180' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-11.ts', hash: '3846349522741700547' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-12.ts', hash: '14919245803957946133' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-13.ts', hash: '13421949462798247163' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-14.ts', hash: '11651766092006487866' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-15.ts', hash: '5913067749739754889' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-16.ts', hash: '1938273561721658506' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-17.ts', hash: '16745157463180821700' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-2.ts', hash: '8089041981968012677' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-3.ts', hash: '15666268342868477210' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-4.ts', hash: '7141991849238464261' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-5.ts', hash: '17978308980500404278' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-6.ts', hash: '4598385603964478011' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-7.ts', hash: '7191688199835628637' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-8.ts', hash: '15977938474733404181' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons-9.ts', hash: '4640504316025068722' }, - { file: 'packages/font-icons-mdl2/src/fabric-icons.ts', hash: '16136330814992617156' }, - { file: 'packages/font-icons-mdl2/src/iconAliases.ts', hash: '14099067786273144772' }, - { file: 'packages/font-icons-mdl2/src/iconNames.test.ts', hash: '1735850012565977488' }, - { file: 'packages/font-icons-mdl2/src/index.ts', hash: '18182222310833360328' }, - { file: 'packages/font-icons-mdl2/src/version.ts', hash: '2559425555783107307' }, - { file: 'packages/font-icons-mdl2/tsconfig.json', hash: '279610058387507708' }, - ], - '@fluentui/react-avatar': [ - { file: 'packages/react-components/react-avatar/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-avatar/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-avatar/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-avatar/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-avatar/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-avatar/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-avatar/CHANGELOG.json', hash: '17359224246229139817' }, - { file: 'packages/react-components/react-avatar/CHANGELOG.md', hash: '13775367118916418634' }, - { file: 'packages/react-components/react-avatar/LICENSE', hash: '1561472303802842351' }, - { file: 'packages/react-components/react-avatar/README-AvatarGroup.md', hash: '6635177105173945453' }, - { file: 'packages/react-components/react-avatar/README.md', hash: '3417364935367193895' }, - { file: 'packages/react-components/react-avatar/bundle-size/Avatar.fixture.js', hash: '5791018364621035780' }, - { - file: 'packages/react-components/react-avatar/bundle-size/AvatarGroup.fixture.js', - hash: '2351286029785799155', - }, - { - file: 'packages/react-components/react-avatar/bundle-size/AvatarGroupItem.fixture.js', - hash: '2729519475190533563', - }, - { file: 'packages/react-components/react-avatar/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-avatar/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-avatar/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-avatar/docs/MIGRATION.md', hash: '3195958884814768437' }, - { file: 'packages/react-components/react-avatar/docs/SPEC-AvatarGroup.md', hash: '11426133715399943569' }, - { file: 'packages/react-components/react-avatar/docs/SPEC.md', hash: '4287805402968502679' }, - { file: 'packages/react-components/react-avatar/etc/react-avatar.api.md', hash: '17662099340512427639' }, - { file: 'packages/react-components/react-avatar/jest.config.js', hash: '6376176729770622848' }, - { file: 'packages/react-components/react-avatar/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-avatar/package.json', - hash: '8265612536199943469', - deps: [ - '@fluentui/react-badge', - '@fluentui/react-context-selector', - 'npm:@fluentui/react-icons', - '@fluentui/react-popover', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-tooltip', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - 'npm:es6-weak-map', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-avatar/project.json', hash: '15962836208333366159' }, - { file: 'packages/react-components/react-avatar/src/Avatar.ts', hash: '7635867096605850206' }, - { file: 'packages/react-components/react-avatar/src/AvatarGroup.ts', hash: '6984127121712003934' }, - { file: 'packages/react-components/react-avatar/src/AvatarGroupItem.ts', hash: '9295176073013264238' }, - { file: 'packages/react-components/react-avatar/src/AvatarGroupPopover.ts', hash: '10828507195645538418' }, - { - file: 'packages/react-components/react-avatar/src/components/Avatar/Avatar.test.tsx', - hash: '3799793463774131037', - }, - { file: 'packages/react-components/react-avatar/src/components/Avatar/Avatar.tsx', hash: '4286195710387072464' }, - { - file: 'packages/react-components/react-avatar/src/components/Avatar/Avatar.types.ts', - hash: '3502910881682367236', - }, - { file: 'packages/react-components/react-avatar/src/components/Avatar/index.ts', hash: '1955269048664210261' }, - { - file: 'packages/react-components/react-avatar/src/components/Avatar/renderAvatar.tsx', - hash: '17085450580548719997', - }, - { - file: 'packages/react-components/react-avatar/src/components/Avatar/useAvatar.tsx', - hash: '17265171031077561605', - }, - { - file: 'packages/react-components/react-avatar/src/components/Avatar/useAvatarStyles.styles.ts', - hash: '9237444740068646329', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.cy.tsx', - hash: '9396486021626927639', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.test.tsx', - hash: '667562290854564595', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.tsx', - hash: '12574745185973390309', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/AvatarGroup.types.ts', - hash: '11445543023522684177', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/index.ts', - hash: '8395078397697710402', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/renderAvatarGroup.tsx', - hash: '906681850248904049', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroup.tsx', - hash: '9748744777328738202', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroupContextValues.ts', - hash: '7762097512239166845', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroup/useAvatarGroupStyles.styles.ts', - hash: '14767535204413912450', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.test.tsx', - hash: '10693309452718169000', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.tsx', - hash: '7048541463080468607', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/AvatarGroupItem.types.ts', - hash: '13088512575982029284', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/index.ts', - hash: '282603665069963077', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/renderAvatarGroupItem.tsx', - hash: '14044015495498541840', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItem.ts', - hash: '6698825707962161686', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupItem/useAvatarGroupItemStyles.styles.ts', - hash: '51869593395452064', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.test.tsx', - hash: '3568582866102004130', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.tsx', - hash: '17770210227374180685', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/AvatarGroupPopover.types.ts', - hash: '16101743792578847966', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/index.ts', - hash: '16771975726213604396', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/renderAvatarGroupPopover.tsx', - hash: '10757030829615508783', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopover.tsx', - hash: '2555256022131750635', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopoverContextValues.ts', - hash: '6728840970785876253', - }, - { - file: 'packages/react-components/react-avatar/src/components/AvatarGroupPopover/useAvatarGroupPopoverStyles.styles.ts', - hash: '11153103963870430610', - }, - { file: 'packages/react-components/react-avatar/src/contexts/AvatarContext.ts', hash: '590498634812227243' }, - { - file: 'packages/react-components/react-avatar/src/contexts/AvatarGroupContext.ts', - hash: '6848247087059396651', - }, - { file: 'packages/react-components/react-avatar/src/contexts/index.ts', hash: '2367898825323850098' }, - { file: 'packages/react-components/react-avatar/src/index.ts', hash: '17396567248118398568' }, - { file: 'packages/react-components/react-avatar/src/testing/isConformant.ts', hash: '14447437808059758114' }, - { file: 'packages/react-components/react-avatar/src/utils/getInitials.test.ts', hash: '1680373439266347581' }, - { file: 'packages/react-components/react-avatar/src/utils/getInitials.ts', hash: '8327067548509255430' }, - { file: 'packages/react-components/react-avatar/src/utils/index.ts', hash: '12640729207052328910' }, - { - file: 'packages/react-components/react-avatar/src/utils/partitionAvatarGroupItems.test.ts', - hash: '9020780588609051149', - }, - { - file: 'packages/react-components/react-avatar/src/utils/partitionAvatarGroupItems.ts', - hash: '543320327366877998', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarActive.stories.tsx', - hash: '11500606915849458094', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarActiveAppearance.stories.tsx', - hash: '6182092775061915836', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarBadge.stories.tsx', - hash: '11737232360515773548', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarBadgeIcon.stories.tsx', - hash: '8242903931583202526', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarColorBrand.stories.tsx', - hash: '18386464499879542692', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarColorColorful.stories.tsx', - hash: '1485807022761171712', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarColorPalette.stories.tsx', - hash: '3082620768392145900', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarDefault.stories.tsx', - hash: '879195072404448224', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarDescription.md', - hash: '13383169207186333246', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarIcon.stories.tsx', - hash: '5602542620961988143', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarImage.stories.tsx', - hash: '18370734978373805725', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarInitials.stories.tsx', - hash: '6358033680498150005', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarName.stories.tsx', - hash: '8073892423041068966', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarSize.stories.tsx', - hash: '16769822324005143226', - }, - { - file: 'packages/react-components/react-avatar/stories/Avatar/AvatarSquare.stories.tsx', - hash: '10756829190493281080', - }, - { file: 'packages/react-components/react-avatar/stories/Avatar/index.stories.tsx', hash: '14429406280611309106' }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupBestPractices.md', - hash: '2259983816839514735', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupDefault.stories.tsx', - hash: '18379733445475677697', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupDescription.md', - hash: '5437435466472005639', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupIndicator.stories.tsx', - hash: '17517750698648452574', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupLayout.stories.tsx', - hash: '16809663284413994087', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizePie.stories.tsx', - hash: '4328408042847102333', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizeSpread.stories.tsx', - hash: '15556124444323653952', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupSizeStack.stories.tsx', - hash: '17922874870636889465', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/AvatarGroupTooltip.stories.tsx', - hash: '10320557607960243438', - }, - { - file: 'packages/react-components/react-avatar/stories/AvatarGroup/index.stories.tsx', - hash: '8538042635878276171', - }, - { file: 'packages/react-components/react-avatar/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-avatar/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-avatar/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-avatar/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-18-tests-v9': [ - { file: 'apps/react-18-tests-v9/.eslintrc.json', hash: '273467718057503654' }, - { file: 'apps/react-18-tests-v9/README.md', hash: '15038214804025114768' }, - { file: 'apps/react-18-tests-v9/config/tests.js', hash: '14010006175392234982' }, - { file: 'apps/react-18-tests-v9/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'apps/react-18-tests-v9/jest.config.js', hash: '1432362935093989965' }, - { file: 'apps/react-18-tests-v9/just.config.ts', hash: '10393370776333958822' }, - { - file: 'apps/react-18-tests-v9/package.json', - hash: '1062290610976451640', - deps: [ - '@fluentui/react-components', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - ], - }, - { file: 'apps/react-18-tests-v9/project.json', hash: '11399828626299105622' }, - { file: 'apps/react-18-tests-v9/src/App.cy.tsx', hash: '11549801901057863626' }, - { file: 'apps/react-18-tests-v9/src/App.test.tsx', hash: '2670902714833840717' }, - { file: 'apps/react-18-tests-v9/src/App.tsx', hash: '7525441005714447901' }, - { file: 'apps/react-18-tests-v9/src/Portal.cy.tsx', hash: '4580707977750569950' }, - { file: 'apps/react-18-tests-v9/src/components/.gitkeep', hash: '3244421341483603138' }, - { file: 'apps/react-18-tests-v9/src/index.tsx', hash: '2918296648402810869' }, - { file: 'apps/react-18-tests-v9/tsconfig.app.json', hash: '7764918925105932542' }, - { file: 'apps/react-18-tests-v9/tsconfig.cy.json', hash: '4669440979528425638' }, - { file: 'apps/react-18-tests-v9/tsconfig.json', hash: '15327827180026486345' }, - { file: 'apps/react-18-tests-v9/tsconfig.react-compat-check.json', hash: '5090552958223827867' }, - { file: 'apps/react-18-tests-v9/tsconfig.spec.json', hash: '13287603543641469083' }, - { file: 'apps/react-18-tests-v9/webpack.config.js', hash: '6286313998835058704' }, - ], - '@fluentui/react-toast': [ - { file: 'packages/react-components/react-toast/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-toast/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-toast/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-toast/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-toast/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-toast/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-toast/CHANGELOG.json', hash: '10682980803074083997' }, - { file: 'packages/react-components/react-toast/CHANGELOG.md', hash: '81747637200741746' }, - { file: 'packages/react-components/react-toast/LICENSE', hash: '16949844902912624644' }, - { file: 'packages/react-components/react-toast/README.md', hash: '5200240906534650137' }, - { file: 'packages/react-components/react-toast/bundle-size/Toast.fixture.js', hash: '6560991872473022341' }, - { file: 'packages/react-components/react-toast/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-toast/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-toast/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-toast/docs/Spec.md', hash: '5531735670500748841' }, - { file: 'packages/react-components/react-toast/etc/react-toast.api.md', hash: '17225121659189868810' }, - { file: 'packages/react-components/react-toast/jest.config.js', hash: '15944780785972716927' }, - { file: 'packages/react-components/react-toast/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-toast/package.json', - hash: '9896839657513933603', - deps: [ - 'npm:react-transition-group', - '@fluentui/keyboard-keys', - '@fluentui/react-aria', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-portal', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-toast/project.json', hash: '13521513962168744879' }, - { file: 'packages/react-components/react-toast/src/AriaLive.ts', hash: '5934469984273040875' }, - { file: 'packages/react-components/react-toast/src/Toast.ts', hash: '15307374811813973691' }, - { file: 'packages/react-components/react-toast/src/ToastBody.ts', hash: '14018551671824986687' }, - { file: 'packages/react-components/react-toast/src/ToastContainer.ts', hash: '4549595851046325076' }, - { file: 'packages/react-components/react-toast/src/ToastFooter.ts', hash: '3447343814030086069' }, - { file: 'packages/react-components/react-toast/src/ToastTitle.ts', hash: '18222299034471560017' }, - { file: 'packages/react-components/react-toast/src/ToastTrigger.ts', hash: '17586437167278520860' }, - { file: 'packages/react-components/react-toast/src/Toaster.ts', hash: '14175431586628349058' }, - { - file: 'packages/react-components/react-toast/src/components/AriaLive/AriaLive.test.tsx', - hash: '6442107386395292215', - }, - { - file: 'packages/react-components/react-toast/src/components/AriaLive/AriaLive.tsx', - hash: '10793716600399358394', - }, - { - file: 'packages/react-components/react-toast/src/components/AriaLive/AriaLive.types.ts', - hash: '1840525305665705621', - }, - { - file: 'packages/react-components/react-toast/src/components/AriaLive/__snapshots__/AriaLive.test.tsx.snap', - hash: '9299768569933835789', - }, - { file: 'packages/react-components/react-toast/src/components/AriaLive/index.ts', hash: '10741602548266810528' }, - { - file: 'packages/react-components/react-toast/src/components/AriaLive/renderAriaLive.tsx', - hash: '804859745476151280', - }, - { - file: 'packages/react-components/react-toast/src/components/AriaLive/useAriaLive.ts', - hash: '9086600559679733817', - }, - { - file: 'packages/react-components/react-toast/src/components/AriaLive/useAriaLiveStyles.styles.ts', - hash: '3048096877751050924', - }, - { file: 'packages/react-components/react-toast/src/components/Timer/Timer.tsx', hash: '13074196879071224508' }, - { file: 'packages/react-components/react-toast/src/components/Timer/index.ts', hash: '11991616074639956962' }, - { - file: 'packages/react-components/react-toast/src/components/Timer/useTimerStyles.styles.ts', - hash: '3655775969916230892', - }, - { file: 'packages/react-components/react-toast/src/components/Toast/Toast.cy.tsx', hash: '2288544208526258981' }, - { - file: 'packages/react-components/react-toast/src/components/Toast/Toast.test.tsx', - hash: '7287555393203087881', - }, - { file: 'packages/react-components/react-toast/src/components/Toast/Toast.tsx', hash: '2224711623959003139' }, - { - file: 'packages/react-components/react-toast/src/components/Toast/Toast.types.ts', - hash: '4125010440475230441', - }, - { - file: 'packages/react-components/react-toast/src/components/Toast/__snapshots__/Toast.test.tsx.snap', - hash: '17132507511060694009', - }, - { file: 'packages/react-components/react-toast/src/components/Toast/index.ts', hash: '9618109493875621933' }, - { - file: 'packages/react-components/react-toast/src/components/Toast/renderToast.tsx', - hash: '10720877630875372757', - }, - { file: 'packages/react-components/react-toast/src/components/Toast/useToast.ts', hash: '14393623992813194661' }, - { - file: 'packages/react-components/react-toast/src/components/Toast/useToastContextValues.ts', - hash: '17198227334991763932', - }, - { - file: 'packages/react-components/react-toast/src/components/Toast/useToastStyles.styles.ts', - hash: '5557503513257771403', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastBody/ToastBody.test.tsx', - hash: '4615164798964869091', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastBody/ToastBody.tsx', - hash: '16250573446787171280', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastBody/ToastBody.types.ts', - hash: '13920834813969313152', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastBody/__snapshots__/ToastBody.test.tsx.snap', - hash: '12684431859116950296', - }, - { file: 'packages/react-components/react-toast/src/components/ToastBody/index.ts', hash: '5968957915263728965' }, - { - file: 'packages/react-components/react-toast/src/components/ToastBody/renderToastBody.tsx', - hash: '17351686009722435973', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastBody/useToastBody.ts', - hash: '13885753874205757551', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastBody/useToastBodyStyles.styles.ts', - hash: '16206700759378001578', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.test.tsx', - hash: '13901012506742295174', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.tsx', - hash: '8153427315959101768', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/ToastContainer.types.ts', - hash: '11863328464789215239', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/__snapshots__/ToastContainer.test.tsx.snap', - hash: '8668649856276633305', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/index.ts', - hash: '11995343187778965101', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/renderToastContainer.tsx', - hash: '502309263840540420', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/useToastContainer.ts', - hash: '4141911229094274827', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/useToastContainerContextValues.ts', - hash: '2939155370336925438', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastContainer/useToastContainerStyles.styles.ts', - hash: '13104713389251292492', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.test.tsx', - hash: '11424619225162201801', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.tsx', - hash: '14593751910312704304', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastFooter/ToastFooter.types.ts', - hash: '16374988639865684493', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastFooter/__snapshots__/ToastFooter.test.tsx.snap', - hash: '11711970304670119990', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastFooter/index.ts', - hash: '8513825837838800870', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastFooter/renderToastFooter.tsx', - hash: '207596864359220555', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastFooter/useToastFooter.ts', - hash: '5228857853735293339', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastFooter/useToastFooterStyles.styles.ts', - hash: '10893633555471477285', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.test.tsx', - hash: '11441684459784269904', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.tsx', - hash: '14292430330710862628', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTitle/ToastTitle.types.ts', - hash: '11837561380110483063', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTitle/__snapshots__/ToastTitle.test.tsx.snap', - hash: '4821473578764279817', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTitle/index.ts', - hash: '18016065779722545690', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTitle/renderToastTitle.tsx', - hash: '1333420123859818252', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTitle/useToastTitle.tsx', - hash: '3210588607959161520', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTitle/useToastTitleStyles.styles.ts', - hash: '9426158279615934679', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.test.tsx', - hash: '5699776953831978713', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.tsx', - hash: '12726203067935754162', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTrigger/ToastTrigger.types.ts', - hash: '3842715180784819968', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTrigger/__snapshots__/ToastTrigger.test.tsx.snap', - hash: '7844219453060346860', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTrigger/index.ts', - hash: '12655493691993462210', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTrigger/renderToastTrigger.tsx', - hash: '9466096862869316156', - }, - { - file: 'packages/react-components/react-toast/src/components/ToastTrigger/useToastTrigger.ts', - hash: '14019618160278474734', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/Toaster.test.tsx', - hash: '12635356051816143342', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/Toaster.tsx', - hash: '11964445524095106184', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/Toaster.types.ts', - hash: '6892226576257011954', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/__snapshots__/Toaster.test.tsx.snap', - hash: '7319367689813891897', - }, - { file: 'packages/react-components/react-toast/src/components/Toaster/index.ts', hash: '13462024364787886895' }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/renderToaster.tsx', - hash: '9152323389222907502', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/useToastAnnounce.test.ts', - hash: '9116052771586688891', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/useToastAnnounce.ts', - hash: '14195815015884209829', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/useToaster.tsx', - hash: '7064899387464883541', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/useToasterFocusManagement.ts', - hash: '10371120963803549058', - }, - { - file: 'packages/react-components/react-toast/src/components/Toaster/useToasterStyles.styles.ts', - hash: '7051660454651767404', - }, - { - file: 'packages/react-components/react-toast/src/contexts/toastContainerContext.tsx', - hash: '15337355315856952234', - }, - { file: 'packages/react-components/react-toast/src/index.ts', hash: '6864147601055510200' }, - { file: 'packages/react-components/react-toast/src/state/constants.ts', hash: '4536377250461792080' }, - { file: 'packages/react-components/react-toast/src/state/index.ts', hash: '14875581869228627377' }, - { file: 'packages/react-components/react-toast/src/state/types.ts', hash: '11674482699256017506' }, - { - file: 'packages/react-components/react-toast/src/state/useToastController.test.ts', - hash: '423595520882331462', - }, - { file: 'packages/react-components/react-toast/src/state/useToastController.ts', hash: '14902116527194633878' }, - { file: 'packages/react-components/react-toast/src/state/useToaster.test.ts', hash: '15339475067759049682' }, - { file: 'packages/react-components/react-toast/src/state/useToaster.ts', hash: '4010526536948328405' }, - { - file: 'packages/react-components/react-toast/src/state/vanilla/createToaster.test.ts', - hash: '16596155413226223798', - }, - { file: 'packages/react-components/react-toast/src/state/vanilla/createToaster.ts', hash: '2152902961797097092' }, - { - file: 'packages/react-components/react-toast/src/state/vanilla/dismissAllToasts.ts', - hash: '15412166527852405711', - }, - { file: 'packages/react-components/react-toast/src/state/vanilla/dismissToast.ts', hash: '17045451126332775989' }, - { - file: 'packages/react-components/react-toast/src/state/vanilla/dispatchToast.ts', - hash: '14216726211594981683', - }, - { - file: 'packages/react-components/react-toast/src/state/vanilla/getPositionStyles.test.ts', - hash: '16064541192915922154', - }, - { - file: 'packages/react-components/react-toast/src/state/vanilla/getPositionStyles.ts', - hash: '5733826555173060559', - }, - { file: 'packages/react-components/react-toast/src/state/vanilla/index.ts', hash: '4917379822293467718' }, - { file: 'packages/react-components/react-toast/src/state/vanilla/pauseToast.ts', hash: '8244489699298786724' }, - { file: 'packages/react-components/react-toast/src/state/vanilla/playToast.ts', hash: '14560953344582947245' }, - { file: 'packages/react-components/react-toast/src/state/vanilla/updateToast.ts', hash: '8004308242007218224' }, - { file: 'packages/react-components/react-toast/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-toast/stories/Toast/CustomTimeout.stories.tsx', - hash: '16096607677990871710', - }, - { file: 'packages/react-components/react-toast/stories/Toast/Default.stories.tsx', hash: '1974781387464513603' }, - { - file: 'packages/react-components/react-toast/stories/Toast/DefaultToastOptions.stories.tsx', - hash: '8958973929668160517', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/DismissAll.stories.tsx', - hash: '2685894480482990937', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/DismissToast.stories.tsx', - hash: '8774218450743142683', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/DismissToastWithAction.stories.tsx', - hash: '8458792279487386337', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/FocusKeyboardShortcut.stories.tsx', - hash: '14074369499061671706', - }, - { file: 'packages/react-components/react-toast/stories/Toast/Inline.stories.tsx', hash: '17578441719614929430' }, - { file: 'packages/react-components/react-toast/stories/Toast/Intent.stories.tsx', hash: '1090435765951400454' }, - { - file: 'packages/react-components/react-toast/stories/Toast/InvertedAppearance.stories.tsx', - hash: '10760961140479438812', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/MultipleToasters.stories.tsx', - hash: '12056886636971994811', - }, - { file: 'packages/react-components/react-toast/stories/Toast/Offset.stories.tsx', hash: '8806183767015813092' }, - { - file: 'packages/react-components/react-toast/stories/Toast/PauseAndPlay.stories.tsx', - hash: '5162053943050726387', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/PauseOnHover.stories.tsx', - hash: '4073400650824333528', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/PauseOnWindowBlur.stories.tsx', - hash: '8548636225339869647', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/ProgressToast.stories.tsx', - hash: '13662336240826558606', - }, - { file: 'packages/react-components/react-toast/stories/Toast/ToastDescription.md', hash: '8747828005507942046' }, - { - file: 'packages/react-components/react-toast/stories/Toast/ToastLifecycle.stories.tsx', - hash: '1932874522668137805', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/ToastPositions.stories.tsx', - hash: '18410503127903303083', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/ToasterLimit.stories.tsx', - hash: '68893506097705199', - }, - { - file: 'packages/react-components/react-toast/stories/Toast/UpdateToast.stories.tsx', - hash: '14044906220579458655', - }, - { file: 'packages/react-components/react-toast/stories/Toast/index.stories.tsx', hash: '10239704938406017702' }, - { file: 'packages/react-components/react-toast/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-toast/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-toast/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-toast/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/theming-designer': [ - { file: 'apps/theming-designer/.eslintrc.json', hash: '15624877064293233006' }, - { file: 'apps/theming-designer/CHANGELOG.json', hash: '12291746697898346988' }, - { file: 'apps/theming-designer/CHANGELOG.md', hash: '2344453555304636804' }, - { file: 'apps/theming-designer/config/pre-copy.json', hash: '7137810373311645754' }, - { file: 'apps/theming-designer/index.html', hash: '8525451778566725428' }, - { file: 'apps/theming-designer/just.config.ts', hash: '10393370776333958822' }, - { - file: 'apps/theming-designer/package.json', - hash: '5895925697172101667', - deps: [ - '@fluentui/react', - '@fluentui/merge-styles', - '@fluentui/react-docsite-components', - '@fluentui/foundation-legacy', - '@fluentui/scheme-utilities', - '@fluentui/set-version', - '@fluentui/font-icons-mdl2', - 'npm:@microsoft/load-themed-styles', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'apps/theming-designer/project.json', hash: '9081308584738412223' }, - { file: 'apps/theming-designer/src/components/AccessibilityChecker.tsx', hash: '16506844564323751906' }, - { file: 'apps/theming-designer/src/components/AccessibilityDetailsList.tsx', hash: '5938047411396517048' }, - { file: 'apps/theming-designer/src/components/FabricPalette.tsx', hash: '9986798636782472459' }, - { file: 'apps/theming-designer/src/components/FabricSlotWidget.tsx', hash: '7010333939466710623' }, - { file: 'apps/theming-designer/src/components/Header.tsx', hash: '2142641914456137998' }, - { file: 'apps/theming-designer/src/components/Samples/index.tsx', hash: '7706638862259866271' }, - { file: 'apps/theming-designer/src/components/SemanticSlots.tsx', hash: '13534245869120806388' }, - { file: 'apps/theming-designer/src/components/SemanticSlotsDetailsList.tsx', hash: '8958989502641470533' }, - { file: 'apps/theming-designer/src/components/ThemeDesignerColorPicker.tsx', hash: '10551357834195680053' }, - { file: 'apps/theming-designer/src/components/ThemeSlots.tsx', hash: '6097271652755743157' }, - { file: 'apps/theming-designer/src/components/ThemingDesigner.tsx', hash: '11004141289564786969' }, - { file: 'apps/theming-designer/src/index.tsx', hash: '12575369939743920224' }, - { file: 'apps/theming-designer/src/shared/MainPanelStyles.tsx', hash: '4729267293215866647' }, - { file: 'apps/theming-designer/src/shared/Typography.tsx', hash: '15775203349013380082' }, - { file: 'apps/theming-designer/src/version.ts', hash: '17927131915821894877' }, - { file: 'apps/theming-designer/tsconfig.json', hash: '9192958159039358107' }, - { file: 'apps/theming-designer/webpack.config.js', hash: '8376152823140446600' }, - { file: 'apps/theming-designer/webpack.serve.config.js', hash: '5761943271931032973' }, - ], - '@fluentui/react-calendar-compat': [ - { file: 'packages/react-components/react-calendar-compat/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-calendar-compat/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-calendar-compat/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-calendar-compat/.storybook/preview.js', hash: '1791378012295456991' }, - { - file: 'packages/react-components/react-calendar-compat/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-calendar-compat/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-calendar-compat/CHANGELOG.json', hash: '7092211169174649637' }, - { file: 'packages/react-components/react-calendar-compat/CHANGELOG.md', hash: '2828901146932446647' }, - { file: 'packages/react-components/react-calendar-compat/LICENSE', hash: '8614029084732105219' }, - { file: 'packages/react-components/react-calendar-compat/README.md', hash: '4014635926778646785' }, - { - file: 'packages/react-components/react-calendar-compat/bundle-size/Calendar.fixture.js', - hash: '10845155123644884091', - }, - { file: 'packages/react-components/react-calendar-compat/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-calendar-compat/config/tests.js', hash: '16913843724990866890' }, - { - file: 'packages/react-components/react-calendar-compat/etc/react-calendar-compat.api.md', - hash: '11280265714401482809', - }, - { file: 'packages/react-components/react-calendar-compat/jest.config.js', hash: '17594938369918384400' }, - { file: 'packages/react-components/react-calendar-compat/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-calendar-compat/package.json', - hash: '12780475791619375299', - deps: [ - '@fluentui/keyboard-keys', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-calendar-compat/project.json', hash: '10336287111758931158' }, - { file: 'packages/react-components/react-calendar-compat/src/Calendar.ts', hash: '569100325234550221' }, - { file: 'packages/react-components/react-calendar-compat/src/CalendarDay.ts', hash: '8597632098014907945' }, - { file: 'packages/react-components/react-calendar-compat/src/CalendarDayGrid.ts', hash: '9006730546358771150' }, - { file: 'packages/react-components/react-calendar-compat/src/CalendarMonth.ts', hash: '15700967951441475220' }, - { file: 'packages/react-components/react-calendar-compat/src/CalendarPicker.ts', hash: '14523906469553885140' }, - { file: 'packages/react-components/react-calendar-compat/src/CalendarYear.ts', hash: '5034780660418317532' }, - { - file: 'packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.test.tsx', - hash: '13664934943248530105', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.tsx', - hash: '12075814383556349697', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/Calendar/Calendar.types.ts', - hash: '6962729070181472361', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/Calendar/defaults.ts', - hash: '12150049920056951841', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/Calendar/index.ts', - hash: '280614579109648880', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/Calendar/useCalendarStyles.styles.ts', - hash: '1006542229430292590', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDay/CalendarDay.tsx', - hash: '7046653937375099156', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDay/CalendarDay.types.ts', - hash: '7254463921971646205', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDay/index.ts', - hash: '5069320966498210852', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDay/useCalendarDayStyles.styles.ts', - hash: '14296708635223528064', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.test.tsx', - hash: '5166513198801435477', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.tsx', - hash: '14150020809682641348', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarDayGrid.types.ts', - hash: '16844172177097176878', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarGridDayCell.tsx', - hash: '8539280218068598115', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarGridRow.tsx', - hash: '12406916342262678923', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/CalendarMonthHeaderRow.tsx', - hash: '4731438398885101298', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/index.ts', - hash: '8094953342360531716', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useCalendarDayGridStyles.styles.ts', - hash: '9465252406194562240', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useWeekCornerStyles.styles.ts', - hash: '14768584383717911854', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarDayGrid/useWeeks.ts', - hash: '5738594502898152200', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarMonth/CalendarMonth.tsx', - hash: '16366612975234214650', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarMonth/CalendarMonth.types.ts', - hash: '17523810711583792348', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarMonth/index.ts', - hash: '17307579052286375469', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarMonth/useCalendarMonthStyles.ts', - hash: '4576688148791858990', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarPicker/CalendarPicker.types.ts', - hash: '4275469484249014334', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarPicker/index.ts', - hash: '14592164704749861149', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarPicker/useCalendarPickerStyles.styles.ts', - hash: '8049535238955487663', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarYear/CalendarYear.tsx', - hash: '2490533279016265988', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarYear/CalendarYear.types.ts', - hash: '11446533358687332984', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarYear/index.ts', - hash: '18404670979156991646', - }, - { - file: 'packages/react-components/react-calendar-compat/src/components/CalendarYear/useCalendarYearStyles.styles.ts', - hash: '8791019775600337052', - }, - { file: 'packages/react-components/react-calendar-compat/src/index.ts', hash: '11058792551302697956' }, - { - file: 'packages/react-components/react-calendar-compat/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { file: 'packages/react-components/react-calendar-compat/src/utils/animations.ts', hash: '11768504868995077808' }, - { file: 'packages/react-components/react-calendar-compat/src/utils/constants.ts', hash: '6954577135884407208' }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.defaults.ts', - hash: '960516216584631364', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.test.ts', - hash: '1328095693882055479', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateFormatting/dateFormatting.types.ts', - hash: '3964238463408131802', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateFormatting/index.ts', - hash: '11444866860731853863', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/dateGrid.types.ts', - hash: '13869017007540650023', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/findAvailableDate.ts', - hash: '1044521199169079412', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/getBoundedDateRange.ts', - hash: '5151142947748778290', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/getDateRangeTypeToUse.ts', - hash: '6352858266315262616', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/getDayGrid.ts', - hash: '10043549393078829484', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/index.ts', - hash: '10066372923074331696', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/isAfterMaxDate.ts', - hash: '5477043376904704413', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/isBeforeMinDate.ts', - hash: '7418121542564448874', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/isContiguous.ts', - hash: '5454231782673888564', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateGrid/isRestrictedDate.ts', - hash: '17835191090077548002', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateMath/dateMath.test.ts', - hash: '10841282865769457042', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateMath/dateMath.ts', - hash: '15051247567906633079', - }, - { - file: 'packages/react-components/react-calendar-compat/src/utils/dateMath/index.ts', - hash: '12772919650999189149', - }, - { file: 'packages/react-components/react-calendar-compat/src/utils/focus.ts', hash: '7882318112925005824' }, - { file: 'packages/react-components/react-calendar-compat/src/utils/index.ts', hash: '2304887399068246115' }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarBestPractices.md', - hash: '12332716352476795030', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarContiguousWork.stories.tsx', - hash: '9107126930642284008', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarCustomDayCellRef.stories.tsx', - hash: '1634922785720367782', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarDateBoundaries.stories.tsx', - hash: '12778969296532591271', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarDefault.stories.tsx', - hash: '1209565745415093032', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarDescription.md', - hash: '621070059803414892', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarMarkedDays.stories.tsx', - hash: '14380631099370286571', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarMonthOnly.stories.tsx', - hash: '18071268346481390719', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarMonthSelection.stories.tsx', - hash: '4355438240880441608', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarMultiDayView.stories.tsx', - hash: '15852493648870531727', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarNonContiguousWorkWeekDays.stories.tsx', - hash: '6659257569324158817', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarOverlaidMonthPicker.stories.tsx', - hash: '6466716036656954449', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarSixWeeks.stories.tsx', - hash: '4478784017377594668', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarWeekNumbers.stories.tsx', - hash: '8784780254995702862', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/CalendarWeekSelection.stories.tsx', - hash: '16213513011473001401', - }, - { - file: 'packages/react-components/react-calendar-compat/stories/Calendar/index.stories.tsx', - hash: '16088818829018348985', - }, - { file: 'packages/react-components/react-calendar-compat/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-calendar-compat/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-calendar-compat/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-accordion': [ - { file: 'packages/react-components/react-accordion/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-accordion/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-accordion/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-accordion/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-accordion/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-accordion/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-accordion/CHANGELOG.json', hash: '6704438454373788221' }, - { file: 'packages/react-components/react-accordion/CHANGELOG.md', hash: '6697478859424030169' }, - { file: 'packages/react-components/react-accordion/LICENSE', hash: '10515969215667611391' }, - { file: 'packages/react-components/react-accordion/README.md', hash: '35811706167284032' }, - { - file: 'packages/react-components/react-accordion/bundle-size/Accordion.fixture.js', - hash: '13025293423793119149', - }, - { file: 'packages/react-components/react-accordion/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-accordion/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-accordion/docs/Spec.md', hash: '6652265893767303498' }, - { file: 'packages/react-components/react-accordion/etc/react-accordion.api.md', hash: '11114769121820098904' }, - { file: 'packages/react-components/react-accordion/jest.config.js', hash: '10085574794168449847' }, - { file: 'packages/react-components/react-accordion/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-accordion/package.json', - hash: '5342481591420806101', - deps: [ - '@fluentui/react-aria', - '@fluentui/react-context-selector', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-accordion/project.json', hash: '11440399097110510166' }, - { file: 'packages/react-components/react-accordion/src/Accordion.ts', hash: '16785143114878803654' }, - { file: 'packages/react-components/react-accordion/src/AccordionHeader.ts', hash: '1289798043912099911' }, - { file: 'packages/react-components/react-accordion/src/AccordionItem.ts', hash: '13880495646436759837' }, - { file: 'packages/react-components/react-accordion/src/AccordionPanel.ts', hash: '2438131819937850194' }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/Accordion.test.tsx', - hash: '16976759395372490307', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/Accordion.tsx', - hash: '15197950880235884291', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/Accordion.types.ts', - hash: '15153786169925228028', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/__snapshots__/Accordion.test.tsx.snap', - hash: '5440086178578092926', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/index.ts', - hash: '17015962739051035664', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/renderAccordion.tsx', - hash: '6544593693425754680', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordion.test.ts', - hash: '12537166421869993251', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordion.ts', - hash: '10592401544867876413', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordionContextValues.test.ts', - hash: '10384572688653114691', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordionContextValues.ts', - hash: '10925599516232107360', - }, - { - file: 'packages/react-components/react-accordion/src/components/Accordion/useAccordionStyles.styles.ts', - hash: '12739953739489862888', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.test.tsx', - hash: '5484094921469231221', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.tsx', - hash: '4502134863578619717', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/AccordionHeader.types.ts', - hash: '5748973260493932389', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/__snapshots__/AccordionHeader.test.tsx.snap', - hash: '11481347373076612900', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/index.ts', - hash: '11564966910913854684', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/renderAccordionHeader.tsx', - hash: '6656884323774064240', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeader.test.tsx', - hash: '18006183417930942098', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeader.tsx', - hash: '4234484994424947618', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderContextValues.test.ts', - hash: '12191753425986561264', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderContextValues.ts', - hash: '8394955758226906343', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionHeader/useAccordionHeaderStyles.styles.ts', - hash: '7258185454670979521', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.test.tsx', - hash: '5425981379802688695', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.tsx', - hash: '2321336620717464241', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/AccordionItem.types.ts', - hash: '14496451663354119304', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/__snapshots__/AccordionItem.test.tsx.snap', - hash: '64784876023442588', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/index.ts', - hash: '6963096868193264995', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/renderAccordionItem.tsx', - hash: '17207020838960006677', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItem.ts', - hash: '2809714543727973223', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemContextValues.test.ts', - hash: '15386535776538766060', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemContextValues.ts', - hash: '13547940835645645091', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionItem/useAccordionItemStyles.styles.ts', - hash: '12158531883424991447', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.test.tsx', - hash: '7403067348982790520', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.tsx', - hash: '12495705955231481459', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionPanel/AccordionPanel.types.ts', - hash: '7103168862077477490', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionPanel/__snapshots__/AccordionPanel.test.tsx.snap', - hash: '10697015544631848634', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionPanel/index.ts', - hash: '11587887317947469666', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionPanel/renderAccordionPanel.tsx', - hash: '7472039993286476875', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionPanel/useAccordionPanel.ts', - hash: '6080867399999950807', - }, - { - file: 'packages/react-components/react-accordion/src/components/AccordionPanel/useAccordionPanelStyles.styles.ts', - hash: '6138244921461656114', - }, - { file: 'packages/react-components/react-accordion/src/contexts/accordion.ts', hash: '16736880611846345591' }, - { - file: 'packages/react-components/react-accordion/src/contexts/accordionHeader.ts', - hash: '15693653098769319600', - }, - { file: 'packages/react-components/react-accordion/src/contexts/accordionItem.ts', hash: '9005618419480165756' }, - { file: 'packages/react-components/react-accordion/src/index.ts', hash: '11836421926908868045' }, - { file: 'packages/react-components/react-accordion/src/testing/isConformant.ts', hash: '14447437808059758114' }, - { - file: 'packages/react-components/react-accordion/src/testing/mockContextValue.ts', - hash: '14895647593596771238', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionCollapsible.stories.tsx', - hash: '4629635531241842185', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionControlled.stories.tsx', - hash: '13597522106183020319', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionDefault.stories.tsx', - hash: '8772977066618335771', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionDescription.md', - hash: '10120928891625568491', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionDisabled.stories.tsx', - hash: '9121740621629891803', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionExpandIcon.stories.tsx', - hash: '10117909561030074085', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionExpandIconPosition.stories.tsx', - hash: '15839297606794072409', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionHeaders.stories.tsx', - hash: '17224421090665489535', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionInline.stories.tsx', - hash: '2053407323239713367', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionMultiple.stories.tsx', - hash: '3384058409854640541', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionNavigation.stories.tsx', - hash: '14976414457374632634', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionOpenItems.stories.tsx', - hash: '7862328611087952935', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionSizes.stories.tsx', - hash: '3647343044623226526', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/AccordionWithIcon.stories.tsx', - hash: '9331458468679791705', - }, - { - file: 'packages/react-components/react-accordion/stories/Accordion/index.stories.tsx', - hash: '15027356603113973585', - }, - { file: 'packages/react-components/react-accordion/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-accordion/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-accordion/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-northstar-emotion-renderer': [ - { file: 'packages/fluentui/react-northstar-emotion-renderer/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/jest.config.js', hash: '10065914605359659073' }, - { - file: 'packages/fluentui/react-northstar-emotion-renderer/package.json', - hash: '16057095585920927971', - deps: [ - 'npm:@babel/runtime', - 'npm:@emotion/cache', - 'npm:@emotion/serialize', - 'npm:@emotion/sheet', - 'npm:@emotion/utils', - '@fluentui/react-northstar-styles-renderer', - '@fluentui/styles', - 'npm:stylis', - 'npm:stylis-plugin-rtl', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:@types/stylis', - 'npm:lerna-alias', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/project.json', hash: '5988446854191171584' }, - { - file: 'packages/fluentui/react-northstar-emotion-renderer/src/createEmotionRenderer.tsx', - hash: '3527459238388368320', - }, - { - file: 'packages/fluentui/react-northstar-emotion-renderer/src/disableAnimations.ts', - hash: '15169298850039687481', - }, - { - file: 'packages/fluentui/react-northstar-emotion-renderer/src/focusVisiblePlugin.ts', - hash: '15882127862814043576', - }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/src/fontUtils.ts', hash: '2024523837323362739' }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/src/index.ts', hash: '4595283533174490101' }, - { - file: 'packages/fluentui/react-northstar-emotion-renderer/src/invokeKeyframes.ts', - hash: '8615174738355072265', - }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/src/utils.ts', hash: '4045080220261049628' }, - { - file: 'packages/fluentui/react-northstar-emotion-renderer/test/__snapshots__/emotionRenderer-test.ts.snap', - hash: '10413787701503712849', - }, - { - file: 'packages/fluentui/react-northstar-emotion-renderer/test/emotionRenderer-test.ts', - hash: '13586919140231825454', - }, - { - file: 'packages/fluentui/react-northstar-emotion-renderer/test/focusVisiblePlugin-test.ts', - hash: '13336232390182493707', - }, - { file: 'packages/fluentui/react-northstar-emotion-renderer/tsconfig.json', hash: '17948747254354210464' }, - ], - '@fluentui/react-docsite-components': [ - { file: 'packages/react-docsite-components/.eslintrc.json', hash: '17910802694759075705' }, - { file: 'packages/react-docsite-components/.npmignore', hash: '47056201363133096' }, - { file: 'packages/react-docsite-components/CHANGELOG.json', hash: '15623346196486686' }, - { file: 'packages/react-docsite-components/CHANGELOG.md', hash: '16667333957296172062' }, - { file: 'packages/react-docsite-components/LICENSE', hash: '9616427488211660399' }, - { file: 'packages/react-docsite-components/README.md', hash: '2220872118300718726' }, - { file: 'packages/react-docsite-components/config/pre-copy.json', hash: '10496597701824624187' }, - { file: 'packages/react-docsite-components/index.html', hash: '2640797298882155798' }, - { file: 'packages/react-docsite-components/jest.config.js', hash: '5767287689832801759' }, - { file: 'packages/react-docsite-components/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-docsite-components/package.json', - hash: '10314344290287066915', - deps: [ - '@fluentui/react', - '@fluentui/theme', - 'npm:@microsoft/load-themed-styles', - '@fluentui/example-data', - '@fluentui/public-docsite-setup', - '@fluentui/react-hooks', - '@fluentui/set-version', - '@fluentui/react-monaco-editor', - 'npm:color-check', - 'npm:markdown-to-jsx', - 'npm:office-ui-fabric-core', - 'npm:react-custom-scrollbars', - 'npm:react-syntax-highlighter', - 'npm:tslib', - '@fluentui/common-styles', - '@fluentui/eslint-plugin', - 'npm:@types/color-check', - 'npm:@types/react-custom-scrollbars', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-docsite-components/project.json', hash: '10631926172196863479' }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationDetail/AnimationDetail.tsx', - hash: '11264131826746095967', - }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationDetail/AnimationDetail.types.ts', - hash: '10921051691769202943', - }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationDetail/index.ts', - hash: '3670912092410067411', - }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/AnimationDetailGrid.tsx', - hash: '16347224904878135663', - }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/AnimationDetailGrid.types.ts', - hash: '12493861838927048618', - }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationDetailGrid/index.ts', - hash: '3186403042237813675', - }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationExample/AnimationExample.tsx', - hash: '9795940310449634330', - }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationExample/AnimationExample.types.ts', - hash: '11921866709470015362', - }, - { - file: 'packages/react-docsite-components/src/components/Animation/AnimationExample/index.ts', - hash: '14853755572767387801', - }, - { file: 'packages/react-docsite-components/src/components/Animation/index.ts', hash: '13772077451262221428' }, - { - file: 'packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTable.tsx', - hash: '6693920952919094704', - }, - { - file: 'packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTableSet.tsx', - hash: '12110962144033825225', - }, - { - file: 'packages/react-docsite-components/src/components/ApiReferencesTable/ApiReferencesTableSet.types.ts', - hash: '14792084498059802857', - }, - { - file: 'packages/react-docsite-components/src/components/ApiReferencesTable/index.ts', - hash: '15605678694974685331', - }, - { - file: 'packages/react-docsite-components/src/components/ApiReferencesTable/tokenResolver.test.ts', - hash: '17246629434563524157', - }, - { - file: 'packages/react-docsite-components/src/components/ApiReferencesTable/tokenResolver.ts', - hash: '11203029933842193563', - }, - { file: 'packages/react-docsite-components/src/components/App/App.styles.ts', hash: '16366742593675220433' }, - { file: 'packages/react-docsite-components/src/components/App/App.tsx', hash: '5479481127201385538' }, - { file: 'packages/react-docsite-components/src/components/App/App.types.ts', hash: '3013181038616524203' }, - { file: 'packages/react-docsite-components/src/components/App/index.ts', hash: '14112724461615500278' }, - { file: 'packages/react-docsite-components/src/components/Badge/Badge.tsx', hash: '11558535686674202398' }, - { file: 'packages/react-docsite-components/src/components/Badge/Badge.types.ts', hash: '8744809654982521758' }, - { file: 'packages/react-docsite-components/src/components/Badge/index.ts', hash: '4962031303727737639' }, - { - file: 'packages/react-docsite-components/src/components/CodeSnippet/CodeSnippet.styles.ts', - hash: '6620062364833710851', - }, - { - file: 'packages/react-docsite-components/src/components/CodeSnippet/CodeSnippet.tsx', - hash: '13813234680433505694', - }, - { - file: 'packages/react-docsite-components/src/components/CodeSnippet/PrismCodeSnippet.tsx', - hash: '15729185984999372459', - }, - { file: 'packages/react-docsite-components/src/components/CodeSnippet/index.ts', hash: '4078061758664398964' }, - { - file: 'packages/react-docsite-components/src/components/CodepenComponent/CodepenComponent.tsx', - hash: '11870257513293450538', - }, - { - file: 'packages/react-docsite-components/src/components/CodepenComponent/CodepenComponent.types.ts', - hash: '15369017375806556484', - }, - { - file: 'packages/react-docsite-components/src/components/CodepenComponent/index.ts', - hash: '6992589686786059677', - }, - { - file: 'packages/react-docsite-components/src/components/ColorPalette/ColorPalette.styles.ts', - hash: '10408275644401713063', - }, - { - file: 'packages/react-docsite-components/src/components/ColorPalette/ColorPalette.tsx', - hash: '13383233160734780830', - }, - { - file: 'packages/react-docsite-components/src/components/ColorPalette/ColorPalette.types.ts', - hash: '7727147804317552266', - }, - { file: 'packages/react-docsite-components/src/components/ColorPalette/index.ts', hash: '2243447153520337046' }, - { - file: 'packages/react-docsite-components/src/components/ComponentPage/ComponentPage.styles.ts', - hash: '2847849537891104567', - }, - { - file: 'packages/react-docsite-components/src/components/ComponentPage/ComponentPage.tsx', - hash: '12667409702626479674', - }, - { - file: 'packages/react-docsite-components/src/components/ComponentPage/ComponentPage.types.ts', - hash: '11238805679830811443', - }, - { file: 'packages/react-docsite-components/src/components/ComponentPage/index.ts', hash: '5520169500609217837' }, - { - file: 'packages/react-docsite-components/src/components/DisplayToggle/DisplayToggle.tsx', - hash: '4910289010839064091', - }, - { - file: 'packages/react-docsite-components/src/components/DisplayToggle/DisplayToggle.types.ts', - hash: '6899766017438718203', - }, - { file: 'packages/react-docsite-components/src/components/DisplayToggle/index.ts', hash: '11307196144261154083' }, - { - file: 'packages/react-docsite-components/src/components/EditSection/EditSection.tsx', - hash: '12854715732857349029', - }, - { - file: 'packages/react-docsite-components/src/components/EditSection/EditSection.types.ts', - hash: '5572300696319586102', - }, - { file: 'packages/react-docsite-components/src/components/EditSection/index.ts', hash: '12495031237438416611' }, - { - file: 'packages/react-docsite-components/src/components/ExampleCard/ExampleCard.styles.ts', - hash: '9033267256349918834', - }, - { - file: 'packages/react-docsite-components/src/components/ExampleCard/ExampleCard.tsx', - hash: '17338998690457603436', - }, - { - file: 'packages/react-docsite-components/src/components/ExampleCard/ExampleCard.types.ts', - hash: '7242972042750925022', - }, - { file: 'packages/react-docsite-components/src/components/ExampleCard/index.ts', hash: '15094305405003736612' }, - { - file: 'packages/react-docsite-components/src/components/FeedbackList/FeedbackList.styles.ts', - hash: '15527272981673495220', - }, - { - file: 'packages/react-docsite-components/src/components/FeedbackList/FeedbackList.tsx', - hash: '6913565087332624295', - }, - { - file: 'packages/react-docsite-components/src/components/FeedbackList/FeedbackList.types.ts', - hash: '12055884543860903617', - }, - { file: 'packages/react-docsite-components/src/components/FeedbackList/index.ts', hash: '9242617650315490998' }, - { - file: 'packages/react-docsite-components/src/components/FeedbackList/relativeDates.test.tsx', - hash: '14205011362976557372', - }, - { - file: 'packages/react-docsite-components/src/components/FeedbackList/relativeDates.ts', - hash: '7957536793518410690', - }, - { file: 'packages/react-docsite-components/src/components/Header/Header.styles.ts', hash: '8473524780432870952' }, - { file: 'packages/react-docsite-components/src/components/Header/Header.tsx', hash: '10303724695287218835' }, - { file: 'packages/react-docsite-components/src/components/Header/Header.types.ts', hash: '16233883555288466961' }, - { file: 'packages/react-docsite-components/src/components/Header/index.ts', hash: '5506779718460944000' }, - { - file: 'packages/react-docsite-components/src/components/LoadingComponent/LoadingComponent.tsx', - hash: '13650245432014634690', - }, - { - file: 'packages/react-docsite-components/src/components/LoadingComponent/LoadingComponent.types.ts', - hash: '6400960813027923111', - }, - { - file: 'packages/react-docsite-components/src/components/LoadingComponent/index.ts', - hash: '5799557727547273435', - }, - { file: 'packages/react-docsite-components/src/components/Markdown/Markdown.tsx', hash: '3265394082177415297' }, - { - file: 'packages/react-docsite-components/src/components/Markdown/Markdown.types.ts', - hash: '15550085183233549182', - }, - { - file: 'packages/react-docsite-components/src/components/Markdown/MarkdownCode.tsx', - hash: '5782844213118550369', - }, - { - file: 'packages/react-docsite-components/src/components/Markdown/MarkdownHeader.tsx', - hash: '170166514560079612', - }, - { - file: 'packages/react-docsite-components/src/components/Markdown/MarkdownLink.tsx', - hash: '11369738457711070204', - }, - { - file: 'packages/react-docsite-components/src/components/Markdown/MarkdownParagraph.tsx', - hash: '927651713797114180', - }, - { - file: 'packages/react-docsite-components/src/components/Markdown/MarkdownPre.tsx', - hash: '11549614759760207006', - }, - { file: 'packages/react-docsite-components/src/components/Markdown/index.ts', hash: '2104250620797368259' }, - { - file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownCell.tsx', - hash: '18279001039219757069', - }, - { - file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTBody.tsx', - hash: '6801091733446794095', - }, - { - file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTHead.tsx', - hash: '6573393184264059451', - }, - { - file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.styles.ts', - hash: '11753276764079744984', - }, - { - file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.tsx', - hash: '15567154242683678350', - }, - { - file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTable.types.ts', - hash: '17986119871571670228', - }, - { - file: 'packages/react-docsite-components/src/components/MarkdownTable/MarkdownTr.tsx', - hash: '14456901982183056649', - }, - { file: 'packages/react-docsite-components/src/components/MarkdownTable/index.ts', hash: '13169572237147661272' }, - { file: 'packages/react-docsite-components/src/components/Nav/Nav.types.ts', hash: '15448548289405977557' }, - { file: 'packages/react-docsite-components/src/components/Nav/index.ts', hash: '16980948111742648072' }, - { file: 'packages/react-docsite-components/src/components/Page/Page.module.scss', hash: '15997096924270964157' }, - { file: 'packages/react-docsite-components/src/components/Page/Page.tsx', hash: '1385652342251007383' }, - { file: 'packages/react-docsite-components/src/components/Page/Page.types.ts', hash: '5020195258814514625' }, - { file: 'packages/react-docsite-components/src/components/Page/index.ts', hash: '3560070557009333257' }, - { - file: 'packages/react-docsite-components/src/components/Page/sections/BannerSection.tsx', - hash: '9459583740729657611', - }, - { - file: 'packages/react-docsite-components/src/components/Page/sections/BestPracticesSection.tsx', - hash: '2625722722092540946', - }, - { - file: 'packages/react-docsite-components/src/components/Page/sections/ExamplesSection.tsx', - hash: '7459818529105091139', - }, - { - file: 'packages/react-docsite-components/src/components/Page/sections/FeedbackSection.tsx', - hash: '5163148693013218817', - }, - { - file: 'packages/react-docsite-components/src/components/Page/sections/ImplementationSection.tsx', - hash: '12817609470043729', - }, - { - file: 'packages/react-docsite-components/src/components/Page/sections/MarkdownSection.tsx', - hash: '13600727208740058364', - }, - { - file: 'packages/react-docsite-components/src/components/Page/sections/OtherPageSection.tsx', - hash: '6448538661393121940', - }, - { - file: 'packages/react-docsite-components/src/components/Page/sections/OverviewSection.tsx', - hash: '5819020254044237698', - }, - { file: 'packages/react-docsite-components/src/components/Page/sections/index.ts', hash: '11022066208682099058' }, - { - file: 'packages/react-docsite-components/src/components/PageHeader/PageHeader.tsx', - hash: '14224263990280196724', - }, - { - file: 'packages/react-docsite-components/src/components/PageHeader/PageHeader.types.ts', - hash: '12065952942620058849', - }, - { file: 'packages/react-docsite-components/src/components/PageHeader/index.ts', hash: '5118033474718800442' }, - { - file: 'packages/react-docsite-components/src/components/PlatformBar/PlatformBar.base.tsx', - hash: '6676147153439959496', - }, - { - file: 'packages/react-docsite-components/src/components/PlatformBar/PlatformBar.styles.ts', - hash: '12425173100815747296', - }, - { - file: 'packages/react-docsite-components/src/components/PlatformBar/PlatformBar.tsx', - hash: '14835312562071670454', - }, - { - file: 'packages/react-docsite-components/src/components/PlatformBar/PlatformBar.types.ts', - hash: '5050109515969688623', - }, - { file: 'packages/react-docsite-components/src/components/PlatformBar/index.ts', hash: '17000560713892606846' }, - { - file: 'packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.module.scss', - hash: '10129437058013725451', - }, - { - file: 'packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.tsx', - hash: '1723918811407193241', - }, - { - file: 'packages/react-docsite-components/src/components/PlatformPicker/PlatformPicker.types.ts', - hash: '5209849757397689134', - }, - { file: 'packages/react-docsite-components/src/components/PlatformPicker/index.ts', hash: '3704407012159645691' }, - { - file: 'packages/react-docsite-components/src/components/PropertiesTable/PropertiesTable.tsx', - hash: '10609321670064992912', - }, - { - file: 'packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.styles.ts', - hash: '7576556022262521007', - }, - { - file: 'packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.tsx', - hash: '4252564358131238265', - }, - { - file: 'packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.types.ts', - hash: '10649805137209477089', - }, - { - file: 'packages/react-docsite-components/src/components/PropertiesTable/index.ts', - hash: '5168601532031671044', - }, - { - file: 'packages/react-docsite-components/src/components/ScrollBars/ScrollBars.tsx', - hash: '7492893318732139089', - }, - { - file: 'packages/react-docsite-components/src/components/ScrollBars/ScrollBars.types.ts', - hash: '8892757102835863185', - }, - { file: 'packages/react-docsite-components/src/components/ScrollBars/index.ts', hash: '2488975222934078523' }, - { - file: 'packages/react-docsite-components/src/components/SideRail/SideRail.styles.ts', - hash: '17464653957499105858', - }, - { file: 'packages/react-docsite-components/src/components/SideRail/SideRail.tsx', hash: '10530651215123821136' }, - { - file: 'packages/react-docsite-components/src/components/SideRail/SideRail.types.ts', - hash: '12378737735663262739', - }, - { file: 'packages/react-docsite-components/src/components/SideRail/index.ts', hash: '15350023720092837224' }, - { - file: 'packages/react-docsite-components/src/components/SiteMessageBar/SiteMessageBar.tsx', - hash: '5692542924300314898', - }, - { - file: 'packages/react-docsite-components/src/components/SiteMessageBar/SiteMessageBar.types.ts', - hash: '4633620292447014093', - }, - { file: 'packages/react-docsite-components/src/components/SiteMessageBar/index.ts', hash: '8013242729655963168' }, - { - file: 'packages/react-docsite-components/src/components/Table/Table.module.scss', - hash: '16550842896320001700', - }, - { file: 'packages/react-docsite-components/src/components/Table/Table.tsx', hash: '14379197659162050526' }, - { file: 'packages/react-docsite-components/src/components/Table/Table.types.ts', hash: '14075813774070979305' }, - { file: 'packages/react-docsite-components/src/components/Table/index.ts', hash: '5229940266654307261' }, - { - file: 'packages/react-docsite-components/src/components/TopBanner/TopBanner.module.scss', - hash: '15038493170820400757', - }, - { file: 'packages/react-docsite-components/src/components/TopBanner/TopBanner.tsx', hash: '8333453547241102032' }, - { - file: 'packages/react-docsite-components/src/components/TopBanner/TopBanner.types.ts', - hash: '10791569416871748217', - }, - { file: 'packages/react-docsite-components/src/components/TopBanner/index.ts', hash: '12469409406838065289' }, - { - file: 'packages/react-docsite-components/src/components/TopNav/TopNav.module.scss', - hash: '15528005425186561560', - }, - { file: 'packages/react-docsite-components/src/components/TopNav/TopNav.tsx', hash: '12121264468935953169' }, - { file: 'packages/react-docsite-components/src/components/TopNav/TopNav.types.ts', hash: '484556540365286005' }, - { file: 'packages/react-docsite-components/src/components/TopNav/index.ts', hash: '18228330905927286130' }, - { - file: 'packages/react-docsite-components/src/components/Video/Video.module.scss', - hash: '17577067756746920297', - }, - { file: 'packages/react-docsite-components/src/components/Video/Video.tsx', hash: '4885650580642838040' }, - { file: 'packages/react-docsite-components/src/components/Video/Video.types.ts', hash: '16538062891442897525' }, - { file: 'packages/react-docsite-components/src/components/Video/index.ts', hash: '10289931313091974900' }, - { file: 'packages/react-docsite-components/src/demo/demo.md', hash: '16278892541003887014' }, - { file: 'packages/react-docsite-components/src/index.demo.tsx', hash: '16084233626171032953' }, - { file: 'packages/react-docsite-components/src/index.ts', hash: '3402088956271963260' }, - { file: 'packages/react-docsite-components/src/index2.ts', hash: '10858750401029740114' }, - { file: 'packages/react-docsite-components/src/styles/_common.scss', hash: '4739691154712696008' }, - { file: 'packages/react-docsite-components/src/styles/constants.ts', hash: '18113821495747227057' }, - { file: 'packages/react-docsite-components/src/utilities/PlatformContext.tsx', hash: '10721691462706379471' }, - { file: 'packages/react-docsite-components/src/utilities/SiteDefinition.types.ts', hash: '3483411585517637402' }, - { file: 'packages/react-docsite-components/src/utilities/activePage.ts', hash: '8612871338526660105' }, - { file: 'packages/react-docsite-components/src/utilities/appInsightsHelper.ts', hash: '8138553450890304073' }, - { file: 'packages/react-docsite-components/src/utilities/baseDefinition.tsx', hash: '17208312766058810770' }, - { file: 'packages/react-docsite-components/src/utilities/createApp.tsx', hash: '17969024525428726625' }, - { file: 'packages/react-docsite-components/src/utilities/createDemoApp.tsx', hash: '2653224455280570175' }, - { file: 'packages/react-docsite-components/src/utilities/data.ts', hash: '18386193858659404356' }, - { file: 'packages/react-docsite-components/src/utilities/examplesOf.ts', hash: '10037047487220822653' }, - { - file: 'packages/react-docsite-components/src/utilities/extractAnchorLink.test.ts', - hash: '14821204508688466308', - }, - { file: 'packages/react-docsite-components/src/utilities/extractAnchorLink.ts', hash: '4010749088974230211' }, - { file: 'packages/react-docsite-components/src/utilities/getCurrentUrl.ts', hash: '10998380089641402222' }, - { file: 'packages/react-docsite-components/src/utilities/getEditUrl.ts', hash: '13662911029079054150' }, - { file: 'packages/react-docsite-components/src/utilities/getLinkColors.ts', hash: '12700816332715066801' }, - { file: 'packages/react-docsite-components/src/utilities/getNormalizedPath.ts', hash: '1431721679199564653' }, - { file: 'packages/react-docsite-components/src/utilities/getPageFirstPlatform.ts', hash: '1789802822213132435' }, - { file: 'packages/react-docsite-components/src/utilities/getSiteArea.ts', hash: '6341403548239437859' }, - { file: 'packages/react-docsite-components/src/utilities/index.ts', hash: '5861053845170178010' }, - { file: 'packages/react-docsite-components/src/utilities/index2.ts', hash: '18232133903563724366' }, - { file: 'packages/react-docsite-components/src/utilities/jumpToAnchor.ts', hash: '12726337012761599975' }, - { file: 'packages/react-docsite-components/src/utilities/parser/BaseParser.ts', hash: '17784227666965957282' }, - { - file: 'packages/react-docsite-components/src/utilities/parser/EnumParserHelper.ts', - hash: '15839387552642550867', - }, - { - file: 'packages/react-docsite-components/src/utilities/parser/InterfaceParserHelper.ts', - hash: '17116487468584992291', - }, - { file: 'packages/react-docsite-components/src/utilities/parser/Parse.ts', hash: '1455887245422584040' }, - { file: 'packages/react-docsite-components/src/utilities/parser/index.ts', hash: '12084374931088726602' }, - { file: 'packages/react-docsite-components/src/utilities/parser/interfaces.ts', hash: '4063379421402413669' }, - { file: 'packages/react-docsite-components/src/utilities/randomEntry.ts', hash: '6198528484003308287' }, - { file: 'packages/react-docsite-components/src/utilities/redirects.ts', hash: '17409290045674525834' }, - { - file: 'packages/react-docsite-components/src/utilities/removeAnchorLink.test.ts', - hash: '11015103027632462396', - }, - { file: 'packages/react-docsite-components/src/utilities/removeAnchorLink.ts', hash: '15447886450914037200' }, - { file: 'packages/react-docsite-components/src/utilities/router/Route.tsx', hash: '10175416453822392064' }, - { file: 'packages/react-docsite-components/src/utilities/router/Router.tsx', hash: '14816371583147992581' }, - { file: 'packages/react-docsite-components/src/utilities/router/index.ts', hash: '5321333771325496376' }, - { file: 'packages/react-docsite-components/src/utilities/showOnlyExamples.ts', hash: '17505358712249837772' }, - { file: 'packages/react-docsite-components/src/utilities/string.ts', hash: '10417563592158032366' }, - { file: 'packages/react-docsite-components/src/utilities/theme.ts', hash: '11154753743358389279' }, - { file: 'packages/react-docsite-components/src/utilities/windowWidth.ts', hash: '2891539011908030225' }, - { file: 'packages/react-docsite-components/src/version.ts', hash: '10007923850948970376' }, - { file: 'packages/react-docsite-components/tsconfig.json', hash: '3306502114190941300' }, - { file: 'packages/react-docsite-components/webpack.serve.config.js', hash: '8490482500988848252' }, - ], - '@fluentui/react-tags': [ - { file: 'packages/react-components/react-tags/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-tags/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-tags/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-tags/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-tags/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-tags/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-tags/CHANGELOG.json', hash: '194138550563336131' }, - { file: 'packages/react-components/react-tags/CHANGELOG.md', hash: '3161502209421304381' }, - { file: 'packages/react-components/react-tags/LICENSE', hash: '15984548770641206248' }, - { file: 'packages/react-components/react-tags/README.md', hash: '10500482775121349906' }, - { - file: 'packages/react-components/react-tags/bundle-size/InteractionTag.fixture.js', - hash: '17358477118197912493', - }, - { file: 'packages/react-components/react-tags/bundle-size/TagGroup.fixture.js', hash: '5014611251005463486' }, - { file: 'packages/react-components/react-tags/bundle-size/tag.fixture.js', hash: '15289223331746822136' }, - { file: 'packages/react-components/react-tags/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-tags/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-tags/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-tags/docs/Spec.md', hash: '6616655976701304277' }, - { file: 'packages/react-components/react-tags/etc/react-tags.api.md', hash: '10336091631530896536' }, - { file: 'packages/react-components/react-tags/jest.config.js', hash: '14977555368232687164' }, - { file: 'packages/react-components/react-tags/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-tags/package.json', - hash: '12340442389795941756', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-aria', - '@fluentui/react-avatar', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-tags/project.json', hash: '584427480657467091' }, - { file: 'packages/react-components/react-tags/src/InteractionTag.ts', hash: '13983274673714466720' }, - { file: 'packages/react-components/react-tags/src/InteractionTagPrimary.ts', hash: '6256468456880889102' }, - { file: 'packages/react-components/react-tags/src/InteractionTagSecondary.ts', hash: '5368134246602714141' }, - { file: 'packages/react-components/react-tags/src/Tag.ts', hash: '16167036964551788704' }, - { file: 'packages/react-components/react-tags/src/TagGroup.ts', hash: '6013255966207939916' }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.test.tsx', - hash: '10842010645442217057', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.tsx', - hash: '4399038313425811042', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTag/InteractionTag.types.ts', - hash: '2420146369576242616', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTag/index.ts', - hash: '2950543417664974367', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTag/renderInteractionTag.tsx', - hash: '3182765218771271515', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTag/useInteractionTag.tsx', - hash: '13752441498224431555', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTag/useInteractionTagContextValues.ts', - hash: '17161257668063955216', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTag/useInteractionTagStyles.styles.ts', - hash: '13821784447335059322', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.test.tsx', - hash: '3842149846104916172', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.tsx', - hash: '1076682495847369815', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/InteractionTagPrimary.types.ts', - hash: '9283581625076046764', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/index.ts', - hash: '9669082753145957501', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/renderInteractionTagPrimary.tsx', - hash: '4745226362693984168', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/useInteractionTagPrimary.ts', - hash: '9872086138500406659', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagPrimary/useInteractionTagPrimaryStyles.styles.ts', - hash: '4030905491761244906', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.test.tsx', - hash: '16228802968407103171', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.tsx', - hash: '2448716909616843548', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/InteractionTagSecondary.types.ts', - hash: '6736225241350796857', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/index.ts', - hash: '7102847806939032650', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/renderInteractionTagSecondary.tsx', - hash: '3049407018416866218', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/useInteractionTagSecondary.tsx', - hash: '13926257627148833119', - }, - { - file: 'packages/react-components/react-tags/src/components/InteractionTagSecondary/useInteractionTagSecondaryStyles.styles.ts', - hash: '13474997088340994505', - }, - { file: 'packages/react-components/react-tags/src/components/Tag/Tag.test.tsx', hash: '5880691168325391715' }, - { file: 'packages/react-components/react-tags/src/components/Tag/Tag.tsx', hash: '13044814626181179943' }, - { file: 'packages/react-components/react-tags/src/components/Tag/Tag.types.ts', hash: '3362487479164759445' }, - { file: 'packages/react-components/react-tags/src/components/Tag/index.ts', hash: '13324190693234466903' }, - { file: 'packages/react-components/react-tags/src/components/Tag/renderTag.tsx', hash: '14357471753040999319' }, - { file: 'packages/react-components/react-tags/src/components/Tag/useTag.test.tsx', hash: '7838179506645271588' }, - { file: 'packages/react-components/react-tags/src/components/Tag/useTag.tsx', hash: '6625208145382546803' }, - { - file: 'packages/react-components/react-tags/src/components/Tag/useTagStyles.styles.ts', - hash: '18039718330512640670', - }, - { - file: 'packages/react-components/react-tags/src/components/TagGroup/TagGroup.cy.tsx', - hash: '12274824442453552339', - }, - { - file: 'packages/react-components/react-tags/src/components/TagGroup/TagGroup.test.tsx', - hash: '1229481110407317788', - }, - { - file: 'packages/react-components/react-tags/src/components/TagGroup/TagGroup.tsx', - hash: '17830583590301202997', - }, - { - file: 'packages/react-components/react-tags/src/components/TagGroup/TagGroup.types.ts', - hash: '10915367910465333863', - }, - { file: 'packages/react-components/react-tags/src/components/TagGroup/index.ts', hash: '6068868025557275912' }, - { - file: 'packages/react-components/react-tags/src/components/TagGroup/renderTagGroup.tsx', - hash: '8785077840389673202', - }, - { - file: 'packages/react-components/react-tags/src/components/TagGroup/useTagGroup.ts', - hash: '14679630283213287791', - }, - { - file: 'packages/react-components/react-tags/src/components/TagGroup/useTagGroupContextValues.ts', - hash: '8227330079283938096', - }, - { - file: 'packages/react-components/react-tags/src/components/TagGroup/useTagGroupStyles.styles.ts', - hash: '7778412192044924650', - }, - { - file: 'packages/react-components/react-tags/src/contexts/interactionTagContext.tsx', - hash: '2243187516882251719', - }, - { file: 'packages/react-components/react-tags/src/contexts/tagGroupContext.tsx', hash: '12895731128273514711' }, - { file: 'packages/react-components/react-tags/src/index.ts', hash: '4735439958633325990' }, - { file: 'packages/react-components/react-tags/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { file: 'packages/react-components/react-tags/src/utils/index.ts', hash: '3821017355254528299' }, - { file: 'packages/react-components/react-tags/src/utils/types.ts', hash: '596369915833561848' }, - { - file: 'packages/react-components/react-tags/src/utils/useTagAvatarContextValues.ts', - hash: '8470255531493033889', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagAppearance.stories.tsx', - hash: '15179750862216411333', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagBestPractices.md', - hash: '8376548529359937030', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagDefault.stories.tsx', - hash: '2681683984692337791', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagDescription.md', - hash: '12243047500544241920', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagDisabled.stories.tsx', - hash: '9839825437772271568', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagDismiss.stories.tsx', - hash: '494691391610982935', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagHasPrimaryAction.stories.tsx', - hash: '15611238270398355789', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagIcon.stories.tsx', - hash: '12852002179133268371', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagMedia.md', - hash: '4762879944479477719', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagMedia.stories.tsx', - hash: '10949724879323552658', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagSecondaryText.stories.tsx', - hash: '3604279324954000926', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagShape.stories.tsx', - hash: '10907466358493935001', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/InteractionTagSize.stories.tsx', - hash: '10016659096879367027', - }, - { - file: 'packages/react-components/react-tags/stories/InteractionTag/index.stories.tsx', - hash: '5827689478757246692', - }, - { - file: 'packages/react-components/react-tags/stories/Tag/TagAppearance.stories.tsx', - hash: '3919694861981977634', - }, - { file: 'packages/react-components/react-tags/stories/Tag/TagBestPractices.md', hash: '12858297417514368292' }, - { file: 'packages/react-components/react-tags/stories/Tag/TagDefault.stories.tsx', hash: '17713833537975864762' }, - { file: 'packages/react-components/react-tags/stories/Tag/TagDescription.md', hash: '7715548073631177926' }, - { - file: 'packages/react-components/react-tags/stories/Tag/TagDisabled.stories.tsx', - hash: '16500515061880366924', - }, - { file: 'packages/react-components/react-tags/stories/Tag/TagDismiss.stories.tsx', hash: '17508285979156894864' }, - { file: 'packages/react-components/react-tags/stories/Tag/TagIcon.stories.tsx', hash: '3059091904526791471' }, - { file: 'packages/react-components/react-tags/stories/Tag/TagMedia.stories.tsx', hash: '3760481520461679314' }, - { - file: 'packages/react-components/react-tags/stories/Tag/TagSecondaryText.stories.tsx', - hash: '16438231938445811823', - }, - { file: 'packages/react-components/react-tags/stories/Tag/TagShape.stories.tsx', hash: '15631510183237341762' }, - { file: 'packages/react-components/react-tags/stories/Tag/TagSize.stories.tsx', hash: '10054136554160599561' }, - { file: 'packages/react-components/react-tags/stories/Tag/index.stories.tsx', hash: '605437294753359930' }, - { - file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupBestPractices.md', - hash: '4295534675539626496', - }, - { - file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupDefault.stories.tsx', - hash: '11205413669957950629', - }, - { - file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupDescription.md', - hash: '8733036749501389712', - }, - { - file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupDismiss.stories.tsx', - hash: '2371595253438866621', - }, - { - file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupOverflow.stories.tsx', - hash: '6620702853877345768', - }, - { - file: 'packages/react-components/react-tags/stories/TagGroup/TagGroupSizes.stories.tsx', - hash: '48436092750364017', - }, - { file: 'packages/react-components/react-tags/stories/TagGroup/index.stories.tsx', hash: '8148050799531276468' }, - { file: 'packages/react-components/react-tags/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-tags/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-tags/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-tags/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-icons-northstar': [ - { file: 'packages/fluentui/react-icons-northstar/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-icons-northstar/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-icons-northstar/README.md', hash: '13053638770459338997' }, - { file: 'packages/fluentui/react-icons-northstar/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-icons-northstar/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-icons-northstar/jest.config.js', hash: '3465031014798019550' }, - { - file: 'packages/fluentui/react-icons-northstar/package.json', - hash: '5931091629939874207', - deps: [ - 'npm:@babel/runtime', - '@fluentui/accessibility', - '@fluentui/react-bindings', - '@fluentui/styles', - 'npm:classnames', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:@types/classnames', - 'npm:lerna-alias', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-icons-northstar/project.json', hash: '2673713012878548677' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/AcceptIcon.tsx', hash: '9767330132588126669' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/AccessibilityIcon.tsx', - hash: '3275560913924857013', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/AddIcon.tsx', hash: '11874085924420919079' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/AppFolderIcon.tsx', - hash: '10312148648643735481', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ApprovalsAppbarIcon.tsx', - hash: '1745626736151144385', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/AppsIcon.tsx', hash: '15069474369474712622' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ArchiveIcon.tsx', hash: '11398532143434039339' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ArrowDownIcon.tsx', - hash: '16325271689891166155', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ArrowLeftIcon.tsx', hash: '9221250842331686875' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ArrowRightIcon.tsx', - hash: '2730967691145257400', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ArrowSortIcon.tsx', hash: '6094461093423187241' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ArrowSyncIcon.tsx', - hash: '15766013812821710444', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ArrowUpIcon.tsx', hash: '4939672875425989341' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/AttendeeIcon.tsx', hash: '14285830896017378869' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/AudienceIcon.tsx', hash: '12250647430848484332' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/AudioLoadingIcon.tsx', - hash: '8012047090057191654', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/AudioOffIcon.tsx', hash: '946032617944927617' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/BanIcon.tsx', hash: '593464898756515555' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/BellIcon.tsx', hash: '11033097208023853390' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/BellSlashIcon.tsx', hash: '7591509515225408307' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/BellSnoozeIcon.tsx', - hash: '6369921584818208554', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/BluetoothIcon.tsx', - hash: '15334535281749150230', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/BoldIcon.tsx', hash: '8003201425970891211' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/BookmarkIcon.tsx', hash: '15690454909475339837' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/BreakoutRoomIcon.tsx', - hash: '17054383108180468005', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/BriefcaseIcon.tsx', - hash: '10478364328091420482', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/BroadcastIcon.tsx', hash: '3981239034303992809' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/BroadcastViewFullscreenIcon.tsx', - hash: '4249857887748612938', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/BroadcastViewLeftIcon.tsx', - hash: '14309947931521573574', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/BuildingIcon.tsx', hash: '9863410715723811575' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/BulletsIcon.tsx', hash: '3553116472011548812' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CalendarAgendaIcon.tsx', - hash: '13486160168791571840', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CalendarIcon.tsx', hash: '7908939309068871488' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CalendarWorkWeekIcon.tsx', - hash: '15012893111927043994', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallBlockedIcon.tsx', - hash: '11812511166458128842', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallControlCloseTrayIcon.tsx', - hash: '13321761086561697169', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallControlPresentNewIcon.tsx', - hash: '12300930260009159328', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallControlReleaseIcon.tsx', - hash: '11474115645162748616', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallControlRequestIcon.tsx', - hash: '17337124854225199349', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallControlShareIcon.tsx', - hash: '13243426694714208518', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallControlStopPresentingNewIcon.tsx', - hash: '6923024728426196189', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallDialpadIcon.tsx', - hash: '18173546005506602826', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CallEndIcon.tsx', hash: '6807397170524399524' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CallIcon.tsx', hash: '13101657994810936681' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallMissedLineIcon.tsx', - hash: '14382010946281942185', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallParkingIcon.tsx', - hash: '9041753200234911760', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CallPstnIcon.tsx', hash: '892374354652057083' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallRecordingIcon.tsx', - hash: '1338496657346481805', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CallVideoIcon.tsx', hash: '1747790287814309140' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CallVideoOffIcon.tsx', - hash: '5569040523138575316', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CameraIcon.tsx', hash: '17772892043983818358' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CanvasAddPageIcon.tsx', - hash: '11563591390427260327', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CartIcon.tsx', hash: '11772369317245466398' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CastingIcon.tsx', hash: '2794796235077473811' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ChannelShareIcon.tsx', - hash: '133952854926906356', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ChatIcon.tsx', hash: '5891127100155450348' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ChatOffIcon.tsx', hash: '513054842676894271' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CheckmarkCircleIcon.tsx', - hash: '13370034776084101658', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ChevronDownIcon.tsx', - hash: '10679410130761146727', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ChevronDownMediumIcon.tsx', - hash: '9881308937778058022', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ChevronEndIcon.tsx', - hash: '14157278717926177046', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ChevronEndMediumIcon.tsx', - hash: '9609092908967679756', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ChevronStartIcon.tsx', - hash: '10619632485351580681', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CircleIcon.tsx', hash: '17759723735001282331' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ClipboardCopiedToIcon.tsx', - hash: '17269187814463163724', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CloseIcon.tsx', hash: '5883069793501621836' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ClosedCaptionsIcon.tsx', - hash: '8588005992574030043', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CodeSnippetIcon.tsx', - hash: '3266125077547908119', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/CollapseIcon.tsx', hash: '16990795667701224833' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CompanionIcon.tsx', - hash: '16903738527604991088', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ComposeIcon.tsx', hash: '16911298295284661493' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ComputerAudioIcon.tsx', - hash: '18002388544616103388', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ComputerAudioOffIcon.tsx', - hash: '8092469846987677739', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ConferenceRoomDeviceIcon.tsx', - hash: '6522927528427907880', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ContactCardIcon.tsx', - hash: '5649466021280702633', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ContactGroupCallIcon.tsx', - hash: '5357983575802334698', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ContactGroupIcon.tsx', - hash: '967883254810176102', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ContentIcon.tsx', hash: '10364024546703268814' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ContentViewGalleryIcon.tsx', - hash: '16956658867308258911', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/CustomerHubIcon.tsx', - hash: '13327677392159958520', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/DesktopIcon.tsx', hash: '2290498536661256806' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/DoorArrowLeftIcon.tsx', - hash: '11232970802031723674', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/DownloadIcon.tsx', hash: '9696663328514966811' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/EditIcon.tsx', hash: '2445579134889833192' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/EmailIcon.tsx', hash: '1358538480708497908' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/EmailWithDotIcon.tsx', - hash: '7629466379447640863', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/EmojiAddIcon.tsx', hash: '16634487114604226561' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/EmojiIcon.tsx', hash: '13544428296413020078' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/EmojiSadIcon.tsx', hash: '16526152327799207932' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/EmojiSurprisedIcon.tsx', - hash: '17468242374398486398', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ErrorIcon.tsx', hash: '8264038088873975391' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ExcelColorIcon.tsx', - hash: '5719703865902159961', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ExcelIcon.tsx', hash: '3091121359113518045' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ExclamationCircleIcon.tsx', - hash: '5273179690351575014', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ExclamationTriangleIcon.tsx', - hash: '7219678797532383065', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ExpandIcon.tsx', hash: '3478030962395266149' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/EyeFriendlierIcon.tsx', - hash: '12541816809773727614', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/EyeIcon.tsx', hash: '5482205975972830342' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/EyeSlashIcon.tsx', hash: '14239087446261045134' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesAftereffectsIcon.tsx', - hash: '15234785057276085979', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesCodeIcon.tsx', - hash: '14171478505845468304', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesEmptyIcon.tsx', - hash: '1160213663175422320', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesErrorIcon.tsx', - hash: '11320107944649831249', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesFlashIcon.tsx', - hash: '7938923755537745595', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesGenericColoredIcon.tsx', - hash: '10103625455006717209', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FilesGifIcon.tsx', hash: '4457380569030031220' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesHtmlColoredIcon.tsx', - hash: '18194598359668222388', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesIllustratorIcon.tsx', - hash: '9403246467131235895', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FilesImageIcon.tsx', hash: '350148135600628262' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesIndesignIcon.tsx', - hash: '5071194216838704901', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesOneNoteIcon.tsx', - hash: '4576820073937361616', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesPdfColoredIcon.tsx', - hash: '11369050801446260972', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FilesPdfIcon.tsx', hash: '15222484695233621043' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesPhotoshopIcon.tsx', - hash: '8179122537363325570', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesPictureColoredIcon.tsx', - hash: '10282255315995378774', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesSketchIcon.tsx', - hash: '9747966208026329651', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesSoundIcon.tsx', - hash: '13188911702512882018', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesTextColoredIcon.tsx', - hash: '12525606082974032738', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FilesTxtIcon.tsx', hash: '11269954298617713317' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesUploadIcon.tsx', - hash: '9955614448869579325', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/FilesVideoIcon.tsx', - hash: '11855260788037384210', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FilesZipIcon.tsx', hash: '1368690835135742044' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FilterIcon.tsx', hash: '10501478521564293561' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FlagIcon.tsx', hash: '18309094007557461671' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FluidFileIcon.tsx', hash: '4818272200759283627' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FluidIcon.tsx', hash: '10327622295325099017' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FontColorIcon.tsx', hash: '1744684789516328003' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FontSizeIcon.tsx', hash: '38683636174248486' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/FormatIcon.tsx', hash: '1137153821765498269' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/GalleryIcon.tsx', hash: '14131618810771546774' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/GalleryNewIcon.tsx', - hash: '16132451069627052985', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/GalleryNewLargeIcon.tsx', - hash: '12076589306496788140', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/GeofenceArrivesIcon.tsx', - hash: '4186510871357557845', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/GeofenceArrivesOrLeavesIcon.tsx', - hash: '9536982863141470609', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/GeofenceLeavesIcon.tsx', - hash: '15064869923803265193', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/GiphyIcon.tsx', hash: '8256504984347443867' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/GlassesIcon.tsx', hash: '18325767604386777180' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/GlobeIcon.tsx', hash: '9653404386244516448' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/GridIcon.tsx', hash: '1969174477760596194' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/GroupVideoCallGridIcon.tsx', - hash: '1585568485104188562', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/HandIcon.tsx', hash: '16025566820558289292' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/HeadsetIcon.tsx', hash: '16153525151219761413' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/HighlightIcon.tsx', - hash: '15885863172528029399', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/HorizontalRuleIcon.tsx', - hash: '15541103414851377406', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ImageAltTextIcon.tsx', - hash: '13059579967633397450', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ImageLibraryIcon.tsx', - hash: '7278742991513259939', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ImageUnavailableIcon.tsx', - hash: '15118908578271240233', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/IndentIcon.tsx', hash: '3154547386263760649' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/InfoIcon.tsx', hash: '7499704622321949637' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ItalicIcon.tsx', hash: '5523477001534623087' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LeaveIcon.tsx', hash: '9574849704589104795' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LightningIcon.tsx', hash: '1795826485660131267' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LikeIcon.tsx', hash: '7063557235739393599' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LinkIcon.tsx', hash: '9504475344765367420' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LinkedInIcon.tsx', hash: '10057424091842677050' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ListIcon.tsx', hash: '1016000382589170647' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LiveIcon.tsx', hash: '5488215966531474142' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LiveOffIcon.tsx', hash: '16575361601864172959' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LocationIcon.tsx', hash: '8780492650668547069' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/LockIcon.tsx', hash: '4581542167815224919' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MarkAsUnreadIcon.tsx', - hash: '8550877769355651073', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MeetingNewIcon.tsx', - hash: '13618933089732729211', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MeetingTimeIcon.tsx', - hash: '3462760770398000331', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MegaphoneIcon.tsx', - hash: '13477115110126199760', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/MentionIcon.tsx', hash: '10671365619704977659' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/MenuIcon.tsx', hash: '15054434194038008137' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MergeCallsIcon.tsx', - hash: '15676851599195598115', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MessageSeenIcon.tsx', - hash: '5696795887902525033', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/MicIcon.tsx', hash: '10360671465174889588' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/MicOffIcon.tsx', hash: '7040357597540731851' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/MicPulseIcon.tsx', hash: '7164242050306518142' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MicPulseOffIcon.tsx', - hash: '7613420464512654680', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MicrophoneDisabledIcon.tsx', - hash: '13505275375360955053', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/MicrosoftStreamIcon.tsx', - hash: '12399236842930770166', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/MoleculeIcon.tsx', hash: '3716543851177200931' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/MoreIcon.tsx', hash: '16908136912455579545' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/NoPresenterIcon.tsx', - hash: '15973919177186017219', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/NotepadPersonIcon.tsx', - hash: '17977894304893167867', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/NotesIcon.tsx', hash: '16759640413579287848' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/NotificationsMutedIcon.tsx', - hash: '5875687961337145635', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/NumberListIcon.tsx', - hash: '1882868947842711159', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/NumberSymbolIcon.tsx', - hash: '16604922701678220517', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/OcrOffIcon.tsx', hash: '7440654068161564006' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/OcrOnIcon.tsx', hash: '12156383114689500379' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/OneDriveIcon.tsx', hash: '16545193094314310937' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/OneNoteColorIcon.tsx', - hash: '6922862962983788010', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/OneNoteIcon.tsx', hash: '2068993209377571963' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/OneNoteMonoIcon.tsx', - hash: '2343842219262811176', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/OpenOutsideIcon.tsx', - hash: '9092134134437612636', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/OptionsIcon.tsx', hash: '18060907312452018719' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/OutdentIcon.tsx', hash: '18265199933622407843' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/OutlookColorIcon.tsx', - hash: '5105630249207417895', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PageFitIcon.tsx', hash: '16900179939925437545' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PanoramaIcon.tsx', hash: '17105386830337265958' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/PanoramaOffIcon.tsx', - hash: '9219110978377875691', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PaperclipIcon.tsx', hash: '4239239177416059508' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ParticipantAddIcon.tsx', - hash: '7735796838205869154', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ParticipantRemoveIcon.tsx', - hash: '11325167042710733689', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PauseIcon.tsx', hash: '13917837797811056510' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/PauseThickIcon.tsx', - hash: '16173831918942597630', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PersonIcon.tsx', hash: '18052122118522564842' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/PhoneArrowIcon.tsx', - hash: '11801537605593537815', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/PhoneClockIcon.tsx', - hash: '6533652891516124895', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PhoneIcon.tsx', hash: '3382340320172925285' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PlayIcon.tsx', hash: '13165464782933234218' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PlugsIcon.tsx', hash: '11855916397961252431' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PollIcon.tsx', hash: '7075189384486642197' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PopupIcon.tsx', hash: '2065406050477623398' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/PowerPointColorIcon.tsx', - hash: '17874363582960773501', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/PowerPointIcon.tsx', - hash: '16137608827629885801', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/PresenceAvailableIcon.tsx', - hash: '9990957245604778132', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/PresenceStrokeIcon.tsx', - hash: '17824949820148605299', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/PresenterIcon.tsx', hash: '1698604231272056754' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/QnaIcon.tsx', hash: '8914778651417679270' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/QuestionCircleIcon.tsx', - hash: '16459415809426073717', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/QuoteIcon.tsx', hash: '4434162689560226434' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/RadioButtonIcon.tsx', - hash: '5290220217869871570', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/RaiseHandColoredIcon.tsx', - hash: '13933793441697151098', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/RaiseHandDisabledIcon.tsx', - hash: '16001206708325701191', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/RaiseHandIcon.tsx', - hash: '10779312542230995138', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ReactionsIcon.tsx', hash: '6999409792852000504' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ReadAloudIcon.tsx', - hash: '11043178403681303772', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/RedbangIcon.tsx', hash: '16705215518281200085' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/RedoIcon.tsx', hash: '14558141566220753769' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/RemoveFormatIcon.tsx', - hash: '18387780868820154748', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ReplyIcon.tsx', hash: '9946554331864851333' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/RetryIcon.tsx', hash: '3854698078201679751' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/RobotIcon.tsx', hash: '2840301155558261180' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/SaveIcon.tsx', hash: '10241612031127787183' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ScreencastIcon.tsx', - hash: '8563482560859964140', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ScreenshareIcon.tsx', - hash: '3541086519960619212', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/SearchIcon.tsx', hash: '16949364921472168680' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/SendIcon.tsx', hash: '16565582621699205586' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/SettingsAudioIcon.tsx', - hash: '8455142933026254255', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/SettingsIcon.tsx', hash: '7451909565077434790' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ShareAltIcon.tsx', hash: '15780648612269482585' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ShareGenericIcon.tsx', - hash: '10938679578550444171', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ShareLocationIcon.tsx', - hash: '3246386558480608952', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ShareToIcon.tsx', hash: '8053903581216909211' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ShieldKeyholeIcon.tsx', - hash: '14317516207879380558', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/Shift24hIcon.tsx', hash: '1576029036422660201' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ShiftActivityIcon.tsx', - hash: '12476450379725202270', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/SignatureIcon.tsx', hash: '6069221599925336926' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/SkypeColorIcon.tsx', - hash: '11964495383061464903', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/SkypeLogoIcon.tsx', - hash: '16297684578405621843', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/SpeakerMuteIcon.tsx', - hash: '10273594272555337023', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/SpeakerPersonIcon.tsx', - hash: '7942492364252775925', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/SpotlightIcon.tsx', - hash: '16387817515735522462', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/SpotlightStopIcon.tsx', - hash: '13011299275377774274', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/StarIcon.tsx', hash: '4739112390899235218' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/StickerIcon.tsx', hash: '9345777383730561198' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/StrikeIcon.tsx', hash: '385334962548583817' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/SubtractIcon.tsx', hash: '8703089811411508672' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/SurveyIcon.tsx', hash: '10594815324984023274' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/SwitchCameraIcon.tsx', - hash: '9644599959041167274', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/SyncIcon.tsx', hash: '3421771998885069070' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TableAddIcon.tsx', hash: '11081295009511690813' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TableDeleteIcon.tsx', - hash: '11267456222392107793', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TableIcon.tsx', hash: '3122419123285994046' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TabsIcon.tsx', hash: '7652898168959998238' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TagIcon.tsx', hash: '17937754368960392939' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TaskListIcon.tsx', hash: '1664418548428026528' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TeamCreateIcon.tsx', hash: '270974819210504825' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TeamsIcon.tsx', hash: '7949896722513612029' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TeamsMonochromeIcon.tsx', - hash: '14992713721668347008', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TenantPersonalIcon.tsx', - hash: '6954339634002974222', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TenantWorkIcon.tsx', - hash: '8507358463993447821', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TextBulletListTreeIcon.tsx', - hash: '3709655949577500987', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ThumbtackIcon.tsx', hash: '2709424317170429241' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/ThumbtackSlashIcon.tsx', - hash: '14540796032563155748', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TiltPanZoomIcon.tsx', - hash: '2371688619901089057', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ToDoListIcon.tsx', hash: '18434469593499531550' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TranscriptIcon.tsx', - hash: '18087935866566701673', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TranslationIcon.tsx', - hash: '11755231279667369736', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TrashCanIcon.tsx', hash: '1686967991801065474' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TriangleDownIcon.tsx', - hash: '3886014635713707142', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TriangleEndIcon.tsx', - hash: '3047775475417718304', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/TriangleUpIcon.tsx', - hash: '17735367172971239835', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TvIcon.tsx', hash: '10048426132113526467' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/TwitterIcon.tsx', hash: '1248041826801414084' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/UnderlineIcon.tsx', - hash: '11124854209253009616', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/UndoIcon.tsx', hash: '15462322573799626280' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/UrgentIcon.tsx', hash: '4744484572233672521' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/UserBlurIcon.tsx', hash: '11390409467504388733' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/UserFriendsIcon.tsx', - hash: '17291066650707229650', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/UserPhoneIcon.tsx', hash: '8901679073035539244' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/VideoCameraEmphasisIcon.tsx', - hash: '6451348667520126362', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/VideoLoadingIcon.tsx', - hash: '353970034285485305', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/VideoPersonSparkleIcon.tsx', - hash: '16532618699662540314', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/VideoProhibitedIcon.tsx', - hash: '6999552347189846573', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/VideomailIcon.tsx', - hash: '12381422681028134585', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/VisioColorIcon.tsx', - hash: '5000929538397412882', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/VisioIcon.tsx', hash: '17345353077477829764' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/VolumeDownIcon.tsx', - hash: '8043599976898455867', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/VolumeIcon.tsx', hash: '4727927519744567505' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/VolumeUpIcon.tsx', hash: '17041260730894082739' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/WandIcon.tsx', hash: '204054122499858724' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/WhiteboardIcon.tsx', - hash: '12517907840141658211', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/WindowMaximizeIcon.tsx', - hash: '6107504875620614835', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/WindowMinimizeIcon.tsx', - hash: '8004388668609149200', - }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/WindowRestoreIcon.tsx', - hash: '5810889239601404730', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/WordColorIcon.tsx', hash: '1919537979474435213' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/WordIcon.tsx', hash: '7577785938802895256' }, - { - file: 'packages/fluentui/react-icons-northstar/src/components/WorkOrSchoolIcon.tsx', - hash: '13892222244017065102', - }, - { file: 'packages/fluentui/react-icons-northstar/src/components/YammerIcon.tsx', hash: '7970035682296632848' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ZoomInIcon.tsx', hash: '1687715738875566323' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ZoomOutIcon.tsx', hash: '11548925219174581327' }, - { file: 'packages/fluentui/react-icons-northstar/src/components/ZoomToFitIcon.tsx', hash: '4663294501472986168' }, - { file: 'packages/fluentui/react-icons-northstar/src/index.ts', hash: '10079002047266926316' }, - { file: 'packages/fluentui/react-icons-northstar/src/utils/createSvgIcon.ts', hash: '8789639293750363611' }, - { file: 'packages/fluentui/react-icons-northstar/src/utils/iconClassNames.ts', hash: '11445529543360569059' }, - { file: 'packages/fluentui/react-icons-northstar/src/utils/types.ts', hash: '15588436095144492247' }, - { - file: 'packages/fluentui/react-icons-northstar/test/components/components-test.tsx', - hash: '16260613535254906323', - }, - { - file: 'packages/fluentui/react-icons-northstar/test/utils/createSvgIcon-test.tsx', - hash: '15904652190730318413', - }, - { file: 'packages/fluentui/react-icons-northstar/tsconfig.json', hash: '15943827806802977490' }, - ], - '@fluentui/local-sandbox': [ - { file: 'packages/fluentui/local-sandbox/.browserslistrc', hash: '600685962376487384' }, - { file: 'packages/fluentui/local-sandbox/README.md', hash: '11541093473991115874' }, - { file: 'packages/fluentui/local-sandbox/babel.config.js', hash: '3569817794842814983' }, - { - file: 'packages/fluentui/local-sandbox/package.json', - hash: '15957460845464361736', - deps: ['@fluentui/react-northstar', '@fluentui/scripts-babel'], - }, - { file: 'packages/fluentui/local-sandbox/project.json', hash: '8676907972640714240' }, - { file: 'packages/fluentui/local-sandbox/public/index.html', hash: '11568775693172797411' }, - { file: 'packages/fluentui/local-sandbox/server.js', hash: '18020281195852225446' }, - { file: 'packages/fluentui/local-sandbox/src/index.tsx', hash: '14096238598856045997' }, - { file: 'packages/fluentui/local-sandbox/tsconfig.json', hash: '12941930694457671903' }, - { file: 'packages/fluentui/local-sandbox/webpack.config.js', hash: '4777308610290967055' }, - ], - '@fluentui/react-builder': [ - { file: 'packages/fluentui/react-builder/.eslintrc.json', hash: '14831957113987152077' }, - { file: 'packages/fluentui/react-builder/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-builder/README.md', hash: '10016986543265046541' }, - { file: 'packages/fluentui/react-builder/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-builder/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-builder/jest.config.js', hash: '10802544048614070297' }, - { - file: 'packages/fluentui/react-builder/package.json', - hash: '9631564501580531266', - deps: [ - '@fluentui/accessibility', - '@fluentui/code-sandbox', - '@fluentui/docs-components', - '@fluentui/react-component-event-listener', - '@fluentui/react-component-ref', - '@fluentui/react-icons-northstar', - '@fluentui/react-northstar', - 'npm:axe-core', - 'npm:immer', - 'npm:lodash', - 'npm:lz-string', - 'npm:react-document-title', - 'npm:react-frame-component', - 'npm:react-is', - 'npm:use-immer', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:@types/react-frame-component', - 'npm:lerna-alias', - 'npm:@babel/standalone', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-builder/project.json', hash: '204489873756000033' }, - { file: 'packages/fluentui/react-builder/src/accessibility/types.ts', hash: '929935902224512126' }, - { - file: 'packages/fluentui/react-builder/src/componentInfo/componentInfoContext.ts', - hash: '12952343612439281311', - }, - { file: 'packages/fluentui/react-builder/src/componentInfo/types.ts', hash: '10871122169681405192' }, - { file: 'packages/fluentui/react-builder/src/components/Anatomy.tsx', hash: '9559709697063752825' }, - { file: 'packages/fluentui/react-builder/src/components/BrowserWindow.tsx', hash: '1305587436928706280' }, - { file: 'packages/fluentui/react-builder/src/components/Builder.tsx', hash: '11101607489312975810' }, - { file: 'packages/fluentui/react-builder/src/components/Canvas.tsx', hash: '8782503380612329753' }, - { file: 'packages/fluentui/react-builder/src/components/CanvasWindow.tsx', hash: '9073503633717464783' }, - { file: 'packages/fluentui/react-builder/src/components/CodeEditor.tsx', hash: '623657732253296337' }, - { file: 'packages/fluentui/react-builder/src/components/ComponentList.tsx', hash: '14364923839728311600' }, - { - file: 'packages/fluentui/react-builder/src/components/ComponentPropertiesPanel.tsx', - hash: '5268511189036678893', - }, - { file: 'packages/fluentui/react-builder/src/components/ComponentTree.tsx', hash: '7846923338340185906' }, - { file: 'packages/fluentui/react-builder/src/components/DebugButtons.tsx', hash: '12509122275448910125' }, - { file: 'packages/fluentui/react-builder/src/components/DebugFrame.tsx', hash: '10043329517725525136' }, - { file: 'packages/fluentui/react-builder/src/components/Description.tsx', hash: '9567475832531969499' }, - { file: 'packages/fluentui/react-builder/src/components/Designer.tsx', hash: '13036707724185814545' }, - { file: 'packages/fluentui/react-builder/src/components/DropSelector.tsx', hash: '3542664213591641212' }, - { file: 'packages/fluentui/react-builder/src/components/ErrorBoundary.tsx', hash: '11122869423617163119' }, - { file: 'packages/fluentui/react-builder/src/components/ErrorPanel.tsx', hash: '9164703090634963658' }, - { file: 'packages/fluentui/react-builder/src/components/FullScreenPreview.tsx', hash: '16011726969178031086' }, - { file: 'packages/fluentui/react-builder/src/components/GetShareableLink.tsx', hash: '15433656223699742764' }, - { file: 'packages/fluentui/react-builder/src/components/InsertComponent.tsx', hash: '9906566956658338491' }, - { file: 'packages/fluentui/react-builder/src/components/Knobs.tsx', hash: '2567043305485912803' }, - { file: 'packages/fluentui/react-builder/src/components/MultiTypeKnob.tsx', hash: '2930992216485547340' }, - { file: 'packages/fluentui/react-builder/src/components/NavBarItem.tsx', hash: '6913624690736282433' }, - { file: 'packages/fluentui/react-builder/src/components/NavigationPanel.tsx', hash: '9800200967616636940' }, - { file: 'packages/fluentui/react-builder/src/components/ReaderNarration.tsx', hash: '16220487698280846067' }, - { file: 'packages/fluentui/react-builder/src/components/Toolbar.tsx', hash: '543702787129451118' }, - { - file: 'packages/fluentui/react-builder/src/components/tabPanels/AccessibilityTabPanel.tsx', - hash: '13590036990892215305', - }, - { - file: 'packages/fluentui/react-builder/src/components/tabPanels/AddTabPanel.tsx', - hash: '11042719876676903669', - }, - { - file: 'packages/fluentui/react-builder/src/components/tabPanels/NavigationTabPanel.tsx', - hash: '9858807996756415860', - }, - { file: 'packages/fluentui/react-builder/src/components/types.ts', hash: '1832743028101149231' }, - { file: 'packages/fluentui/react-builder/src/config.tsx', hash: '5814245327475203313' }, - { file: 'packages/fluentui/react-builder/src/hooks/index.ts', hash: '11226509319231205349' }, - { file: 'packages/fluentui/react-builder/src/hooks/runAxe.ts', hash: '8860485983799780375' }, - { file: 'packages/fluentui/react-builder/src/hooks/useMode.ts', hash: '17910004894933185109' }, - { file: 'packages/fluentui/react-builder/src/index.ts', hash: '7302446320173355624' }, - { file: 'packages/fluentui/react-builder/src/narration/NarrationComputer.tsx', hash: '3889128191066894050' }, - { file: 'packages/fluentui/react-builder/src/narration/SRNC-Definitions.tsx', hash: '8320166329157302802' }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-ElementStates-Win_JAWS.tsx', - hash: '6332595224770733718', - }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-ElementTypes-Win_JAWS.tsx', - hash: '7650259396047917910', - }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-ElementTypes-Win_JAWS_VPC.tsx', - hash: '1312765730158700516', - }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-LandmarksAndGroups-Win_JAWS.tsx', - hash: '4029867906059143388', - }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-LandmarksAndGroups-Win_JAWS_VPC.tsx', - hash: '2972313100645343181', - }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-ReadingOrder-Win_JAWS.tsx', - hash: '11595690551124846854', - }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-ReadingOrder-Win_JAWS_VPC.tsx', - hash: '15637529703244180336', - }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-StateRules-Win_JAWS.tsx', - hash: '15839976440027101995', - }, - { - file: 'packages/fluentui/react-builder/src/narration/SRNC-StateRules-Win_JAWS_VPC.tsx', - hash: '16696028047627629469', - }, - { file: 'packages/fluentui/react-builder/src/narration/SRNC-Usages-Win_JAWS.tsx', hash: '3454242724591971760' }, - { file: 'packages/fluentui/react-builder/src/state/index.tsx', hash: '2685696966902878094' }, - { file: 'packages/fluentui/react-builder/src/state/state.ts', hash: '14164046665851924982' }, - { file: 'packages/fluentui/react-builder/src/state/utils.ts', hash: '2393629447381052912' }, - { file: 'packages/fluentui/react-builder/src/utils/codeToTree.ts', hash: '13828598921945434473' }, - { file: 'packages/fluentui/react-builder/src/utils/getUUID.ts', hash: '10027271916887760783' }, - { file: 'packages/fluentui/react-builder/src/utils/treeStore.ts', hash: '3825005232368357598' }, - { file: 'packages/fluentui/react-builder/test/config-test.tsx', hash: '2603837748451585594' }, - { file: 'packages/fluentui/react-builder/test/utils/treeStore-test.ts', hash: '7324853206959097484' }, - { file: 'packages/fluentui/react-builder/todo.md', hash: '8222318070280973140' }, - { file: 'packages/fluentui/react-builder/tsconfig.json', hash: '4419506872376571172' }, - ], - '@fluentui/e2e': [ - { file: 'packages/fluentui/e2e/.eslintrc.json', hash: '4582290292281873136' }, - { file: 'packages/fluentui/e2e/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/e2e/README.md', hash: '7359165508010786092' }, - { file: 'packages/fluentui/e2e/babel.config.js', hash: '7654395597360391156' }, - { file: 'packages/fluentui/e2e/cypress/support/commands.js', hash: '4346932210195998935' }, - { file: 'packages/fluentui/e2e/cypress/support/e2e.js', hash: '8958390892426780845' }, - { file: 'packages/fluentui/e2e/cypress/support/index.d.ts', hash: '1050349724913102223' }, - { file: 'packages/fluentui/e2e/cypress.config.ts', hash: '10650622636735033301' }, - { file: 'packages/fluentui/e2e/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/e2e/package.json', - hash: '12477681538209041201', - deps: [ - '@fluentui/accessibility', - '@fluentui/react', - '@fluentui/react-icons-northstar', - '@fluentui/react-northstar', - '@fluentui/react-northstar-prototypes', - 'npm:@types/react-router-dom', - 'npm:lerna-alias', - 'npm:lodash', - 'npm:react-router-dom', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - ], - }, - { file: 'packages/fluentui/e2e/project.json', hash: '16913508845340459099' }, - { file: 'packages/fluentui/e2e/server/E2EExample.tsx', hash: '3499014286167000988' }, - { file: 'packages/fluentui/e2e/server/app.tsx', hash: '16202489186045223673' }, - { file: 'packages/fluentui/e2e/server/index.html', hash: '15258269720062780830' }, - { file: 'packages/fluentui/e2e/server/routes.ts', hash: '11057375900294827994' }, - { file: 'packages/fluentui/e2e/tests/carouselClickableContent-example.tsx', hash: '4743069259029583882' }, - { file: 'packages/fluentui/e2e/tests/carouselClickableContent.spec.ts', hash: '16237255077237516656' }, - { file: 'packages/fluentui/e2e/tests/chatMessageActionMenu-example.tsx', hash: '5076963271459573150' }, - { file: 'packages/fluentui/e2e/tests/chatMessageActionMenu.spec.ts', hash: '5324476327709994437' }, - { file: 'packages/fluentui/e2e/tests/datepicker-example.tsx', hash: '1803629627979009758' }, - { file: 'packages/fluentui/e2e/tests/datepicker.spec.ts', hash: '5328620499026462603' }, - { - file: 'packages/fluentui/e2e/tests/datepickerWithControlledSelectedDate-example.tsx', - hash: '17232189297346500144', - }, - { file: 'packages/fluentui/e2e/tests/datepickerWithControlledSelectedDate.spec.ts', hash: '9972000812362213438' }, - { file: 'packages/fluentui/e2e/tests/dialog-example.tsx', hash: '14670395535679878228' }, - { file: 'packages/fluentui/e2e/tests/dialog.spec.ts', hash: '9080139584052903217' }, - { file: 'packages/fluentui/e2e/tests/dialogInDialog-example.tsx', hash: '5368077115082155956' }, - { file: 'packages/fluentui/e2e/tests/dialogInDialog.spec.ts', hash: '9403986057790407239' }, - { file: 'packages/fluentui/e2e/tests/dialogInDialogWithDropdown-example.tsx', hash: '10611038361335342361' }, - { file: 'packages/fluentui/e2e/tests/dialogInDialogWithDropdown.spec.ts', hash: '6276305052387579257' }, - { file: 'packages/fluentui/e2e/tests/dialogInPopup-example.tsx', hash: '7674716831651329345' }, - { file: 'packages/fluentui/e2e/tests/dialogInPopup.spec.ts', hash: '14897258850010389359' }, - { file: 'packages/fluentui/e2e/tests/dialogPreventScroll-example.tsx', hash: '5559084864562935041' }, - { file: 'packages/fluentui/e2e/tests/dialogPreventScroll.spec.ts', hash: '9250859085534201583' }, - { file: 'packages/fluentui/e2e/tests/dialogWithDropdown-example.tsx', hash: '9967621738597251618' }, - { file: 'packages/fluentui/e2e/tests/dialogWithDropdown.spec.ts', hash: '10460346809481457060' }, - { file: 'packages/fluentui/e2e/tests/dropdown-example.tsx', hash: '7085571512538860924' }, - { file: 'packages/fluentui/e2e/tests/dropdown.spec.ts', hash: '12180675537760796473' }, - { file: 'packages/fluentui/e2e/tests/dropdownMoveFocusOnTab-example.tsx', hash: '1590492383482503996' }, - { file: 'packages/fluentui/e2e/tests/dropdownMoveFocusOnTab.spec.ts', hash: '16366076377253442699' }, - { file: 'packages/fluentui/e2e/tests/dropdownSearch-example.tsx', hash: '2243581698923060983' }, - { file: 'packages/fluentui/e2e/tests/dropdownSearch.spec.ts', hash: '8222488631505443553' }, - { file: 'packages/fluentui/e2e/tests/fabricLayerInPopup-example.tsx', hash: '5654558685761775986' }, - { file: 'packages/fluentui/e2e/tests/fabricLayerInPopup.spec.ts', hash: '13704094458215714046' }, - { file: 'packages/fluentui/e2e/tests/menuDismissOnItemClick-example.tsx', hash: '14437376863888489746' }, - { file: 'packages/fluentui/e2e/tests/menuDismissOnItemClick.spec.ts', hash: '9686476550271301697' }, - { file: 'packages/fluentui/e2e/tests/menuDismissScroll-example.tsx', hash: '13874781962939393061' }, - { file: 'packages/fluentui/e2e/tests/menuDismissScroll.spec.ts', hash: '14223321295916642370' }, - { file: 'packages/fluentui/e2e/tests/popupClickHandling-example.tsx', hash: '13213920161361176518' }, - { file: 'packages/fluentui/e2e/tests/popupClickHandling.spec.ts', hash: '2885575729341377987' }, - { file: 'packages/fluentui/e2e/tests/popupDismissScroll-example.tsx', hash: '7328442500399212185' }, - { file: 'packages/fluentui/e2e/tests/popupDismissScroll.spec.ts', hash: '5254233567644407063' }, - { file: 'packages/fluentui/e2e/tests/popupEscHandling-example.tsx', hash: '6592433637981138545' }, - { file: 'packages/fluentui/e2e/tests/popupEscHandling.spec.ts', hash: '1420963620788681365' }, - { file: 'packages/fluentui/e2e/tests/popupIframeDismiss-example.tsx', hash: '16346724390930618534' }, - { file: 'packages/fluentui/e2e/tests/popupIframeDismiss.spec.ts', hash: '6795602607780227830' }, - { file: 'packages/fluentui/e2e/tests/popupIframeInContent-example.tsx', hash: '4283302905232813226' }, - { file: 'packages/fluentui/e2e/tests/popupIframeInContent.spec.ts', hash: '17137734889454790279' }, - { file: 'packages/fluentui/e2e/tests/popupInMenu-example.tsx', hash: '16013900017767357976' }, - { file: 'packages/fluentui/e2e/tests/popupInMenu.spec.ts', hash: '7044470440674261311' }, - { file: 'packages/fluentui/e2e/tests/popupInPopup-example.tsx', hash: '9668277406755016860' }, - { file: 'packages/fluentui/e2e/tests/popupInPopup.spec.ts', hash: '1201516165930426055' }, - { file: 'packages/fluentui/e2e/tests/popupInSubmenuInToolbarMenu-example.tsx', hash: '15332631901223067083' }, - { file: 'packages/fluentui/e2e/tests/popupInSubmenuInToolbarMenu.spec.ts', hash: '1637590511583110830' }, - { file: 'packages/fluentui/e2e/tests/popupInToolbarMenu-example.tsx', hash: '17370124098474055427' }, - { file: 'packages/fluentui/e2e/tests/popupInToolbarMenu.spec.ts', hash: '17677000527941342638' }, - { file: 'packages/fluentui/e2e/tests/popupMouseDownSelecting-example.tsx', hash: '3023855540168575913' }, - { file: 'packages/fluentui/e2e/tests/popupMouseDownSelecting.spec.ts', hash: '7209143637156518437' }, - { file: 'packages/fluentui/e2e/tests/popupWithCloseInContent-example.tsx', hash: '138822329630966902' }, - { file: 'packages/fluentui/e2e/tests/popupWithCloseInContent.spec.ts', hash: '17534692300788679823' }, - { file: 'packages/fluentui/e2e/tests/popupWithTooltipTrigger-example.tsx', hash: '11807861820707471620' }, - { file: 'packages/fluentui/e2e/tests/popupWithTooltipTrigger.spec.ts', hash: '8697303816170122801' }, - { file: 'packages/fluentui/e2e/tests/popupWithoutTrigger-example.tsx', hash: '11139766354954965358' }, - { file: 'packages/fluentui/e2e/tests/popupWithoutTrigger.spec.ts', hash: '13246623807056887583' }, - { file: 'packages/fluentui/e2e/tests/submenuInToolbarMenu-example.tsx', hash: '575582352463613891' }, - { file: 'packages/fluentui/e2e/tests/submenuInToolbarMenu.spec.ts', hash: '1027166173685153422' }, - { file: 'packages/fluentui/e2e/tests/tableNavigable-example.tsx', hash: '14905569497518850229' }, - { file: 'packages/fluentui/e2e/tests/tableNavigable.spec.ts', hash: '12594198720782866612' }, - { file: 'packages/fluentui/e2e/tests/toolbarMenu-example.tsx', hash: '13362869464990240922' }, - { file: 'packages/fluentui/e2e/tests/toolbarMenu.spec.ts', hash: '11350393418665355075' }, - { file: 'packages/fluentui/e2e/tests/toolbarMenuOverflow-example.tsx', hash: '10545456953613671616' }, - { file: 'packages/fluentui/e2e/tests/toolbarMenuOverflow.spec.ts', hash: '7996186393233017896' }, - { file: 'packages/fluentui/e2e/tests/toolbarMenuOverflowWrapped-example.tsx', hash: '14754152518540080632' }, - { file: 'packages/fluentui/e2e/tests/toolbarMenuOverflowWrapped.spec.ts', hash: '706311342140479878' }, - { file: 'packages/fluentui/e2e/tests/toolbarWithPopupTooltip-example.tsx', hash: '2005065269202164843' }, - { file: 'packages/fluentui/e2e/tests/toolbarWithPopupTooltip.spec.ts', hash: '5925650631025544121' }, - { file: 'packages/fluentui/e2e/tests/tooltipDismissOnHoverContent-example.tsx', hash: '9489541278644546841' }, - { file: 'packages/fluentui/e2e/tests/tooltipDismissOnHoverContent.ts', hash: '9737872412877402347' }, - { file: 'packages/fluentui/e2e/tests/tooltipUnhandledProps-example.tsx', hash: '17958332038007928519' }, - { file: 'packages/fluentui/e2e/tests/tooltipUnhandledProps.spec.ts', hash: '5538405689313863866' }, - { file: 'packages/fluentui/e2e/tests/treeKeyboardNavigation-example.tsx', hash: '6918808607628651153' }, - { file: 'packages/fluentui/e2e/tests/treeKeyboardNavigation.spec.ts', hash: '14204769954003254618' }, - { - file: 'packages/fluentui/e2e/tests/treeVirtualizedKeyboardNavigation-example.tsx', - hash: '10207361172658324571', - }, - { file: 'packages/fluentui/e2e/tests/treeVirtualizedKeyboardNavigation.spec.ts', hash: '38611835611465959' }, - { file: 'packages/fluentui/e2e/tsconfig.json', hash: '10977915997837140135' }, - ], - '@fluentui/ssr-tests': [ - { file: 'apps/ssr-tests/CHANGELOG.json', hash: '1972360179664073596' }, - { file: 'apps/ssr-tests/CHANGELOG.md', hash: '10968265984611611699' }, - { file: 'apps/ssr-tests/just.config.ts', hash: '994669034758141798' }, - { - file: 'apps/ssr-tests/package.json', - hash: '7229768634367163191', - deps: [ - 'npm:tslib', - '@fluentui/react', - 'npm:@microsoft/load-themed-styles', - 'npm:@types/mocha', - '@fluentui/public-docsite-resources', - 'npm:mocha', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'apps/ssr-tests/project.json', hash: '1374228985476810396' }, - { file: 'apps/ssr-tests/test/test.js', hash: '13862241030754584160' }, - { file: 'apps/ssr-tests/webpack.config.js', hash: '4897565737584022724' }, - ], - '@fluentui/foundation-legacy': [ - { file: 'packages/foundation-legacy/.eslintrc.json', hash: '7788135779233596637' }, - { file: 'packages/foundation-legacy/.npmignore', hash: '47056201363133096' }, - { file: 'packages/foundation-legacy/CHANGELOG.json', hash: '11298518728473754760' }, - { file: 'packages/foundation-legacy/CHANGELOG.md', hash: '16846161063283363485' }, - { file: 'packages/foundation-legacy/LICENSE', hash: '13685109437677902912' }, - { file: 'packages/foundation-legacy/README.md', hash: '15150879100026194024' }, - { file: 'packages/foundation-legacy/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/foundation-legacy/config/tests.js', hash: '14311629952979925442' }, - { file: 'packages/foundation-legacy/etc/foundation-legacy.api.md', hash: '14544843647228988854' }, - { file: 'packages/foundation-legacy/jest.config.js', hash: '8193037916930093299' }, - { file: 'packages/foundation-legacy/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/foundation-legacy/package.json', - hash: '13399846164496288089', - deps: [ - '@fluentui/merge-styles', - '@fluentui/set-version', - '@fluentui/style-utilities', - '@fluentui/utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/jest-serializer-merge-styles', - 'npm:react-hooks-testing-library', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/foundation-legacy/project.json', hash: '11276530119421788355' }, - { file: 'packages/foundation-legacy/src/IComponent.ts', hash: '12873869061209405696' }, - { file: 'packages/foundation-legacy/src/IHTMLSlots.ts', hash: '7155527235082397630' }, - { file: 'packages/foundation-legacy/src/ISlots.ts', hash: '14464439662037354785' }, - { file: 'packages/foundation-legacy/src/ThemeProvider.tsx', hash: '9773670166953555244' }, - { file: 'packages/foundation-legacy/src/__snapshots__/slots.test.tsx.snap', hash: '2934915321740022132' }, - { file: 'packages/foundation-legacy/src/createComponent.test.tsx', hash: '15652826177782635176' }, - { file: 'packages/foundation-legacy/src/createComponent.tsx', hash: '8094359274865822450' }, - { file: 'packages/foundation-legacy/src/hooks/controlled.test.tsx', hash: '12333211994600071919' }, - { file: 'packages/foundation-legacy/src/hooks/controlled.ts', hash: '3122361485496884833' }, - { file: 'packages/foundation-legacy/src/hooks/index.ts', hash: '9409545618871287298' }, - { file: 'packages/foundation-legacy/src/index.ts', hash: '12930357685631545172' }, - { file: 'packages/foundation-legacy/src/next/IComponent.ts', hash: '8757900071418225654' }, - { file: 'packages/foundation-legacy/src/next/ISlots.ts', hash: '4759905666795430527' }, - { file: 'packages/foundation-legacy/src/next/composed.test.tsx', hash: '479587016516331393' }, - { file: 'packages/foundation-legacy/src/next/composed.tsx', hash: '10226147199765955542' }, - { file: 'packages/foundation-legacy/src/slots.test.tsx', hash: '7249480130106203402' }, - { file: 'packages/foundation-legacy/src/slots.tsx', hash: '7288443331153031485' }, - { file: 'packages/foundation-legacy/src/utilities.ts', hash: '14062945912928854747' }, - { file: 'packages/foundation-legacy/src/version.ts', hash: '14340592035898007548' }, - { file: 'packages/foundation-legacy/tsconfig.json', hash: '3335700563706807422' }, - { file: 'packages/foundation-legacy/webpack.config.js', hash: '9200631243869629539' }, - ], - '@fluentui/react-select': [ - { file: 'packages/react-components/react-select/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-select/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-select/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-select/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-select/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-select/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-select/CHANGELOG.json', hash: '17220450743865662035' }, - { file: 'packages/react-components/react-select/CHANGELOG.md', hash: '446421807821873597' }, - { file: 'packages/react-components/react-select/LICENSE', hash: '17145807327024823464' }, - { file: 'packages/react-components/react-select/README.md', hash: '10145820909930644942' }, - { file: 'packages/react-components/react-select/bundle-size/Select.fixture.js', hash: '17495459788921235447' }, - { file: 'packages/react-components/react-select/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-select/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-select/docs/Spec.md', hash: '5722250028980261869' }, - { file: 'packages/react-components/react-select/etc/react-select.api.md', hash: '3809105998633819686' }, - { file: 'packages/react-components/react-select/jest.config.js', hash: '11826049106570097430' }, - { file: 'packages/react-components/react-select/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-select/package.json', - hash: '12286932727227470358', - deps: [ - '@fluentui/react-field', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-shared-contexts', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-select/project.json', hash: '15892150223184549744' }, - { file: 'packages/react-components/react-select/src/Select.ts', hash: '13526045668201639069' }, - { - file: 'packages/react-components/react-select/src/components/Select/Select.test.tsx', - hash: '932831788378200454', - }, - { file: 'packages/react-components/react-select/src/components/Select/Select.tsx', hash: '7280199275130289075' }, - { - file: 'packages/react-components/react-select/src/components/Select/Select.types.ts', - hash: '16980961641113520849', - }, - { - file: 'packages/react-components/react-select/src/components/Select/__snapshots__/Select.test.tsx.snap', - hash: '13921980301158282062', - }, - { file: 'packages/react-components/react-select/src/components/Select/index.ts', hash: '4417052697791773506' }, - { - file: 'packages/react-components/react-select/src/components/Select/renderSelect.tsx', - hash: '13711059602504439985', - }, - { - file: 'packages/react-components/react-select/src/components/Select/useSelect.tsx', - hash: '11162270922758090163', - }, - { - file: 'packages/react-components/react-select/src/components/Select/useSelectStyles.styles.ts', - hash: '16121165471199880480', - }, - { file: 'packages/react-components/react-select/src/index.ts', hash: '9960025239165988400' }, - { file: 'packages/react-components/react-select/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-select/stories/Select/SelectAppearance.stories.tsx', - hash: '17338091775052657526', - }, - { - file: 'packages/react-components/react-select/stories/Select/SelectBestPractices.md', - hash: '3732417789999507960', - }, - { - file: 'packages/react-components/react-select/stories/Select/SelectControlled.stories.tsx', - hash: '18142795900071240816', - }, - { - file: 'packages/react-components/react-select/stories/Select/SelectDefault.stories.tsx', - hash: '12697183069620726717', - }, - { - file: 'packages/react-components/react-select/stories/Select/SelectDescription.md', - hash: '10480618255513286510', - }, - { - file: 'packages/react-components/react-select/stories/Select/SelectDisabled.stories.tsx', - hash: '15695391597017870010', - }, - { - file: 'packages/react-components/react-select/stories/Select/SelectInitialValue.stories.tsx', - hash: '15522135501908703756', - }, - { - file: 'packages/react-components/react-select/stories/Select/SelectSize.stories.tsx', - hash: '4277834054578622137', - }, - { file: 'packages/react-components/react-select/stories/Select/index.stories.tsx', hash: '10137669799075046942' }, - { file: 'packages/react-components/react-select/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-select/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-select/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/scripts-api-extractor': [ - { file: 'scripts/api-extractor/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/api-extractor/api-extractor.common.json', hash: '2748281453618585856' }, - { file: 'scripts/api-extractor/api-extractor.common.v-next.json', hash: '13189487548181031930' }, - { file: 'scripts/api-extractor/jest.config.js', hash: '9107139503166004092' }, - { file: 'scripts/api-extractor/package.json', hash: '6434448276705142187' }, - { file: 'scripts/api-extractor/project.json', hash: '10051297786450075718' }, - { file: 'scripts/api-extractor/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/api-extractor/tsconfig.lib.json', hash: '3753806828268919288' }, - { file: 'scripts/api-extractor/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/set-version': [ - { file: 'packages/set-version/.eslintrc.json', hash: '5040365066206164447' }, - { file: 'packages/set-version/.npmignore', hash: '47056201363133096' }, - { file: 'packages/set-version/CHANGELOG.json', hash: '4884908875942182344' }, - { file: 'packages/set-version/CHANGELOG.md', hash: '14468298258455261263' }, - { file: 'packages/set-version/LICENSE', hash: '17405240926357137557' }, - { file: 'packages/set-version/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/set-version/package.json', - hash: '14326386381338996167', - deps: ['npm:tslib', '@fluentui/eslint-plugin', '@fluentui/scripts-tasks'], - }, - { file: 'packages/set-version/project.json', hash: '17714374313672910233' }, - { file: 'packages/set-version/src/index.ts', hash: '2116276611683583139' }, - { file: 'packages/set-version/src/serVersion.test.ts', hash: '5429814530530758929' }, - { file: 'packages/set-version/src/setVersion.ts', hash: '4028316957040317271' }, - { file: 'packages/set-version/tsconfig.json', hash: '7584822408996227960' }, - ], - '@fluentui/react-portal': [ - { file: 'packages/react-components/react-portal/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-portal/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-portal/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-portal/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-portal/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-portal/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-portal/CHANGELOG.json', hash: '6591119815101217949' }, - { file: 'packages/react-components/react-portal/CHANGELOG.md', hash: '3274066332542757743' }, - { file: 'packages/react-components/react-portal/LICENSE', hash: '5436713769968226347' }, - { file: 'packages/react-components/react-portal/README.md', hash: '8273149864735662535' }, - { file: 'packages/react-components/react-portal/bundle-size/Portal.fixture.js', hash: '16985937506839637290' }, - { file: 'packages/react-components/react-portal/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-portal/config/tests.js', hash: '14010006175392234982' }, - { file: 'packages/react-components/react-portal/docs/Spec.md', hash: '6366170172262274459' }, - { file: 'packages/react-components/react-portal/etc/react-portal.api.md', hash: '10658581800869826363' }, - { file: 'packages/react-components/react-portal/jest.config.js', hash: '9910520644242674457' }, - { file: 'packages/react-components/react-portal/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-portal/package.json', - hash: '11677510734866859682', - deps: [ - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - 'npm:use-disposable', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-portal/project.json', hash: '14457468981824115850' }, - { file: 'packages/react-components/react-portal/src/Portal.ts', hash: '7845203508181959455' }, - { - file: 'packages/react-components/react-portal/src/components/Portal/Portal-node.test.tsx', - hash: '9136445508182774156', - }, - { - file: 'packages/react-components/react-portal/src/components/Portal/Portal.test.tsx', - hash: '17392842799512127596', - }, - { file: 'packages/react-components/react-portal/src/components/Portal/Portal.tsx', hash: '11011410844879135032' }, - { - file: 'packages/react-components/react-portal/src/components/Portal/Portal.types.ts', - hash: '11324991944097355967', - }, - { - file: 'packages/react-components/react-portal/src/components/Portal/__snapshots__/Portal.test.tsx.snap', - hash: '9062428348270700463', - }, - { file: 'packages/react-components/react-portal/src/components/Portal/index.ts', hash: '16697091254987862602' }, - { - file: 'packages/react-components/react-portal/src/components/Portal/renderPortal.tsx', - hash: '8968293240803067495', - }, - { - file: 'packages/react-components/react-portal/src/components/Portal/usePortal.ts', - hash: '16841979113281129113', - }, - { - file: 'packages/react-components/react-portal/src/components/Portal/usePortalMountNode.test.tsx', - hash: '11910220960810678723', - }, - { - file: 'packages/react-components/react-portal/src/components/Portal/usePortalMountNode.ts', - hash: '2336349602905310883', - }, - { - file: 'packages/react-components/react-portal/src/components/Portal/usePortalMountNodeStyles.styles.ts', - hash: '10679524190507651237', - }, - { file: 'packages/react-components/react-portal/src/index.ts', hash: '8374907855495313520' }, - { - file: 'packages/react-components/react-portal/src/utils/toMountNodeProps.test.ts', - hash: '6575869444091968759', - }, - { file: 'packages/react-components/react-portal/src/utils/toMountNodeProps.ts', hash: '17503404067390627007' }, - { - file: 'packages/react-components/react-portal/stories/Portal/PortalDefault.stories.tsx', - hash: '840727895949819606', - }, - { - file: 'packages/react-components/react-portal/stories/Portal/PortalDescription.md', - hash: '3241420095240977648', - }, - { file: 'packages/react-components/react-portal/stories/Portal/index.stories.tsx', hash: '17009993612510309048' }, - { - file: 'packages/react-components/react-portal/stories/toMountNodeProps/Default.stories.tsx', - hash: '18309127042547897604', - }, - { - file: 'packages/react-components/react-portal/stories/toMountNodeProps/index.stories.tsx', - hash: '15428942433571628197', - }, - { - file: 'packages/react-components/react-portal/stories/toMountNodeProps/toMountNodePropsDescription.md', - hash: '11465112477349060741', - }, - { file: 'packages/react-components/react-portal/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-portal/tsconfig.lib.json', hash: '2330431448937249608' }, - { file: 'packages/react-components/react-portal/tsconfig.spec.json', hash: '5989250612042187831' }, - ], - '@fluentui/scripts-ts-node': [ - { file: 'scripts/ts-node/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/ts-node/jest.config.js', hash: '17845001107193385709' }, - { file: 'scripts/ts-node/package.json', hash: '12828502435875523151' }, - { file: 'scripts/ts-node/project.json', hash: '2171572583854711182' }, - { file: 'scripts/ts-node/register.js', hash: '7326554617006767970' }, - { file: 'scripts/ts-node/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/ts-node/tsconfig.lib.json', hash: '3753806828268919288' }, - { file: 'scripts/ts-node/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-infobutton': [ - { file: 'packages/react-components/react-infobutton/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-infobutton/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-infobutton/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-infobutton/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-infobutton/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-infobutton/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-infobutton/CHANGELOG.json', hash: '15238147816511200513' }, - { file: 'packages/react-components/react-infobutton/CHANGELOG.md', hash: '13746918152090924083' }, - { file: 'packages/react-components/react-infobutton/LICENSE', hash: '17633016642573289784' }, - { file: 'packages/react-components/react-infobutton/README.md', hash: '6386604485399176422' }, - { - file: 'packages/react-components/react-infobutton/bundle-size/InfoButton.fixture.js', - hash: '759644844444210261', - }, - { - file: 'packages/react-components/react-infobutton/bundle-size/InfoLabel.fixture.js', - hash: '8561557699756231013', - }, - { file: 'packages/react-components/react-infobutton/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-infobutton/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-infobutton/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-infobutton/docs/Spec.md', hash: '12415704727702896077' }, - { file: 'packages/react-components/react-infobutton/etc/images/anatomy.png', hash: '13995183815818235250' }, - { file: 'packages/react-components/react-infobutton/etc/react-infobutton.api.md', hash: '7166180765339852355' }, - { file: 'packages/react-components/react-infobutton/jest.config.js', hash: '4511360346170781976' }, - { file: 'packages/react-components/react-infobutton/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-infobutton/package.json', - hash: '10722911638598738598', - deps: [ - 'npm:@fluentui/react-icons', - '@fluentui/react-label', - '@fluentui/react-popover', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-infobutton/project.json', hash: '10924230166498856608' }, - { file: 'packages/react-components/react-infobutton/src/InfoButton.ts', hash: '6736681049567293007' }, - { file: 'packages/react-components/react-infobutton/src/InfoLabel.ts', hash: '10491035089563452821' }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoButton/DefaultInfoButtonIcons.tsx', - hash: '2356653625358885392', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.test.tsx', - hash: '8713205559683010958', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.tsx', - hash: '9270853198934657958', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoButton/InfoButton.types.ts', - hash: '12891027815312333985', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoButton/index.ts', - hash: '7451520123696318723', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoButton/renderInfoButton.tsx', - hash: '2954075369945934214', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoButton/useInfoButton.tsx', - hash: '3914295003966763922', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoButton/useInfoButtonStyles.styles.ts', - hash: '12015306674106208473', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.cy.tsx', - hash: '14532858853239359506', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.test.tsx', - hash: '1718709338479656088', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.tsx', - hash: '13094067001932444234', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoLabel/InfoLabel.types.ts', - hash: '8128906299140167967', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoLabel/index.ts', - hash: '1040167975180781477', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoLabel/renderInfoLabel.tsx', - hash: '12063702469681501912', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabel.ts', - hash: '10543420685351752865', - }, - { - file: 'packages/react-components/react-infobutton/src/components/InfoLabel/useInfoLabelStyles.styles.ts', - hash: '14482136840318409233', - }, - { file: 'packages/react-components/react-infobutton/src/index.ts', hash: '1780398361093080958' }, - { file: 'packages/react-components/react-infobutton/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { file: 'packages/react-components/react-infobutton/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-infobutton/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-infobutton/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-infobutton/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/scripts-bundle-size-auditor': [ - { file: 'scripts/bundle-size-auditor/README.md', hash: '7308971503050426778' }, - { - file: 'scripts/bundle-size-auditor/__fixtures__/proj-one/bundle-size-auditor.config.js', - hash: '7435363296352118388', - }, - { file: 'scripts/bundle-size-auditor/__fixtures__/proj-one/lib-dist/hello.js', hash: '3025962609255239884' }, - { file: 'scripts/bundle-size-auditor/__fixtures__/proj-one/lib-dist/index.js', hash: '9471299597521760475' }, - { file: 'scripts/bundle-size-auditor/__fixtures__/proj-one/package.json', hash: '9762295079143560402' }, - { file: 'scripts/bundle-size-auditor/bin/bundle-size-auditor.js', hash: '4162646536432802739' }, - { file: 'scripts/bundle-size-auditor/jest.config.js', hash: '8276958337121510907' }, - { file: 'scripts/bundle-size-auditor/package.json', hash: '13938274440693939530' }, - { file: 'scripts/bundle-size-auditor/project.json', hash: '5867454910317339913' }, - { file: 'scripts/bundle-size-auditor/src/bundle-size-collect.ts', hash: '6441554579105820293' }, - { file: 'scripts/bundle-size-auditor/src/cli.spec.ts', hash: '4157129729123491570' }, - { file: 'scripts/bundle-size-auditor/src/cli.ts', hash: '8957246201282732872' }, - { file: 'scripts/bundle-size-auditor/src/index.dev.js', hash: '9260712020448791085' }, - { file: 'scripts/bundle-size-auditor/src/index.ts', hash: '12839598562953646843' }, - { file: 'scripts/bundle-size-auditor/src/merge-bundlesizes.ts', hash: '6240773769950594795' }, - { file: 'scripts/bundle-size-auditor/src/types.ts', hash: '8251796727224552861' }, - { file: 'scripts/bundle-size-auditor/src/typings.d.ts', hash: '14694322115759458648' }, - { file: 'scripts/bundle-size-auditor/src/utils.ts', hash: '9195238259767401168' }, - { file: 'scripts/bundle-size-auditor/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/bundle-size-auditor/tsconfig.lib.json', hash: '1724195388906143280' }, - { file: 'scripts/bundle-size-auditor/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/utilities': [ - { file: 'packages/utilities/.eslintrc.json', hash: '2580200865767780480' }, - { file: 'packages/utilities/CHANGELOG.json', hash: '6335607398106611430' }, - { file: 'packages/utilities/CHANGELOG.md', hash: '12816284100488688515' }, - { file: 'packages/utilities/LICENSE', hash: '2164827662511184675' }, - { file: 'packages/utilities/README.md', hash: '5244410816745376968' }, - { file: 'packages/utilities/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/utilities/config/tests.js', hash: '16641653404356876419' }, - { file: 'packages/utilities/etc/utilities.api.md', hash: '15018932460167178414' }, - { file: 'packages/utilities/jest.config.js', hash: '304128120137977307' }, - { file: 'packages/utilities/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/utilities/package.json', - hash: '675003616675843412', - deps: [ - '@fluentui/dom-utilities', - '@fluentui/merge-styles', - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/jest-serializer-merge-styles', - '@fluentui/test-utilities', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/utilities/project.json', hash: '17280231558626148637' }, - { file: 'packages/utilities/src/Async.test.ts', hash: '5759589505192850170' }, - { file: 'packages/utilities/src/Async.ts', hash: '15143769995860493369' }, - { file: 'packages/utilities/src/AutoScroll.ts', hash: '5601078848280160212' }, - { file: 'packages/utilities/src/BaseComponent.test.tsx', hash: '3877588864845288553' }, - { file: 'packages/utilities/src/BaseComponent.ts', hash: '9118405640307315372' }, - { file: 'packages/utilities/src/BaseComponent.types.ts', hash: '783638621225026234' }, - { file: 'packages/utilities/src/DelayedRender.tsx', hash: '4642510121216492222' }, - { file: 'packages/utilities/src/EventGroup.test.ts', hash: '12138699095578563984' }, - { file: 'packages/utilities/src/EventGroup.ts', hash: '14471280002975870863' }, - { file: 'packages/utilities/src/FabricPerformance.ts', hash: '4714530500644440274' }, - { file: 'packages/utilities/src/FocusRectsProvider.tsx', hash: '15787740731290076280' }, - { file: 'packages/utilities/src/GlobalSettings.ts', hash: '342336038417369589' }, - { file: 'packages/utilities/src/IClassNames.ts', hash: '3076168777488422116' }, - { file: 'packages/utilities/src/IComponentAs.ts', hash: '252446323054408189' }, - { file: 'packages/utilities/src/IDisposable.ts', hash: '2478442062744367057' }, - { file: 'packages/utilities/src/IRectangle.ts', hash: '10995019983178257971' }, - { file: 'packages/utilities/src/IRenderComponent.ts', hash: '461886732816612547' }, - { file: 'packages/utilities/src/IRenderFunction.ts', hash: '17813586765380303785' }, - { file: 'packages/utilities/src/ISize.ts', hash: '14461979371085555856' }, - { file: 'packages/utilities/src/IStyleFunction.ts', hash: '6791316609268819404' }, - { file: 'packages/utilities/src/KeyCodes.ts', hash: '14564321873164316746' }, - { file: 'packages/utilities/src/Point.ts', hash: '376713868510813523' }, - { file: 'packages/utilities/src/React.types.ts', hash: '17800794849670035313' }, - { file: 'packages/utilities/src/Rectangle.ts', hash: '824886417592807336' }, - { file: 'packages/utilities/src/__snapshots__/styled.test.tsx.snap', hash: '12979173466984991107' }, - { file: 'packages/utilities/src/appendFunction.test.ts', hash: '8729525214092344649' }, - { file: 'packages/utilities/src/appendFunction.ts', hash: '4083488610739721922' }, - { file: 'packages/utilities/src/aria.test.ts', hash: '14138603899583562794' }, - { file: 'packages/utilities/src/aria.ts', hash: '5735708631711502150' }, - { file: 'packages/utilities/src/array.test.ts', hash: '15801175074736137302' }, - { file: 'packages/utilities/src/array.ts', hash: '1894347163613481431' }, - { file: 'packages/utilities/src/asAsync.test.tsx', hash: '10697304036797267807' }, - { file: 'packages/utilities/src/asAsync.tsx', hash: '4181533372244279705' }, - { file: 'packages/utilities/src/assertNever.ts', hash: '1515606681749095367' }, - { file: 'packages/utilities/src/classNamesFunction.test.ts', hash: '6343392581387687372' }, - { file: 'packages/utilities/src/classNamesFunction.ts', hash: '8023095563856715213' }, - { - file: 'packages/utilities/src/componentAs/__snapshots__/composeComponentAs.test.tsx.snap', - hash: '2752369257854721166', - }, - { file: 'packages/utilities/src/componentAs/composeComponentAs.test.tsx', hash: '8746889857353005866' }, - { file: 'packages/utilities/src/componentAs/composeComponentAs.tsx', hash: '2140110881671918461' }, - { file: 'packages/utilities/src/controlled.test.ts', hash: '9058866301967561226' }, - { file: 'packages/utilities/src/controlled.ts', hash: '9066208032224367059' }, - { file: 'packages/utilities/src/createMergedRef.test.tsx', hash: '1416955141188369611' }, - { file: 'packages/utilities/src/createMergedRef.ts', hash: '1251098934683385949' }, - { file: 'packages/utilities/src/createRef.ts', hash: '9238843200674099325' }, - { file: 'packages/utilities/src/css.test.ts', hash: '10031246422893899008' }, - { file: 'packages/utilities/src/css.ts', hash: '1793825490912883658' }, - { file: 'packages/utilities/src/customizations/Customizations.test.ts', hash: '10105610822375110835' }, - { file: 'packages/utilities/src/customizations/Customizations.ts', hash: '3495907360416689960' }, - { file: 'packages/utilities/src/customizations/Customizer.test.tsx', hash: '12908700688009649933' }, - { file: 'packages/utilities/src/customizations/Customizer.tsx', hash: '7793381447130808575' }, - { file: 'packages/utilities/src/customizations/Customizer.types.tsx', hash: '13989787286778459151' }, - { file: 'packages/utilities/src/customizations/CustomizerContext.ts', hash: '13773513164298209090' }, - { file: 'packages/utilities/src/customizations/customizable.test.tsx', hash: '17417709320635180368' }, - { file: 'packages/utilities/src/customizations/customizable.tsx', hash: '3874477594453762777' }, - { file: 'packages/utilities/src/customizations/mergeCustomizations.ts', hash: '7624715242722992448' }, - { file: 'packages/utilities/src/customizations/mergeSettings.ts', hash: '949575409405210085' }, - { file: 'packages/utilities/src/customizations/useCustomizationSettings.test.tsx', hash: '9461785824933750783' }, - { file: 'packages/utilities/src/customizations/useCustomizationSettings.ts', hash: '9469212748401813506' }, - { file: 'packages/utilities/src/dom/IVirtualElement.ts', hash: '1272603442600869120' }, - { file: 'packages/utilities/src/dom/canUseDOM.ts', hash: '14283484485691740206' }, - { file: 'packages/utilities/src/dom/dom.test.ts', hash: '15189535752284549665' }, - { file: 'packages/utilities/src/dom/elementContains.ts', hash: '6731392015328967658' }, - { file: 'packages/utilities/src/dom/elementContainsAttribute.ts', hash: '9998380691696155229' }, - { file: 'packages/utilities/src/dom/findElementRecursive.ts', hash: '12204766649587740636' }, - { file: 'packages/utilities/src/dom/getChildren.ts', hash: '10521633747754719556' }, - { file: 'packages/utilities/src/dom/getDocument.ts', hash: '9086020502057242037' }, - { file: 'packages/utilities/src/dom/getFirstVisibleElementFromSelector.ts', hash: '6447989736279473834' }, - { file: 'packages/utilities/src/dom/getParent.ts', hash: '9718084071153318455' }, - { file: 'packages/utilities/src/dom/getRect.ts', hash: '60430354175429724' }, - { file: 'packages/utilities/src/dom/getVirtualParent.ts', hash: '11252940205299737616' }, - { file: 'packages/utilities/src/dom/getWindow.ts', hash: '18428128074541184664' }, - { file: 'packages/utilities/src/dom/isVirtualElement.ts', hash: '517001433736903322' }, - { file: 'packages/utilities/src/dom/on.ts', hash: '12860909919214186505' }, - { file: 'packages/utilities/src/dom/portalContainsElement.ts', hash: '5168170300745806070' }, - { file: 'packages/utilities/src/dom/raiseClick.ts', hash: '1733874287643999407' }, - { file: 'packages/utilities/src/dom/setPortalAttribute.ts', hash: '6856150449255039282' }, - { file: 'packages/utilities/src/dom/setSSR.ts', hash: '15371249151282858961' }, - { file: 'packages/utilities/src/dom/setVirtualParent.ts', hash: '10955819039440267009' }, - { file: 'packages/utilities/src/dom.ts', hash: '6537626984778766649' }, - { file: 'packages/utilities/src/extendComponent.test.tsx', hash: '13891293003835934127' }, - { file: 'packages/utilities/src/extendComponent.ts', hash: '11310818425939132405' }, - { file: 'packages/utilities/src/focus.test.tsx', hash: '18400430136451594057' }, - { file: 'packages/utilities/src/focus.ts', hash: '6643169002879769058' }, - { file: 'packages/utilities/src/getId.ts', hash: '6800706428956972366' }, - { file: 'packages/utilities/src/getNativeElementProps.test.ts', hash: '284309430326406258' }, - { file: 'packages/utilities/src/getNativeElementProps.ts', hash: '11067196988575191658' }, - { file: 'packages/utilities/src/getPropsWithDefaults.test.ts', hash: '13824695188429262134' }, - { file: 'packages/utilities/src/getPropsWithDefaults.ts', hash: '9323023684459143650' }, - { file: 'packages/utilities/src/hoist.ts', hash: '904637284183141448' }, - { file: 'packages/utilities/src/hoistStatics.ts', hash: '5921127637819176945' }, - { file: 'packages/utilities/src/ie11Detector.ts', hash: '8304370647762605469' }, - { file: 'packages/utilities/src/index.ts', hash: '8052320402088512943' }, - { file: 'packages/utilities/src/initializeComponentRef.test.tsx', hash: '16876304708087993207' }, - { file: 'packages/utilities/src/initializeComponentRef.ts', hash: '17624525091723477913' }, - { file: 'packages/utilities/src/initializeDir.ts', hash: '5746005562232527516' }, - { file: 'packages/utilities/src/initializeFocusRects.test.ts', hash: '9347386513877106337' }, - { file: 'packages/utilities/src/initializeFocusRects.ts', hash: '6836970356225779843' }, - { file: 'packages/utilities/src/initials.test.ts', hash: '17208878865390886151' }, - { file: 'packages/utilities/src/initials.ts', hash: '2246058192270431676' }, - { file: 'packages/utilities/src/keyboard.test.ts', hash: '2465005779275079326' }, - { file: 'packages/utilities/src/keyboard.ts', hash: '3375700092477164063' }, - { file: 'packages/utilities/src/language.ts', hash: '12255952474581979791' }, - { file: 'packages/utilities/src/localStorage.ts', hash: '9752275918665499733' }, - { file: 'packages/utilities/src/math.test.ts', hash: '15627959349529587251' }, - { file: 'packages/utilities/src/math.ts', hash: '1028645173261075305' }, - { file: 'packages/utilities/src/memoize.test.ts', hash: '14950283053726570866' }, - { file: 'packages/utilities/src/memoize.ts', hash: '9330385561301352185' }, - { file: 'packages/utilities/src/merge.test.ts', hash: '15739663652754460066' }, - { file: 'packages/utilities/src/merge.ts', hash: '17766544532271599629' }, - { file: 'packages/utilities/src/mobileDetector.test.ts', hash: '12078587837878594136' }, - { file: 'packages/utilities/src/mobileDetector.ts', hash: '10591507586021763956' }, - { file: 'packages/utilities/src/modalize.test.ts', hash: '4846297644711417399' }, - { file: 'packages/utilities/src/modalize.ts', hash: '4481198429821105814' }, - { file: 'packages/utilities/src/object.test.ts', hash: '10254436151796777817' }, - { file: 'packages/utilities/src/object.ts', hash: '17154324253698227529' }, - { file: 'packages/utilities/src/osDetector.test.ts', hash: '14894283611897002433' }, - { file: 'packages/utilities/src/osDetector.ts', hash: '13801506817898268308' }, - { file: 'packages/utilities/src/overflow.test.ts', hash: '12139207908953484445' }, - { file: 'packages/utilities/src/overflow.ts', hash: '12647135475165398177' }, - { file: 'packages/utilities/src/properties.test.ts', hash: '4741910110570935513' }, - { file: 'packages/utilities/src/properties.ts', hash: '16773543696469058656' }, - { - file: 'packages/utilities/src/renderFunction/__snapshots__/composeRenderFunction.test.tsx.snap', - hash: '2752369257854721166', - }, - { file: 'packages/utilities/src/renderFunction/composeRenderFunction.test.tsx', hash: '13687964334743642959' }, - { file: 'packages/utilities/src/renderFunction/composeRenderFunction.tsx', hash: '12949119472709400410' }, - { file: 'packages/utilities/src/resources.ts', hash: '13625698663830748145' }, - { file: 'packages/utilities/src/rtl.test.ts', hash: '13900837640822362624' }, - { file: 'packages/utilities/src/rtl.ts', hash: '14222644107188927084' }, - { file: 'packages/utilities/src/safeRequestAnimationFrame.test.tsx', hash: '16982205117397880539' }, - { file: 'packages/utilities/src/safeRequestAnimationFrame.ts', hash: '975133229678661328' }, - { file: 'packages/utilities/src/safeSetTimeout.test.tsx', hash: '9649408720700553344' }, - { file: 'packages/utilities/src/safeSetTimeout.ts', hash: '13218288715921649583' }, - { file: 'packages/utilities/src/scroll.ts', hash: '5360381395447204868' }, - { file: 'packages/utilities/src/selection/Selection.test.ts', hash: '16981423786519042627' }, - { file: 'packages/utilities/src/selection/Selection.ts', hash: '13343736426577884626' }, - { file: 'packages/utilities/src/selection/Selection.types.ts', hash: '2551952221941279699' }, - { file: 'packages/utilities/src/selection/index.ts', hash: '14851851460036267236' }, - { file: 'packages/utilities/src/sessionStorage.ts', hash: '11470067955594116423' }, - { file: 'packages/utilities/src/setFocusVisibility.test.tsx', hash: '3836380506317020464' }, - { file: 'packages/utilities/src/setFocusVisibility.ts', hash: '8156237404251675203' }, - { file: 'packages/utilities/src/string.ts', hash: '11645503253289741054' }, - { file: 'packages/utilities/src/styled.test.tsx', hash: '4946383566021141652' }, - { file: 'packages/utilities/src/styled.tsx', hash: '13378054297508466343' }, - { file: 'packages/utilities/src/useFocusRects.test.tsx', hash: '9129928342627505077' }, - { file: 'packages/utilities/src/useFocusRects.ts', hash: '17577250466138189088' }, - { file: 'packages/utilities/src/useIsomorphicLayoutEffect.ts', hash: '14729958331705232742' }, - { file: 'packages/utilities/src/version.ts', hash: '6263395338863769015' }, - { file: 'packages/utilities/src/warn/warn.test.ts', hash: '11418325315738532285' }, - { file: 'packages/utilities/src/warn/warn.ts', hash: '2637561142778231776' }, - { file: 'packages/utilities/src/warn/warnConditionallyRequiredProps.ts', hash: '16835554844251258233' }, - { file: 'packages/utilities/src/warn/warnControlledUsage.test.ts', hash: '13092967152654014039' }, - { file: 'packages/utilities/src/warn/warnControlledUsage.ts', hash: '796636411188940959' }, - { file: 'packages/utilities/src/warn/warnDeprecations.ts', hash: '12191875958213993028' }, - { file: 'packages/utilities/src/warn/warnMutuallyExclusive.ts', hash: '6917399654413973457' }, - { file: 'packages/utilities/src/warn.ts', hash: '16985317042801848559' }, - { file: 'packages/utilities/tsconfig.json', hash: '12681959843186909680' }, - ], - '@fluentui/scripts-lint-staged': [ - { file: 'scripts/lint-staged/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/lint-staged/eslint-for-package.js', hash: '4738514625431014423' }, - { file: 'scripts/lint-staged/eslint.js', hash: '13861068640127141789' }, - { file: 'scripts/lint-staged/jest.config.js', hash: '7963143772161094500' }, - { file: 'scripts/lint-staged/package.json', hash: '7493691809580746414', deps: ['@fluentui/scripts-monorepo'] }, - { file: 'scripts/lint-staged/project.json', hash: '14668309250613706165' }, - { file: 'scripts/lint-staged/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/lint-staged/tsconfig.lib.json', hash: '3753806828268919288' }, - { file: 'scripts/lint-staged/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/dom-utilities': [ - { file: 'packages/dom-utilities/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/dom-utilities/.npmignore', hash: '7699079327417375383' }, - { file: 'packages/dom-utilities/CHANGELOG.json', hash: '8068234031633819591' }, - { file: 'packages/dom-utilities/CHANGELOG.md', hash: '16100292252780397155' }, - { file: 'packages/dom-utilities/LICENSE', hash: '4650556597768654521' }, - { file: 'packages/dom-utilities/README.md', hash: '2433927414357617456' }, - { file: 'packages/dom-utilities/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/dom-utilities/etc/dom-utilities.api.md', hash: '10454177134700198954' }, - { file: 'packages/dom-utilities/jest.config.js', hash: '8457350006614220129' }, - { file: 'packages/dom-utilities/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/dom-utilities/package.json', - hash: '4796838588752972627', - deps: [ - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/dom-utilities/project.json', hash: '15540251548798604047' }, - { file: 'packages/dom-utilities/src/IVirtualElement.ts', hash: '15055156890037686138' }, - { file: 'packages/dom-utilities/src/elementContains.ts', hash: '5166646740547888307' }, - { file: 'packages/dom-utilities/src/elementContainsAttribute.ts', hash: '240530313650375428' }, - { file: 'packages/dom-utilities/src/findElementRecursive.ts', hash: '15902457052705517702' }, - { file: 'packages/dom-utilities/src/getChildren.ts', hash: '17303479692229336714' }, - { file: 'packages/dom-utilities/src/getParent.ts', hash: '17207135018437651072' }, - { file: 'packages/dom-utilities/src/getVirtualParent.ts', hash: '12867277850625566919' }, - { file: 'packages/dom-utilities/src/index.test.ts', hash: '9241586715584521733' }, - { file: 'packages/dom-utilities/src/index.ts', hash: '11567655210902058086' }, - { file: 'packages/dom-utilities/src/isVirtualElement.ts', hash: '5785282851313588602' }, - { file: 'packages/dom-utilities/src/portalContainsElement.ts', hash: '17978580743449785402' }, - { file: 'packages/dom-utilities/src/setPortalAttribute.ts', hash: '11039697298779251904' }, - { file: 'packages/dom-utilities/src/setVirtualParent.ts', hash: '14427122606930692518' }, - { file: 'packages/dom-utilities/src/version.ts', hash: '9176519080116557418' }, - { file: 'packages/dom-utilities/tsconfig.json', hash: '17721705097427987892' }, - ], - '@fluentui/theme-samples': [ - { file: 'packages/theme-samples/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/theme-samples/.npmignore', hash: '47056201363133096' }, - { file: 'packages/theme-samples/CHANGELOG.json', hash: '4107014302643558583' }, - { file: 'packages/theme-samples/CHANGELOG.md', hash: '16681506395571679930' }, - { file: 'packages/theme-samples/LICENSE', hash: '15482603230267471744' }, - { file: 'packages/theme-samples/README.md', hash: '3926556167459327423' }, - { file: 'packages/theme-samples/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/theme-samples/package.json', - hash: '15427753799492686926', - deps: [ - '@fluentui/react', - '@fluentui/set-version', - '@fluentui/scheme-utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'packages/theme-samples/project.json', hash: '6409800190469398757' }, - { file: 'packages/theme-samples/src/DarkCustomizations/DarkCustomizations.ts', hash: '5200885300371184710' }, - { file: 'packages/theme-samples/src/DarkCustomizations/index.ts', hash: '14444893938817993003' }, - { - file: 'packages/theme-samples/src/DarkCustomizations/styles/DatePickerStyles.ts', - hash: '15259319016214443724', - }, - { - file: 'packages/theme-samples/src/DarkCustomizations/styles/PeoplePickerStyles.ts', - hash: '12867402699419709127', - }, - { file: 'packages/theme-samples/src/DarkCustomizations/styles/index.ts', hash: '13786226689429555298' }, - { file: 'packages/theme-samples/src/DefaultCustomizations.ts', hash: '7362911222450954562' }, - { file: 'packages/theme-samples/src/TeamsCustomizations.ts', hash: '10750998333330948600' }, - { file: 'packages/theme-samples/src/WordCustomizations.ts', hash: '3224157461993899137' }, - { file: 'packages/theme-samples/src/index.ts', hash: '16878372643173057795' }, - { file: 'packages/theme-samples/src/version.ts', hash: '8159374621578079077' }, - { file: 'packages/theme-samples/tsconfig.json', hash: '5760297339315905719' }, - { file: 'packages/theme-samples/webpack.config.js', hash: '5642468613982628084' }, - ], - '@fluentui/azure-themes': [ - { file: 'packages/azure-themes/.eslintrc.json', hash: '7047059270393627238' }, - { file: 'packages/azure-themes/.npmignore', hash: '47056201363133096' }, - { file: 'packages/azure-themes/CHANGELOG.json', hash: '2814564121899980480' }, - { file: 'packages/azure-themes/CHANGELOG.md', hash: '12008305137318728187' }, - { file: 'packages/azure-themes/LICENSE', hash: '11805460047251502307' }, - { file: 'packages/azure-themes/README.md', hash: '9487251565582550648' }, - { file: 'packages/azure-themes/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/azure-themes/package.json', - hash: '13993476586447731937', - deps: [ - '@fluentui/react', - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'packages/azure-themes/project.json', hash: '6299750457924615058' }, - { file: 'packages/azure-themes/src/AzureCustomizations.ts', hash: '4760252950292272729' }, - { file: 'packages/azure-themes/src/azure/AzureColors.ts', hash: '14152952468054705526' }, - { file: 'packages/azure-themes/src/azure/AzureDepths.ts', hash: '17261250879660942101' }, - { file: 'packages/azure-themes/src/azure/AzureStyleSettings.ts', hash: '8316665480931492390' }, - { file: 'packages/azure-themes/src/azure/AzureThemeDark.ts', hash: '4313722604489990327' }, - { file: 'packages/azure-themes/src/azure/AzureThemeHighContrastDark.ts', hash: '7102611927819756797' }, - { file: 'packages/azure-themes/src/azure/AzureThemeHighContrastLight.ts', hash: '9454370145371971118' }, - { file: 'packages/azure-themes/src/azure/AzureThemeLight.ts', hash: '18091326576033638586' }, - { file: 'packages/azure-themes/src/azure/AzureType.ts', hash: '15414580302593572625' }, - { file: 'packages/azure-themes/src/azure/Constants.ts', hash: '2809813925329042682' }, - { file: 'packages/azure-themes/src/azure/IAzureSemanticColors.ts', hash: '13420497678842227618' }, - { file: 'packages/azure-themes/src/azure/IExtendedSemanticColors.ts', hash: '14227374167342092383' }, - { file: 'packages/azure-themes/src/azure/index.ts', hash: '4374715962088181245' }, - { file: 'packages/azure-themes/src/azure/styles/ActionButton.styles.ts', hash: '13596369672849093373' }, - { file: 'packages/azure-themes/src/azure/styles/Breadcrumb.styles.ts', hash: '17718963414523065709' }, - { file: 'packages/azure-themes/src/azure/styles/Calendar.styles.ts', hash: '16971015327285923408' }, - { file: 'packages/azure-themes/src/azure/styles/Callout.styles.ts', hash: '4549843136555746723' }, - { file: 'packages/azure-themes/src/azure/styles/Checkbox.styles.ts', hash: '7581482770815269795' }, - { file: 'packages/azure-themes/src/azure/styles/ChoiceGroupOptions.styles.ts', hash: '2636532473744196771' }, - { file: 'packages/azure-themes/src/azure/styles/ColorPicker.styles.ts', hash: '6392088099577082345' }, - { file: 'packages/azure-themes/src/azure/styles/ColorPickerGridCell.styles.ts', hash: '10160459480635280492' }, - { file: 'packages/azure-themes/src/azure/styles/ComboBox.styles.ts', hash: '17823202381537620748' }, - { file: 'packages/azure-themes/src/azure/styles/CommandBar.styles.ts', hash: '12712977659203094181' }, - { file: 'packages/azure-themes/src/azure/styles/CommandBarButton.styles.ts', hash: '2033780080583129886' }, - { file: 'packages/azure-themes/src/azure/styles/CompoundButton.styles.ts', hash: '17349175564712120044' }, - { file: 'packages/azure-themes/src/azure/styles/ContextualMenu.styles.ts', hash: '13424731381391286619' }, - { file: 'packages/azure-themes/src/azure/styles/DatePicker.styles.ts', hash: '11990316255925778035' }, - { file: 'packages/azure-themes/src/azure/styles/DefaultButton.styles.ts', hash: '15716448895851031924' }, - { file: 'packages/azure-themes/src/azure/styles/DetailsList.styles.ts', hash: '14513801309827161140' }, - { file: 'packages/azure-themes/src/azure/styles/Dialog.styles.ts', hash: '6387972746686542555' }, - { file: 'packages/azure-themes/src/azure/styles/DocumentCard.styles.ts', hash: '5072704218799592150' }, - { file: 'packages/azure-themes/src/azure/styles/DropDown.styles.ts', hash: '12791379548962019908' }, - { file: 'packages/azure-themes/src/azure/styles/HoverCard.styles.ts', hash: '437137438162278789' }, - { file: 'packages/azure-themes/src/azure/styles/IconButton.styles.ts', hash: '13095050026182229537' }, - { file: 'packages/azure-themes/src/azure/styles/Label.styles.ts', hash: '18308403615151462886' }, - { file: 'packages/azure-themes/src/azure/styles/Link.styles.ts', hash: '10966391963600700609' }, - { file: 'packages/azure-themes/src/azure/styles/MessageBar.styles.ts', hash: '13968504130946602066' }, - { file: 'packages/azure-themes/src/azure/styles/Modal.styles.ts', hash: '6304647593323757102' }, - { file: 'packages/azure-themes/src/azure/styles/Nav.styles.ts', hash: '3062138929163538025' }, - { file: 'packages/azure-themes/src/azure/styles/Overlay.styles.ts', hash: '7092008763459894671' }, - { file: 'packages/azure-themes/src/azure/styles/Panel.styles.ts', hash: '16260399713980995173' }, - { file: 'packages/azure-themes/src/azure/styles/Pivot.styles.ts', hash: '4205451113277631358' }, - { file: 'packages/azure-themes/src/azure/styles/PrimaryButton.styles.ts', hash: '10584165192860092413' }, - { file: 'packages/azure-themes/src/azure/styles/ProgressIndicator.styles.ts', hash: '11169363722773949196' }, - { file: 'packages/azure-themes/src/azure/styles/Rating.styles.ts', hash: '17915376534463516724' }, - { file: 'packages/azure-themes/src/azure/styles/SearchBox.styles.ts', hash: '10058059892588619195' }, - { file: 'packages/azure-themes/src/azure/styles/Slider.styles.ts', hash: '9299139275175695869' }, - { file: 'packages/azure-themes/src/azure/styles/SpinButton.styles.ts', hash: '3167652000896331774' }, - { file: 'packages/azure-themes/src/azure/styles/Suggestions.styles.ts', hash: '17170068933032839751' }, - { file: 'packages/azure-themes/src/azure/styles/SuggestionsItem.styles.ts', hash: '14260189213202838970' }, - { file: 'packages/azure-themes/src/azure/styles/TagItem.styles.ts', hash: '13074235089176650019' }, - { file: 'packages/azure-themes/src/azure/styles/TagPicker.styles.ts', hash: '17455813293478966913' }, - { file: 'packages/azure-themes/src/azure/styles/TeachingBubble.styles.ts', hash: '9742274931439777845' }, - { file: 'packages/azure-themes/src/azure/styles/TextField.styles.ts', hash: '16504341065904792603' }, - { file: 'packages/azure-themes/src/azure/styles/Toggle.styles.ts', hash: '9820131752972096051' }, - { file: 'packages/azure-themes/src/azure/styles/Tooltip.styles.ts', hash: '1137867786174432089' }, - { file: 'packages/azure-themes/src/index.ts', hash: '7441033631543621919' }, - { file: 'packages/azure-themes/src/version.ts', hash: '14756785630021474777' }, - { file: 'packages/azure-themes/tsconfig.json', hash: '6054155811259967380' }, - { file: 'packages/azure-themes/webpack.config.js', hash: '14062494459790566470' }, - ], - '@fluentui/jest-serializer-merge-styles': [ - { file: 'packages/jest-serializer-merge-styles/.eslintrc.json', hash: '9627670268003919245' }, - { file: 'packages/jest-serializer-merge-styles/.npmignore', hash: '47056201363133096' }, - { file: 'packages/jest-serializer-merge-styles/CHANGELOG.json', hash: '10954018229298175588' }, - { file: 'packages/jest-serializer-merge-styles/CHANGELOG.md', hash: '4453963391801474619' }, - { file: 'packages/jest-serializer-merge-styles/LICENSE', hash: '2632243039952250986' }, - { file: 'packages/jest-serializer-merge-styles/README.md', hash: '8547473322085278538' }, - { file: 'packages/jest-serializer-merge-styles/jest.config.js', hash: '17670261926655605039' }, - { file: 'packages/jest-serializer-merge-styles/just.config.ts', hash: '2411455081002746933' }, - { - file: 'packages/jest-serializer-merge-styles/package.json', - hash: '17303012843352115746', - deps: [ - '@fluentui/merge-styles', - '@fluentui/eslint-plugin', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/jest-serializer-merge-styles/project.json', hash: '9258619144494602857' }, - { - file: 'packages/jest-serializer-merge-styles/src/__snapshots__/index.test.tsx.snap', - hash: '4400590441458842461', - }, - { file: 'packages/jest-serializer-merge-styles/src/index.test.tsx', hash: '2012814102331462398' }, - { file: 'packages/jest-serializer-merge-styles/src/index.ts', hash: '15427981283161703159' }, - { file: 'packages/jest-serializer-merge-styles/tsconfig.json', hash: '18031699838750159282' }, - ], - '@fluentui/perf-test-react-components': [ - { file: 'apps/perf-test-react-components/.eslintrc.json', hash: '11394998712033899358' }, - { file: 'apps/perf-test-react-components/CHANGELOG.json', hash: '9705294603087361552' }, - { file: 'apps/perf-test-react-components/CHANGELOG.md', hash: '1955031280662643285' }, - { file: 'apps/perf-test-react-components/README.md', hash: '12764928321652014507' }, - { file: 'apps/perf-test-react-components/config/perf-test/index.ts', hash: '9382341332431634376' }, - { file: 'apps/perf-test-react-components/config/perf-test/scenarioIterations.ts', hash: '2689308603351418909' }, - { file: 'apps/perf-test-react-components/config/perf-test/scenarioNames.ts', hash: '7752641890685283927' }, - { file: 'apps/perf-test-react-components/config/perf-test/scenarioRenderTypes.ts', hash: '4111949727319474190' }, - { file: 'apps/perf-test-react-components/config/pre-copy.json', hash: '5251859254196291210' }, - { file: 'apps/perf-test-react-components/index.html', hash: '2745716322290525623' }, - { file: 'apps/perf-test-react-components/just.config.ts', hash: '4618050165307861195' }, - { - file: 'apps/perf-test-react-components/package.json', - hash: '14351998842130606319', - deps: [ - '@fluentui/scripts-perf-test-flamegrill', - '@fluentui/react-avatar', - '@fluentui/react-button', - '@fluentui/react-field', - '@fluentui/react-persona', - '@fluentui/react-provider', - '@fluentui/react-spinbutton', - '@fluentui/react-theme', - 'npm:@griffel/core', - 'npm:@microsoft/load-themed-styles', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-storybook', - ], - }, - { file: 'apps/perf-test-react-components/project.json', hash: '897404076483519183' }, - { file: 'apps/perf-test-react-components/src/app.tsx', hash: '3188751655411573665' }, - { file: 'apps/perf-test-react-components/src/scenarios/Avatar.tsx', hash: '8157265688749489090' }, - { file: 'apps/perf-test-react-components/src/scenarios/Button.tsx', hash: '274370466704185279' }, - { file: 'apps/perf-test-react-components/src/scenarios/Field.tsx', hash: '3681451947007170553' }, - { file: 'apps/perf-test-react-components/src/scenarios/FluentProvider.tsx', hash: '769812070028657132' }, - { - file: 'apps/perf-test-react-components/src/scenarios/FluentProviderWithTheme.tsx', - hash: '2530515739000735637', - }, - { file: 'apps/perf-test-react-components/src/scenarios/MakeStyles.tsx', hash: '7976650837438939483' }, - { file: 'apps/perf-test-react-components/src/scenarios/Persona.tsx', hash: '12680964084800898666' }, - { file: 'apps/perf-test-react-components/src/scenarios/SpinButton.tsx', hash: '13668415692180724398' }, - { file: 'apps/perf-test-react-components/tsconfig.json', hash: '8441577648341427081' }, - { file: 'apps/perf-test-react-components/webpack.config.js', hash: '6869860371066694099' }, - ], - '@fluentui/react-teaching-popover-preview': [ - { file: 'packages/react-components/react-teaching-popover-preview/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-teaching-popover-preview/.eslintrc.json', hash: '11822209983446579696' }, - { - file: 'packages/react-components/react-teaching-popover-preview/.storybook/main.js', - hash: '11617744840349284164', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/.storybook/preview.js', - hash: '1791378012295456991', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-teaching-popover-preview/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-teaching-popover-preview/CHANGELOG.json', hash: '8994884635951557618' }, - { file: 'packages/react-components/react-teaching-popover-preview/CHANGELOG.md', hash: '14480893186605819528' }, - { file: 'packages/react-components/react-teaching-popover-preview/LICENSE', hash: '8318516742902246056' }, - { file: 'packages/react-components/react-teaching-popover-preview/README.md', hash: '4815969679662335124' }, - { - file: 'packages/react-components/react-teaching-popover-preview/config/api-extractor.json', - hash: '124052868224837692', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/config/tests.js', - hash: '16913843724990866890', - }, - { file: 'packages/react-components/react-teaching-popover-preview/docs/Spec.md', hash: '16256309628029914774' }, - { - file: 'packages/react-components/react-teaching-popover-preview/etc/images/swapImage.png', - hash: '12876338665092853890', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/etc/react-teaching-popover-preview.api.md', - hash: '11243623359092034041', - }, - { file: 'packages/react-components/react-teaching-popover-preview/jest.config.js', hash: '13584371025946738595' }, - { file: 'packages/react-components/react-teaching-popover-preview/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-teaching-popover-preview/package.json', - hash: '17670663144617569278', - deps: [ - '@fluentui/react-jsx-runtime', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/react-shared-contexts', - '@fluentui/react-popover', - '@fluentui/react-button', - '@fluentui/react-tabster', - 'npm:@fluentui/react-icons', - '@fluentui/react-aria', - '@fluentui/react-context-selector', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-teaching-popover-preview/project.json', hash: '14616591285923787189' }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopover.ts', - hash: '7389541180256976710', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverActions.ts', - hash: '5358762121561117822', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverBody.ts', - hash: '1131558293591082898', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverButton.ts', - hash: '7413929216130545088', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverCarousel.ts', - hash: '12601511764903480892', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverContext.ts', - hash: '13481016016250248226', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverHeader.ts', - hash: '15529787251709216705', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverPageCount.ts', - hash: '17073836279869371730', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverSurface.ts', - hash: '14483713832663730605', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverTitle.ts', - hash: '13840095734895178938', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/TeachingPopoverTrigger.ts', - hash: '9281431365623494399', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.test.tsx', - hash: '112626277921287604', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.tsx', - hash: '14097696607211212505', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/TeachingPopover.types.ts', - hash: '12289824331777302830', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/index.ts', - hash: '1226227490827364046', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/renderTeachingPopover.tsx', - hash: '11005122137749609355', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/useTeachingPopover.ts', - hash: '9421874386964730109', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopover/useTeachingPopoverContext.ts', - hash: '15884992890186760431', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.test.tsx', - hash: '15349775667547186854', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.tsx', - hash: '14030510950857980014', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/TeachingPopoverActions.types.ts', - hash: '16827896840583128219', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/__snapshots__/TeachingPopoverActions.test.tsx.snap', - hash: '18337752677565992943', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/index.ts', - hash: '18435084670675140657', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/renderTeachingPopoverActions.tsx', - hash: '14266117732360718671', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/useTeachingPopoverActions.ts', - hash: '4096968893721737403', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverActions/useTeachingPopoverActionsStyles.styles.ts', - hash: '17255966558997131615', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.test.tsx', - hash: '11495521293989665067', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.tsx', - hash: '7858610052521811915', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/TeachingPopoverBody.types.ts', - hash: '17319835197952734098', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/__snapshots__/TeachingPopoverBody.test.tsx.snap', - hash: '4314797497538624872', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/index.ts', - hash: '9472987200176136993', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/renderTeachingPopoverBody.tsx', - hash: '7235475384754499998', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/useTeachingPopoverBody.ts', - hash: '15612610339406533157', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverBody/useTeachingPopoverBodyStyles.styles.ts', - hash: '11908879224221270510', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.test.tsx', - hash: '12558548386874541122', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.tsx', - hash: '4404208766411340943', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/TeachingPopoverButton.types.ts', - hash: '732387137400908009', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/index.ts', - hash: '11272611281483058771', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/renderTeachingPopoverButton.tsx', - hash: '14249489053108298165', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/useTeachingPopoverButton.ts', - hash: '10608687828497095226', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverButton/useTeachingPopoverButtonStyles.styles.ts', - hash: '7486815103861852465', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.test.tsx', - hash: '15114064730783324960', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.tsx', - hash: '15064373276874971387', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/TeachingPopoverCarousel.types.ts', - hash: '6173872613171697428', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/__snapshots__/TeachingPopoverCarousel.test.tsx.snap', - hash: '10518328939545785520', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/index.ts', - hash: '12454703240467593591', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/renderTeachingPopoverCarousel.tsx', - hash: '14124941062994286254', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/useTeachingPopoverCarousel.ts', - hash: '6437048122874103933', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.ts', - hash: '7582112356649397034', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.test.tsx', - hash: '2708718707606539991', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.tsx', - hash: '7770809662350163780', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/TeachingPopoverHeader.types.ts', - hash: '1284598022225209861', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/__snapshots__/TeachingPopoverHeader.test.tsx.snap', - hash: '66542911360758428', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/index.ts', - hash: '15576869881896674472', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/renderTeachingPopoverHeader.tsx', - hash: '18321155974286134670', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/useTeachingPopoverHeader.tsx', - hash: '9762382604091848558', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverHeader/useTeachingPopoverHeaderStyles.styles.ts', - hash: '3852469850417217256', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.test.tsx', - hash: '4837419775547071769', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.tsx', - hash: '17504625350392450179', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/TeachingPopoverPageCount.types.ts', - hash: '2843113478541239823', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/__snapshots__/TeachingPopoverPageCount.test.tsx.snap', - hash: '11407218936841546097', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/index.ts', - hash: '13686490779487932487', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/renderTeachingPopoverPageCount.tsx', - hash: '3192186327141850669', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/useTeachingPopoverPageCount.ts', - hash: '1970193870854102598', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverPageCount/useTeachingPopoverPageCountStyles.styles.ts', - hash: '10634833093274167840', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.test.tsx', - hash: '5724934428492091490', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.tsx', - hash: '11272575543697199841', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/TeachingPopoverSurface.types.ts', - hash: '14003263876187418803', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/__snapshots__/TeachingPopoverSurface.test.tsx.snap', - hash: '9489208442087234503', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/index.ts', - hash: '11298545263727765591', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/renderTeachingPopoverSurface.tsx', - hash: '5159387223578862066', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/useTeachingPopoverSurface.ts', - hash: '8311099309561251981', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverSurface/useTeachingPopoverSurfaceStyles.styles.ts', - hash: '14065583085885253091', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.test.tsx', - hash: '17768990193341551114', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.tsx', - hash: '525328514845513715', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/TeachingPopoverTitle.types.ts', - hash: '3090372936974350401', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/__snapshots__/TeachingPopoverTitle.test.tsx.snap', - hash: '4146139576376363143', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/index.ts', - hash: '6417325189862749957', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/renderTeachingPopoverTitle.tsx', - hash: '1606987935364254240', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/useTeachingPopoverTitle.tsx', - hash: '1009662058008658141', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTitle/useTeachingPopoverTitleStyles.styles.ts', - hash: '3770385461668929171', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.test.tsx', - hash: '5471836767446183674', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.tsx', - hash: '14008566932184133972', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/TeachingPopoverTrigger.types.ts', - hash: '14896345722113243352', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/__snapshots__/TeachingPopoverTrigger.test.tsx.snap', - hash: '6172078088319873378', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/index.ts', - hash: '7072858892780895633', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/renderTeachingPopoverTrigger.tsx', - hash: '11095981190180064218', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.ts', - hash: '16849029819529451671', - }, - { file: 'packages/react-components/react-teaching-popover-preview/src/index.ts', hash: '12678804439345883397' }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/src/testing/mockTeachingPopoverContext.ts', - hash: '14032699750228718615', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverBestPractices.md', - hash: '13132854725403121719', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverBranded.stories.tsx', - hash: '17521116200124480646', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarousel.stories.tsx', - hash: '5192604369618065969', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarouselBranded.stories.tsx', - hash: '13345141870510142666', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverCarouselText.stories.tsx', - hash: '18260449879385146338', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDefault.stories.tsx', - hash: '4876509690720671779', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDefaultBranded.stories.tsx', - hash: '17297757085466422856', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/TeachingPopoverDescription.md', - hash: '3244421341483603138', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/stories/TeachingPopover/index.stories.tsx', - hash: '13975208357646002979', - }, - { file: 'packages/react-components/react-teaching-popover-preview/tsconfig.json', hash: '4314087102028690976' }, - { - file: 'packages/react-components/react-teaching-popover-preview/tsconfig.lib.json', - hash: '5990226506726238656', - }, - { - file: 'packages/react-components/react-teaching-popover-preview/tsconfig.spec.json', - hash: '6114153871167405290', - }, - ], - '@fluentui/react-telemetry': [ - { file: 'packages/fluentui/react-telemetry/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-telemetry/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-telemetry/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-telemetry/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/react-telemetry/package.json', - hash: '11597637505080461496', - deps: [ - 'npm:@babel/runtime', - '@fluentui/react-bindings', - '@fluentui/react-component-event-listener', - 'npm:lodash', - 'npm:react-table', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - 'npm:@types/react-table', - 'npm:lerna-alias', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-telemetry/project.json', hash: '1545707455027966891' }, - { file: 'packages/fluentui/react-telemetry/src/TelemetryPerfFlags.tsx', hash: '15047243473559560992' }, - { file: 'packages/fluentui/react-telemetry/src/TelemetryPopover.tsx', hash: '17978132699403522947' }, - { file: 'packages/fluentui/react-telemetry/src/TelemetryTable.tsx', hash: '13466198782982969536' }, - { file: 'packages/fluentui/react-telemetry/src/index.ts', hash: '17796473986958886897' }, - { file: 'packages/fluentui/react-telemetry/src/styles.ts', hash: '15766090010848193032' }, - { file: 'packages/fluentui/react-telemetry/src/useIntervalUpdate.ts', hash: '11690443637827723090' }, - { file: 'packages/fluentui/react-telemetry/src/useTelemetryColumns.tsx', hash: '1843080583577724726' }, - { file: 'packages/fluentui/react-telemetry/src/useTelemetryData.ts', hash: '7679325461230384030' }, - { file: 'packages/fluentui/react-telemetry/src/useTelemetryState.ts', hash: '11457929168335446841' }, - { file: 'packages/fluentui/react-telemetry/tsconfig.json', hash: '9267037586801109256' }, - ], - '@fluentui/react-table': [ - { file: 'packages/react-components/react-table/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-table/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-table/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-table/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-table/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-table/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-table/CHANGELOG.json', hash: '15976043308258216480' }, - { file: 'packages/react-components/react-table/CHANGELOG.md', hash: '12284887034328568848' }, - { file: 'packages/react-components/react-table/LICENSE', hash: '4345477832354288605' }, - { file: 'packages/react-components/react-table/README.md', hash: '4901443484789913206' }, - { file: 'packages/react-components/react-table/bundle-size/DataGrid.fixture.js', hash: '3853986990699722698' }, - { - file: 'packages/react-components/react-table/bundle-size/PrimitivesOnly.fixture.js', - hash: '2453502332089171285', - }, - { - file: 'packages/react-components/react-table/bundle-size/TableAsDataGrid.fixture.js', - hash: '3489469272183983884', - }, - { - file: 'packages/react-components/react-table/bundle-size/TableSelectionOnly.fixture.js', - hash: '15101770674769534092', - }, - { - file: 'packages/react-components/react-table/bundle-size/TableSortOnly.fixture.js', - hash: '16772869715114899305', - }, - { file: 'packages/react-components/react-table/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-table/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-table/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-table/docs/Spec.md', hash: '6293734900932760050' }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide1.PNG', - hash: '12816229816120791114', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide10.PNG', - hash: '507403483594248181', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide11.PNG', - hash: '10821002649331152305', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide12.PNG', - hash: '16044207046169017904', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide13.PNG', - hash: '4558085957645872825', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide14.PNG', - hash: '15784983474924862966', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide15.PNG', - hash: '3911357198091251632', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide16.PNG', - hash: '16044207046169017904', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide17.PNG', - hash: '3771765972594141142', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide18.PNG', - hash: '1847454647595839912', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide19.PNG', - hash: '378265804099762004', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide2.PNG', - hash: '2013925037770347199', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide20.PNG', - hash: '11286961965291772510', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide21.PNG', - hash: '12780997597152140914', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide22.PNG', - hash: '11635355027693465335', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide23.PNG', - hash: '6091420021788820418', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide24.PNG', - hash: '185692542212997928', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide25.PNG', - hash: '765679849171402571', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide26.PNG', - hash: '14966586126216280425', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide27.PNG', - hash: '659754405265581401', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide28.PNG', - hash: '7909581484454979875', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide29.PNG', - hash: '15406246910192488097', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide3.PNG', - hash: '5018292620786143049', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide30.PNG', - hash: '8445475416143163908', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide4.PNG', - hash: '1410512037832003271', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide5.PNG', - hash: '7251737589323072305', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide6.PNG', - hash: '3097621861574444839', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide7.PNG', - hash: '7233386375010557980', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide8.PNG', - hash: '14959995681332803620', - }, - { - file: 'packages/react-components/react-table/etc/images/table-interactions/Slide9.PNG', - hash: '6476023258270782882', - }, - { file: 'packages/react-components/react-table/etc/react-table.api.md', hash: '17698100367778503037' }, - { file: 'packages/react-components/react-table/jest.config.js', hash: '6598540019410527330' }, - { file: 'packages/react-components/react-table/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-table/package.json', - hash: '7942069547503742693', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-aria', - '@fluentui/react-avatar', - '@fluentui/react-checkbox', - '@fluentui/react-context-selector', - 'npm:@fluentui/react-icons', - '@fluentui/react-radio', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-table/project.json', hash: '4794127214983829980' }, - { file: 'packages/react-components/react-table/src/DataGrid.ts', hash: '17079061606149660778' }, - { file: 'packages/react-components/react-table/src/DataGridBody.ts', hash: '8672044046349703751' }, - { file: 'packages/react-components/react-table/src/DataGridCell.ts', hash: '15985493277395717549' }, - { file: 'packages/react-components/react-table/src/DataGridHeader.ts', hash: '4414606268997421070' }, - { file: 'packages/react-components/react-table/src/DataGridHeaderCell.ts', hash: '4464250898020673551' }, - { file: 'packages/react-components/react-table/src/DataGridRow.ts', hash: '4969572224027565081' }, - { file: 'packages/react-components/react-table/src/DataGridSelectionCell.ts', hash: '9370795542556916127' }, - { file: 'packages/react-components/react-table/src/Table.ts', hash: '14778241596221356404' }, - { file: 'packages/react-components/react-table/src/TableBody.ts', hash: '586474510137933838' }, - { file: 'packages/react-components/react-table/src/TableCell.ts', hash: '13156803246933880197' }, - { file: 'packages/react-components/react-table/src/TableCellActions.ts', hash: '11397146158367149472' }, - { file: 'packages/react-components/react-table/src/TableCellLayout.ts', hash: '4640880441986165945' }, - { file: 'packages/react-components/react-table/src/TableCellPrimaryLayout.ts', hash: '4640880441986165945' }, - { file: 'packages/react-components/react-table/src/TableHeader.ts', hash: '838114321023204504' }, - { file: 'packages/react-components/react-table/src/TableHeaderCell.ts', hash: '6850659350249070005' }, - { file: 'packages/react-components/react-table/src/TableResizeHandle.ts', hash: '3108675560738752517' }, - { file: 'packages/react-components/react-table/src/TableRow.ts', hash: '3608582872695367179' }, - { file: 'packages/react-components/react-table/src/TableSelectionCell.ts', hash: '12503410089805101497' }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/DataGrid.cy.tsx', - hash: '3350411529027605508', - }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/DataGrid.test.tsx', - hash: '3121991208076853892', - }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/DataGrid.tsx', - hash: '17321264386000624870', - }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/DataGrid.types.ts', - hash: '709704323174809435', - }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/__snapshots__/DataGrid.test.tsx.snap', - hash: '17976811616864604250', - }, - { file: 'packages/react-components/react-table/src/components/DataGrid/index.ts', hash: '14447930360764847420' }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/renderDataGrid.tsx', - hash: '15762584639505010258', - }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/useDataGrid.ts', - hash: '18296519326555141072', - }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/useDataGridContextValues.ts', - hash: '4001850224425972488', - }, - { - file: 'packages/react-components/react-table/src/components/DataGrid/useDataGridStyles.styles.ts', - hash: '15924802483199645208', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridBody/DataGridBody.test.tsx', - hash: '365690180230643745', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridBody/DataGridBody.tsx', - hash: '13092328809030939159', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridBody/DataGridBody.types.ts', - hash: '989688156850890464', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridBody/__snapshots__/DataGridBody.test.tsx.snap', - hash: '12795865007847060242', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridBody/index.ts', - hash: '8074172754573827448', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridBody/renderDataGridBody.tsx', - hash: '13006146274395870229', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridBody/useDataGridBody.tsx', - hash: '2490474312124892640', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridBody/useDataGridBodyStyles.styles.ts', - hash: '3088072580687221418', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridCell/DataGridCell.test.tsx', - hash: '14284493750094275925', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridCell/DataGridCell.tsx', - hash: '5979950167817855884', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridCell/DataGridCell.types.ts', - hash: '1469647611878513101', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridCell/__snapshots__/DataGridCell.test.tsx.snap', - hash: '13297941497219637881', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridCell/index.ts', - hash: '1950686883714060159', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridCell/renderDataGridCell.tsx', - hash: '15672771230460021783', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridCell/useDataGridCell.ts', - hash: '5633900691479417673', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridCell/useDataGridCellStyles.styles.ts', - hash: '17197964593221316773', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.test.tsx', - hash: '4388468238184479221', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.tsx', - hash: '13625463631116259235', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeader/DataGridHeader.types.ts', - hash: '16511931732912371303', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeader/__snapshots__/DataGridHeader.test.tsx.snap', - hash: '9406093122186695703', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeader/index.ts', - hash: '3201680452232731904', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeader/renderDataGridHeader.tsx', - hash: '7782227593392993150', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeader/useDataGridHeader.ts', - hash: '8544879729013780740', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeader/useDataGridHeaderStyles.styles.ts', - hash: '5887884145834485645', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.test.tsx', - hash: '8046473821173442128', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.tsx', - hash: '15401726210547002467', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/DataGridHeaderCell.types.ts', - hash: '10061728147229226131', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/__snapshots__/DataGridHeaderCell.test.tsx.snap', - hash: '15607676364797409456', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/index.ts', - hash: '11744360188312949192', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/renderDataGridHeaderCell.tsx', - hash: '9804925281648575111', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/useDataGridHeaderCell.ts', - hash: '8322177597417145595', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridHeaderCell/useDataGridHeaderCellStyles.styles.ts', - hash: '3064467005010167574', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridRow/DataGridRow.test.tsx', - hash: '609493596336427704', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridRow/DataGridRow.tsx', - hash: '2583011202432098234', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridRow/DataGridRow.types.ts', - hash: '11184462291089499466', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridRow/__snapshots__/DataGridRow.test.tsx.snap', - hash: '1090916004093623854', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridRow/index.ts', - hash: '3088124891029267509', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridRow/renderDataGridRow.tsx', - hash: '5595776796766230678', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridRow/useDataGridRow.tsx', - hash: '10140518523773109235', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridRow/useDataGridRowStyles.styles.ts', - hash: '16017903646265286705', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.test.tsx', - hash: '13797254308524947112', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.tsx', - hash: '3499170646948071005', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/DataGridSelectionCell.types.ts', - hash: '15778410513528664058', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/index.ts', - hash: '4837457285516816283', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/renderDataGridSelectionCell.tsx', - hash: '4778904848491643018', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/useDataGridSelectionCell.ts', - hash: '9424237769629002853', - }, - { - file: 'packages/react-components/react-table/src/components/DataGridSelectionCell/useDataGridSelectionCellStyles.styles.ts', - hash: '14851722426357391505', - }, - { - file: 'packages/react-components/react-table/src/components/Table/Table.test.tsx', - hash: '3988653820926313102', - }, - { file: 'packages/react-components/react-table/src/components/Table/Table.tsx', hash: '2616887241723560373' }, - { - file: 'packages/react-components/react-table/src/components/Table/Table.types.ts', - hash: '1207824533076839058', - }, - { - file: 'packages/react-components/react-table/src/components/Table/__snapshots__/Table.test.tsx.snap', - hash: '12819927518323792222', - }, - { file: 'packages/react-components/react-table/src/components/Table/index.ts', hash: '7246842283080963730' }, - { - file: 'packages/react-components/react-table/src/components/Table/renderTable.tsx', - hash: '8231460164589478020', - }, - { file: 'packages/react-components/react-table/src/components/Table/useTable.ts', hash: '4091732233640072596' }, - { - file: 'packages/react-components/react-table/src/components/Table/useTableContextValues.test.ts', - hash: '17213058547749828900', - }, - { - file: 'packages/react-components/react-table/src/components/Table/useTableContextValues.ts', - hash: '1963700558737794813', - }, - { - file: 'packages/react-components/react-table/src/components/Table/useTableStyles.styles.ts', - hash: '14779006953385619770', - }, - { - file: 'packages/react-components/react-table/src/components/TableBody/TableBody.test.tsx', - hash: '7329165518323718931', - }, - { - file: 'packages/react-components/react-table/src/components/TableBody/TableBody.tsx', - hash: '16817188515472471544', - }, - { - file: 'packages/react-components/react-table/src/components/TableBody/TableBody.types.ts', - hash: '14083323400314851537', - }, - { - file: 'packages/react-components/react-table/src/components/TableBody/__snapshots__/TableBody.test.tsx.snap', - hash: '1975112668078964741', - }, - { file: 'packages/react-components/react-table/src/components/TableBody/index.ts', hash: '10642595759435101538' }, - { - file: 'packages/react-components/react-table/src/components/TableBody/renderTableBody.tsx', - hash: '4826167259779664753', - }, - { - file: 'packages/react-components/react-table/src/components/TableBody/useTableBody.ts', - hash: '9253008564346211435', - }, - { - file: 'packages/react-components/react-table/src/components/TableBody/useTableBodyStyles.styles.ts', - hash: '15817108164807954583', - }, - { - file: 'packages/react-components/react-table/src/components/TableCell/TableCell.test.tsx', - hash: '11051355167652939228', - }, - { - file: 'packages/react-components/react-table/src/components/TableCell/TableCell.tsx', - hash: '11710651907704353877', - }, - { - file: 'packages/react-components/react-table/src/components/TableCell/TableCell.types.ts', - hash: '17804113583782862038', - }, - { - file: 'packages/react-components/react-table/src/components/TableCell/__snapshots__/TableCell.test.tsx.snap', - hash: '6687739069799966419', - }, - { file: 'packages/react-components/react-table/src/components/TableCell/index.ts', hash: '16281915016360298866' }, - { - file: 'packages/react-components/react-table/src/components/TableCell/renderTableCell.tsx', - hash: '2144713445527733389', - }, - { - file: 'packages/react-components/react-table/src/components/TableCell/useTableCell.ts', - hash: '1756265038339941425', - }, - { - file: 'packages/react-components/react-table/src/components/TableCell/useTableCellStyles.styles.ts', - hash: '17128545363356648646', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellActions/TableCellActions.test.tsx', - hash: '12709244819248138161', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellActions/TableCellActions.tsx', - hash: '14339356881426535917', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellActions/TableCellActions.types.ts', - hash: '7023150195642875227', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellActions/__snapshots__/TableCellActions.test.tsx.snap', - hash: '13335438201516937847', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellActions/index.ts', - hash: '6025687967602825335', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellActions/renderTableCellActions.tsx', - hash: '8725034395046660102', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellActions/useTableCellActions.ts', - hash: '551858063680153270', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellActions/useTableCellActionsStyles.styles.ts', - hash: '13342768590814720244', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.test.tsx', - hash: '2653762218990098068', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.tsx', - hash: '593798165276555146', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/TableCellLayout.types.ts', - hash: '8930913243964287427', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/__snapshots__/TableCellLayout.test.tsx.snap', - hash: '5152227318550539174', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/index.ts', - hash: '11647574449621743593', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/renderTableCellLayout.tsx', - hash: '6392547495725436491', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayout.ts', - hash: '4174329990714482289', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayoutContextValues.ts', - hash: '13285913200028190631', - }, - { - file: 'packages/react-components/react-table/src/components/TableCellLayout/useTableCellLayoutStyles.styles.ts', - hash: '9106906690843979872', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeader/TableHeader.test.tsx', - hash: '2390014384311299291', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeader/TableHeader.tsx', - hash: '4148101233480039052', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeader/TableHeader.types.ts', - hash: '12959063516863293240', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeader/__snapshots__/TableHeader.test.tsx.snap', - hash: '7035183146798587016', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeader/index.ts', - hash: '3410642880769399092', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeader/renderTableHeader.tsx', - hash: '7047894267214818202', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeader/useTableHeader.ts', - hash: '12447444909845573720', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeader/useTableHeaderStyles.styles.ts', - hash: '14320945159865933979', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.test.tsx', - hash: '88312877306148306', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.tsx', - hash: '11824252066886075845', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeaderCell/TableHeaderCell.types.ts', - hash: '5064822055977353598', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeaderCell/__snapshots__/TableHeaderCell.test.tsx.snap', - hash: '17461620234162290241', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeaderCell/index.ts', - hash: '16326026053823034514', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeaderCell/renderTableHeaderCell.tsx', - hash: '12533290613338772096', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCell.tsx', - hash: '1186488255705582440', - }, - { - file: 'packages/react-components/react-table/src/components/TableHeaderCell/useTableHeaderCellStyles.styles.ts', - hash: '4722792324071201971', - }, - { - file: 'packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.test.tsx', - hash: '4908009169325787003', - }, - { - file: 'packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.tsx', - hash: '4119029624056477906', - }, - { - file: 'packages/react-components/react-table/src/components/TableResizeHandle/TableResizeHandle.types.ts', - hash: '3788214349953356490', - }, - { - file: 'packages/react-components/react-table/src/components/TableResizeHandle/__snapshots__/TableResizeHandle.test.tsx.snap', - hash: '9257042895276257861', - }, - { - file: 'packages/react-components/react-table/src/components/TableResizeHandle/index.ts', - hash: '7452972912560494075', - }, - { - file: 'packages/react-components/react-table/src/components/TableResizeHandle/renderTableResizeHandle.tsx', - hash: '5219167715943845526', - }, - { - file: 'packages/react-components/react-table/src/components/TableResizeHandle/useTableResizeHandle.ts', - hash: '7328222721425120839', - }, - { - file: 'packages/react-components/react-table/src/components/TableResizeHandle/useTableResizeHandleStyles.styles.ts', - hash: '15733935328878813985', - }, - { - file: 'packages/react-components/react-table/src/components/TableRow/TableRow.test.tsx', - hash: '15478826047233568881', - }, - { - file: 'packages/react-components/react-table/src/components/TableRow/TableRow.tsx', - hash: '18444837132530435350', - }, - { - file: 'packages/react-components/react-table/src/components/TableRow/TableRow.types.ts', - hash: '6367169166660505131', - }, - { - file: 'packages/react-components/react-table/src/components/TableRow/__snapshots__/TableRow.test.tsx.snap', - hash: '15440056760632672248', - }, - { file: 'packages/react-components/react-table/src/components/TableRow/index.ts', hash: '16433222686764991881' }, - { - file: 'packages/react-components/react-table/src/components/TableRow/renderTableRow.tsx', - hash: '9020356206322865233', - }, - { - file: 'packages/react-components/react-table/src/components/TableRow/useTableRow.ts', - hash: '11761709334920900157', - }, - { - file: 'packages/react-components/react-table/src/components/TableRow/useTableRowStyles.styles.ts', - hash: '12531923330452599881', - }, - { - file: 'packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.test.tsx', - hash: '6411551806011869763', - }, - { - file: 'packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.tsx', - hash: '650480750958853', - }, - { - file: 'packages/react-components/react-table/src/components/TableSelectionCell/TableSelectionCell.types.ts', - hash: '18184138947631542698', - }, - { - file: 'packages/react-components/react-table/src/components/TableSelectionCell/__snapshots__/TableSelectionCell.test.tsx.snap', - hash: '4876836364386778508', - }, - { - file: 'packages/react-components/react-table/src/components/TableSelectionCell/index.ts', - hash: '12366029392607972381', - }, - { - file: 'packages/react-components/react-table/src/components/TableSelectionCell/renderTableSelectionCell.tsx', - hash: '10405033063074637043', - }, - { - file: 'packages/react-components/react-table/src/components/TableSelectionCell/useTableSelectionCell.tsx', - hash: '13549839021610253427', - }, - { - file: 'packages/react-components/react-table/src/components/TableSelectionCell/useTableSelectionCellStyles.styles.ts', - hash: '9336811611325446753', - }, - { file: 'packages/react-components/react-table/src/contexts/columnIdContext.ts', hash: '1084340240683719750' }, - { file: 'packages/react-components/react-table/src/contexts/dataGridContext.ts', hash: '5570658827395223292' }, - { file: 'packages/react-components/react-table/src/contexts/rowIdContext.ts', hash: '3534861151135745095' }, - { file: 'packages/react-components/react-table/src/contexts/tableContext.ts', hash: '1391145068294881469' }, - { - file: 'packages/react-components/react-table/src/contexts/tableHeaderContext.ts', - hash: '13631502139309569843', - }, - { file: 'packages/react-components/react-table/src/hooks/createColumn.ts', hash: '1982242325429104491' }, - { file: 'packages/react-components/react-table/src/hooks/index.ts', hash: '13799373635655725354' }, - { file: 'packages/react-components/react-table/src/hooks/types.ts', hash: '6174182288606230308' }, - { file: 'packages/react-components/react-table/src/hooks/useKeyboardResizing.ts', hash: '15626054918149148172' }, - { - file: 'packages/react-components/react-table/src/hooks/useMeasureElement.test.tsx', - hash: '15127064510536374752', - }, - { file: 'packages/react-components/react-table/src/hooks/useMeasureElement.ts', hash: '4021244669807144498' }, - { - file: 'packages/react-components/react-table/src/hooks/useTableColumnResizeMouseHandler.ts', - hash: '15338397319447945983', - }, - { - file: 'packages/react-components/react-table/src/hooks/useTableColumnResizeState.test.ts', - hash: '14299849820910707739', - }, - { - file: 'packages/react-components/react-table/src/hooks/useTableColumnResizeState.ts', - hash: '14235677586849461204', - }, - { - file: 'packages/react-components/react-table/src/hooks/useTableColumnSizing.test.ts', - hash: '5213967468781703495', - }, - { - file: 'packages/react-components/react-table/src/hooks/useTableColumnSizing.tsx', - hash: '12200350387517053981', - }, - { - file: 'packages/react-components/react-table/src/hooks/useTableCompositeNavigation.ts', - hash: '12883916471074441744', - }, - { - file: 'packages/react-components/react-table/src/hooks/useTableFeatures.test.ts', - hash: '14407794722332764337', - }, - { file: 'packages/react-components/react-table/src/hooks/useTableFeatures.ts', hash: '11316047060762564043' }, - { - file: 'packages/react-components/react-table/src/hooks/useTableSelection.test.ts', - hash: '10642268899411474511', - }, - { file: 'packages/react-components/react-table/src/hooks/useTableSelection.ts', hash: '274106747344727539' }, - { file: 'packages/react-components/react-table/src/hooks/useTableSort.test.ts', hash: '4876939199901475944' }, - { file: 'packages/react-components/react-table/src/hooks/useTableSort.ts', hash: '3031703309871912592' }, - { file: 'packages/react-components/react-table/src/index.ts', hash: '15694762333787260772' }, - { file: 'packages/react-components/react-table/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-table/src/testing/mockDataGridContext.ts', - hash: '12345405769834274534', - }, - { file: 'packages/react-components/react-table/src/testing/mockSyntheticEvent.ts', hash: '1212352037375346170' }, - { file: 'packages/react-components/react-table/src/testing/mockTableState.ts', hash: '15042778666285051569' }, - { - file: 'packages/react-components/react-table/src/utils/columnResizeUtils.test.ts', - hash: '6011727881236160373', - }, - { file: 'packages/react-components/react-table/src/utils/columnResizeUtils.ts', hash: '15912676873764422519' }, - { file: 'packages/react-components/react-table/src/utils/isColumnSortable.ts', hash: '17332718086331285738' }, - { - file: 'packages/react-components/react-table/stories/DataGrid/CompositeNavigation.stories.tsx', - hash: '462497658692016730', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/CustomRowId.stories.tsx', - hash: '7200996654339205885', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/DataGridDescription.md', - hash: '14297991401899578735', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/Default.stories.tsx', - hash: '12603562064528492256', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/FocusableElementsInCells.stories.tsx', - hash: '8698941837297046634', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/MultipleSelect.stories.tsx', - hash: '12528499231255362163', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/MultipleSelectControlled.stories.tsx', - hash: '17764972028460656409', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/ResizableColumns.stories.tsx', - hash: '17972472683075739426', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/SelectionAppearance.stories.tsx', - hash: '5103565752129711868', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/SingleSelect.stories.tsx', - hash: '5263004353615079277', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/SingleSelectControlled.stories.tsx', - hash: '10982877708572451543', - }, - { file: 'packages/react-components/react-table/stories/DataGrid/Sort.stories.tsx', hash: '514907417437481165' }, - { - file: 'packages/react-components/react-table/stories/DataGrid/SortControlled.stories.tsx', - hash: '18333722598813021923', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/SubtleSelection.stories.tsx', - hash: '16193231600548811672', - }, - { - file: 'packages/react-components/react-table/stories/DataGrid/Virtualization.stories.tsx', - hash: '12648284986353904171', - }, - { file: 'packages/react-components/react-table/stories/DataGrid/index.stories.tsx', hash: '9938818216767215778' }, - { - file: 'packages/react-components/react-table/stories/Table/CellActions.stories.tsx', - hash: '6452579492109796205', - }, - { - file: 'packages/react-components/react-table/stories/Table/CellNavigation.stories.tsx', - hash: '5784594627376239400', - }, - { - file: 'packages/react-components/react-table/stories/Table/CompositeNavigation.stories.tsx', - hash: '4853594687376691180', - }, - { - file: 'packages/react-components/react-table/stories/Table/DataGrid.stories.tsx', - hash: '10870920636539121573', - }, - { file: 'packages/react-components/react-table/stories/Table/Default.stories.tsx', hash: '12771585741670131315' }, - { - file: 'packages/react-components/react-table/stories/Table/FocusableElements.Cells.stories.tsx', - hash: '4563520350364841246', - }, - { - file: 'packages/react-components/react-table/stories/Table/Memoization.stories.tsx', - hash: '9716844619909358490', - }, - { - file: 'packages/react-components/react-table/stories/Table/MultipleSelect.stories.tsx', - hash: '18256653912049404303', - }, - { - file: 'packages/react-components/react-table/stories/Table/MultipleSelectControlled.stories.tsx', - hash: '17511909197299034459', - }, - { - file: 'packages/react-components/react-table/stories/Table/NonNativeElements.stories.tsx', - hash: '8410279079044763167', - }, - { - file: 'packages/react-components/react-table/stories/Table/PrimaryCell.stories.tsx', - hash: '6210883377837677944', - }, - { - file: 'packages/react-components/react-table/stories/Table/ResizableColumnsControlled.stories.tsx', - hash: '11377008235631273853', - }, - { - file: 'packages/react-components/react-table/stories/Table/ResizableColumnsUncontrolled.stories.tsx', - hash: '10073256218889568076', - }, - { - file: 'packages/react-components/react-table/stories/Table/SelectionWithCellActions.stories.tsx', - hash: '14166585273063843176', - }, - { - file: 'packages/react-components/react-table/stories/Table/SingleSelect.stories.tsx', - hash: '16735239486844118885', - }, - { - file: 'packages/react-components/react-table/stories/Table/SingleSelectControlled.stories.tsx', - hash: '4263285025688012103', - }, - { - file: 'packages/react-components/react-table/stories/Table/SizeExtraSmall.stories.tsx', - hash: '16418257672340977129', - }, - { - file: 'packages/react-components/react-table/stories/Table/SizeSmall.stories.tsx', - hash: '18012367151988365241', - }, - { file: 'packages/react-components/react-table/stories/Table/Sort.stories.tsx', hash: '4414973333139307988' }, - { - file: 'packages/react-components/react-table/stories/Table/SortControlled.stories.tsx', - hash: '1218547722178532512', - }, - { - file: 'packages/react-components/react-table/stories/Table/SubtleSelection.stories.tsx', - hash: '9363051409608050544', - }, - { file: 'packages/react-components/react-table/stories/Table/TableDescription.md', hash: '8803727497508721727' }, - { - file: 'packages/react-components/react-table/stories/Table/Virtualization.stories.tsx', - hash: '11309226498381645330', - }, - { file: 'packages/react-components/react-table/stories/Table/index.stories.tsx', hash: '1915606669720448584' }, - { file: 'packages/react-components/react-table/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-table/tsconfig.json', hash: '17847181103745608939' }, - { file: 'packages/react-components/react-table/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-table/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/scripts-triage-bot': [ - { file: 'scripts/triage-bot/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/triage-bot/README.md', hash: '9335607649677537584' }, - { file: 'scripts/triage-bot/jest.config.js', hash: '10011597394858720856' }, - { file: 'scripts/triage-bot/package.json', hash: '13913251469002073545' }, - { file: 'scripts/triage-bot/project.json', hash: '18400117140775395500' }, - { file: 'scripts/triage-bot/src/index.js', hash: '3622410874074552090' }, - { file: 'scripts/triage-bot/src/triage-bot.js', hash: '17650430027921283627' }, - { file: 'scripts/triage-bot/src/triage-bot.spec.ts', hash: '4833519488384355610' }, - { file: 'scripts/triage-bot/src/types.ts', hash: '1994322224594096886' }, - { file: 'scripts/triage-bot/triage-bot.schema.json', hash: '6056199013007068625' }, - { file: 'scripts/triage-bot/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/triage-bot/tsconfig.lib.json', hash: '3593133700658772030' }, - { file: 'scripts/triage-bot/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/merge-styles': [ - { file: 'packages/merge-styles/.eslintrc.json', hash: '7788135779233596637' }, - { file: 'packages/merge-styles/.npmignore', hash: '47056201363133096' }, - { file: 'packages/merge-styles/CHANGELOG.json', hash: '14519500364564262199' }, - { file: 'packages/merge-styles/CHANGELOG.md', hash: '5079020724245270269' }, - { file: 'packages/merge-styles/LICENSE', hash: '815830957326308777' }, - { file: 'packages/merge-styles/README.md', hash: '16105783888956655297' }, - { file: 'packages/merge-styles/config/api-extractor.json', hash: '10799316696017961032' }, - { file: 'packages/merge-styles/etc/merge-styles.api.md', hash: '4006799045914192092' }, - { file: 'packages/merge-styles/jest.config.js', hash: '3240558433730290797' }, - { file: 'packages/merge-styles/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/merge-styles/package.json', - hash: '6801726133528920040', - deps: [ - '@fluentui/set-version', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'packages/merge-styles/project.json', hash: '7472429389665071083' }, - { file: 'packages/merge-styles/src/DeepPartial.ts', hash: '15403652248930272332' }, - { file: 'packages/merge-styles/src/IKeyframes.ts', hash: '5082581657992946140' }, - { file: 'packages/merge-styles/src/IRawStyle.ts', hash: '9178367776936796482' }, - { file: 'packages/merge-styles/src/IRawStyleBase.ts', hash: '14075360098318767891' }, - { file: 'packages/merge-styles/src/IStyle.ts', hash: '16366386667546584254' }, - { file: 'packages/merge-styles/src/IStyleFunction.ts', hash: '17786864697711385839' }, - { file: 'packages/merge-styles/src/IStyleOptions.ts', hash: '3576511368376128738' }, - { file: 'packages/merge-styles/src/IStyleSet.ts', hash: '12275969819165855980' }, - { file: 'packages/merge-styles/src/ObjectOnly.ts', hash: '7192624357398241626' }, - { file: 'packages/merge-styles/src/StyleOptionsState.ts', hash: '13663652144977743975' }, - { file: 'packages/merge-styles/src/Stylesheet.test.ts', hash: '9000703876191062841' }, - { file: 'packages/merge-styles/src/Stylesheet.ts', hash: '6265891817547056926' }, - { file: 'packages/merge-styles/src/concatStyleSets.test.ts', hash: '17199879701993332183' }, - { file: 'packages/merge-styles/src/concatStyleSets.ts', hash: '6102742474386530601' }, - { file: 'packages/merge-styles/src/concatStyleSetsWithProps.test.ts', hash: '10140930549319677976' }, - { file: 'packages/merge-styles/src/concatStyleSetsWithProps.ts', hash: '17386815918035826575' }, - { file: 'packages/merge-styles/src/extractStyleParts.test.ts', hash: '12818094951126093006' }, - { file: 'packages/merge-styles/src/extractStyleParts.ts', hash: '13216560657869606108' }, - { file: 'packages/merge-styles/src/fontFace.test.ts', hash: '4830155305419350516' }, - { file: 'packages/merge-styles/src/fontFace.ts', hash: '18171437276766485053' }, - { file: 'packages/merge-styles/src/getVendorSettings.ts', hash: '17712460932352389426' }, - { file: 'packages/merge-styles/src/index.ts', hash: '2179480601942243073' }, - { file: 'packages/merge-styles/src/keyframes.test.ts', hash: '16939692635795227731' }, - { file: 'packages/merge-styles/src/keyframes.ts', hash: '15229455629128638112' }, - { file: 'packages/merge-styles/src/mergeCss.test.ts', hash: '2692449794265662204' }, - { file: 'packages/merge-styles/src/mergeCssSets.test.ts', hash: '5716085156824388044' }, - { file: 'packages/merge-styles/src/mergeStyleSets.test.ts', hash: '10196256844054668807' }, - { file: 'packages/merge-styles/src/mergeStyleSets.ts', hash: '2171161145484021112' }, - { file: 'packages/merge-styles/src/mergeStyles.test.ts', hash: '1026104081850829361' }, - { file: 'packages/merge-styles/src/mergeStyles.ts', hash: '17412756440920485348' }, - { file: 'packages/merge-styles/src/server.test.ts', hash: '6400343995946700252' }, - { file: 'packages/merge-styles/src/server.ts', hash: '6363853718485863544' }, - { file: 'packages/merge-styles/src/styleToClassName.test.ts', hash: '7801431564365181732' }, - { file: 'packages/merge-styles/src/styleToClassName.ts', hash: '3054023107822799465' }, - { file: 'packages/merge-styles/src/tokenizeWithParentheses.test.ts', hash: '18391684658944695176' }, - { file: 'packages/merge-styles/src/tokenizeWithParentheses.ts', hash: '17064764508063973069' }, - { file: 'packages/merge-styles/src/transforms/kebabRules.test.ts', hash: '5637365605019891583' }, - { file: 'packages/merge-styles/src/transforms/kebabRules.ts', hash: '7834985428724123977' }, - { file: 'packages/merge-styles/src/transforms/prefixRules.test.ts', hash: '17108740823848277505' }, - { file: 'packages/merge-styles/src/transforms/prefixRules.ts', hash: '10825527420894611070' }, - { file: 'packages/merge-styles/src/transforms/provideUnits.test.ts', hash: '3636386315637903392' }, - { file: 'packages/merge-styles/src/transforms/provideUnits.ts', hash: '8082799170974129277' }, - { file: 'packages/merge-styles/src/transforms/rtlifyRules.test.ts', hash: '339048301821636658' }, - { file: 'packages/merge-styles/src/transforms/rtlifyRules.ts', hash: '5076345400622292378' }, - { file: 'packages/merge-styles/src/version.ts', hash: '1460361919700822627' }, - { file: 'packages/merge-styles/tsconfig.json', hash: '17469839658577306420' }, - { file: 'packages/merge-styles/webpack.config.js', hash: '7491670909379831444' }, - ], - '@fluentui/keyboard-keys': [ - { file: 'packages/react-components/keyboard-keys/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/keyboard-keys/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/keyboard-keys/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/keyboard-keys/CHANGELOG.json', hash: '13375252770582910819' }, - { file: 'packages/react-components/keyboard-keys/CHANGELOG.md', hash: '11434158720079159921' }, - { file: 'packages/react-components/keyboard-keys/LICENSE', hash: '16002335077248403003' }, - { file: 'packages/react-components/keyboard-keys/README.md', hash: '5919627830079932907' }, - { - file: 'packages/react-components/keyboard-keys/bundle-size/MultipleKeyCodes.fixture.js', - hash: '16990105420210242292', - }, - { - file: 'packages/react-components/keyboard-keys/bundle-size/MultipleKeys.fixture.js', - hash: '6478992813196866639', - }, - { - file: 'packages/react-components/keyboard-keys/bundle-size/SingleKey.fixture.js', - hash: '14569573360111858150', - }, - { - file: 'packages/react-components/keyboard-keys/bundle-size/SingleKeyCode.fixture.js', - hash: '4166421080442685952', - }, - { file: 'packages/react-components/keyboard-keys/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/keyboard-keys/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/keyboard-keys/etc/keyboard-keys.api.md', hash: '2343404673575691731' }, - { file: 'packages/react-components/keyboard-keys/jest.config.js', hash: '17965212772199600814' }, - { file: 'packages/react-components/keyboard-keys/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/keyboard-keys/package.json', - hash: '14836732657023890952', - deps: [ - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/react-components/keyboard-keys/project.json', hash: '10127551444731352685' }, - { file: 'packages/react-components/keyboard-keys/src/index.ts', hash: '3130694789980667875' }, - { file: 'packages/react-components/keyboard-keys/src/keyCodes.ts', hash: '12246297791239691352' }, - { file: 'packages/react-components/keyboard-keys/src/keys.ts', hash: '16125329113468597476' }, - { file: 'packages/react-components/keyboard-keys/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/keyboard-keys/tsconfig.lib.json', hash: '14975475306433073951' }, - { file: 'packages/react-components/keyboard-keys/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/theme-designer': [ - { file: 'packages/react-components/theme-designer/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/theme-designer/.eslintrc.json', hash: '8960568516666702720' }, - { - file: 'packages/react-components/theme-designer/.storybook/docs-root-theme-designer.css', - hash: '18108071375275259207', - }, - { file: 'packages/react-components/theme-designer/.storybook/main.js', hash: '8606236827640245693' }, - { file: 'packages/react-components/theme-designer/.storybook/preview.js', hash: '1921063914901244173' }, - { file: 'packages/react-components/theme-designer/.storybook/tsconfig.json', hash: '14109446059604296292' }, - { file: 'packages/react-components/theme-designer/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/theme-designer/CHANGELOG.json', hash: '5851783219770066992' }, - { file: 'packages/react-components/theme-designer/CHANGELOG.md', hash: '8975015774552523747' }, - { file: 'packages/react-components/theme-designer/LICENSE', hash: '10180586615754479660' }, - { file: 'packages/react-components/theme-designer/README.md', hash: '14064362199792243849' }, - { file: 'packages/react-components/theme-designer/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/theme-designer/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/theme-designer/etc/theme-designer.api.md', hash: '11098378957995542872' }, - { file: 'packages/react-components/theme-designer/jest.config.js', hash: '16512775771668900261' }, - { file: 'packages/react-components/theme-designer/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/theme-designer/package.json', - hash: '7658291426595211212', - deps: [ - '@fluentui/react-alert', - '@fluentui/react-components', - '@fluentui/react-context-selector', - 'npm:@fluentui/react-icons', - '@fluentui/react-storybook-addon-export-to-sandbox', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - 'npm:@types/dedent', - 'npm:codesandbox-import-utils', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/theme-designer/project.json', hash: '2501994155968039113' }, - { file: 'packages/react-components/theme-designer/public/favicon.ico', hash: '16917280242094002623' }, - { - file: 'packages/react-components/theme-designer/src/Context/ThemeDesignerContext.tsx', - hash: '6521680253608875060', - }, - { file: 'packages/react-components/theme-designer/src/ThemeDesigner.stories.mdx', hash: '17563249137426555093' }, - { file: 'packages/react-components/theme-designer/src/ThemeDesigner.styles.ts', hash: '10646684073193415474' }, - { file: 'packages/react-components/theme-designer/src/ThemeDesigner.tsx', hash: '6850157977355746733' }, - { file: 'packages/react-components/theme-designer/src/ThemeDesigner.types.ts', hash: '7008675520752455334' }, - { file: 'packages/react-components/theme-designer/src/colors/csswg.ts', hash: '14081639457171883273' }, - { file: 'packages/react-components/theme-designer/src/colors/geometry.ts', hash: '5151745733028687223' }, - { file: 'packages/react-components/theme-designer/src/colors/hueMap.ts', hash: '6840317620183457137' }, - { file: 'packages/react-components/theme-designer/src/colors/index.ts', hash: '10120776492809956055' }, - { file: 'packages/react-components/theme-designer/src/colors/palettes.ts', hash: '594085197204633186' }, - { file: 'packages/react-components/theme-designer/src/colors/templates.ts', hash: '7173519415315531121' }, - { file: 'packages/react-components/theme-designer/src/colors/types.ts', hash: '3696924197174361435' }, - { - file: 'packages/react-components/theme-designer/src/components/ColorTokens/AccessibilityList.tsx', - hash: '13584096774872756219', - }, - { - file: 'packages/react-components/theme-designer/src/components/ColorTokens/AccessiblePairs.ts', - hash: '9980370910954070894', - }, - { - file: 'packages/react-components/theme-designer/src/components/ColorTokens/ColorTokens.stories.tsx', - hash: '17717517716066720300', - }, - { - file: 'packages/react-components/theme-designer/src/components/ColorTokens/ColorTokens.tsx', - hash: '15029148600024713618', - }, - { - file: 'packages/react-components/theme-designer/src/components/ColorTokens/TokenIssueList.tsx', - hash: '456852385357751599', - }, - { - file: 'packages/react-components/theme-designer/src/components/ColorTokens/TokenList.style.ts', - hash: '6110208615250697552', - }, - { - file: 'packages/react-components/theme-designer/src/components/ColorTokens/TokenList.tsx', - hash: '6839783308263373433', - }, - { - file: 'packages/react-components/theme-designer/src/components/ColorTokens/UsageList.ts', - hash: '6471683859253310231', - }, - { - file: 'packages/react-components/theme-designer/src/components/Content/Content.tsx', - hash: '8865181677608404415', - }, - { file: 'packages/react-components/theme-designer/src/components/Demo/Demo.tsx', hash: '9430858355440318210' }, - { - file: 'packages/react-components/theme-designer/src/components/Export/ExportLink.tsx', - hash: '7106033445972881846', - }, - { - file: 'packages/react-components/theme-designer/src/components/Export/ExportPanel.tsx', - hash: '6672747784401972674', - }, - { - file: 'packages/react-components/theme-designer/src/components/Header/Header.tsx', - hash: '1884392546660410312', - }, - { file: 'packages/react-components/theme-designer/src/components/Nav/Nav.tsx', hash: '17160060027347264573' }, - { - file: 'packages/react-components/theme-designer/src/components/Palette/Palette.stories.tsx', - hash: '6708215907448994313', - }, - { - file: 'packages/react-components/theme-designer/src/components/Palette/Palette.tsx', - hash: '4659580268217856921', - }, - { - file: 'packages/react-components/theme-designer/src/components/Sidebar/AccessibilityPanel.tsx', - hash: '6455399193904547699', - }, - { - file: 'packages/react-components/theme-designer/src/components/Sidebar/Form.tsx', - hash: '11931296187612905580', - }, - { - file: 'packages/react-components/theme-designer/src/components/Sidebar/Sidebar.tsx', - hash: '17598468332394862702', - }, - { - file: 'packages/react-components/theme-designer/src/components/TokenBoxes/TokenBoxes.stories.tsx', - hash: '9135371313045620466', - }, - { - file: 'packages/react-components/theme-designer/src/components/TokenBoxes/TokenBoxes.tsx', - hash: '13667538306866313466', - }, - { file: 'packages/react-components/theme-designer/src/index.ts', hash: '13556419056930201248' }, - { file: 'packages/react-components/theme-designer/src/utils/brandColors.ts', hash: '4703220043784343979' }, - { - file: 'packages/react-components/theme-designer/src/utils/getAccessibilityChecker.ts', - hash: '1858552788568779359', - }, - { - file: 'packages/react-components/theme-designer/src/utils/getBrandTokensFromPalette.ts', - hash: '11734162430969398099', - }, - { - file: 'packages/react-components/theme-designer/src/utils/getOverridableTokenBrandColors.ts', - hash: '13942400570012229410', - }, - { file: 'packages/react-components/theme-designer/src/utils/themeList.ts', hash: '16498805653931489221' }, - { file: 'packages/react-components/theme-designer/src/utils/toString.ts', hash: '15697896118709132521' }, - { file: 'packages/react-components/theme-designer/src/utils/useDebounce.ts', hash: '8761248074653183998' }, - { file: 'packages/react-components/theme-designer/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/theme-designer/tsconfig.lib.json', hash: '2330431448937249608' }, - { file: 'packages/react-components/theme-designer/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-18-tests-v8': [ - { file: 'apps/react-18-tests-v8/.eslintrc.json', hash: '273467718057503654' }, - { file: 'apps/react-18-tests-v8/CHANGELOG.json', hash: '5977916475780078531' }, - { file: 'apps/react-18-tests-v8/CHANGELOG.md', hash: '10718461854066933788' }, - { file: 'apps/react-18-tests-v8/README.md', hash: '15862859216428956123' }, - { file: 'apps/react-18-tests-v8/config/tests.js', hash: '14010006175392234982' }, - { file: 'apps/react-18-tests-v8/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'apps/react-18-tests-v8/jest.config.js', hash: '10470340730394489937' }, - { file: 'apps/react-18-tests-v8/just.config.ts', hash: '10393370776333958822' }, - { - file: 'apps/react-18-tests-v8/package.json', - hash: '4505824314366546808', - deps: [ - '@fluentui/react', - '@fluentui/react-hooks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-cypress', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - ], - }, - { file: 'apps/react-18-tests-v8/project.json', hash: '11648713096666160953' }, - { file: 'apps/react-18-tests-v8/src/App.tsx', hash: '13987255915692999850' }, - { - file: 'apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.cy.tsx', - hash: '17770592271590427144', - }, - { - file: 'apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.test.tsx', - hash: '14913890186636114321', - }, - { - file: 'apps/react-18-tests-v8/src/components/ContextualMenu/ContextualMenuExample.tsx', - hash: '17838905144516352385', - }, - { file: 'apps/react-18-tests-v8/src/components/ContextualMenu/index.ts', hash: '11003213546574535151' }, - { file: 'apps/react-18-tests-v8/src/components/Panel.Basic.Example.tsx', hash: '11941803416852956776' }, - { file: 'apps/react-18-tests-v8/src/components/index.ts', hash: '13495884275277437011' }, - { file: 'apps/react-18-tests-v8/src/index.tsx', hash: '2918296648402810869' }, - { file: 'apps/react-18-tests-v8/tsconfig.app.json', hash: '17704136081794340261' }, - { file: 'apps/react-18-tests-v8/tsconfig.cy.json', hash: '4669440979528425638' }, - { file: 'apps/react-18-tests-v8/tsconfig.json', hash: '12085512686550681295' }, - { file: 'apps/react-18-tests-v8/tsconfig.react-compat-check.json', hash: '5090552958223827867' }, - { file: 'apps/react-18-tests-v8/tsconfig.spec.json', hash: '13287603543641469083' }, - { file: 'apps/react-18-tests-v8/webpack.config.js', hash: '18327882615681333843' }, - ], - '@fluentui/react-utilities': [ - { file: 'packages/react-components/react-utilities/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-utilities/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-utilities/.swcrc', hash: '471348148265161299' }, - { file: 'packages/react-components/react-utilities/CHANGELOG.json', hash: '12606149671536690059' }, - { file: 'packages/react-components/react-utilities/CHANGELOG.md', hash: '5718490295303643193' }, - { file: 'packages/react-components/react-utilities/LICENSE', hash: '4548592527434132508' }, - { file: 'packages/react-components/react-utilities/README.md', hash: '13947731880378270631' }, - { - file: 'packages/react-components/react-utilities/bundle-size/SSRProvider.fixture.js', - hash: '2639532017254723484', - }, - { file: 'packages/react-components/react-utilities/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-utilities/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-utilities/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-utilities/etc/react-utilities.api.md', hash: '841069789972448649' }, - { file: 'packages/react-components/react-utilities/jest.config.js', hash: '13468661421719128629' }, - { file: 'packages/react-components/react-utilities/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-utilities/package.json', - hash: '1280488417604585260', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-shared-contexts', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-components/react-utilities/project.json', hash: '10086645969078851081' }, - { file: 'packages/react-components/react-utilities/src/compose/README.md', hash: '14625676054464334966' }, - { - file: 'packages/react-components/react-utilities/src/compose/assertSlots.test.tsx', - hash: '5114753890814650553', - }, - { file: 'packages/react-components/react-utilities/src/compose/assertSlots.ts', hash: '12263589124078345064' }, - { file: 'packages/react-components/react-utilities/src/compose/constants.ts', hash: '12568670464554309203' }, - { - file: 'packages/react-components/react-utilities/src/compose/deprecated/getSlots.test.tsx', - hash: '2001730957259217194', - }, - { - file: 'packages/react-components/react-utilities/src/compose/deprecated/getSlots.ts', - hash: '1830296453746714796', - }, - { - file: 'packages/react-components/react-utilities/src/compose/deprecated/getSlotsNext.test.tsx', - hash: '15481611158559264587', - }, - { - file: 'packages/react-components/react-utilities/src/compose/deprecated/getSlotsNext.ts', - hash: '17468126332557367034', - }, - { - file: 'packages/react-components/react-utilities/src/compose/deprecated/resolveShorthand.test.tsx', - hash: '12027460737839448450', - }, - { - file: 'packages/react-components/react-utilities/src/compose/deprecated/resolveShorthand.ts', - hash: '4085975625642820386', - }, - { - file: 'packages/react-components/react-utilities/src/compose/getIntrinsicElementProps.test.ts', - hash: '17625783833610049783', - }, - { - file: 'packages/react-components/react-utilities/src/compose/getIntrinsicElementProps.ts', - hash: '9196198849778326580', - }, - { file: 'packages/react-components/react-utilities/src/compose/index.ts', hash: '6238139875353986739' }, - { - file: 'packages/react-components/react-utilities/src/compose/isResolvedShorthand.ts', - hash: '10041723076556072661', - }, - { file: 'packages/react-components/react-utilities/src/compose/isSlot.test.tsx', hash: '1686130142285675914' }, - { file: 'packages/react-components/react-utilities/src/compose/isSlot.ts', hash: '8873396891138973958' }, - { file: 'packages/react-components/react-utilities/src/compose/slot.test.tsx', hash: '6275674688381333524' }, - { file: 'packages/react-components/react-utilities/src/compose/slot.ts', hash: '17764427704923751237' }, - { file: 'packages/react-components/react-utilities/src/compose/types.test.ts', hash: '12006846578958764927' }, - { file: 'packages/react-components/react-utilities/src/compose/types.ts', hash: '6998235074462254421' }, - { file: 'packages/react-components/react-utilities/src/events/index.ts', hash: '5494215381271956158' }, - { - file: 'packages/react-components/react-utilities/src/events/mouseTouchHelpers.test.ts', - hash: '8235155130433892375', - }, - { - file: 'packages/react-components/react-utilities/src/events/mouseTouchHelpers.ts', - hash: '7032968851854609969', - }, - { file: 'packages/react-components/react-utilities/src/hooks/index.ts', hash: '17204401905706147577' }, - { - file: 'packages/react-components/react-utilities/src/hooks/useAnimationFrame.test.ts', - hash: '5036573002543609992', - }, - { file: 'packages/react-components/react-utilities/src/hooks/useAnimationFrame.ts', hash: '46044635345141684' }, - { - file: 'packages/react-components/react-utilities/src/hooks/useBrowserTimer.test.ts', - hash: '14389068346546567828', - }, - { file: 'packages/react-components/react-utilities/src/hooks/useBrowserTimer.ts', hash: '11577709440845443589' }, - { - file: 'packages/react-components/react-utilities/src/hooks/useControllableState.test.ts', - hash: '7501091402152166732', - }, - { - file: 'packages/react-components/react-utilities/src/hooks/useControllableState.ts', - hash: '4183798484252782583', - }, - { - file: 'packages/react-components/react-utilities/src/hooks/useEventCallback.test.ts', - hash: '1424756617434420204', - }, - { file: 'packages/react-components/react-utilities/src/hooks/useEventCallback.ts', hash: '4086500801223235507' }, - { - file: 'packages/react-components/react-utilities/src/hooks/useFirstMount.test.ts', - hash: '15489772157742840375', - }, - { file: 'packages/react-components/react-utilities/src/hooks/useFirstMount.ts', hash: '10062658339272667832' }, - { file: 'packages/react-components/react-utilities/src/hooks/useForceUpdate.ts', hash: '15749428460651352441' }, - { file: 'packages/react-components/react-utilities/src/hooks/useId.test.tsx', hash: '8540968448007643942' }, - { file: 'packages/react-components/react-utilities/src/hooks/useId.ts', hash: '16791315725109884855' }, - { - file: 'packages/react-components/react-utilities/src/hooks/useIsomorphicLayoutEffect.ts', - hash: '12527101582470470210', - }, - { - file: 'packages/react-components/react-utilities/src/hooks/useMergedRefs.test.tsx', - hash: '15625524889530719378', - }, - { file: 'packages/react-components/react-utilities/src/hooks/useMergedRefs.ts', hash: '15582394188849760782' }, - { - file: 'packages/react-components/react-utilities/src/hooks/useOnClickOutside.cy.tsx', - hash: '9729146114040589542', - }, - { - file: 'packages/react-components/react-utilities/src/hooks/useOnClickOutside.test.ts', - hash: '13195861638677596652', - }, - { file: 'packages/react-components/react-utilities/src/hooks/useOnClickOutside.ts', hash: '2917971710023603742' }, - { - file: 'packages/react-components/react-utilities/src/hooks/useOnScrollOutside.cy.tsx', - hash: '111388682322343975', - }, - { - file: 'packages/react-components/react-utilities/src/hooks/useOnScrollOutside.test.ts', - hash: '4403438015055961322', - }, - { - file: 'packages/react-components/react-utilities/src/hooks/useOnScrollOutside.ts', - hash: '16339052801423405307', - }, - { file: 'packages/react-components/react-utilities/src/hooks/usePrevious.test.ts', hash: '11052424330262721985' }, - { file: 'packages/react-components/react-utilities/src/hooks/usePrevious.ts', hash: '7814650654110052238' }, - { - file: 'packages/react-components/react-utilities/src/hooks/useScrollbarWidth.ts', - hash: '18297843172923507130', - }, - { file: 'packages/react-components/react-utilities/src/hooks/useTimeout.test.ts', hash: '6143183876150228738' }, - { file: 'packages/react-components/react-utilities/src/hooks/useTimeout.ts', hash: '551248724631042442' }, - { file: 'packages/react-components/react-utilities/src/index.ts', hash: '10881091974104498336' }, - { file: 'packages/react-components/react-utilities/src/selection/index.ts', hash: '18175758767152219244' }, - { file: 'packages/react-components/react-utilities/src/selection/types.ts', hash: '7956389095795649433' }, - { - file: 'packages/react-components/react-utilities/src/selection/useSelection.test.ts', - hash: '16458769859979828472', - }, - { file: 'packages/react-components/react-utilities/src/selection/useSelection.ts', hash: '804144186603019901' }, - { - file: 'packages/react-components/react-utilities/src/ssr/SSRContext-node.test.tsx', - hash: '17839409682341273470', - }, - { file: 'packages/react-components/react-utilities/src/ssr/SSRContext.test.tsx', hash: '9881450806150617637' }, - { file: 'packages/react-components/react-utilities/src/ssr/SSRContext.tsx', hash: '1113275880901853979' }, - { file: 'packages/react-components/react-utilities/src/ssr/canUseDOM.ts', hash: '9966677476416266386' }, - { file: 'packages/react-components/react-utilities/src/ssr/index.ts', hash: '13577532512706846200' }, - { - file: 'packages/react-components/react-utilities/src/testing/mockSyntheticEvent.ts', - hash: '1212352037375346170', - }, - { - file: 'packages/react-components/react-utilities/src/trigger/applyTriggerPropsToChildren.test.tsx', - hash: '10562372782750022367', - }, - { - file: 'packages/react-components/react-utilities/src/trigger/applyTriggerPropsToChildren.ts', - hash: '7123990353661499142', - }, - { - file: 'packages/react-components/react-utilities/src/trigger/getTriggerChild.test.tsx', - hash: '8599437159744729593', - }, - { - file: 'packages/react-components/react-utilities/src/trigger/getTriggerChild.ts', - hash: '14656456857362872393', - }, - { file: 'packages/react-components/react-utilities/src/trigger/index.ts', hash: '12347105081516068977' }, - { - file: 'packages/react-components/react-utilities/src/trigger/isFluentTrigger.ts', - hash: '14723355846450886312', - }, - { file: 'packages/react-components/react-utilities/src/trigger/types.ts', hash: '14818087122904783134' }, - { file: 'packages/react-components/react-utilities/src/utils/clamp.test.ts', hash: '14460305721269143852' }, - { file: 'packages/react-components/react-utilities/src/utils/clamp.ts', hash: '5651646545287775562' }, - { - file: 'packages/react-components/react-utilities/src/utils/createSetFromIterable.ts', - hash: '5272994368316459991', - }, - { - file: 'packages/react-components/react-utilities/src/utils/getNativeElementProps.test.ts', - hash: '4200849153460230731', - }, - { - file: 'packages/react-components/react-utilities/src/utils/getNativeElementProps.ts', - hash: '11790897451229125905', - }, - { - file: 'packages/react-components/react-utilities/src/utils/getRTLSafeKey.test.ts', - hash: '4315321514077746401', - }, - { file: 'packages/react-components/react-utilities/src/utils/getRTLSafeKey.ts', hash: '10064884271406195450' }, - { - file: 'packages/react-components/react-utilities/src/utils/getReactCallbackName.test.tsx', - hash: '3201101536537757353', - }, - { - file: 'packages/react-components/react-utilities/src/utils/getReactCallbackName.ts', - hash: '6579455818455583984', - }, - { file: 'packages/react-components/react-utilities/src/utils/index.ts', hash: '13403671928297468691' }, - { - file: 'packages/react-components/react-utilities/src/utils/isHTMLElement.test.ts', - hash: '11482981990848453903', - }, - { file: 'packages/react-components/react-utilities/src/utils/isHTMLElement.ts', hash: '1282709590511722740' }, - { - file: 'packages/react-components/react-utilities/src/utils/isInteractiveHTMLElement.test.ts', - hash: '16371310108984842884', - }, - { - file: 'packages/react-components/react-utilities/src/utils/isInteractiveHTMLElement.ts', - hash: '8021585456494828017', - }, - { - file: 'packages/react-components/react-utilities/src/utils/mergeCallbacks.test.ts', - hash: '18114696197479197623', - }, - { file: 'packages/react-components/react-utilities/src/utils/mergeCallbacks.ts', hash: '798883161576461363' }, - { file: 'packages/react-components/react-utilities/src/utils/omit.test.ts', hash: '5161657923836885101' }, - { file: 'packages/react-components/react-utilities/src/utils/omit.ts', hash: '15464314669185068450' }, - { - file: 'packages/react-components/react-utilities/src/utils/priorityQueue.test.ts', - hash: '16760683918500211316', - }, - { file: 'packages/react-components/react-utilities/src/utils/priorityQueue.ts', hash: '17476738038850897309' }, - { file: 'packages/react-components/react-utilities/src/utils/properties.test.ts', hash: '18102240430945997965' }, - { file: 'packages/react-components/react-utilities/src/utils/properties.ts', hash: '11898160952975282576' }, - { - file: 'packages/react-components/react-utilities/src/virtualParent/elementContains.test.ts', - hash: '5170255865647103248', - }, - { - file: 'packages/react-components/react-utilities/src/virtualParent/elementContains.ts', - hash: '8217646841775655084', - }, - { - file: 'packages/react-components/react-utilities/src/virtualParent/getParent.test.ts', - hash: '3751432664303618425', - }, - { file: 'packages/react-components/react-utilities/src/virtualParent/getParent.ts', hash: '963679372623875089' }, - { file: 'packages/react-components/react-utilities/src/virtualParent/index.ts', hash: '4831600202384909779' }, - { - file: 'packages/react-components/react-utilities/src/virtualParent/isVirtualElement.test.ts', - hash: '14328481756165127483', - }, - { - file: 'packages/react-components/react-utilities/src/virtualParent/isVirtualElement.ts', - hash: '13999461821148654425', - }, - { - file: 'packages/react-components/react-utilities/src/virtualParent/setVirtualParent.test.ts', - hash: '15866095696536342231', - }, - { - file: 'packages/react-components/react-utilities/src/virtualParent/setVirtualParent.ts', - hash: '12573458924066224208', - }, - { file: 'packages/react-components/react-utilities/src/virtualParent/types.ts', hash: '6862881665933269116' }, - { file: 'packages/react-components/react-utilities/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-utilities/tsconfig.json', hash: '5596071008249197618' }, - { file: 'packages/react-components/react-utilities/tsconfig.lib.json', hash: '4109592473830538944' }, - { file: 'packages/react-components/react-utilities/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-colorpicker-compat': [ - { file: 'packages/react-components/react-colorpicker-compat/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-colorpicker-compat/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-colorpicker-compat/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-colorpicker-compat/LICENSE', hash: '17896713687333863732' }, - { file: 'packages/react-components/react-colorpicker-compat/README.md', hash: '8828254010565736603' }, - { - file: 'packages/react-components/react-colorpicker-compat/config/api-extractor.json', - hash: '124052868224837692', - }, - { file: 'packages/react-components/react-colorpicker-compat/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-colorpicker-compat/docs/Spec.md', hash: '7692605215066064795' }, - { - file: 'packages/react-components/react-colorpicker-compat/etc/react-colorpicker-compat.api.md', - hash: '8304047180392637752', - }, - { file: 'packages/react-components/react-colorpicker-compat/jest.config.js', hash: '11566748837314507290' }, - { file: 'packages/react-components/react-colorpicker-compat/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-colorpicker-compat/package.json', - hash: '10909466317582711840', - deps: [ - '@fluentui/react-jsx-runtime', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-colorpicker-compat/project.json', hash: '10678425435316637330' }, - { file: 'packages/react-components/react-colorpicker-compat/src/index.ts', hash: '17055841062299011540' }, - { file: 'packages/react-components/react-colorpicker-compat/tsconfig.json', hash: '11066276364833551840' }, - { file: 'packages/react-components/react-colorpicker-compat/tsconfig.lib.json', hash: '14975475306433073951' }, - { file: 'packages/react-components/react-colorpicker-compat/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/react-northstar-styles-renderer': [ - { file: 'packages/fluentui/react-northstar-styles-renderer/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-northstar-styles-renderer/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-northstar-styles-renderer/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-northstar-styles-renderer/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/react-northstar-styles-renderer/package.json', - hash: '13310199486065829792', - deps: [ - 'npm:@babel/runtime', - '@fluentui/styles', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - 'npm:lerna-alias', - 'npm:react', - ], - }, - { file: 'packages/fluentui/react-northstar-styles-renderer/project.json', hash: '8332394439489930408' }, - { file: 'packages/fluentui/react-northstar-styles-renderer/src/index.ts', hash: '17458262484157446193' }, - { file: 'packages/fluentui/react-northstar-styles-renderer/src/noopRenderer.ts', hash: '10378848867356110502' }, - { file: 'packages/fluentui/react-northstar-styles-renderer/src/types.ts', hash: '5323224652889144013' }, - { file: 'packages/fluentui/react-northstar-styles-renderer/tsconfig.json', hash: '2122159932199081123' }, - ], - '@fluentui/a11y-testing': [ - { file: 'packages/a11y-testing/.eslintrc.json', hash: '11018738359270224912' }, - { file: 'packages/a11y-testing/.npmignore', hash: '15779616407447347661' }, - { file: 'packages/a11y-testing/CHANGELOG.json', hash: '15739043855444223084' }, - { file: 'packages/a11y-testing/CHANGELOG.md', hash: '17183189538011835521' }, - { file: 'packages/a11y-testing/LICENSE', hash: '7816564243463356568' }, - { file: 'packages/a11y-testing/README.md', hash: '10607231298984649280' }, - { file: 'packages/a11y-testing/just.config.ts', hash: '2411455081002746933' }, - { - file: 'packages/a11y-testing/package.json', - hash: '10737859425586630111', - deps: [ - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - 'npm:jest', - 'npm:@testing-library/react', - 'npm:@testing-library/user-event', - 'npm:react', - ], - }, - { file: 'packages/a11y-testing/project.json', hash: '15648457560038035197' }, - { file: 'packages/a11y-testing/src/definitions/Button/buttonBehaviorDefinition.ts', hash: '7565738243156893217' }, - { - file: 'packages/a11y-testing/src/definitions/Button/buttonGroupBehaviorDefinition.ts', - hash: '3095800935524043018', - }, - { - file: 'packages/a11y-testing/src/definitions/Button/toggleButtonBehaviorDefinition.ts', - hash: '580307916176779069', - }, - { file: 'packages/a11y-testing/src/definitions/Link/linkBehaviorDefinition.ts', hash: '17397047756957383010' }, - { - file: 'packages/a11y-testing/src/definitions/MenuButton/menuButtonBehaviorDefinition.ts', - hash: '10953865562518239252', - }, - { - file: 'packages/a11y-testing/src/definitions/Pill/pillActionBehaviorDefinition.ts', - hash: '6109436761723475906', - }, - { file: 'packages/a11y-testing/src/definitions/Pill/pillBehaviorDefinition.ts', hash: '4554347345570701865' }, - { - file: 'packages/a11y-testing/src/definitions/Pill/pillGroupBehaviorDefinition.ts', - hash: '5989295955207284539', - }, - { file: 'packages/a11y-testing/src/definitions/Pill/pillIconBehaviorDefinition.ts', hash: '3073001734700112300' }, - { - file: 'packages/a11y-testing/src/definitions/Pill/pillImageBehaviorDefinition.ts', - hash: '12369440037446817587', - }, - { - file: 'packages/a11y-testing/src/definitions/Pill/pillOptionBehaviorDefinition.ts', - hash: '12091950550049802064', - }, - { file: 'packages/a11y-testing/src/definitions/Popup/popupBehaviorDefinition.ts', hash: '7515556976799700459' }, - { file: 'packages/a11y-testing/src/definitions/index.ts', hash: '8697171680261455903' }, - { - file: 'packages/a11y-testing/src/definitions/react-button/buttonAccessibilityBehaviorDefinition.ts', - hash: '7074093598013342483', - }, - { file: 'packages/a11y-testing/src/facades/ComponentTestFacade.tsx', hash: '5617571999278826429' }, - { file: 'packages/a11y-testing/src/facades/index.ts', hash: '8916232850542568642' }, - { file: 'packages/a11y-testing/src/index.ts', hash: '13336121115230139564' }, - { file: 'packages/a11y-testing/src/rules/index.ts', hash: '7218533088751468820' }, - { file: 'packages/a11y-testing/src/rules/rules.tsx', hash: '2997048678189845806' }, - { file: 'packages/a11y-testing/src/types.ts', hash: '17656570443003494391' }, - { file: 'packages/a11y-testing/src/validators/index.ts', hash: '4005811543520166967' }, - { file: 'packages/a11y-testing/src/validators/validate.ts', hash: '777267130200413044' }, - { file: 'packages/a11y-testing/tsconfig.json', hash: '8076373707397502125' }, - ], - '@fluentui/perf': [ - { file: 'packages/fluentui/perf/.eslintrc.json', hash: '12796673075337106714' }, - { file: 'packages/fluentui/perf/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/perf/babel.config.js', hash: '7654395597360391156' }, - { file: 'packages/fluentui/perf/doc/perf.md', hash: '16405507312382777299' }, - { file: 'packages/fluentui/perf/doc/perf_chart.png', hash: '7877526086333983849' }, - { file: 'packages/fluentui/perf/gulp/perf.ts', hash: '18417645318330609886' }, - { file: 'packages/fluentui/perf/gulp/shared.ts', hash: '852922162071245063' }, - { file: 'packages/fluentui/perf/gulp/webpack.config.ts', hash: '11522594695527201750' }, - { file: 'packages/fluentui/perf/gulpfile.ts', hash: '3266338574519543788' }, - { - file: 'packages/fluentui/perf/package.json', - hash: '16720766364830109335', - deps: [ - 'npm:@babel/polyfill', - '@fluentui/docs', - '@fluentui/eslint-plugin', - '@fluentui/react-northstar', - 'npm:lodash', - 'npm:minimatch', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-monorepo', - ], - }, - { file: 'packages/fluentui/perf/project.json', hash: '14841239227301538929' }, - { file: 'packages/fluentui/perf/src/globals.ts', hash: '774283950763954109' }, - { file: 'packages/fluentui/perf/src/index.html', hash: '1997664863642561261' }, - { file: 'packages/fluentui/perf/src/index.tsx', hash: '6151998969720127036' }, - { file: 'packages/fluentui/perf/tsconfig.json', hash: '339684603525678365' }, - { file: 'packages/fluentui/perf/types.ts', hash: '13985186482084305211' }, - ], - '@fluentui/scripts-puppeteer': [ - { file: 'scripts/puppeteer/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/puppeteer/jest.config.js', hash: '10929530115692286437' }, - { file: 'scripts/puppeteer/package.json', hash: '11715990510411273897' }, - { file: 'scripts/puppeteer/project.json', hash: '4445166320068989333' }, - { file: 'scripts/puppeteer/src/index.ts', hash: '764454282084297596' }, - { file: 'scripts/puppeteer/src/types.ts', hash: '957137470538575277' }, - { file: 'scripts/puppeteer/src/utils.spec.ts', hash: '13205245988193183269' }, - { file: 'scripts/puppeteer/src/utils.ts', hash: '17989793353365278853' }, - { file: 'scripts/puppeteer/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/puppeteer/tsconfig.lib.json', hash: '15222053984038389170' }, - { file: 'scripts/puppeteer/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/react-experiments': [ - { file: 'packages/react-experiments/.eslintrc.json', hash: '7788135779233596637' }, - { file: 'packages/react-experiments/.npmignore', hash: '47056201363133096' }, - { file: 'packages/react-experiments/.vscode/settings.json', hash: '16922900037095686213' }, - { file: 'packages/react-experiments/CHANGELOG.json', hash: '1759451528711803273' }, - { file: 'packages/react-experiments/CHANGELOG.md', hash: '841769307207834070' }, - { file: 'packages/react-experiments/LICENSE', hash: '13203729021017389157' }, - { file: 'packages/react-experiments/README.md', hash: '6069065823927244357' }, - { file: 'packages/react-experiments/config/pre-copy.json', hash: '5645154898618432291' }, - { file: 'packages/react-experiments/config/tests.js', hash: '1298251390361832964' }, - { file: 'packages/react-experiments/jest.config.js', hash: '8193037916930093299' }, - { file: 'packages/react-experiments/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-experiments/package.json', - hash: '8173131559828053357', - deps: [ - '@fluentui/react', - '@fluentui/theme', - 'npm:@microsoft/load-themed-styles', - '@fluentui/example-data', - '@fluentui/foundation-legacy', - '@fluentui/font-icons-mdl2', - '@fluentui/merge-styles', - '@fluentui/react-hooks', - '@fluentui/set-version', - '@fluentui/style-utilities', - '@fluentui/utilities', - 'npm:deep-assign', - 'npm:prop-types', - 'npm:tslib', - '@fluentui/common-styles', - '@fluentui/eslint-plugin', - 'npm:@types/deep-assign', - 'npm:@types/prop-types', - 'npm:@types/react-addons-test-utils', - '@fluentui/jest-serializer-merge-styles', - 'npm:react-hooks-testing-library', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - '@fluentui/scripts-webpack', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-experiments/project.json', hash: '3501476537050508852' }, - { file: 'packages/react-experiments/src/Accordion.ts', hash: '16785143114878803654' }, - { file: 'packages/react-experiments/src/Chiclet.ts', hash: '11155256979043085396' }, - { file: 'packages/react-experiments/src/CollapsibleSection.ts', hash: '2758608677691324557' }, - { file: 'packages/react-experiments/src/CommandBar.ts', hash: '6705151224568579037' }, - { file: 'packages/react-experiments/src/FloatingPeopleSuggestions.ts', hash: '15119309918904920431' }, - { file: 'packages/react-experiments/src/FloatingPeopleSuggestionsComposite.ts', hash: '1574102834641737891' }, - { file: 'packages/react-experiments/src/FloatingSuggestions.ts', hash: '4926410936868705646' }, - { file: 'packages/react-experiments/src/FloatingSuggestionsComposite.ts', hash: '2076343655190795668' }, - { file: 'packages/react-experiments/src/FolderCover.ts', hash: '7108040609502246617' }, - { file: 'packages/react-experiments/src/Foundation.ts', hash: '4347195763759381731' }, - { file: 'packages/react-experiments/src/LayoutGroup.ts', hash: '6487040189142004344' }, - { file: 'packages/react-experiments/src/MicroFeedback.ts', hash: '8888494769050870648' }, - { file: 'packages/react-experiments/src/Pagination.ts', hash: '4350794388615723689' }, - { file: 'packages/react-experiments/src/Persona.ts', hash: '11634239554265983330' }, - { file: 'packages/react-experiments/src/PersonaCoin.ts', hash: '8412453628380985510' }, - { file: 'packages/react-experiments/src/SelectedItemsList.ts', hash: '8395059039592633644' }, - { file: 'packages/react-experiments/src/Separator.ts', hash: '4641114773120917684' }, - { file: 'packages/react-experiments/src/Sidebar.ts', hash: '17768333116531200071' }, - { file: 'packages/react-experiments/src/Signals.ts', hash: '620991364519481258' }, - { file: 'packages/react-experiments/src/Slider.ts', hash: '8062765663185726667' }, - { file: 'packages/react-experiments/src/Stack.ts', hash: '7034361302360469020' }, - { file: 'packages/react-experiments/src/StaticList.ts', hash: '7488446108983563702' }, - { file: 'packages/react-experiments/src/Styling.ts', hash: '8123475635573030392' }, - { file: 'packages/react-experiments/src/Text.ts', hash: '298153759206803748' }, - { file: 'packages/react-experiments/src/Tile.ts', hash: '15115386942984335447' }, - { file: 'packages/react-experiments/src/TilesList.ts', hash: '4067127055357787810' }, - { file: 'packages/react-experiments/src/UnifiedPeoplePicker.ts', hash: '3493245017176473579' }, - { file: 'packages/react-experiments/src/UnifiedPicker.ts', hash: '7374717927815807161' }, - { file: 'packages/react-experiments/src/Utilities.ts', hash: '15929919672659535220' }, - { file: 'packages/react-experiments/src/VirtualizedList.ts', hash: '15787698144324878502' }, - { file: 'packages/react-experiments/src/common/TestImages.ts', hash: '7314752036436624417' }, - { file: 'packages/react-experiments/src/components/Accordion/Accordion.styles.ts', hash: '10103728486657545453' }, - { file: 'packages/react-experiments/src/components/Accordion/Accordion.tsx', hash: '10919603374232920421' }, - { file: 'packages/react-experiments/src/components/Accordion/Accordion.types.ts', hash: '1763826350692402116' }, - { file: 'packages/react-experiments/src/components/Accordion/index.ts', hash: '14810765027328618110' }, - { file: 'packages/react-experiments/src/components/BAFAccordion/Accordion.scss', hash: '3159494616127549602' }, - { file: 'packages/react-experiments/src/components/BAFAccordion/Accordion.tsx', hash: '13071939116549721336' }, - { - file: 'packages/react-experiments/src/components/BAFAccordion/Accordion.types.tsx', - hash: '11818567710826420017', - }, - { file: 'packages/react-experiments/src/components/BAFAccordion/index.ts', hash: '17043733982335872409' }, - { file: 'packages/react-experiments/src/components/BAFAccordion/owners.txt', hash: '3476385688937999347' }, - { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.base.tsx', hash: '3409074486319435397' }, - { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.styles.ts', hash: '8569233722529425104' }, - { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.test.tsx', hash: '6008395739054324573' }, - { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.tsx', hash: '13141819538538406114' }, - { file: 'packages/react-experiments/src/components/Chiclet/Chiclet.types.ts', hash: '5622013660578992775' }, - { file: 'packages/react-experiments/src/components/Chiclet/ChicletCard.base.tsx', hash: '16702394850503035254' }, - { file: 'packages/react-experiments/src/components/Chiclet/ChicletCard.styles.ts', hash: '10739227742080388232' }, - { file: 'packages/react-experiments/src/components/Chiclet/ChicletCard.tsx', hash: '7902323050637313004' }, - { file: 'packages/react-experiments/src/components/Chiclet/ChicletCard.types.ts', hash: '5412841689924415351' }, - { - file: 'packages/react-experiments/src/components/Chiclet/ChicletXsmall.base.tsx', - hash: '12511258243374624230', - }, - { - file: 'packages/react-experiments/src/components/Chiclet/ChicletXsmall.styles.tsx', - hash: '11420917528936773262', - }, - { file: 'packages/react-experiments/src/components/Chiclet/ChicletXsmall.tsx', hash: '14249571087042892150' }, - { - file: 'packages/react-experiments/src/components/Chiclet/__snapshots__/Chiclet.test.tsx.snap', - hash: '6081639501010760453', - }, - { file: 'packages/react-experiments/src/components/Chiclet/index.ts', hash: '10160553347801902812' }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.state.tsx', - hash: '18322757302069591719', - }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.styles.ts', - hash: '2779693142844014460', - }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.ts', - hash: '4591584793160304813', - }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.types.ts', - hash: '14444496592959954320', - }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSection.view.tsx', - hash: '1782191095359759951', - }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.styles.ts', - hash: '3431138696688297563', - }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.ts', - hash: '5820505541536991668', - }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.types.ts', - hash: '13707897512874248717', - }, - { - file: 'packages/react-experiments/src/components/CollapsibleSection/CollapsibleSectionTitle.view.tsx', - hash: '13865182112328305874', - }, - { file: 'packages/react-experiments/src/components/CollapsibleSection/index.ts', hash: '6854421450006391828' }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/FloatingPeopleSuggestions.tsx', - hash: '3757060386559289795', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.scss', - hash: '3905654351229104045', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/defaults/DefaultPeopleSuggestionsItem.tsx', - hash: '5377638749757585082', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingPeopleSuggestions/index.ts', - hash: '2813564923569936104', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.scss', - hash: '3604756766474209425', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.tsx', - hash: '381444847938224424', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/FloatingSuggestions.types.ts', - hash: '4632979514109731236', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/Suggestions.types.ts', - hash: '7068927902778183292', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.scss', - hash: '8577107595666309036', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.test.tsx', - hash: '15850210107969836877', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsControl.tsx', - hash: '1708624113233746184', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsCore.scss', - hash: '1212577356362130966', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsCore.tsx', - hash: '13870857510612252988', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.styles.ts', - hash: '17338743388339628589', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.tsx', - hash: '11715318481696458315', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsItem.types.ts', - hash: '11160815825282002971', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestions/Suggestions/SuggestionsStore.ts', - hash: '13386259745322524879', - }, - { file: 'packages/react-experiments/src/components/FloatingSuggestions/index.ts', hash: '17810609914691297881' }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestionItems/SuggestionItemDefault.styles.ts', - hash: '4743105042530766310', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestionItems/SuggestionItemDefault.tsx', - hash: '3453583868207626678', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestions.tsx', - hash: '13050158639049570556', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingPeopleSuggestions/FloatingPeopleSuggestions.types.ts', - hash: '12837034505758908897', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.styles.ts', - hash: '16302313942165176658', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.tsx', - hash: '10782913239539786536', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestions.types.ts', - hash: '11084868562405984032', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsComposite.test.tsx', - hash: '12982544863657252401', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.styles.ts', - hash: '1111839729707920702', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.tsx', - hash: '7254408377977084011', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsHeaderFooterItem/FloatingSuggestionsHeaderFooterItem.types.ts', - hash: '1703025396759223111', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.styles.ts', - hash: '7000086168349821996', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.tsx', - hash: '15765347135995471597', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsItem/FloatingSuggestionsItem.types.ts', - hash: '2183956652895868185', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.styles.ts', - hash: '15453606984512324352', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.tsx', - hash: '10271927908577936066', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/FloatingSuggestionsList/FloatingSuggestionsList.types.ts', - hash: '11125748956408054438', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/__snapshots__/FloatingSuggestionsComposite.test.tsx.snap', - hash: '9917759799883970820', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/index.ts', - hash: '3574819925110002578', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/utils/getNextSuggestionIndex.ts', - hash: '11830895391681216780', - }, - { - file: 'packages/react-experiments/src/components/FloatingSuggestionsComposite/utils/getPreviousSuggestionIndex.ts', - hash: '8265911307876280394', - }, - { file: 'packages/react-experiments/src/components/FolderCover/FolderCover.scss', hash: '12904864827355527393' }, - { file: 'packages/react-experiments/src/components/FolderCover/FolderCover.tsx', hash: '5241141501904891354' }, - { - file: 'packages/react-experiments/src/components/FolderCover/FolderCover.types.ts', - hash: '15996641639839082729', - }, - { file: 'packages/react-experiments/src/components/FolderCover/index.ts', hash: '1965305132211953917' }, - { - file: 'packages/react-experiments/src/components/FolderCover/initializeFolderCovers.tsx', - hash: '7166539941536670708', - }, - { file: 'packages/react-experiments/src/components/LayoutGroup/LayoutGroup.tsx', hash: '11503592609729761699' }, - { - file: 'packages/react-experiments/src/components/LayoutGroup/LayoutGroup.types.ts', - hash: '11477832012990329444', - }, - { file: 'packages/react-experiments/src/components/LayoutGroup/index.ts', hash: '4937009151180128495' }, - { - file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.state.ts', - hash: '8558097265940582588', - }, - { - file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.styles.ts', - hash: '3664376394785762021', - }, - { - file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.test.tsx', - hash: '16693792913876566657', - }, - { - file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.tsx', - hash: '6201110364847208132', - }, - { - file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.types.ts', - hash: '3034977262470562098', - }, - { - file: 'packages/react-experiments/src/components/MicroFeedback/MicroFeedback.view.tsx', - hash: '8949946573282186190', - }, - { - file: 'packages/react-experiments/src/components/MicroFeedback/__snapshots__/MicroFeedback.test.tsx.snap', - hash: '10058342721573506314', - }, - { file: 'packages/react-experiments/src/components/MicroFeedback/index.ts', hash: '13677606644297986230' }, - { file: 'packages/react-experiments/src/components/Pagination/PageNumber.tsx', hash: '4546005481250467622' }, - { - file: 'packages/react-experiments/src/components/Pagination/PageNumber.types.ts', - hash: '18320997077151981120', - }, - { - file: 'packages/react-experiments/src/components/Pagination/Pagination.base.tsx', - hash: '10087620027863872208', - }, - { - file: 'packages/react-experiments/src/components/Pagination/Pagination.styles.ts', - hash: '12065043136280449004', - }, - { file: 'packages/react-experiments/src/components/Pagination/Pagination.test.tsx', hash: '2308659567326285802' }, - { file: 'packages/react-experiments/src/components/Pagination/Pagination.tsx', hash: '6872288120100005013' }, - { file: 'packages/react-experiments/src/components/Pagination/Pagination.types.ts', hash: '4670107751414484026' }, - { - file: 'packages/react-experiments/src/components/Pagination/__snapshots__/Pagination.test.tsx.snap', - hash: '535135098638587946', - }, - { file: 'packages/react-experiments/src/components/Pagination/index.ts', hash: '17421102762909672330' }, - { file: 'packages/react-experiments/src/components/Persona/Persona.tsx', hash: '7714910874570066235' }, - { file: 'packages/react-experiments/src/components/Persona/Persona.types.ts', hash: '2581738252277925013' }, - { - file: 'packages/react-experiments/src/components/Persona/PersonaText/PersonaText.tsx', - hash: '5859930998899639965', - }, - { file: 'packages/react-experiments/src/components/Persona/PersonaText/index.ts', hash: '12160704872550378359' }, - { - file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.styles.ts', - hash: '486193162841061838', - }, - { - file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.test.tsx', - hash: '11707248106656605624', - }, - { - file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.ts', - hash: '44114845465802009', - }, - { - file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.types.ts', - hash: '9606945673643607753', - }, - { - file: 'packages/react-experiments/src/components/Persona/Vertical/VerticalPersona.view.tsx', - hash: '13016462774222819904', - }, - { - file: 'packages/react-experiments/src/components/Persona/Vertical/__snapshots__/VerticalPersona.test.tsx.snap', - hash: '13220328470775192500', - }, - { file: 'packages/react-experiments/src/components/Persona/index.ts', hash: '6348331949361760859' }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.state.ts', - hash: '8710872931461018024', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.styles.ts', - hash: '9772456920698375671', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.test.tsx', - hash: '12048974165692997332', - }, - { file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.ts', hash: '12724479649793425338' }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.types.ts', - hash: '12490952391090838709', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoin.view.tsx', - hash: '11386862964080294929', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/PersonaCoinImage.tsx', - hash: '381924212602934673', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/PersonaCoinImage.types.ts', - hash: '13914464509117049729', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinImage/index.ts', - hash: '17897665529387283662', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinInitials/PersonaCoinInitials.tsx', - hash: '8356149681486052893', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/PersonaCoinSize10/PersonaCoinSize10.tsx', - hash: '17367608678914536633', - }, - { - file: 'packages/react-experiments/src/components/PersonaCoin/__snapshots__/PersonaCoin.test.tsx.snap', - hash: '14084163329842627549', - }, - { file: 'packages/react-experiments/src/components/PersonaCoin/index.ts', hash: '4690765837432319189' }, - { file: 'packages/react-experiments/src/components/PersonaCoin/propHelpers.ts', hash: '11515578808103658372' }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/Items/CopyableItem.tsx', - hash: '4460092286991826468', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/Items/EditableItem.tsx', - hash: '1506153315791396911', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/Items/ItemTrigger.types.ts', - hash: '1066552443382932370', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/Items/ItemWithContextMenu.tsx', - hash: '9212113507745444261', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/Items/TriggerOnContextMenu.tsx', - hash: '1936797453681473708', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/Items/index.ts', - hash: '1847408114707276401', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.scss', - hash: '2123961347839935533', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/Items/subcomponents/DefaultEditingItem.tsx', - hash: '11599018992220337350', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.test.tsx', - hash: '10026648953646638887', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.tsx', - hash: '6459558609762136724', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedItemsList.types.ts', - hash: '2686034838864743834', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.styles.ts', - hash: '16362109281402062667', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.tsx', - hash: '4174472656133855628', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/Items/SelectedPersona.types.ts', - hash: '10640929694904910998', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.test.tsx', - hash: '5076323846252697640', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/SelectedPeopleList.tsx', - hash: '1942004760255062545', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/__snapshots__/SelectedPeopleList.test.tsx.snap', - hash: '13037658191009713151', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/SelectedPeopleList/index.ts', - hash: '10546884526866399704', - }, - { - file: 'packages/react-experiments/src/components/SelectedItemsList/__snapshots__/SelectedItemsList.test.tsx.snap', - hash: '15353071673818879597', - }, - { file: 'packages/react-experiments/src/components/SelectedItemsList/index.ts', hash: '11969545535632613866' }, - { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.classNames.tsx', hash: '7010893654002625166' }, - { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.styles.tsx', hash: '13754931327925901039' }, - { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.test.tsx', hash: '14465723933222876442' }, - { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.tsx', hash: '52139508622844580' }, - { file: 'packages/react-experiments/src/components/Sidebar/Sidebar.types.tsx', hash: '331900337538358997' }, - { - file: 'packages/react-experiments/src/components/Sidebar/SidebarButton.styles.tsx', - hash: '4173292561399305330', - }, - { file: 'packages/react-experiments/src/components/Sidebar/SidebarButton.tsx', hash: '4286211183338076407' }, - { file: 'packages/react-experiments/src/components/Sidebar/index.ts', hash: '10615726587843841544' }, - { file: 'packages/react-experiments/src/components/Slider/Slider.base.tsx', hash: '4429192687504958983' }, - { file: 'packages/react-experiments/src/components/Slider/Slider.styles.tsx', hash: '4479449330147508383' }, - { file: 'packages/react-experiments/src/components/Slider/Slider.test.tsx', hash: '4966249706265165218' }, - { file: 'packages/react-experiments/src/components/Slider/Slider.tsx', hash: '10723765216778814719' }, - { file: 'packages/react-experiments/src/components/Slider/Slider.types.ts', hash: '13593910734039395002' }, - { - file: 'packages/react-experiments/src/components/Slider/__snapshots__/Slider.test.tsx.snap', - hash: '6166737303082448600', - }, - { file: 'packages/react-experiments/src/components/Slider/index.ts', hash: '16426302468400422346' }, - { file: 'packages/react-experiments/src/components/StaticList/List.types.ts', hash: '13029505571285717375' }, - { file: 'packages/react-experiments/src/components/StaticList/StaticList.scss', hash: '6418642908294752521' }, - { file: 'packages/react-experiments/src/components/StaticList/StaticList.tsx', hash: '641714830964085194' }, - { - file: 'packages/react-experiments/src/components/StaticList/StaticList.types.ts', - hash: '10427582978882602229', - }, - { file: 'packages/react-experiments/src/components/StaticList/index.ts', hash: '14396733320191333641' }, - { file: 'packages/react-experiments/src/components/Tile/Check.scss', hash: '17140661851251461349' }, - { - file: 'packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.base.tsx', - hash: '13442204835589282229', - }, - { - file: 'packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.styles.ts', - hash: '8193484691228559393', - }, - { - file: 'packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.tsx', - hash: '6580041504660615377', - }, - { - file: 'packages/react-experiments/src/components/Tile/ShimmerTile/ShimmerTile.types.ts', - hash: '4381964922523372138', - }, - { file: 'packages/react-experiments/src/components/Tile/Tile.scss', hash: '7384527406222800300' }, - { file: 'packages/react-experiments/src/components/Tile/Tile.tsx', hash: '18267954738149232245' }, - { file: 'packages/react-experiments/src/components/Tile/Tile.types.ts', hash: '18099294555385488476' }, - { file: 'packages/react-experiments/src/components/Tile/index.ts', hash: '12634420449656108817' }, - { file: 'packages/react-experiments/src/components/TilesList/TilesList.scss', hash: '842071301340357996' }, - { file: 'packages/react-experiments/src/components/TilesList/TilesList.tsx', hash: '10430063901723355839' }, - { file: 'packages/react-experiments/src/components/TilesList/TilesList.types.ts', hash: '17504993610037147225' }, - { file: 'packages/react-experiments/src/components/TilesList/index.ts', hash: '9841529760922503529' }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.test.tsx', - hash: '3517327827280940319', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.tsx', - hash: '14506214779457586241', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/UnifiedPeoplePicker.types.ts', - hash: '1543295232261040062', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPeoplePicker/__snapshots__/UnifiedPeoplePicker.test.tsx.snap', - hash: '7774749062177847028', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.styles.ts', - hash: '15570590120604449971', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.test.tsx', - hash: '8424483237745143282', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.tsx', - hash: '3366336271139962794', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/UnifiedPicker.types.ts', - hash: '14552322759660156163', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/__snapshots__/UnifiedPicker.test.tsx.snap', - hash: '7297314502332383484', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/hooks/useFloatingSuggestionItems.ts', - hash: '1758471814706513672', - }, - { - file: 'packages/react-experiments/src/components/UnifiedPicker/hooks/useSelectedItems.ts', - hash: '5077487519667132696', - }, - { file: 'packages/react-experiments/src/components/UnifiedPicker/index.ts', hash: '6262690888054952770' }, - { - file: 'packages/react-experiments/src/components/VirtualizedList/VirtualizedList.scss', - hash: '4311027338679150061', - }, - { - file: 'packages/react-experiments/src/components/VirtualizedList/VirtualizedList.test.tsx', - hash: '6172968722546270192', - }, - { - file: 'packages/react-experiments/src/components/VirtualizedList/VirtualizedList.tsx', - hash: '4533817653005411344', - }, - { - file: 'packages/react-experiments/src/components/VirtualizedList/VirtualizedList.types.ts', - hash: '17801838772746123231', - }, - { - file: 'packages/react-experiments/src/components/VirtualizedList/__snapshots__/VirtualizedList.test.tsx.snap', - hash: '14732020310207096293', - }, - { file: 'packages/react-experiments/src/components/VirtualizedList/index.ts', hash: '135447240498174383' }, - { file: 'packages/react-experiments/src/components/fluent/FluentColors.ts', hash: '225500492131065146' }, - { file: 'packages/react-experiments/src/components/fluent/FluentDepths.ts', hash: '6148133275576816574' }, - { file: 'packages/react-experiments/src/components/fluent/FluentMotion.ts', hash: '11714246076652372730' }, - { file: 'packages/react-experiments/src/components/fluent/FluentTheme.ts', hash: '8840513458027493895' }, - { file: 'packages/react-experiments/src/components/fluent/FluentType.ts', hash: '17693899800607942246' }, - { file: 'packages/react-experiments/src/components/signals/Signal.scss', hash: '16352737707440812602' }, - { file: 'packages/react-experiments/src/components/signals/Signal.tsx', hash: '14827070792321820050' }, - { file: 'packages/react-experiments/src/components/signals/SignalField.scss', hash: '14738164499262173795' }, - { file: 'packages/react-experiments/src/components/signals/SignalField.tsx', hash: '18433200084518909301' }, - { file: 'packages/react-experiments/src/components/signals/Signals.Props.ts', hash: '11137791629269371778' }, - { file: 'packages/react-experiments/src/components/signals/Signals.scss', hash: '12630874552248492839' }, - { file: 'packages/react-experiments/src/components/signals/Signals.tsx', hash: '5541756948576717681' }, - { file: 'packages/react-experiments/src/index.ts', hash: '8087115123738644940' }, - { file: 'packages/react-experiments/src/utilities/factoryComponents.tsx', hash: '16120135515651635803' }, - { file: 'packages/react-experiments/src/utilities/factoryComponents.types.tsx', hash: '17345407460455718193' }, - { file: 'packages/react-experiments/src/utilities/scrolling/ScrollContainer.scss', hash: '1448566863525499310' }, - { file: 'packages/react-experiments/src/utilities/scrolling/ScrollContainer.tsx', hash: '9543898172760502245' }, - { - file: 'packages/react-experiments/src/utilities/scrolling/ScrollContainer.types.ts', - hash: '5510579575255177883', - }, - { file: 'packages/react-experiments/src/utilities/scrolling/index.ts', hash: '14000842761119700127' }, - { file: 'packages/react-experiments/src/utilities/textHelpers.ts', hash: '8358896990955050500' }, - { file: 'packages/react-experiments/src/version.ts', hash: '3147508813634178729' }, - { file: 'packages/react-experiments/tsconfig.json', hash: '4921836023195560350' }, - { file: 'packages/react-experiments/webpack.config.js', hash: '13362749979705105070' }, - { file: 'packages/react-experiments/webpack.serve.config.js', hash: '7443825724669908634' }, - ], - '@fluentui/vr-tests-react-components': [ - { file: 'apps/vr-tests-react-components/.eslintrc.json', hash: '17051087815880730676' }, - { file: 'apps/vr-tests-react-components/.storybook/main.js', hash: '16447464207126584132' }, - { file: 'apps/vr-tests-react-components/.storybook/manager.js', hash: '8031267414392898657' }, - { file: 'apps/vr-tests-react-components/.storybook/preview.js', hash: '1405562776238959726' }, - { file: 'apps/vr-tests-react-components/CHANGELOG.json', hash: '8713462158622485954' }, - { file: 'apps/vr-tests-react-components/CHANGELOG.md', hash: '922481796685944490' }, - { file: 'apps/vr-tests-react-components/jest.config.js', hash: '18250610868151833128' }, - { file: 'apps/vr-tests-react-components/just.config.ts', hash: '10393370776333958822' }, - { - file: 'apps/vr-tests-react-components/package.json', - hash: '15467568357846093319', - deps: [ - '@fluentui/react-accordion', - '@fluentui/react-avatar', - '@fluentui/react-badge', - '@fluentui/react-button', - '@fluentui/react-calendar-compat', - '@fluentui/react-card', - '@fluentui/react-checkbox', - '@fluentui/react-combobox', - '@fluentui/react-context-selector', - '@fluentui/react-datepicker-compat', - '@fluentui/react-dialog', - '@fluentui/react-divider', - '@fluentui/react-drawer', - '@fluentui/react-field', - 'npm:@fluentui/react-icons', - '@fluentui/react-image', - '@fluentui/react-infolabel', - '@fluentui/react-input', - '@fluentui/react-label', - '@fluentui/react-link', - '@fluentui/react-menu', - '@fluentui/react-message-bar', - '@fluentui/react-persona', - '@fluentui/react-popover', - '@fluentui/react-portal', - '@fluentui/react-positioning', - '@fluentui/react-progress', - '@fluentui/react-provider', - '@fluentui/react-radio', - '@fluentui/react-search-preview', - '@fluentui/react-select', - '@fluentui/react-shared-contexts', - '@fluentui/react-skeleton', - '@fluentui/react-slider', - '@fluentui/react-spinner', - '@fluentui/react-spinbutton', - '@fluentui/react-storybook-addon', - '@fluentui/react-storybook-addon-export-to-sandbox', - '@fluentui/react-switch', - '@fluentui/react-table', - '@fluentui/react-tabs', - '@fluentui/react-tags', - '@fluentui/react-text', - '@fluentui/react-textarea', - '@fluentui/react-theme', - '@fluentui/react-timepicker-compat-preview', - '@fluentui/react-toast', - '@fluentui/react-tooltip', - '@fluentui/react-toolbar', - '@fluentui/react-tree', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:react', - 'npm:react-dom', - 'npm:tslib', - '@fluentui/react-breadcrumb', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - '@fluentui/scripts-storybook', - ], - }, - { file: 'apps/vr-tests-react-components/project.json', hash: '17568527081165183056' }, - { - file: 'apps/vr-tests-react-components/src/stories/Accordion/Accordion.stories.tsx', - hash: '10802056647365454387', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Accordion/AccordionFocusInteractions.stories.tsx', - hash: '12477522633746407895', - }, - { file: 'apps/vr-tests-react-components/src/stories/Avatar.stories.tsx', hash: '11835834961897487764' }, - { file: 'apps/vr-tests-react-components/src/stories/AvatarGroup.stories.tsx', hash: '4929814886456362496' }, - { - file: 'apps/vr-tests-react-components/src/stories/Badge/BadgeAppearance.stories.tsx', - hash: '10168539343704943738', - }, - { file: 'apps/vr-tests-react-components/src/stories/Badge/BadgeSize.stories.tsx', hash: '16160796655612161127' }, - { file: 'apps/vr-tests-react-components/src/stories/Badge/utils.ts', hash: '6118267633036591097' }, - { - file: 'apps/vr-tests-react-components/src/stories/Breadcrumb/Breadcrumb.stories.tsx', - hash: '17471728733473708203', - }, - { file: 'apps/vr-tests-react-components/src/stories/Breadcrumb/utils.tsx', hash: '8994666879173275795' }, - { file: 'apps/vr-tests-react-components/src/stories/Button/Button.stories.tsx', hash: '8952848022067892547' }, - { - file: 'apps/vr-tests-react-components/src/stories/Button/CompoundButton.stories.tsx', - hash: '5035074194925427883', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Button/CompoundButtonDefault.stories.tsx', - hash: '1305553845183934325', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Button/MenuButton.stories.tsx', - hash: '13965237860398268503', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Button/ToggleButton.stories.tsx', - hash: '893838250947943192', - }, - { file: 'apps/vr-tests-react-components/src/stories/Button/utils.ts', hash: '17518265861498153706' }, - { file: 'apps/vr-tests-react-components/src/stories/Card/Card.stories.tsx', hash: '14477985068019565096' }, - { - file: 'apps/vr-tests-react-components/src/stories/Card/CardInteractive.stories.tsx', - hash: '186550975270387769', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Card/CardSelectable.stories.tsx', - hash: '5785195401617980058', - }, - { file: 'apps/vr-tests-react-components/src/stories/Card/utils.tsx', hash: '5969705096698007032' }, - { file: 'apps/vr-tests-react-components/src/stories/Checkbox.stories.tsx', hash: '14302551104030304517' }, - { file: 'apps/vr-tests-react-components/src/stories/Combobox.stories.tsx', hash: '4653018683490688054' }, - { - file: 'apps/vr-tests-react-components/src/stories/CounterBadge/CounterBadge.stories.tsx', - hash: '239199618520874280', - }, - { file: 'apps/vr-tests-react-components/src/stories/CustomStyleHooks.stories.tsx', hash: '236060052935181185' }, - { file: 'apps/vr-tests-react-components/src/stories/DatePickerCompat.stories.tsx', hash: '6549687002867576038' }, - { file: 'apps/vr-tests-react-components/src/stories/Dialog/Dialog.stories.tsx', hash: '10532256696189809745' }, - { file: 'apps/vr-tests-react-components/src/stories/Divider.stories.tsx', hash: '7482775426741585443' }, - { file: 'apps/vr-tests-react-components/src/stories/Drawer/Drawer.stories.tsx', hash: '5294822480024344223' }, - { file: 'apps/vr-tests-react-components/src/stories/Dropdown.stories.tsx', hash: '5679345717914244801' }, - { file: 'apps/vr-tests-react-components/src/stories/Field.stories.tsx', hash: '2654387542189040184' }, - { file: 'apps/vr-tests-react-components/src/stories/Image/Image.stories.tsx', hash: '9028033951370882415' }, - { file: 'apps/vr-tests-react-components/src/stories/InfoLabel.stories.tsx', hash: '9018757720315450699' }, - { file: 'apps/vr-tests-react-components/src/stories/Input.stories.tsx', hash: '6082880859858442107' }, - { file: 'apps/vr-tests-react-components/src/stories/Label.stories.tsx', hash: '7365811914943309065' }, - { file: 'apps/vr-tests-react-components/src/stories/Link.stories.tsx', hash: '11164254909120924736' }, - { file: 'apps/vr-tests-react-components/src/stories/MakeStyles.stories.tsx', hash: '5374078103145095337' }, - { file: 'apps/vr-tests-react-components/src/stories/Menu/Menu.stories.tsx', hash: '662425745359612659' }, - { - file: 'apps/vr-tests-react-components/src/stories/Menu/NestedMenuSmallViewportFlipped.stories.tsx', - hash: '4207061815563668430', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Menu/NestedMenuSmallViewportStacked.stories.tsx', - hash: '10843562005475523999', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Menu/ScrollableMenuSmallViewport.stories.tsx', - hash: '13072984958963346506', - }, - { file: 'apps/vr-tests-react-components/src/stories/Menu/index.stories.tsx', hash: '1566494951297209959' }, - { - file: 'apps/vr-tests-react-components/src/stories/MessageBar/MessageBar.stories.tsx', - hash: '15938873440241031592', - }, - { file: 'apps/vr-tests-react-components/src/stories/Persona.stories.tsx', hash: '5574790192439785115' }, - { file: 'apps/vr-tests-react-components/src/stories/Popover.stories.tsx', hash: '9052399005531340378' }, - { file: 'apps/vr-tests-react-components/src/stories/Portal.stories.tsx', hash: '1005202949174245424' }, - { file: 'apps/vr-tests-react-components/src/stories/Positioning.stories.tsx', hash: '7715953737126353587' }, - { file: 'apps/vr-tests-react-components/src/stories/PresenceBadge.stories.tsx', hash: '2647256473336266202' }, - { file: 'apps/vr-tests-react-components/src/stories/ProgressBar.stories.tsx', hash: '10031985096183867134' }, - { file: 'apps/vr-tests-react-components/src/stories/Radio.stories.tsx', hash: '9787853735635171255' }, - { file: 'apps/vr-tests-react-components/src/stories/SearchBox.stories.tsx', hash: '6689146726273525192' }, - { file: 'apps/vr-tests-react-components/src/stories/Select.stories.tsx', hash: '13570490118904764464' }, - { - file: 'apps/vr-tests-react-components/src/stories/ShadowDOM/ShadowDOMDefault.stories.tsx', - hash: '5123752633212812486', - }, - { - file: 'apps/vr-tests-react-components/src/stories/ShadowDOM/ShadowDOMPortal.stories.tsx', - hash: '3054045323519028786', - }, - { file: 'apps/vr-tests-react-components/src/stories/ShadowDOM/index.stories.tsx', hash: '14320345630061803079' }, - { file: 'apps/vr-tests-react-components/src/stories/ShadowDOM/utils.tsx', hash: '1966017359067066561' }, - { file: 'apps/vr-tests-react-components/src/stories/Skeleton.stories.tsx', hash: '10611661155375095131' }, - { file: 'apps/vr-tests-react-components/src/stories/Slider.stories.tsx', hash: '7314685389185684835' }, - { file: 'apps/vr-tests-react-components/src/stories/SpinButton.stories.tsx', hash: '9292538058178901686' }, - { file: 'apps/vr-tests-react-components/src/stories/Spinner.stories.tsx', hash: '2744820722201482553' }, - { file: 'apps/vr-tests-react-components/src/stories/Switch.stories.tsx', hash: '14911403922953624770' }, - { file: 'apps/vr-tests-react-components/src/stories/Table.stories.tsx', hash: '1638611668631605166' }, - { file: 'apps/vr-tests-react-components/src/stories/Tabs.stories.tsx', hash: '13601518669064467851' }, - { - file: 'apps/vr-tests-react-components/src/stories/Tag/InteractionTag.stories.tsx', - hash: '4840942032152646191', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Tag/InteractionTagAppearances.stories.tsx', - hash: '8980561851146009031', - }, - { - file: 'apps/vr-tests-react-components/src/stories/Tag/InteractionTagShape.stories.tsx', - hash: '4929897156362970104', - }, - { file: 'apps/vr-tests-react-components/src/stories/Tag/Tag.stories.tsx', hash: '12870879108242600931' }, - { - file: 'apps/vr-tests-react-components/src/stories/Tag/TagAppearances.stories.tsx', - hash: '15571718618318180513', - }, - { file: 'apps/vr-tests-react-components/src/stories/Tag/TagGroup.stories.tsx', hash: '16134648819693825642' }, - { file: 'apps/vr-tests-react-components/src/stories/Tag/TagShape.stories.tsx', hash: '12356360998116909355' }, - { file: 'apps/vr-tests-react-components/src/stories/Text.stories.tsx', hash: '2693658843261750616' }, - { file: 'apps/vr-tests-react-components/src/stories/Textarea.stories.tsx', hash: '10747023707033333684' }, - { file: 'apps/vr-tests-react-components/src/stories/TimePicker.stories.tsx', hash: '16205435768899076152' }, - { file: 'apps/vr-tests-react-components/src/stories/Toast/Toast.stories.tsx', hash: '17283697070771380505' }, - { file: 'apps/vr-tests-react-components/src/stories/Toolbar/Toolbar.stories.tsx', hash: '1049562789492471246' }, - { file: 'apps/vr-tests-react-components/src/stories/Toolbar/utils.ts', hash: '17710412857489277107' }, - { file: 'apps/vr-tests-react-components/src/stories/Tooltip.stories.tsx', hash: '2877402368872042170' }, - { file: 'apps/vr-tests-react-components/src/stories/Tree.stories.tsx', hash: '8798218328353603049' }, - { file: 'apps/vr-tests-react-components/src/utilities/TestWrapperDecorator.tsx', hash: '17367712127918236987' }, - { file: 'apps/vr-tests-react-components/src/utilities/getStoryVariant.ts', hash: '306062868073991727' }, - { file: 'apps/vr-tests-react-components/src/utilities/index.ts', hash: '4163392530867960544' }, - { file: 'apps/vr-tests-react-components/src/utilities/types.ts', hash: '12540806464937045320' }, - { file: 'apps/vr-tests-react-components/src/utilities/utilities.test.tsx', hash: '12678737986393557967' }, - { file: 'apps/vr-tests-react-components/src/utilities/withStoryWrightSteps.tsx', hash: '9632377530298948430' }, - { file: 'apps/vr-tests-react-components/tsconfig.json', hash: '14896982538111972183' }, - ], - '@fluentui/react-checkbox': [ - { file: 'packages/react-components/react-checkbox/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-checkbox/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-checkbox/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-checkbox/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-checkbox/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-checkbox/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-checkbox/CHANGELOG.json', hash: '6251263507773022820' }, - { file: 'packages/react-components/react-checkbox/CHANGELOG.md', hash: '1862977653705488160' }, - { file: 'packages/react-components/react-checkbox/LICENSE', hash: '11993684871533073860' }, - { file: 'packages/react-components/react-checkbox/README.md', hash: '14475892364465331260' }, - { file: 'packages/react-components/react-checkbox/bundle-size/Checkbox.fixture.js', hash: '9856851692934806951' }, - { file: 'packages/react-components/react-checkbox/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-checkbox/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-checkbox/docs/MIGRATION.md', hash: '17821656469887470547' }, - { file: 'packages/react-components/react-checkbox/docs/Spec.md', hash: '800448152257069737' }, - { file: 'packages/react-components/react-checkbox/etc/react-checkbox.api.md', hash: '6742814156489691658' }, - { file: 'packages/react-components/react-checkbox/jest.config.js', hash: '2828201757173184213' }, - { file: 'packages/react-components/react-checkbox/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-checkbox/package.json', - hash: '13472705379965958285', - deps: [ - '@fluentui/react-field', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-label', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-checkbox/project.json', hash: '9606278957344776446' }, - { file: 'packages/react-components/react-checkbox/src/Checkbox.ts', hash: '15174834295790980707' }, - { - file: 'packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.test.tsx', - hash: '8211270012158977067', - }, - { - file: 'packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.tsx', - hash: '15421247335816478745', - }, - { - file: 'packages/react-components/react-checkbox/src/components/Checkbox/Checkbox.types.ts', - hash: '7638085825644002506', - }, - { - file: 'packages/react-components/react-checkbox/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap', - hash: '18216818328841741726', - }, - { - file: 'packages/react-components/react-checkbox/src/components/Checkbox/index.ts', - hash: '15121887018938208362', - }, - { - file: 'packages/react-components/react-checkbox/src/components/Checkbox/renderCheckbox.tsx', - hash: '12658297094559328876', - }, - { - file: 'packages/react-components/react-checkbox/src/components/Checkbox/useCheckbox.tsx', - hash: '17250806306955700270', - }, - { - file: 'packages/react-components/react-checkbox/src/components/Checkbox/useCheckboxStyles.styles.ts', - hash: '1839450190559183146', - }, - { file: 'packages/react-components/react-checkbox/src/index.ts', hash: '15785934890379634251' }, - { file: 'packages/react-components/react-checkbox/src/testing/isConformant.ts', hash: '17159661999478583888' }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxChecked.stories.tsx', - hash: '3038686077884136197', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxCircular.stories.tsx', - hash: '17609452160533925883', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxDefault.stories.tsx', - hash: '1331911594678712826', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxDisabled.stories.tsx', - hash: '10626006350267777410', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxLabelBefore.stories.tsx', - hash: '2830523750214014197', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxLabelWrapping.stories.tsx', - hash: '10579880296711360605', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxLarge.stories.tsx', - hash: '12315598358509648828', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxMixed.stories.tsx', - hash: '16393572027865684906', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/CheckboxRequired.stories.tsx', - hash: '17304011180749936418', - }, - { - file: 'packages/react-components/react-checkbox/stories/Checkbox/index.stories.tsx', - hash: '13443276241766089166', - }, - { file: 'packages/react-components/react-checkbox/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-checkbox/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-checkbox/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-tooltip': [ - { file: 'packages/react-components/react-tooltip/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-tooltip/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-tooltip/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-tooltip/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-tooltip/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-tooltip/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-tooltip/CHANGELOG.json', hash: '3662493496073081408' }, - { file: 'packages/react-components/react-tooltip/CHANGELOG.md', hash: '10310449083261891923' }, - { file: 'packages/react-components/react-tooltip/LICENSE', hash: '9763231512341770511' }, - { file: 'packages/react-components/react-tooltip/README.md', hash: '661874467406925808' }, - { file: 'packages/react-components/react-tooltip/bundle-size/Tooltip.fixture.js', hash: '9177557631885470146' }, - { file: 'packages/react-components/react-tooltip/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-tooltip/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-tooltip/docs/MIGRATION.md', hash: '5365591817175551380' }, - { file: 'packages/react-components/react-tooltip/docs/Spec.md', hash: '17197430516596177065' }, - { file: 'packages/react-components/react-tooltip/etc/react-tooltip.api.md', hash: '2714968178754266809' }, - { file: 'packages/react-components/react-tooltip/jest.config.js', hash: '17702233081399248314' }, - { file: 'packages/react-components/react-tooltip/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-tooltip/package.json', - hash: '16144738716875989028', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-jsx-runtime', - '@fluentui/react-portal', - '@fluentui/react-positioning', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-tooltip/project.json', hash: '2551932128317709476' }, - { file: 'packages/react-components/react-tooltip/src/Tooltip.ts', hash: '17674670289509594830' }, - { - file: 'packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.test.tsx', - hash: '17679454188098067382', - }, - { - file: 'packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.tsx', - hash: '2076110390038335139', - }, - { - file: 'packages/react-components/react-tooltip/src/components/Tooltip/Tooltip.types.ts', - hash: '7659262091557687785', - }, - { file: 'packages/react-components/react-tooltip/src/components/Tooltip/index.ts', hash: '10782409254965928182' }, - { - file: 'packages/react-components/react-tooltip/src/components/Tooltip/private/constants.ts', - hash: '17507315038679873174', - }, - { - file: 'packages/react-components/react-tooltip/src/components/Tooltip/renderTooltip.tsx', - hash: '10271874667511265520', - }, - { - file: 'packages/react-components/react-tooltip/src/components/Tooltip/useTooltip.tsx', - hash: '8598847911993358157', - }, - { - file: 'packages/react-components/react-tooltip/src/components/Tooltip/useTooltipStyles.styles.ts', - hash: '16095804872310022228', - }, - { file: 'packages/react-components/react-tooltip/src/index.ts', hash: '6245897041394836575' }, - { file: 'packages/react-components/react-tooltip/src/testing/isConformant.ts', hash: '3528474470343364133' }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipControlled.stories.tsx', - hash: '5745568244813610421', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipCustomMount.stories.tsx', - hash: '8324075453347831325', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipDefault.stories.tsx', - hash: '13630401926476137506', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipDescription.md', - hash: '8413835280603585851', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipIcon.stories.tsx', - hash: '6181017139676638802', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipInverted.stories.tsx', - hash: '8768085614823736193', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipPositioning.stories.tsx', - hash: '5481407588906963902', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipRelationshipDescription.stories.tsx', - hash: '4706562087197084277', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipRelationshipLabel.stories.tsx', - hash: '15754488881985482673', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipStyled.stories.tsx', - hash: '16695082406495294835', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipTarget.stories.tsx', - hash: '15587023689407586107', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/TooltipWithArrow.stories.tsx', - hash: '13589492126622145976', - }, - { - file: 'packages/react-components/react-tooltip/stories/Tooltip/index.stories.tsx', - hash: '16607203418029566096', - }, - { file: 'packages/react-components/react-tooltip/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-tooltip/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-tooltip/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-tree': [ - { file: 'packages/react-components/react-tree/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-tree/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-tree/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-tree/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-tree/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-tree/.swcrc', hash: '471348148265161299' }, - { file: 'packages/react-components/react-tree/CHANGELOG.json', hash: '14945776354293379806' }, - { file: 'packages/react-components/react-tree/CHANGELOG.md', hash: '8406039216746902252' }, - { file: 'packages/react-components/react-tree/LICENSE', hash: '3873147923064391806' }, - { file: 'packages/react-components/react-tree/README.md', hash: '1655105929125156477' }, - { file: 'packages/react-components/react-tree/bundle-size/FlatTree.fixture.js', hash: '2096294319910126247' }, - { - file: 'packages/react-components/react-tree/bundle-size/PersonaFlatTree.fixture.js', - hash: '2466378024792562687', - }, - { file: 'packages/react-components/react-tree/bundle-size/PersonaTree.fixture.js', hash: '15287090904891878665' }, - { file: 'packages/react-components/react-tree/bundle-size/Tree.fixture.js', hash: '7148247114221090114' }, - { file: 'packages/react-components/react-tree/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-tree/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-tree/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-tree/docs/Spec.md', hash: '13010540724639653030' }, - { file: 'packages/react-components/react-tree/etc/react-tree.api.md', hash: '13860625462824413119' }, - { file: 'packages/react-components/react-tree/jest.config.js', hash: '10708835875569314405' }, - { file: 'packages/react-components/react-tree/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-tree/package.json', - hash: '7402928316943794822', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-aria', - '@fluentui/react-avatar', - '@fluentui/react-button', - '@fluentui/react-checkbox', - '@fluentui/react-context-selector', - 'npm:@fluentui/react-icons', - '@fluentui/react-radio', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - 'npm:@dnd-kit/core', - 'npm:@dnd-kit/sortable', - 'npm:@dnd-kit/utilities', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - '@fluentui/scripts-cypress', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-tree/project.json', hash: '6740901632218515604' }, - { file: 'packages/react-components/react-tree/src/FlatTree.ts', hash: '3072125634594593749' }, - { file: 'packages/react-components/react-tree/src/FlatTreeItem.ts', hash: '15656750125723370276' }, - { file: 'packages/react-components/react-tree/src/Tree.ts', hash: '4993286404603910313' }, - { file: 'packages/react-components/react-tree/src/TreeItem.ts', hash: '5004543986527416872' }, - { file: 'packages/react-components/react-tree/src/TreeItemLayout.ts', hash: '5622771649031762853' }, - { file: 'packages/react-components/react-tree/src/TreeItemPersonaLayout.ts', hash: '11087562497649748862' }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/FlatTree.cy.tsx', - hash: '15277321125093847254', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/FlatTree.test.tsx', - hash: '14643582718113491293', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/FlatTree.tsx', - hash: '11721769760756262032', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/FlatTree.types.ts', - hash: '15765492707089510760', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/__snapshots__/FlatTree.test.tsx.snap', - hash: '8095076814149978457', - }, - { file: 'packages/react-components/react-tree/src/components/FlatTree/index.ts', hash: '18386732580869025361' }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/renderFlatTree.ts', - hash: '16266937452093330039', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/useFlatControllableCheckedItems.ts', - hash: '8460437433223988350', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/useFlatTree.ts', - hash: '516202047807557685', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/useFlatTreeContextValues.ts', - hash: '10385911432056358558', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/useFlatTreeStyles.styles.ts', - hash: '11049922061536000776', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTree/useHeadlessFlatTree.ts', - hash: '1536915137937169328', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTreeItem/FlatTreeItem.tsx', - hash: '18390777847785657350', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTreeItem/FlatTreeItem.types.ts', - hash: '11242388741613448331', - }, - { - file: 'packages/react-components/react-tree/src/components/FlatTreeItem/index.ts', - hash: '6325146452568581988', - }, - { file: 'packages/react-components/react-tree/src/components/Tree/Tree.cy.tsx', hash: '6095631539329784239' }, - { file: 'packages/react-components/react-tree/src/components/Tree/Tree.test.tsx', hash: '11577143859729634817' }, - { file: 'packages/react-components/react-tree/src/components/Tree/Tree.tsx', hash: '17751061759550709708' }, - { file: 'packages/react-components/react-tree/src/components/Tree/Tree.types.ts', hash: '17953901364028168287' }, - { - file: 'packages/react-components/react-tree/src/components/Tree/__snapshots__/Tree.test.tsx.snap', - hash: '1504935046973585286', - }, - { file: 'packages/react-components/react-tree/src/components/Tree/index.ts', hash: '14906481201574349395' }, - { file: 'packages/react-components/react-tree/src/components/Tree/renderTree.tsx', hash: '4415101119287494887' }, - { - file: 'packages/react-components/react-tree/src/components/Tree/useNestedControllableCheckedItems.ts', - hash: '17960401285554147445', - }, - { file: 'packages/react-components/react-tree/src/components/Tree/useTree.ts', hash: '16065649229389296428' }, - { - file: 'packages/react-components/react-tree/src/components/Tree/useTreeContextValues.ts', - hash: '7332326623699850354', - }, - { - file: 'packages/react-components/react-tree/src/components/Tree/useTreeStyles.styles.ts', - hash: '16851585648924973193', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItem/TreeItem.test.tsx', - hash: '8789954357801559131', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItem/TreeItem.tsx', - hash: '16468084185954122243', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItem/TreeItem.types.ts', - hash: '14716955389701026936', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItem/__snapshots__/TreeItem.test.tsx.snap', - hash: '8018539892959985230', - }, - { file: 'packages/react-components/react-tree/src/components/TreeItem/index.ts', hash: '1326136393613796142' }, - { - file: 'packages/react-components/react-tree/src/components/TreeItem/renderTreeItem.tsx', - hash: '423938715411658182', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItem/useTreeItem.tsx', - hash: '2946674587697501147', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItem/useTreeItemContextValues.ts', - hash: '7521332398662164287', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItem/useTreeItemStyles.styles.ts', - hash: '3910268932895175685', - }, - { file: 'packages/react-components/react-tree/src/components/TreeItemChevron.tsx', hash: '13111855959190541713' }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.test.tsx', - hash: '2579116581358045080', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.tsx', - hash: '2849103380227024635', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemLayout/TreeItemLayout.types.ts', - hash: '2990369194733272697', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemLayout/__snapshots__/TreeItemLayout.test.tsx.snap', - hash: '9466630829797683724', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemLayout/index.ts', - hash: '17567081473447998944', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemLayout/renderTreeItemLayout.tsx', - hash: '8168067713043998322', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayout.tsx', - hash: '8546937425436191095', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayoutStyles.styles.ts', - hash: '11057546586913473576', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.test.tsx', - hash: '5784701546408248173', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.tsx', - hash: '18041779658234398117', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/TreeItemPersonaLayout.types.ts', - hash: '5850649340938347040', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/__snapshots__/TreeItemPersonaLayout.test.tsx.snap', - hash: '493101854707647726', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/index.ts', - hash: '5706098966977998655', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/renderTreeItemPersonaLayout.tsx', - hash: '11893124970293607637', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayout.ts', - hash: '17115760138027961283', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutContextValues.ts', - hash: '12504747604672555491', - }, - { - file: 'packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.styles.ts', - hash: '2760083827584951946', - }, - { file: 'packages/react-components/react-tree/src/components/TreeProvider.tsx', hash: '7517422617459581682' }, - { file: 'packages/react-components/react-tree/src/contexts/index.ts', hash: '6882555427867434756' }, - { file: 'packages/react-components/react-tree/src/contexts/subtreeContext.ts', hash: '6249658885115935790' }, - { file: 'packages/react-components/react-tree/src/contexts/treeContext.ts', hash: '4036683755492528965' }, - { file: 'packages/react-components/react-tree/src/contexts/treeItemContext.ts', hash: '11517978604553072645' }, - { - file: 'packages/react-components/react-tree/src/hooks/useControllableOpenItems.ts', - hash: '4816774097134854864', - }, - { file: 'packages/react-components/react-tree/src/hooks/useFlatTreeNavigation.ts', hash: '17983963822301935882' }, - { - file: 'packages/react-components/react-tree/src/hooks/useHTMLElementWalkerRef.ts', - hash: '12602091648031084383', - }, - { file: 'packages/react-components/react-tree/src/hooks/useRootTree.ts', hash: '16041317070023655062' }, - { file: 'packages/react-components/react-tree/src/hooks/useRovingTabIndexes.ts', hash: '16208067110669278387' }, - { file: 'packages/react-components/react-tree/src/hooks/useSubtree.ts', hash: '8213543736847331171' }, - { file: 'packages/react-components/react-tree/src/hooks/useTreeNavigation.ts', hash: '4105758237008898129' }, - { file: 'packages/react-components/react-tree/src/index.ts', hash: '17215199998523638799' }, - { - file: 'packages/react-components/react-tree/src/testing/flattenTreeFromElement.ts', - hash: '17352909156336948309', - }, - { file: 'packages/react-components/react-tree/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { file: 'packages/react-components/react-tree/src/utils/ImmutableMap.ts', hash: '18191754425073445309' }, - { file: 'packages/react-components/react-tree/src/utils/ImmutableSet.ts', hash: '7975523845111866724' }, - { file: 'packages/react-components/react-tree/src/utils/assert.ts', hash: '1469332169996285562' }, - { file: 'packages/react-components/react-tree/src/utils/createCheckedItems.ts', hash: '7113512274716840836' }, - { - file: 'packages/react-components/react-tree/src/utils/createHTMLElementWalker.ts', - hash: '13950261002817970754', - }, - { file: 'packages/react-components/react-tree/src/utils/createHeadlessTree.ts', hash: '15503462296358436766' }, - { file: 'packages/react-components/react-tree/src/utils/createOpenItems.ts', hash: '2544348651417480592' }, - { file: 'packages/react-components/react-tree/src/utils/flattenTree.ts', hash: '4703444536314081832' }, - { - file: 'packages/react-components/react-tree/src/utils/getTreeItemValueFromElement.ts', - hash: '8002251387458635096', - }, - { file: 'packages/react-components/react-tree/src/utils/nextTypeAheadElement.ts', hash: '11291753067468538470' }, - { file: 'packages/react-components/react-tree/src/utils/normalizeOpenItems.ts', hash: '16095895542449977581' }, - { file: 'packages/react-components/react-tree/src/utils/tokens.ts', hash: '3974420961756921691' }, - { file: 'packages/react-components/react-tree/src/utils/treeItemFilter.ts', hash: '12235784334461474461' }, - { file: 'packages/react-components/react-tree/stories/Tree/FlatTree.stories.tsx', hash: '6464304357476423385' }, - { - file: 'packages/react-components/react-tree/stories/Tree/OpenItemControlled.stories.tsx', - hash: '4633474533903741112', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/OpenItemsControlled.stories.tsx', - hash: '14382852307558690931', - }, - { file: 'packages/react-components/react-tree/stories/Tree/TreeA11y.md', hash: '18278713554142398706' }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeActions.stories.tsx', - hash: '12149000182087747702', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeAppearance.stories.tsx', - hash: '4022938655114250405', - }, - { file: 'packages/react-components/react-tree/stories/Tree/TreeAside.stories.tsx', hash: '15498843229827369748' }, - { file: 'packages/react-components/react-tree/stories/Tree/TreeBestPractices.md', hash: '6217951044650240936' }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeCustomizingInteraction.stories.tsx', - hash: '6487662564534500772', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeDefault.stories.tsx', - hash: '3281424809310801489', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeDefaultOpen.stories.tsx', - hash: '13051992569108747955', - }, - { file: 'packages/react-components/react-tree/stories/Tree/TreeDescription.md', hash: '3591680887237708383' }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeDragAndDrop.stories.tsx', - hash: '5557484249944494015', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeExpandIcon.stories.tsx', - hash: '8975769184899329868', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeIconBeforeAndAfter.stories.tsx', - hash: '2974051680275017294', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeInfiniteScrolling.stories.tsx', - hash: '15927831107506523909', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeInlineStylingTreeItemLevel.stories.tsx', - hash: '15669582785010273897', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeLayouts.stories.tsx', - hash: '14629023937799779028', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeLazyLoading.stories.tsx', - hash: '16480494302565356882', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeManipulation.stories.tsx', - hash: '4369546527713118115', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/TreeSelection.stories.tsx', - hash: '3961405183329974459', - }, - { file: 'packages/react-components/react-tree/stories/Tree/TreeSize.stories.tsx', hash: '4652411936099155946' }, - { - file: 'packages/react-components/react-tree/stories/Tree/UseHeadlessFlatTree.stories.tsx', - hash: '15284690713944369839', - }, - { - file: 'packages/react-components/react-tree/stories/Tree/Virtualization.stories.tsx', - hash: '17275731017871637387', - }, - { file: 'packages/react-components/react-tree/stories/Tree/index.stories.tsx', hash: '5752380234511737172' }, - { file: 'packages/react-components/react-tree/stories/Tree/utils/mockFetch.ts', hash: '3306783506830490620' }, - { file: 'packages/react-components/react-tree/stories/Tree/utils/useQuery.ts', hash: '175410983663244781' }, - { file: 'packages/react-components/react-tree/tsconfig.cy.json', hash: '4393960456153312170' }, - { file: 'packages/react-components/react-tree/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-tree/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-tree/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/scripts-prettier': [ - { file: 'scripts/prettier/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/prettier/jest.config.js', hash: '12223295979119876176' }, - { file: 'scripts/prettier/package.json', hash: '5291951655628615430', deps: ['@fluentui/scripts-monorepo'] }, - { file: 'scripts/prettier/project.json', hash: '6167879023111685572' }, - { file: 'scripts/prettier/src/index.d.ts', hash: '14316083377466315843' }, - { file: 'scripts/prettier/src/index.js', hash: '10984052681773998567' }, - { file: 'scripts/prettier/src/prettier-helpers.js', hash: '14195801102266884159' }, - { file: 'scripts/prettier/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/prettier/tsconfig.lib.json', hash: '15222053984038389170' }, - { file: 'scripts/prettier/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/scripts-babel': [ - { file: 'scripts/babel/.eslintrc.json', hash: '3383833998949875450' }, - { file: 'scripts/babel/index.js', hash: '7993737580679407702' }, - { file: 'scripts/babel/jest.config.js', hash: '1277314660710374279' }, - { file: 'scripts/babel/package.json', hash: '14364435620713749886' }, - { file: 'scripts/babel/plugins/index.ts', hash: '483902564153285887' }, - { file: 'scripts/babel/plugins/transform-star-import-plugin.ts', hash: '497207983086485622' }, - { file: 'scripts/babel/plugins/types.ts', hash: '16362335534208576628' }, - { file: 'scripts/babel/preset-v9.js', hash: '18020626006821864392' }, - { file: 'scripts/babel/preset-v9.spec.ts', hash: '1556910749991715657' }, - { file: 'scripts/babel/project.json', hash: '6727545952869869660' }, - { file: 'scripts/babel/register.js', hash: '18183864298469557088' }, - { file: 'scripts/babel/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/babel/tsconfig.lib.json', hash: '3753806828268919288' }, - { file: 'scripts/babel/tsconfig.spec.json', hash: '16242416785763058919' }, - { file: 'scripts/babel/types.ts', hash: '4791608823641193595' }, - ], - '@fluentui/react-datepicker-compat': [ - { file: 'packages/react-components/react-datepicker-compat/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-datepicker-compat/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-datepicker-compat/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-datepicker-compat/.storybook/preview.js', hash: '1791378012295456991' }, - { - file: 'packages/react-components/react-datepicker-compat/.storybook/tsconfig.json', - hash: '14611368028782818158', - }, - { file: 'packages/react-components/react-datepicker-compat/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-datepicker-compat/CHANGELOG.json', hash: '11013446861406926313' }, - { file: 'packages/react-components/react-datepicker-compat/CHANGELOG.md', hash: '12357247949196268869' }, - { file: 'packages/react-components/react-datepicker-compat/LICENSE', hash: '15467235041157898768' }, - { file: 'packages/react-components/react-datepicker-compat/README.md', hash: '14965536454179875946' }, - { - file: 'packages/react-components/react-datepicker-compat/bundle-size/DatePicker.fixture.js', - hash: '5780478783270741987', - }, - { - file: 'packages/react-components/react-datepicker-compat/config/api-extractor.json', - hash: '124052868224837692', - }, - { file: 'packages/react-components/react-datepicker-compat/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-datepicker-compat/cypress.config.ts', hash: '17230281421398791592' }, - { - file: 'packages/react-components/react-datepicker-compat/etc/react-datepicker-compat.api.md', - hash: '6017916360745789326', - }, - { file: 'packages/react-components/react-datepicker-compat/jest.config.js', hash: '15440392279685094633' }, - { file: 'packages/react-components/react-datepicker-compat/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-datepicker-compat/package.json', - hash: '12713229717479939122', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-calendar-compat', - '@fluentui/react-field', - 'npm:@fluentui/react-icons', - '@fluentui/react-input', - '@fluentui/react-jsx-runtime', - '@fluentui/react-popover', - '@fluentui/react-portal', - '@fluentui/react-positioning', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-components/react-datepicker-compat/project.json', hash: '11680857818498676120' }, - { file: 'packages/react-components/react-datepicker-compat/src/DatePicker.ts', hash: '14140387775859161252' }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.cy.tsx', - hash: '12630229637117863596', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.test.tsx', - hash: '12404958269483653272', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.tsx', - hash: '8759052501401237921', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/DatePicker.types.ts', - hash: '8659224020186844831', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap', - hash: '7292979735761155863', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/defaults.ts', - hash: '9663199247101225899', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/index.ts', - hash: '2306196274500634021', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/renderDatePicker.tsx', - hash: '4545229128790594608', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/useDatePicker.tsx', - hash: '8805471839390216809', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/components/DatePicker/useDatePickerStyles.styles.ts', - hash: '1151934265857114204', - }, - { file: 'packages/react-components/react-datepicker-compat/src/index.ts', hash: '11139978793168257780' }, - { - file: 'packages/react-components/react-datepicker-compat/src/testing/isConformant.ts', - hash: '7325949189279658038', - }, - { - file: 'packages/react-components/react-datepicker-compat/src/utils/usePopupPositioning.ts', - hash: '8552065050899537438', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerBestPractices.md', - hash: '15284497134478716193', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerControlled.stories.tsx', - hash: '17703752551334714090', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerCustomDateFormatting.stories.tsx', - hash: '17923939141629207493', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDateBoundaries.stories.tsx', - hash: '7939700521736332519', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDateRange.stories.tsx', - hash: '6776886943573250862', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDefault.stories.tsx', - hash: '8542138294343046914', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDescription.md', - hash: '1753461532339200045', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerDisabled.stories.tsx', - hash: '7534425957894004424', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerErrorHandling.stories.tsx', - hash: '3115559528923035285', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerFirstDayOfTheWeek.stories.tsx', - hash: '2591018952854976305', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerLocalized.stories.tsx', - hash: '11758139077848427607', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerRequired.stories.tsx', - hash: '8512856872562400035', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerTextInput.stories.tsx', - hash: '16850430938666912680', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/DatePickerWeekNumbers.stories.tsx', - hash: '2856056823419360247', - }, - { - file: 'packages/react-components/react-datepicker-compat/stories/DatePicker/index.stories.tsx', - hash: '8278766610962775166', - }, - { file: 'packages/react-components/react-datepicker-compat/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-datepicker-compat/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-datepicker-compat/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-datepicker-compat/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-theme': [ - { file: 'packages/react-components/react-theme/.babelrc.json', hash: '496283691468190474' }, - { file: 'packages/react-components/react-theme/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-theme/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-theme/.storybook/preview-head.html', hash: '177346033808426115' }, - { file: 'packages/react-components/react-theme/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-theme/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-theme/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-theme/CHANGELOG.json', hash: '15851009324481788504' }, - { file: 'packages/react-components/react-theme/CHANGELOG.md', hash: '8148872566269969725' }, - { file: 'packages/react-components/react-theme/LICENSE', hash: '7790297149303267088' }, - { file: 'packages/react-components/react-theme/README.md', hash: '8110783886660945488' }, - { - file: 'packages/react-components/react-theme/bundle-size/SingleThemeToken.fixture.js', - hash: '48190699545478805', - }, - { - file: 'packages/react-components/react-theme/bundle-size/TeamsAllThemes.fixture.js', - hash: '8896684391654619670', - }, - { - file: 'packages/react-components/react-theme/bundle-size/TeamsLightTheme.fixture.js', - hash: '14215547226107299921', - }, - { file: 'packages/react-components/react-theme/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-theme/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-theme/etc/react-theme.api.md', hash: '1026602756558119011' }, - { file: 'packages/react-components/react-theme/jest.config.js', hash: '10881208247988768850' }, - { file: 'packages/react-components/react-theme/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-theme/package.json', - hash: '8050136086276026658', - deps: [ - '@fluentui/tokens', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - ], - }, - { file: 'packages/react-components/react-theme/project.json', hash: '12372302467798064068' }, - { file: 'packages/react-components/react-theme/src/index.ts', hash: '8707625999909623354' }, - { - file: 'packages/react-components/react-theme/stories/Theme/borderRadii/ThemeBorderRadii.stories.tsx', - hash: '3187948697713321066', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/borderRadii/index.stories.mdx', - hash: '12453961250297731337', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/colors/ColorRamp.stories.tsx', - hash: '16299384491400767513', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/colors/FilterButton.stories.tsx', - hash: '17370458700570599868', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/colors/ThemeColors.stories.tsx', - hash: '1404087490752180885', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/colors/index.stories.mdx', - hash: '12236570761233077569', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/fonts/ThemeFonts.stories.tsx', - hash: '17201499561988764854', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/fonts/index.stories.mdx', - hash: '2798815260444835062', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/motion/ThemeMotion.stories.tsx', - hash: '16846307853033966247', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/motion/index.stories.mdx', - hash: '16078226543713423992', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/shadows/ThemeShadows.stories.tsx', - hash: '6901031965285366839', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/shadows/index.stories.mdx', - hash: '18347467915038705974', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/spacing/ThemeSpacing.stories.tsx', - hash: '12809328850478978466', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/spacing/index.stories.mdx', - hash: '9169587683523609544', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/strokeWidths/ThemeStrokeWidths.stories.tsx', - hash: '1558556278663600963', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/strokeWidths/index.stories.mdx', - hash: '10215274721582502890', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/typography/Composing.stories.tsx', - hash: '11728628513694072539', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/typography/Example.stories.tsx', - hash: '3336989101772861512', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/typography/MixedStyles.stories.tsx', - hash: '10948636943541688820', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/typography/ThemeTypography.stories.tsx', - hash: '2870834578309054765', - }, - { - file: 'packages/react-components/react-theme/stories/Theme/typography/index.stories.mdx', - hash: '2985843863773666943', - }, - { file: 'packages/react-components/react-theme/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-theme/tsconfig.lib.json', hash: '2330431448937249608' }, - { file: 'packages/react-components/react-theme/tsconfig.spec.json', hash: '13916911291935990408' }, - ], - '@fluentui/docs-components': [ - { file: 'packages/fluentui/docs-components/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/docs-components/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/docs-components/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/docs-components/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/docs-components/package.json', - hash: '12299398415052887154', - deps: [ - 'npm:@babel/runtime', - 'npm:copy-to-clipboard', - 'npm:lodash', - 'npm:object.values', - 'npm:prismjs', - 'npm:prop-types', - 'npm:react-ace', - 'npm:react-codesandboxer', - 'npm:react-element-to-jsx-string', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - 'npm:prettier', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/docs-components/project.json', hash: '13469323002647093120' }, - { - file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/CodeSandboxExporter.tsx', - hash: '10775572371902899182', - }, - { - file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/createPackageJson.ts', - hash: '17834717065357338878', - }, - { file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/index.ts', hash: '729372128174666005' }, - { - file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/indexTemplates.ts', - hash: '13123484621875068230', - }, - { file: 'packages/fluentui/docs-components/src/CodeSandboxExporter/types.tsx', hash: '2963536210780409373' }, - { file: 'packages/fluentui/docs-components/src/CodeSnippet/CodeSnippet.tsx', hash: '10184034503240704567' }, - { file: 'packages/fluentui/docs-components/src/CodeSnippet/CodeSnippetLabel.tsx', hash: '4843091425161626165' }, - { file: 'packages/fluentui/docs-components/src/CodeSnippet/formatCode.ts', hash: '13761802560233975725' }, - { file: 'packages/fluentui/docs-components/src/CodeSnippet/types.ts', hash: '9865053077409343897' }, - { file: 'packages/fluentui/docs-components/src/CopyToClipboard.tsx', hash: '3817005176756180732' }, - { file: 'packages/fluentui/docs-components/src/Editor/Editor.tsx', hash: '12794711676852103158' }, - { file: 'packages/fluentui/docs-components/src/index.ts', hash: '17334811117911265474' }, - { file: 'packages/fluentui/docs-components/src/knobs/KnobContexts.ts', hash: '4842163521617597457' }, - { file: 'packages/fluentui/docs-components/src/knobs/KnobInspector.tsx', hash: '18065313350188753080' }, - { file: 'packages/fluentui/docs-components/src/knobs/KnobProvider.tsx', hash: '6785463407886649345' }, - { file: 'packages/fluentui/docs-components/src/knobs/LogInspector.tsx', hash: '15951479911802652570' }, - { file: 'packages/fluentui/docs-components/src/knobs/defaultComponents.tsx', hash: '17505366242981138566' }, - { file: 'packages/fluentui/docs-components/src/knobs/types.ts', hash: '15943354925699053567' }, - { file: 'packages/fluentui/docs-components/src/knobs/useBooleanKnob.ts', hash: '6698715814693094933' }, - { file: 'packages/fluentui/docs-components/src/knobs/useKnob.ts', hash: '10559903722198811306' }, - { file: 'packages/fluentui/docs-components/src/knobs/useKnobValues.ts', hash: '10362124241855310049' }, - { file: 'packages/fluentui/docs-components/src/knobs/useLogKnob.ts', hash: '6515035524717563074' }, - { file: 'packages/fluentui/docs-components/src/knobs/useNumberKnob.ts', hash: '14524322305704285530' }, - { file: 'packages/fluentui/docs-components/src/knobs/useRangeKnob.ts', hash: '13035545945521563789' }, - { file: 'packages/fluentui/docs-components/src/knobs/useSelectKnob.ts', hash: '14829194906409623521' }, - { file: 'packages/fluentui/docs-components/src/knobs/useStringKnob.ts', hash: '8537090047394764283' }, - { file: 'packages/fluentui/docs-components/src/knobs/utils/parseRangeValue.ts', hash: '11201358452441745212' }, - { file: 'packages/fluentui/docs-components/src/renderElementToJSX.ts', hash: '11554022792520913001' }, - { file: 'packages/fluentui/docs-components/tsconfig.json', hash: '3177558348790025290' }, - ], - '@fluentui/babel-preset-storybook-full-source': [ - { - file: 'packages/react-components/babel-preset-storybook-full-source/.babelrc.json', - hash: '8174012058119950495', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/.eslintignore', - hash: '9846005931812453978', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/.eslintrc.json', - hash: '11018738359270224912', - }, - { file: 'packages/react-components/babel-preset-storybook-full-source/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/babel-preset-storybook-full-source/LICENSE', hash: '2851101912028128850' }, - { file: 'packages/react-components/babel-preset-storybook-full-source/README.md', hash: '10822226558355648087' }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/config/api-extractor.json', - hash: '124052868224837692', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/config/tests.js', - hash: '16913843724990866890', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/etc/babel-preset-storybook-full-source.api.md', - hash: '10134344240064969487', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/jest.config.js', - hash: '17998182148295247129', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/just.config.ts', - hash: '4613957333426947832', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/package.json', - hash: '16304265586387765120', - deps: [ - 'npm:@babel/core', - 'npm:@swc/helpers', - 'npm:prettier', - 'npm:pkg-up', - '@fluentui/eslint-plugin', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - ], - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/project.json', - hash: '16617351147562126074', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-inner-assignments-from-exported/code.js', - hash: '12250846775050869646', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-inner-assignments-from-exported/output.js', - hash: '3913454441417757431', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-params-from-not-exported/code.js', - hash: '5377692644416536257', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/doesnt-remove-params-from-not-exported/output.js', - hash: '5359392563189908938', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/removes-assigns-from-exported/code.js', - hash: '14695982501113684921', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/babel-plugin-remove-storybook-parameters/removes-assigns-from-exported/output.js', - hash: '1765868221018401588', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/add-parameter/code.js', - hash: '6315840616906615', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/add-parameter/output.js', - hash: '15744114046571496255', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/keep-sourcecode-spacing/code.js', - hash: '6397343963531239775', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-fullsource/keep-sourcecode-spacing/output.js', - hash: '2870614453866614178', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/import-override/code.js', - hash: '8331756490526386489', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/import-override/output.js', - hash: '1104668652453585821', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-declarations/code.js', - hash: '11266463562398618277', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-declarations/output.js', - hash: '12987886010279186167', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-specifiers/code.js', - hash: '5428787723527841401', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/multiple-import-specifiers/output.js', - hash: '16810803813997568777', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/no-import-declarations/code.js', - hash: '17946180769179213796', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/no-import-declarations/output.js', - hash: '17946180769179213796', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/non-fluent-import-declaration/code.js', - hash: '3590937219013626819', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/non-fluent-import-declaration/output.js', - hash: '6032116881122134529', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/code.js', - hash: '11406060193416782004', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/output.js', - hash: '9437463913197939329', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/relative-import-declaration/package.json', - hash: '16793539485026835037', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/single-import-declaration/code.js', - hash: '17372187984601639124', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/__fixtures__/storybook-stories-modifyImports/single-import-declaration/output.js', - hash: '6432025930017863990', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/fullsource.test.ts', - hash: '5856907194449946095', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/fullsource.ts', - hash: '4310623060008865206', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/index.ts', - hash: '6047420778112851575', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/modifyImports.test.ts', - hash: '2149201365036783550', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/modifyImports.ts', - hash: '10423675854161091140', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/removeStorybookParameters.test.ts', - hash: '2032450309373789045', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/removeStorybookParameters.ts', - hash: '3606776635662219250', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/src/types.ts', - hash: '10005011061873778871', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/tsconfig.json', - hash: '11066276364833551840', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/tsconfig.lib.json', - hash: '6215804205440595574', - }, - { - file: 'packages/react-components/babel-preset-storybook-full-source/tsconfig.spec.json', - hash: '13916911291935990408', - }, - ], - '@fluentui/react-popover': [ - { file: 'packages/react-components/react-popover/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-popover/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-popover/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-popover/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-popover/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-popover/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-popover/CHANGELOG.json', hash: '799414624182040767' }, - { file: 'packages/react-components/react-popover/CHANGELOG.md', hash: '15935155906664144779' }, - { file: 'packages/react-components/react-popover/LICENSE', hash: '13212047852807775160' }, - { file: 'packages/react-components/react-popover/README.md', hash: '13050354636904224629' }, - { file: 'packages/react-components/react-popover/bundle-size/Popover.fixture.js', hash: '5887030192339858914' }, - { file: 'packages/react-components/react-popover/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-popover/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-popover/cypress.config.ts', hash: '17230281421398791592' }, - { file: 'packages/react-components/react-popover/docs/Spec.md', hash: '4609286566686568557' }, - { file: 'packages/react-components/react-popover/etc/react-popover.api.md', hash: '7514615129011558376' }, - { file: 'packages/react-components/react-popover/jest.config.js', hash: '14026599071184978672' }, - { file: 'packages/react-components/react-popover/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-popover/package.json', - hash: '9762499192074740118', - deps: [ - '@fluentui/keyboard-keys', - '@fluentui/react-aria', - '@fluentui/react-context-selector', - '@fluentui/react-portal', - '@fluentui/react-positioning', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - '@fluentui/react-jsx-runtime', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-cypress', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-popover/project.json', hash: '13728026763707518386' }, - { file: 'packages/react-components/react-popover/src/Popover.ts', hash: '82425603334873078' }, - { file: 'packages/react-components/react-popover/src/PopoverSurface.ts', hash: '14221118331298170467' }, - { file: 'packages/react-components/react-popover/src/PopoverTrigger.ts', hash: '5974644824026413780' }, - { - file: 'packages/react-components/react-popover/src/components/Popover/Popover.cy.tsx', - hash: '14911237654227630815', - }, - { - file: 'packages/react-components/react-popover/src/components/Popover/Popover.test.tsx', - hash: '4654989182333163446', - }, - { - file: 'packages/react-components/react-popover/src/components/Popover/Popover.tsx', - hash: '5929512317701067411', - }, - { - file: 'packages/react-components/react-popover/src/components/Popover/Popover.types.ts', - hash: '17729441559883210548', - }, - { - file: 'packages/react-components/react-popover/src/components/Popover/constants.ts', - hash: '4627999313797808057', - }, - { file: 'packages/react-components/react-popover/src/components/Popover/index.ts', hash: '1977828869061472401' }, - { - file: 'packages/react-components/react-popover/src/components/Popover/renderPopover.tsx', - hash: '8998572893306941337', - }, - { - file: 'packages/react-components/react-popover/src/components/Popover/usePopover.ts', - hash: '3450341196926624385', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.test.tsx', - hash: '6823809963025237390', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.tsx', - hash: '18183468277526097917', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverSurface/PopoverSurface.types.ts', - hash: '3484467807402199312', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverSurface/__snapshots__/PopoverSurface.test.tsx.snap', - hash: '8906207879497919239', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverSurface/index.ts', - hash: '11111917236962218660', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverSurface/renderPopoverSurface.tsx', - hash: '331735011709120147', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverSurface/usePopoverSurface.ts', - hash: '13899100915034814530', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverSurface/usePopoverSurfaceStyles.styles.ts', - hash: '12459251168906298722', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.test.tsx', - hash: '8874285659567391752', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.tsx', - hash: '14243495002152923383', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverTrigger/PopoverTrigger.types.ts', - hash: '10978545043348849880', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverTrigger/__snapshots__/PopoverTrigger.test.tsx.snap', - hash: '7049001353719709106', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverTrigger/index.ts', - hash: '6566947698041733501', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverTrigger/renderPopoverTrigger.tsx', - hash: '12559738220691999133', - }, - { - file: 'packages/react-components/react-popover/src/components/PopoverTrigger/usePopoverTrigger.ts', - hash: '17244988510897269019', - }, - { file: 'packages/react-components/react-popover/src/index.ts', hash: '9032593331933710944' }, - { file: 'packages/react-components/react-popover/src/popoverContext.ts', hash: '10247319476918690150' }, - { file: 'packages/react-components/react-popover/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-popover/src/testing/mockUsePopoverContext.ts', - hash: '17560436447699119942', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverAnchorToCustomTarget.stories.tsx', - hash: '214805130071163403', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverAppearance.stories.tsx', - hash: '1911028944506386880', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverBestPractices.md', - hash: '2732588484685589689', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverControllingOpenAndClose.stories.tsx', - hash: '12207010824761379535', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverCustomTrigger.stories.tsx', - hash: '3517858408299763563', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverDefault.stories.tsx', - hash: '16713073541667462208', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverDescription.md', - hash: '8500557139312334970', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverInternalUpdateContent.stories.tsx', - hash: '16021108580550194296', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverNestedPopovers.stories.tsx', - hash: '4287991275281069452', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverTrappingFocus.stories.tsx', - hash: '14078581443974686242', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverWithArrow.stories.tsx', - hash: '3955407080794549289', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/PopoverWithoutTrigger.stories.tsx', - hash: '12108642192411900216', - }, - { - file: 'packages/react-components/react-popover/stories/Popover/index.stories.tsx', - hash: '9781352630408705313', - }, - { file: 'packages/react-components/react-popover/tsconfig.cy.json', hash: '7215147373970103512' }, - { file: 'packages/react-components/react-popover/tsconfig.json', hash: '5326137440511234645' }, - { file: 'packages/react-components/react-popover/tsconfig.lib.json', hash: '3027287810670149763' }, - { file: 'packages/react-components/react-popover/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-radio': [ - { file: 'packages/react-components/react-radio/.babelrc.json', hash: '18339585439895240691' }, - { file: 'packages/react-components/react-radio/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-components/react-radio/.storybook/main.js', hash: '11617744840349284164' }, - { file: 'packages/react-components/react-radio/.storybook/preview.js', hash: '1791378012295456991' }, - { file: 'packages/react-components/react-radio/.storybook/tsconfig.json', hash: '14611368028782818158' }, - { file: 'packages/react-components/react-radio/.swcrc', hash: '16532409398616988134' }, - { file: 'packages/react-components/react-radio/CHANGELOG.json', hash: '3459686486196441964' }, - { file: 'packages/react-components/react-radio/CHANGELOG.md', hash: '14578999085479219777' }, - { file: 'packages/react-components/react-radio/LICENSE', hash: '9112585887229860601' }, - { file: 'packages/react-components/react-radio/README.md', hash: '7429449480780465656' }, - { file: 'packages/react-components/react-radio/bundle-size/Radio.fixture.js', hash: '6056476279648699462' }, - { file: 'packages/react-components/react-radio/bundle-size/RadioGroup.fixture.js', hash: '2347449671562100332' }, - { file: 'packages/react-components/react-radio/config/api-extractor.json', hash: '124052868224837692' }, - { file: 'packages/react-components/react-radio/config/tests.js', hash: '16913843724990866890' }, - { file: 'packages/react-components/react-radio/docs/Spec.md', hash: '13554510639360837723' }, - { - file: 'packages/react-components/react-radio/etc/images/horizontal-group-stacked.png', - hash: '13781148661598441913', - }, - { file: 'packages/react-components/react-radio/etc/images/horizontal-group.png', hash: '17430229115123999828' }, - { - file: 'packages/react-components/react-radio/etc/images/vertical-group-with-dropdown.png', - hash: '16718633047948489140', - }, - { - file: 'packages/react-components/react-radio/etc/images/vertical-group-with-input.png', - hash: '767002637445042851', - }, - { file: 'packages/react-components/react-radio/etc/images/vertical-group.png', hash: '4914366318572506386' }, - { file: 'packages/react-components/react-radio/etc/react-radio.api.md', hash: '14339882295224824349' }, - { file: 'packages/react-components/react-radio/jest.config.js', hash: '4378835463518598771' }, - { file: 'packages/react-components/react-radio/just.config.ts', hash: '4613957333426947832' }, - { - file: 'packages/react-components/react-radio/package.json', - hash: '12751640571718797407', - deps: [ - '@fluentui/react-field', - 'npm:@fluentui/react-icons', - '@fluentui/react-jsx-runtime', - '@fluentui/react-label', - '@fluentui/react-shared-contexts', - '@fluentui/react-tabster', - '@fluentui/react-theme', - '@fluentui/react-utilities', - 'npm:@griffel/react', - 'npm:@swc/helpers', - '@fluentui/eslint-plugin', - '@fluentui/react-conformance', - '@fluentui/react-conformance-griffel', - '@fluentui/scripts-api-extractor', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - 'npm:scheduler', - ], - }, - { file: 'packages/react-components/react-radio/project.json', hash: '7820595109551665028' }, - { file: 'packages/react-components/react-radio/src/Radio.ts', hash: '7263746132466436601' }, - { file: 'packages/react-components/react-radio/src/RadioGroup.ts', hash: '9616148445474045919' }, - { - file: 'packages/react-components/react-radio/src/components/Radio/Radio.test.tsx', - hash: '6736735414979302828', - }, - { file: 'packages/react-components/react-radio/src/components/Radio/Radio.tsx', hash: '3790282066800805246' }, - { - file: 'packages/react-components/react-radio/src/components/Radio/Radio.types.ts', - hash: '9229799828831420871', - }, - { file: 'packages/react-components/react-radio/src/components/Radio/index.ts', hash: '8479995711248948636' }, - { - file: 'packages/react-components/react-radio/src/components/Radio/renderRadio.tsx', - hash: '12246486103260771246', - }, - { file: 'packages/react-components/react-radio/src/components/Radio/useRadio.tsx', hash: '4422675660519438615' }, - { - file: 'packages/react-components/react-radio/src/components/Radio/useRadioStyles.styles.ts', - hash: '9322792565954029544', - }, - { - file: 'packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.test.tsx', - hash: '1729336792797867060', - }, - { - file: 'packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.tsx', - hash: '13051368676540290025', - }, - { - file: 'packages/react-components/react-radio/src/components/RadioGroup/RadioGroup.types.ts', - hash: '2456202840593717778', - }, - { file: 'packages/react-components/react-radio/src/components/RadioGroup/index.ts', hash: '8969274474740272512' }, - { - file: 'packages/react-components/react-radio/src/components/RadioGroup/renderRadioGroup.tsx', - hash: '4848267084755134712', - }, - { - file: 'packages/react-components/react-radio/src/components/RadioGroup/useRadioGroup.ts', - hash: '1485129830782544789', - }, - { - file: 'packages/react-components/react-radio/src/components/RadioGroup/useRadioGroupStyles.styles.ts', - hash: '9187301613711214224', - }, - { file: 'packages/react-components/react-radio/src/contexts/RadioGroupContext.ts', hash: '10239000936212442133' }, - { file: 'packages/react-components/react-radio/src/contexts/index.ts', hash: '6039445079577715801' }, - { - file: 'packages/react-components/react-radio/src/contexts/useRadioGroupContextValues.ts', - hash: '5680455141558794134', - }, - { file: 'packages/react-components/react-radio/src/index.ts', hash: '8493262146993548233' }, - { file: 'packages/react-components/react-radio/src/testing/isConformant.ts', hash: '7325949189279658038' }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupBestPractices.md', - hash: '11896541066091939987', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupControlledValue.stories.tsx', - hash: '17594916395232449758', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDefault.stories.tsx', - hash: '17660784807463505960', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDefaultValue.stories.tsx', - hash: '17633773687365122976', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDescription.md', - hash: '11915016562314600380', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDisabled.stories.tsx', - hash: '17381303118996967824', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupDisabledItem.stories.tsx', - hash: '14317893343810056642', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupHorizontal.stories.tsx', - hash: '12753958700259064575', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupHorizontalStacked.stories.tsx', - hash: '14132521406762046576', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupLabelSubtext.stories.tsx', - hash: '12387472870045441934', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/RadioGroupRequired.stories.tsx', - hash: '13962288512679376395', - }, - { - file: 'packages/react-components/react-radio/stories/RadioGroup/index.stories.tsx', - hash: '1915432931712324752', - }, - { file: 'packages/react-components/react-radio/tsconfig.json', hash: '4314087102028690976' }, - { file: 'packages/react-components/react-radio/tsconfig.lib.json', hash: '5990226506726238656' }, - { file: 'packages/react-components/react-radio/tsconfig.spec.json', hash: '6114153871167405290' }, - ], - '@fluentui/react-icons-mdl2-branded': [ - { file: 'packages/react-icons-mdl2-branded/.eslintrc.json', hash: '11822209983446579696' }, - { file: 'packages/react-icons-mdl2-branded/.npmignore', hash: '7699079327417375383' }, - { file: 'packages/react-icons-mdl2-branded/CHANGELOG.json', hash: '5572846064800558832' }, - { file: 'packages/react-icons-mdl2-branded/CHANGELOG.md', hash: '6004498992866846212' }, - { file: 'packages/react-icons-mdl2-branded/LICENSE', hash: '7874699040565754716' }, - { file: 'packages/react-icons-mdl2-branded/README.md', hash: '6559004903633966452' }, - { file: 'packages/react-icons-mdl2-branded/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-icons-mdl2-branded/package.json', - hash: '4013216088192523680', - deps: [ - '@fluentui/set-version', - '@fluentui/react-icons-mdl2', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:@types/react-dom', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/react-icons-mdl2-branded/project.json', hash: '182356497911993089' }, - { file: 'packages/react-icons-mdl2-branded/src/components/AADLogoIcon.tsx', hash: '286612657429892804' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ATPLogoIcon.tsx', hash: '13784004784877289281' }, - { file: 'packages/react-icons-mdl2-branded/src/components/AdminALogo32Icon.tsx', hash: '13918755500788848136' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminALogoFill32Icon.tsx', - hash: '1271871821797964572', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminALogoInverse32Icon.tsx', - hash: '15572356902705291320', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminCLogoInverse32Icon.tsx', - hash: '8291878645804224665', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminDLogoInverse32Icon.tsx', - hash: '12605925310702167699', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminELogoInverse32Icon.tsx', - hash: '2055064523378402409', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/AdminIcon.tsx', hash: '17249102460938666539' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminLLogoInverse32Icon.tsx', - hash: '5186632936760569047', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminMLogoInverse32Icon.tsx', - hash: '534894712628818082', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminOLogoInverse32Icon.tsx', - hash: '7077310521163798320', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminPLogoInverse32Icon.tsx', - hash: '10023240628776751568', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminSLogoInverse32Icon.tsx', - hash: '16725812218512154502', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AdminYLogoInverse32Icon.tsx', - hash: '10971688238831377884', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/AnalyticsLogoIcon.tsx', hash: '9146491538898029640' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AppIconDefaultAddIcon.tsx', - hash: '3057290352682393613', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/AppIconDefaultIcon.tsx', hash: '16322368519595134458' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AppIconDefaultListIcon.tsx', - hash: '1875525878736528866', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AuthenticatorAppIcon.tsx', - hash: '9035246704413886179', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AzureAPIManagementIcon.tsx', - hash: '16863931877328318762', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AzureDataExplorerIcon.tsx', - hash: '16715482426408220220', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/AzureKeyVaultIcon.tsx', hash: '1876735140795216492' }, - { file: 'packages/react-icons-mdl2-branded/src/components/AzureLogoIcon.tsx', hash: '1157520540581726064' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/AzureServiceEndpointIcon.tsx', - hash: '10791926301689612077', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/BingLogoIcon.tsx', hash: '11095005553524243037' }, - { file: 'packages/react-icons-mdl2-branded/src/components/BookingsLogoIcon.tsx', hash: '16237838276555695215' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/BusinessCenterLogoIcon.tsx', - hash: '1992258361865159624', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/CSharpIcon.tsx', hash: '1218562371043262076' }, - { file: 'packages/react-icons-mdl2-branded/src/components/CSharpLanguageIcon.tsx', hash: '4486900751399342960' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogo16Icon.tsx', - hash: '1306772457103002006', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogo32Icon.tsx', - hash: '13082486700176205468', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoFill16Icon.tsx', - hash: '8096526662570019166', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoFill32Icon.tsx', - hash: '4902069909469199769', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverse16Icon.tsx', - hash: '11289604115372825136', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverse32Icon.tsx', - hash: '9762210137361100029', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ClassNotebookLogoInverseIcon.tsx', - hash: '5659327487607017490', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/ClassroomLogoIcon.tsx', hash: '2658662134413257154' }, - { file: 'packages/react-icons-mdl2-branded/src/components/CloudAddIcon.tsx', hash: '8823984491201494189' }, - { file: 'packages/react-icons-mdl2-branded/src/components/CloudDownloadIcon.tsx', hash: '11447080274954114683' }, - { file: 'packages/react-icons-mdl2-branded/src/components/CloudEditIcon.tsx', hash: '15998901405605389656' }, - { file: 'packages/react-icons-mdl2-branded/src/components/CloudIcon.tsx', hash: '12803745667366798375' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/CloudImportExportIcon.tsx', - hash: '11520403045238624252', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/CloudLinkIcon.tsx', hash: '4528047515277517448' }, - { file: 'packages/react-icons-mdl2-branded/src/components/CloudUploadIcon.tsx', hash: '12111269655658299111' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoBeckonInnerIcon.tsx', - hash: '11204650693827031651', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoBeckonOuterIcon.tsx', - hash: '1506803459583441120', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoInnerIcon.tsx', - hash: '4993027430341599346', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoOuterIcon.tsx', - hash: '6570916997666699040', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoReadyInnerIcon.tsx', - hash: '5007601663442040819', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/CortanaLogoReadyOuterIcon.tsx', - hash: '14586333191546845230', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/D365CoreHRIcon.tsx', hash: '11675479994053164507' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/D365CustomerInsightsIcon.tsx', - hash: '7696962140726350337', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/D365ProjectOperationsIcon.tsx', - hash: '12689837804929752593', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/D365TalentInsightIcon.tsx', - hash: '8722510368816735518', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/D365TalentLearnIcon.tsx', hash: '9505091097402717202' }, - { file: 'packages/react-icons-mdl2-branded/src/components/DefenderTVMIcon.tsx', hash: '4870644410769153894' }, - { file: 'packages/react-icons-mdl2-branded/src/components/DelveAnalyticsIcon.tsx', hash: '5106396823492780885' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/DelveAnalyticsLogoIcon.tsx', - hash: '17437764083205864353', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/DelveLogoFillIcon.tsx', hash: '4378901451898008002' }, - { file: 'packages/react-icons-mdl2-branded/src/components/DelveLogoIcon.tsx', hash: '11889962662708226215' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/DelveLogoInverseIcon.tsx', - hash: '5563017822461835114', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/DocsLogoInverseIcon.tsx', - hash: '17612230936000509677', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/DynamicSMBLogoIcon.tsx', hash: '8650766395468311932' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/Dynamics365LogoIcon.tsx', - hash: '11964817414736042899', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/EaseOfAccessIcon.tsx', hash: '6782831925933246445' }, - { file: 'packages/react-icons-mdl2-branded/src/components/EdgeOldLogoIcon.tsx', hash: '12981348315562520653' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ExcelDocumentIcon.tsx', hash: '1953182811326908426' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ExcelLogo16Icon.tsx', hash: '15451858074289665199' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ExcelLogoIcon.tsx', hash: '4503561444784775358' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ExcelLogoInverse16Icon.tsx', - hash: '10418691375627201464', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ExcelLogoInverseIcon.tsx', - hash: '7408811467511219483', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/ExchangeLogoIcon.tsx', hash: '1190109571660363185' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ExchangeLogoInverseIcon.tsx', - hash: '10929102413050619142', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/FSharpIcon.tsx', hash: '9700048294343458887' }, - { file: 'packages/react-icons-mdl2-branded/src/components/FSharpLanguageIcon.tsx', hash: '12352319661851991875' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricAssetLibraryIcon.tsx', - hash: '6355542684163004314', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricDataConnectionLibraryIcon.tsx', - hash: '5654902665584785444', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricDocLibraryIcon.tsx', - hash: '7635512283992981007', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderConfirmIcon.tsx', - hash: '2211349472694303988', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderFillIcon.tsx', hash: '964294498720132834' }, - { file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderIcon.tsx', hash: '10695342211099874865' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderLinkIcon.tsx', - hash: '10429063494726626085', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderSearchIcon.tsx', - hash: '6667557297700479924', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricFolderUploadIcon.tsx', - hash: '1910850107847332198', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricFormLibraryIcon.tsx', - hash: '393856321422346232', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricFormLibraryMirroredIcon.tsx', - hash: '2107238495815253044', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricMovetoFolderIcon.tsx', - hash: '15441331751229855364', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricNetworkFolderIcon.tsx', - hash: '4937769319823027311', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/FabricNewFolderIcon.tsx', hash: '5011754760717216363' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricOpenFolderHorizontalIcon.tsx', - hash: '16101556240934332161', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricPictureLibraryIcon.tsx', - hash: '7702059312920065229', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricPublicFolderIcon.tsx', - hash: '1406354717120035387', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricReportLibraryIcon.tsx', - hash: '15366135833518195967', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricReportLibraryMirroredIcon.tsx', - hash: '587360560589104239', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricSyncFolderIcon.tsx', - hash: '11849917451986376708', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricTextHighlightCompositeIcon.tsx', - hash: '8764540473589052096', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricTextHighlightIcon.tsx', - hash: '16283610349878347893', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricUnsyncFolderIcon.tsx', - hash: '15422480604060536911', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FabricUserFolderIcon.tsx', - hash: '1192153107196064422', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/FileTypeSolutionIcon.tsx', - hash: '3662559790348026514', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/FluidLogoIcon.tsx', hash: '17370571241108674595' }, - { file: 'packages/react-icons-mdl2-branded/src/components/GallatinLogoIcon.tsx', hash: '395239581866816777' }, - { file: 'packages/react-icons-mdl2-branded/src/components/KaizalaLogoIcon.tsx', hash: '12996616918427120232' }, - { file: 'packages/react-icons-mdl2-branded/src/components/LinkedInLogoIcon.tsx', hash: '12410113133867699448' }, - { file: 'packages/react-icons-mdl2-branded/src/components/LyncLogoIcon.tsx', hash: '12427794773746552395' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/M365InvoicingLogoIcon.tsx', - hash: '6432220689512606158', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/MSNLogoIcon.tsx', hash: '997872328623258600' }, - { file: 'packages/react-icons-mdl2-branded/src/components/MSNVideosIcon.tsx', hash: '3837439073069506492' }, - { file: 'packages/react-icons-mdl2-branded/src/components/MSNVideosSolidIcon.tsx', hash: '6558132186060318074' }, - { file: 'packages/react-icons-mdl2-branded/src/components/MTMLogoIcon.tsx', hash: '1617837189040859513' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftFlowLogoIcon.tsx', - hash: '12738157357695453070', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftStaffhubLogoIcon.tsx', - hash: '11635328036602536226', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoBlueIcon.tsx', - hash: '13131018300687774701', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoGreenIcon.tsx', - hash: '7995428099799207563', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/MicrosoftTranslatorLogoIcon.tsx', - hash: '17740888294142646264', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/MixerLogoIcon.tsx', hash: '2066196399332209055' }, - { file: 'packages/react-icons-mdl2-branded/src/components/NUIFaceIcon.tsx', hash: '15740059719288959586' }, - { file: 'packages/react-icons-mdl2-branded/src/components/NugetLogoIcon.tsx', hash: '7248304310428830654' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeAddinsLogoIcon.tsx', - hash: '6014758584722489650', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeAssistantLogoIcon.tsx', - hash: '15148982425841752965', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogo16Icon.tsx', - hash: '11563564485285736203', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogo24Icon.tsx', - hash: '5199176739895186676', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoIcon.tsx', - hash: '14251883998842401693', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverse16Icon.tsx', - hash: '16828025945656129995', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverse24Icon.tsx', - hash: '8691064696395649094', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeFormsLogoInverseIcon.tsx', - hash: '13561091795038698825', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/OfficeLogoIcon.tsx', hash: '18326076488817609104' }, - { file: 'packages/react-icons-mdl2-branded/src/components/OfficeStoreLogoIcon.tsx', hash: '7632809471286021588' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoFillIcon.tsx', - hash: '12326348413282257076', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoIcon.tsx', - hash: '18042148677451131857', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfficeVideoLogoInverseIcon.tsx', - hash: '9111845006778088774', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfflineOneDriveParachuteDisabledIcon.tsx', - hash: '4569305382823957773', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OfflineOneDriveParachuteIcon.tsx', - hash: '11708134621038314260', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/OneDriveAddIcon.tsx', hash: '1339929739213542352' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OneDriveFileVaultIcon.tsx', - hash: '7691382481774395461', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OneDriveFolder16Icon.tsx', - hash: '15118961307125957626', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/OneDriveLogoIcon.tsx', hash: '15202151660658133990' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OneNoteEduLogoInverseIcon.tsx', - hash: '5073802520265164743', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/OneNoteLogo16Icon.tsx', hash: '8126472621555093392' }, - { file: 'packages/react-icons-mdl2-branded/src/components/OneNoteLogoIcon.tsx', hash: '10168387188200397957' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OneNoteLogoInverse16Icon.tsx', - hash: '4050397123839257559', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OneNoteLogoInverseIcon.tsx', - hash: '15289706149754656126', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/OutlookLogo16Icon.tsx', hash: '7133650664491934421' }, - { file: 'packages/react-icons-mdl2-branded/src/components/OutlookLogoIcon.tsx', hash: '11060465217645778207' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OutlookLogoInverse16Icon.tsx', - hash: '17275945938623363109', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OutlookLogoInverseIcon.tsx', - hash: '14540781013559732269', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/OutlookSpacesBucketIcon.tsx', - hash: '12512134648162524854', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/PlannerLogoIcon.tsx', hash: '13881355230438925573' }, - { file: 'packages/react-icons-mdl2-branded/src/components/PowerApps2LogoIcon.tsx', hash: '9147199073187918517' }, - { file: 'packages/react-icons-mdl2-branded/src/components/PowerAppsIcon.tsx', hash: '15945765988151351445' }, - { file: 'packages/react-icons-mdl2-branded/src/components/PowerAppsLogoIcon.tsx', hash: '4108964653569237085' }, - { file: 'packages/react-icons-mdl2-branded/src/components/PowerBILogo16Icon.tsx', hash: '1705883498391270004' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/PowerBILogoBackplate16Icon.tsx', - hash: '16863750704521208261', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/PowerBILogoIcon.tsx', hash: '11744984325483917702' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/PowerPointDocumentIcon.tsx', - hash: '13413889276743138496', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/PowerPointLogo16Icon.tsx', - hash: '15159308528546989637', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/PowerPointLogoIcon.tsx', hash: '1161549358748291781' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/PowerPointLogoInverse16Icon.tsx', - hash: '14572773921008382391', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/PowerPointLogoInverseIcon.tsx', - hash: '5515315351698523797', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/PowerShell2Icon.tsx', hash: '9607241218249762348' }, - { file: 'packages/react-icons-mdl2-branded/src/components/PowerShellIcon.tsx', hash: '1215366400765232443' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/Project2019DocumentIcon.tsx', - hash: '2947526506141893256', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ProjectCollectionIcon.tsx', - hash: '9137480349369194321', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/ProjectDocumentIcon.tsx', hash: '4824514570525933892' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ProjectLogo16Icon.tsx', hash: '17897242666248559019' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ProjectLogo32Icon.tsx', hash: '17335364980672858735' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ProjectLogoInverseIcon.tsx', - hash: '9639893396035436074', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ProtectionCenterLogo32Icon.tsx', - hash: '5415769882865013432', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/PublisherLogo16Icon.tsx', - hash: '11547496209099992938', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/PublisherLogoIcon.tsx', hash: '12224610314668748743' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/PublisherLogoInverse16Icon.tsx', - hash: '10768589395164248513', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/RecycleBinIcon.tsx', hash: '4431919377309825291' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SchoolDataSyncLogoIcon.tsx', - hash: '7329348036185854951', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SharepointAppIcon16Icon.tsx', - hash: '11913691047292805113', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/SharepointLogoIcon.tsx', hash: '2973253366437178853' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SharepointLogoInverseIcon.tsx', - hash: '547323045296380184', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/ShieldAlertIcon.tsx', hash: '16953362426179349363' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ShieldIcon.tsx', hash: '12222566642242764707' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ShieldSolidIcon.tsx', hash: '5674612406598905196' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleArrowIcon.tsx', - hash: '16212602154023944478', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleCheckIcon.tsx', - hash: '16698736842509718563', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleClockIcon.tsx', - hash: '11187044799816934889', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleMinusIcon.tsx', - hash: '13491166295728586000', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeCircleSlashIcon.tsx', - hash: '12478069904088362976', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogo16Icon.tsx', - hash: '11717893424251261207', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoFill16Icon.tsx', - hash: '8575456796504640227', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoFillIcon.tsx', - hash: '3211676103062894506', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SkypeForBusinessLogoIcon.tsx', - hash: '3328870468482787133', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/SkypeLogo16Icon.tsx', hash: '4216393599475392793' }, - { file: 'packages/react-icons-mdl2-branded/src/components/SkypeLogoIcon.tsx', hash: '10970989583765084564' }, - { file: 'packages/react-icons-mdl2-branded/src/components/SkypeMessageIcon.tsx', hash: '3891774845871204894' }, - { file: 'packages/react-icons-mdl2-branded/src/components/SkypeSlashIcon.tsx', hash: '15728439011720121890' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/SocialListeningLogoIcon.tsx', - hash: '9734123862450723424', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogo16Icon.tsx', - hash: '7244885805437496064', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogo32Icon.tsx', - hash: '12096858272751002311', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoFill16Icon.tsx', - hash: '387841461450406720', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoFill32Icon.tsx', - hash: '7990858656352105381', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoInverted16Icon.tsx', - hash: '1699636953066137992', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/StaffNotebookLogoInverted32Icon.tsx', - hash: '8411199570320499133', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/StickyNotesOutlineAppIconIcon.tsx', - hash: '7508617851836741600', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/StickyNotesSolidAppIconIcon.tsx', - hash: '4519535920540625805', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/StoreLogo16Icon.tsx', hash: '3730154522145728562' }, - { file: 'packages/react-icons-mdl2-branded/src/components/StoreLogoMed20Icon.tsx', hash: '16218634217032109378' }, - { file: 'packages/react-icons-mdl2-branded/src/components/StreamLogoIcon.tsx', hash: '5114054364460018332' }, - { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogo16Icon.tsx', hash: '13142288730916211955' }, - { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogo32Icon.tsx', hash: '7015704915605563198' }, - { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogoFill16Icon.tsx', hash: '5440418177171701369' }, - { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogoFill32Icon.tsx', hash: '9383255395977678826' }, - { file: 'packages/react-icons-mdl2-branded/src/components/SwayLogoInverseIcon.tsx', hash: '1651266669379649298' }, - { file: 'packages/react-icons-mdl2-branded/src/components/TFVCLogoIcon.tsx', hash: '4522981229589531678' }, - { file: 'packages/react-icons-mdl2-branded/src/components/TaskLogoIcon.tsx', hash: '6937125034367876098' }, - { file: 'packages/react-icons-mdl2-branded/src/components/TeamsLogo16Icon.tsx', hash: '4518194404707385484' }, - { file: 'packages/react-icons-mdl2-branded/src/components/TeamsLogoIcon.tsx', hash: '2058189545298767077' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/TeamsLogoInverseIcon.tsx', - hash: '6880701599345693655', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/ToDoLogoBottomIcon.tsx', hash: '2586784011837635459' }, - { file: 'packages/react-icons-mdl2-branded/src/components/ToDoLogoInverseIcon.tsx', hash: '5713704551578775823' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/ToDoLogoOutlineIcon.tsx', - hash: '17289038086286653881', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/ToDoLogoTopIcon.tsx', hash: '5119451226450060347' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/TypeScriptLanguageIcon.tsx', - hash: '4965199824729399882', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/VSTSAltLogo1Icon.tsx', hash: '16122007415797523884' }, - { file: 'packages/react-icons-mdl2-branded/src/components/VSTSAltLogo2Icon.tsx', hash: '14342687992320244536' }, - { file: 'packages/react-icons-mdl2-branded/src/components/VSTSLogoIcon.tsx', hash: '5067263600814696839' }, - { file: 'packages/react-icons-mdl2-branded/src/components/VisioDiagramIcon.tsx', hash: '12955868772798195807' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/VisioDiagramSyncIcon.tsx', - hash: '2684076828907175078', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/VisioDocumentIcon.tsx', hash: '11451545399228857597' }, - { file: 'packages/react-icons-mdl2-branded/src/components/VisioLogo16Icon.tsx', hash: '15699950363884732544' }, - { file: 'packages/react-icons-mdl2-branded/src/components/VisioLogoIcon.tsx', hash: '11277632155737288079' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/VisioLogoInverse16Icon.tsx', - hash: '6579132367741458351', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/VisioLogoInverseIcon.tsx', - hash: '6141482260623012289', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/VisualBasicLanguageIcon.tsx', - hash: '17351361460595550751', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/VisualStudioIDELogo32Icon.tsx', - hash: '3297659863569634452', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/VisualStudioLogoIcon.tsx', - hash: '3921352685862917392', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/VivaEngageIcon.tsx', hash: '15738913926237603580' }, - { file: 'packages/react-icons-mdl2-branded/src/components/WaffleOffice365Icon.tsx', hash: '2252766351274000701' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/WebAppBuilderFragmentCreateIcon.tsx', - hash: '1463616614984543493', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/WebAppBuilderFragmentIcon.tsx', - hash: '14848667160233281856', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/WebAppBuilderModuleIcon.tsx', - hash: '9260469117886312397', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/WebAppBuilderSlotIcon.tsx', hash: '72036574105245107' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/WhiteBoardApp16Icon.tsx', - hash: '15901343271537059202', - }, - { - file: 'packages/react-icons-mdl2-branded/src/components/WhiteBoardApp32Icon.tsx', - hash: '13969726970012006484', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/WindowsLogoIcon.tsx', hash: '3971496456219229417' }, - { file: 'packages/react-icons-mdl2-branded/src/components/WordDocumentIcon.tsx', hash: '9906863102417860978' }, - { file: 'packages/react-icons-mdl2-branded/src/components/WordLogo16Icon.tsx', hash: '13294245168007756326' }, - { file: 'packages/react-icons-mdl2-branded/src/components/WordLogoIcon.tsx', hash: '10758064000164288561' }, - { - file: 'packages/react-icons-mdl2-branded/src/components/WordLogoInverse16Icon.tsx', - hash: '2761116872095713698', - }, - { file: 'packages/react-icons-mdl2-branded/src/components/WordLogoInverseIcon.tsx', hash: '3972220353064318114' }, - { file: 'packages/react-icons-mdl2-branded/src/components/XboxLogoIcon.tsx', hash: '14069322545871919082' }, - { file: 'packages/react-icons-mdl2-branded/src/components/XboxOneConsoleIcon.tsx', hash: '16771077986371339927' }, - { file: 'packages/react-icons-mdl2-branded/src/components/YammerLogoIcon.tsx', hash: '15020404209578345557' }, - { file: 'packages/react-icons-mdl2-branded/src/index.ts', hash: '2586773828929508699' }, - { file: 'packages/react-icons-mdl2-branded/src/version.ts', hash: '1378911257610677358' }, - { file: 'packages/react-icons-mdl2-branded/tsconfig.json', hash: '16918675067402812126' }, - ], - '@fluentui/react-file-type-icons': [ - { file: 'packages/react-file-type-icons/.eslintrc.json', hash: '777445592424795063' }, - { file: 'packages/react-file-type-icons/.npmignore', hash: '47056201363133096' }, - { file: 'packages/react-file-type-icons/CHANGELOG.json', hash: '1048374655728006466' }, - { file: 'packages/react-file-type-icons/CHANGELOG.md', hash: '11341487553535181736' }, - { file: 'packages/react-file-type-icons/LICENSE', hash: '6940075935154849214' }, - { file: 'packages/react-file-type-icons/README.md', hash: '4637521409527549815' }, - { file: 'packages/react-file-type-icons/jest.config.js', hash: '3240558433730290797' }, - { file: 'packages/react-file-type-icons/just.config.ts', hash: '10393370776333958822' }, - { - file: 'packages/react-file-type-icons/package.json', - hash: '2459179631925974315', - deps: [ - '@fluentui/set-version', - '@fluentui/style-utilities', - 'npm:tslib', - '@fluentui/eslint-plugin', - '@fluentui/scripts-jest', - '@fluentui/scripts-tasks', - 'npm:@types/react', - 'npm:react', - ], - }, - { file: 'packages/react-file-type-icons/project.json', hash: '2426325572864020670' }, - { file: 'packages/react-file-type-icons/src/FileIconType.test.ts', hash: '8074533597091093516' }, - { file: 'packages/react-file-type-icons/src/FileIconType.ts', hash: '8669219161781017165' }, - { file: 'packages/react-file-type-icons/src/FileTypeIconMap.ts', hash: '1622694735442508136' }, - { file: 'packages/react-file-type-icons/src/getFileTypeIconAsHTMLString.test.ts', hash: '18012845855654093679' }, - { file: 'packages/react-file-type-icons/src/getFileTypeIconAsHTMLString.ts', hash: '17339860703958407032' }, - { file: 'packages/react-file-type-icons/src/getFileTypeIconAsUrl.test.ts', hash: '18070267997367805681' }, - { file: 'packages/react-file-type-icons/src/getFileTypeIconAsUrl.ts', hash: '12536579509046942436' }, - { file: 'packages/react-file-type-icons/src/getFileTypeIconProps.test.ts', hash: '2641647765184063437' }, - { file: 'packages/react-file-type-icons/src/getFileTypeIconProps.ts', hash: '6769978776431673776' }, - { file: 'packages/react-file-type-icons/src/index.ts', hash: '6043353553269314684' }, - { file: 'packages/react-file-type-icons/src/initializeFileTypeIcons.tsx', hash: '5377391151793324776' }, - { file: 'packages/react-file-type-icons/src/version.ts', hash: '17270333248350866991' }, - { file: 'packages/react-file-type-icons/tsconfig.json', hash: '3737244395638680036' }, - ], - '@fluentui/scripts-tasks': [ - { file: 'scripts/tasks/.eslintrc.json', hash: '6682885118106241118' }, - { file: 'scripts/tasks/jest.config.js', hash: '4708879655841723493' }, - { - file: 'scripts/tasks/package.json', - hash: '1141372761188294099', - deps: ['@fluentui/scripts-monorepo', '@fluentui/scripts-utils', '@fluentui/scripts-prettier', 'npm:flamegrill'], - }, - { file: 'scripts/tasks/project.json', hash: '965696958534677795' }, - { file: 'scripts/tasks/src/api-extractor.ts', hash: '9347093659713672189' }, - { file: 'scripts/tasks/src/argv.spec.ts', hash: '10864686402712112244' }, - { file: 'scripts/tasks/src/argv.ts', hash: '9089616204911607118' }, - { file: 'scripts/tasks/src/babel.ts', hash: '15123611823011343405' }, - { file: 'scripts/tasks/src/clean.ts', hash: '15254131685435404356' }, - { file: 'scripts/tasks/src/copy.ts', hash: '7659902067209473182' }, - { file: 'scripts/tasks/src/eslint.ts', hash: '8568875961692972591' }, - { file: 'scripts/tasks/src/generate-api.ts', hash: '9894536861852274383' }, - { file: 'scripts/tasks/src/index.ts', hash: '8224622240191636854' }, - { file: 'scripts/tasks/src/jest.ts', hash: '10455500877410106889' }, - { file: 'scripts/tasks/src/lint-imports.ts', hash: '12249387039371508759' }, - { file: 'scripts/tasks/src/perf-task/env.ts', hash: '12915350541218118666' }, - { file: 'scripts/tasks/src/perf-task/index.ts', hash: '5355819150311401782' }, - { file: 'scripts/tasks/src/perf-task/perf-test.ts', hash: '11772931894476179226' }, - { file: 'scripts/tasks/src/perf-task/settings.ts', hash: '277930756461011304' }, - { file: 'scripts/tasks/src/postprocess-amd.ts', hash: '16748273849080544377' }, - { file: 'scripts/tasks/src/postprocess.ts', hash: '8523540960661454852' }, - { file: 'scripts/tasks/src/presets.ts', hash: '1602287635639050721' }, - { file: 'scripts/tasks/src/prettier.ts', hash: '7736749199691527952' }, - { file: 'scripts/tasks/src/sass.ts', hash: '1665001166635814228' }, - { file: 'scripts/tasks/src/storybook.ts', hash: '6223916877426257565' }, - { file: 'scripts/tasks/src/swc.ts', hash: '9077529349977385172' }, - { file: 'scripts/tasks/src/ts.ts', hash: '6299748037607840284' }, - { file: 'scripts/tasks/src/type-check.ts', hash: '257376398191037736' }, - { file: 'scripts/tasks/src/utils.spec.ts', hash: '5122114332452916234' }, - { file: 'scripts/tasks/src/utils.ts', hash: '12065994095118738331' }, - { file: 'scripts/tasks/src/verify-packaging.ts', hash: '11797726481686014501' }, - { file: 'scripts/tasks/src/webpack.ts', hash: '13272387079461955495' }, - { file: 'scripts/tasks/tsconfig.json', hash: '2808213717553039801' }, - { file: 'scripts/tasks/tsconfig.lib.json', hash: '12941910922159424720' }, - { file: 'scripts/tasks/tsconfig.spec.json', hash: '16242416785763058919' }, - ], - '@fluentui/state': [ - { file: 'packages/fluentui/state/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/state/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/state/README.md', hash: '8309543667100109097' }, - { file: 'packages/fluentui/state/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/state/gulpfile.ts', hash: '11161944235327936712' }, - { - file: 'packages/fluentui/state/package.json', - hash: '5978700995662223330', - deps: [ - 'npm:@babel/runtime', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - 'npm:lerna-alias', - ], - }, - { file: 'packages/fluentui/state/project.json', hash: '13103481987735488037' }, - { file: 'packages/fluentui/state/src/createManager.ts', hash: '7270086196410713232' }, - { file: 'packages/fluentui/state/src/index.ts', hash: '1091673469609146900' }, - { file: 'packages/fluentui/state/src/managers/carouselManager.ts', hash: '16464933274868458393' }, - { file: 'packages/fluentui/state/src/managers/checkboxManager.ts', hash: '4406845810056310598' }, - { file: 'packages/fluentui/state/src/managers/dialogManager.ts', hash: '3282345229108806027' }, - { file: 'packages/fluentui/state/src/managers/sliderManager.ts', hash: '8249114539083994643' }, - { file: 'packages/fluentui/state/src/types.ts', hash: '15073017630940548162' }, - { file: 'packages/fluentui/state/tsconfig.json', hash: '12214264623402812273' }, - ], - '@fluentui/react-component-nesting-registry': [ - { file: 'packages/fluentui/react-component-nesting-registry/.eslintrc.json', hash: '5658833841867159098' }, - { file: 'packages/fluentui/react-component-nesting-registry/.gulp.js', hash: '18274885140889321646' }, - { file: 'packages/fluentui/react-component-nesting-registry/babel.config.js', hash: '3569817794842814983' }, - { file: 'packages/fluentui/react-component-nesting-registry/gulpfile.ts', hash: '11161944235327936712' }, - { file: 'packages/fluentui/react-component-nesting-registry/jest.config.js', hash: '13298147580513423019' }, - { - file: 'packages/fluentui/react-component-nesting-registry/package.json', - hash: '18111405337855078839', - deps: [ - 'npm:@babel/runtime', - 'npm:prop-types', - '@fluentui/eslint-plugin', - '@fluentui/scripts-babel', - '@fluentui/scripts-gulp', - '@fluentui/scripts-jest', - 'npm:lerna-alias', - 'npm:react', - 'npm:react-dom', - ], - }, - { file: 'packages/fluentui/react-component-nesting-registry/project.json', hash: '13374112547541503236' }, - { file: 'packages/fluentui/react-component-nesting-registry/src/NestingAuto.tsx', hash: '7526141950771152923' }, - { file: 'packages/fluentui/react-component-nesting-registry/src/NestingChild.tsx', hash: '4246445019697112634' }, - { - file: 'packages/fluentui/react-component-nesting-registry/src/NestingContext.ts', - hash: '16669676149117498549', - }, - { file: 'packages/fluentui/react-component-nesting-registry/src/NestingRoot.tsx', hash: '9446161289264562444' }, - { file: 'packages/fluentui/react-component-nesting-registry/src/hooks/types.ts', hash: '10645677914917889256' }, - { - file: 'packages/fluentui/react-component-nesting-registry/src/hooks/useNestingAuto.ts', - hash: '15907268444011966955', - }, - { - file: 'packages/fluentui/react-component-nesting-registry/src/hooks/useNestingChild.ts', - hash: '3316617878321338048', - }, - { - file: 'packages/fluentui/react-component-nesting-registry/src/hooks/useNestingRoot.ts', - hash: '6707493236734176145', - }, - { file: 'packages/fluentui/react-component-nesting-registry/src/index.ts', hash: '12115957419553385299' }, - { file: 'packages/fluentui/react-component-nesting-registry/src/types.ts', hash: '7610298870192453020' }, - { - file: 'packages/fluentui/react-component-nesting-registry/src/utils/RefStack.ts', - hash: '15272540730817118615', - }, - { - file: 'packages/fluentui/react-component-nesting-registry/test/NestingAuto-test.tsx', - hash: '3355074948005691137', - }, - { file: 'packages/fluentui/react-component-nesting-registry/tsconfig.json', hash: '12214264623402812273' }, - ], - }, - layout: { appsDir: 'apps', libsDir: 'packages' }, - affected: [], - focus: null, - groupByFolder: false, - exclude: [], -}; -window.taskGraphResponse = { - taskGraphs: { - '@fluentui/react-storybook-addon-export-to-sandbox:build': { - roots: ['@fluentui/babel-preset-storybook-full-source:build'], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:build': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:build', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - '@fluentui/babel-preset-storybook-full-source:build': { - id: '@fluentui/babel-preset-storybook-full-source:build', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-storybook-addon-export-to-sandbox:build': [ - '@fluentui/babel-preset-storybook-full-source:build', - ], - '@fluentui/babel-preset-storybook-full-source:build': [], - }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:clean': { - roots: ['@fluentui/react-storybook-addon-export-to-sandbox:clean'], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:clean': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:clean', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'clean' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:clean': [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:code-style': { - roots: ['@fluentui/react-storybook-addon-export-to-sandbox:code-style'], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:code-style': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:code-style', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'code-style' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:code-style': [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:just': { - roots: ['@fluentui/react-storybook-addon-export-to-sandbox:just'], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:just': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:just', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'just' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:just': [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:lint': { - roots: ['@fluentui/react-storybook-addon-export-to-sandbox:lint'], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:lint': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:lint', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'lint' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:lint': [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:test': { - roots: ['@fluentui/react-storybook-addon-export-to-sandbox:test'], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:test': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:test', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'test' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:test': [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:type-check': { - roots: ['@fluentui/react-storybook-addon-export-to-sandbox:type-check'], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:type-check': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:type-check', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'type-check' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:type-check': [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:generate-api': { - roots: ['@fluentui/react-storybook-addon-export-to-sandbox:generate-api'], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:generate-api': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:generate-api', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon-export-to-sandbox:generate-api': [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: {}, - }, - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { - id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ - '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/babel-preset-storybook-full-source:build': { - roots: ['@fluentui/babel-preset-storybook-full-source:build'], - tasks: { - '@fluentui/babel-preset-storybook-full-source:build': { - id: '@fluentui/babel-preset-storybook-full-source:build', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-storybook-full-source:build': [] }, - }, - '@fluentui/babel-preset-storybook-full-source:clean': { - roots: ['@fluentui/babel-preset-storybook-full-source:clean'], - tasks: { - '@fluentui/babel-preset-storybook-full-source:clean': { - id: '@fluentui/babel-preset-storybook-full-source:clean', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'clean' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-storybook-full-source:clean': [] }, - }, - '@fluentui/babel-preset-storybook-full-source:code-style': { - roots: ['@fluentui/babel-preset-storybook-full-source:code-style'], - tasks: { - '@fluentui/babel-preset-storybook-full-source:code-style': { - id: '@fluentui/babel-preset-storybook-full-source:code-style', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'code-style' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-storybook-full-source:code-style': [] }, - }, - '@fluentui/babel-preset-storybook-full-source:just': { - roots: ['@fluentui/babel-preset-storybook-full-source:just'], - tasks: { - '@fluentui/babel-preset-storybook-full-source:just': { - id: '@fluentui/babel-preset-storybook-full-source:just', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'just' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-storybook-full-source:just': [] }, - }, - '@fluentui/babel-preset-storybook-full-source:lint': { - roots: ['@fluentui/babel-preset-storybook-full-source:lint'], - tasks: { - '@fluentui/babel-preset-storybook-full-source:lint': { - id: '@fluentui/babel-preset-storybook-full-source:lint', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'lint' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-storybook-full-source:lint': [] }, - }, - '@fluentui/babel-preset-storybook-full-source:test': { - roots: ['@fluentui/babel-preset-storybook-full-source:test'], - tasks: { - '@fluentui/babel-preset-storybook-full-source:test': { - id: '@fluentui/babel-preset-storybook-full-source:test', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'test' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-storybook-full-source:test': [] }, - }, - '@fluentui/babel-preset-storybook-full-source:type-check': { - roots: ['@fluentui/babel-preset-storybook-full-source:type-check'], - tasks: { - '@fluentui/babel-preset-storybook-full-source:type-check': { - id: '@fluentui/babel-preset-storybook-full-source:type-check', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'type-check' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-storybook-full-source:type-check': [] }, - }, - '@fluentui/babel-preset-storybook-full-source:generate-api': { - roots: ['@fluentui/babel-preset-storybook-full-source:generate-api'], - tasks: { - '@fluentui/babel-preset-storybook-full-source:generate-api': { - id: '@fluentui/babel-preset-storybook-full-source:generate-api', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'generate-api' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-storybook-full-source:generate-api': [] }, - }, - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { - id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-timepicker-compat-preview:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-timepicker-compat-preview:build': { - id: '@fluentui/react-timepicker-compat-preview:build', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-timepicker-compat-preview:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-combobox:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-timepicker-compat-preview:bundle-size': { - roots: ['@fluentui/react-timepicker-compat-preview:bundle-size'], - tasks: { - '@fluentui/react-timepicker-compat-preview:bundle-size': { - id: '@fluentui/react-timepicker-compat-preview:bundle-size', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:bundle-size': [] }, - }, - '@fluentui/react-timepicker-compat-preview:clean': { - roots: ['@fluentui/react-timepicker-compat-preview:clean'], - tasks: { - '@fluentui/react-timepicker-compat-preview:clean': { - id: '@fluentui/react-timepicker-compat-preview:clean', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:clean': [] }, - }, - '@fluentui/react-timepicker-compat-preview:e2e': { - roots: ['@fluentui/react-timepicker-compat-preview:e2e'], - tasks: { - '@fluentui/react-timepicker-compat-preview:e2e': { - id: '@fluentui/react-timepicker-compat-preview:e2e', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'e2e' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:e2e': [] }, - }, - '@fluentui/react-timepicker-compat-preview:e2e:local': { - roots: ['@fluentui/react-timepicker-compat-preview:e2e:local'], - tasks: { - '@fluentui/react-timepicker-compat-preview:e2e:local': { - id: '@fluentui/react-timepicker-compat-preview:e2e:local', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:e2e:local': [] }, - }, - '@fluentui/react-timepicker-compat-preview:generate-api': { - roots: ['@fluentui/react-timepicker-compat-preview:generate-api'], - tasks: { - '@fluentui/react-timepicker-compat-preview:generate-api': { - id: '@fluentui/react-timepicker-compat-preview:generate-api', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:generate-api': [] }, - }, - '@fluentui/react-timepicker-compat-preview:lint': { - roots: ['@fluentui/react-timepicker-compat-preview:lint'], - tasks: { - '@fluentui/react-timepicker-compat-preview:lint': { - id: '@fluentui/react-timepicker-compat-preview:lint', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:lint': [] }, - }, - '@fluentui/react-timepicker-compat-preview:start': { - roots: ['@fluentui/react-timepicker-compat-preview:start'], - tasks: { - '@fluentui/react-timepicker-compat-preview:start': { - id: '@fluentui/react-timepicker-compat-preview:start', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:start': [] }, - }, - '@fluentui/react-timepicker-compat-preview:storybook': { - roots: ['@fluentui/react-timepicker-compat-preview:storybook'], - tasks: { - '@fluentui/react-timepicker-compat-preview:storybook': { - id: '@fluentui/react-timepicker-compat-preview:storybook', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:storybook': [] }, - }, - '@fluentui/react-timepicker-compat-preview:test': { - roots: ['@fluentui/react-timepicker-compat-preview:test'], - tasks: { - '@fluentui/react-timepicker-compat-preview:test': { - id: '@fluentui/react-timepicker-compat-preview:test', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:test': [] }, - }, - '@fluentui/react-timepicker-compat-preview:test-ssr': { - roots: ['@fluentui/react-timepicker-compat-preview:test-ssr'], - tasks: { - '@fluentui/react-timepicker-compat-preview:test-ssr': { - id: '@fluentui/react-timepicker-compat-preview:test-ssr', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:test-ssr': [] }, - }, - '@fluentui/react-timepicker-compat-preview:type-check': { - roots: ['@fluentui/react-timepicker-compat-preview:type-check'], - tasks: { - '@fluentui/react-timepicker-compat-preview:type-check': { - id: '@fluentui/react-timepicker-compat-preview:type-check', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat-preview:type-check': [] }, - }, - '@fluentui/react-timepicker-compat-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-timepicker-compat-preview:nx-release-publish': { - id: '@fluentui/react-timepicker-compat-preview:nx-release-publish', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-timepicker-compat-preview:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-teaching-popover-preview:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-teaching-popover-preview:build': { - id: '@fluentui/react-teaching-popover-preview:build', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-teaching-popover-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-popover:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - }, - }, - '@fluentui/react-teaching-popover-preview:clean': { - roots: ['@fluentui/react-teaching-popover-preview:clean'], - tasks: { - '@fluentui/react-teaching-popover-preview:clean': { - id: '@fluentui/react-teaching-popover-preview:clean', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-teaching-popover-preview:clean': [] }, - }, - '@fluentui/react-teaching-popover-preview:generate-api': { - roots: ['@fluentui/react-teaching-popover-preview:generate-api'], - tasks: { - '@fluentui/react-teaching-popover-preview:generate-api': { - id: '@fluentui/react-teaching-popover-preview:generate-api', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-teaching-popover-preview:generate-api': [] }, - }, - '@fluentui/react-teaching-popover-preview:lint': { - roots: ['@fluentui/react-teaching-popover-preview:lint'], - tasks: { - '@fluentui/react-teaching-popover-preview:lint': { - id: '@fluentui/react-teaching-popover-preview:lint', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-teaching-popover-preview:lint': [] }, - }, - '@fluentui/react-teaching-popover-preview:start': { - roots: ['@fluentui/react-teaching-popover-preview:start'], - tasks: { - '@fluentui/react-teaching-popover-preview:start': { - id: '@fluentui/react-teaching-popover-preview:start', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-teaching-popover-preview:start': [] }, - }, - '@fluentui/react-teaching-popover-preview:storybook': { - roots: ['@fluentui/react-teaching-popover-preview:storybook'], - tasks: { - '@fluentui/react-teaching-popover-preview:storybook': { - id: '@fluentui/react-teaching-popover-preview:storybook', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-teaching-popover-preview:storybook': [] }, - }, - '@fluentui/react-teaching-popover-preview:test': { - roots: ['@fluentui/react-teaching-popover-preview:test'], - tasks: { - '@fluentui/react-teaching-popover-preview:test': { - id: '@fluentui/react-teaching-popover-preview:test', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-teaching-popover-preview:test': [] }, - }, - '@fluentui/react-teaching-popover-preview:test-ssr': { - roots: ['@fluentui/react-teaching-popover-preview:test-ssr'], - tasks: { - '@fluentui/react-teaching-popover-preview:test-ssr': { - id: '@fluentui/react-teaching-popover-preview:test-ssr', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-teaching-popover-preview:test-ssr': [] }, - }, - '@fluentui/react-teaching-popover-preview:type-check': { - roots: ['@fluentui/react-teaching-popover-preview:type-check'], - tasks: { - '@fluentui/react-teaching-popover-preview:type-check': { - id: '@fluentui/react-teaching-popover-preview:type-check', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-teaching-popover-preview:type-check': [] }, - }, - '@fluentui/react-teaching-popover-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-teaching-popover-preview:nx-release-publish': { - id: '@fluentui/react-teaching-popover-preview:nx-release-publish', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-teaching-popover-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/babel-preset-global-context:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], - tasks: { - '@fluentui/babel-preset-global-context:build': { - id: '@fluentui/babel-preset-global-context:build', - target: { project: '@fluentui/babel-preset-global-context', target: 'build' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - '@fluentui/global-context:build': { - id: '@fluentui/global-context:build', - target: { project: '@fluentui/global-context', target: 'build' }, - projectRoot: 'packages/react-components/global-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/babel-preset-global-context:build': ['@fluentui/global-context:build'], - '@fluentui/global-context:build': ['@fluentui/react-context-selector:build', '@fluentui/react-utilities:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - }, - }, - '@fluentui/babel-preset-global-context:clean': { - roots: ['@fluentui/babel-preset-global-context:clean'], - tasks: { - '@fluentui/babel-preset-global-context:clean': { - id: '@fluentui/babel-preset-global-context:clean', - target: { project: '@fluentui/babel-preset-global-context', target: 'clean' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:clean': [] }, - }, - '@fluentui/babel-preset-global-context:code-style': { - roots: ['@fluentui/babel-preset-global-context:code-style'], - tasks: { - '@fluentui/babel-preset-global-context:code-style': { - id: '@fluentui/babel-preset-global-context:code-style', - target: { project: '@fluentui/babel-preset-global-context', target: 'code-style' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:code-style': [] }, - }, - '@fluentui/babel-preset-global-context:pree2e': { - roots: ['@fluentui/babel-preset-global-context:pree2e'], - tasks: { - '@fluentui/babel-preset-global-context:pree2e': { - id: '@fluentui/babel-preset-global-context:pree2e', - target: { project: '@fluentui/babel-preset-global-context', target: 'pree2e' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:pree2e': [] }, - }, - '@fluentui/babel-preset-global-context:e2e': { - roots: ['@fluentui/babel-preset-global-context:e2e'], - tasks: { - '@fluentui/babel-preset-global-context:e2e': { - id: '@fluentui/babel-preset-global-context:e2e', - target: { project: '@fluentui/babel-preset-global-context', target: 'e2e' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:e2e': [] }, - }, - '@fluentui/babel-preset-global-context:e2e:local': { - roots: ['@fluentui/babel-preset-global-context:e2e:local'], - tasks: { - '@fluentui/babel-preset-global-context:e2e:local': { - id: '@fluentui/babel-preset-global-context:e2e:local', - target: { project: '@fluentui/babel-preset-global-context', target: 'e2e:local' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:e2e:local': [] }, - }, - '@fluentui/babel-preset-global-context:just': { - roots: ['@fluentui/babel-preset-global-context:just'], - tasks: { - '@fluentui/babel-preset-global-context:just': { - id: '@fluentui/babel-preset-global-context:just', - target: { project: '@fluentui/babel-preset-global-context', target: 'just' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:just': [] }, - }, - '@fluentui/babel-preset-global-context:lint': { - roots: ['@fluentui/babel-preset-global-context:lint'], - tasks: { - '@fluentui/babel-preset-global-context:lint': { - id: '@fluentui/babel-preset-global-context:lint', - target: { project: '@fluentui/babel-preset-global-context', target: 'lint' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:lint': [] }, - }, - '@fluentui/babel-preset-global-context:test': { - roots: ['@fluentui/babel-preset-global-context:test'], - tasks: { - '@fluentui/babel-preset-global-context:test': { - id: '@fluentui/babel-preset-global-context:test', - target: { project: '@fluentui/babel-preset-global-context', target: 'test' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:test': [] }, - }, - '@fluentui/babel-preset-global-context:type-check': { - roots: ['@fluentui/babel-preset-global-context:type-check'], - tasks: { - '@fluentui/babel-preset-global-context:type-check': { - id: '@fluentui/babel-preset-global-context:type-check', - target: { project: '@fluentui/babel-preset-global-context', target: 'type-check' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:type-check': [] }, - }, - '@fluentui/babel-preset-global-context:generate-api': { - roots: ['@fluentui/babel-preset-global-context:generate-api'], - tasks: { - '@fluentui/babel-preset-global-context:generate-api': { - id: '@fluentui/babel-preset-global-context:generate-api', - target: { project: '@fluentui/babel-preset-global-context', target: 'generate-api' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:generate-api': [] }, - }, - '@fluentui/babel-preset-global-context:test-ssr': { - roots: ['@fluentui/babel-preset-global-context:test-ssr'], - tasks: { - '@fluentui/babel-preset-global-context:test-ssr': { - id: '@fluentui/babel-preset-global-context:test-ssr', - target: { project: '@fluentui/babel-preset-global-context', target: 'test-ssr' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/babel-preset-global-context:test-ssr': [] }, - }, - '@fluentui/babel-preset-global-context:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/babel-preset-global-context:nx-release-publish': { - id: '@fluentui/babel-preset-global-context:nx-release-publish', - target: { project: '@fluentui/babel-preset-global-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/babel-preset-global-context', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/global-context:nx-release-publish': { - id: '@fluentui/global-context:nx-release-publish', - target: { project: '@fluentui/global-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/global-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/babel-preset-global-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/global-context:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/global-context:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-portal-compat-context:build': { - roots: ['@fluentui/react-portal-compat-context:build'], - tasks: { - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:build': [] }, - }, - '@fluentui/react-portal-compat-context:clean': { - roots: ['@fluentui/react-portal-compat-context:clean'], - tasks: { - '@fluentui/react-portal-compat-context:clean': { - id: '@fluentui/react-portal-compat-context:clean', - target: { project: '@fluentui/react-portal-compat-context', target: 'clean' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:clean': [] }, - }, - '@fluentui/react-portal-compat-context:code-style': { - roots: ['@fluentui/react-portal-compat-context:code-style'], - tasks: { - '@fluentui/react-portal-compat-context:code-style': { - id: '@fluentui/react-portal-compat-context:code-style', - target: { project: '@fluentui/react-portal-compat-context', target: 'code-style' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:code-style': [] }, - }, - '@fluentui/react-portal-compat-context:just': { - roots: ['@fluentui/react-portal-compat-context:just'], - tasks: { - '@fluentui/react-portal-compat-context:just': { - id: '@fluentui/react-portal-compat-context:just', - target: { project: '@fluentui/react-portal-compat-context', target: 'just' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:just': [] }, - }, - '@fluentui/react-portal-compat-context:lint': { - roots: ['@fluentui/react-portal-compat-context:lint'], - tasks: { - '@fluentui/react-portal-compat-context:lint': { - id: '@fluentui/react-portal-compat-context:lint', - target: { project: '@fluentui/react-portal-compat-context', target: 'lint' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:lint': [] }, - }, - '@fluentui/react-portal-compat-context:test': { - roots: ['@fluentui/react-portal-compat-context:test'], - tasks: { - '@fluentui/react-portal-compat-context:test': { - id: '@fluentui/react-portal-compat-context:test', - target: { project: '@fluentui/react-portal-compat-context', target: 'test' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:test': [] }, - }, - '@fluentui/react-portal-compat-context:type-check': { - roots: ['@fluentui/react-portal-compat-context:type-check'], - tasks: { - '@fluentui/react-portal-compat-context:type-check': { - id: '@fluentui/react-portal-compat-context:type-check', - target: { project: '@fluentui/react-portal-compat-context', target: 'type-check' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:type-check': [] }, - }, - '@fluentui/react-portal-compat-context:generate-api': { - roots: ['@fluentui/react-portal-compat-context:generate-api'], - tasks: { - '@fluentui/react-portal-compat-context:generate-api': { - id: '@fluentui/react-portal-compat-context:generate-api', - target: { project: '@fluentui/react-portal-compat-context', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:generate-api': [] }, - }, - '@fluentui/react-portal-compat-context:test-ssr': { - roots: ['@fluentui/react-portal-compat-context:test-ssr'], - tasks: { - '@fluentui/react-portal-compat-context:test-ssr': { - id: '@fluentui/react-portal-compat-context:test-ssr', - target: { project: '@fluentui/react-portal-compat-context', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat-context:test-ssr': [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-swatch-picker-preview:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-swatch-picker-preview:build': { - id: '@fluentui/react-swatch-picker-preview:build', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-swatch-picker-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-swatch-picker-preview:clean': { - roots: ['@fluentui/react-swatch-picker-preview:clean'], - tasks: { - '@fluentui/react-swatch-picker-preview:clean': { - id: '@fluentui/react-swatch-picker-preview:clean', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-swatch-picker-preview:clean': [] }, - }, - '@fluentui/react-swatch-picker-preview:generate-api': { - roots: ['@fluentui/react-swatch-picker-preview:generate-api'], - tasks: { - '@fluentui/react-swatch-picker-preview:generate-api': { - id: '@fluentui/react-swatch-picker-preview:generate-api', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-swatch-picker-preview:generate-api': [] }, - }, - '@fluentui/react-swatch-picker-preview:lint': { - roots: ['@fluentui/react-swatch-picker-preview:lint'], - tasks: { - '@fluentui/react-swatch-picker-preview:lint': { - id: '@fluentui/react-swatch-picker-preview:lint', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-swatch-picker-preview:lint': [] }, - }, - '@fluentui/react-swatch-picker-preview:start': { - roots: ['@fluentui/react-swatch-picker-preview:start'], - tasks: { - '@fluentui/react-swatch-picker-preview:start': { - id: '@fluentui/react-swatch-picker-preview:start', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-swatch-picker-preview:start': [] }, - }, - '@fluentui/react-swatch-picker-preview:storybook': { - roots: ['@fluentui/react-swatch-picker-preview:storybook'], - tasks: { - '@fluentui/react-swatch-picker-preview:storybook': { - id: '@fluentui/react-swatch-picker-preview:storybook', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-swatch-picker-preview:storybook': [] }, - }, - '@fluentui/react-swatch-picker-preview:test': { - roots: ['@fluentui/react-swatch-picker-preview:test'], - tasks: { - '@fluentui/react-swatch-picker-preview:test': { - id: '@fluentui/react-swatch-picker-preview:test', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-swatch-picker-preview:test': [] }, - }, - '@fluentui/react-swatch-picker-preview:test-ssr': { - roots: ['@fluentui/react-swatch-picker-preview:test-ssr'], - tasks: { - '@fluentui/react-swatch-picker-preview:test-ssr': { - id: '@fluentui/react-swatch-picker-preview:test-ssr', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-swatch-picker-preview:test-ssr': [] }, - }, - '@fluentui/react-swatch-picker-preview:type-check': { - roots: ['@fluentui/react-swatch-picker-preview:type-check'], - tasks: { - '@fluentui/react-swatch-picker-preview:type-check': { - id: '@fluentui/react-swatch-picker-preview:type-check', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-swatch-picker-preview:type-check': [] }, - }, - '@fluentui/react-swatch-picker-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-swatch-picker-preview:nx-release-publish': { - id: '@fluentui/react-swatch-picker-preview:nx-release-publish', - target: { project: '@fluentui/react-swatch-picker-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-swatch-picker-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-swatch-picker-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-conformance-griffel:build': { - roots: ['@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/react-conformance-griffel:clean': { - roots: ['@fluentui/react-conformance-griffel:clean'], - tasks: { - '@fluentui/react-conformance-griffel:clean': { - id: '@fluentui/react-conformance-griffel:clean', - target: { project: '@fluentui/react-conformance-griffel', target: 'clean' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance-griffel:clean': [] }, - }, - '@fluentui/react-conformance-griffel:code-style': { - roots: ['@fluentui/react-conformance-griffel:code-style'], - tasks: { - '@fluentui/react-conformance-griffel:code-style': { - id: '@fluentui/react-conformance-griffel:code-style', - target: { project: '@fluentui/react-conformance-griffel', target: 'code-style' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance-griffel:code-style': [] }, - }, - '@fluentui/react-conformance-griffel:just': { - roots: ['@fluentui/react-conformance-griffel:just'], - tasks: { - '@fluentui/react-conformance-griffel:just': { - id: '@fluentui/react-conformance-griffel:just', - target: { project: '@fluentui/react-conformance-griffel', target: 'just' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance-griffel:just': [] }, - }, - '@fluentui/react-conformance-griffel:lint': { - roots: ['@fluentui/react-conformance-griffel:lint'], - tasks: { - '@fluentui/react-conformance-griffel:lint': { - id: '@fluentui/react-conformance-griffel:lint', - target: { project: '@fluentui/react-conformance-griffel', target: 'lint' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance-griffel:lint': [] }, - }, - '@fluentui/react-conformance-griffel:test': { - roots: ['@fluentui/react-conformance-griffel:test'], - tasks: { - '@fluentui/react-conformance-griffel:test': { - id: '@fluentui/react-conformance-griffel:test', - target: { project: '@fluentui/react-conformance-griffel', target: 'test' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance-griffel:test': [] }, - }, - '@fluentui/react-conformance-griffel:type-check': { - roots: ['@fluentui/react-conformance-griffel:type-check'], - tasks: { - '@fluentui/react-conformance-griffel:type-check': { - id: '@fluentui/react-conformance-griffel:type-check', - target: { project: '@fluentui/react-conformance-griffel', target: 'type-check' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance-griffel:type-check': [] }, - }, - '@fluentui/react-conformance-griffel:generate-api': { - roots: ['@fluentui/react-conformance-griffel:generate-api'], - tasks: { - '@fluentui/react-conformance-griffel:generate-api': { - id: '@fluentui/react-conformance-griffel:generate-api', - target: { project: '@fluentui/react-conformance-griffel', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance-griffel:generate-api': [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - }, - }, - '@fluentui/react-component-nesting-registry:build': { - roots: ['@fluentui/react-component-nesting-registry:build'], - tasks: { - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-nesting-registry:build': [] }, - }, - '@fluentui/react-component-nesting-registry:clean': { - roots: ['@fluentui/react-component-nesting-registry:clean'], - tasks: { - '@fluentui/react-component-nesting-registry:clean': { - id: '@fluentui/react-component-nesting-registry:clean', - target: { project: '@fluentui/react-component-nesting-registry', target: 'clean' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-nesting-registry:clean': [] }, - }, - '@fluentui/react-component-nesting-registry:lint': { - roots: ['@fluentui/react-component-nesting-registry:lint'], - tasks: { - '@fluentui/react-component-nesting-registry:lint': { - id: '@fluentui/react-component-nesting-registry:lint', - target: { project: '@fluentui/react-component-nesting-registry', target: 'lint' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-nesting-registry:lint': [] }, - }, - '@fluentui/react-component-nesting-registry:lint:fix': { - roots: ['@fluentui/react-component-nesting-registry:lint:fix'], - tasks: { - '@fluentui/react-component-nesting-registry:lint:fix': { - id: '@fluentui/react-component-nesting-registry:lint:fix', - target: { project: '@fluentui/react-component-nesting-registry', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-nesting-registry:lint:fix': [] }, - }, - '@fluentui/react-component-nesting-registry:test': { - roots: ['@fluentui/react-component-nesting-registry:test'], - tasks: { - '@fluentui/react-component-nesting-registry:test': { - id: '@fluentui/react-component-nesting-registry:test', - target: { project: '@fluentui/react-component-nesting-registry', target: 'test' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-nesting-registry:test': [] }, - }, - '@fluentui/react-component-nesting-registry:test:watch': { - roots: ['@fluentui/react-component-nesting-registry:test:watch'], - tasks: { - '@fluentui/react-component-nesting-registry:test:watch': { - id: '@fluentui/react-component-nesting-registry:test:watch', - target: { project: '@fluentui/react-component-nesting-registry', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-nesting-registry:test:watch': [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-northstar-emotion-renderer:build': { - roots: ['@fluentui/styles:build'], - tasks: { - '@fluentui/react-northstar-emotion-renderer:build': { - id: '@fluentui/react-northstar-emotion-renderer:build', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: {}, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar-emotion-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - }, - }, - '@fluentui/react-northstar-emotion-renderer:clean': { - roots: ['@fluentui/react-northstar-emotion-renderer:clean'], - tasks: { - '@fluentui/react-northstar-emotion-renderer:clean': { - id: '@fluentui/react-northstar-emotion-renderer:clean', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'clean' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-emotion-renderer:clean': [] }, - }, - '@fluentui/react-northstar-emotion-renderer:lint': { - roots: ['@fluentui/react-northstar-emotion-renderer:lint'], - tasks: { - '@fluentui/react-northstar-emotion-renderer:lint': { - id: '@fluentui/react-northstar-emotion-renderer:lint', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'lint' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-emotion-renderer:lint': [] }, - }, - '@fluentui/react-northstar-emotion-renderer:lint:fix': { - roots: ['@fluentui/react-northstar-emotion-renderer:lint:fix'], - tasks: { - '@fluentui/react-northstar-emotion-renderer:lint:fix': { - id: '@fluentui/react-northstar-emotion-renderer:lint:fix', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-emotion-renderer:lint:fix': [] }, - }, - '@fluentui/react-northstar-emotion-renderer:test': { - roots: ['@fluentui/react-northstar-emotion-renderer:test'], - tasks: { - '@fluentui/react-northstar-emotion-renderer:test': { - id: '@fluentui/react-northstar-emotion-renderer:test', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'test' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-emotion-renderer:test': [] }, - }, - '@fluentui/react-northstar-emotion-renderer:test:watch': { - roots: ['@fluentui/react-northstar-emotion-renderer:test:watch'], - tasks: { - '@fluentui/react-northstar-emotion-renderer:test:watch': { - id: '@fluentui/react-northstar-emotion-renderer:test:watch', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-emotion-renderer:test:watch': [] }, - }, - '@fluentui/react-northstar-emotion-renderer:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/react-northstar-emotion-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-emotion-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: {}, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar-emotion-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-colorpicker-compat:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-colorpicker-compat:build': { - id: '@fluentui/react-colorpicker-compat:build', - target: { project: '@fluentui/react-colorpicker-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-colorpicker-compat:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-colorpicker-compat:clean': { - roots: ['@fluentui/react-colorpicker-compat:clean'], - tasks: { - '@fluentui/react-colorpicker-compat:clean': { - id: '@fluentui/react-colorpicker-compat:clean', - target: { project: '@fluentui/react-colorpicker-compat', target: 'clean' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-colorpicker-compat:clean': [] }, - }, - '@fluentui/react-colorpicker-compat:code-style': { - roots: ['@fluentui/react-colorpicker-compat:code-style'], - tasks: { - '@fluentui/react-colorpicker-compat:code-style': { - id: '@fluentui/react-colorpicker-compat:code-style', - target: { project: '@fluentui/react-colorpicker-compat', target: 'code-style' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-colorpicker-compat:code-style': [] }, - }, - '@fluentui/react-colorpicker-compat:just': { - roots: ['@fluentui/react-colorpicker-compat:just'], - tasks: { - '@fluentui/react-colorpicker-compat:just': { - id: '@fluentui/react-colorpicker-compat:just', - target: { project: '@fluentui/react-colorpicker-compat', target: 'just' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-colorpicker-compat:just': [] }, - }, - '@fluentui/react-colorpicker-compat:lint': { - roots: ['@fluentui/react-colorpicker-compat:lint'], - tasks: { - '@fluentui/react-colorpicker-compat:lint': { - id: '@fluentui/react-colorpicker-compat:lint', - target: { project: '@fluentui/react-colorpicker-compat', target: 'lint' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-colorpicker-compat:lint': [] }, - }, - '@fluentui/react-colorpicker-compat:test': { - roots: ['@fluentui/react-colorpicker-compat:test'], - tasks: { - '@fluentui/react-colorpicker-compat:test': { - id: '@fluentui/react-colorpicker-compat:test', - target: { project: '@fluentui/react-colorpicker-compat', target: 'test' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-colorpicker-compat:test': [] }, - }, - '@fluentui/react-colorpicker-compat:test-ssr': { - roots: ['@fluentui/react-colorpicker-compat:test-ssr'], - tasks: { - '@fluentui/react-colorpicker-compat:test-ssr': { - id: '@fluentui/react-colorpicker-compat:test-ssr', - target: { project: '@fluentui/react-colorpicker-compat', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-colorpicker-compat:test-ssr': [] }, - }, - '@fluentui/react-colorpicker-compat:type-check': { - roots: ['@fluentui/react-colorpicker-compat:type-check'], - tasks: { - '@fluentui/react-colorpicker-compat:type-check': { - id: '@fluentui/react-colorpicker-compat:type-check', - target: { project: '@fluentui/react-colorpicker-compat', target: 'type-check' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-colorpicker-compat:type-check': [] }, - }, - '@fluentui/react-colorpicker-compat:generate-api': { - roots: ['@fluentui/react-colorpicker-compat:generate-api'], - tasks: { - '@fluentui/react-colorpicker-compat:generate-api': { - id: '@fluentui/react-colorpicker-compat:generate-api', - target: { project: '@fluentui/react-colorpicker-compat', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-colorpicker-compat:generate-api': [] }, - }, - '@fluentui/react-colorpicker-compat:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-colorpicker-compat:nx-release-publish': { - id: '@fluentui/react-colorpicker-compat:nx-release-publish', - target: { project: '@fluentui/react-colorpicker-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-colorpicker-compat', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-colorpicker-compat:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - roots: ['@fluentui/styles:build'], - tasks: { - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: {}, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - }, - }, - '@fluentui/react-northstar-styles-renderer:clean': { - roots: ['@fluentui/react-northstar-styles-renderer:clean'], - tasks: { - '@fluentui/react-northstar-styles-renderer:clean': { - id: '@fluentui/react-northstar-styles-renderer:clean', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'clean' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-styles-renderer:clean': [] }, - }, - '@fluentui/react-northstar-styles-renderer:lint': { - roots: ['@fluentui/react-northstar-styles-renderer:lint'], - tasks: { - '@fluentui/react-northstar-styles-renderer:lint': { - id: '@fluentui/react-northstar-styles-renderer:lint', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'lint' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-styles-renderer:lint': [] }, - }, - '@fluentui/react-northstar-styles-renderer:lint:fix': { - roots: ['@fluentui/react-northstar-styles-renderer:lint:fix'], - tasks: { - '@fluentui/react-northstar-styles-renderer:lint:fix': { - id: '@fluentui/react-northstar-styles-renderer:lint:fix', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-styles-renderer:lint:fix': [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: {}, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-datepicker-compat:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-datepicker-compat:build': { - id: '@fluentui/react-datepicker-compat:build', - target: { project: '@fluentui/react-datepicker-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-calendar-compat:build': { - id: '@fluentui/react-calendar-compat:build', - target: { project: '@fluentui/react-calendar-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-datepicker-compat:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-calendar-compat:build', - '@fluentui/react-field:build', - '@fluentui/react-input:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-popover:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-calendar-compat:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-datepicker-compat:bundle-size': { - roots: ['@fluentui/react-datepicker-compat:bundle-size'], - tasks: { - '@fluentui/react-datepicker-compat:bundle-size': { - id: '@fluentui/react-datepicker-compat:bundle-size', - target: { project: '@fluentui/react-datepicker-compat', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:bundle-size': [] }, - }, - '@fluentui/react-datepicker-compat:clean': { - roots: ['@fluentui/react-datepicker-compat:clean'], - tasks: { - '@fluentui/react-datepicker-compat:clean': { - id: '@fluentui/react-datepicker-compat:clean', - target: { project: '@fluentui/react-datepicker-compat', target: 'clean' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:clean': [] }, - }, - '@fluentui/react-datepicker-compat:code-style': { - roots: ['@fluentui/react-datepicker-compat:code-style'], - tasks: { - '@fluentui/react-datepicker-compat:code-style': { - id: '@fluentui/react-datepicker-compat:code-style', - target: { project: '@fluentui/react-datepicker-compat', target: 'code-style' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:code-style': [] }, - }, - '@fluentui/react-datepicker-compat:e2e': { - roots: ['@fluentui/react-datepicker-compat:e2e'], - tasks: { - '@fluentui/react-datepicker-compat:e2e': { - id: '@fluentui/react-datepicker-compat:e2e', - target: { project: '@fluentui/react-datepicker-compat', target: 'e2e' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:e2e': [] }, - }, - '@fluentui/react-datepicker-compat:e2e:local': { - roots: ['@fluentui/react-datepicker-compat:e2e:local'], - tasks: { - '@fluentui/react-datepicker-compat:e2e:local': { - id: '@fluentui/react-datepicker-compat:e2e:local', - target: { project: '@fluentui/react-datepicker-compat', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:e2e:local': [] }, - }, - '@fluentui/react-datepicker-compat:just': { - roots: ['@fluentui/react-datepicker-compat:just'], - tasks: { - '@fluentui/react-datepicker-compat:just': { - id: '@fluentui/react-datepicker-compat:just', - target: { project: '@fluentui/react-datepicker-compat', target: 'just' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:just': [] }, - }, - '@fluentui/react-datepicker-compat:lint': { - roots: ['@fluentui/react-datepicker-compat:lint'], - tasks: { - '@fluentui/react-datepicker-compat:lint': { - id: '@fluentui/react-datepicker-compat:lint', - target: { project: '@fluentui/react-datepicker-compat', target: 'lint' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:lint': [] }, - }, - '@fluentui/react-datepicker-compat:test': { - roots: ['@fluentui/react-datepicker-compat:test'], - tasks: { - '@fluentui/react-datepicker-compat:test': { - id: '@fluentui/react-datepicker-compat:test', - target: { project: '@fluentui/react-datepicker-compat', target: 'test' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:test': [] }, - }, - '@fluentui/react-datepicker-compat:type-check': { - roots: ['@fluentui/react-datepicker-compat:type-check'], - tasks: { - '@fluentui/react-datepicker-compat:type-check': { - id: '@fluentui/react-datepicker-compat:type-check', - target: { project: '@fluentui/react-datepicker-compat', target: 'type-check' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:type-check': [] }, - }, - '@fluentui/react-datepicker-compat:generate-api': { - roots: ['@fluentui/react-datepicker-compat:generate-api'], - tasks: { - '@fluentui/react-datepicker-compat:generate-api': { - id: '@fluentui/react-datepicker-compat:generate-api', - target: { project: '@fluentui/react-datepicker-compat', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:generate-api': [] }, - }, - '@fluentui/react-datepicker-compat:storybook': { - roots: ['@fluentui/react-datepicker-compat:storybook'], - tasks: { - '@fluentui/react-datepicker-compat:storybook': { - id: '@fluentui/react-datepicker-compat:storybook', - target: { project: '@fluentui/react-datepicker-compat', target: 'storybook' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:storybook': [] }, - }, - '@fluentui/react-datepicker-compat:start': { - roots: ['@fluentui/react-datepicker-compat:start'], - tasks: { - '@fluentui/react-datepicker-compat:start': { - id: '@fluentui/react-datepicker-compat:start', - target: { project: '@fluentui/react-datepicker-compat', target: 'start' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:start': [] }, - }, - '@fluentui/react-datepicker-compat:test-ssr': { - roots: ['@fluentui/react-datepicker-compat:test-ssr'], - tasks: { - '@fluentui/react-datepicker-compat:test-ssr': { - id: '@fluentui/react-datepicker-compat:test-ssr', - target: { project: '@fluentui/react-datepicker-compat', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-datepicker-compat:test-ssr': [] }, - }, - '@fluentui/react-datepicker-compat:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-datepicker-compat:nx-release-publish': { - id: '@fluentui/react-datepicker-compat:nx-release-publish', - target: { project: '@fluentui/react-datepicker-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-calendar-compat:nx-release-publish': { - id: '@fluentui/react-calendar-compat:nx-release-publish', - target: { project: '@fluentui/react-calendar-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-datepicker-compat:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-calendar-compat:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-calendar-compat:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-timepicker-compat:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-timepicker-compat:build': { - id: '@fluentui/react-timepicker-compat:build', - target: { project: '@fluentui/react-timepicker-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-timepicker-compat:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-combobox:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-timepicker-compat:bundle-size': { - roots: ['@fluentui/react-timepicker-compat:bundle-size'], - tasks: { - '@fluentui/react-timepicker-compat:bundle-size': { - id: '@fluentui/react-timepicker-compat:bundle-size', - target: { project: '@fluentui/react-timepicker-compat', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:bundle-size': [] }, - }, - '@fluentui/react-timepicker-compat:clean': { - roots: ['@fluentui/react-timepicker-compat:clean'], - tasks: { - '@fluentui/react-timepicker-compat:clean': { - id: '@fluentui/react-timepicker-compat:clean', - target: { project: '@fluentui/react-timepicker-compat', target: 'clean' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:clean': [] }, - }, - '@fluentui/react-timepicker-compat:e2e': { - roots: ['@fluentui/react-timepicker-compat:e2e'], - tasks: { - '@fluentui/react-timepicker-compat:e2e': { - id: '@fluentui/react-timepicker-compat:e2e', - target: { project: '@fluentui/react-timepicker-compat', target: 'e2e' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:e2e': [] }, - }, - '@fluentui/react-timepicker-compat:e2e:local': { - roots: ['@fluentui/react-timepicker-compat:e2e:local'], - tasks: { - '@fluentui/react-timepicker-compat:e2e:local': { - id: '@fluentui/react-timepicker-compat:e2e:local', - target: { project: '@fluentui/react-timepicker-compat', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:e2e:local': [] }, - }, - '@fluentui/react-timepicker-compat:generate-api': { - roots: ['@fluentui/react-timepicker-compat:generate-api'], - tasks: { - '@fluentui/react-timepicker-compat:generate-api': { - id: '@fluentui/react-timepicker-compat:generate-api', - target: { project: '@fluentui/react-timepicker-compat', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:generate-api': [] }, - }, - '@fluentui/react-timepicker-compat:lint': { - roots: ['@fluentui/react-timepicker-compat:lint'], - tasks: { - '@fluentui/react-timepicker-compat:lint': { - id: '@fluentui/react-timepicker-compat:lint', - target: { project: '@fluentui/react-timepicker-compat', target: 'lint' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:lint': [] }, - }, - '@fluentui/react-timepicker-compat:start': { - roots: ['@fluentui/react-timepicker-compat:start'], - tasks: { - '@fluentui/react-timepicker-compat:start': { - id: '@fluentui/react-timepicker-compat:start', - target: { project: '@fluentui/react-timepicker-compat', target: 'start' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:start': [] }, - }, - '@fluentui/react-timepicker-compat:storybook': { - roots: ['@fluentui/react-timepicker-compat:storybook'], - tasks: { - '@fluentui/react-timepicker-compat:storybook': { - id: '@fluentui/react-timepicker-compat:storybook', - target: { project: '@fluentui/react-timepicker-compat', target: 'storybook' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:storybook': [] }, - }, - '@fluentui/react-timepicker-compat:test': { - roots: ['@fluentui/react-timepicker-compat:test'], - tasks: { - '@fluentui/react-timepicker-compat:test': { - id: '@fluentui/react-timepicker-compat:test', - target: { project: '@fluentui/react-timepicker-compat', target: 'test' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:test': [] }, - }, - '@fluentui/react-timepicker-compat:test-ssr': { - roots: ['@fluentui/react-timepicker-compat:test-ssr'], - tasks: { - '@fluentui/react-timepicker-compat:test-ssr': { - id: '@fluentui/react-timepicker-compat:test-ssr', - target: { project: '@fluentui/react-timepicker-compat', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:test-ssr': [] }, - }, - '@fluentui/react-timepicker-compat:type-check': { - roots: ['@fluentui/react-timepicker-compat:type-check'], - tasks: { - '@fluentui/react-timepicker-compat:type-check': { - id: '@fluentui/react-timepicker-compat:type-check', - target: { project: '@fluentui/react-timepicker-compat', target: 'type-check' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-timepicker-compat:type-check': [] }, - }, - '@fluentui/react-timepicker-compat:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-timepicker-compat:nx-release-publish': { - id: '@fluentui/react-timepicker-compat:nx-release-publish', - target: { project: '@fluentui/react-timepicker-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-timepicker-compat', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-timepicker-compat:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-context-selector:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], - tasks: { - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - }, - }, - '@fluentui/react-context-selector:clean': { - roots: ['@fluentui/react-context-selector:clean'], - tasks: { - '@fluentui/react-context-selector:clean': { - id: '@fluentui/react-context-selector:clean', - target: { project: '@fluentui/react-context-selector', target: 'clean' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-context-selector:clean': [] }, - }, - '@fluentui/react-context-selector:code-style': { - roots: ['@fluentui/react-context-selector:code-style'], - tasks: { - '@fluentui/react-context-selector:code-style': { - id: '@fluentui/react-context-selector:code-style', - target: { project: '@fluentui/react-context-selector', target: 'code-style' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-context-selector:code-style': [] }, - }, - '@fluentui/react-context-selector:just': { - roots: ['@fluentui/react-context-selector:just'], - tasks: { - '@fluentui/react-context-selector:just': { - id: '@fluentui/react-context-selector:just', - target: { project: '@fluentui/react-context-selector', target: 'just' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-context-selector:just': [] }, - }, - '@fluentui/react-context-selector:lint': { - roots: ['@fluentui/react-context-selector:lint'], - tasks: { - '@fluentui/react-context-selector:lint': { - id: '@fluentui/react-context-selector:lint', - target: { project: '@fluentui/react-context-selector', target: 'lint' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-context-selector:lint': [] }, - }, - '@fluentui/react-context-selector:test': { - roots: ['@fluentui/react-context-selector:test'], - tasks: { - '@fluentui/react-context-selector:test': { - id: '@fluentui/react-context-selector:test', - target: { project: '@fluentui/react-context-selector', target: 'test' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-context-selector:test': [] }, - }, - '@fluentui/react-context-selector:type-check': { - roots: ['@fluentui/react-context-selector:type-check'], - tasks: { - '@fluentui/react-context-selector:type-check': { - id: '@fluentui/react-context-selector:type-check', - target: { project: '@fluentui/react-context-selector', target: 'type-check' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-context-selector:type-check': [] }, - }, - '@fluentui/react-context-selector:generate-api': { - roots: ['@fluentui/react-context-selector:generate-api'], - tasks: { - '@fluentui/react-context-selector:generate-api': { - id: '@fluentui/react-context-selector:generate-api', - target: { project: '@fluentui/react-context-selector', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-context-selector:generate-api': [] }, - }, - '@fluentui/react-context-selector:test-ssr': { - roots: ['@fluentui/react-context-selector:test-ssr'], - tasks: { - '@fluentui/react-context-selector:test-ssr': { - id: '@fluentui/react-context-selector:test-ssr', - target: { project: '@fluentui/react-context-selector', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-context-selector:test-ssr': [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: {}, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-component-event-listener:build': { - roots: ['@fluentui/react-component-event-listener:build'], - tasks: { - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-event-listener:build': [] }, - }, - '@fluentui/react-component-event-listener:clean': { - roots: ['@fluentui/react-component-event-listener:clean'], - tasks: { - '@fluentui/react-component-event-listener:clean': { - id: '@fluentui/react-component-event-listener:clean', - target: { project: '@fluentui/react-component-event-listener', target: 'clean' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-event-listener:clean': [] }, - }, - '@fluentui/react-component-event-listener:lint': { - roots: ['@fluentui/react-component-event-listener:lint'], - tasks: { - '@fluentui/react-component-event-listener:lint': { - id: '@fluentui/react-component-event-listener:lint', - target: { project: '@fluentui/react-component-event-listener', target: 'lint' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-event-listener:lint': [] }, - }, - '@fluentui/react-component-event-listener:lint:fix': { - roots: ['@fluentui/react-component-event-listener:lint:fix'], - tasks: { - '@fluentui/react-component-event-listener:lint:fix': { - id: '@fluentui/react-component-event-listener:lint:fix', - target: { project: '@fluentui/react-component-event-listener', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-event-listener:lint:fix': [] }, - }, - '@fluentui/react-component-event-listener:test': { - roots: ['@fluentui/react-component-event-listener:test'], - tasks: { - '@fluentui/react-component-event-listener:test': { - id: '@fluentui/react-component-event-listener:test', - target: { project: '@fluentui/react-component-event-listener', target: 'test' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-event-listener:test': [] }, - }, - '@fluentui/react-component-event-listener:test:watch': { - roots: ['@fluentui/react-component-event-listener:test:watch'], - tasks: { - '@fluentui/react-component-event-listener:test:watch': { - id: '@fluentui/react-component-event-listener:test:watch', - target: { project: '@fluentui/react-component-event-listener', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-event-listener:test:watch': [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - roots: ['@fluentui/styles:build'], - tasks: { - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: {}, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - }, - }, - '@fluentui/react-northstar-fela-renderer:clean': { - roots: ['@fluentui/react-northstar-fela-renderer:clean'], - tasks: { - '@fluentui/react-northstar-fela-renderer:clean': { - id: '@fluentui/react-northstar-fela-renderer:clean', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'clean' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-fela-renderer:clean': [] }, - }, - '@fluentui/react-northstar-fela-renderer:lint': { - roots: ['@fluentui/react-northstar-fela-renderer:lint'], - tasks: { - '@fluentui/react-northstar-fela-renderer:lint': { - id: '@fluentui/react-northstar-fela-renderer:lint', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'lint' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-fela-renderer:lint': [] }, - }, - '@fluentui/react-northstar-fela-renderer:lint:fix': { - roots: ['@fluentui/react-northstar-fela-renderer:lint:fix'], - tasks: { - '@fluentui/react-northstar-fela-renderer:lint:fix': { - id: '@fluentui/react-northstar-fela-renderer:lint:fix', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-fela-renderer:lint:fix': [] }, - }, - '@fluentui/react-northstar-fela-renderer:test': { - roots: ['@fluentui/react-northstar-fela-renderer:test'], - tasks: { - '@fluentui/react-northstar-fela-renderer:test': { - id: '@fluentui/react-northstar-fela-renderer:test', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'test' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-fela-renderer:test': [] }, - }, - '@fluentui/react-northstar-fela-renderer:test:watch': { - roots: ['@fluentui/react-northstar-fela-renderer:test:watch'], - tasks: { - '@fluentui/react-northstar-fela-renderer:test:watch': { - id: '@fluentui/react-northstar-fela-renderer:test:watch', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-fela-renderer:test:watch': [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: {}, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-motions-preview:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-motions-preview:build': { - id: '@fluentui/react-motions-preview:build', - target: { project: '@fluentui/react-motions-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-motions-preview:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-motions-preview:clean': { - roots: ['@fluentui/react-motions-preview:clean'], - tasks: { - '@fluentui/react-motions-preview:clean': { - id: '@fluentui/react-motions-preview:clean', - target: { project: '@fluentui/react-motions-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motions-preview:clean': [] }, - }, - '@fluentui/react-motions-preview:generate-api': { - roots: ['@fluentui/react-motions-preview:generate-api'], - tasks: { - '@fluentui/react-motions-preview:generate-api': { - id: '@fluentui/react-motions-preview:generate-api', - target: { project: '@fluentui/react-motions-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motions-preview:generate-api': [] }, - }, - '@fluentui/react-motions-preview:lint': { - roots: ['@fluentui/react-motions-preview:lint'], - tasks: { - '@fluentui/react-motions-preview:lint': { - id: '@fluentui/react-motions-preview:lint', - target: { project: '@fluentui/react-motions-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motions-preview:lint': [] }, - }, - '@fluentui/react-motions-preview:start': { - roots: ['@fluentui/react-motions-preview:start'], - tasks: { - '@fluentui/react-motions-preview:start': { - id: '@fluentui/react-motions-preview:start', - target: { project: '@fluentui/react-motions-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motions-preview:start': [] }, - }, - '@fluentui/react-motions-preview:storybook': { - roots: ['@fluentui/react-motions-preview:storybook'], - tasks: { - '@fluentui/react-motions-preview:storybook': { - id: '@fluentui/react-motions-preview:storybook', - target: { project: '@fluentui/react-motions-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motions-preview:storybook': [] }, - }, - '@fluentui/react-motions-preview:test': { - roots: ['@fluentui/react-motions-preview:test'], - tasks: { - '@fluentui/react-motions-preview:test': { - id: '@fluentui/react-motions-preview:test', - target: { project: '@fluentui/react-motions-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motions-preview:test': [] }, - }, - '@fluentui/react-motions-preview:test-ssr': { - roots: ['@fluentui/react-motions-preview:test-ssr'], - tasks: { - '@fluentui/react-motions-preview:test-ssr': { - id: '@fluentui/react-motions-preview:test-ssr', - target: { project: '@fluentui/react-motions-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motions-preview:test-ssr': [] }, - }, - '@fluentui/react-motions-preview:type-check': { - roots: ['@fluentui/react-motions-preview:type-check'], - tasks: { - '@fluentui/react-motions-preview:type-check': { - id: '@fluentui/react-motions-preview:type-check', - target: { project: '@fluentui/react-motions-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motions-preview:type-check': [] }, - }, - '@fluentui/react-motions-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-motions-preview:nx-release-publish': { - id: '@fluentui/react-motions-preview:nx-release-publish', - target: { project: '@fluentui/react-motions-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motions-preview', - overrides: {}, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-motions-preview:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-migration-v0-v9:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - '@fluentui/priority-overflow:build', - '@fluentui/accessibility:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - ], - tasks: { - '@fluentui/react-migration-v0-v9:build': { - id: '@fluentui/react-migration-v0-v9:build', - target: { project: '@fluentui/react-migration-v0-v9', target: 'build' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:build': { - id: '@fluentui/react-components:build', - target: { project: '@fluentui/react-components', target: 'build' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:build': { - id: '@fluentui/react-alert:build', - target: { project: '@fluentui/react-alert', target: 'build' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:build': { - id: '@fluentui/react-infobutton:build', - target: { project: '@fluentui/react-infobutton', target: 'build' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:build': { - id: '@fluentui/react-overflow:build', - target: { project: '@fluentui/react-overflow', target: 'build' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:build': { - id: '@fluentui/react-virtualizer:build', - target: { project: '@fluentui/react-virtualizer', target: 'build' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-migration-v0-v9:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-components:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-northstar:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-components:build': [ - '@fluentui/react-accordion:build', - '@fluentui/react-alert:build', - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-button:build', - '@fluentui/react-card:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-combobox:build', - '@fluentui/react-dialog:build', - '@fluentui/react-divider:build', - '@fluentui/react-drawer:build', - '@fluentui/react-field:build', - '@fluentui/react-image:build', - '@fluentui/react-infobutton:build', - '@fluentui/react-infolabel:build', - '@fluentui/react-input:build', - '@fluentui/react-label:build', - '@fluentui/react-link:build', - '@fluentui/react-menu:build', - '@fluentui/react-overflow:build', - '@fluentui/react-persona:build', - '@fluentui/react-portal:build', - '@fluentui/react-popover:build', - '@fluentui/react-positioning:build', - '@fluentui/react-progress:build', - '@fluentui/react-provider:build', - '@fluentui/react-radio:build', - '@fluentui/react-select:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-skeleton:build', - '@fluentui/react-slider:build', - '@fluentui/react-spinbutton:build', - '@fluentui/react-spinner:build', - '@fluentui/react-switch:build', - '@fluentui/react-table:build', - '@fluentui/react-tabs:build', - '@fluentui/react-tabster:build', - '@fluentui/react-tags:build', - '@fluentui/react-textarea:build', - '@fluentui/react-theme:build', - '@fluentui/react-toast:build', - '@fluentui/react-toolbar:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-text:build', - '@fluentui/react-virtualizer:build', - '@fluentui/react-tree:build', - '@fluentui/react-message-bar:build', - '@fluentui/react-breadcrumb:build', - ], - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-alert:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infobutton:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-overflow:build': [ - '@fluentui/priority-overflow:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/priority-overflow:build': [], - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-virtualizer:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-proptypes:build': [], - }, - }, - '@fluentui/react-migration-v0-v9:clean': { - roots: ['@fluentui/react-migration-v0-v9:clean'], - tasks: { - '@fluentui/react-migration-v0-v9:clean': { - id: '@fluentui/react-migration-v0-v9:clean', - target: { project: '@fluentui/react-migration-v0-v9', target: 'clean' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:clean': [] }, - }, - '@fluentui/react-migration-v0-v9:code-style': { - roots: ['@fluentui/react-migration-v0-v9:code-style'], - tasks: { - '@fluentui/react-migration-v0-v9:code-style': { - id: '@fluentui/react-migration-v0-v9:code-style', - target: { project: '@fluentui/react-migration-v0-v9', target: 'code-style' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:code-style': [] }, - }, - '@fluentui/react-migration-v0-v9:just': { - roots: ['@fluentui/react-migration-v0-v9:just'], - tasks: { - '@fluentui/react-migration-v0-v9:just': { - id: '@fluentui/react-migration-v0-v9:just', - target: { project: '@fluentui/react-migration-v0-v9', target: 'just' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:just': [] }, - }, - '@fluentui/react-migration-v0-v9:lint': { - roots: ['@fluentui/react-migration-v0-v9:lint'], - tasks: { - '@fluentui/react-migration-v0-v9:lint': { - id: '@fluentui/react-migration-v0-v9:lint', - target: { project: '@fluentui/react-migration-v0-v9', target: 'lint' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:lint': [] }, - }, - '@fluentui/react-migration-v0-v9:test': { - roots: ['@fluentui/react-migration-v0-v9:test'], - tasks: { - '@fluentui/react-migration-v0-v9:test': { - id: '@fluentui/react-migration-v0-v9:test', - target: { project: '@fluentui/react-migration-v0-v9', target: 'test' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:test': [] }, - }, - '@fluentui/react-migration-v0-v9:type-check': { - roots: ['@fluentui/react-migration-v0-v9:type-check'], - tasks: { - '@fluentui/react-migration-v0-v9:type-check': { - id: '@fluentui/react-migration-v0-v9:type-check', - target: { project: '@fluentui/react-migration-v0-v9', target: 'type-check' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:type-check': [] }, - }, - '@fluentui/react-migration-v0-v9:generate-api': { - roots: ['@fluentui/react-migration-v0-v9:generate-api'], - tasks: { - '@fluentui/react-migration-v0-v9:generate-api': { - id: '@fluentui/react-migration-v0-v9:generate-api', - target: { project: '@fluentui/react-migration-v0-v9', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:generate-api': [] }, - }, - '@fluentui/react-migration-v0-v9:storybook': { - roots: ['@fluentui/react-migration-v0-v9:storybook'], - tasks: { - '@fluentui/react-migration-v0-v9:storybook': { - id: '@fluentui/react-migration-v0-v9:storybook', - target: { project: '@fluentui/react-migration-v0-v9', target: 'storybook' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:storybook': [] }, - }, - '@fluentui/react-migration-v0-v9:start': { - roots: ['@fluentui/react-migration-v0-v9:start'], - tasks: { - '@fluentui/react-migration-v0-v9:start': { - id: '@fluentui/react-migration-v0-v9:start', - target: { project: '@fluentui/react-migration-v0-v9', target: 'start' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v0-v9:start': [] }, - }, - '@fluentui/react-migration-v0-v9:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/react-migration-v0-v9:nx-release-publish': { - id: '@fluentui/react-migration-v0-v9:nx-release-publish', - target: { project: '@fluentui/react-migration-v0-v9', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: {}, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-migration-v0-v9:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-calendar-compat:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-calendar-compat:build': { - id: '@fluentui/react-calendar-compat:build', - target: { project: '@fluentui/react-calendar-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-calendar-compat:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-calendar-compat:bundle-size': { - roots: ['@fluentui/react-calendar-compat:bundle-size'], - tasks: { - '@fluentui/react-calendar-compat:bundle-size': { - id: '@fluentui/react-calendar-compat:bundle-size', - target: { project: '@fluentui/react-calendar-compat', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:bundle-size': [] }, - }, - '@fluentui/react-calendar-compat:clean': { - roots: ['@fluentui/react-calendar-compat:clean'], - tasks: { - '@fluentui/react-calendar-compat:clean': { - id: '@fluentui/react-calendar-compat:clean', - target: { project: '@fluentui/react-calendar-compat', target: 'clean' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:clean': [] }, - }, - '@fluentui/react-calendar-compat:generate-api': { - roots: ['@fluentui/react-calendar-compat:generate-api'], - tasks: { - '@fluentui/react-calendar-compat:generate-api': { - id: '@fluentui/react-calendar-compat:generate-api', - target: { project: '@fluentui/react-calendar-compat', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:generate-api': [] }, - }, - '@fluentui/react-calendar-compat:lint': { - roots: ['@fluentui/react-calendar-compat:lint'], - tasks: { - '@fluentui/react-calendar-compat:lint': { - id: '@fluentui/react-calendar-compat:lint', - target: { project: '@fluentui/react-calendar-compat', target: 'lint' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:lint': [] }, - }, - '@fluentui/react-calendar-compat:start': { - roots: ['@fluentui/react-calendar-compat:start'], - tasks: { - '@fluentui/react-calendar-compat:start': { - id: '@fluentui/react-calendar-compat:start', - target: { project: '@fluentui/react-calendar-compat', target: 'start' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:start': [] }, - }, - '@fluentui/react-calendar-compat:storybook': { - roots: ['@fluentui/react-calendar-compat:storybook'], - tasks: { - '@fluentui/react-calendar-compat:storybook': { - id: '@fluentui/react-calendar-compat:storybook', - target: { project: '@fluentui/react-calendar-compat', target: 'storybook' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:storybook': [] }, - }, - '@fluentui/react-calendar-compat:test': { - roots: ['@fluentui/react-calendar-compat:test'], - tasks: { - '@fluentui/react-calendar-compat:test': { - id: '@fluentui/react-calendar-compat:test', - target: { project: '@fluentui/react-calendar-compat', target: 'test' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:test': [] }, - }, - '@fluentui/react-calendar-compat:test-ssr': { - roots: ['@fluentui/react-calendar-compat:test-ssr'], - tasks: { - '@fluentui/react-calendar-compat:test-ssr': { - id: '@fluentui/react-calendar-compat:test-ssr', - target: { project: '@fluentui/react-calendar-compat', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:test-ssr': [] }, - }, - '@fluentui/react-calendar-compat:type-check': { - roots: ['@fluentui/react-calendar-compat:type-check'], - tasks: { - '@fluentui/react-calendar-compat:type-check': { - id: '@fluentui/react-calendar-compat:type-check', - target: { project: '@fluentui/react-calendar-compat', target: 'type-check' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-calendar-compat:type-check': [] }, - }, - '@fluentui/react-calendar-compat:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-calendar-compat:nx-release-publish': { - id: '@fluentui/react-calendar-compat:nx-release-publish', - target: { project: '@fluentui/react-calendar-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-calendar-compat:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-shared-contexts:build': { - roots: ['@fluentui/tokens:build'], - tasks: { - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - }, - }, - '@fluentui/react-shared-contexts:clean': { - roots: ['@fluentui/react-shared-contexts:clean'], - tasks: { - '@fluentui/react-shared-contexts:clean': { - id: '@fluentui/react-shared-contexts:clean', - target: { project: '@fluentui/react-shared-contexts', target: 'clean' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-shared-contexts:clean': [] }, - }, - '@fluentui/react-shared-contexts:code-style': { - roots: ['@fluentui/react-shared-contexts:code-style'], - tasks: { - '@fluentui/react-shared-contexts:code-style': { - id: '@fluentui/react-shared-contexts:code-style', - target: { project: '@fluentui/react-shared-contexts', target: 'code-style' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-shared-contexts:code-style': [] }, - }, - '@fluentui/react-shared-contexts:just': { - roots: ['@fluentui/react-shared-contexts:just'], - tasks: { - '@fluentui/react-shared-contexts:just': { - id: '@fluentui/react-shared-contexts:just', - target: { project: '@fluentui/react-shared-contexts', target: 'just' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-shared-contexts:just': [] }, - }, - '@fluentui/react-shared-contexts:lint': { - roots: ['@fluentui/react-shared-contexts:lint'], - tasks: { - '@fluentui/react-shared-contexts:lint': { - id: '@fluentui/react-shared-contexts:lint', - target: { project: '@fluentui/react-shared-contexts', target: 'lint' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-shared-contexts:lint': [] }, - }, - '@fluentui/react-shared-contexts:test': { - roots: ['@fluentui/react-shared-contexts:test'], - tasks: { - '@fluentui/react-shared-contexts:test': { - id: '@fluentui/react-shared-contexts:test', - target: { project: '@fluentui/react-shared-contexts', target: 'test' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-shared-contexts:test': [] }, - }, - '@fluentui/react-shared-contexts:type-check': { - roots: ['@fluentui/react-shared-contexts:type-check'], - tasks: { - '@fluentui/react-shared-contexts:type-check': { - id: '@fluentui/react-shared-contexts:type-check', - target: { project: '@fluentui/react-shared-contexts', target: 'type-check' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-shared-contexts:type-check': [] }, - }, - '@fluentui/react-shared-contexts:generate-api': { - roots: ['@fluentui/react-shared-contexts:generate-api'], - tasks: { - '@fluentui/react-shared-contexts:generate-api': { - id: '@fluentui/react-shared-contexts:generate-api', - target: { project: '@fluentui/react-shared-contexts', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-shared-contexts:generate-api': [] }, - }, - '@fluentui/react-shared-contexts:test-ssr': { - roots: ['@fluentui/react-shared-contexts:test-ssr'], - tasks: { - '@fluentui/react-shared-contexts:test-ssr': { - id: '@fluentui/react-shared-contexts:test-ssr', - target: { project: '@fluentui/react-shared-contexts', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-shared-contexts:test-ssr': [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: {}, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-migration-v8-v9:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/a11y-testing:build', - '@fluentui/priority-overflow:build', - ], - tasks: { - '@fluentui/react-migration-v8-v9:build': { - id: '@fluentui/react-migration-v8-v9:build', - target: { project: '@fluentui/react-migration-v8-v9', target: 'build' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - '@fluentui/fluent2-theme:build': { - id: '@fluentui/fluent2-theme:build', - target: { project: '@fluentui/fluent2-theme', target: 'build' }, - projectRoot: 'packages/fluent2-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:build': { - id: '@fluentui/react-components:build', - target: { project: '@fluentui/react-components', target: 'build' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:build': { - id: '@fluentui/react-alert:build', - target: { project: '@fluentui/react-alert', target: 'build' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:build': { - id: '@fluentui/react-infobutton:build', - target: { project: '@fluentui/react-infobutton', target: 'build' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:build': { - id: '@fluentui/react-overflow:build', - target: { project: '@fluentui/react-overflow', target: 'build' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:build': { - id: '@fluentui/react-virtualizer:build', - target: { project: '@fluentui/react-virtualizer', target: 'build' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-migration-v8-v9:build': [ - '@fluentui/fluent2-theme:build', - '@fluentui/react:build', - '@fluentui/react-components:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/fluent2-theme:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/react-components:build': [ - '@fluentui/react-accordion:build', - '@fluentui/react-alert:build', - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-button:build', - '@fluentui/react-card:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-combobox:build', - '@fluentui/react-dialog:build', - '@fluentui/react-divider:build', - '@fluentui/react-drawer:build', - '@fluentui/react-field:build', - '@fluentui/react-image:build', - '@fluentui/react-infobutton:build', - '@fluentui/react-infolabel:build', - '@fluentui/react-input:build', - '@fluentui/react-label:build', - '@fluentui/react-link:build', - '@fluentui/react-menu:build', - '@fluentui/react-overflow:build', - '@fluentui/react-persona:build', - '@fluentui/react-portal:build', - '@fluentui/react-popover:build', - '@fluentui/react-positioning:build', - '@fluentui/react-progress:build', - '@fluentui/react-provider:build', - '@fluentui/react-radio:build', - '@fluentui/react-select:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-skeleton:build', - '@fluentui/react-slider:build', - '@fluentui/react-spinbutton:build', - '@fluentui/react-spinner:build', - '@fluentui/react-switch:build', - '@fluentui/react-table:build', - '@fluentui/react-tabs:build', - '@fluentui/react-tabster:build', - '@fluentui/react-tags:build', - '@fluentui/react-textarea:build', - '@fluentui/react-theme:build', - '@fluentui/react-toast:build', - '@fluentui/react-toolbar:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-text:build', - '@fluentui/react-virtualizer:build', - '@fluentui/react-tree:build', - '@fluentui/react-message-bar:build', - '@fluentui/react-breadcrumb:build', - ], - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-alert:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infobutton:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-overflow:build': [ - '@fluentui/priority-overflow:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/priority-overflow:build': [], - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-virtualizer:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-migration-v8-v9:clean': { - roots: ['@fluentui/react-migration-v8-v9:clean'], - tasks: { - '@fluentui/react-migration-v8-v9:clean': { - id: '@fluentui/react-migration-v8-v9:clean', - target: { project: '@fluentui/react-migration-v8-v9', target: 'clean' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:clean': [] }, - }, - '@fluentui/react-migration-v8-v9:code-style': { - roots: ['@fluentui/react-migration-v8-v9:code-style'], - tasks: { - '@fluentui/react-migration-v8-v9:code-style': { - id: '@fluentui/react-migration-v8-v9:code-style', - target: { project: '@fluentui/react-migration-v8-v9', target: 'code-style' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:code-style': [] }, - }, - '@fluentui/react-migration-v8-v9:just': { - roots: ['@fluentui/react-migration-v8-v9:just'], - tasks: { - '@fluentui/react-migration-v8-v9:just': { - id: '@fluentui/react-migration-v8-v9:just', - target: { project: '@fluentui/react-migration-v8-v9', target: 'just' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:just': [] }, - }, - '@fluentui/react-migration-v8-v9:lint': { - roots: ['@fluentui/react-migration-v8-v9:lint'], - tasks: { - '@fluentui/react-migration-v8-v9:lint': { - id: '@fluentui/react-migration-v8-v9:lint', - target: { project: '@fluentui/react-migration-v8-v9', target: 'lint' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:lint': [] }, - }, - '@fluentui/react-migration-v8-v9:test': { - roots: ['@fluentui/react-migration-v8-v9:test'], - tasks: { - '@fluentui/react-migration-v8-v9:test': { - id: '@fluentui/react-migration-v8-v9:test', - target: { project: '@fluentui/react-migration-v8-v9', target: 'test' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:test': [] }, - }, - '@fluentui/react-migration-v8-v9:type-check': { - roots: ['@fluentui/react-migration-v8-v9:type-check'], - tasks: { - '@fluentui/react-migration-v8-v9:type-check': { - id: '@fluentui/react-migration-v8-v9:type-check', - target: { project: '@fluentui/react-migration-v8-v9', target: 'type-check' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:type-check': [] }, - }, - '@fluentui/react-migration-v8-v9:generate-api': { - roots: ['@fluentui/react-migration-v8-v9:generate-api'], - tasks: { - '@fluentui/react-migration-v8-v9:generate-api': { - id: '@fluentui/react-migration-v8-v9:generate-api', - target: { project: '@fluentui/react-migration-v8-v9', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:generate-api': [] }, - }, - '@fluentui/react-migration-v8-v9:storybook': { - roots: ['@fluentui/react-migration-v8-v9:storybook'], - tasks: { - '@fluentui/react-migration-v8-v9:storybook': { - id: '@fluentui/react-migration-v8-v9:storybook', - target: { project: '@fluentui/react-migration-v8-v9', target: 'storybook' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:storybook': [] }, - }, - '@fluentui/react-migration-v8-v9:start': { - roots: ['@fluentui/react-migration-v8-v9:start'], - tasks: { - '@fluentui/react-migration-v8-v9:start': { - id: '@fluentui/react-migration-v8-v9:start', - target: { project: '@fluentui/react-migration-v8-v9', target: 'start' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-migration-v8-v9:start': [] }, - }, - '@fluentui/react-migration-v8-v9:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-migration-v8-v9:nx-release-publish': { - id: '@fluentui/react-migration-v8-v9:nx-release-publish', - target: { project: '@fluentui/react-migration-v8-v9', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: {}, - }, - '@fluentui/fluent2-theme:nx-release-publish': { - id: '@fluentui/fluent2-theme:nx-release-publish', - target: { project: '@fluentui/fluent2-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/fluent2-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-migration-v8-v9:nx-release-publish': [ - '@fluentui/fluent2-theme:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/fluent2-theme:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-storybook-addon:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-storybook-addon:build': { - id: '@fluentui/react-storybook-addon:build', - target: { project: '@fluentui/react-storybook-addon', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-storybook-addon:build': ['@fluentui/react-theme:build', '@fluentui/react-provider:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-storybook-addon:clean': { - roots: ['@fluentui/react-storybook-addon:clean'], - tasks: { - '@fluentui/react-storybook-addon:clean': { - id: '@fluentui/react-storybook-addon:clean', - target: { project: '@fluentui/react-storybook-addon', target: 'clean' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:clean': [] }, - }, - '@fluentui/react-storybook-addon:code-style': { - roots: ['@fluentui/react-storybook-addon:code-style'], - tasks: { - '@fluentui/react-storybook-addon:code-style': { - id: '@fluentui/react-storybook-addon:code-style', - target: { project: '@fluentui/react-storybook-addon', target: 'code-style' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:code-style': [] }, - }, - '@fluentui/react-storybook-addon:just': { - roots: ['@fluentui/react-storybook-addon:just'], - tasks: { - '@fluentui/react-storybook-addon:just': { - id: '@fluentui/react-storybook-addon:just', - target: { project: '@fluentui/react-storybook-addon', target: 'just' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:just': [] }, - }, - '@fluentui/react-storybook-addon:lint': { - roots: ['@fluentui/react-storybook-addon:lint'], - tasks: { - '@fluentui/react-storybook-addon:lint': { - id: '@fluentui/react-storybook-addon:lint', - target: { project: '@fluentui/react-storybook-addon', target: 'lint' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:lint': [] }, - }, - '@fluentui/react-storybook-addon:start': { - roots: ['@fluentui/react-storybook-addon:start'], - tasks: { - '@fluentui/react-storybook-addon:start': { - id: '@fluentui/react-storybook-addon:start', - target: { project: '@fluentui/react-storybook-addon', target: 'start' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:start': [] }, - }, - '@fluentui/react-storybook-addon:test': { - roots: ['@fluentui/react-storybook-addon:test'], - tasks: { - '@fluentui/react-storybook-addon:test': { - id: '@fluentui/react-storybook-addon:test', - target: { project: '@fluentui/react-storybook-addon', target: 'test' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:test': [] }, - }, - '@fluentui/react-storybook-addon:storybook': { - roots: ['@fluentui/react-storybook-addon:storybook'], - tasks: { - '@fluentui/react-storybook-addon:storybook': { - id: '@fluentui/react-storybook-addon:storybook', - target: { project: '@fluentui/react-storybook-addon', target: 'storybook' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:storybook': [] }, - }, - '@fluentui/react-storybook-addon:type-check': { - roots: ['@fluentui/react-storybook-addon:type-check'], - tasks: { - '@fluentui/react-storybook-addon:type-check': { - id: '@fluentui/react-storybook-addon:type-check', - target: { project: '@fluentui/react-storybook-addon', target: 'type-check' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:type-check': [] }, - }, - '@fluentui/react-storybook-addon:generate-api': { - roots: ['@fluentui/react-storybook-addon:generate-api'], - tasks: { - '@fluentui/react-storybook-addon:generate-api': { - id: '@fluentui/react-storybook-addon:generate-api', - target: { project: '@fluentui/react-storybook-addon', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-storybook-addon:generate-api': [] }, - }, - '@fluentui/react-storybook-addon:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-storybook-addon:nx-release-publish': { - id: '@fluentui/react-storybook-addon:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: {}, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-storybook-addon:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-motion-preview:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-motion-preview:clean': { - roots: ['@fluentui/react-motion-preview:clean'], - tasks: { - '@fluentui/react-motion-preview:clean': { - id: '@fluentui/react-motion-preview:clean', - target: { project: '@fluentui/react-motion-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motion-preview:clean': [] }, - }, - '@fluentui/react-motion-preview:generate-api': { - roots: ['@fluentui/react-motion-preview:generate-api'], - tasks: { - '@fluentui/react-motion-preview:generate-api': { - id: '@fluentui/react-motion-preview:generate-api', - target: { project: '@fluentui/react-motion-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motion-preview:generate-api': [] }, - }, - '@fluentui/react-motion-preview:lint': { - roots: ['@fluentui/react-motion-preview:lint'], - tasks: { - '@fluentui/react-motion-preview:lint': { - id: '@fluentui/react-motion-preview:lint', - target: { project: '@fluentui/react-motion-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motion-preview:lint': [] }, - }, - '@fluentui/react-motion-preview:start': { - roots: ['@fluentui/react-motion-preview:start'], - tasks: { - '@fluentui/react-motion-preview:start': { - id: '@fluentui/react-motion-preview:start', - target: { project: '@fluentui/react-motion-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motion-preview:start': [] }, - }, - '@fluentui/react-motion-preview:storybook': { - roots: ['@fluentui/react-motion-preview:storybook'], - tasks: { - '@fluentui/react-motion-preview:storybook': { - id: '@fluentui/react-motion-preview:storybook', - target: { project: '@fluentui/react-motion-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motion-preview:storybook': [] }, - }, - '@fluentui/react-motion-preview:test': { - roots: ['@fluentui/react-motion-preview:test'], - tasks: { - '@fluentui/react-motion-preview:test': { - id: '@fluentui/react-motion-preview:test', - target: { project: '@fluentui/react-motion-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motion-preview:test': [] }, - }, - '@fluentui/react-motion-preview:test-ssr': { - roots: ['@fluentui/react-motion-preview:test-ssr'], - tasks: { - '@fluentui/react-motion-preview:test-ssr': { - id: '@fluentui/react-motion-preview:test-ssr', - target: { project: '@fluentui/react-motion-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motion-preview:test-ssr': [] }, - }, - '@fluentui/react-motion-preview:type-check': { - roots: ['@fluentui/react-motion-preview:type-check'], - tasks: { - '@fluentui/react-motion-preview:type-check': { - id: '@fluentui/react-motion-preview:type-check', - target: { project: '@fluentui/react-motion-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-motion-preview:type-check': [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-rating-preview:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-rating-preview:build': { - id: '@fluentui/react-rating-preview:build', - target: { project: '@fluentui/react-rating-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-rating-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-rating-preview:clean': { - roots: ['@fluentui/react-rating-preview:clean'], - tasks: { - '@fluentui/react-rating-preview:clean': { - id: '@fluentui/react-rating-preview:clean', - target: { project: '@fluentui/react-rating-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-rating-preview:clean': [] }, - }, - '@fluentui/react-rating-preview:generate-api': { - roots: ['@fluentui/react-rating-preview:generate-api'], - tasks: { - '@fluentui/react-rating-preview:generate-api': { - id: '@fluentui/react-rating-preview:generate-api', - target: { project: '@fluentui/react-rating-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-rating-preview:generate-api': [] }, - }, - '@fluentui/react-rating-preview:lint': { - roots: ['@fluentui/react-rating-preview:lint'], - tasks: { - '@fluentui/react-rating-preview:lint': { - id: '@fluentui/react-rating-preview:lint', - target: { project: '@fluentui/react-rating-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-rating-preview:lint': [] }, - }, - '@fluentui/react-rating-preview:start': { - roots: ['@fluentui/react-rating-preview:start'], - tasks: { - '@fluentui/react-rating-preview:start': { - id: '@fluentui/react-rating-preview:start', - target: { project: '@fluentui/react-rating-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-rating-preview:start': [] }, - }, - '@fluentui/react-rating-preview:storybook': { - roots: ['@fluentui/react-rating-preview:storybook'], - tasks: { - '@fluentui/react-rating-preview:storybook': { - id: '@fluentui/react-rating-preview:storybook', - target: { project: '@fluentui/react-rating-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-rating-preview:storybook': [] }, - }, - '@fluentui/react-rating-preview:test': { - roots: ['@fluentui/react-rating-preview:test'], - tasks: { - '@fluentui/react-rating-preview:test': { - id: '@fluentui/react-rating-preview:test', - target: { project: '@fluentui/react-rating-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-rating-preview:test': [] }, - }, - '@fluentui/react-rating-preview:test-ssr': { - roots: ['@fluentui/react-rating-preview:test-ssr'], - tasks: { - '@fluentui/react-rating-preview:test-ssr': { - id: '@fluentui/react-rating-preview:test-ssr', - target: { project: '@fluentui/react-rating-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-rating-preview:test-ssr': [] }, - }, - '@fluentui/react-rating-preview:type-check': { - roots: ['@fluentui/react-rating-preview:type-check'], - tasks: { - '@fluentui/react-rating-preview:type-check': { - id: '@fluentui/react-rating-preview:type-check', - target: { project: '@fluentui/react-rating-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-rating-preview:type-check': [] }, - }, - '@fluentui/react-rating-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-rating-preview:nx-release-publish': { - id: '@fluentui/react-rating-preview:nx-release-publish', - target: { project: '@fluentui/react-rating-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-rating-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-search-preview:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-search-preview:build': { - id: '@fluentui/react-search-preview:build', - target: { project: '@fluentui/react-search-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-search-preview:build': [ - '@fluentui/react-input:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-search-preview:clean': { - roots: ['@fluentui/react-search-preview:clean'], - tasks: { - '@fluentui/react-search-preview:clean': { - id: '@fluentui/react-search-preview:clean', - target: { project: '@fluentui/react-search-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:clean': [] }, - }, - '@fluentui/react-search-preview:code-style': { - roots: ['@fluentui/react-search-preview:code-style'], - tasks: { - '@fluentui/react-search-preview:code-style': { - id: '@fluentui/react-search-preview:code-style', - target: { project: '@fluentui/react-search-preview', target: 'code-style' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:code-style': [] }, - }, - '@fluentui/react-search-preview:just': { - roots: ['@fluentui/react-search-preview:just'], - tasks: { - '@fluentui/react-search-preview:just': { - id: '@fluentui/react-search-preview:just', - target: { project: '@fluentui/react-search-preview', target: 'just' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:just': [] }, - }, - '@fluentui/react-search-preview:lint': { - roots: ['@fluentui/react-search-preview:lint'], - tasks: { - '@fluentui/react-search-preview:lint': { - id: '@fluentui/react-search-preview:lint', - target: { project: '@fluentui/react-search-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:lint': [] }, - }, - '@fluentui/react-search-preview:test': { - roots: ['@fluentui/react-search-preview:test'], - tasks: { - '@fluentui/react-search-preview:test': { - id: '@fluentui/react-search-preview:test', - target: { project: '@fluentui/react-search-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:test': [] }, - }, - '@fluentui/react-search-preview:test-ssr': { - roots: ['@fluentui/react-search-preview:test-ssr'], - tasks: { - '@fluentui/react-search-preview:test-ssr': { - id: '@fluentui/react-search-preview:test-ssr', - target: { project: '@fluentui/react-search-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:test-ssr': [] }, - }, - '@fluentui/react-search-preview:type-check': { - roots: ['@fluentui/react-search-preview:type-check'], - tasks: { - '@fluentui/react-search-preview:type-check': { - id: '@fluentui/react-search-preview:type-check', - target: { project: '@fluentui/react-search-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:type-check': [] }, - }, - '@fluentui/react-search-preview:generate-api': { - roots: ['@fluentui/react-search-preview:generate-api'], - tasks: { - '@fluentui/react-search-preview:generate-api': { - id: '@fluentui/react-search-preview:generate-api', - target: { project: '@fluentui/react-search-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:generate-api': [] }, - }, - '@fluentui/react-search-preview:storybook': { - roots: ['@fluentui/react-search-preview:storybook'], - tasks: { - '@fluentui/react-search-preview:storybook': { - id: '@fluentui/react-search-preview:storybook', - target: { project: '@fluentui/react-search-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:storybook': [] }, - }, - '@fluentui/react-search-preview:start': { - roots: ['@fluentui/react-search-preview:start'], - tasks: { - '@fluentui/react-search-preview:start': { - id: '@fluentui/react-search-preview:start', - target: { project: '@fluentui/react-search-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-search-preview:start': [] }, - }, - '@fluentui/react-search-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-search-preview:nx-release-publish': { - id: '@fluentui/react-search-preview:nx-release-publish', - target: { project: '@fluentui/react-search-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: {}, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-search-preview:nx-release-publish': [ - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-portal-compat:build': { - roots: [ - '@fluentui/react-portal-compat-context:build', - '@fluentui/tokens:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - '@fluentui/priority-overflow:build', - ], - tasks: { - '@fluentui/react-portal-compat:build': { - id: '@fluentui/react-portal-compat:build', - target: { project: '@fluentui/react-portal-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:build': { - id: '@fluentui/react-components:build', - target: { project: '@fluentui/react-components', target: 'build' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:build': { - id: '@fluentui/react-alert:build', - target: { project: '@fluentui/react-alert', target: 'build' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:build': { - id: '@fluentui/react-infobutton:build', - target: { project: '@fluentui/react-infobutton', target: 'build' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:build': { - id: '@fluentui/react-overflow:build', - target: { project: '@fluentui/react-overflow', target: 'build' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:build': { - id: '@fluentui/react-virtualizer:build', - target: { project: '@fluentui/react-virtualizer', target: 'build' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-portal-compat:build': [ - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-tabster:build', - '@fluentui/react-components:build', - '@fluentui/react-shared-contexts:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-components:build': [ - '@fluentui/react-accordion:build', - '@fluentui/react-alert:build', - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-button:build', - '@fluentui/react-card:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-combobox:build', - '@fluentui/react-dialog:build', - '@fluentui/react-divider:build', - '@fluentui/react-drawer:build', - '@fluentui/react-field:build', - '@fluentui/react-image:build', - '@fluentui/react-infobutton:build', - '@fluentui/react-infolabel:build', - '@fluentui/react-input:build', - '@fluentui/react-label:build', - '@fluentui/react-link:build', - '@fluentui/react-menu:build', - '@fluentui/react-overflow:build', - '@fluentui/react-persona:build', - '@fluentui/react-portal:build', - '@fluentui/react-popover:build', - '@fluentui/react-positioning:build', - '@fluentui/react-progress:build', - '@fluentui/react-provider:build', - '@fluentui/react-radio:build', - '@fluentui/react-select:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-skeleton:build', - '@fluentui/react-slider:build', - '@fluentui/react-spinbutton:build', - '@fluentui/react-spinner:build', - '@fluentui/react-switch:build', - '@fluentui/react-table:build', - '@fluentui/react-tabs:build', - '@fluentui/react-tabster:build', - '@fluentui/react-tags:build', - '@fluentui/react-textarea:build', - '@fluentui/react-theme:build', - '@fluentui/react-toast:build', - '@fluentui/react-toolbar:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-text:build', - '@fluentui/react-virtualizer:build', - '@fluentui/react-tree:build', - '@fluentui/react-message-bar:build', - '@fluentui/react-breadcrumb:build', - ], - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-alert:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infobutton:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-overflow:build': [ - '@fluentui/priority-overflow:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/priority-overflow:build': [], - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-virtualizer:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-portal-compat:bundle-size': { - roots: ['@fluentui/react-portal-compat:bundle-size'], - tasks: { - '@fluentui/react-portal-compat:bundle-size': { - id: '@fluentui/react-portal-compat:bundle-size', - target: { project: '@fluentui/react-portal-compat', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:bundle-size': [] }, - }, - '@fluentui/react-portal-compat:clean': { - roots: ['@fluentui/react-portal-compat:clean'], - tasks: { - '@fluentui/react-portal-compat:clean': { - id: '@fluentui/react-portal-compat:clean', - target: { project: '@fluentui/react-portal-compat', target: 'clean' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:clean': [] }, - }, - '@fluentui/react-portal-compat:code-style': { - roots: ['@fluentui/react-portal-compat:code-style'], - tasks: { - '@fluentui/react-portal-compat:code-style': { - id: '@fluentui/react-portal-compat:code-style', - target: { project: '@fluentui/react-portal-compat', target: 'code-style' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:code-style': [] }, - }, - '@fluentui/react-portal-compat:e2e': { - roots: ['@fluentui/react-portal-compat:e2e'], - tasks: { - '@fluentui/react-portal-compat:e2e': { - id: '@fluentui/react-portal-compat:e2e', - target: { project: '@fluentui/react-portal-compat', target: 'e2e' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:e2e': [] }, - }, - '@fluentui/react-portal-compat:e2e:local': { - roots: ['@fluentui/react-portal-compat:e2e:local'], - tasks: { - '@fluentui/react-portal-compat:e2e:local': { - id: '@fluentui/react-portal-compat:e2e:local', - target: { project: '@fluentui/react-portal-compat', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:e2e:local': [] }, - }, - '@fluentui/react-portal-compat:just': { - roots: ['@fluentui/react-portal-compat:just'], - tasks: { - '@fluentui/react-portal-compat:just': { - id: '@fluentui/react-portal-compat:just', - target: { project: '@fluentui/react-portal-compat', target: 'just' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:just': [] }, - }, - '@fluentui/react-portal-compat:lint': { - roots: ['@fluentui/react-portal-compat:lint'], - tasks: { - '@fluentui/react-portal-compat:lint': { - id: '@fluentui/react-portal-compat:lint', - target: { project: '@fluentui/react-portal-compat', target: 'lint' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:lint': [] }, - }, - '@fluentui/react-portal-compat:test': { - roots: ['@fluentui/react-portal-compat:test'], - tasks: { - '@fluentui/react-portal-compat:test': { - id: '@fluentui/react-portal-compat:test', - target: { project: '@fluentui/react-portal-compat', target: 'test' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:test': [] }, - }, - '@fluentui/react-portal-compat:type-check': { - roots: ['@fluentui/react-portal-compat:type-check'], - tasks: { - '@fluentui/react-portal-compat:type-check': { - id: '@fluentui/react-portal-compat:type-check', - target: { project: '@fluentui/react-portal-compat', target: 'type-check' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:type-check': [] }, - }, - '@fluentui/react-portal-compat:generate-api': { - roots: ['@fluentui/react-portal-compat:generate-api'], - tasks: { - '@fluentui/react-portal-compat:generate-api': { - id: '@fluentui/react-portal-compat:generate-api', - target: { project: '@fluentui/react-portal-compat', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:generate-api': [] }, - }, - '@fluentui/react-portal-compat:test-ssr': { - roots: ['@fluentui/react-portal-compat:test-ssr'], - tasks: { - '@fluentui/react-portal-compat:test-ssr': { - id: '@fluentui/react-portal-compat:test-ssr', - target: { project: '@fluentui/react-portal-compat', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal-compat:test-ssr': [] }, - }, - '@fluentui/react-portal-compat:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-portal-compat:nx-release-publish': { - id: '@fluentui/react-portal-compat:nx-release-publish', - target: { project: '@fluentui/react-portal-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat', - overrides: {}, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-portal-compat:nx-release-publish': [ - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-northstar-prototypes:build': { - roots: [ - '@fluentui/accessibility:build', - '@fluentui/docs-components:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - tasks: { - '@fluentui/react-northstar-prototypes:build': { - id: '@fluentui/react-northstar-prototypes:build', - target: { project: '@fluentui/react-northstar-prototypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: {}, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:build': { - id: '@fluentui/code-sandbox:build', - target: { project: '@fluentui/code-sandbox', target: 'build' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:build': { - id: '@fluentui/docs-components:build', - target: { project: '@fluentui/docs-components', target: 'build' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar-prototypes:build': [ - '@fluentui/accessibility:build', - '@fluentui/code-sandbox:build', - '@fluentui/docs-components:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/code-sandbox:build': ['@fluentui/docs-components:build', '@fluentui/react-northstar:build'], - '@fluentui/docs-components:build': [], - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-proptypes:build': [], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/react-northstar-prototypes:clean': { - roots: ['@fluentui/react-northstar-prototypes:clean'], - tasks: { - '@fluentui/react-northstar-prototypes:clean': { - id: '@fluentui/react-northstar-prototypes:clean', - target: { project: '@fluentui/react-northstar-prototypes', target: 'clean' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-prototypes:clean': [] }, - }, - '@fluentui/react-northstar-prototypes:lint': { - roots: ['@fluentui/react-northstar-prototypes:lint'], - tasks: { - '@fluentui/react-northstar-prototypes:lint': { - id: '@fluentui/react-northstar-prototypes:lint', - target: { project: '@fluentui/react-northstar-prototypes', target: 'lint' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-prototypes:lint': [] }, - }, - '@fluentui/react-northstar-prototypes:lint:fix': { - roots: ['@fluentui/react-northstar-prototypes:lint:fix'], - tasks: { - '@fluentui/react-northstar-prototypes:lint:fix': { - id: '@fluentui/react-northstar-prototypes:lint:fix', - target: { project: '@fluentui/react-northstar-prototypes', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar-prototypes:lint:fix': [] }, - }, - '@fluentui/react-northstar-prototypes:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-northstar-prototypes:nx-release-publish': { - id: '@fluentui/react-northstar-prototypes:nx-release-publish', - target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: {}, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:nx-release-publish': { - id: '@fluentui/code-sandbox:nx-release-publish', - target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:nx-release-publish': { - id: '@fluentui/docs-components:nx-release-publish', - target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar-prototypes:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/code-sandbox:nx-release-publish': [ - '@fluentui/docs-components:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/docs-components:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-list-preview:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-list-preview:build': { - id: '@fluentui/react-list-preview:build', - target: { project: '@fluentui/react-list-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-list-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-list-preview:clean': { - roots: ['@fluentui/react-list-preview:clean'], - tasks: { - '@fluentui/react-list-preview:clean': { - id: '@fluentui/react-list-preview:clean', - target: { project: '@fluentui/react-list-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-list-preview:clean': [] }, - }, - '@fluentui/react-list-preview:generate-api': { - roots: ['@fluentui/react-list-preview:generate-api'], - tasks: { - '@fluentui/react-list-preview:generate-api': { - id: '@fluentui/react-list-preview:generate-api', - target: { project: '@fluentui/react-list-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-list-preview:generate-api': [] }, - }, - '@fluentui/react-list-preview:lint': { - roots: ['@fluentui/react-list-preview:lint'], - tasks: { - '@fluentui/react-list-preview:lint': { - id: '@fluentui/react-list-preview:lint', - target: { project: '@fluentui/react-list-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-list-preview:lint': [] }, - }, - '@fluentui/react-list-preview:start': { - roots: ['@fluentui/react-list-preview:start'], - tasks: { - '@fluentui/react-list-preview:start': { - id: '@fluentui/react-list-preview:start', - target: { project: '@fluentui/react-list-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-list-preview:start': [] }, - }, - '@fluentui/react-list-preview:storybook': { - roots: ['@fluentui/react-list-preview:storybook'], - tasks: { - '@fluentui/react-list-preview:storybook': { - id: '@fluentui/react-list-preview:storybook', - target: { project: '@fluentui/react-list-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-list-preview:storybook': [] }, - }, - '@fluentui/react-list-preview:test': { - roots: ['@fluentui/react-list-preview:test'], - tasks: { - '@fluentui/react-list-preview:test': { - id: '@fluentui/react-list-preview:test', - target: { project: '@fluentui/react-list-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-list-preview:test': [] }, - }, - '@fluentui/react-list-preview:test-ssr': { - roots: ['@fluentui/react-list-preview:test-ssr'], - tasks: { - '@fluentui/react-list-preview:test-ssr': { - id: '@fluentui/react-list-preview:test-ssr', - target: { project: '@fluentui/react-list-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-list-preview:test-ssr': [] }, - }, - '@fluentui/react-list-preview:type-check': { - roots: ['@fluentui/react-list-preview:type-check'], - tasks: { - '@fluentui/react-list-preview:type-check': { - id: '@fluentui/react-list-preview:type-check', - target: { project: '@fluentui/react-list-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-list-preview:type-check': [] }, - }, - '@fluentui/react-list-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-list-preview:nx-release-publish': { - id: '@fluentui/react-list-preview:nx-release-publish', - target: { project: '@fluentui/react-list-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-list-preview', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-list-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/priority-overflow:build': { - roots: ['@fluentui/priority-overflow:build'], - tasks: { - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:build': [] }, - }, - '@fluentui/priority-overflow:bundle-size': { - roots: ['@fluentui/priority-overflow:bundle-size'], - tasks: { - '@fluentui/priority-overflow:bundle-size': { - id: '@fluentui/priority-overflow:bundle-size', - target: { project: '@fluentui/priority-overflow', target: 'bundle-size' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:bundle-size': [] }, - }, - '@fluentui/priority-overflow:clean': { - roots: ['@fluentui/priority-overflow:clean'], - tasks: { - '@fluentui/priority-overflow:clean': { - id: '@fluentui/priority-overflow:clean', - target: { project: '@fluentui/priority-overflow', target: 'clean' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:clean': [] }, - }, - '@fluentui/priority-overflow:code-style': { - roots: ['@fluentui/priority-overflow:code-style'], - tasks: { - '@fluentui/priority-overflow:code-style': { - id: '@fluentui/priority-overflow:code-style', - target: { project: '@fluentui/priority-overflow', target: 'code-style' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:code-style': [] }, - }, - '@fluentui/priority-overflow:just': { - roots: ['@fluentui/priority-overflow:just'], - tasks: { - '@fluentui/priority-overflow:just': { - id: '@fluentui/priority-overflow:just', - target: { project: '@fluentui/priority-overflow', target: 'just' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:just': [] }, - }, - '@fluentui/priority-overflow:lint': { - roots: ['@fluentui/priority-overflow:lint'], - tasks: { - '@fluentui/priority-overflow:lint': { - id: '@fluentui/priority-overflow:lint', - target: { project: '@fluentui/priority-overflow', target: 'lint' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:lint': [] }, - }, - '@fluentui/priority-overflow:test': { - roots: ['@fluentui/priority-overflow:test'], - tasks: { - '@fluentui/priority-overflow:test': { - id: '@fluentui/priority-overflow:test', - target: { project: '@fluentui/priority-overflow', target: 'test' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:test': [] }, - }, - '@fluentui/priority-overflow:type-check': { - roots: ['@fluentui/priority-overflow:type-check'], - tasks: { - '@fluentui/priority-overflow:type-check': { - id: '@fluentui/priority-overflow:type-check', - target: { project: '@fluentui/priority-overflow', target: 'type-check' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:type-check': [] }, - }, - '@fluentui/priority-overflow:generate-api': { - roots: ['@fluentui/priority-overflow:generate-api'], - tasks: { - '@fluentui/priority-overflow:generate-api': { - id: '@fluentui/priority-overflow:generate-api', - target: { project: '@fluentui/priority-overflow', target: 'generate-api' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:generate-api': [] }, - }, - '@fluentui/priority-overflow:test-ssr': { - roots: ['@fluentui/priority-overflow:test-ssr'], - tasks: { - '@fluentui/priority-overflow:test-ssr': { - id: '@fluentui/priority-overflow:test-ssr', - target: { project: '@fluentui/priority-overflow', target: 'test-ssr' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/priority-overflow:test-ssr': [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-nav-preview:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-nav-preview:build': { - id: '@fluentui/react-nav-preview:build', - target: { project: '@fluentui/react-nav-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-nav-preview:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-nav-preview:clean': { - roots: ['@fluentui/react-nav-preview:clean'], - tasks: { - '@fluentui/react-nav-preview:clean': { - id: '@fluentui/react-nav-preview:clean', - target: { project: '@fluentui/react-nav-preview', target: 'clean' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-nav-preview:clean': [] }, - }, - '@fluentui/react-nav-preview:generate-api': { - roots: ['@fluentui/react-nav-preview:generate-api'], - tasks: { - '@fluentui/react-nav-preview:generate-api': { - id: '@fluentui/react-nav-preview:generate-api', - target: { project: '@fluentui/react-nav-preview', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-nav-preview:generate-api': [] }, - }, - '@fluentui/react-nav-preview:lint': { - roots: ['@fluentui/react-nav-preview:lint'], - tasks: { - '@fluentui/react-nav-preview:lint': { - id: '@fluentui/react-nav-preview:lint', - target: { project: '@fluentui/react-nav-preview', target: 'lint' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-nav-preview:lint': [] }, - }, - '@fluentui/react-nav-preview:start': { - roots: ['@fluentui/react-nav-preview:start'], - tasks: { - '@fluentui/react-nav-preview:start': { - id: '@fluentui/react-nav-preview:start', - target: { project: '@fluentui/react-nav-preview', target: 'start' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-nav-preview:start': [] }, - }, - '@fluentui/react-nav-preview:storybook': { - roots: ['@fluentui/react-nav-preview:storybook'], - tasks: { - '@fluentui/react-nav-preview:storybook': { - id: '@fluentui/react-nav-preview:storybook', - target: { project: '@fluentui/react-nav-preview', target: 'storybook' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-nav-preview:storybook': [] }, - }, - '@fluentui/react-nav-preview:test': { - roots: ['@fluentui/react-nav-preview:test'], - tasks: { - '@fluentui/react-nav-preview:test': { - id: '@fluentui/react-nav-preview:test', - target: { project: '@fluentui/react-nav-preview', target: 'test' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-nav-preview:test': [] }, - }, - '@fluentui/react-nav-preview:test-ssr': { - roots: ['@fluentui/react-nav-preview:test-ssr'], - tasks: { - '@fluentui/react-nav-preview:test-ssr': { - id: '@fluentui/react-nav-preview:test-ssr', - target: { project: '@fluentui/react-nav-preview', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-nav-preview:test-ssr': [] }, - }, - '@fluentui/react-nav-preview:type-check': { - roots: ['@fluentui/react-nav-preview:type-check'], - tasks: { - '@fluentui/react-nav-preview:type-check': { - id: '@fluentui/react-nav-preview:type-check', - target: { project: '@fluentui/react-nav-preview', target: 'type-check' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-nav-preview:type-check': [] }, - }, - '@fluentui/react-nav-preview:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-nav-preview:nx-release-publish': { - id: '@fluentui/react-nav-preview:nx-release-publish', - target: { project: '@fluentui/react-nav-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-nav-preview', - overrides: {}, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-nav-preview:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-positioning:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build'], - tasks: { - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - }, - }, - '@fluentui/react-positioning:bundle-size': { - roots: ['@fluentui/react-positioning:bundle-size'], - tasks: { - '@fluentui/react-positioning:bundle-size': { - id: '@fluentui/react-positioning:bundle-size', - target: { project: '@fluentui/react-positioning', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:bundle-size': [] }, - }, - '@fluentui/react-positioning:clean': { - roots: ['@fluentui/react-positioning:clean'], - tasks: { - '@fluentui/react-positioning:clean': { - id: '@fluentui/react-positioning:clean', - target: { project: '@fluentui/react-positioning', target: 'clean' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:clean': [] }, - }, - '@fluentui/react-positioning:code-style': { - roots: ['@fluentui/react-positioning:code-style'], - tasks: { - '@fluentui/react-positioning:code-style': { - id: '@fluentui/react-positioning:code-style', - target: { project: '@fluentui/react-positioning', target: 'code-style' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:code-style': [] }, - }, - '@fluentui/react-positioning:just': { - roots: ['@fluentui/react-positioning:just'], - tasks: { - '@fluentui/react-positioning:just': { - id: '@fluentui/react-positioning:just', - target: { project: '@fluentui/react-positioning', target: 'just' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:just': [] }, - }, - '@fluentui/react-positioning:lint': { - roots: ['@fluentui/react-positioning:lint'], - tasks: { - '@fluentui/react-positioning:lint': { - id: '@fluentui/react-positioning:lint', - target: { project: '@fluentui/react-positioning', target: 'lint' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:lint': [] }, - }, - '@fluentui/react-positioning:test': { - roots: ['@fluentui/react-positioning:test'], - tasks: { - '@fluentui/react-positioning:test': { - id: '@fluentui/react-positioning:test', - target: { project: '@fluentui/react-positioning', target: 'test' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:test': [] }, - }, - '@fluentui/react-positioning:type-check': { - roots: ['@fluentui/react-positioning:type-check'], - tasks: { - '@fluentui/react-positioning:type-check': { - id: '@fluentui/react-positioning:type-check', - target: { project: '@fluentui/react-positioning', target: 'type-check' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:type-check': [] }, - }, - '@fluentui/react-positioning:generate-api': { - roots: ['@fluentui/react-positioning:generate-api'], - tasks: { - '@fluentui/react-positioning:generate-api': { - id: '@fluentui/react-positioning:generate-api', - target: { project: '@fluentui/react-positioning', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:generate-api': [] }, - }, - '@fluentui/react-positioning:test-ssr': { - roots: ['@fluentui/react-positioning:test-ssr'], - tasks: { - '@fluentui/react-positioning:test-ssr': { - id: '@fluentui/react-positioning:test-ssr', - target: { project: '@fluentui/react-positioning', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-positioning:test-ssr': [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: {}, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-virtualizer:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-virtualizer:build': { - id: '@fluentui/react-virtualizer:build', - target: { project: '@fluentui/react-virtualizer', target: 'build' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-virtualizer:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-virtualizer:clean': { - roots: ['@fluentui/react-virtualizer:clean'], - tasks: { - '@fluentui/react-virtualizer:clean': { - id: '@fluentui/react-virtualizer:clean', - target: { project: '@fluentui/react-virtualizer', target: 'clean' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:clean': [] }, - }, - '@fluentui/react-virtualizer:code-style': { - roots: ['@fluentui/react-virtualizer:code-style'], - tasks: { - '@fluentui/react-virtualizer:code-style': { - id: '@fluentui/react-virtualizer:code-style', - target: { project: '@fluentui/react-virtualizer', target: 'code-style' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:code-style': [] }, - }, - '@fluentui/react-virtualizer:just': { - roots: ['@fluentui/react-virtualizer:just'], - tasks: { - '@fluentui/react-virtualizer:just': { - id: '@fluentui/react-virtualizer:just', - target: { project: '@fluentui/react-virtualizer', target: 'just' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:just': [] }, - }, - '@fluentui/react-virtualizer:lint': { - roots: ['@fluentui/react-virtualizer:lint'], - tasks: { - '@fluentui/react-virtualizer:lint': { - id: '@fluentui/react-virtualizer:lint', - target: { project: '@fluentui/react-virtualizer', target: 'lint' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:lint': [] }, - }, - '@fluentui/react-virtualizer:test': { - roots: ['@fluentui/react-virtualizer:test'], - tasks: { - '@fluentui/react-virtualizer:test': { - id: '@fluentui/react-virtualizer:test', - target: { project: '@fluentui/react-virtualizer', target: 'test' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:test': [] }, - }, - '@fluentui/react-virtualizer:storybook': { - roots: ['@fluentui/react-virtualizer:storybook'], - tasks: { - '@fluentui/react-virtualizer:storybook': { - id: '@fluentui/react-virtualizer:storybook', - target: { project: '@fluentui/react-virtualizer', target: 'storybook' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:storybook': [] }, - }, - '@fluentui/react-virtualizer:start': { - roots: ['@fluentui/react-virtualizer:start'], - tasks: { - '@fluentui/react-virtualizer:start': { - id: '@fluentui/react-virtualizer:start', - target: { project: '@fluentui/react-virtualizer', target: 'start' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:start': [] }, - }, - '@fluentui/react-virtualizer:generate-api': { - roots: ['@fluentui/react-virtualizer:generate-api'], - tasks: { - '@fluentui/react-virtualizer:generate-api': { - id: '@fluentui/react-virtualizer:generate-api', - target: { project: '@fluentui/react-virtualizer', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:generate-api': [] }, - }, - '@fluentui/react-virtualizer:type-check': { - roots: ['@fluentui/react-virtualizer:type-check'], - tasks: { - '@fluentui/react-virtualizer:type-check': { - id: '@fluentui/react-virtualizer:type-check', - target: { project: '@fluentui/react-virtualizer', target: 'type-check' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:type-check': [] }, - }, - '@fluentui/react-virtualizer:test-ssr': { - roots: ['@fluentui/react-virtualizer:test-ssr'], - tasks: { - '@fluentui/react-virtualizer:test-ssr': { - id: '@fluentui/react-virtualizer:test-ssr', - target: { project: '@fluentui/react-virtualizer', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-virtualizer:test-ssr': [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-jsx-runtime:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-jsx-runtime:clean': { - roots: ['@fluentui/react-jsx-runtime:clean'], - tasks: { - '@fluentui/react-jsx-runtime:clean': { - id: '@fluentui/react-jsx-runtime:clean', - target: { project: '@fluentui/react-jsx-runtime', target: 'clean' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:clean': [] }, - }, - '@fluentui/react-jsx-runtime:code-style': { - roots: ['@fluentui/react-jsx-runtime:code-style'], - tasks: { - '@fluentui/react-jsx-runtime:code-style': { - id: '@fluentui/react-jsx-runtime:code-style', - target: { project: '@fluentui/react-jsx-runtime', target: 'code-style' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:code-style': [] }, - }, - '@fluentui/react-jsx-runtime:just': { - roots: ['@fluentui/react-jsx-runtime:just'], - tasks: { - '@fluentui/react-jsx-runtime:just': { - id: '@fluentui/react-jsx-runtime:just', - target: { project: '@fluentui/react-jsx-runtime', target: 'just' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:just': [] }, - }, - '@fluentui/react-jsx-runtime:lint': { - roots: ['@fluentui/react-jsx-runtime:lint'], - tasks: { - '@fluentui/react-jsx-runtime:lint': { - id: '@fluentui/react-jsx-runtime:lint', - target: { project: '@fluentui/react-jsx-runtime', target: 'lint' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:lint': [] }, - }, - '@fluentui/react-jsx-runtime:test': { - roots: ['@fluentui/react-jsx-runtime:test'], - tasks: { - '@fluentui/react-jsx-runtime:test': { - id: '@fluentui/react-jsx-runtime:test', - target: { project: '@fluentui/react-jsx-runtime', target: 'test' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:test': [] }, - }, - '@fluentui/react-jsx-runtime:type-check': { - roots: ['@fluentui/react-jsx-runtime:type-check'], - tasks: { - '@fluentui/react-jsx-runtime:type-check': { - id: '@fluentui/react-jsx-runtime:type-check', - target: { project: '@fluentui/react-jsx-runtime', target: 'type-check' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:type-check': [] }, - }, - '@fluentui/react-jsx-runtime:generate-api': { - roots: ['@fluentui/react-jsx-runtime:generate-api'], - tasks: { - '@fluentui/react-jsx-runtime:generate-api': { - id: '@fluentui/react-jsx-runtime:generate-api', - target: { project: '@fluentui/react-jsx-runtime', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:generate-api': [] }, - }, - '@fluentui/react-jsx-runtime:test-ssr': { - roots: ['@fluentui/react-jsx-runtime:test-ssr'], - tasks: { - '@fluentui/react-jsx-runtime:test-ssr': { - id: '@fluentui/react-jsx-runtime:test-ssr', - target: { project: '@fluentui/react-jsx-runtime', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:test-ssr': [] }, - }, - '@fluentui/react-jsx-runtime:bundle-size': { - roots: ['@fluentui/react-jsx-runtime:bundle-size'], - tasks: { - '@fluentui/react-jsx-runtime:bundle-size': { - id: '@fluentui/react-jsx-runtime:bundle-size', - target: { project: '@fluentui/react-jsx-runtime', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-jsx-runtime:bundle-size': [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: {}, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-message-bar:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/a11y-testing:build': [], - }, - }, - '@fluentui/react-message-bar:bundle-size': { - roots: ['@fluentui/react-message-bar:bundle-size'], - tasks: { - '@fluentui/react-message-bar:bundle-size': { - id: '@fluentui/react-message-bar:bundle-size', - target: { project: '@fluentui/react-message-bar', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:bundle-size': [] }, - }, - '@fluentui/react-message-bar:clean': { - roots: ['@fluentui/react-message-bar:clean'], - tasks: { - '@fluentui/react-message-bar:clean': { - id: '@fluentui/react-message-bar:clean', - target: { project: '@fluentui/react-message-bar', target: 'clean' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:clean': [] }, - }, - '@fluentui/react-message-bar:generate-api': { - roots: ['@fluentui/react-message-bar:generate-api'], - tasks: { - '@fluentui/react-message-bar:generate-api': { - id: '@fluentui/react-message-bar:generate-api', - target: { project: '@fluentui/react-message-bar', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:generate-api': [] }, - }, - '@fluentui/react-message-bar:lint': { - roots: ['@fluentui/react-message-bar:lint'], - tasks: { - '@fluentui/react-message-bar:lint': { - id: '@fluentui/react-message-bar:lint', - target: { project: '@fluentui/react-message-bar', target: 'lint' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:lint': [] }, - }, - '@fluentui/react-message-bar:start': { - roots: ['@fluentui/react-message-bar:start'], - tasks: { - '@fluentui/react-message-bar:start': { - id: '@fluentui/react-message-bar:start', - target: { project: '@fluentui/react-message-bar', target: 'start' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:start': [] }, - }, - '@fluentui/react-message-bar:storybook': { - roots: ['@fluentui/react-message-bar:storybook'], - tasks: { - '@fluentui/react-message-bar:storybook': { - id: '@fluentui/react-message-bar:storybook', - target: { project: '@fluentui/react-message-bar', target: 'storybook' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:storybook': [] }, - }, - '@fluentui/react-message-bar:test': { - roots: ['@fluentui/react-message-bar:test'], - tasks: { - '@fluentui/react-message-bar:test': { - id: '@fluentui/react-message-bar:test', - target: { project: '@fluentui/react-message-bar', target: 'test' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:test': [] }, - }, - '@fluentui/react-message-bar:test-ssr': { - roots: ['@fluentui/react-message-bar:test-ssr'], - tasks: { - '@fluentui/react-message-bar:test-ssr': { - id: '@fluentui/react-message-bar:test-ssr', - target: { project: '@fluentui/react-message-bar', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:test-ssr': [] }, - }, - '@fluentui/react-message-bar:type-check': { - roots: ['@fluentui/react-message-bar:type-check'], - tasks: { - '@fluentui/react-message-bar:type-check': { - id: '@fluentui/react-message-bar:type-check', - target: { project: '@fluentui/react-message-bar', target: 'type-check' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-message-bar:type-check': [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: {}, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-infobutton:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-infobutton:build': { - id: '@fluentui/react-infobutton:build', - target: { project: '@fluentui/react-infobutton', target: 'build' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-infobutton:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-infobutton:bundle-size': { - roots: ['@fluentui/react-infobutton:bundle-size'], - tasks: { - '@fluentui/react-infobutton:bundle-size': { - id: '@fluentui/react-infobutton:bundle-size', - target: { project: '@fluentui/react-infobutton', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:bundle-size': [] }, - }, - '@fluentui/react-infobutton:clean': { - roots: ['@fluentui/react-infobutton:clean'], - tasks: { - '@fluentui/react-infobutton:clean': { - id: '@fluentui/react-infobutton:clean', - target: { project: '@fluentui/react-infobutton', target: 'clean' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:clean': [] }, - }, - '@fluentui/react-infobutton:code-style': { - roots: ['@fluentui/react-infobutton:code-style'], - tasks: { - '@fluentui/react-infobutton:code-style': { - id: '@fluentui/react-infobutton:code-style', - target: { project: '@fluentui/react-infobutton', target: 'code-style' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:code-style': [] }, - }, - '@fluentui/react-infobutton:just': { - roots: ['@fluentui/react-infobutton:just'], - tasks: { - '@fluentui/react-infobutton:just': { - id: '@fluentui/react-infobutton:just', - target: { project: '@fluentui/react-infobutton', target: 'just' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:just': [] }, - }, - '@fluentui/react-infobutton:lint': { - roots: ['@fluentui/react-infobutton:lint'], - tasks: { - '@fluentui/react-infobutton:lint': { - id: '@fluentui/react-infobutton:lint', - target: { project: '@fluentui/react-infobutton', target: 'lint' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:lint': [] }, - }, - '@fluentui/react-infobutton:test': { - roots: ['@fluentui/react-infobutton:test'], - tasks: { - '@fluentui/react-infobutton:test': { - id: '@fluentui/react-infobutton:test', - target: { project: '@fluentui/react-infobutton', target: 'test' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:test': [] }, - }, - '@fluentui/react-infobutton:generate-api': { - roots: ['@fluentui/react-infobutton:generate-api'], - tasks: { - '@fluentui/react-infobutton:generate-api': { - id: '@fluentui/react-infobutton:generate-api', - target: { project: '@fluentui/react-infobutton', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:generate-api': [] }, - }, - '@fluentui/react-infobutton:type-check': { - roots: ['@fluentui/react-infobutton:type-check'], - tasks: { - '@fluentui/react-infobutton:type-check': { - id: '@fluentui/react-infobutton:type-check', - target: { project: '@fluentui/react-infobutton', target: 'type-check' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:type-check': [] }, - }, - '@fluentui/react-infobutton:storybook': { - roots: ['@fluentui/react-infobutton:storybook'], - tasks: { - '@fluentui/react-infobutton:storybook': { - id: '@fluentui/react-infobutton:storybook', - target: { project: '@fluentui/react-infobutton', target: 'storybook' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:storybook': [] }, - }, - '@fluentui/react-infobutton:start': { - roots: ['@fluentui/react-infobutton:start'], - tasks: { - '@fluentui/react-infobutton:start': { - id: '@fluentui/react-infobutton:start', - target: { project: '@fluentui/react-infobutton', target: 'start' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:start': [] }, - }, - '@fluentui/react-infobutton:e2e': { - roots: ['@fluentui/react-infobutton:e2e'], - tasks: { - '@fluentui/react-infobutton:e2e': { - id: '@fluentui/react-infobutton:e2e', - target: { project: '@fluentui/react-infobutton', target: 'e2e' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:e2e': [] }, - }, - '@fluentui/react-infobutton:e2e:local': { - roots: ['@fluentui/react-infobutton:e2e:local'], - tasks: { - '@fluentui/react-infobutton:e2e:local': { - id: '@fluentui/react-infobutton:e2e:local', - target: { project: '@fluentui/react-infobutton', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:e2e:local': [] }, - }, - '@fluentui/react-infobutton:test-ssr': { - roots: ['@fluentui/react-infobutton:test-ssr'], - tasks: { - '@fluentui/react-infobutton:test-ssr': { - id: '@fluentui/react-infobutton:test-ssr', - target: { project: '@fluentui/react-infobutton', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infobutton:test-ssr': [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: {}, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-breadcrumb:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-breadcrumb:clean': { - roots: ['@fluentui/react-breadcrumb:clean'], - tasks: { - '@fluentui/react-breadcrumb:clean': { - id: '@fluentui/react-breadcrumb:clean', - target: { project: '@fluentui/react-breadcrumb', target: 'clean' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:clean': [] }, - }, - '@fluentui/react-breadcrumb:code-style': { - roots: ['@fluentui/react-breadcrumb:code-style'], - tasks: { - '@fluentui/react-breadcrumb:code-style': { - id: '@fluentui/react-breadcrumb:code-style', - target: { project: '@fluentui/react-breadcrumb', target: 'code-style' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:code-style': [] }, - }, - '@fluentui/react-breadcrumb:e2e': { - roots: ['@fluentui/react-breadcrumb:e2e'], - tasks: { - '@fluentui/react-breadcrumb:e2e': { - id: '@fluentui/react-breadcrumb:e2e', - target: { project: '@fluentui/react-breadcrumb', target: 'e2e' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:e2e': [] }, - }, - '@fluentui/react-breadcrumb:e2e:local': { - roots: ['@fluentui/react-breadcrumb:e2e:local'], - tasks: { - '@fluentui/react-breadcrumb:e2e:local': { - id: '@fluentui/react-breadcrumb:e2e:local', - target: { project: '@fluentui/react-breadcrumb', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:e2e:local': [] }, - }, - '@fluentui/react-breadcrumb:just': { - roots: ['@fluentui/react-breadcrumb:just'], - tasks: { - '@fluentui/react-breadcrumb:just': { - id: '@fluentui/react-breadcrumb:just', - target: { project: '@fluentui/react-breadcrumb', target: 'just' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:just': [] }, - }, - '@fluentui/react-breadcrumb:lint': { - roots: ['@fluentui/react-breadcrumb:lint'], - tasks: { - '@fluentui/react-breadcrumb:lint': { - id: '@fluentui/react-breadcrumb:lint', - target: { project: '@fluentui/react-breadcrumb', target: 'lint' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:lint': [] }, - }, - '@fluentui/react-breadcrumb:test': { - roots: ['@fluentui/react-breadcrumb:test'], - tasks: { - '@fluentui/react-breadcrumb:test': { - id: '@fluentui/react-breadcrumb:test', - target: { project: '@fluentui/react-breadcrumb', target: 'test' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:test': [] }, - }, - '@fluentui/react-breadcrumb:type-check': { - roots: ['@fluentui/react-breadcrumb:type-check'], - tasks: { - '@fluentui/react-breadcrumb:type-check': { - id: '@fluentui/react-breadcrumb:type-check', - target: { project: '@fluentui/react-breadcrumb', target: 'type-check' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:type-check': [] }, - }, - '@fluentui/react-breadcrumb:generate-api': { - roots: ['@fluentui/react-breadcrumb:generate-api'], - tasks: { - '@fluentui/react-breadcrumb:generate-api': { - id: '@fluentui/react-breadcrumb:generate-api', - target: { project: '@fluentui/react-breadcrumb', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:generate-api': [] }, - }, - '@fluentui/react-breadcrumb:storybook': { - roots: ['@fluentui/react-breadcrumb:storybook'], - tasks: { - '@fluentui/react-breadcrumb:storybook': { - id: '@fluentui/react-breadcrumb:storybook', - target: { project: '@fluentui/react-breadcrumb', target: 'storybook' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:storybook': [] }, - }, - '@fluentui/react-breadcrumb:start': { - roots: ['@fluentui/react-breadcrumb:start'], - tasks: { - '@fluentui/react-breadcrumb:start': { - id: '@fluentui/react-breadcrumb:start', - target: { project: '@fluentui/react-breadcrumb', target: 'start' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:start': [] }, - }, - '@fluentui/react-breadcrumb:test-ssr': { - roots: ['@fluentui/react-breadcrumb:test-ssr'], - tasks: { - '@fluentui/react-breadcrumb:test-ssr': { - id: '@fluentui/react-breadcrumb:test-ssr', - target: { project: '@fluentui/react-breadcrumb', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-breadcrumb:test-ssr': [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: {}, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-spinbutton:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-spinbutton:bundle-size': { - roots: ['@fluentui/react-spinbutton:bundle-size'], - tasks: { - '@fluentui/react-spinbutton:bundle-size': { - id: '@fluentui/react-spinbutton:bundle-size', - target: { project: '@fluentui/react-spinbutton', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:bundle-size': [] }, - }, - '@fluentui/react-spinbutton:clean': { - roots: ['@fluentui/react-spinbutton:clean'], - tasks: { - '@fluentui/react-spinbutton:clean': { - id: '@fluentui/react-spinbutton:clean', - target: { project: '@fluentui/react-spinbutton', target: 'clean' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:clean': [] }, - }, - '@fluentui/react-spinbutton:code-style': { - roots: ['@fluentui/react-spinbutton:code-style'], - tasks: { - '@fluentui/react-spinbutton:code-style': { - id: '@fluentui/react-spinbutton:code-style', - target: { project: '@fluentui/react-spinbutton', target: 'code-style' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:code-style': [] }, - }, - '@fluentui/react-spinbutton:just': { - roots: ['@fluentui/react-spinbutton:just'], - tasks: { - '@fluentui/react-spinbutton:just': { - id: '@fluentui/react-spinbutton:just', - target: { project: '@fluentui/react-spinbutton', target: 'just' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:just': [] }, - }, - '@fluentui/react-spinbutton:lint': { - roots: ['@fluentui/react-spinbutton:lint'], - tasks: { - '@fluentui/react-spinbutton:lint': { - id: '@fluentui/react-spinbutton:lint', - target: { project: '@fluentui/react-spinbutton', target: 'lint' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:lint': [] }, - }, - '@fluentui/react-spinbutton:start': { - roots: ['@fluentui/react-spinbutton:start'], - tasks: { - '@fluentui/react-spinbutton:start': { - id: '@fluentui/react-spinbutton:start', - target: { project: '@fluentui/react-spinbutton', target: 'start' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:start': [] }, - }, - '@fluentui/react-spinbutton:test': { - roots: ['@fluentui/react-spinbutton:test'], - tasks: { - '@fluentui/react-spinbutton:test': { - id: '@fluentui/react-spinbutton:test', - target: { project: '@fluentui/react-spinbutton', target: 'test' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:test': [] }, - }, - '@fluentui/react-spinbutton:storybook': { - roots: ['@fluentui/react-spinbutton:storybook'], - tasks: { - '@fluentui/react-spinbutton:storybook': { - id: '@fluentui/react-spinbutton:storybook', - target: { project: '@fluentui/react-spinbutton', target: 'storybook' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:storybook': [] }, - }, - '@fluentui/react-spinbutton:type-check': { - roots: ['@fluentui/react-spinbutton:type-check'], - tasks: { - '@fluentui/react-spinbutton:type-check': { - id: '@fluentui/react-spinbutton:type-check', - target: { project: '@fluentui/react-spinbutton', target: 'type-check' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:type-check': [] }, - }, - '@fluentui/react-spinbutton:generate-api': { - roots: ['@fluentui/react-spinbutton:generate-api'], - tasks: { - '@fluentui/react-spinbutton:generate-api': { - id: '@fluentui/react-spinbutton:generate-api', - target: { project: '@fluentui/react-spinbutton', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:generate-api': [] }, - }, - '@fluentui/react-spinbutton:test-ssr': { - roots: ['@fluentui/react-spinbutton:test-ssr'], - tasks: { - '@fluentui/react-spinbutton:test-ssr': { - id: '@fluentui/react-spinbutton:test-ssr', - target: { project: '@fluentui/react-spinbutton', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinbutton:test-ssr': [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-components:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - '@fluentui/priority-overflow:build', - ], - tasks: { - '@fluentui/react-components:build': { - id: '@fluentui/react-components:build', - target: { project: '@fluentui/react-components', target: 'build' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:build': { - id: '@fluentui/react-alert:build', - target: { project: '@fluentui/react-alert', target: 'build' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:build': { - id: '@fluentui/react-infobutton:build', - target: { project: '@fluentui/react-infobutton', target: 'build' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:build': { - id: '@fluentui/react-overflow:build', - target: { project: '@fluentui/react-overflow', target: 'build' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:build': { - id: '@fluentui/react-virtualizer:build', - target: { project: '@fluentui/react-virtualizer', target: 'build' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-components:build': [ - '@fluentui/react-accordion:build', - '@fluentui/react-alert:build', - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-button:build', - '@fluentui/react-card:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-combobox:build', - '@fluentui/react-dialog:build', - '@fluentui/react-divider:build', - '@fluentui/react-drawer:build', - '@fluentui/react-field:build', - '@fluentui/react-image:build', - '@fluentui/react-infobutton:build', - '@fluentui/react-infolabel:build', - '@fluentui/react-input:build', - '@fluentui/react-label:build', - '@fluentui/react-link:build', - '@fluentui/react-menu:build', - '@fluentui/react-overflow:build', - '@fluentui/react-persona:build', - '@fluentui/react-portal:build', - '@fluentui/react-popover:build', - '@fluentui/react-positioning:build', - '@fluentui/react-progress:build', - '@fluentui/react-provider:build', - '@fluentui/react-radio:build', - '@fluentui/react-select:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-skeleton:build', - '@fluentui/react-slider:build', - '@fluentui/react-spinbutton:build', - '@fluentui/react-spinner:build', - '@fluentui/react-switch:build', - '@fluentui/react-table:build', - '@fluentui/react-tabs:build', - '@fluentui/react-tabster:build', - '@fluentui/react-tags:build', - '@fluentui/react-textarea:build', - '@fluentui/react-theme:build', - '@fluentui/react-toast:build', - '@fluentui/react-toolbar:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-text:build', - '@fluentui/react-virtualizer:build', - '@fluentui/react-tree:build', - '@fluentui/react-message-bar:build', - '@fluentui/react-breadcrumb:build', - ], - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-alert:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infobutton:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-overflow:build': [ - '@fluentui/priority-overflow:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/priority-overflow:build': [], - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-virtualizer:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-components:bundle-size': { - roots: ['@fluentui/react-components:bundle-size'], - tasks: { - '@fluentui/react-components:bundle-size': { - id: '@fluentui/react-components:bundle-size', - target: { project: '@fluentui/react-components', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:bundle-size': [] }, - }, - '@fluentui/react-components:clean': { - roots: ['@fluentui/react-components:clean'], - tasks: { - '@fluentui/react-components:clean': { - id: '@fluentui/react-components:clean', - target: { project: '@fluentui/react-components', target: 'clean' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:clean': [] }, - }, - '@fluentui/react-components:code-style': { - roots: ['@fluentui/react-components:code-style'], - tasks: { - '@fluentui/react-components:code-style': { - id: '@fluentui/react-components:code-style', - target: { project: '@fluentui/react-components', target: 'code-style' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:code-style': [] }, - }, - '@fluentui/react-components:just': { - roots: ['@fluentui/react-components:just'], - tasks: { - '@fluentui/react-components:just': { - id: '@fluentui/react-components:just', - target: { project: '@fluentui/react-components', target: 'just' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:just': [] }, - }, - '@fluentui/react-components:lint': { - roots: ['@fluentui/react-components:lint'], - tasks: { - '@fluentui/react-components:lint': { - id: '@fluentui/react-components:lint', - target: { project: '@fluentui/react-components', target: 'lint' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:lint': [] }, - }, - '@fluentui/react-components:start': { - roots: ['@fluentui/react-components:start'], - tasks: { - '@fluentui/react-components:start': { - id: '@fluentui/react-components:start', - target: { project: '@fluentui/react-components', target: 'start' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:start': [] }, - }, - '@fluentui/react-components:storybook': { - roots: ['@fluentui/react-components:storybook'], - tasks: { - '@fluentui/react-components:storybook': { - id: '@fluentui/react-components:storybook', - target: { project: '@fluentui/react-components', target: 'storybook' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:storybook': [] }, - }, - '@fluentui/react-components:test': { - roots: ['@fluentui/react-components:test'], - tasks: { - '@fluentui/react-components:test': { - id: '@fluentui/react-components:test', - target: { project: '@fluentui/react-components', target: 'test' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:test': [] }, - }, - '@fluentui/react-components:type-check': { - roots: ['@fluentui/react-components:type-check'], - tasks: { - '@fluentui/react-components:type-check': { - id: '@fluentui/react-components:type-check', - target: { project: '@fluentui/react-components', target: 'type-check' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:type-check': [] }, - }, - '@fluentui/react-components:generate-api': { - roots: ['@fluentui/react-components:generate-api'], - tasks: { - '@fluentui/react-components:generate-api': { - id: '@fluentui/react-components:generate-api', - target: { project: '@fluentui/react-components', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:generate-api': [] }, - }, - '@fluentui/react-components:verify-packaging': { - roots: ['@fluentui/react-components:verify-packaging'], - tasks: { - '@fluentui/react-components:verify-packaging': { - id: '@fluentui/react-components:verify-packaging', - target: { project: '@fluentui/react-components', target: 'verify-packaging' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-components:verify-packaging': [] }, - }, - '@fluentui/react-components:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: {}, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-theme-sass:build': { - roots: ['@fluentui/tokens:build'], - tasks: { - '@fluentui/react-theme-sass:build': { - id: '@fluentui/react-theme-sass:build', - target: { project: '@fluentui/react-theme-sass', target: 'build' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-theme-sass:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - }, - }, - '@fluentui/react-theme-sass:clean': { - roots: ['@fluentui/react-theme-sass:clean'], - tasks: { - '@fluentui/react-theme-sass:clean': { - id: '@fluentui/react-theme-sass:clean', - target: { project: '@fluentui/react-theme-sass', target: 'clean' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme-sass:clean': [] }, - }, - '@fluentui/react-theme-sass:code-style': { - roots: ['@fluentui/react-theme-sass:code-style'], - tasks: { - '@fluentui/react-theme-sass:code-style': { - id: '@fluentui/react-theme-sass:code-style', - target: { project: '@fluentui/react-theme-sass', target: 'code-style' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme-sass:code-style': [] }, - }, - '@fluentui/react-theme-sass:just': { - roots: ['@fluentui/react-theme-sass:just'], - tasks: { - '@fluentui/react-theme-sass:just': { - id: '@fluentui/react-theme-sass:just', - target: { project: '@fluentui/react-theme-sass', target: 'just' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme-sass:just': [] }, - }, - '@fluentui/react-theme-sass:lint': { - roots: ['@fluentui/react-theme-sass:lint'], - tasks: { - '@fluentui/react-theme-sass:lint': { - id: '@fluentui/react-theme-sass:lint', - target: { project: '@fluentui/react-theme-sass', target: 'lint' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme-sass:lint': [] }, - }, - '@fluentui/react-theme-sass:test': { - roots: ['@fluentui/react-theme-sass:test'], - tasks: { - '@fluentui/react-theme-sass:test': { - id: '@fluentui/react-theme-sass:test', - target: { project: '@fluentui/react-theme-sass', target: 'test' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme-sass:test': [] }, - }, - '@fluentui/react-theme-sass:type-check': { - roots: ['@fluentui/react-theme-sass:type-check'], - tasks: { - '@fluentui/react-theme-sass:type-check': { - id: '@fluentui/react-theme-sass:type-check', - target: { project: '@fluentui/react-theme-sass', target: 'type-check' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme-sass:type-check': [] }, - }, - '@fluentui/react-theme-sass:generate-api': { - roots: ['@fluentui/react-theme-sass:generate-api'], - tasks: { - '@fluentui/react-theme-sass:generate-api': { - id: '@fluentui/react-theme-sass:generate-api', - target: { project: '@fluentui/react-theme-sass', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme-sass:generate-api': [] }, - }, - '@fluentui/react-theme-sass:test-ssr': { - roots: ['@fluentui/react-theme-sass:test-ssr'], - tasks: { - '@fluentui/react-theme-sass:test-ssr': { - id: '@fluentui/react-theme-sass:test-ssr', - target: { project: '@fluentui/react-theme-sass', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme-sass:test-ssr': [] }, - }, - '@fluentui/react-theme-sass:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-theme-sass:nx-release-publish': { - id: '@fluentui/react-theme-sass:nx-release-publish', - target: { project: '@fluentui/react-theme-sass', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme-sass', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-theme-sass:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-accordion:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-accordion:bundle-size': { - roots: ['@fluentui/react-accordion:bundle-size'], - tasks: { - '@fluentui/react-accordion:bundle-size': { - id: '@fluentui/react-accordion:bundle-size', - target: { project: '@fluentui/react-accordion', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:bundle-size': [] }, - }, - '@fluentui/react-accordion:clean': { - roots: ['@fluentui/react-accordion:clean'], - tasks: { - '@fluentui/react-accordion:clean': { - id: '@fluentui/react-accordion:clean', - target: { project: '@fluentui/react-accordion', target: 'clean' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:clean': [] }, - }, - '@fluentui/react-accordion:code-style': { - roots: ['@fluentui/react-accordion:code-style'], - tasks: { - '@fluentui/react-accordion:code-style': { - id: '@fluentui/react-accordion:code-style', - target: { project: '@fluentui/react-accordion', target: 'code-style' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:code-style': [] }, - }, - '@fluentui/react-accordion:just': { - roots: ['@fluentui/react-accordion:just'], - tasks: { - '@fluentui/react-accordion:just': { - id: '@fluentui/react-accordion:just', - target: { project: '@fluentui/react-accordion', target: 'just' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:just': [] }, - }, - '@fluentui/react-accordion:lint': { - roots: ['@fluentui/react-accordion:lint'], - tasks: { - '@fluentui/react-accordion:lint': { - id: '@fluentui/react-accordion:lint', - target: { project: '@fluentui/react-accordion', target: 'lint' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:lint': [] }, - }, - '@fluentui/react-accordion:start': { - roots: ['@fluentui/react-accordion:start'], - tasks: { - '@fluentui/react-accordion:start': { - id: '@fluentui/react-accordion:start', - target: { project: '@fluentui/react-accordion', target: 'start' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:start': [] }, - }, - '@fluentui/react-accordion:test': { - roots: ['@fluentui/react-accordion:test'], - tasks: { - '@fluentui/react-accordion:test': { - id: '@fluentui/react-accordion:test', - target: { project: '@fluentui/react-accordion', target: 'test' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:test': [] }, - }, - '@fluentui/react-accordion:storybook': { - roots: ['@fluentui/react-accordion:storybook'], - tasks: { - '@fluentui/react-accordion:storybook': { - id: '@fluentui/react-accordion:storybook', - target: { project: '@fluentui/react-accordion', target: 'storybook' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:storybook': [] }, - }, - '@fluentui/react-accordion:type-check': { - roots: ['@fluentui/react-accordion:type-check'], - tasks: { - '@fluentui/react-accordion:type-check': { - id: '@fluentui/react-accordion:type-check', - target: { project: '@fluentui/react-accordion', target: 'type-check' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:type-check': [] }, - }, - '@fluentui/react-accordion:generate-api': { - roots: ['@fluentui/react-accordion:generate-api'], - tasks: { - '@fluentui/react-accordion:generate-api': { - id: '@fluentui/react-accordion:generate-api', - target: { project: '@fluentui/react-accordion', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:generate-api': [] }, - }, - '@fluentui/react-accordion:test-ssr': { - roots: ['@fluentui/react-accordion:test-ssr'], - tasks: { - '@fluentui/react-accordion:test-ssr': { - id: '@fluentui/react-accordion:test-ssr', - target: { project: '@fluentui/react-accordion', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-accordion:test-ssr': [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: {}, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-utilities:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], - tasks: { - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - }, - }, - '@fluentui/react-utilities:bundle-size': { - roots: ['@fluentui/react-utilities:bundle-size'], - tasks: { - '@fluentui/react-utilities:bundle-size': { - id: '@fluentui/react-utilities:bundle-size', - target: { project: '@fluentui/react-utilities', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:bundle-size': [] }, - }, - '@fluentui/react-utilities:clean': { - roots: ['@fluentui/react-utilities:clean'], - tasks: { - '@fluentui/react-utilities:clean': { - id: '@fluentui/react-utilities:clean', - target: { project: '@fluentui/react-utilities', target: 'clean' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:clean': [] }, - }, - '@fluentui/react-utilities:code-style': { - roots: ['@fluentui/react-utilities:code-style'], - tasks: { - '@fluentui/react-utilities:code-style': { - id: '@fluentui/react-utilities:code-style', - target: { project: '@fluentui/react-utilities', target: 'code-style' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:code-style': [] }, - }, - '@fluentui/react-utilities:just': { - roots: ['@fluentui/react-utilities:just'], - tasks: { - '@fluentui/react-utilities:just': { - id: '@fluentui/react-utilities:just', - target: { project: '@fluentui/react-utilities', target: 'just' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:just': [] }, - }, - '@fluentui/react-utilities:lint': { - roots: ['@fluentui/react-utilities:lint'], - tasks: { - '@fluentui/react-utilities:lint': { - id: '@fluentui/react-utilities:lint', - target: { project: '@fluentui/react-utilities', target: 'lint' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:lint': [] }, - }, - '@fluentui/react-utilities:test': { - roots: ['@fluentui/react-utilities:test'], - tasks: { - '@fluentui/react-utilities:test': { - id: '@fluentui/react-utilities:test', - target: { project: '@fluentui/react-utilities', target: 'test' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:test': [] }, - }, - '@fluentui/react-utilities:type-check': { - roots: ['@fluentui/react-utilities:type-check'], - tasks: { - '@fluentui/react-utilities:type-check': { - id: '@fluentui/react-utilities:type-check', - target: { project: '@fluentui/react-utilities', target: 'type-check' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:type-check': [] }, - }, - '@fluentui/react-utilities:generate-api': { - roots: ['@fluentui/react-utilities:generate-api'], - tasks: { - '@fluentui/react-utilities:generate-api': { - id: '@fluentui/react-utilities:generate-api', - target: { project: '@fluentui/react-utilities', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:generate-api': [] }, - }, - '@fluentui/react-utilities:test-ssr': { - roots: ['@fluentui/react-utilities:test-ssr'], - tasks: { - '@fluentui/react-utilities:test-ssr': { - id: '@fluentui/react-utilities:test-ssr', - target: { project: '@fluentui/react-utilities', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:test-ssr': [] }, - }, - '@fluentui/react-utilities:e2e': { - roots: ['@fluentui/react-utilities:e2e'], - tasks: { - '@fluentui/react-utilities:e2e': { - id: '@fluentui/react-utilities:e2e', - target: { project: '@fluentui/react-utilities', target: 'e2e' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:e2e': [] }, - }, - '@fluentui/react-utilities:e2e:local': { - roots: ['@fluentui/react-utilities:e2e:local'], - tasks: { - '@fluentui/react-utilities:e2e:local': { - id: '@fluentui/react-utilities:e2e:local', - target: { project: '@fluentui/react-utilities', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-utilities:e2e:local': [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-infolabel:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-infolabel:clean': { - roots: ['@fluentui/react-infolabel:clean'], - tasks: { - '@fluentui/react-infolabel:clean': { - id: '@fluentui/react-infolabel:clean', - target: { project: '@fluentui/react-infolabel', target: 'clean' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infolabel:clean': [] }, - }, - '@fluentui/react-infolabel:generate-api': { - roots: ['@fluentui/react-infolabel:generate-api'], - tasks: { - '@fluentui/react-infolabel:generate-api': { - id: '@fluentui/react-infolabel:generate-api', - target: { project: '@fluentui/react-infolabel', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infolabel:generate-api': [] }, - }, - '@fluentui/react-infolabel:lint': { - roots: ['@fluentui/react-infolabel:lint'], - tasks: { - '@fluentui/react-infolabel:lint': { - id: '@fluentui/react-infolabel:lint', - target: { project: '@fluentui/react-infolabel', target: 'lint' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infolabel:lint': [] }, - }, - '@fluentui/react-infolabel:start': { - roots: ['@fluentui/react-infolabel:start'], - tasks: { - '@fluentui/react-infolabel:start': { - id: '@fluentui/react-infolabel:start', - target: { project: '@fluentui/react-infolabel', target: 'start' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infolabel:start': [] }, - }, - '@fluentui/react-infolabel:storybook': { - roots: ['@fluentui/react-infolabel:storybook'], - tasks: { - '@fluentui/react-infolabel:storybook': { - id: '@fluentui/react-infolabel:storybook', - target: { project: '@fluentui/react-infolabel', target: 'storybook' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infolabel:storybook': [] }, - }, - '@fluentui/react-infolabel:test': { - roots: ['@fluentui/react-infolabel:test'], - tasks: { - '@fluentui/react-infolabel:test': { - id: '@fluentui/react-infolabel:test', - target: { project: '@fluentui/react-infolabel', target: 'test' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infolabel:test': [] }, - }, - '@fluentui/react-infolabel:test-ssr': { - roots: ['@fluentui/react-infolabel:test-ssr'], - tasks: { - '@fluentui/react-infolabel:test-ssr': { - id: '@fluentui/react-infolabel:test-ssr', - target: { project: '@fluentui/react-infolabel', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infolabel:test-ssr': [] }, - }, - '@fluentui/react-infolabel:type-check': { - roots: ['@fluentui/react-infolabel:type-check'], - tasks: { - '@fluentui/react-infolabel:type-check': { - id: '@fluentui/react-infolabel:type-check', - target: { project: '@fluentui/react-infolabel', target: 'type-check' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-infolabel:type-check': [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: {}, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-skeleton:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-skeleton:clean': { - roots: ['@fluentui/react-skeleton:clean'], - tasks: { - '@fluentui/react-skeleton:clean': { - id: '@fluentui/react-skeleton:clean', - target: { project: '@fluentui/react-skeleton', target: 'clean' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:clean': [] }, - }, - '@fluentui/react-skeleton:code-style': { - roots: ['@fluentui/react-skeleton:code-style'], - tasks: { - '@fluentui/react-skeleton:code-style': { - id: '@fluentui/react-skeleton:code-style', - target: { project: '@fluentui/react-skeleton', target: 'code-style' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:code-style': [] }, - }, - '@fluentui/react-skeleton:just': { - roots: ['@fluentui/react-skeleton:just'], - tasks: { - '@fluentui/react-skeleton:just': { - id: '@fluentui/react-skeleton:just', - target: { project: '@fluentui/react-skeleton', target: 'just' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:just': [] }, - }, - '@fluentui/react-skeleton:lint': { - roots: ['@fluentui/react-skeleton:lint'], - tasks: { - '@fluentui/react-skeleton:lint': { - id: '@fluentui/react-skeleton:lint', - target: { project: '@fluentui/react-skeleton', target: 'lint' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:lint': [] }, - }, - '@fluentui/react-skeleton:test': { - roots: ['@fluentui/react-skeleton:test'], - tasks: { - '@fluentui/react-skeleton:test': { - id: '@fluentui/react-skeleton:test', - target: { project: '@fluentui/react-skeleton', target: 'test' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:test': [] }, - }, - '@fluentui/react-skeleton:generate-api': { - roots: ['@fluentui/react-skeleton:generate-api'], - tasks: { - '@fluentui/react-skeleton:generate-api': { - id: '@fluentui/react-skeleton:generate-api', - target: { project: '@fluentui/react-skeleton', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:generate-api': [] }, - }, - '@fluentui/react-skeleton:type-check': { - roots: ['@fluentui/react-skeleton:type-check'], - tasks: { - '@fluentui/react-skeleton:type-check': { - id: '@fluentui/react-skeleton:type-check', - target: { project: '@fluentui/react-skeleton', target: 'type-check' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:type-check': [] }, - }, - '@fluentui/react-skeleton:storybook': { - roots: ['@fluentui/react-skeleton:storybook'], - tasks: { - '@fluentui/react-skeleton:storybook': { - id: '@fluentui/react-skeleton:storybook', - target: { project: '@fluentui/react-skeleton', target: 'storybook' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:storybook': [] }, - }, - '@fluentui/react-skeleton:start': { - roots: ['@fluentui/react-skeleton:start'], - tasks: { - '@fluentui/react-skeleton:start': { - id: '@fluentui/react-skeleton:start', - target: { project: '@fluentui/react-skeleton', target: 'start' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:start': [] }, - }, - '@fluentui/react-skeleton:test-ssr': { - roots: ['@fluentui/react-skeleton:test-ssr'], - tasks: { - '@fluentui/react-skeleton:test-ssr': { - id: '@fluentui/react-skeleton:test-ssr', - target: { project: '@fluentui/react-skeleton', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-skeleton:test-ssr': [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-textarea:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-textarea:bundle-size': { - roots: ['@fluentui/react-textarea:bundle-size'], - tasks: { - '@fluentui/react-textarea:bundle-size': { - id: '@fluentui/react-textarea:bundle-size', - target: { project: '@fluentui/react-textarea', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:bundle-size': [] }, - }, - '@fluentui/react-textarea:clean': { - roots: ['@fluentui/react-textarea:clean'], - tasks: { - '@fluentui/react-textarea:clean': { - id: '@fluentui/react-textarea:clean', - target: { project: '@fluentui/react-textarea', target: 'clean' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:clean': [] }, - }, - '@fluentui/react-textarea:code-style': { - roots: ['@fluentui/react-textarea:code-style'], - tasks: { - '@fluentui/react-textarea:code-style': { - id: '@fluentui/react-textarea:code-style', - target: { project: '@fluentui/react-textarea', target: 'code-style' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:code-style': [] }, - }, - '@fluentui/react-textarea:just': { - roots: ['@fluentui/react-textarea:just'], - tasks: { - '@fluentui/react-textarea:just': { - id: '@fluentui/react-textarea:just', - target: { project: '@fluentui/react-textarea', target: 'just' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:just': [] }, - }, - '@fluentui/react-textarea:lint': { - roots: ['@fluentui/react-textarea:lint'], - tasks: { - '@fluentui/react-textarea:lint': { - id: '@fluentui/react-textarea:lint', - target: { project: '@fluentui/react-textarea', target: 'lint' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:lint': [] }, - }, - '@fluentui/react-textarea:start': { - roots: ['@fluentui/react-textarea:start'], - tasks: { - '@fluentui/react-textarea:start': { - id: '@fluentui/react-textarea:start', - target: { project: '@fluentui/react-textarea', target: 'start' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:start': [] }, - }, - '@fluentui/react-textarea:test': { - roots: ['@fluentui/react-textarea:test'], - tasks: { - '@fluentui/react-textarea:test': { - id: '@fluentui/react-textarea:test', - target: { project: '@fluentui/react-textarea', target: 'test' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:test': [] }, - }, - '@fluentui/react-textarea:storybook': { - roots: ['@fluentui/react-textarea:storybook'], - tasks: { - '@fluentui/react-textarea:storybook': { - id: '@fluentui/react-textarea:storybook', - target: { project: '@fluentui/react-textarea', target: 'storybook' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:storybook': [] }, - }, - '@fluentui/react-textarea:type-check': { - roots: ['@fluentui/react-textarea:type-check'], - tasks: { - '@fluentui/react-textarea:type-check': { - id: '@fluentui/react-textarea:type-check', - target: { project: '@fluentui/react-textarea', target: 'type-check' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:type-check': [] }, - }, - '@fluentui/react-textarea:generate-api': { - roots: ['@fluentui/react-textarea:generate-api'], - tasks: { - '@fluentui/react-textarea:generate-api': { - id: '@fluentui/react-textarea:generate-api', - target: { project: '@fluentui/react-textarea', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:generate-api': [] }, - }, - '@fluentui/react-textarea:test-ssr': { - roots: ['@fluentui/react-textarea:test-ssr'], - tasks: { - '@fluentui/react-textarea:test-ssr': { - id: '@fluentui/react-textarea:test-ssr', - target: { project: '@fluentui/react-textarea', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-textarea:test-ssr': [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-checkbox:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-checkbox:bundle-size': { - roots: ['@fluentui/react-checkbox:bundle-size'], - tasks: { - '@fluentui/react-checkbox:bundle-size': { - id: '@fluentui/react-checkbox:bundle-size', - target: { project: '@fluentui/react-checkbox', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:bundle-size': [] }, - }, - '@fluentui/react-checkbox:clean': { - roots: ['@fluentui/react-checkbox:clean'], - tasks: { - '@fluentui/react-checkbox:clean': { - id: '@fluentui/react-checkbox:clean', - target: { project: '@fluentui/react-checkbox', target: 'clean' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:clean': [] }, - }, - '@fluentui/react-checkbox:code-style': { - roots: ['@fluentui/react-checkbox:code-style'], - tasks: { - '@fluentui/react-checkbox:code-style': { - id: '@fluentui/react-checkbox:code-style', - target: { project: '@fluentui/react-checkbox', target: 'code-style' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:code-style': [] }, - }, - '@fluentui/react-checkbox:just': { - roots: ['@fluentui/react-checkbox:just'], - tasks: { - '@fluentui/react-checkbox:just': { - id: '@fluentui/react-checkbox:just', - target: { project: '@fluentui/react-checkbox', target: 'just' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:just': [] }, - }, - '@fluentui/react-checkbox:lint': { - roots: ['@fluentui/react-checkbox:lint'], - tasks: { - '@fluentui/react-checkbox:lint': { - id: '@fluentui/react-checkbox:lint', - target: { project: '@fluentui/react-checkbox', target: 'lint' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:lint': [] }, - }, - '@fluentui/react-checkbox:start': { - roots: ['@fluentui/react-checkbox:start'], - tasks: { - '@fluentui/react-checkbox:start': { - id: '@fluentui/react-checkbox:start', - target: { project: '@fluentui/react-checkbox', target: 'start' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:start': [] }, - }, - '@fluentui/react-checkbox:test': { - roots: ['@fluentui/react-checkbox:test'], - tasks: { - '@fluentui/react-checkbox:test': { - id: '@fluentui/react-checkbox:test', - target: { project: '@fluentui/react-checkbox', target: 'test' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:test': [] }, - }, - '@fluentui/react-checkbox:storybook': { - roots: ['@fluentui/react-checkbox:storybook'], - tasks: { - '@fluentui/react-checkbox:storybook': { - id: '@fluentui/react-checkbox:storybook', - target: { project: '@fluentui/react-checkbox', target: 'storybook' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:storybook': [] }, - }, - '@fluentui/react-checkbox:type-check': { - roots: ['@fluentui/react-checkbox:type-check'], - tasks: { - '@fluentui/react-checkbox:type-check': { - id: '@fluentui/react-checkbox:type-check', - target: { project: '@fluentui/react-checkbox', target: 'type-check' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:type-check': [] }, - }, - '@fluentui/react-checkbox:generate-api': { - roots: ['@fluentui/react-checkbox:generate-api'], - tasks: { - '@fluentui/react-checkbox:generate-api': { - id: '@fluentui/react-checkbox:generate-api', - target: { project: '@fluentui/react-checkbox', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:generate-api': [] }, - }, - '@fluentui/react-checkbox:test-ssr': { - roots: ['@fluentui/react-checkbox:test-ssr'], - tasks: { - '@fluentui/react-checkbox:test-ssr': { - id: '@fluentui/react-checkbox:test-ssr', - target: { project: '@fluentui/react-checkbox', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-checkbox:test-ssr': [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-overflow:build': { - roots: ['@fluentui/priority-overflow:build', '@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], - tasks: { - '@fluentui/react-overflow:build': { - id: '@fluentui/react-overflow:build', - target: { project: '@fluentui/react-overflow', target: 'build' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-overflow:build': [ - '@fluentui/priority-overflow:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/priority-overflow:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - }, - }, - '@fluentui/react-overflow:bundle-size': { - roots: ['@fluentui/react-overflow:bundle-size'], - tasks: { - '@fluentui/react-overflow:bundle-size': { - id: '@fluentui/react-overflow:bundle-size', - target: { project: '@fluentui/react-overflow', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:bundle-size': [] }, - }, - '@fluentui/react-overflow:clean': { - roots: ['@fluentui/react-overflow:clean'], - tasks: { - '@fluentui/react-overflow:clean': { - id: '@fluentui/react-overflow:clean', - target: { project: '@fluentui/react-overflow', target: 'clean' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:clean': [] }, - }, - '@fluentui/react-overflow:code-style': { - roots: ['@fluentui/react-overflow:code-style'], - tasks: { - '@fluentui/react-overflow:code-style': { - id: '@fluentui/react-overflow:code-style', - target: { project: '@fluentui/react-overflow', target: 'code-style' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:code-style': [] }, - }, - '@fluentui/react-overflow:e2e': { - roots: ['@fluentui/react-overflow:e2e'], - tasks: { - '@fluentui/react-overflow:e2e': { - id: '@fluentui/react-overflow:e2e', - target: { project: '@fluentui/react-overflow', target: 'e2e' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:e2e': [] }, - }, - '@fluentui/react-overflow:e2e:local': { - roots: ['@fluentui/react-overflow:e2e:local'], - tasks: { - '@fluentui/react-overflow:e2e:local': { - id: '@fluentui/react-overflow:e2e:local', - target: { project: '@fluentui/react-overflow', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:e2e:local': [] }, - }, - '@fluentui/react-overflow:just': { - roots: ['@fluentui/react-overflow:just'], - tasks: { - '@fluentui/react-overflow:just': { - id: '@fluentui/react-overflow:just', - target: { project: '@fluentui/react-overflow', target: 'just' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:just': [] }, - }, - '@fluentui/react-overflow:lint': { - roots: ['@fluentui/react-overflow:lint'], - tasks: { - '@fluentui/react-overflow:lint': { - id: '@fluentui/react-overflow:lint', - target: { project: '@fluentui/react-overflow', target: 'lint' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:lint': [] }, - }, - '@fluentui/react-overflow:start': { - roots: ['@fluentui/react-overflow:start'], - tasks: { - '@fluentui/react-overflow:start': { - id: '@fluentui/react-overflow:start', - target: { project: '@fluentui/react-overflow', target: 'start' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:start': [] }, - }, - '@fluentui/react-overflow:test': { - roots: ['@fluentui/react-overflow:test'], - tasks: { - '@fluentui/react-overflow:test': { - id: '@fluentui/react-overflow:test', - target: { project: '@fluentui/react-overflow', target: 'test' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:test': [] }, - }, - '@fluentui/react-overflow:storybook': { - roots: ['@fluentui/react-overflow:storybook'], - tasks: { - '@fluentui/react-overflow:storybook': { - id: '@fluentui/react-overflow:storybook', - target: { project: '@fluentui/react-overflow', target: 'storybook' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:storybook': [] }, - }, - '@fluentui/react-overflow:type-check': { - roots: ['@fluentui/react-overflow:type-check'], - tasks: { - '@fluentui/react-overflow:type-check': { - id: '@fluentui/react-overflow:type-check', - target: { project: '@fluentui/react-overflow', target: 'type-check' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:type-check': [] }, - }, - '@fluentui/react-overflow:generate-api': { - roots: ['@fluentui/react-overflow:generate-api'], - tasks: { - '@fluentui/react-overflow:generate-api': { - id: '@fluentui/react-overflow:generate-api', - target: { project: '@fluentui/react-overflow', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:generate-api': [] }, - }, - '@fluentui/react-overflow:test-ssr': { - roots: ['@fluentui/react-overflow:test-ssr'], - tasks: { - '@fluentui/react-overflow:test-ssr': { - id: '@fluentui/react-overflow:test-ssr', - target: { project: '@fluentui/react-overflow', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-overflow:test-ssr': [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: {}, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/global-context:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build'], - tasks: { - '@fluentui/global-context:build': { - id: '@fluentui/global-context:build', - target: { project: '@fluentui/global-context', target: 'build' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/global-context:build': ['@fluentui/react-context-selector:build', '@fluentui/react-utilities:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - }, - }, - '@fluentui/global-context:bundle-size': { - roots: ['@fluentui/global-context:bundle-size'], - tasks: { - '@fluentui/global-context:bundle-size': { - id: '@fluentui/global-context:bundle-size', - target: { project: '@fluentui/global-context', target: 'bundle-size' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:bundle-size': [] }, - }, - '@fluentui/global-context:clean': { - roots: ['@fluentui/global-context:clean'], - tasks: { - '@fluentui/global-context:clean': { - id: '@fluentui/global-context:clean', - target: { project: '@fluentui/global-context', target: 'clean' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:clean': [] }, - }, - '@fluentui/global-context:code-style': { - roots: ['@fluentui/global-context:code-style'], - tasks: { - '@fluentui/global-context:code-style': { - id: '@fluentui/global-context:code-style', - target: { project: '@fluentui/global-context', target: 'code-style' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:code-style': [] }, - }, - '@fluentui/global-context:e2e': { - roots: ['@fluentui/global-context:e2e'], - tasks: { - '@fluentui/global-context:e2e': { - id: '@fluentui/global-context:e2e', - target: { project: '@fluentui/global-context', target: 'e2e' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:e2e': [] }, - }, - '@fluentui/global-context:e2e:local': { - roots: ['@fluentui/global-context:e2e:local'], - tasks: { - '@fluentui/global-context:e2e:local': { - id: '@fluentui/global-context:e2e:local', - target: { project: '@fluentui/global-context', target: 'e2e:local' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:e2e:local': [] }, - }, - '@fluentui/global-context:just': { - roots: ['@fluentui/global-context:just'], - tasks: { - '@fluentui/global-context:just': { - id: '@fluentui/global-context:just', - target: { project: '@fluentui/global-context', target: 'just' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:just': [] }, - }, - '@fluentui/global-context:lint': { - roots: ['@fluentui/global-context:lint'], - tasks: { - '@fluentui/global-context:lint': { - id: '@fluentui/global-context:lint', - target: { project: '@fluentui/global-context', target: 'lint' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:lint': [] }, - }, - '@fluentui/global-context:test': { - roots: ['@fluentui/global-context:test'], - tasks: { - '@fluentui/global-context:test': { - id: '@fluentui/global-context:test', - target: { project: '@fluentui/global-context', target: 'test' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:test': [] }, - }, - '@fluentui/global-context:type-check': { - roots: ['@fluentui/global-context:type-check'], - tasks: { - '@fluentui/global-context:type-check': { - id: '@fluentui/global-context:type-check', - target: { project: '@fluentui/global-context', target: 'type-check' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:type-check': [] }, - }, - '@fluentui/global-context:generate-api': { - roots: ['@fluentui/global-context:generate-api'], - tasks: { - '@fluentui/global-context:generate-api': { - id: '@fluentui/global-context:generate-api', - target: { project: '@fluentui/global-context', target: 'generate-api' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:generate-api': [] }, - }, - '@fluentui/global-context:test-ssr': { - roots: ['@fluentui/global-context:test-ssr'], - tasks: { - '@fluentui/global-context:test-ssr': { - id: '@fluentui/global-context:test-ssr', - target: { project: '@fluentui/global-context', target: 'test-ssr' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - }, - dependencies: { '@fluentui/global-context:test-ssr': [] }, - }, - '@fluentui/global-context:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/global-context:nx-release-publish': { - id: '@fluentui/global-context:nx-release-publish', - target: { project: '@fluentui/global-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/global-context', - overrides: {}, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/global-context:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-provider:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-provider:bundle-size': { - roots: ['@fluentui/react-provider:bundle-size'], - tasks: { - '@fluentui/react-provider:bundle-size': { - id: '@fluentui/react-provider:bundle-size', - target: { project: '@fluentui/react-provider', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:bundle-size': [] }, - }, - '@fluentui/react-provider:test': { - roots: ['@fluentui/react-provider:test'], - tasks: { - '@fluentui/react-provider:test': { - id: '@fluentui/react-provider:test', - target: { project: '@fluentui/react-provider', target: 'test' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:test': [] }, - }, - '@fluentui/react-provider:clean': { - roots: ['@fluentui/react-provider:clean'], - tasks: { - '@fluentui/react-provider:clean': { - id: '@fluentui/react-provider:clean', - target: { project: '@fluentui/react-provider', target: 'clean' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:clean': [] }, - }, - '@fluentui/react-provider:code-style': { - roots: ['@fluentui/react-provider:code-style'], - tasks: { - '@fluentui/react-provider:code-style': { - id: '@fluentui/react-provider:code-style', - target: { project: '@fluentui/react-provider', target: 'code-style' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:code-style': [] }, - }, - '@fluentui/react-provider:just': { - roots: ['@fluentui/react-provider:just'], - tasks: { - '@fluentui/react-provider:just': { - id: '@fluentui/react-provider:just', - target: { project: '@fluentui/react-provider', target: 'just' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:just': [] }, - }, - '@fluentui/react-provider:lint': { - roots: ['@fluentui/react-provider:lint'], - tasks: { - '@fluentui/react-provider:lint': { - id: '@fluentui/react-provider:lint', - target: { project: '@fluentui/react-provider', target: 'lint' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:lint': [] }, - }, - '@fluentui/react-provider:storybook': { - roots: ['@fluentui/react-provider:storybook'], - tasks: { - '@fluentui/react-provider:storybook': { - id: '@fluentui/react-provider:storybook', - target: { project: '@fluentui/react-provider', target: 'storybook' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:storybook': [] }, - }, - '@fluentui/react-provider:start': { - roots: ['@fluentui/react-provider:start'], - tasks: { - '@fluentui/react-provider:start': { - id: '@fluentui/react-provider:start', - target: { project: '@fluentui/react-provider', target: 'start' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:start': [] }, - }, - '@fluentui/react-provider:type-check': { - roots: ['@fluentui/react-provider:type-check'], - tasks: { - '@fluentui/react-provider:type-check': { - id: '@fluentui/react-provider:type-check', - target: { project: '@fluentui/react-provider', target: 'type-check' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:type-check': [] }, - }, - '@fluentui/react-provider:generate-api': { - roots: ['@fluentui/react-provider:generate-api'], - tasks: { - '@fluentui/react-provider:generate-api': { - id: '@fluentui/react-provider:generate-api', - target: { project: '@fluentui/react-provider', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:generate-api': [] }, - }, - '@fluentui/react-provider:test-ssr': { - roots: ['@fluentui/react-provider:test-ssr'], - tasks: { - '@fluentui/react-provider:test-ssr': { - id: '@fluentui/react-provider:test-ssr', - target: { project: '@fluentui/react-provider', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-provider:test-ssr': [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: {}, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-progress:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-progress:bundle-size': { - roots: ['@fluentui/react-progress:bundle-size'], - tasks: { - '@fluentui/react-progress:bundle-size': { - id: '@fluentui/react-progress:bundle-size', - target: { project: '@fluentui/react-progress', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:bundle-size': [] }, - }, - '@fluentui/react-progress:clean': { - roots: ['@fluentui/react-progress:clean'], - tasks: { - '@fluentui/react-progress:clean': { - id: '@fluentui/react-progress:clean', - target: { project: '@fluentui/react-progress', target: 'clean' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:clean': [] }, - }, - '@fluentui/react-progress:code-style': { - roots: ['@fluentui/react-progress:code-style'], - tasks: { - '@fluentui/react-progress:code-style': { - id: '@fluentui/react-progress:code-style', - target: { project: '@fluentui/react-progress', target: 'code-style' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:code-style': [] }, - }, - '@fluentui/react-progress:just': { - roots: ['@fluentui/react-progress:just'], - tasks: { - '@fluentui/react-progress:just': { - id: '@fluentui/react-progress:just', - target: { project: '@fluentui/react-progress', target: 'just' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:just': [] }, - }, - '@fluentui/react-progress:lint': { - roots: ['@fluentui/react-progress:lint'], - tasks: { - '@fluentui/react-progress:lint': { - id: '@fluentui/react-progress:lint', - target: { project: '@fluentui/react-progress', target: 'lint' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:lint': [] }, - }, - '@fluentui/react-progress:test': { - roots: ['@fluentui/react-progress:test'], - tasks: { - '@fluentui/react-progress:test': { - id: '@fluentui/react-progress:test', - target: { project: '@fluentui/react-progress', target: 'test' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:test': [] }, - }, - '@fluentui/react-progress:type-check': { - roots: ['@fluentui/react-progress:type-check'], - tasks: { - '@fluentui/react-progress:type-check': { - id: '@fluentui/react-progress:type-check', - target: { project: '@fluentui/react-progress', target: 'type-check' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:type-check': [] }, - }, - '@fluentui/react-progress:storybook': { - roots: ['@fluentui/react-progress:storybook'], - tasks: { - '@fluentui/react-progress:storybook': { - id: '@fluentui/react-progress:storybook', - target: { project: '@fluentui/react-progress', target: 'storybook' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:storybook': [] }, - }, - '@fluentui/react-progress:start': { - roots: ['@fluentui/react-progress:start'], - tasks: { - '@fluentui/react-progress:start': { - id: '@fluentui/react-progress:start', - target: { project: '@fluentui/react-progress', target: 'start' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:start': [] }, - }, - '@fluentui/react-progress:generate-api': { - roots: ['@fluentui/react-progress:generate-api'], - tasks: { - '@fluentui/react-progress:generate-api': { - id: '@fluentui/react-progress:generate-api', - target: { project: '@fluentui/react-progress', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:generate-api': [] }, - }, - '@fluentui/react-progress:test-ssr': { - roots: ['@fluentui/react-progress:test-ssr'], - tasks: { - '@fluentui/react-progress:test-ssr': { - id: '@fluentui/react-progress:test-ssr', - target: { project: '@fluentui/react-progress', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-progress:test-ssr': [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-combobox:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-combobox:bundle-size': { - roots: ['@fluentui/react-combobox:bundle-size'], - tasks: { - '@fluentui/react-combobox:bundle-size': { - id: '@fluentui/react-combobox:bundle-size', - target: { project: '@fluentui/react-combobox', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:bundle-size': [] }, - }, - '@fluentui/react-combobox:clean': { - roots: ['@fluentui/react-combobox:clean'], - tasks: { - '@fluentui/react-combobox:clean': { - id: '@fluentui/react-combobox:clean', - target: { project: '@fluentui/react-combobox', target: 'clean' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:clean': [] }, - }, - '@fluentui/react-combobox:code-style': { - roots: ['@fluentui/react-combobox:code-style'], - tasks: { - '@fluentui/react-combobox:code-style': { - id: '@fluentui/react-combobox:code-style', - target: { project: '@fluentui/react-combobox', target: 'code-style' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:code-style': [] }, - }, - '@fluentui/react-combobox:just': { - roots: ['@fluentui/react-combobox:just'], - tasks: { - '@fluentui/react-combobox:just': { - id: '@fluentui/react-combobox:just', - target: { project: '@fluentui/react-combobox', target: 'just' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:just': [] }, - }, - '@fluentui/react-combobox:lint': { - roots: ['@fluentui/react-combobox:lint'], - tasks: { - '@fluentui/react-combobox:lint': { - id: '@fluentui/react-combobox:lint', - target: { project: '@fluentui/react-combobox', target: 'lint' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:lint': [] }, - }, - '@fluentui/react-combobox:start': { - roots: ['@fluentui/react-combobox:start'], - tasks: { - '@fluentui/react-combobox:start': { - id: '@fluentui/react-combobox:start', - target: { project: '@fluentui/react-combobox', target: 'start' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:start': [] }, - }, - '@fluentui/react-combobox:test': { - roots: ['@fluentui/react-combobox:test'], - tasks: { - '@fluentui/react-combobox:test': { - id: '@fluentui/react-combobox:test', - target: { project: '@fluentui/react-combobox', target: 'test' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:test': [] }, - }, - '@fluentui/react-combobox:storybook': { - roots: ['@fluentui/react-combobox:storybook'], - tasks: { - '@fluentui/react-combobox:storybook': { - id: '@fluentui/react-combobox:storybook', - target: { project: '@fluentui/react-combobox', target: 'storybook' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:storybook': [] }, - }, - '@fluentui/react-combobox:type-check': { - roots: ['@fluentui/react-combobox:type-check'], - tasks: { - '@fluentui/react-combobox:type-check': { - id: '@fluentui/react-combobox:type-check', - target: { project: '@fluentui/react-combobox', target: 'type-check' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:type-check': [] }, - }, - '@fluentui/react-combobox:generate-api': { - roots: ['@fluentui/react-combobox:generate-api'], - tasks: { - '@fluentui/react-combobox:generate-api': { - id: '@fluentui/react-combobox:generate-api', - target: { project: '@fluentui/react-combobox', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:generate-api': [] }, - }, - '@fluentui/react-combobox:test-ssr': { - roots: ['@fluentui/react-combobox:test-ssr'], - tasks: { - '@fluentui/react-combobox:test-ssr': { - id: '@fluentui/react-combobox:test-ssr', - target: { project: '@fluentui/react-combobox', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-combobox:test-ssr': [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/theme-designer:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - '@fluentui/priority-overflow:build', - '@fluentui/babel-preset-storybook-full-source:build', - ], - tasks: { - '@fluentui/theme-designer:build': { - id: '@fluentui/theme-designer:build', - target: { project: '@fluentui/theme-designer', target: 'build' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - '@fluentui/react-alert:build': { - id: '@fluentui/react-alert:build', - target: { project: '@fluentui/react-alert', target: 'build' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:build': { - id: '@fluentui/react-components:build', - target: { project: '@fluentui/react-components', target: 'build' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:build': { - id: '@fluentui/react-infobutton:build', - target: { project: '@fluentui/react-infobutton', target: 'build' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:build': { - id: '@fluentui/react-overflow:build', - target: { project: '@fluentui/react-overflow', target: 'build' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:build': { - id: '@fluentui/react-virtualizer:build', - target: { project: '@fluentui/react-virtualizer', target: 'build' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:build': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:build', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/babel-preset-storybook-full-source:build': { - id: '@fluentui/babel-preset-storybook-full-source:build', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/theme-designer:build': [ - '@fluentui/react-alert:build', - '@fluentui/react-components:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-storybook-addon-export-to-sandbox:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-alert:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-components:build': [ - '@fluentui/react-accordion:build', - '@fluentui/react-alert:build', - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-button:build', - '@fluentui/react-card:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-combobox:build', - '@fluentui/react-dialog:build', - '@fluentui/react-divider:build', - '@fluentui/react-drawer:build', - '@fluentui/react-field:build', - '@fluentui/react-image:build', - '@fluentui/react-infobutton:build', - '@fluentui/react-infolabel:build', - '@fluentui/react-input:build', - '@fluentui/react-label:build', - '@fluentui/react-link:build', - '@fluentui/react-menu:build', - '@fluentui/react-overflow:build', - '@fluentui/react-persona:build', - '@fluentui/react-portal:build', - '@fluentui/react-popover:build', - '@fluentui/react-positioning:build', - '@fluentui/react-progress:build', - '@fluentui/react-provider:build', - '@fluentui/react-radio:build', - '@fluentui/react-select:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-skeleton:build', - '@fluentui/react-slider:build', - '@fluentui/react-spinbutton:build', - '@fluentui/react-spinner:build', - '@fluentui/react-switch:build', - '@fluentui/react-table:build', - '@fluentui/react-tabs:build', - '@fluentui/react-tabster:build', - '@fluentui/react-tags:build', - '@fluentui/react-textarea:build', - '@fluentui/react-theme:build', - '@fluentui/react-toast:build', - '@fluentui/react-toolbar:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-text:build', - '@fluentui/react-virtualizer:build', - '@fluentui/react-tree:build', - '@fluentui/react-message-bar:build', - '@fluentui/react-breadcrumb:build', - ], - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infobutton:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-overflow:build': [ - '@fluentui/priority-overflow:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/priority-overflow:build': [], - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-virtualizer:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-storybook-addon-export-to-sandbox:build': [ - '@fluentui/babel-preset-storybook-full-source:build', - ], - '@fluentui/babel-preset-storybook-full-source:build': [], - }, - }, - '@fluentui/theme-designer:build-storybook': { - roots: ['@fluentui/theme-designer:build-storybook'], - tasks: { - '@fluentui/theme-designer:build-storybook': { - id: '@fluentui/theme-designer:build-storybook', - target: { project: '@fluentui/theme-designer', target: 'build-storybook' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:build-storybook': [] }, - }, - '@fluentui/theme-designer:clean': { - roots: ['@fluentui/theme-designer:clean'], - tasks: { - '@fluentui/theme-designer:clean': { - id: '@fluentui/theme-designer:clean', - target: { project: '@fluentui/theme-designer', target: 'clean' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:clean': [] }, - }, - '@fluentui/theme-designer:code-style': { - roots: ['@fluentui/theme-designer:code-style'], - tasks: { - '@fluentui/theme-designer:code-style': { - id: '@fluentui/theme-designer:code-style', - target: { project: '@fluentui/theme-designer', target: 'code-style' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:code-style': [] }, - }, - '@fluentui/theme-designer:just': { - roots: ['@fluentui/theme-designer:just'], - tasks: { - '@fluentui/theme-designer:just': { - id: '@fluentui/theme-designer:just', - target: { project: '@fluentui/theme-designer', target: 'just' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:just': [] }, - }, - '@fluentui/theme-designer:lint': { - roots: ['@fluentui/theme-designer:lint'], - tasks: { - '@fluentui/theme-designer:lint': { - id: '@fluentui/theme-designer:lint', - target: { project: '@fluentui/theme-designer', target: 'lint' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:lint': [] }, - }, - '@fluentui/theme-designer:start': { - roots: ['@fluentui/theme-designer:start'], - tasks: { - '@fluentui/theme-designer:start': { - id: '@fluentui/theme-designer:start', - target: { project: '@fluentui/theme-designer', target: 'start' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:start': [] }, - }, - '@fluentui/theme-designer:test': { - roots: ['@fluentui/theme-designer:test'], - tasks: { - '@fluentui/theme-designer:test': { - id: '@fluentui/theme-designer:test', - target: { project: '@fluentui/theme-designer', target: 'test' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:test': [] }, - }, - '@fluentui/theme-designer:storybook': { - roots: ['@fluentui/theme-designer:storybook'], - tasks: { - '@fluentui/theme-designer:storybook': { - id: '@fluentui/theme-designer:storybook', - target: { project: '@fluentui/theme-designer', target: 'storybook' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:storybook': [] }, - }, - '@fluentui/theme-designer:type-check': { - roots: ['@fluentui/theme-designer:type-check'], - tasks: { - '@fluentui/theme-designer:type-check': { - id: '@fluentui/theme-designer:type-check', - target: { project: '@fluentui/theme-designer', target: 'type-check' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:type-check': [] }, - }, - '@fluentui/theme-designer:generate-api': { - roots: ['@fluentui/theme-designer:generate-api'], - tasks: { - '@fluentui/theme-designer:generate-api': { - id: '@fluentui/theme-designer:generate-api', - target: { project: '@fluentui/theme-designer', target: 'generate-api' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:generate-api': [] }, - }, - '@fluentui/theme-designer:test-ssr': { - roots: ['@fluentui/theme-designer:test-ssr'], - tasks: { - '@fluentui/theme-designer:test-ssr': { - id: '@fluentui/theme-designer:test-ssr', - target: { project: '@fluentui/theme-designer', target: 'test-ssr' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-designer:test-ssr': [] }, - }, - '@fluentui/theme-designer:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/theme-designer:nx-release-publish': { - id: '@fluentui/theme-designer:nx-release-publish', - target: { project: '@fluentui/theme-designer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: {}, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { - id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/theme-designer:nx-release-publish': [ - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ - '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-tooltip:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-tooltip:bundle-size': { - roots: ['@fluentui/react-tooltip:bundle-size'], - tasks: { - '@fluentui/react-tooltip:bundle-size': { - id: '@fluentui/react-tooltip:bundle-size', - target: { project: '@fluentui/react-tooltip', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:bundle-size': [] }, - }, - '@fluentui/react-tooltip:clean': { - roots: ['@fluentui/react-tooltip:clean'], - tasks: { - '@fluentui/react-tooltip:clean': { - id: '@fluentui/react-tooltip:clean', - target: { project: '@fluentui/react-tooltip', target: 'clean' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:clean': [] }, - }, - '@fluentui/react-tooltip:code-style': { - roots: ['@fluentui/react-tooltip:code-style'], - tasks: { - '@fluentui/react-tooltip:code-style': { - id: '@fluentui/react-tooltip:code-style', - target: { project: '@fluentui/react-tooltip', target: 'code-style' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:code-style': [] }, - }, - '@fluentui/react-tooltip:just': { - roots: ['@fluentui/react-tooltip:just'], - tasks: { - '@fluentui/react-tooltip:just': { - id: '@fluentui/react-tooltip:just', - target: { project: '@fluentui/react-tooltip', target: 'just' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:just': [] }, - }, - '@fluentui/react-tooltip:lint': { - roots: ['@fluentui/react-tooltip:lint'], - tasks: { - '@fluentui/react-tooltip:lint': { - id: '@fluentui/react-tooltip:lint', - target: { project: '@fluentui/react-tooltip', target: 'lint' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:lint': [] }, - }, - '@fluentui/react-tooltip:start': { - roots: ['@fluentui/react-tooltip:start'], - tasks: { - '@fluentui/react-tooltip:start': { - id: '@fluentui/react-tooltip:start', - target: { project: '@fluentui/react-tooltip', target: 'start' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:start': [] }, - }, - '@fluentui/react-tooltip:test': { - roots: ['@fluentui/react-tooltip:test'], - tasks: { - '@fluentui/react-tooltip:test': { - id: '@fluentui/react-tooltip:test', - target: { project: '@fluentui/react-tooltip', target: 'test' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:test': [] }, - }, - '@fluentui/react-tooltip:storybook': { - roots: ['@fluentui/react-tooltip:storybook'], - tasks: { - '@fluentui/react-tooltip:storybook': { - id: '@fluentui/react-tooltip:storybook', - target: { project: '@fluentui/react-tooltip', target: 'storybook' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:storybook': [] }, - }, - '@fluentui/react-tooltip:type-check': { - roots: ['@fluentui/react-tooltip:type-check'], - tasks: { - '@fluentui/react-tooltip:type-check': { - id: '@fluentui/react-tooltip:type-check', - target: { project: '@fluentui/react-tooltip', target: 'type-check' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:type-check': [] }, - }, - '@fluentui/react-tooltip:generate-api': { - roots: ['@fluentui/react-tooltip:generate-api'], - tasks: { - '@fluentui/react-tooltip:generate-api': { - id: '@fluentui/react-tooltip:generate-api', - target: { project: '@fluentui/react-tooltip', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:generate-api': [] }, - }, - '@fluentui/react-tooltip:test-ssr': { - roots: ['@fluentui/react-tooltip:test-ssr'], - tasks: { - '@fluentui/react-tooltip:test-ssr': { - id: '@fluentui/react-tooltip:test-ssr', - target: { project: '@fluentui/react-tooltip', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tooltip:test-ssr': [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/keyboard-keys:build': { - roots: ['@fluentui/keyboard-keys:build'], - tasks: { - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:build': [] }, - }, - '@fluentui/keyboard-keys:clean': { - roots: ['@fluentui/keyboard-keys:clean'], - tasks: { - '@fluentui/keyboard-keys:clean': { - id: '@fluentui/keyboard-keys:clean', - target: { project: '@fluentui/keyboard-keys', target: 'clean' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:clean': [] }, - }, - '@fluentui/keyboard-keys:code-style': { - roots: ['@fluentui/keyboard-keys:code-style'], - tasks: { - '@fluentui/keyboard-keys:code-style': { - id: '@fluentui/keyboard-keys:code-style', - target: { project: '@fluentui/keyboard-keys', target: 'code-style' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:code-style': [] }, - }, - '@fluentui/keyboard-keys:just': { - roots: ['@fluentui/keyboard-keys:just'], - tasks: { - '@fluentui/keyboard-keys:just': { - id: '@fluentui/keyboard-keys:just', - target: { project: '@fluentui/keyboard-keys', target: 'just' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:just': [] }, - }, - '@fluentui/keyboard-keys:lint': { - roots: ['@fluentui/keyboard-keys:lint'], - tasks: { - '@fluentui/keyboard-keys:lint': { - id: '@fluentui/keyboard-keys:lint', - target: { project: '@fluentui/keyboard-keys', target: 'lint' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:lint': [] }, - }, - '@fluentui/keyboard-keys:test': { - roots: ['@fluentui/keyboard-keys:test'], - tasks: { - '@fluentui/keyboard-keys:test': { - id: '@fluentui/keyboard-keys:test', - target: { project: '@fluentui/keyboard-keys', target: 'test' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:test': [] }, - }, - '@fluentui/keyboard-keys:type-check': { - roots: ['@fluentui/keyboard-keys:type-check'], - tasks: { - '@fluentui/keyboard-keys:type-check': { - id: '@fluentui/keyboard-keys:type-check', - target: { project: '@fluentui/keyboard-keys', target: 'type-check' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:type-check': [] }, - }, - '@fluentui/keyboard-keys:generate-api': { - roots: ['@fluentui/keyboard-keys:generate-api'], - tasks: { - '@fluentui/keyboard-keys:generate-api': { - id: '@fluentui/keyboard-keys:generate-api', - target: { project: '@fluentui/keyboard-keys', target: 'generate-api' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:generate-api': [] }, - }, - '@fluentui/keyboard-keys:test-ssr': { - roots: ['@fluentui/keyboard-keys:test-ssr'], - tasks: { - '@fluentui/keyboard-keys:test-ssr': { - id: '@fluentui/keyboard-keys:test-ssr', - target: { project: '@fluentui/keyboard-keys', target: 'test-ssr' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-keys:test-ssr': [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-toolbar:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-toolbar:clean': { - roots: ['@fluentui/react-toolbar:clean'], - tasks: { - '@fluentui/react-toolbar:clean': { - id: '@fluentui/react-toolbar:clean', - target: { project: '@fluentui/react-toolbar', target: 'clean' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:clean': [] }, - }, - '@fluentui/react-toolbar:code-style': { - roots: ['@fluentui/react-toolbar:code-style'], - tasks: { - '@fluentui/react-toolbar:code-style': { - id: '@fluentui/react-toolbar:code-style', - target: { project: '@fluentui/react-toolbar', target: 'code-style' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:code-style': [] }, - }, - '@fluentui/react-toolbar:e2e': { - roots: ['@fluentui/react-toolbar:e2e'], - tasks: { - '@fluentui/react-toolbar:e2e': { - id: '@fluentui/react-toolbar:e2e', - target: { project: '@fluentui/react-toolbar', target: 'e2e' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:e2e': [] }, - }, - '@fluentui/react-toolbar:e2e:local': { - roots: ['@fluentui/react-toolbar:e2e:local'], - tasks: { - '@fluentui/react-toolbar:e2e:local': { - id: '@fluentui/react-toolbar:e2e:local', - target: { project: '@fluentui/react-toolbar', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:e2e:local': [] }, - }, - '@fluentui/react-toolbar:just': { - roots: ['@fluentui/react-toolbar:just'], - tasks: { - '@fluentui/react-toolbar:just': { - id: '@fluentui/react-toolbar:just', - target: { project: '@fluentui/react-toolbar', target: 'just' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:just': [] }, - }, - '@fluentui/react-toolbar:lint': { - roots: ['@fluentui/react-toolbar:lint'], - tasks: { - '@fluentui/react-toolbar:lint': { - id: '@fluentui/react-toolbar:lint', - target: { project: '@fluentui/react-toolbar', target: 'lint' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:lint': [] }, - }, - '@fluentui/react-toolbar:start': { - roots: ['@fluentui/react-toolbar:start'], - tasks: { - '@fluentui/react-toolbar:start': { - id: '@fluentui/react-toolbar:start', - target: { project: '@fluentui/react-toolbar', target: 'start' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:start': [] }, - }, - '@fluentui/react-toolbar:test': { - roots: ['@fluentui/react-toolbar:test'], - tasks: { - '@fluentui/react-toolbar:test': { - id: '@fluentui/react-toolbar:test', - target: { project: '@fluentui/react-toolbar', target: 'test' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:test': [] }, - }, - '@fluentui/react-toolbar:storybook': { - roots: ['@fluentui/react-toolbar:storybook'], - tasks: { - '@fluentui/react-toolbar:storybook': { - id: '@fluentui/react-toolbar:storybook', - target: { project: '@fluentui/react-toolbar', target: 'storybook' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:storybook': [] }, - }, - '@fluentui/react-toolbar:type-check': { - roots: ['@fluentui/react-toolbar:type-check'], - tasks: { - '@fluentui/react-toolbar:type-check': { - id: '@fluentui/react-toolbar:type-check', - target: { project: '@fluentui/react-toolbar', target: 'type-check' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:type-check': [] }, - }, - '@fluentui/react-toolbar:generate-api': { - roots: ['@fluentui/react-toolbar:generate-api'], - tasks: { - '@fluentui/react-toolbar:generate-api': { - id: '@fluentui/react-toolbar:generate-api', - target: { project: '@fluentui/react-toolbar', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:generate-api': [] }, - }, - '@fluentui/react-toolbar:test-ssr': { - roots: ['@fluentui/react-toolbar:test-ssr'], - tasks: { - '@fluentui/react-toolbar:test-ssr': { - id: '@fluentui/react-toolbar:test-ssr', - target: { project: '@fluentui/react-toolbar', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toolbar:test-ssr': [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: {}, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-popover:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-popover:bundle-size': { - roots: ['@fluentui/react-popover:bundle-size'], - tasks: { - '@fluentui/react-popover:bundle-size': { - id: '@fluentui/react-popover:bundle-size', - target: { project: '@fluentui/react-popover', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:bundle-size': [] }, - }, - '@fluentui/react-popover:clean': { - roots: ['@fluentui/react-popover:clean'], - tasks: { - '@fluentui/react-popover:clean': { - id: '@fluentui/react-popover:clean', - target: { project: '@fluentui/react-popover', target: 'clean' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:clean': [] }, - }, - '@fluentui/react-popover:code-style': { - roots: ['@fluentui/react-popover:code-style'], - tasks: { - '@fluentui/react-popover:code-style': { - id: '@fluentui/react-popover:code-style', - target: { project: '@fluentui/react-popover', target: 'code-style' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:code-style': [] }, - }, - '@fluentui/react-popover:just': { - roots: ['@fluentui/react-popover:just'], - tasks: { - '@fluentui/react-popover:just': { - id: '@fluentui/react-popover:just', - target: { project: '@fluentui/react-popover', target: 'just' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:just': [] }, - }, - '@fluentui/react-popover:lint': { - roots: ['@fluentui/react-popover:lint'], - tasks: { - '@fluentui/react-popover:lint': { - id: '@fluentui/react-popover:lint', - target: { project: '@fluentui/react-popover', target: 'lint' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:lint': [] }, - }, - '@fluentui/react-popover:start': { - roots: ['@fluentui/react-popover:start'], - tasks: { - '@fluentui/react-popover:start': { - id: '@fluentui/react-popover:start', - target: { project: '@fluentui/react-popover', target: 'start' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:start': [] }, - }, - '@fluentui/react-popover:e2e': { - roots: ['@fluentui/react-popover:e2e'], - tasks: { - '@fluentui/react-popover:e2e': { - id: '@fluentui/react-popover:e2e', - target: { project: '@fluentui/react-popover', target: 'e2e' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:e2e': [] }, - }, - '@fluentui/react-popover:e2e:local': { - roots: ['@fluentui/react-popover:e2e:local'], - tasks: { - '@fluentui/react-popover:e2e:local': { - id: '@fluentui/react-popover:e2e:local', - target: { project: '@fluentui/react-popover', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:e2e:local': [] }, - }, - '@fluentui/react-popover:storybook': { - roots: ['@fluentui/react-popover:storybook'], - tasks: { - '@fluentui/react-popover:storybook': { - id: '@fluentui/react-popover:storybook', - target: { project: '@fluentui/react-popover', target: 'storybook' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:storybook': [] }, - }, - '@fluentui/react-popover:test': { - roots: ['@fluentui/react-popover:test'], - tasks: { - '@fluentui/react-popover:test': { - id: '@fluentui/react-popover:test', - target: { project: '@fluentui/react-popover', target: 'test' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:test': [] }, - }, - '@fluentui/react-popover:type-check': { - roots: ['@fluentui/react-popover:type-check'], - tasks: { - '@fluentui/react-popover:type-check': { - id: '@fluentui/react-popover:type-check', - target: { project: '@fluentui/react-popover', target: 'type-check' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:type-check': [] }, - }, - '@fluentui/react-popover:generate-api': { - roots: ['@fluentui/react-popover:generate-api'], - tasks: { - '@fluentui/react-popover:generate-api': { - id: '@fluentui/react-popover:generate-api', - target: { project: '@fluentui/react-popover', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:generate-api': [] }, - }, - '@fluentui/react-popover:test-ssr': { - roots: ['@fluentui/react-popover:test-ssr'], - tasks: { - '@fluentui/react-popover:test-ssr': { - id: '@fluentui/react-popover:test-ssr', - target: { project: '@fluentui/react-popover', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-popover:test-ssr': [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-icons-northstar:build': { - roots: [ - '@fluentui/accessibility:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - ], - tasks: { - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: {}, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - }, - }, - '@fluentui/react-icons-northstar:clean': { - roots: ['@fluentui/react-icons-northstar:clean'], - tasks: { - '@fluentui/react-icons-northstar:clean': { - id: '@fluentui/react-icons-northstar:clean', - target: { project: '@fluentui/react-icons-northstar', target: 'clean' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-northstar:clean': [] }, - }, - '@fluentui/react-icons-northstar:lint': { - roots: ['@fluentui/react-icons-northstar:lint'], - tasks: { - '@fluentui/react-icons-northstar:lint': { - id: '@fluentui/react-icons-northstar:lint', - target: { project: '@fluentui/react-icons-northstar', target: 'lint' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-northstar:lint': [] }, - }, - '@fluentui/react-icons-northstar:lint:fix': { - roots: ['@fluentui/react-icons-northstar:lint:fix'], - tasks: { - '@fluentui/react-icons-northstar:lint:fix': { - id: '@fluentui/react-icons-northstar:lint:fix', - target: { project: '@fluentui/react-icons-northstar', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-northstar:lint:fix': [] }, - }, - '@fluentui/react-icons-northstar:test': { - roots: ['@fluentui/react-icons-northstar:test'], - tasks: { - '@fluentui/react-icons-northstar:test': { - id: '@fluentui/react-icons-northstar:test', - target: { project: '@fluentui/react-icons-northstar', target: 'test' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-northstar:test': [] }, - }, - '@fluentui/react-icons-northstar:test:watch': { - roots: ['@fluentui/react-icons-northstar:test:watch'], - tasks: { - '@fluentui/react-icons-northstar:test:watch': { - id: '@fluentui/react-icons-northstar:test:watch', - target: { project: '@fluentui/react-icons-northstar', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-northstar:test:watch': [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: {}, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - }, - }, - '@fluentui/react-divider:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-divider:bundle-size': { - roots: ['@fluentui/react-divider:bundle-size'], - tasks: { - '@fluentui/react-divider:bundle-size': { - id: '@fluentui/react-divider:bundle-size', - target: { project: '@fluentui/react-divider', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:bundle-size': [] }, - }, - '@fluentui/react-divider:clean': { - roots: ['@fluentui/react-divider:clean'], - tasks: { - '@fluentui/react-divider:clean': { - id: '@fluentui/react-divider:clean', - target: { project: '@fluentui/react-divider', target: 'clean' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:clean': [] }, - }, - '@fluentui/react-divider:code-style': { - roots: ['@fluentui/react-divider:code-style'], - tasks: { - '@fluentui/react-divider:code-style': { - id: '@fluentui/react-divider:code-style', - target: { project: '@fluentui/react-divider', target: 'code-style' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:code-style': [] }, - }, - '@fluentui/react-divider:just': { - roots: ['@fluentui/react-divider:just'], - tasks: { - '@fluentui/react-divider:just': { - id: '@fluentui/react-divider:just', - target: { project: '@fluentui/react-divider', target: 'just' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:just': [] }, - }, - '@fluentui/react-divider:lint': { - roots: ['@fluentui/react-divider:lint'], - tasks: { - '@fluentui/react-divider:lint': { - id: '@fluentui/react-divider:lint', - target: { project: '@fluentui/react-divider', target: 'lint' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:lint': [] }, - }, - '@fluentui/react-divider:start': { - roots: ['@fluentui/react-divider:start'], - tasks: { - '@fluentui/react-divider:start': { - id: '@fluentui/react-divider:start', - target: { project: '@fluentui/react-divider', target: 'start' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:start': [] }, - }, - '@fluentui/react-divider:test': { - roots: ['@fluentui/react-divider:test'], - tasks: { - '@fluentui/react-divider:test': { - id: '@fluentui/react-divider:test', - target: { project: '@fluentui/react-divider', target: 'test' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:test': [] }, - }, - '@fluentui/react-divider:storybook': { - roots: ['@fluentui/react-divider:storybook'], - tasks: { - '@fluentui/react-divider:storybook': { - id: '@fluentui/react-divider:storybook', - target: { project: '@fluentui/react-divider', target: 'storybook' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:storybook': [] }, - }, - '@fluentui/react-divider:type-check': { - roots: ['@fluentui/react-divider:type-check'], - tasks: { - '@fluentui/react-divider:type-check': { - id: '@fluentui/react-divider:type-check', - target: { project: '@fluentui/react-divider', target: 'type-check' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:type-check': [] }, - }, - '@fluentui/react-divider:generate-api': { - roots: ['@fluentui/react-divider:generate-api'], - tasks: { - '@fluentui/react-divider:generate-api': { - id: '@fluentui/react-divider:generate-api', - target: { project: '@fluentui/react-divider', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:generate-api': [] }, - }, - '@fluentui/react-divider:test-ssr': { - roots: ['@fluentui/react-divider:test-ssr'], - tasks: { - '@fluentui/react-divider:test-ssr': { - id: '@fluentui/react-divider:test-ssr', - target: { project: '@fluentui/react-divider', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-divider:test-ssr': [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-tabster:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build'], - tasks: { - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - }, - }, - '@fluentui/react-tabster:clean': { - roots: ['@fluentui/react-tabster:clean'], - tasks: { - '@fluentui/react-tabster:clean': { - id: '@fluentui/react-tabster:clean', - target: { project: '@fluentui/react-tabster', target: 'clean' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:clean': [] }, - }, - '@fluentui/react-tabster:code-style': { - roots: ['@fluentui/react-tabster:code-style'], - tasks: { - '@fluentui/react-tabster:code-style': { - id: '@fluentui/react-tabster:code-style', - target: { project: '@fluentui/react-tabster', target: 'code-style' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:code-style': [] }, - }, - '@fluentui/react-tabster:e2e': { - roots: ['@fluentui/react-tabster:e2e'], - tasks: { - '@fluentui/react-tabster:e2e': { - id: '@fluentui/react-tabster:e2e', - target: { project: '@fluentui/react-tabster', target: 'e2e' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:e2e': [] }, - }, - '@fluentui/react-tabster:e2e:local': { - roots: ['@fluentui/react-tabster:e2e:local'], - tasks: { - '@fluentui/react-tabster:e2e:local': { - id: '@fluentui/react-tabster:e2e:local', - target: { project: '@fluentui/react-tabster', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:e2e:local': [] }, - }, - '@fluentui/react-tabster:just': { - roots: ['@fluentui/react-tabster:just'], - tasks: { - '@fluentui/react-tabster:just': { - id: '@fluentui/react-tabster:just', - target: { project: '@fluentui/react-tabster', target: 'just' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:just': [] }, - }, - '@fluentui/react-tabster:lint': { - roots: ['@fluentui/react-tabster:lint'], - tasks: { - '@fluentui/react-tabster:lint': { - id: '@fluentui/react-tabster:lint', - target: { project: '@fluentui/react-tabster', target: 'lint' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:lint': [] }, - }, - '@fluentui/react-tabster:test': { - roots: ['@fluentui/react-tabster:test'], - tasks: { - '@fluentui/react-tabster:test': { - id: '@fluentui/react-tabster:test', - target: { project: '@fluentui/react-tabster', target: 'test' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:test': [] }, - }, - '@fluentui/react-tabster:type-check': { - roots: ['@fluentui/react-tabster:type-check'], - tasks: { - '@fluentui/react-tabster:type-check': { - id: '@fluentui/react-tabster:type-check', - target: { project: '@fluentui/react-tabster', target: 'type-check' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:type-check': [] }, - }, - '@fluentui/react-tabster:generate-api': { - roots: ['@fluentui/react-tabster:generate-api'], - tasks: { - '@fluentui/react-tabster:generate-api': { - id: '@fluentui/react-tabster:generate-api', - target: { project: '@fluentui/react-tabster', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:generate-api': [] }, - }, - '@fluentui/react-tabster:test-ssr': { - roots: ['@fluentui/react-tabster:test-ssr'], - tasks: { - '@fluentui/react-tabster:test-ssr': { - id: '@fluentui/react-tabster:test-ssr', - target: { project: '@fluentui/react-tabster', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabster:test-ssr': [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: {}, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-persona:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-persona:bundle-size': { - roots: ['@fluentui/react-persona:bundle-size'], - tasks: { - '@fluentui/react-persona:bundle-size': { - id: '@fluentui/react-persona:bundle-size', - target: { project: '@fluentui/react-persona', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:bundle-size': [] }, - }, - '@fluentui/react-persona:clean': { - roots: ['@fluentui/react-persona:clean'], - tasks: { - '@fluentui/react-persona:clean': { - id: '@fluentui/react-persona:clean', - target: { project: '@fluentui/react-persona', target: 'clean' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:clean': [] }, - }, - '@fluentui/react-persona:code-style': { - roots: ['@fluentui/react-persona:code-style'], - tasks: { - '@fluentui/react-persona:code-style': { - id: '@fluentui/react-persona:code-style', - target: { project: '@fluentui/react-persona', target: 'code-style' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:code-style': [] }, - }, - '@fluentui/react-persona:just': { - roots: ['@fluentui/react-persona:just'], - tasks: { - '@fluentui/react-persona:just': { - id: '@fluentui/react-persona:just', - target: { project: '@fluentui/react-persona', target: 'just' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:just': [] }, - }, - '@fluentui/react-persona:lint': { - roots: ['@fluentui/react-persona:lint'], - tasks: { - '@fluentui/react-persona:lint': { - id: '@fluentui/react-persona:lint', - target: { project: '@fluentui/react-persona', target: 'lint' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:lint': [] }, - }, - '@fluentui/react-persona:test': { - roots: ['@fluentui/react-persona:test'], - tasks: { - '@fluentui/react-persona:test': { - id: '@fluentui/react-persona:test', - target: { project: '@fluentui/react-persona', target: 'test' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:test': [] }, - }, - '@fluentui/react-persona:type-check': { - roots: ['@fluentui/react-persona:type-check'], - tasks: { - '@fluentui/react-persona:type-check': { - id: '@fluentui/react-persona:type-check', - target: { project: '@fluentui/react-persona', target: 'type-check' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:type-check': [] }, - }, - '@fluentui/react-persona:storybook': { - roots: ['@fluentui/react-persona:storybook'], - tasks: { - '@fluentui/react-persona:storybook': { - id: '@fluentui/react-persona:storybook', - target: { project: '@fluentui/react-persona', target: 'storybook' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:storybook': [] }, - }, - '@fluentui/react-persona:start': { - roots: ['@fluentui/react-persona:start'], - tasks: { - '@fluentui/react-persona:start': { - id: '@fluentui/react-persona:start', - target: { project: '@fluentui/react-persona', target: 'start' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:start': [] }, - }, - '@fluentui/react-persona:generate-api': { - roots: ['@fluentui/react-persona:generate-api'], - tasks: { - '@fluentui/react-persona:generate-api': { - id: '@fluentui/react-persona:generate-api', - target: { project: '@fluentui/react-persona', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:generate-api': [] }, - }, - '@fluentui/react-persona:test-ssr': { - roots: ['@fluentui/react-persona:test-ssr'], - tasks: { - '@fluentui/react-persona:test-ssr': { - id: '@fluentui/react-persona:test-ssr', - target: { project: '@fluentui/react-persona', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-persona:test-ssr': [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: {}, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-spinner:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-spinner:bundle-size': { - roots: ['@fluentui/react-spinner:bundle-size'], - tasks: { - '@fluentui/react-spinner:bundle-size': { - id: '@fluentui/react-spinner:bundle-size', - target: { project: '@fluentui/react-spinner', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:bundle-size': [] }, - }, - '@fluentui/react-spinner:clean': { - roots: ['@fluentui/react-spinner:clean'], - tasks: { - '@fluentui/react-spinner:clean': { - id: '@fluentui/react-spinner:clean', - target: { project: '@fluentui/react-spinner', target: 'clean' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:clean': [] }, - }, - '@fluentui/react-spinner:code-style': { - roots: ['@fluentui/react-spinner:code-style'], - tasks: { - '@fluentui/react-spinner:code-style': { - id: '@fluentui/react-spinner:code-style', - target: { project: '@fluentui/react-spinner', target: 'code-style' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:code-style': [] }, - }, - '@fluentui/react-spinner:just': { - roots: ['@fluentui/react-spinner:just'], - tasks: { - '@fluentui/react-spinner:just': { - id: '@fluentui/react-spinner:just', - target: { project: '@fluentui/react-spinner', target: 'just' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:just': [] }, - }, - '@fluentui/react-spinner:lint': { - roots: ['@fluentui/react-spinner:lint'], - tasks: { - '@fluentui/react-spinner:lint': { - id: '@fluentui/react-spinner:lint', - target: { project: '@fluentui/react-spinner', target: 'lint' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:lint': [] }, - }, - '@fluentui/react-spinner:start': { - roots: ['@fluentui/react-spinner:start'], - tasks: { - '@fluentui/react-spinner:start': { - id: '@fluentui/react-spinner:start', - target: { project: '@fluentui/react-spinner', target: 'start' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:start': [] }, - }, - '@fluentui/react-spinner:test': { - roots: ['@fluentui/react-spinner:test'], - tasks: { - '@fluentui/react-spinner:test': { - id: '@fluentui/react-spinner:test', - target: { project: '@fluentui/react-spinner', target: 'test' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:test': [] }, - }, - '@fluentui/react-spinner:storybook': { - roots: ['@fluentui/react-spinner:storybook'], - tasks: { - '@fluentui/react-spinner:storybook': { - id: '@fluentui/react-spinner:storybook', - target: { project: '@fluentui/react-spinner', target: 'storybook' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:storybook': [] }, - }, - '@fluentui/react-spinner:type-check': { - roots: ['@fluentui/react-spinner:type-check'], - tasks: { - '@fluentui/react-spinner:type-check': { - id: '@fluentui/react-spinner:type-check', - target: { project: '@fluentui/react-spinner', target: 'type-check' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:type-check': [] }, - }, - '@fluentui/react-spinner:generate-api': { - roots: ['@fluentui/react-spinner:generate-api'], - tasks: { - '@fluentui/react-spinner:generate-api': { - id: '@fluentui/react-spinner:generate-api', - target: { project: '@fluentui/react-spinner', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:generate-api': [] }, - }, - '@fluentui/react-spinner:test-ssr': { - roots: ['@fluentui/react-spinner:test-ssr'], - tasks: { - '@fluentui/react-spinner:test-ssr': { - id: '@fluentui/react-spinner:test-ssr', - target: { project: '@fluentui/react-spinner', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-spinner:test-ssr': [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-drawer:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-drawer:clean': { - roots: ['@fluentui/react-drawer:clean'], - tasks: { - '@fluentui/react-drawer:clean': { - id: '@fluentui/react-drawer:clean', - target: { project: '@fluentui/react-drawer', target: 'clean' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:clean': [] }, - }, - '@fluentui/react-drawer:code-style': { - roots: ['@fluentui/react-drawer:code-style'], - tasks: { - '@fluentui/react-drawer:code-style': { - id: '@fluentui/react-drawer:code-style', - target: { project: '@fluentui/react-drawer', target: 'code-style' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:code-style': [] }, - }, - '@fluentui/react-drawer:e2e': { - roots: ['@fluentui/react-drawer:e2e'], - tasks: { - '@fluentui/react-drawer:e2e': { - id: '@fluentui/react-drawer:e2e', - target: { project: '@fluentui/react-drawer', target: 'e2e' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:e2e': [] }, - }, - '@fluentui/react-drawer:e2e:local': { - roots: ['@fluentui/react-drawer:e2e:local'], - tasks: { - '@fluentui/react-drawer:e2e:local': { - id: '@fluentui/react-drawer:e2e:local', - target: { project: '@fluentui/react-drawer', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:e2e:local': [] }, - }, - '@fluentui/react-drawer:just': { - roots: ['@fluentui/react-drawer:just'], - tasks: { - '@fluentui/react-drawer:just': { - id: '@fluentui/react-drawer:just', - target: { project: '@fluentui/react-drawer', target: 'just' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:just': [] }, - }, - '@fluentui/react-drawer:lint': { - roots: ['@fluentui/react-drawer:lint'], - tasks: { - '@fluentui/react-drawer:lint': { - id: '@fluentui/react-drawer:lint', - target: { project: '@fluentui/react-drawer', target: 'lint' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:lint': [] }, - }, - '@fluentui/react-drawer:test': { - roots: ['@fluentui/react-drawer:test'], - tasks: { - '@fluentui/react-drawer:test': { - id: '@fluentui/react-drawer:test', - target: { project: '@fluentui/react-drawer', target: 'test' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:test': [] }, - }, - '@fluentui/react-drawer:type-check': { - roots: ['@fluentui/react-drawer:type-check'], - tasks: { - '@fluentui/react-drawer:type-check': { - id: '@fluentui/react-drawer:type-check', - target: { project: '@fluentui/react-drawer', target: 'type-check' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:type-check': [] }, - }, - '@fluentui/react-drawer:generate-api': { - roots: ['@fluentui/react-drawer:generate-api'], - tasks: { - '@fluentui/react-drawer:generate-api': { - id: '@fluentui/react-drawer:generate-api', - target: { project: '@fluentui/react-drawer', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:generate-api': [] }, - }, - '@fluentui/react-drawer:storybook': { - roots: ['@fluentui/react-drawer:storybook'], - tasks: { - '@fluentui/react-drawer:storybook': { - id: '@fluentui/react-drawer:storybook', - target: { project: '@fluentui/react-drawer', target: 'storybook' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:storybook': [] }, - }, - '@fluentui/react-drawer:start': { - roots: ['@fluentui/react-drawer:start'], - tasks: { - '@fluentui/react-drawer:start': { - id: '@fluentui/react-drawer:start', - target: { project: '@fluentui/react-drawer', target: 'start' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:start': [] }, - }, - '@fluentui/react-drawer:test-ssr': { - roots: ['@fluentui/react-drawer:test-ssr'], - tasks: { - '@fluentui/react-drawer:test-ssr': { - id: '@fluentui/react-drawer:test-ssr', - target: { project: '@fluentui/react-drawer', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-drawer:test-ssr': [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: {}, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-button:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/a11y-testing:build': [], - }, - }, - '@fluentui/react-button:bundle-size': { - roots: ['@fluentui/react-button:bundle-size'], - tasks: { - '@fluentui/react-button:bundle-size': { - id: '@fluentui/react-button:bundle-size', - target: { project: '@fluentui/react-button', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:bundle-size': [] }, - }, - '@fluentui/react-button:clean': { - roots: ['@fluentui/react-button:clean'], - tasks: { - '@fluentui/react-button:clean': { - id: '@fluentui/react-button:clean', - target: { project: '@fluentui/react-button', target: 'clean' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:clean': [] }, - }, - '@fluentui/react-button:code-style': { - roots: ['@fluentui/react-button:code-style'], - tasks: { - '@fluentui/react-button:code-style': { - id: '@fluentui/react-button:code-style', - target: { project: '@fluentui/react-button', target: 'code-style' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:code-style': [] }, - }, - '@fluentui/react-button:just': { - roots: ['@fluentui/react-button:just'], - tasks: { - '@fluentui/react-button:just': { - id: '@fluentui/react-button:just', - target: { project: '@fluentui/react-button', target: 'just' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:just': [] }, - }, - '@fluentui/react-button:lint': { - roots: ['@fluentui/react-button:lint'], - tasks: { - '@fluentui/react-button:lint': { - id: '@fluentui/react-button:lint', - target: { project: '@fluentui/react-button', target: 'lint' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:lint': [] }, - }, - '@fluentui/react-button:start': { - roots: ['@fluentui/react-button:start'], - tasks: { - '@fluentui/react-button:start': { - id: '@fluentui/react-button:start', - target: { project: '@fluentui/react-button', target: 'start' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:start': [] }, - }, - '@fluentui/react-button:test': { - roots: ['@fluentui/react-button:test'], - tasks: { - '@fluentui/react-button:test': { - id: '@fluentui/react-button:test', - target: { project: '@fluentui/react-button', target: 'test' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:test': [] }, - }, - '@fluentui/react-button:storybook': { - roots: ['@fluentui/react-button:storybook'], - tasks: { - '@fluentui/react-button:storybook': { - id: '@fluentui/react-button:storybook', - target: { project: '@fluentui/react-button', target: 'storybook' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:storybook': [] }, - }, - '@fluentui/react-button:type-check': { - roots: ['@fluentui/react-button:type-check'], - tasks: { - '@fluentui/react-button:type-check': { - id: '@fluentui/react-button:type-check', - target: { project: '@fluentui/react-button', target: 'type-check' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:type-check': [] }, - }, - '@fluentui/react-button:generate-api': { - roots: ['@fluentui/react-button:generate-api'], - tasks: { - '@fluentui/react-button:generate-api': { - id: '@fluentui/react-button:generate-api', - target: { project: '@fluentui/react-button', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:generate-api': [] }, - }, - '@fluentui/react-button:test-ssr': { - roots: ['@fluentui/react-button:test-ssr'], - tasks: { - '@fluentui/react-button:test-ssr': { - id: '@fluentui/react-button:test-ssr', - target: { project: '@fluentui/react-button', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-button:test-ssr': [] }, - }, - '@fluentui/react-button:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-slider:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-slider:bundle-size': { - roots: ['@fluentui/react-slider:bundle-size'], - tasks: { - '@fluentui/react-slider:bundle-size': { - id: '@fluentui/react-slider:bundle-size', - target: { project: '@fluentui/react-slider', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:bundle-size': [] }, - }, - '@fluentui/react-slider:clean': { - roots: ['@fluentui/react-slider:clean'], - tasks: { - '@fluentui/react-slider:clean': { - id: '@fluentui/react-slider:clean', - target: { project: '@fluentui/react-slider', target: 'clean' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:clean': [] }, - }, - '@fluentui/react-slider:code-style': { - roots: ['@fluentui/react-slider:code-style'], - tasks: { - '@fluentui/react-slider:code-style': { - id: '@fluentui/react-slider:code-style', - target: { project: '@fluentui/react-slider', target: 'code-style' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:code-style': [] }, - }, - '@fluentui/react-slider:just': { - roots: ['@fluentui/react-slider:just'], - tasks: { - '@fluentui/react-slider:just': { - id: '@fluentui/react-slider:just', - target: { project: '@fluentui/react-slider', target: 'just' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:just': [] }, - }, - '@fluentui/react-slider:lint': { - roots: ['@fluentui/react-slider:lint'], - tasks: { - '@fluentui/react-slider:lint': { - id: '@fluentui/react-slider:lint', - target: { project: '@fluentui/react-slider', target: 'lint' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:lint': [] }, - }, - '@fluentui/react-slider:start': { - roots: ['@fluentui/react-slider:start'], - tasks: { - '@fluentui/react-slider:start': { - id: '@fluentui/react-slider:start', - target: { project: '@fluentui/react-slider', target: 'start' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:start': [] }, - }, - '@fluentui/react-slider:test': { - roots: ['@fluentui/react-slider:test'], - tasks: { - '@fluentui/react-slider:test': { - id: '@fluentui/react-slider:test', - target: { project: '@fluentui/react-slider', target: 'test' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:test': [] }, - }, - '@fluentui/react-slider:storybook': { - roots: ['@fluentui/react-slider:storybook'], - tasks: { - '@fluentui/react-slider:storybook': { - id: '@fluentui/react-slider:storybook', - target: { project: '@fluentui/react-slider', target: 'storybook' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:storybook': [] }, - }, - '@fluentui/react-slider:type-check': { - roots: ['@fluentui/react-slider:type-check'], - tasks: { - '@fluentui/react-slider:type-check': { - id: '@fluentui/react-slider:type-check', - target: { project: '@fluentui/react-slider', target: 'type-check' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:type-check': [] }, - }, - '@fluentui/react-slider:generate-api': { - roots: ['@fluentui/react-slider:generate-api'], - tasks: { - '@fluentui/react-slider:generate-api': { - id: '@fluentui/react-slider:generate-api', - target: { project: '@fluentui/react-slider', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:generate-api': [] }, - }, - '@fluentui/react-slider:test-ssr': { - roots: ['@fluentui/react-slider:test-ssr'], - tasks: { - '@fluentui/react-slider:test-ssr': { - id: '@fluentui/react-slider:test-ssr', - target: { project: '@fluentui/react-slider', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-slider:test-ssr': [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-select:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-select:bundle-size': { - roots: ['@fluentui/react-select:bundle-size'], - tasks: { - '@fluentui/react-select:bundle-size': { - id: '@fluentui/react-select:bundle-size', - target: { project: '@fluentui/react-select', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:bundle-size': [] }, - }, - '@fluentui/react-select:clean': { - roots: ['@fluentui/react-select:clean'], - tasks: { - '@fluentui/react-select:clean': { - id: '@fluentui/react-select:clean', - target: { project: '@fluentui/react-select', target: 'clean' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:clean': [] }, - }, - '@fluentui/react-select:code-style': { - roots: ['@fluentui/react-select:code-style'], - tasks: { - '@fluentui/react-select:code-style': { - id: '@fluentui/react-select:code-style', - target: { project: '@fluentui/react-select', target: 'code-style' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:code-style': [] }, - }, - '@fluentui/react-select:just': { - roots: ['@fluentui/react-select:just'], - tasks: { - '@fluentui/react-select:just': { - id: '@fluentui/react-select:just', - target: { project: '@fluentui/react-select', target: 'just' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:just': [] }, - }, - '@fluentui/react-select:lint': { - roots: ['@fluentui/react-select:lint'], - tasks: { - '@fluentui/react-select:lint': { - id: '@fluentui/react-select:lint', - target: { project: '@fluentui/react-select', target: 'lint' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:lint': [] }, - }, - '@fluentui/react-select:start': { - roots: ['@fluentui/react-select:start'], - tasks: { - '@fluentui/react-select:start': { - id: '@fluentui/react-select:start', - target: { project: '@fluentui/react-select', target: 'start' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:start': [] }, - }, - '@fluentui/react-select:test': { - roots: ['@fluentui/react-select:test'], - tasks: { - '@fluentui/react-select:test': { - id: '@fluentui/react-select:test', - target: { project: '@fluentui/react-select', target: 'test' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:test': [] }, - }, - '@fluentui/react-select:storybook': { - roots: ['@fluentui/react-select:storybook'], - tasks: { - '@fluentui/react-select:storybook': { - id: '@fluentui/react-select:storybook', - target: { project: '@fluentui/react-select', target: 'storybook' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:storybook': [] }, - }, - '@fluentui/react-select:type-check': { - roots: ['@fluentui/react-select:type-check'], - tasks: { - '@fluentui/react-select:type-check': { - id: '@fluentui/react-select:type-check', - target: { project: '@fluentui/react-select', target: 'type-check' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:type-check': [] }, - }, - '@fluentui/react-select:generate-api': { - roots: ['@fluentui/react-select:generate-api'], - tasks: { - '@fluentui/react-select:generate-api': { - id: '@fluentui/react-select:generate-api', - target: { project: '@fluentui/react-select', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:generate-api': [] }, - }, - '@fluentui/react-select:test-ssr': { - roots: ['@fluentui/react-select:test-ssr'], - tasks: { - '@fluentui/react-select:test-ssr': { - id: '@fluentui/react-select:test-ssr', - target: { project: '@fluentui/react-select', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-select:test-ssr': [] }, - }, - '@fluentui/react-select:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-switch:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-switch:bundle-size': { - roots: ['@fluentui/react-switch:bundle-size'], - tasks: { - '@fluentui/react-switch:bundle-size': { - id: '@fluentui/react-switch:bundle-size', - target: { project: '@fluentui/react-switch', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:bundle-size': [] }, - }, - '@fluentui/react-switch:clean': { - roots: ['@fluentui/react-switch:clean'], - tasks: { - '@fluentui/react-switch:clean': { - id: '@fluentui/react-switch:clean', - target: { project: '@fluentui/react-switch', target: 'clean' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:clean': [] }, - }, - '@fluentui/react-switch:code-style': { - roots: ['@fluentui/react-switch:code-style'], - tasks: { - '@fluentui/react-switch:code-style': { - id: '@fluentui/react-switch:code-style', - target: { project: '@fluentui/react-switch', target: 'code-style' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:code-style': [] }, - }, - '@fluentui/react-switch:just': { - roots: ['@fluentui/react-switch:just'], - tasks: { - '@fluentui/react-switch:just': { - id: '@fluentui/react-switch:just', - target: { project: '@fluentui/react-switch', target: 'just' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:just': [] }, - }, - '@fluentui/react-switch:lint': { - roots: ['@fluentui/react-switch:lint'], - tasks: { - '@fluentui/react-switch:lint': { - id: '@fluentui/react-switch:lint', - target: { project: '@fluentui/react-switch', target: 'lint' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:lint': [] }, - }, - '@fluentui/react-switch:start': { - roots: ['@fluentui/react-switch:start'], - tasks: { - '@fluentui/react-switch:start': { - id: '@fluentui/react-switch:start', - target: { project: '@fluentui/react-switch', target: 'start' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:start': [] }, - }, - '@fluentui/react-switch:test': { - roots: ['@fluentui/react-switch:test'], - tasks: { - '@fluentui/react-switch:test': { - id: '@fluentui/react-switch:test', - target: { project: '@fluentui/react-switch', target: 'test' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:test': [] }, - }, - '@fluentui/react-switch:storybook': { - roots: ['@fluentui/react-switch:storybook'], - tasks: { - '@fluentui/react-switch:storybook': { - id: '@fluentui/react-switch:storybook', - target: { project: '@fluentui/react-switch', target: 'storybook' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:storybook': [] }, - }, - '@fluentui/react-switch:type-check': { - roots: ['@fluentui/react-switch:type-check'], - tasks: { - '@fluentui/react-switch:type-check': { - id: '@fluentui/react-switch:type-check', - target: { project: '@fluentui/react-switch', target: 'type-check' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:type-check': [] }, - }, - '@fluentui/react-switch:generate-api': { - roots: ['@fluentui/react-switch:generate-api'], - tasks: { - '@fluentui/react-switch:generate-api': { - id: '@fluentui/react-switch:generate-api', - target: { project: '@fluentui/react-switch', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:generate-api': [] }, - }, - '@fluentui/react-switch:test-ssr': { - roots: ['@fluentui/react-switch:test-ssr'], - tasks: { - '@fluentui/react-switch:test-ssr': { - id: '@fluentui/react-switch:test-ssr', - target: { project: '@fluentui/react-switch', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-switch:test-ssr': [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-dialog:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - }, - }, - '@fluentui/react-dialog:clean': { - roots: ['@fluentui/react-dialog:clean'], - tasks: { - '@fluentui/react-dialog:clean': { - id: '@fluentui/react-dialog:clean', - target: { project: '@fluentui/react-dialog', target: 'clean' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:clean': [] }, - }, - '@fluentui/react-dialog:code-style': { - roots: ['@fluentui/react-dialog:code-style'], - tasks: { - '@fluentui/react-dialog:code-style': { - id: '@fluentui/react-dialog:code-style', - target: { project: '@fluentui/react-dialog', target: 'code-style' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:code-style': [] }, - }, - '@fluentui/react-dialog:bundle-size': { - roots: ['@fluentui/react-dialog:bundle-size'], - tasks: { - '@fluentui/react-dialog:bundle-size': { - id: '@fluentui/react-dialog:bundle-size', - target: { project: '@fluentui/react-dialog', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:bundle-size': [] }, - }, - '@fluentui/react-dialog:just': { - roots: ['@fluentui/react-dialog:just'], - tasks: { - '@fluentui/react-dialog:just': { - id: '@fluentui/react-dialog:just', - target: { project: '@fluentui/react-dialog', target: 'just' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:just': [] }, - }, - '@fluentui/react-dialog:lint': { - roots: ['@fluentui/react-dialog:lint'], - tasks: { - '@fluentui/react-dialog:lint': { - id: '@fluentui/react-dialog:lint', - target: { project: '@fluentui/react-dialog', target: 'lint' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:lint': [] }, - }, - '@fluentui/react-dialog:start': { - roots: ['@fluentui/react-dialog:start'], - tasks: { - '@fluentui/react-dialog:start': { - id: '@fluentui/react-dialog:start', - target: { project: '@fluentui/react-dialog', target: 'start' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:start': [] }, - }, - '@fluentui/react-dialog:test': { - roots: ['@fluentui/react-dialog:test'], - tasks: { - '@fluentui/react-dialog:test': { - id: '@fluentui/react-dialog:test', - target: { project: '@fluentui/react-dialog', target: 'test' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:test': [] }, - }, - '@fluentui/react-dialog:e2e': { - roots: ['@fluentui/react-dialog:e2e'], - tasks: { - '@fluentui/react-dialog:e2e': { - id: '@fluentui/react-dialog:e2e', - target: { project: '@fluentui/react-dialog', target: 'e2e' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:e2e': [] }, - }, - '@fluentui/react-dialog:e2e:local': { - roots: ['@fluentui/react-dialog:e2e:local'], - tasks: { - '@fluentui/react-dialog:e2e:local': { - id: '@fluentui/react-dialog:e2e:local', - target: { project: '@fluentui/react-dialog', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:e2e:local': [] }, - }, - '@fluentui/react-dialog:storybook': { - roots: ['@fluentui/react-dialog:storybook'], - tasks: { - '@fluentui/react-dialog:storybook': { - id: '@fluentui/react-dialog:storybook', - target: { project: '@fluentui/react-dialog', target: 'storybook' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:storybook': [] }, - }, - '@fluentui/react-dialog:type-check': { - roots: ['@fluentui/react-dialog:type-check'], - tasks: { - '@fluentui/react-dialog:type-check': { - id: '@fluentui/react-dialog:type-check', - target: { project: '@fluentui/react-dialog', target: 'type-check' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:type-check': [] }, - }, - '@fluentui/react-dialog:generate-api': { - roots: ['@fluentui/react-dialog:generate-api'], - tasks: { - '@fluentui/react-dialog:generate-api': { - id: '@fluentui/react-dialog:generate-api', - target: { project: '@fluentui/react-dialog', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:generate-api': [] }, - }, - '@fluentui/react-dialog:test-ssr': { - roots: ['@fluentui/react-dialog:test-ssr'], - tasks: { - '@fluentui/react-dialog:test-ssr': { - id: '@fluentui/react-dialog:test-ssr', - target: { project: '@fluentui/react-dialog', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-dialog:test-ssr': [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: {}, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-avatar:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-avatar:bundle-size': { - roots: ['@fluentui/react-avatar:bundle-size'], - tasks: { - '@fluentui/react-avatar:bundle-size': { - id: '@fluentui/react-avatar:bundle-size', - target: { project: '@fluentui/react-avatar', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:bundle-size': [] }, - }, - '@fluentui/react-avatar:clean': { - roots: ['@fluentui/react-avatar:clean'], - tasks: { - '@fluentui/react-avatar:clean': { - id: '@fluentui/react-avatar:clean', - target: { project: '@fluentui/react-avatar', target: 'clean' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:clean': [] }, - }, - '@fluentui/react-avatar:code-style': { - roots: ['@fluentui/react-avatar:code-style'], - tasks: { - '@fluentui/react-avatar:code-style': { - id: '@fluentui/react-avatar:code-style', - target: { project: '@fluentui/react-avatar', target: 'code-style' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:code-style': [] }, - }, - '@fluentui/react-avatar:just': { - roots: ['@fluentui/react-avatar:just'], - tasks: { - '@fluentui/react-avatar:just': { - id: '@fluentui/react-avatar:just', - target: { project: '@fluentui/react-avatar', target: 'just' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:just': [] }, - }, - '@fluentui/react-avatar:lint': { - roots: ['@fluentui/react-avatar:lint'], - tasks: { - '@fluentui/react-avatar:lint': { - id: '@fluentui/react-avatar:lint', - target: { project: '@fluentui/react-avatar', target: 'lint' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:lint': [] }, - }, - '@fluentui/react-avatar:start': { - roots: ['@fluentui/react-avatar:start'], - tasks: { - '@fluentui/react-avatar:start': { - id: '@fluentui/react-avatar:start', - target: { project: '@fluentui/react-avatar', target: 'start' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:start': [] }, - }, - '@fluentui/react-avatar:e2e': { - roots: ['@fluentui/react-avatar:e2e'], - tasks: { - '@fluentui/react-avatar:e2e': { - id: '@fluentui/react-avatar:e2e', - target: { project: '@fluentui/react-avatar', target: 'e2e' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:e2e': [] }, - }, - '@fluentui/react-avatar:e2e:local': { - roots: ['@fluentui/react-avatar:e2e:local'], - tasks: { - '@fluentui/react-avatar:e2e:local': { - id: '@fluentui/react-avatar:e2e:local', - target: { project: '@fluentui/react-avatar', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:e2e:local': [] }, - }, - '@fluentui/react-avatar:test': { - roots: ['@fluentui/react-avatar:test'], - tasks: { - '@fluentui/react-avatar:test': { - id: '@fluentui/react-avatar:test', - target: { project: '@fluentui/react-avatar', target: 'test' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:test': [] }, - }, - '@fluentui/react-avatar:storybook': { - roots: ['@fluentui/react-avatar:storybook'], - tasks: { - '@fluentui/react-avatar:storybook': { - id: '@fluentui/react-avatar:storybook', - target: { project: '@fluentui/react-avatar', target: 'storybook' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:storybook': [] }, - }, - '@fluentui/react-avatar:type-check': { - roots: ['@fluentui/react-avatar:type-check'], - tasks: { - '@fluentui/react-avatar:type-check': { - id: '@fluentui/react-avatar:type-check', - target: { project: '@fluentui/react-avatar', target: 'type-check' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:type-check': [] }, - }, - '@fluentui/react-avatar:generate-api': { - roots: ['@fluentui/react-avatar:generate-api'], - tasks: { - '@fluentui/react-avatar:generate-api': { - id: '@fluentui/react-avatar:generate-api', - target: { project: '@fluentui/react-avatar', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:generate-api': [] }, - }, - '@fluentui/react-avatar:test-ssr': { - roots: ['@fluentui/react-avatar:test-ssr'], - tasks: { - '@fluentui/react-avatar:test-ssr': { - id: '@fluentui/react-avatar:test-ssr', - target: { project: '@fluentui/react-avatar', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-avatar:test-ssr': [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: {}, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-portal:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/react-portal:bundle-size': { - roots: ['@fluentui/react-portal:bundle-size'], - tasks: { - '@fluentui/react-portal:bundle-size': { - id: '@fluentui/react-portal:bundle-size', - target: { project: '@fluentui/react-portal', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:bundle-size': [] }, - }, - '@fluentui/react-portal:clean': { - roots: ['@fluentui/react-portal:clean'], - tasks: { - '@fluentui/react-portal:clean': { - id: '@fluentui/react-portal:clean', - target: { project: '@fluentui/react-portal', target: 'clean' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:clean': [] }, - }, - '@fluentui/react-portal:code-style': { - roots: ['@fluentui/react-portal:code-style'], - tasks: { - '@fluentui/react-portal:code-style': { - id: '@fluentui/react-portal:code-style', - target: { project: '@fluentui/react-portal', target: 'code-style' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:code-style': [] }, - }, - '@fluentui/react-portal:just': { - roots: ['@fluentui/react-portal:just'], - tasks: { - '@fluentui/react-portal:just': { - id: '@fluentui/react-portal:just', - target: { project: '@fluentui/react-portal', target: 'just' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:just': [] }, - }, - '@fluentui/react-portal:lint': { - roots: ['@fluentui/react-portal:lint'], - tasks: { - '@fluentui/react-portal:lint': { - id: '@fluentui/react-portal:lint', - target: { project: '@fluentui/react-portal', target: 'lint' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:lint': [] }, - }, - '@fluentui/react-portal:start': { - roots: ['@fluentui/react-portal:start'], - tasks: { - '@fluentui/react-portal:start': { - id: '@fluentui/react-portal:start', - target: { project: '@fluentui/react-portal', target: 'start' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:start': [] }, - }, - '@fluentui/react-portal:test': { - roots: ['@fluentui/react-portal:test'], - tasks: { - '@fluentui/react-portal:test': { - id: '@fluentui/react-portal:test', - target: { project: '@fluentui/react-portal', target: 'test' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:test': [] }, - }, - '@fluentui/react-portal:storybook': { - roots: ['@fluentui/react-portal:storybook'], - tasks: { - '@fluentui/react-portal:storybook': { - id: '@fluentui/react-portal:storybook', - target: { project: '@fluentui/react-portal', target: 'storybook' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:storybook': [] }, - }, - '@fluentui/react-portal:type-check': { - roots: ['@fluentui/react-portal:type-check'], - tasks: { - '@fluentui/react-portal:type-check': { - id: '@fluentui/react-portal:type-check', - target: { project: '@fluentui/react-portal', target: 'type-check' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:type-check': [] }, - }, - '@fluentui/react-portal:generate-api': { - roots: ['@fluentui/react-portal:generate-api'], - tasks: { - '@fluentui/react-portal:generate-api': { - id: '@fluentui/react-portal:generate-api', - target: { project: '@fluentui/react-portal', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:generate-api': [] }, - }, - '@fluentui/react-portal:test-ssr': { - roots: ['@fluentui/react-portal:test-ssr'], - tasks: { - '@fluentui/react-portal:test-ssr': { - id: '@fluentui/react-portal:test-ssr', - target: { project: '@fluentui/react-portal', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-portal:test-ssr': [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: {}, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-table:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-table:bundle-size': { - roots: ['@fluentui/react-table:bundle-size'], - tasks: { - '@fluentui/react-table:bundle-size': { - id: '@fluentui/react-table:bundle-size', - target: { project: '@fluentui/react-table', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:bundle-size': [] }, - }, - '@fluentui/react-table:clean': { - roots: ['@fluentui/react-table:clean'], - tasks: { - '@fluentui/react-table:clean': { - id: '@fluentui/react-table:clean', - target: { project: '@fluentui/react-table', target: 'clean' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:clean': [] }, - }, - '@fluentui/react-table:code-style': { - roots: ['@fluentui/react-table:code-style'], - tasks: { - '@fluentui/react-table:code-style': { - id: '@fluentui/react-table:code-style', - target: { project: '@fluentui/react-table', target: 'code-style' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:code-style': [] }, - }, - '@fluentui/react-table:e2e': { - roots: ['@fluentui/react-table:e2e'], - tasks: { - '@fluentui/react-table:e2e': { - id: '@fluentui/react-table:e2e', - target: { project: '@fluentui/react-table', target: 'e2e' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:e2e': [] }, - }, - '@fluentui/react-table:e2e:local': { - roots: ['@fluentui/react-table:e2e:local'], - tasks: { - '@fluentui/react-table:e2e:local': { - id: '@fluentui/react-table:e2e:local', - target: { project: '@fluentui/react-table', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:e2e:local': [] }, - }, - '@fluentui/react-table:just': { - roots: ['@fluentui/react-table:just'], - tasks: { - '@fluentui/react-table:just': { - id: '@fluentui/react-table:just', - target: { project: '@fluentui/react-table', target: 'just' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:just': [] }, - }, - '@fluentui/react-table:lint': { - roots: ['@fluentui/react-table:lint'], - tasks: { - '@fluentui/react-table:lint': { - id: '@fluentui/react-table:lint', - target: { project: '@fluentui/react-table', target: 'lint' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:lint': [] }, - }, - '@fluentui/react-table:test': { - roots: ['@fluentui/react-table:test'], - tasks: { - '@fluentui/react-table:test': { - id: '@fluentui/react-table:test', - target: { project: '@fluentui/react-table', target: 'test' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:test': [] }, - }, - '@fluentui/react-table:type-check': { - roots: ['@fluentui/react-table:type-check'], - tasks: { - '@fluentui/react-table:type-check': { - id: '@fluentui/react-table:type-check', - target: { project: '@fluentui/react-table', target: 'type-check' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:type-check': [] }, - }, - '@fluentui/react-table:storybook': { - roots: ['@fluentui/react-table:storybook'], - tasks: { - '@fluentui/react-table:storybook': { - id: '@fluentui/react-table:storybook', - target: { project: '@fluentui/react-table', target: 'storybook' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:storybook': [] }, - }, - '@fluentui/react-table:start': { - roots: ['@fluentui/react-table:start'], - tasks: { - '@fluentui/react-table:start': { - id: '@fluentui/react-table:start', - target: { project: '@fluentui/react-table', target: 'start' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:start': [] }, - }, - '@fluentui/react-table:generate-api': { - roots: ['@fluentui/react-table:generate-api'], - tasks: { - '@fluentui/react-table:generate-api': { - id: '@fluentui/react-table:generate-api', - target: { project: '@fluentui/react-table', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:generate-api': [] }, - }, - '@fluentui/react-table:test-ssr': { - roots: ['@fluentui/react-table:test-ssr'], - tasks: { - '@fluentui/react-table:test-ssr': { - id: '@fluentui/react-table:test-ssr', - target: { project: '@fluentui/react-table', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-table:test-ssr': [] }, - }, - '@fluentui/react-table:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-badge:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-badge:bundle-size': { - roots: ['@fluentui/react-badge:bundle-size'], - tasks: { - '@fluentui/react-badge:bundle-size': { - id: '@fluentui/react-badge:bundle-size', - target: { project: '@fluentui/react-badge', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:bundle-size': [] }, - }, - '@fluentui/react-badge:clean': { - roots: ['@fluentui/react-badge:clean'], - tasks: { - '@fluentui/react-badge:clean': { - id: '@fluentui/react-badge:clean', - target: { project: '@fluentui/react-badge', target: 'clean' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:clean': [] }, - }, - '@fluentui/react-badge:code-style': { - roots: ['@fluentui/react-badge:code-style'], - tasks: { - '@fluentui/react-badge:code-style': { - id: '@fluentui/react-badge:code-style', - target: { project: '@fluentui/react-badge', target: 'code-style' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:code-style': [] }, - }, - '@fluentui/react-badge:just': { - roots: ['@fluentui/react-badge:just'], - tasks: { - '@fluentui/react-badge:just': { - id: '@fluentui/react-badge:just', - target: { project: '@fluentui/react-badge', target: 'just' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:just': [] }, - }, - '@fluentui/react-badge:lint': { - roots: ['@fluentui/react-badge:lint'], - tasks: { - '@fluentui/react-badge:lint': { - id: '@fluentui/react-badge:lint', - target: { project: '@fluentui/react-badge', target: 'lint' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:lint': [] }, - }, - '@fluentui/react-badge:start': { - roots: ['@fluentui/react-badge:start'], - tasks: { - '@fluentui/react-badge:start': { - id: '@fluentui/react-badge:start', - target: { project: '@fluentui/react-badge', target: 'start' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:start': [] }, - }, - '@fluentui/react-badge:test': { - roots: ['@fluentui/react-badge:test'], - tasks: { - '@fluentui/react-badge:test': { - id: '@fluentui/react-badge:test', - target: { project: '@fluentui/react-badge', target: 'test' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:test': [] }, - }, - '@fluentui/react-badge:storybook': { - roots: ['@fluentui/react-badge:storybook'], - tasks: { - '@fluentui/react-badge:storybook': { - id: '@fluentui/react-badge:storybook', - target: { project: '@fluentui/react-badge', target: 'storybook' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:storybook': [] }, - }, - '@fluentui/react-badge:type-check': { - roots: ['@fluentui/react-badge:type-check'], - tasks: { - '@fluentui/react-badge:type-check': { - id: '@fluentui/react-badge:type-check', - target: { project: '@fluentui/react-badge', target: 'type-check' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:type-check': [] }, - }, - '@fluentui/react-badge:generate-api': { - roots: ['@fluentui/react-badge:generate-api'], - tasks: { - '@fluentui/react-badge:generate-api': { - id: '@fluentui/react-badge:generate-api', - target: { project: '@fluentui/react-badge', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:generate-api': [] }, - }, - '@fluentui/react-badge:test-ssr': { - roots: ['@fluentui/react-badge:test-ssr'], - tasks: { - '@fluentui/react-badge:test-ssr': { - id: '@fluentui/react-badge:test-ssr', - target: { project: '@fluentui/react-badge', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-badge:test-ssr': [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: {}, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/perf-test-northstar:type-check': { - roots: ['@fluentui/perf-test-northstar:type-check'], - tasks: { - '@fluentui/perf-test-northstar:type-check': { - id: '@fluentui/perf-test-northstar:type-check', - target: { project: '@fluentui/perf-test-northstar', target: 'type-check' }, - projectRoot: 'packages/fluentui/perf-test-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-northstar:type-check': [] }, - }, - '@fluentui/perf-test-northstar:bundle': { - roots: ['@fluentui/perf-test-northstar:bundle'], - tasks: { - '@fluentui/perf-test-northstar:bundle': { - id: '@fluentui/perf-test-northstar:bundle', - target: { project: '@fluentui/perf-test-northstar', target: 'bundle' }, - projectRoot: 'packages/fluentui/perf-test-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-northstar:bundle': [] }, - }, - '@fluentui/perf-test-northstar:clean': { - roots: ['@fluentui/perf-test-northstar:clean'], - tasks: { - '@fluentui/perf-test-northstar:clean': { - id: '@fluentui/perf-test-northstar:clean', - target: { project: '@fluentui/perf-test-northstar', target: 'clean' }, - projectRoot: 'packages/fluentui/perf-test-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-northstar:clean': [] }, - }, - '@fluentui/perf-test-northstar:test': { - roots: ['@fluentui/perf-test-northstar:test'], - tasks: { - '@fluentui/perf-test-northstar:test': { - id: '@fluentui/perf-test-northstar:test', - target: { project: '@fluentui/perf-test-northstar', target: 'test' }, - projectRoot: 'packages/fluentui/perf-test-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-northstar:test': [] }, - }, - '@fluentui/perf-test-northstar:perf:test': { - roots: ['@fluentui/perf-test-northstar:perf:test'], - tasks: { - '@fluentui/perf-test-northstar:perf:test': { - id: '@fluentui/perf-test-northstar:perf:test', - target: { project: '@fluentui/perf-test-northstar', target: 'perf:test' }, - projectRoot: 'packages/fluentui/perf-test-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-northstar:perf:test': [] }, - }, - '@fluentui/perf-test-northstar:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/digest:nx-release-publish', - ], - tasks: { - '@fluentui/perf-test-northstar:nx-release-publish': { - id: '@fluentui/perf-test-northstar:nx-release-publish', - target: { project: '@fluentui/perf-test-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/perf-test-northstar', - overrides: {}, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-prototypes:nx-release-publish': { - id: '@fluentui/react-northstar-prototypes:nx-release-publish', - target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:nx-release-publish': { - id: '@fluentui/code-sandbox:nx-release-publish', - target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:nx-release-publish': { - id: '@fluentui/docs-components:nx-release-publish', - target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/digest:nx-release-publish': { - id: '@fluentui/digest:nx-release-publish', - target: { project: '@fluentui/digest', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/digest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/perf-test-northstar:nx-release-publish': [ - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/react-northstar-prototypes:nx-release-publish', - '@fluentui/digest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-northstar-prototypes:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/code-sandbox:nx-release-publish': [ - '@fluentui/docs-components:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/docs-components:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/digest:nx-release-publish': [], - }, - }, - '@fluentui/react-field:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-field:bundle-size': { - roots: ['@fluentui/react-field:bundle-size'], - tasks: { - '@fluentui/react-field:bundle-size': { - id: '@fluentui/react-field:bundle-size', - target: { project: '@fluentui/react-field', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:bundle-size': [] }, - }, - '@fluentui/react-field:clean': { - roots: ['@fluentui/react-field:clean'], - tasks: { - '@fluentui/react-field:clean': { - id: '@fluentui/react-field:clean', - target: { project: '@fluentui/react-field', target: 'clean' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:clean': [] }, - }, - '@fluentui/react-field:code-style': { - roots: ['@fluentui/react-field:code-style'], - tasks: { - '@fluentui/react-field:code-style': { - id: '@fluentui/react-field:code-style', - target: { project: '@fluentui/react-field', target: 'code-style' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:code-style': [] }, - }, - '@fluentui/react-field:just': { - roots: ['@fluentui/react-field:just'], - tasks: { - '@fluentui/react-field:just': { - id: '@fluentui/react-field:just', - target: { project: '@fluentui/react-field', target: 'just' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:just': [] }, - }, - '@fluentui/react-field:lint': { - roots: ['@fluentui/react-field:lint'], - tasks: { - '@fluentui/react-field:lint': { - id: '@fluentui/react-field:lint', - target: { project: '@fluentui/react-field', target: 'lint' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:lint': [] }, - }, - '@fluentui/react-field:start': { - roots: ['@fluentui/react-field:start'], - tasks: { - '@fluentui/react-field:start': { - id: '@fluentui/react-field:start', - target: { project: '@fluentui/react-field', target: 'start' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:start': [] }, - }, - '@fluentui/react-field:storybook': { - roots: ['@fluentui/react-field:storybook'], - tasks: { - '@fluentui/react-field:storybook': { - id: '@fluentui/react-field:storybook', - target: { project: '@fluentui/react-field', target: 'storybook' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:storybook': [] }, - }, - '@fluentui/react-field:test': { - roots: ['@fluentui/react-field:test'], - tasks: { - '@fluentui/react-field:test': { - id: '@fluentui/react-field:test', - target: { project: '@fluentui/react-field', target: 'test' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:test': [] }, - }, - '@fluentui/react-field:type-check': { - roots: ['@fluentui/react-field:type-check'], - tasks: { - '@fluentui/react-field:type-check': { - id: '@fluentui/react-field:type-check', - target: { project: '@fluentui/react-field', target: 'type-check' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:type-check': [] }, - }, - '@fluentui/react-field:generate-api': { - roots: ['@fluentui/react-field:generate-api'], - tasks: { - '@fluentui/react-field:generate-api': { - id: '@fluentui/react-field:generate-api', - target: { project: '@fluentui/react-field', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:generate-api': [] }, - }, - '@fluentui/react-field:test-ssr': { - roots: ['@fluentui/react-field:test-ssr'], - tasks: { - '@fluentui/react-field:test-ssr': { - id: '@fluentui/react-field:test-ssr', - target: { project: '@fluentui/react-field', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-field:test-ssr': [] }, - }, - '@fluentui/react-field:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: {}, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-theme:build': { - roots: ['@fluentui/tokens:build'], - tasks: { - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { '@fluentui/react-theme:build': ['@fluentui/tokens:build'], '@fluentui/tokens:build': [] }, - }, - '@fluentui/react-theme:bundle-size': { - roots: ['@fluentui/react-theme:bundle-size'], - tasks: { - '@fluentui/react-theme:bundle-size': { - id: '@fluentui/react-theme:bundle-size', - target: { project: '@fluentui/react-theme', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:bundle-size': [] }, - }, - '@fluentui/react-theme:clean': { - roots: ['@fluentui/react-theme:clean'], - tasks: { - '@fluentui/react-theme:clean': { - id: '@fluentui/react-theme:clean', - target: { project: '@fluentui/react-theme', target: 'clean' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:clean': [] }, - }, - '@fluentui/react-theme:code-style': { - roots: ['@fluentui/react-theme:code-style'], - tasks: { - '@fluentui/react-theme:code-style': { - id: '@fluentui/react-theme:code-style', - target: { project: '@fluentui/react-theme', target: 'code-style' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:code-style': [] }, - }, - '@fluentui/react-theme:just': { - roots: ['@fluentui/react-theme:just'], - tasks: { - '@fluentui/react-theme:just': { - id: '@fluentui/react-theme:just', - target: { project: '@fluentui/react-theme', target: 'just' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:just': [] }, - }, - '@fluentui/react-theme:lint': { - roots: ['@fluentui/react-theme:lint'], - tasks: { - '@fluentui/react-theme:lint': { - id: '@fluentui/react-theme:lint', - target: { project: '@fluentui/react-theme', target: 'lint' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:lint': [] }, - }, - '@fluentui/react-theme:start': { - roots: ['@fluentui/react-theme:start'], - tasks: { - '@fluentui/react-theme:start': { - id: '@fluentui/react-theme:start', - target: { project: '@fluentui/react-theme', target: 'start' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:start': [] }, - }, - '@fluentui/react-theme:storybook': { - roots: ['@fluentui/react-theme:storybook'], - tasks: { - '@fluentui/react-theme:storybook': { - id: '@fluentui/react-theme:storybook', - target: { project: '@fluentui/react-theme', target: 'storybook' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:storybook': [] }, - }, - '@fluentui/react-theme:test': { - roots: ['@fluentui/react-theme:test'], - tasks: { - '@fluentui/react-theme:test': { - id: '@fluentui/react-theme:test', - target: { project: '@fluentui/react-theme', target: 'test' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:test': [] }, - }, - '@fluentui/react-theme:type-check': { - roots: ['@fluentui/react-theme:type-check'], - tasks: { - '@fluentui/react-theme:type-check': { - id: '@fluentui/react-theme:type-check', - target: { project: '@fluentui/react-theme', target: 'type-check' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:type-check': [] }, - }, - '@fluentui/react-theme:generate-api': { - roots: ['@fluentui/react-theme:generate-api'], - tasks: { - '@fluentui/react-theme:generate-api': { - id: '@fluentui/react-theme:generate-api', - target: { project: '@fluentui/react-theme', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-theme:generate-api': [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: {}, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-alert:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-alert:build': { - id: '@fluentui/react-alert:build', - target: { project: '@fluentui/react-alert', target: 'build' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-alert:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - }, - }, - '@fluentui/react-alert:bundle-size': { - roots: ['@fluentui/react-alert:bundle-size'], - tasks: { - '@fluentui/react-alert:bundle-size': { - id: '@fluentui/react-alert:bundle-size', - target: { project: '@fluentui/react-alert', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:bundle-size': [] }, - }, - '@fluentui/react-alert:clean': { - roots: ['@fluentui/react-alert:clean'], - tasks: { - '@fluentui/react-alert:clean': { - id: '@fluentui/react-alert:clean', - target: { project: '@fluentui/react-alert', target: 'clean' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:clean': [] }, - }, - '@fluentui/react-alert:code-style': { - roots: ['@fluentui/react-alert:code-style'], - tasks: { - '@fluentui/react-alert:code-style': { - id: '@fluentui/react-alert:code-style', - target: { project: '@fluentui/react-alert', target: 'code-style' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:code-style': [] }, - }, - '@fluentui/react-alert:just': { - roots: ['@fluentui/react-alert:just'], - tasks: { - '@fluentui/react-alert:just': { - id: '@fluentui/react-alert:just', - target: { project: '@fluentui/react-alert', target: 'just' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:just': [] }, - }, - '@fluentui/react-alert:lint': { - roots: ['@fluentui/react-alert:lint'], - tasks: { - '@fluentui/react-alert:lint': { - id: '@fluentui/react-alert:lint', - target: { project: '@fluentui/react-alert', target: 'lint' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:lint': [] }, - }, - '@fluentui/react-alert:start': { - roots: ['@fluentui/react-alert:start'], - tasks: { - '@fluentui/react-alert:start': { - id: '@fluentui/react-alert:start', - target: { project: '@fluentui/react-alert', target: 'start' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:start': [] }, - }, - '@fluentui/react-alert:test': { - roots: ['@fluentui/react-alert:test'], - tasks: { - '@fluentui/react-alert:test': { - id: '@fluentui/react-alert:test', - target: { project: '@fluentui/react-alert', target: 'test' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:test': [] }, - }, - '@fluentui/react-alert:storybook': { - roots: ['@fluentui/react-alert:storybook'], - tasks: { - '@fluentui/react-alert:storybook': { - id: '@fluentui/react-alert:storybook', - target: { project: '@fluentui/react-alert', target: 'storybook' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:storybook': [] }, - }, - '@fluentui/react-alert:type-check': { - roots: ['@fluentui/react-alert:type-check'], - tasks: { - '@fluentui/react-alert:type-check': { - id: '@fluentui/react-alert:type-check', - target: { project: '@fluentui/react-alert', target: 'type-check' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:type-check': [] }, - }, - '@fluentui/react-alert:generate-api': { - roots: ['@fluentui/react-alert:generate-api'], - tasks: { - '@fluentui/react-alert:generate-api': { - id: '@fluentui/react-alert:generate-api', - target: { project: '@fluentui/react-alert', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:generate-api': [] }, - }, - '@fluentui/react-alert:test-ssr': { - roots: ['@fluentui/react-alert:test-ssr'], - tasks: { - '@fluentui/react-alert:test-ssr': { - id: '@fluentui/react-alert:test-ssr', - target: { project: '@fluentui/react-alert', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-alert:test-ssr': [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: {}, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-label:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-label:bundle-size': { - roots: ['@fluentui/react-label:bundle-size'], - tasks: { - '@fluentui/react-label:bundle-size': { - id: '@fluentui/react-label:bundle-size', - target: { project: '@fluentui/react-label', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:bundle-size': [] }, - }, - '@fluentui/react-label:clean': { - roots: ['@fluentui/react-label:clean'], - tasks: { - '@fluentui/react-label:clean': { - id: '@fluentui/react-label:clean', - target: { project: '@fluentui/react-label', target: 'clean' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:clean': [] }, - }, - '@fluentui/react-label:code-style': { - roots: ['@fluentui/react-label:code-style'], - tasks: { - '@fluentui/react-label:code-style': { - id: '@fluentui/react-label:code-style', - target: { project: '@fluentui/react-label', target: 'code-style' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:code-style': [] }, - }, - '@fluentui/react-label:just': { - roots: ['@fluentui/react-label:just'], - tasks: { - '@fluentui/react-label:just': { - id: '@fluentui/react-label:just', - target: { project: '@fluentui/react-label', target: 'just' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:just': [] }, - }, - '@fluentui/react-label:lint': { - roots: ['@fluentui/react-label:lint'], - tasks: { - '@fluentui/react-label:lint': { - id: '@fluentui/react-label:lint', - target: { project: '@fluentui/react-label', target: 'lint' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:lint': [] }, - }, - '@fluentui/react-label:start': { - roots: ['@fluentui/react-label:start'], - tasks: { - '@fluentui/react-label:start': { - id: '@fluentui/react-label:start', - target: { project: '@fluentui/react-label', target: 'start' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:start': [] }, - }, - '@fluentui/react-label:test': { - roots: ['@fluentui/react-label:test'], - tasks: { - '@fluentui/react-label:test': { - id: '@fluentui/react-label:test', - target: { project: '@fluentui/react-label', target: 'test' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:test': [] }, - }, - '@fluentui/react-label:storybook': { - roots: ['@fluentui/react-label:storybook'], - tasks: { - '@fluentui/react-label:storybook': { - id: '@fluentui/react-label:storybook', - target: { project: '@fluentui/react-label', target: 'storybook' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:storybook': [] }, - }, - '@fluentui/react-label:type-check': { - roots: ['@fluentui/react-label:type-check'], - tasks: { - '@fluentui/react-label:type-check': { - id: '@fluentui/react-label:type-check', - target: { project: '@fluentui/react-label', target: 'type-check' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:type-check': [] }, - }, - '@fluentui/react-label:generate-api': { - roots: ['@fluentui/react-label:generate-api'], - tasks: { - '@fluentui/react-label:generate-api': { - id: '@fluentui/react-label:generate-api', - target: { project: '@fluentui/react-label', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:generate-api': [] }, - }, - '@fluentui/react-label:test-ssr': { - roots: ['@fluentui/react-label:test-ssr'], - tasks: { - '@fluentui/react-label:test-ssr': { - id: '@fluentui/react-label:test-ssr', - target: { project: '@fluentui/react-label', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-label:test-ssr': [] }, - }, - '@fluentui/react-label:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: {}, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-toast:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-toast:bundle-size': { - roots: ['@fluentui/react-toast:bundle-size'], - tasks: { - '@fluentui/react-toast:bundle-size': { - id: '@fluentui/react-toast:bundle-size', - target: { project: '@fluentui/react-toast', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:bundle-size': [] }, - }, - '@fluentui/react-toast:clean': { - roots: ['@fluentui/react-toast:clean'], - tasks: { - '@fluentui/react-toast:clean': { - id: '@fluentui/react-toast:clean', - target: { project: '@fluentui/react-toast', target: 'clean' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:clean': [] }, - }, - '@fluentui/react-toast:code-style': { - roots: ['@fluentui/react-toast:code-style'], - tasks: { - '@fluentui/react-toast:code-style': { - id: '@fluentui/react-toast:code-style', - target: { project: '@fluentui/react-toast', target: 'code-style' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:code-style': [] }, - }, - '@fluentui/react-toast:just': { - roots: ['@fluentui/react-toast:just'], - tasks: { - '@fluentui/react-toast:just': { - id: '@fluentui/react-toast:just', - target: { project: '@fluentui/react-toast', target: 'just' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:just': [] }, - }, - '@fluentui/react-toast:lint': { - roots: ['@fluentui/react-toast:lint'], - tasks: { - '@fluentui/react-toast:lint': { - id: '@fluentui/react-toast:lint', - target: { project: '@fluentui/react-toast', target: 'lint' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:lint': [] }, - }, - '@fluentui/react-toast:test': { - roots: ['@fluentui/react-toast:test'], - tasks: { - '@fluentui/react-toast:test': { - id: '@fluentui/react-toast:test', - target: { project: '@fluentui/react-toast', target: 'test' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:test': [] }, - }, - '@fluentui/react-toast:test-ssr': { - roots: ['@fluentui/react-toast:test-ssr'], - tasks: { - '@fluentui/react-toast:test-ssr': { - id: '@fluentui/react-toast:test-ssr', - target: { project: '@fluentui/react-toast', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:test-ssr': [] }, - }, - '@fluentui/react-toast:type-check': { - roots: ['@fluentui/react-toast:type-check'], - tasks: { - '@fluentui/react-toast:type-check': { - id: '@fluentui/react-toast:type-check', - target: { project: '@fluentui/react-toast', target: 'type-check' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:type-check': [] }, - }, - '@fluentui/react-toast:generate-api': { - roots: ['@fluentui/react-toast:generate-api'], - tasks: { - '@fluentui/react-toast:generate-api': { - id: '@fluentui/react-toast:generate-api', - target: { project: '@fluentui/react-toast', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:generate-api': [] }, - }, - '@fluentui/react-toast:storybook': { - roots: ['@fluentui/react-toast:storybook'], - tasks: { - '@fluentui/react-toast:storybook': { - id: '@fluentui/react-toast:storybook', - target: { project: '@fluentui/react-toast', target: 'storybook' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:storybook': [] }, - }, - '@fluentui/react-toast:start': { - roots: ['@fluentui/react-toast:start'], - tasks: { - '@fluentui/react-toast:start': { - id: '@fluentui/react-toast:start', - target: { project: '@fluentui/react-toast', target: 'start' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:start': [] }, - }, - '@fluentui/react-toast:e2e': { - roots: ['@fluentui/react-toast:e2e'], - tasks: { - '@fluentui/react-toast:e2e': { - id: '@fluentui/react-toast:e2e', - target: { project: '@fluentui/react-toast', target: 'e2e' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:e2e': [] }, - }, - '@fluentui/react-toast:e2e:local': { - roots: ['@fluentui/react-toast:e2e:local'], - tasks: { - '@fluentui/react-toast:e2e:local': { - id: '@fluentui/react-toast:e2e:local', - target: { project: '@fluentui/react-toast', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-toast:e2e:local': [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-input:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-input:bundle-size': { - roots: ['@fluentui/react-input:bundle-size'], - tasks: { - '@fluentui/react-input:bundle-size': { - id: '@fluentui/react-input:bundle-size', - target: { project: '@fluentui/react-input', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:bundle-size': [] }, - }, - '@fluentui/react-input:clean': { - roots: ['@fluentui/react-input:clean'], - tasks: { - '@fluentui/react-input:clean': { - id: '@fluentui/react-input:clean', - target: { project: '@fluentui/react-input', target: 'clean' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:clean': [] }, - }, - '@fluentui/react-input:code-style': { - roots: ['@fluentui/react-input:code-style'], - tasks: { - '@fluentui/react-input:code-style': { - id: '@fluentui/react-input:code-style', - target: { project: '@fluentui/react-input', target: 'code-style' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:code-style': [] }, - }, - '@fluentui/react-input:just': { - roots: ['@fluentui/react-input:just'], - tasks: { - '@fluentui/react-input:just': { - id: '@fluentui/react-input:just', - target: { project: '@fluentui/react-input', target: 'just' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:just': [] }, - }, - '@fluentui/react-input:lint': { - roots: ['@fluentui/react-input:lint'], - tasks: { - '@fluentui/react-input:lint': { - id: '@fluentui/react-input:lint', - target: { project: '@fluentui/react-input', target: 'lint' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:lint': [] }, - }, - '@fluentui/react-input:start': { - roots: ['@fluentui/react-input:start'], - tasks: { - '@fluentui/react-input:start': { - id: '@fluentui/react-input:start', - target: { project: '@fluentui/react-input', target: 'start' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:start': [] }, - }, - '@fluentui/react-input:test': { - roots: ['@fluentui/react-input:test'], - tasks: { - '@fluentui/react-input:test': { - id: '@fluentui/react-input:test', - target: { project: '@fluentui/react-input', target: 'test' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:test': [] }, - }, - '@fluentui/react-input:storybook': { - roots: ['@fluentui/react-input:storybook'], - tasks: { - '@fluentui/react-input:storybook': { - id: '@fluentui/react-input:storybook', - target: { project: '@fluentui/react-input', target: 'storybook' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:storybook': [] }, - }, - '@fluentui/react-input:type-check': { - roots: ['@fluentui/react-input:type-check'], - tasks: { - '@fluentui/react-input:type-check': { - id: '@fluentui/react-input:type-check', - target: { project: '@fluentui/react-input', target: 'type-check' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:type-check': [] }, - }, - '@fluentui/react-input:generate-api': { - roots: ['@fluentui/react-input:generate-api'], - tasks: { - '@fluentui/react-input:generate-api': { - id: '@fluentui/react-input:generate-api', - target: { project: '@fluentui/react-input', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:generate-api': [] }, - }, - '@fluentui/react-input:test-ssr': { - roots: ['@fluentui/react-input:test-ssr'], - tasks: { - '@fluentui/react-input:test-ssr': { - id: '@fluentui/react-input:test-ssr', - target: { project: '@fluentui/react-input', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-input:test-ssr': [] }, - }, - '@fluentui/react-input:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-image:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-image:bundle-size': { - roots: ['@fluentui/react-image:bundle-size'], - tasks: { - '@fluentui/react-image:bundle-size': { - id: '@fluentui/react-image:bundle-size', - target: { project: '@fluentui/react-image', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:bundle-size': [] }, - }, - '@fluentui/react-image:clean': { - roots: ['@fluentui/react-image:clean'], - tasks: { - '@fluentui/react-image:clean': { - id: '@fluentui/react-image:clean', - target: { project: '@fluentui/react-image', target: 'clean' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:clean': [] }, - }, - '@fluentui/react-image:code-style': { - roots: ['@fluentui/react-image:code-style'], - tasks: { - '@fluentui/react-image:code-style': { - id: '@fluentui/react-image:code-style', - target: { project: '@fluentui/react-image', target: 'code-style' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:code-style': [] }, - }, - '@fluentui/react-image:just': { - roots: ['@fluentui/react-image:just'], - tasks: { - '@fluentui/react-image:just': { - id: '@fluentui/react-image:just', - target: { project: '@fluentui/react-image', target: 'just' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:just': [] }, - }, - '@fluentui/react-image:lint': { - roots: ['@fluentui/react-image:lint'], - tasks: { - '@fluentui/react-image:lint': { - id: '@fluentui/react-image:lint', - target: { project: '@fluentui/react-image', target: 'lint' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:lint': [] }, - }, - '@fluentui/react-image:start': { - roots: ['@fluentui/react-image:start'], - tasks: { - '@fluentui/react-image:start': { - id: '@fluentui/react-image:start', - target: { project: '@fluentui/react-image', target: 'start' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:start': [] }, - }, - '@fluentui/react-image:test': { - roots: ['@fluentui/react-image:test'], - tasks: { - '@fluentui/react-image:test': { - id: '@fluentui/react-image:test', - target: { project: '@fluentui/react-image', target: 'test' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:test': [] }, - }, - '@fluentui/react-image:storybook': { - roots: ['@fluentui/react-image:storybook'], - tasks: { - '@fluentui/react-image:storybook': { - id: '@fluentui/react-image:storybook', - target: { project: '@fluentui/react-image', target: 'storybook' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:storybook': [] }, - }, - '@fluentui/react-image:type-check': { - roots: ['@fluentui/react-image:type-check'], - tasks: { - '@fluentui/react-image:type-check': { - id: '@fluentui/react-image:type-check', - target: { project: '@fluentui/react-image', target: 'type-check' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:type-check': [] }, - }, - '@fluentui/react-image:generate-api': { - roots: ['@fluentui/react-image:generate-api'], - tasks: { - '@fluentui/react-image:generate-api': { - id: '@fluentui/react-image:generate-api', - target: { project: '@fluentui/react-image', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:generate-api': [] }, - }, - '@fluentui/react-image:test-ssr': { - roots: ['@fluentui/react-image:test-ssr'], - tasks: { - '@fluentui/react-image:test-ssr': { - id: '@fluentui/react-image:test-ssr', - target: { project: '@fluentui/react-image', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-image:test-ssr': [] }, - }, - '@fluentui/react-image:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: {}, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-component-ref:build': { - roots: ['@fluentui/react-component-ref:build'], - tasks: { - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-ref:build': [] }, - }, - '@fluentui/react-component-ref:build:info': { - roots: ['@fluentui/react-component-ref:build:info'], - tasks: { - '@fluentui/react-component-ref:build:info': { - id: '@fluentui/react-component-ref:build:info', - target: { project: '@fluentui/react-component-ref', target: 'build:info' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-ref:build:info': [] }, - }, - '@fluentui/react-component-ref:clean': { - roots: ['@fluentui/react-component-ref:clean'], - tasks: { - '@fluentui/react-component-ref:clean': { - id: '@fluentui/react-component-ref:clean', - target: { project: '@fluentui/react-component-ref', target: 'clean' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-ref:clean': [] }, - }, - '@fluentui/react-component-ref:lint': { - roots: ['@fluentui/react-component-ref:lint'], - tasks: { - '@fluentui/react-component-ref:lint': { - id: '@fluentui/react-component-ref:lint', - target: { project: '@fluentui/react-component-ref', target: 'lint' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-ref:lint': [] }, - }, - '@fluentui/react-component-ref:lint:fix': { - roots: ['@fluentui/react-component-ref:lint:fix'], - tasks: { - '@fluentui/react-component-ref:lint:fix': { - id: '@fluentui/react-component-ref:lint:fix', - target: { project: '@fluentui/react-component-ref', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-ref:lint:fix': [] }, - }, - '@fluentui/react-component-ref:test': { - roots: ['@fluentui/react-component-ref:test'], - tasks: { - '@fluentui/react-component-ref:test': { - id: '@fluentui/react-component-ref:test', - target: { project: '@fluentui/react-component-ref', target: 'test' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-ref:test': [] }, - }, - '@fluentui/react-component-ref:test:watch': { - roots: ['@fluentui/react-component-ref:test:watch'], - tasks: { - '@fluentui/react-component-ref:test:watch': { - id: '@fluentui/react-component-ref:test:watch', - target: { project: '@fluentui/react-component-ref', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-component-ref:test:watch': [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - roots: ['@fluentui/set-version:build'], - tasks: { - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: {}, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - }, - }, - '@fluentui/jest-serializer-merge-styles:lint': { - roots: ['@fluentui/jest-serializer-merge-styles:lint'], - tasks: { - '@fluentui/jest-serializer-merge-styles:lint': { - id: '@fluentui/jest-serializer-merge-styles:lint', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'lint' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/jest-serializer-merge-styles:lint': [] }, - }, - '@fluentui/jest-serializer-merge-styles:test': { - roots: ['@fluentui/jest-serializer-merge-styles:test'], - tasks: { - '@fluentui/jest-serializer-merge-styles:test': { - id: '@fluentui/jest-serializer-merge-styles:test', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'test' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/jest-serializer-merge-styles:test': [] }, - }, - '@fluentui/jest-serializer-merge-styles:just': { - roots: ['@fluentui/jest-serializer-merge-styles:just'], - tasks: { - '@fluentui/jest-serializer-merge-styles:just': { - id: '@fluentui/jest-serializer-merge-styles:just', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'just' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/jest-serializer-merge-styles:just': [] }, - }, - '@fluentui/jest-serializer-merge-styles:clean': { - roots: ['@fluentui/jest-serializer-merge-styles:clean'], - tasks: { - '@fluentui/jest-serializer-merge-styles:clean': { - id: '@fluentui/jest-serializer-merge-styles:clean', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'clean' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/jest-serializer-merge-styles:clean': [] }, - }, - '@fluentui/jest-serializer-merge-styles:code-style': { - roots: ['@fluentui/jest-serializer-merge-styles:code-style'], - tasks: { - '@fluentui/jest-serializer-merge-styles:code-style': { - id: '@fluentui/jest-serializer-merge-styles:code-style', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'code-style' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/jest-serializer-merge-styles:code-style': [] }, - }, - '@fluentui/jest-serializer-merge-styles:start-test': { - roots: ['@fluentui/jest-serializer-merge-styles:start-test'], - tasks: { - '@fluentui/jest-serializer-merge-styles:start-test': { - id: '@fluentui/jest-serializer-merge-styles:start-test', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'start-test' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/jest-serializer-merge-styles:start-test': [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: {}, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-radio:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-radio:bundle-size': { - roots: ['@fluentui/react-radio:bundle-size'], - tasks: { - '@fluentui/react-radio:bundle-size': { - id: '@fluentui/react-radio:bundle-size', - target: { project: '@fluentui/react-radio', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:bundle-size': [] }, - }, - '@fluentui/react-radio:clean': { - roots: ['@fluentui/react-radio:clean'], - tasks: { - '@fluentui/react-radio:clean': { - id: '@fluentui/react-radio:clean', - target: { project: '@fluentui/react-radio', target: 'clean' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:clean': [] }, - }, - '@fluentui/react-radio:code-style': { - roots: ['@fluentui/react-radio:code-style'], - tasks: { - '@fluentui/react-radio:code-style': { - id: '@fluentui/react-radio:code-style', - target: { project: '@fluentui/react-radio', target: 'code-style' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:code-style': [] }, - }, - '@fluentui/react-radio:just': { - roots: ['@fluentui/react-radio:just'], - tasks: { - '@fluentui/react-radio:just': { - id: '@fluentui/react-radio:just', - target: { project: '@fluentui/react-radio', target: 'just' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:just': [] }, - }, - '@fluentui/react-radio:lint': { - roots: ['@fluentui/react-radio:lint'], - tasks: { - '@fluentui/react-radio:lint': { - id: '@fluentui/react-radio:lint', - target: { project: '@fluentui/react-radio', target: 'lint' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:lint': [] }, - }, - '@fluentui/react-radio:start': { - roots: ['@fluentui/react-radio:start'], - tasks: { - '@fluentui/react-radio:start': { - id: '@fluentui/react-radio:start', - target: { project: '@fluentui/react-radio', target: 'start' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:start': [] }, - }, - '@fluentui/react-radio:test': { - roots: ['@fluentui/react-radio:test'], - tasks: { - '@fluentui/react-radio:test': { - id: '@fluentui/react-radio:test', - target: { project: '@fluentui/react-radio', target: 'test' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:test': [] }, - }, - '@fluentui/react-radio:storybook': { - roots: ['@fluentui/react-radio:storybook'], - tasks: { - '@fluentui/react-radio:storybook': { - id: '@fluentui/react-radio:storybook', - target: { project: '@fluentui/react-radio', target: 'storybook' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:storybook': [] }, - }, - '@fluentui/react-radio:type-check': { - roots: ['@fluentui/react-radio:type-check'], - tasks: { - '@fluentui/react-radio:type-check': { - id: '@fluentui/react-radio:type-check', - target: { project: '@fluentui/react-radio', target: 'type-check' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:type-check': [] }, - }, - '@fluentui/react-radio:generate-api': { - roots: ['@fluentui/react-radio:generate-api'], - tasks: { - '@fluentui/react-radio:generate-api': { - id: '@fluentui/react-radio:generate-api', - target: { project: '@fluentui/react-radio', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:generate-api': [] }, - }, - '@fluentui/react-radio:test-ssr': { - roots: ['@fluentui/react-radio:test-ssr'], - tasks: { - '@fluentui/react-radio:test-ssr': { - id: '@fluentui/react-radio:test-ssr', - target: { project: '@fluentui/react-radio', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-radio:test-ssr': [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: {}, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/react-text:build': { - roots: ['@fluentui/tokens:build', '@fluentui/keyboard-keys:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-text:bundle-size': { - roots: ['@fluentui/react-text:bundle-size'], - tasks: { - '@fluentui/react-text:bundle-size': { - id: '@fluentui/react-text:bundle-size', - target: { project: '@fluentui/react-text', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:bundle-size': [] }, - }, - '@fluentui/react-text:clean': { - roots: ['@fluentui/react-text:clean'], - tasks: { - '@fluentui/react-text:clean': { - id: '@fluentui/react-text:clean', - target: { project: '@fluentui/react-text', target: 'clean' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:clean': [] }, - }, - '@fluentui/react-text:code-style': { - roots: ['@fluentui/react-text:code-style'], - tasks: { - '@fluentui/react-text:code-style': { - id: '@fluentui/react-text:code-style', - target: { project: '@fluentui/react-text', target: 'code-style' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:code-style': [] }, - }, - '@fluentui/react-text:just': { - roots: ['@fluentui/react-text:just'], - tasks: { - '@fluentui/react-text:just': { - id: '@fluentui/react-text:just', - target: { project: '@fluentui/react-text', target: 'just' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:just': [] }, - }, - '@fluentui/react-text:lint': { - roots: ['@fluentui/react-text:lint'], - tasks: { - '@fluentui/react-text:lint': { - id: '@fluentui/react-text:lint', - target: { project: '@fluentui/react-text', target: 'lint' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:lint': [] }, - }, - '@fluentui/react-text:start': { - roots: ['@fluentui/react-text:start'], - tasks: { - '@fluentui/react-text:start': { - id: '@fluentui/react-text:start', - target: { project: '@fluentui/react-text', target: 'start' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:start': [] }, - }, - '@fluentui/react-text:test': { - roots: ['@fluentui/react-text:test'], - tasks: { - '@fluentui/react-text:test': { - id: '@fluentui/react-text:test', - target: { project: '@fluentui/react-text', target: 'test' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:test': [] }, - }, - '@fluentui/react-text:storybook': { - roots: ['@fluentui/react-text:storybook'], - tasks: { - '@fluentui/react-text:storybook': { - id: '@fluentui/react-text:storybook', - target: { project: '@fluentui/react-text', target: 'storybook' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:storybook': [] }, - }, - '@fluentui/react-text:type-check': { - roots: ['@fluentui/react-text:type-check'], - tasks: { - '@fluentui/react-text:type-check': { - id: '@fluentui/react-text:type-check', - target: { project: '@fluentui/react-text', target: 'type-check' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:type-check': [] }, - }, - '@fluentui/react-text:generate-api': { - roots: ['@fluentui/react-text:generate-api'], - tasks: { - '@fluentui/react-text:generate-api': { - id: '@fluentui/react-text:generate-api', - target: { project: '@fluentui/react-text', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:generate-api': [] }, - }, - '@fluentui/react-text:test-ssr': { - roots: ['@fluentui/react-text:test-ssr'], - tasks: { - '@fluentui/react-text:test-ssr': { - id: '@fluentui/react-text:test-ssr', - target: { project: '@fluentui/react-text', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:test-ssr': [] }, - }, - '@fluentui/react-text:verify-packaging': { - roots: ['@fluentui/react-text:verify-packaging'], - tasks: { - '@fluentui/react-text:verify-packaging': { - id: '@fluentui/react-text:verify-packaging', - target: { project: '@fluentui/react-text', target: 'verify-packaging' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-text:verify-packaging': [] }, - }, - '@fluentui/react-text:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: {}, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-menu:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - }, - }, - '@fluentui/react-menu:bundle-size': { - roots: ['@fluentui/react-menu:bundle-size'], - tasks: { - '@fluentui/react-menu:bundle-size': { - id: '@fluentui/react-menu:bundle-size', - target: { project: '@fluentui/react-menu', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:bundle-size': [] }, - }, - '@fluentui/react-menu:clean': { - roots: ['@fluentui/react-menu:clean'], - tasks: { - '@fluentui/react-menu:clean': { - id: '@fluentui/react-menu:clean', - target: { project: '@fluentui/react-menu', target: 'clean' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:clean': [] }, - }, - '@fluentui/react-menu:code-style': { - roots: ['@fluentui/react-menu:code-style'], - tasks: { - '@fluentui/react-menu:code-style': { - id: '@fluentui/react-menu:code-style', - target: { project: '@fluentui/react-menu', target: 'code-style' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:code-style': [] }, - }, - '@fluentui/react-menu:e2e': { - roots: ['@fluentui/react-menu:e2e'], - tasks: { - '@fluentui/react-menu:e2e': { - id: '@fluentui/react-menu:e2e', - target: { project: '@fluentui/react-menu', target: 'e2e' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:e2e': [] }, - }, - '@fluentui/react-menu:e2e:local': { - roots: ['@fluentui/react-menu:e2e:local'], - tasks: { - '@fluentui/react-menu:e2e:local': { - id: '@fluentui/react-menu:e2e:local', - target: { project: '@fluentui/react-menu', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:e2e:local': [] }, - }, - '@fluentui/react-menu:just': { - roots: ['@fluentui/react-menu:just'], - tasks: { - '@fluentui/react-menu:just': { - id: '@fluentui/react-menu:just', - target: { project: '@fluentui/react-menu', target: 'just' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:just': [] }, - }, - '@fluentui/react-menu:lint': { - roots: ['@fluentui/react-menu:lint'], - tasks: { - '@fluentui/react-menu:lint': { - id: '@fluentui/react-menu:lint', - target: { project: '@fluentui/react-menu', target: 'lint' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:lint': [] }, - }, - '@fluentui/react-menu:start': { - roots: ['@fluentui/react-menu:start'], - tasks: { - '@fluentui/react-menu:start': { - id: '@fluentui/react-menu:start', - target: { project: '@fluentui/react-menu', target: 'start' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:start': [] }, - }, - '@fluentui/react-menu:storybook': { - roots: ['@fluentui/react-menu:storybook'], - tasks: { - '@fluentui/react-menu:storybook': { - id: '@fluentui/react-menu:storybook', - target: { project: '@fluentui/react-menu', target: 'storybook' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:storybook': [] }, - }, - '@fluentui/react-menu:test': { - roots: ['@fluentui/react-menu:test'], - tasks: { - '@fluentui/react-menu:test': { - id: '@fluentui/react-menu:test', - target: { project: '@fluentui/react-menu', target: 'test' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:test': [] }, - }, - '@fluentui/react-menu:type-check': { - roots: ['@fluentui/react-menu:type-check'], - tasks: { - '@fluentui/react-menu:type-check': { - id: '@fluentui/react-menu:type-check', - target: { project: '@fluentui/react-menu', target: 'type-check' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:type-check': [] }, - }, - '@fluentui/react-menu:generate-api': { - roots: ['@fluentui/react-menu:generate-api'], - tasks: { - '@fluentui/react-menu:generate-api': { - id: '@fluentui/react-menu:generate-api', - target: { project: '@fluentui/react-menu', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:generate-api': [] }, - }, - '@fluentui/react-menu:test-ssr': { - roots: ['@fluentui/react-menu:test-ssr'], - tasks: { - '@fluentui/react-menu:test-ssr': { - id: '@fluentui/react-menu:test-ssr', - target: { project: '@fluentui/react-menu', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-menu:test-ssr': [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-aria:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/react-aria:clean': { - roots: ['@fluentui/react-aria:clean'], - tasks: { - '@fluentui/react-aria:clean': { - id: '@fluentui/react-aria:clean', - target: { project: '@fluentui/react-aria', target: 'clean' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:clean': [] }, - }, - '@fluentui/react-aria:code-style': { - roots: ['@fluentui/react-aria:code-style'], - tasks: { - '@fluentui/react-aria:code-style': { - id: '@fluentui/react-aria:code-style', - target: { project: '@fluentui/react-aria', target: 'code-style' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:code-style': [] }, - }, - '@fluentui/react-aria:just': { - roots: ['@fluentui/react-aria:just'], - tasks: { - '@fluentui/react-aria:just': { - id: '@fluentui/react-aria:just', - target: { project: '@fluentui/react-aria', target: 'just' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:just': [] }, - }, - '@fluentui/react-aria:lint': { - roots: ['@fluentui/react-aria:lint'], - tasks: { - '@fluentui/react-aria:lint': { - id: '@fluentui/react-aria:lint', - target: { project: '@fluentui/react-aria', target: 'lint' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:lint': [] }, - }, - '@fluentui/react-aria:start': { - roots: ['@fluentui/react-aria:start'], - tasks: { - '@fluentui/react-aria:start': { - id: '@fluentui/react-aria:start', - target: { project: '@fluentui/react-aria', target: 'start' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:start': [] }, - }, - '@fluentui/react-aria:test': { - roots: ['@fluentui/react-aria:test'], - tasks: { - '@fluentui/react-aria:test': { - id: '@fluentui/react-aria:test', - target: { project: '@fluentui/react-aria', target: 'test' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:test': [] }, - }, - '@fluentui/react-aria:storybook': { - roots: ['@fluentui/react-aria:storybook'], - tasks: { - '@fluentui/react-aria:storybook': { - id: '@fluentui/react-aria:storybook', - target: { project: '@fluentui/react-aria', target: 'storybook' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:storybook': [] }, - }, - '@fluentui/react-aria:type-check': { - roots: ['@fluentui/react-aria:type-check'], - tasks: { - '@fluentui/react-aria:type-check': { - id: '@fluentui/react-aria:type-check', - target: { project: '@fluentui/react-aria', target: 'type-check' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:type-check': [] }, - }, - '@fluentui/react-aria:generate-api': { - roots: ['@fluentui/react-aria:generate-api'], - tasks: { - '@fluentui/react-aria:generate-api': { - id: '@fluentui/react-aria:generate-api', - target: { project: '@fluentui/react-aria', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:generate-api': [] }, - }, - '@fluentui/react-aria:test-ssr': { - roots: ['@fluentui/react-aria:test-ssr'], - tasks: { - '@fluentui/react-aria:test-ssr': { - id: '@fluentui/react-aria:test-ssr', - target: { project: '@fluentui/react-aria', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-aria:test-ssr': [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-tree:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-tree:clean': { - roots: ['@fluentui/react-tree:clean'], - tasks: { - '@fluentui/react-tree:clean': { - id: '@fluentui/react-tree:clean', - target: { project: '@fluentui/react-tree', target: 'clean' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:clean': [] }, - }, - '@fluentui/react-tree:generate-api': { - roots: ['@fluentui/react-tree:generate-api'], - tasks: { - '@fluentui/react-tree:generate-api': { - id: '@fluentui/react-tree:generate-api', - target: { project: '@fluentui/react-tree', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:generate-api': [] }, - }, - '@fluentui/react-tree:lint': { - roots: ['@fluentui/react-tree:lint'], - tasks: { - '@fluentui/react-tree:lint': { - id: '@fluentui/react-tree:lint', - target: { project: '@fluentui/react-tree', target: 'lint' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:lint': [] }, - }, - '@fluentui/react-tree:start': { - roots: ['@fluentui/react-tree:start'], - tasks: { - '@fluentui/react-tree:start': { - id: '@fluentui/react-tree:start', - target: { project: '@fluentui/react-tree', target: 'start' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:start': [] }, - }, - '@fluentui/react-tree:storybook': { - roots: ['@fluentui/react-tree:storybook'], - tasks: { - '@fluentui/react-tree:storybook': { - id: '@fluentui/react-tree:storybook', - target: { project: '@fluentui/react-tree', target: 'storybook' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:storybook': [] }, - }, - '@fluentui/react-tree:test': { - roots: ['@fluentui/react-tree:test'], - tasks: { - '@fluentui/react-tree:test': { - id: '@fluentui/react-tree:test', - target: { project: '@fluentui/react-tree', target: 'test' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:test': [] }, - }, - '@fluentui/react-tree:test-ssr': { - roots: ['@fluentui/react-tree:test-ssr'], - tasks: { - '@fluentui/react-tree:test-ssr': { - id: '@fluentui/react-tree:test-ssr', - target: { project: '@fluentui/react-tree', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:test-ssr': [] }, - }, - '@fluentui/react-tree:type-check': { - roots: ['@fluentui/react-tree:type-check'], - tasks: { - '@fluentui/react-tree:type-check': { - id: '@fluentui/react-tree:type-check', - target: { project: '@fluentui/react-tree', target: 'type-check' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:type-check': [] }, - }, - '@fluentui/react-tree:e2e': { - roots: ['@fluentui/react-tree:e2e'], - tasks: { - '@fluentui/react-tree:e2e': { - id: '@fluentui/react-tree:e2e', - target: { project: '@fluentui/react-tree', target: 'e2e' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:e2e': [] }, - }, - '@fluentui/react-tree:e2e:local': { - roots: ['@fluentui/react-tree:e2e:local'], - tasks: { - '@fluentui/react-tree:e2e:local': { - id: '@fluentui/react-tree:e2e:local', - target: { project: '@fluentui/react-tree', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tree:e2e:local': [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/ability-attributes:build': { - roots: ['@fluentui/ability-attributes:build'], - tasks: { - '@fluentui/ability-attributes:build': { - id: '@fluentui/ability-attributes:build', - target: { project: '@fluentui/ability-attributes', target: 'build' }, - projectRoot: 'packages/fluentui/ability-attributes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ability-attributes:build': [] }, - }, - '@fluentui/ability-attributes:clean': { - roots: ['@fluentui/ability-attributes:clean'], - tasks: { - '@fluentui/ability-attributes:clean': { - id: '@fluentui/ability-attributes:clean', - target: { project: '@fluentui/ability-attributes', target: 'clean' }, - projectRoot: 'packages/fluentui/ability-attributes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ability-attributes:clean': [] }, - }, - '@fluentui/ability-attributes:schema': { - roots: ['@fluentui/ability-attributes:schema'], - tasks: { - '@fluentui/ability-attributes:schema': { - id: '@fluentui/ability-attributes:schema', - target: { project: '@fluentui/ability-attributes', target: 'schema' }, - projectRoot: 'packages/fluentui/ability-attributes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ability-attributes:schema': [] }, - }, - '@fluentui/ability-attributes:nx-release-publish': { - roots: [ - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/ability-attributes:nx-release-publish': { - id: '@fluentui/ability-attributes:nx-release-publish', - target: { project: '@fluentui/ability-attributes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/ability-attributes', - overrides: {}, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/ability-attributes:nx-release-publish': [ - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - }, - }, - '@fluentui/react-tags:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/react-tags:bundle-size': { - roots: ['@fluentui/react-tags:bundle-size'], - tasks: { - '@fluentui/react-tags:bundle-size': { - id: '@fluentui/react-tags:bundle-size', - target: { project: '@fluentui/react-tags', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:bundle-size': [] }, - }, - '@fluentui/react-tags:clean': { - roots: ['@fluentui/react-tags:clean'], - tasks: { - '@fluentui/react-tags:clean': { - id: '@fluentui/react-tags:clean', - target: { project: '@fluentui/react-tags', target: 'clean' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:clean': [] }, - }, - '@fluentui/react-tags:code-style': { - roots: ['@fluentui/react-tags:code-style'], - tasks: { - '@fluentui/react-tags:code-style': { - id: '@fluentui/react-tags:code-style', - target: { project: '@fluentui/react-tags', target: 'code-style' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:code-style': [] }, - }, - '@fluentui/react-tags:just': { - roots: ['@fluentui/react-tags:just'], - tasks: { - '@fluentui/react-tags:just': { - id: '@fluentui/react-tags:just', - target: { project: '@fluentui/react-tags', target: 'just' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:just': [] }, - }, - '@fluentui/react-tags:lint': { - roots: ['@fluentui/react-tags:lint'], - tasks: { - '@fluentui/react-tags:lint': { - id: '@fluentui/react-tags:lint', - target: { project: '@fluentui/react-tags', target: 'lint' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:lint': [] }, - }, - '@fluentui/react-tags:test': { - roots: ['@fluentui/react-tags:test'], - tasks: { - '@fluentui/react-tags:test': { - id: '@fluentui/react-tags:test', - target: { project: '@fluentui/react-tags', target: 'test' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:test': [] }, - }, - '@fluentui/react-tags:e2e': { - roots: ['@fluentui/react-tags:e2e'], - tasks: { - '@fluentui/react-tags:e2e': { - id: '@fluentui/react-tags:e2e', - target: { project: '@fluentui/react-tags', target: 'e2e' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:e2e': [] }, - }, - '@fluentui/react-tags:e2e:local': { - roots: ['@fluentui/react-tags:e2e:local'], - tasks: { - '@fluentui/react-tags:e2e:local': { - id: '@fluentui/react-tags:e2e:local', - target: { project: '@fluentui/react-tags', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:e2e:local': [] }, - }, - '@fluentui/react-tags:type-check': { - roots: ['@fluentui/react-tags:type-check'], - tasks: { - '@fluentui/react-tags:type-check': { - id: '@fluentui/react-tags:type-check', - target: { project: '@fluentui/react-tags', target: 'type-check' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:type-check': [] }, - }, - '@fluentui/react-tags:generate-api': { - roots: ['@fluentui/react-tags:generate-api'], - tasks: { - '@fluentui/react-tags:generate-api': { - id: '@fluentui/react-tags:generate-api', - target: { project: '@fluentui/react-tags', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:generate-api': [] }, - }, - '@fluentui/react-tags:storybook': { - roots: ['@fluentui/react-tags:storybook'], - tasks: { - '@fluentui/react-tags:storybook': { - id: '@fluentui/react-tags:storybook', - target: { project: '@fluentui/react-tags', target: 'storybook' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:storybook': [] }, - }, - '@fluentui/react-tags:start': { - roots: ['@fluentui/react-tags:start'], - tasks: { - '@fluentui/react-tags:start': { - id: '@fluentui/react-tags:start', - target: { project: '@fluentui/react-tags', target: 'start' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:start': [] }, - }, - '@fluentui/react-tags:test-ssr': { - roots: ['@fluentui/react-tags:test-ssr'], - tasks: { - '@fluentui/react-tags:test-ssr': { - id: '@fluentui/react-tags:test-ssr', - target: { project: '@fluentui/react-tags', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tags:test-ssr': [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-tabs:build': { - roots: ['@fluentui/keyboard-keys:build', '@fluentui/tokens:build', '@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - }, - }, - '@fluentui/react-tabs:clean': { - roots: ['@fluentui/react-tabs:clean'], - tasks: { - '@fluentui/react-tabs:clean': { - id: '@fluentui/react-tabs:clean', - target: { project: '@fluentui/react-tabs', target: 'clean' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:clean': [] }, - }, - '@fluentui/react-tabs:code-style': { - roots: ['@fluentui/react-tabs:code-style'], - tasks: { - '@fluentui/react-tabs:code-style': { - id: '@fluentui/react-tabs:code-style', - target: { project: '@fluentui/react-tabs', target: 'code-style' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:code-style': [] }, - }, - '@fluentui/react-tabs:just': { - roots: ['@fluentui/react-tabs:just'], - tasks: { - '@fluentui/react-tabs:just': { - id: '@fluentui/react-tabs:just', - target: { project: '@fluentui/react-tabs', target: 'just' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:just': [] }, - }, - '@fluentui/react-tabs:lint': { - roots: ['@fluentui/react-tabs:lint'], - tasks: { - '@fluentui/react-tabs:lint': { - id: '@fluentui/react-tabs:lint', - target: { project: '@fluentui/react-tabs', target: 'lint' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:lint': [] }, - }, - '@fluentui/react-tabs:start': { - roots: ['@fluentui/react-tabs:start'], - tasks: { - '@fluentui/react-tabs:start': { - id: '@fluentui/react-tabs:start', - target: { project: '@fluentui/react-tabs', target: 'start' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:start': [] }, - }, - '@fluentui/react-tabs:test': { - roots: ['@fluentui/react-tabs:test'], - tasks: { - '@fluentui/react-tabs:test': { - id: '@fluentui/react-tabs:test', - target: { project: '@fluentui/react-tabs', target: 'test' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:test': [] }, - }, - '@fluentui/react-tabs:storybook': { - roots: ['@fluentui/react-tabs:storybook'], - tasks: { - '@fluentui/react-tabs:storybook': { - id: '@fluentui/react-tabs:storybook', - target: { project: '@fluentui/react-tabs', target: 'storybook' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:storybook': [] }, - }, - '@fluentui/react-tabs:type-check': { - roots: ['@fluentui/react-tabs:type-check'], - tasks: { - '@fluentui/react-tabs:type-check': { - id: '@fluentui/react-tabs:type-check', - target: { project: '@fluentui/react-tabs', target: 'type-check' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:type-check': [] }, - }, - '@fluentui/react-tabs:generate-api': { - roots: ['@fluentui/react-tabs:generate-api'], - tasks: { - '@fluentui/react-tabs:generate-api': { - id: '@fluentui/react-tabs:generate-api', - target: { project: '@fluentui/react-tabs', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:generate-api': [] }, - }, - '@fluentui/react-tabs:test-ssr': { - roots: ['@fluentui/react-tabs:test-ssr'], - tasks: { - '@fluentui/react-tabs:test-ssr': { - id: '@fluentui/react-tabs:test-ssr', - target: { project: '@fluentui/react-tabs', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-tabs:test-ssr': [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: {}, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/ts-minbar-test-react-components:type-check': { - roots: ['@fluentui/ts-minbar-test-react-components:type-check'], - tasks: { - '@fluentui/ts-minbar-test-react-components:type-check': { - id: '@fluentui/ts-minbar-test-react-components:type-check', - target: { project: '@fluentui/ts-minbar-test-react-components', target: 'type-check' }, - projectRoot: 'apps/ts-minbar-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ts-minbar-test-react-components:type-check': [] }, - }, - '@fluentui/ts-minbar-test-react-components:test': { - roots: ['@fluentui/ts-minbar-test-react-components:test'], - tasks: { - '@fluentui/ts-minbar-test-react-components:test': { - id: '@fluentui/ts-minbar-test-react-components:test', - target: { project: '@fluentui/ts-minbar-test-react-components', target: 'test' }, - projectRoot: 'apps/ts-minbar-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ts-minbar-test-react-components:test': [] }, - }, - '@fluentui/ts-minbar-test-react-components:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/ts-minbar-test-react-components:nx-release-publish': { - id: '@fluentui/ts-minbar-test-react-components:nx-release-publish', - target: { project: '@fluentui/ts-minbar-test-react-components', target: 'nx-release-publish' }, - projectRoot: 'apps/ts-minbar-test-react-components', - overrides: {}, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/ts-minbar-test-react-components:nx-release-publish': [ - '@fluentui/react-components:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - }, - }, - '@fluentui/react-link:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/a11y-testing:build': [], - }, - }, - '@fluentui/react-link:bundle-size': { - roots: ['@fluentui/react-link:bundle-size'], - tasks: { - '@fluentui/react-link:bundle-size': { - id: '@fluentui/react-link:bundle-size', - target: { project: '@fluentui/react-link', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:bundle-size': [] }, - }, - '@fluentui/react-link:clean': { - roots: ['@fluentui/react-link:clean'], - tasks: { - '@fluentui/react-link:clean': { - id: '@fluentui/react-link:clean', - target: { project: '@fluentui/react-link', target: 'clean' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:clean': [] }, - }, - '@fluentui/react-link:code-style': { - roots: ['@fluentui/react-link:code-style'], - tasks: { - '@fluentui/react-link:code-style': { - id: '@fluentui/react-link:code-style', - target: { project: '@fluentui/react-link', target: 'code-style' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:code-style': [] }, - }, - '@fluentui/react-link:just': { - roots: ['@fluentui/react-link:just'], - tasks: { - '@fluentui/react-link:just': { - id: '@fluentui/react-link:just', - target: { project: '@fluentui/react-link', target: 'just' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:just': [] }, - }, - '@fluentui/react-link:lint': { - roots: ['@fluentui/react-link:lint'], - tasks: { - '@fluentui/react-link:lint': { - id: '@fluentui/react-link:lint', - target: { project: '@fluentui/react-link', target: 'lint' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:lint': [] }, - }, - '@fluentui/react-link:start': { - roots: ['@fluentui/react-link:start'], - tasks: { - '@fluentui/react-link:start': { - id: '@fluentui/react-link:start', - target: { project: '@fluentui/react-link', target: 'start' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:start': [] }, - }, - '@fluentui/react-link:test': { - roots: ['@fluentui/react-link:test'], - tasks: { - '@fluentui/react-link:test': { - id: '@fluentui/react-link:test', - target: { project: '@fluentui/react-link', target: 'test' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:test': [] }, - }, - '@fluentui/react-link:storybook': { - roots: ['@fluentui/react-link:storybook'], - tasks: { - '@fluentui/react-link:storybook': { - id: '@fluentui/react-link:storybook', - target: { project: '@fluentui/react-link', target: 'storybook' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:storybook': [] }, - }, - '@fluentui/react-link:type-check': { - roots: ['@fluentui/react-link:type-check'], - tasks: { - '@fluentui/react-link:type-check': { - id: '@fluentui/react-link:type-check', - target: { project: '@fluentui/react-link', target: 'type-check' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:type-check': [] }, - }, - '@fluentui/react-link:generate-api': { - roots: ['@fluentui/react-link:generate-api'], - tasks: { - '@fluentui/react-link:generate-api': { - id: '@fluentui/react-link:generate-api', - target: { project: '@fluentui/react-link', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:generate-api': [] }, - }, - '@fluentui/react-link:test-ssr': { - roots: ['@fluentui/react-link:test-ssr'], - tasks: { - '@fluentui/react-link:test-ssr': { - id: '@fluentui/react-link:test-ssr', - target: { project: '@fluentui/react-link', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-link:test-ssr': [] }, - }, - '@fluentui/react-link:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-card:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - ], - tasks: { - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/a11y-testing:build': [], - }, - }, - '@fluentui/react-card:bundle-size': { - roots: ['@fluentui/react-card:bundle-size'], - tasks: { - '@fluentui/react-card:bundle-size': { - id: '@fluentui/react-card:bundle-size', - target: { project: '@fluentui/react-card', target: 'bundle-size' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:bundle-size': [] }, - }, - '@fluentui/react-card:clean': { - roots: ['@fluentui/react-card:clean'], - tasks: { - '@fluentui/react-card:clean': { - id: '@fluentui/react-card:clean', - target: { project: '@fluentui/react-card', target: 'clean' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:clean': [] }, - }, - '@fluentui/react-card:code-style': { - roots: ['@fluentui/react-card:code-style'], - tasks: { - '@fluentui/react-card:code-style': { - id: '@fluentui/react-card:code-style', - target: { project: '@fluentui/react-card', target: 'code-style' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:code-style': [] }, - }, - '@fluentui/react-card:e2e': { - roots: ['@fluentui/react-card:e2e'], - tasks: { - '@fluentui/react-card:e2e': { - id: '@fluentui/react-card:e2e', - target: { project: '@fluentui/react-card', target: 'e2e' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:e2e': [] }, - }, - '@fluentui/react-card:e2e:local': { - roots: ['@fluentui/react-card:e2e:local'], - tasks: { - '@fluentui/react-card:e2e:local': { - id: '@fluentui/react-card:e2e:local', - target: { project: '@fluentui/react-card', target: 'e2e:local' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:e2e:local': [] }, - }, - '@fluentui/react-card:just': { - roots: ['@fluentui/react-card:just'], - tasks: { - '@fluentui/react-card:just': { - id: '@fluentui/react-card:just', - target: { project: '@fluentui/react-card', target: 'just' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:just': [] }, - }, - '@fluentui/react-card:lint': { - roots: ['@fluentui/react-card:lint'], - tasks: { - '@fluentui/react-card:lint': { - id: '@fluentui/react-card:lint', - target: { project: '@fluentui/react-card', target: 'lint' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:lint': [] }, - }, - '@fluentui/react-card:start': { - roots: ['@fluentui/react-card:start'], - tasks: { - '@fluentui/react-card:start': { - id: '@fluentui/react-card:start', - target: { project: '@fluentui/react-card', target: 'start' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:start': [] }, - }, - '@fluentui/react-card:test': { - roots: ['@fluentui/react-card:test'], - tasks: { - '@fluentui/react-card:test': { - id: '@fluentui/react-card:test', - target: { project: '@fluentui/react-card', target: 'test' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:test': [] }, - }, - '@fluentui/react-card:storybook': { - roots: ['@fluentui/react-card:storybook'], - tasks: { - '@fluentui/react-card:storybook': { - id: '@fluentui/react-card:storybook', - target: { project: '@fluentui/react-card', target: 'storybook' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:storybook': [] }, - }, - '@fluentui/react-card:type-check': { - roots: ['@fluentui/react-card:type-check'], - tasks: { - '@fluentui/react-card:type-check': { - id: '@fluentui/react-card:type-check', - target: { project: '@fluentui/react-card', target: 'type-check' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:type-check': [] }, - }, - '@fluentui/react-card:generate-api': { - roots: ['@fluentui/react-card:generate-api'], - tasks: { - '@fluentui/react-card:generate-api': { - id: '@fluentui/react-card:generate-api', - target: { project: '@fluentui/react-card', target: 'generate-api' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:generate-api': [] }, - }, - '@fluentui/react-card:test-ssr': { - roots: ['@fluentui/react-card:test-ssr'], - tasks: { - '@fluentui/react-card:test-ssr': { - id: '@fluentui/react-card:test-ssr', - target: { project: '@fluentui/react-card', target: 'test-ssr' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-card:test-ssr': [] }, - }, - '@fluentui/react-card:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: {}, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/docs-components:build': { - roots: ['@fluentui/docs-components:build'], - tasks: { - '@fluentui/docs-components:build': { - id: '@fluentui/docs-components:build', - target: { project: '@fluentui/docs-components', target: 'build' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs-components:build': [] }, - }, - '@fluentui/docs-components:clean': { - roots: ['@fluentui/docs-components:clean'], - tasks: { - '@fluentui/docs-components:clean': { - id: '@fluentui/docs-components:clean', - target: { project: '@fluentui/docs-components', target: 'clean' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs-components:clean': [] }, - }, - '@fluentui/docs-components:lint': { - roots: ['@fluentui/docs-components:lint'], - tasks: { - '@fluentui/docs-components:lint': { - id: '@fluentui/docs-components:lint', - target: { project: '@fluentui/docs-components', target: 'lint' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs-components:lint': [] }, - }, - '@fluentui/docs-components:lint:fix': { - roots: ['@fluentui/docs-components:lint:fix'], - tasks: { - '@fluentui/docs-components:lint:fix': { - id: '@fluentui/docs-components:lint:fix', - target: { project: '@fluentui/docs-components', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs-components:lint:fix': [] }, - }, - '@fluentui/docs-components:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/docs-components:nx-release-publish': { - id: '@fluentui/docs-components:nx-release-publish', - target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/docs-components:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - }, - }, - '@fluentui/react-icons-mdl2-branded:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/react-icons-mdl2-branded:build': { - id: '@fluentui/react-icons-mdl2-branded:build', - target: { project: '@fluentui/react-icons-mdl2-branded', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2-branded', - overrides: {}, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:build': { - id: '@fluentui/react-icons-mdl2:build', - target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:build': { - id: '@fluentui/react-icon-provider:build', - target: { project: '@fluentui/react-icon-provider', target: 'build' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-icons-mdl2-branded:build': ['@fluentui/set-version:build', '@fluentui/react-icons-mdl2:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-icons-mdl2:build': [ - '@fluentui/react-icon-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/react-icons-mdl2-branded:clean': { - roots: ['@fluentui/react-icons-mdl2-branded:clean'], - tasks: { - '@fluentui/react-icons-mdl2-branded:clean': { - id: '@fluentui/react-icons-mdl2-branded:clean', - target: { project: '@fluentui/react-icons-mdl2-branded', target: 'clean' }, - projectRoot: 'packages/react-icons-mdl2-branded', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2-branded:clean': [] }, - }, - '@fluentui/react-icons-mdl2-branded:code-style': { - roots: ['@fluentui/react-icons-mdl2-branded:code-style'], - tasks: { - '@fluentui/react-icons-mdl2-branded:code-style': { - id: '@fluentui/react-icons-mdl2-branded:code-style', - target: { project: '@fluentui/react-icons-mdl2-branded', target: 'code-style' }, - projectRoot: 'packages/react-icons-mdl2-branded', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2-branded:code-style': [] }, - }, - '@fluentui/react-icons-mdl2-branded:just': { - roots: ['@fluentui/react-icons-mdl2-branded:just'], - tasks: { - '@fluentui/react-icons-mdl2-branded:just': { - id: '@fluentui/react-icons-mdl2-branded:just', - target: { project: '@fluentui/react-icons-mdl2-branded', target: 'just' }, - projectRoot: 'packages/react-icons-mdl2-branded', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2-branded:just': [] }, - }, - '@fluentui/react-icons-mdl2-branded:lint': { - roots: ['@fluentui/react-icons-mdl2-branded:lint'], - tasks: { - '@fluentui/react-icons-mdl2-branded:lint': { - id: '@fluentui/react-icons-mdl2-branded:lint', - target: { project: '@fluentui/react-icons-mdl2-branded', target: 'lint' }, - projectRoot: 'packages/react-icons-mdl2-branded', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2-branded:lint': [] }, - }, - '@fluentui/react-icons-mdl2-branded:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-icons-mdl2-branded:nx-release-publish': { - id: '@fluentui/react-icons-mdl2-branded:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2-branded', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2-branded', - overrides: {}, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:nx-release-publish': { - id: '@fluentui/react-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:nx-release-publish': { - id: '@fluentui/react-icon-provider:nx-release-publish', - target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-icons-mdl2-branded:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/react-icons-mdl2:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-icons-mdl2:nx-release-publish': [ - '@fluentui/react-icon-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icon-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-docsite-components:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/monaco-editor:build', - ], - tasks: { - '@fluentui/react-docsite-components:build': { - id: '@fluentui/react-docsite-components:build', - target: { project: '@fluentui/react-docsite-components', target: 'build' }, - projectRoot: 'packages/react-docsite-components', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:build': { - id: '@fluentui/public-docsite-setup:build', - target: { project: '@fluentui/public-docsite-setup', target: 'build' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:build': { - id: '@fluentui/react-monaco-editor:build', - target: { project: '@fluentui/react-monaco-editor', target: 'build' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:build': { - id: '@fluentui/monaco-editor:build', - target: { project: '@fluentui/monaco-editor', target: 'build' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-docsite-components:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/common-styles:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/public-docsite-setup:build': [], - '@fluentui/react-monaco-editor:build': [ - '@fluentui/react:build', - '@fluentui/example-data:build', - '@fluentui/monaco-editor:build', - '@fluentui/react-hooks:build', - '@fluentui/react-charting:build', - ], - '@fluentui/monaco-editor:build': [], - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - }, - }, - '@fluentui/react-docsite-components:clean': { - roots: ['@fluentui/react-docsite-components:clean'], - tasks: { - '@fluentui/react-docsite-components:clean': { - id: '@fluentui/react-docsite-components:clean', - target: { project: '@fluentui/react-docsite-components', target: 'clean' }, - projectRoot: 'packages/react-docsite-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-docsite-components:clean': [] }, - }, - '@fluentui/react-docsite-components:code-style': { - roots: ['@fluentui/react-docsite-components:code-style'], - tasks: { - '@fluentui/react-docsite-components:code-style': { - id: '@fluentui/react-docsite-components:code-style', - target: { project: '@fluentui/react-docsite-components', target: 'code-style' }, - projectRoot: 'packages/react-docsite-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-docsite-components:code-style': [] }, - }, - '@fluentui/react-docsite-components:just': { - roots: ['@fluentui/react-docsite-components:just'], - tasks: { - '@fluentui/react-docsite-components:just': { - id: '@fluentui/react-docsite-components:just', - target: { project: '@fluentui/react-docsite-components', target: 'just' }, - projectRoot: 'packages/react-docsite-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-docsite-components:just': [] }, - }, - '@fluentui/react-docsite-components:lint': { - roots: ['@fluentui/react-docsite-components:lint'], - tasks: { - '@fluentui/react-docsite-components:lint': { - id: '@fluentui/react-docsite-components:lint', - target: { project: '@fluentui/react-docsite-components', target: 'lint' }, - projectRoot: 'packages/react-docsite-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-docsite-components:lint': [] }, - }, - '@fluentui/react-docsite-components:start': { - roots: ['@fluentui/react-docsite-components:start'], - tasks: { - '@fluentui/react-docsite-components:start': { - id: '@fluentui/react-docsite-components:start', - target: { project: '@fluentui/react-docsite-components', target: 'start' }, - projectRoot: 'packages/react-docsite-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-docsite-components:start': [] }, - }, - '@fluentui/react-docsite-components:test': { - roots: ['@fluentui/react-docsite-components:test'], - tasks: { - '@fluentui/react-docsite-components:test': { - id: '@fluentui/react-docsite-components:test', - target: { project: '@fluentui/react-docsite-components', target: 'test' }, - projectRoot: 'packages/react-docsite-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-docsite-components:test': [] }, - }, - '@fluentui/react-docsite-components:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-docsite-components:nx-release-publish': { - id: '@fluentui/react-docsite-components:nx-release-publish', - target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-docsite-components', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:nx-release-publish': { - id: '@fluentui/public-docsite-setup:nx-release-publish', - target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:nx-release-publish': { - id: '@fluentui/react-monaco-editor:nx-release-publish', - target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:nx-release-publish': { - id: '@fluentui/monaco-editor:nx-release-publish', - target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-docsite-components:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/public-docsite-setup:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/public-docsite-setup:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-monaco-editor:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/monaco-editor:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/monaco-editor:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - }, - }, - '@fluentui/react-proptypes:build': { - roots: ['@fluentui/react-proptypes:build'], - tasks: { - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-proptypes:build': [] }, - }, - '@fluentui/react-proptypes:clean': { - roots: ['@fluentui/react-proptypes:clean'], - tasks: { - '@fluentui/react-proptypes:clean': { - id: '@fluentui/react-proptypes:clean', - target: { project: '@fluentui/react-proptypes', target: 'clean' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-proptypes:clean': [] }, - }, - '@fluentui/react-proptypes:lint': { - roots: ['@fluentui/react-proptypes:lint'], - tasks: { - '@fluentui/react-proptypes:lint': { - id: '@fluentui/react-proptypes:lint', - target: { project: '@fluentui/react-proptypes', target: 'lint' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-proptypes:lint': [] }, - }, - '@fluentui/react-proptypes:lint:fix': { - roots: ['@fluentui/react-proptypes:lint:fix'], - tasks: { - '@fluentui/react-proptypes:lint:fix': { - id: '@fluentui/react-proptypes:lint:fix', - target: { project: '@fluentui/react-proptypes', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-proptypes:lint:fix': [] }, - }, - '@fluentui/react-proptypes:test': { - roots: ['@fluentui/react-proptypes:test'], - tasks: { - '@fluentui/react-proptypes:test': { - id: '@fluentui/react-proptypes:test', - target: { project: '@fluentui/react-proptypes', target: 'test' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-proptypes:test': [] }, - }, - '@fluentui/react-proptypes:test:watch': { - roots: ['@fluentui/react-proptypes:test:watch'], - tasks: { - '@fluentui/react-proptypes:test:watch': { - id: '@fluentui/react-proptypes:test:watch', - target: { project: '@fluentui/react-proptypes', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-proptypes:test:watch': [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/react-telemetry:build': { - roots: [ - '@fluentui/accessibility:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - ], - tasks: { - '@fluentui/react-telemetry:build': { - id: '@fluentui/react-telemetry:build', - target: { project: '@fluentui/react-telemetry', target: 'build' }, - projectRoot: 'packages/fluentui/react-telemetry', - overrides: {}, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-telemetry:build': [ - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - ], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - }, - }, - '@fluentui/react-telemetry:clean': { - roots: ['@fluentui/react-telemetry:clean'], - tasks: { - '@fluentui/react-telemetry:clean': { - id: '@fluentui/react-telemetry:clean', - target: { project: '@fluentui/react-telemetry', target: 'clean' }, - projectRoot: 'packages/fluentui/react-telemetry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-telemetry:clean': [] }, - }, - '@fluentui/react-telemetry:lint': { - roots: ['@fluentui/react-telemetry:lint'], - tasks: { - '@fluentui/react-telemetry:lint': { - id: '@fluentui/react-telemetry:lint', - target: { project: '@fluentui/react-telemetry', target: 'lint' }, - projectRoot: 'packages/fluentui/react-telemetry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-telemetry:lint': [] }, - }, - '@fluentui/react-telemetry:lint:fix': { - roots: ['@fluentui/react-telemetry:lint:fix'], - tasks: { - '@fluentui/react-telemetry:lint:fix': { - id: '@fluentui/react-telemetry:lint:fix', - target: { project: '@fluentui/react-telemetry', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-telemetry', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-telemetry:lint:fix': [] }, - }, - '@fluentui/react-telemetry:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-telemetry:nx-release-publish': { - id: '@fluentui/react-telemetry:nx-release-publish', - target: { project: '@fluentui/react-telemetry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-telemetry', - overrides: {}, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-telemetry:nx-release-publish': [ - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - }, - }, - '@fluentui/react-northstar:build': { - roots: [ - '@fluentui/accessibility:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - tasks: { - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-proptypes:build': [], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/react-northstar:build:info': { - roots: ['@fluentui/react-northstar:build:info'], - tasks: { - '@fluentui/react-northstar:build:info': { - id: '@fluentui/react-northstar:build:info', - target: { project: '@fluentui/react-northstar', target: 'build:info' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar:build:info': [] }, - }, - '@fluentui/react-northstar:bundle-size-auditor': { - roots: ['@fluentui/react-northstar:bundle-size-auditor'], - tasks: { - '@fluentui/react-northstar:bundle-size-auditor': { - id: '@fluentui/react-northstar:bundle-size-auditor', - target: { project: '@fluentui/react-northstar', target: 'bundle-size-auditor' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar:bundle-size-auditor': [] }, - }, - '@fluentui/react-northstar:clean': { - roots: ['@fluentui/react-northstar:clean'], - tasks: { - '@fluentui/react-northstar:clean': { - id: '@fluentui/react-northstar:clean', - target: { project: '@fluentui/react-northstar', target: 'clean' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar:clean': [] }, - }, - '@fluentui/react-northstar:lint': { - roots: ['@fluentui/react-northstar:lint'], - tasks: { - '@fluentui/react-northstar:lint': { - id: '@fluentui/react-northstar:lint', - target: { project: '@fluentui/react-northstar', target: 'lint' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar:lint': [] }, - }, - '@fluentui/react-northstar:lint:fix': { - roots: ['@fluentui/react-northstar:lint:fix'], - tasks: { - '@fluentui/react-northstar:lint:fix': { - id: '@fluentui/react-northstar:lint:fix', - target: { project: '@fluentui/react-northstar', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar:lint:fix': [] }, - }, - '@fluentui/react-northstar:test': { - roots: ['@fluentui/react-northstar:test'], - tasks: { - '@fluentui/react-northstar:test': { - id: '@fluentui/react-northstar:test', - target: { project: '@fluentui/react-northstar', target: 'test' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar:test': [] }, - }, - '@fluentui/react-northstar:test:watch': { - roots: ['@fluentui/react-northstar:test:watch'], - tasks: { - '@fluentui/react-northstar:test:watch': { - id: '@fluentui/react-northstar:test:watch', - target: { project: '@fluentui/react-northstar', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-northstar:test:watch': [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: {}, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-bindings:build': { - roots: [ - '@fluentui/accessibility:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - ], - tasks: { - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: {}, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - }, - }, - '@fluentui/react-bindings:build:info': { - roots: ['@fluentui/react-bindings:build:info'], - tasks: { - '@fluentui/react-bindings:build:info': { - id: '@fluentui/react-bindings:build:info', - target: { project: '@fluentui/react-bindings', target: 'build:info' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-bindings:build:info': [] }, - }, - '@fluentui/react-bindings:clean': { - roots: ['@fluentui/react-bindings:clean'], - tasks: { - '@fluentui/react-bindings:clean': { - id: '@fluentui/react-bindings:clean', - target: { project: '@fluentui/react-bindings', target: 'clean' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-bindings:clean': [] }, - }, - '@fluentui/react-bindings:lint': { - roots: ['@fluentui/react-bindings:lint'], - tasks: { - '@fluentui/react-bindings:lint': { - id: '@fluentui/react-bindings:lint', - target: { project: '@fluentui/react-bindings', target: 'lint' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-bindings:lint': [] }, - }, - '@fluentui/react-bindings:lint:fix': { - roots: ['@fluentui/react-bindings:lint:fix'], - tasks: { - '@fluentui/react-bindings:lint:fix': { - id: '@fluentui/react-bindings:lint:fix', - target: { project: '@fluentui/react-bindings', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-bindings:lint:fix': [] }, - }, - '@fluentui/react-bindings:test': { - roots: ['@fluentui/react-bindings:test'], - tasks: { - '@fluentui/react-bindings:test': { - id: '@fluentui/react-bindings:test', - target: { project: '@fluentui/react-bindings', target: 'test' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-bindings:test': [] }, - }, - '@fluentui/react-bindings:test:watch': { - roots: ['@fluentui/react-bindings:test:watch'], - tasks: { - '@fluentui/react-bindings:test:watch': { - id: '@fluentui/react-bindings:test:watch', - target: { project: '@fluentui/react-bindings', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-bindings:test:watch': [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: {}, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - }, - }, - '@fluentui/circulars-test:test': { - roots: ['@fluentui/circulars-test:test'], - tasks: { - '@fluentui/circulars-test:test': { - id: '@fluentui/circulars-test:test', - target: { project: '@fluentui/circulars-test', target: 'test' }, - projectRoot: 'packages/fluentui/circulars-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/circulars-test:test': [] }, - }, - '@fluentui/circulars-test:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/circulars-test:nx-release-publish': { - id: '@fluentui/circulars-test:nx-release-publish', - target: { project: '@fluentui/circulars-test', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/circulars-test', - overrides: {}, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/circulars-test:nx-release-publish': [ - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/accessibility:build': { - roots: ['@fluentui/accessibility:build'], - tasks: { - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: {}, - }, - }, - dependencies: { '@fluentui/accessibility:build': [] }, - }, - '@fluentui/accessibility:clean': { - roots: ['@fluentui/accessibility:clean'], - tasks: { - '@fluentui/accessibility:clean': { - id: '@fluentui/accessibility:clean', - target: { project: '@fluentui/accessibility', target: 'clean' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: {}, - }, - }, - dependencies: { '@fluentui/accessibility:clean': [] }, - }, - '@fluentui/accessibility:lint': { - roots: ['@fluentui/accessibility:lint'], - tasks: { - '@fluentui/accessibility:lint': { - id: '@fluentui/accessibility:lint', - target: { project: '@fluentui/accessibility', target: 'lint' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: {}, - }, - }, - dependencies: { '@fluentui/accessibility:lint': [] }, - }, - '@fluentui/accessibility:lint:fix': { - roots: ['@fluentui/accessibility:lint:fix'], - tasks: { - '@fluentui/accessibility:lint:fix': { - id: '@fluentui/accessibility:lint:fix', - target: { project: '@fluentui/accessibility', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: {}, - }, - }, - dependencies: { '@fluentui/accessibility:lint:fix': [] }, - }, - '@fluentui/accessibility:test': { - roots: ['@fluentui/accessibility:test'], - tasks: { - '@fluentui/accessibility:test': { - id: '@fluentui/accessibility:test', - target: { project: '@fluentui/accessibility', target: 'test' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: {}, - }, - }, - dependencies: { '@fluentui/accessibility:test': [] }, - }, - '@fluentui/accessibility:test:watch': { - roots: ['@fluentui/accessibility:test:watch'], - tasks: { - '@fluentui/accessibility:test:watch': { - id: '@fluentui/accessibility:test:watch', - target: { project: '@fluentui/accessibility', target: 'test:watch' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: {}, - }, - }, - dependencies: { '@fluentui/accessibility:test:watch': [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/local-sandbox:build:withdependencies': { - roots: ['@fluentui/local-sandbox:build:withdependencies'], - tasks: { - '@fluentui/local-sandbox:build:withdependencies': { - id: '@fluentui/local-sandbox:build:withdependencies', - target: { project: '@fluentui/local-sandbox', target: 'build:withdependencies' }, - projectRoot: 'packages/fluentui/local-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/local-sandbox:build:withdependencies': [] }, - }, - '@fluentui/local-sandbox:build': { - roots: [ - '@fluentui/accessibility:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - tasks: { - '@fluentui/local-sandbox:build': { - id: '@fluentui/local-sandbox:build', - target: { project: '@fluentui/local-sandbox', target: 'build' }, - projectRoot: 'packages/fluentui/local-sandbox', - overrides: {}, - }, - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/local-sandbox:build': ['@fluentui/react-northstar:build'], - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-proptypes:build': [], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/local-sandbox:build:production': { - roots: ['@fluentui/local-sandbox:build:production'], - tasks: { - '@fluentui/local-sandbox:build:production': { - id: '@fluentui/local-sandbox:build:production', - target: { project: '@fluentui/local-sandbox', target: 'build:production' }, - projectRoot: 'packages/fluentui/local-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/local-sandbox:build:production': [] }, - }, - '@fluentui/local-sandbox:serve': { - roots: ['@fluentui/local-sandbox:serve'], - tasks: { - '@fluentui/local-sandbox:serve': { - id: '@fluentui/local-sandbox:serve', - target: { project: '@fluentui/local-sandbox', target: 'serve' }, - projectRoot: 'packages/fluentui/local-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/local-sandbox:serve': [] }, - }, - '@fluentui/local-sandbox:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/local-sandbox:nx-release-publish': { - id: '@fluentui/local-sandbox:nx-release-publish', - target: { project: '@fluentui/local-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/local-sandbox', - overrides: {}, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/local-sandbox:nx-release-publish': [ - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/perf-test-react-components:bundle': { - roots: ['@fluentui/perf-test-react-components:bundle'], - tasks: { - '@fluentui/perf-test-react-components:bundle': { - id: '@fluentui/perf-test-react-components:bundle', - target: { project: '@fluentui/perf-test-react-components', target: 'bundle' }, - projectRoot: 'apps/perf-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-react-components:bundle': [] }, - }, - '@fluentui/perf-test-react-components:lint': { - roots: ['@fluentui/perf-test-react-components:lint'], - tasks: { - '@fluentui/perf-test-react-components:lint': { - id: '@fluentui/perf-test-react-components:lint', - target: { project: '@fluentui/perf-test-react-components', target: 'lint' }, - projectRoot: 'apps/perf-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-react-components:lint': [] }, - }, - '@fluentui/perf-test-react-components:just': { - roots: ['@fluentui/perf-test-react-components:just'], - tasks: { - '@fluentui/perf-test-react-components:just': { - id: '@fluentui/perf-test-react-components:just', - target: { project: '@fluentui/perf-test-react-components', target: 'just' }, - projectRoot: 'apps/perf-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-react-components:just': [] }, - }, - '@fluentui/perf-test-react-components:clean': { - roots: ['@fluentui/perf-test-react-components:clean'], - tasks: { - '@fluentui/perf-test-react-components:clean': { - id: '@fluentui/perf-test-react-components:clean', - target: { project: '@fluentui/perf-test-react-components', target: 'clean' }, - projectRoot: 'apps/perf-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-react-components:clean': [] }, - }, - '@fluentui/perf-test-react-components:code-style': { - roots: ['@fluentui/perf-test-react-components:code-style'], - tasks: { - '@fluentui/perf-test-react-components:code-style': { - id: '@fluentui/perf-test-react-components:code-style', - target: { project: '@fluentui/perf-test-react-components', target: 'code-style' }, - projectRoot: 'apps/perf-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-react-components:code-style': [] }, - }, - '@fluentui/perf-test-react-components:type-check': { - roots: ['@fluentui/perf-test-react-components:type-check'], - tasks: { - '@fluentui/perf-test-react-components:type-check': { - id: '@fluentui/perf-test-react-components:type-check', - target: { project: '@fluentui/perf-test-react-components', target: 'type-check' }, - projectRoot: 'apps/perf-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-react-components:type-check': [] }, - }, - '@fluentui/perf-test-react-components:test:perf': { - roots: ['@fluentui/perf-test-react-components:test:perf'], - tasks: { - '@fluentui/perf-test-react-components:test:perf': { - id: '@fluentui/perf-test-react-components:test:perf', - target: { project: '@fluentui/perf-test-react-components', target: 'test:perf' }, - projectRoot: 'apps/perf-test-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test-react-components:test:perf': [] }, - }, - '@fluentui/perf-test-react-components:nx-release-publish': { - roots: [ - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/perf-test-react-components:nx-release-publish': { - id: '@fluentui/perf-test-react-components:nx-release-publish', - target: { project: '@fluentui/perf-test-react-components', target: 'nx-release-publish' }, - projectRoot: 'apps/perf-test-react-components', - overrides: {}, - }, - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': { - id: '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', - target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'nx-release-publish' }, - projectRoot: 'scripts/perf-test-flamegrill', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/perf-test-react-components:nx-release-publish': [ - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': [], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-builder:build': { - roots: [ - '@fluentui/accessibility:build', - '@fluentui/docs-components:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - tasks: { - '@fluentui/react-builder:build': { - id: '@fluentui/react-builder:build', - target: { project: '@fluentui/react-builder', target: 'build' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: {}, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:build': { - id: '@fluentui/code-sandbox:build', - target: { project: '@fluentui/code-sandbox', target: 'build' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:build': { - id: '@fluentui/docs-components:build', - target: { project: '@fluentui/docs-components', target: 'build' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-builder:build': [ - '@fluentui/accessibility:build', - '@fluentui/code-sandbox:build', - '@fluentui/docs-components:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/code-sandbox:build': ['@fluentui/docs-components:build', '@fluentui/react-northstar:build'], - '@fluentui/docs-components:build': [], - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-proptypes:build': [], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/react-builder:clean': { - roots: ['@fluentui/react-builder:clean'], - tasks: { - '@fluentui/react-builder:clean': { - id: '@fluentui/react-builder:clean', - target: { project: '@fluentui/react-builder', target: 'clean' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-builder:clean': [] }, - }, - '@fluentui/react-builder:lint': { - roots: ['@fluentui/react-builder:lint'], - tasks: { - '@fluentui/react-builder:lint': { - id: '@fluentui/react-builder:lint', - target: { project: '@fluentui/react-builder', target: 'lint' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-builder:lint': [] }, - }, - '@fluentui/react-builder:lint:fix': { - roots: ['@fluentui/react-builder:lint:fix'], - tasks: { - '@fluentui/react-builder:lint:fix': { - id: '@fluentui/react-builder:lint:fix', - target: { project: '@fluentui/react-builder', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-builder:lint:fix': [] }, - }, - '@fluentui/react-builder:test': { - roots: ['@fluentui/react-builder:test'], - tasks: { - '@fluentui/react-builder:test': { - id: '@fluentui/react-builder:test', - target: { project: '@fluentui/react-builder', target: 'test' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-builder:test': [] }, - }, - '@fluentui/react-builder:test:watch': { - roots: ['@fluentui/react-builder:test:watch'], - tasks: { - '@fluentui/react-builder:test:watch': { - id: '@fluentui/react-builder:test:watch', - target: { project: '@fluentui/react-builder', target: 'test:watch' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-builder:test:watch': [] }, - }, - '@fluentui/react-builder:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-builder:nx-release-publish': { - id: '@fluentui/react-builder:nx-release-publish', - target: { project: '@fluentui/react-builder', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: {}, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:nx-release-publish': { - id: '@fluentui/code-sandbox:nx-release-publish', - target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:nx-release-publish': { - id: '@fluentui/docs-components:nx-release-publish', - target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-builder:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/code-sandbox:nx-release-publish': [ - '@fluentui/docs-components:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/docs-components:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/projects-test:build': { - roots: [ - '@fluentui/accessibility:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - tasks: { - '@fluentui/projects-test:build': { - id: '@fluentui/projects-test:build', - target: { project: '@fluentui/projects-test', target: 'build' }, - projectRoot: 'packages/fluentui/projects-test', - overrides: {}, - }, - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/projects-test:build': ['@fluentui/react-northstar:build'], - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-proptypes:build': [], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/projects-test:lint': { - roots: ['@fluentui/projects-test:lint'], - tasks: { - '@fluentui/projects-test:lint': { - id: '@fluentui/projects-test:lint', - target: { project: '@fluentui/projects-test', target: 'lint' }, - projectRoot: 'packages/fluentui/projects-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/projects-test:lint': [] }, - }, - '@fluentui/projects-test:lint:fix': { - roots: ['@fluentui/projects-test:lint:fix'], - tasks: { - '@fluentui/projects-test:lint:fix': { - id: '@fluentui/projects-test:lint:fix', - target: { project: '@fluentui/projects-test', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/projects-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/projects-test:lint:fix': [] }, - }, - '@fluentui/projects-test:test': { - roots: ['@fluentui/projects-test:test'], - tasks: { - '@fluentui/projects-test:test': { - id: '@fluentui/projects-test:test', - target: { project: '@fluentui/projects-test', target: 'test' }, - projectRoot: 'packages/fluentui/projects-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/projects-test:test': [] }, - }, - '@fluentui/projects-test:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/projects-test:nx-release-publish': { - id: '@fluentui/projects-test:nx-release-publish', - target: { project: '@fluentui/projects-test', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/projects-test', - overrides: {}, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/projects-test:nx-release-publish': [ - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-file-type-icons:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/react-file-type-icons:build': { - id: '@fluentui/react-file-type-icons:build', - target: { project: '@fluentui/react-file-type-icons', target: 'build' }, - projectRoot: 'packages/react-file-type-icons', - overrides: {}, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/react-file-type-icons:clean': { - roots: ['@fluentui/react-file-type-icons:clean'], - tasks: { - '@fluentui/react-file-type-icons:clean': { - id: '@fluentui/react-file-type-icons:clean', - target: { project: '@fluentui/react-file-type-icons', target: 'clean' }, - projectRoot: 'packages/react-file-type-icons', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-file-type-icons:clean': [] }, - }, - '@fluentui/react-file-type-icons:code-style': { - roots: ['@fluentui/react-file-type-icons:code-style'], - tasks: { - '@fluentui/react-file-type-icons:code-style': { - id: '@fluentui/react-file-type-icons:code-style', - target: { project: '@fluentui/react-file-type-icons', target: 'code-style' }, - projectRoot: 'packages/react-file-type-icons', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-file-type-icons:code-style': [] }, - }, - '@fluentui/react-file-type-icons:just': { - roots: ['@fluentui/react-file-type-icons:just'], - tasks: { - '@fluentui/react-file-type-icons:just': { - id: '@fluentui/react-file-type-icons:just', - target: { project: '@fluentui/react-file-type-icons', target: 'just' }, - projectRoot: 'packages/react-file-type-icons', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-file-type-icons:just': [] }, - }, - '@fluentui/react-file-type-icons:lint': { - roots: ['@fluentui/react-file-type-icons:lint'], - tasks: { - '@fluentui/react-file-type-icons:lint': { - id: '@fluentui/react-file-type-icons:lint', - target: { project: '@fluentui/react-file-type-icons', target: 'lint' }, - projectRoot: 'packages/react-file-type-icons', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-file-type-icons:lint': [] }, - }, - '@fluentui/react-file-type-icons:test': { - roots: ['@fluentui/react-file-type-icons:test'], - tasks: { - '@fluentui/react-file-type-icons:test': { - id: '@fluentui/react-file-type-icons:test', - target: { project: '@fluentui/react-file-type-icons', target: 'test' }, - projectRoot: 'packages/react-file-type-icons', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-file-type-icons:test': [] }, - }, - '@fluentui/react-file-type-icons:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-file-type-icons:nx-release-publish': { - id: '@fluentui/react-file-type-icons:nx-release-publish', - target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, - projectRoot: 'packages/react-file-type-icons', - overrides: {}, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-file-type-icons:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/vr-tests-react-components:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - '@fluentui/babel-preset-storybook-full-source:build', - ], - tasks: { - '@fluentui/vr-tests-react-components:build': { - id: '@fluentui/vr-tests-react-components:build', - target: { project: '@fluentui/vr-tests-react-components', target: 'build' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-calendar-compat:build': { - id: '@fluentui/react-calendar-compat:build', - target: { project: '@fluentui/react-calendar-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-datepicker-compat:build': { - id: '@fluentui/react-datepicker-compat:build', - target: { project: '@fluentui/react-datepicker-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-search-preview:build': { - id: '@fluentui/react-search-preview:build', - target: { project: '@fluentui/react-search-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon:build': { - id: '@fluentui/react-storybook-addon:build', - target: { project: '@fluentui/react-storybook-addon', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:build': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:build', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/babel-preset-storybook-full-source:build': { - id: '@fluentui/babel-preset-storybook-full-source:build', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-timepicker-compat-preview:build': { - id: '@fluentui/react-timepicker-compat-preview:build', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/vr-tests-react-components:build': [ - '@fluentui/react-accordion:build', - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-button:build', - '@fluentui/react-calendar-compat:build', - '@fluentui/react-card:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-combobox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-datepicker-compat:build', - '@fluentui/react-dialog:build', - '@fluentui/react-divider:build', - '@fluentui/react-drawer:build', - '@fluentui/react-field:build', - '@fluentui/react-image:build', - '@fluentui/react-infolabel:build', - '@fluentui/react-input:build', - '@fluentui/react-label:build', - '@fluentui/react-link:build', - '@fluentui/react-menu:build', - '@fluentui/react-message-bar:build', - '@fluentui/react-persona:build', - '@fluentui/react-popover:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-progress:build', - '@fluentui/react-provider:build', - '@fluentui/react-radio:build', - '@fluentui/react-search-preview:build', - '@fluentui/react-select:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-skeleton:build', - '@fluentui/react-slider:build', - '@fluentui/react-spinner:build', - '@fluentui/react-spinbutton:build', - '@fluentui/react-storybook-addon:build', - '@fluentui/react-storybook-addon-export-to-sandbox:build', - '@fluentui/react-switch:build', - '@fluentui/react-table:build', - '@fluentui/react-tabs:build', - '@fluentui/react-tags:build', - '@fluentui/react-text:build', - '@fluentui/react-textarea:build', - '@fluentui/react-theme:build', - '@fluentui/react-timepicker-compat-preview:build', - '@fluentui/react-toast:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-toolbar:build', - '@fluentui/react-tree:build', - '@fluentui/react-utilities:build', - '@fluentui/react-breadcrumb:build', - ], - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-calendar-compat:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-datepicker-compat:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-calendar-compat:build', - '@fluentui/react-field:build', - '@fluentui/react-input:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-popover:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-search-preview:build': [ - '@fluentui/react-input:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-storybook-addon:build': ['@fluentui/react-theme:build', '@fluentui/react-provider:build'], - '@fluentui/react-storybook-addon-export-to-sandbox:build': [ - '@fluentui/babel-preset-storybook-full-source:build', - ], - '@fluentui/babel-preset-storybook-full-source:build': [], - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-timepicker-compat-preview:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-combobox:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/vr-tests-react-components:clean': { - roots: ['@fluentui/vr-tests-react-components:clean'], - tasks: { - '@fluentui/vr-tests-react-components:clean': { - id: '@fluentui/vr-tests-react-components:clean', - target: { project: '@fluentui/vr-tests-react-components', target: 'clean' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests-react-components:clean': [] }, - }, - '@fluentui/vr-tests-react-components:format': { - roots: ['@fluentui/vr-tests-react-components:format'], - tasks: { - '@fluentui/vr-tests-react-components:format': { - id: '@fluentui/vr-tests-react-components:format', - target: { project: '@fluentui/vr-tests-react-components', target: 'format' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests-react-components:format': [] }, - }, - '@fluentui/vr-tests-react-components:lint': { - roots: ['@fluentui/vr-tests-react-components:lint'], - tasks: { - '@fluentui/vr-tests-react-components:lint': { - id: '@fluentui/vr-tests-react-components:lint', - target: { project: '@fluentui/vr-tests-react-components', target: 'lint' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests-react-components:lint': [] }, - }, - '@fluentui/vr-tests-react-components:start': { - roots: ['@fluentui/vr-tests-react-components:start'], - tasks: { - '@fluentui/vr-tests-react-components:start': { - id: '@fluentui/vr-tests-react-components:start', - target: { project: '@fluentui/vr-tests-react-components', target: 'start' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests-react-components:start': [] }, - }, - '@fluentui/vr-tests-react-components:test': { - roots: ['@fluentui/vr-tests-react-components:test'], - tasks: { - '@fluentui/vr-tests-react-components:test': { - id: '@fluentui/vr-tests-react-components:test', - target: { project: '@fluentui/vr-tests-react-components', target: 'test' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests-react-components:test': [] }, - }, - '@fluentui/vr-tests-react-components:type-check': { - roots: ['@fluentui/vr-tests-react-components:type-check'], - tasks: { - '@fluentui/vr-tests-react-components:type-check': { - id: '@fluentui/vr-tests-react-components:type-check', - target: { project: '@fluentui/vr-tests-react-components', target: 'type-check' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests-react-components:type-check': [] }, - }, - '@fluentui/vr-tests-react-components:vr:build': { - roots: ['@fluentui/vr-tests-react-components:vr:build'], - tasks: { - '@fluentui/vr-tests-react-components:vr:build': { - id: '@fluentui/vr-tests-react-components:vr:build', - target: { project: '@fluentui/vr-tests-react-components', target: 'vr:build' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests-react-components:vr:build': [] }, - }, - '@fluentui/vr-tests-react-components:vr:test': { - roots: ['@fluentui/vr-tests-react-components:vr:test'], - tasks: { - '@fluentui/vr-tests-react-components:vr:test': { - id: '@fluentui/vr-tests-react-components:vr:test', - target: { project: '@fluentui/vr-tests-react-components', target: 'vr:test' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests-react-components:vr:test': [] }, - }, - '@fluentui/vr-tests-react-components:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/vr-tests-react-components:nx-release-publish': { - id: '@fluentui/vr-tests-react-components:nx-release-publish', - target: { project: '@fluentui/vr-tests-react-components', target: 'nx-release-publish' }, - projectRoot: 'apps/vr-tests-react-components', - overrides: {}, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-calendar-compat:nx-release-publish': { - id: '@fluentui/react-calendar-compat:nx-release-publish', - target: { project: '@fluentui/react-calendar-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-datepicker-compat:nx-release-publish': { - id: '@fluentui/react-datepicker-compat:nx-release-publish', - target: { project: '@fluentui/react-datepicker-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-search-preview:nx-release-publish': { - id: '@fluentui/react-search-preview:nx-release-publish', - target: { project: '@fluentui/react-search-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon:nx-release-publish': { - id: '@fluentui/react-storybook-addon:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { - id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-timepicker-compat-preview:nx-release-publish': { - id: '@fluentui/react-timepicker-compat-preview:nx-release-publish', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/vr-tests-react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-calendar-compat:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-datepicker-compat:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-search-preview:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-storybook-addon:nx-release-publish', - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-timepicker-compat-preview:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-calendar-compat:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-datepicker-compat:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-calendar-compat:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-search-preview:nx-release-publish': [ - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-storybook-addon:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ - '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-timepicker-compat-preview:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-window-provider:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/set-version:build': [], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/react-window-provider:clean': { - roots: ['@fluentui/react-window-provider:clean'], - tasks: { - '@fluentui/react-window-provider:clean': { - id: '@fluentui/react-window-provider:clean', - target: { project: '@fluentui/react-window-provider', target: 'clean' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-window-provider:clean': [] }, - }, - '@fluentui/react-window-provider:code-style': { - roots: ['@fluentui/react-window-provider:code-style'], - tasks: { - '@fluentui/react-window-provider:code-style': { - id: '@fluentui/react-window-provider:code-style', - target: { project: '@fluentui/react-window-provider', target: 'code-style' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-window-provider:code-style': [] }, - }, - '@fluentui/react-window-provider:just': { - roots: ['@fluentui/react-window-provider:just'], - tasks: { - '@fluentui/react-window-provider:just': { - id: '@fluentui/react-window-provider:just', - target: { project: '@fluentui/react-window-provider', target: 'just' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-window-provider:just': [] }, - }, - '@fluentui/react-window-provider:lint': { - roots: ['@fluentui/react-window-provider:lint'], - tasks: { - '@fluentui/react-window-provider:lint': { - id: '@fluentui/react-window-provider:lint', - target: { project: '@fluentui/react-window-provider', target: 'lint' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-window-provider:lint': [] }, - }, - '@fluentui/react-window-provider:start-test': { - roots: ['@fluentui/react-window-provider:start-test'], - tasks: { - '@fluentui/react-window-provider:start-test': { - id: '@fluentui/react-window-provider:start-test', - target: { project: '@fluentui/react-window-provider', target: 'start-test' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-window-provider:start-test': [] }, - }, - '@fluentui/react-window-provider:test': { - roots: ['@fluentui/react-window-provider:test'], - tasks: { - '@fluentui/react-window-provider:test': { - id: '@fluentui/react-window-provider:test', - target: { project: '@fluentui/react-window-provider', target: 'test' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-window-provider:test': [] }, - }, - '@fluentui/react-window-provider:update-snapshots': { - roots: ['@fluentui/react-window-provider:update-snapshots'], - tasks: { - '@fluentui/react-window-provider:update-snapshots': { - id: '@fluentui/react-window-provider:update-snapshots', - target: { project: '@fluentui/react-window-provider', target: 'update-snapshots' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-window-provider:update-snapshots': [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: {}, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - }, - }, - '@fluentui/code-sandbox:build': { - roots: [ - '@fluentui/docs-components:build', - '@fluentui/accessibility:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - tasks: { - '@fluentui/code-sandbox:build': { - id: '@fluentui/code-sandbox:build', - target: { project: '@fluentui/code-sandbox', target: 'build' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: {}, - }, - '@fluentui/docs-components:build': { - id: '@fluentui/docs-components:build', - target: { project: '@fluentui/docs-components', target: 'build' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/code-sandbox:build': ['@fluentui/docs-components:build', '@fluentui/react-northstar:build'], - '@fluentui/docs-components:build': [], - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-proptypes:build': [], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/code-sandbox:clean': { - roots: ['@fluentui/code-sandbox:clean'], - tasks: { - '@fluentui/code-sandbox:clean': { - id: '@fluentui/code-sandbox:clean', - target: { project: '@fluentui/code-sandbox', target: 'clean' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/code-sandbox:clean': [] }, - }, - '@fluentui/code-sandbox:lint': { - roots: ['@fluentui/code-sandbox:lint'], - tasks: { - '@fluentui/code-sandbox:lint': { - id: '@fluentui/code-sandbox:lint', - target: { project: '@fluentui/code-sandbox', target: 'lint' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/code-sandbox:lint': [] }, - }, - '@fluentui/code-sandbox:lint:fix': { - roots: ['@fluentui/code-sandbox:lint:fix'], - tasks: { - '@fluentui/code-sandbox:lint:fix': { - id: '@fluentui/code-sandbox:lint:fix', - target: { project: '@fluentui/code-sandbox', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: {}, - }, - }, - dependencies: { '@fluentui/code-sandbox:lint:fix': [] }, - }, - '@fluentui/code-sandbox:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/code-sandbox:nx-release-publish': { - id: '@fluentui/code-sandbox:nx-release-publish', - target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: {}, - }, - '@fluentui/docs-components:nx-release-publish': { - id: '@fluentui/docs-components:nx-release-publish', - target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/code-sandbox:nx-release-publish': [ - '@fluentui/docs-components:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/docs-components:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/public-docsite-setup:build': { - roots: ['@fluentui/public-docsite-setup:build'], - tasks: { - '@fluentui/public-docsite-setup:build': { - id: '@fluentui/public-docsite-setup:build', - target: { project: '@fluentui/public-docsite-setup', target: 'build' }, - projectRoot: 'packages/public-docsite-setup', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-setup:build': [] }, - }, - '@fluentui/public-docsite-setup:clean': { - roots: ['@fluentui/public-docsite-setup:clean'], - tasks: { - '@fluentui/public-docsite-setup:clean': { - id: '@fluentui/public-docsite-setup:clean', - target: { project: '@fluentui/public-docsite-setup', target: 'clean' }, - projectRoot: 'packages/public-docsite-setup', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-setup:clean': [] }, - }, - '@fluentui/public-docsite-setup:code-style': { - roots: ['@fluentui/public-docsite-setup:code-style'], - tasks: { - '@fluentui/public-docsite-setup:code-style': { - id: '@fluentui/public-docsite-setup:code-style', - target: { project: '@fluentui/public-docsite-setup', target: 'code-style' }, - projectRoot: 'packages/public-docsite-setup', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-setup:code-style': [] }, - }, - '@fluentui/public-docsite-setup:just': { - roots: ['@fluentui/public-docsite-setup:just'], - tasks: { - '@fluentui/public-docsite-setup:just': { - id: '@fluentui/public-docsite-setup:just', - target: { project: '@fluentui/public-docsite-setup', target: 'just' }, - projectRoot: 'packages/public-docsite-setup', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-setup:just': [] }, - }, - '@fluentui/public-docsite-setup:lint': { - roots: ['@fluentui/public-docsite-setup:lint'], - tasks: { - '@fluentui/public-docsite-setup:lint': { - id: '@fluentui/public-docsite-setup:lint', - target: { project: '@fluentui/public-docsite-setup', target: 'lint' }, - projectRoot: 'packages/public-docsite-setup', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-setup:lint': [] }, - }, - '@fluentui/public-docsite-setup:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/public-docsite-setup:nx-release-publish': { - id: '@fluentui/public-docsite-setup:nx-release-publish', - target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, - projectRoot: 'packages/public-docsite-setup', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/public-docsite-setup:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/recipes-react-components:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/a11y-testing:build', - '@fluentui/priority-overflow:build', - '@fluentui/babel-preset-storybook-full-source:build', - ], - tasks: { - '@fluentui/recipes-react-components:build': { - id: '@fluentui/recipes-react-components:build', - target: { project: '@fluentui/recipes-react-components', target: 'build' }, - projectRoot: 'apps/recipes-react-components', - overrides: {}, - }, - '@fluentui/react-components:build': { - id: '@fluentui/react-components:build', - target: { project: '@fluentui/react-components', target: 'build' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:build': { - id: '@fluentui/react-alert:build', - target: { project: '@fluentui/react-alert', target: 'build' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:build': { - id: '@fluentui/react-infobutton:build', - target: { project: '@fluentui/react-infobutton', target: 'build' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:build': { - id: '@fluentui/react-overflow:build', - target: { project: '@fluentui/react-overflow', target: 'build' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:build': { - id: '@fluentui/react-virtualizer:build', - target: { project: '@fluentui/react-virtualizer', target: 'build' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon:build': { - id: '@fluentui/react-storybook-addon:build', - target: { project: '@fluentui/react-storybook-addon', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:build': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:build', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/babel-preset-storybook-full-source:build': { - id: '@fluentui/babel-preset-storybook-full-source:build', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/recipes-react-components:build': [ - '@fluentui/react-components:build', - '@fluentui/react-theme:build', - '@fluentui/react-provider:build', - '@fluentui/react-storybook-addon:build', - '@fluentui/react-storybook-addon-export-to-sandbox:build', - ], - '@fluentui/react-components:build': [ - '@fluentui/react-accordion:build', - '@fluentui/react-alert:build', - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-button:build', - '@fluentui/react-card:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-combobox:build', - '@fluentui/react-dialog:build', - '@fluentui/react-divider:build', - '@fluentui/react-drawer:build', - '@fluentui/react-field:build', - '@fluentui/react-image:build', - '@fluentui/react-infobutton:build', - '@fluentui/react-infolabel:build', - '@fluentui/react-input:build', - '@fluentui/react-label:build', - '@fluentui/react-link:build', - '@fluentui/react-menu:build', - '@fluentui/react-overflow:build', - '@fluentui/react-persona:build', - '@fluentui/react-portal:build', - '@fluentui/react-popover:build', - '@fluentui/react-positioning:build', - '@fluentui/react-progress:build', - '@fluentui/react-provider:build', - '@fluentui/react-radio:build', - '@fluentui/react-select:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-skeleton:build', - '@fluentui/react-slider:build', - '@fluentui/react-spinbutton:build', - '@fluentui/react-spinner:build', - '@fluentui/react-switch:build', - '@fluentui/react-table:build', - '@fluentui/react-tabs:build', - '@fluentui/react-tabster:build', - '@fluentui/react-tags:build', - '@fluentui/react-textarea:build', - '@fluentui/react-theme:build', - '@fluentui/react-toast:build', - '@fluentui/react-toolbar:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-text:build', - '@fluentui/react-virtualizer:build', - '@fluentui/react-tree:build', - '@fluentui/react-message-bar:build', - '@fluentui/react-breadcrumb:build', - ], - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-conformance:build': [], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-alert:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infobutton:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-overflow:build': [ - '@fluentui/priority-overflow:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/priority-overflow:build': [], - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-virtualizer:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-storybook-addon:build': ['@fluentui/react-theme:build', '@fluentui/react-provider:build'], - '@fluentui/react-storybook-addon-export-to-sandbox:build': [ - '@fluentui/babel-preset-storybook-full-source:build', - ], - '@fluentui/babel-preset-storybook-full-source:build': [], - }, - }, - '@fluentui/recipes-react-components:clean': { - roots: ['@fluentui/recipes-react-components:clean'], - tasks: { - '@fluentui/recipes-react-components:clean': { - id: '@fluentui/recipes-react-components:clean', - target: { project: '@fluentui/recipes-react-components', target: 'clean' }, - projectRoot: 'apps/recipes-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/recipes-react-components:clean': [] }, - }, - '@fluentui/recipes-react-components:format': { - roots: ['@fluentui/recipes-react-components:format'], - tasks: { - '@fluentui/recipes-react-components:format': { - id: '@fluentui/recipes-react-components:format', - target: { project: '@fluentui/recipes-react-components', target: 'format' }, - projectRoot: 'apps/recipes-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/recipes-react-components:format': [] }, - }, - '@fluentui/recipes-react-components:lint': { - roots: ['@fluentui/recipes-react-components:lint'], - tasks: { - '@fluentui/recipes-react-components:lint': { - id: '@fluentui/recipes-react-components:lint', - target: { project: '@fluentui/recipes-react-components', target: 'lint' }, - projectRoot: 'apps/recipes-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/recipes-react-components:lint': [] }, - }, - '@fluentui/recipes-react-components:start': { - roots: ['@fluentui/recipes-react-components:start'], - tasks: { - '@fluentui/recipes-react-components:start': { - id: '@fluentui/recipes-react-components:start', - target: { project: '@fluentui/recipes-react-components', target: 'start' }, - projectRoot: 'apps/recipes-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/recipes-react-components:start': [] }, - }, - '@fluentui/recipes-react-components:type-check': { - roots: ['@fluentui/recipes-react-components:type-check'], - tasks: { - '@fluentui/recipes-react-components:type-check': { - id: '@fluentui/recipes-react-components:type-check', - target: { project: '@fluentui/recipes-react-components', target: 'type-check' }, - projectRoot: 'apps/recipes-react-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/recipes-react-components:type-check': [] }, - }, - '@fluentui/recipes-react-components:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/recipes-react-components:nx-release-publish': { - id: '@fluentui/recipes-react-components:nx-release-publish', - target: { project: '@fluentui/recipes-react-components', target: 'nx-release-publish' }, - projectRoot: 'apps/recipes-react-components', - overrides: {}, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon:nx-release-publish': { - id: '@fluentui/react-storybook-addon:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { - id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/recipes-react-components:nx-release-publish': [ - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-storybook-addon:nx-release-publish', - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-storybook-addon:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ - '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/public-docsite-resources:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/monaco-editor:build', - '@fluentui/api-docs:build', - ], - tasks: { - '@fluentui/public-docsite-resources:build': { - id: '@fluentui/public-docsite-resources:build', - target: { project: '@fluentui/public-docsite-resources', target: 'build' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-examples:build': { - id: '@fluentui/react-examples:build', - target: { project: '@fluentui/react-examples', target: 'build' }, - projectRoot: 'packages/react-examples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:build': { - id: '@fluentui/azure-themes:build', - target: { project: '@fluentui/azure-themes', target: 'build' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-cards:build': { - id: '@fluentui/react-cards:build', - target: { project: '@fluentui/react-cards', target: 'build' }, - projectRoot: 'packages/react-cards', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:build': { - id: '@fluentui/react-docsite-components:build', - target: { project: '@fluentui/react-docsite-components', target: 'build' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:build': { - id: '@fluentui/public-docsite-setup:build', - target: { project: '@fluentui/public-docsite-setup', target: 'build' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:build': { - id: '@fluentui/react-monaco-editor:build', - target: { project: '@fluentui/react-monaco-editor', target: 'build' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:build': { - id: '@fluentui/monaco-editor:build', - target: { project: '@fluentui/monaco-editor', target: 'build' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:build': { - id: '@fluentui/react-experiments:build', - target: { project: '@fluentui/react-experiments', target: 'build' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-file-type-icons:build': { - id: '@fluentui/react-file-type-icons:build', - target: { project: '@fluentui/react-file-type-icons', target: 'build' }, - projectRoot: 'packages/react-file-type-icons', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:build': { - id: '@fluentui/react-icons-mdl2:build', - target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:build': { - id: '@fluentui/react-icon-provider:build', - target: { project: '@fluentui/react-icon-provider', target: 'build' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:build': { - id: '@fluentui/storybook:build', - target: { project: '@fluentui/storybook', target: 'build' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/api-docs:build': { - id: '@fluentui/api-docs:build', - target: { project: '@fluentui/api-docs', target: 'build' }, - projectRoot: 'packages/api-docs', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/public-docsite-resources:build': [ - '@fluentui/react:build', - '@fluentui/react-charting:build', - '@fluentui/react-examples:build', - '@fluentui/azure-themes:build', - '@fluentui/react-docsite-components:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/set-version:build', - '@fluentui/theme-samples:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/api-docs:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - '@fluentui/react-examples:build': [ - '@fluentui/azure-themes:build', - '@fluentui/date-time-utilities:build', - '@fluentui/dom-utilities:build', - '@fluentui/example-data:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/foundation-legacy:build', - '@fluentui/merge-styles:build', - '@fluentui/react:build', - '@fluentui/react-cards:build', - '@fluentui/react-charting:build', - '@fluentui/react-docsite-components:build', - '@fluentui/react-experiments:build', - '@fluentui/react-file-type-icons:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-icons-mdl2:build', - '@fluentui/scheme-utilities:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/theme-samples:build', - '@fluentui/utilities:build', - '@fluentui/storybook:build', - ], - '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react-cards:build': [ - '@fluentui/react:build', - '@fluentui/foundation-legacy:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-docsite-components:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/common-styles:build', - ], - '@fluentui/public-docsite-setup:build': [], - '@fluentui/react-monaco-editor:build': [ - '@fluentui/react:build', - '@fluentui/example-data:build', - '@fluentui/monaco-editor:build', - '@fluentui/react-hooks:build', - '@fluentui/react-charting:build', - ], - '@fluentui/monaco-editor:build': [], - '@fluentui/react-experiments:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/react-icons-mdl2:build': [ - '@fluentui/react-icon-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/storybook:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/azure-themes:build', - '@fluentui/theme-samples:build', - ], - '@fluentui/api-docs:build': [], - }, - }, - '@fluentui/public-docsite-resources:bundle': { - roots: ['@fluentui/public-docsite-resources:bundle'], - tasks: { - '@fluentui/public-docsite-resources:bundle': { - id: '@fluentui/public-docsite-resources:bundle', - target: { project: '@fluentui/public-docsite-resources', target: 'bundle' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-resources:bundle': [] }, - }, - '@fluentui/public-docsite-resources:lint': { - roots: ['@fluentui/public-docsite-resources:lint'], - tasks: { - '@fluentui/public-docsite-resources:lint': { - id: '@fluentui/public-docsite-resources:lint', - target: { project: '@fluentui/public-docsite-resources', target: 'lint' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-resources:lint': [] }, - }, - '@fluentui/public-docsite-resources:just': { - roots: ['@fluentui/public-docsite-resources:just'], - tasks: { - '@fluentui/public-docsite-resources:just': { - id: '@fluentui/public-docsite-resources:just', - target: { project: '@fluentui/public-docsite-resources', target: 'just' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-resources:just': [] }, - }, - '@fluentui/public-docsite-resources:clean': { - roots: ['@fluentui/public-docsite-resources:clean'], - tasks: { - '@fluentui/public-docsite-resources:clean': { - id: '@fluentui/public-docsite-resources:clean', - target: { project: '@fluentui/public-docsite-resources', target: 'clean' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-resources:clean': [] }, - }, - '@fluentui/public-docsite-resources:code-style': { - roots: ['@fluentui/public-docsite-resources:code-style'], - tasks: { - '@fluentui/public-docsite-resources:code-style': { - id: '@fluentui/public-docsite-resources:code-style', - target: { project: '@fluentui/public-docsite-resources', target: 'code-style' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-resources:code-style': [] }, - }, - '@fluentui/public-docsite-resources:start': { - roots: ['@fluentui/public-docsite-resources:start'], - tasks: { - '@fluentui/public-docsite-resources:start': { - id: '@fluentui/public-docsite-resources:start', - target: { project: '@fluentui/public-docsite-resources', target: 'start' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-resources:start': [] }, - }, - '@fluentui/public-docsite-resources:update-snapshots': { - roots: ['@fluentui/public-docsite-resources:update-snapshots'], - tasks: { - '@fluentui/public-docsite-resources:update-snapshots': { - id: '@fluentui/public-docsite-resources:update-snapshots', - target: { project: '@fluentui/public-docsite-resources', target: 'update-snapshots' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-resources:update-snapshots': [] }, - }, - '@fluentui/public-docsite-resources:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/public-docsite-resources:nx-release-publish': { - id: '@fluentui/public-docsite-resources:nx-release-publish', - target: { project: '@fluentui/public-docsite-resources', target: 'nx-release-publish' }, - projectRoot: 'apps/public-docsite-resources', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-examples:nx-release-publish': { - id: '@fluentui/react-examples:nx-release-publish', - target: { project: '@fluentui/react-examples', target: 'nx-release-publish' }, - projectRoot: 'packages/react-examples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:nx-release-publish': { - id: '@fluentui/azure-themes:nx-release-publish', - target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-cards:nx-release-publish': { - id: '@fluentui/react-cards:nx-release-publish', - target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, - projectRoot: 'packages/react-cards', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:nx-release-publish': { - id: '@fluentui/react-docsite-components:nx-release-publish', - target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:nx-release-publish': { - id: '@fluentui/public-docsite-setup:nx-release-publish', - target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:nx-release-publish': { - id: '@fluentui/react-monaco-editor:nx-release-publish', - target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:nx-release-publish': { - id: '@fluentui/monaco-editor:nx-release-publish', - target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:nx-release-publish': { - id: '@fluentui/react-experiments:nx-release-publish', - target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-file-type-icons:nx-release-publish': { - id: '@fluentui/react-file-type-icons:nx-release-publish', - target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, - projectRoot: 'packages/react-file-type-icons', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:nx-release-publish': { - id: '@fluentui/react-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:nx-release-publish': { - id: '@fluentui/react-icon-provider:nx-release-publish', - target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:nx-release-publish': { - id: '@fluentui/storybook:nx-release-publish', - target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/api-docs:nx-release-publish': { - id: '@fluentui/api-docs:nx-release-publish', - target: { project: '@fluentui/api-docs', target: 'nx-release-publish' }, - projectRoot: 'packages/api-docs', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/public-docsite-resources:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/react-examples:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/api-docs:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-examples:nx-release-publish': [ - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-cards:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/react-experiments:nx-release-publish', - '@fluentui/react-file-type-icons:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-icons-mdl2:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/storybook:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/azure-themes:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-cards:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-docsite-components:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/public-docsite-setup:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/public-docsite-setup:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-monaco-editor:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/monaco-editor:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/monaco-editor:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-experiments:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-file-type-icons:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-icons-mdl2:nx-release-publish': [ - '@fluentui/react-icon-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icon-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/storybook:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/api-docs:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/scripts-update-release-notes:format': { - roots: ['@fluentui/scripts-update-release-notes:format'], - tasks: { - '@fluentui/scripts-update-release-notes:format': { - id: '@fluentui/scripts-update-release-notes:format', - target: { project: '@fluentui/scripts-update-release-notes', target: 'format' }, - projectRoot: 'scripts/update-release-notes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-update-release-notes:format': [] }, - }, - '@fluentui/scripts-update-release-notes:format:check': { - roots: ['@fluentui/scripts-update-release-notes:format:check'], - tasks: { - '@fluentui/scripts-update-release-notes:format:check': { - id: '@fluentui/scripts-update-release-notes:format:check', - target: { project: '@fluentui/scripts-update-release-notes', target: 'format:check' }, - projectRoot: 'scripts/update-release-notes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-update-release-notes:format:check': [] }, - }, - '@fluentui/scripts-update-release-notes:lint': { - roots: ['@fluentui/scripts-update-release-notes:lint'], - tasks: { - '@fluentui/scripts-update-release-notes:lint': { - id: '@fluentui/scripts-update-release-notes:lint', - target: { project: '@fluentui/scripts-update-release-notes', target: 'lint' }, - projectRoot: 'scripts/update-release-notes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-update-release-notes:lint': [] }, - }, - '@fluentui/scripts-update-release-notes:test': { - roots: ['@fluentui/scripts-update-release-notes:test'], - tasks: { - '@fluentui/scripts-update-release-notes:test': { - id: '@fluentui/scripts-update-release-notes:test', - target: { project: '@fluentui/scripts-update-release-notes', target: 'test' }, - projectRoot: 'scripts/update-release-notes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-update-release-notes:test': [] }, - }, - '@fluentui/scripts-update-release-notes:type-check': { - roots: ['@fluentui/scripts-update-release-notes:type-check'], - tasks: { - '@fluentui/scripts-update-release-notes:type-check': { - id: '@fluentui/scripts-update-release-notes:type-check', - target: { project: '@fluentui/scripts-update-release-notes', target: 'type-check' }, - projectRoot: 'scripts/update-release-notes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-update-release-notes:type-check': [] }, - }, - '@fluentui/scripts-update-release-notes:nx-release-publish': { - roots: ['@fluentui/scripts-github:nx-release-publish'], - tasks: { - '@fluentui/scripts-update-release-notes:nx-release-publish': { - id: '@fluentui/scripts-update-release-notes:nx-release-publish', - target: { project: '@fluentui/scripts-update-release-notes', target: 'nx-release-publish' }, - projectRoot: 'scripts/update-release-notes', - overrides: {}, - }, - '@fluentui/scripts-github:nx-release-publish': { - id: '@fluentui/scripts-github:nx-release-publish', - target: { project: '@fluentui/scripts-github', target: 'nx-release-publish' }, - projectRoot: 'scripts/github', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-update-release-notes:nx-release-publish': ['@fluentui/scripts-github:nx-release-publish'], - '@fluentui/scripts-github:nx-release-publish': [], - }, - }, - '@fluentui/react-monaco-editor:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/monaco-editor:build', - ], - tasks: { - '@fluentui/react-monaco-editor:build': { - id: '@fluentui/react-monaco-editor:build', - target: { project: '@fluentui/react-monaco-editor', target: 'build' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:build': { - id: '@fluentui/monaco-editor:build', - target: { project: '@fluentui/monaco-editor', target: 'build' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-monaco-editor:build': [ - '@fluentui/react:build', - '@fluentui/example-data:build', - '@fluentui/monaco-editor:build', - '@fluentui/react-hooks:build', - '@fluentui/react-charting:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/monaco-editor:build': [], - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - }, - }, - '@fluentui/react-monaco-editor:bundle': { - roots: ['@fluentui/react-monaco-editor:bundle'], - tasks: { - '@fluentui/react-monaco-editor:bundle': { - id: '@fluentui/react-monaco-editor:bundle', - target: { project: '@fluentui/react-monaco-editor', target: 'bundle' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:bundle': [] }, - }, - '@fluentui/react-monaco-editor:lint': { - roots: ['@fluentui/react-monaco-editor:lint'], - tasks: { - '@fluentui/react-monaco-editor:lint': { - id: '@fluentui/react-monaco-editor:lint', - target: { project: '@fluentui/react-monaco-editor', target: 'lint' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:lint': [] }, - }, - '@fluentui/react-monaco-editor:test': { - roots: ['@fluentui/react-monaco-editor:test'], - tasks: { - '@fluentui/react-monaco-editor:test': { - id: '@fluentui/react-monaco-editor:test', - target: { project: '@fluentui/react-monaco-editor', target: 'test' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:test': [] }, - }, - '@fluentui/react-monaco-editor:clean': { - roots: ['@fluentui/react-monaco-editor:clean'], - tasks: { - '@fluentui/react-monaco-editor:clean': { - id: '@fluentui/react-monaco-editor:clean', - target: { project: '@fluentui/react-monaco-editor', target: 'clean' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:clean': [] }, - }, - '@fluentui/react-monaco-editor:code-style': { - roots: ['@fluentui/react-monaco-editor:code-style'], - tasks: { - '@fluentui/react-monaco-editor:code-style': { - id: '@fluentui/react-monaco-editor:code-style', - target: { project: '@fluentui/react-monaco-editor', target: 'code-style' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:code-style': [] }, - }, - '@fluentui/react-monaco-editor:start': { - roots: ['@fluentui/react-monaco-editor:start'], - tasks: { - '@fluentui/react-monaco-editor:start': { - id: '@fluentui/react-monaco-editor:start', - target: { project: '@fluentui/react-monaco-editor', target: 'start' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:start': [] }, - }, - '@fluentui/react-monaco-editor:start-test': { - roots: ['@fluentui/react-monaco-editor:start-test'], - tasks: { - '@fluentui/react-monaco-editor:start-test': { - id: '@fluentui/react-monaco-editor:start-test', - target: { project: '@fluentui/react-monaco-editor', target: 'start-test' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:start-test': [] }, - }, - '@fluentui/react-monaco-editor:update-snapshots': { - roots: ['@fluentui/react-monaco-editor:update-snapshots'], - tasks: { - '@fluentui/react-monaco-editor:update-snapshots': { - id: '@fluentui/react-monaco-editor:update-snapshots', - target: { project: '@fluentui/react-monaco-editor', target: 'update-snapshots' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:update-snapshots': [] }, - }, - '@fluentui/react-monaco-editor:just': { - roots: ['@fluentui/react-monaco-editor:just'], - tasks: { - '@fluentui/react-monaco-editor:just': { - id: '@fluentui/react-monaco-editor:just', - target: { project: '@fluentui/react-monaco-editor', target: 'just' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-monaco-editor:just': [] }, - }, - '@fluentui/react-monaco-editor:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-monaco-editor:nx-release-publish': { - id: '@fluentui/react-monaco-editor:nx-release-publish', - target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/react-monaco-editor', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:nx-release-publish': { - id: '@fluentui/monaco-editor:nx-release-publish', - target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-monaco-editor:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/monaco-editor:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/monaco-editor:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - }, - }, - '@fluentui/react-icon-provider:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/react-icon-provider:build': { - id: '@fluentui/react-icon-provider:build', - target: { project: '@fluentui/react-icon-provider', target: 'build' }, - projectRoot: 'packages/react-icon-provider', - overrides: {}, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/react-icon-provider:bundle': { - roots: ['@fluentui/react-icon-provider:bundle'], - tasks: { - '@fluentui/react-icon-provider:bundle': { - id: '@fluentui/react-icon-provider:bundle', - target: { project: '@fluentui/react-icon-provider', target: 'bundle' }, - projectRoot: 'packages/react-icon-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icon-provider:bundle': [] }, - }, - '@fluentui/react-icon-provider:clean': { - roots: ['@fluentui/react-icon-provider:clean'], - tasks: { - '@fluentui/react-icon-provider:clean': { - id: '@fluentui/react-icon-provider:clean', - target: { project: '@fluentui/react-icon-provider', target: 'clean' }, - projectRoot: 'packages/react-icon-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icon-provider:clean': [] }, - }, - '@fluentui/react-icon-provider:code-style': { - roots: ['@fluentui/react-icon-provider:code-style'], - tasks: { - '@fluentui/react-icon-provider:code-style': { - id: '@fluentui/react-icon-provider:code-style', - target: { project: '@fluentui/react-icon-provider', target: 'code-style' }, - projectRoot: 'packages/react-icon-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icon-provider:code-style': [] }, - }, - '@fluentui/react-icon-provider:just': { - roots: ['@fluentui/react-icon-provider:just'], - tasks: { - '@fluentui/react-icon-provider:just': { - id: '@fluentui/react-icon-provider:just', - target: { project: '@fluentui/react-icon-provider', target: 'just' }, - projectRoot: 'packages/react-icon-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icon-provider:just': [] }, - }, - '@fluentui/react-icon-provider:lint': { - roots: ['@fluentui/react-icon-provider:lint'], - tasks: { - '@fluentui/react-icon-provider:lint': { - id: '@fluentui/react-icon-provider:lint', - target: { project: '@fluentui/react-icon-provider', target: 'lint' }, - projectRoot: 'packages/react-icon-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icon-provider:lint': [] }, - }, - '@fluentui/react-icon-provider:test': { - roots: ['@fluentui/react-icon-provider:test'], - tasks: { - '@fluentui/react-icon-provider:test': { - id: '@fluentui/react-icon-provider:test', - target: { project: '@fluentui/react-icon-provider', target: 'test' }, - projectRoot: 'packages/react-icon-provider', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icon-provider:test': [] }, - }, - '@fluentui/react-icon-provider:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-icon-provider:nx-release-publish': { - id: '@fluentui/react-icon-provider:nx-release-publish', - target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icon-provider', - overrides: {}, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-icon-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/scripts-perf-test-flamegrill:format': { - roots: ['@fluentui/scripts-perf-test-flamegrill:format'], - tasks: { - '@fluentui/scripts-perf-test-flamegrill:format': { - id: '@fluentui/scripts-perf-test-flamegrill:format', - target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'format' }, - projectRoot: 'scripts/perf-test-flamegrill', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-perf-test-flamegrill:format': [] }, - }, - '@fluentui/scripts-perf-test-flamegrill:format:check': { - roots: ['@fluentui/scripts-perf-test-flamegrill:format:check'], - tasks: { - '@fluentui/scripts-perf-test-flamegrill:format:check': { - id: '@fluentui/scripts-perf-test-flamegrill:format:check', - target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'format:check' }, - projectRoot: 'scripts/perf-test-flamegrill', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-perf-test-flamegrill:format:check': [] }, - }, - '@fluentui/scripts-perf-test-flamegrill:lint': { - roots: ['@fluentui/scripts-perf-test-flamegrill:lint'], - tasks: { - '@fluentui/scripts-perf-test-flamegrill:lint': { - id: '@fluentui/scripts-perf-test-flamegrill:lint', - target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'lint' }, - projectRoot: 'scripts/perf-test-flamegrill', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-perf-test-flamegrill:lint': [] }, - }, - '@fluentui/scripts-perf-test-flamegrill:test': { - roots: ['@fluentui/scripts-perf-test-flamegrill:test'], - tasks: { - '@fluentui/scripts-perf-test-flamegrill:test': { - id: '@fluentui/scripts-perf-test-flamegrill:test', - target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'test' }, - projectRoot: 'scripts/perf-test-flamegrill', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-perf-test-flamegrill:test': [] }, - }, - '@fluentui/scripts-perf-test-flamegrill:type-check': { - roots: ['@fluentui/scripts-perf-test-flamegrill:type-check'], - tasks: { - '@fluentui/scripts-perf-test-flamegrill:type-check': { - id: '@fluentui/scripts-perf-test-flamegrill:type-check', - target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'type-check' }, - projectRoot: 'scripts/perf-test-flamegrill', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-perf-test-flamegrill:type-check': [] }, - }, - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': { - roots: ['@fluentui/scripts-perf-test-flamegrill:nx-release-publish'], - tasks: { - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': { - id: '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', - target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'nx-release-publish' }, - projectRoot: 'scripts/perf-test-flamegrill', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': [] }, - }, - '@fluentui/date-time-utilities:build': { - roots: ['@fluentui/set-version:build'], - tasks: { - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: {}, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - }, - }, - '@fluentui/date-time-utilities:test': { - roots: ['@fluentui/date-time-utilities:test'], - tasks: { - '@fluentui/date-time-utilities:test': { - id: '@fluentui/date-time-utilities:test', - target: { project: '@fluentui/date-time-utilities', target: 'test' }, - projectRoot: 'packages/date-time-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/date-time-utilities:test': [] }, - }, - '@fluentui/date-time-utilities:just': { - roots: ['@fluentui/date-time-utilities:just'], - tasks: { - '@fluentui/date-time-utilities:just': { - id: '@fluentui/date-time-utilities:just', - target: { project: '@fluentui/date-time-utilities', target: 'just' }, - projectRoot: 'packages/date-time-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/date-time-utilities:just': [] }, - }, - '@fluentui/date-time-utilities:code-style': { - roots: ['@fluentui/date-time-utilities:code-style'], - tasks: { - '@fluentui/date-time-utilities:code-style': { - id: '@fluentui/date-time-utilities:code-style', - target: { project: '@fluentui/date-time-utilities', target: 'code-style' }, - projectRoot: 'packages/date-time-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/date-time-utilities:code-style': [] }, - }, - '@fluentui/date-time-utilities:clean': { - roots: ['@fluentui/date-time-utilities:clean'], - tasks: { - '@fluentui/date-time-utilities:clean': { - id: '@fluentui/date-time-utilities:clean', - target: { project: '@fluentui/date-time-utilities', target: 'clean' }, - projectRoot: 'packages/date-time-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/date-time-utilities:clean': [] }, - }, - '@fluentui/date-time-utilities:start-test': { - roots: ['@fluentui/date-time-utilities:start-test'], - tasks: { - '@fluentui/date-time-utilities:start-test': { - id: '@fluentui/date-time-utilities:start-test', - target: { project: '@fluentui/date-time-utilities', target: 'start-test' }, - projectRoot: 'packages/date-time-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/date-time-utilities:start-test': [] }, - }, - '@fluentui/date-time-utilities:lint': { - roots: ['@fluentui/date-time-utilities:lint'], - tasks: { - '@fluentui/date-time-utilities:lint': { - id: '@fluentui/date-time-utilities:lint', - target: { project: '@fluentui/date-time-utilities', target: 'lint' }, - projectRoot: 'packages/date-time-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/date-time-utilities:lint': [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: {}, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/scripts-bundle-size-auditor:format': { - roots: ['@fluentui/scripts-bundle-size-auditor:format'], - tasks: { - '@fluentui/scripts-bundle-size-auditor:format': { - id: '@fluentui/scripts-bundle-size-auditor:format', - target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'format' }, - projectRoot: 'scripts/bundle-size-auditor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-bundle-size-auditor:format': [] }, - }, - '@fluentui/scripts-bundle-size-auditor:format:check': { - roots: ['@fluentui/scripts-bundle-size-auditor:format:check'], - tasks: { - '@fluentui/scripts-bundle-size-auditor:format:check': { - id: '@fluentui/scripts-bundle-size-auditor:format:check', - target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'format:check' }, - projectRoot: 'scripts/bundle-size-auditor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-bundle-size-auditor:format:check': [] }, - }, - '@fluentui/scripts-bundle-size-auditor:lint': { - roots: ['@fluentui/scripts-bundle-size-auditor:lint'], - tasks: { - '@fluentui/scripts-bundle-size-auditor:lint': { - id: '@fluentui/scripts-bundle-size-auditor:lint', - target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'lint' }, - projectRoot: 'scripts/bundle-size-auditor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-bundle-size-auditor:lint': [] }, - }, - '@fluentui/scripts-bundle-size-auditor:test': { - roots: ['@fluentui/scripts-bundle-size-auditor:test'], - tasks: { - '@fluentui/scripts-bundle-size-auditor:test': { - id: '@fluentui/scripts-bundle-size-auditor:test', - target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'test' }, - projectRoot: 'scripts/bundle-size-auditor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-bundle-size-auditor:test': [] }, - }, - '@fluentui/scripts-bundle-size-auditor:type-check': { - roots: ['@fluentui/scripts-bundle-size-auditor:type-check'], - tasks: { - '@fluentui/scripts-bundle-size-auditor:type-check': { - id: '@fluentui/scripts-bundle-size-auditor:type-check', - target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'type-check' }, - projectRoot: 'scripts/bundle-size-auditor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-bundle-size-auditor:type-check': [] }, - }, - '@fluentui/scripts-bundle-size-auditor:nx-release-publish': { - roots: ['@fluentui/scripts-bundle-size-auditor:nx-release-publish'], - tasks: { - '@fluentui/scripts-bundle-size-auditor:nx-release-publish': { - id: '@fluentui/scripts-bundle-size-auditor:nx-release-publish', - target: { project: '@fluentui/scripts-bundle-size-auditor', target: 'nx-release-publish' }, - projectRoot: 'scripts/bundle-size-auditor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-bundle-size-auditor:nx-release-publish': [] }, - }, - '@fluentui/react-experiments:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/react-experiments:build': { - id: '@fluentui/react-experiments:build', - target: { project: '@fluentui/react-experiments', target: 'build' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-experiments:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - }, - }, - '@fluentui/react-experiments:bundle': { - roots: ['@fluentui/react-experiments:bundle'], - tasks: { - '@fluentui/react-experiments:bundle': { - id: '@fluentui/react-experiments:bundle', - target: { project: '@fluentui/react-experiments', target: 'bundle' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:bundle': [] }, - }, - '@fluentui/react-experiments:lint': { - roots: ['@fluentui/react-experiments:lint'], - tasks: { - '@fluentui/react-experiments:lint': { - id: '@fluentui/react-experiments:lint', - target: { project: '@fluentui/react-experiments', target: 'lint' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:lint': [] }, - }, - '@fluentui/react-experiments:test': { - roots: ['@fluentui/react-experiments:test'], - tasks: { - '@fluentui/react-experiments:test': { - id: '@fluentui/react-experiments:test', - target: { project: '@fluentui/react-experiments', target: 'test' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:test': [] }, - }, - '@fluentui/react-experiments:just': { - roots: ['@fluentui/react-experiments:just'], - tasks: { - '@fluentui/react-experiments:just': { - id: '@fluentui/react-experiments:just', - target: { project: '@fluentui/react-experiments', target: 'just' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:just': [] }, - }, - '@fluentui/react-experiments:clean': { - roots: ['@fluentui/react-experiments:clean'], - tasks: { - '@fluentui/react-experiments:clean': { - id: '@fluentui/react-experiments:clean', - target: { project: '@fluentui/react-experiments', target: 'clean' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:clean': [] }, - }, - '@fluentui/react-experiments:code-style': { - roots: ['@fluentui/react-experiments:code-style'], - tasks: { - '@fluentui/react-experiments:code-style': { - id: '@fluentui/react-experiments:code-style', - target: { project: '@fluentui/react-experiments', target: 'code-style' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:code-style': [] }, - }, - '@fluentui/react-experiments:start': { - roots: ['@fluentui/react-experiments:start'], - tasks: { - '@fluentui/react-experiments:start': { - id: '@fluentui/react-experiments:start', - target: { project: '@fluentui/react-experiments', target: 'start' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:start': [] }, - }, - '@fluentui/react-experiments:start:legacy': { - roots: ['@fluentui/react-experiments:start:legacy'], - tasks: { - '@fluentui/react-experiments:start:legacy': { - id: '@fluentui/react-experiments:start:legacy', - target: { project: '@fluentui/react-experiments', target: 'start:legacy' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:start:legacy': [] }, - }, - '@fluentui/react-experiments:start-test': { - roots: ['@fluentui/react-experiments:start-test'], - tasks: { - '@fluentui/react-experiments:start-test': { - id: '@fluentui/react-experiments:start-test', - target: { project: '@fluentui/react-experiments', target: 'start-test' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:start-test': [] }, - }, - '@fluentui/react-experiments:update-snapshots': { - roots: ['@fluentui/react-experiments:update-snapshots'], - tasks: { - '@fluentui/react-experiments:update-snapshots': { - id: '@fluentui/react-experiments:update-snapshots', - target: { project: '@fluentui/react-experiments', target: 'update-snapshots' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-experiments:update-snapshots': [] }, - }, - '@fluentui/react-experiments:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-experiments:nx-release-publish': { - id: '@fluentui/react-experiments:nx-release-publish', - target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, - projectRoot: 'packages/react-experiments', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-experiments:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/webpack-utilities:build': { - roots: ['@fluentui/webpack-utilities:build'], - tasks: { - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/webpack-utilities:build': [] }, - }, - '@fluentui/webpack-utilities:clean': { - roots: ['@fluentui/webpack-utilities:clean'], - tasks: { - '@fluentui/webpack-utilities:clean': { - id: '@fluentui/webpack-utilities:clean', - target: { project: '@fluentui/webpack-utilities', target: 'clean' }, - projectRoot: 'packages/webpack-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/webpack-utilities:clean': [] }, - }, - '@fluentui/webpack-utilities:code-style': { - roots: ['@fluentui/webpack-utilities:code-style'], - tasks: { - '@fluentui/webpack-utilities:code-style': { - id: '@fluentui/webpack-utilities:code-style', - target: { project: '@fluentui/webpack-utilities', target: 'code-style' }, - projectRoot: 'packages/webpack-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/webpack-utilities:code-style': [] }, - }, - '@fluentui/webpack-utilities:just': { - roots: ['@fluentui/webpack-utilities:just'], - tasks: { - '@fluentui/webpack-utilities:just': { - id: '@fluentui/webpack-utilities:just', - target: { project: '@fluentui/webpack-utilities', target: 'just' }, - projectRoot: 'packages/webpack-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/webpack-utilities:just': [] }, - }, - '@fluentui/webpack-utilities:lint': { - roots: ['@fluentui/webpack-utilities:lint'], - tasks: { - '@fluentui/webpack-utilities:lint': { - id: '@fluentui/webpack-utilities:lint', - target: { project: '@fluentui/webpack-utilities', target: 'lint' }, - projectRoot: 'packages/webpack-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/webpack-utilities:lint': [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-conformance:build': { - roots: ['@fluentui/react-conformance:build'], - tasks: { - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance:build': [] }, - }, - '@fluentui/react-conformance:clean': { - roots: ['@fluentui/react-conformance:clean'], - tasks: { - '@fluentui/react-conformance:clean': { - id: '@fluentui/react-conformance:clean', - target: { project: '@fluentui/react-conformance', target: 'clean' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance:clean': [] }, - }, - '@fluentui/react-conformance:code-style': { - roots: ['@fluentui/react-conformance:code-style'], - tasks: { - '@fluentui/react-conformance:code-style': { - id: '@fluentui/react-conformance:code-style', - target: { project: '@fluentui/react-conformance', target: 'code-style' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance:code-style': [] }, - }, - '@fluentui/react-conformance:just': { - roots: ['@fluentui/react-conformance:just'], - tasks: { - '@fluentui/react-conformance:just': { - id: '@fluentui/react-conformance:just', - target: { project: '@fluentui/react-conformance', target: 'just' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance:just': [] }, - }, - '@fluentui/react-conformance:test': { - roots: ['@fluentui/react-conformance:test'], - tasks: { - '@fluentui/react-conformance:test': { - id: '@fluentui/react-conformance:test', - target: { project: '@fluentui/react-conformance', target: 'test' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance:test': [] }, - }, - '@fluentui/react-conformance:lint': { - roots: ['@fluentui/react-conformance:lint'], - tasks: { - '@fluentui/react-conformance:lint': { - id: '@fluentui/react-conformance:lint', - target: { project: '@fluentui/react-conformance', target: 'lint' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance:lint': [] }, - }, - '@fluentui/react-conformance:generate-api': { - roots: ['@fluentui/react-conformance:generate-api'], - tasks: { - '@fluentui/react-conformance:generate-api': { - id: '@fluentui/react-conformance:generate-api', - target: { project: '@fluentui/react-conformance', target: 'generate-api' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance:generate-api': [] }, - }, - '@fluentui/react-conformance:type-check': { - roots: ['@fluentui/react-conformance:type-check'], - tasks: { - '@fluentui/react-conformance:type-check': { - id: '@fluentui/react-conformance:type-check', - target: { project: '@fluentui/react-conformance', target: 'type-check' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-conformance:type-check': [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/foundation-legacy:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/foundation-legacy:bundle': { - roots: ['@fluentui/foundation-legacy:bundle'], - tasks: { - '@fluentui/foundation-legacy:bundle': { - id: '@fluentui/foundation-legacy:bundle', - target: { project: '@fluentui/foundation-legacy', target: 'bundle' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - }, - dependencies: { '@fluentui/foundation-legacy:bundle': [] }, - }, - '@fluentui/foundation-legacy:clean': { - roots: ['@fluentui/foundation-legacy:clean'], - tasks: { - '@fluentui/foundation-legacy:clean': { - id: '@fluentui/foundation-legacy:clean', - target: { project: '@fluentui/foundation-legacy', target: 'clean' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - }, - dependencies: { '@fluentui/foundation-legacy:clean': [] }, - }, - '@fluentui/foundation-legacy:code-style': { - roots: ['@fluentui/foundation-legacy:code-style'], - tasks: { - '@fluentui/foundation-legacy:code-style': { - id: '@fluentui/foundation-legacy:code-style', - target: { project: '@fluentui/foundation-legacy', target: 'code-style' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - }, - dependencies: { '@fluentui/foundation-legacy:code-style': [] }, - }, - '@fluentui/foundation-legacy:just': { - roots: ['@fluentui/foundation-legacy:just'], - tasks: { - '@fluentui/foundation-legacy:just': { - id: '@fluentui/foundation-legacy:just', - target: { project: '@fluentui/foundation-legacy', target: 'just' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - }, - dependencies: { '@fluentui/foundation-legacy:just': [] }, - }, - '@fluentui/foundation-legacy:lint': { - roots: ['@fluentui/foundation-legacy:lint'], - tasks: { - '@fluentui/foundation-legacy:lint': { - id: '@fluentui/foundation-legacy:lint', - target: { project: '@fluentui/foundation-legacy', target: 'lint' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - }, - dependencies: { '@fluentui/foundation-legacy:lint': [] }, - }, - '@fluentui/foundation-legacy:start-test': { - roots: ['@fluentui/foundation-legacy:start-test'], - tasks: { - '@fluentui/foundation-legacy:start-test': { - id: '@fluentui/foundation-legacy:start-test', - target: { project: '@fluentui/foundation-legacy', target: 'start-test' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - }, - dependencies: { '@fluentui/foundation-legacy:start-test': [] }, - }, - '@fluentui/foundation-legacy:test': { - roots: ['@fluentui/foundation-legacy:test'], - tasks: { - '@fluentui/foundation-legacy:test': { - id: '@fluentui/foundation-legacy:test', - target: { project: '@fluentui/foundation-legacy', target: 'test' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - }, - dependencies: { '@fluentui/foundation-legacy:test': [] }, - }, - '@fluentui/foundation-legacy:update-snapshots': { - roots: ['@fluentui/foundation-legacy:update-snapshots'], - tasks: { - '@fluentui/foundation-legacy:update-snapshots': { - id: '@fluentui/foundation-legacy:update-snapshots', - target: { project: '@fluentui/foundation-legacy', target: 'update-snapshots' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - }, - dependencies: { '@fluentui/foundation-legacy:update-snapshots': [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: {}, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/scheme-utilities:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: {}, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/scheme-utilities:bundle': { - roots: ['@fluentui/scheme-utilities:bundle'], - tasks: { - '@fluentui/scheme-utilities:bundle': { - id: '@fluentui/scheme-utilities:bundle', - target: { project: '@fluentui/scheme-utilities', target: 'bundle' }, - projectRoot: 'packages/scheme-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scheme-utilities:bundle': [] }, - }, - '@fluentui/scheme-utilities:lint': { - roots: ['@fluentui/scheme-utilities:lint'], - tasks: { - '@fluentui/scheme-utilities:lint': { - id: '@fluentui/scheme-utilities:lint', - target: { project: '@fluentui/scheme-utilities', target: 'lint' }, - projectRoot: 'packages/scheme-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scheme-utilities:lint': [] }, - }, - '@fluentui/scheme-utilities:just': { - roots: ['@fluentui/scheme-utilities:just'], - tasks: { - '@fluentui/scheme-utilities:just': { - id: '@fluentui/scheme-utilities:just', - target: { project: '@fluentui/scheme-utilities', target: 'just' }, - projectRoot: 'packages/scheme-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scheme-utilities:just': [] }, - }, - '@fluentui/scheme-utilities:clean': { - roots: ['@fluentui/scheme-utilities:clean'], - tasks: { - '@fluentui/scheme-utilities:clean': { - id: '@fluentui/scheme-utilities:clean', - target: { project: '@fluentui/scheme-utilities', target: 'clean' }, - projectRoot: 'packages/scheme-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scheme-utilities:clean': [] }, - }, - '@fluentui/scheme-utilities:code-style': { - roots: ['@fluentui/scheme-utilities:code-style'], - tasks: { - '@fluentui/scheme-utilities:code-style': { - id: '@fluentui/scheme-utilities:code-style', - target: { project: '@fluentui/scheme-utilities', target: 'code-style' }, - projectRoot: 'packages/scheme-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scheme-utilities:code-style': [] }, - }, - '@fluentui/scheme-utilities:start-test': { - roots: ['@fluentui/scheme-utilities:start-test'], - tasks: { - '@fluentui/scheme-utilities:start-test': { - id: '@fluentui/scheme-utilities:start-test', - target: { project: '@fluentui/scheme-utilities', target: 'start-test' }, - projectRoot: 'packages/scheme-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scheme-utilities:start-test': [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: {}, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/ts-minbar-test-react:type-check': { - roots: ['@fluentui/ts-minbar-test-react:type-check'], - tasks: { - '@fluentui/ts-minbar-test-react:type-check': { - id: '@fluentui/ts-minbar-test-react:type-check', - target: { project: '@fluentui/ts-minbar-test-react', target: 'type-check' }, - projectRoot: 'apps/ts-minbar-test-react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ts-minbar-test-react:type-check': [] }, - }, - '@fluentui/ts-minbar-test-react:test': { - roots: ['@fluentui/ts-minbar-test-react:test'], - tasks: { - '@fluentui/ts-minbar-test-react:test': { - id: '@fluentui/ts-minbar-test-react:test', - target: { project: '@fluentui/ts-minbar-test-react', target: 'test' }, - projectRoot: 'apps/ts-minbar-test-react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ts-minbar-test-react:test': [] }, - }, - '@fluentui/ts-minbar-test-react:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/ts-minbar-test-react:nx-release-publish': { - id: '@fluentui/ts-minbar-test-react:nx-release-publish', - target: { project: '@fluentui/ts-minbar-test-react', target: 'nx-release-publish' }, - projectRoot: 'apps/ts-minbar-test-react', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/ts-minbar-test-react:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - }, - }, - '@fluentui/react-icons-mdl2:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/react-icons-mdl2:build': { - id: '@fluentui/react-icons-mdl2:build', - target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - '@fluentui/react-icon-provider:build': { - id: '@fluentui/react-icon-provider:build', - target: { project: '@fluentui/react-icon-provider', target: 'build' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-icons-mdl2:build': [ - '@fluentui/react-icon-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/react-icons-mdl2:bundle': { - roots: ['@fluentui/react-icons-mdl2:bundle'], - tasks: { - '@fluentui/react-icons-mdl2:bundle': { - id: '@fluentui/react-icons-mdl2:bundle', - target: { project: '@fluentui/react-icons-mdl2', target: 'bundle' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2:bundle': [] }, - }, - '@fluentui/react-icons-mdl2:clean': { - roots: ['@fluentui/react-icons-mdl2:clean'], - tasks: { - '@fluentui/react-icons-mdl2:clean': { - id: '@fluentui/react-icons-mdl2:clean', - target: { project: '@fluentui/react-icons-mdl2', target: 'clean' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2:clean': [] }, - }, - '@fluentui/react-icons-mdl2:code-style': { - roots: ['@fluentui/react-icons-mdl2:code-style'], - tasks: { - '@fluentui/react-icons-mdl2:code-style': { - id: '@fluentui/react-icons-mdl2:code-style', - target: { project: '@fluentui/react-icons-mdl2', target: 'code-style' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2:code-style': [] }, - }, - '@fluentui/react-icons-mdl2:just': { - roots: ['@fluentui/react-icons-mdl2:just'], - tasks: { - '@fluentui/react-icons-mdl2:just': { - id: '@fluentui/react-icons-mdl2:just', - target: { project: '@fluentui/react-icons-mdl2', target: 'just' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2:just': [] }, - }, - '@fluentui/react-icons-mdl2:lint': { - roots: ['@fluentui/react-icons-mdl2:lint'], - tasks: { - '@fluentui/react-icons-mdl2:lint': { - id: '@fluentui/react-icons-mdl2:lint', - target: { project: '@fluentui/react-icons-mdl2', target: 'lint' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2:lint': [] }, - }, - '@fluentui/react-icons-mdl2:start-test': { - roots: ['@fluentui/react-icons-mdl2:start-test'], - tasks: { - '@fluentui/react-icons-mdl2:start-test': { - id: '@fluentui/react-icons-mdl2:start-test', - target: { project: '@fluentui/react-icons-mdl2', target: 'start-test' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2:start-test': [] }, - }, - '@fluentui/react-icons-mdl2:test': { - roots: ['@fluentui/react-icons-mdl2:test'], - tasks: { - '@fluentui/react-icons-mdl2:test': { - id: '@fluentui/react-icons-mdl2:test', - target: { project: '@fluentui/react-icons-mdl2', target: 'test' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2:test': [] }, - }, - '@fluentui/react-icons-mdl2:update-snapshots': { - roots: ['@fluentui/react-icons-mdl2:update-snapshots'], - tasks: { - '@fluentui/react-icons-mdl2:update-snapshots': { - id: '@fluentui/react-icons-mdl2:update-snapshots', - target: { project: '@fluentui/react-icons-mdl2', target: 'update-snapshots' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-icons-mdl2:update-snapshots': [] }, - }, - '@fluentui/react-icons-mdl2:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-icons-mdl2:nx-release-publish': { - id: '@fluentui/react-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: {}, - }, - '@fluentui/react-icon-provider:nx-release-publish': { - id: '@fluentui/react-icon-provider:nx-release-publish', - target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-icons-mdl2:nx-release-publish': [ - '@fluentui/react-icon-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icon-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-date-time:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/react-date-time:build': { - id: '@fluentui/react-date-time:build', - target: { project: '@fluentui/react-date-time', target: 'build' }, - projectRoot: 'packages/react-date-time', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-date-time:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - }, - }, - '@fluentui/react-date-time:bundle': { - roots: ['@fluentui/react-date-time:bundle'], - tasks: { - '@fluentui/react-date-time:bundle': { - id: '@fluentui/react-date-time:bundle', - target: { project: '@fluentui/react-date-time', target: 'bundle' }, - projectRoot: 'packages/react-date-time', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-date-time:bundle': [] }, - }, - '@fluentui/react-date-time:lint': { - roots: ['@fluentui/react-date-time:lint'], - tasks: { - '@fluentui/react-date-time:lint': { - id: '@fluentui/react-date-time:lint', - target: { project: '@fluentui/react-date-time', target: 'lint' }, - projectRoot: 'packages/react-date-time', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-date-time:lint': [] }, - }, - '@fluentui/react-date-time:just': { - roots: ['@fluentui/react-date-time:just'], - tasks: { - '@fluentui/react-date-time:just': { - id: '@fluentui/react-date-time:just', - target: { project: '@fluentui/react-date-time', target: 'just' }, - projectRoot: 'packages/react-date-time', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-date-time:just': [] }, - }, - '@fluentui/react-date-time:clean': { - roots: ['@fluentui/react-date-time:clean'], - tasks: { - '@fluentui/react-date-time:clean': { - id: '@fluentui/react-date-time:clean', - target: { project: '@fluentui/react-date-time', target: 'clean' }, - projectRoot: 'packages/react-date-time', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-date-time:clean': [] }, - }, - '@fluentui/react-date-time:code-style': { - roots: ['@fluentui/react-date-time:code-style'], - tasks: { - '@fluentui/react-date-time:code-style': { - id: '@fluentui/react-date-time:code-style', - target: { project: '@fluentui/react-date-time', target: 'code-style' }, - projectRoot: 'packages/react-date-time', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-date-time:code-style': [] }, - }, - '@fluentui/react-date-time:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-date-time:nx-release-publish': { - id: '@fluentui/react-date-time:nx-release-publish', - target: { project: '@fluentui/react-date-time', target: 'nx-release-publish' }, - projectRoot: 'packages/react-date-time', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-date-time:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/scripts-fluentui-publish:format': { - roots: ['@fluentui/scripts-fluentui-publish:format'], - tasks: { - '@fluentui/scripts-fluentui-publish:format': { - id: '@fluentui/scripts-fluentui-publish:format', - target: { project: '@fluentui/scripts-fluentui-publish', target: 'format' }, - projectRoot: 'scripts/fluentui-publish', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-fluentui-publish:format': [] }, - }, - '@fluentui/scripts-fluentui-publish:format:check': { - roots: ['@fluentui/scripts-fluentui-publish:format:check'], - tasks: { - '@fluentui/scripts-fluentui-publish:format:check': { - id: '@fluentui/scripts-fluentui-publish:format:check', - target: { project: '@fluentui/scripts-fluentui-publish', target: 'format:check' }, - projectRoot: 'scripts/fluentui-publish', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-fluentui-publish:format:check': [] }, - }, - '@fluentui/scripts-fluentui-publish:lint': { - roots: ['@fluentui/scripts-fluentui-publish:lint'], - tasks: { - '@fluentui/scripts-fluentui-publish:lint': { - id: '@fluentui/scripts-fluentui-publish:lint', - target: { project: '@fluentui/scripts-fluentui-publish', target: 'lint' }, - projectRoot: 'scripts/fluentui-publish', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-fluentui-publish:lint': [] }, - }, - '@fluentui/scripts-fluentui-publish:test': { - roots: ['@fluentui/scripts-fluentui-publish:test'], - tasks: { - '@fluentui/scripts-fluentui-publish:test': { - id: '@fluentui/scripts-fluentui-publish:test', - target: { project: '@fluentui/scripts-fluentui-publish', target: 'test' }, - projectRoot: 'scripts/fluentui-publish', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-fluentui-publish:test': [] }, - }, - '@fluentui/scripts-fluentui-publish:type-check': { - roots: ['@fluentui/scripts-fluentui-publish:type-check'], - tasks: { - '@fluentui/scripts-fluentui-publish:type-check': { - id: '@fluentui/scripts-fluentui-publish:type-check', - target: { project: '@fluentui/scripts-fluentui-publish', target: 'type-check' }, - projectRoot: 'scripts/fluentui-publish', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-fluentui-publish:type-check': [] }, - }, - '@fluentui/scripts-fluentui-publish:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-fluentui-publish:nx-release-publish': { - id: '@fluentui/scripts-fluentui-publish:nx-release-publish', - target: { project: '@fluentui/scripts-fluentui-publish', target: 'nx-release-publish' }, - projectRoot: 'scripts/fluentui-publish', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-fluentui-publish:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - }, - }, - '@fluentui/style-utilities:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/style-utilities:clean': { - roots: ['@fluentui/style-utilities:clean'], - tasks: { - '@fluentui/style-utilities:clean': { - id: '@fluentui/style-utilities:clean', - target: { project: '@fluentui/style-utilities', target: 'clean' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/style-utilities:clean': [] }, - }, - '@fluentui/style-utilities:code-style': { - roots: ['@fluentui/style-utilities:code-style'], - tasks: { - '@fluentui/style-utilities:code-style': { - id: '@fluentui/style-utilities:code-style', - target: { project: '@fluentui/style-utilities', target: 'code-style' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/style-utilities:code-style': [] }, - }, - '@fluentui/style-utilities:just': { - roots: ['@fluentui/style-utilities:just'], - tasks: { - '@fluentui/style-utilities:just': { - id: '@fluentui/style-utilities:just', - target: { project: '@fluentui/style-utilities', target: 'just' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/style-utilities:just': [] }, - }, - '@fluentui/style-utilities:lint': { - roots: ['@fluentui/style-utilities:lint'], - tasks: { - '@fluentui/style-utilities:lint': { - id: '@fluentui/style-utilities:lint', - target: { project: '@fluentui/style-utilities', target: 'lint' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/style-utilities:lint': [] }, - }, - '@fluentui/style-utilities:start-test': { - roots: ['@fluentui/style-utilities:start-test'], - tasks: { - '@fluentui/style-utilities:start-test': { - id: '@fluentui/style-utilities:start-test', - target: { project: '@fluentui/style-utilities', target: 'start-test' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/style-utilities:start-test': [] }, - }, - '@fluentui/style-utilities:test': { - roots: ['@fluentui/style-utilities:test'], - tasks: { - '@fluentui/style-utilities:test': { - id: '@fluentui/style-utilities:test', - target: { project: '@fluentui/style-utilities', target: 'test' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/style-utilities:test': [] }, - }, - '@fluentui/style-utilities:update-snapshots': { - roots: ['@fluentui/style-utilities:update-snapshots'], - tasks: { - '@fluentui/style-utilities:update-snapshots': { - id: '@fluentui/style-utilities:update-snapshots', - target: { project: '@fluentui/style-utilities', target: 'update-snapshots' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/style-utilities:update-snapshots': [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: {}, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/digest:build': { - roots: ['@fluentui/digest:build'], - tasks: { - '@fluentui/digest:build': { - id: '@fluentui/digest:build', - target: { project: '@fluentui/digest', target: 'build' }, - projectRoot: 'packages/fluentui/digest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/digest:build': [] }, - }, - '@fluentui/digest:clean': { - roots: ['@fluentui/digest:clean'], - tasks: { - '@fluentui/digest:clean': { - id: '@fluentui/digest:clean', - target: { project: '@fluentui/digest', target: 'clean' }, - projectRoot: 'packages/fluentui/digest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/digest:clean': [] }, - }, - '@fluentui/digest:test': { - roots: ['@fluentui/digest:test'], - tasks: { - '@fluentui/digest:test': { - id: '@fluentui/digest:test', - target: { project: '@fluentui/digest', target: 'test' }, - projectRoot: 'packages/fluentui/digest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/digest:test': [] }, - }, - '@fluentui/digest:nx-release-publish': { - roots: ['@fluentui/digest:nx-release-publish'], - tasks: { - '@fluentui/digest:nx-release-publish': { - id: '@fluentui/digest:nx-release-publish', - target: { project: '@fluentui/digest', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/digest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/digest:nx-release-publish': [] }, - }, - '@fluentui/styles:build': { - roots: ['@fluentui/styles:build'], - tasks: { - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/styles:build': [] }, - }, - '@fluentui/styles:clean': { - roots: ['@fluentui/styles:clean'], - tasks: { - '@fluentui/styles:clean': { - id: '@fluentui/styles:clean', - target: { project: '@fluentui/styles', target: 'clean' }, - projectRoot: 'packages/fluentui/styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/styles:clean': [] }, - }, - '@fluentui/styles:lint': { - roots: ['@fluentui/styles:lint'], - tasks: { - '@fluentui/styles:lint': { - id: '@fluentui/styles:lint', - target: { project: '@fluentui/styles', target: 'lint' }, - projectRoot: 'packages/fluentui/styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/styles:lint': [] }, - }, - '@fluentui/styles:lint:fix': { - roots: ['@fluentui/styles:lint:fix'], - tasks: { - '@fluentui/styles:lint:fix': { - id: '@fluentui/styles:lint:fix', - target: { project: '@fluentui/styles', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/styles:lint:fix': [] }, - }, - '@fluentui/styles:test': { - roots: ['@fluentui/styles:test'], - tasks: { - '@fluentui/styles:test': { - id: '@fluentui/styles:test', - target: { project: '@fluentui/styles', target: 'test' }, - projectRoot: 'packages/fluentui/styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/styles:test': [] }, - }, - '@fluentui/styles:test:watch': { - roots: ['@fluentui/styles:test:watch'], - tasks: { - '@fluentui/styles:test:watch': { - id: '@fluentui/styles:test:watch', - target: { project: '@fluentui/styles', target: 'test:watch' }, - projectRoot: 'packages/fluentui/styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/styles:test:watch': [] }, - }, - '@fluentui/styles:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/font-icons-mdl2:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: {}, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/font-icons-mdl2:clean': { - roots: ['@fluentui/font-icons-mdl2:clean'], - tasks: { - '@fluentui/font-icons-mdl2:clean': { - id: '@fluentui/font-icons-mdl2:clean', - target: { project: '@fluentui/font-icons-mdl2', target: 'clean' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/font-icons-mdl2:clean': [] }, - }, - '@fluentui/font-icons-mdl2:code-style': { - roots: ['@fluentui/font-icons-mdl2:code-style'], - tasks: { - '@fluentui/font-icons-mdl2:code-style': { - id: '@fluentui/font-icons-mdl2:code-style', - target: { project: '@fluentui/font-icons-mdl2', target: 'code-style' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/font-icons-mdl2:code-style': [] }, - }, - '@fluentui/font-icons-mdl2:just': { - roots: ['@fluentui/font-icons-mdl2:just'], - tasks: { - '@fluentui/font-icons-mdl2:just': { - id: '@fluentui/font-icons-mdl2:just', - target: { project: '@fluentui/font-icons-mdl2', target: 'just' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/font-icons-mdl2:just': [] }, - }, - '@fluentui/font-icons-mdl2:lint': { - roots: ['@fluentui/font-icons-mdl2:lint'], - tasks: { - '@fluentui/font-icons-mdl2:lint': { - id: '@fluentui/font-icons-mdl2:lint', - target: { project: '@fluentui/font-icons-mdl2', target: 'lint' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/font-icons-mdl2:lint': [] }, - }, - '@fluentui/font-icons-mdl2:test': { - roots: ['@fluentui/font-icons-mdl2:test'], - tasks: { - '@fluentui/font-icons-mdl2:test': { - id: '@fluentui/font-icons-mdl2:test', - target: { project: '@fluentui/font-icons-mdl2', target: 'test' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: {}, - }, - }, - dependencies: { '@fluentui/font-icons-mdl2:test': [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: {}, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/web-components:clean': { - roots: ['@fluentui/web-components:clean'], - tasks: { - '@fluentui/web-components:clean': { - id: '@fluentui/web-components:clean', - target: { project: '@fluentui/web-components', target: 'clean' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:clean': [] }, - }, - '@fluentui/web-components:doc': { - roots: ['@fluentui/web-components:doc'], - tasks: { - '@fluentui/web-components:doc': { - id: '@fluentui/web-components:doc', - target: { project: '@fluentui/web-components', target: 'doc' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:doc': [] }, - }, - '@fluentui/web-components:doc:ci': { - roots: ['@fluentui/web-components:doc:ci'], - tasks: { - '@fluentui/web-components:doc:ci': { - id: '@fluentui/web-components:doc:ci', - target: { project: '@fluentui/web-components', target: 'doc:ci' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:doc:ci': [] }, - }, - '@fluentui/web-components:build': { - roots: ['@fluentui/web-components:build'], - tasks: { - '@fluentui/web-components:build': { - id: '@fluentui/web-components:build', - target: { project: '@fluentui/web-components', target: 'build' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:build': [] }, - }, - '@fluentui/web-components:dev': { - roots: ['@fluentui/web-components:dev'], - tasks: { - '@fluentui/web-components:dev': { - id: '@fluentui/web-components:dev', - target: { project: '@fluentui/web-components', target: 'dev' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:dev': [] }, - }, - '@fluentui/web-components:tdd': { - roots: ['@fluentui/web-components:tdd'], - tasks: { - '@fluentui/web-components:tdd': { - id: '@fluentui/web-components:tdd', - target: { project: '@fluentui/web-components', target: 'tdd' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:tdd': [] }, - }, - '@fluentui/web-components:prepare': { - roots: ['@fluentui/web-components:prepare'], - tasks: { - '@fluentui/web-components:prepare': { - id: '@fluentui/web-components:prepare', - target: { project: '@fluentui/web-components', target: 'prepare' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:prepare': [] }, - }, - '@fluentui/web-components:lint': { - roots: ['@fluentui/web-components:lint'], - tasks: { - '@fluentui/web-components:lint': { - id: '@fluentui/web-components:lint', - target: { project: '@fluentui/web-components', target: 'lint' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:lint': [] }, - }, - '@fluentui/web-components:lint:fix': { - roots: ['@fluentui/web-components:lint:fix'], - tasks: { - '@fluentui/web-components:lint:fix': { - id: '@fluentui/web-components:lint:fix', - target: { project: '@fluentui/web-components', target: 'lint:fix' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:lint:fix': [] }, - }, - '@fluentui/web-components:format': { - roots: ['@fluentui/web-components:format'], - tasks: { - '@fluentui/web-components:format': { - id: '@fluentui/web-components:format', - target: { project: '@fluentui/web-components', target: 'format' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:format': [] }, - }, - '@fluentui/web-components:format:check': { - roots: ['@fluentui/web-components:format:check'], - tasks: { - '@fluentui/web-components:format:check': { - id: '@fluentui/web-components:format:check', - target: { project: '@fluentui/web-components', target: 'format:check' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:format:check': [] }, - }, - '@fluentui/web-components:code-style': { - roots: ['@fluentui/web-components:code-style'], - tasks: { - '@fluentui/web-components:code-style': { - id: '@fluentui/web-components:code-style', - target: { project: '@fluentui/web-components', target: 'code-style' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:code-style': [] }, - }, - '@fluentui/web-components:start': { - roots: ['@fluentui/web-components:start'], - tasks: { - '@fluentui/web-components:start': { - id: '@fluentui/web-components:start', - target: { project: '@fluentui/web-components', target: 'start' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:start': [] }, - }, - '@fluentui/web-components:start-storybook': { - roots: ['@fluentui/web-components:start-storybook'], - tasks: { - '@fluentui/web-components:start-storybook': { - id: '@fluentui/web-components:start-storybook', - target: { project: '@fluentui/web-components', target: 'start-storybook' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:start-storybook': [] }, - }, - '@fluentui/web-components:build-storybook': { - roots: ['@fluentui/web-components:build-storybook'], - tasks: { - '@fluentui/web-components:build-storybook': { - id: '@fluentui/web-components:build-storybook', - target: { project: '@fluentui/web-components', target: 'build-storybook' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:build-storybook': [] }, - }, - '@fluentui/web-components:test': { - roots: ['@fluentui/web-components:test'], - tasks: { - '@fluentui/web-components:test': { - id: '@fluentui/web-components:test', - target: { project: '@fluentui/web-components', target: 'test' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test': [] }, - }, - '@fluentui/web-components:test-node': { - roots: ['@fluentui/web-components:test-node'], - tasks: { - '@fluentui/web-components:test-node': { - id: '@fluentui/web-components:test-node', - target: { project: '@fluentui/web-components', target: 'test-node' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-node': [] }, - }, - '@fluentui/web-components:test-node:verbose': { - roots: ['@fluentui/web-components:test-node:verbose'], - tasks: { - '@fluentui/web-components:test-node:verbose': { - id: '@fluentui/web-components:test-node:verbose', - target: { project: '@fluentui/web-components', target: 'test-node:verbose' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-node:verbose': [] }, - }, - '@fluentui/web-components:test-chrome': { - roots: ['@fluentui/web-components:test-chrome'], - tasks: { - '@fluentui/web-components:test-chrome': { - id: '@fluentui/web-components:test-chrome', - target: { project: '@fluentui/web-components', target: 'test-chrome' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-chrome': [] }, - }, - '@fluentui/web-components:test-chrome:verbose': { - roots: ['@fluentui/web-components:test-chrome:verbose'], - tasks: { - '@fluentui/web-components:test-chrome:verbose': { - id: '@fluentui/web-components:test-chrome:verbose', - target: { project: '@fluentui/web-components', target: 'test-chrome:verbose' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-chrome:verbose': [] }, - }, - '@fluentui/web-components:test-chrome:watch': { - roots: ['@fluentui/web-components:test-chrome:watch'], - tasks: { - '@fluentui/web-components:test-chrome:watch': { - id: '@fluentui/web-components:test-chrome:watch', - target: { project: '@fluentui/web-components', target: 'test-chrome:watch' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-chrome:watch': [] }, - }, - '@fluentui/web-components:test-chrome:debugger': { - roots: ['@fluentui/web-components:test-chrome:debugger'], - tasks: { - '@fluentui/web-components:test-chrome:debugger': { - id: '@fluentui/web-components:test-chrome:debugger', - target: { project: '@fluentui/web-components', target: 'test-chrome:debugger' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-chrome:debugger': [] }, - }, - '@fluentui/web-components:test-chrome:verbose:watch': { - roots: ['@fluentui/web-components:test-chrome:verbose:watch'], - tasks: { - '@fluentui/web-components:test-chrome:verbose:watch': { - id: '@fluentui/web-components:test-chrome:verbose:watch', - target: { project: '@fluentui/web-components', target: 'test-chrome:verbose:watch' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-chrome:verbose:watch': [] }, - }, - '@fluentui/web-components:test-chrome:verbose:debugger': { - roots: ['@fluentui/web-components:test-chrome:verbose:debugger'], - tasks: { - '@fluentui/web-components:test-chrome:verbose:debugger': { - id: '@fluentui/web-components:test-chrome:verbose:debugger', - target: { project: '@fluentui/web-components', target: 'test-chrome:verbose:debugger' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-chrome:verbose:debugger': [] }, - }, - '@fluentui/web-components:test-firefox': { - roots: ['@fluentui/web-components:test-firefox'], - tasks: { - '@fluentui/web-components:test-firefox': { - id: '@fluentui/web-components:test-firefox', - target: { project: '@fluentui/web-components', target: 'test-firefox' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-firefox': [] }, - }, - '@fluentui/web-components:test-firefox:verbose': { - roots: ['@fluentui/web-components:test-firefox:verbose'], - tasks: { - '@fluentui/web-components:test-firefox:verbose': { - id: '@fluentui/web-components:test-firefox:verbose', - target: { project: '@fluentui/web-components', target: 'test-firefox:verbose' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:test-firefox:verbose': [] }, - }, - '@fluentui/web-components:nx-release-publish': { - roots: ['@fluentui/web-components:nx-release-publish'], - tasks: { - '@fluentui/web-components:nx-release-publish': { - id: '@fluentui/web-components:nx-release-publish', - target: { project: '@fluentui/web-components', target: 'nx-release-publish' }, - projectRoot: 'packages/web-components', - overrides: {}, - }, - }, - dependencies: { '@fluentui/web-components:nx-release-publish': [] }, - }, - '@fluentui/react-charting:build': { - roots: [ - '@fluentui/keyboard-key:build', - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - }, - }, - '@fluentui/react-charting:bundle': { - roots: ['@fluentui/react-charting:bundle'], - tasks: { - '@fluentui/react-charting:bundle': { - id: '@fluentui/react-charting:bundle', - target: { project: '@fluentui/react-charting', target: 'bundle' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:bundle': [] }, - }, - '@fluentui/react-charting:lint': { - roots: ['@fluentui/react-charting:lint'], - tasks: { - '@fluentui/react-charting:lint': { - id: '@fluentui/react-charting:lint', - target: { project: '@fluentui/react-charting', target: 'lint' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:lint': [] }, - }, - '@fluentui/react-charting:test': { - roots: ['@fluentui/react-charting:test'], - tasks: { - '@fluentui/react-charting:test': { - id: '@fluentui/react-charting:test', - target: { project: '@fluentui/react-charting', target: 'test' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:test': [] }, - }, - '@fluentui/react-charting:just': { - roots: ['@fluentui/react-charting:just'], - tasks: { - '@fluentui/react-charting:just': { - id: '@fluentui/react-charting:just', - target: { project: '@fluentui/react-charting', target: 'just' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:just': [] }, - }, - '@fluentui/react-charting:clean': { - roots: ['@fluentui/react-charting:clean'], - tasks: { - '@fluentui/react-charting:clean': { - id: '@fluentui/react-charting:clean', - target: { project: '@fluentui/react-charting', target: 'clean' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:clean': [] }, - }, - '@fluentui/react-charting:codepen': { - roots: ['@fluentui/react-charting:codepen'], - tasks: { - '@fluentui/react-charting:codepen': { - id: '@fluentui/react-charting:codepen', - target: { project: '@fluentui/react-charting', target: 'codepen' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:codepen': [] }, - }, - '@fluentui/react-charting:code-style': { - roots: ['@fluentui/react-charting:code-style'], - tasks: { - '@fluentui/react-charting:code-style': { - id: '@fluentui/react-charting:code-style', - target: { project: '@fluentui/react-charting', target: 'code-style' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:code-style': [] }, - }, - '@fluentui/react-charting:start': { - roots: ['@fluentui/react-charting:start'], - tasks: { - '@fluentui/react-charting:start': { - id: '@fluentui/react-charting:start', - target: { project: '@fluentui/react-charting', target: 'start' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:start': [] }, - }, - '@fluentui/react-charting:start:legacy': { - roots: ['@fluentui/react-charting:start:legacy'], - tasks: { - '@fluentui/react-charting:start:legacy': { - id: '@fluentui/react-charting:start:legacy', - target: { project: '@fluentui/react-charting', target: 'start:legacy' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:start:legacy': [] }, - }, - '@fluentui/react-charting:start-test': { - roots: ['@fluentui/react-charting:start-test'], - tasks: { - '@fluentui/react-charting:start-test': { - id: '@fluentui/react-charting:start-test', - target: { project: '@fluentui/react-charting', target: 'start-test' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:start-test': [] }, - }, - '@fluentui/react-charting:update-snapshots': { - roots: ['@fluentui/react-charting:update-snapshots'], - tasks: { - '@fluentui/react-charting:update-snapshots': { - id: '@fluentui/react-charting:update-snapshots', - target: { project: '@fluentui/react-charting', target: 'update-snapshots' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-charting:update-snapshots': [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: {}, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - }, - }, - '@fluentui/react-examples:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/monaco-editor:build', - ], - tasks: { - '@fluentui/react-examples:build': { - id: '@fluentui/react-examples:build', - target: { project: '@fluentui/react-examples', target: 'build' }, - projectRoot: 'packages/react-examples', - overrides: {}, - }, - '@fluentui/azure-themes:build': { - id: '@fluentui/azure-themes:build', - target: { project: '@fluentui/azure-themes', target: 'build' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-cards:build': { - id: '@fluentui/react-cards:build', - target: { project: '@fluentui/react-cards', target: 'build' }, - projectRoot: 'packages/react-cards', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:build': { - id: '@fluentui/react-docsite-components:build', - target: { project: '@fluentui/react-docsite-components', target: 'build' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:build': { - id: '@fluentui/public-docsite-setup:build', - target: { project: '@fluentui/public-docsite-setup', target: 'build' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:build': { - id: '@fluentui/react-monaco-editor:build', - target: { project: '@fluentui/react-monaco-editor', target: 'build' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:build': { - id: '@fluentui/monaco-editor:build', - target: { project: '@fluentui/monaco-editor', target: 'build' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:build': { - id: '@fluentui/react-experiments:build', - target: { project: '@fluentui/react-experiments', target: 'build' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-file-type-icons:build': { - id: '@fluentui/react-file-type-icons:build', - target: { project: '@fluentui/react-file-type-icons', target: 'build' }, - projectRoot: 'packages/react-file-type-icons', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:build': { - id: '@fluentui/react-icons-mdl2:build', - target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:build': { - id: '@fluentui/react-icon-provider:build', - target: { project: '@fluentui/react-icon-provider', target: 'build' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:build': { - id: '@fluentui/storybook:build', - target: { project: '@fluentui/storybook', target: 'build' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-examples:build': [ - '@fluentui/azure-themes:build', - '@fluentui/date-time-utilities:build', - '@fluentui/dom-utilities:build', - '@fluentui/example-data:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/foundation-legacy:build', - '@fluentui/merge-styles:build', - '@fluentui/react:build', - '@fluentui/react-cards:build', - '@fluentui/react-charting:build', - '@fluentui/react-docsite-components:build', - '@fluentui/react-experiments:build', - '@fluentui/react-file-type-icons:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-icons-mdl2:build', - '@fluentui/scheme-utilities:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/theme-samples:build', - '@fluentui/utilities:build', - '@fluentui/storybook:build', - ], - '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/react-cards:build': [ - '@fluentui/react:build', - '@fluentui/foundation-legacy:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - '@fluentui/react-docsite-components:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/common-styles:build', - ], - '@fluentui/public-docsite-setup:build': [], - '@fluentui/react-monaco-editor:build': [ - '@fluentui/react:build', - '@fluentui/example-data:build', - '@fluentui/monaco-editor:build', - '@fluentui/react-hooks:build', - '@fluentui/react-charting:build', - ], - '@fluentui/monaco-editor:build': [], - '@fluentui/react-experiments:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/react-icons-mdl2:build': [ - '@fluentui/react-icon-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/storybook:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/azure-themes:build', - '@fluentui/theme-samples:build', - ], - }, - }, - '@fluentui/react-examples:clean': { - roots: ['@fluentui/react-examples:clean'], - tasks: { - '@fluentui/react-examples:clean': { - id: '@fluentui/react-examples:clean', - target: { project: '@fluentui/react-examples', target: 'clean' }, - projectRoot: 'packages/react-examples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-examples:clean': [] }, - }, - '@fluentui/react-examples:code-style': { - roots: ['@fluentui/react-examples:code-style'], - tasks: { - '@fluentui/react-examples:code-style': { - id: '@fluentui/react-examples:code-style', - target: { project: '@fluentui/react-examples', target: 'code-style' }, - projectRoot: 'packages/react-examples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-examples:code-style': [] }, - }, - '@fluentui/react-examples:just': { - roots: ['@fluentui/react-examples:just'], - tasks: { - '@fluentui/react-examples:just': { - id: '@fluentui/react-examples:just', - target: { project: '@fluentui/react-examples', target: 'just' }, - projectRoot: 'packages/react-examples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-examples:just': [] }, - }, - '@fluentui/react-examples:lint': { - roots: ['@fluentui/react-examples:lint'], - tasks: { - '@fluentui/react-examples:lint': { - id: '@fluentui/react-examples:lint', - target: { project: '@fluentui/react-examples', target: 'lint' }, - projectRoot: 'packages/react-examples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-examples:lint': [] }, - }, - '@fluentui/react-examples:e2e': { - roots: ['@fluentui/react-examples:e2e'], - tasks: { - '@fluentui/react-examples:e2e': { - id: '@fluentui/react-examples:e2e', - target: { project: '@fluentui/react-examples', target: 'e2e' }, - projectRoot: 'packages/react-examples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-examples:e2e': [] }, - }, - '@fluentui/react-examples:e2e:local': { - roots: ['@fluentui/react-examples:e2e:local'], - tasks: { - '@fluentui/react-examples:e2e:local': { - id: '@fluentui/react-examples:e2e:local', - target: { project: '@fluentui/react-examples', target: 'e2e:local' }, - projectRoot: 'packages/react-examples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-examples:e2e:local': [] }, - }, - '@fluentui/react-examples:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-examples:nx-release-publish': { - id: '@fluentui/react-examples:nx-release-publish', - target: { project: '@fluentui/react-examples', target: 'nx-release-publish' }, - projectRoot: 'packages/react-examples', - overrides: {}, - }, - '@fluentui/azure-themes:nx-release-publish': { - id: '@fluentui/azure-themes:nx-release-publish', - target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-cards:nx-release-publish': { - id: '@fluentui/react-cards:nx-release-publish', - target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, - projectRoot: 'packages/react-cards', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:nx-release-publish': { - id: '@fluentui/react-docsite-components:nx-release-publish', - target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:nx-release-publish': { - id: '@fluentui/public-docsite-setup:nx-release-publish', - target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:nx-release-publish': { - id: '@fluentui/react-monaco-editor:nx-release-publish', - target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:nx-release-publish': { - id: '@fluentui/monaco-editor:nx-release-publish', - target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:nx-release-publish': { - id: '@fluentui/react-experiments:nx-release-publish', - target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-file-type-icons:nx-release-publish': { - id: '@fluentui/react-file-type-icons:nx-release-publish', - target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, - projectRoot: 'packages/react-file-type-icons', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:nx-release-publish': { - id: '@fluentui/react-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:nx-release-publish': { - id: '@fluentui/react-icon-provider:nx-release-publish', - target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:nx-release-publish': { - id: '@fluentui/storybook:nx-release-publish', - target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-examples:nx-release-publish': [ - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-cards:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/react-experiments:nx-release-publish', - '@fluentui/react-file-type-icons:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-icons-mdl2:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/storybook:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/azure-themes:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-cards:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-docsite-components:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/public-docsite-setup:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/public-docsite-setup:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-monaco-editor:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/monaco-editor:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/monaco-editor:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-experiments:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-file-type-icons:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-icons-mdl2:nx-release-publish': [ - '@fluentui/react-icon-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icon-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/storybook:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/test-utilities:build': { - roots: ['@fluentui/test-utilities:build'], - tasks: { - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/test-utilities:build': [] }, - }, - '@fluentui/test-utilities:clean': { - roots: ['@fluentui/test-utilities:clean'], - tasks: { - '@fluentui/test-utilities:clean': { - id: '@fluentui/test-utilities:clean', - target: { project: '@fluentui/test-utilities', target: 'clean' }, - projectRoot: 'packages/test-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/test-utilities:clean': [] }, - }, - '@fluentui/test-utilities:code-style': { - roots: ['@fluentui/test-utilities:code-style'], - tasks: { - '@fluentui/test-utilities:code-style': { - id: '@fluentui/test-utilities:code-style', - target: { project: '@fluentui/test-utilities', target: 'code-style' }, - projectRoot: 'packages/test-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/test-utilities:code-style': [] }, - }, - '@fluentui/test-utilities:just': { - roots: ['@fluentui/test-utilities:just'], - tasks: { - '@fluentui/test-utilities:just': { - id: '@fluentui/test-utilities:just', - target: { project: '@fluentui/test-utilities', target: 'just' }, - projectRoot: 'packages/test-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/test-utilities:just': [] }, - }, - '@fluentui/test-utilities:lint': { - roots: ['@fluentui/test-utilities:lint'], - tasks: { - '@fluentui/test-utilities:lint': { - id: '@fluentui/test-utilities:lint', - target: { project: '@fluentui/test-utilities', target: 'lint' }, - projectRoot: 'packages/test-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/test-utilities:lint': [] }, - }, - '@fluentui/test-utilities:start-test': { - roots: ['@fluentui/test-utilities:start-test'], - tasks: { - '@fluentui/test-utilities:start-test': { - id: '@fluentui/test-utilities:start-test', - target: { project: '@fluentui/test-utilities', target: 'start-test' }, - projectRoot: 'packages/test-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/test-utilities:start-test': [] }, - }, - '@fluentui/test-utilities:test': { - roots: ['@fluentui/test-utilities:test'], - tasks: { - '@fluentui/test-utilities:test': { - id: '@fluentui/test-utilities:test', - target: { project: '@fluentui/test-utilities', target: 'test' }, - projectRoot: 'packages/test-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/test-utilities:test': [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-package-manager:format': { - roots: ['@fluentui/scripts-package-manager:format'], - tasks: { - '@fluentui/scripts-package-manager:format': { - id: '@fluentui/scripts-package-manager:format', - target: { project: '@fluentui/scripts-package-manager', target: 'format' }, - projectRoot: 'scripts/package-manager', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-package-manager:format': [] }, - }, - '@fluentui/scripts-package-manager:format:check': { - roots: ['@fluentui/scripts-package-manager:format:check'], - tasks: { - '@fluentui/scripts-package-manager:format:check': { - id: '@fluentui/scripts-package-manager:format:check', - target: { project: '@fluentui/scripts-package-manager', target: 'format:check' }, - projectRoot: 'scripts/package-manager', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-package-manager:format:check': [] }, - }, - '@fluentui/scripts-package-manager:lint': { - roots: ['@fluentui/scripts-package-manager:lint'], - tasks: { - '@fluentui/scripts-package-manager:lint': { - id: '@fluentui/scripts-package-manager:lint', - target: { project: '@fluentui/scripts-package-manager', target: 'lint' }, - projectRoot: 'scripts/package-manager', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-package-manager:lint': [] }, - }, - '@fluentui/scripts-package-manager:test': { - roots: ['@fluentui/scripts-package-manager:test'], - tasks: { - '@fluentui/scripts-package-manager:test': { - id: '@fluentui/scripts-package-manager:test', - target: { project: '@fluentui/scripts-package-manager', target: 'test' }, - projectRoot: 'scripts/package-manager', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-package-manager:test': [] }, - }, - '@fluentui/scripts-package-manager:type-check': { - roots: ['@fluentui/scripts-package-manager:type-check'], - tasks: { - '@fluentui/scripts-package-manager:type-check': { - id: '@fluentui/scripts-package-manager:type-check', - target: { project: '@fluentui/scripts-package-manager', target: 'type-check' }, - projectRoot: 'scripts/package-manager', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-package-manager:type-check': [] }, - }, - '@fluentui/scripts-package-manager:nx-release-publish': { - roots: ['@fluentui/scripts-package-manager:nx-release-publish'], - tasks: { - '@fluentui/scripts-package-manager:nx-release-publish': { - id: '@fluentui/scripts-package-manager:nx-release-publish', - target: { project: '@fluentui/scripts-package-manager', target: 'nx-release-publish' }, - projectRoot: 'scripts/package-manager', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-package-manager:nx-release-publish': [] }, - }, - '@fluentui/state:build': { - roots: ['@fluentui/state:build'], - tasks: { - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: {}, - }, - }, - dependencies: { '@fluentui/state:build': [] }, - }, - '@fluentui/state:clean': { - roots: ['@fluentui/state:clean'], - tasks: { - '@fluentui/state:clean': { - id: '@fluentui/state:clean', - target: { project: '@fluentui/state', target: 'clean' }, - projectRoot: 'packages/fluentui/state', - overrides: {}, - }, - }, - dependencies: { '@fluentui/state:clean': [] }, - }, - '@fluentui/state:lint': { - roots: ['@fluentui/state:lint'], - tasks: { - '@fluentui/state:lint': { - id: '@fluentui/state:lint', - target: { project: '@fluentui/state', target: 'lint' }, - projectRoot: 'packages/fluentui/state', - overrides: {}, - }, - }, - dependencies: { '@fluentui/state:lint': [] }, - }, - '@fluentui/state:lint:fix': { - roots: ['@fluentui/state:lint:fix'], - tasks: { - '@fluentui/state:lint:fix': { - id: '@fluentui/state:lint:fix', - target: { project: '@fluentui/state', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/state', - overrides: {}, - }, - }, - dependencies: { '@fluentui/state:lint:fix': [] }, - }, - '@fluentui/state:test:watch': { - roots: ['@fluentui/state:test:watch'], - tasks: { - '@fluentui/state:test:watch': { - id: '@fluentui/state:test:watch', - target: { project: '@fluentui/state', target: 'test:watch' }, - projectRoot: 'packages/fluentui/state', - overrides: {}, - }, - }, - dependencies: { '@fluentui/state:test:watch': [] }, - }, - '@fluentui/state:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - }, - }, - '@fluentui/common-styles:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: {}, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/common-styles:clean': { - roots: ['@fluentui/common-styles:clean'], - tasks: { - '@fluentui/common-styles:clean': { - id: '@fluentui/common-styles:clean', - target: { project: '@fluentui/common-styles', target: 'clean' }, - projectRoot: 'packages/common-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/common-styles:clean': [] }, - }, - '@fluentui/common-styles:code-style': { - roots: ['@fluentui/common-styles:code-style'], - tasks: { - '@fluentui/common-styles:code-style': { - id: '@fluentui/common-styles:code-style', - target: { project: '@fluentui/common-styles', target: 'code-style' }, - projectRoot: 'packages/common-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/common-styles:code-style': [] }, - }, - '@fluentui/common-styles:just': { - roots: ['@fluentui/common-styles:just'], - tasks: { - '@fluentui/common-styles:just': { - id: '@fluentui/common-styles:just', - target: { project: '@fluentui/common-styles', target: 'just' }, - projectRoot: 'packages/common-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/common-styles:just': [] }, - }, - '@fluentui/common-styles:update-sass-theme-files': { - roots: ['@fluentui/common-styles:update-sass-theme-files'], - tasks: { - '@fluentui/common-styles:update-sass-theme-files': { - id: '@fluentui/common-styles:update-sass-theme-files', - target: { project: '@fluentui/common-styles', target: 'update-sass-theme-files' }, - projectRoot: 'packages/common-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/common-styles:update-sass-theme-files': [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: {}, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/theme-samples:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - }, - }, - '@fluentui/theme-samples:bundle': { - roots: ['@fluentui/theme-samples:bundle'], - tasks: { - '@fluentui/theme-samples:bundle': { - id: '@fluentui/theme-samples:bundle', - target: { project: '@fluentui/theme-samples', target: 'bundle' }, - projectRoot: 'packages/theme-samples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-samples:bundle': [] }, - }, - '@fluentui/theme-samples:lint': { - roots: ['@fluentui/theme-samples:lint'], - tasks: { - '@fluentui/theme-samples:lint': { - id: '@fluentui/theme-samples:lint', - target: { project: '@fluentui/theme-samples', target: 'lint' }, - projectRoot: 'packages/theme-samples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-samples:lint': [] }, - }, - '@fluentui/theme-samples:just': { - roots: ['@fluentui/theme-samples:just'], - tasks: { - '@fluentui/theme-samples:just': { - id: '@fluentui/theme-samples:just', - target: { project: '@fluentui/theme-samples', target: 'just' }, - projectRoot: 'packages/theme-samples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-samples:just': [] }, - }, - '@fluentui/theme-samples:code-style': { - roots: ['@fluentui/theme-samples:code-style'], - tasks: { - '@fluentui/theme-samples:code-style': { - id: '@fluentui/theme-samples:code-style', - target: { project: '@fluentui/theme-samples', target: 'code-style' }, - projectRoot: 'packages/theme-samples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-samples:code-style': [] }, - }, - '@fluentui/theme-samples:clean': { - roots: ['@fluentui/theme-samples:clean'], - tasks: { - '@fluentui/theme-samples:clean': { - id: '@fluentui/theme-samples:clean', - target: { project: '@fluentui/theme-samples', target: 'clean' }, - projectRoot: 'packages/theme-samples', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme-samples:clean': [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - }, - }, - '@fluentui/eslint-plugin:lint': { - roots: ['@fluentui/eslint-plugin:lint'], - tasks: { - '@fluentui/eslint-plugin:lint': { - id: '@fluentui/eslint-plugin:lint', - target: { project: '@fluentui/eslint-plugin', target: 'lint' }, - projectRoot: 'packages/eslint-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/eslint-plugin:lint': [] }, - }, - '@fluentui/eslint-plugin:test': { - roots: ['@fluentui/eslint-plugin:test'], - tasks: { - '@fluentui/eslint-plugin:test': { - id: '@fluentui/eslint-plugin:test', - target: { project: '@fluentui/eslint-plugin', target: 'test' }, - projectRoot: 'packages/eslint-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/eslint-plugin:test': [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish'], - tasks: { - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/eslint-plugin:nx-release-publish': [] }, - }, - '@fluentui/perf:perf:test': { - roots: ['@fluentui/perf:perf:test'], - tasks: { - '@fluentui/perf:perf:test': { - id: '@fluentui/perf:perf:test', - target: { project: '@fluentui/perf', target: 'perf:test' }, - projectRoot: 'packages/fluentui/perf', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf:perf:test': [] }, - }, - '@fluentui/perf:perf:test:debug': { - roots: ['@fluentui/perf:perf:test:debug'], - tasks: { - '@fluentui/perf:perf:test:debug': { - id: '@fluentui/perf:perf:test:debug', - target: { project: '@fluentui/perf', target: 'perf:test:debug' }, - projectRoot: 'packages/fluentui/perf', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf:perf:test:debug': [] }, - }, - '@fluentui/perf:lint': { - roots: ['@fluentui/perf:lint'], - tasks: { - '@fluentui/perf:lint': { - id: '@fluentui/perf:lint', - target: { project: '@fluentui/perf', target: 'lint' }, - projectRoot: 'packages/fluentui/perf', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf:lint': [] }, - }, - '@fluentui/perf:lint:fix': { - roots: ['@fluentui/perf:lint:fix'], - tasks: { - '@fluentui/perf:lint:fix': { - id: '@fluentui/perf:lint:fix', - target: { project: '@fluentui/perf', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/perf', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf:lint:fix': [] }, - }, - '@fluentui/perf:type-check': { - roots: ['@fluentui/perf:type-check'], - tasks: { - '@fluentui/perf:type-check': { - id: '@fluentui/perf:type-check', - target: { project: '@fluentui/perf', target: 'type-check' }, - projectRoot: 'packages/fluentui/perf', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf:type-check': [] }, - }, - '@fluentui/perf:nx-release-publish': { - roots: [ - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/perf:nx-release-publish': { - id: '@fluentui/perf:nx-release-publish', - target: { project: '@fluentui/perf', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/perf', - overrides: {}, - }, - '@fluentui/docs:nx-release-publish': { - id: '@fluentui/docs:nx-release-publish', - target: { project: '@fluentui/docs', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/ability-attributes:nx-release-publish': { - id: '@fluentui/ability-attributes:nx-release-publish', - target: { project: '@fluentui/ability-attributes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/ability-attributes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:nx-release-publish': { - id: '@fluentui/code-sandbox:nx-release-publish', - target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:nx-release-publish': { - id: '@fluentui/docs-components:nx-release-publish', - target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-builder:nx-release-publish': { - id: '@fluentui/react-builder:nx-release-publish', - target: { project: '@fluentui/react-builder', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-emotion-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-emotion-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-prototypes:nx-release-publish': { - id: '@fluentui/react-northstar-prototypes:nx-release-publish', - target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-telemetry:nx-release-publish': { - id: '@fluentui/react-telemetry:nx-release-publish', - target: { project: '@fluentui/react-telemetry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-telemetry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/perf:nx-release-publish': [ - '@fluentui/docs:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/docs:nx-release-publish': [ - '@fluentui/ability-attributes:nx-release-publish', - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-builder:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/react-northstar-emotion-renderer:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-prototypes:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-telemetry:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/ability-attributes:nx-release-publish': [ - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/code-sandbox:nx-release-publish': [ - '@fluentui/docs-components:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/docs-components:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-builder:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-emotion-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-prototypes:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-telemetry:nx-release-publish': [ - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/docs:build': { - roots: [ - '@fluentui/ability-attributes:build', - '@fluentui/accessibility:build', - '@fluentui/docs-components:build', - '@fluentui/set-version:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - tasks: { - '@fluentui/docs:build': { - id: '@fluentui/docs:build', - target: { project: '@fluentui/docs', target: 'build' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - '@fluentui/ability-attributes:build': { - id: '@fluentui/ability-attributes:build', - target: { project: '@fluentui/ability-attributes', target: 'build' }, - projectRoot: 'packages/fluentui/ability-attributes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:build': { - id: '@fluentui/code-sandbox:build', - target: { project: '@fluentui/code-sandbox', target: 'build' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:build': { - id: '@fluentui/docs-components:build', - target: { project: '@fluentui/docs-components', target: 'build' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-builder:build': { - id: '@fluentui/react-builder:build', - target: { project: '@fluentui/react-builder', target: 'build' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-emotion-renderer:build': { - id: '@fluentui/react-northstar-emotion-renderer:build', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-prototypes:build': { - id: '@fluentui/react-northstar-prototypes:build', - target: { project: '@fluentui/react-northstar-prototypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-telemetry:build': { - id: '@fluentui/react-telemetry:build', - target: { project: '@fluentui/react-telemetry', target: 'build' }, - projectRoot: 'packages/fluentui/react-telemetry', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/docs:build': [ - '@fluentui/ability-attributes:build', - '@fluentui/accessibility:build', - '@fluentui/code-sandbox:build', - '@fluentui/docs-components:build', - '@fluentui/react-bindings:build', - '@fluentui/react-builder:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar:build', - '@fluentui/react-northstar-emotion-renderer:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-prototypes:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-telemetry:build', - '@fluentui/styles:build', - ], - '@fluentui/ability-attributes:build': [], - '@fluentui/accessibility:build': [], - '@fluentui/code-sandbox:build': ['@fluentui/docs-components:build', '@fluentui/react-northstar:build'], - '@fluentui/docs-components:build': [], - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/react-proptypes:build': [], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-builder:build': [ - '@fluentui/accessibility:build', - '@fluentui/code-sandbox:build', - '@fluentui/docs-components:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar:build', - ], - '@fluentui/react-northstar-emotion-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-prototypes:build': [ - '@fluentui/accessibility:build', - '@fluentui/code-sandbox:build', - '@fluentui/docs-components:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar:build', - ], - '@fluentui/react-telemetry:build': [ - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - ], - }, - }, - '@fluentui/docs:prebuild:storybook': { - roots: ['@fluentui/docs:prebuild:storybook'], - tasks: { - '@fluentui/docs:prebuild:storybook': { - id: '@fluentui/docs:prebuild:storybook', - target: { project: '@fluentui/docs', target: 'prebuild:storybook' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:prebuild:storybook': [] }, - }, - '@fluentui/docs:build:storybook': { - roots: ['@fluentui/docs:build:storybook'], - tasks: { - '@fluentui/docs:build:storybook': { - id: '@fluentui/docs:build:storybook', - target: { project: '@fluentui/docs', target: 'build:storybook' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:build:storybook': [] }, - }, - '@fluentui/docs:lint': { - roots: ['@fluentui/docs:lint'], - tasks: { - '@fluentui/docs:lint': { - id: '@fluentui/docs:lint', - target: { project: '@fluentui/docs', target: 'lint' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:lint': [] }, - }, - '@fluentui/docs:lint:fix': { - roots: ['@fluentui/docs:lint:fix'], - tasks: { - '@fluentui/docs:lint:fix': { - id: '@fluentui/docs:lint:fix', - target: { project: '@fluentui/docs', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:lint:fix': [] }, - }, - '@fluentui/docs:start': { - roots: ['@fluentui/docs:start'], - tasks: { - '@fluentui/docs:start': { - id: '@fluentui/docs:start', - target: { project: '@fluentui/docs', target: 'start' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:start': [] }, - }, - '@fluentui/docs:start:profile': { - roots: ['@fluentui/docs:start:profile'], - tasks: { - '@fluentui/docs:start:profile': { - id: '@fluentui/docs:start:profile', - target: { project: '@fluentui/docs', target: 'start:profile' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:start:profile': [] }, - }, - '@fluentui/docs:prestart:storybook': { - roots: ['@fluentui/docs:prestart:storybook'], - tasks: { - '@fluentui/docs:prestart:storybook': { - id: '@fluentui/docs:prestart:storybook', - target: { project: '@fluentui/docs', target: 'prestart:storybook' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:prestart:storybook': [] }, - }, - '@fluentui/docs:start:storybook': { - roots: ['@fluentui/docs:start:storybook'], - tasks: { - '@fluentui/docs:start:storybook': { - id: '@fluentui/docs:start:storybook', - target: { project: '@fluentui/docs', target: 'start:storybook' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:start:storybook': [] }, - }, - '@fluentui/docs:vr:build': { - roots: ['@fluentui/docs:vr:build'], - tasks: { - '@fluentui/docs:vr:build': { - id: '@fluentui/docs:vr:build', - target: { project: '@fluentui/docs', target: 'vr:build' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:vr:build': [] }, - }, - '@fluentui/docs:vr:test': { - roots: ['@fluentui/docs:vr:test'], - tasks: { - '@fluentui/docs:vr:test': { - id: '@fluentui/docs:vr:test', - target: { project: '@fluentui/docs', target: 'vr:test' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/docs:vr:test': [] }, - }, - '@fluentui/docs:nx-release-publish': { - roots: [ - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/docs:nx-release-publish': { - id: '@fluentui/docs:nx-release-publish', - target: { project: '@fluentui/docs', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs', - overrides: {}, - }, - '@fluentui/ability-attributes:nx-release-publish': { - id: '@fluentui/ability-attributes:nx-release-publish', - target: { project: '@fluentui/ability-attributes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/ability-attributes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:nx-release-publish': { - id: '@fluentui/code-sandbox:nx-release-publish', - target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:nx-release-publish': { - id: '@fluentui/docs-components:nx-release-publish', - target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-builder:nx-release-publish': { - id: '@fluentui/react-builder:nx-release-publish', - target: { project: '@fluentui/react-builder', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-builder', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-emotion-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-emotion-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-emotion-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-emotion-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-prototypes:nx-release-publish': { - id: '@fluentui/react-northstar-prototypes:nx-release-publish', - target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-telemetry:nx-release-publish': { - id: '@fluentui/react-telemetry:nx-release-publish', - target: { project: '@fluentui/react-telemetry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-telemetry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/docs:nx-release-publish': [ - '@fluentui/ability-attributes:nx-release-publish', - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-builder:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/react-northstar-emotion-renderer:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-prototypes:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-telemetry:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/ability-attributes:nx-release-publish': [ - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/code-sandbox:nx-release-publish': [ - '@fluentui/docs-components:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/docs-components:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-builder:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-emotion-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-prototypes:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-telemetry:nx-release-publish': [ - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/monaco-editor:build': { - roots: ['@fluentui/monaco-editor:build'], - tasks: { - '@fluentui/monaco-editor:build': { - id: '@fluentui/monaco-editor:build', - target: { project: '@fluentui/monaco-editor', target: 'build' }, - projectRoot: 'packages/monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/monaco-editor:build': [] }, - }, - '@fluentui/monaco-editor:clean': { - roots: ['@fluentui/monaco-editor:clean'], - tasks: { - '@fluentui/monaco-editor:clean': { - id: '@fluentui/monaco-editor:clean', - target: { project: '@fluentui/monaco-editor', target: 'clean' }, - projectRoot: 'packages/monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/monaco-editor:clean': [] }, - }, - '@fluentui/monaco-editor:lint': { - roots: ['@fluentui/monaco-editor:lint'], - tasks: { - '@fluentui/monaco-editor:lint': { - id: '@fluentui/monaco-editor:lint', - target: { project: '@fluentui/monaco-editor', target: 'lint' }, - projectRoot: 'packages/monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/monaco-editor:lint': [] }, - }, - '@fluentui/monaco-editor:just': { - roots: ['@fluentui/monaco-editor:just'], - tasks: { - '@fluentui/monaco-editor:just': { - id: '@fluentui/monaco-editor:just', - target: { project: '@fluentui/monaco-editor', target: 'just' }, - projectRoot: 'packages/monaco-editor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/monaco-editor:just': [] }, - }, - '@fluentui/monaco-editor:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/monaco-editor:nx-release-publish': { - id: '@fluentui/monaco-editor:nx-release-publish', - target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/monaco-editor', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/monaco-editor:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/dom-utilities:build': { - roots: ['@fluentui/set-version:build'], - tasks: { - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: {}, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - }, - }, - '@fluentui/dom-utilities:clean': { - roots: ['@fluentui/dom-utilities:clean'], - tasks: { - '@fluentui/dom-utilities:clean': { - id: '@fluentui/dom-utilities:clean', - target: { project: '@fluentui/dom-utilities', target: 'clean' }, - projectRoot: 'packages/dom-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/dom-utilities:clean': [] }, - }, - '@fluentui/dom-utilities:code-style': { - roots: ['@fluentui/dom-utilities:code-style'], - tasks: { - '@fluentui/dom-utilities:code-style': { - id: '@fluentui/dom-utilities:code-style', - target: { project: '@fluentui/dom-utilities', target: 'code-style' }, - projectRoot: 'packages/dom-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/dom-utilities:code-style': [] }, - }, - '@fluentui/dom-utilities:just': { - roots: ['@fluentui/dom-utilities:just'], - tasks: { - '@fluentui/dom-utilities:just': { - id: '@fluentui/dom-utilities:just', - target: { project: '@fluentui/dom-utilities', target: 'just' }, - projectRoot: 'packages/dom-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/dom-utilities:just': [] }, - }, - '@fluentui/dom-utilities:lint': { - roots: ['@fluentui/dom-utilities:lint'], - tasks: { - '@fluentui/dom-utilities:lint': { - id: '@fluentui/dom-utilities:lint', - target: { project: '@fluentui/dom-utilities', target: 'lint' }, - projectRoot: 'packages/dom-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/dom-utilities:lint': [] }, - }, - '@fluentui/dom-utilities:start-test': { - roots: ['@fluentui/dom-utilities:start-test'], - tasks: { - '@fluentui/dom-utilities:start-test': { - id: '@fluentui/dom-utilities:start-test', - target: { project: '@fluentui/dom-utilities', target: 'start-test' }, - projectRoot: 'packages/dom-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/dom-utilities:start-test': [] }, - }, - '@fluentui/dom-utilities:test': { - roots: ['@fluentui/dom-utilities:test'], - tasks: { - '@fluentui/dom-utilities:test': { - id: '@fluentui/dom-utilities:test', - target: { project: '@fluentui/dom-utilities', target: 'test' }, - projectRoot: 'packages/dom-utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/dom-utilities:test': [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: {}, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/public-docsite-v9:build': { - roots: [ - '@fluentui/keyboard-keys:build', - '@fluentui/tokens:build', - '@fluentui/react-conformance:build', - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/priority-overflow:build', - '@fluentui/accessibility:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/styles:build', - '@fluentui/state:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-proptypes:build', - '@fluentui/babel-preset-storybook-full-source:build', - ], - tasks: { - '@fluentui/public-docsite-v9:build': { - id: '@fluentui/public-docsite-v9:build', - target: { project: '@fluentui/public-docsite-v9', target: 'build' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - '@fluentui/react-calendar-compat:build': { - id: '@fluentui/react-calendar-compat:build', - target: { project: '@fluentui/react-calendar-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:build': { - id: '@fluentui/keyboard-keys:build', - target: { project: '@fluentui/keyboard-keys', target: 'build' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:build': { - id: '@fluentui/react-jsx-runtime:build', - target: { project: '@fluentui/react-jsx-runtime', target: 'build' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:build': { - id: '@fluentui/react-utilities:build', - target: { project: '@fluentui/react-utilities', target: 'build' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:build': { - id: '@fluentui/react-shared-contexts:build', - target: { project: '@fluentui/react-shared-contexts', target: 'build' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:build': { - id: '@fluentui/react-theme:build', - target: { project: '@fluentui/react-theme', target: 'build' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:build': { - id: '@fluentui/react-conformance-griffel:build', - target: { project: '@fluentui/react-conformance-griffel', target: 'build' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:build': { - id: '@fluentui/react-tabster:build', - target: { project: '@fluentui/react-tabster', target: 'build' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-datepicker-compat:build': { - id: '@fluentui/react-datepicker-compat:build', - target: { project: '@fluentui/react-datepicker-compat', target: 'build' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:build': { - id: '@fluentui/react-field:build', - target: { project: '@fluentui/react-field', target: 'build' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:build': { - id: '@fluentui/react-context-selector:build', - target: { project: '@fluentui/react-context-selector', target: 'build' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:build': { - id: '@fluentui/react-label:build', - target: { project: '@fluentui/react-label', target: 'build' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:build': { - id: '@fluentui/react-input:build', - target: { project: '@fluentui/react-input', target: 'build' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:build': { - id: '@fluentui/react-text:build', - target: { project: '@fluentui/react-text', target: 'build' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:build': { - id: '@fluentui/react-popover:build', - target: { project: '@fluentui/react-popover', target: 'build' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:build': { - id: '@fluentui/react-aria:build', - target: { project: '@fluentui/react-aria', target: 'build' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:build': { - id: '@fluentui/react-portal:build', - target: { project: '@fluentui/react-portal', target: 'build' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:build': { - id: '@fluentui/react-positioning:build', - target: { project: '@fluentui/react-positioning', target: 'build' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-migration-v8-v9:build': { - id: '@fluentui/react-migration-v8-v9:build', - target: { project: '@fluentui/react-migration-v8-v9', target: 'build' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/fluent2-theme:build': { - id: '@fluentui/fluent2-theme:build', - target: { project: '@fluentui/fluent2-theme', target: 'build' }, - projectRoot: 'packages/fluent2-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:build': { - id: '@fluentui/react-components:build', - target: { project: '@fluentui/react-components', target: 'build' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:build': { - id: '@fluentui/react-accordion:build', - target: { project: '@fluentui/react-accordion', target: 'build' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:build': { - id: '@fluentui/react-alert:build', - target: { project: '@fluentui/react-alert', target: 'build' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:build': { - id: '@fluentui/react-avatar:build', - target: { project: '@fluentui/react-avatar', target: 'build' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:build': { - id: '@fluentui/react-badge:build', - target: { project: '@fluentui/react-badge', target: 'build' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:build': { - id: '@fluentui/react-tooltip:build', - target: { project: '@fluentui/react-tooltip', target: 'build' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:build': { - id: '@fluentui/react-button:build', - target: { project: '@fluentui/react-button', target: 'build' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:build': { - id: '@fluentui/react-card:build', - target: { project: '@fluentui/react-card', target: 'build' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:build': { - id: '@fluentui/react-checkbox:build', - target: { project: '@fluentui/react-checkbox', target: 'build' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:build': { - id: '@fluentui/react-combobox:build', - target: { project: '@fluentui/react-combobox', target: 'build' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:build': { - id: '@fluentui/react-dialog:build', - target: { project: '@fluentui/react-dialog', target: 'build' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:build': { - id: '@fluentui/react-divider:build', - target: { project: '@fluentui/react-divider', target: 'build' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:build': { - id: '@fluentui/react-drawer:build', - target: { project: '@fluentui/react-drawer', target: 'build' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:build': { - id: '@fluentui/react-motion-preview:build', - target: { project: '@fluentui/react-motion-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:build': { - id: '@fluentui/react-image:build', - target: { project: '@fluentui/react-image', target: 'build' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:build': { - id: '@fluentui/react-infobutton:build', - target: { project: '@fluentui/react-infobutton', target: 'build' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:build': { - id: '@fluentui/react-infolabel:build', - target: { project: '@fluentui/react-infolabel', target: 'build' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:build': { - id: '@fluentui/react-link:build', - target: { project: '@fluentui/react-link', target: 'build' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:build': { - id: '@fluentui/react-menu:build', - target: { project: '@fluentui/react-menu', target: 'build' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:build': { - id: '@fluentui/react-overflow:build', - target: { project: '@fluentui/react-overflow', target: 'build' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:build': { - id: '@fluentui/priority-overflow:build', - target: { project: '@fluentui/priority-overflow', target: 'build' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:build': { - id: '@fluentui/react-persona:build', - target: { project: '@fluentui/react-persona', target: 'build' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:build': { - id: '@fluentui/react-progress:build', - target: { project: '@fluentui/react-progress', target: 'build' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:build': { - id: '@fluentui/react-provider:build', - target: { project: '@fluentui/react-provider', target: 'build' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:build': { - id: '@fluentui/react-radio:build', - target: { project: '@fluentui/react-radio', target: 'build' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:build': { - id: '@fluentui/react-select:build', - target: { project: '@fluentui/react-select', target: 'build' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:build': { - id: '@fluentui/react-skeleton:build', - target: { project: '@fluentui/react-skeleton', target: 'build' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:build': { - id: '@fluentui/react-slider:build', - target: { project: '@fluentui/react-slider', target: 'build' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:build': { - id: '@fluentui/react-spinbutton:build', - target: { project: '@fluentui/react-spinbutton', target: 'build' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:build': { - id: '@fluentui/react-spinner:build', - target: { project: '@fluentui/react-spinner', target: 'build' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:build': { - id: '@fluentui/react-switch:build', - target: { project: '@fluentui/react-switch', target: 'build' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:build': { - id: '@fluentui/react-table:build', - target: { project: '@fluentui/react-table', target: 'build' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:build': { - id: '@fluentui/react-tabs:build', - target: { project: '@fluentui/react-tabs', target: 'build' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:build': { - id: '@fluentui/react-tags:build', - target: { project: '@fluentui/react-tags', target: 'build' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:build': { - id: '@fluentui/react-textarea:build', - target: { project: '@fluentui/react-textarea', target: 'build' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:build': { - id: '@fluentui/react-toast:build', - target: { project: '@fluentui/react-toast', target: 'build' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:build': { - id: '@fluentui/react-toolbar:build', - target: { project: '@fluentui/react-toolbar', target: 'build' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:build': { - id: '@fluentui/react-virtualizer:build', - target: { project: '@fluentui/react-virtualizer', target: 'build' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:build': { - id: '@fluentui/react-tree:build', - target: { project: '@fluentui/react-tree', target: 'build' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:build': { - id: '@fluentui/react-message-bar:build', - target: { project: '@fluentui/react-message-bar', target: 'build' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:build': { - id: '@fluentui/react-breadcrumb:build', - target: { project: '@fluentui/react-breadcrumb', target: 'build' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-migration-v0-v9:build': { - id: '@fluentui/react-migration-v0-v9:build', - target: { project: '@fluentui/react-migration-v0-v9', target: 'build' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:build': { - id: '@fluentui/react-northstar:build', - target: { project: '@fluentui/react-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:build': { - id: '@fluentui/accessibility:build', - target: { project: '@fluentui/accessibility', target: 'build' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:build': { - id: '@fluentui/react-bindings:build', - target: { project: '@fluentui/react-bindings', target: 'build' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:build': { - id: '@fluentui/react-component-event-listener:build', - target: { project: '@fluentui/react-component-event-listener', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:build': { - id: '@fluentui/react-component-ref:build', - target: { project: '@fluentui/react-component-ref', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:build': { - id: '@fluentui/react-northstar-fela-renderer:build', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:build': { - id: '@fluentui/react-northstar-styles-renderer:build', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'build' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:build': { - id: '@fluentui/styles:build', - target: { project: '@fluentui/styles', target: 'build' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:build': { - id: '@fluentui/state:build', - target: { project: '@fluentui/state', target: 'build' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:build': { - id: '@fluentui/react-component-nesting-registry:build', - target: { project: '@fluentui/react-component-nesting-registry', target: 'build' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:build': { - id: '@fluentui/react-icons-northstar:build', - target: { project: '@fluentui/react-icons-northstar', target: 'build' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:build': { - id: '@fluentui/react-proptypes:build', - target: { project: '@fluentui/react-proptypes', target: 'build' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon:build': { - id: '@fluentui/react-storybook-addon:build', - target: { project: '@fluentui/react-storybook-addon', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:build': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:build', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'build' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/babel-preset-storybook-full-source:build': { - id: '@fluentui/babel-preset-storybook-full-source:build', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'build' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-designer:build': { - id: '@fluentui/theme-designer:build', - target: { project: '@fluentui/theme-designer', target: 'build' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-rating-preview:build': { - id: '@fluentui/react-rating-preview:build', - target: { project: '@fluentui/react-rating-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-search-preview:build': { - id: '@fluentui/react-search-preview:build', - target: { project: '@fluentui/react-search-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-teaching-popover-preview:build': { - id: '@fluentui/react-teaching-popover-preview:build', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-timepicker-compat-preview:build': { - id: '@fluentui/react-timepicker-compat-preview:build', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'build' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/public-docsite-v9:build': [ - '@fluentui/react-calendar-compat:build', - '@fluentui/react-datepicker-compat:build', - '@fluentui/react-migration-v8-v9:build', - '@fluentui/react-migration-v0-v9:build', - '@fluentui/react:build', - '@fluentui/react-northstar:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-components:build', - '@fluentui/react-storybook-addon:build', - '@fluentui/react-storybook-addon-export-to-sandbox:build', - '@fluentui/theme-designer:build', - '@fluentui/react-rating-preview:build', - '@fluentui/react-search-preview:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-teaching-popover-preview:build', - '@fluentui/react-timepicker-compat-preview:build', - ], - '@fluentui/react-calendar-compat:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/keyboard-keys:build': [], - '@fluentui/react-jsx-runtime:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-utilities:build': ['@fluentui/keyboard-keys:build', '@fluentui/react-shared-contexts:build'], - '@fluentui/react-shared-contexts:build': ['@fluentui/react-theme:build'], - '@fluentui/react-theme:build': ['@fluentui/tokens:build'], - '@fluentui/tokens:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-conformance-griffel:build': ['@fluentui/react-conformance:build'], - '@fluentui/react-tabster:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-datepicker-compat:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-calendar-compat:build', - '@fluentui/react-field:build', - '@fluentui/react-input:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-popover:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-field:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-context-selector:build': ['@fluentui/react-utilities:build'], - '@fluentui/react-label:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-input:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-text:build', - ], - '@fluentui/react-text:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-popover:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-aria:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-portal:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/react-positioning:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-migration-v8-v9:build': [ - '@fluentui/fluent2-theme:build', - '@fluentui/react:build', - '@fluentui/react-components:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/fluent2-theme:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/react-components:build': [ - '@fluentui/react-accordion:build', - '@fluentui/react-alert:build', - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-button:build', - '@fluentui/react-card:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-combobox:build', - '@fluentui/react-dialog:build', - '@fluentui/react-divider:build', - '@fluentui/react-drawer:build', - '@fluentui/react-field:build', - '@fluentui/react-image:build', - '@fluentui/react-infobutton:build', - '@fluentui/react-infolabel:build', - '@fluentui/react-input:build', - '@fluentui/react-label:build', - '@fluentui/react-link:build', - '@fluentui/react-menu:build', - '@fluentui/react-overflow:build', - '@fluentui/react-persona:build', - '@fluentui/react-portal:build', - '@fluentui/react-popover:build', - '@fluentui/react-positioning:build', - '@fluentui/react-progress:build', - '@fluentui/react-provider:build', - '@fluentui/react-radio:build', - '@fluentui/react-select:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-skeleton:build', - '@fluentui/react-slider:build', - '@fluentui/react-spinbutton:build', - '@fluentui/react-spinner:build', - '@fluentui/react-switch:build', - '@fluentui/react-table:build', - '@fluentui/react-tabs:build', - '@fluentui/react-tabster:build', - '@fluentui/react-tags:build', - '@fluentui/react-textarea:build', - '@fluentui/react-theme:build', - '@fluentui/react-toast:build', - '@fluentui/react-toolbar:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-text:build', - '@fluentui/react-virtualizer:build', - '@fluentui/react-tree:build', - '@fluentui/react-message-bar:build', - '@fluentui/react-breadcrumb:build', - ], - '@fluentui/react-accordion:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-alert:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-avatar:build': [ - '@fluentui/react-badge:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-popover:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-tooltip:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-badge:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tooltip:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-button:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/a11y-testing:build': [], - '@fluentui/react-card:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-conformance:build', - '@fluentui/react-button:build', - ], - '@fluentui/react-checkbox:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-combobox:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-dialog:build': [ - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/keyboard-keys:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-aria:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-portal:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-divider:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-drawer:build': [ - '@fluentui/react-dialog:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-motion-preview:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-motion-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-image:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infobutton:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-infolabel:build': [ - '@fluentui/react-label:build', - '@fluentui/react-popover:build', - '@fluentui/react-tabster:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-link:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-menu:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-portal:build', - '@fluentui/react-positioning:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-overflow:build': [ - '@fluentui/priority-overflow:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/priority-overflow:build': [], - '@fluentui/react-persona:build': [ - '@fluentui/react-avatar:build', - '@fluentui/react-badge:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-progress:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-provider:build': [ - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-radio:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-select:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-skeleton:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-slider:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinbutton:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - '@fluentui/react-label:build', - ], - '@fluentui/react-spinner:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-switch:build': [ - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-label:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-table:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tabs:build': [ - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tags:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-textarea:build': [ - '@fluentui/react-field:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toast:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-portal:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-toolbar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-divider:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-virtualizer:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-tree:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-aria:build', - '@fluentui/react-avatar:build', - '@fluentui/react-button:build', - '@fluentui/react-checkbox:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-radio:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-message-bar:build': [ - '@fluentui/react-button:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-breadcrumb:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-button:build', - '@fluentui/react-link:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-migration-v0-v9:build': [ - '@fluentui/react-aria:build', - '@fluentui/react-components:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-northstar:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-tabster:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-bindings:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-nesting-registry:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-icons-northstar:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-proptypes:build', - '@fluentui/state:build', - '@fluentui/styles:build', - '@fluentui/a11y-testing:build', - '@fluentui/react-conformance:build', - ], - '@fluentui/accessibility:build': [], - '@fluentui/react-bindings:build': [ - '@fluentui/accessibility:build', - '@fluentui/dom-utilities:build', - '@fluentui/react-component-event-listener:build', - '@fluentui/react-component-ref:build', - '@fluentui/react-northstar-fela-renderer:build', - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/state:build', - '@fluentui/styles:build', - ], - '@fluentui/react-component-event-listener:build': [], - '@fluentui/react-component-ref:build': [], - '@fluentui/react-northstar-fela-renderer:build': [ - '@fluentui/react-northstar-styles-renderer:build', - '@fluentui/styles:build', - ], - '@fluentui/react-northstar-styles-renderer:build': ['@fluentui/styles:build'], - '@fluentui/styles:build': [], - '@fluentui/state:build': [], - '@fluentui/react-component-nesting-registry:build': [], - '@fluentui/react-icons-northstar:build': [ - '@fluentui/accessibility:build', - '@fluentui/react-bindings:build', - '@fluentui/styles:build', - ], - '@fluentui/react-proptypes:build': [], - '@fluentui/react-storybook-addon:build': ['@fluentui/react-theme:build', '@fluentui/react-provider:build'], - '@fluentui/react-storybook-addon-export-to-sandbox:build': [ - '@fluentui/babel-preset-storybook-full-source:build', - ], - '@fluentui/babel-preset-storybook-full-source:build': [], - '@fluentui/theme-designer:build': [ - '@fluentui/react-alert:build', - '@fluentui/react-components:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-storybook-addon-export-to-sandbox:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - ], - '@fluentui/react-rating-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-tabster:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-search-preview:build': [ - '@fluentui/react-input:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-teaching-popover-preview:build': [ - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-popover:build', - '@fluentui/react-button:build', - '@fluentui/react-tabster:build', - '@fluentui/react-aria:build', - '@fluentui/react-context-selector:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - '@fluentui/react-timepicker-compat-preview:build': [ - '@fluentui/keyboard-keys:build', - '@fluentui/react-combobox:build', - '@fluentui/react-field:build', - '@fluentui/react-jsx-runtime:build', - '@fluentui/react-shared-contexts:build', - '@fluentui/react-theme:build', - '@fluentui/react-utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/react-conformance-griffel:build', - ], - }, - }, - '@fluentui/public-docsite-v9:build-storybook': { - roots: ['@fluentui/public-docsite-v9:build-storybook'], - tasks: { - '@fluentui/public-docsite-v9:build-storybook': { - id: '@fluentui/public-docsite-v9:build-storybook', - target: { project: '@fluentui/public-docsite-v9', target: 'build-storybook' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:build-storybook': [] }, - }, - '@fluentui/public-docsite-v9:chromatic:branch': { - roots: ['@fluentui/public-docsite-v9:chromatic:branch'], - tasks: { - '@fluentui/public-docsite-v9:chromatic:branch': { - id: '@fluentui/public-docsite-v9:chromatic:branch', - target: { project: '@fluentui/public-docsite-v9', target: 'chromatic:branch' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:chromatic:branch': [] }, - }, - '@fluentui/public-docsite-v9:chromatic': { - roots: ['@fluentui/public-docsite-v9:chromatic'], - tasks: { - '@fluentui/public-docsite-v9:chromatic': { - id: '@fluentui/public-docsite-v9:chromatic', - target: { project: '@fluentui/public-docsite-v9', target: 'chromatic' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:chromatic': [] }, - }, - '@fluentui/public-docsite-v9:clean': { - roots: ['@fluentui/public-docsite-v9:clean'], - tasks: { - '@fluentui/public-docsite-v9:clean': { - id: '@fluentui/public-docsite-v9:clean', - target: { project: '@fluentui/public-docsite-v9', target: 'clean' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:clean': [] }, - }, - '@fluentui/public-docsite-v9:code-style': { - roots: ['@fluentui/public-docsite-v9:code-style'], - tasks: { - '@fluentui/public-docsite-v9:code-style': { - id: '@fluentui/public-docsite-v9:code-style', - target: { project: '@fluentui/public-docsite-v9', target: 'code-style' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:code-style': [] }, - }, - '@fluentui/public-docsite-v9:just': { - roots: ['@fluentui/public-docsite-v9:just'], - tasks: { - '@fluentui/public-docsite-v9:just': { - id: '@fluentui/public-docsite-v9:just', - target: { project: '@fluentui/public-docsite-v9', target: 'just' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:just': [] }, - }, - '@fluentui/public-docsite-v9:lint': { - roots: ['@fluentui/public-docsite-v9:lint'], - tasks: { - '@fluentui/public-docsite-v9:lint': { - id: '@fluentui/public-docsite-v9:lint', - target: { project: '@fluentui/public-docsite-v9', target: 'lint' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:lint': [] }, - }, - '@fluentui/public-docsite-v9:type-check': { - roots: ['@fluentui/public-docsite-v9:type-check'], - tasks: { - '@fluentui/public-docsite-v9:type-check': { - id: '@fluentui/public-docsite-v9:type-check', - target: { project: '@fluentui/public-docsite-v9', target: 'type-check' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:type-check': [] }, - }, - '@fluentui/public-docsite-v9:start': { - roots: ['@fluentui/public-docsite-v9:start'], - tasks: { - '@fluentui/public-docsite-v9:start': { - id: '@fluentui/public-docsite-v9:start', - target: { project: '@fluentui/public-docsite-v9', target: 'start' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:start': [] }, - }, - '@fluentui/public-docsite-v9:storybook': { - roots: ['@fluentui/public-docsite-v9:storybook'], - tasks: { - '@fluentui/public-docsite-v9:storybook': { - id: '@fluentui/public-docsite-v9:storybook', - target: { project: '@fluentui/public-docsite-v9', target: 'storybook' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:storybook': [] }, - }, - '@fluentui/public-docsite-v9:storybook:docs': { - roots: ['@fluentui/public-docsite-v9:storybook:docs'], - tasks: { - '@fluentui/public-docsite-v9:storybook:docs': { - id: '@fluentui/public-docsite-v9:storybook:docs', - target: { project: '@fluentui/public-docsite-v9', target: 'storybook:docs' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite-v9:storybook:docs': [] }, - }, - '@fluentui/public-docsite-v9:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/public-docsite-v9:nx-release-publish': { - id: '@fluentui/public-docsite-v9:nx-release-publish', - target: { project: '@fluentui/public-docsite-v9', target: 'nx-release-publish' }, - projectRoot: 'apps/public-docsite-v9', - overrides: {}, - }, - '@fluentui/react-calendar-compat:nx-release-publish': { - id: '@fluentui/react-calendar-compat:nx-release-publish', - target: { project: '@fluentui/react-calendar-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-calendar-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-datepicker-compat:nx-release-publish': { - id: '@fluentui/react-datepicker-compat:nx-release-publish', - target: { project: '@fluentui/react-datepicker-compat', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-datepicker-compat', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-migration-v8-v9:nx-release-publish': { - id: '@fluentui/react-migration-v8-v9:nx-release-publish', - target: { project: '@fluentui/react-migration-v8-v9', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-migration-v8-v9', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/fluent2-theme:nx-release-publish': { - id: '@fluentui/fluent2-theme:nx-release-publish', - target: { project: '@fluentui/fluent2-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/fluent2-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-migration-v0-v9:nx-release-publish': { - id: '@fluentui/react-migration-v0-v9:nx-release-publish', - target: { project: '@fluentui/react-migration-v0-v9', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-migration-v0-v9', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon:nx-release-publish': { - id: '@fluentui/react-storybook-addon:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': { - id: '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - target: { project: '@fluentui/react-storybook-addon-export-to-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-storybook-addon-export-to-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': { - id: '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - target: { project: '@fluentui/babel-preset-storybook-full-source', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/babel-preset-storybook-full-source', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-designer:nx-release-publish': { - id: '@fluentui/theme-designer:nx-release-publish', - target: { project: '@fluentui/theme-designer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/theme-designer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-rating-preview:nx-release-publish': { - id: '@fluentui/react-rating-preview:nx-release-publish', - target: { project: '@fluentui/react-rating-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-rating-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-search-preview:nx-release-publish': { - id: '@fluentui/react-search-preview:nx-release-publish', - target: { project: '@fluentui/react-search-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-search-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-teaching-popover-preview:nx-release-publish': { - id: '@fluentui/react-teaching-popover-preview:nx-release-publish', - target: { project: '@fluentui/react-teaching-popover-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-teaching-popover-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-timepicker-compat-preview:nx-release-publish': { - id: '@fluentui/react-timepicker-compat-preview:nx-release-publish', - target: { project: '@fluentui/react-timepicker-compat-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-timepicker-compat-preview', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/public-docsite-v9:nx-release-publish': [ - '@fluentui/react-calendar-compat:nx-release-publish', - '@fluentui/react-datepicker-compat:nx-release-publish', - '@fluentui/react-migration-v8-v9:nx-release-publish', - '@fluentui/react-migration-v0-v9:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-storybook-addon:nx-release-publish', - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - '@fluentui/theme-designer:nx-release-publish', - '@fluentui/react-rating-preview:nx-release-publish', - '@fluentui/react-search-preview:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-teaching-popover-preview:nx-release-publish', - '@fluentui/react-timepicker-compat-preview:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-calendar-compat:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-datepicker-compat:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-calendar-compat:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-migration-v8-v9:nx-release-publish': [ - '@fluentui/fluent2-theme:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/fluent2-theme:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-migration-v0-v9:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-storybook-addon:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish': [ - '@fluentui/babel-preset-storybook-full-source:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/babel-preset-storybook-full-source:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme-designer:nx-release-publish': [ - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-storybook-addon-export-to-sandbox:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-rating-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-search-preview:nx-release-publish': [ - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-teaching-popover-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-timepicker-compat-preview:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/workspace-plugin:test': { - roots: ['@fluentui/workspace-plugin:test'], - tasks: { - '@fluentui/workspace-plugin:test': { - id: '@fluentui/workspace-plugin:test', - target: { project: '@fluentui/workspace-plugin', target: 'test' }, - projectRoot: 'tools/workspace-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/workspace-plugin:test': [] }, - }, - '@fluentui/workspace-plugin:test:ci': { - roots: ['@fluentui/workspace-plugin:test:ci'], - tasks: { - '@fluentui/workspace-plugin:test:ci': { - id: '@fluentui/workspace-plugin:test:ci', - target: { project: '@fluentui/workspace-plugin', target: 'test', configuration: 'ci' }, - projectRoot: 'tools/workspace-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/workspace-plugin:test:ci': [] }, - }, - '@fluentui/workspace-plugin:type-check': { - roots: ['@fluentui/workspace-plugin:type-check'], - tasks: { - '@fluentui/workspace-plugin:type-check': { - id: '@fluentui/workspace-plugin:type-check', - target: { project: '@fluentui/workspace-plugin', target: 'type-check' }, - projectRoot: 'tools/workspace-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/workspace-plugin:type-check': [] }, - }, - '@fluentui/workspace-plugin:lint': { - roots: ['@fluentui/workspace-plugin:lint'], - tasks: { - '@fluentui/workspace-plugin:lint': { - id: '@fluentui/workspace-plugin:lint', - target: { project: '@fluentui/workspace-plugin', target: 'lint' }, - projectRoot: 'tools/workspace-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/workspace-plugin:lint': [] }, - }, - '@fluentui/workspace-plugin:nx-release-publish': { - roots: ['@fluentui/workspace-plugin:nx-release-publish'], - tasks: { - '@fluentui/workspace-plugin:nx-release-publish': { - id: '@fluentui/workspace-plugin:nx-release-publish', - target: { project: '@fluentui/workspace-plugin', target: 'nx-release-publish' }, - projectRoot: 'tools/workspace-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/workspace-plugin:nx-release-publish': [] }, - }, - '@fluentui/workspace-plugin:build': { - roots: ['@fluentui/workspace-plugin:build'], - tasks: { - '@fluentui/workspace-plugin:build': { - id: '@fluentui/workspace-plugin:build', - target: { project: '@fluentui/workspace-plugin', target: 'build' }, - projectRoot: 'tools/workspace-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/workspace-plugin:build': [] }, - }, - '@fluentui/workspace-plugin:lint-old': { - roots: ['@fluentui/workspace-plugin:lint-old'], - tasks: { - '@fluentui/workspace-plugin:lint-old': { - id: '@fluentui/workspace-plugin:lint-old', - target: { project: '@fluentui/workspace-plugin', target: 'lint-old' }, - projectRoot: 'tools/workspace-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/workspace-plugin:lint-old': [] }, - }, - '@fluentui/workspace-plugin:check-graph': { - roots: ['@fluentui/workspace-plugin:check-graph'], - tasks: { - '@fluentui/workspace-plugin:check-graph': { - id: '@fluentui/workspace-plugin:check-graph', - target: { project: '@fluentui/workspace-plugin', target: 'check-graph' }, - projectRoot: 'tools/workspace-plugin', - overrides: {}, - }, - }, - dependencies: { '@fluentui/workspace-plugin:check-graph': [] }, - }, - '@fluentui/fluent2-theme:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/fluent2-theme:build': { - id: '@fluentui/fluent2-theme:build', - target: { project: '@fluentui/fluent2-theme', target: 'build' }, - projectRoot: 'packages/fluent2-theme', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/fluent2-theme:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - }, - }, - '@fluentui/fluent2-theme:bundle': { - roots: ['@fluentui/fluent2-theme:bundle'], - tasks: { - '@fluentui/fluent2-theme:bundle': { - id: '@fluentui/fluent2-theme:bundle', - target: { project: '@fluentui/fluent2-theme', target: 'bundle' }, - projectRoot: 'packages/fluent2-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/fluent2-theme:bundle': [] }, - }, - '@fluentui/fluent2-theme:lint': { - roots: ['@fluentui/fluent2-theme:lint'], - tasks: { - '@fluentui/fluent2-theme:lint': { - id: '@fluentui/fluent2-theme:lint', - target: { project: '@fluentui/fluent2-theme', target: 'lint' }, - projectRoot: 'packages/fluent2-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/fluent2-theme:lint': [] }, - }, - '@fluentui/fluent2-theme:just': { - roots: ['@fluentui/fluent2-theme:just'], - tasks: { - '@fluentui/fluent2-theme:just': { - id: '@fluentui/fluent2-theme:just', - target: { project: '@fluentui/fluent2-theme', target: 'just' }, - projectRoot: 'packages/fluent2-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/fluent2-theme:just': [] }, - }, - '@fluentui/fluent2-theme:code-style': { - roots: ['@fluentui/fluent2-theme:code-style'], - tasks: { - '@fluentui/fluent2-theme:code-style': { - id: '@fluentui/fluent2-theme:code-style', - target: { project: '@fluentui/fluent2-theme', target: 'code-style' }, - projectRoot: 'packages/fluent2-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/fluent2-theme:code-style': [] }, - }, - '@fluentui/fluent2-theme:clean': { - roots: ['@fluentui/fluent2-theme:clean'], - tasks: { - '@fluentui/fluent2-theme:clean': { - id: '@fluentui/fluent2-theme:clean', - target: { project: '@fluentui/fluent2-theme', target: 'clean' }, - projectRoot: 'packages/fluent2-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/fluent2-theme:clean': [] }, - }, - '@fluentui/fluent2-theme:start': { - roots: ['@fluentui/fluent2-theme:start'], - tasks: { - '@fluentui/fluent2-theme:start': { - id: '@fluentui/fluent2-theme:start', - target: { project: '@fluentui/fluent2-theme', target: 'start' }, - projectRoot: 'packages/fluent2-theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/fluent2-theme:start': [] }, - }, - '@fluentui/fluent2-theme:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/fluent2-theme:nx-release-publish': { - id: '@fluentui/fluent2-theme:nx-release-publish', - target: { project: '@fluentui/fluent2-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/fluent2-theme', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/fluent2-theme:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-18-tests-v9:type-check': { - roots: ['@fluentui/react-18-tests-v9:type-check'], - tasks: { - '@fluentui/react-18-tests-v9:type-check': { - id: '@fluentui/react-18-tests-v9:type-check', - target: { project: '@fluentui/react-18-tests-v9', target: 'type-check' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v9:type-check': [] }, - }, - '@fluentui/react-18-tests-v9:lint': { - roots: ['@fluentui/react-18-tests-v9:lint'], - tasks: { - '@fluentui/react-18-tests-v9:lint': { - id: '@fluentui/react-18-tests-v9:lint', - target: { project: '@fluentui/react-18-tests-v9', target: 'lint' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v9:lint': [] }, - }, - '@fluentui/react-18-tests-v9:test': { - roots: ['@fluentui/react-18-tests-v9:test'], - tasks: { - '@fluentui/react-18-tests-v9:test': { - id: '@fluentui/react-18-tests-v9:test', - target: { project: '@fluentui/react-18-tests-v9', target: 'test' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v9:test': [] }, - }, - '@fluentui/react-18-tests-v9:format': { - roots: ['@fluentui/react-18-tests-v9:format'], - tasks: { - '@fluentui/react-18-tests-v9:format': { - id: '@fluentui/react-18-tests-v9:format', - target: { project: '@fluentui/react-18-tests-v9', target: 'format' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v9:format': [] }, - }, - '@fluentui/react-18-tests-v9:format:check': { - roots: ['@fluentui/react-18-tests-v9:format:check'], - tasks: { - '@fluentui/react-18-tests-v9:format:check': { - id: '@fluentui/react-18-tests-v9:format:check', - target: { project: '@fluentui/react-18-tests-v9', target: 'format:check' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v9:format:check': [] }, - }, - '@fluentui/react-18-tests-v9:start': { - roots: ['@fluentui/react-18-tests-v9:start'], - tasks: { - '@fluentui/react-18-tests-v9:start': { - id: '@fluentui/react-18-tests-v9:start', - target: { project: '@fluentui/react-18-tests-v9', target: 'start' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v9:start': [] }, - }, - '@fluentui/react-18-tests-v9:e2e:local': { - roots: ['@fluentui/react-18-tests-v9:e2e:local'], - tasks: { - '@fluentui/react-18-tests-v9:e2e:local': { - id: '@fluentui/react-18-tests-v9:e2e:local', - target: { project: '@fluentui/react-18-tests-v9', target: 'e2e:local' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v9:e2e:local': [] }, - }, - '@fluentui/react-18-tests-v9:e2e': { - roots: ['@fluentui/react-18-tests-v9:e2e'], - tasks: { - '@fluentui/react-18-tests-v9:e2e': { - id: '@fluentui/react-18-tests-v9:e2e', - target: { project: '@fluentui/react-18-tests-v9', target: 'e2e' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v9:e2e': [] }, - }, - '@fluentui/react-18-tests-v9:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-18-tests-v9:nx-release-publish': { - id: '@fluentui/react-18-tests-v9:nx-release-publish', - target: { project: '@fluentui/react-18-tests-v9', target: 'nx-release-publish' }, - projectRoot: 'apps/react-18-tests-v9', - overrides: {}, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-18-tests-v9:nx-release-publish': [ - '@fluentui/react-components:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-18-tests-v8:type-check': { - roots: ['@fluentui/react-18-tests-v8:type-check'], - tasks: { - '@fluentui/react-18-tests-v8:type-check': { - id: '@fluentui/react-18-tests-v8:type-check', - target: { project: '@fluentui/react-18-tests-v8', target: 'type-check' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v8:type-check': [] }, - }, - '@fluentui/react-18-tests-v8:format': { - roots: ['@fluentui/react-18-tests-v8:format'], - tasks: { - '@fluentui/react-18-tests-v8:format': { - id: '@fluentui/react-18-tests-v8:format', - target: { project: '@fluentui/react-18-tests-v8', target: 'format' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v8:format': [] }, - }, - '@fluentui/react-18-tests-v8:format:check': { - roots: ['@fluentui/react-18-tests-v8:format:check'], - tasks: { - '@fluentui/react-18-tests-v8:format:check': { - id: '@fluentui/react-18-tests-v8:format:check', - target: { project: '@fluentui/react-18-tests-v8', target: 'format:check' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v8:format:check': [] }, - }, - '@fluentui/react-18-tests-v8:e2e': { - roots: ['@fluentui/react-18-tests-v8:e2e'], - tasks: { - '@fluentui/react-18-tests-v8:e2e': { - id: '@fluentui/react-18-tests-v8:e2e', - target: { project: '@fluentui/react-18-tests-v8', target: 'e2e' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v8:e2e': [] }, - }, - '@fluentui/react-18-tests-v8:e2e:local': { - roots: ['@fluentui/react-18-tests-v8:e2e:local'], - tasks: { - '@fluentui/react-18-tests-v8:e2e:local': { - id: '@fluentui/react-18-tests-v8:e2e:local', - target: { project: '@fluentui/react-18-tests-v8', target: 'e2e:local' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v8:e2e:local': [] }, - }, - '@fluentui/react-18-tests-v8:lint': { - roots: ['@fluentui/react-18-tests-v8:lint'], - tasks: { - '@fluentui/react-18-tests-v8:lint': { - id: '@fluentui/react-18-tests-v8:lint', - target: { project: '@fluentui/react-18-tests-v8', target: 'lint' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v8:lint': [] }, - }, - '@fluentui/react-18-tests-v8:test': { - roots: ['@fluentui/react-18-tests-v8:test'], - tasks: { - '@fluentui/react-18-tests-v8:test': { - id: '@fluentui/react-18-tests-v8:test', - target: { project: '@fluentui/react-18-tests-v8', target: 'test' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v8:test': [] }, - }, - '@fluentui/react-18-tests-v8:start': { - roots: ['@fluentui/react-18-tests-v8:start'], - tasks: { - '@fluentui/react-18-tests-v8:start': { - id: '@fluentui/react-18-tests-v8:start', - target: { project: '@fluentui/react-18-tests-v8', target: 'start' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-18-tests-v8:start': [] }, - }, - '@fluentui/react-18-tests-v8:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/react-18-tests-v8:nx-release-publish': { - id: '@fluentui/react-18-tests-v8:nx-release-publish', - target: { project: '@fluentui/react-18-tests-v8', target: 'nx-release-publish' }, - projectRoot: 'apps/react-18-tests-v8', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-18-tests-v8:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - }, - }, - '@fluentui/azure-themes:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/azure-themes:build': { - id: '@fluentui/azure-themes:build', - target: { project: '@fluentui/azure-themes', target: 'build' }, - projectRoot: 'packages/azure-themes', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - }, - }, - '@fluentui/azure-themes:bundle': { - roots: ['@fluentui/azure-themes:bundle'], - tasks: { - '@fluentui/azure-themes:bundle': { - id: '@fluentui/azure-themes:bundle', - target: { project: '@fluentui/azure-themes', target: 'bundle' }, - projectRoot: 'packages/azure-themes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/azure-themes:bundle': [] }, - }, - '@fluentui/azure-themes:lint': { - roots: ['@fluentui/azure-themes:lint'], - tasks: { - '@fluentui/azure-themes:lint': { - id: '@fluentui/azure-themes:lint', - target: { project: '@fluentui/azure-themes', target: 'lint' }, - projectRoot: 'packages/azure-themes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/azure-themes:lint': [] }, - }, - '@fluentui/azure-themes:just': { - roots: ['@fluentui/azure-themes:just'], - tasks: { - '@fluentui/azure-themes:just': { - id: '@fluentui/azure-themes:just', - target: { project: '@fluentui/azure-themes', target: 'just' }, - projectRoot: 'packages/azure-themes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/azure-themes:just': [] }, - }, - '@fluentui/azure-themes:code-style': { - roots: ['@fluentui/azure-themes:code-style'], - tasks: { - '@fluentui/azure-themes:code-style': { - id: '@fluentui/azure-themes:code-style', - target: { project: '@fluentui/azure-themes', target: 'code-style' }, - projectRoot: 'packages/azure-themes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/azure-themes:code-style': [] }, - }, - '@fluentui/azure-themes:clean': { - roots: ['@fluentui/azure-themes:clean'], - tasks: { - '@fluentui/azure-themes:clean': { - id: '@fluentui/azure-themes:clean', - target: { project: '@fluentui/azure-themes', target: 'clean' }, - projectRoot: 'packages/azure-themes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/azure-themes:clean': [] }, - }, - '@fluentui/azure-themes:start': { - roots: ['@fluentui/azure-themes:start'], - tasks: { - '@fluentui/azure-themes:start': { - id: '@fluentui/azure-themes:start', - target: { project: '@fluentui/azure-themes', target: 'start' }, - projectRoot: 'packages/azure-themes', - overrides: {}, - }, - }, - dependencies: { '@fluentui/azure-themes:start': [] }, - }, - '@fluentui/azure-themes:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/azure-themes:nx-release-publish': { - id: '@fluentui/azure-themes:nx-release-publish', - target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, - projectRoot: 'packages/azure-themes', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/azure-themes:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/e2e:serve': { - roots: ['@fluentui/e2e:serve'], - tasks: { - '@fluentui/e2e:serve': { - id: '@fluentui/e2e:serve', - target: { project: '@fluentui/e2e', target: 'serve' }, - projectRoot: 'packages/fluentui/e2e', - overrides: {}, - }, - }, - dependencies: { '@fluentui/e2e:serve': [] }, - }, - '@fluentui/e2e:e2e': { - roots: ['@fluentui/e2e:e2e'], - tasks: { - '@fluentui/e2e:e2e': { - id: '@fluentui/e2e:e2e', - target: { project: '@fluentui/e2e', target: 'e2e' }, - projectRoot: 'packages/fluentui/e2e', - overrides: {}, - }, - }, - dependencies: { '@fluentui/e2e:e2e': [] }, - }, - '@fluentui/e2e:e2e:local': { - roots: ['@fluentui/e2e:e2e:local'], - tasks: { - '@fluentui/e2e:e2e:local': { - id: '@fluentui/e2e:e2e:local', - target: { project: '@fluentui/e2e', target: 'e2e:local' }, - projectRoot: 'packages/fluentui/e2e', - overrides: {}, - }, - }, - dependencies: { '@fluentui/e2e:e2e:local': [] }, - }, - '@fluentui/e2e:lint': { - roots: ['@fluentui/e2e:lint'], - tasks: { - '@fluentui/e2e:lint': { - id: '@fluentui/e2e:lint', - target: { project: '@fluentui/e2e', target: 'lint' }, - projectRoot: 'packages/fluentui/e2e', - overrides: {}, - }, - }, - dependencies: { '@fluentui/e2e:lint': [] }, - }, - '@fluentui/e2e:lint:fix': { - roots: ['@fluentui/e2e:lint:fix'], - tasks: { - '@fluentui/e2e:lint:fix': { - id: '@fluentui/e2e:lint:fix', - target: { project: '@fluentui/e2e', target: 'lint:fix' }, - projectRoot: 'packages/fluentui/e2e', - overrides: {}, - }, - }, - dependencies: { '@fluentui/e2e:lint:fix': [] }, - }, - '@fluentui/e2e:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/e2e:nx-release-publish': { - id: '@fluentui/e2e:nx-release-publish', - target: { project: '@fluentui/e2e', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/e2e', - overrides: {}, - }, - '@fluentui/accessibility:nx-release-publish': { - id: '@fluentui/accessibility:nx-release-publish', - target: { project: '@fluentui/accessibility', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/accessibility', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-northstar:nx-release-publish': { - id: '@fluentui/react-icons-northstar:nx-release-publish', - target: { project: '@fluentui/react-icons-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-icons-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-bindings:nx-release-publish': { - id: '@fluentui/react-bindings:nx-release-publish', - target: { project: '@fluentui/react-bindings', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-bindings', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-event-listener:nx-release-publish': { - id: '@fluentui/react-component-event-listener:nx-release-publish', - target: { project: '@fluentui/react-component-event-listener', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-event-listener', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-ref:nx-release-publish': { - id: '@fluentui/react-component-ref:nx-release-publish', - target: { project: '@fluentui/react-component-ref', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-ref', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-fela-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-fela-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-fela-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-fela-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-styles-renderer:nx-release-publish': { - id: '@fluentui/react-northstar-styles-renderer:nx-release-publish', - target: { project: '@fluentui/react-northstar-styles-renderer', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-styles-renderer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/styles:nx-release-publish': { - id: '@fluentui/styles:nx-release-publish', - target: { project: '@fluentui/styles', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/state:nx-release-publish': { - id: '@fluentui/state:nx-release-publish', - target: { project: '@fluentui/state', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/state', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar:nx-release-publish': { - id: '@fluentui/react-northstar:nx-release-publish', - target: { project: '@fluentui/react-northstar', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-component-nesting-registry:nx-release-publish': { - id: '@fluentui/react-component-nesting-registry:nx-release-publish', - target: { project: '@fluentui/react-component-nesting-registry', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-component-nesting-registry', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-proptypes:nx-release-publish': { - id: '@fluentui/react-proptypes:nx-release-publish', - target: { project: '@fluentui/react-proptypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-proptypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-northstar-prototypes:nx-release-publish': { - id: '@fluentui/react-northstar-prototypes:nx-release-publish', - target: { project: '@fluentui/react-northstar-prototypes', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/react-northstar-prototypes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/code-sandbox:nx-release-publish': { - id: '@fluentui/code-sandbox:nx-release-publish', - target: { project: '@fluentui/code-sandbox', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/code-sandbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/docs-components:nx-release-publish': { - id: '@fluentui/docs-components:nx-release-publish', - target: { project: '@fluentui/docs-components', target: 'nx-release-publish' }, - projectRoot: 'packages/fluentui/docs-components', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/e2e:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/react-northstar-prototypes:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/accessibility:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-icons-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-bindings:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-northstar-fela-renderer:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-event-listener:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-ref:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-fela-renderer:nx-release-publish': [ - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-northstar-styles-renderer:nx-release-publish': [ - '@fluentui/styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/styles:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/state:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/react-northstar:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-nesting-registry:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar-styles-renderer:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-proptypes:nx-release-publish', - '@fluentui/state:nx-release-publish', - '@fluentui/styles:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-component-nesting-registry:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/react-proptypes:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-northstar-prototypes:nx-release-publish': [ - '@fluentui/accessibility:nx-release-publish', - '@fluentui/code-sandbox:nx-release-publish', - '@fluentui/docs-components:nx-release-publish', - '@fluentui/react-bindings:nx-release-publish', - '@fluentui/react-component-event-listener:nx-release-publish', - '@fluentui/react-component-ref:nx-release-publish', - '@fluentui/react-icons-northstar:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/code-sandbox:nx-release-publish': [ - '@fluentui/docs-components:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-northstar:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - '@fluentui/docs-components:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-gulp:nx-release-publish', - ], - }, - }, - '@fluentui/theming-designer:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/monaco-editor:build', - ], - tasks: { - '@fluentui/theming-designer:build': { - id: '@fluentui/theming-designer:build', - target: { project: '@fluentui/theming-designer', target: 'build' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:build': { - id: '@fluentui/react-docsite-components:build', - target: { project: '@fluentui/react-docsite-components', target: 'build' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:build': { - id: '@fluentui/public-docsite-setup:build', - target: { project: '@fluentui/public-docsite-setup', target: 'build' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:build': { - id: '@fluentui/react-monaco-editor:build', - target: { project: '@fluentui/react-monaco-editor', target: 'build' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:build': { - id: '@fluentui/monaco-editor:build', - target: { project: '@fluentui/monaco-editor', target: 'build' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/theming-designer:build': [ - '@fluentui/react:build', - '@fluentui/merge-styles:build', - '@fluentui/react-docsite-components:build', - '@fluentui/foundation-legacy:build', - '@fluentui/scheme-utilities:build', - '@fluentui/set-version:build', - '@fluentui/font-icons-mdl2:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/react-docsite-components:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/common-styles:build', - ], - '@fluentui/public-docsite-setup:build': [], - '@fluentui/react-monaco-editor:build': [ - '@fluentui/react:build', - '@fluentui/example-data:build', - '@fluentui/monaco-editor:build', - '@fluentui/react-hooks:build', - '@fluentui/react-charting:build', - ], - '@fluentui/monaco-editor:build': [], - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - }, - }, - '@fluentui/theming-designer:bundle': { - roots: ['@fluentui/theming-designer:bundle'], - tasks: { - '@fluentui/theming-designer:bundle': { - id: '@fluentui/theming-designer:bundle', - target: { project: '@fluentui/theming-designer', target: 'bundle' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theming-designer:bundle': [] }, - }, - '@fluentui/theming-designer:lint': { - roots: ['@fluentui/theming-designer:lint'], - tasks: { - '@fluentui/theming-designer:lint': { - id: '@fluentui/theming-designer:lint', - target: { project: '@fluentui/theming-designer', target: 'lint' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theming-designer:lint': [] }, - }, - '@fluentui/theming-designer:test': { - roots: ['@fluentui/theming-designer:test'], - tasks: { - '@fluentui/theming-designer:test': { - id: '@fluentui/theming-designer:test', - target: { project: '@fluentui/theming-designer', target: 'test' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theming-designer:test': [] }, - }, - '@fluentui/theming-designer:just': { - roots: ['@fluentui/theming-designer:just'], - tasks: { - '@fluentui/theming-designer:just': { - id: '@fluentui/theming-designer:just', - target: { project: '@fluentui/theming-designer', target: 'just' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theming-designer:just': [] }, - }, - '@fluentui/theming-designer:clean': { - roots: ['@fluentui/theming-designer:clean'], - tasks: { - '@fluentui/theming-designer:clean': { - id: '@fluentui/theming-designer:clean', - target: { project: '@fluentui/theming-designer', target: 'clean' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theming-designer:clean': [] }, - }, - '@fluentui/theming-designer:code-style': { - roots: ['@fluentui/theming-designer:code-style'], - tasks: { - '@fluentui/theming-designer:code-style': { - id: '@fluentui/theming-designer:code-style', - target: { project: '@fluentui/theming-designer', target: 'code-style' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theming-designer:code-style': [] }, - }, - '@fluentui/theming-designer:start': { - roots: ['@fluentui/theming-designer:start'], - tasks: { - '@fluentui/theming-designer:start': { - id: '@fluentui/theming-designer:start', - target: { project: '@fluentui/theming-designer', target: 'start' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theming-designer:start': [] }, - }, - '@fluentui/theming-designer:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/theming-designer:nx-release-publish': { - id: '@fluentui/theming-designer:nx-release-publish', - target: { project: '@fluentui/theming-designer', target: 'nx-release-publish' }, - projectRoot: 'apps/theming-designer', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:nx-release-publish': { - id: '@fluentui/react-docsite-components:nx-release-publish', - target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:nx-release-publish': { - id: '@fluentui/public-docsite-setup:nx-release-publish', - target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:nx-release-publish': { - id: '@fluentui/react-monaco-editor:nx-release-publish', - target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:nx-release-publish': { - id: '@fluentui/monaco-editor:nx-release-publish', - target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/theming-designer:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-docsite-components:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/public-docsite-setup:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/public-docsite-setup:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-monaco-editor:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/monaco-editor:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/monaco-editor:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - }, - }, - '@fluentui/merge-styles:build': { - roots: ['@fluentui/set-version:build'], - tasks: { - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - }, - }, - '@fluentui/merge-styles:bundle': { - roots: ['@fluentui/merge-styles:bundle'], - tasks: { - '@fluentui/merge-styles:bundle': { - id: '@fluentui/merge-styles:bundle', - target: { project: '@fluentui/merge-styles', target: 'bundle' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/merge-styles:bundle': [] }, - }, - '@fluentui/merge-styles:lint': { - roots: ['@fluentui/merge-styles:lint'], - tasks: { - '@fluentui/merge-styles:lint': { - id: '@fluentui/merge-styles:lint', - target: { project: '@fluentui/merge-styles', target: 'lint' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/merge-styles:lint': [] }, - }, - '@fluentui/merge-styles:test': { - roots: ['@fluentui/merge-styles:test'], - tasks: { - '@fluentui/merge-styles:test': { - id: '@fluentui/merge-styles:test', - target: { project: '@fluentui/merge-styles', target: 'test' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/merge-styles:test': [] }, - }, - '@fluentui/merge-styles:just': { - roots: ['@fluentui/merge-styles:just'], - tasks: { - '@fluentui/merge-styles:just': { - id: '@fluentui/merge-styles:just', - target: { project: '@fluentui/merge-styles', target: 'just' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/merge-styles:just': [] }, - }, - '@fluentui/merge-styles:clean': { - roots: ['@fluentui/merge-styles:clean'], - tasks: { - '@fluentui/merge-styles:clean': { - id: '@fluentui/merge-styles:clean', - target: { project: '@fluentui/merge-styles', target: 'clean' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/merge-styles:clean': [] }, - }, - '@fluentui/merge-styles:code-style': { - roots: ['@fluentui/merge-styles:code-style'], - tasks: { - '@fluentui/merge-styles:code-style': { - id: '@fluentui/merge-styles:code-style', - target: { project: '@fluentui/merge-styles', target: 'code-style' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/merge-styles:code-style': [] }, - }, - '@fluentui/merge-styles:start-test': { - roots: ['@fluentui/merge-styles:start-test'], - tasks: { - '@fluentui/merge-styles:start-test': { - id: '@fluentui/merge-styles:start-test', - target: { project: '@fluentui/merge-styles', target: 'start-test' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - }, - dependencies: { '@fluentui/merge-styles:start-test': [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: {}, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/keyboard-key:build': { - roots: ['@fluentui/keyboard-key:build'], - tasks: { - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-key:build': [] }, - }, - '@fluentui/keyboard-key:clean': { - roots: ['@fluentui/keyboard-key:clean'], - tasks: { - '@fluentui/keyboard-key:clean': { - id: '@fluentui/keyboard-key:clean', - target: { project: '@fluentui/keyboard-key', target: 'clean' }, - projectRoot: 'packages/keyboard-key', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-key:clean': [] }, - }, - '@fluentui/keyboard-key:code-style': { - roots: ['@fluentui/keyboard-key:code-style'], - tasks: { - '@fluentui/keyboard-key:code-style': { - id: '@fluentui/keyboard-key:code-style', - target: { project: '@fluentui/keyboard-key', target: 'code-style' }, - projectRoot: 'packages/keyboard-key', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-key:code-style': [] }, - }, - '@fluentui/keyboard-key:just': { - roots: ['@fluentui/keyboard-key:just'], - tasks: { - '@fluentui/keyboard-key:just': { - id: '@fluentui/keyboard-key:just', - target: { project: '@fluentui/keyboard-key', target: 'just' }, - projectRoot: 'packages/keyboard-key', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-key:just': [] }, - }, - '@fluentui/keyboard-key:lint': { - roots: ['@fluentui/keyboard-key:lint'], - tasks: { - '@fluentui/keyboard-key:lint': { - id: '@fluentui/keyboard-key:lint', - target: { project: '@fluentui/keyboard-key', target: 'lint' }, - projectRoot: 'packages/keyboard-key', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-key:lint': [] }, - }, - '@fluentui/keyboard-key:start-test': { - roots: ['@fluentui/keyboard-key:start-test'], - tasks: { - '@fluentui/keyboard-key:start-test': { - id: '@fluentui/keyboard-key:start-test', - target: { project: '@fluentui/keyboard-key', target: 'start-test' }, - projectRoot: 'packages/keyboard-key', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-key:start-test': [] }, - }, - '@fluentui/keyboard-key:test': { - roots: ['@fluentui/keyboard-key:test'], - tasks: { - '@fluentui/keyboard-key:test': { - id: '@fluentui/keyboard-key:test', - target: { project: '@fluentui/keyboard-key', target: 'test' }, - projectRoot: 'packages/keyboard-key', - overrides: {}, - }, - }, - dependencies: { '@fluentui/keyboard-key:test': [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-api-extractor:format': { - roots: ['@fluentui/scripts-api-extractor:format'], - tasks: { - '@fluentui/scripts-api-extractor:format': { - id: '@fluentui/scripts-api-extractor:format', - target: { project: '@fluentui/scripts-api-extractor', target: 'format' }, - projectRoot: 'scripts/api-extractor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-api-extractor:format': [] }, - }, - '@fluentui/scripts-api-extractor:format:check': { - roots: ['@fluentui/scripts-api-extractor:format:check'], - tasks: { - '@fluentui/scripts-api-extractor:format:check': { - id: '@fluentui/scripts-api-extractor:format:check', - target: { project: '@fluentui/scripts-api-extractor', target: 'format:check' }, - projectRoot: 'scripts/api-extractor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-api-extractor:format:check': [] }, - }, - '@fluentui/scripts-api-extractor:lint': { - roots: ['@fluentui/scripts-api-extractor:lint'], - tasks: { - '@fluentui/scripts-api-extractor:lint': { - id: '@fluentui/scripts-api-extractor:lint', - target: { project: '@fluentui/scripts-api-extractor', target: 'lint' }, - projectRoot: 'scripts/api-extractor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-api-extractor:lint': [] }, - }, - '@fluentui/scripts-api-extractor:test': { - roots: ['@fluentui/scripts-api-extractor:test'], - tasks: { - '@fluentui/scripts-api-extractor:test': { - id: '@fluentui/scripts-api-extractor:test', - target: { project: '@fluentui/scripts-api-extractor', target: 'test' }, - projectRoot: 'scripts/api-extractor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-api-extractor:test': [] }, - }, - '@fluentui/scripts-api-extractor:type-check': { - roots: ['@fluentui/scripts-api-extractor:type-check'], - tasks: { - '@fluentui/scripts-api-extractor:type-check': { - id: '@fluentui/scripts-api-extractor:type-check', - target: { project: '@fluentui/scripts-api-extractor', target: 'type-check' }, - projectRoot: 'scripts/api-extractor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-api-extractor:type-check': [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - roots: ['@fluentui/scripts-api-extractor:nx-release-publish'], - tasks: { - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-api-extractor:nx-release-publish': [] }, - }, - '@fluentui/cra-template:lint': { - roots: ['@fluentui/cra-template:lint'], - tasks: { - '@fluentui/cra-template:lint': { - id: '@fluentui/cra-template:lint', - target: { project: '@fluentui/cra-template', target: 'lint' }, - projectRoot: 'packages/cra-template', - overrides: {}, - }, - }, - dependencies: { '@fluentui/cra-template:lint': [] }, - }, - '@fluentui/cra-template:test': { - roots: ['@fluentui/cra-template:test'], - tasks: { - '@fluentui/cra-template:test': { - id: '@fluentui/cra-template:test', - target: { project: '@fluentui/cra-template', target: 'test' }, - projectRoot: 'packages/cra-template', - overrides: {}, - }, - }, - dependencies: { '@fluentui/cra-template:test': [] }, - }, - '@fluentui/cra-template:type-check': { - roots: ['@fluentui/cra-template:type-check'], - tasks: { - '@fluentui/cra-template:type-check': { - id: '@fluentui/cra-template:type-check', - target: { project: '@fluentui/cra-template', target: 'type-check' }, - projectRoot: 'packages/cra-template', - overrides: {}, - }, - }, - dependencies: { '@fluentui/cra-template:type-check': [] }, - }, - '@fluentui/cra-template:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - ], - tasks: { - '@fluentui/cra-template:nx-release-publish': { - id: '@fluentui/cra-template:nx-release-publish', - target: { project: '@fluentui/cra-template', target: 'nx-release-publish' }, - projectRoot: 'packages/cra-template', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/cra-template:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - }, - }, - '@fluentui/example-data:build': { - roots: ['@fluentui/example-data:build'], - tasks: { - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: {}, - }, - }, - dependencies: { '@fluentui/example-data:build': [] }, - }, - '@fluentui/example-data:bundle': { - roots: ['@fluentui/example-data:bundle'], - tasks: { - '@fluentui/example-data:bundle': { - id: '@fluentui/example-data:bundle', - target: { project: '@fluentui/example-data', target: 'bundle' }, - projectRoot: 'packages/example-data', - overrides: {}, - }, - }, - dependencies: { '@fluentui/example-data:bundle': [] }, - }, - '@fluentui/example-data:lint': { - roots: ['@fluentui/example-data:lint'], - tasks: { - '@fluentui/example-data:lint': { - id: '@fluentui/example-data:lint', - target: { project: '@fluentui/example-data', target: 'lint' }, - projectRoot: 'packages/example-data', - overrides: {}, - }, - }, - dependencies: { '@fluentui/example-data:lint': [] }, - }, - '@fluentui/example-data:test': { - roots: ['@fluentui/example-data:test'], - tasks: { - '@fluentui/example-data:test': { - id: '@fluentui/example-data:test', - target: { project: '@fluentui/example-data', target: 'test' }, - projectRoot: 'packages/example-data', - overrides: {}, - }, - }, - dependencies: { '@fluentui/example-data:test': [] }, - }, - '@fluentui/example-data:clean': { - roots: ['@fluentui/example-data:clean'], - tasks: { - '@fluentui/example-data:clean': { - id: '@fluentui/example-data:clean', - target: { project: '@fluentui/example-data', target: 'clean' }, - projectRoot: 'packages/example-data', - overrides: {}, - }, - }, - dependencies: { '@fluentui/example-data:clean': [] }, - }, - '@fluentui/example-data:code-style': { - roots: ['@fluentui/example-data:code-style'], - tasks: { - '@fluentui/example-data:code-style': { - id: '@fluentui/example-data:code-style', - target: { project: '@fluentui/example-data', target: 'code-style' }, - projectRoot: 'packages/example-data', - overrides: {}, - }, - }, - dependencies: { '@fluentui/example-data:code-style': [] }, - }, - '@fluentui/example-data:just': { - roots: ['@fluentui/example-data:just'], - tasks: { - '@fluentui/example-data:just': { - id: '@fluentui/example-data:just', - target: { project: '@fluentui/example-data', target: 'just' }, - projectRoot: 'packages/example-data', - overrides: {}, - }, - }, - dependencies: { '@fluentui/example-data:just': [] }, - }, - '@fluentui/example-data:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - }, - }, - '@fluentui/a11y-testing:build': { - roots: ['@fluentui/a11y-testing:build'], - tasks: { - '@fluentui/a11y-testing:build': { - id: '@fluentui/a11y-testing:build', - target: { project: '@fluentui/a11y-testing', target: 'build' }, - projectRoot: 'packages/a11y-testing', - overrides: {}, - }, - }, - dependencies: { '@fluentui/a11y-testing:build': [] }, - }, - '@fluentui/a11y-testing:clean': { - roots: ['@fluentui/a11y-testing:clean'], - tasks: { - '@fluentui/a11y-testing:clean': { - id: '@fluentui/a11y-testing:clean', - target: { project: '@fluentui/a11y-testing', target: 'clean' }, - projectRoot: 'packages/a11y-testing', - overrides: {}, - }, - }, - dependencies: { '@fluentui/a11y-testing:clean': [] }, - }, - '@fluentui/a11y-testing:code-style': { - roots: ['@fluentui/a11y-testing:code-style'], - tasks: { - '@fluentui/a11y-testing:code-style': { - id: '@fluentui/a11y-testing:code-style', - target: { project: '@fluentui/a11y-testing', target: 'code-style' }, - projectRoot: 'packages/a11y-testing', - overrides: {}, - }, - }, - dependencies: { '@fluentui/a11y-testing:code-style': [] }, - }, - '@fluentui/a11y-testing:just': { - roots: ['@fluentui/a11y-testing:just'], - tasks: { - '@fluentui/a11y-testing:just': { - id: '@fluentui/a11y-testing:just', - target: { project: '@fluentui/a11y-testing', target: 'just' }, - projectRoot: 'packages/a11y-testing', - overrides: {}, - }, - }, - dependencies: { '@fluentui/a11y-testing:just': [] }, - }, - '@fluentui/a11y-testing:lint': { - roots: ['@fluentui/a11y-testing:lint'], - tasks: { - '@fluentui/a11y-testing:lint': { - id: '@fluentui/a11y-testing:lint', - target: { project: '@fluentui/a11y-testing', target: 'lint' }, - projectRoot: 'packages/a11y-testing', - overrides: {}, - }, - }, - dependencies: { '@fluentui/a11y-testing:lint': [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-projects-test:format': { - roots: ['@fluentui/scripts-projects-test:format'], - tasks: { - '@fluentui/scripts-projects-test:format': { - id: '@fluentui/scripts-projects-test:format', - target: { project: '@fluentui/scripts-projects-test', target: 'format' }, - projectRoot: 'scripts/projects-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-projects-test:format': [] }, - }, - '@fluentui/scripts-projects-test:format:check': { - roots: ['@fluentui/scripts-projects-test:format:check'], - tasks: { - '@fluentui/scripts-projects-test:format:check': { - id: '@fluentui/scripts-projects-test:format:check', - target: { project: '@fluentui/scripts-projects-test', target: 'format:check' }, - projectRoot: 'scripts/projects-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-projects-test:format:check': [] }, - }, - '@fluentui/scripts-projects-test:lint': { - roots: ['@fluentui/scripts-projects-test:lint'], - tasks: { - '@fluentui/scripts-projects-test:lint': { - id: '@fluentui/scripts-projects-test:lint', - target: { project: '@fluentui/scripts-projects-test', target: 'lint' }, - projectRoot: 'scripts/projects-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-projects-test:lint': [] }, - }, - '@fluentui/scripts-projects-test:test': { - roots: ['@fluentui/scripts-projects-test:test'], - tasks: { - '@fluentui/scripts-projects-test:test': { - id: '@fluentui/scripts-projects-test:test', - target: { project: '@fluentui/scripts-projects-test', target: 'test' }, - projectRoot: 'scripts/projects-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-projects-test:test': [] }, - }, - '@fluentui/scripts-projects-test:type-check': { - roots: ['@fluentui/scripts-projects-test:type-check'], - tasks: { - '@fluentui/scripts-projects-test:type-check': { - id: '@fluentui/scripts-projects-test:type-check', - target: { project: '@fluentui/scripts-projects-test', target: 'type-check' }, - projectRoot: 'scripts/projects-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-projects-test:type-check': [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish', '@fluentui/scripts-puppeteer:nx-release-publish'], - tasks: { - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: {}, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - }, - }, - '@fluentui/set-version:build': { - roots: ['@fluentui/set-version:build'], - tasks: { - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: {}, - }, - }, - dependencies: { '@fluentui/set-version:build': [] }, - }, - '@fluentui/set-version:code-style': { - roots: ['@fluentui/set-version:code-style'], - tasks: { - '@fluentui/set-version:code-style': { - id: '@fluentui/set-version:code-style', - target: { project: '@fluentui/set-version', target: 'code-style' }, - projectRoot: 'packages/set-version', - overrides: {}, - }, - }, - dependencies: { '@fluentui/set-version:code-style': [] }, - }, - '@fluentui/set-version:just': { - roots: ['@fluentui/set-version:just'], - tasks: { - '@fluentui/set-version:just': { - id: '@fluentui/set-version:just', - target: { project: '@fluentui/set-version', target: 'just' }, - projectRoot: 'packages/set-version', - overrides: {}, - }, - }, - dependencies: { '@fluentui/set-version:just': [] }, - }, - '@fluentui/set-version:lint': { - roots: ['@fluentui/set-version:lint'], - tasks: { - '@fluentui/set-version:lint': { - id: '@fluentui/set-version:lint', - target: { project: '@fluentui/set-version', target: 'lint' }, - projectRoot: 'packages/set-version', - overrides: {}, - }, - }, - dependencies: { '@fluentui/set-version:lint': [] }, - }, - '@fluentui/set-version:test': { - roots: ['@fluentui/set-version:test'], - tasks: { - '@fluentui/set-version:test': { - id: '@fluentui/set-version:test', - target: { project: '@fluentui/set-version', target: 'test' }, - projectRoot: 'packages/set-version', - overrides: {}, - }, - }, - dependencies: { '@fluentui/set-version:test': [] }, - }, - '@fluentui/set-version:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/react-hooks:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/set-version:build': [], - '@fluentui/test-utilities:build': [], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - }, - }, - '@fluentui/react-hooks:bundle': { - roots: ['@fluentui/react-hooks:bundle'], - tasks: { - '@fluentui/react-hooks:bundle': { - id: '@fluentui/react-hooks:bundle', - target: { project: '@fluentui/react-hooks', target: 'bundle' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-hooks:bundle': [] }, - }, - '@fluentui/react-hooks:lint': { - roots: ['@fluentui/react-hooks:lint'], - tasks: { - '@fluentui/react-hooks:lint': { - id: '@fluentui/react-hooks:lint', - target: { project: '@fluentui/react-hooks', target: 'lint' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-hooks:lint': [] }, - }, - '@fluentui/react-hooks:test': { - roots: ['@fluentui/react-hooks:test'], - tasks: { - '@fluentui/react-hooks:test': { - id: '@fluentui/react-hooks:test', - target: { project: '@fluentui/react-hooks', target: 'test' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-hooks:test': [] }, - }, - '@fluentui/react-hooks:clean': { - roots: ['@fluentui/react-hooks:clean'], - tasks: { - '@fluentui/react-hooks:clean': { - id: '@fluentui/react-hooks:clean', - target: { project: '@fluentui/react-hooks', target: 'clean' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-hooks:clean': [] }, - }, - '@fluentui/react-hooks:code-style': { - roots: ['@fluentui/react-hooks:code-style'], - tasks: { - '@fluentui/react-hooks:code-style': { - id: '@fluentui/react-hooks:code-style', - target: { project: '@fluentui/react-hooks', target: 'code-style' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-hooks:code-style': [] }, - }, - '@fluentui/react-hooks:start-test': { - roots: ['@fluentui/react-hooks:start-test'], - tasks: { - '@fluentui/react-hooks:start-test': { - id: '@fluentui/react-hooks:start-test', - target: { project: '@fluentui/react-hooks', target: 'start-test' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-hooks:start-test': [] }, - }, - '@fluentui/react-hooks:just': { - roots: ['@fluentui/react-hooks:just'], - tasks: { - '@fluentui/react-hooks:just': { - id: '@fluentui/react-hooks:just', - target: { project: '@fluentui/react-hooks', target: 'just' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-hooks:just': [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: {}, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-cards:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/react-cards:build': { - id: '@fluentui/react-cards:build', - target: { project: '@fluentui/react-cards', target: 'build' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-cards:build': [ - '@fluentui/react:build', - '@fluentui/foundation-legacy:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - }, - }, - '@fluentui/react-cards:bundle': { - roots: ['@fluentui/react-cards:bundle'], - tasks: { - '@fluentui/react-cards:bundle': { - id: '@fluentui/react-cards:bundle', - target: { project: '@fluentui/react-cards', target: 'bundle' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:bundle': [] }, - }, - '@fluentui/react-cards:lint': { - roots: ['@fluentui/react-cards:lint'], - tasks: { - '@fluentui/react-cards:lint': { - id: '@fluentui/react-cards:lint', - target: { project: '@fluentui/react-cards', target: 'lint' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:lint': [] }, - }, - '@fluentui/react-cards:test': { - roots: ['@fluentui/react-cards:test'], - tasks: { - '@fluentui/react-cards:test': { - id: '@fluentui/react-cards:test', - target: { project: '@fluentui/react-cards', target: 'test' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:test': [] }, - }, - '@fluentui/react-cards:just': { - roots: ['@fluentui/react-cards:just'], - tasks: { - '@fluentui/react-cards:just': { - id: '@fluentui/react-cards:just', - target: { project: '@fluentui/react-cards', target: 'just' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:just': [] }, - }, - '@fluentui/react-cards:clean': { - roots: ['@fluentui/react-cards:clean'], - tasks: { - '@fluentui/react-cards:clean': { - id: '@fluentui/react-cards:clean', - target: { project: '@fluentui/react-cards', target: 'clean' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:clean': [] }, - }, - '@fluentui/react-cards:code-style': { - roots: ['@fluentui/react-cards:code-style'], - tasks: { - '@fluentui/react-cards:code-style': { - id: '@fluentui/react-cards:code-style', - target: { project: '@fluentui/react-cards', target: 'code-style' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:code-style': [] }, - }, - '@fluentui/react-cards:start': { - roots: ['@fluentui/react-cards:start'], - tasks: { - '@fluentui/react-cards:start': { - id: '@fluentui/react-cards:start', - target: { project: '@fluentui/react-cards', target: 'start' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:start': [] }, - }, - '@fluentui/react-cards:start-test': { - roots: ['@fluentui/react-cards:start-test'], - tasks: { - '@fluentui/react-cards:start-test': { - id: '@fluentui/react-cards:start-test', - target: { project: '@fluentui/react-cards', target: 'start-test' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:start-test': [] }, - }, - '@fluentui/react-cards:update-snapshots': { - roots: ['@fluentui/react-cards:update-snapshots'], - tasks: { - '@fluentui/react-cards:update-snapshots': { - id: '@fluentui/react-cards:update-snapshots', - target: { project: '@fluentui/react-cards', target: 'update-snapshots' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-cards:update-snapshots': [] }, - }, - '@fluentui/react-cards:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react-cards:nx-release-publish': { - id: '@fluentui/react-cards:nx-release-publish', - target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, - projectRoot: 'packages/react-cards', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-cards:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/react-focus:build': { - roots: [ - '@fluentui/keyboard-key:build', - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/react-conformance:build', - ], - tasks: { - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/react-conformance:build': [], - }, - }, - '@fluentui/react-focus:bundle': { - roots: ['@fluentui/react-focus:bundle'], - tasks: { - '@fluentui/react-focus:bundle': { - id: '@fluentui/react-focus:bundle', - target: { project: '@fluentui/react-focus', target: 'bundle' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:bundle': [] }, - }, - '@fluentui/react-focus:clean': { - roots: ['@fluentui/react-focus:clean'], - tasks: { - '@fluentui/react-focus:clean': { - id: '@fluentui/react-focus:clean', - target: { project: '@fluentui/react-focus', target: 'clean' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:clean': [] }, - }, - '@fluentui/react-focus:code-style': { - roots: ['@fluentui/react-focus:code-style'], - tasks: { - '@fluentui/react-focus:code-style': { - id: '@fluentui/react-focus:code-style', - target: { project: '@fluentui/react-focus', target: 'code-style' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:code-style': [] }, - }, - '@fluentui/react-focus:just': { - roots: ['@fluentui/react-focus:just'], - tasks: { - '@fluentui/react-focus:just': { - id: '@fluentui/react-focus:just', - target: { project: '@fluentui/react-focus', target: 'just' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:just': [] }, - }, - '@fluentui/react-focus:lint': { - roots: ['@fluentui/react-focus:lint'], - tasks: { - '@fluentui/react-focus:lint': { - id: '@fluentui/react-focus:lint', - target: { project: '@fluentui/react-focus', target: 'lint' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:lint': [] }, - }, - '@fluentui/react-focus:start': { - roots: ['@fluentui/react-focus:start'], - tasks: { - '@fluentui/react-focus:start': { - id: '@fluentui/react-focus:start', - target: { project: '@fluentui/react-focus', target: 'start' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:start': [] }, - }, - '@fluentui/react-focus:start-test': { - roots: ['@fluentui/react-focus:start-test'], - tasks: { - '@fluentui/react-focus:start-test': { - id: '@fluentui/react-focus:start-test', - target: { project: '@fluentui/react-focus', target: 'start-test' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:start-test': [] }, - }, - '@fluentui/react-focus:test': { - roots: ['@fluentui/react-focus:test'], - tasks: { - '@fluentui/react-focus:test': { - id: '@fluentui/react-focus:test', - target: { project: '@fluentui/react-focus', target: 'test' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:test': [] }, - }, - '@fluentui/react-focus:update-snapshots': { - roots: ['@fluentui/react-focus:update-snapshots'], - tasks: { - '@fluentui/react-focus:update-snapshots': { - id: '@fluentui/react-focus:update-snapshots', - target: { project: '@fluentui/react-focus', target: 'update-snapshots' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react-focus:update-snapshots': [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: {}, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/scripts-lint-staged:format': { - roots: ['@fluentui/scripts-lint-staged:format'], - tasks: { - '@fluentui/scripts-lint-staged:format': { - id: '@fluentui/scripts-lint-staged:format', - target: { project: '@fluentui/scripts-lint-staged', target: 'format' }, - projectRoot: 'scripts/lint-staged', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-lint-staged:format': [] }, - }, - '@fluentui/scripts-lint-staged:format:check': { - roots: ['@fluentui/scripts-lint-staged:format:check'], - tasks: { - '@fluentui/scripts-lint-staged:format:check': { - id: '@fluentui/scripts-lint-staged:format:check', - target: { project: '@fluentui/scripts-lint-staged', target: 'format:check' }, - projectRoot: 'scripts/lint-staged', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-lint-staged:format:check': [] }, - }, - '@fluentui/scripts-lint-staged:lint': { - roots: ['@fluentui/scripts-lint-staged:lint'], - tasks: { - '@fluentui/scripts-lint-staged:lint': { - id: '@fluentui/scripts-lint-staged:lint', - target: { project: '@fluentui/scripts-lint-staged', target: 'lint' }, - projectRoot: 'scripts/lint-staged', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-lint-staged:lint': [] }, - }, - '@fluentui/scripts-lint-staged:test': { - roots: ['@fluentui/scripts-lint-staged:test'], - tasks: { - '@fluentui/scripts-lint-staged:test': { - id: '@fluentui/scripts-lint-staged:test', - target: { project: '@fluentui/scripts-lint-staged', target: 'test' }, - projectRoot: 'scripts/lint-staged', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-lint-staged:test': [] }, - }, - '@fluentui/scripts-lint-staged:type-check': { - roots: ['@fluentui/scripts-lint-staged:type-check'], - tasks: { - '@fluentui/scripts-lint-staged:type-check': { - id: '@fluentui/scripts-lint-staged:type-check', - target: { project: '@fluentui/scripts-lint-staged', target: 'type-check' }, - projectRoot: 'scripts/lint-staged', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-lint-staged:type-check': [] }, - }, - '@fluentui/scripts-lint-staged:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-lint-staged:nx-release-publish': { - id: '@fluentui/scripts-lint-staged:nx-release-publish', - target: { project: '@fluentui/scripts-lint-staged', target: 'nx-release-publish' }, - projectRoot: 'scripts/lint-staged', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-lint-staged:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - }, - }, - '@fluentui/pr-deploy-site:clean': { - roots: ['@fluentui/pr-deploy-site:clean'], - tasks: { - '@fluentui/pr-deploy-site:clean': { - id: '@fluentui/pr-deploy-site:clean', - target: { project: '@fluentui/pr-deploy-site', target: 'clean' }, - projectRoot: 'apps/pr-deploy-site', - overrides: {}, - }, - }, - dependencies: { '@fluentui/pr-deploy-site:clean': [] }, - }, - '@fluentui/pr-deploy-site:generate:site': { - roots: ['@fluentui/pr-deploy-site:generate:site'], - tasks: { - '@fluentui/pr-deploy-site:generate:site': { - id: '@fluentui/pr-deploy-site:generate:site', - target: { project: '@fluentui/pr-deploy-site', target: 'generate:site' }, - projectRoot: 'apps/pr-deploy-site', - overrides: {}, - }, - }, - dependencies: { '@fluentui/pr-deploy-site:generate:site': [] }, - }, - '@fluentui/pr-deploy-site:lint': { - roots: ['@fluentui/pr-deploy-site:lint'], - tasks: { - '@fluentui/pr-deploy-site:lint': { - id: '@fluentui/pr-deploy-site:lint', - target: { project: '@fluentui/pr-deploy-site', target: 'lint' }, - projectRoot: 'apps/pr-deploy-site', - overrides: {}, - }, - }, - dependencies: { '@fluentui/pr-deploy-site:lint': [] }, - }, - '@fluentui/pr-deploy-site:type-check': { - roots: ['@fluentui/pr-deploy-site:type-check'], - tasks: { - '@fluentui/pr-deploy-site:type-check': { - id: '@fluentui/pr-deploy-site:type-check', - target: { project: '@fluentui/pr-deploy-site', target: 'type-check' }, - projectRoot: 'apps/pr-deploy-site', - overrides: {}, - }, - }, - dependencies: { '@fluentui/pr-deploy-site:type-check': [] }, - }, - '@fluentui/pr-deploy-site:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/pr-deploy-site:nx-release-publish': { - id: '@fluentui/pr-deploy-site:nx-release-publish', - target: { project: '@fluentui/pr-deploy-site', target: 'nx-release-publish' }, - projectRoot: 'apps/pr-deploy-site', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/pr-deploy-site:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/public-docsite:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/monaco-editor:build', - '@fluentui/api-docs:build', - ], - tasks: { - '@fluentui/public-docsite:build': { - id: '@fluentui/public-docsite:build', - target: { project: '@fluentui/public-docsite', target: 'build' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-resources:build': { - id: '@fluentui/public-docsite-resources:build', - target: { project: '@fluentui/public-docsite-resources', target: 'build' }, - projectRoot: 'apps/public-docsite-resources', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-examples:build': { - id: '@fluentui/react-examples:build', - target: { project: '@fluentui/react-examples', target: 'build' }, - projectRoot: 'packages/react-examples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:build': { - id: '@fluentui/azure-themes:build', - target: { project: '@fluentui/azure-themes', target: 'build' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-cards:build': { - id: '@fluentui/react-cards:build', - target: { project: '@fluentui/react-cards', target: 'build' }, - projectRoot: 'packages/react-cards', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:build': { - id: '@fluentui/react-docsite-components:build', - target: { project: '@fluentui/react-docsite-components', target: 'build' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:build': { - id: '@fluentui/public-docsite-setup:build', - target: { project: '@fluentui/public-docsite-setup', target: 'build' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:build': { - id: '@fluentui/react-monaco-editor:build', - target: { project: '@fluentui/react-monaco-editor', target: 'build' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:build': { - id: '@fluentui/monaco-editor:build', - target: { project: '@fluentui/monaco-editor', target: 'build' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:build': { - id: '@fluentui/react-experiments:build', - target: { project: '@fluentui/react-experiments', target: 'build' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-file-type-icons:build': { - id: '@fluentui/react-file-type-icons:build', - target: { project: '@fluentui/react-file-type-icons', target: 'build' }, - projectRoot: 'packages/react-file-type-icons', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:build': { - id: '@fluentui/react-icons-mdl2:build', - target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:build': { - id: '@fluentui/react-icon-provider:build', - target: { project: '@fluentui/react-icon-provider', target: 'build' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:build': { - id: '@fluentui/storybook:build', - target: { project: '@fluentui/storybook', target: 'build' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/api-docs:build': { - id: '@fluentui/api-docs:build', - target: { project: '@fluentui/api-docs', target: 'build' }, - projectRoot: 'packages/api-docs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/fluent2-theme:build': { - id: '@fluentui/fluent2-theme:build', - target: { project: '@fluentui/fluent2-theme', target: 'build' }, - projectRoot: 'packages/fluent2-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2-branded:build': { - id: '@fluentui/react-icons-mdl2-branded:build', - target: { project: '@fluentui/react-icons-mdl2-branded', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2-branded', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/public-docsite:build': [ - '@fluentui/font-icons-mdl2:build', - '@fluentui/public-docsite-resources:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/react:build', - '@fluentui/react-docsite-components:build', - '@fluentui/react-examples:build', - '@fluentui/react-experiments:build', - '@fluentui/fluent2-theme:build', - '@fluentui/react-file-type-icons:build', - '@fluentui/react-icons-mdl2:build', - '@fluentui/react-icons-mdl2-branded:build', - '@fluentui/set-version:build', - '@fluentui/theme:build', - '@fluentui/theme-samples:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/react-monaco-editor:build', - ], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/public-docsite-resources:build': [ - '@fluentui/react:build', - '@fluentui/react-charting:build', - '@fluentui/react-examples:build', - '@fluentui/azure-themes:build', - '@fluentui/react-docsite-components:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/set-version:build', - '@fluentui/theme-samples:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/api-docs:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - '@fluentui/react-examples:build': [ - '@fluentui/azure-themes:build', - '@fluentui/date-time-utilities:build', - '@fluentui/dom-utilities:build', - '@fluentui/example-data:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/foundation-legacy:build', - '@fluentui/merge-styles:build', - '@fluentui/react:build', - '@fluentui/react-cards:build', - '@fluentui/react-charting:build', - '@fluentui/react-docsite-components:build', - '@fluentui/react-experiments:build', - '@fluentui/react-file-type-icons:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-icons-mdl2:build', - '@fluentui/scheme-utilities:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/theme-samples:build', - '@fluentui/utilities:build', - '@fluentui/storybook:build', - ], - '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react-cards:build': [ - '@fluentui/react:build', - '@fluentui/foundation-legacy:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-docsite-components:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/common-styles:build', - ], - '@fluentui/public-docsite-setup:build': [], - '@fluentui/react-monaco-editor:build': [ - '@fluentui/react:build', - '@fluentui/example-data:build', - '@fluentui/monaco-editor:build', - '@fluentui/react-hooks:build', - '@fluentui/react-charting:build', - ], - '@fluentui/monaco-editor:build': [], - '@fluentui/react-experiments:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/react-icons-mdl2:build': [ - '@fluentui/react-icon-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/storybook:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/azure-themes:build', - '@fluentui/theme-samples:build', - ], - '@fluentui/api-docs:build': [], - '@fluentui/fluent2-theme:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react-icons-mdl2-branded:build': ['@fluentui/set-version:build', '@fluentui/react-icons-mdl2:build'], - }, - }, - '@fluentui/public-docsite:bundle': { - roots: ['@fluentui/public-docsite:bundle'], - tasks: { - '@fluentui/public-docsite:bundle': { - id: '@fluentui/public-docsite:bundle', - target: { project: '@fluentui/public-docsite', target: 'bundle' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite:bundle': [] }, - }, - '@fluentui/public-docsite:lint': { - roots: ['@fluentui/public-docsite:lint'], - tasks: { - '@fluentui/public-docsite:lint': { - id: '@fluentui/public-docsite:lint', - target: { project: '@fluentui/public-docsite', target: 'lint' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite:lint': [] }, - }, - '@fluentui/public-docsite:test': { - roots: ['@fluentui/public-docsite:test'], - tasks: { - '@fluentui/public-docsite:test': { - id: '@fluentui/public-docsite:test', - target: { project: '@fluentui/public-docsite', target: 'test' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite:test': [] }, - }, - '@fluentui/public-docsite:just': { - roots: ['@fluentui/public-docsite:just'], - tasks: { - '@fluentui/public-docsite:just': { - id: '@fluentui/public-docsite:just', - target: { project: '@fluentui/public-docsite', target: 'just' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite:just': [] }, - }, - '@fluentui/public-docsite:clean': { - roots: ['@fluentui/public-docsite:clean'], - tasks: { - '@fluentui/public-docsite:clean': { - id: '@fluentui/public-docsite:clean', - target: { project: '@fluentui/public-docsite', target: 'clean' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite:clean': [] }, - }, - '@fluentui/public-docsite:code-style': { - roots: ['@fluentui/public-docsite:code-style'], - tasks: { - '@fluentui/public-docsite:code-style': { - id: '@fluentui/public-docsite:code-style', - target: { project: '@fluentui/public-docsite', target: 'code-style' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite:code-style': [] }, - }, - '@fluentui/public-docsite:start': { - roots: ['@fluentui/public-docsite:start'], - tasks: { - '@fluentui/public-docsite:start': { - id: '@fluentui/public-docsite:start', - target: { project: '@fluentui/public-docsite', target: 'start' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - }, - dependencies: { '@fluentui/public-docsite:start': [] }, - }, - '@fluentui/public-docsite:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/public-docsite:nx-release-publish': { - id: '@fluentui/public-docsite:nx-release-publish', - target: { project: '@fluentui/public-docsite', target: 'nx-release-publish' }, - projectRoot: 'apps/public-docsite', - overrides: {}, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-resources:nx-release-publish': { - id: '@fluentui/public-docsite-resources:nx-release-publish', - target: { project: '@fluentui/public-docsite-resources', target: 'nx-release-publish' }, - projectRoot: 'apps/public-docsite-resources', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-examples:nx-release-publish': { - id: '@fluentui/react-examples:nx-release-publish', - target: { project: '@fluentui/react-examples', target: 'nx-release-publish' }, - projectRoot: 'packages/react-examples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:nx-release-publish': { - id: '@fluentui/azure-themes:nx-release-publish', - target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-cards:nx-release-publish': { - id: '@fluentui/react-cards:nx-release-publish', - target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, - projectRoot: 'packages/react-cards', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:nx-release-publish': { - id: '@fluentui/react-docsite-components:nx-release-publish', - target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:nx-release-publish': { - id: '@fluentui/public-docsite-setup:nx-release-publish', - target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:nx-release-publish': { - id: '@fluentui/react-monaco-editor:nx-release-publish', - target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:nx-release-publish': { - id: '@fluentui/monaco-editor:nx-release-publish', - target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:nx-release-publish': { - id: '@fluentui/react-experiments:nx-release-publish', - target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-file-type-icons:nx-release-publish': { - id: '@fluentui/react-file-type-icons:nx-release-publish', - target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, - projectRoot: 'packages/react-file-type-icons', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:nx-release-publish': { - id: '@fluentui/react-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:nx-release-publish': { - id: '@fluentui/react-icon-provider:nx-release-publish', - target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:nx-release-publish': { - id: '@fluentui/storybook:nx-release-publish', - target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/api-docs:nx-release-publish': { - id: '@fluentui/api-docs:nx-release-publish', - target: { project: '@fluentui/api-docs', target: 'nx-release-publish' }, - projectRoot: 'packages/api-docs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/fluent2-theme:nx-release-publish': { - id: '@fluentui/fluent2-theme:nx-release-publish', - target: { project: '@fluentui/fluent2-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/fluent2-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2-branded:nx-release-publish': { - id: '@fluentui/react-icons-mdl2-branded:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2-branded', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2-branded', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/public-docsite:nx-release-publish': [ - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/public-docsite-resources:nx-release-publish', - '@fluentui/public-docsite-setup:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/react-examples:nx-release-publish', - '@fluentui/react-experiments:nx-release-publish', - '@fluentui/fluent2-theme:nx-release-publish', - '@fluentui/react-file-type-icons:nx-release-publish', - '@fluentui/react-icons-mdl2:nx-release-publish', - '@fluentui/react-icons-mdl2-branded:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/public-docsite-resources:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/react-examples:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/api-docs:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-examples:nx-release-publish': [ - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-cards:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/react-experiments:nx-release-publish', - '@fluentui/react-file-type-icons:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-icons-mdl2:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/storybook:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/azure-themes:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-cards:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-docsite-components:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/public-docsite-setup:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/public-docsite-setup:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-monaco-editor:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/monaco-editor:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/monaco-editor:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-experiments:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-file-type-icons:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-icons-mdl2:nx-release-publish': [ - '@fluentui/react-icon-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icon-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/storybook:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/api-docs:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/fluent2-theme:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icons-mdl2-branded:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/react-icons-mdl2:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/utilities:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/utilities:clean': { - roots: ['@fluentui/utilities:clean'], - tasks: { - '@fluentui/utilities:clean': { - id: '@fluentui/utilities:clean', - target: { project: '@fluentui/utilities', target: 'clean' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/utilities:clean': [] }, - }, - '@fluentui/utilities:code-style': { - roots: ['@fluentui/utilities:code-style'], - tasks: { - '@fluentui/utilities:code-style': { - id: '@fluentui/utilities:code-style', - target: { project: '@fluentui/utilities', target: 'code-style' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/utilities:code-style': [] }, - }, - '@fluentui/utilities:just': { - roots: ['@fluentui/utilities:just'], - tasks: { - '@fluentui/utilities:just': { - id: '@fluentui/utilities:just', - target: { project: '@fluentui/utilities', target: 'just' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/utilities:just': [] }, - }, - '@fluentui/utilities:lint': { - roots: ['@fluentui/utilities:lint'], - tasks: { - '@fluentui/utilities:lint': { - id: '@fluentui/utilities:lint', - target: { project: '@fluentui/utilities', target: 'lint' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/utilities:lint': [] }, - }, - '@fluentui/utilities:start-test': { - roots: ['@fluentui/utilities:start-test'], - tasks: { - '@fluentui/utilities:start-test': { - id: '@fluentui/utilities:start-test', - target: { project: '@fluentui/utilities', target: 'start-test' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/utilities:start-test': [] }, - }, - '@fluentui/utilities:test': { - roots: ['@fluentui/utilities:test'], - tasks: { - '@fluentui/utilities:test': { - id: '@fluentui/utilities:test', - target: { project: '@fluentui/utilities', target: 'test' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/utilities:test': [] }, - }, - '@fluentui/utilities:update-snapshots': { - roots: ['@fluentui/utilities:update-snapshots'], - tasks: { - '@fluentui/utilities:update-snapshots': { - id: '@fluentui/utilities:update-snapshots', - target: { project: '@fluentui/utilities', target: 'update-snapshots' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/utilities:update-snapshots': [] }, - }, - '@fluentui/utilities:verify-packaging': { - roots: ['@fluentui/utilities:verify-packaging'], - tasks: { - '@fluentui/utilities:verify-packaging': { - id: '@fluentui/utilities:verify-packaging', - target: { project: '@fluentui/utilities', target: 'verify-packaging' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - }, - dependencies: { '@fluentui/utilities:verify-packaging': [] }, - }, - '@fluentui/utilities:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: {}, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/scripts-triage-bot:format': { - roots: ['@fluentui/scripts-triage-bot:format'], - tasks: { - '@fluentui/scripts-triage-bot:format': { - id: '@fluentui/scripts-triage-bot:format', - target: { project: '@fluentui/scripts-triage-bot', target: 'format' }, - projectRoot: 'scripts/triage-bot', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-triage-bot:format': [] }, - }, - '@fluentui/scripts-triage-bot:format:check': { - roots: ['@fluentui/scripts-triage-bot:format:check'], - tasks: { - '@fluentui/scripts-triage-bot:format:check': { - id: '@fluentui/scripts-triage-bot:format:check', - target: { project: '@fluentui/scripts-triage-bot', target: 'format:check' }, - projectRoot: 'scripts/triage-bot', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-triage-bot:format:check': [] }, - }, - '@fluentui/scripts-triage-bot:lint': { - roots: ['@fluentui/scripts-triage-bot:lint'], - tasks: { - '@fluentui/scripts-triage-bot:lint': { - id: '@fluentui/scripts-triage-bot:lint', - target: { project: '@fluentui/scripts-triage-bot', target: 'lint' }, - projectRoot: 'scripts/triage-bot', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-triage-bot:lint': [] }, - }, - '@fluentui/scripts-triage-bot:test': { - roots: ['@fluentui/scripts-triage-bot:test'], - tasks: { - '@fluentui/scripts-triage-bot:test': { - id: '@fluentui/scripts-triage-bot:test', - target: { project: '@fluentui/scripts-triage-bot', target: 'test' }, - projectRoot: 'scripts/triage-bot', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-triage-bot:test': [] }, - }, - '@fluentui/scripts-triage-bot:type-check': { - roots: ['@fluentui/scripts-triage-bot:type-check'], - tasks: { - '@fluentui/scripts-triage-bot:type-check': { - id: '@fluentui/scripts-triage-bot:type-check', - target: { project: '@fluentui/scripts-triage-bot', target: 'type-check' }, - projectRoot: 'scripts/triage-bot', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-triage-bot:type-check': [] }, - }, - '@fluentui/scripts-triage-bot:nx-release-publish': { - roots: ['@fluentui/scripts-triage-bot:nx-release-publish'], - tasks: { - '@fluentui/scripts-triage-bot:nx-release-publish': { - id: '@fluentui/scripts-triage-bot:nx-release-publish', - target: { project: '@fluentui/scripts-triage-bot', target: 'nx-release-publish' }, - projectRoot: 'scripts/triage-bot', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-triage-bot:nx-release-publish': [] }, - }, - '@fluentui/storybook:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/storybook:build': { - id: '@fluentui/storybook:build', - target: { project: '@fluentui/storybook', target: 'build' }, - projectRoot: 'packages/storybook', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:build': { - id: '@fluentui/azure-themes:build', - target: { project: '@fluentui/azure-themes', target: 'build' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/storybook:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/azure-themes:build', - '@fluentui/theme-samples:build', - ], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - }, - }, - '@fluentui/storybook:clean': { - roots: ['@fluentui/storybook:clean'], - tasks: { - '@fluentui/storybook:clean': { - id: '@fluentui/storybook:clean', - target: { project: '@fluentui/storybook', target: 'clean' }, - projectRoot: 'packages/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/storybook:clean': [] }, - }, - '@fluentui/storybook:code-style': { - roots: ['@fluentui/storybook:code-style'], - tasks: { - '@fluentui/storybook:code-style': { - id: '@fluentui/storybook:code-style', - target: { project: '@fluentui/storybook', target: 'code-style' }, - projectRoot: 'packages/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/storybook:code-style': [] }, - }, - '@fluentui/storybook:just': { - roots: ['@fluentui/storybook:just'], - tasks: { - '@fluentui/storybook:just': { - id: '@fluentui/storybook:just', - target: { project: '@fluentui/storybook', target: 'just' }, - projectRoot: 'packages/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/storybook:just': [] }, - }, - '@fluentui/storybook:lint': { - roots: ['@fluentui/storybook:lint'], - tasks: { - '@fluentui/storybook:lint': { - id: '@fluentui/storybook:lint', - target: { project: '@fluentui/storybook', target: 'lint' }, - projectRoot: 'packages/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/storybook:lint': [] }, - }, - '@fluentui/storybook:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/storybook:nx-release-publish': { - id: '@fluentui/storybook:nx-release-publish', - target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, - projectRoot: 'packages/storybook', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:nx-release-publish': { - id: '@fluentui/azure-themes:nx-release-publish', - target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/storybook:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/azure-themes:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - }, - }, - '@fluentui/scripts-generators:format': { - roots: ['@fluentui/scripts-generators:format'], - tasks: { - '@fluentui/scripts-generators:format': { - id: '@fluentui/scripts-generators:format', - target: { project: '@fluentui/scripts-generators', target: 'format' }, - projectRoot: 'scripts/generators', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-generators:format': [] }, - }, - '@fluentui/scripts-generators:format:check': { - roots: ['@fluentui/scripts-generators:format:check'], - tasks: { - '@fluentui/scripts-generators:format:check': { - id: '@fluentui/scripts-generators:format:check', - target: { project: '@fluentui/scripts-generators', target: 'format:check' }, - projectRoot: 'scripts/generators', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-generators:format:check': [] }, - }, - '@fluentui/scripts-generators:lint': { - roots: ['@fluentui/scripts-generators:lint'], - tasks: { - '@fluentui/scripts-generators:lint': { - id: '@fluentui/scripts-generators:lint', - target: { project: '@fluentui/scripts-generators', target: 'lint' }, - projectRoot: 'scripts/generators', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-generators:lint': [] }, - }, - '@fluentui/scripts-generators:test': { - roots: ['@fluentui/scripts-generators:test'], - tasks: { - '@fluentui/scripts-generators:test': { - id: '@fluentui/scripts-generators:test', - target: { project: '@fluentui/scripts-generators', target: 'test' }, - projectRoot: 'scripts/generators', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-generators:test': [] }, - }, - '@fluentui/scripts-generators:type-check': { - roots: ['@fluentui/scripts-generators:type-check'], - tasks: { - '@fluentui/scripts-generators:type-check': { - id: '@fluentui/scripts-generators:type-check', - target: { project: '@fluentui/scripts-generators', target: 'type-check' }, - projectRoot: 'scripts/generators', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-generators:type-check': [] }, - }, - '@fluentui/scripts-generators:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish', '@fluentui/scripts-puppeteer:nx-release-publish'], - tasks: { - '@fluentui/scripts-generators:nx-release-publish': { - id: '@fluentui/scripts-generators:nx-release-publish', - target: { project: '@fluentui/scripts-generators', target: 'nx-release-publish' }, - projectRoot: 'scripts/generators', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-generators:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - }, - }, - '@fluentui/scripts-beachball:format': { - roots: ['@fluentui/scripts-beachball:format'], - tasks: { - '@fluentui/scripts-beachball:format': { - id: '@fluentui/scripts-beachball:format', - target: { project: '@fluentui/scripts-beachball', target: 'format' }, - projectRoot: 'scripts/beachball', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-beachball:format': [] }, - }, - '@fluentui/scripts-beachball:format:check': { - roots: ['@fluentui/scripts-beachball:format:check'], - tasks: { - '@fluentui/scripts-beachball:format:check': { - id: '@fluentui/scripts-beachball:format:check', - target: { project: '@fluentui/scripts-beachball', target: 'format:check' }, - projectRoot: 'scripts/beachball', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-beachball:format:check': [] }, - }, - '@fluentui/scripts-beachball:lint': { - roots: ['@fluentui/scripts-beachball:lint'], - tasks: { - '@fluentui/scripts-beachball:lint': { - id: '@fluentui/scripts-beachball:lint', - target: { project: '@fluentui/scripts-beachball', target: 'lint' }, - projectRoot: 'scripts/beachball', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-beachball:lint': [] }, - }, - '@fluentui/scripts-beachball:test': { - roots: ['@fluentui/scripts-beachball:test'], - tasks: { - '@fluentui/scripts-beachball:test': { - id: '@fluentui/scripts-beachball:test', - target: { project: '@fluentui/scripts-beachball', target: 'test' }, - projectRoot: 'scripts/beachball', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-beachball:test': [] }, - }, - '@fluentui/scripts-beachball:type-check': { - roots: ['@fluentui/scripts-beachball:type-check'], - tasks: { - '@fluentui/scripts-beachball:type-check': { - id: '@fluentui/scripts-beachball:type-check', - target: { project: '@fluentui/scripts-beachball', target: 'type-check' }, - projectRoot: 'scripts/beachball', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-beachball:type-check': [] }, - }, - '@fluentui/scripts-beachball:nx-release-publish': { - roots: [ - '@fluentui/scripts-github:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-ts-node:nx-release-publish', - ], - tasks: { - '@fluentui/scripts-beachball:nx-release-publish': { - id: '@fluentui/scripts-beachball:nx-release-publish', - target: { project: '@fluentui/scripts-beachball', target: 'nx-release-publish' }, - projectRoot: 'scripts/beachball', - overrides: {}, - }, - '@fluentui/scripts-github:nx-release-publish': { - id: '@fluentui/scripts-github:nx-release-publish', - target: { project: '@fluentui/scripts-github', target: 'nx-release-publish' }, - projectRoot: 'scripts/github', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-ts-node:nx-release-publish': { - id: '@fluentui/scripts-ts-node:nx-release-publish', - target: { project: '@fluentui/scripts-ts-node', target: 'nx-release-publish' }, - projectRoot: 'scripts/ts-node', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-beachball:nx-release-publish': [ - '@fluentui/scripts-github:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-ts-node:nx-release-publish', - ], - '@fluentui/scripts-github:nx-release-publish': [], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-ts-node:nx-release-publish': [], - }, - }, - '@fluentui/scripts-storybook:format': { - roots: ['@fluentui/scripts-storybook:format'], - tasks: { - '@fluentui/scripts-storybook:format': { - id: '@fluentui/scripts-storybook:format', - target: { project: '@fluentui/scripts-storybook', target: 'format' }, - projectRoot: 'scripts/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-storybook:format': [] }, - }, - '@fluentui/scripts-storybook:format:check': { - roots: ['@fluentui/scripts-storybook:format:check'], - tasks: { - '@fluentui/scripts-storybook:format:check': { - id: '@fluentui/scripts-storybook:format:check', - target: { project: '@fluentui/scripts-storybook', target: 'format:check' }, - projectRoot: 'scripts/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-storybook:format:check': [] }, - }, - '@fluentui/scripts-storybook:lint': { - roots: ['@fluentui/scripts-storybook:lint'], - tasks: { - '@fluentui/scripts-storybook:lint': { - id: '@fluentui/scripts-storybook:lint', - target: { project: '@fluentui/scripts-storybook', target: 'lint' }, - projectRoot: 'scripts/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-storybook:lint': [] }, - }, - '@fluentui/scripts-storybook:test': { - roots: ['@fluentui/scripts-storybook:test'], - tasks: { - '@fluentui/scripts-storybook:test': { - id: '@fluentui/scripts-storybook:test', - target: { project: '@fluentui/scripts-storybook', target: 'test' }, - projectRoot: 'scripts/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-storybook:test': [] }, - }, - '@fluentui/scripts-storybook:type-check': { - roots: ['@fluentui/scripts-storybook:type-check'], - tasks: { - '@fluentui/scripts-storybook:type-check': { - id: '@fluentui/scripts-storybook:type-check', - target: { project: '@fluentui/scripts-storybook', target: 'type-check' }, - projectRoot: 'scripts/storybook', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-storybook:type-check': [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - }, - }, - '@fluentui/codemods:build': { - roots: ['@fluentui/codemods:build'], - tasks: { - '@fluentui/codemods:build': { - id: '@fluentui/codemods:build', - target: { project: '@fluentui/codemods', target: 'build' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - }, - dependencies: { '@fluentui/codemods:build': [] }, - }, - '@fluentui/codemods:clean': { - roots: ['@fluentui/codemods:clean'], - tasks: { - '@fluentui/codemods:clean': { - id: '@fluentui/codemods:clean', - target: { project: '@fluentui/codemods', target: 'clean' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - }, - dependencies: { '@fluentui/codemods:clean': [] }, - }, - '@fluentui/codemods:code-style': { - roots: ['@fluentui/codemods:code-style'], - tasks: { - '@fluentui/codemods:code-style': { - id: '@fluentui/codemods:code-style', - target: { project: '@fluentui/codemods', target: 'code-style' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - }, - dependencies: { '@fluentui/codemods:code-style': [] }, - }, - '@fluentui/codemods:just': { - roots: ['@fluentui/codemods:just'], - tasks: { - '@fluentui/codemods:just': { - id: '@fluentui/codemods:just', - target: { project: '@fluentui/codemods', target: 'just' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - }, - dependencies: { '@fluentui/codemods:just': [] }, - }, - '@fluentui/codemods:lint': { - roots: ['@fluentui/codemods:lint'], - tasks: { - '@fluentui/codemods:lint': { - id: '@fluentui/codemods:lint', - target: { project: '@fluentui/codemods', target: 'lint' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - }, - dependencies: { '@fluentui/codemods:lint': [] }, - }, - '@fluentui/codemods:start-test': { - roots: ['@fluentui/codemods:start-test'], - tasks: { - '@fluentui/codemods:start-test': { - id: '@fluentui/codemods:start-test', - target: { project: '@fluentui/codemods', target: 'start-test' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - }, - dependencies: { '@fluentui/codemods:start-test': [] }, - }, - '@fluentui/codemods:test': { - roots: ['@fluentui/codemods:test'], - tasks: { - '@fluentui/codemods:test': { - id: '@fluentui/codemods:test', - target: { project: '@fluentui/codemods', target: 'test' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - }, - dependencies: { '@fluentui/codemods:test': [] }, - }, - '@fluentui/codemods:update-snapshots': { - roots: ['@fluentui/codemods:update-snapshots'], - tasks: { - '@fluentui/codemods:update-snapshots': { - id: '@fluentui/codemods:update-snapshots', - target: { project: '@fluentui/codemods', target: 'update-snapshots' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - }, - dependencies: { '@fluentui/codemods:update-snapshots': [] }, - }, - '@fluentui/codemods:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/codemods:nx-release-publish': { - id: '@fluentui/codemods:nx-release-publish', - target: { project: '@fluentui/codemods', target: 'nx-release-publish' }, - projectRoot: 'packages/codemods', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/codemods:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/ssr-tests-v9:clean': { - roots: ['@fluentui/ssr-tests-v9:clean'], - tasks: { - '@fluentui/ssr-tests-v9:clean': { - id: '@fluentui/ssr-tests-v9:clean', - target: { project: '@fluentui/ssr-tests-v9', target: 'clean' }, - projectRoot: 'apps/ssr-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests-v9:clean': [] }, - }, - '@fluentui/ssr-tests-v9:code-style': { - roots: ['@fluentui/ssr-tests-v9:code-style'], - tasks: { - '@fluentui/ssr-tests-v9:code-style': { - id: '@fluentui/ssr-tests-v9:code-style', - target: { project: '@fluentui/ssr-tests-v9', target: 'code-style' }, - projectRoot: 'apps/ssr-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests-v9:code-style': [] }, - }, - '@fluentui/ssr-tests-v9:lint': { - roots: ['@fluentui/ssr-tests-v9:lint'], - tasks: { - '@fluentui/ssr-tests-v9:lint': { - id: '@fluentui/ssr-tests-v9:lint', - target: { project: '@fluentui/ssr-tests-v9', target: 'lint' }, - projectRoot: 'apps/ssr-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests-v9:lint': [] }, - }, - '@fluentui/ssr-tests-v9:storybook': { - roots: ['@fluentui/ssr-tests-v9:storybook'], - tasks: { - '@fluentui/ssr-tests-v9:storybook': { - id: '@fluentui/ssr-tests-v9:storybook', - target: { project: '@fluentui/ssr-tests-v9', target: 'storybook' }, - projectRoot: 'apps/ssr-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests-v9:storybook': [] }, - }, - '@fluentui/ssr-tests-v9:test': { - roots: ['@fluentui/ssr-tests-v9:test'], - tasks: { - '@fluentui/ssr-tests-v9:test': { - id: '@fluentui/ssr-tests-v9:test', - target: { project: '@fluentui/ssr-tests-v9', target: 'test' }, - projectRoot: 'apps/ssr-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests-v9:test': [] }, - }, - '@fluentui/ssr-tests-v9:type-check': { - roots: ['@fluentui/ssr-tests-v9:type-check'], - tasks: { - '@fluentui/ssr-tests-v9:type-check': { - id: '@fluentui/ssr-tests-v9:type-check', - target: { project: '@fluentui/ssr-tests-v9', target: 'type-check' }, - projectRoot: 'apps/ssr-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests-v9:type-check': [] }, - }, - '@fluentui/ssr-tests-v9:test-ssr': { - roots: ['@fluentui/ssr-tests-v9:test-ssr'], - tasks: { - '@fluentui/ssr-tests-v9:test-ssr': { - id: '@fluentui/ssr-tests-v9:test-ssr', - target: { project: '@fluentui/ssr-tests-v9', target: 'test-ssr' }, - projectRoot: 'apps/ssr-tests-v9', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests-v9:test-ssr': [] }, - }, - '@fluentui/ssr-tests-v9:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/ssr-tests-v9:nx-release-publish': { - id: '@fluentui/ssr-tests-v9:nx-release-publish', - target: { project: '@fluentui/ssr-tests-v9', target: 'nx-release-publish' }, - projectRoot: 'apps/ssr-tests-v9', - overrides: {}, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/ssr-tests-v9:nx-release-publish': [ - '@fluentui/react-components:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/api-docs:build': { - roots: ['@fluentui/api-docs:build'], - tasks: { - '@fluentui/api-docs:build': { - id: '@fluentui/api-docs:build', - target: { project: '@fluentui/api-docs', target: 'build' }, - projectRoot: 'packages/api-docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/api-docs:build': [] }, - }, - '@fluentui/api-docs:clean': { - roots: ['@fluentui/api-docs:clean'], - tasks: { - '@fluentui/api-docs:clean': { - id: '@fluentui/api-docs:clean', - target: { project: '@fluentui/api-docs', target: 'clean' }, - projectRoot: 'packages/api-docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/api-docs:clean': [] }, - }, - '@fluentui/api-docs:just': { - roots: ['@fluentui/api-docs:just'], - tasks: { - '@fluentui/api-docs:just': { - id: '@fluentui/api-docs:just', - target: { project: '@fluentui/api-docs', target: 'just' }, - projectRoot: 'packages/api-docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/api-docs:just': [] }, - }, - '@fluentui/api-docs:lint': { - roots: ['@fluentui/api-docs:lint'], - tasks: { - '@fluentui/api-docs:lint': { - id: '@fluentui/api-docs:lint', - target: { project: '@fluentui/api-docs', target: 'lint' }, - projectRoot: 'packages/api-docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/api-docs:lint': [] }, - }, - '@fluentui/api-docs:test': { - roots: ['@fluentui/api-docs:test'], - tasks: { - '@fluentui/api-docs:test': { - id: '@fluentui/api-docs:test', - target: { project: '@fluentui/api-docs', target: 'test' }, - projectRoot: 'packages/api-docs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/api-docs:test': [] }, - }, - '@fluentui/api-docs:nx-release-publish': { - roots: ['@fluentui/eslint-plugin:nx-release-publish', '@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/api-docs:nx-release-publish': { - id: '@fluentui/api-docs:nx-release-publish', - target: { project: '@fluentui/api-docs', target: 'nx-release-publish' }, - projectRoot: 'packages/api-docs', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/api-docs:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-executors:format': { - roots: ['@fluentui/scripts-executors:format'], - tasks: { - '@fluentui/scripts-executors:format': { - id: '@fluentui/scripts-executors:format', - target: { project: '@fluentui/scripts-executors', target: 'format' }, - projectRoot: 'scripts/executors', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-executors:format': [] }, - }, - '@fluentui/scripts-executors:format:check': { - roots: ['@fluentui/scripts-executors:format:check'], - tasks: { - '@fluentui/scripts-executors:format:check': { - id: '@fluentui/scripts-executors:format:check', - target: { project: '@fluentui/scripts-executors', target: 'format:check' }, - projectRoot: 'scripts/executors', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-executors:format:check': [] }, - }, - '@fluentui/scripts-executors:lint': { - roots: ['@fluentui/scripts-executors:lint'], - tasks: { - '@fluentui/scripts-executors:lint': { - id: '@fluentui/scripts-executors:lint', - target: { project: '@fluentui/scripts-executors', target: 'lint' }, - projectRoot: 'scripts/executors', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-executors:lint': [] }, - }, - '@fluentui/scripts-executors:test': { - roots: ['@fluentui/scripts-executors:test'], - tasks: { - '@fluentui/scripts-executors:test': { - id: '@fluentui/scripts-executors:test', - target: { project: '@fluentui/scripts-executors', target: 'test' }, - projectRoot: 'scripts/executors', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-executors:test': [] }, - }, - '@fluentui/scripts-executors:type-check': { - roots: ['@fluentui/scripts-executors:type-check'], - tasks: { - '@fluentui/scripts-executors:type-check': { - id: '@fluentui/scripts-executors:type-check', - target: { project: '@fluentui/scripts-executors', target: 'type-check' }, - projectRoot: 'scripts/executors', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-executors:type-check': [] }, - }, - '@fluentui/scripts-executors:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-executors:nx-release-publish': { - id: '@fluentui/scripts-executors:nx-release-publish', - target: { project: '@fluentui/scripts-executors', target: 'nx-release-publish' }, - projectRoot: 'scripts/executors', - overrides: {}, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-executors:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-puppeteer:format': { - roots: ['@fluentui/scripts-puppeteer:format'], - tasks: { - '@fluentui/scripts-puppeteer:format': { - id: '@fluentui/scripts-puppeteer:format', - target: { project: '@fluentui/scripts-puppeteer', target: 'format' }, - projectRoot: 'scripts/puppeteer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-puppeteer:format': [] }, - }, - '@fluentui/scripts-puppeteer:format:check': { - roots: ['@fluentui/scripts-puppeteer:format:check'], - tasks: { - '@fluentui/scripts-puppeteer:format:check': { - id: '@fluentui/scripts-puppeteer:format:check', - target: { project: '@fluentui/scripts-puppeteer', target: 'format:check' }, - projectRoot: 'scripts/puppeteer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-puppeteer:format:check': [] }, - }, - '@fluentui/scripts-puppeteer:lint': { - roots: ['@fluentui/scripts-puppeteer:lint'], - tasks: { - '@fluentui/scripts-puppeteer:lint': { - id: '@fluentui/scripts-puppeteer:lint', - target: { project: '@fluentui/scripts-puppeteer', target: 'lint' }, - projectRoot: 'scripts/puppeteer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-puppeteer:lint': [] }, - }, - '@fluentui/scripts-puppeteer:test': { - roots: ['@fluentui/scripts-puppeteer:test'], - tasks: { - '@fluentui/scripts-puppeteer:test': { - id: '@fluentui/scripts-puppeteer:test', - target: { project: '@fluentui/scripts-puppeteer', target: 'test' }, - projectRoot: 'scripts/puppeteer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-puppeteer:test': [] }, - }, - '@fluentui/scripts-puppeteer:type-check': { - roots: ['@fluentui/scripts-puppeteer:type-check'], - tasks: { - '@fluentui/scripts-puppeteer:type-check': { - id: '@fluentui/scripts-puppeteer:type-check', - target: { project: '@fluentui/scripts-puppeteer', target: 'type-check' }, - projectRoot: 'scripts/puppeteer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-puppeteer:type-check': [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - roots: ['@fluentui/scripts-puppeteer:nx-release-publish'], - tasks: { - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-puppeteer:nx-release-publish': [] }, - }, - '@fluentui/scripts-prettier:format': { - roots: ['@fluentui/scripts-prettier:format'], - tasks: { - '@fluentui/scripts-prettier:format': { - id: '@fluentui/scripts-prettier:format', - target: { project: '@fluentui/scripts-prettier', target: 'format' }, - projectRoot: 'scripts/prettier', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-prettier:format': [] }, - }, - '@fluentui/scripts-prettier:format:check': { - roots: ['@fluentui/scripts-prettier:format:check'], - tasks: { - '@fluentui/scripts-prettier:format:check': { - id: '@fluentui/scripts-prettier:format:check', - target: { project: '@fluentui/scripts-prettier', target: 'format:check' }, - projectRoot: 'scripts/prettier', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-prettier:format:check': [] }, - }, - '@fluentui/scripts-prettier:lint': { - roots: ['@fluentui/scripts-prettier:lint'], - tasks: { - '@fluentui/scripts-prettier:lint': { - id: '@fluentui/scripts-prettier:lint', - target: { project: '@fluentui/scripts-prettier', target: 'lint' }, - projectRoot: 'scripts/prettier', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-prettier:lint': [] }, - }, - '@fluentui/scripts-prettier:test': { - roots: ['@fluentui/scripts-prettier:test'], - tasks: { - '@fluentui/scripts-prettier:test': { - id: '@fluentui/scripts-prettier:test', - target: { project: '@fluentui/scripts-prettier', target: 'test' }, - projectRoot: 'scripts/prettier', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-prettier:test': [] }, - }, - '@fluentui/scripts-prettier:type-check': { - roots: ['@fluentui/scripts-prettier:type-check'], - tasks: { - '@fluentui/scripts-prettier:type-check': { - id: '@fluentui/scripts-prettier:type-check', - target: { project: '@fluentui/scripts-prettier', target: 'type-check' }, - projectRoot: 'scripts/prettier', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-prettier:type-check': [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - }, - }, - '@fluentui/scripts-dangerjs:format': { - roots: ['@fluentui/scripts-dangerjs:format'], - tasks: { - '@fluentui/scripts-dangerjs:format': { - id: '@fluentui/scripts-dangerjs:format', - target: { project: '@fluentui/scripts-dangerjs', target: 'format' }, - projectRoot: 'scripts/dangerjs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-dangerjs:format': [] }, - }, - '@fluentui/scripts-dangerjs:format:check': { - roots: ['@fluentui/scripts-dangerjs:format:check'], - tasks: { - '@fluentui/scripts-dangerjs:format:check': { - id: '@fluentui/scripts-dangerjs:format:check', - target: { project: '@fluentui/scripts-dangerjs', target: 'format:check' }, - projectRoot: 'scripts/dangerjs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-dangerjs:format:check': [] }, - }, - '@fluentui/scripts-dangerjs:lint': { - roots: ['@fluentui/scripts-dangerjs:lint'], - tasks: { - '@fluentui/scripts-dangerjs:lint': { - id: '@fluentui/scripts-dangerjs:lint', - target: { project: '@fluentui/scripts-dangerjs', target: 'lint' }, - projectRoot: 'scripts/dangerjs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-dangerjs:lint': [] }, - }, - '@fluentui/scripts-dangerjs:test': { - roots: ['@fluentui/scripts-dangerjs:test'], - tasks: { - '@fluentui/scripts-dangerjs:test': { - id: '@fluentui/scripts-dangerjs:test', - target: { project: '@fluentui/scripts-dangerjs', target: 'test' }, - projectRoot: 'scripts/dangerjs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-dangerjs:test': [] }, - }, - '@fluentui/scripts-dangerjs:type-check': { - roots: ['@fluentui/scripts-dangerjs:type-check'], - tasks: { - '@fluentui/scripts-dangerjs:type-check': { - id: '@fluentui/scripts-dangerjs:type-check', - target: { project: '@fluentui/scripts-dangerjs', target: 'type-check' }, - projectRoot: 'scripts/dangerjs', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-dangerjs:type-check': [] }, - }, - '@fluentui/scripts-dangerjs:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-dangerjs:nx-release-publish': { - id: '@fluentui/scripts-dangerjs:nx-release-publish', - target: { project: '@fluentui/scripts-dangerjs', target: 'nx-release-publish' }, - projectRoot: 'scripts/dangerjs', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-dangerjs:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - }, - }, - '@fluentui/scripts-test-ssr:format': { - roots: ['@fluentui/scripts-test-ssr:format'], - tasks: { - '@fluentui/scripts-test-ssr:format': { - id: '@fluentui/scripts-test-ssr:format', - target: { project: '@fluentui/scripts-test-ssr', target: 'format' }, - projectRoot: 'scripts/test-ssr', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-test-ssr:format': [] }, - }, - '@fluentui/scripts-test-ssr:format:check': { - roots: ['@fluentui/scripts-test-ssr:format:check'], - tasks: { - '@fluentui/scripts-test-ssr:format:check': { - id: '@fluentui/scripts-test-ssr:format:check', - target: { project: '@fluentui/scripts-test-ssr', target: 'format:check' }, - projectRoot: 'scripts/test-ssr', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-test-ssr:format:check': [] }, - }, - '@fluentui/scripts-test-ssr:lint': { - roots: ['@fluentui/scripts-test-ssr:lint'], - tasks: { - '@fluentui/scripts-test-ssr:lint': { - id: '@fluentui/scripts-test-ssr:lint', - target: { project: '@fluentui/scripts-test-ssr', target: 'lint' }, - projectRoot: 'scripts/test-ssr', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-test-ssr:lint': [] }, - }, - '@fluentui/scripts-test-ssr:test': { - roots: ['@fluentui/scripts-test-ssr:test'], - tasks: { - '@fluentui/scripts-test-ssr:test': { - id: '@fluentui/scripts-test-ssr:test', - target: { project: '@fluentui/scripts-test-ssr', target: 'test' }, - projectRoot: 'scripts/test-ssr', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-test-ssr:test': [] }, - }, - '@fluentui/scripts-test-ssr:type-check': { - roots: ['@fluentui/scripts-test-ssr:type-check'], - tasks: { - '@fluentui/scripts-test-ssr:type-check': { - id: '@fluentui/scripts-test-ssr:type-check', - target: { project: '@fluentui/scripts-test-ssr', target: 'type-check' }, - projectRoot: 'scripts/test-ssr', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-test-ssr:type-check': [] }, - }, - '@fluentui/scripts-test-ssr:nx-release-publish': { - roots: ['@fluentui/scripts-puppeteer:nx-release-publish', '@fluentui/scripts-ts-node:nx-release-publish'], - tasks: { - '@fluentui/scripts-test-ssr:nx-release-publish': { - id: '@fluentui/scripts-test-ssr:nx-release-publish', - target: { project: '@fluentui/scripts-test-ssr', target: 'nx-release-publish' }, - projectRoot: 'scripts/test-ssr', - overrides: {}, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-ts-node:nx-release-publish': { - id: '@fluentui/scripts-ts-node:nx-release-publish', - target: { project: '@fluentui/scripts-ts-node', target: 'nx-release-publish' }, - projectRoot: 'scripts/ts-node', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-test-ssr:nx-release-publish': [ - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-ts-node:nx-release-publish', - ], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-ts-node:nx-release-publish': [], - }, - }, - '@fluentui/scripts-monorepo:format': { - roots: ['@fluentui/scripts-monorepo:format'], - tasks: { - '@fluentui/scripts-monorepo:format': { - id: '@fluentui/scripts-monorepo:format', - target: { project: '@fluentui/scripts-monorepo', target: 'format' }, - projectRoot: 'scripts/monorepo', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-monorepo:format': [] }, - }, - '@fluentui/scripts-monorepo:format:check': { - roots: ['@fluentui/scripts-monorepo:format:check'], - tasks: { - '@fluentui/scripts-monorepo:format:check': { - id: '@fluentui/scripts-monorepo:format:check', - target: { project: '@fluentui/scripts-monorepo', target: 'format:check' }, - projectRoot: 'scripts/monorepo', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-monorepo:format:check': [] }, - }, - '@fluentui/scripts-monorepo:lint': { - roots: ['@fluentui/scripts-monorepo:lint'], - tasks: { - '@fluentui/scripts-monorepo:lint': { - id: '@fluentui/scripts-monorepo:lint', - target: { project: '@fluentui/scripts-monorepo', target: 'lint' }, - projectRoot: 'scripts/monorepo', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-monorepo:lint': [] }, - }, - '@fluentui/scripts-monorepo:test': { - roots: ['@fluentui/scripts-monorepo:test'], - tasks: { - '@fluentui/scripts-monorepo:test': { - id: '@fluentui/scripts-monorepo:test', - target: { project: '@fluentui/scripts-monorepo', target: 'test' }, - projectRoot: 'scripts/monorepo', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-monorepo:test': [] }, - }, - '@fluentui/scripts-monorepo:type-check': { - roots: ['@fluentui/scripts-monorepo:type-check'], - tasks: { - '@fluentui/scripts-monorepo:type-check': { - id: '@fluentui/scripts-monorepo:type-check', - target: { project: '@fluentui/scripts-monorepo', target: 'type-check' }, - projectRoot: 'scripts/monorepo', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-monorepo:type-check': [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: {}, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - }, - }, - '@fluentui/stress-test:stress-test': { - roots: ['@fluentui/stress-test:stress-test'], - tasks: { - '@fluentui/stress-test:stress-test': { - id: '@fluentui/stress-test:stress-test', - target: { project: '@fluentui/stress-test', target: 'stress-test' }, - projectRoot: 'apps/stress-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/stress-test:stress-test': [] }, - }, - '@fluentui/stress-test:type-check': { - roots: ['@fluentui/stress-test:type-check'], - tasks: { - '@fluentui/stress-test:type-check': { - id: '@fluentui/stress-test:type-check', - target: { project: '@fluentui/stress-test', target: 'type-check' }, - projectRoot: 'apps/stress-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/stress-test:type-check': [] }, - }, - '@fluentui/stress-test:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/web-components:nx-release-publish', - ], - tasks: { - '@fluentui/stress-test:nx-release-publish': { - id: '@fluentui/stress-test:nx-release-publish', - target: { project: '@fluentui/stress-test', target: 'nx-release-publish' }, - projectRoot: 'apps/stress-test', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-components:nx-release-publish': { - id: '@fluentui/react-components:nx-release-publish', - target: { project: '@fluentui/react-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-accordion:nx-release-publish': { - id: '@fluentui/react-accordion:nx-release-publish', - target: { project: '@fluentui/react-accordion', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-accordion', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-aria:nx-release-publish': { - id: '@fluentui/react-aria:nx-release-publish', - target: { project: '@fluentui/react-aria', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-aria', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-keys:nx-release-publish': { - id: '@fluentui/keyboard-keys:nx-release-publish', - target: { project: '@fluentui/keyboard-keys', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/keyboard-keys', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-shared-contexts:nx-release-publish': { - id: '@fluentui/react-shared-contexts:nx-release-publish', - target: { project: '@fluentui/react-shared-contexts', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-shared-contexts', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-theme:nx-release-publish': { - id: '@fluentui/react-theme:nx-release-publish', - target: { project: '@fluentui/react-theme', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-utilities:nx-release-publish': { - id: '@fluentui/react-utilities:nx-release-publish', - target: { project: '@fluentui/react-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-context-selector:nx-release-publish': { - id: '@fluentui/react-context-selector:nx-release-publish', - target: { project: '@fluentui/react-context-selector', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-context-selector', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-jsx-runtime:nx-release-publish': { - id: '@fluentui/react-jsx-runtime:nx-release-publish', - target: { project: '@fluentui/react-jsx-runtime', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-jsx-runtime', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance-griffel:nx-release-publish': { - id: '@fluentui/react-conformance-griffel:nx-release-publish', - target: { project: '@fluentui/react-conformance-griffel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-conformance-griffel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabster:nx-release-publish': { - id: '@fluentui/react-tabster:nx-release-publish', - target: { project: '@fluentui/react-tabster', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabster', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-alert:nx-release-publish': { - id: '@fluentui/react-alert:nx-release-publish', - target: { project: '@fluentui/react-alert', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-alert', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-avatar:nx-release-publish': { - id: '@fluentui/react-avatar:nx-release-publish', - target: { project: '@fluentui/react-avatar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-avatar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-badge:nx-release-publish': { - id: '@fluentui/react-badge:nx-release-publish', - target: { project: '@fluentui/react-badge', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-badge', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-popover:nx-release-publish': { - id: '@fluentui/react-popover:nx-release-publish', - target: { project: '@fluentui/react-popover', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-popover', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal:nx-release-publish': { - id: '@fluentui/react-portal:nx-release-publish', - target: { project: '@fluentui/react-portal', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-positioning:nx-release-publish': { - id: '@fluentui/react-positioning:nx-release-publish', - target: { project: '@fluentui/react-positioning', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-positioning', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tooltip:nx-release-publish': { - id: '@fluentui/react-tooltip:nx-release-publish', - target: { project: '@fluentui/react-tooltip', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tooltip', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-button:nx-release-publish': { - id: '@fluentui/react-button:nx-release-publish', - target: { project: '@fluentui/react-button', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-button', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/a11y-testing:nx-release-publish': { - id: '@fluentui/a11y-testing:nx-release-publish', - target: { project: '@fluentui/a11y-testing', target: 'nx-release-publish' }, - projectRoot: 'packages/a11y-testing', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-card:nx-release-publish': { - id: '@fluentui/react-card:nx-release-publish', - target: { project: '@fluentui/react-card', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-card', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-checkbox:nx-release-publish': { - id: '@fluentui/react-checkbox:nx-release-publish', - target: { project: '@fluentui/react-checkbox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-checkbox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-field:nx-release-publish': { - id: '@fluentui/react-field:nx-release-publish', - target: { project: '@fluentui/react-field', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-field', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-label:nx-release-publish': { - id: '@fluentui/react-label:nx-release-publish', - target: { project: '@fluentui/react-label', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-label', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-combobox:nx-release-publish': { - id: '@fluentui/react-combobox:nx-release-publish', - target: { project: '@fluentui/react-combobox', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-combobox', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-dialog:nx-release-publish': { - id: '@fluentui/react-dialog:nx-release-publish', - target: { project: '@fluentui/react-dialog', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-dialog', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-divider:nx-release-publish': { - id: '@fluentui/react-divider:nx-release-publish', - target: { project: '@fluentui/react-divider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-divider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-drawer:nx-release-publish': { - id: '@fluentui/react-drawer:nx-release-publish', - target: { project: '@fluentui/react-drawer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-drawer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-motion-preview:nx-release-publish': { - id: '@fluentui/react-motion-preview:nx-release-publish', - target: { project: '@fluentui/react-motion-preview', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-motion-preview', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-image:nx-release-publish': { - id: '@fluentui/react-image:nx-release-publish', - target: { project: '@fluentui/react-image', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-image', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infobutton:nx-release-publish': { - id: '@fluentui/react-infobutton:nx-release-publish', - target: { project: '@fluentui/react-infobutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infobutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-infolabel:nx-release-publish': { - id: '@fluentui/react-infolabel:nx-release-publish', - target: { project: '@fluentui/react-infolabel', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-infolabel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-input:nx-release-publish': { - id: '@fluentui/react-input:nx-release-publish', - target: { project: '@fluentui/react-input', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-input', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-text:nx-release-publish': { - id: '@fluentui/react-text:nx-release-publish', - target: { project: '@fluentui/react-text', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-text', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-link:nx-release-publish': { - id: '@fluentui/react-link:nx-release-publish', - target: { project: '@fluentui/react-link', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-link', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-menu:nx-release-publish': { - id: '@fluentui/react-menu:nx-release-publish', - target: { project: '@fluentui/react-menu', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-menu', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-overflow:nx-release-publish': { - id: '@fluentui/react-overflow:nx-release-publish', - target: { project: '@fluentui/react-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/priority-overflow:nx-release-publish': { - id: '@fluentui/priority-overflow:nx-release-publish', - target: { project: '@fluentui/priority-overflow', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/priority-overflow', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-persona:nx-release-publish': { - id: '@fluentui/react-persona:nx-release-publish', - target: { project: '@fluentui/react-persona', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-persona', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-progress:nx-release-publish': { - id: '@fluentui/react-progress:nx-release-publish', - target: { project: '@fluentui/react-progress', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-progress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-provider:nx-release-publish': { - id: '@fluentui/react-provider:nx-release-publish', - target: { project: '@fluentui/react-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-radio:nx-release-publish': { - id: '@fluentui/react-radio:nx-release-publish', - target: { project: '@fluentui/react-radio', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-radio', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-select:nx-release-publish': { - id: '@fluentui/react-select:nx-release-publish', - target: { project: '@fluentui/react-select', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-select', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-skeleton:nx-release-publish': { - id: '@fluentui/react-skeleton:nx-release-publish', - target: { project: '@fluentui/react-skeleton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-skeleton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-slider:nx-release-publish': { - id: '@fluentui/react-slider:nx-release-publish', - target: { project: '@fluentui/react-slider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-slider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinbutton:nx-release-publish': { - id: '@fluentui/react-spinbutton:nx-release-publish', - target: { project: '@fluentui/react-spinbutton', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinbutton', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-spinner:nx-release-publish': { - id: '@fluentui/react-spinner:nx-release-publish', - target: { project: '@fluentui/react-spinner', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-spinner', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-switch:nx-release-publish': { - id: '@fluentui/react-switch:nx-release-publish', - target: { project: '@fluentui/react-switch', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-switch', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-table:nx-release-publish': { - id: '@fluentui/react-table:nx-release-publish', - target: { project: '@fluentui/react-table', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-table', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tabs:nx-release-publish': { - id: '@fluentui/react-tabs:nx-release-publish', - target: { project: '@fluentui/react-tabs', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tabs', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tags:nx-release-publish': { - id: '@fluentui/react-tags:nx-release-publish', - target: { project: '@fluentui/react-tags', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tags', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-textarea:nx-release-publish': { - id: '@fluentui/react-textarea:nx-release-publish', - target: { project: '@fluentui/react-textarea', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-textarea', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toast:nx-release-publish': { - id: '@fluentui/react-toast:nx-release-publish', - target: { project: '@fluentui/react-toast', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toast', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-toolbar:nx-release-publish': { - id: '@fluentui/react-toolbar:nx-release-publish', - target: { project: '@fluentui/react-toolbar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-toolbar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-virtualizer:nx-release-publish': { - id: '@fluentui/react-virtualizer:nx-release-publish', - target: { project: '@fluentui/react-virtualizer', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-virtualizer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-tree:nx-release-publish': { - id: '@fluentui/react-tree:nx-release-publish', - target: { project: '@fluentui/react-tree', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-tree', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-message-bar:nx-release-publish': { - id: '@fluentui/react-message-bar:nx-release-publish', - target: { project: '@fluentui/react-message-bar', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-message-bar', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-breadcrumb:nx-release-publish': { - id: '@fluentui/react-breadcrumb:nx-release-publish', - target: { project: '@fluentui/react-breadcrumb', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-breadcrumb', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/web-components:nx-release-publish': { - id: '@fluentui/web-components:nx-release-publish', - target: { project: '@fluentui/web-components', target: 'nx-release-publish' }, - projectRoot: 'packages/web-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/stress-test:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/react-components:nx-release-publish', - '@fluentui/web-components:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-components:nx-release-publish': [ - '@fluentui/react-accordion:nx-release-publish', - '@fluentui/react-alert:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-card:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-combobox:nx-release-publish', - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-drawer:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-image:nx-release-publish', - '@fluentui/react-infobutton:nx-release-publish', - '@fluentui/react-infolabel:nx-release-publish', - '@fluentui/react-input:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-menu:nx-release-publish', - '@fluentui/react-overflow:nx-release-publish', - '@fluentui/react-persona:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-progress:nx-release-publish', - '@fluentui/react-provider:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-select:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-skeleton:nx-release-publish', - '@fluentui/react-slider:nx-release-publish', - '@fluentui/react-spinbutton:nx-release-publish', - '@fluentui/react-spinner:nx-release-publish', - '@fluentui/react-switch:nx-release-publish', - '@fluentui/react-table:nx-release-publish', - '@fluentui/react-tabs:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-tags:nx-release-publish', - '@fluentui/react-textarea:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-toast:nx-release-publish', - '@fluentui/react-toolbar:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/react-virtualizer:nx-release-publish', - '@fluentui/react-tree:nx-release-publish', - '@fluentui/react-message-bar:nx-release-publish', - '@fluentui/react-breadcrumb:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-accordion:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-aria:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/keyboard-keys:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-shared-contexts:nx-release-publish': [ - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-theme:nx-release-publish': [ - '@fluentui/tokens:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-utilities:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-context-selector:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-jsx-runtime:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance-griffel:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabster:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/react-alert:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-avatar:nx-release-publish': [ - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-tooltip:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-badge:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-popover:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-positioning:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tooltip:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-button:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/a11y-testing:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-card:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-checkbox:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-field:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-label:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-combobox:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-dialog:nx-release-publish': [ - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-divider:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-drawer:nx-release-publish': [ - '@fluentui/react-dialog:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-motion-preview:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-motion-preview:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-image:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infobutton:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-infolabel:nx-release-publish': [ - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-popover:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-input:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-text:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-text:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-link:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/a11y-testing:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-menu:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-positioning:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-overflow:nx-release-publish': [ - '@fluentui/priority-overflow:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/priority-overflow:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-persona:nx-release-publish': [ - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-badge:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-progress:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-provider:nx-release-publish': [ - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-radio:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-select:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-skeleton:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-slider:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinbutton:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-spinner:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-switch:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-label:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-table:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tabs:nx-release-publish': [ - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tags:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-textarea:nx-release-publish': [ - '@fluentui/react-field:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toast:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-portal:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-toolbar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-divider:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-virtualizer:nx-release-publish': [ - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-tree:nx-release-publish': [ - '@fluentui/keyboard-keys:nx-release-publish', - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-avatar:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-checkbox:nx-release-publish', - '@fluentui/react-context-selector:nx-release-publish', - '@fluentui/react-radio:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - '@fluentui/react-message-bar:nx-release-publish': [ - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-breadcrumb:nx-release-publish': [ - '@fluentui/react-aria:nx-release-publish', - '@fluentui/react-button:nx-release-publish', - '@fluentui/react-link:nx-release-publish', - '@fluentui/react-shared-contexts:nx-release-publish', - '@fluentui/react-tabster:nx-release-publish', - '@fluentui/react-theme:nx-release-publish', - '@fluentui/react-utilities:nx-release-publish', - '@fluentui/react-jsx-runtime:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/react-conformance-griffel:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/web-components:nx-release-publish': [], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-cypress:format': { - roots: ['@fluentui/scripts-cypress:format'], - tasks: { - '@fluentui/scripts-cypress:format': { - id: '@fluentui/scripts-cypress:format', - target: { project: '@fluentui/scripts-cypress', target: 'format' }, - projectRoot: 'scripts/cypress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-cypress:format': [] }, - }, - '@fluentui/scripts-cypress:format:check': { - roots: ['@fluentui/scripts-cypress:format:check'], - tasks: { - '@fluentui/scripts-cypress:format:check': { - id: '@fluentui/scripts-cypress:format:check', - target: { project: '@fluentui/scripts-cypress', target: 'format:check' }, - projectRoot: 'scripts/cypress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-cypress:format:check': [] }, - }, - '@fluentui/scripts-cypress:lint': { - roots: ['@fluentui/scripts-cypress:lint'], - tasks: { - '@fluentui/scripts-cypress:lint': { - id: '@fluentui/scripts-cypress:lint', - target: { project: '@fluentui/scripts-cypress', target: 'lint' }, - projectRoot: 'scripts/cypress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-cypress:lint': [] }, - }, - '@fluentui/scripts-cypress:test': { - roots: ['@fluentui/scripts-cypress:test'], - tasks: { - '@fluentui/scripts-cypress:test': { - id: '@fluentui/scripts-cypress:test', - target: { project: '@fluentui/scripts-cypress', target: 'test' }, - projectRoot: 'scripts/cypress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-cypress:test': [] }, - }, - '@fluentui/scripts-cypress:type-check': { - roots: ['@fluentui/scripts-cypress:type-check'], - tasks: { - '@fluentui/scripts-cypress:type-check': { - id: '@fluentui/scripts-cypress:type-check', - target: { project: '@fluentui/scripts-cypress', target: 'type-check' }, - projectRoot: 'scripts/cypress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-cypress:type-check': [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - roots: ['@fluentui/scripts-cypress:nx-release-publish'], - tasks: { - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-cypress:nx-release-publish': [] }, - }, - '@fluentui/scripts-webpack:format': { - roots: ['@fluentui/scripts-webpack:format'], - tasks: { - '@fluentui/scripts-webpack:format': { - id: '@fluentui/scripts-webpack:format', - target: { project: '@fluentui/scripts-webpack', target: 'format' }, - projectRoot: 'scripts/webpack', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-webpack:format': [] }, - }, - '@fluentui/scripts-webpack:format:check': { - roots: ['@fluentui/scripts-webpack:format:check'], - tasks: { - '@fluentui/scripts-webpack:format:check': { - id: '@fluentui/scripts-webpack:format:check', - target: { project: '@fluentui/scripts-webpack', target: 'format:check' }, - projectRoot: 'scripts/webpack', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-webpack:format:check': [] }, - }, - '@fluentui/scripts-webpack:lint': { - roots: ['@fluentui/scripts-webpack:lint'], - tasks: { - '@fluentui/scripts-webpack:lint': { - id: '@fluentui/scripts-webpack:lint', - target: { project: '@fluentui/scripts-webpack', target: 'lint' }, - projectRoot: 'scripts/webpack', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-webpack:lint': [] }, - }, - '@fluentui/scripts-webpack:test': { - roots: ['@fluentui/scripts-webpack:test'], - tasks: { - '@fluentui/scripts-webpack:test': { - id: '@fluentui/scripts-webpack:test', - target: { project: '@fluentui/scripts-webpack', target: 'test' }, - projectRoot: 'scripts/webpack', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-webpack:test': [] }, - }, - '@fluentui/scripts-webpack:type-check': { - roots: ['@fluentui/scripts-webpack:type-check'], - tasks: { - '@fluentui/scripts-webpack:type-check': { - id: '@fluentui/scripts-webpack:type-check', - target: { project: '@fluentui/scripts-webpack', target: 'type-check' }, - projectRoot: 'scripts/webpack', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-webpack:type-check': [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - }, - }, - '@fluentui/tokens:build': { - roots: ['@fluentui/tokens:build'], - tasks: { - '@fluentui/tokens:build': { - id: '@fluentui/tokens:build', - target: { project: '@fluentui/tokens', target: 'build' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:build': [] }, - }, - '@fluentui/tokens:clean': { - roots: ['@fluentui/tokens:clean'], - tasks: { - '@fluentui/tokens:clean': { - id: '@fluentui/tokens:clean', - target: { project: '@fluentui/tokens', target: 'clean' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:clean': [] }, - }, - '@fluentui/tokens:code-style': { - roots: ['@fluentui/tokens:code-style'], - tasks: { - '@fluentui/tokens:code-style': { - id: '@fluentui/tokens:code-style', - target: { project: '@fluentui/tokens', target: 'code-style' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:code-style': [] }, - }, - '@fluentui/tokens:just': { - roots: ['@fluentui/tokens:just'], - tasks: { - '@fluentui/tokens:just': { - id: '@fluentui/tokens:just', - target: { project: '@fluentui/tokens', target: 'just' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:just': [] }, - }, - '@fluentui/tokens:lint': { - roots: ['@fluentui/tokens:lint'], - tasks: { - '@fluentui/tokens:lint': { - id: '@fluentui/tokens:lint', - target: { project: '@fluentui/tokens', target: 'lint' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:lint': [] }, - }, - '@fluentui/tokens:test': { - roots: ['@fluentui/tokens:test'], - tasks: { - '@fluentui/tokens:test': { - id: '@fluentui/tokens:test', - target: { project: '@fluentui/tokens', target: 'test' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:test': [] }, - }, - '@fluentui/tokens:token-pipeline': { - roots: ['@fluentui/tokens:token-pipeline'], - tasks: { - '@fluentui/tokens:token-pipeline': { - id: '@fluentui/tokens:token-pipeline', - target: { project: '@fluentui/tokens', target: 'token-pipeline' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:token-pipeline': [] }, - }, - '@fluentui/tokens:type-check': { - roots: ['@fluentui/tokens:type-check'], - tasks: { - '@fluentui/tokens:type-check': { - id: '@fluentui/tokens:type-check', - target: { project: '@fluentui/tokens', target: 'type-check' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:type-check': [] }, - }, - '@fluentui/tokens:generate-api': { - roots: ['@fluentui/tokens:generate-api'], - tasks: { - '@fluentui/tokens:generate-api': { - id: '@fluentui/tokens:generate-api', - target: { project: '@fluentui/tokens', target: 'generate-api' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - }, - dependencies: { '@fluentui/tokens:generate-api': [] }, - }, - '@fluentui/tokens:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/tokens:nx-release-publish': { - id: '@fluentui/tokens:nx-release-publish', - target: { project: '@fluentui/tokens', target: 'nx-release-publish' }, - projectRoot: 'packages/tokens', - overrides: {}, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/tokens:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-ts-node:format': { - roots: ['@fluentui/scripts-ts-node:format'], - tasks: { - '@fluentui/scripts-ts-node:format': { - id: '@fluentui/scripts-ts-node:format', - target: { project: '@fluentui/scripts-ts-node', target: 'format' }, - projectRoot: 'scripts/ts-node', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-ts-node:format': [] }, - }, - '@fluentui/scripts-ts-node:format:check': { - roots: ['@fluentui/scripts-ts-node:format:check'], - tasks: { - '@fluentui/scripts-ts-node:format:check': { - id: '@fluentui/scripts-ts-node:format:check', - target: { project: '@fluentui/scripts-ts-node', target: 'format:check' }, - projectRoot: 'scripts/ts-node', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-ts-node:format:check': [] }, - }, - '@fluentui/scripts-ts-node:lint': { - roots: ['@fluentui/scripts-ts-node:lint'], - tasks: { - '@fluentui/scripts-ts-node:lint': { - id: '@fluentui/scripts-ts-node:lint', - target: { project: '@fluentui/scripts-ts-node', target: 'lint' }, - projectRoot: 'scripts/ts-node', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-ts-node:lint': [] }, - }, - '@fluentui/scripts-ts-node:test': { - roots: ['@fluentui/scripts-ts-node:test'], - tasks: { - '@fluentui/scripts-ts-node:test': { - id: '@fluentui/scripts-ts-node:test', - target: { project: '@fluentui/scripts-ts-node', target: 'test' }, - projectRoot: 'scripts/ts-node', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-ts-node:test': [] }, - }, - '@fluentui/scripts-ts-node:type-check': { - roots: ['@fluentui/scripts-ts-node:type-check'], - tasks: { - '@fluentui/scripts-ts-node:type-check': { - id: '@fluentui/scripts-ts-node:type-check', - target: { project: '@fluentui/scripts-ts-node', target: 'type-check' }, - projectRoot: 'scripts/ts-node', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-ts-node:type-check': [] }, - }, - '@fluentui/scripts-ts-node:nx-release-publish': { - roots: ['@fluentui/scripts-ts-node:nx-release-publish'], - tasks: { - '@fluentui/scripts-ts-node:nx-release-publish': { - id: '@fluentui/scripts-ts-node:nx-release-publish', - target: { project: '@fluentui/scripts-ts-node', target: 'nx-release-publish' }, - projectRoot: 'scripts/ts-node', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-ts-node:nx-release-publish': [] }, - }, - '@fluentui/perf-test:bundle': { - roots: ['@fluentui/perf-test:bundle'], - tasks: { - '@fluentui/perf-test:bundle': { - id: '@fluentui/perf-test:bundle', - target: { project: '@fluentui/perf-test', target: 'bundle' }, - projectRoot: 'apps/perf-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test:bundle': [] }, - }, - '@fluentui/perf-test:lint': { - roots: ['@fluentui/perf-test:lint'], - tasks: { - '@fluentui/perf-test:lint': { - id: '@fluentui/perf-test:lint', - target: { project: '@fluentui/perf-test', target: 'lint' }, - projectRoot: 'apps/perf-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test:lint': [] }, - }, - '@fluentui/perf-test:just': { - roots: ['@fluentui/perf-test:just'], - tasks: { - '@fluentui/perf-test:just': { - id: '@fluentui/perf-test:just', - target: { project: '@fluentui/perf-test', target: 'just' }, - projectRoot: 'apps/perf-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test:just': [] }, - }, - '@fluentui/perf-test:clean': { - roots: ['@fluentui/perf-test:clean'], - tasks: { - '@fluentui/perf-test:clean': { - id: '@fluentui/perf-test:clean', - target: { project: '@fluentui/perf-test', target: 'clean' }, - projectRoot: 'apps/perf-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test:clean': [] }, - }, - '@fluentui/perf-test:code-style': { - roots: ['@fluentui/perf-test:code-style'], - tasks: { - '@fluentui/perf-test:code-style': { - id: '@fluentui/perf-test:code-style', - target: { project: '@fluentui/perf-test', target: 'code-style' }, - projectRoot: 'apps/perf-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test:code-style': [] }, - }, - '@fluentui/perf-test:type-check': { - roots: ['@fluentui/perf-test:type-check'], - tasks: { - '@fluentui/perf-test:type-check': { - id: '@fluentui/perf-test:type-check', - target: { project: '@fluentui/perf-test', target: 'type-check' }, - projectRoot: 'apps/perf-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test:type-check': [] }, - }, - '@fluentui/perf-test:test:perf': { - roots: ['@fluentui/perf-test:test:perf'], - tasks: { - '@fluentui/perf-test:test:perf': { - id: '@fluentui/perf-test:test:perf', - target: { project: '@fluentui/perf-test', target: 'test:perf' }, - projectRoot: 'apps/perf-test', - overrides: {}, - }, - }, - dependencies: { '@fluentui/perf-test:test:perf': [] }, - }, - '@fluentui/perf-test:nx-release-publish': { - roots: [ - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/perf-test:nx-release-publish': { - id: '@fluentui/perf-test:nx-release-publish', - target: { project: '@fluentui/perf-test', target: 'nx-release-publish' }, - projectRoot: 'apps/perf-test', - overrides: {}, - }, - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': { - id: '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', - target: { project: '@fluentui/scripts-perf-test-flamegrill', target: 'nx-release-publish' }, - projectRoot: 'scripts/perf-test-flamegrill', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/perf-test:nx-release-publish': [ - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - ], - '@fluentui/scripts-perf-test-flamegrill:nx-release-publish': [], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/theme:build': { - roots: ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - tasks: { - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - }, - }, - '@fluentui/theme:clean': { - roots: ['@fluentui/theme:clean'], - tasks: { - '@fluentui/theme:clean': { - id: '@fluentui/theme:clean', - target: { project: '@fluentui/theme', target: 'clean' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme:clean': [] }, - }, - '@fluentui/theme:code-style': { - roots: ['@fluentui/theme:code-style'], - tasks: { - '@fluentui/theme:code-style': { - id: '@fluentui/theme:code-style', - target: { project: '@fluentui/theme', target: 'code-style' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme:code-style': [] }, - }, - '@fluentui/theme:just': { - roots: ['@fluentui/theme:just'], - tasks: { - '@fluentui/theme:just': { - id: '@fluentui/theme:just', - target: { project: '@fluentui/theme', target: 'just' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme:just': [] }, - }, - '@fluentui/theme:lint': { - roots: ['@fluentui/theme:lint'], - tasks: { - '@fluentui/theme:lint': { - id: '@fluentui/theme:lint', - target: { project: '@fluentui/theme', target: 'lint' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme:lint': [] }, - }, - '@fluentui/theme:test': { - roots: ['@fluentui/theme:test'], - tasks: { - '@fluentui/theme:test': { - id: '@fluentui/theme:test', - target: { project: '@fluentui/theme', target: 'test' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme:test': [] }, - }, - '@fluentui/theme:start-test': { - roots: ['@fluentui/theme:start-test'], - tasks: { - '@fluentui/theme:start-test': { - id: '@fluentui/theme:start-test', - target: { project: '@fluentui/theme', target: 'start-test' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme:start-test': [] }, - }, - '@fluentui/theme:update-snapshots': { - roots: ['@fluentui/theme:update-snapshots'], - tasks: { - '@fluentui/theme:update-snapshots': { - id: '@fluentui/theme:update-snapshots', - target: { project: '@fluentui/theme', target: 'update-snapshots' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - }, - dependencies: { '@fluentui/theme:update-snapshots': [] }, - }, - '@fluentui/theme:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: {}, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/scripts-github:format': { - roots: ['@fluentui/scripts-github:format'], - tasks: { - '@fluentui/scripts-github:format': { - id: '@fluentui/scripts-github:format', - target: { project: '@fluentui/scripts-github', target: 'format' }, - projectRoot: 'scripts/github', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-github:format': [] }, - }, - '@fluentui/scripts-github:format:check': { - roots: ['@fluentui/scripts-github:format:check'], - tasks: { - '@fluentui/scripts-github:format:check': { - id: '@fluentui/scripts-github:format:check', - target: { project: '@fluentui/scripts-github', target: 'format:check' }, - projectRoot: 'scripts/github', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-github:format:check': [] }, - }, - '@fluentui/scripts-github:lint': { - roots: ['@fluentui/scripts-github:lint'], - tasks: { - '@fluentui/scripts-github:lint': { - id: '@fluentui/scripts-github:lint', - target: { project: '@fluentui/scripts-github', target: 'lint' }, - projectRoot: 'scripts/github', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-github:lint': [] }, - }, - '@fluentui/scripts-github:test': { - roots: ['@fluentui/scripts-github:test'], - tasks: { - '@fluentui/scripts-github:test': { - id: '@fluentui/scripts-github:test', - target: { project: '@fluentui/scripts-github', target: 'test' }, - projectRoot: 'scripts/github', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-github:test': [] }, - }, - '@fluentui/scripts-github:type-check': { - roots: ['@fluentui/scripts-github:type-check'], - tasks: { - '@fluentui/scripts-github:type-check': { - id: '@fluentui/scripts-github:type-check', - target: { project: '@fluentui/scripts-github', target: 'type-check' }, - projectRoot: 'scripts/github', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-github:type-check': [] }, - }, - '@fluentui/scripts-github:nx-release-publish': { - roots: ['@fluentui/scripts-github:nx-release-publish'], - tasks: { - '@fluentui/scripts-github:nx-release-publish': { - id: '@fluentui/scripts-github:nx-release-publish', - target: { project: '@fluentui/scripts-github', target: 'nx-release-publish' }, - projectRoot: 'scripts/github', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-github:nx-release-publish': [] }, - }, - '@fluentui/react:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: {}, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - }, - }, - '@fluentui/react:bundle': { - roots: ['@fluentui/react:bundle'], - tasks: { - '@fluentui/react:bundle': { - id: '@fluentui/react:bundle', - target: { project: '@fluentui/react', target: 'bundle' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:bundle': [] }, - }, - '@fluentui/react:bundle-size-auditor': { - roots: ['@fluentui/react:bundle-size-auditor'], - tasks: { - '@fluentui/react:bundle-size-auditor': { - id: '@fluentui/react:bundle-size-auditor', - target: { project: '@fluentui/react', target: 'bundle-size-auditor' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:bundle-size-auditor': [] }, - }, - '@fluentui/react:build-storybook': { - roots: ['@fluentui/react:build-storybook'], - tasks: { - '@fluentui/react:build-storybook': { - id: '@fluentui/react:build-storybook', - target: { project: '@fluentui/react', target: 'build-storybook' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:build-storybook': [] }, - }, - '@fluentui/react:clean': { - roots: ['@fluentui/react:clean'], - tasks: { - '@fluentui/react:clean': { - id: '@fluentui/react:clean', - target: { project: '@fluentui/react', target: 'clean' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:clean': [] }, - }, - '@fluentui/react:code-style': { - roots: ['@fluentui/react:code-style'], - tasks: { - '@fluentui/react:code-style': { - id: '@fluentui/react:code-style', - target: { project: '@fluentui/react', target: 'code-style' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:code-style': [] }, - }, - '@fluentui/react:codepen': { - roots: ['@fluentui/react:codepen'], - tasks: { - '@fluentui/react:codepen': { - id: '@fluentui/react:codepen', - target: { project: '@fluentui/react', target: 'codepen' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:codepen': [] }, - }, - '@fluentui/react:e2e': { - roots: ['@fluentui/react:e2e'], - tasks: { - '@fluentui/react:e2e': { - id: '@fluentui/react:e2e', - target: { project: '@fluentui/react', target: 'e2e' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:e2e': [] }, - }, - '@fluentui/react:e2e:local': { - roots: ['@fluentui/react:e2e:local'], - tasks: { - '@fluentui/react:e2e:local': { - id: '@fluentui/react:e2e:local', - target: { project: '@fluentui/react', target: 'e2e:local' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:e2e:local': [] }, - }, - '@fluentui/react:just': { - roots: ['@fluentui/react:just'], - tasks: { - '@fluentui/react:just': { - id: '@fluentui/react:just', - target: { project: '@fluentui/react', target: 'just' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:just': [] }, - }, - '@fluentui/react:lint': { - roots: ['@fluentui/react:lint'], - tasks: { - '@fluentui/react:lint': { - id: '@fluentui/react:lint', - target: { project: '@fluentui/react', target: 'lint' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:lint': [] }, - }, - '@fluentui/react:start': { - roots: ['@fluentui/react:start'], - tasks: { - '@fluentui/react:start': { - id: '@fluentui/react:start', - target: { project: '@fluentui/react', target: 'start' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:start': [] }, - }, - '@fluentui/react:start:legacy': { - roots: ['@fluentui/react:start:legacy'], - tasks: { - '@fluentui/react:start:legacy': { - id: '@fluentui/react:start:legacy', - target: { project: '@fluentui/react', target: 'start:legacy' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:start:legacy': [] }, - }, - '@fluentui/react:start-test': { - roots: ['@fluentui/react:start-test'], - tasks: { - '@fluentui/react:start-test': { - id: '@fluentui/react:start-test', - target: { project: '@fluentui/react', target: 'start-test' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:start-test': [] }, - }, - '@fluentui/react:test': { - roots: ['@fluentui/react:test'], - tasks: { - '@fluentui/react:test': { - id: '@fluentui/react:test', - target: { project: '@fluentui/react', target: 'test' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:test': [] }, - }, - '@fluentui/react:update-snapshots': { - roots: ['@fluentui/react:update-snapshots'], - tasks: { - '@fluentui/react:update-snapshots': { - id: '@fluentui/react:update-snapshots', - target: { project: '@fluentui/react', target: 'update-snapshots' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:update-snapshots': [] }, - }, - '@fluentui/react:mf': { - roots: ['@fluentui/react:mf'], - tasks: { - '@fluentui/react:mf': { - id: '@fluentui/react:mf', - target: { project: '@fluentui/react', target: 'mf' }, - projectRoot: 'packages/react', - overrides: {}, - }, - }, - dependencies: { '@fluentui/react:mf': [] }, - }, - '@fluentui/react:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - ], - tasks: { - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: {}, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/ssr-tests:build': { - roots: [ - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/example-data:build', - '@fluentui/webpack-utilities:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/monaco-editor:build', - '@fluentui/api-docs:build', - ], - tasks: { - '@fluentui/ssr-tests:build': { - id: '@fluentui/ssr-tests:build', - target: { project: '@fluentui/ssr-tests', target: 'build' }, - projectRoot: 'apps/ssr-tests', - overrides: {}, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-resources:build': { - id: '@fluentui/public-docsite-resources:build', - target: { project: '@fluentui/public-docsite-resources', target: 'build' }, - projectRoot: 'apps/public-docsite-resources', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-examples:build': { - id: '@fluentui/react-examples:build', - target: { project: '@fluentui/react-examples', target: 'build' }, - projectRoot: 'packages/react-examples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:build': { - id: '@fluentui/azure-themes:build', - target: { project: '@fluentui/azure-themes', target: 'build' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-cards:build': { - id: '@fluentui/react-cards:build', - target: { project: '@fluentui/react-cards', target: 'build' }, - projectRoot: 'packages/react-cards', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:build': { - id: '@fluentui/react-docsite-components:build', - target: { project: '@fluentui/react-docsite-components', target: 'build' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:build': { - id: '@fluentui/public-docsite-setup:build', - target: { project: '@fluentui/public-docsite-setup', target: 'build' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:build': { - id: '@fluentui/react-monaco-editor:build', - target: { project: '@fluentui/react-monaco-editor', target: 'build' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:build': { - id: '@fluentui/monaco-editor:build', - target: { project: '@fluentui/monaco-editor', target: 'build' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:build': { - id: '@fluentui/react-experiments:build', - target: { project: '@fluentui/react-experiments', target: 'build' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-file-type-icons:build': { - id: '@fluentui/react-file-type-icons:build', - target: { project: '@fluentui/react-file-type-icons', target: 'build' }, - projectRoot: 'packages/react-file-type-icons', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:build': { - id: '@fluentui/react-icons-mdl2:build', - target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:build': { - id: '@fluentui/react-icon-provider:build', - target: { project: '@fluentui/react-icon-provider', target: 'build' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:build': { - id: '@fluentui/storybook:build', - target: { project: '@fluentui/storybook', target: 'build' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/api-docs:build': { - id: '@fluentui/api-docs:build', - target: { project: '@fluentui/api-docs', target: 'build' }, - projectRoot: 'packages/api-docs', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/ssr-tests:build': ['@fluentui/react:build', '@fluentui/public-docsite-resources:build'], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/set-version:build': [], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/example-data:build': [], - '@fluentui/webpack-utilities:build': [], - '@fluentui/public-docsite-resources:build': [ - '@fluentui/react:build', - '@fluentui/react-charting:build', - '@fluentui/react-examples:build', - '@fluentui/azure-themes:build', - '@fluentui/react-docsite-components:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/set-version:build', - '@fluentui/theme-samples:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/api-docs:build', - ], - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - '@fluentui/react-examples:build': [ - '@fluentui/azure-themes:build', - '@fluentui/date-time-utilities:build', - '@fluentui/dom-utilities:build', - '@fluentui/example-data:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/foundation-legacy:build', - '@fluentui/merge-styles:build', - '@fluentui/react:build', - '@fluentui/react-cards:build', - '@fluentui/react-charting:build', - '@fluentui/react-docsite-components:build', - '@fluentui/react-experiments:build', - '@fluentui/react-file-type-icons:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-icons-mdl2:build', - '@fluentui/scheme-utilities:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/theme-samples:build', - '@fluentui/utilities:build', - '@fluentui/storybook:build', - ], - '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/react-cards:build': [ - '@fluentui/react:build', - '@fluentui/foundation-legacy:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-docsite-components:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/public-docsite-setup:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/react-monaco-editor:build', - '@fluentui/common-styles:build', - ], - '@fluentui/public-docsite-setup:build': [], - '@fluentui/react-monaco-editor:build': [ - '@fluentui/react:build', - '@fluentui/example-data:build', - '@fluentui/monaco-editor:build', - '@fluentui/react-hooks:build', - '@fluentui/react-charting:build', - ], - '@fluentui/monaco-editor:build': [], - '@fluentui/react-experiments:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-file-type-icons:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/react-icons-mdl2:build': [ - '@fluentui/react-icon-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/storybook:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/azure-themes:build', - '@fluentui/theme-samples:build', - ], - '@fluentui/api-docs:build': [], - }, - }, - '@fluentui/ssr-tests:bundle': { - roots: ['@fluentui/ssr-tests:bundle'], - tasks: { - '@fluentui/ssr-tests:bundle': { - id: '@fluentui/ssr-tests:bundle', - target: { project: '@fluentui/ssr-tests', target: 'bundle' }, - projectRoot: 'apps/ssr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests:bundle': [] }, - }, - '@fluentui/ssr-tests:test': { - roots: ['@fluentui/ssr-tests:test'], - tasks: { - '@fluentui/ssr-tests:test': { - id: '@fluentui/ssr-tests:test', - target: { project: '@fluentui/ssr-tests', target: 'test' }, - projectRoot: 'apps/ssr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests:test': [] }, - }, - '@fluentui/ssr-tests:code-style': { - roots: ['@fluentui/ssr-tests:code-style'], - tasks: { - '@fluentui/ssr-tests:code-style': { - id: '@fluentui/ssr-tests:code-style', - target: { project: '@fluentui/ssr-tests', target: 'code-style' }, - projectRoot: 'apps/ssr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests:code-style': [] }, - }, - '@fluentui/ssr-tests:clean': { - roots: ['@fluentui/ssr-tests:clean'], - tasks: { - '@fluentui/ssr-tests:clean': { - id: '@fluentui/ssr-tests:clean', - target: { project: '@fluentui/ssr-tests', target: 'clean' }, - projectRoot: 'apps/ssr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests:clean': [] }, - }, - '@fluentui/ssr-tests:just': { - roots: ['@fluentui/ssr-tests:just'], - tasks: { - '@fluentui/ssr-tests:just': { - id: '@fluentui/ssr-tests:just', - target: { project: '@fluentui/ssr-tests', target: 'just' }, - projectRoot: 'apps/ssr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/ssr-tests:just': [] }, - }, - '@fluentui/ssr-tests:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - ], - tasks: { - '@fluentui/ssr-tests:nx-release-publish': { - id: '@fluentui/ssr-tests:nx-release-publish', - target: { project: '@fluentui/ssr-tests', target: 'nx-release-publish' }, - projectRoot: 'apps/ssr-tests', - overrides: {}, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-resources:nx-release-publish': { - id: '@fluentui/public-docsite-resources:nx-release-publish', - target: { project: '@fluentui/public-docsite-resources', target: 'nx-release-publish' }, - projectRoot: 'apps/public-docsite-resources', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-examples:nx-release-publish': { - id: '@fluentui/react-examples:nx-release-publish', - target: { project: '@fluentui/react-examples', target: 'nx-release-publish' }, - projectRoot: 'packages/react-examples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:nx-release-publish': { - id: '@fluentui/azure-themes:nx-release-publish', - target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-cards:nx-release-publish': { - id: '@fluentui/react-cards:nx-release-publish', - target: { project: '@fluentui/react-cards', target: 'nx-release-publish' }, - projectRoot: 'packages/react-cards', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-docsite-components:nx-release-publish': { - id: '@fluentui/react-docsite-components:nx-release-publish', - target: { project: '@fluentui/react-docsite-components', target: 'nx-release-publish' }, - projectRoot: 'packages/react-docsite-components', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/public-docsite-setup:nx-release-publish': { - id: '@fluentui/public-docsite-setup:nx-release-publish', - target: { project: '@fluentui/public-docsite-setup', target: 'nx-release-publish' }, - projectRoot: 'packages/public-docsite-setup', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-monaco-editor:nx-release-publish': { - id: '@fluentui/react-monaco-editor:nx-release-publish', - target: { project: '@fluentui/react-monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/react-monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/monaco-editor:nx-release-publish': { - id: '@fluentui/monaco-editor:nx-release-publish', - target: { project: '@fluentui/monaco-editor', target: 'nx-release-publish' }, - projectRoot: 'packages/monaco-editor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:nx-release-publish': { - id: '@fluentui/react-experiments:nx-release-publish', - target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-file-type-icons:nx-release-publish': { - id: '@fluentui/react-file-type-icons:nx-release-publish', - target: { project: '@fluentui/react-file-type-icons', target: 'nx-release-publish' }, - projectRoot: 'packages/react-file-type-icons', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:nx-release-publish': { - id: '@fluentui/react-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:nx-release-publish': { - id: '@fluentui/react-icon-provider:nx-release-publish', - target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:nx-release-publish': { - id: '@fluentui/storybook:nx-release-publish', - target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-cypress:nx-release-publish': { - id: '@fluentui/scripts-cypress:nx-release-publish', - target: { project: '@fluentui/scripts-cypress', target: 'nx-release-publish' }, - projectRoot: 'scripts/cypress', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/api-docs:nx-release-publish': { - id: '@fluentui/api-docs:nx-release-publish', - target: { project: '@fluentui/api-docs', target: 'nx-release-publish' }, - projectRoot: 'packages/api-docs', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/ssr-tests:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/public-docsite-resources:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/public-docsite-resources:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/react-examples:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/api-docs:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-examples:nx-release-publish': [ - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-cards:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/react-docsite-components:nx-release-publish', - '@fluentui/react-experiments:nx-release-publish', - '@fluentui/react-file-type-icons:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-icons-mdl2:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/storybook:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - '@fluentui/scripts-cypress:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/azure-themes:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-cards:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-docsite-components:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/public-docsite-setup:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/react-monaco-editor:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/public-docsite-setup:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-monaco-editor:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/monaco-editor:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/monaco-editor:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-experiments:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-file-type-icons:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-icons-mdl2:nx-release-publish': [ - '@fluentui/react-icon-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icon-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/storybook:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/scripts-cypress:nx-release-publish': [], - '@fluentui/api-docs:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - }, - }, - '@fluentui/vr-tests:build': { - roots: [ - '@fluentui/example-data:build', - '@fluentui/set-version:build', - '@fluentui/test-utilities:build', - '@fluentui/keyboard-key:build', - '@fluentui/react-conformance:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/webpack-utilities:build', - ], - tasks: { - '@fluentui/vr-tests:build': { - id: '@fluentui/vr-tests:build', - target: { project: '@fluentui/vr-tests', target: 'build' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - '@fluentui/example-data:build': { - id: '@fluentui/example-data:build', - target: { project: '@fluentui/example-data', target: 'build' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:build': { - id: '@fluentui/font-icons-mdl2:build', - target: { project: '@fluentui/font-icons-mdl2', target: 'build' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:build': { - id: '@fluentui/set-version:build', - target: { project: '@fluentui/set-version', target: 'build' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:build': { - id: '@fluentui/style-utilities:build', - target: { project: '@fluentui/style-utilities', target: 'build' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:build': { - id: '@fluentui/theme:build', - target: { project: '@fluentui/theme', target: 'build' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:build': { - id: '@fluentui/merge-styles:build', - target: { project: '@fluentui/merge-styles', target: 'build' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:build': { - id: '@fluentui/utilities:build', - target: { project: '@fluentui/utilities', target: 'build' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:build': { - id: '@fluentui/dom-utilities:build', - target: { project: '@fluentui/dom-utilities', target: 'build' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:build': { - id: '@fluentui/jest-serializer-merge-styles:build', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'build' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:build': { - id: '@fluentui/test-utilities:build', - target: { project: '@fluentui/test-utilities', target: 'build' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:build': { - id: '@fluentui/react:build', - target: { project: '@fluentui/react', target: 'build' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:build': { - id: '@fluentui/date-time-utilities:build', - target: { project: '@fluentui/date-time-utilities', target: 'build' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:build': { - id: '@fluentui/foundation-legacy:build', - target: { project: '@fluentui/foundation-legacy', target: 'build' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:build': { - id: '@fluentui/react-focus:build', - target: { project: '@fluentui/react-focus', target: 'build' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:build': { - id: '@fluentui/keyboard-key:build', - target: { project: '@fluentui/keyboard-key', target: 'build' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:build': { - id: '@fluentui/react-conformance:build', - target: { project: '@fluentui/react-conformance', target: 'build' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:build': { - id: '@fluentui/react-hooks:build', - target: { project: '@fluentui/react-hooks', target: 'build' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:build': { - id: '@fluentui/react-window-provider:build', - target: { project: '@fluentui/react-window-provider', target: 'build' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:build': { - id: '@fluentui/react-portal-compat-context:build', - target: { project: '@fluentui/react-portal-compat-context', target: 'build' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:build': { - id: '@fluentui/common-styles:build', - target: { project: '@fluentui/common-styles', target: 'build' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:build': { - id: '@fluentui/webpack-utilities:build', - target: { project: '@fluentui/webpack-utilities', target: 'build' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:build': { - id: '@fluentui/react-experiments:build', - target: { project: '@fluentui/react-experiments', target: 'build' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:build': { - id: '@fluentui/react-icons-mdl2:build', - target: { project: '@fluentui/react-icons-mdl2', target: 'build' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:build': { - id: '@fluentui/react-icon-provider:build', - target: { project: '@fluentui/react-icon-provider', target: 'build' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:build': { - id: '@fluentui/storybook:build', - target: { project: '@fluentui/storybook', target: 'build' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:build': { - id: '@fluentui/azure-themes:build', - target: { project: '@fluentui/azure-themes', target: 'build' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:build': { - id: '@fluentui/theme-samples:build', - target: { project: '@fluentui/theme-samples', target: 'build' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:build': { - id: '@fluentui/scheme-utilities:build', - target: { project: '@fluentui/scheme-utilities', target: 'build' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:build': { - id: '@fluentui/react-charting:build', - target: { project: '@fluentui/react-charting', target: 'build' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/vr-tests:build': [ - '@fluentui/example-data:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/react:build', - '@fluentui/react-experiments:build', - '@fluentui/react-hooks:build', - '@fluentui/react-icons-mdl2:build', - '@fluentui/storybook:build', - '@fluentui/react-charting:build', - ], - '@fluentui/example-data:build': [], - '@fluentui/font-icons-mdl2:build': [ - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - ], - '@fluentui/set-version:build': [], - '@fluentui/style-utilities:build': [ - '@fluentui/theme:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/theme:build': [ - '@fluentui/merge-styles:build', - '@fluentui/utilities:build', - '@fluentui/set-version:build', - ], - '@fluentui/merge-styles:build': ['@fluentui/set-version:build'], - '@fluentui/utilities:build': [ - '@fluentui/dom-utilities:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/dom-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/jest-serializer-merge-styles:build': ['@fluentui/merge-styles:build'], - '@fluentui/test-utilities:build': [], - '@fluentui/react:build': [ - '@fluentui/date-time-utilities:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-focus:build', - '@fluentui/react-hooks:build', - '@fluentui/react-portal-compat-context:build', - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/theme:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/example-data:build', - '@fluentui/jest-serializer-merge-styles:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/webpack-utilities:build', - ], - '@fluentui/date-time-utilities:build': ['@fluentui/set-version:build'], - '@fluentui/foundation-legacy:build': [ - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-focus:build': [ - '@fluentui/keyboard-key:build', - '@fluentui/merge-styles:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/react-conformance:build', - '@fluentui/test-utilities:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/keyboard-key:build': [], - '@fluentui/react-conformance:build': [], - '@fluentui/react-hooks:build': [ - '@fluentui/react-window-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - '@fluentui/test-utilities:build', - ], - '@fluentui/react-window-provider:build': ['@fluentui/set-version:build', '@fluentui/test-utilities:build'], - '@fluentui/react-portal-compat-context:build': [], - '@fluentui/common-styles:build': ['@fluentui/style-utilities:build'], - '@fluentui/webpack-utilities:build': [], - '@fluentui/react-experiments:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/example-data:build', - '@fluentui/foundation-legacy:build', - '@fluentui/font-icons-mdl2:build', - '@fluentui/merge-styles:build', - '@fluentui/react-hooks:build', - '@fluentui/set-version:build', - '@fluentui/style-utilities:build', - '@fluentui/utilities:build', - '@fluentui/common-styles:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - '@fluentui/react-icons-mdl2:build': [ - '@fluentui/react-icon-provider:build', - '@fluentui/set-version:build', - '@fluentui/utilities:build', - ], - '@fluentui/react-icon-provider:build': ['@fluentui/set-version:build', '@fluentui/style-utilities:build'], - '@fluentui/storybook:build': [ - '@fluentui/react:build', - '@fluentui/theme:build', - '@fluentui/azure-themes:build', - '@fluentui/theme-samples:build', - ], - '@fluentui/azure-themes:build': ['@fluentui/react:build', '@fluentui/set-version:build'], - '@fluentui/theme-samples:build': [ - '@fluentui/react:build', - '@fluentui/set-version:build', - '@fluentui/scheme-utilities:build', - ], - '@fluentui/scheme-utilities:build': ['@fluentui/theme:build', '@fluentui/set-version:build'], - '@fluentui/react-charting:build': [ - '@fluentui/react-focus:build', - '@fluentui/theme-samples:build', - '@fluentui/set-version:build', - '@fluentui/react:build', - '@fluentui/jest-serializer-merge-styles:build', - ], - }, - }, - '@fluentui/vr-tests:clean': { - roots: ['@fluentui/vr-tests:clean'], - tasks: { - '@fluentui/vr-tests:clean': { - id: '@fluentui/vr-tests:clean', - target: { project: '@fluentui/vr-tests', target: 'clean' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests:clean': [] }, - }, - '@fluentui/vr-tests:code-style': { - roots: ['@fluentui/vr-tests:code-style'], - tasks: { - '@fluentui/vr-tests:code-style': { - id: '@fluentui/vr-tests:code-style', - target: { project: '@fluentui/vr-tests', target: 'code-style' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests:code-style': [] }, - }, - '@fluentui/vr-tests:just': { - roots: ['@fluentui/vr-tests:just'], - tasks: { - '@fluentui/vr-tests:just': { - id: '@fluentui/vr-tests:just', - target: { project: '@fluentui/vr-tests', target: 'just' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests:just': [] }, - }, - '@fluentui/vr-tests:lint': { - roots: ['@fluentui/vr-tests:lint'], - tasks: { - '@fluentui/vr-tests:lint': { - id: '@fluentui/vr-tests:lint', - target: { project: '@fluentui/vr-tests', target: 'lint' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests:lint': [] }, - }, - '@fluentui/vr-tests:start': { - roots: ['@fluentui/vr-tests:start'], - tasks: { - '@fluentui/vr-tests:start': { - id: '@fluentui/vr-tests:start', - target: { project: '@fluentui/vr-tests', target: 'start' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests:start': [] }, - }, - '@fluentui/vr-tests:type-check': { - roots: ['@fluentui/vr-tests:type-check'], - tasks: { - '@fluentui/vr-tests:type-check': { - id: '@fluentui/vr-tests:type-check', - target: { project: '@fluentui/vr-tests', target: 'type-check' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests:type-check': [] }, - }, - '@fluentui/vr-tests:vr:build': { - roots: ['@fluentui/vr-tests:vr:build'], - tasks: { - '@fluentui/vr-tests:vr:build': { - id: '@fluentui/vr-tests:vr:build', - target: { project: '@fluentui/vr-tests', target: 'vr:build' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests:vr:build': [] }, - }, - '@fluentui/vr-tests:vr:test': { - roots: ['@fluentui/vr-tests:vr:test'], - tasks: { - '@fluentui/vr-tests:vr:test': { - id: '@fluentui/vr-tests:vr:test', - target: { project: '@fluentui/vr-tests', target: 'vr:test' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - }, - dependencies: { '@fluentui/vr-tests:vr:test': [] }, - }, - '@fluentui/vr-tests:nx-release-publish': { - roots: [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - tasks: { - '@fluentui/vr-tests:nx-release-publish': { - id: '@fluentui/vr-tests:nx-release-publish', - target: { project: '@fluentui/vr-tests', target: 'nx-release-publish' }, - projectRoot: 'apps/vr-tests', - overrides: {}, - }, - '@fluentui/example-data:nx-release-publish': { - id: '@fluentui/example-data:nx-release-publish', - target: { project: '@fluentui/example-data', target: 'nx-release-publish' }, - projectRoot: 'packages/example-data', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/eslint-plugin:nx-release-publish': { - id: '@fluentui/eslint-plugin:nx-release-publish', - target: { project: '@fluentui/eslint-plugin', target: 'nx-release-publish' }, - projectRoot: 'packages/eslint-plugin', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-api-extractor:nx-release-publish': { - id: '@fluentui/scripts-api-extractor:nx-release-publish', - target: { project: '@fluentui/scripts-api-extractor', target: 'nx-release-publish' }, - projectRoot: 'scripts/api-extractor', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-webpack:nx-release-publish': { - id: '@fluentui/scripts-webpack:nx-release-publish', - target: { project: '@fluentui/scripts-webpack', target: 'nx-release-publish' }, - projectRoot: 'scripts/webpack', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/font-icons-mdl2:nx-release-publish': { - id: '@fluentui/font-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/font-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/font-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/set-version:nx-release-publish': { - id: '@fluentui/set-version:nx-release-publish', - target: { project: '@fluentui/set-version', target: 'nx-release-publish' }, - projectRoot: 'packages/set-version', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/style-utilities:nx-release-publish': { - id: '@fluentui/style-utilities:nx-release-publish', - target: { project: '@fluentui/style-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/style-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme:nx-release-publish': { - id: '@fluentui/theme:nx-release-publish', - target: { project: '@fluentui/theme', target: 'nx-release-publish' }, - projectRoot: 'packages/theme', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/merge-styles:nx-release-publish': { - id: '@fluentui/merge-styles:nx-release-publish', - target: { project: '@fluentui/merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/utilities:nx-release-publish': { - id: '@fluentui/utilities:nx-release-publish', - target: { project: '@fluentui/utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/dom-utilities:nx-release-publish': { - id: '@fluentui/dom-utilities:nx-release-publish', - target: { project: '@fluentui/dom-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/dom-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/jest-serializer-merge-styles:nx-release-publish': { - id: '@fluentui/jest-serializer-merge-styles:nx-release-publish', - target: { project: '@fluentui/jest-serializer-merge-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/jest-serializer-merge-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/test-utilities:nx-release-publish': { - id: '@fluentui/test-utilities:nx-release-publish', - target: { project: '@fluentui/test-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/test-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react:nx-release-publish': { - id: '@fluentui/react:nx-release-publish', - target: { project: '@fluentui/react', target: 'nx-release-publish' }, - projectRoot: 'packages/react', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/date-time-utilities:nx-release-publish': { - id: '@fluentui/date-time-utilities:nx-release-publish', - target: { project: '@fluentui/date-time-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/date-time-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/foundation-legacy:nx-release-publish': { - id: '@fluentui/foundation-legacy:nx-release-publish', - target: { project: '@fluentui/foundation-legacy', target: 'nx-release-publish' }, - projectRoot: 'packages/foundation-legacy', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-focus:nx-release-publish': { - id: '@fluentui/react-focus:nx-release-publish', - target: { project: '@fluentui/react-focus', target: 'nx-release-publish' }, - projectRoot: 'packages/react-focus', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/keyboard-key:nx-release-publish': { - id: '@fluentui/keyboard-key:nx-release-publish', - target: { project: '@fluentui/keyboard-key', target: 'nx-release-publish' }, - projectRoot: 'packages/keyboard-key', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-conformance:nx-release-publish': { - id: '@fluentui/react-conformance:nx-release-publish', - target: { project: '@fluentui/react-conformance', target: 'nx-release-publish' }, - projectRoot: 'packages/react-conformance', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-hooks:nx-release-publish': { - id: '@fluentui/react-hooks:nx-release-publish', - target: { project: '@fluentui/react-hooks', target: 'nx-release-publish' }, - projectRoot: 'packages/react-hooks', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-window-provider:nx-release-publish': { - id: '@fluentui/react-window-provider:nx-release-publish', - target: { project: '@fluentui/react-window-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-window-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-portal-compat-context:nx-release-publish': { - id: '@fluentui/react-portal-compat-context:nx-release-publish', - target: { project: '@fluentui/react-portal-compat-context', target: 'nx-release-publish' }, - projectRoot: 'packages/react-components/react-portal-compat-context', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/common-styles:nx-release-publish': { - id: '@fluentui/common-styles:nx-release-publish', - target: { project: '@fluentui/common-styles', target: 'nx-release-publish' }, - projectRoot: 'packages/common-styles', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/webpack-utilities:nx-release-publish': { - id: '@fluentui/webpack-utilities:nx-release-publish', - target: { project: '@fluentui/webpack-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/webpack-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-experiments:nx-release-publish': { - id: '@fluentui/react-experiments:nx-release-publish', - target: { project: '@fluentui/react-experiments', target: 'nx-release-publish' }, - projectRoot: 'packages/react-experiments', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icons-mdl2:nx-release-publish': { - id: '@fluentui/react-icons-mdl2:nx-release-publish', - target: { project: '@fluentui/react-icons-mdl2', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icons-mdl2', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-icon-provider:nx-release-publish': { - id: '@fluentui/react-icon-provider:nx-release-publish', - target: { project: '@fluentui/react-icon-provider', target: 'nx-release-publish' }, - projectRoot: 'packages/react-icon-provider', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/storybook:nx-release-publish': { - id: '@fluentui/storybook:nx-release-publish', - target: { project: '@fluentui/storybook', target: 'nx-release-publish' }, - projectRoot: 'packages/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/azure-themes:nx-release-publish': { - id: '@fluentui/azure-themes:nx-release-publish', - target: { project: '@fluentui/azure-themes', target: 'nx-release-publish' }, - projectRoot: 'packages/azure-themes', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/theme-samples:nx-release-publish': { - id: '@fluentui/theme-samples:nx-release-publish', - target: { project: '@fluentui/theme-samples', target: 'nx-release-publish' }, - projectRoot: 'packages/theme-samples', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scheme-utilities:nx-release-publish': { - id: '@fluentui/scheme-utilities:nx-release-publish', - target: { project: '@fluentui/scheme-utilities', target: 'nx-release-publish' }, - projectRoot: 'packages/scheme-utilities', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/react-charting:nx-release-publish': { - id: '@fluentui/react-charting:nx-release-publish', - target: { project: '@fluentui/react-charting', target: 'nx-release-publish' }, - projectRoot: 'packages/react-charting', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-storybook:nx-release-publish': { - id: '@fluentui/scripts-storybook:nx-release-publish', - target: { project: '@fluentui/scripts-storybook', target: 'nx-release-publish' }, - projectRoot: 'scripts/storybook', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/vr-tests:nx-release-publish': [ - '@fluentui/example-data:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/react-experiments:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-icons-mdl2:nx-release-publish', - '@fluentui/storybook:nx-release-publish', - '@fluentui/react-charting:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-storybook:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/example-data:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/eslint-plugin:nx-release-publish': [], - '@fluentui/scripts-api-extractor:nx-release-publish': [], - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-webpack:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/font-icons-mdl2:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/set-version:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/style-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/theme:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/merge-styles:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/utilities:nx-release-publish': [ - '@fluentui/dom-utilities:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/dom-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/jest-serializer-merge-styles:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/test-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react:nx-release-publish': [ - '@fluentui/date-time-utilities:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-focus:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/react-portal-compat-context:nx-release-publish', - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/webpack-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/date-time-utilities:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/foundation-legacy:nx-release-publish': [ - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-focus:nx-release-publish': [ - '@fluentui/keyboard-key:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react-conformance:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/keyboard-key:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-conformance:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-hooks:nx-release-publish': [ - '@fluentui/react-window-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-window-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/test-utilities:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-portal-compat-context:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/common-styles:nx-release-publish': [ - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/webpack-utilities:nx-release-publish': [ - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/react-experiments:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/example-data:nx-release-publish', - '@fluentui/foundation-legacy:nx-release-publish', - '@fluentui/font-icons-mdl2:nx-release-publish', - '@fluentui/merge-styles:nx-release-publish', - '@fluentui/react-hooks:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/common-styles:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icons-mdl2:nx-release-publish': [ - '@fluentui/react-icon-provider:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-icon-provider:nx-release-publish': [ - '@fluentui/set-version:nx-release-publish', - '@fluentui/style-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/storybook:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/theme:nx-release-publish', - '@fluentui/azure-themes:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - ], - '@fluentui/azure-themes:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/theme-samples:nx-release-publish': [ - '@fluentui/react:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/scheme-utilities:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scheme-utilities:nx-release-publish': [ - '@fluentui/theme:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/react-charting:nx-release-publish': [ - '@fluentui/react-focus:nx-release-publish', - '@fluentui/theme-samples:nx-release-publish', - '@fluentui/set-version:nx-release-publish', - '@fluentui/eslint-plugin:nx-release-publish', - '@fluentui/react:nx-release-publish', - '@fluentui/jest-serializer-merge-styles:nx-release-publish', - '@fluentui/scripts-api-extractor:nx-release-publish', - '@fluentui/scripts-jest:nx-release-publish', - '@fluentui/scripts-tasks:nx-release-publish', - '@fluentui/scripts-webpack:nx-release-publish', - ], - '@fluentui/scripts-storybook:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-utils:format': { - roots: ['@fluentui/scripts-utils:format'], - tasks: { - '@fluentui/scripts-utils:format': { - id: '@fluentui/scripts-utils:format', - target: { project: '@fluentui/scripts-utils', target: 'format' }, - projectRoot: 'scripts/utils', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-utils:format': [] }, - }, - '@fluentui/scripts-utils:format:check': { - roots: ['@fluentui/scripts-utils:format:check'], - tasks: { - '@fluentui/scripts-utils:format:check': { - id: '@fluentui/scripts-utils:format:check', - target: { project: '@fluentui/scripts-utils', target: 'format:check' }, - projectRoot: 'scripts/utils', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-utils:format:check': [] }, - }, - '@fluentui/scripts-utils:lint': { - roots: ['@fluentui/scripts-utils:lint'], - tasks: { - '@fluentui/scripts-utils:lint': { - id: '@fluentui/scripts-utils:lint', - target: { project: '@fluentui/scripts-utils', target: 'lint' }, - projectRoot: 'scripts/utils', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-utils:lint': [] }, - }, - '@fluentui/scripts-utils:test': { - roots: ['@fluentui/scripts-utils:test'], - tasks: { - '@fluentui/scripts-utils:test': { - id: '@fluentui/scripts-utils:test', - target: { project: '@fluentui/scripts-utils', target: 'test' }, - projectRoot: 'scripts/utils', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-utils:test': [] }, - }, - '@fluentui/scripts-utils:type-check': { - roots: ['@fluentui/scripts-utils:type-check'], - tasks: { - '@fluentui/scripts-utils:type-check': { - id: '@fluentui/scripts-utils:type-check', - target: { project: '@fluentui/scripts-utils', target: 'type-check' }, - projectRoot: 'scripts/utils', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-utils:type-check': [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-utils:nx-release-publish': [] }, - }, - '@fluentui/scripts-tasks:format': { - roots: ['@fluentui/scripts-tasks:format'], - tasks: { - '@fluentui/scripts-tasks:format': { - id: '@fluentui/scripts-tasks:format', - target: { project: '@fluentui/scripts-tasks', target: 'format' }, - projectRoot: 'scripts/tasks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-tasks:format': [] }, - }, - '@fluentui/scripts-tasks:format:check': { - roots: ['@fluentui/scripts-tasks:format:check'], - tasks: { - '@fluentui/scripts-tasks:format:check': { - id: '@fluentui/scripts-tasks:format:check', - target: { project: '@fluentui/scripts-tasks', target: 'format:check' }, - projectRoot: 'scripts/tasks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-tasks:format:check': [] }, - }, - '@fluentui/scripts-tasks:lint': { - roots: ['@fluentui/scripts-tasks:lint'], - tasks: { - '@fluentui/scripts-tasks:lint': { - id: '@fluentui/scripts-tasks:lint', - target: { project: '@fluentui/scripts-tasks', target: 'lint' }, - projectRoot: 'scripts/tasks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-tasks:lint': [] }, - }, - '@fluentui/scripts-tasks:test': { - roots: ['@fluentui/scripts-tasks:test'], - tasks: { - '@fluentui/scripts-tasks:test': { - id: '@fluentui/scripts-tasks:test', - target: { project: '@fluentui/scripts-tasks', target: 'test' }, - projectRoot: 'scripts/tasks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-tasks:test': [] }, - }, - '@fluentui/scripts-tasks:type-check': { - roots: ['@fluentui/scripts-tasks:type-check'], - tasks: { - '@fluentui/scripts-tasks:type-check': { - id: '@fluentui/scripts-tasks:type-check', - target: { project: '@fluentui/scripts-tasks', target: 'type-check' }, - projectRoot: 'scripts/tasks', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-tasks:type-check': [] }, - }, - '@fluentui/scripts-tasks:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-tasks:nx-release-publish': { - id: '@fluentui/scripts-tasks:nx-release-publish', - target: { project: '@fluentui/scripts-tasks', target: 'nx-release-publish' }, - projectRoot: 'scripts/tasks', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-tasks:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - }, - }, - '@fluentui/scripts-babel:format': { - roots: ['@fluentui/scripts-babel:format'], - tasks: { - '@fluentui/scripts-babel:format': { - id: '@fluentui/scripts-babel:format', - target: { project: '@fluentui/scripts-babel', target: 'format' }, - projectRoot: 'scripts/babel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-babel:format': [] }, - }, - '@fluentui/scripts-babel:format:check': { - roots: ['@fluentui/scripts-babel:format:check'], - tasks: { - '@fluentui/scripts-babel:format:check': { - id: '@fluentui/scripts-babel:format:check', - target: { project: '@fluentui/scripts-babel', target: 'format:check' }, - projectRoot: 'scripts/babel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-babel:format:check': [] }, - }, - '@fluentui/scripts-babel:lint': { - roots: ['@fluentui/scripts-babel:lint'], - tasks: { - '@fluentui/scripts-babel:lint': { - id: '@fluentui/scripts-babel:lint', - target: { project: '@fluentui/scripts-babel', target: 'lint' }, - projectRoot: 'scripts/babel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-babel:lint': [] }, - }, - '@fluentui/scripts-babel:test': { - roots: ['@fluentui/scripts-babel:test'], - tasks: { - '@fluentui/scripts-babel:test': { - id: '@fluentui/scripts-babel:test', - target: { project: '@fluentui/scripts-babel', target: 'test' }, - projectRoot: 'scripts/babel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-babel:test': [] }, - }, - '@fluentui/scripts-babel:type-check': { - roots: ['@fluentui/scripts-babel:type-check'], - tasks: { - '@fluentui/scripts-babel:type-check': { - id: '@fluentui/scripts-babel:type-check', - target: { project: '@fluentui/scripts-babel', target: 'type-check' }, - projectRoot: 'scripts/babel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-babel:type-check': [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - roots: ['@fluentui/scripts-babel:nx-release-publish'], - tasks: { - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-babel:nx-release-publish': [] }, - }, - '@fluentui/scripts-jest:format': { - roots: ['@fluentui/scripts-jest:format'], - tasks: { - '@fluentui/scripts-jest:format': { - id: '@fluentui/scripts-jest:format', - target: { project: '@fluentui/scripts-jest', target: 'format' }, - projectRoot: 'scripts/jest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-jest:format': [] }, - }, - '@fluentui/scripts-jest:format:check': { - roots: ['@fluentui/scripts-jest:format:check'], - tasks: { - '@fluentui/scripts-jest:format:check': { - id: '@fluentui/scripts-jest:format:check', - target: { project: '@fluentui/scripts-jest', target: 'format:check' }, - projectRoot: 'scripts/jest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-jest:format:check': [] }, - }, - '@fluentui/scripts-jest:lint': { - roots: ['@fluentui/scripts-jest:lint'], - tasks: { - '@fluentui/scripts-jest:lint': { - id: '@fluentui/scripts-jest:lint', - target: { project: '@fluentui/scripts-jest', target: 'lint' }, - projectRoot: 'scripts/jest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-jest:lint': [] }, - }, - '@fluentui/scripts-jest:test': { - roots: ['@fluentui/scripts-jest:test'], - tasks: { - '@fluentui/scripts-jest:test': { - id: '@fluentui/scripts-jest:test', - target: { project: '@fluentui/scripts-jest', target: 'test' }, - projectRoot: 'scripts/jest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-jest:test': [] }, - }, - '@fluentui/scripts-jest:type-check': { - roots: ['@fluentui/scripts-jest:type-check'], - tasks: { - '@fluentui/scripts-jest:type-check': { - id: '@fluentui/scripts-jest:type-check', - target: { project: '@fluentui/scripts-jest', target: 'type-check' }, - projectRoot: 'scripts/jest', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-jest:type-check': [] }, - }, - '@fluentui/scripts-jest:nx-release-publish': { - roots: ['@fluentui/scripts-utils:nx-release-publish'], - tasks: { - '@fluentui/scripts-jest:nx-release-publish': { - id: '@fluentui/scripts-jest:nx-release-publish', - target: { project: '@fluentui/scripts-jest', target: 'nx-release-publish' }, - projectRoot: 'scripts/jest', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-jest:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - }, - }, - '@fluentui/scripts-gulp:format': { - roots: ['@fluentui/scripts-gulp:format'], - tasks: { - '@fluentui/scripts-gulp:format': { - id: '@fluentui/scripts-gulp:format', - target: { project: '@fluentui/scripts-gulp', target: 'format' }, - projectRoot: 'scripts/gulp', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-gulp:format': [] }, - }, - '@fluentui/scripts-gulp:format:check': { - roots: ['@fluentui/scripts-gulp:format:check'], - tasks: { - '@fluentui/scripts-gulp:format:check': { - id: '@fluentui/scripts-gulp:format:check', - target: { project: '@fluentui/scripts-gulp', target: 'format:check' }, - projectRoot: 'scripts/gulp', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-gulp:format:check': [] }, - }, - '@fluentui/scripts-gulp:lint': { - roots: ['@fluentui/scripts-gulp:lint'], - tasks: { - '@fluentui/scripts-gulp:lint': { - id: '@fluentui/scripts-gulp:lint', - target: { project: '@fluentui/scripts-gulp', target: 'lint' }, - projectRoot: 'scripts/gulp', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-gulp:lint': [] }, - }, - '@fluentui/scripts-gulp:test': { - roots: ['@fluentui/scripts-gulp:test'], - tasks: { - '@fluentui/scripts-gulp:test': { - id: '@fluentui/scripts-gulp:test', - target: { project: '@fluentui/scripts-gulp', target: 'test' }, - projectRoot: 'scripts/gulp', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-gulp:test': [] }, - }, - '@fluentui/scripts-gulp:type-check': { - roots: ['@fluentui/scripts-gulp:type-check'], - tasks: { - '@fluentui/scripts-gulp:type-check': { - id: '@fluentui/scripts-gulp:type-check', - target: { project: '@fluentui/scripts-gulp', target: 'type-check' }, - projectRoot: 'scripts/gulp', - overrides: {}, - }, - }, - dependencies: { '@fluentui/scripts-gulp:type-check': [] }, - }, - '@fluentui/scripts-gulp:nx-release-publish': { - roots: [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - ], - tasks: { - '@fluentui/scripts-gulp:nx-release-publish': { - id: '@fluentui/scripts-gulp:nx-release-publish', - target: { project: '@fluentui/scripts-gulp', target: 'nx-release-publish' }, - projectRoot: 'scripts/gulp', - overrides: {}, - }, - '@fluentui/scripts-monorepo:nx-release-publish': { - id: '@fluentui/scripts-monorepo:nx-release-publish', - target: { project: '@fluentui/scripts-monorepo', target: 'nx-release-publish' }, - projectRoot: 'scripts/monorepo', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-utils:nx-release-publish': { - id: '@fluentui/scripts-utils:nx-release-publish', - target: { project: '@fluentui/scripts-utils', target: 'nx-release-publish' }, - projectRoot: 'scripts/utils', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-prettier:nx-release-publish': { - id: '@fluentui/scripts-prettier:nx-release-publish', - target: { project: '@fluentui/scripts-prettier', target: 'nx-release-publish' }, - projectRoot: 'scripts/prettier', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-puppeteer:nx-release-publish': { - id: '@fluentui/scripts-puppeteer:nx-release-publish', - target: { project: '@fluentui/scripts-puppeteer', target: 'nx-release-publish' }, - projectRoot: 'scripts/puppeteer', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-babel:nx-release-publish': { - id: '@fluentui/scripts-babel:nx-release-publish', - target: { project: '@fluentui/scripts-babel', target: 'nx-release-publish' }, - projectRoot: 'scripts/babel', - overrides: { __overrides_unparsed__: [] }, - }, - '@fluentui/scripts-projects-test:nx-release-publish': { - id: '@fluentui/scripts-projects-test:nx-release-publish', - target: { project: '@fluentui/scripts-projects-test', target: 'nx-release-publish' }, - projectRoot: 'scripts/projects-test', - overrides: { __overrides_unparsed__: [] }, - }, - }, - dependencies: { - '@fluentui/scripts-gulp:nx-release-publish': [ - '@fluentui/scripts-monorepo:nx-release-publish', - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-prettier:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-babel:nx-release-publish', - '@fluentui/scripts-projects-test:nx-release-publish', - ], - '@fluentui/scripts-monorepo:nx-release-publish': ['@fluentui/scripts-utils:nx-release-publish'], - '@fluentui/scripts-utils:nx-release-publish': [], - '@fluentui/scripts-prettier:nx-release-publish': ['@fluentui/scripts-monorepo:nx-release-publish'], - '@fluentui/scripts-puppeteer:nx-release-publish': [], - '@fluentui/scripts-babel:nx-release-publish': [], - '@fluentui/scripts-projects-test:nx-release-publish': [ - '@fluentui/scripts-utils:nx-release-publish', - '@fluentui/scripts-puppeteer:nx-release-publish', - '@fluentui/scripts-monorepo:nx-release-publish', - ], - }, - }, - '@fluentui/typings:type-check': { - roots: ['@fluentui/typings:type-check'], - tasks: { - '@fluentui/typings:type-check': { - id: '@fluentui/typings:type-check', - target: { project: '@fluentui/typings', target: 'type-check' }, - projectRoot: 'typings', - overrides: {}, - }, - }, - dependencies: { '@fluentui/typings:type-check': [] }, - }, - '@fluentui/typings:nx-release-publish': { - roots: ['@fluentui/typings:nx-release-publish'], - tasks: { - '@fluentui/typings:nx-release-publish': { - id: '@fluentui/typings:nx-release-publish', - target: { project: '@fluentui/typings', target: 'nx-release-publish' }, - projectRoot: 'typings', - overrides: {}, - }, - }, - dependencies: { '@fluentui/typings:nx-release-publish': [] }, - }, - }, - errors: {}, -}; diff --git a/.nx/cache/nx-console-project-graph/static/favicon.ico b/.nx/cache/nx-console-project-graph/static/favicon.ico deleted file mode 100644 index 317ebcb2336e0833a22dddf0ab287849f26fda57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15086 zcmeI332;U^%p|z7g|#(P)qFEA@4f!_@qOK2 z_lJl}!lhL!VT_U|uN7%8B2iKH??xhDa;*`g{yjTFWHvXn;2s{4R7kH|pKGdy(7z!K zgftM+Ku7~24TLlh(!g)gz|foI94G^t2^IO$uvX$3(OR0<_5L2sB)lMAMy|+`xodJ{ z_Uh_1m)~h?a;2W{dmhM;u!YGo=)OdmId_B<%^V^{ovI@y`7^g1_V9G}*f# zNzAtvou}I!W1#{M^@ROc(BZ! z+F!!_aR&Px3_reO(EW+TwlW~tv*2zr?iP7(d~a~yA|@*a89IUke+c472NXM0wiX{- zl`UrZC^1XYyf%1u)-Y)jj9;MZ!SLfd2Hl?o|80Su%Z?To_=^g_Jt0oa#CT*tjx>BI z16wec&AOWNK<#i0Qd=1O$fymLRoUR*%;h@*@v7}wApDl^w*h}!sYq%kw+DKDY)@&A z@9$ULEB3qkR#85`lb8#WZw=@})#kQig9oqy^I$dj&k4jU&^2(M3q{n1AKeGUKPFbr z1^<)aH;VsG@J|B&l>UtU#Ejv3GIqERzYgL@UOAWtW<{p#zy`WyJgpCy8$c_e%wYJL zyGHRRx38)HyjU3y{-4z6)pzb>&Q1pR)B&u01F-|&Gx4EZWK$nkUkOI|(D4UHOXg_- zw{OBf!oWQUn)Pe(=f=nt=zkmdjpO^o8ZZ9o_|4tW1ni+Un9iCW47*-ut$KQOww!;u z`0q)$s6IZO!~9$e_P9X!hqLxu`fpcL|2f^I5d4*a@Dq28;@2271v_N+5HqYZ>x;&O z05*7JT)mUe&%S0@UD)@&8SmQrMtsDfZT;fkdA!r(S=}Oz>iP)w=W508=Rc#nNn7ym z1;42c|8($ALY8#a({%1#IXbWn9-Y|0eDY$_L&j{63?{?AH{);EzcqfydD$@-B`Y3<%IIj7S7rK_N}je^=dEk%JQ4c z!tBdTPE3Tse;oYF>cnrapWq*o)m47X1`~6@(!Y29#>-#8zm&LXrXa(3=7Z)ElaQqj z-#0JJy3Fi(C#Rx(`=VXtJ63E2_bZGCz+QRa{W0e2(m3sI?LOcUBx)~^YCqZ{XEPX)C>G>U4tfqeH8L(3|pQR*zbL1 zT9e~4Tb5p9_G}$y4t`i*4t_Mr9QYvL9C&Ah*}t`q*}S+VYh0M6GxTTSXI)hMpMpIq zD1ImYqJLzbj0}~EpE-aH#VCH_udYEW#`P2zYmi&xSPs_{n6tBj=MY|-XrA;SGA_>y zGtU$?HXm$gYj*!N)_nQ59%lQdXtQZS3*#PC-{iB_sm+ytD*7j`D*k(P&IH2GHT}Eh z5697eQECVIGQAUe#eU2I!yI&%0CP#>%6MWV z@zS!p@+Y1i1b^QuuEF*13CuB zu69dve5k7&Wgb+^s|UB08Dr3u`h@yM0NTj4h7MnHo-4@xmyr7(*4$rpPwsCDZ@2be zRz9V^GnV;;?^Lk%ynzq&K(Aix`mWmW`^152Hoy$CTYVehpD-S1-W^#k#{0^L`V6CN+E z!w+xte;2vu4AmVNEFUOBmrBL>6MK@!O2*N|2=d|Y;oN&A&qv=qKn73lDD zI(+oJAdgv>Yr}8(&@ZuAZE%XUXmX(U!N+Z_sjL<1vjy1R+1IeHt`79fnYdOL{$ci7 z%3f0A*;Zt@ED&Gjm|OFTYBDe%bbo*xXAQsFz+Q`fVBH!N2)kaxN8P$c>sp~QXnv>b zwq=W3&Mtmih7xkR$YA)1Yi?avHNR6C99!u6fh=cL|KQ&PwF!n@ud^n(HNIImHD!h87!i*t?G|p0o+eelJ?B@A64_9%SBhNaJ64EvKgD&%LjLCYnNfc; znj?%*p@*?dq#NqcQFmmX($wms@CSAr9#>hUR^=I+=0B)vvGX%T&#h$kmX*s=^M2E!@N9#m?LhMvz}YB+kd zG~mbP|D(;{s_#;hsKK9lbVK&Lo734x7SIFJ9V_}2$@q?zm^7?*XH94w5Qae{7zOMUF z^?%F%)c1Y)Q?Iy?I>knw*8gYW#ok|2gdS=YYZLiD=CW|Nj;n^x!=S#iJ#`~Ld79+xXpVmUK^B(xO_vO!btA9y7w3L3-0j-y4 z?M-V{%z;JI`bk7yFDcP}OcCd*{Q9S5$iGA7*E1@tfkyjAi!;wP^O71cZ^Ep)qrQ)N z#wqw0_HS;T7x3y|`P==i3hEwK%|>fZ)c&@kgKO1~5<5xBSk?iZV?KI6&i72H6S9A* z=U(*e)EqEs?Oc04)V-~K5AUmh|62H4*`UAtItO$O(q5?6jj+K^oD!04r=6#dsxp?~}{`?&sXn#q2 zGuY~7>O2=!u@@Kfu7q=W*4egu@qPMRM>(eyYyaIE<|j%d=iWNdGsx%c!902v#ngNg z@#U-O_4xN$s_9?(`{>{>7~-6FgWpBpqXb`Ydc3OFL#&I}Irse9F_8R@4zSS*Y*o*B zXL?6*Aw!AfkNCgcr#*yj&p3ZDe2y>v$>FUdKIy_2N~}6AbHc7gA3`6$g@1o|dE>vz z4pl(j9;kyMsjaw}lO?(?Xg%4k!5%^t#@5n=WVc&JRa+XT$~#@rldvN3S1rEpU$;XgxVny7mki3 z-Hh|jUCHrUXuLr!)`w>wgO0N%KTB-1di>cj(x3Bav`7v z3G7EIbU$z>`Nad7Rk_&OT-W{;qg)-GXV-aJT#(ozdmnA~Rq3GQ_3mby(>q6Ocb-RgTUhTN)))x>m&eD;$J5Bg zo&DhY36Yg=J=$Z>t}RJ>o|@hAcwWzN#r(WJ52^g$lh^!63@hh+dR$&_dEGu&^CR*< z!oFqSqO@>xZ*nC2oiOd0eS*F^IL~W-rsrO`J`ej{=ou_q^_(<$&-3f^J z&L^MSYWIe{&pYq&9eGaArA~*kA { - 'use strict'; - var r = n(33286), - o = function () { - return ( - (o = - Object.assign || - function (e) { - for (var t, n = 1, r = arguments.length; n < r; n++) - for (var o in (t = arguments[n])) Object.prototype.hasOwnProperty.call(t, o) && (e[o] = t[o]); - return e; - }), - o.apply(this, arguments) - ); - }; - var i = n(26916), - a = n(14487), - s = n(93884), - l = n(92185), - c = n(4329), - u = n.n(c); - function d(e) { - return 'function' == typeof e ? e() : e; - } - function f(e, t) { - try { - return JSON.stringify(e, t); - } catch (x) { - return u()(e, t); - } - } - function h(e, t, n) { - var r, - i, - a = {}; - try { - for ( - var s = (function (e) { - var t = 'function' == typeof Symbol && Symbol.iterator, - n = t && e[t], - r = 0; - if (n) return n.call(e); - if (e && 'number' == typeof e.length) - return { - next: function () { - return e && r >= e.length && (e = void 0), { value: e && e[r++], done: !e }; - }, - }; - throw new TypeError(t ? 'Object is not iterable.' : 'Symbol.iterator is not defined.'); - })(t), - l = s.next(); - !l.done; - l = s.next() - ) { - var c = l.value; - a[c] = e[c]; - } - } catch (d) { - r = { error: d }; - } finally { - try { - l && !l.done && (i = s.return) && i.call(s); - } finally { - if (r) throw r.error; - } - } - var u = JSON.parse(f(a, n)); - return f(o(o({}, e), u)); - } - function p(e, t) { - e.machine, e.configuration, e.history; - var n = (function (e, t) { - var n = {}; - for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); - if (null != e && 'function' == typeof Object.getOwnPropertySymbols) { - var o = 0; - for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) - t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); - } - return n; - })(e, ['machine', 'configuration', 'history']); - return h(n, ['context', 'event', '_event'], t); - } - function v(e, t) { - return h(e.definition, ['context'], t); - } - var g = new Map(); - var m = { - url: 'https://stately.ai/viz?inspect', - iframe: function () { - return document.querySelector('iframe[data-xstate]'); - }, - devTools: function () { - var e, - t, - n = - ((e = new Set()), - (t = new Set()), - { - services: e, - register: function (n) { - e.add(n), - g.set(n.sessionId, n), - t.forEach(function (e) { - return e(n); - }), - n.onStop(function () { - e.delete(n), g.delete(n.sessionId); - }); - }, - unregister: function (t) { - e.delete(t), g.delete(t.sessionId); - }, - onRegister: function (n) { - return ( - t.add(n), - e.forEach(function (e) { - return n(e); - }), - { - unsubscribe: function () { - t.delete(n); - }, - } - ); - }, - }); - return (globalThis.__xstate__ = n), n; - }, - serialize: void 0, - }, - y = new Set(); - n(78062), n(3346), n(70769), n(19658); - function b(e) { - return e.split('-')[1]; - } - function x(e) { - return 'y' === e ? 'height' : 'width'; - } - function w(e) { - return e.split('-')[0]; - } - function E(e) { - return ['top', 'bottom'].includes(w(e)) ? 'x' : 'y'; - } - function k(e, t, n) { - let { reference: r, floating: o } = e; - const i = r.x + r.width / 2 - o.width / 2, - a = r.y + r.height / 2 - o.height / 2, - s = E(t), - l = x(s), - c = r[l] / 2 - o[l] / 2, - u = 'x' === s; - let d; - switch (w(t)) { - case 'top': - d = { x: i, y: r.y - o.height }; - break; - case 'bottom': - d = { x: i, y: r.y + r.height }; - break; - case 'right': - d = { x: r.x + r.width, y: a }; - break; - case 'left': - d = { x: r.x - o.width, y: a }; - break; - default: - d = { x: r.x, y: r.y }; - } - switch (b(t)) { - case 'start': - d[s] -= c * (n && u ? -1 : 1); - break; - case 'end': - d[s] += c * (n && u ? -1 : 1); - } - return d; - } - const _ = async (e, t, n) => { - const { placement: r = 'bottom', strategy: o = 'absolute', middleware: i = [], platform: a } = n, - s = i.filter(Boolean), - l = await (null == a.isRTL ? void 0 : a.isRTL(t)); - let c = await a.getElementRects({ reference: e, floating: t, strategy: o }), - { x: u, y: d } = k(c, r, l), - f = r, - h = {}, - p = 0; - for (let v = 0; v < s.length; v++) { - const { name: n, fn: i } = s[v], - { - x: g, - y: m, - data: y, - reset: b, - } = await i({ - x: u, - y: d, - initialPlacement: r, - placement: f, - strategy: o, - middlewareData: h, - rects: c, - platform: a, - elements: { reference: e, floating: t }, - }); - (u = null != g ? g : u), - (d = null != m ? m : d), - (h = { ...h, [n]: { ...h[n], ...y } }), - b && - p <= 50 && - (p++, - 'object' == typeof b && - (b.placement && (f = b.placement), - b.rects && - (c = !0 === b.rects ? await a.getElementRects({ reference: e, floating: t, strategy: o }) : b.rects), - ({ x: u, y: d } = k(c, f, l))), - (v = -1)); - } - return { x: u, y: d, placement: f, strategy: o, middlewareData: h }; - }; - function S(e) { - return 'number' != typeof e - ? (function (e) { - return { top: 0, right: 0, bottom: 0, left: 0, ...e }; - })(e) - : { top: e, right: e, bottom: e, left: e }; - } - function P(e) { - return { ...e, top: e.y, left: e.x, right: e.x + e.width, bottom: e.y + e.height }; - } - async function C(e, t) { - var n; - void 0 === t && (t = {}); - const { x: r, y: o, platform: i, rects: a, elements: s, strategy: l } = e, - { - boundary: c = 'clippingAncestors', - rootBoundary: u = 'viewport', - elementContext: d = 'floating', - altBoundary: f = !1, - padding: h = 0, - } = t, - p = S(h), - v = s[f ? ('floating' === d ? 'reference' : 'floating') : d], - g = P( - await i.getClippingRect({ - element: - null == (n = await (null == i.isElement ? void 0 : i.isElement(v))) || n - ? v - : v.contextElement || - (await (null == i.getDocumentElement ? void 0 : i.getDocumentElement(s.floating))), - boundary: c, - rootBoundary: u, - strategy: l, - }), - ), - m = 'floating' === d ? { ...a.floating, x: r, y: o } : a.reference, - y = await (null == i.getOffsetParent ? void 0 : i.getOffsetParent(s.floating)), - b = ((await (null == i.isElement ? void 0 : i.isElement(y))) && - (await (null == i.getScale ? void 0 : i.getScale(y)))) || { x: 1, y: 1 }, - x = P( - i.convertOffsetParentRelativeRectToViewportRelativeRect - ? await i.convertOffsetParentRelativeRectToViewportRelativeRect({ rect: m, offsetParent: y, strategy: l }) - : m, - ); - return { - top: (g.top - x.top + p.top) / b.y, - bottom: (x.bottom - g.bottom + p.bottom) / b.y, - left: (g.left - x.left + p.left) / b.x, - right: (x.right - g.right + p.right) / b.x, - }; - } - const j = Math.min, - T = Math.max; - function D(e, t, n) { - return T(e, j(t, n)); - } - const N = e => ({ - name: 'arrow', - options: e, - async fn(t) { - const { element: n, padding: r = 0 } = e || {}, - { x: o, y: i, placement: a, rects: s, platform: l } = t; - if (null == n) return {}; - const c = S(r), - u = { x: o, y: i }, - d = E(a), - f = x(d), - h = await l.getDimensions(n), - p = 'y' === d ? 'top' : 'left', - v = 'y' === d ? 'bottom' : 'right', - g = s.reference[f] + s.reference[d] - u[d] - s.floating[f], - m = u[d] - s.reference[d], - y = await (null == l.getOffsetParent ? void 0 : l.getOffsetParent(n)); - let w = y ? ('y' === d ? y.clientHeight || 0 : y.clientWidth || 0) : 0; - 0 === w && (w = s.floating[f]); - const k = g / 2 - m / 2, - _ = c[p], - P = w - h[f] - c[v], - C = w / 2 - h[f] / 2 + k, - j = D(_, C, P), - T = null != b(a) && C != j && s.reference[f] / 2 - (C < _ ? c[p] : c[v]) - h[f] / 2 < 0; - return { [d]: u[d] - (T ? (C < _ ? _ - C : P - C) : 0), data: { [d]: j, centerOffset: C - j } }; - }, - }), - M = ['top', 'right', 'bottom', 'left'], - O = - (M.reduce((e, t) => e.concat(t, t + '-start', t + '-end'), []), - { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }); - function A(e) { - return e.replace(/left|right|bottom|top/g, e => O[e]); - } - function R(e, t, n) { - void 0 === n && (n = !1); - const r = b(e), - o = E(e), - i = x(o); - let a = 'x' === o ? (r === (n ? 'end' : 'start') ? 'right' : 'left') : 'start' === r ? 'bottom' : 'top'; - return t.reference[i] > t.floating[i] && (a = A(a)), { main: a, cross: A(a) }; - } - const L = { start: 'end', end: 'start' }; - function I(e) { - return e.replace(/start|end/g, e => L[e]); - } - const B = function (e) { - return ( - void 0 === e && (e = {}), - { - name: 'flip', - options: e, - async fn(t) { - var n; - const { placement: r, middlewareData: o, rects: i, initialPlacement: a, platform: s, elements: l } = t, - { - mainAxis: c = !0, - crossAxis: u = !0, - fallbackPlacements: d, - fallbackStrategy: f = 'bestFit', - fallbackAxisSideDirection: h = 'none', - flipAlignment: p = !0, - ...v - } = e, - g = w(r), - m = w(a) === a, - y = await (null == s.isRTL ? void 0 : s.isRTL(l.floating)), - x = - d || - (m || !p - ? [A(a)] - : (function (e) { - const t = A(e); - return [I(e), t, I(t)]; - })(a)); - d || - 'none' === h || - x.push( - ...(function (e, t, n, r) { - const o = b(e); - let i = (function (e, t, n) { - const r = ['left', 'right'], - o = ['right', 'left'], - i = ['top', 'bottom'], - a = ['bottom', 'top']; - switch (e) { - case 'top': - case 'bottom': - return n ? (t ? o : r) : t ? r : o; - case 'left': - case 'right': - return t ? i : a; - default: - return []; - } - })(w(e), 'start' === n, r); - return o && ((i = i.map(e => e + '-' + o)), t && (i = i.concat(i.map(I)))), i; - })(a, p, h, y), - ); - const E = [a, ...x], - k = await C(t, v), - _ = []; - let S = (null == (n = o.flip) ? void 0 : n.overflows) || []; - if ((c && _.push(k[g]), u)) { - const { main: e, cross: t } = R(r, i, y); - _.push(k[e], k[t]); - } - if (((S = [...S, { placement: r, overflows: _ }]), !_.every(e => e <= 0))) { - var P, j; - const e = ((null == (P = o.flip) ? void 0 : P.index) || 0) + 1, - t = E[e]; - if (t) return { data: { index: e, overflows: S }, reset: { placement: t } }; - let n = - null == (j = S.filter(e => e.overflows[0] <= 0).sort((e, t) => e.overflows[1] - t.overflows[1])[0]) - ? void 0 - : j.placement; - if (!n) - switch (f) { - case 'bestFit': { - var T; - const e = - null == - (T = S.map(e => [e.placement, e.overflows.filter(e => e > 0).reduce((e, t) => e + t, 0)]).sort( - (e, t) => e[1] - t[1], - )[0]) - ? void 0 - : T[0]; - e && (n = e); - break; - } - case 'initialPlacement': - n = a; - } - if (r !== n) return { reset: { placement: n } }; - } - return {}; - }, - } - ); - }; - const F = function (e) { - return ( - void 0 === e && (e = 0), - { - name: 'offset', - options: e, - async fn(t) { - const { x: n, y: r } = t, - o = await (async function (e, t) { - const { placement: n, platform: r, elements: o } = e, - i = await (null == r.isRTL ? void 0 : r.isRTL(o.floating)), - a = w(n), - s = b(n), - l = 'x' === E(n), - c = ['left', 'top'].includes(a) ? -1 : 1, - u = i && l ? -1 : 1, - d = 'function' == typeof t ? t(e) : t; - let { - mainAxis: f, - crossAxis: h, - alignmentAxis: p, - } = 'number' == typeof d - ? { mainAxis: d, crossAxis: 0, alignmentAxis: null } - : { mainAxis: 0, crossAxis: 0, alignmentAxis: null, ...d }; - return ( - s && 'number' == typeof p && (h = 'end' === s ? -1 * p : p), - l ? { x: h * u, y: f * c } : { x: f * c, y: h * u } - ); - })(t, e); - return { x: n + o.x, y: r + o.y, data: o }; - }, - } - ); - }; - function z(e) { - return 'x' === e ? 'y' : 'x'; - } - const V = function (e) { - return ( - void 0 === e && (e = {}), - { - name: 'shift', - options: e, - async fn(t) { - const { x: n, y: r, placement: o } = t, - { - mainAxis: i = !0, - crossAxis: a = !1, - limiter: s = { - fn: e => { - let { x: t, y: n } = e; - return { x: t, y: n }; - }, - }, - ...l - } = e, - c = { x: n, y: r }, - u = await C(t, l), - d = E(w(o)), - f = z(d); - let h = c[d], - p = c[f]; - if (i) { - const e = 'y' === d ? 'bottom' : 'right'; - h = D(h + u['y' === d ? 'top' : 'left'], h, h - u[e]); - } - if (a) { - const e = 'y' === f ? 'bottom' : 'right'; - p = D(p + u['y' === f ? 'top' : 'left'], p, p - u[e]); - } - const v = s.fn({ ...t, [d]: h, [f]: p }); - return { ...v, data: { x: v.x - n, y: v.y - r } }; - }, - } - ); - }; - function G(e) { - var t; - return (null == (t = e.ownerDocument) ? void 0 : t.defaultView) || window; - } - function H(e) { - return G(e).getComputedStyle(e); - } - const W = Math.min, - U = Math.max, - q = Math.round; - function Y(e) { - const t = H(e); - let n = parseFloat(t.width), - r = parseFloat(t.height); - const o = e.offsetWidth, - i = e.offsetHeight, - a = q(n) !== o || q(r) !== i; - return a && ((n = o), (r = i)), { width: n, height: r, fallback: a }; - } - function X(e) { - return J(e) ? (e.nodeName || '').toLowerCase() : ''; - } - let $; - function K() { - if ($) return $; - const e = navigator.userAgentData; - return e && Array.isArray(e.brands) - ? (($ = e.brands.map(e => e.brand + '/' + e.version).join(' ')), $) - : navigator.userAgent; - } - function Z(e) { - return e instanceof G(e).HTMLElement; - } - function Q(e) { - return e instanceof G(e).Element; - } - function J(e) { - return e instanceof G(e).Node; - } - function ee(e) { - return 'undefined' != typeof ShadowRoot && (e instanceof G(e).ShadowRoot || e instanceof ShadowRoot); - } - function te(e) { - const { overflow: t, overflowX: n, overflowY: r, display: o } = H(e); - return /auto|scroll|overlay|hidden|clip/.test(t + r + n) && !['inline', 'contents'].includes(o); - } - function ne(e) { - return ['table', 'td', 'th'].includes(X(e)); - } - function re(e) { - const t = /firefox/i.test(K()), - n = H(e), - r = n.backdropFilter || n.WebkitBackdropFilter; - return ( - 'none' !== n.transform || - 'none' !== n.perspective || - (!!r && 'none' !== r) || - (t && 'filter' === n.willChange) || - (t && !!n.filter && 'none' !== n.filter) || - ['transform', 'perspective'].some(e => n.willChange.includes(e)) || - ['paint', 'layout', 'strict', 'content'].some(e => { - const t = n.contain; - return null != t && t.includes(e); - }) - ); - } - function oe() { - return /^((?!chrome|android).)*safari/i.test(K()); - } - function ie(e) { - return ['html', 'body', '#document'].includes(X(e)); - } - function ae(e) { - return Q(e) ? e : e.contextElement; - } - const se = { x: 1, y: 1 }; - function le(e) { - const t = ae(e); - if (!Z(t)) return se; - const n = t.getBoundingClientRect(), - { width: r, height: o, fallback: i } = Y(t); - let a = (i ? q(n.width) : n.width) / r, - s = (i ? q(n.height) : n.height) / o; - return (a && Number.isFinite(a)) || (a = 1), (s && Number.isFinite(s)) || (s = 1), { x: a, y: s }; - } - function ce(e, t, n, r) { - var o, i; - void 0 === t && (t = !1), void 0 === n && (n = !1); - const a = e.getBoundingClientRect(), - s = ae(e); - let l = se; - t && (r ? Q(r) && (l = le(r)) : (l = le(e))); - const c = s ? G(s) : window, - u = oe() && n; - let d = (a.left + ((u && (null == (o = c.visualViewport) ? void 0 : o.offsetLeft)) || 0)) / l.x, - f = (a.top + ((u && (null == (i = c.visualViewport) ? void 0 : i.offsetTop)) || 0)) / l.y, - h = a.width / l.x, - p = a.height / l.y; - if (s) { - const e = G(s), - t = r && Q(r) ? G(r) : r; - let n = e.frameElement; - for (; n && r && t !== e; ) { - const e = le(n), - t = n.getBoundingClientRect(), - r = getComputedStyle(n); - (t.x += (n.clientLeft + parseFloat(r.paddingLeft)) * e.x), - (t.y += (n.clientTop + parseFloat(r.paddingTop)) * e.y), - (d *= e.x), - (f *= e.y), - (h *= e.x), - (p *= e.y), - (d += t.x), - (f += t.y), - (n = G(n).frameElement); - } - } - return { width: h, height: p, top: f, right: d + h, bottom: f + p, left: d, x: d, y: f }; - } - function ue(e) { - return ((J(e) ? e.ownerDocument : e.document) || window.document).documentElement; - } - function de(e) { - return Q(e) - ? { scrollLeft: e.scrollLeft, scrollTop: e.scrollTop } - : { scrollLeft: e.pageXOffset, scrollTop: e.pageYOffset }; - } - function fe(e) { - return ce(ue(e)).left + de(e).scrollLeft; - } - function he(e) { - if ('html' === X(e)) return e; - const t = e.assignedSlot || e.parentNode || (ee(e) && e.host) || ue(e); - return ee(t) ? t.host : t; - } - function pe(e) { - const t = he(e); - return ie(t) ? t.ownerDocument.body : Z(t) && te(t) ? t : pe(t); - } - function ve(e, t) { - var n; - void 0 === t && (t = []); - const r = pe(e), - o = r === (null == (n = e.ownerDocument) ? void 0 : n.body), - i = G(r); - return o ? t.concat(i, i.visualViewport || [], te(r) ? r : []) : t.concat(r, ve(r)); - } - function ge(e, t, n) { - let r; - if ('viewport' === t) - r = (function (e, t) { - const n = G(e), - r = ue(e), - o = n.visualViewport; - let i = r.clientWidth, - a = r.clientHeight, - s = 0, - l = 0; - if (o) { - (i = o.width), (a = o.height); - const e = oe(); - (!e || (e && 'fixed' === t)) && ((s = o.offsetLeft), (l = o.offsetTop)); - } - return { width: i, height: a, x: s, y: l }; - })(e, n); - else if ('document' === t) - r = (function (e) { - const t = ue(e), - n = de(e), - r = e.ownerDocument.body, - o = U(t.scrollWidth, t.clientWidth, r.scrollWidth, r.clientWidth), - i = U(t.scrollHeight, t.clientHeight, r.scrollHeight, r.clientHeight); - let a = -n.scrollLeft + fe(e); - const s = -n.scrollTop; - return ( - 'rtl' === H(r).direction && (a += U(t.clientWidth, r.clientWidth) - o), - { width: o, height: i, x: a, y: s } - ); - })(ue(e)); - else if (Q(t)) - r = (function (e, t) { - const n = ce(e, !0, 'fixed' === t), - r = n.top + e.clientTop, - o = n.left + e.clientLeft, - i = Z(e) ? le(e) : { x: 1, y: 1 }; - return { width: e.clientWidth * i.x, height: e.clientHeight * i.y, x: o * i.x, y: r * i.y }; - })(t, n); - else { - const n = { ...t }; - if (oe()) { - var o, i; - const t = G(e); - (n.x -= (null == (o = t.visualViewport) ? void 0 : o.offsetLeft) || 0), - (n.y -= (null == (i = t.visualViewport) ? void 0 : i.offsetTop) || 0); - } - r = n; - } - return P(r); - } - function me(e, t) { - return Z(e) && 'fixed' !== H(e).position ? (t ? t(e) : e.offsetParent) : null; - } - function ye(e, t) { - const n = G(e); - let r = me(e, t); - for (; r && ne(r) && 'static' === H(r).position; ) r = me(r, t); - return r && ('html' === X(r) || ('body' === X(r) && 'static' === H(r).position && !re(r))) - ? n - : r || - (function (e) { - let t = he(e); - for (; Z(t) && !ie(t); ) { - if (re(t)) return t; - t = he(t); - } - return null; - })(e) || - n; - } - function be(e, t, n) { - const r = Z(t), - o = ue(t), - i = ce(e, !0, 'fixed' === n, t); - let a = { scrollLeft: 0, scrollTop: 0 }; - const s = { x: 0, y: 0 }; - if (r || (!r && 'fixed' !== n)) - if ((('body' !== X(t) || te(o)) && (a = de(t)), Z(t))) { - const e = ce(t, !0); - (s.x = e.x + t.clientLeft), (s.y = e.y + t.clientTop); - } else o && (s.x = fe(o)); - return { x: i.left + a.scrollLeft - s.x, y: i.top + a.scrollTop - s.y, width: i.width, height: i.height }; - } - const xe = { - getClippingRect: function (e) { - let { element: t, boundary: n, rootBoundary: r, strategy: o } = e; - const i = - 'clippingAncestors' === n - ? (function (e, t) { - const n = t.get(e); - if (n) return n; - let r = ve(e).filter(e => Q(e) && 'body' !== X(e)), - o = null; - const i = 'fixed' === H(e).position; - let a = i ? he(e) : e; - for (; Q(a) && !ie(a); ) { - const e = H(a), - t = re(a); - 'fixed' === e.position - ? (o = null) - : ( - i - ? t || o - : t || 'static' !== e.position || !o || !['absolute', 'fixed'].includes(o.position) - ) - ? (o = e) - : (r = r.filter(e => e !== a)), - (a = he(a)); - } - return t.set(e, r), r; - })(t, this._c) - : [].concat(n), - a = [...i, r], - s = a[0], - l = a.reduce((e, n) => { - const r = ge(t, n, o); - return ( - (e.top = U(r.top, e.top)), - (e.right = W(r.right, e.right)), - (e.bottom = W(r.bottom, e.bottom)), - (e.left = U(r.left, e.left)), - e - ); - }, ge(t, s, o)); - return { width: l.right - l.left, height: l.bottom - l.top, x: l.left, y: l.top }; - }, - convertOffsetParentRelativeRectToViewportRelativeRect: function (e) { - let { rect: t, offsetParent: n, strategy: r } = e; - const o = Z(n), - i = ue(n); - if (n === i) return t; - let a = { scrollLeft: 0, scrollTop: 0 }, - s = { x: 1, y: 1 }; - const l = { x: 0, y: 0 }; - if ((o || (!o && 'fixed' !== r)) && (('body' !== X(n) || te(i)) && (a = de(n)), Z(n))) { - const e = ce(n); - (s = le(n)), (l.x = e.x + n.clientLeft), (l.y = e.y + n.clientTop); - } - return { - width: t.width * s.x, - height: t.height * s.y, - x: t.x * s.x - a.scrollLeft * s.x + l.x, - y: t.y * s.y - a.scrollTop * s.y + l.y, - }; - }, - isElement: Q, - getDimensions: function (e) { - return Z(e) ? Y(e) : e.getBoundingClientRect(); - }, - getOffsetParent: ye, - getDocumentElement: ue, - getScale: le, - async getElementRects(e) { - let { reference: t, floating: n, strategy: r } = e; - const o = this.getOffsetParent || ye, - i = this.getDimensions; - return { reference: be(t, await o(n), r), floating: { x: 0, y: 0, ...(await i(n)) } }; - }, - getClientRects: e => Array.from(e.getClientRects()), - isRTL: e => 'rtl' === H(e).direction, - }; - function we(e, t, n, r) { - void 0 === r && (r = {}); - const { ancestorScroll: o = !0, ancestorResize: i = !0, elementResize: a = !0, animationFrame: s = !1 } = r, - l = o && !s, - c = l || i ? [...(Q(e) ? ve(e) : e.contextElement ? ve(e.contextElement) : []), ...ve(t)] : []; - c.forEach(e => { - l && e.addEventListener('scroll', n, { passive: !0 }), i && e.addEventListener('resize', n); - }); - let u, - d = null; - if (a) { - let r = !0; - (d = new ResizeObserver(() => { - r || n(), (r = !1); - })), - Q(e) && !s && d.observe(e), - Q(e) || !e.contextElement || s || d.observe(e.contextElement), - d.observe(t); - } - let f = s ? ce(e) : null; - return ( - s && - (function t() { - const r = ce(e); - !f || (r.x === f.x && r.y === f.y && r.width === f.width && r.height === f.height) || n(), - (f = r), - (u = requestAnimationFrame(t)); - })(), - n(), - () => { - var e; - c.forEach(e => { - l && e.removeEventListener('scroll', n), i && e.removeEventListener('resize', n); - }), - null == (e = d) || e.disconnect(), - (d = null), - s && cancelAnimationFrame(u); - } - ); - } - const Ee = (e, t, n) => { - const r = new Map(), - o = { platform: xe, ...n }, - i = { ...o.platform, _c: r }; - return _(e, t, { ...o, platform: i }); - }, - ke = e => { - const { element: t, padding: n } = e; - return { - name: 'arrow', - options: e, - fn(e) { - return ( - (r = t), - Object.prototype.hasOwnProperty.call(r, 'current') - ? null != t.current - ? N({ element: t.current, padding: n }).fn(e) - : {} - : t - ? N({ element: t, padding: n }).fn(e) - : {} - ); - var r; - }, - }; - }; - var _e = 'undefined' != typeof document ? r.useLayoutEffect : r.useEffect; - function Se(e, t) { - if (e === t) return !0; - if (typeof e != typeof t) return !1; - if ('function' == typeof e && e.toString() === t.toString()) return !0; - let n, r, o; - if (e && t && 'object' == typeof e) { - if (Array.isArray(e)) { - if (((n = e.length), n != t.length)) return !1; - for (r = n; 0 != r--; ) if (!Se(e[r], t[r])) return !1; - return !0; - } - if (((o = Object.keys(e)), (n = o.length), n !== Object.keys(t).length)) return !1; - for (r = n; 0 != r--; ) if (!Object.prototype.hasOwnProperty.call(t, o[r])) return !1; - for (r = n; 0 != r--; ) { - const n = o[r]; - if (('_owner' !== n || !e.$$typeof) && !Se(e[n], t[n])) return !1; - } - return !0; - } - return e != e && t != t; - } - function Pe(e) { - const t = r.useRef(e); - return ( - _e(() => { - t.current = e; - }), - t - ); - } - var Ce = 'undefined' != typeof document ? r.useLayoutEffect : r.useEffect; - let je = !1, - Te = 0; - const De = () => 'floating-ui-' + Te++; - const Ne = - r['useId'.toString()] || - function () { - const [e, t] = r.useState(() => (je ? De() : void 0)); - return ( - Ce(() => { - null == e && t(De()); - }, []), - r.useEffect(() => { - je || (je = !0); - }, []), - e - ); - }; - function Me() { - const e = new Map(); - return { - emit(t, n) { - var r; - null == (r = e.get(t)) || r.forEach(e => e(n)); - }, - on(t, n) { - e.set(t, [...(e.get(t) || []), n]); - }, - off(t, n) { - e.set( - t, - (e.get(t) || []).filter(e => e !== n), - ); - }, - }; - } - const Oe = r.createContext(null), - Ae = r.createContext(null), - Re = () => { - var e; - return (null == (e = r.useContext(Oe)) ? void 0 : e.id) || null; - }, - Le = () => r.useContext(Ae); - function Ie(e) { - return (null == e ? void 0 : e.ownerDocument) || document; - } - function Be() { - const e = navigator.userAgentData; - return null != e && e.platform ? e.platform : navigator.platform; - } - function Fe() { - const e = navigator.userAgentData; - return e && Array.isArray(e.brands) - ? e.brands - .map(e => { - let { brand: t, version: n } = e; - return t + '/' + n; - }) - .join(' ') - : navigator.userAgent; - } - function ze(e) { - return Ie(e).defaultView || window; - } - function Ve(e) { - return !!e && e instanceof ze(e).Element; - } - function Ge(e) { - return !!e && e instanceof ze(e).HTMLElement; - } - function He(e) { - if (0 === e.mozInputSource && e.isTrusted) return !0; - const t = /Android/i; - return (t.test(Be()) || t.test(Fe())) && e.pointerType - ? 'click' === e.type && 1 === e.buttons - : 0 === e.detail && !e.pointerType; - } - function We(e) { - return ( - (0 === e.width && 0 === e.height) || - (1 === e.width && 1 === e.height && 0 === e.pressure && 0 === e.detail && 'mouse' !== e.pointerType) || - (e.width < 1 && e.height < 1 && 0 === e.pressure && 0 === e.detail) - ); - } - function Ue(e, t) { - const n = ['mouse', 'pen']; - return t || n.push('', void 0), n.includes(e); - } - function qe(e) { - const t = (0, r.useRef)(e); - return ( - Ce(() => { - t.current = e; - }), - t - ); - } - const Ye = 'data-floating-ui-safe-polygon'; - function Xe(e, t, n) { - return n && !Ue(n) ? 0 : 'number' == typeof e ? e : null == e ? void 0 : e[t]; - } - const $e = function (e, t) { - let { - enabled: n = !0, - delay: o = 0, - handleClose: i = null, - mouseOnly: a = !1, - restMs: s = 0, - move: l = !0, - } = void 0 === t ? {} : t; - const { - open: c, - onOpenChange: u, - dataRef: d, - events: f, - elements: { domReference: h, floating: p }, - refs: v, - } = e, - g = Le(), - m = Re(), - y = qe(i), - b = qe(o), - x = r.useRef(), - w = r.useRef(), - E = r.useRef(), - k = r.useRef(), - _ = r.useRef(!0), - S = r.useRef(!1), - P = r.useRef(() => {}), - C = r.useCallback(() => { - var e; - const t = null == (e = d.current.openEvent) ? void 0 : e.type; - return (null == t ? void 0 : t.includes('mouse')) && 'mousedown' !== t; - }, [d]); - r.useEffect(() => { - if (n) - return ( - f.on('dismiss', e), - () => { - f.off('dismiss', e); - } - ); - function e() { - clearTimeout(w.current), clearTimeout(k.current), (_.current = !0); - } - }, [n, f]), - r.useEffect(() => { - if (!n || !y.current || !c) return; - function e() { - C() && u(!1); - } - const t = Ie(p).documentElement; - return ( - t.addEventListener('mouseleave', e), - () => { - t.removeEventListener('mouseleave', e); - } - ); - }, [p, c, u, n, y, d, C]); - const j = r.useCallback( - function (e) { - void 0 === e && (e = !0); - const t = Xe(b.current, 'close', x.current); - t && !E.current - ? (clearTimeout(w.current), (w.current = setTimeout(() => u(!1), t))) - : e && (clearTimeout(w.current), u(!1)); - }, - [b, u], - ), - T = r.useCallback(() => { - P.current(), (E.current = void 0); - }, []), - D = r.useCallback(() => { - if (S.current) { - const e = Ie(v.floating.current).body; - (e.style.pointerEvents = ''), e.removeAttribute(Ye), (S.current = !1); - } - }, [v]); - return ( - r.useEffect(() => { - if (n && Ve(h)) { - const e = h; - return ( - c && e.addEventListener('mouseleave', i), - null == p || p.addEventListener('mouseleave', i), - l && e.addEventListener('mousemove', r, { once: !0 }), - e.addEventListener('mouseenter', r), - e.addEventListener('mouseleave', o), - () => { - c && e.removeEventListener('mouseleave', i), - null == p || p.removeEventListener('mouseleave', i), - l && e.removeEventListener('mousemove', r), - e.removeEventListener('mouseenter', r), - e.removeEventListener('mouseleave', o); - } - ); - } - function t() { - return !!d.current.openEvent && ['click', 'mousedown'].includes(d.current.openEvent.type); - } - function r(e) { - if ( - (clearTimeout(w.current), - (_.current = !1), - (a && !Ue(x.current)) || (s > 0 && 0 === Xe(b.current, 'open'))) - ) - return; - d.current.openEvent = e; - const t = Xe(b.current, 'open', x.current); - t - ? (w.current = setTimeout(() => { - u(!0); - }, t)) - : u(!0); - } - function o(n) { - if (t()) return; - P.current(); - const r = Ie(p); - if ((clearTimeout(k.current), y.current)) { - c || clearTimeout(w.current), - (E.current = y.current({ - ...e, - tree: g, - x: n.clientX, - y: n.clientY, - onClose() { - D(), T(), j(); - }, - })); - const t = E.current; - return ( - r.addEventListener('mousemove', t), - void (P.current = () => { - r.removeEventListener('mousemove', t); - }) - ); - } - j(); - } - function i(n) { - t() || - null == y.current || - y.current({ - ...e, - tree: g, - x: n.clientX, - y: n.clientY, - onClose() { - D(), T(), j(); - }, - })(n); - } - }, [h, p, n, e, a, s, l, j, T, D, u, c, g, b, y, d]), - Ce(() => { - var e; - if (n && c && null != (e = y.current) && e.__options.blockPointerEvents && C()) { - const e = Ie(p).body; - if ((e.setAttribute(Ye, ''), (e.style.pointerEvents = 'none'), (S.current = !0), Ve(h) && p)) { - var t, r; - const e = h, - n = - null == g || null == (t = g.nodesRef.current.find(e => e.id === m)) || null == (r = t.context) - ? void 0 - : r.elements.floating; - return ( - n && (n.style.pointerEvents = ''), - (e.style.pointerEvents = 'auto'), - (p.style.pointerEvents = 'auto'), - () => { - (e.style.pointerEvents = ''), (p.style.pointerEvents = ''); - } - ); - } - } - }, [n, c, m, p, h, g, y, d, C]), - Ce(() => { - c || ((x.current = void 0), T(), D()); - }, [c, T, D]), - r.useEffect( - () => () => { - T(), clearTimeout(w.current), clearTimeout(k.current), D(); - }, - [n, T, D], - ), - r.useMemo(() => { - if (!n) return {}; - function e(e) { - x.current = e.pointerType; - } - return { - reference: { - onPointerDown: e, - onPointerEnter: e, - onMouseMove() { - c || - 0 === s || - (clearTimeout(k.current), - (k.current = setTimeout(() => { - _.current || u(!0); - }, s))); - }, - }, - floating: { - onMouseEnter() { - clearTimeout(w.current); - }, - onMouseLeave() { - f.emit('dismiss', { type: 'mouseLeave', data: { returnFocus: !1 } }), j(!1); - }, - }, - }; - }, [f, n, s, c, u, j]) - ); - }; - function Ke(e, t) { - let n = - e.filter(e => { - var n; - return e.parentId === t && (null == (n = e.context) ? void 0 : n.open); - }) || [], - r = n; - for (; r.length; ) - (r = - e.filter(e => { - var t; - return null == (t = r) - ? void 0 - : t.some(t => { - var n; - return e.parentId === t.id && (null == (n = e.context) ? void 0 : n.open); - }); - }) || []), - (n = n.concat(r)); - return n; - } - function Ze(e) { - return 'composedPath' in e ? e.composedPath()[0] : e.target; - } - const Qe = - "input:not([type='hidden']):not([disabled]),[contenteditable]:not([contenteditable='false']),textarea:not([disabled])"; - function Je(e) { - return Ge(e) && e.matches(Qe); - } - const et = r['useInsertionEffect'.toString()] || (e => e()); - function tt(e) { - const t = r.useRef(() => { - 0; - }); - return ( - et(() => { - t.current = e; - }), - r.useCallback(function () { - for (var e = arguments.length, n = new Array(e), r = 0; r < e; r++) n[r] = arguments[r]; - return null == t.current ? void 0 : t.current(...n); - }, []) - ); - } - function nt(e) { - return Ge(e.target) && 'BUTTON' === e.target.tagName; - } - function rt(e) { - return Je(e); - } - const ot = function (e, t) { - let { - open: n, - onOpenChange: o, - dataRef: i, - elements: { domReference: a }, - } = e, - { - enabled: s = !0, - event: l = 'click', - toggle: c = !0, - ignoreMouse: u = !1, - keyboardHandlers: d = !0, - } = void 0 === t ? {} : t; - const f = r.useRef(); - return r.useMemo( - () => - s - ? { - reference: { - onPointerDown(e) { - f.current = e.pointerType; - }, - onMouseDown(e) { - 0 === e.button && - ((Ue(f.current, !0) && u) || - ('click' !== l && - (n - ? !c || (i.current.openEvent && 'mousedown' !== i.current.openEvent.type) || o(!1) - : (e.preventDefault(), o(!0)), - (i.current.openEvent = e.nativeEvent)))); - }, - onClick(e) { - i.current.__syncReturnFocus || - ('mousedown' === l && f.current - ? (f.current = void 0) - : (Ue(f.current, !0) && u) || - (n ? !c || (i.current.openEvent && 'click' !== i.current.openEvent.type) || o(!1) : o(!0), - (i.current.openEvent = e.nativeEvent))); - }, - onKeyDown(e) { - (f.current = void 0), - d && - (nt(e) || - (' ' !== e.key || rt(a) || e.preventDefault(), - 'Enter' === e.key && (n ? c && o(!1) : o(!0)))); - }, - onKeyUp(e) { - d && (nt(e) || rt(a) || (' ' === e.key && (n ? c && o(!1) : o(!0)))); - }, - }, - } - : {}, - [s, i, l, u, d, a, c, n, o], - ); - }; - function it(e, t) { - if (null == t) return !1; - if ('composedPath' in e) return e.composedPath().includes(t); - const n = e; - return null != n.target && t.contains(n.target); - } - const at = { pointerdown: 'onPointerDown', mousedown: 'onMouseDown', click: 'onClick' }, - st = { pointerdown: 'onPointerDownCapture', mousedown: 'onMouseDownCapture', click: 'onClickCapture' }, - lt = function (e, t) { - let { - open: n, - onOpenChange: o, - events: i, - nodeId: a, - elements: { reference: s, domReference: l, floating: c }, - dataRef: u, - } = e, - { - enabled: d = !0, - escapeKey: f = !0, - outsidePress: h = !0, - outsidePressEvent: p = 'pointerdown', - referencePress: v = !1, - referencePressEvent: g = 'pointerdown', - ancestorScroll: m = !1, - bubbles: y = !0, - } = void 0 === t ? {} : t; - const b = Le(), - x = null != Re(), - w = tt('function' == typeof h ? h : () => !1), - E = 'function' == typeof h ? w : h, - k = r.useRef(!1), - { escapeKeyBubbles: _, outsidePressBubbles: S } = (function (e) { - var t, n; - return ( - void 0 === e && (e = !0), - { - escapeKeyBubbles: 'boolean' == typeof e ? e : null == (t = e.escapeKey) || t, - outsidePressBubbles: 'boolean' == typeof e ? e : null == (n = e.outsidePress) || n, - } - ); - })(y); - return ( - r.useEffect(() => { - if (!n || !d) return; - function e(e) { - if ('Escape' === e.key) { - const e = b ? Ke(b.nodesRef.current, a) : []; - if (e.length > 0) { - let t = !0; - if ( - (e.forEach(e => { - var n; - null == (n = e.context) || !n.open || e.context.dataRef.current.__escapeKeyBubbles || (t = !1); - }), - !t) - ) - return; - } - i.emit('dismiss', { type: 'escapeKey', data: { returnFocus: { preventScroll: !1 } } }), o(!1); - } - } - function t(e) { - const t = k.current; - if (((k.current = !1), t)) return; - if ('function' == typeof E && !E(e)) return; - const n = Ze(e); - if (Ge(n) && c) { - const t = c.ownerDocument.defaultView || window, - r = n.scrollWidth > n.clientWidth, - o = n.scrollHeight > n.clientHeight; - let i = o && e.offsetX > n.clientWidth; - if (o) { - 'rtl' === t.getComputedStyle(n).direction && (i = e.offsetX <= n.offsetWidth - n.clientWidth); - } - if (i || (r && e.offsetY > n.clientHeight)) return; - } - const r = - b && - Ke(b.nodesRef.current, a).some(t => { - var n; - return it(e, null == (n = t.context) ? void 0 : n.elements.floating); - }); - if (it(e, c) || it(e, l) || r) return; - const s = b ? Ke(b.nodesRef.current, a) : []; - if (s.length > 0) { - let e = !0; - if ( - (s.forEach(t => { - var n; - null == (n = t.context) || !n.open || t.context.dataRef.current.__outsidePressBubbles || (e = !1); - }), - !e) - ) - return; - } - i.emit('dismiss', { - type: 'outsidePress', - data: { returnFocus: x ? { preventScroll: !0 } : He(e) || We(e) }, - }), - o(!1); - } - function r() { - o(!1); - } - (u.current.__escapeKeyBubbles = _), (u.current.__outsidePressBubbles = S); - const h = Ie(c); - f && h.addEventListener('keydown', e), E && h.addEventListener(p, t); - let v = []; - return ( - m && - (Ve(l) && (v = ve(l)), - Ve(c) && (v = v.concat(ve(c))), - !Ve(s) && s && s.contextElement && (v = v.concat(ve(s.contextElement)))), - (v = v.filter(e => { - var t; - return e !== (null == (t = h.defaultView) ? void 0 : t.visualViewport); - })), - v.forEach(e => { - e.addEventListener('scroll', r, { passive: !0 }); - }), - () => { - f && h.removeEventListener('keydown', e), - E && h.removeEventListener(p, t), - v.forEach(e => { - e.removeEventListener('scroll', r); - }); - } - ); - }, [u, c, l, s, f, E, p, i, b, a, n, o, m, d, _, S, x]), - r.useEffect(() => { - k.current = !1; - }, [E, p]), - r.useMemo( - () => - d - ? { - reference: { - [at[g]]: () => { - v && (i.emit('dismiss', { type: 'referencePress', data: { returnFocus: !1 } }), o(!1)); - }, - }, - floating: { - [st[p]]: () => { - k.current = !0; - }, - }, - } - : {}, - [d, i, v, p, g, o], - ) - ); - }; - const ct = function (e, t) { - let { open: n } = e, - { enabled: o = !0, role: i = 'dialog' } = void 0 === t ? {} : t; - const a = Ne(), - s = Ne(); - return r.useMemo(() => { - const e = { id: a, role: i }; - return o - ? 'tooltip' === i - ? { reference: { 'aria-describedby': n ? a : void 0 }, floating: e } - : { - reference: { - 'aria-expanded': n ? 'true' : 'false', - 'aria-haspopup': 'alertdialog' === i ? 'dialog' : i, - 'aria-controls': n ? a : void 0, - ...('listbox' === i && { role: 'combobox' }), - ...('menu' === i && { id: s }), - }, - floating: { ...e, ...('menu' === i && { 'aria-labelledby': s }) }, - } - : {}; - }, [o, i, n, a, s]); - }; - function ut(e) { - void 0 === e && (e = {}); - const { open: t = !1, onOpenChange: n, nodeId: o } = e, - i = (function (e) { - void 0 === e && (e = {}); - const { - placement: t = 'bottom', - strategy: n = 'absolute', - middleware: o = [], - platform: i, - whileElementsMounted: a, - open: s, - } = e, - [l, c] = r.useState({ - x: null, - y: null, - strategy: n, - placement: t, - middlewareData: {}, - isPositioned: !1, - }), - [u, d] = r.useState(o); - Se(u, o) || d(o); - const f = r.useRef(null), - h = r.useRef(null), - p = r.useRef(l), - v = Pe(a), - g = Pe(i), - [m, y] = r.useState(null), - [b, x] = r.useState(null), - w = r.useCallback(e => { - f.current !== e && ((f.current = e), y(e)); - }, []), - E = r.useCallback(e => { - h.current !== e && ((h.current = e), x(e)); - }, []), - k = r.useCallback(() => { - if (!f.current || !h.current) return; - const e = { placement: t, strategy: n, middleware: u }; - g.current && (e.platform = g.current), - Ee(f.current, h.current, e).then(e => { - const t = { ...e, isPositioned: !0 }; - _.current && - !Se(p.current, t) && - ((p.current = t), - r.flushSync(() => { - c(t); - })); - }); - }, [u, t, n, g]); - _e(() => { - !1 === s && - p.current.isPositioned && - ((p.current.isPositioned = !1), c(e => ({ ...e, isPositioned: !1 }))); - }, [s]); - const _ = r.useRef(!1); - _e( - () => ( - (_.current = !0), - () => { - _.current = !1; - } - ), - [], - ), - _e(() => { - if (m && b) { - if (v.current) return v.current(m, b, k); - k(); - } - }, [m, b, k, v]); - const S = r.useMemo(() => ({ reference: f, floating: h, setReference: w, setFloating: E }), [w, E]), - P = r.useMemo(() => ({ reference: m, floating: b }), [m, b]); - return r.useMemo( - () => ({ ...l, update: k, refs: S, elements: P, reference: w, floating: E }), - [l, k, S, P, w, E], - ); - })(e), - a = Le(), - s = r.useRef(null), - l = r.useRef({}), - c = r.useState(() => Me())[0], - [u, d] = r.useState(null), - f = r.useCallback( - e => { - const t = Ve(e) ? { getBoundingClientRect: () => e.getBoundingClientRect(), contextElement: e } : e; - i.refs.setReference(t); - }, - [i.refs], - ), - h = r.useCallback( - e => { - (Ve(e) || null === e) && ((s.current = e), d(e)), - (Ve(i.refs.reference.current) || null === i.refs.reference.current || (null !== e && !Ve(e))) && - i.refs.setReference(e); - }, - [i.refs], - ), - p = r.useMemo( - () => ({ ...i.refs, setReference: h, setPositionReference: f, domReference: s }), - [i.refs, h, f], - ), - v = r.useMemo(() => ({ ...i.elements, domReference: u }), [i.elements, u]), - g = tt(n), - m = r.useMemo( - () => ({ ...i, refs: p, elements: v, dataRef: l, nodeId: o, events: c, open: t, onOpenChange: g }), - [i, o, c, t, g, p, v], - ); - return ( - Ce(() => { - const e = null == a ? void 0 : a.nodesRef.current.find(e => e.id === o); - e && (e.context = m); - }), - r.useMemo(() => ({ ...i, context: m, refs: p, reference: h, positionReference: f }), [i, p, m, h, f]) - ); - } - function dt(e, t, n) { - const r = new Map(); - return { - ...('floating' === n && { tabIndex: -1 }), - ...e, - ...t - .map(e => (e ? e[n] : null)) - .concat(e) - .reduce( - (e, t) => - t - ? (Object.entries(t).forEach(t => { - let [n, o] = t; - var i; - 0 === n.indexOf('on') - ? (r.has(n) || r.set(n, []), - 'function' == typeof o && - (null == (i = r.get(n)) || i.push(o), - (e[n] = function () { - for (var e, t = arguments.length, o = new Array(t), i = 0; i < t; i++) - o[i] = arguments[i]; - null == (e = r.get(n)) || e.forEach(e => e(...o)); - }))) - : (e[n] = o); - }), - e) - : e, - {}, - ), - }; - } - const ft = function (e) { - void 0 === e && (e = []); - const t = e, - n = r.useCallback(t => dt(t, e, 'reference'), t), - o = r.useCallback(t => dt(t, e, 'floating'), t), - i = r.useCallback( - t => dt(t, e, 'item'), - e.map(e => (null == e ? void 0 : e.item)), - ); - return r.useMemo(() => ({ getReferenceProps: n, getFloatingProps: o, getItemProps: i }), [n, o, i]); - }; - var ht = n(75644), - pt = 0; - function vt(e, t, n, r, o) { - var i, - a, - s = {}; - for (a in t) 'ref' == a ? (i = t[a]) : (s[a] = t[a]); - var l = { - type: e, - props: s, - key: n, - ref: i, - __k: null, - __: null, - __b: 0, - __e: null, - __d: void 0, - __c: null, - __h: null, - constructor: void 0, - __v: --pt, - __source: r, - __self: o, - }; - if ('function' == typeof e && (i = e.defaultProps)) for (a in i) void 0 === s[a] && (s[a] = i[a]); - return ht.YM.vnode && ht.YM.vnode(l), l; - } - function gt({ - children: e, - open: t = !1, - content: n, - placement: o = 'top', - reference: i, - openAction: a = 'click', - strategy: s = 'absolute', - }) { - const [l, c] = (0, r.useState)(t), - u = (0, r.useRef)(null), - { - x: d, - y: f, - refs: h, - strategy: p, - placement: v, - middlewareData: { arrow: { x: g, y: m } = {} }, - context: y, - } = ut({ - placement: o, - whileElementsMounted: 'fixed' === s ? we : void 0, - open: l, - onOpenChange: c, - strategy: s, - middleware: [F(6), B(), V({ padding: 6 }), ke({ element: u })], - }), - b = { top: 'bottom', right: 'left', bottom: 'top', left: 'right' }[v.split('-')[0]] || 'bottom'; - (0, r.useLayoutEffect)(() => { - i && h.setReference(i); - }, [h, i]); - const x = ot(y, { enabled: 'click' === a }), - w = lt(y, { enabled: 'click' === a, referencePress: !1, outsidePress: !0, outsidePressEvent: 'mousedown' }), - E = $e(y, { enabled: 'hover' === a }), - k = ct(y, { role: 'tooltip' }), - { getReferenceProps: _, getFloatingProps: S } = ft([x, E, w, k]), - P = Object.assign({ ref: h.setReference }, _()); - return vt(ht.HY, { - children: [ - !i && e ? (0, r.cloneElement)(e, P) : e, - l - ? vt( - 'div', - Object.assign( - { - ref: h.setFloating, - style: { position: p, top: null != f ? f : 0, left: null != d ? d : 0, width: 'max-content' }, - className: 'z-10 min-w-[250px] rounded-md border border-slate-500', - }, - S(), - { - children: [ - vt('div', { - style: { - left: null != g ? `${g}px` : '', - top: null != m ? `${m}px` : '', - right: '', - bottom: '', - [b]: '-4px', - }, - className: 'absolute -z-10 h-4 w-4 rotate-45 bg-slate-500', - ref: u, - }), - vt('div', { - className: 'select-text rounded-md bg-white p-3 dark:bg-slate-900 dark:text-slate-400', - children: n, - }), - ], - }, - ), - ) - : null, - ], - }); - } - n(47306); - const mt = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M12 3c2.755 0 5.455.232 8.083.678.533.09.917.556.917 1.096v1.044a2.25 2.25 0 01-.659 1.591l-5.432 5.432a2.25 2.25 0 00-.659 1.591v2.927a2.25 2.25 0 01-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 00-.659-1.591L3.659 7.409A2.25 2.25 0 013 5.818V4.774c0-.54.384-1.006.917-1.096A48.32 48.32 0 0112 3z', - }), - ); - }); - const yt = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M12 9.75L14.25 12m0 0l2.25 2.25M14.25 12l2.25-2.25M14.25 12L12 14.25m-2.58 4.92l-6.375-6.375a1.125 1.125 0 010-1.59L9.42 4.83c.211-.211.498-.33.796-.33H19.5a2.25 2.25 0 012.25 2.25v10.5a2.25 2.25 0 01-2.25 2.25h-9.284c-.298 0-.585-.119-.796-.33z', - }), - ); - }); - function bt({ initialText: e, placeholderText: t, resetTextFilter: n, updateTextFilter: o }) { - const [i, a] = (0, r.useState)(null != e ? e : ''), - [s, l] = (function (e, t) { - const [n, o] = (0, r.useState)(e); - return ( - (0, r.useEffect)(() => { - const n = setTimeout(() => { - o(e); - }, t); - return () => { - clearTimeout(n); - }; - }, [e, t]), - [n, o] - ); - })(i, 500); - function c(e) { - '' === e ? (a(''), l(''), n()) : a(e); - } - return ( - (0, r.useEffect)(() => { - '' !== s && o(s); - }, [s, o]), - vt('form', { - className: 'group relative flex rounded-md shadow-sm', - onSubmit: e => e.preventDefault(), - children: [ - vt('span', { - className: - 'inline-flex items-center rounded-l-md border border-r-0 border-slate-300 bg-slate-50 p-2 dark:border-slate-900 dark:bg-slate-800', - children: vt(mt, { className: 'h-4 w-4' }), - }), - vt('input', { - type: 'text', - className: - 'block w-full flex-1 rounded-none rounded-r-md border border-slate-300 bg-white p-1.5 font-light text-slate-400 placeholder:font-light placeholder:text-slate-400 dark:border-slate-900 dark:bg-slate-800 dark:text-white dark:hover:bg-slate-700', - placeholder: t, - 'data-cy': 'textFilterInput', - name: 'filter', - value: i, - onKeyUp: function (e) { - 'Enter' === e.key && c(e.currentTarget.value); - }, - onChange: e => c(e.currentTarget.value), - }), - i.length > 0 - ? vt('button', { - 'data-cy': 'textFilterReset', - type: 'reset', - onClick: function () { - a(''), l(''), n(); - }, - className: - 'absolute top-1 right-1 inline-block rounded-md bg-slate-50 p-1 text-slate-400 dark:bg-slate-800', - children: vt(yt, { className: 'h-5 w-5' }), - }) - : null, - ], - }) - ); - } - function xt(e, t) { - if (null == e) return {}; - var n, - r, - o = {}, - i = Object.keys(e); - for (r = 0; r < i.length; r++) (n = i[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); - return o; - } - const wt = ['className', 'children']; - function Et(e) { - let { className: t, children: n } = e, - r = xt(e, wt); - return vt( - 'span', - Object.assign( - { - className: `${t} inline-block rounded-md bg-slate-300 p-2 font-sans text-xs font-semibold uppercase leading-4 tracking-wide text-slate-700`, - }, - r, - { children: n }, - ), - ); - } - const kt = ['className', 'children']; - function _t(e) { - const { className: t, children: n } = e, - r = xt(e, kt); - return vt( - 'select', - Object.assign( - { - className: `form-select flex items-center rounded-md rounded-md border border-slate-300 bg-white pl-4 pr-8 py-2 text-sm font-medium text-slate-700 shadow-sm hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700 ${t}`, - }, - r, - { children: n }, - ), - ); - } - function St({ type: e, source: t, target: n, fileDependencies: r, description: o, fileClickCallback: i }) { - return vt('div', { - className: 'text-sm text-slate-700 dark:text-slate-400', - children: [ - vt('h4', { - className: 'implicit' !== e ? 'mb-3' : '', - children: [ - vt(Et, { className: 'mr-3', children: null != e ? e : 'unknown' }), - vt('span', { className: 'font-mono', children: [t, ' \u2192 ', n] }), - ], - }), - o ? vt('p', { children: o }) : null, - 'implicit' !== e && (null == r ? void 0 : r.length) > 0 - ? vt('div', { - className: 'overflow-hidden rounded-md border border-slate-200 dark:border-slate-800', - children: [ - vt('div', { - className: - 'bg-slate-50 px-4 py-2 text-xs font-medium uppercase text-slate-500 dark:bg-slate-800 dark:text-slate-400', - children: vt('span', { children: 'Files' }), - }), - vt('ul', { - className: 'max-h-[300px] divide-y divide-slate-200 overflow-auto dark:divide-slate-800', - children: r.map(e => - vt( - 'li', - { - className: - 'whitespace-nowrap px-4 py-2 text-sm font-medium text-slate-800 dark:text-slate-300 ' + - (void 0 !== i ? 'hover:underline hover:cursor-pointer' : ''), - onClick: void 0 !== i ? () => i(e.fileName) : () => {}, - children: vt('span', { className: 'block truncate font-normal', children: e.fileName }), - }, - e.fileName, - ), - ), - }), - ], - }) - : null, - ], - }); - } - const Pt = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L10.582 16.07a4.5 4.5 0 01-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 011.13-1.897l8.932-8.931zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0115.75 21H5.25A2.25 2.25 0 013 18.75V8.25A2.25 2.25 0 015.25 6H10', - }), - ); - }); - function Ct({ type: e, id: t, tags: n, children: r, description: o, openConfigCallback: i }) { - return vt('div', { - className: 'text-sm text-slate-700 dark:text-slate-400', - children: [ - vt('h4', { - className: 'flex justify-between items-center gap-4', - children: [ - vt('div', { - className: 'flex items-center', - children: [ - vt(Et, { className: 'mr-3', children: e }), - vt('span', { className: 'font-mono', children: t }), - ], - }), - i - ? vt('button', { - className: - ' flex items-center rounded-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', - title: 'Edit project.json in editor', - onClick: i, - children: vt(Pt, { className: 'h-5 w-5' }), - }) - : void 0, - ], - }), - n.length > 0 - ? vt('p', { - className: 'my-2', - children: [vt('strong', { children: 'tags' }), vt('br', {}), n.join(', ')], - }) - : null, - o ? vt('p', { className: 'mt-4', children: o }) : null, - r, - ], - }); - } - const jt = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.348a1.125 1.125 0 010 1.971l-11.54 6.347a1.125 1.125 0 01-1.667-.985V5.653z', - }), - ); - }); - function Tt({ id: e, executor: t, description: n, runTaskCallback: r }) { - return vt('div', { - className: 'text-sm text-slate-700 dark:text-slate-400', - children: [ - vt('h4', { - className: 'flex justify-between items-center gap-4', - children: [ - vt('div', { - className: 'flex items-center', - children: [ - vt(Et, { className: 'mr-3', children: t }), - vt('span', { className: 'font-mono', children: e }), - ], - }), - r - ? vt('button', { - className: - ' flex items-center rounded-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', - title: 'Run Task', - onClick: r, - children: vt(jt, { className: 'h-5 w-5' }), - }) - : void 0, - ], - }), - vt('h4', {}), - n ? vt('p', { className: 'mt-4', children: n }) : null, - ], - }); - } - function Dt() { - return ( - (Dt = Object.assign - ? Object.assign.bind() - : function (e) { - for (var t = 1; t < arguments.length; t++) { - var n = arguments[t]; - for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); - } - return e; - }), - Dt.apply(this, arguments) - ); - } - var Nt; - !(function (e) { - (e.Pop = 'POP'), (e.Push = 'PUSH'), (e.Replace = 'REPLACE'); - })(Nt || (Nt = {})); - const Mt = 'popstate'; - function Ot(e, t) { - if (!1 === e || null == e) throw new Error(t); - } - function At(e, t) { - if (!e) { - 'undefined' != typeof console && console.warn(t); - try { - throw new Error(t); - } catch (x) {} - } - } - function Rt(e, t) { - return { usr: e.state, key: e.key, idx: t }; - } - function Lt(e, t, n, r) { - return ( - void 0 === n && (n = null), - Dt( - { pathname: 'string' == typeof e ? e : e.pathname, search: '', hash: '' }, - 'string' == typeof t ? Bt(t) : t, - { state: n, key: (t && t.key) || r || Math.random().toString(36).substr(2, 8) }, - ) - ); - } - function It(e) { - let { pathname: t = '/', search: n = '', hash: r = '' } = e; - return ( - n && '?' !== n && (t += '?' === n.charAt(0) ? n : '?' + n), - r && '#' !== r && (t += '#' === r.charAt(0) ? r : '#' + r), - t - ); - } - function Bt(e) { - let t = {}; - if (e) { - let n = e.indexOf('#'); - n >= 0 && ((t.hash = e.substr(n)), (e = e.substr(0, n))); - let r = e.indexOf('?'); - r >= 0 && ((t.search = e.substr(r)), (e = e.substr(0, r))), e && (t.pathname = e); - } - return t; - } - function Ft(e, t, n, r) { - void 0 === r && (r = {}); - let { window: o = document.defaultView, v5Compat: i = !1 } = r, - a = o.history, - s = Nt.Pop, - l = null, - c = u(); - function u() { - return (a.state || { idx: null }).idx; - } - function d() { - s = Nt.Pop; - let e = u(), - t = null == e ? null : e - c; - (c = e), l && l({ action: s, location: h.location, delta: t }); - } - function f(e) { - let t = 'null' !== o.location.origin ? o.location.origin : o.location.href, - n = 'string' == typeof e ? e : It(e); - return Ot(t, 'No window.location.(origin|href) available to create URL for href: ' + n), new URL(n, t); - } - null == c && ((c = 0), a.replaceState(Dt({}, a.state, { idx: c }), '')); - let h = { - get action() { - return s; - }, - get location() { - return e(o, a); - }, - listen(e) { - if (l) throw new Error('A history only accepts one active listener'); - return ( - o.addEventListener(Mt, d), - (l = e), - () => { - o.removeEventListener(Mt, d), (l = null); - } - ); - }, - createHref: e => t(o, e), - createURL: f, - encodeLocation(e) { - let t = f(e); - return { pathname: t.pathname, search: t.search, hash: t.hash }; - }, - push: function (e, t) { - s = Nt.Push; - let r = Lt(h.location, e, t); - n && n(r, e), (c = u() + 1); - let d = Rt(r, c), - f = h.createHref(r); - try { - a.pushState(d, '', f); - } catch (p) { - o.location.assign(f); - } - i && l && l({ action: s, location: h.location, delta: 1 }); - }, - replace: function (e, t) { - s = Nt.Replace; - let r = Lt(h.location, e, t); - n && n(r, e), (c = u()); - let o = Rt(r, c), - d = h.createHref(r); - a.replaceState(o, '', d), i && l && l({ action: s, location: h.location, delta: 0 }); - }, - go: e => a.go(e), - }; - return h; - } - var zt; - !(function (e) { - (e.data = 'data'), (e.deferred = 'deferred'), (e.redirect = 'redirect'), (e.error = 'error'); - })(zt || (zt = {})); - const Vt = new Set(['lazy', 'caseSensitive', 'path', 'id', 'index', 'children']); - function Gt(e, t, n, r) { - return ( - void 0 === n && (n = []), - void 0 === r && (r = {}), - e.map((e, o) => { - let i = [...n, o], - a = 'string' == typeof e.id ? e.id : i.join('-'); - if ( - (Ot(!0 !== e.index || !e.children, 'Cannot specify children on an index route'), - Ot( - !r[a], - 'Found a route id collision on id "' + - a + - '". Route id\'s must be globally unique within Data Router usages', - ), - (function (e) { - return !0 === e.index; - })(e)) - ) { - let n = Dt({}, e, t(e), { id: a }); - return (r[a] = n), n; - } - { - let n = Dt({}, e, t(e), { id: a, children: void 0 }); - return (r[a] = n), e.children && (n.children = Gt(e.children, t, i, r)), n; - } - }) - ); - } - function Ht(e, t, n) { - void 0 === n && (n = '/'); - let r = rn(('string' == typeof t ? Bt(t) : t).pathname || '/', n); - if (null == r) return null; - let o = Wt(e); - !(function (e) { - e.sort((e, t) => - e.score !== t.score - ? t.score - e.score - : (function (e, t) { - let n = e.length === t.length && e.slice(0, -1).every((e, n) => e === t[n]); - return n ? e[e.length - 1] - t[t.length - 1] : 0; - })( - e.routesMeta.map(e => e.childrenIndex), - t.routesMeta.map(e => e.childrenIndex), - ), - ); - })(o); - let i = null; - for (let a = 0; null == i && a < o.length; ++a) i = en(o[a], nn(r)); - return i; - } - function Wt(e, t, n, r) { - void 0 === t && (t = []), void 0 === n && (n = []), void 0 === r && (r = ''); - let o = (e, o, i) => { - let a = { - relativePath: void 0 === i ? e.path || '' : i, - caseSensitive: !0 === e.caseSensitive, - childrenIndex: o, - route: e, - }; - a.relativePath.startsWith('/') && - (Ot( - a.relativePath.startsWith(r), - 'Absolute route path "' + - a.relativePath + - '" nested under path "' + - r + - '" is not valid. An absolute child route path must start with the combined path of all its parent routes.', - ), - (a.relativePath = a.relativePath.slice(r.length))); - let s = ln([r, a.relativePath]), - l = n.concat(a); - e.children && - e.children.length > 0 && - (Ot( - !0 !== e.index, - 'Index routes must not have child routes. Please remove all child routes from route path "' + s + '".', - ), - Wt(e.children, t, l, s)), - (null != e.path || e.index) && t.push({ path: s, score: Jt(s, e.index), routesMeta: l }); - }; - return ( - e.forEach((e, t) => { - var n; - if ('' !== e.path && null != (n = e.path) && n.includes('?')) for (let r of Ut(e.path)) o(e, t, r); - else o(e, t); - }), - t - ); - } - function Ut(e) { - let t = e.split('/'); - if (0 === t.length) return []; - let [n, ...r] = t, - o = n.endsWith('?'), - i = n.replace(/\?$/, ''); - if (0 === r.length) return o ? [i, ''] : [i]; - let a = Ut(r.join('/')), - s = []; - return ( - s.push(...a.map(e => ('' === e ? i : [i, e].join('/')))), - o && s.push(...a), - s.map(t => (e.startsWith('/') && '' === t ? '/' : t)) - ); - } - const qt = /^:\w+$/, - Yt = 3, - Xt = 2, - $t = 1, - Kt = 10, - Zt = -2, - Qt = e => '*' === e; - function Jt(e, t) { - let n = e.split('/'), - r = n.length; - return ( - n.some(Qt) && (r += Zt), - t && (r += Xt), - n.filter(e => !Qt(e)).reduce((e, t) => e + (qt.test(t) ? Yt : '' === t ? $t : Kt), r) - ); - } - function en(e, t) { - let { routesMeta: n } = e, - r = {}, - o = '/', - i = []; - for (let a = 0; a < n.length; ++a) { - let e = n[a], - s = a === n.length - 1, - l = '/' === o ? t : t.slice(o.length) || '/', - c = tn({ path: e.relativePath, caseSensitive: e.caseSensitive, end: s }, l); - if (!c) return null; - Object.assign(r, c.params); - let u = e.route; - i.push({ params: r, pathname: ln([o, c.pathname]), pathnameBase: cn(ln([o, c.pathnameBase])), route: u }), - '/' !== c.pathnameBase && (o = ln([o, c.pathnameBase])); - } - return i; - } - function tn(e, t) { - 'string' == typeof e && (e = { path: e, caseSensitive: !1, end: !0 }); - let [n, r] = (function (e, t, n) { - void 0 === t && (t = !1); - void 0 === n && (n = !0); - At( - '*' === e || !e.endsWith('*') || e.endsWith('/*'), - 'Route path "' + - e + - '" will be treated as if it were "' + - e.replace(/\*$/, '/*') + - '" because the `*` character must always follow a `/` in the pattern. To get rid of this warning, please change the route path to "' + - e.replace(/\*$/, '/*') + - '".', - ); - let r = [], - o = - '^' + - e - .replace(/\/*\*?$/, '') - .replace(/^\/*/, '/') - .replace(/[\\.*+^$?{}|()[\]]/g, '\\$&') - .replace(/\/:(\w+)/g, (e, t) => (r.push(t), '/([^\\/]+)')); - e.endsWith('*') - ? (r.push('*'), (o += '*' === e || '/*' === e ? '(.*)$' : '(?:\\/(.+)|\\/*)$')) - : n - ? (o += '\\/*$') - : '' !== e && '/' !== e && (o += '(?:(?=\\/|$))'); - let i = new RegExp(o, t ? void 0 : 'i'); - return [i, r]; - })(e.path, e.caseSensitive, e.end), - o = t.match(n); - if (!o) return null; - let i = o[0], - a = i.replace(/(.)\/+$/, '$1'), - s = o.slice(1), - l = r.reduce((e, t, n) => { - if ('*' === t) { - let e = s[n] || ''; - a = i.slice(0, i.length - e.length).replace(/(.)\/+$/, '$1'); - } - return ( - (e[t] = (function (e, t) { - try { - return decodeURIComponent(e); - } catch (n) { - return ( - At( - !1, - 'The value for the URL param "' + - t + - '" will not be decoded because the string "' + - e + - '" is a malformed URL segment. This is probably due to a bad percent encoding (' + - n + - ').', - ), - e - ); - } - })(s[n] || '', t)), - e - ); - }, {}); - return { params: l, pathname: i, pathnameBase: a, pattern: e }; - } - function nn(e) { - try { - return decodeURI(e); - } catch (t) { - return ( - At( - !1, - 'The URL path "' + - e + - '" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent encoding (' + - t + - ').', - ), - e - ); - } - } - function rn(e, t) { - if ('/' === t) return e; - if (!e.toLowerCase().startsWith(t.toLowerCase())) return null; - let n = t.endsWith('/') ? t.length - 1 : t.length, - r = e.charAt(n); - return r && '/' !== r ? null : e.slice(n) || '/'; - } - function on(e, t, n, r) { - return ( - "Cannot include a '" + - e + - "' character in a manually specified `to." + - t + - '` field [' + - JSON.stringify(r) + - ']. Please separate it out to the `to.' + - n + - '` field. Alternatively you may provide the full path as a string in and the router will parse it for you.' - ); - } - function an(e) { - return e.filter((e, t) => 0 === t || (e.route.path && e.route.path.length > 0)); - } - function sn(e, t, n, r) { - let o; - void 0 === r && (r = !1), - 'string' == typeof e - ? (o = Bt(e)) - : ((o = Dt({}, e)), - Ot(!o.pathname || !o.pathname.includes('?'), on('?', 'pathname', 'search', o)), - Ot(!o.pathname || !o.pathname.includes('#'), on('#', 'pathname', 'hash', o)), - Ot(!o.search || !o.search.includes('#'), on('#', 'search', 'hash', o))); - let i, - a = '' === e || '' === o.pathname, - s = a ? '/' : o.pathname; - if (r || null == s) i = n; - else { - let e = t.length - 1; - if (s.startsWith('..')) { - let t = s.split('/'); - for (; '..' === t[0]; ) t.shift(), (e -= 1); - o.pathname = t.join('/'); - } - i = e >= 0 ? t[e] : '/'; - } - let l = (function (e, t) { - void 0 === t && (t = '/'); - let { pathname: n, search: r = '', hash: o = '' } = 'string' == typeof e ? Bt(e) : e, - i = n - ? n.startsWith('/') - ? n - : (function (e, t) { - let n = t.replace(/\/+$/, '').split('/'); - return ( - e.split('/').forEach(e => { - '..' === e ? n.length > 1 && n.pop() : '.' !== e && n.push(e); - }), - n.length > 1 ? n.join('/') : '/' - ); - })(n, t) - : t; - return { pathname: i, search: un(r), hash: dn(o) }; - })(o, i), - c = s && '/' !== s && s.endsWith('/'), - u = (a || '.' === s) && n.endsWith('/'); - return l.pathname.endsWith('/') || (!c && !u) || (l.pathname += '/'), l; - } - const ln = e => e.join('/').replace(/\/\/+/g, '/'), - cn = e => e.replace(/\/+$/, '').replace(/^\/*/, '/'), - un = e => (e && '?' !== e ? (e.startsWith('?') ? e : '?' + e) : ''), - dn = e => (e && '#' !== e ? (e.startsWith('#') ? e : '#' + e) : ''); - Error; - const fn = function (e, t) { - void 0 === t && (t = 302); - let n = t; - 'number' == typeof n ? (n = { status: n }) : void 0 === n.status && (n.status = 302); - let r = new Headers(n.headers); - return r.set('Location', e), new Response(null, Dt({}, n, { headers: r })); - }; - class ErrorResponse { - constructor(e, t, n, r) { - void 0 === r && (r = !1), - (this.status = e), - (this.statusText = t || ''), - (this.internal = r), - n instanceof Error ? ((this.data = n.toString()), (this.error = n)) : (this.data = n); - } - } - function hn(e) { - return ( - null != e && - 'number' == typeof e.status && - 'string' == typeof e.statusText && - 'boolean' == typeof e.internal && - 'data' in e - ); - } - const pn = ['post', 'put', 'patch', 'delete'], - vn = new Set(pn), - gn = ['get', ...pn], - mn = new Set(gn), - yn = new Set([301, 302, 303, 307, 308]), - bn = new Set([307, 308]), - xn = { - state: 'idle', - location: void 0, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - }, - wn = { - state: 'idle', - data: void 0, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - }, - En = { state: 'unblocked', proceed: void 0, reset: void 0, location: void 0 }, - kn = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i, - _n = 'undefined' != typeof window && void 0 !== window.document && void 0 !== window.document.createElement, - Sn = !_n, - Pn = e => ({ hasErrorBoundary: Boolean(e.hasErrorBoundary) }); - function Cn(e) { - let t; - if ( - (Ot(e.routes.length > 0, 'You must provide a non-empty routes array to createRouter'), e.mapRouteProperties) - ) - t = e.mapRouteProperties; - else if (e.detectErrorBoundary) { - let n = e.detectErrorBoundary; - t = e => ({ hasErrorBoundary: n(e) }); - } else t = Pn; - let n, - r = {}, - o = Gt(e.routes, t, void 0, r), - i = e.basename || '/', - a = Dt({ v7_normalizeFormMethod: !1, v7_prependBasename: !1 }, e.future), - s = null, - l = new Set(), - c = null, - u = null, - d = null, - f = null != e.hydrationData, - h = Ht(o, e.history.location, i), - p = null; - if (null == h) { - let t = Hn(404, { pathname: e.history.location.pathname }), - { matches: n, route: r } = Gn(o); - (h = n), (p = { [r.id]: t }); - } - let v, - g, - m = !(h.some(e => e.route.lazy) || (h.some(e => e.route.loader) && null == e.hydrationData)), - y = { - historyAction: e.history.action, - location: e.history.location, - matches: h, - initialized: m, - navigation: xn, - restoreScrollPosition: null == e.hydrationData && null, - preventScrollReset: !1, - revalidation: 'idle', - loaderData: (e.hydrationData && e.hydrationData.loaderData) || {}, - actionData: (e.hydrationData && e.hydrationData.actionData) || null, - errors: (e.hydrationData && e.hydrationData.errors) || p, - fetchers: new Map(), - blockers: new Map(), - }, - b = Nt.Pop, - x = !1, - w = !1, - E = !1, - k = [], - _ = [], - S = new Map(), - P = 0, - C = -1, - j = new Map(), - T = new Set(), - D = new Map(), - N = new Map(), - M = new Map(), - O = !1; - function A(e) { - (y = Dt({}, y, e)), l.forEach(e => e(y)); - } - function R(t, r) { - var i, a; - let s, - l = - null != y.actionData && - null != y.navigation.formMethod && - Zn(y.navigation.formMethod) && - 'loading' === y.navigation.state && - !0 !== (null == (i = t.state) ? void 0 : i._isRedirect); - s = r.actionData ? (Object.keys(r.actionData).length > 0 ? r.actionData : null) : l ? y.actionData : null; - let c = r.loaderData ? zn(y.loaderData, r.loaderData, r.matches || [], r.errors) : y.loaderData; - for (let [e] of M) Y(e); - let u = - !0 === x || - (null != y.navigation.formMethod && - Zn(y.navigation.formMethod) && - !0 !== (null == (a = t.state) ? void 0 : a._isRedirect)); - n && ((o = n), (n = void 0)), - A( - Dt({}, r, { - actionData: s, - loaderData: c, - historyAction: b, - location: t, - initialized: !0, - navigation: xn, - revalidation: 'idle', - restoreScrollPosition: Z(t, r.matches || y.matches), - preventScrollReset: u, - blockers: new Map(y.blockers), - }), - ), - w || - b === Nt.Pop || - (b === Nt.Push ? e.history.push(t, t.state) : b === Nt.Replace && e.history.replace(t, t.state)), - (b = Nt.Pop), - (x = !1), - (w = !1), - (E = !1), - (k = []), - (_ = []); - } - async function L(a, s, l) { - g && g.abort(), - (g = null), - (b = a), - (w = !0 === (l && l.startUninterruptedRevalidation)), - (function (e, t) { - if (c && u && d) { - let n = t.map(e => tr(e, y.loaderData)), - r = u(e, n) || e.key; - c[r] = d(); - } - })(y.location, y.matches), - (x = !0 === (l && l.preventScrollReset)); - let f = n || o, - h = l && l.overrideNavigation, - p = Ht(f, s, i); - if (!p) { - let e = Hn(404, { pathname: s.pathname }), - { matches: t, route: n } = Gn(f); - return K(), void R(s, { matches: t, loaderData: {}, errors: { [n.id]: e } }); - } - if ( - y.initialized && - (function (e, t) { - if (e.pathname !== t.pathname || e.search !== t.search) return !1; - if ('' === e.hash) return '' !== t.hash; - if (e.hash === t.hash) return !0; - if ('' !== t.hash) return !0; - return !1; - })(y.location, s) && - !(l && l.submission && Zn(l.submission.formMethod)) - ) - return void R(s, { matches: p }); - g = new AbortController(); - let v, - m, - j = Ln(e.history, s, g.signal, l && l.submission); - if (l && l.pendingError) m = { [Vn(p).route.id]: l.pendingError }; - else if (l && l.submission && Zn(l.submission.formMethod)) { - let e = await (async function (e, n, o, a, s) { - z(); - let l, - c = Dt({ state: 'submitting', location: n }, o); - A({ navigation: c }); - let u = nr(a, n); - if (u.route.action || u.route.lazy) { - if (((l = await Rn('action', e, u, a, r, t, i)), e.signal.aborted)) return { shortCircuited: !0 }; - } else - l = { type: zt.error, error: Hn(405, { method: e.method, pathname: n.pathname, routeId: u.route.id }) }; - if (Xn(l)) { - let e; - return ( - (e = s && null != s.replace ? s.replace : l.location === y.location.pathname + y.location.search), - await B(y, l, { submission: o, replace: e }), - { shortCircuited: !0 } - ); - } - if (Yn(l)) { - let e = Vn(a, u.route.id); - return ( - !0 !== (s && s.replace) && (b = Nt.Push), - { pendingActionData: {}, pendingActionError: { [e.route.id]: l.error } } - ); - } - if (qn(l)) throw Hn(400, { type: 'defer-action' }); - return { pendingActionData: { [u.route.id]: l.data } }; - })(j, s, l.submission, p, { replace: l.replace }); - if (e.shortCircuited) return; - (v = e.pendingActionData), - (m = e.pendingActionError), - (h = Dt({ state: 'loading', location: s }, l.submission)), - (j = new Request(j.url, { signal: j.signal })); - } - let { - shortCircuited: T, - loaderData: M, - errors: O, - } = await (async function (t, r, a, s, l, c, u, d, f) { - let h = s; - if (!h) { - h = Dt( - { - state: 'loading', - location: r, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - }, - l, - ); - } - let p = - l || c - ? l || c - : h.formMethod && h.formAction && h.formData && h.formEncType - ? { - formMethod: h.formMethod, - formAction: h.formAction, - formData: h.formData, - formEncType: h.formEncType, - } - : void 0, - v = n || o, - [m, b] = Nn(e.history, y, a, p, r, E, k, _, D, v, i, d, f); - if ( - (K(e => !(a && a.some(t => t.route.id === e)) || (m && m.some(t => t.route.id === e))), - 0 === m.length && 0 === b.length) - ) { - let e = U(); - return ( - R( - r, - Dt( - { matches: a, loaderData: {}, errors: f || null }, - d ? { actionData: d } : {}, - e ? { fetchers: new Map(y.fetchers) } : {}, - ), - ), - { shortCircuited: !0 } - ); - } - if (!w) { - b.forEach(e => { - let t = y.fetchers.get(e.key), - n = { - state: 'loading', - data: t && t.data, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - ' _hasFetcherDoneAnything ': !0, - }; - y.fetchers.set(e.key, n); - }); - let e = d || y.actionData; - A( - Dt( - { navigation: h }, - e ? (0 === Object.keys(e).length ? { actionData: null } : { actionData: e }) : {}, - b.length > 0 ? { fetchers: new Map(y.fetchers) } : {}, - ), - ); - } - (C = ++P), - b.forEach(e => { - e.controller && S.set(e.key, e.controller); - }); - let x = () => b.forEach(e => H(e.key)); - g && g.signal.addEventListener('abort', x); - let { results: j, loaderResults: T, fetcherResults: M } = await F(y.matches, a, m, b, t); - if (t.signal.aborted) return { shortCircuited: !0 }; - g && g.signal.removeEventListener('abort', x); - b.forEach(e => S.delete(e.key)); - let O = Wn(j); - if (O) return await B(y, O, { replace: u }), { shortCircuited: !0 }; - let { loaderData: L, errors: I } = Fn(y, a, m, T, f, b, M, N); - N.forEach((e, t) => { - e.subscribe(n => { - (n || e.done) && N.delete(t); - }); - }); - let z = U(), - V = q(C), - G = z || V || b.length > 0; - return Dt({ loaderData: L, errors: I }, G ? { fetchers: new Map(y.fetchers) } : {}); - })(j, s, p, h, l && l.submission, l && l.fetcherSubmission, l && l.replace, v, m); - T || ((g = null), R(s, Dt({ matches: p }, v ? { actionData: v } : {}, { loaderData: M, errors: O }))); - } - function I(e) { - return y.fetchers.get(e) || wn; - } - async function B(t, n, r) { - var o; - let { submission: a, replace: s, isFetchActionRedirect: l } = void 0 === r ? {} : r; - n.revalidate && (E = !0); - let c = Lt(t.location, n.location, Dt({ _isRedirect: !0 }, l ? { _isFetchActionRedirect: !0 } : {})); - if ( - (Ot(c, 'Expected a location on the redirect navigation'), - kn.test(n.location) && _n && void 0 !== (null == (o = window) ? void 0 : o.location)) - ) { - let t = e.history.createURL(n.location), - r = null == rn(t.pathname, i); - if (window.location.origin !== t.origin || r) - return void (s ? window.location.replace(n.location) : window.location.assign(n.location)); - } - g = null; - let u = !0 === s ? Nt.Replace : Nt.Push, - { formMethod: d, formAction: f, formEncType: h, formData: p } = t.navigation; - !a && d && f && p && h && (a = { formMethod: d, formAction: f, formEncType: h, formData: p }), - bn.has(n.status) && a && Zn(a.formMethod) - ? await L(u, c, { submission: Dt({}, a, { formAction: n.location }), preventScrollReset: x }) - : l - ? await L(u, c, { - overrideNavigation: { - state: 'loading', - location: c, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - }, - fetcherSubmission: a, - preventScrollReset: x, - }) - : await L(u, c, { - overrideNavigation: { - state: 'loading', - location: c, - formMethod: a ? a.formMethod : void 0, - formAction: a ? a.formAction : void 0, - formEncType: a ? a.formEncType : void 0, - formData: a ? a.formData : void 0, - }, - preventScrollReset: x, - }); - } - async function F(n, o, a, s, l) { - let c = await Promise.all([ - ...a.map(e => Rn('loader', l, e, o, r, t, i)), - ...s.map(n => { - if (n.matches && n.match && n.controller) - return Rn('loader', Ln(e.history, n.path, n.controller.signal), n.match, n.matches, r, t, i); - return { type: zt.error, error: Hn(404, { pathname: n.path }) }; - }), - ]), - u = c.slice(0, a.length), - d = c.slice(a.length); - return ( - await Promise.all([ - Qn( - n, - a, - u, - u.map(() => l.signal), - !1, - y.loaderData, - ), - Qn( - n, - s.map(e => e.match), - d, - s.map(e => (e.controller ? e.controller.signal : null)), - !0, - ), - ]), - { results: c, loaderResults: u, fetcherResults: d } - ); - } - function z() { - (E = !0), - k.push(...K()), - D.forEach((e, t) => { - S.has(t) && (_.push(t), H(t)); - }); - } - function V(e, t, n) { - let r = Vn(y.matches, t); - G(e), A({ errors: { [r.route.id]: n }, fetchers: new Map(y.fetchers) }); - } - function G(e) { - S.has(e) && H(e), D.delete(e), j.delete(e), T.delete(e), y.fetchers.delete(e); - } - function H(e) { - let t = S.get(e); - Ot(t, 'Expected fetch controller: ' + e), t.abort(), S.delete(e); - } - function W(e) { - for (let t of e) { - let e = { - state: 'idle', - data: I(t).data, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - ' _hasFetcherDoneAnything ': !0, - }; - y.fetchers.set(t, e); - } - } - function U() { - let e = [], - t = !1; - for (let n of T) { - let r = y.fetchers.get(n); - Ot(r, 'Expected fetcher: ' + n), 'loading' === r.state && (T.delete(n), e.push(n), (t = !0)); - } - return W(e), t; - } - function q(e) { - let t = []; - for (let [n, r] of j) - if (r < e) { - let e = y.fetchers.get(n); - Ot(e, 'Expected fetcher: ' + n), 'loading' === e.state && (H(n), j.delete(n), t.push(n)); - } - return W(t), t.length > 0; - } - function Y(e) { - y.blockers.delete(e), M.delete(e); - } - function X(e, t) { - let n = y.blockers.get(e) || En; - Ot( - ('unblocked' === n.state && 'blocked' === t.state) || - ('blocked' === n.state && 'blocked' === t.state) || - ('blocked' === n.state && 'proceeding' === t.state) || - ('blocked' === n.state && 'unblocked' === t.state) || - ('proceeding' === n.state && 'unblocked' === t.state), - 'Invalid blocker state transition: ' + n.state + ' -> ' + t.state, - ), - y.blockers.set(e, t), - A({ blockers: new Map(y.blockers) }); - } - function $(e) { - let { currentLocation: t, nextLocation: n, historyAction: r } = e; - if (0 === M.size) return; - M.size > 1 && At(!1, 'A router only supports one blocker at a time'); - let o = Array.from(M.entries()), - [i, a] = o[o.length - 1], - s = y.blockers.get(i); - return s && 'proceeding' === s.state - ? void 0 - : a({ currentLocation: t, nextLocation: n, historyAction: r }) - ? i - : void 0; - } - function K(e) { - let t = []; - return ( - N.forEach((n, r) => { - (e && !e(r)) || (n.cancel(), t.push(r), N.delete(r)); - }), - t - ); - } - function Z(e, t) { - if (c && u && d) { - let n = t.map(e => tr(e, y.loaderData)), - r = u(e, n) || e.key, - o = c[r]; - if ('number' == typeof o) return o; - } - return null; - } - return ( - (v = { - get basename() { - return i; - }, - get state() { - return y; - }, - get routes() { - return o; - }, - initialize: function () { - return ( - (s = e.history.listen(t => { - let { action: n, location: r, delta: o } = t; - if (O) return void (O = !1); - At( - 0 === M.size || null != o, - 'You are trying to use a blocker on a POP navigation to a location that was not created by @remix-run/router. This will fail silently in production. This can happen if you are navigating outside the router via `window.history.pushState`/`window.location.hash` instead of using router navigation APIs. This can also happen if you are using createHashRouter and the user manually changes the URL.', - ); - let i = $({ currentLocation: y.location, nextLocation: r, historyAction: n }); - return i && null != o - ? ((O = !0), - e.history.go(-1 * o), - void X(i, { - state: 'blocked', - location: r, - proceed() { - X(i, { state: 'proceeding', proceed: void 0, reset: void 0, location: r }), e.history.go(o); - }, - reset() { - Y(i), A({ blockers: new Map(v.state.blockers) }); - }, - })) - : L(n, r); - })), - y.initialized || L(Nt.Pop, y.location), - v - ); - }, - subscribe: function (e) { - return l.add(e), () => l.delete(e); - }, - enableScrollRestoration: function (e, t, n) { - if (((c = e), (d = t), (u = n || (e => e.key)), !f && y.navigation === xn)) { - f = !0; - let e = Z(y.location, y.matches); - null != e && A({ restoreScrollPosition: e }); - } - return () => { - (c = null), (d = null), (u = null); - }; - }, - navigate: async function t(n, r) { - if ('number' == typeof n) return void e.history.go(n); - let o = jn( - y.location, - y.matches, - i, - a.v7_prependBasename, - n, - null == r ? void 0 : r.fromRouteId, - null == r ? void 0 : r.relative, - ), - { path: s, submission: l, error: c } = Tn(a.v7_normalizeFormMethod, !1, o, r), - u = y.location, - d = Lt(y.location, s, r && r.state); - d = Dt({}, d, e.history.encodeLocation(d)); - let f = r && null != r.replace ? r.replace : void 0, - h = Nt.Push; - !0 === f - ? (h = Nt.Replace) - : !1 === f || - (null != l && - Zn(l.formMethod) && - l.formAction === y.location.pathname + y.location.search && - (h = Nt.Replace)); - let p = r && 'preventScrollReset' in r ? !0 === r.preventScrollReset : void 0, - v = $({ currentLocation: u, nextLocation: d, historyAction: h }); - if (!v) - return await L(h, d, { - submission: l, - pendingError: c, - preventScrollReset: p, - replace: r && r.replace, - }); - X(v, { - state: 'blocked', - location: d, - proceed() { - X(v, { state: 'proceeding', proceed: void 0, reset: void 0, location: d }), t(n, r); - }, - reset() { - Y(v), A({ blockers: new Map(y.blockers) }); - }, - }); - }, - fetch: function (s, l, c, u) { - if (Sn) - throw new Error( - "router.fetch() was called during the server render, but it shouldn't be. You are likely calling a useFetcher() method in the body of your component. Try moving it to a useEffect or a callback.", - ); - S.has(s) && H(s); - let d = n || o, - f = jn(y.location, y.matches, i, a.v7_prependBasename, c, l, null == u ? void 0 : u.relative), - h = Ht(d, f, i); - if (!h) return void V(s, l, Hn(404, { pathname: f })); - let { path: p, submission: v } = Tn(a.v7_normalizeFormMethod, !0, f, u), - m = nr(h, p); - (x = !0 === (u && u.preventScrollReset)), - v && Zn(v.formMethod) - ? (async function (a, s, l, c, u, d) { - if ((z(), D.delete(a), !c.route.action && !c.route.lazy)) { - let e = Hn(405, { method: d.formMethod, pathname: l, routeId: s }); - return void V(a, s, e); - } - let f = y.fetchers.get(a), - h = Dt({ state: 'submitting' }, d, { data: f && f.data, ' _hasFetcherDoneAnything ': !0 }); - y.fetchers.set(a, h), A({ fetchers: new Map(y.fetchers) }); - let p = new AbortController(), - v = Ln(e.history, l, p.signal, d); - S.set(a, p); - let m = await Rn('action', v, c, u, r, t, i); - if (v.signal.aborted) return void (S.get(a) === p && S.delete(a)); - if (Xn(m)) { - S.delete(a), T.add(a); - let e = Dt({ state: 'loading' }, d, { data: void 0, ' _hasFetcherDoneAnything ': !0 }); - return ( - y.fetchers.set(a, e), - A({ fetchers: new Map(y.fetchers) }), - B(y, m, { submission: d, isFetchActionRedirect: !0 }) - ); - } - if (Yn(m)) return void V(a, s, m.error); - if (qn(m)) throw Hn(400, { type: 'defer-action' }); - let x = y.navigation.location || y.location, - w = Ln(e.history, x, p.signal), - M = n || o, - O = 'idle' !== y.navigation.state ? Ht(M, y.navigation.location, i) : y.matches; - Ot(O, "Didn't find any matches after fetcher action"); - let L = ++P; - j.set(a, L); - let I = Dt({ state: 'loading', data: m.data }, d, { ' _hasFetcherDoneAnything ': !0 }); - y.fetchers.set(a, I); - let [G, W] = Nn(e.history, y, O, d, x, E, k, _, D, M, i, { [c.route.id]: m.data }, void 0); - W.filter(e => e.key !== a).forEach(e => { - let t = e.key, - n = y.fetchers.get(t), - r = { - state: 'loading', - data: n && n.data, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - ' _hasFetcherDoneAnything ': !0, - }; - y.fetchers.set(t, r), e.controller && S.set(t, e.controller); - }), - A({ fetchers: new Map(y.fetchers) }); - let U = () => W.forEach(e => H(e.key)); - p.signal.addEventListener('abort', U); - let { results: Y, loaderResults: X, fetcherResults: $ } = await F(y.matches, O, G, W, w); - if (p.signal.aborted) return; - p.signal.removeEventListener('abort', U), - j.delete(a), - S.delete(a), - W.forEach(e => S.delete(e.key)); - let K = Wn(Y); - if (K) return B(y, K); - let { loaderData: Z, errors: Q } = Fn(y, y.matches, G, X, void 0, W, $, N), - J = { - state: 'idle', - data: m.data, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - ' _hasFetcherDoneAnything ': !0, - }; - y.fetchers.set(a, J); - let ee = q(L); - 'loading' === y.navigation.state && L > C - ? (Ot(b, 'Expected pending action'), - g && g.abort(), - R(y.navigation.location, { - matches: O, - loaderData: Z, - errors: Q, - fetchers: new Map(y.fetchers), - })) - : (A( - Dt( - { errors: Q, loaderData: zn(y.loaderData, Z, O, Q) }, - ee ? { fetchers: new Map(y.fetchers) } : {}, - ), - ), - (E = !1)); - })(s, l, p, m, h, v) - : (D.set(s, { routeId: l, path: p }), - (async function (n, o, a, s, l, c) { - let u = y.fetchers.get(n), - d = Dt( - { - state: 'loading', - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - }, - c, - { data: u && u.data, ' _hasFetcherDoneAnything ': !0 }, - ); - y.fetchers.set(n, d), A({ fetchers: new Map(y.fetchers) }); - let f = new AbortController(), - h = Ln(e.history, a, f.signal); - S.set(n, f); - let p = await Rn('loader', h, s, l, r, t, i); - qn(p) && (p = (await Jn(p, h.signal, !0)) || p); - S.get(n) === f && S.delete(n); - if (h.signal.aborted) return; - if (Xn(p)) return T.add(n), void (await B(y, p)); - if (Yn(p)) { - let e = Vn(y.matches, o); - return ( - y.fetchers.delete(n), - void A({ fetchers: new Map(y.fetchers), errors: { [e.route.id]: p.error } }) - ); - } - Ot(!qn(p), 'Unhandled fetcher deferred data'); - let v = { - state: 'idle', - data: p.data, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - ' _hasFetcherDoneAnything ': !0, - }; - y.fetchers.set(n, v), A({ fetchers: new Map(y.fetchers) }); - })(s, l, p, m, h, v)); - }, - revalidate: function () { - z(), - A({ revalidation: 'loading' }), - 'submitting' !== y.navigation.state && - ('idle' !== y.navigation.state - ? L(b || y.historyAction, y.navigation.location, { overrideNavigation: y.navigation }) - : L(y.historyAction, y.location, { startUninterruptedRevalidation: !0 })); - }, - createHref: t => e.history.createHref(t), - encodeLocation: t => e.history.encodeLocation(t), - getFetcher: I, - deleteFetcher: G, - dispose: function () { - s && s(), - l.clear(), - g && g.abort(), - y.fetchers.forEach((e, t) => G(t)), - y.blockers.forEach((e, t) => Y(t)); - }, - getBlocker: function (e, t) { - let n = y.blockers.get(e) || En; - return M.get(e) !== t && M.set(e, t), n; - }, - deleteBlocker: Y, - _internalFetchControllers: S, - _internalActiveDeferreds: N, - _internalSetRoutes: function (e) { - (r = {}), (n = Gt(e, t, void 0, r)); - }, - }), - v - ); - } - Symbol('deferred'); - function jn(e, t, n, r, o, i, a) { - let s, l; - if (null != i && 'path' !== a) { - s = []; - for (let e of t) - if ((s.push(e), e.route.id === i)) { - l = e; - break; - } - } else (s = t), (l = t[t.length - 1]); - let c = sn( - o || '.', - an(s).map(e => e.pathnameBase), - rn(e.pathname, n) || e.pathname, - 'path' === a, - ); - return ( - null == o && ((c.search = e.search), (c.hash = e.hash)), - (null != o && '' !== o && '.' !== o) || - !l || - !l.route.index || - er(c.search) || - (c.search = c.search ? c.search.replace(/^\?/, '?index&') : '?index'), - r && '/' !== n && (c.pathname = '/' === c.pathname ? n : ln([n, c.pathname])), - It(c) - ); - } - function Tn(e, t, n, r) { - if ( - !r || - !(function (e) { - return null != e && 'formData' in e; - })(r) - ) - return { path: n }; - if (r.formMethod && !Kn(r.formMethod)) return { path: n, error: Hn(405, { method: r.formMethod }) }; - let o; - if (r.formData) { - let t = r.formMethod || 'get'; - if ( - ((o = { - formMethod: e ? t.toUpperCase() : t.toLowerCase(), - formAction: Un(n), - formEncType: (r && r.formEncType) || 'application/x-www-form-urlencoded', - formData: r.formData, - }), - Zn(o.formMethod)) - ) - return { path: n, submission: o }; - } - let i = Bt(n), - a = In(r.formData); - return ( - t && i.search && er(i.search) && a.append('index', ''), (i.search = '?' + a), { path: It(i), submission: o } - ); - } - function Dn(e, t) { - let n = e; - if (t) { - let r = e.findIndex(e => e.route.id === t); - r >= 0 && (n = e.slice(0, r)); - } - return n; - } - function Nn(e, t, n, r, o, i, a, s, l, c, u, d, f) { - let h = f ? Object.values(f)[0] : d ? Object.values(d)[0] : void 0, - p = e.createURL(t.location), - v = e.createURL(o), - g = f ? Object.keys(f)[0] : void 0, - m = Dn(n, g).filter((e, n) => { - if (e.route.lazy) return !0; - if (null == e.route.loader) return !1; - if ( - (function (e, t, n) { - let r = !t || n.route.id !== t.route.id, - o = void 0 === e[n.route.id]; - return r || o; - })(t.loaderData, t.matches[n], e) || - a.some(t => t === e.route.id) - ) - return !0; - let o = t.matches[n], - s = e; - return On( - e, - Dt({ currentUrl: p, currentParams: o.params, nextUrl: v, nextParams: s.params }, r, { - actionResult: h, - defaultShouldRevalidate: - i || p.pathname + p.search === v.pathname + v.search || p.search !== v.search || Mn(o, s), - }), - ); - }), - y = []; - return ( - l.forEach((e, o) => { - if (!n.some(t => t.route.id === e.routeId)) return; - let a = Ht(c, e.path, u); - if (!a) - return void y.push({ - key: o, - routeId: e.routeId, - path: e.path, - matches: null, - match: null, - controller: null, - }); - let l = nr(a, e.path); - (s.includes(o) || - On( - l, - Dt( - { - currentUrl: p, - currentParams: t.matches[t.matches.length - 1].params, - nextUrl: v, - nextParams: n[n.length - 1].params, - }, - r, - { actionResult: h, defaultShouldRevalidate: i }, - ), - )) && - y.push({ - key: o, - routeId: e.routeId, - path: e.path, - matches: a, - match: l, - controller: new AbortController(), - }); - }), - [m, y] - ); - } - function Mn(e, t) { - let n = e.route.path; - return e.pathname !== t.pathname || (null != n && n.endsWith('*') && e.params['*'] !== t.params['*']); - } - function On(e, t) { - if (e.route.shouldRevalidate) { - let n = e.route.shouldRevalidate(t); - if ('boolean' == typeof n) return n; - } - return t.defaultShouldRevalidate; - } - async function An(e, t, n) { - if (!e.lazy) return; - let r = await e.lazy(); - if (!e.lazy) return; - let o = n[e.id]; - Ot(o, 'No route found in manifest'); - let i = {}; - for (let a in r) { - let e = void 0 !== o[a] && 'hasErrorBoundary' !== a; - At( - !e, - 'Route "' + - o.id + - '" has a static property "' + - a + - '" defined but its lazy function is also returning a value for this property. The lazy route property "' + - a + - '" will be ignored.', - ), - e || Vt.has(a) || (i[a] = r[a]); - } - Object.assign(o, i), Object.assign(o, Dt({}, t(o), { lazy: void 0 })); - } - async function Rn(e, t, n, r, o, i, a, s, l, c) { - let u, d, f; - void 0 === s && (s = !1), void 0 === l && (l = !1); - let h = e => { - let r, - o = new Promise((e, t) => (r = t)); - return ( - (f = () => r()), - t.signal.addEventListener('abort', f), - Promise.race([e({ request: t, params: n.params, context: c }), o]) - ); - }; - try { - let r = n.route[e]; - if (n.route.lazy) - if (r) { - d = (await Promise.all([h(r), An(n.route, i, o)]))[0]; - } else { - if ((await An(n.route, i, o), (r = n.route[e]), !r)) { - if ('action' === e) { - let e = new URL(t.url), - r = e.pathname + e.search; - throw Hn(405, { method: t.method, pathname: r, routeId: n.route.id }); - } - return { type: zt.data, data: void 0 }; - } - d = await h(r); - } - else { - if (!r) { - let e = new URL(t.url); - throw Hn(404, { pathname: e.pathname + e.search }); - } - d = await h(r); - } - Ot( - void 0 !== d, - 'You defined ' + - ('action' === e ? 'an action' : 'a loader') + - ' for route "' + - n.route.id + - '" but didn\'t return anything from your `' + - e + - '` function. Please return a value or `null`.', - ); - } catch (x) { - (u = zt.error), (d = x); - } finally { - f && t.signal.removeEventListener('abort', f); - } - if ($n(d)) { - let e, - o = d.status; - if (yn.has(o)) { - let e = d.headers.get('Location'); - if ((Ot(e, 'Redirects returned/thrown from loaders/actions must have a Location header'), kn.test(e))) { - if (!s) { - let n = new URL(t.url), - r = e.startsWith('//') ? new URL(n.protocol + e) : new URL(e), - o = null != rn(r.pathname, a); - r.origin === n.origin && o && (e = r.pathname + r.search + r.hash); - } - } else e = jn(new URL(t.url), r.slice(0, r.indexOf(n) + 1), a, !0, e); - if (s) throw (d.headers.set('Location', e), d); - return { - type: zt.redirect, - status: o, - location: e, - revalidate: null !== d.headers.get('X-Remix-Revalidate'), - }; - } - if (l) throw { type: u || zt.data, response: d }; - let i = d.headers.get('Content-Type'); - return ( - (e = i && /\bapplication\/json\b/.test(i) ? await d.json() : await d.text()), - u === zt.error - ? { type: u, error: new ErrorResponse(o, d.statusText, e), headers: d.headers } - : { type: zt.data, data: e, statusCode: d.status, headers: d.headers } - ); - } - return u === zt.error - ? { type: u, error: d } - : (function (e) { - let t = e; - return ( - t && - 'object' == typeof t && - 'object' == typeof t.data && - 'function' == typeof t.subscribe && - 'function' == typeof t.cancel && - 'function' == typeof t.resolveData - ); - })(d) - ? { - type: zt.deferred, - deferredData: d, - statusCode: null == (p = d.init) ? void 0 : p.status, - headers: (null == (v = d.init) ? void 0 : v.headers) && new Headers(d.init.headers), - } - : { type: zt.data, data: d }; - var p, v; - } - function Ln(e, t, n, r) { - let o = e.createURL(Un(t)).toString(), - i = { signal: n }; - if (r && Zn(r.formMethod)) { - let { formMethod: e, formEncType: t, formData: n } = r; - (i.method = e.toUpperCase()), (i.body = 'application/x-www-form-urlencoded' === t ? In(n) : n); - } - return new Request(o, i); - } - function In(e) { - let t = new URLSearchParams(); - for (let [n, r] of e.entries()) t.append(n, r instanceof File ? r.name : r); - return t; - } - function Bn(e, t, n, r, o) { - let i, - a = {}, - s = null, - l = !1, - c = {}; - return ( - n.forEach((n, u) => { - let d = t[u].route.id; - if ((Ot(!Xn(n), 'Cannot handle redirect results in processLoaderData'), Yn(n))) { - let t = Vn(e, d), - o = n.error; - r && ((o = Object.values(r)[0]), (r = void 0)), - (s = s || {}), - null == s[t.route.id] && (s[t.route.id] = o), - (a[d] = void 0), - l || ((l = !0), (i = hn(n.error) ? n.error.status : 500)), - n.headers && (c[d] = n.headers); - } else - qn(n) ? (o.set(d, n.deferredData), (a[d] = n.deferredData.data)) : (a[d] = n.data), - null == n.statusCode || 200 === n.statusCode || l || (i = n.statusCode), - n.headers && (c[d] = n.headers); - }), - r && ((s = r), (a[Object.keys(r)[0]] = void 0)), - { loaderData: a, errors: s, statusCode: i || 200, loaderHeaders: c } - ); - } - function Fn(e, t, n, r, o, i, a, s) { - let { loaderData: l, errors: c } = Bn(t, n, r, o, s); - for (let u = 0; u < i.length; u++) { - let { key: t, match: n, controller: r } = i[u]; - Ot(void 0 !== a && void 0 !== a[u], 'Did not find corresponding fetcher result'); - let o = a[u]; - if (!r || !r.signal.aborted) - if (Yn(o)) { - let r = Vn(e.matches, null == n ? void 0 : n.route.id); - (c && c[r.route.id]) || (c = Dt({}, c, { [r.route.id]: o.error })), e.fetchers.delete(t); - } else if (Xn(o)) Ot(!1, 'Unhandled fetcher revalidation redirect'); - else if (qn(o)) Ot(!1, 'Unhandled fetcher deferred data'); - else { - let n = { - state: 'idle', - data: o.data, - formMethod: void 0, - formAction: void 0, - formEncType: void 0, - formData: void 0, - ' _hasFetcherDoneAnything ': !0, - }; - e.fetchers.set(t, n); - } - } - return { loaderData: l, errors: c }; - } - function zn(e, t, n, r) { - let o = Dt({}, t); - for (let i of n) { - let n = i.route.id; - if ( - (t.hasOwnProperty(n) - ? void 0 !== t[n] && (o[n] = t[n]) - : void 0 !== e[n] && i.route.loader && (o[n] = e[n]), - r && r.hasOwnProperty(n)) - ) - break; - } - return o; - } - function Vn(e, t) { - let n = t ? e.slice(0, e.findIndex(e => e.route.id === t) + 1) : [...e]; - return n.reverse().find(e => !0 === e.route.hasErrorBoundary) || e[0]; - } - function Gn(e) { - let t = e.find(e => e.index || !e.path || '/' === e.path) || { id: '__shim-error-route__' }; - return { matches: [{ params: {}, pathname: '', pathnameBase: '', route: t }], route: t }; - } - function Hn(e, t) { - let { pathname: n, routeId: r, method: o, type: i } = void 0 === t ? {} : t, - a = 'Unknown Server Error', - s = 'Unknown @remix-run/router error'; - return ( - 400 === e - ? ((a = 'Bad Request'), - o && n && r - ? (s = - 'You made a ' + - o + - ' request to "' + - n + - '" but did not provide a `loader` for route "' + - r + - '", so there is no way to handle the request.') - : 'defer-action' === i && (s = 'defer() is not supported in actions')) - : 403 === e - ? ((a = 'Forbidden'), (s = 'Route "' + r + '" does not match URL "' + n + '"')) - : 404 === e - ? ((a = 'Not Found'), (s = 'No route matches URL "' + n + '"')) - : 405 === e && - ((a = 'Method Not Allowed'), - o && n && r - ? (s = - 'You made a ' + - o.toUpperCase() + - ' request to "' + - n + - '" but did not provide an `action` for route "' + - r + - '", so there is no way to handle the request.') - : o && (s = 'Invalid request method "' + o.toUpperCase() + '"')), - new ErrorResponse(e || 500, a, new Error(s), !0) - ); - } - function Wn(e) { - for (let t = e.length - 1; t >= 0; t--) { - let n = e[t]; - if (Xn(n)) return n; - } - } - function Un(e) { - return It(Dt({}, 'string' == typeof e ? Bt(e) : e, { hash: '' })); - } - function qn(e) { - return e.type === zt.deferred; - } - function Yn(e) { - return e.type === zt.error; - } - function Xn(e) { - return (e && e.type) === zt.redirect; - } - function $n(e) { - return ( - null != e && - 'number' == typeof e.status && - 'string' == typeof e.statusText && - 'object' == typeof e.headers && - void 0 !== e.body - ); - } - function Kn(e) { - return mn.has(e.toLowerCase()); - } - function Zn(e) { - return vn.has(e.toLowerCase()); - } - async function Qn(e, t, n, r, o, i) { - for (let a = 0; a < n.length; a++) { - let s = n[a], - l = t[a]; - if (!l) continue; - let c = e.find(e => e.route.id === l.route.id), - u = null != c && !Mn(c, l) && void 0 !== (i && i[l.route.id]); - if (qn(s) && (o || u)) { - let e = r[a]; - Ot(e, 'Expected an AbortSignal for revalidating fetcher deferred result'), - await Jn(s, e, o).then(e => { - e && (n[a] = e || n[a]); - }); - } - } - } - async function Jn(e, t, n) { - if ((void 0 === n && (n = !1), !(await e.deferredData.resolveData(t)))) { - if (n) - try { - return { type: zt.data, data: e.deferredData.unwrappedData }; - } catch (x) { - return { type: zt.error, error: x }; - } - return { type: zt.data, data: e.deferredData.data }; - } - } - function er(e) { - return new URLSearchParams(e).getAll('index').some(e => '' === e); - } - function tr(e, t) { - let { route: n, pathname: r, params: o } = e; - return { id: n.id, pathname: r, params: o, data: t[n.id], handle: n.handle }; - } - function nr(e, t) { - let n = 'string' == typeof t ? Bt(t).search : t.search; - if (e[e.length - 1].route.index && er(n || '')) return e[e.length - 1]; - let r = an(e); - return r[r.length - 1]; - } - function rr() { - return ( - (rr = Object.assign - ? Object.assign.bind() - : function (e) { - for (var t = 1; t < arguments.length; t++) { - var n = arguments[t]; - for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); - } - return e; - }), - rr.apply(this, arguments) - ); - } - const or = r.createContext(null); - const ir = r.createContext(null); - const ar = r.createContext(null); - const sr = r.createContext(null); - const lr = r.createContext({ outlet: null, matches: [], isDataRoute: !1 }); - const cr = r.createContext(null); - function ur() { - return null != r.useContext(sr); - } - function dr() { - return ur() || Ot(!1), r.useContext(sr).location; - } - function fr(e) { - r.useContext(ar).static || r.useLayoutEffect(e); - } - function hr() { - let { isDataRoute: e } = r.useContext(lr); - return e - ? (function () { - let { router: e } = _r(Er.UseNavigateStable), - t = Pr(kr.UseNavigateStable), - n = r.useRef(!1); - fr(() => { - n.current = !0; - }); - let o = r.useCallback( - function (r, o) { - void 0 === o && (o = {}), - n.current && ('number' == typeof r ? e.navigate(r) : e.navigate(r, rr({ fromRouteId: t }, o))); - }, - [e, t], - ); - return o; - })() - : (function () { - ur() || Ot(!1); - let e = r.useContext(or), - { basename: t, navigator: n } = r.useContext(ar), - { matches: o } = r.useContext(lr), - { pathname: i } = dr(), - a = JSON.stringify(an(o).map(e => e.pathnameBase)), - s = r.useRef(!1); - return ( - fr(() => { - s.current = !0; - }), - r.useCallback( - function (r, o) { - if ((void 0 === o && (o = {}), !s.current)) return; - if ('number' == typeof r) return void n.go(r); - let l = sn(r, JSON.parse(a), i, 'path' === o.relative); - null == e && '/' !== t && (l.pathname = '/' === l.pathname ? t : ln([t, l.pathname])), - (o.replace ? n.replace : n.push)(l, o.state, o); - }, - [t, n, a, i, e], - ) - ); - })(); - } - const pr = r.createContext(null); - function vr() { - let { matches: e } = r.useContext(lr), - t = e[e.length - 1]; - return t ? t.params : {}; - } - function gr(e, t) { - let { relative: n } = void 0 === t ? {} : t, - { matches: o } = r.useContext(lr), - { pathname: i } = dr(), - a = JSON.stringify(an(o).map(e => e.pathnameBase)); - return r.useMemo(() => sn(e, JSON.parse(a), i, 'path' === n), [e, a, i, n]); - } - function mr(e, t, n) { - ur() || Ot(!1); - let { navigator: o } = r.useContext(ar), - { matches: i } = r.useContext(lr), - a = i[i.length - 1], - s = a ? a.params : {}, - l = (a && a.pathname, a ? a.pathnameBase : '/'); - a && a.route; - let c, - u = dr(); - if (t) { - var d; - let e = 'string' == typeof t ? Bt(t) : t; - '/' === l || (null == (d = e.pathname) ? void 0 : d.startsWith(l)) || Ot(!1), (c = e); - } else c = u; - let f = c.pathname || '/', - h = Ht(e, { pathname: '/' === l ? f : f.slice(l.length) || '/' }); - let p = wr( - h && - h.map(e => - Object.assign({}, e, { - params: Object.assign({}, s, e.params), - pathname: ln([l, o.encodeLocation ? o.encodeLocation(e.pathname).pathname : e.pathname]), - pathnameBase: - '/' === e.pathnameBase - ? l - : ln([l, o.encodeLocation ? o.encodeLocation(e.pathnameBase).pathname : e.pathnameBase]), - }), - ), - i, - n, - ); - return t && p - ? r.createElement( - sr.Provider, - { - value: { - location: rr({ pathname: '/', search: '', hash: '', state: null, key: 'default' }, c), - navigationType: Nt.Pop, - }, - }, - p, - ) - : p; - } - function yr() { - let e = jr(), - t = hn(e) ? e.status + ' ' + e.statusText : e instanceof Error ? e.message : JSON.stringify(e), - n = e instanceof Error ? e.stack : null, - o = 'rgba(200,200,200, 0.5)', - i = { padding: '0.5rem', backgroundColor: o }; - return r.createElement( - r.Fragment, - null, - r.createElement('h2', null, 'Unexpected Application Error!'), - r.createElement('h3', { style: { fontStyle: 'italic' } }, t), - n ? r.createElement('pre', { style: i }, n) : null, - null, - ); - } - const br = r.createElement(yr, null); - class RenderErrorBoundary extends r.Component { - constructor(e) { - super(e), (this.state = { location: e.location, revalidation: e.revalidation, error: e.error }); - } - static getDerivedStateFromError(e) { - return { error: e }; - } - static getDerivedStateFromProps(e, t) { - return t.location !== e.location || ('idle' !== t.revalidation && 'idle' === e.revalidation) - ? { error: e.error, location: e.location, revalidation: e.revalidation } - : { error: e.error || t.error, location: t.location, revalidation: e.revalidation || t.revalidation }; - } - componentDidCatch(e, t) { - console.error('React Router caught the following error during render', e, t); - } - render() { - return this.state.error - ? r.createElement( - lr.Provider, - { value: this.props.routeContext }, - r.createElement(cr.Provider, { value: this.state.error, children: this.props.component }), - ) - : this.props.children; - } - } - function xr(e) { - let { routeContext: t, match: n, children: o } = e, - i = r.useContext(or); - return ( - i && - i.static && - i.staticContext && - (n.route.errorElement || n.route.ErrorBoundary) && - (i.staticContext._deepestRenderedBoundaryId = n.route.id), - r.createElement(lr.Provider, { value: t }, o) - ); - } - function wr(e, t, n) { - var o; - if ((void 0 === t && (t = []), void 0 === n && (n = null), null == e)) { - var i; - if (null == (i = n) || !i.errors) return null; - e = n.matches; - } - let a = e, - s = null == (o = n) ? void 0 : o.errors; - if (null != s) { - let e = a.findIndex(e => e.route.id && (null == s ? void 0 : s[e.route.id])); - e >= 0 || Ot(!1), (a = a.slice(0, Math.min(a.length, e + 1))); - } - return a.reduceRight((e, o, i) => { - let l = o.route.id ? (null == s ? void 0 : s[o.route.id]) : null, - c = null; - n && (c = o.route.errorElement || br); - let u = t.concat(a.slice(0, i + 1)), - d = () => { - let t; - return ( - (t = l - ? c - : o.route.Component - ? r.createElement(o.route.Component, null) - : o.route.element - ? o.route.element - : e), - r.createElement(xr, { - match: o, - routeContext: { outlet: e, matches: u, isDataRoute: null != n }, - children: t, - }) - ); - }; - return n && (o.route.ErrorBoundary || o.route.errorElement || 0 === i) - ? r.createElement(RenderErrorBoundary, { - location: n.location, - revalidation: n.revalidation, - component: c, - error: l, - children: d(), - routeContext: { outlet: null, matches: u, isDataRoute: !0 }, - }) - : d(); - }, null); - } - var Er, kr; - function _r(e) { - let t = r.useContext(or); - return t || Ot(!1), t; - } - function Sr(e) { - let t = r.useContext(ir); - return t || Ot(!1), t; - } - function Pr(e) { - let t = (function (e) { - let t = r.useContext(lr); - return t || Ot(!1), t; - })(), - n = t.matches[t.matches.length - 1]; - return n.route.id || Ot(!1), n.route.id; - } - function Cr(e) { - return Sr(kr.UseRouteLoaderData).loaderData[e]; - } - function jr() { - var e; - let t = r.useContext(cr), - n = Sr(kr.UseRouteError), - o = Pr(kr.UseRouteError); - return t || (null == (e = n.errors) ? void 0 : e[o]); - } - !(function (e) { - (e.UseBlocker = 'useBlocker'), (e.UseRevalidator = 'useRevalidator'), (e.UseNavigateStable = 'useNavigate'); - })(Er || (Er = {})), - (function (e) { - (e.UseBlocker = 'useBlocker'), - (e.UseLoaderData = 'useLoaderData'), - (e.UseActionData = 'useActionData'), - (e.UseRouteError = 'useRouteError'), - (e.UseNavigation = 'useNavigation'), - (e.UseRouteLoaderData = 'useRouteLoaderData'), - (e.UseMatches = 'useMatches'), - (e.UseRevalidator = 'useRevalidator'), - (e.UseNavigateStable = 'useNavigate'), - (e.UseRouteId = 'useRouteId'); - })(kr || (kr = {})); - function Tr(e) { - let { fallbackElement: t, router: n } = e, - [o, i] = r.useState(n.state); - r.useLayoutEffect(() => n.subscribe(i), [n, i]); - let a = r.useMemo( - () => ({ - createHref: n.createHref, - encodeLocation: n.encodeLocation, - go: e => n.navigate(e), - push: (e, t, r) => - n.navigate(e, { state: t, preventScrollReset: null == r ? void 0 : r.preventScrollReset }), - replace: (e, t, r) => - n.navigate(e, { replace: !0, state: t, preventScrollReset: null == r ? void 0 : r.preventScrollReset }), - }), - [n], - ), - s = n.basename || '/', - l = r.useMemo(() => ({ router: n, navigator: a, static: !1, basename: s }), [n, a, s]); - return r.createElement( - r.Fragment, - null, - r.createElement( - or.Provider, - { value: l }, - r.createElement( - ir.Provider, - { value: o }, - r.createElement( - Mr, - { - basename: n.basename, - location: n.state.location, - navigationType: n.state.historyAction, - navigator: a, - }, - n.state.initialized ? r.createElement(Dr, { routes: n.routes, state: o }) : t, - ), - ), - ), - null, - ); - } - function Dr(e) { - let { routes: t, state: n } = e; - return mr(t, void 0, n); - } - function Nr(e) { - return (function (e) { - let t = r.useContext(lr).outlet; - return t ? r.createElement(pr.Provider, { value: e }, t) : t; - })(e.context); - } - function Mr(e) { - let { - basename: t = '/', - children: n = null, - location: o, - navigationType: i = Nt.Pop, - navigator: a, - static: s = !1, - } = e; - ur() && Ot(!1); - let l = t.replace(/^\/*/, '/'), - c = r.useMemo(() => ({ basename: l, navigator: a, static: s }), [l, a, s]); - 'string' == typeof o && (o = Bt(o)); - let { pathname: u = '/', search: d = '', hash: f = '', state: h = null, key: p = 'default' } = o, - v = r.useMemo(() => { - let e = rn(u, l); - return null == e - ? null - : { location: { pathname: e, search: d, hash: f, state: h, key: p }, navigationType: i }; - }, [l, u, d, f, h, p, i]); - return null == v - ? null - : r.createElement(ar.Provider, { value: c }, r.createElement(sr.Provider, { children: n, value: v })); - } - var Or; - !(function (e) { - (e[(e.pending = 0)] = 'pending'), (e[(e.success = 1)] = 'success'), (e[(e.error = 2)] = 'error'); - })(Or || (Or = {})); - new Promise(() => {}); - r.Component; - function Ar(e) { - let t = { hasErrorBoundary: null != e.ErrorBoundary || null != e.errorElement }; - return ( - e.Component && Object.assign(t, { element: r.createElement(e.Component), Component: void 0 }), - e.ErrorBoundary && - Object.assign(t, { errorElement: r.createElement(e.ErrorBoundary), ErrorBoundary: void 0 }), - t - ); - } - function Rr() { - return ( - (Rr = Object.assign - ? Object.assign.bind() - : function (e) { - for (var t = 1; t < arguments.length; t++) { - var n = arguments[t]; - for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]); - } - return e; - }), - Rr.apply(this, arguments) - ); - } - function Lr(e, t) { - if (null == e) return {}; - var n, - r, - o = {}, - i = Object.keys(e); - for (r = 0; r < i.length; r++) (n = i[r]), t.indexOf(n) >= 0 || (o[n] = e[n]); - return o; - } - function Ir(e) { - return ( - void 0 === e && (e = ''), - new URLSearchParams( - 'string' == typeof e || Array.isArray(e) || e instanceof URLSearchParams - ? e - : Object.keys(e).reduce((t, n) => { - let r = e[n]; - return t.concat(Array.isArray(r) ? r.map(e => [n, e]) : [[n, r]]); - }, []), - ) - ); - } - const Br = ['onClick', 'relative', 'reloadDocument', 'replace', 'state', 'target', 'to', 'preventScrollReset']; - function Fr(e, t) { - return Cn({ - basename: null == t ? void 0 : t.basename, - future: Rr({}, null == t ? void 0 : t.future, { v7_prependBasename: !0 }), - history: - ((n = { window: null == t ? void 0 : t.window }), - void 0 === n && (n = {}), - Ft( - function (e, t) { - let { pathname: n, search: r, hash: o } = e.location; - return Lt( - '', - { pathname: n, search: r, hash: o }, - (t.state && t.state.usr) || null, - (t.state && t.state.key) || 'default', - ); - }, - function (e, t) { - return 'string' == typeof t ? t : It(t); - }, - null, - n, - )), - hydrationData: (null == t ? void 0 : t.hydrationData) || Vr(), - routes: e, - mapRouteProperties: Ar, - }).initialize(); - var n; - } - function zr(e, t) { - return Cn({ - basename: null == t ? void 0 : t.basename, - future: Rr({}, null == t ? void 0 : t.future, { v7_prependBasename: !0 }), - history: - ((n = { window: null == t ? void 0 : t.window }), - void 0 === n && (n = {}), - Ft( - function (e, t) { - let { pathname: n = '/', search: r = '', hash: o = '' } = Bt(e.location.hash.substr(1)); - return Lt( - '', - { pathname: n, search: r, hash: o }, - (t.state && t.state.usr) || null, - (t.state && t.state.key) || 'default', - ); - }, - function (e, t) { - let n = e.document.querySelector('base'), - r = ''; - if (n && n.getAttribute('href')) { - let t = e.location.href, - n = t.indexOf('#'); - r = -1 === n ? t : t.slice(0, n); - } - return r + '#' + ('string' == typeof t ? t : It(t)); - }, - function (e, t) { - At( - '/' === e.pathname.charAt(0), - 'relative pathnames are not supported in hash history.push(' + JSON.stringify(t) + ')', - ); - }, - n, - )), - hydrationData: (null == t ? void 0 : t.hydrationData) || Vr(), - routes: e, - mapRouteProperties: Ar, - }).initialize(); - var n; - } - function Vr() { - var e; - let t = null == (e = window) ? void 0 : e.__staticRouterHydrationData; - return t && t.errors && (t = Rr({}, t, { errors: Gr(t.errors) })), t; - } - function Gr(e) { - if (!e) return null; - let t = Object.entries(e), - n = {}; - for (let [r, o] of t) - if (o && 'RouteErrorResponse' === o.__type) - n[r] = new ErrorResponse(o.status, o.statusText, o.data, !0 === o.internal); - else if (o && 'Error' === o.__type) { - let e = new Error(o.message); - (e.stack = ''), (n[r] = e); - } else n[r] = o; - return n; - } - const Hr = 'undefined' != typeof window && void 0 !== window.document && void 0 !== window.document.createElement, - Wr = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i, - Ur = r.forwardRef(function (e, t) { - let n, - { - onClick: o, - relative: i, - reloadDocument: a, - replace: s, - state: l, - target: c, - to: u, - preventScrollReset: d, - } = e, - f = Lr(e, Br), - { basename: h } = r.useContext(ar), - p = !1; - if ('string' == typeof u && Wr.test(u) && ((n = u), Hr)) - try { - let e = new URL(window.location.href), - t = u.startsWith('//') ? new URL(e.protocol + u) : new URL(u), - n = rn(t.pathname, h); - t.origin === e.origin && null != n ? (u = n + t.search + t.hash) : (p = !0); - } catch (x) {} - let v = (function (e, t) { - let { relative: n } = void 0 === t ? {} : t; - ur() || Ot(!1); - let { basename: o, navigator: i } = r.useContext(ar), - { hash: a, pathname: s, search: l } = gr(e, { relative: n }), - c = s; - return '/' !== o && (c = '/' === s ? o : ln([o, s])), i.createHref({ pathname: c, search: l, hash: a }); - })(u, { relative: i }), - g = (function (e, t) { - let { target: n, replace: o, state: i, preventScrollReset: a, relative: s } = void 0 === t ? {} : t, - l = hr(), - c = dr(), - u = gr(e, { relative: s }); - return r.useCallback( - t => { - if ( - (function (e, t) { - return !( - 0 !== e.button || - (t && '_self' !== t) || - (function (e) { - return !!(e.metaKey || e.altKey || e.ctrlKey || e.shiftKey); - })(e) - ); - })(t, n) - ) { - t.preventDefault(); - let n = void 0 !== o ? o : It(c) === It(u); - l(e, { replace: n, state: i, preventScrollReset: a, relative: s }); - } - }, - [c, l, u, o, i, n, e, a, s], - ); - })(u, { replace: s, state: l, target: c, preventScrollReset: d, relative: i }); - return r.createElement( - 'a', - Rr({}, f, { - href: n || v, - onClick: - p || a - ? o - : function (e) { - o && o(e), e.defaultPrevented || g(e); - }, - ref: t, - target: c, - }), - ); - }); - var qr, Yr; - function Xr(e) { - let t = r.useRef(Ir(e)), - n = r.useRef(!1), - o = dr(), - i = r.useMemo( - () => - (function (e, t) { - let n = Ir(e); - if (t) - for (let r of t.keys()) - n.has(r) || - t.getAll(r).forEach(e => { - n.append(r, e); - }); - return n; - })(o.search, n.current ? null : t.current), - [o.search], - ), - a = hr(), - s = r.useCallback( - (e, t) => { - const r = Ir('function' == typeof e ? e(i) : e); - (n.current = !0), a('?' + r, t); - }, - [a, i], - ); - return [i, s]; - } - (function (e) { - (e.UseScrollRestoration = 'useScrollRestoration'), - (e.UseSubmitImpl = 'useSubmitImpl'), - (e.UseFetcher = 'useFetcher'); - })(qr || (qr = {})), - (function (e) { - (e.UseFetchers = 'useFetchers'), (e.UseScrollRestoration = 'useScrollRestoration'); - })(Yr || (Yr = {})); - const $r = ['className', 'children'], - Kr = ['to', 'className', 'children'], - Zr = - 'inline-flex justify-center rounded-md border border-slate-300 bg-slate-50 py-2 px-4 mt-2 text-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700'; - function Qr(e) { - let { className: t, children: n } = e, - r = xt(e, $r); - return vt('button', Object.assign({ className: `${Zr} ${t}` }, r, { children: n })); - } - function Jr(e) { - let { to: t, className: n, children: r } = e, - o = xt(e, Kr); - return vt(Ur, Object.assign({ className: `${Zr} ${n}`, to: t }, o, { children: r })); - } - class tooltip_service_GraphTooltipService { - constructor(e) { - (this.subscribers = new Set()), - (this.currentTooltip = void 0), - e.listen(t => { - switch (t.type) { - case 'GraphRegenerated': - case 'BackgroundClick': - this.hideAll(); - break; - case 'ProjectNodeClick': - const n = - 'nx-console' === e.renderMode - ? () => e.broadcast({ type: 'ProjectOpenConfigClick', projectName: t.data.id }) - : void 0; - this.openProjectNodeToolTip(t.ref, { - id: t.data.id, - tags: t.data.tags, - type: t.data.type, - description: t.data.description, - openConfigCallback: n, - }); - break; - case 'TaskNodeClick': - const r = - 'nx-console' === e.renderMode - ? () => e.broadcast({ type: 'RunTaskClick', taskId: t.data.id }) - : void 0; - this.openTaskNodeTooltip(t.ref, Object.assign({}, t.data, { runTaskCallback: r })); - break; - case 'EdgeClick': - const o = - 'nx-console' === e.renderMode - ? n => e.broadcast({ type: 'FileLinkClick', sourceRoot: t.data.sourceRoot, file: n }) - : void 0; - this.openEdgeToolTip(t.ref, { - type: t.data.type, - target: t.data.target, - source: t.data.source, - fileDependencies: t.data.fileDependencies, - fileClickCallback: o, - }); - } - }); - } - openProjectNodeToolTip(e, t) { - (this.currentTooltip = { type: 'projectNode', ref: e, props: t }), this.broadcastChange(); - } - openTaskNodeTooltip(e, t) { - (this.currentTooltip = { type: 'taskNode', ref: e, props: t }), this.broadcastChange(); - } - openEdgeToolTip(e, t) { - (this.currentTooltip = { type: 'projectEdge', ref: e, props: t }), this.broadcastChange(); - } - broadcastChange() { - this.subscribers.forEach(e => e(this.currentTooltip)); - } - subscribe(e) { - return ( - this.subscribers.add(e), - () => { - this.subscribers.delete(e); - } - ); - } - hideAll() { - (this.currentTooltip = null), this.broadcastChange(); - } - } - var eo = n(57228); - function to() { - return (0, r.useRef)(no()).current; - } - function no() { - return { - exclude: window.exclude, - watch: window.watch, - localMode: window.localMode, - projectGraphResponse: window.projectGraphResponse, - environment: window.environment, - appConfig: Object.assign({}, window.appConfig, { - showExperimentalFeatures: - 'true' === localStorage.getItem('showExperimentalFeatures') || window.appConfig.showExperimentalFeatures, - }), - useXstateInspect: window.useXstateInspect, - }; - } - let ro; - function oo() { - const e = no(); - return ( - ro || - (ro = new eo.GraphService( - 'cytoscape-graph', - fo('dark', 'light'), - 'nx-console' === e.environment ? 'nx-console' : void 0, - )), - ro - ); - } - const io = document.documentElement, - ao = 'nx-dep-graph-theme'; - let so; - function lo(e) { - const t = e.matches ? 'dark' : 'light'; - co(t), (so = t); - } - function co(e) { - 'dark' === e - ? (io.classList.add('dark'), io.classList.remove('light')) - : (io.classList.add('light'), io.classList.remove('dark')); - } - function uo(e) { - if (!('matchMedia' in window)) return; - const t = window.matchMedia('(prefers-color-scheme: dark)'); - if ('system' !== e) t.removeEventListener('change', lo), co(e), (so = e); - else { - const e = t.matches ? 'dark' : 'light'; - t.addEventListener('change', lo), co(e), (so = e); - } - localStorage.setItem(ao, e), (oo().theme = so); - } - function fo(e, t) { - return 'dark' === so ? e : t; - } - const ho = 'nx-dep-graph-rankdir'; - let po; - function vo(e) { - (po = e), localStorage.setItem(ho, e), (oo().rankDir = po); - } - const go = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z', - }), - ); - }); - const mo = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M11.25 9l-3 3m0 0l3 3m-3-3h7.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z', - }), - ); - }); - const yo = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3', - }), - ); - }); - var bo = n(87608), - xo = n.n(bo); - const wo = (0, r.memo)(function ({ - projects: e, - selectedProject: t, - selectedProjectChange: n, - lastPerfReport: r, - }) { - return vt('div', { - 'data-cy': 'debugger-panel', - className: - 'flex-column flex w-auto items-center items-center justify-items-center justify-items-center gap-4 border-b border-slate-900/10 bg-slate-50 p-4 transition-all dark:border-slate-300/10 dark:bg-transparent', - children: [ - vt('h4', { className: 'dark:text-sidebar-title-dark mr-4 text-lg font-normal', children: 'Debugger' }), - vt(_t, { - 'data-cy': 'project-select', - defaultValue: t, - onChange: e => n(e.currentTarget.value), - children: e.map(e => vt('option', { value: e.id, children: e.label }, e.id)), - }), - vt('p', { - className: 'text-sm', - children: [ - 'Last render took ', - r.renderTime, - 'ms:', - ' ', - vt('b', { className: 'text-medium font-mono', children: [r.numNodes, ' nodes'] }), - ' ', - '|', - ' ', - vt('b', { className: 'text-medium font-mono', children: [r.numEdges, ' edges'] }), - '.', - ], - }), - ], - }); - }); - function Eo(e, t, ...n) { - if (e in t) { - let r = t[e]; - return 'function' == typeof r ? r(...n) : r; - } - let r = new Error( - `Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t) - .map(e => `"${e}"`) - .join(', ')}.`, - ); - throw (Error.captureStackTrace && Error.captureStackTrace(r, Eo), r); - } - var ko = (e => ( - (e[(e.None = 0)] = 'None'), (e[(e.RenderStrategy = 1)] = 'RenderStrategy'), (e[(e.Static = 2)] = 'Static'), e - ))(ko || {}), - _o = (e => ((e[(e.Unmount = 0)] = 'Unmount'), (e[(e.Hidden = 1)] = 'Hidden'), e))(_o || {}); - function So({ ourProps: e, theirProps: t, slot: n, defaultTag: r, features: o, visible: i = !0, name: a }) { - let s = Co(t, e); - if (i) return Po(s, n, r, a); - let l = null != o ? o : 0; - if (2 & l) { - let { static: e = !1, ...t } = s; - if (e) return Po(t, n, r, a); - } - if (1 & l) { - let { unmount: e = !0, ...t } = s; - return Eo(e ? 0 : 1, { - 0: () => null, - 1: () => Po({ ...t, hidden: !0, style: { display: 'none' } }, n, r, a), - }); - } - return Po(s, n, r, a); - } - function Po(e, t = {}, n, o) { - let { as: i = n, children: a, refName: s = 'ref', ...l } = Do(e, ['unmount', 'static']), - c = void 0 !== e.ref ? { [s]: e.ref } : {}, - u = 'function' == typeof a ? a(t) : a; - l.className && 'function' == typeof l.className && (l.className = l.className(t)); - let d = {}; - if (t) { - let e = !1, - n = []; - for (let [r, o] of Object.entries(t)) 'boolean' == typeof o && (e = !0), !0 === o && n.push(r); - e && (d['data-headlessui-state'] = n.join(' ')); - } - if (i === r.Fragment && Object.keys(To(l)).length > 0) { - if (!(0, r.isValidElement)(u) || (Array.isArray(u) && u.length > 1)) - throw new Error( - [ - 'Passing props on "Fragment"!', - '', - `The current component <${o} /> is rendering a "Fragment".`, - 'However we need to passthrough the following props:', - Object.keys(l) - .map(e => ` - ${e}`) - .join('\n'), - '', - 'You can apply a few solutions:', - [ - 'Add an `as="..."` prop, to ensure that we render an actual element instead of a "Fragment".', - 'Render a single element as the child so that we can forward the props onto that element.', - ] - .map(e => ` - ${e}`) - .join('\n'), - ].join('\n'), - ); - return (0, r.cloneElement)( - u, - Object.assign( - {}, - Co(u.props, To(Do(l, ['ref']))), - d, - c, - (function (...e) { - return { - ref: e.every(e => null == e) - ? void 0 - : t => { - for (let n of e) null != n && ('function' == typeof n ? n(t) : (n.current = t)); - }, - }; - })(u.ref, c.ref), - ), - ); - } - return (0, r.createElement)( - i, - Object.assign({}, Do(l, ['ref']), i !== r.Fragment && c, i !== r.Fragment && d), - u, - ); - } - function Co(...e) { - if (0 === e.length) return {}; - if (1 === e.length) return e[0]; - let t = {}, - n = {}; - for (let r of e) - for (let e in r) - e.startsWith('on') && 'function' == typeof r[e] - ? (null != n[e] || (n[e] = []), n[e].push(r[e])) - : (t[e] = r[e]); - if (t.disabled || t['aria-disabled']) - return Object.assign(t, Object.fromEntries(Object.keys(n).map(e => [e, void 0]))); - for (let r in n) - Object.assign(t, { - [r](e, ...t) { - let o = n[r]; - for (let n of o) { - if ((e instanceof Event || (null == e ? void 0 : e.nativeEvent) instanceof Event) && e.defaultPrevented) - return; - n(e, ...t); - } - }, - }); - return t; - } - function jo(e) { - var t; - return Object.assign((0, r.forwardRef)(e), { displayName: null != (t = e.displayName) ? t : e.name }); - } - function To(e) { - let t = Object.assign({}, e); - for (let n in t) void 0 === t[n] && delete t[n]; - return t; - } - function Do(e, t = []) { - let n = Object.assign({}, e); - for (let r of t) r in n && delete n[r]; - return n; - } - function No() { - let e = [], - t = [], - n = { - enqueue(e) { - t.push(e); - }, - addEventListener: (e, t, r, o) => ( - e.addEventListener(t, r, o), n.add(() => e.removeEventListener(t, r, o)) - ), - requestAnimationFrame(...e) { - let t = requestAnimationFrame(...e); - return n.add(() => cancelAnimationFrame(t)); - }, - nextFrame: (...e) => n.requestAnimationFrame(() => n.requestAnimationFrame(...e)), - setTimeout(...e) { - let t = setTimeout(...e); - return n.add(() => clearTimeout(t)); - }, - microTask(...e) { - let t = { current: !0 }; - return ( - (function (e) { - 'function' == typeof queueMicrotask - ? queueMicrotask(e) - : Promise.resolve() - .then(e) - .catch(e => - setTimeout(() => { - throw e; - }), - ); - })(() => { - t.current && e[0](); - }), - n.add(() => { - t.current = !1; - }) - ); - }, - add: t => ( - e.push(t), - () => { - let n = e.indexOf(t); - if (n >= 0) { - let [t] = e.splice(n, 1); - t(); - } - } - ), - dispose() { - for (let t of e.splice(0)) t(); - }, - async workQueue() { - for (let e of t.splice(0)) await e(); - }, - }; - return n; - } - function Mo() { - let [e] = (0, r.useState)(No); - return (0, r.useEffect)(() => () => e.dispose(), [e]), e; - } - const Oo = 'undefined' == typeof window || 'undefined' == typeof document; - let Ao = Oo ? r.useEffect : r.useLayoutEffect; - function Ro(e) { - let t = (0, r.useRef)(e); - return ( - Ao(() => { - t.current = e; - }, [e]), - t - ); - } - let Lo = function (e) { - let t = Ro(e); - return r.default.useCallback((...e) => t.current(...e), [t]); - }, - Io = Symbol(); - function Bo(...e) { - let t = (0, r.useRef)(e); - (0, r.useEffect)(() => { - t.current = e; - }, [e]); - let n = Lo(e => { - for (let n of t.current) null != n && ('function' == typeof n ? n(e) : (n.current = e)); - }); - return e.every(e => null == e || (null == e ? void 0 : e[Io])) ? void 0 : n; - } - let Fo = { serverHandoffComplete: !1 }; - function zo() { - let [e, t] = (0, r.useState)(Fo.serverHandoffComplete); - return ( - (0, r.useEffect)(() => { - !0 !== e && t(!0); - }, [e]), - (0, r.useEffect)(() => { - !1 === Fo.serverHandoffComplete && (Fo.serverHandoffComplete = !0); - }, []), - e - ); - } - var Vo; - let Go = 0; - function Ho() { - return ++Go; - } - let Wo = - null != (Vo = r.default.useId) - ? Vo - : function () { - let e = zo(), - [t, n] = r.default.useState(e ? Ho : null); - return ( - Ao(() => { - null === t && n(Ho()); - }, [t]), - null != t ? '' + t : void 0 - ); - }; - var Uo = (e => ( - (e.Space = ' '), - (e.Enter = 'Enter'), - (e.Escape = 'Escape'), - (e.Backspace = 'Backspace'), - (e.Delete = 'Delete'), - (e.ArrowLeft = 'ArrowLeft'), - (e.ArrowUp = 'ArrowUp'), - (e.ArrowRight = 'ArrowRight'), - (e.ArrowDown = 'ArrowDown'), - (e.Home = 'Home'), - (e.End = 'End'), - (e.PageUp = 'PageUp'), - (e.PageDown = 'PageDown'), - (e.Tab = 'Tab'), - e - ))(Uo || {}); - var qo = (e => ( - (e[(e.First = 0)] = 'First'), - (e[(e.Previous = 1)] = 'Previous'), - (e[(e.Next = 2)] = 'Next'), - (e[(e.Last = 3)] = 'Last'), - (e[(e.Specific = 4)] = 'Specific'), - (e[(e.Nothing = 5)] = 'Nothing'), - e - ))(qo || {}); - function Yo(e, t) { - let n = t.resolveItems(); - if (n.length <= 0) return null; - let r = t.resolveActiveIndex(), - o = null != r ? r : -1, - i = (() => { - switch (e.focus) { - case 0: - return n.findIndex(e => !t.resolveDisabled(e)); - case 1: { - let e = n - .slice() - .reverse() - .findIndex((e, n, r) => !(-1 !== o && r.length - n - 1 >= o) && !t.resolveDisabled(e)); - return -1 === e ? e : n.length - 1 - e; - } - case 2: - return n.findIndex((e, n) => !(n <= o) && !t.resolveDisabled(e)); - case 3: { - let e = n - .slice() - .reverse() - .findIndex(e => !t.resolveDisabled(e)); - return -1 === e ? e : n.length - 1 - e; - } - case 4: - return n.findIndex(n => t.resolveId(n) === e.id); - case 5: - return null; - default: - !(function (e) { - throw new Error('Unexpected object: ' + e); - })(e); - } - })(); - return -1 === i ? r : i; - } - function Xo(e) { - let t = e.parentElement, - n = null; - for (; t && !(t instanceof HTMLFieldSetElement); ) - t instanceof HTMLLegendElement && (n = t), (t = t.parentElement); - let r = '' === (null == t ? void 0 : t.getAttribute('disabled')); - return ( - (!r || - !(function (e) { - if (!e) return !1; - let t = e.previousElementSibling; - for (; null !== t; ) { - if (t instanceof HTMLLegendElement) return !1; - t = t.previousElementSibling; - } - return !0; - })(n)) && - r - ); - } - function $o(e) { - return Oo - ? null - : e instanceof Node - ? e.ownerDocument - : null != e && e.hasOwnProperty('current') && e.current instanceof Node - ? e.current.ownerDocument - : document; - } - let Ko = [ - '[contentEditable=true]', - '[tabindex]', - 'a[href]', - 'area[href]', - 'button:not([disabled])', - 'iframe', - 'input:not([disabled])', - 'select:not([disabled])', - 'textarea:not([disabled])', - ] - .map(e => `${e}:not([tabindex='-1'])`) - .join(','); - var Zo = (e => ( - (e[(e.First = 1)] = 'First'), - (e[(e.Previous = 2)] = 'Previous'), - (e[(e.Next = 4)] = 'Next'), - (e[(e.Last = 8)] = 'Last'), - (e[(e.WrapAround = 16)] = 'WrapAround'), - (e[(e.NoScroll = 32)] = 'NoScroll'), - e - ))(Zo || {}), - Qo = (e => ( - (e[(e.Error = 0)] = 'Error'), - (e[(e.Overflow = 1)] = 'Overflow'), - (e[(e.Success = 2)] = 'Success'), - (e[(e.Underflow = 3)] = 'Underflow'), - e - ))(Qo || {}), - Jo = (e => ((e[(e.Previous = -1)] = 'Previous'), (e[(e.Next = 1)] = 'Next'), e))(Jo || {}); - function ei(e = document.body) { - return null == e ? [] : Array.from(e.querySelectorAll(Ko)); - } - var ti = (e => ((e[(e.Strict = 0)] = 'Strict'), (e[(e.Loose = 1)] = 'Loose'), e))(ti || {}); - function ni(e, t = 0) { - var n; - return ( - e !== (null == (n = $o(e)) ? void 0 : n.body) && - Eo(t, { - 0: () => e.matches(Ko), - 1() { - let t = e; - for (; null !== t; ) { - if (t.matches(Ko)) return !0; - t = t.parentElement; - } - return !1; - }, - }) - ); - } - function ri(e) { - let t = $o(e); - No().nextFrame(() => { - t && - !ni(t.activeElement, 0) && - (function (e) { - null == e || e.focus({ preventScroll: !0 }); - })(e); - }); - } - let oi = ['textarea', 'input'].join(','); - function ii(e, t = e => e) { - return e.slice().sort((e, n) => { - let r = t(e), - o = t(n); - if (null === r || null === o) return 0; - let i = r.compareDocumentPosition(o); - return i & Node.DOCUMENT_POSITION_FOLLOWING ? -1 : i & Node.DOCUMENT_POSITION_PRECEDING ? 1 : 0; - }); - } - function ai(e, t) { - return (function (e, t, n = !0, r = null) { - let o = Array.isArray(e) ? (e.length > 0 ? e[0].ownerDocument : document) : e.ownerDocument, - i = Array.isArray(e) ? (n ? ii(e) : e) : ei(e); - r = null != r ? r : o.activeElement; - let a, - s = (() => { - if (5 & t) return 1; - if (10 & t) return -1; - throw new Error('Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last'); - })(), - l = (() => { - if (1 & t) return 0; - if (2 & t) return Math.max(0, i.indexOf(r)) - 1; - if (4 & t) return Math.max(0, i.indexOf(r)) + 1; - if (8 & t) return i.length - 1; - throw new Error('Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last'); - })(), - c = 32 & t ? { preventScroll: !0 } : {}, - u = 0, - d = i.length; - do { - if (u >= d || u + d <= 0) return 0; - let e = l + u; - if (16 & t) e = (e + d) % d; - else { - if (e < 0) return 3; - if (e >= d) return 1; - } - (a = i[e]), null == a || a.focus(c), (u += s); - } while (a !== o.activeElement); - return ( - 6 & t && - (function (e) { - var t, n; - return null != (n = null == (t = null == e ? void 0 : e.matches) ? void 0 : t.call(e, oi)) && n; - })(a) && - a.select(), - a.hasAttribute('tabindex') || a.setAttribute('tabindex', '0'), - 2 - ); - })(ei(), t, !0, e); - } - function si(e, t, n) { - let o = Ro(t); - (0, r.useEffect)(() => { - function t(e) { - o.current(e); - } - return document.addEventListener(e, t, n), () => document.removeEventListener(e, t, n); - }, [e, n]); - } - let li = (0, r.createContext)(null); - li.displayName = 'OpenClosedContext'; - var ci = (e => ((e[(e.Open = 0)] = 'Open'), (e[(e.Closed = 1)] = 'Closed'), e))(ci || {}); - function ui() { - return (0, r.useContext)(li); - } - function di({ value: e, children: t }) { - return r.default.createElement(li.Provider, { value: e }, t); - } - function fi(e) { - var t; - if (e.type) return e.type; - let n = null != (t = e.as) ? t : 'button'; - return 'string' == typeof n && 'button' === n.toLowerCase() ? 'button' : void 0; - } - function hi(e, t) { - let [n, o] = (0, r.useState)(() => fi(e)); - return ( - Ao(() => { - o(fi(e)); - }, [e.type, e.as]), - Ao(() => { - n || - !t.current || - (t.current instanceof HTMLButtonElement && !t.current.hasAttribute('type') && o('button')); - }, [n, t]), - n - ); - } - var pi = (e => ((e[(e.Open = 0)] = 'Open'), (e[(e.Closed = 1)] = 'Closed'), e))(pi || {}), - vi = (e => ((e[(e.Pointer = 0)] = 'Pointer'), (e[(e.Other = 1)] = 'Other'), e))(vi || {}), - gi = (e => ( - (e[(e.OpenMenu = 0)] = 'OpenMenu'), - (e[(e.CloseMenu = 1)] = 'CloseMenu'), - (e[(e.GoToItem = 2)] = 'GoToItem'), - (e[(e.Search = 3)] = 'Search'), - (e[(e.ClearSearch = 4)] = 'ClearSearch'), - (e[(e.RegisterItem = 5)] = 'RegisterItem'), - (e[(e.UnregisterItem = 6)] = 'UnregisterItem'), - e - ))(gi || {}); - function mi(e, t = e => e) { - let n = null !== e.activeItemIndex ? e.items[e.activeItemIndex] : null, - r = ii(t(e.items.slice()), e => e.dataRef.current.domRef.current), - o = n ? r.indexOf(n) : null; - return -1 === o && (o = null), { items: r, activeItemIndex: o }; - } - let yi = { - 1: e => (1 === e.menuState ? e : { ...e, activeItemIndex: null, menuState: 1 }), - 0: e => (0 === e.menuState ? e : { ...e, menuState: 0 }), - 2: (e, t) => { - var n; - let r = mi(e), - o = Yo(t, { - resolveItems: () => r.items, - resolveActiveIndex: () => r.activeItemIndex, - resolveId: e => e.id, - resolveDisabled: e => e.dataRef.current.disabled, - }); - return { - ...e, - ...r, - searchQuery: '', - activeItemIndex: o, - activationTrigger: null != (n = t.trigger) ? n : 1, - }; - }, - 3: (e, t) => { - let n = '' !== e.searchQuery ? 0 : 1, - r = e.searchQuery + t.value.toLowerCase(), - o = ( - null !== e.activeItemIndex - ? e.items.slice(e.activeItemIndex + n).concat(e.items.slice(0, e.activeItemIndex + n)) - : e.items - ).find(e => { - var t; - return ( - (null == (t = e.dataRef.current.textValue) ? void 0 : t.startsWith(r)) && !e.dataRef.current.disabled - ); - }), - i = o ? e.items.indexOf(o) : -1; - return -1 === i || i === e.activeItemIndex - ? { ...e, searchQuery: r } - : { ...e, searchQuery: r, activeItemIndex: i, activationTrigger: 1 }; - }, - 4: e => ('' === e.searchQuery ? e : { ...e, searchQuery: '', searchActiveItemIndex: null }), - 5: (e, t) => { - let n = mi(e, e => [...e, { id: t.id, dataRef: t.dataRef }]); - return { ...e, ...n }; - }, - 6: (e, t) => { - let n = mi(e, e => { - let n = e.findIndex(e => e.id === t.id); - return -1 !== n && e.splice(n, 1), e; - }); - return { ...e, ...n, activationTrigger: 1 }; - }, - }, - bi = (0, r.createContext)(null); - function xi(e) { - let t = (0, r.useContext)(bi); - if (null === t) { - let t = new Error(`<${e} /> is missing a parent
component.`); - throw (Error.captureStackTrace && Error.captureStackTrace(t, xi), t); - } - return t; - } - function wi(e, t) { - return Eo(t.type, yi, e, t); - } - bi.displayName = 'MenuContext'; - let Ei = r.Fragment, - ki = jo(function (e, t) { - let n = (0, r.useReducer)(wi, { - menuState: 1, - buttonRef: (0, r.createRef)(), - itemsRef: (0, r.createRef)(), - items: [], - searchQuery: '', - activeItemIndex: null, - activationTrigger: 1, - }), - [{ menuState: o, itemsRef: i, buttonRef: a }, s] = n, - l = Bo(t); - !(function (e, t, n = !0) { - let o = (0, r.useRef)(!1); - function i(n, r) { - if (!o.current || n.defaultPrevented) return; - let i = (function e(t) { - return 'function' == typeof t ? e(t()) : Array.isArray(t) || t instanceof Set ? t : [t]; - })(e), - a = r(n); - if (null !== a && a.ownerDocument.documentElement.contains(a)) { - for (let e of i) { - if (null === e) continue; - let t = e instanceof HTMLElement ? e : e.current; - if (null != t && t.contains(a)) return; - } - return !ni(a, ti.Loose) && -1 !== a.tabIndex && n.preventDefault(), t(n, a); - } - } - (0, r.useEffect)(() => { - requestAnimationFrame(() => { - o.current = n; - }); - }, [n]); - let a = (0, r.useRef)(null); - si( - 'mousedown', - e => { - var t, n; - o.current && - (a.current = - (null == (n = null == (t = e.composedPath) ? void 0 : t.call(e)) ? void 0 : n[0]) || e.target); - }, - !0, - ), - si( - 'click', - e => { - !a.current || (i(e, () => a.current), (a.current = null)); - }, - !0, - ), - si( - 'blur', - e => - i(e, () => - window.document.activeElement instanceof HTMLIFrameElement ? window.document.activeElement : null, - ), - !0, - ); - })( - [a, i], - (e, t) => { - var n; - s({ type: 1 }), ni(t, ti.Loose) || (e.preventDefault(), null == (n = a.current) || n.focus()); - }, - 0 === o, - ); - let c = (0, r.useMemo)(() => ({ open: 0 === o }), [o]), - u = e, - d = { ref: l }; - return r.default.createElement( - bi.Provider, - { value: n }, - r.default.createElement( - di, - { value: Eo(o, { 0: ci.Open, 1: ci.Closed }) }, - So({ ourProps: d, theirProps: u, slot: c, defaultTag: Ei, name: 'Menu' }), - ), - ); - }), - _i = jo(function (e, t) { - var n; - let [o, i] = xi('Menu.Button'), - a = Bo(o.buttonRef, t), - s = `headlessui-menu-button-${Wo()}`, - l = Mo(), - c = Lo(e => { - switch (e.key) { - case Uo.Space: - case Uo.Enter: - case Uo.ArrowDown: - e.preventDefault(), - e.stopPropagation(), - i({ type: 0 }), - l.nextFrame(() => i({ type: 2, focus: qo.First })); - break; - case Uo.ArrowUp: - e.preventDefault(), - e.stopPropagation(), - i({ type: 0 }), - l.nextFrame(() => i({ type: 2, focus: qo.Last })); - } - }), - u = Lo(e => { - if (e.key === Uo.Space) e.preventDefault(); - }), - d = Lo(t => { - if (Xo(t.currentTarget)) return t.preventDefault(); - e.disabled || - (0 === o.menuState - ? (i({ type: 1 }), - l.nextFrame(() => { - var e; - return null == (e = o.buttonRef.current) ? void 0 : e.focus({ preventScroll: !0 }); - })) - : (t.preventDefault(), i({ type: 0 }))); - }), - f = (0, r.useMemo)(() => ({ open: 0 === o.menuState }), [o]), - h = e; - return So({ - ourProps: { - ref: a, - id: s, - type: hi(e, o.buttonRef), - 'aria-haspopup': !0, - 'aria-controls': null == (n = o.itemsRef.current) ? void 0 : n.id, - 'aria-expanded': e.disabled ? void 0 : 0 === o.menuState, - onKeyDown: c, - onKeyUp: u, - onClick: d, - }, - theirProps: h, - slot: f, - defaultTag: 'button', - name: 'Menu.Button', - }); - }), - Si = ko.RenderStrategy | ko.Static, - Pi = jo(function (e, t) { - var n, o; - let [i, a] = xi('Menu.Items'), - s = Bo(i.itemsRef, t), - l = (function (...e) { - return (0, r.useMemo)(() => $o(...e), [...e]); - })(i.itemsRef), - c = `headlessui-menu-items-${Wo()}`, - u = Mo(), - d = ui(), - f = null !== d ? d === ci.Open : 0 === i.menuState; - (0, r.useEffect)(() => { - let e = i.itemsRef.current; - !e || (0 === i.menuState && e !== (null == l ? void 0 : l.activeElement) && e.focus({ preventScroll: !0 })); - }, [i.menuState, i.itemsRef, l]), - (function ({ container: e, accept: t, walk: n, enabled: o = !0 }) { - let i = (0, r.useRef)(t), - a = (0, r.useRef)(n); - (0, r.useEffect)(() => { - (i.current = t), (a.current = n); - }, [t, n]), - Ao(() => { - if (!e || !o) return; - let t = $o(e); - if (!t) return; - let n = i.current, - r = a.current, - s = Object.assign(e => n(e), { acceptNode: n }), - l = t.createTreeWalker(e, NodeFilter.SHOW_ELEMENT, s, !1); - for (; l.nextNode(); ) r(l.currentNode); - }, [e, o, i, a]); - })({ - container: i.itemsRef.current, - enabled: 0 === i.menuState, - accept: e => - 'menuitem' === e.getAttribute('role') - ? NodeFilter.FILTER_REJECT - : e.hasAttribute('role') - ? NodeFilter.FILTER_SKIP - : NodeFilter.FILTER_ACCEPT, - walk(e) { - e.setAttribute('role', 'none'); - }, - }); - let h = Lo(e => { - var t, n; - switch ((u.dispose(), e.key)) { - case Uo.Space: - if ('' !== i.searchQuery) - return e.preventDefault(), e.stopPropagation(), a({ type: 3, value: e.key }); - case Uo.Enter: - if ((e.preventDefault(), e.stopPropagation(), a({ type: 1 }), null !== i.activeItemIndex)) { - let { dataRef: e } = i.items[i.activeItemIndex]; - null == (n = null == (t = e.current) ? void 0 : t.domRef.current) || n.click(); - } - ri(i.buttonRef.current); - break; - case Uo.ArrowDown: - return e.preventDefault(), e.stopPropagation(), a({ type: 2, focus: qo.Next }); - case Uo.ArrowUp: - return e.preventDefault(), e.stopPropagation(), a({ type: 2, focus: qo.Previous }); - case Uo.Home: - case Uo.PageUp: - return e.preventDefault(), e.stopPropagation(), a({ type: 2, focus: qo.First }); - case Uo.End: - case Uo.PageDown: - return e.preventDefault(), e.stopPropagation(), a({ type: 2, focus: qo.Last }); - case Uo.Escape: - e.preventDefault(), - e.stopPropagation(), - a({ type: 1 }), - No().nextFrame(() => { - var e; - return null == (e = i.buttonRef.current) ? void 0 : e.focus({ preventScroll: !0 }); - }); - break; - case Uo.Tab: - e.preventDefault(), - e.stopPropagation(), - a({ type: 1 }), - No().nextFrame(() => { - ai(i.buttonRef.current, e.shiftKey ? Zo.Previous : Zo.Next); - }); - break; - default: - 1 === e.key.length && (a({ type: 3, value: e.key }), u.setTimeout(() => a({ type: 4 }), 350)); - } - }), - p = Lo(e => { - if (e.key === Uo.Space) e.preventDefault(); - }), - v = (0, r.useMemo)(() => ({ open: 0 === i.menuState }), [i]), - g = e; - return So({ - ourProps: { - 'aria-activedescendant': - null === i.activeItemIndex || null == (n = i.items[i.activeItemIndex]) ? void 0 : n.id, - 'aria-labelledby': null == (o = i.buttonRef.current) ? void 0 : o.id, - id: c, - onKeyDown: h, - onKeyUp: p, - role: 'menu', - tabIndex: 0, - ref: s, - }, - theirProps: g, - slot: v, - defaultTag: 'div', - features: Si, - visible: f, - name: 'Menu.Items', - }); - }), - Ci = r.Fragment, - ji = jo(function (e, t) { - let { disabled: n = !1, ...o } = e, - [i, a] = xi('Menu.Item'), - s = `headlessui-menu-item-${Wo()}`, - l = null !== i.activeItemIndex && i.items[i.activeItemIndex].id === s, - c = (0, r.useRef)(null), - u = Bo(t, c); - Ao(() => { - if (0 !== i.menuState || !l || 0 === i.activationTrigger) return; - let e = No(); - return ( - e.requestAnimationFrame(() => { - var e, t; - null == (t = null == (e = c.current) ? void 0 : e.scrollIntoView) || t.call(e, { block: 'nearest' }); - }), - e.dispose - ); - }, [c, l, i.menuState, i.activationTrigger, i.activeItemIndex]); - let d = (0, r.useRef)({ disabled: n, domRef: c }); - Ao(() => { - d.current.disabled = n; - }, [d, n]), - Ao(() => { - var e, t; - d.current.textValue = - null == (t = null == (e = c.current) ? void 0 : e.textContent) ? void 0 : t.toLowerCase(); - }, [d, c]), - Ao(() => (a({ type: 5, id: s, dataRef: d }), () => a({ type: 6, id: s })), [d, s]); - let f = Lo(e => { - if (n) return e.preventDefault(); - a({ type: 1 }), ri(i.buttonRef.current); - }), - h = Lo(() => { - if (n) return a({ type: 2, focus: qo.Nothing }); - a({ type: 2, focus: qo.Specific, id: s }); - }), - p = Lo(() => { - n || l || a({ type: 2, focus: qo.Specific, id: s, trigger: 0 }); - }), - v = Lo(() => { - n || !l || a({ type: 2, focus: qo.Nothing }); - }), - g = (0, r.useMemo)(() => ({ active: l, disabled: n }), [l, n]); - return So({ - ourProps: { - id: s, - ref: u, - role: 'menuitem', - tabIndex: !0 === n ? void 0 : -1, - 'aria-disabled': !0 === n || void 0, - disabled: void 0, - onClick: f, - onFocus: h, - onPointerMove: p, - onMouseMove: p, - onPointerLeave: v, - onMouseLeave: v, - }, - theirProps: o, - slot: g, - defaultTag: Ci, - name: 'Menu.Item', - }); - }), - Ti = Object.assign(ki, { Button: _i, Items: Pi, Item: ji }); - function Di() { - let e = (0, r.useRef)(!1); - return ( - Ao( - () => ( - (e.current = !0), - () => { - e.current = !1; - } - ), - [], - ), - e - ); - } - function Ni(e, ...t) { - e && t.length > 0 && e.classList.add(...t); - } - function Mi(e, ...t) { - e && t.length > 0 && e.classList.remove(...t); - } - var Oi = (e => ((e.Ended = 'ended'), (e.Cancelled = 'cancelled'), e))(Oi || {}); - function Ai(e, t, n, r) { - let o = n ? 'enter' : 'leave', - i = No(), - a = - void 0 !== r - ? (function (e) { - let t = { called: !1 }; - return (...n) => { - if (!t.called) return (t.called = !0), e(...n); - }; - })(r) - : () => {}; - 'enter' === o && (e.removeAttribute('hidden'), (e.style.display = '')); - let s = Eo(o, { enter: () => t.enter, leave: () => t.leave }), - l = Eo(o, { enter: () => t.enterTo, leave: () => t.leaveTo }), - c = Eo(o, { enter: () => t.enterFrom, leave: () => t.leaveFrom }); - return ( - Mi(e, ...t.enter, ...t.enterTo, ...t.enterFrom, ...t.leave, ...t.leaveFrom, ...t.leaveTo, ...t.entered), - Ni(e, ...s, ...c), - i.nextFrame(() => { - Mi(e, ...c), - Ni(e, ...l), - (function (e, t) { - let n = No(); - if (!e) return n.dispose; - let { transitionDuration: r, transitionDelay: o } = getComputedStyle(e), - [i, a] = [r, o].map(e => { - let [t = 0] = e - .split(',') - .filter(Boolean) - .map(e => (e.includes('ms') ? parseFloat(e) : 1e3 * parseFloat(e))) - .sort((e, t) => t - e); - return t; - }); - if (i + a !== 0) { - let r = []; - r.push( - n.addEventListener(e, 'transitionrun', o => { - o.target === o.currentTarget && - (r.splice(0).forEach(e => e()), - r.push( - n.addEventListener(e, 'transitionend', e => { - e.target === e.currentTarget && (t('ended'), r.splice(0).forEach(e => e())); - }), - n.addEventListener(e, 'transitioncancel', e => { - e.target === e.currentTarget && (t('cancelled'), r.splice(0).forEach(e => e())); - }), - )); - }), - ); - } else t('ended'); - n.add(() => t('cancelled')), n.dispose; - })(e, n => ('ended' === n && (Mi(e, ...s), Ni(e, ...t.entered)), a(n))); - }), - i.dispose - ); - } - function Ri(e = '') { - return e.split(' ').filter(e => e.trim().length > 1); - } - let Li = (0, r.createContext)(null); - Li.displayName = 'TransitionContext'; - var Ii = (e => ((e.Visible = 'visible'), (e.Hidden = 'hidden'), e))(Ii || {}); - let Bi = (0, r.createContext)(null); - function Fi(e) { - return 'children' in e - ? Fi(e.children) - : e.current.filter(({ el: e }) => null !== e.current).filter(({ state: e }) => 'visible' === e).length > 0; - } - function zi(e, t) { - let n = Ro(e), - o = (0, r.useRef)([]), - i = Di(), - a = Mo(), - s = Lo((e, t = _o.Hidden) => { - let r = o.current.findIndex(({ el: t }) => t === e); - -1 !== r && - (Eo(t, { - [_o.Unmount]() { - o.current.splice(r, 1); - }, - [_o.Hidden]() { - o.current[r].state = 'hidden'; - }, - }), - a.microTask(() => { - var e; - !Fi(o) && i.current && (null == (e = n.current) || e.call(n)); - })); - }), - l = Lo(e => { - let t = o.current.find(({ el: t }) => t === e); - return ( - t ? 'visible' !== t.state && (t.state = 'visible') : o.current.push({ el: e, state: 'visible' }), - () => s(e, _o.Unmount) - ); - }), - c = (0, r.useRef)([]), - u = (0, r.useRef)(Promise.resolve()), - d = (0, r.useRef)({ enter: [], leave: [], idle: [] }), - f = Lo((e, n, r) => { - c.current.splice(0), - t && (t.chains.current[n] = t.chains.current[n].filter(([t]) => t !== e)), - null == t || - t.chains.current[n].push([ - e, - new Promise(e => { - c.current.push(e); - }), - ]), - null == t || - t.chains.current[n].push([ - e, - new Promise(e => { - Promise.all(d.current[n].map(([e, t]) => t)).then(() => e()); - }), - ]), - 'enter' === n - ? (u.current = u.current.then(() => (null == t ? void 0 : t.wait.current)).then(() => r(n))) - : r(n); - }), - h = Lo((e, t, n) => { - Promise.all(d.current[t].splice(0).map(([e, t]) => t)) - .then(() => { - var e; - null == (e = c.current.shift()) || e(); - }) - .then(() => n(t)); - }); - return (0, r.useMemo)( - () => ({ children: o, register: l, unregister: s, onStart: f, onStop: h, wait: u, chains: d }), - [l, s, o, f, h, d, u], - ); - } - function Vi() {} - Bi.displayName = 'NestingContext'; - let Gi = ['beforeEnter', 'afterEnter', 'beforeLeave', 'afterLeave']; - function Hi(e) { - var t; - let n = {}; - for (let r of Gi) n[r] = null != (t = e[r]) ? t : Vi; - return n; - } - let Wi = ko.RenderStrategy, - Ui = jo(function (e, t) { - let { - beforeEnter: n, - afterEnter: o, - beforeLeave: i, - afterLeave: a, - enter: s, - enterFrom: l, - enterTo: c, - entered: u, - leave: d, - leaveFrom: f, - leaveTo: h, - ...p - } = e, - v = (0, r.useRef)(null), - g = Bo(v, t), - m = p.unmount ? _o.Unmount : _o.Hidden, - { - show: y, - appear: b, - initial: x, - } = (function () { - let e = (0, r.useContext)(Li); - if (null === e) - throw new Error( - 'A is used but it is missing a parent or .', - ); - return e; - })(), - [w, E] = (0, r.useState)(y ? 'visible' : 'hidden'), - k = (function () { - let e = (0, r.useContext)(Bi); - if (null === e) - throw new Error( - 'A is used but it is missing a parent or .', - ); - return e; - })(), - { register: _, unregister: S } = k, - P = (0, r.useRef)(null); - (0, r.useEffect)(() => _(v), [_, v]), - (0, r.useEffect)(() => { - if (m === _o.Hidden && v.current) - return y && 'visible' !== w ? void E('visible') : Eo(w, { hidden: () => S(v), visible: () => _(v) }); - }, [w, v, _, S, y, m]); - let C = Ro({ - enter: Ri(s), - enterFrom: Ri(l), - enterTo: Ri(c), - entered: Ri(u), - leave: Ri(d), - leaveFrom: Ri(f), - leaveTo: Ri(h), - }), - j = (function (e) { - let t = (0, r.useRef)(Hi(e)); - return ( - (0, r.useEffect)(() => { - t.current = Hi(e); - }, [e]), - t - ); - })({ beforeEnter: n, afterEnter: o, beforeLeave: i, afterLeave: a }), - T = zo(); - (0, r.useEffect)(() => { - if (T && 'visible' === w && null === v.current) - throw new Error('Did you forget to passthrough the `ref` to the actual DOM node?'); - }, [v, w, T]); - let D = x && !b, - N = !T || D || P.current === y ? 'idle' : y ? 'enter' : 'leave', - M = Lo(e => - Eo(e, { enter: () => j.current.beforeEnter(), leave: () => j.current.beforeLeave(), idle: () => {} }), - ), - O = Lo(e => - Eo(e, { enter: () => j.current.afterEnter(), leave: () => j.current.afterLeave(), idle: () => {} }), - ), - A = zi(() => { - E('hidden'), S(v); - }, k); - (function ({ container: e, direction: t, classes: n, onStart: r, onStop: o }) { - let i = Di(), - a = Mo(), - s = Ro(t); - Ao(() => { - let t = No(); - a.add(t.dispose); - let l = e.current; - if (l && 'idle' !== s.current && i.current) - return ( - t.dispose(), - r.current(s.current), - t.add( - Ai(l, n.current, 'enter' === s.current, e => { - t.dispose(), - Eo(e, { - [Oi.Ended]() { - o.current(s.current); - }, - [Oi.Cancelled]: () => {}, - }); - }), - ), - t.dispose - ); - }, [t]); - })({ - container: v, - classes: C, - direction: N, - onStart: Ro(e => { - A.onStart(v, e, M); - }), - onStop: Ro(e => { - A.onStop(v, e, O), 'leave' === e && !Fi(A) && (E('hidden'), S(v)); - }), - }), - (0, r.useEffect)(() => { - !D || (m === _o.Hidden ? (P.current = null) : (P.current = y)); - }, [y, D, w]); - let R = p, - L = { ref: g }; - return r.default.createElement( - Bi.Provider, - { value: A }, - r.default.createElement( - di, - { value: Eo(w, { visible: ci.Open, hidden: ci.Closed }) }, - So({ - ourProps: L, - theirProps: R, - defaultTag: 'div', - features: Wi, - visible: 'visible' === w, - name: 'Transition.Child', - }), - ), - ); - }), - qi = jo(function (e, t) { - let { show: n, appear: o = !1, unmount: i, ...a } = e, - s = (0, r.useRef)(null), - l = Bo(s, t); - zo(); - let c = ui(); - if ((void 0 === n && null !== c && (n = Eo(c, { [ci.Open]: !0, [ci.Closed]: !1 })), ![!0, !1].includes(n))) - throw new Error('A is used but it is missing a `show={true | false}` prop.'); - let [u, d] = (0, r.useState)(n ? 'visible' : 'hidden'), - f = zi(() => { - d('hidden'); - }), - [h, p] = (0, r.useState)(!0), - v = (0, r.useRef)([n]); - Ao(() => { - !1 !== h && v.current[v.current.length - 1] !== n && (v.current.push(n), p(!1)); - }, [v, n]); - let g = (0, r.useMemo)(() => ({ show: n, appear: o, initial: h }), [n, o, h]); - (0, r.useEffect)(() => { - if (n) d('visible'); - else if (Fi(f)) { - let e = s.current; - if (!e) return; - let t = e.getBoundingClientRect(); - 0 === t.x && 0 === t.y && 0 === t.width && 0 === t.height && d('hidden'); - } else d('hidden'); - }, [n, f]); - let m = { unmount: i }; - return r.default.createElement( - Bi.Provider, - { value: f }, - r.default.createElement( - Li.Provider, - { value: g }, - So({ - ourProps: { ...m, as: r.Fragment, children: r.default.createElement(Ui, { ref: l, ...m, ...a }) }, - theirProps: {}, - defaultTag: r.Fragment, - features: Wi, - visible: 'visible' === u, - name: 'Transition', - }), - ), - ); - }), - Yi = jo(function (e, t) { - let n = null !== (0, r.useContext)(Li), - o = null !== ui(); - return r.default.createElement( - r.default.Fragment, - null, - !n && o ? r.default.createElement(qi, { ref: t, ...e }) : r.default.createElement(Ui, { ref: t, ...e }), - ); - }), - Xi = Object.assign(qi, { Child: Yi, Root: qi }); - const $i = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25', - }), - ); - }); - const Ki = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z', - }), - ); - }); - const Zi = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z', - }), - ); - }); - function Qi() { - const [e, t] = (0, r.useState)(localStorage.getItem(ao) || 'system'); - return ( - (0, r.useEffect)(() => { - uo(e); - }, [e]), - vt(Ti, { - as: 'div', - className: 'relative inline-block text-left', - children: [ - vt('div', { - children: vt(Ti.Button, { - className: - 'inline-flex w-full justify-center rounded-md p-2 text-sm font-medium focus:outline-none focus-visible:ring-2 focus-visible:ring-white focus-visible:ring-opacity-75 dark:text-sky-500', - 'data-cy': 'theme-open-modal-button', - children: [ - vt('span', { className: 'sr-only', children: 'Theme switcher' }), - 'system' === e && vt($i, { className: 'h-4 w-4', 'aria-hidden': 'true' }), - 'light' === e && vt(Ki, { className: 'h-4 w-4', 'aria-hidden': 'true' }), - 'dark' === e && vt(Zi, { className: 'h-4 w-4', 'aria-hidden': 'true' }), - ], - }), - }), - vt(Xi, { - as: r.Fragment, - enter: 'transition ease-out duration-100', - enterFrom: 'transform opacity-0 scale-95', - enterTo: 'transform opacity-100 scale-100', - leave: 'transition ease-in duration-75', - leaveFrom: 'transform opacity-100 scale-100', - leaveTo: 'transform opacity-0 scale-95', - children: vt(Ti.Items, { - className: - 'absolute right-0 z-50 mt-2 w-36 origin-top-right rounded-md bg-white text-slate-500 shadow-lg ring-1 ring-slate-900/10 ring-opacity-5 focus:outline-none dark:bg-slate-800 dark:text-slate-400 dark:ring-0', - children: vt('div', { - className: 'px-1 py-1', - children: [ - vt(Ti.Item, { - children: ({ active: n }) => - vt('button', { - 'data-cy': 'system-theme-button', - className: xo()( - 'system' === e ? 'text-blue-500 dark:text-sky-500' : '', - n ? 'bg-slate-50 dark:bg-slate-600/30' : '', - 'group flex w-full items-center rounded-md px-2 py-2 text-sm', - ), - onClick: () => t('system'), - children: [vt($i, { className: 'mr-2 h-4 w-4', 'aria-hidden': 'true' }), 'System'], - }), - }), - vt(Ti.Item, { - children: ({ active: n }) => - vt('button', { - 'data-cy': 'light-theme-button', - className: xo()( - 'light' === e ? 'text-blue-500 dark:text-sky-500' : '', - n ? 'bg-slate-50 dark:bg-slate-600/30' : '', - 'group flex w-full items-center rounded-md px-2 py-2 text-sm', - ), - onClick: () => t('light'), - children: [vt(Ki, { className: 'mr-2 h-4 w-4', 'aria-hidden': 'true' }), 'Light'], - }), - }), - vt(Ti.Item, { - children: ({ active: n }) => - vt('button', { - 'data-cy': 'dark-theme-button', - className: xo()( - 'dark' === e ? 'text-blue-500 dark:text-sky-500' : '', - n ? 'bg-slate-50 dark:bg-slate-600/30' : '', - 'group flex w-full items-center rounded-md px-2 py-2 text-sm', - ), - onClick: () => t('dark'), - children: [vt(Zi, { className: 'mr-2 h-4 w-4', 'aria-hidden': 'true' }), 'Dark'], - }), - }), - ], - }), - }), - }), - ], - }) - ); - } - const Ji = () => { - const [e, t] = (0, r.useState)(), - [n, o] = (0, r.useState)(), - i = dr(); - if (i.pathname === e) return n; - t(i.pathname); - const a = Ht(Ss(), i).at(-1), - { environment: s } = no(); - let l; - return ( - (l = - 'dev' === s - ? { workspace: a.pathname.split('/')[1], currentPath: `/${a.pathname.split('/').slice(2).join('/')}` } - : { workspace: 'local', currentPath: a.pathname }), - o(l), - l - ); - }; - function ea(e) { - return to().appConfig.showExperimentalFeatures - ? r.Children.map(e.children, e => (0, r.cloneElement)(e, { 'data-cy': 'experimental-feature' })) - : null; - } - const ta = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M3 7.5L7.5 3m0 0L12 7.5M7.5 3v13.5m13.5 0L16.5 21m0 0L12 16.5m4.5 4.5V7.5', - }), - ); - }); - const na = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M7.5 21L3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5', - }), - ); - }); - function ra() { - const [e, t] = (0, r.useState)(localStorage.getItem(ho) || 'TB'); - return ( - (0, r.useEffect)(() => { - vo(e); - }, [e]), - vt('div', { - className: 'relative inline-block text-left', - children: vt('button', { - className: - 'inline-flex w-full justify-center rounded-md p-2 text-sm font-medium focus:outline-none focus-visible:ring-2 focus-visible:ring-white focus-visible:ring-opacity-75 dark:text-sky-500', - 'data-cy': 'rankdir-change-button', - children: [ - vt('span', { className: 'sr-only', children: 'Graph layout direction switcher' }), - 'TB' === e && - vt('button', { - title: 'Set graph direction to left-to-right', - 'data-cy': 'lr-rankdir-button', - onClick: () => t('LR'), - children: vt(ta, { className: 'h-4 w-4', 'aria-hidden': 'true' }), - }), - 'LR' === e && - vt('button', { - title: 'Set graph direction to top-to-bottom', - 'data-cy': 'tb-rankdir-button', - onClick: () => t('TB'), - children: vt(na, { className: 'h-4 w-4', 'aria-hidden': 'true' }), - }), - ], - }), - }) - ); - } - var oa = n(53536); - const ia = { - on: { - updateGraph: { - target: 'customSelected', - actions: [ - (0, oa.f0)((e, t) => { - const n = e.projects.map(e => e.name), - r = t.projects.map(e => e.name).filter(e => !n.includes(e)); - e.selectedProjects = [...e.selectedProjects, ...r]; - }), - 'setGraph', - (0, l.send)( - (e, t) => ({ - type: 'notifyGraphUpdateGraph', - projects: e.projects, - dependencies: e.dependencies, - fileMap: e.fileMap, - affectedProjects: e.affectedProjects, - workspaceLayout: e.workspaceLayout, - groupByFolder: e.groupByFolder, - selectedProjects: e.selectedProjects, - }), - { to: e => e.graphActor }, - ), - ], - }, - }, - }, - aa = { - entry: [ - (0, oa.f0)((e, t) => { - 'focusProject' === t.type && (e.focusedProject = t.projectName); - }), - 'notifyGraphFocusProject', - ], - exit: [ - (0, oa.f0)(e => { - e.focusedProject = null; - }), - ], - on: { - incrementSearchDepth: { actions: ['incrementSearchDepth', 'notifyGraphFocusProject'] }, - decrementSearchDepth: { actions: ['decrementSearchDepth', 'notifyGraphFocusProject'] }, - setSearchDepthEnabled: { actions: ['setSearchDepthEnabled', 'notifyGraphFocusProject'] }, - setSearchDepth: { actions: ['setSearchDepth', 'notifyGraphFocusProject'] }, - unfocusProject: { target: 'unselected' }, - updateGraph: { - actions: [ - 'setGraph', - (0, l.send)( - (e, t) => ({ - type: 'notifyGraphUpdateGraph', - projects: e.projects, - dependencies: e.dependencies, - fileMap: e.fileMap, - affectedProjects: e.affectedProjects, - workspaceLayout: e.workspaceLayout, - groupByFolder: e.groupByFolder, - selectedProjects: e.selectedProjects, - }), - { to: e => e.graphActor }, - ), - 'notifyGraphFocusProject', - ], - }, - }, - }, - sa = (e, t) => { - const n = oo(); - t(t => { - const { selectedProjectNames: r, perfReport: o } = n.handleProjectEvent(t); - e({ type: 'setSelectedProjectsFromGraph', selectedProjectNames: r, perfReport: o }); - }); - }, - la = { - entry: [ - (0, oa.f0)((e, t) => { - 'filterByText' === t.type && (e.textFilter = t.search); - }), - 'notifyGraphFilterProjectsByText', - ], - on: { - clearTextFilter: { - target: 'unselected', - actions: (0, oa.f0)(e => { - (e.includePath = !1), (e.textFilter = ''); - }), - }, - setIncludeProjectsByPath: { actions: ['setIncludeProjectsByPath', 'notifyGraphFilterProjectsByText'] }, - incrementSearchDepth: { actions: ['incrementSearchDepth', 'notifyGraphFilterProjectsByText'] }, - decrementSearchDepth: { actions: ['decrementSearchDepth', 'notifyGraphFilterProjectsByText'] }, - setSearchDepthEnabled: { actions: ['setSearchDepthEnabled', 'notifyGraphFilterProjectsByText'] }, - updateGraph: { - actions: [ - 'setGraph', - (0, l.send)( - (e, t) => ({ - type: 'notifyGraphUpdateGraph', - projects: e.projects, - dependencies: e.dependencies, - fileMap: e.fileMap, - affectedProjects: e.affectedProjects, - workspaceLayout: e.workspaceLayout, - groupByFolder: e.groupByFolder, - selectedProjects: e.selectedProjects, - }), - { to: e => e.graphActor }, - ), - 'notifyGraphFilterProjectsByText', - ], - }, - }, - }, - ca = { - entry: [ - (0, oa.f0)((e, t) => { - 'setTracingStart' === t.type - ? (e.tracing.start = t.projectName) - : 'setTracingEnd' === t.type && (e.tracing.end = t.projectName); - }), - 'notifyGraphTracing', - ], - exit: [ - (0, oa.f0)((e, t) => { - 'setTracingStart' !== t.type && - 'setTracingEnd' !== t.type && - ((e.tracing.start = null), (e.tracing.end = null)); - }), - ], - on: { - clearTraceStart: { - actions: [ - (0, oa.f0)(e => { - e.tracing.start = null; - }), - 'notifyGraphTracing', - ], - }, - clearTraceEnd: { - actions: [ - (0, oa.f0)(e => { - e.tracing.end = null; - }), - 'notifyGraphTracing', - ], - }, - }, - }, - ua = { - entry: ['notifyGraphHideAllProjects'], - on: { - updateGraph: { - target: 'customSelected', - actions: [ - (0, oa.f0)((e, t) => { - const n = e.projects.map(e => e.name), - r = t.projects.map(e => e.name).filter(e => !n.includes(e)); - e.selectedProjects = [...e.selectedProjects, ...r]; - }), - 'setGraph', - (0, l.send)( - (e, t) => ({ - type: 'notifyGraphUpdateGraph', - projects: e.projects, - dependencies: e.dependencies, - fileMap: e.fileMap, - affectedProjects: e.affectedProjects, - workspaceLayout: e.workspaceLayout, - groupByFolder: e.groupByFolder, - selectedProjects: e.selectedProjects, - }), - { to: e => e.graphActor }, - ), - ], - }, - }, - }, - da = (0, s.C)( - { - predictableActionArguments: !0, - id: 'project-graph', - initial: 'idle', - context: { - projects: [], - dependencies: {}, - affectedProjects: [], - selectedProjects: [], - focusedProject: null, - textFilter: '', - includePath: !1, - searchDepth: 1, - searchDepthEnabled: !0, - groupByFolder: !1, - collapseEdges: !1, - workspaceLayout: { libsDir: '', appsDir: '' }, - fileMap: {}, - graphActor: null, - lastPerfReport: { numEdges: 0, numNodes: 0, renderTime: 0 }, - tracing: { start: null, end: null, algorithm: 'shortest' }, - }, - states: { idle: {}, unselected: ua, customSelected: ia, focused: aa, textFiltered: la, tracing: ca }, - on: { - setProjects: { - target: 'unselected', - actions: [ - 'setGraph', - (0, l.send)( - (e, t) => ({ - type: 'notifyGraphInitGraph', - projects: e.projects, - dependencies: e.dependencies, - fileMap: e.fileMap, - affectedProjects: e.affectedProjects, - workspaceLayout: e.workspaceLayout, - groupByFolder: e.groupByFolder, - collapseEdges: e.collapseEdges, - }), - { to: e => e.graphActor }, - ), - ], - }, - setSelectedProjectsFromGraph: { - actions: [ - (0, oa.f0)((e, t) => { - (e.selectedProjects = t.selectedProjectNames), (e.lastPerfReport = t.perfReport); - }), - ], - }, - selectProject: { target: 'customSelected', actions: ['notifyGraphShowProjects'] }, - selectProjects: { target: 'customSelected', actions: ['notifyGraphShowProjects'] }, - selectAll: { target: 'customSelected', actions: ['notifyGraphShowAllProjects'] }, - selectAffected: { target: 'customSelected', actions: ['notifyGraphShowAffectedProjects'] }, - deselectProject: [ - { target: 'unselected', cond: 'deselectLastProject' }, - { target: 'customSelected', actions: ['notifyGraphHideProjects'] }, - ], - deselectProjects: [ - { target: 'unselected', cond: 'deselectLastProject' }, - { target: 'customSelected', actions: ['notifyGraphHideProjects'] }, - ], - deselectAll: { target: 'unselected' }, - focusProject: { target: 'focused' }, - setTracingStart: { target: 'tracing' }, - setTracingEnd: { target: 'tracing' }, - setCollapseEdges: { - actions: [ - 'setCollapseEdges', - (0, l.send)( - (e, t) => ({ - type: 'notifyGraphUpdateGraph', - projects: e.projects, - dependencies: e.dependencies, - affectedProjects: e.affectedProjects, - fileMap: e.fileMap, - workspaceLayout: e.workspaceLayout, - groupByFolder: e.groupByFolder, - collapseEdges: e.collapseEdges, - selectedProjects: e.selectedProjects, - }), - { to: e => e.graphActor }, - ), - ], - }, - setGroupByFolder: { - actions: [ - 'setGroupByFolder', - (0, l.send)( - (e, t) => ({ - type: 'notifyGraphUpdateGraph', - projects: e.projects, - dependencies: e.dependencies, - affectedProjects: e.affectedProjects, - fileMap: e.fileMap, - workspaceLayout: e.workspaceLayout, - groupByFolder: e.groupByFolder, - collapseEdges: e.collapseEdges, - selectedProjects: e.selectedProjects, - }), - { to: e => e.graphActor }, - ), - ], - }, - setIncludeProjectsByPath: { - actions: [ - (0, oa.f0)((e, t) => { - e.includePath = t.includeProjectsByPath; - }), - ], - }, - incrementSearchDepth: { actions: ['incrementSearchDepth'] }, - decrementSearchDepth: { actions: ['decrementSearchDepth'] }, - setSearchDepthEnabled: { actions: ['setSearchDepthEnabled'] }, - setSearchDepth: { actions: ['setSearchDepth'] }, - setTracingAlgorithm: { - actions: [ - (0, oa.f0)((e, t) => { - e.tracing.algorithm = t.algorithm; - }), - 'notifyGraphTracing', - ], - }, - filterByText: { target: 'textFiltered' }, - }, - }, - { - guards: { deselectLastProject: e => e.selectedProjects.length <= 1 }, - actions: { - setGroupByFolder: (0, oa.f0)((e, t) => { - 'setGroupByFolder' === t.type && (e.groupByFolder = t.groupByFolder); - }), - setCollapseEdges: (0, oa.f0)((e, t) => { - 'setCollapseEdges' === t.type && (e.collapseEdges = t.collapseEdges); - }), - incrementSearchDepth: (0, oa.f0)(e => { - (e.searchDepthEnabled = !0), (e.searchDepth = e.searchDepth + 1); - }), - decrementSearchDepth: (0, oa.f0)(e => { - (e.searchDepthEnabled = !0), (e.searchDepth = e.searchDepth > 1 ? e.searchDepth - 1 : 1); - }), - setSearchDepth: (0, oa.f0)((e, t) => { - 'setSearchDepth' === t.type && - ((e.searchDepthEnabled = !0), (e.searchDepth = t.searchDepth > 1 ? t.searchDepth : 1)); - }), - setSearchDepthEnabled: (0, oa.f0)((e, t) => { - 'setSearchDepthEnabled' === t.type && (e.searchDepthEnabled = t.searchDepthEnabled); - }), - setIncludeProjectsByPath: (0, oa.f0)((e, t) => { - 'setIncludeProjectsByPath' === t.type && (e.includePath = t.includeProjectsByPath); - }), - setGraph: (0, oa.f0)((e, t) => { - ('setProjects' !== t.type && 'updateGraph' !== t.type) || - ((e.projects = t.projects), - (e.dependencies = t.dependencies), - (e.fileMap = t.fileMap), - (e.graphActor = (0, i.Cs)(sa, 'graphActor')), - 'setProjects' === t.type && - ((e.workspaceLayout = t.workspaceLayout), (e.affectedProjects = t.affectedProjects))); - }), - notifyGraphTracing: (0, l.send)( - (e, t) => ({ - type: 'notifyGraphTracing', - start: e.tracing.start, - end: e.tracing.end, - algorithm: e.tracing.algorithm, - }), - { to: e => e.graphActor }, - ), - notifyGraphShowProjects: (0, l.send)( - (e, t) => { - if ('selectProject' === t.type || 'selectProjects' === t.type) - return 'selectProject' === t.type - ? { type: 'notifyGraphShowProjects', projectNames: [t.projectName] } - : { type: 'notifyGraphShowProjects', projectNames: t.projectNames }; - }, - { to: e => e.graphActor }, - ), - notifyGraphHideProjects: (0, l.send)( - (e, t) => { - if ('deselectProject' === t.type || 'deselectProjects' === t.type) - return 'deselectProject' === t.type - ? { type: 'notifyGraphHideProjects', projectNames: [t.projectName] } - : { type: 'notifyGraphHideProjects', projectNames: t.projectNames }; - }, - { to: e => e.graphActor }, - ), - notifyGraphShowAllProjects: (0, l.send)((e, t) => ({ type: 'notifyGraphShowAllProjects' }), { - to: e => e.graphActor, - }), - notifyGraphHideAllProjects: (0, l.send)((e, t) => ({ type: 'notifyGraphHideAllProjects' }), { - to: e => e.graphActor, - }), - notifyGraphShowAffectedProjects: (0, l.send)( - { type: 'notifyGraphShowAffectedProjects' }, - { to: e => e.graphActor }, - ), - notifyGraphFocusProject: (0, l.send)( - (e, t) => ({ - type: 'notifyGraphFocusProject', - projectName: e.focusedProject, - searchDepth: e.searchDepthEnabled ? e.searchDepth : -1, - }), - { to: e => e.graphActor }, - ), - notifyGraphFilterProjectsByText: (0, l.send)( - (e, t) => ({ - type: 'notifyGraphFilterProjectsByText', - search: e.textFilter, - includeProjectsByPath: e.includePath, - searchDepth: e.searchDepthEnabled ? e.searchDepth : -1, - }), - { to: e => e.graphActor }, - ), - }, - }, - ); - let fa, - ha = (0, i.kJ)(da, { devTools: !!window.useXstateInspect }); - function pa() { - return ha.status === i.TM.NotStarted && ha.start(), ha; - } - var va = n(83576); - const ga = () => { - const { environment: e } = no(), - { selectedWorkspaceId: t } = vr(), - [n] = Xr(); - return (r, o) => { - let i = ''; - return 'object' == typeof r - ? ((i = 'dev' === e ? `/${t}${r.pathname}` : r.pathname), - Object.assign({}, r, { pathname: i, search: r.search ? r.search.toString() : o ? n.toString() : '' })) - : 'string' == typeof r - ? ((i = 'dev' === e ? `/${t}${r}` : r), { pathname: i, search: o ? n.toString() : '' }) - : void 0; - }; - }; - function ma(e, t) { - const n = e - .replace(t, '') - .split('/') - .filter(e => '' !== e); - return n.pop(), n; - } - function ya(e, t) { - return t.filter(t => t.type === e).sort((e, t) => e.name.localeCompare(t.name)); - } - function ba(e, t) { - let n = {}; - return ( - e.forEach(e => { - const r = 'app' === e.type || 'e2e' === e.type ? t.appsDir : t.libsDir, - o = ma(e.data.root, r).join('/'); - n.hasOwnProperty(o) || (n[o] = []), n[o].push(e); - }), - n - ); - } - function xa(e, t, n) { - return n ? `${e}:${t}:${n}` : `${e}:${t}`; - } - const wa = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - viewBox: '0 0 24 24', - fill: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - fillRule: 'evenodd', - d: 'M11.54 22.351l.07.04.028.016a.76.76 0 00.723 0l.028-.015.071-.041a16.975 16.975 0 001.144-.742 19.58 19.58 0 002.683-2.282c1.944-1.99 3.963-4.98 3.963-8.827a8.25 8.25 0 00-16.5 0c0 3.846 2.02 6.837 3.963 8.827a19.58 19.58 0 002.682 2.282 16.975 16.975 0 001.145.742zM12 13.5a3 3 0 100-6 3 3 0 000 6z', - clipRule: 'evenodd', - }), - ); - }); - const Ea = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - viewBox: '0 0 24 24', - fill: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - fillRule: 'evenodd', - d: 'M3 2.25a.75.75 0 01.75.75v.54l1.838-.46a9.75 9.75 0 016.725.738l.108.054a8.25 8.25 0 005.58.652l3.109-.732a.75.75 0 01.917.81 47.784 47.784 0 00.005 10.337.75.75 0 01-.574.812l-3.114.733a9.75 9.75 0 01-6.594-.77l-.108-.054a8.25 8.25 0 00-5.69-.625l-2.202.55V21a.75.75 0 01-1.5 0V3A.75.75 0 013 2.25z', - clipRule: 'evenodd', - }), - ); - }); - function ka({ id: e }) { - const t = pa(), - { start: n, end: r, algorithm: o } = t.getSnapshot().context.tracing, - i = ga(), - a = hr(), - s = encodeURIComponent(e); - return vt('div', { - className: 'grid grid-cols-3 gap-4', - children: [ - vt(Jr, { to: i(`/projects/${s}`, !0), children: 'Focus' }), - vt(Qr, { - onClick: function () { - t.send({ type: 'deselectProject', projectName: e }), a(i('/projects', !0)); - }, - children: 'Exclude', - }), - vt( - Qr, - n - ? { - className: 'flex flex-row items-center', - onClick: function () { - a(i(`/projects/trace/${encodeURIComponent(n)}/${s}`, !0)); - }, - children: [vt(Ea, { className: 'mr-2 h-5 w-5 text-slate-500' }), 'End'], - } - : { - className: 'flex flex-row items-center', - onClick: function () { - a(i(`/projects/trace/${s}`, !0)); - }, - children: [vt(wa, { className: 'mr-2 h-5 w-5 text-slate-500' }), 'Start'], - }, - ), - ], - }); - } - const _a = (function () { - if (!fa) { - const e = oo(); - fa = new tooltip_service_GraphTooltipService(e); - } - return fa; - })(); - function Sa() { - const e = (0, va.useSyncExternalStore)( - e => _a.subscribe(e), - () => _a.currentTooltip, - ); - let t; - if (e) - switch (e.type) { - case 'projectNode': - t = vt(Ct, Object.assign({}, e.props, { children: vt(ka, Object.assign({}, e.props)) })); - break; - case 'projectEdge': - t = vt(St, Object.assign({}, e.props)); - break; - case 'taskNode': - t = vt(Tt, Object.assign({}, e.props)); - } - return t ? vt(gt, { content: t, open: !0, reference: e.ref, placement: 'top', openAction: 'manual' }) : null; - } - function Pa() { - const e = pa(), - t = oo(), - n = (0, va.useSyncExternalStore)( - e => t.listen(e), - () => t.lastPerformanceReport, - ), - r = 0 !== n.numNodes, - o = to(), - i = to(), - a = hr(), - s = Ji(), - { selectedWorkspaceId: l, selectedTaskId: c } = vr(), - u = s.currentPath, - d = u.startsWith('/tasks') ? '/tasks' : '/projects'; - return vt(ht.HY, { - children: [ - vt('div', { - className: - ('nx-console' === i.environment - ? 'absolute top-5 left-5 z-50 bg-white' - : 'relative flex h-full overflow-y-scroll') + - ' w-72 flex-col pb-10 shadow-lg ring-1 ring-slate-900/10 ring-opacity-10 transition-all dark:ring-slate-300/10', - id: 'sidebar', - children: [ - 'nx-console' !== i.environment - ? vt(ht.HY, { - children: [ - vt('div', { - className: - 'border-b border-slate-900/10 text-slate-700 dark:border-slate-300/10 dark:bg-transparent dark:text-slate-400', - children: vt('div', { - className: 'mx-4 my-2 flex items-center justify-between', - children: [ - vt('svg', { - className: 'h-10 w-auto text-slate-900 dark:text-white', - viewBox: '0 0 24 24', - fill: 'currentColor', - xmlns: 'http://www.w3.org/2000/svg', - children: [ - vt('title', { children: 'Nx' }), - vt('path', { - d: 'M11.987 14.138l-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998 3.044 4.759zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833h3.645zm5.634 4.134a2.061 2.061 0 0 0-1.969 1.336 1.963 1.963 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88zm3.39 1.061c-.375-.13-.8-.277-1.109-.681-.06-.08-.116-.17-.176-.265a2.143 2.143 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.482 2.482 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.723.723 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.364 5.364 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596zm.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74z', - }), - ], - }), - vt(_t, { - 'data-cy': 'route-select', - defaultValue: u.startsWith('/projects') ? '/projects' : '/tasks', - onChange: t => { - e.send('deselectAll'), - 'dev' === o.environment - ? a(`/${encodeURIComponent(s.workspace)}${t.currentTarget.value}`) - : a(`${t.currentTarget.value}`); - }, - children: [ - { route: '/projects', label: 'Projects' }, - { route: '/tasks', label: 'Tasks' }, - ].map(e => vt('option', { value: e.route, children: e.label }, e.label)), - }), - vt(ea, { children: vt(ra, {}) }), - vt(Qi, {}), - ], - }), - }), - vt('a', { - id: 'help', - className: ' mt-3 flex cursor-pointer items-center px-4 text-xs hover:underline ', - href: 'https://nx.dev/structure/dependency-graph', - rel: 'noreferrer', - target: '_blank', - children: [vt(go, { className: 'mr-2 h-4 w-4' }), 'Analyse and visualize your workspace.'], - }), - ], - }) - : null, - vt(Nr, {}), - ], - }), - vt('div', { - id: 'main-content', - className: 'flex-grow overflow-hidden transition-all', - children: [ - o.appConfig.showDebugger - ? vt(wo, { - projects: o.appConfig.workspaces, - selectedProject: l, - lastPerfReport: n, - selectedProjectChange: function (e) { - a(`/${encodeURIComponent(e)}${d}`); - }, - }) - : null, - r - ? null - : vt('div', { - 'data-cy': 'no-tasks-selected', - className: 'flex h-full w-full items-center justify-center text-slate-700 dark:text-slate-400', - children: [ - vt(mo, { className: 'mr-4 h-6 w-6' }), - vt('h4', { - children: [ - 'Please select a', - ' ', - u.startsWith('/tasks') ? 'task' : 'project', - ' in the sidebar.', - ], - }), - ], - }), - vt('div', { - className: 'h-full w-full', - children: [ - vt('div', { className: 'h-full w-full cursor-pointer', id: 'cytoscape-graph' }), - vt(Sa, {}), - vt(gt, { - openAction: 'hover', - content: 'Download Graph as PNG', - placement: 'left', - children: vt('button', { - type: 'button', - className: xo()( - r ? '' : 'invisible opacity-0', - 'fixed bottom-4 right-4 z-50 block h-16 w-16 transform rounded-full bg-blue-500 text-white shadow-sm transition duration-300 dark:bg-sky-500', - ), - 'data-cy': 'downloadImageButton', - onClick: function () { - const e = oo().getImage(); - let t = document.createElement('a'); - (t.href = e), - (t.download = 'graph.png'), - t.dispatchEvent(new MouseEvent('click', { bubbles: !0, cancelable: !0, view: window })); - }, - children: vt(yo, { className: 'absolute top-1/2 left-1/2 -mt-3 -ml-3 h-6 w-6' }), - }), - }), - ], - }), - ], - }), - ], - }); - } - var Ca = n(52014); - function ja(e) { - return 'state' in e; - } - var Ta = function (e, t) { - return e === t; - }, - Da = function (e, t) { - if ('state' in (o = e) && 'machine' in o) { - if (0 === e.status && t.current) return t.current; - var n = 0 !== (r = e).status ? r.state : r.machine.initialState; - return (t.current = 0 === e.status ? n : null), n; - } - var r, o; - return ja(e) ? e.state : void 0; - }; - function Na(e) { - return (function (e, t, n, o) { - void 0 === n && (n = Ta); - var i = (0, r.useRef)(null), - a = (0, r.useCallback)( - function (t) { - return e.subscribe(t).unsubscribe; - }, - [e], - ), - s = (0, r.useCallback)( - function () { - return o ? o(e) : Da(e, i); - }, - [e, o], - ); - return (0, Ca.useSyncExternalStoreWithSelector)(a, s, s, t, n); - })(pa(), e); - } - const Ma = e => e.context.projects, - Oa = e => e.context.workspaceLayout, - Aa = e => e.context.selectedProjects, - Ra = e => e.context.focusedProject, - La = e => ({ searchDepth: e.context.searchDepth, searchDepthEnabled: e.context.searchDepthEnabled }), - Ia = e => e.context.includePath, - Ba = e => e.context.groupByFolder, - Fa = e => e.context.collapseEdges, - za = e => e.context.textFilter, - Va = e => e.context.affectedProjects.length > 0, - Ga = e => e.context.tracing, - Ha = (0, r.memo)(({ collapseEdges: e, collapseEdgesChanged: t }) => - vt('div', { - className: 'px-4', - children: vt('div', { - className: 'flex items-start', - children: [ - vt('div', { - className: 'flex h-5 items-center', - children: vt('input', { - id: 'collapseEdges', - name: 'collapseEdges', - value: 'collapseEdges', - type: 'checkbox', - className: 'h-4 w-4 accent-purple-500', - onChange: e => t(e.target.checked), - checked: e, - }), - }), - vt('div', { - className: 'ml-3 text-sm', - children: [ - vt('label', { - htmlFor: 'collapseEdges', - className: 'cursor-pointer font-medium text-slate-600 dark:text-slate-400', - children: 'Collapse edges', - }), - vt('p', { - className: 'text-slate-400 dark:text-slate-500', - children: 'Display edges between groups rather than libraries', - }), - ], - }), - ], - }), - }), - ); - const Wa = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M12.75 15l3-3m0 0l-3-3m3 3h-7.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z', - }), - ); - }); - const Ua = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z', - }), - ); - }), - qa = (0, r.memo)(({ focusedLabel: e, resetFocus: t }) => - vt('div', { - className: 'mt-10 px-4', - children: vt('div', { - className: - 'group relative flex cursor-pointer items-center overflow-hidden rounded-md border border-slate-200 bg-blue-500 p-2 text-slate-50 shadow-sm dark:border-slate-700 dark:bg-sky-500', - 'data-cy': 'unfocusButton', - onClick: () => t(), - children: [ - vt('p', { - className: 'truncate transition duration-200 ease-in-out group-hover:opacity-60', - children: [ - vt(Wa, { className: '-mt-1 mr-1 inline h-6 w-6' }), - vt('span', { id: 'focused-project-name', children: ['Focused on ', e] }), - ], - }), - vt('div', { - className: - 'absolute right-2 flex translate-x-32 items-center rounded-md bg-white pl-2 text-sm font-medium text-slate-700 shadow-sm ring-1 ring-slate-500 transition-all duration-200 ease-in-out group-hover:translate-x-0 dark:bg-slate-800 dark:text-slate-300', - children: [ - 'Reset', - vt('span', { className: 'rounded-md p-1', children: vt(Ua, { className: 'h-5 w-5' }) }), - ], - }), - ], - }), - }), - ), - Ya = (0, r.memo)(({ checked: e, checkChanged: t, label: n, description: r, name: o }) => - vt('div', { - className: 'mt-8 px-4', - children: vt('div', { - className: 'flex items-start', - children: [ - vt('div', { - className: 'flex h-5 items-center', - children: vt('input', { - id: o, - name: o, - value: o, - type: 'checkbox', - className: 'h-4 w-4 accent-blue-500 dark:accent-sky-500', - onChange: e => t(e.target.checked), - checked: e, - }), - }), - vt('div', { - className: 'ml-3 text-sm', - children: [ - vt('label', { - htmlFor: o, - className: 'cursor-pointer font-medium text-slate-600 dark:text-slate-400', - children: n, - }), - vt('p', { className: 'text-slate-400 dark:text-slate-500', children: r }), - ], - }), - ], - }), - }), - ), - Xa = ({ groupByFolder: e, groupByFolderChanged: t }) => - vt(Ya, { - checked: e, - checkChanged: t, - name: 'groupByFolder', - label: 'Group by folder', - description: 'Visually arrange libraries by folders.', - }); - const $a = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m5.231 13.481L15 17.25m-4.5-15H5.625c-.621 0-1.125.504-1.125 1.125v16.5c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9zm3.75 11.625a2.625 2.625 0 11-5.25 0 2.625 2.625 0 015.25 0z', - }), - ); - }); - const Ka = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M15 10.5a3 3 0 11-6 0 3 3 0 016 0z', - }), - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z', - }), - ); - }); - const Za = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M3 3v1.5M3 21v-6m0 0l2.77-.693a9 9 0 016.208.682l.108.054a9 9 0 006.086.71l3.114-.732a48.524 48.524 0 01-.005-10.499l-3.11.732a9 9 0 01-6.085-.711l-.108-.054a9 9 0 00-6.208-.682L3 4.5M3 15V4.5', - }), - ); - }); - const Qa = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M2.036 12.322a1.012 1.012 0 010-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178z', - }), - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M15 12a3 3 0 11-6 0 3 3 0 016 0z', - }), - ); - }); - function Ja(e, t, n) { - let r = {}; - return ( - e.forEach(e => { - const o = 'app' === e.type || 'e2e' === e.type ? n.appsDir : n.libsDir, - i = ma(e.data.root, o).join('/'); - r.hasOwnProperty(i) || (r[i] = []), r[i].push({ projectGraphNode: e, isSelected: t.includes(e.name) }); - }), - r - ); - } - function es({ project: e, tracingInfo: t }) { - const n = pa(), - r = hr(), - o = ga(); - function i(e, t) { - t ? n.send({ type: 'deselectProject', projectName: e }) : n.send({ type: 'selectProject', projectName: e }), - r(o('/projects', !0)); - } - return vt('li', { - className: - 'relative block cursor-default select-none py-1 pl-2 pr-6 text-xs text-slate-600 dark:text-slate-400', - children: [ - vt('div', { - className: 'flex items-center', - children: [ - vt(Ur, { - 'data-cy': `focus-button-${e.projectGraphNode.name}`, - className: - 'mr-1 flex items-center rounded-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 ring-slate-200 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', - title: 'Focus on this library', - to: o(`/projects/${encodeURIComponent(e.projectGraphNode.name)}`, !0), - children: vt($a, { className: 'h-5 w-5' }), - }), - vt(ea, { - children: vt('span', { - className: 'relative z-0 inline-flex rounded-md shadow-sm', - children: [ - vt('button', { - type: 'button', - title: 'Start Trace', - onClick: () => { - return ( - (t = e.projectGraphNode.name), void n.send({ type: 'setTracingStart', projectName: t }) - ); - var t; - }, - className: - (t.start === e.projectGraphNode.name - ? 'ring-blue-500 dark:ring-sky-500' - : 'ring-slate-200 dark:ring-slate-600') + - ' flex items-center rounded-l-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', - children: vt(Ka, { className: 'h-5 w-5' }), - }), - vt('button', { - type: 'button', - title: 'End Trace', - onClick: () => { - return (t = e.projectGraphNode.name), void n.send({ type: 'setTracingEnd', projectName: t }); - var t; - }, - className: - (t.end === e.projectGraphNode.name - ? 'ring-blue-500 dark:ring-sky-500' - : 'ring-slate-200 dark:ring-slate-600') + - ' flex items-center rounded-r-md border-slate-300 bg-white p-1 font-medium text-slate-500 shadow-sm ring-1 transition hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-400 dark:ring-slate-600 hover:dark:bg-slate-700', - children: vt(Za, { className: 'h-5 w-5' }), - }), - ], - }), - }), - vt('label', { - className: - 'ml-2 block w-full cursor-pointer truncate rounded-md p-2 font-mono font-normal transition hover:bg-slate-50 hover:dark:bg-slate-700', - 'data-project': e.projectGraphNode.name, - title: e.projectGraphNode.name, - 'data-active': e.isSelected.toString(), - onClick: () => i(e.projectGraphNode.name, e.isSelected), - children: e.projectGraphNode.name, - }), - ], - }), - e.isSelected - ? vt('span', { - title: 'This library is visible', - className: - 'absolute inset-y-0 right-0 flex cursor-pointer items-center text-blue-500 dark:text-sky-500', - onClick: () => i(e.projectGraphNode.name, e.isSelected), - children: vt(Qa, { className: 'h-5 w-5' }), - }) - : null, - ], - }); - } - function ts({ headerText: e = '', projects: t, tracingInfo: n }) { - const r = pa(); - let o = [...t]; - o.sort((e, t) => e.projectGraphNode.name.localeCompare(t.projectGraphNode.name)); - const i = t.every(e => e.isSelected); - return vt(ht.HY, { - children: [ - '' !== e - ? vt('div', { - className: 'relative mt-4 flex justify-between py-2 text-slate-800 dark:text-slate-200', - children: [ - vt('h3', { - className: 'cursor-text text-sm font-semibold uppercase tracking-wide lg:text-xs', - children: e, - }), - vt('span', { - title: i ? `Hide all ${e} projects` : `Show all ${e} projects`, - className: - 'absolute inset-y-0 right-0 flex cursor-pointer items-center text-sm font-semibold uppercase tracking-wide lg:text-xs', - 'data-cy': `toggle-folder-visibility-button-${e}`, - onClick: () => - (function (e) { - const n = t.map(e => e.projectGraphNode.name); - e - ? r.send({ type: 'deselectProjects', projectNames: n }) - : r.send({ type: 'selectProjects', projectNames: n }); - })(i), - children: vt(Qa, { className: 'h-5 w-5' }), - }), - ], - }) - : null, - vt('ul', { - className: 'mt-2 -ml-3', - children: o.map(e => vt(es, { project: e, tracingInfo: n }, e.projectGraphNode.name)), - }), - ], - }); - } - function ns() { - const e = Na(Ga), - t = Na(Ma), - n = Na(Oa), - r = Na(Aa), - o = ya('app', t), - i = ya('lib', t), - a = ya('e2e', t), - s = Ja(o, r, n), - l = Ja(i, r, n), - c = Ja(a, r, n), - u = Object.keys(s).sort(), - d = Object.keys(l).sort(), - f = Object.keys(c).sort(); - return vt('div', { - id: 'project-lists', - className: 'mt-8 border-t border-slate-400/10 px-4', - children: [ - vt('h2', { - className: - 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', - children: 'app projects', - }), - u.map(t => vt(ts, { headerText: t, projects: s[t], tracingInfo: e }, 'app-' + t)), - vt('h2', { - className: - 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', - children: 'e2e projects', - }), - f.map(t => vt(ts, { headerText: t, projects: c[t], tracingInfo: e }, 'e2e-' + t)), - vt('h2', { - className: - 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', - children: 'lib projects', - }), - d.map(t => vt(ts, { headerText: t, projects: l[t], tracingInfo: e }, 'lib-' + t)), - ], - }); - } - const rs = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { strokeLinecap: 'round', strokeLinejoin: 'round', d: 'M19.5 12h-15' }), - ); - }); - const os = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { strokeLinecap: 'round', strokeLinejoin: 'round', d: 'M12 4.5v15m7.5-7.5h-15' }), - ); - }), - is = (0, r.memo)( - ({ - searchDepth: e, - searchDepthEnabled: t, - searchDepthFilterEnabledChange: n, - decrementDepthFilter: r, - incrementDepthFilter: o, - }) => - vt('div', { - className: 'mt-4 px-4', - children: [ - vt('div', { - className: 'mt-4 flex items-start', - children: [ - vt('div', { - className: 'flex h-5 items-center', - children: vt('input', { - id: 'depthFilter', - name: 'depthFilter', - value: 'depthFilterActivated', - type: 'checkbox', - className: 'h-4 w-4 accent-blue-500 dark:accent-sky-500', - checked: t, - onChange: e => n(e.target.checked), - }), - }), - vt('div', { - className: 'ml-3 text-sm', - children: [ - vt('label', { - htmlFor: 'depthFilter', - className: 'cursor-pointer font-medium text-slate-600 dark:text-slate-400', - children: 'Activate proximity', - }), - vt('p', { - className: 'text-slate-400 dark:text-slate-500', - children: 'Explore connected libraries step by step.', - }), - ], - }), - ], - }), - vt('div', { - className: 'mt-3 px-10', - children: vt('div', { - className: 'flex rounded-md shadow-sm', - children: [ - vt('button', { - 'data-cy': 'decrement-depth-filter', - title: 'Remove ancestor level', - className: - 'inline-flex items-center rounded-l-md border border-slate-300 bg-slate-50 py-2 px-4 text-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', - onClick: r, - children: vt(rs, { className: 'h-4 w-4' }), - }), - vt('span', { - id: 'depthFilterValue', - 'data-cy': 'depth-value', - className: - 'block w-full flex-1 rounded-none border-t border-b border-slate-300 bg-white p-1.5 text-center font-mono dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', - children: e, - }), - vt('button', { - 'data-cy': 'increment-depth-filter', - title: 'Add ancestor level', - className: - 'inline-flex items-center rounded-r-md border border-slate-300 bg-slate-50 py-2 px-4 text-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', - onClick: o, - children: vt(os, { className: 'h-4 w-4' }), - }), - ], - }), - }), - ], - }), - ); - const as = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M3.75 13.5l10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75z', - }), - ); - }); - const ss = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M3.98 8.223A10.477 10.477 0 001.934 12C3.226 16.338 7.244 19.5 12 19.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.45 10.45 0 0112 4.5c4.756 0 8.773 3.162 10.065 7.498a10.523 10.523 0 01-4.293 5.774M6.228 6.228L3 3m3.228 3.228l3.65 3.65m7.894 7.894L21 21m-3.228-3.228l-3.65-3.65m0 0a3 3 0 10-4.243-4.243m4.242 4.242L9.88 9.88', - }), - ); - }), - ls = (0, r.memo)(({ showAll: e, hideAll: t, showAffected: n, hasAffected: r, label: o }) => - vt('div', { - className: 'mt-8 px-4', - children: [ - vt('button', { - onClick: e, - type: 'button', - className: - 'flex w-full items-center rounded-md border border-slate-300 bg-white px-4 py-2 text-sm font-medium text-slate-700 shadow-sm hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', - 'data-cy': 'selectAllButton', - children: [vt(Qa, { className: '-ml-1 mr-2 h-5 w-5 text-slate-400' }), 'Show all ', o], - }), - r - ? vt('button', { - onClick: n, - type: 'button', - className: - 'mt-3 flex w-full items-center rounded-md border border-pink-500 bg-pink-400 px-4 py-2 text-sm font-medium text-white shadow-sm hover:bg-pink-500 dark:border-fuchsia-800 dark:bg-fuchsia-700 dark:text-white hover:dark:bg-fuchsia-600', - 'data-cy': 'affectedButton', - children: [vt(as, { className: '-ml-1 mr-2 h-5 w-5 text-white' }), 'Show affected ', o], - }) - : null, - vt('button', { - onClick: t, - type: 'button', - className: - 'mt-3 flex w-full items-center rounded-md border border-slate-300 bg-white px-4 py-2 text-sm font-medium text-slate-700 shadow-sm hover:bg-slate-50 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', - 'data-cy': 'deselectAllButton', - children: [vt(ss, { className: '-ml-1 mr-2 h-5 w-5 text-slate-500' }), 'Hide all ', o], - }), - ], - }), - ); - function cs({ - textFilter: e, - resetTextFilter: t, - updateTextFilter: n, - toggleIncludeLibsInPathChange: r, - includePath: o, - }) { - return vt('div', { - children: [ - vt('div', { - className: 'mt-10 px-4', - children: vt(bt, { - resetTextFilter: t, - updateTextFilter: n, - initialText: '', - placeholderText: 'lib name, other lib name', - }), - }), - vt('div', { - className: 'mt-4 px-4', - children: vt('div', { - className: 'flex items-start', - children: [ - vt('div', { - className: 'flex h-5 items-center', - children: vt('input', { - disabled: 0 === e.length, - id: 'includeInPath', - name: 'textFilterCheckbox', - type: 'checkbox', - value: 'includeInPath', - className: 'h-4 w-4 accent-blue-500 dark:accent-sky-500', - checked: o, - onChange: r, - }), - }), - vt('div', { - className: 'ml-3 text-sm', - children: [ - vt('label', { - htmlFor: 'includeInPath', - className: 'cursor-pointer font-medium text-slate-600 dark:text-slate-400', - children: 'Include related libraries', - }), - vt('p', { - className: 'text-slate-400 dark:text-slate-500', - children: 'Show libraries that are related to your search.', - }), - ], - }), - ], - }), - }), - ], - }); - } - const us = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M12 6.75a.75.75 0 110-1.5.75.75 0 010 1.5zM12 12.75a.75.75 0 110-1.5.75.75 0 010 1.5zM12 18.75a.75.75 0 110-1.5.75.75 0 010 1.5z', - }), - ); - }), - ds = (0, r.memo)(({ start: e, end: t, algorithm: n, setAlgorithm: r, resetStart: o, resetEnd: i }) => - vt('div', { - className: 'mt-10 px-4', - children: vt('div', { - className: 'transition duration-200 ease-in-out group-hover:opacity-60', - children: [ - vt('h3', { - className: - 'cursor-text pb-2 text-sm font-semibold uppercase tracking-wide text-slate-800 dark:text-slate-200 lg:text-xs', - children: 'Tracing Path', - }), - vt('div', { - className: - 'mb-3 flex cursor-pointer flex-row rounded-md border text-center text-xs dark:border-slate-600', - children: [ - vt('button', { - onClick: () => r('shortest'), - className: - ('shortest' === n - ? 'border-blue-500 dark:border-sky-500' - : 'border-slate-300 dark:border-slate-600') + - ' flex-1 rounded-l-md border bg-slate-50 py-2 px-4 text-slate-500 hover:bg-slate-100 dark:border-slate-600 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', - children: vt('span', { children: 'Shortest' }), - }), - vt('button', { - onClick: () => r('all'), - className: - ('all' === n - ? 'border-blue-500 dark:border-sky-500' - : 'border-slate-300 dark:border-slate-600') + - ' flex-1 rounded-r-md border bg-slate-50 py-2 px-4 text-slate-500 hover:bg-slate-100 dark:bg-slate-800 dark:text-slate-300 hover:dark:bg-slate-700', - children: vt('span', { children: 'All' }), - }), - ], - }), - vt('div', { - className: 'flex flex-row items-center truncate ', - children: [ - vt(Ka, { className: 'mr-2 h-5 w-5 text-slate-500 dark:text-slate-400' }), - e - ? vt('div', { - className: 'group relative flex-1 cursor-pointer flex-col items-center overflow-hidden', - 'data-cy': 'resetTraceButton', - onClick: o, - children: [ - vt('div', { - className: - 'flex-1 truncate rounded-md border border-slate-200 bg-blue-500 p-2 text-slate-50 shadow-sm transition duration-200 ease-in-out group-hover:opacity-60 dark:border-slate-700 dark:bg-sky-500', - children: vt('span', { children: e }), - }), - vt('div', { - className: - 'absolute top-2 right-2 flex translate-x-32 items-center rounded-md bg-white pl-2 text-sm font-medium text-slate-700 shadow-sm ring-1 ring-slate-500 transition-all transition duration-200 ease-in-out group-hover:translate-x-0 dark:bg-slate-800 dark:text-slate-300 dark:ring-slate-700', - children: [ - 'Reset', - vt('span', { className: 'rounded-md p-1', children: vt(Ua, { className: 'h-5 w-5' }) }), - ], - }), - ], - }) - : vt('p', { className: 'text-sm text-slate-500', children: 'Select start project' }), - ], - }), - vt('div', { children: vt(us, { className: 'h-5 w-5 text-slate-500 dark:text-slate-400' }) }), - vt('div', { - className: 'flex flex-row items-center truncate ', - children: [ - vt(Za, { className: 'mr-2 h-5 w-5 text-slate-500 dark:text-slate-400' }), - t - ? vt('div', { - className: ' group relative flex-1 cursor-pointer flex-col items-center overflow-hidden ', - 'data-cy': 'resetTraceButton', - onClick: i, - children: [ - vt('div', { - className: - 'flex-1 truncate rounded-md border border-slate-200 bg-blue-500 p-2 text-slate-50 shadow-sm transition duration-200 ease-in-out group-hover:opacity-60 dark:border-slate-700 dark:bg-sky-500', - children: vt('span', { children: t }), - }), - vt('div', { - className: - 'absolute top-2 right-2 flex translate-x-32 items-center rounded-md bg-white pl-2 text-sm font-medium text-slate-700 shadow-sm ring-1 ring-slate-500 transition-all transition duration-200 ease-in-out group-hover:translate-x-0 dark:bg-slate-800 dark:text-slate-300 dark:ring-slate-700', - children: [ - 'Reset', - vt('span', { className: 'rounded-md p-1', children: vt(Ua, { className: 'h-5 w-5' }) }), - ], - }), - ], - }) - : vt('p', { className: 'text-sm text-slate-500', children: 'Select end project' }), - ], - }), - ], - }), - }), - ); - class FetchProjectGraphService { - async getHash() { - const e = new Request('currentHash', { mode: 'no-cors' }); - return (await fetch(e)).json(); - } - async getProjectGraph(e) { - const t = new Request(e, { mode: 'no-cors' }); - return (await fetch(t)).json(); - } - async getTaskGraph(e) { - const t = new Request(e, { mode: 'no-cors' }); - return (await fetch(t)).json(); - } - } - class LocalProjectGraphService { - async getHash() { - return new Promise(e => e('some-hash')); - } - async getProjectGraph(e) { - return new Promise(e => e(window.projectGraphResponse)); - } - async getTaskGraph(e) { - return new Promise(e => e(window.taskGraphResponse)); - } - } - class MockProjectGraphService { - constructor(e = 5e3) { - (this.projectGraphsResponse = { - hash: '79054025255fb1a26e4bc422aef54eb4', - layout: { appsDir: 'apps', libsDir: 'libs' }, - projects: [ - { name: 'existing-app-1', type: 'app', data: { root: 'apps/app1', tags: [] } }, - { name: 'existing-lib-1', type: 'lib', data: { root: 'libs/lib1', tags: [] } }, - ], - dependencies: { - 'existing-app-1': [{ source: 'existing-app-1', target: 'existing-lib-1', type: 'static' }], - 'existing-lib-1': [], - }, - fileMap: { - 'existing-app-1': [ - { file: 'some/file.ts', hash: 'ecccd8481d2e5eae0e59928be1bc4c2d071729d7', deps: ['existing-lib-1'] }, - ], - 'exiting-lib-1': [], - }, - affected: [], - focus: null, - exclude: [], - groupByFolder: !1, - }), - (this.taskGraphsResponse = { taskGraphs: {}, errors: {} }), - setInterval(() => this.updateResponse(), e); - } - async getHash() { - return new Promise(e => e(this.projectGraphsResponse.hash)); - } - getProjectGraph(e) { - return new Promise(e => e(this.projectGraphsResponse)); - } - getTaskGraph(e) { - return new Promise(e => e(this.taskGraphsResponse)); - } - createNewProject() { - const e = Math.random() > 0.25 ? 'lib' : 'app', - t = `${e}-${this.projectGraphsResponse.projects.length + 1}`; - return { name: t, type: e, data: { root: 'app' === e ? `apps/${t}` : `libs/${t}`, tags: [] } }; - } - updateResponse() { - const e = this.createNewProject(), - t = this.projectGraphsResponse.projects.filter(e => 'lib' === e.type), - n = t[Math.floor(Math.random() * t.length)], - r = [{ source: e.name, target: n.name, type: 'static' }]; - this.projectGraphsResponse = Object.assign({}, this.projectGraphsResponse, { - projects: [...this.projectGraphsResponse.projects, e], - dependencies: Object.assign({}, this.projectGraphsResponse.dependencies, { [e.name]: r }), - }); - } - } - let fs; - function hs() { - return ( - void 0 === fs && - ('dev' === window.environment - ? (fs = new FetchProjectGraphService()) - : 'watch' === window.environment - ? (fs = new MockProjectGraphService()) - : ('release' !== window.environment && 'nx-console' !== window.environment) || - (fs = 'build' === window.localMode ? new LocalProjectGraphService() : new FetchProjectGraphService())), - fs - ); - } - function ps() { - const e = to(), - t = pa(), - n = Na(Ra), - o = Na(La), - i = Na(Ia), - a = Na(za), - s = Na(Va), - l = Na(Ba), - c = Na(Fa), - u = t.getSnapshot().matches('tracing'), - d = Na(Ga), - f = hs(), - h = vr(), - p = Ji(), - [v, g] = Xr(), - m = Cr('selectedWorkspace'), - y = vr(), - b = hr(), - x = ga(); - (0, r.useEffect)(() => { - t.send({ - type: 'setProjects', - projects: m.projects, - dependencies: m.dependencies, - fileMap: m.fileMap, - affectedProjects: m.affected, - workspaceLayout: m.layout, - }); - }, [m]), - (0, r.useEffect)(() => { - switch (p.currentPath) { - case '/projects/all': - t.send({ type: 'selectAll' }); - break; - case '/projects/affected': - t.send({ type: 'selectAffected' }); - } - }, [p]), - (0, r.useEffect)(() => { - h.focusedProject && t.send({ type: 'focusProject', projectName: h.focusedProject }), - h.startTrace && t.send({ type: 'setTracingStart', projectName: h.startTrace }), - h.endTrace && t.send({ type: 'setTracingEnd', projectName: h.endTrace }); - }, [h]), - (0, r.useEffect)(() => { - if ( - (v.has('groupByFolder') && !1 === l - ? t.send({ type: 'setGroupByFolder', groupByFolder: !0 }) - : v.has('groupByFolder') || !0 !== l || t.send({ type: 'setGroupByFolder', groupByFolder: !1 }), - v.has('collapseEdges') && !1 === c - ? t.send({ type: 'setCollapseEdges', collapseEdges: !0 }) - : v.has('collapseEdges') || !0 !== c || t.send({ type: 'setCollapseEdges', collapseEdges: !1 }), - v.has('searchDepth')) - ) { - const e = parseInt(v.get('searchDepth'), 10); - 0 === e && !1 !== o.searchDepthEnabled - ? t.send({ type: 'setSearchDepthEnabled', searchDepthEnabled: !1 }) - : 0 !== e && t.send({ type: 'setSearchDepth', searchDepth: e }); - } else - (!1 !== o.searchDepthEnabled && 1 === o.searchDepth) || - (t.send({ type: 'setSearchDepthEnabled', searchDepthEnabled: !0 }), - t.send({ type: 'setSearchDepth', searchDepth: 1 })); - if (v.has('traceAlgorithm')) { - const e = v.get('traceAlgorithm'); - ('shortest' !== e && 'all' !== e) || t.send({ type: 'setTracingAlgorithm', algorithm: e }); - } else 'shortest' !== d.algorithm && t.send({ type: 'setTracingAlgorithm', algorithm: 'shortest' }); - }, [v]), - ((e, t, n) => { - const o = (0, r.useRef)(() => {}); - (0, r.useEffect)(() => { - n && (o.current = e); - }, [e, n]), - (0, r.useEffect)(() => { - if (n && null !== t) { - let e = setInterval(() => { - o.current(); - }, t); - return () => clearInterval(e); - } - }, [t, n]); - })( - () => { - var n; - const r = null != (n = y.selectedWorkspaceId) ? n : e.appConfig.defaultWorkspaceId, - o = e.appConfig.workspaces.find(e => e.id === r); - (async () => { - const e = await f.getProjectGraph(o.projectGraphUrl); - t.send({ type: 'updateGraph', projects: e.projects, dependencies: e.dependencies, fileMap: e.fileMap }); - })(); - }, - 5e3, - e.watch, - ); - const w = (0, r.useCallback)( - e => { - t.send({ type: 'filterByText', search: e }), b(x('/projects', !0)); - }, - [t], - ); - return vt(ht.HY, { - children: [ - n - ? vt(qa, { - focusedLabel: n, - resetFocus: function () { - t.send({ type: 'unfocusProject' }), b(x('/projects', !0)); - }, - }) - : null, - u - ? vt(ds, { - start: d.start, - end: d.end, - algorithm: d.algorithm, - setAlgorithm: function (e) { - g(t => (t.set('traceAlgorithm', e), t)); - }, - resetStart: function () { - t.send({ type: 'clearTraceStart' }), b(x('/projects', !0)); - }, - resetEnd: function () { - t.send({ type: 'clearTraceEnd' }), b(x('/projects', !0)); - }, - }) - : null, - vt(cs, { - includePath: i, - resetTextFilter: function () { - t.send({ type: 'clearTextFilter' }); - }, - textFilter: a, - toggleIncludeLibsInPathChange: function () { - t.send({ type: 'setIncludeProjectsByPath', includeProjectsByPath: !i }); - }, - updateTextFilter: w, - }), - vt('div', { - children: [ - vt(ls, { - hideAll: function () { - t.send({ type: 'deselectAll' }), b(x('/projects', !0)); - }, - showAll: function () { - b(x('/projects/all', !0)); - }, - showAffected: function () { - b(x('/projects/affected', !0)); - }, - hasAffected: s, - label: 'projects', - }), - vt(Xa, { - groupByFolder: l, - groupByFolderChanged: function (e) { - g(t => (e ? t.set('groupByFolder', 'true') : t.delete('groupByFolder'), t)); - }, - }), - vt(is, { - searchDepth: o.searchDepth, - searchDepthEnabled: o.searchDepthEnabled, - searchDepthFilterEnabledChange: function (e) { - g( - t => ( - e && o.searchDepth > 1 - ? t.set('searchDepth', o.searchDepth.toString()) - : e && 1 === o.searchDepth - ? t.delete('searchDepth') - : t.set('searchDepth', '0'), - t - ), - ); - }, - incrementDepthFilter: function () { - const e = o.searchDepth + 1; - g(t => (1 === e ? t.delete('searchDepth') : t.set('searchDepth', e.toString()), t)); - }, - decrementDepthFilter: function () { - const e = 1 === o.searchDepth ? 1 : o.searchDepth - 1; - g(t => (1 === e ? t.delete('searchDepth') : t.set('searchDepth', e.toString()), t)); - }, - }), - vt(ea, { - children: vt('div', { - className: - 'mx-4 mt-4 rounded-lg border-2 border-dashed border-purple-500 p-4 shadow-lg dark:border-purple-600 dark:bg-[#0B1221]', - children: [ - vt('h3', { - className: - 'cursor-text px-4 py-2 text-sm font-semibold uppercase tracking-wide text-slate-800 dark:text-slate-200 lg:text-xs', - children: 'Experimental Features', - }), - vt(Ha, { - collapseEdges: c, - collapseEdgesChanged: function (e) { - g(t => (e ? t.set('collapseEdges', 'true') : t.delete('collapseEdges'), t)); - }, - }), - ], - }), - }), - ], - }), - 'nx-console' !== e.environment ? vt(ns, {}) : null, - ], - }); - } - const vs = r.forwardRef(function ({ title: e, titleId: t, ...n }, o) { - return r.createElement( - 'svg', - Object.assign( - { - xmlns: 'http://www.w3.org/2000/svg', - fill: 'none', - viewBox: '0 0 24 24', - strokeWidth: 1.5, - stroke: 'currentColor', - 'aria-hidden': 'true', - ref: o, - 'aria-labelledby': t, - }, - n, - ), - e ? r.createElement('title', { id: t }, e) : null, - r.createElement('path', { - strokeLinecap: 'round', - strokeLinejoin: 'round', - d: 'M12 9v3.75m9-.75a9 9 0 11-18 0 9 9 0 0118 0zm-9 3.75h.008v.008H12v-.008z', - }), - ); - }), - gs = ({ error: e }) => - vt(ht.HY, { - children: [ - vt('h2', { - className: 'text-lg font-light text-slate-400 dark:text-slate-500', - children: 'There was a problem calculating the task graph for this task', - }), - vt('p', { children: e }), - ], - }); - function ms({ project: e, toggleTask: t }) { - return vt('li', { - className: - 'relative block cursor-default select-none pb-0 pl-2 pr-6 text-xs text-slate-600 dark:text-slate-400', - children: [ - vt('div', { - className: 'flex items-center', - children: vt('label', { - className: - 'block w-full cursor-pointer truncate rounded-md p-2 font-mono font-normal transition hover:bg-slate-50 hover:dark:bg-slate-700', - 'data-project': e.projectGraphNode.name, - title: e.projectGraphNode.name, - 'data-active': e.isSelected.toString(), - onClick: () => (e.error ? null : t(e.projectGraphNode.name)), - children: e.projectGraphNode.name, - }), - }), - e.error - ? vt(gt, { - content: vt(gs, { error: e.error }), - openAction: 'click', - strategy: 'fixed', - children: vt('span', { - className: - 'absolute inset-y-0 right-0 flex cursor-pointer items-center text-blue-500 dark:text-sky-500', - children: vt(vs, { - className: 'h-5 w-5 text-yellow-500 dark:text-yellow-400', - 'aria-hidden': 'true', - }), - }), - }) - : null, - e.isSelected - ? vt('span', { - title: 'This task is visible', - className: - 'absolute inset-y-0 right-0 flex cursor-pointer items-center text-blue-500 dark:text-sky-500', - onClick: () => t(e.projectGraphNode.name), - children: vt(Qa, { className: 'h-5 w-5' }), - }) - : null, - ], - }); - } - function ys({ headerText: e = '', projects: t, toggleTask: n }) { - let r = [...t]; - return ( - r.sort((e, t) => e.projectGraphNode.name.localeCompare(t.projectGraphNode.name)), - vt(ht.HY, { - children: [ - '' !== e - ? vt('h3', { - className: - 'mt-4 cursor-text py-2 text-sm font-semibold uppercase tracking-wide text-slate-800 dark:text-slate-200 lg:text-xs', - children: e, - }) - : null, - vt('ul', { - className: 'mt-2 -ml-3', - children: r.map(e => vt(ms, { project: e, toggleTask: n }, e.projectGraphNode.name)), - }), - ], - }) - ); - } - function bs(e, t, n, r) { - var o; - const i = xa(e.name, n); - return { - projectGraphNode: e, - isSelected: t.includes(e.name), - error: null != (o = null == r ? void 0 : r[i]) ? o : null, - }; - } - function xs({ - projects: e, - workspaceLayout: t, - selectedTarget: n, - selectedProjects: r, - toggleProject: o, - children: i, - errors: a, - }) { - const s = e - .filter(e => { - var t; - return null == (t = e.data.targets) ? void 0 : t.hasOwnProperty(n); - }) - .sort((e, t) => e.name.localeCompare(t.name)), - l = ya('app', s), - c = ya('lib', s), - u = ya('e2e', s), - d = ba(l, t), - f = ba(c, t), - h = ba(u, t), - p = Object.keys(d).sort(), - v = Object.keys(f).sort(), - g = Object.keys(h).sort(); - return vt('div', { - id: 'project-lists', - className: 'mt-8 border-t border-slate-400/10 px-4', - children: [ - i, - vt('h2', { - className: - 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', - children: 'app projects', - }), - p.map(e => vt(ys, { headerText: e, projects: d[e].map(e => bs(e, r, n, a)), toggleTask: o }, 'app-' + e)), - vt('h2', { - className: - 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', - children: 'e2e projects', - }), - g.map(e => vt(ys, { headerText: e, projects: h[e].map(e => bs(e, r, n, a)), toggleTask: o }, 'e2e-' + e)), - vt('h2', { - className: - 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', - children: 'lib projects', - }), - v.map(e => vt(ys, { headerText: e, projects: f[e].map(e => bs(e, r, n, a)), toggleTask: o }, 'lib-' + e)), - ], - }); - } - function ws() { - var e; - const t = oo(), - n = hr(), - o = vr(), - i = ga(), - [a, s] = Xr(), - l = 'true' === a.get('groupByProject'), - c = Cr('selectedWorkspace'), - u = c.layout, - d = Cr('selectedTarget'), - { taskGraphs: f, errors: h } = d; - let { projects: p, targets: v } = c; - const g = null != (e = o.selectedTarget) ? e : v[0], - m = Ji().currentPath === `/tasks/${g}/all`, - y = p.filter(e => { - var t; - return ( - (null == (t = e.data.targets) ? void 0 : t.hasOwnProperty(g)) && - !(null != h && h.hasOwnProperty(xa(e.name, g))) - ); - }), - b = (0, r.useMemo)(() => { - var e, t; - return m - ? y.map(({ name: e }) => e) - : null != (e = null == (t = a.get('projects')) ? void 0 : t.split(' ')) - ? e - : []; - }, [y, a, m]); - function x() { - a.delete('projects'), n(i({ pathname: `/tasks/${encodeURIComponent(g)}`, search: a.toString() }, !1)); - } - return ( - (0, r.useEffect)(() => { - t.handleTaskEvent({ type: 'notifyTaskGraphSetProjects', projects: c.projects, taskGraphs: f }); - }, [c]), - (0, r.useEffect)(() => { - l - ? t.handleTaskEvent({ type: 'setGroupByProject', groupByProject: !0 }) - : t.handleTaskEvent({ type: 'setGroupByProject', groupByProject: !1 }); - }, [a]), - (0, r.useEffect)(() => { - t.handleTaskEvent({ type: 'notifyTaskGraphSetTasks', taskIds: b.map(e => xa(e, g)) }); - }, [t, b, g]), - vt(ht.HY, { - children: [ - vt(ls, { - showAll: () => ( - a.delete('projects'), - void n(i({ pathname: `/tasks/${encodeURIComponent(g)}/all`, search: a.toString() }, !1)) - ), - hideAll: () => x(), - showAffected: () => {}, - hasAffected: !1, - label: 'tasks', - }), - vt(Ya, { - checked: l, - checkChanged: function (e) { - s(t => (e ? t.set('groupByProject', 'true') : t.delete('groupByProject'), t), { relative: 'path' }); - }, - name: 'groupByProject', - label: 'Group by project', - description: 'Visually arrange tasks by project.', - }), - vt(xs, { - projects: p, - selectedProjects: b, - workspaceLayout: u, - selectedTarget: g, - toggleProject: function (e) { - b.includes(e) - ? (function (e) { - const t = b.filter(t => t !== e); - 0 === t.length ? a.delete('projects') : a.set('projects', t.join(' ')); - n(i({ pathname: `/tasks/${encodeURIComponent(g)}`, search: a.toString() }, !1)); - })(e) - : (function (e) { - const t = [...b, e], - r = t.length === y.length; - r ? a.delete('projects') : a.set('projects', t.join(' ')); - n( - i( - { - pathname: r ? `/tasks/${encodeURIComponent(g)}/all` : `/tasks/${encodeURIComponent(g)}`, - search: a.toString(), - }, - !1, - ), - ); - })(e); - }, - errors: h, - children: [ - vt('label', { - htmlFor: 'selectedTarget', - className: 'my-2 block text-sm font-medium text-gray-700', - children: 'Target Name', - }), - vt(_t, { - id: 'selectedTarget', - className: 'w-full', - 'data-cy': 'selected-target-dropdown', - defaultValue: g, - onChange: e => { - var t; - (t = e.currentTarget.value) !== g && - (x(), - o.selectedTarget - ? n({ pathname: `../${encodeURIComponent(t)}`, search: a.toString() }) - : n({ pathname: `${encodeURIComponent(t)}`, search: a.toString() })); - }, - children: v.map(e => vt('option', { value: e, children: e }, e)), - }), - ], - }), - ], - }) - ); - } - function Es() { - let e = jr(); - return ( - console.error(e), - vt('div', { - className: 'mt-8 px-4', - children: [ - vt('h2', { - className: - 'mt-8 border-b border-solid border-slate-200/10 text-lg font-light text-slate-400 dark:text-slate-500', - children: 'Error', - }), - vt('p', { children: 'There was a problem loading your task graph.' }), - ], - }) - ); - } - const { appConfig: ks } = no(), - _s = hs(); - function Ss() { - return 'dev' === no().environment ? js : Ts; - } - const Ps = async e => { - const t = ks.workspaces.find(t => t.id === e), - n = await _s.getProjectGraph(t.projectGraphUrl), - r = new Set(); - n.projects.forEach(e => { - var t; - Object.keys(null != (t = e.data.targets) ? t : {}).forEach(e => { - r.add(e); - }); - }); - const o = Array.from(r).sort((e, t) => e.localeCompare(t)); - return Object.assign({}, n, { targets: o }); - }, - Cs = [ - { - path: 'projects', - children: [ - { index: !0, element: vt(ps, {}) }, - { path: 'all', element: vt(ps, {}) }, - { path: 'affected', element: vt(ps, {}) }, - { path: ':focusedProject', element: vt(ps, {}) }, - { path: 'trace/:startTrace', element: vt(ps, {}) }, - { path: 'trace/:startTrace/:endTrace', element: vt(ps, {}) }, - ], - }, - { - loader: async ({ request: e, params: t }) => { - var n; - return (async e => { - const t = ks.workspaces.find(t => t.id === e); - return await _s.getTaskGraph(t.taskGraphUrl); - })(null != (n = t.selectedWorkspaceId) ? n : ks.defaultWorkspaceId); - }, - path: 'tasks', - id: 'selectedTarget', - errorElement: vt(Es, {}), - shouldRevalidate: ({ currentParams: e, nextParams: t }) => - !e.selectedWorkspaceId || e.selectedWorkspaceId !== t.selectedWorkspaceId, - children: [ - { index: !0, element: vt(ws, {}) }, - { path: ':selectedTarget', element: vt(ws, {}), children: [{ path: 'all', element: vt(ws, {}) }] }, - ], - }, - ], - js = [ - { - path: '/', - children: [ - { - index: !0, - loader: async ({ request: e, params: t }) => { - const { search: n } = new URL(e.url); - return fn(`/${ks.defaultWorkspaceId}/projects${n}`); - }, - }, - { - path: ':selectedWorkspaceId', - id: 'selectedWorkspace', - element: vt(Pa, {}), - shouldRevalidate: ({ currentParams: e, nextParams: t }) => - e.selectedWorkspaceId !== t.selectedWorkspaceId, - loader: async ({ request: e, params: t }) => { - var n; - const r = null != (n = t.selectedWorkspaceId) ? n : ks.defaultWorkspaceId; - return Ps(r); - }, - children: Cs, - }, - ], - }, - ], - Ts = [ - { - path: '/', - id: 'selectedWorkspace', - loader: async ({ request: e, params: t }) => { - const n = ks.defaultWorkspaceId; - return Ps(n); - }, - shouldRevalidate: () => !1, - element: vt(Pa, {}), - children: [ - { - index: !0, - loader: ({ request: e }) => { - const { search: t } = new URL(e.url); - return fn(`/projects${t}`); - }, - }, - ...Cs, - ], - }, - ]; - let Ds; - function Ns() { - if (!Ds) { - let e = Fr; - 'build' === no().localMode && (e = zr), (Ds = e(Ss())); - } - return Ds; - } - var Ms; - function Os() { - return vt(Tr, { router: Ns() }); - } - uo(null != (Ms = localStorage.getItem(ao)) ? Ms : 'system'), - (function () { - var e; - vo(null != (e = localStorage.getItem(ho)) ? e : 'TB'); - })(); - !0 === window.useXstateInspect && - (function (e) { - var t = (function (e) { - var t = o(o({}, m), e); - return o(o({}, t), { url: new URL(t.url), iframe: d(t.iframe), devTools: d(t.devTools) }); - })(e), - n = t.iframe, - r = t.url, - c = t.devTools; - if (null !== n) { - var u, - h, - g = (function (e, t) { - void 0 === e && (e = globalThis.__xstate__); - var n = new Map(), - r = e.onRegister(function (e) { - n.set(e.sessionId, e); - }); - return (0, s.C)({ - initial: 'pendingConnection', - context: { client: void 0 }, - states: { - pendingConnection: {}, - connected: { - on: { - 'service.state': { - actions: function (e, t) { - return e.client.send(t); - }, - }, - 'service.event': { - actions: function (e, t) { - return e.client.send(t); - }, - }, - 'service.register': { - actions: function (e, t) { - return e.client.send(t); - }, - }, - 'service.stop': { - actions: function (e, t) { - return e.client.send(t); - }, - }, - 'xstate.event': { - actions: function (e, t) { - var r = t.event, - o = JSON.parse(r), - i = n.get(o.origin); - null == i || i.send(o); - }, - }, - unload: { - actions: function (e) { - e.client.send({ type: 'xstate.disconnect' }); - }, - }, - disconnect: 'disconnected', - }, - }, - disconnected: { - entry: function () { - r.unsubscribe(); - }, - type: 'final', - }, - }, - on: { - 'xstate.inspecting': { - target: '.connected', - actions: [ - (0, l.assign)({ - client: function (e, t) { - return t.client; - }, - }), - function (n) { - e.services.forEach(function (e) { - var r; - null === (r = n.client) || - void 0 === r || - r.send({ - type: 'service.register', - machine: v(e.machine, null == t ? void 0 : t.serialize), - state: p(e.state || e.initialState, null == t ? void 0 : t.serialize), - sessionId: e.sessionId, - }); - }); - }, - ], - }, - }, - }); - })(c, e), - b = (0, i.kJ)(g).start(), - x = new Set(), - w = b.subscribe(function (e) { - x.forEach(function (t) { - return t.next(e); - }); - }), - E = function (e) { - if ('object' == typeof e.data && null !== e.data && 'type' in e.data) { - n && !u && (u = n.contentWindow), - h || - (h = { - send: function (e) { - u.postMessage(e, r.origin); - }, - }); - var t = o(o({}, e.data), { client: h }); - b.send(t); - } - }; - window.addEventListener('message', E), - window.addEventListener('unload', function () { - b.send({ type: 'unload' }); - }); - var k = function (t) { - return f(t, null == e ? void 0 : e.serialize); - }; - return ( - c.onRegister(function (t) { - var n, - r = t.state || t.initialState; - if ( - (b.send({ - type: 'service.register', - machine: v(t.machine, null == e ? void 0 : e.serialize), - state: p(r, null == e ? void 0 : e.serialize), - sessionId: t.sessionId, - id: t.id, - parent: null === (n = t.parent) || void 0 === n ? void 0 : n.sessionId, - }), - b.send({ type: 'service.event', event: k(r._event), sessionId: t.sessionId }), - !y.has(t)) - ) { - y.add(t); - var o = t.send.bind(t); - t.send = function (e, n) { - return ( - b.send({ type: 'service.event', event: k((0, a.g5)((0, a._v)(e, n))), sessionId: t.sessionId }), - o(e, n) - ); - }; - } - t.subscribe(function (n) { - void 0 !== n && - b.send({ - type: 'service.state', - state: p(n, null == e ? void 0 : e.serialize), - sessionId: t.sessionId, - }); - }), - t.onStop(function () { - b.send({ type: 'service.stop', sessionId: t.sessionId }); - }); - }), - n - ? (n.addEventListener('load', function () { - u = n.contentWindow; - }), - n.setAttribute('src', String(r))) - : (u = window.open(String(r), 'xstateinspector')), - { - send: function (e) { - b.send(e); - }, - subscribe: function (e, t, n) { - var r = (0, a.zM)(e, t, n); - return ( - x.add(r), - r.next(b.state), - { - unsubscribe: function () { - x.delete(r); - }, - } - ); - }, - disconnect: function () { - b.send('disconnect'), window.removeEventListener('message', E), w.unsubscribe(); - }, - } - ); - } - console.warn( - 'No suitable element.', - ); - })({ url: 'https://stately.ai/viz?inspect', iframe: !1 }), - (window.externalApi = new (class ExternalApi { - get depGraphService() { - return this.projectGraphService; - } - constructor() { - (this._projectGraphService = pa()), - (this._graphIsReady = new Promise(e => { - this._projectGraphService.subscribe(t => { - t.matches('idle') || e(); - }); - })), - (this.router = Ns()), - (this.graphService = oo()), - (this.projectGraphService = { - send: e => { - this.handleLegacyProjectGraphEvent(e); - }, - }), - (this.fileClickCallbackListeners = []), - (this.openProjectConfigCallbackListeners = []), - (this.runTaskCallbackListeners = []), - this.graphService.listen(e => { - if ('FileLinkClick' === e.type) { - const t = `${e.sourceRoot}/${e.file}`; - this.fileClickCallbackListeners.forEach(e => e(t)); - } - 'ProjectOpenConfigClick' === e.type && - this.openProjectConfigCallbackListeners.forEach(t => t(e.projectName)), - 'RunTaskClick' === e.type && this.runTaskCallbackListeners.forEach(t => t(e.taskId)); - }); - } - focusProject(e) { - this.router.navigate(`/projects/${encodeURIComponent(e)}`); - } - selectAllProjects() { - this.router.navigate('/projects/all'); - } - enableExperimentalFeatures() { - localStorage.setItem('showExperimentalFeatures', 'true'), (window.appConfig.showExperimentalFeatures = !0); - } - disableExperimentalFeatures() { - localStorage.setItem('showExperimentalFeatures', 'false'), (window.appConfig.showExperimentalFeatures = !1); - } - registerFileClickCallback(e) { - this.fileClickCallbackListeners.push(e); - } - registerOpenProjectConfigCallback(e) { - this.openProjectConfigCallbackListeners.push(e); - } - registerRunTaskCallback(e) { - this.runTaskCallbackListeners.push(e); - } - handleLegacyProjectGraphEvent(e) { - switch (e.type) { - case 'focusProject': - this.focusProject(e.projectName); - break; - case 'selectAll': - this.selectAllProjects(); - break; - default: - this._graphIsReady.then(() => this._projectGraphService.send(e)); - } - } - })()); - const As = document.getElementById('app'); - window.appConfig - ? (0, ht.sY)(vt(r.StrictMode, { children: vt(Os, {}) }), As) - : (0, ht.sY)( - vt('p', { - children: [ - 'No environment could be found. Please run', - ' ', - vt('pre', { children: 'npx nx run graph-client:generate-dev-environment-js' }), - '.', - ], - }), - As, - ); - }, - 57228: (e, t, n) => { - 'use strict'; - n.r(t), n.d(t, { GraphService: () => GraphService }); - n(78062), n(3346), n(9883), n(71867); - var r = n(50413), - o = n.n(r), - i = n(46457), - a = n.n(i), - s = n(68420), - l = n.n(s); - n(75715), n(19658), n(29); - let c = (function (e) { - return ( - (e.blue_500 = 'hsla(217, 91%, 60%, 1)'), - (e.blue_600 = 'hsla(221, 83%, 53%, 1)'), - (e.sky_500 = 'hsla(199, 89%, 48%, 1)'), - (e.sky_600 = 'hsla(200, 98%, 39%, 1)'), - (e.pink_400 = 'hsla(329, 86%, 70%, 1)'), - (e.pink_500 = 'hsla(330, 81%, 60%, 1)'), - (e.fuchsia_500 = 'hsla(292, 84%, 61%, 1)'), - (e.fuchsia_600 = 'hsla(293, 69%, 49%, 1)'), - (e.fuchsia_700 = 'hsla(295, 72%, 40%, 1)'), - (e.fuchsia_800 = 'hsla(295, 70%, 33%, 1)'), - (e.slate_50 = 'hsla(210, 40%, 98%, 1)'), - (e.slate_100 = 'hsla(210, 40%, 96%, 1)'), - (e.slate_200 = 'hsla(214, 32%, 91%, 1)'), - (e.slate_300 = 'hsla(213, 27%, 84%, 1)'), - (e.slate_400 = 'hsla(213, 27%, 84%, 1)'), - (e.slate_500 = 'hsla(215, 16%, 47%, 1)'), - (e.slate_600 = 'hsla(215, 19%, 35%, 1)'), - (e.slate_700 = 'hsla(215, 25%, 27%, 1)'), - (e.slate_800 = 'hsla(217, 33%, 17%, 1)'), - (e.white = '#fff'), - e - ); - })({}); - const u = 'NX_GRAPH_DARK_MODE'; - function d(e, t, n) { - return (function (e) { - return !0 === e.scratch(u); - })(e) - ? t - : n; - } - const f = [ - { - selector: 'edge', - style: { - width: '1px', - 'line-color': e => d(e, c.slate_400, c.slate_500), - 'text-outline-color': e => d(e, c.slate_400, c.slate_500), - 'text-outline-width': '0px', - color: e => d(e, c.slate_400, c.slate_500), - 'curve-style': 'unbundled-bezier', - 'target-arrow-shape': 'triangle', - 'target-arrow-fill': 'filled', - 'target-arrow-color': e => d(e, c.slate_400, c.slate_500), - }, - }, - { - selector: 'edge.affected', - style: { - 'line-color': e => d(e, c.fuchsia_500, c.pink_500), - 'target-arrow-color': e => d(e, c.fuchsia_500, c.pink_500), - 'curve-style': 'unbundled-bezier', - }, - }, - { - selector: 'edge.implicit', - style: { - label: 'implicit', - 'font-size': '16px', - 'curve-style': 'unbundled-bezier', - 'text-rotation': 'autorotate', - }, - }, - { - selector: 'edge.dynamic', - style: { 'line-dash-pattern': [5, 5], 'line-style': 'dashed', 'curve-style': 'unbundled-bezier' }, - }, - { selector: 'edge.transparent', style: { opacity: 0.2 } }, - ]; - const h = new (class LabelWidthCalculator { - constructor() { - (this.cache = new Map()), (this.ctx = void 0); - } - calculateWidth(e) { - this.ctx || (this.ctx = document.createElement('canvas').getContext('2d')); - const t = e.data('id'), - n = e.style('font-style'), - r = e.style('font-size'), - o = e.style('font-family'), - i = e.style('font-weight'); - this.ctx.font = n + ' ' + i + ' ' + r + ' ' + o; - const a = this.cache.get(t); - if (a) return a; - { - const n = this.ctx.measureText(e.data('id')).width; - return this.cache.set(t, n), n; - } - } - })(), - p = [ - { - selector: 'node', - style: { - 'font-size': '32px', - 'font-family': 'system-ui, "Helvetica Neue", sans-serif', - backgroundColor: e => d(e, c.slate_600, c.slate_200), - 'border-style': 'solid', - 'border-color': e => d(e, c.slate_700, c.slate_300), - 'border-width': '1px', - 'text-halign': 'center', - 'text-valign': 'center', - 'padding-left': '16px', - color: e => d(e, c.slate_200, c.slate_600), - label: 'data(id)', - width: e => h.calculateWidth(e), - 'transition-property': 'background-color, border-color, line-color, target-arrow-color', - 'transition-duration': 250, - 'transition-timing-function': 'ease-out', - shape: 'round-rectangle', - }, - }, - { - selector: 'node.focused', - style: { - color: c.white, - 'border-color': e => d(e, c.slate_700, c.slate_200), - backgroundColor: e => d(e, c.sky_500, c.blue_500), - width: e => h.calculateWidth(e), - }, - }, - { - selector: 'node.affected', - style: { - color: c.white, - 'border-color': e => d(e, c.fuchsia_800, c.pink_500), - backgroundColor: e => d(e, c.fuchsia_700, c.pink_400), - }, - }, - { - selector: 'node.parentNode', - style: { - 'background-opacity': e => d(e, 0.5, 0.8), - backgroundColor: e => d(e, c.slate_700, c.slate_50), - 'border-color': e => d(e, c.slate_500, c.slate_400), - 'border-style': 'dashed', - 'border-width': 2, - label: 'data(label)', - 'text-halign': 'center', - 'text-valign': 'top', - 'font-weight': 'bold', - 'font-size': '48px', - }, - }, - { - selector: 'node.highlight', - style: { - color: c.white, - 'border-color': e => d(e, c.sky_600, c.blue_600), - backgroundColor: e => d(e, c.sky_500, c.blue_500), - }, - }, - { selector: 'node.transparent:childless', style: { opacity: 0.5 } }, - { - selector: 'node.transparent:parent', - style: { 'text-opacity': 0.5, 'background-opacity': 0.25, 'border-opacity': 0.5 }, - }, - { selector: 'node.taskNode', style: { label: 'data(label)' } }, - ], - v = { - name: 'dagre', - nodeDimensionsIncludeLabels: !0, - rankSep: 75, - rankDir: 'TB', - edgeSep: 50, - ranker: 'network-simplex', - }; - class RenderGraph { - constructor(e, t, n, r = 'TB') { - (this.container = e), - (this.renderMode = n), - (this.cy = void 0), - (this.collapseEdges = !1), - (this._theme = void 0), - (this._rankDir = 'TB'), - (this.listeners = new Map()), - (this._theme = t), - (this._rankDir = r); - } - set theme(e) { - (this._theme = e), this.render(); - } - set rankDir(e) { - (this._rankDir = e), this.render(); - } - get activeContainer() { - return 'string' == typeof this.container ? document.getElementById(this.container) : this.container; - } - broadcast(e) { - this.listeners.forEach(t => t(e)); - } - listen(e) { - const t = this.listeners.size + 1; - return ( - this.listeners.set(t, e), - () => { - this.listeners.delete(t); - } - ); - } - setElements(e) { - let t; - this.cy && ((t = this.cy.nodes('.focused').first().id()), this.cy.destroy(), delete this.cy), - (this.cy = o()({ - headless: null === this.activeContainer, - container: this.activeContainer, - boxSelectionEnabled: !1, - style: [...p, ...f], - panningEnabled: !0, - userZoomingEnabled: 'nx-docs' !== this.renderMode, - })), - this.cy.add(e), - t && this.cy.$id(t).addClass('focused'), - this.cy.on('zoom pan', () => { - this.broadcast({ type: 'GraphRegenerated' }); - }), - this.listenForProjectNodeClicks(), - this.listenForEdgeNodeClicks(), - this.listenForProjectNodeHovers(), - this.listenForTaskNodeClicks(), - this.listenForEmptyClicks(); - } - render() { - var e, t, n, r; - if (this.cy) { - const e = this.cy.elements().sort((e, t) => e.id().localeCompare(t.id())); - e.layout(Object.assign({}, v, { rankDir: this._rankDir })).run(), - this.collapseEdges && - (this.cy.remove(this.cy.edges()), - e.edges().forEach(e => { - const t = e.source(), - n = e.target(); - if (t.parent().first().id() === n.parent().first().id()) this.cy.add(e); - else { - let r, o; - const i = e.connectedNodes().commonAncestors(); - let a, s; - if ( - (i.length > 0 - ? ((r = t.ancestors().filter(e => !i.contains(e))), - (o = n.ancestors().filter(e => !i.contains(e)))) - : ((r = t.ancestors()), (o = n.ancestors())), - r.length > 0 && 0 === o.length - ? ((a = r.last().id()), (s = n.id())) - : o.length > 0 && 0 === r.length - ? ((a = t.id()), (s = o.last().id())) - : ((a = r.last().id()), (s = o.last().id())), - void 0 !== a && void 0 !== s) - ) { - const e = `${a}|${s}`; - if (0 === this.cy.$id(e).length) { - const t = { group: 'edges', data: { id: e, source: a, target: s } }; - this.cy.add(t); - } - } else - console.log(`Couldn't figure out how to draw edge ${e.id()}`), - console.log( - 'source ancestors', - r.map(e => e.id()), - ), - console.log( - 'target ancestors', - o.map(e => e.id()), - ); - } - })), - 'nx-console' === this.renderMode - ? this.cy.fit(this.cy.elements(), 175).center().resize().panBy({ x: 150, y: 0 }) - : this.cy.fit(this.cy.elements(), 25).center().resize(), - this.cy.scratch(u, 'dark' === this._theme), - this.cy.elements().scratch(u, 'dark' === this._theme), - this.cy.mount(this.activeContainer); - } - return { - numNodes: null != (e = null == (t = this.cy) ? void 0 : t.nodes().length) ? e : 0, - numEdges: null != (n = null == (r = this.cy) ? void 0 : r.edges().length) ? n : 0, - }; - } - listenForProjectNodeClicks() { - this.cy.$('node.projectNode').on('click', e => { - const t = e.target; - let n = t.popperRef(); - this.broadcast({ - type: 'ProjectNodeClick', - ref: n, - id: t.id(), - data: { id: t.id(), type: t.data('type'), tags: t.data('tags'), description: t.data('description') }, - }); - }); - } - listenForTaskNodeClicks() { - this.cy.$('node.taskNode').on('click', e => { - const t = e.target; - let n = t.popperRef(); - this.broadcast({ - type: 'TaskNodeClick', - ref: n, - id: t.id(), - data: { - id: t.id(), - label: t.data('label'), - executor: t.data('executor'), - description: t.data('description'), - }, - }); - }); - } - listenForEdgeNodeClicks() { - this.cy.$('edge.projectEdge').on('click', e => { - var t; - const n = e.target; - let r = n.popperRef(); - this.broadcast({ - type: 'EdgeClick', - ref: r, - id: n.id(), - data: { - id: n.id(), - type: n.data('type'), - source: n.source().id(), - target: n.target().id(), - sourceRoot: n.source().data('root'), - fileDependencies: - (null == (t = n.source().data('files')) - ? void 0 - : t - .filter(e => e.deps && e.deps.find(e => ('string' == typeof e ? e : e[0]) === n.target().id())) - .map(e => ({ - fileName: e.file.replace(`${n.source().data('root')}/`, ''), - target: n.target().id(), - }))) || [], - }, - }); - }); - } - listenForProjectNodeHovers() { - this.cy.on('mouseover', e => { - const t = e.target; - t.isNode && - t.isNode() && - !t.isParent() && - (this.cy.elements().difference(t.outgoers().union(t.incomers())).not(t).addClass('transparent'), - t.addClass('highlight').outgoers().union(t.incomers()).addClass('highlight')); - }), - this.cy.on('mouseout', e => { - const t = e.target; - t.isNode && - t.isNode() && - !t.isParent() && - (this.cy.elements().removeClass('transparent'), - t.removeClass('highlight').outgoers().union(t.incomers()).removeClass('highlight')); - }); - } - listenForEmptyClicks() { - this.cy.on('click', e => { - e.target === this.cy && this.broadcast({ type: 'BackgroundClick' }); - }); - } - getImage() { - const e = d(this.cy, '#0F172A', '#FFFFFF'); - return this.cy.png({ bg: e, full: !0 }); - } - setFocussedElement(e) { - this.cy.$id(e).addClass('focused'); - } - clearFocussedElement() { - var e; - null == (e = this.cy) || e.nodes('.focused').removeClass('focused'); - } - getCurrentlyShownProjectIds() { - var e, t; - return null != (e = null == (t = this.cy) ? void 0 : t.nodes().map(e => e.data('id'))) ? e : []; - } - } - n(94841), n(9944), n(47306); - class ProjectNode { - constructor(e, t, n) { - (this.fileMap = e), (this.project = t), (this.workspaceRoot = n), (this.affected = !1), (this.focused = !1); - } - getCytoscapeNodeDef(e) { - return { - group: 'nodes', - data: this.getData(e), - classes: this.getClasses(), - selectable: !1, - grabbable: !1, - pannable: !0, - }; - } - getData(e) { - return { - id: this.project.name, - type: this.project.type, - tags: this.project.data.tags, - parent: e && this.project.data.hasOwnProperty('root') ? this.getParentId() : null, - files: (this.fileMap || {})[this.project.data.name] || [], - root: this.project.data.root, - description: this.project.data.description, - }; - } - getClasses() { - let e = `projectNode ${this.project.type}`; - return this.affected && (e += ' affected'), e; - } - getParentId() { - const e = this.getAncestors(); - return e.length > 0 ? e[e.length - 1].id : null; - } - getAncestors() { - if (!this.project.data.root) return []; - return (function (e, t) { - const n = e - .replace(t, '') - .split('/') - .filter(e => '' !== e); - return n.pop(), n; - })(this.project.data.root, this.workspaceRoot).map((e, t, n) => { - const r = [...n].slice(0, t + 1).join('/'); - return { label: r, id: `dir-${r}`, parentId: t > 0 ? `dir-${[...n].slice(0, t).join('/')}` : null }; - }); - } - } - class ProjectEdge { - constructor(e) { - (this.dep = e), (this.affected = !1); - } - getCytoscapeNodeDef() { - var e; - let t; - return ( - (t = { - group: 'edges', - classes: 'projectEdge', - data: { - id: `${this.dep.source}|${this.dep.target}`, - source: this.dep.source, - target: this.dep.target, - type: this.dep.type, - }, - }), - (t.classes += null != (e = ` ${this.dep.type}`) ? e : ''), - this.affected && (t.classes += ' affected'), - t - ); - } - } - class ParentNode { - constructor(e) { - this.config = e; - } - getCytoscapeNodeDef() { - return { - group: 'nodes', - classes: 'parentNode', - data: { id: this.config.id, parent: this.config.parentId, label: this.config.label, type: 'dir' }, - selectable: !1, - grabbable: !1, - pannable: !0, - }; - } - } - class ProjectTraversalGraph { - constructor() { - this.cy = void 0; - } - setShownProjects(e) { - let t = this.cy.collection(); - e.forEach(e => { - t = t.union(this.cy.$id(e)); - }); - const n = t.ancestors(), - r = t.union(n), - o = r.edgesTo(r); - return r.union(o); - } - showProjects(e, t) { - let n = this.cy.collection(); - e.forEach(e => { - n = n.union(this.cy.$id(e)); - }), - t.forEach(e => { - n = n.union(this.cy.$id(e)); - }); - const r = n.ancestors(), - o = n.union(r), - i = o.edgesTo(o); - return o.union(i); - } - hideProjects(e, t) { - let n = this.cy.collection(); - t.forEach(e => { - n = n.union(this.cy.$id(e)); - }); - let r = this.cy.collection(); - e.forEach(e => { - r = r.union(this.cy.$id(e)); - }); - const o = n.difference(r).difference(r.ancestors()), - i = o.ancestors(); - let a = o.union(i); - const s = a.edgesTo(a); - return a.union(s); - } - showAffectedProjects() { - const e = this.cy.nodes('.affected'), - t = e.ancestors(), - n = e.union(t), - r = n.edgesTo(n); - return n.union(r); - } - focusProject(e, t = 1) { - const n = this.cy.$id(e), - r = this.includeProjectsByDepth(n, t), - o = n.union(r), - i = o.ancestors(), - a = o.union(i), - s = a.edgesTo(a); - return a.union(s); - } - showAllProjects() { - return this.cy.elements(); - } - hideAllProjects() { - return this.cy.collection(); - } - filterProjectsByText(e, t, n = -1) { - if ('' === e) return this.cy.collection(); - { - const r = e.split(','); - let o = this.cy.nodes().filter(e => r.findIndex(t => e.id().includes(t)) > -1); - t && (o = o.union(this.includeProjectsByDepth(o, n))), (o = o.union(o.ancestors())); - const i = o.edgesTo(o); - return o.union(i); - } - } - traceProjects(e, t) { - const n = this.cy - .elements() - .dijkstra({ root: `[id = "${e}"]`, directed: !0 }) - .pathTo(this.cy.$(`[id = "${t}"]`)); - return n.union(n.ancestors()); - } - traceAllProjects(e, t) { - const n = [[this.cy.$id(e).nodes().first()]], - r = []; - let o = 0; - for (; n.length > 0 && o <= 1e3; ) { - const e = n.pop(), - i = e[e.length - 1].outgoers('node'); - i.length > 0 && - i.forEach(o => { - const i = [...e, o]; - o.id() === t ? r.push(i) : n.push(i); - }), - o++; - } - o >= 1e3 && console.log('failsafe triggered!'); - let i = this.cy.collection(); - return ( - r.forEach(e => { - for (let t = 0; t < e.length; t++) { - i = i.union(e[t]); - const n = t + 1; - n < e.length && (i = i.union(e[t].edgesTo(e[n]))); - } - }), - i.union(i.ancestors()) - ); - } - includeProjectsByDepth(e, t = -1) { - let n, r; - if (-1 === t) n = e.predecessors(); - else { - n = e.incomers(); - for (let e = 1; e < t; e++) n = n.union(n.incomers()); - } - if (-1 === t) r = e.successors(); - else { - r = e.outgoers(); - for (let e = 1; e < t; e++) r = r.union(r.outgoers()); - } - return e.union(n).union(r); - } - initGraph(e, t, n, r, o, i, a) { - this.generateCytoscapeLayout(e, t, n, r, o, i); - } - generateCytoscapeLayout(e, t, n, r, i, a) { - const s = this.createElements(e, t, n, r, i, a); - this.cy = o()({ headless: !0, elements: [...s], boxSelectionEnabled: !1 }); - } - createElements(e, t, n, r, o, i) { - let a = []; - const s = t.map(e => e.name), - l = [], - c = [], - u = {}; - t.forEach(t => { - const a = 'app' === t.type || 'e2e' === t.type ? r.appsDir : r.libsDir, - d = new ProjectNode(e, t, a); - if ( - ((d.affected = i.includes(t.name)), - l.push(d), - o[t.name].forEach(e => { - if (s.includes(e.target)) { - const t = new ProjectEdge(e); - c.push(t); - } - }), - n) - ) { - d.getAncestors().forEach(e => (u[e.id] = e)); - } - }); - const d = l.map(e => e.getCytoscapeNodeDef(n)), - f = c.map(e => e.getCytoscapeNodeDef()); - if (((a = d.concat(f)), n)) { - a = Object.keys(u) - .map(e => new ParentNode(u[e]).getCytoscapeNodeDef()) - .concat(a); - } - return a; - } - } - class TaskNode { - constructor(e, t) { - (this.task = e), (this.project = t); - } - getCytoscapeNodeDef(e) { - return { - group: 'nodes', - classes: 'taskNode', - data: this.getData(e), - selectable: !1, - grabbable: !1, - pannable: !0, - }; - } - getData(e) { - const t = e ? this.task.id.split(':').slice(1).join(':') : this.task.id; - return { - id: this.task.id, - label: t, - executor: this.project.data.targets[this.task.target.target].executor, - parent: e ? this.task.target.project : null, - description: this.project.data.description, - }; - } - } - class TaskEdge { - constructor(e, t) { - (this.source = e), (this.target = t); - } - getCytoscapeNodeDef() { - let e; - return ( - (e = { - group: 'edges', - data: { id: `${this.source}|${this.target}`, source: this.source, target: this.target }, - }), - e - ); - } - } - class TaskTraversalGraph { - constructor() { - (this.projects = []), - (this.taskGraphs = {}), - (this.cy = void 0), - (this.groupByProject = !1), - (this.selectedTasks = new Set()); - } - setProjects(e, t) { - this.selectedTasks.clear(), (this.projects = e), (this.taskGraphs = t); - } - setGroupByProject(e) { - return ( - (this.groupByProject = e), - this.selectedTasks.size > 0 - ? this.createElements(Array.from(this.selectedTasks), e) - : (this.cy = o()({ headless: !0, elements: [] })), - this.cy.elements() - ); - } - setTasks(e) { - let t = !1; - this.selectedTasks.forEach(n => { - e.includes(n) || (this.selectedTasks.delete(n), (t = !0)); - }); - for (const n of e) this.selectedTasks.has(n) || (this.selectedTasks.add(n), (t = !0)); - return t && this.createElements(Array.from(this.selectedTasks), this.groupByProject), this.cy.elements(); - } - selectTask(e) { - return ( - e.forEach(e => { - this.selectedTasks.add(e); - }), - this.createElements(Array.from(this.selectedTasks), this.groupByProject), - this.cy.elements() - ); - } - deselectTask(e) { - return ( - e.forEach(e => { - this.selectedTasks.delete(e); - }), - this.createElements(Array.from(this.selectedTasks), this.groupByProject), - this.cy.elements() - ); - } - createElements(e, t) { - const n = []; - e.forEach(e => { - const r = this.taskGraphs[e]; - if (void 0 === r) throw new Error(`Could not find task graph for ${e}`); - const o = {}; - for (let i in r.tasks) { - const e = r.tasks[i], - a = this.projects.find(t => t.name === e.target.project); - if (void 0 === a) throw new Error(`Could not find project ${a.name}`); - n.push(new TaskNode(r.tasks[i], a)), t && (o[a.name] = { id: a.name, parentId: null, label: a.name }); - } - for (let t in o) n.push(new ParentNode(o[t])); - for (let t in r.dependencies) r.dependencies[t].forEach(e => n.push(new TaskEdge(t, e))); - }), - (this.cy = o()({ headless: !0, elements: n.map(e => e.getCytoscapeNodeDef(t)), boxSelectionEnabled: !1 })); - } - } - class GraphService { - constructor(e, t, n, o = 'TB') { - (this.renderMode = n), - (this.projectTraversalGraph = void 0), - (this.taskTraversalGraph = void 0), - (this.renderGraph = void 0), - (this.lastPerformanceReport = { numEdges: 0, numNodes: 0, renderTime: 0 }), - (this.listeners = new Map()), - (0, r.use)(a()), - (0, r.use)(l()), - (this.renderGraph = new RenderGraph(e, t, n, o)), - this.renderGraph.listen(e => this.broadcast(e)), - (this.projectTraversalGraph = new ProjectTraversalGraph()), - (this.taskTraversalGraph = new TaskTraversalGraph()); - } - set theme(e) { - this.renderGraph.theme = e; - } - set rankDir(e) { - this.renderGraph.rankDir = e; - } - listen(e) { - const t = this.listeners.size + 1; - return ( - this.listeners.set(t, e), - () => { - this.listeners.delete(t); - } - ); - } - broadcast(e) { - this.listeners.forEach(t => t(e)); - } - handleProjectEvent(e) { - const t = Date.now(); - let n; - switch (('notifyGraphUpdateGraph' !== e.type && this.renderGraph.clearFocussedElement(), e.type)) { - case 'notifyGraphInitGraph': - (this.renderGraph.collapseEdges = e.collapseEdges), - this.broadcast({ type: 'GraphRegenerated' }), - this.projectTraversalGraph.initGraph( - e.fileMap, - e.projects, - e.groupByFolder, - e.workspaceLayout, - e.dependencies, - e.affectedProjects, - e.collapseEdges, - ); - break; - case 'notifyGraphUpdateGraph': - (this.renderGraph.collapseEdges = e.collapseEdges), - this.broadcast({ type: 'GraphRegenerated' }), - this.projectTraversalGraph.initGraph( - e.fileMap, - e.projects, - e.groupByFolder, - e.workspaceLayout, - e.dependencies, - e.affectedProjects, - e.collapseEdges, - ), - (n = this.projectTraversalGraph.setShownProjects( - e.selectedProjects.length > 0 ? e.selectedProjects : this.renderGraph.getCurrentlyShownProjectIds(), - )); - break; - case 'notifyGraphFocusProject': - n = this.projectTraversalGraph.focusProject(e.projectName, e.searchDepth); - break; - case 'notifyGraphFilterProjectsByText': - n = this.projectTraversalGraph.filterProjectsByText(e.search, e.includeProjectsByPath, e.searchDepth); - break; - case 'notifyGraphShowProjects': - n = this.projectTraversalGraph.showProjects( - e.projectNames, - this.renderGraph.getCurrentlyShownProjectIds(), - ); - break; - case 'notifyGraphHideProjects': - n = this.projectTraversalGraph.hideProjects( - e.projectNames, - this.renderGraph.getCurrentlyShownProjectIds(), - ); - break; - case 'notifyGraphShowAllProjects': - n = this.projectTraversalGraph.showAllProjects(); - break; - case 'notifyGraphHideAllProjects': - n = this.projectTraversalGraph.hideAllProjects(); - break; - case 'notifyGraphShowAffectedProjects': - n = this.projectTraversalGraph.showAffectedProjects(); - break; - case 'notifyGraphTracing': - e.start && - e.end && - (n = - 'shortest' === e.algorithm - ? this.projectTraversalGraph.traceProjects(e.start, e.end) - : this.projectTraversalGraph.traceAllProjects(e.start, e.end)); - } - let r = [], - o = { numEdges: 0, numNodes: 0, renderTime: 0 }; - if (this.renderGraph) - if (n) { - var i; - this.renderGraph.setElements(n), - 'notifyGraphFocusProject' === e.type && this.renderGraph.setFocussedElement(e.projectName); - const { numEdges: a, numNodes: s } = this.renderGraph.render(); - r = (null != (i = n.nodes('[type!="dir"]')) ? i : []).map(e => e.id()); - o = { renderTime: Date.now() - t, numNodes: s, numEdges: a }; - } else { - const { numEdges: e, numNodes: n } = this.renderGraph.render(); - this.renderGraph.getCurrentlyShownProjectIds(); - o = { renderTime: Date.now() - t, numNodes: n, numEdges: e }; - } - return ( - (this.lastPerformanceReport = o), - this.broadcast({ type: 'GraphRegenerated' }), - { selectedProjectNames: r, perfReport: o } - ); - } - handleTaskEvent(e) { - const t = Date.now(); - let n; - switch ((this.broadcast({ type: 'GraphRegenerated' }), e.type)) { - case 'notifyTaskGraphSetProjects': - this.taskTraversalGraph.setProjects(e.projects, e.taskGraphs); - break; - case 'notifyTaskGraphSetTasks': - n = this.taskTraversalGraph.setTasks(e.taskIds); - break; - case 'notifyTaskGraphTasksSelected': - n = this.taskTraversalGraph.selectTask(e.taskIds); - break; - case 'notifyTaskGraphTasksDeselected': - n = this.taskTraversalGraph.deselectTask(e.taskIds); - break; - case 'setGroupByProject': - n = this.taskTraversalGraph.setGroupByProject(e.groupByProject); - } - let r = [], - o = { numEdges: 0, numNodes: 0, renderTime: 0 }; - if (this.renderGraph && n) { - var i; - this.renderGraph.setElements(n); - const { numEdges: e, numNodes: a } = this.renderGraph.render(); - r = (null != (i = n.nodes('[type!="dir"]')) ? i : []).map(e => e.id()); - o = { renderTime: Date.now() - t, numNodes: a, numEdges: e }; - } - return ( - (this.lastPerformanceReport = o), - this.broadcast({ type: 'GraphRegenerated' }), - { selectedProjectNames: r, perfReport: o } - ); - } - getImage() { - return this.renderGraph.getImage(); - } - } - }, - 1020: (e, t, n) => { - 'use strict'; - n.r(t), - n.d(t, { - afterMain: () => E, - afterRead: () => b, - afterWrite: () => S, - applyStyles: () => M, - arrow: () => Q, - auto: () => s, - basePlacements: () => l, - beforeMain: () => x, - beforeRead: () => m, - beforeWrite: () => k, - bottom: () => o, - clippingParents: () => d, - computeStyles: () => ne, - createPopper: () => Me, - createPopperBase: () => Ne, - createPopperLite: () => Oe, - detectOverflow: () => ye, - end: () => u, - eventListeners: () => oe, - flip: () => be, - hide: () => Ee, - left: () => a, - main: () => w, - modifierPhases: () => P, - offset: () => ke, - placements: () => g, - popper: () => h, - popperGenerator: () => De, - popperOffsets: () => _e, - preventOverflow: () => Se, - read: () => y, - reference: () => p, - right: () => i, - start: () => c, - top: () => r, - variationPlacements: () => v, - viewport: () => f, - write: () => _, - }); - var r = 'top', - o = 'bottom', - i = 'right', - a = 'left', - s = 'auto', - l = [r, o, i, a], - c = 'start', - u = 'end', - d = 'clippingParents', - f = 'viewport', - h = 'popper', - p = 'reference', - v = l.reduce(function (e, t) { - return e.concat([t + '-' + c, t + '-' + u]); - }, []), - g = [].concat(l, [s]).reduce(function (e, t) { - return e.concat([t, t + '-' + c, t + '-' + u]); - }, []), - m = 'beforeRead', - y = 'read', - b = 'afterRead', - x = 'beforeMain', - w = 'main', - E = 'afterMain', - k = 'beforeWrite', - _ = 'write', - S = 'afterWrite', - P = [m, y, b, x, w, E, k, _, S]; - function C(e) { - return e ? (e.nodeName || '').toLowerCase() : null; - } - function j(e) { - if (null == e) return window; - if ('[object Window]' !== e.toString()) { - var t = e.ownerDocument; - return (t && t.defaultView) || window; - } - return e; - } - function T(e) { - return e instanceof j(e).Element || e instanceof Element; - } - function D(e) { - return e instanceof j(e).HTMLElement || e instanceof HTMLElement; - } - function N(e) { - return 'undefined' != typeof ShadowRoot && (e instanceof j(e).ShadowRoot || e instanceof ShadowRoot); - } - const M = { - name: 'applyStyles', - enabled: !0, - phase: 'write', - fn: function (e) { - var t = e.state; - Object.keys(t.elements).forEach(function (e) { - var n = t.styles[e] || {}, - r = t.attributes[e] || {}, - o = t.elements[e]; - D(o) && - C(o) && - (Object.assign(o.style, n), - Object.keys(r).forEach(function (e) { - var t = r[e]; - !1 === t ? o.removeAttribute(e) : o.setAttribute(e, !0 === t ? '' : t); - })); - }); - }, - effect: function (e) { - var t = e.state, - n = { - popper: { position: t.options.strategy, left: '0', top: '0', margin: '0' }, - arrow: { position: 'absolute' }, - reference: {}, - }; - return ( - Object.assign(t.elements.popper.style, n.popper), - (t.styles = n), - t.elements.arrow && Object.assign(t.elements.arrow.style, n.arrow), - function () { - Object.keys(t.elements).forEach(function (e) { - var r = t.elements[e], - o = t.attributes[e] || {}, - i = Object.keys(t.styles.hasOwnProperty(e) ? t.styles[e] : n[e]).reduce(function (e, t) { - return (e[t] = ''), e; - }, {}); - D(r) && - C(r) && - (Object.assign(r.style, i), - Object.keys(o).forEach(function (e) { - r.removeAttribute(e); - })); - }); - } - ); - }, - requires: ['computeStyles'], - }; - function O(e) { - return e.split('-')[0]; - } - var A = Math.max, - R = Math.min, - L = Math.round; - function I() { - var e = navigator.userAgentData; - return null != e && e.brands - ? e.brands - .map(function (e) { - return e.brand + '/' + e.version; - }) - .join(' ') - : navigator.userAgent; - } - function B() { - return !/^((?!chrome|android).)*safari/i.test(I()); - } - function F(e, t, n) { - void 0 === t && (t = !1), void 0 === n && (n = !1); - var r = e.getBoundingClientRect(), - o = 1, - i = 1; - t && - D(e) && - ((o = (e.offsetWidth > 0 && L(r.width) / e.offsetWidth) || 1), - (i = (e.offsetHeight > 0 && L(r.height) / e.offsetHeight) || 1)); - var a = (T(e) ? j(e) : window).visualViewport, - s = !B() && n, - l = (r.left + (s && a ? a.offsetLeft : 0)) / o, - c = (r.top + (s && a ? a.offsetTop : 0)) / i, - u = r.width / o, - d = r.height / i; - return { width: u, height: d, top: c, right: l + u, bottom: c + d, left: l, x: l, y: c }; - } - function z(e) { - var t = F(e), - n = e.offsetWidth, - r = e.offsetHeight; - return ( - Math.abs(t.width - n) <= 1 && (n = t.width), - Math.abs(t.height - r) <= 1 && (r = t.height), - { x: e.offsetLeft, y: e.offsetTop, width: n, height: r } - ); - } - function V(e, t) { - var n = t.getRootNode && t.getRootNode(); - if (e.contains(t)) return !0; - if (n && N(n)) { - var r = t; - do { - if (r && e.isSameNode(r)) return !0; - r = r.parentNode || r.host; - } while (r); - } - return !1; - } - function G(e) { - return j(e).getComputedStyle(e); - } - function H(e) { - return ['table', 'td', 'th'].indexOf(C(e)) >= 0; - } - function W(e) { - return ((T(e) ? e.ownerDocument : e.document) || window.document).documentElement; - } - function U(e) { - return 'html' === C(e) ? e : e.assignedSlot || e.parentNode || (N(e) ? e.host : null) || W(e); - } - function q(e) { - return D(e) && 'fixed' !== G(e).position ? e.offsetParent : null; - } - function Y(e) { - for (var t = j(e), n = q(e); n && H(n) && 'static' === G(n).position; ) n = q(n); - return n && ('html' === C(n) || ('body' === C(n) && 'static' === G(n).position)) - ? t - : n || - (function (e) { - var t = /firefox/i.test(I()); - if (/Trident/i.test(I()) && D(e) && 'fixed' === G(e).position) return null; - var n = U(e); - for (N(n) && (n = n.host); D(n) && ['html', 'body'].indexOf(C(n)) < 0; ) { - var r = G(n); - if ( - 'none' !== r.transform || - 'none' !== r.perspective || - 'paint' === r.contain || - -1 !== ['transform', 'perspective'].indexOf(r.willChange) || - (t && 'filter' === r.willChange) || - (t && r.filter && 'none' !== r.filter) - ) - return n; - n = n.parentNode; - } - return null; - })(e) || - t; - } - function X(e) { - return ['top', 'bottom'].indexOf(e) >= 0 ? 'x' : 'y'; - } - function $(e, t, n) { - return A(e, R(t, n)); - } - function K(e) { - return Object.assign({}, { top: 0, right: 0, bottom: 0, left: 0 }, e); - } - function Z(e, t) { - return t.reduce(function (t, n) { - return (t[n] = e), t; - }, {}); - } - const Q = { - name: 'arrow', - enabled: !0, - phase: 'main', - fn: function (e) { - var t, - n = e.state, - s = e.name, - c = e.options, - u = n.elements.arrow, - d = n.modifiersData.popperOffsets, - f = O(n.placement), - h = X(f), - p = [a, i].indexOf(f) >= 0 ? 'height' : 'width'; - if (u && d) { - var v = (function (e, t) { - return K( - 'number' != - typeof (e = 'function' == typeof e ? e(Object.assign({}, t.rects, { placement: t.placement })) : e) - ? e - : Z(e, l), - ); - })(c.padding, n), - g = z(u), - m = 'y' === h ? r : a, - y = 'y' === h ? o : i, - b = n.rects.reference[p] + n.rects.reference[h] - d[h] - n.rects.popper[p], - x = d[h] - n.rects.reference[h], - w = Y(u), - E = w ? ('y' === h ? w.clientHeight || 0 : w.clientWidth || 0) : 0, - k = b / 2 - x / 2, - _ = v[m], - S = E - g[p] - v[y], - P = E / 2 - g[p] / 2 + k, - C = $(_, P, S), - j = h; - n.modifiersData[s] = (((t = {})[j] = C), (t.centerOffset = C - P), t); - } - }, - effect: function (e) { - var t = e.state, - n = e.options.element, - r = void 0 === n ? '[data-popper-arrow]' : n; - null != r && - ('string' != typeof r || (r = t.elements.popper.querySelector(r))) && - V(t.elements.popper, r) && - (t.elements.arrow = r); - }, - requires: ['popperOffsets'], - requiresIfExists: ['preventOverflow'], - }; - function J(e) { - return e.split('-')[1]; - } - var ee = { top: 'auto', right: 'auto', bottom: 'auto', left: 'auto' }; - function te(e) { - var t, - n = e.popper, - s = e.popperRect, - l = e.placement, - c = e.variation, - d = e.offsets, - f = e.position, - h = e.gpuAcceleration, - p = e.adaptive, - v = e.roundOffsets, - g = e.isFixed, - m = d.x, - y = void 0 === m ? 0 : m, - b = d.y, - x = void 0 === b ? 0 : b, - w = 'function' == typeof v ? v({ x: y, y: x }) : { x: y, y: x }; - (y = w.x), (x = w.y); - var E = d.hasOwnProperty('x'), - k = d.hasOwnProperty('y'), - _ = a, - S = r, - P = window; - if (p) { - var C = Y(n), - T = 'clientHeight', - D = 'clientWidth'; - if ( - (C === j(n) && - 'static' !== G((C = W(n))).position && - 'absolute' === f && - ((T = 'scrollHeight'), (D = 'scrollWidth')), - l === r || ((l === a || l === i) && c === u)) - ) - (S = o), - (x -= (g && C === P && P.visualViewport ? P.visualViewport.height : C[T]) - s.height), - (x *= h ? 1 : -1); - if (l === a || ((l === r || l === o) && c === u)) - (_ = i), - (y -= (g && C === P && P.visualViewport ? P.visualViewport.width : C[D]) - s.width), - (y *= h ? 1 : -1); - } - var N, - M = Object.assign({ position: f }, p && ee), - O = - !0 === v - ? (function (e) { - var t = e.x, - n = e.y, - r = window.devicePixelRatio || 1; - return { x: L(t * r) / r || 0, y: L(n * r) / r || 0 }; - })({ x: y, y: x }) - : { x: y, y: x }; - return ( - (y = O.x), - (x = O.y), - h - ? Object.assign( - {}, - M, - (((N = {})[S] = k ? '0' : ''), - (N[_] = E ? '0' : ''), - (N.transform = - (P.devicePixelRatio || 1) <= 1 - ? 'translate(' + y + 'px, ' + x + 'px)' - : 'translate3d(' + y + 'px, ' + x + 'px, 0)'), - N), - ) - : Object.assign( - {}, - M, - (((t = {})[S] = k ? x + 'px' : ''), (t[_] = E ? y + 'px' : ''), (t.transform = ''), t), - ) - ); - } - const ne = { - name: 'computeStyles', - enabled: !0, - phase: 'beforeWrite', - fn: function (e) { - var t = e.state, - n = e.options, - r = n.gpuAcceleration, - o = void 0 === r || r, - i = n.adaptive, - a = void 0 === i || i, - s = n.roundOffsets, - l = void 0 === s || s, - c = { - placement: O(t.placement), - variation: J(t.placement), - popper: t.elements.popper, - popperRect: t.rects.popper, - gpuAcceleration: o, - isFixed: 'fixed' === t.options.strategy, - }; - null != t.modifiersData.popperOffsets && - (t.styles.popper = Object.assign( - {}, - t.styles.popper, - te( - Object.assign({}, c, { - offsets: t.modifiersData.popperOffsets, - position: t.options.strategy, - adaptive: a, - roundOffsets: l, - }), - ), - )), - null != t.modifiersData.arrow && - (t.styles.arrow = Object.assign( - {}, - t.styles.arrow, - te( - Object.assign({}, c, { - offsets: t.modifiersData.arrow, - position: 'absolute', - adaptive: !1, - roundOffsets: l, - }), - ), - )), - (t.attributes.popper = Object.assign({}, t.attributes.popper, { 'data-popper-placement': t.placement })); - }, - data: {}, - }; - var re = { passive: !0 }; - const oe = { - name: 'eventListeners', - enabled: !0, - phase: 'write', - fn: function () {}, - effect: function (e) { - var t = e.state, - n = e.instance, - r = e.options, - o = r.scroll, - i = void 0 === o || o, - a = r.resize, - s = void 0 === a || a, - l = j(t.elements.popper), - c = [].concat(t.scrollParents.reference, t.scrollParents.popper); - return ( - i && - c.forEach(function (e) { - e.addEventListener('scroll', n.update, re); - }), - s && l.addEventListener('resize', n.update, re), - function () { - i && - c.forEach(function (e) { - e.removeEventListener('scroll', n.update, re); - }), - s && l.removeEventListener('resize', n.update, re); - } - ); - }, - data: {}, - }; - var ie = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' }; - function ae(e) { - return e.replace(/left|right|bottom|top/g, function (e) { - return ie[e]; - }); - } - var se = { start: 'end', end: 'start' }; - function le(e) { - return e.replace(/start|end/g, function (e) { - return se[e]; - }); - } - function ce(e) { - var t = j(e); - return { scrollLeft: t.pageXOffset, scrollTop: t.pageYOffset }; - } - function ue(e) { - return F(W(e)).left + ce(e).scrollLeft; - } - function de(e) { - var t = G(e), - n = t.overflow, - r = t.overflowX, - o = t.overflowY; - return /auto|scroll|overlay|hidden/.test(n + o + r); - } - function fe(e) { - return ['html', 'body', '#document'].indexOf(C(e)) >= 0 ? e.ownerDocument.body : D(e) && de(e) ? e : fe(U(e)); - } - function he(e, t) { - var n; - void 0 === t && (t = []); - var r = fe(e), - o = r === (null == (n = e.ownerDocument) ? void 0 : n.body), - i = j(r), - a = o ? [i].concat(i.visualViewport || [], de(r) ? r : []) : r, - s = t.concat(a); - return o ? s : s.concat(he(U(a))); - } - function pe(e) { - return Object.assign({}, e, { left: e.x, top: e.y, right: e.x + e.width, bottom: e.y + e.height }); - } - function ve(e, t, n) { - return t === f - ? pe( - (function (e, t) { - var n = j(e), - r = W(e), - o = n.visualViewport, - i = r.clientWidth, - a = r.clientHeight, - s = 0, - l = 0; - if (o) { - (i = o.width), (a = o.height); - var c = B(); - (c || (!c && 'fixed' === t)) && ((s = o.offsetLeft), (l = o.offsetTop)); - } - return { width: i, height: a, x: s + ue(e), y: l }; - })(e, n), - ) - : T(t) - ? (function (e, t) { - var n = F(e, !1, 'fixed' === t); - return ( - (n.top = n.top + e.clientTop), - (n.left = n.left + e.clientLeft), - (n.bottom = n.top + e.clientHeight), - (n.right = n.left + e.clientWidth), - (n.width = e.clientWidth), - (n.height = e.clientHeight), - (n.x = n.left), - (n.y = n.top), - n - ); - })(t, n) - : pe( - (function (e) { - var t, - n = W(e), - r = ce(e), - o = null == (t = e.ownerDocument) ? void 0 : t.body, - i = A(n.scrollWidth, n.clientWidth, o ? o.scrollWidth : 0, o ? o.clientWidth : 0), - a = A(n.scrollHeight, n.clientHeight, o ? o.scrollHeight : 0, o ? o.clientHeight : 0), - s = -r.scrollLeft + ue(e), - l = -r.scrollTop; - return ( - 'rtl' === G(o || n).direction && (s += A(n.clientWidth, o ? o.clientWidth : 0) - i), - { width: i, height: a, x: s, y: l } - ); - })(W(e)), - ); - } - function ge(e, t, n, r) { - var o = - 'clippingParents' === t - ? (function (e) { - var t = he(U(e)), - n = ['absolute', 'fixed'].indexOf(G(e).position) >= 0 && D(e) ? Y(e) : e; - return T(n) - ? t.filter(function (e) { - return T(e) && V(e, n) && 'body' !== C(e); - }) - : []; - })(e) - : [].concat(t), - i = [].concat(o, [n]), - a = i[0], - s = i.reduce(function (t, n) { - var o = ve(e, n, r); - return ( - (t.top = A(o.top, t.top)), - (t.right = R(o.right, t.right)), - (t.bottom = R(o.bottom, t.bottom)), - (t.left = A(o.left, t.left)), - t - ); - }, ve(e, a, r)); - return (s.width = s.right - s.left), (s.height = s.bottom - s.top), (s.x = s.left), (s.y = s.top), s; - } - function me(e) { - var t, - n = e.reference, - s = e.element, - l = e.placement, - d = l ? O(l) : null, - f = l ? J(l) : null, - h = n.x + n.width / 2 - s.width / 2, - p = n.y + n.height / 2 - s.height / 2; - switch (d) { - case r: - t = { x: h, y: n.y - s.height }; - break; - case o: - t = { x: h, y: n.y + n.height }; - break; - case i: - t = { x: n.x + n.width, y: p }; - break; - case a: - t = { x: n.x - s.width, y: p }; - break; - default: - t = { x: n.x, y: n.y }; - } - var v = d ? X(d) : null; - if (null != v) { - var g = 'y' === v ? 'height' : 'width'; - switch (f) { - case c: - t[v] = t[v] - (n[g] / 2 - s[g] / 2); - break; - case u: - t[v] = t[v] + (n[g] / 2 - s[g] / 2); - } - } - return t; - } - function ye(e, t) { - void 0 === t && (t = {}); - var n = t, - a = n.placement, - s = void 0 === a ? e.placement : a, - c = n.strategy, - u = void 0 === c ? e.strategy : c, - v = n.boundary, - g = void 0 === v ? d : v, - m = n.rootBoundary, - y = void 0 === m ? f : m, - b = n.elementContext, - x = void 0 === b ? h : b, - w = n.altBoundary, - E = void 0 !== w && w, - k = n.padding, - _ = void 0 === k ? 0 : k, - S = K('number' != typeof _ ? _ : Z(_, l)), - P = x === h ? p : h, - C = e.rects.popper, - j = e.elements[E ? P : x], - D = ge(T(j) ? j : j.contextElement || W(e.elements.popper), g, y, u), - N = F(e.elements.reference), - M = me({ reference: N, element: C, strategy: 'absolute', placement: s }), - O = pe(Object.assign({}, C, M)), - A = x === h ? O : N, - R = { - top: D.top - A.top + S.top, - bottom: A.bottom - D.bottom + S.bottom, - left: D.left - A.left + S.left, - right: A.right - D.right + S.right, - }, - L = e.modifiersData.offset; - if (x === h && L) { - var I = L[s]; - Object.keys(R).forEach(function (e) { - var t = [i, o].indexOf(e) >= 0 ? 1 : -1, - n = [r, o].indexOf(e) >= 0 ? 'y' : 'x'; - R[e] += I[n] * t; - }); - } - return R; - } - const be = { - name: 'flip', - enabled: !0, - phase: 'main', - fn: function (e) { - var t = e.state, - n = e.options, - u = e.name; - if (!t.modifiersData[u]._skip) { - for ( - var d = n.mainAxis, - f = void 0 === d || d, - h = n.altAxis, - p = void 0 === h || h, - m = n.fallbackPlacements, - y = n.padding, - b = n.boundary, - x = n.rootBoundary, - w = n.altBoundary, - E = n.flipVariations, - k = void 0 === E || E, - _ = n.allowedAutoPlacements, - S = t.options.placement, - P = O(S), - C = - m || - (P === S || !k - ? [ae(S)] - : (function (e) { - if (O(e) === s) return []; - var t = ae(e); - return [le(e), t, le(t)]; - })(S)), - j = [S].concat(C).reduce(function (e, n) { - return e.concat( - O(n) === s - ? (function (e, t) { - void 0 === t && (t = {}); - var n = t, - r = n.placement, - o = n.boundary, - i = n.rootBoundary, - a = n.padding, - s = n.flipVariations, - c = n.allowedAutoPlacements, - u = void 0 === c ? g : c, - d = J(r), - f = d - ? s - ? v - : v.filter(function (e) { - return J(e) === d; - }) - : l, - h = f.filter(function (e) { - return u.indexOf(e) >= 0; - }); - 0 === h.length && (h = f); - var p = h.reduce(function (t, n) { - return (t[n] = ye(e, { placement: n, boundary: o, rootBoundary: i, padding: a })[O(n)]), t; - }, {}); - return Object.keys(p).sort(function (e, t) { - return p[e] - p[t]; - }); - })(t, { - placement: n, - boundary: b, - rootBoundary: x, - padding: y, - flipVariations: k, - allowedAutoPlacements: _, - }) - : n, - ); - }, []), - T = t.rects.reference, - D = t.rects.popper, - N = new Map(), - M = !0, - A = j[0], - R = 0; - R < j.length; - R++ - ) { - var L = j[R], - I = O(L), - B = J(L) === c, - F = [r, o].indexOf(I) >= 0, - z = F ? 'width' : 'height', - V = ye(t, { placement: L, boundary: b, rootBoundary: x, altBoundary: w, padding: y }), - G = F ? (B ? i : a) : B ? o : r; - T[z] > D[z] && (G = ae(G)); - var H = ae(G), - W = []; - if ( - (f && W.push(V[I] <= 0), - p && W.push(V[G] <= 0, V[H] <= 0), - W.every(function (e) { - return e; - })) - ) { - (A = L), (M = !1); - break; - } - N.set(L, W); - } - if (M) - for ( - var U = function (e) { - var t = j.find(function (t) { - var n = N.get(t); - if (n) - return n.slice(0, e).every(function (e) { - return e; - }); - }); - if (t) return (A = t), 'break'; - }, - q = k ? 3 : 1; - q > 0; - q-- - ) { - if ('break' === U(q)) break; - } - t.placement !== A && ((t.modifiersData[u]._skip = !0), (t.placement = A), (t.reset = !0)); - } - }, - requiresIfExists: ['offset'], - data: { _skip: !1 }, - }; - function xe(e, t, n) { - return ( - void 0 === n && (n = { x: 0, y: 0 }), - { - top: e.top - t.height - n.y, - right: e.right - t.width + n.x, - bottom: e.bottom - t.height + n.y, - left: e.left - t.width - n.x, - } - ); - } - function we(e) { - return [r, i, o, a].some(function (t) { - return e[t] >= 0; - }); - } - const Ee = { - name: 'hide', - enabled: !0, - phase: 'main', - requiresIfExists: ['preventOverflow'], - fn: function (e) { - var t = e.state, - n = e.name, - r = t.rects.reference, - o = t.rects.popper, - i = t.modifiersData.preventOverflow, - a = ye(t, { elementContext: 'reference' }), - s = ye(t, { altBoundary: !0 }), - l = xe(a, r), - c = xe(s, o, i), - u = we(l), - d = we(c); - (t.modifiersData[n] = { - referenceClippingOffsets: l, - popperEscapeOffsets: c, - isReferenceHidden: u, - hasPopperEscaped: d, - }), - (t.attributes.popper = Object.assign({}, t.attributes.popper, { - 'data-popper-reference-hidden': u, - 'data-popper-escaped': d, - })); - }, - }; - const ke = { - name: 'offset', - enabled: !0, - phase: 'main', - requires: ['popperOffsets'], - fn: function (e) { - var t = e.state, - n = e.options, - o = e.name, - s = n.offset, - l = void 0 === s ? [0, 0] : s, - c = g.reduce(function (e, n) { - return ( - (e[n] = (function (e, t, n) { - var o = O(e), - s = [a, r].indexOf(o) >= 0 ? -1 : 1, - l = 'function' == typeof n ? n(Object.assign({}, t, { placement: e })) : n, - c = l[0], - u = l[1]; - return (c = c || 0), (u = (u || 0) * s), [a, i].indexOf(o) >= 0 ? { x: u, y: c } : { x: c, y: u }; - })(n, t.rects, l)), - e - ); - }, {}), - u = c[t.placement], - d = u.x, - f = u.y; - null != t.modifiersData.popperOffsets && - ((t.modifiersData.popperOffsets.x += d), (t.modifiersData.popperOffsets.y += f)), - (t.modifiersData[o] = c); - }, - }; - const _e = { - name: 'popperOffsets', - enabled: !0, - phase: 'read', - fn: function (e) { - var t = e.state, - n = e.name; - t.modifiersData[n] = me({ - reference: t.rects.reference, - element: t.rects.popper, - strategy: 'absolute', - placement: t.placement, - }); - }, - data: {}, - }; - const Se = { - name: 'preventOverflow', - enabled: !0, - phase: 'main', - fn: function (e) { - var t = e.state, - n = e.options, - s = e.name, - l = n.mainAxis, - u = void 0 === l || l, - d = n.altAxis, - f = void 0 !== d && d, - h = n.boundary, - p = n.rootBoundary, - v = n.altBoundary, - g = n.padding, - m = n.tether, - y = void 0 === m || m, - b = n.tetherOffset, - x = void 0 === b ? 0 : b, - w = ye(t, { boundary: h, rootBoundary: p, padding: g, altBoundary: v }), - E = O(t.placement), - k = J(t.placement), - _ = !k, - S = X(E), - P = 'x' === S ? 'y' : 'x', - C = t.modifiersData.popperOffsets, - j = t.rects.reference, - T = t.rects.popper, - D = 'function' == typeof x ? x(Object.assign({}, t.rects, { placement: t.placement })) : x, - N = 'number' == typeof D ? { mainAxis: D, altAxis: D } : Object.assign({ mainAxis: 0, altAxis: 0 }, D), - M = t.modifiersData.offset ? t.modifiersData.offset[t.placement] : null, - L = { x: 0, y: 0 }; - if (C) { - if (u) { - var I, - B = 'y' === S ? r : a, - F = 'y' === S ? o : i, - V = 'y' === S ? 'height' : 'width', - G = C[S], - H = G + w[B], - W = G - w[F], - U = y ? -T[V] / 2 : 0, - q = k === c ? j[V] : T[V], - K = k === c ? -T[V] : -j[V], - Z = t.elements.arrow, - Q = y && Z ? z(Z) : { width: 0, height: 0 }, - ee = t.modifiersData['arrow#persistent'] - ? t.modifiersData['arrow#persistent'].padding - : { top: 0, right: 0, bottom: 0, left: 0 }, - te = ee[B], - ne = ee[F], - re = $(0, j[V], Q[V]), - oe = _ ? j[V] / 2 - U - re - te - N.mainAxis : q - re - te - N.mainAxis, - ie = _ ? -j[V] / 2 + U + re + ne + N.mainAxis : K + re + ne + N.mainAxis, - ae = t.elements.arrow && Y(t.elements.arrow), - se = ae ? ('y' === S ? ae.clientTop || 0 : ae.clientLeft || 0) : 0, - le = null != (I = null == M ? void 0 : M[S]) ? I : 0, - ce = G + ie - le, - ue = $(y ? R(H, G + oe - le - se) : H, G, y ? A(W, ce) : W); - (C[S] = ue), (L[S] = ue - G); - } - if (f) { - var de, - fe = 'x' === S ? r : a, - he = 'x' === S ? o : i, - pe = C[P], - ve = 'y' === P ? 'height' : 'width', - ge = pe + w[fe], - me = pe - w[he], - be = -1 !== [r, a].indexOf(E), - xe = null != (de = null == M ? void 0 : M[P]) ? de : 0, - we = be ? ge : pe - j[ve] - T[ve] - xe + N.altAxis, - Ee = be ? pe + j[ve] + T[ve] - xe - N.altAxis : me, - ke = - y && be - ? (function (e, t, n) { - var r = $(e, t, n); - return r > n ? n : r; - })(we, pe, Ee) - : $(y ? we : ge, pe, y ? Ee : me); - (C[P] = ke), (L[P] = ke - pe); - } - t.modifiersData[s] = L; - } - }, - requiresIfExists: ['offset'], - }; - function Pe(e, t, n) { - void 0 === n && (n = !1); - var r, - o, - i = D(t), - a = - D(t) && - (function (e) { - var t = e.getBoundingClientRect(), - n = L(t.width) / e.offsetWidth || 1, - r = L(t.height) / e.offsetHeight || 1; - return 1 !== n || 1 !== r; - })(t), - s = W(t), - l = F(e, a, n), - c = { scrollLeft: 0, scrollTop: 0 }, - u = { x: 0, y: 0 }; - return ( - (i || (!i && !n)) && - (('body' !== C(t) || de(s)) && - (c = (r = t) !== j(r) && D(r) ? { scrollLeft: (o = r).scrollLeft, scrollTop: o.scrollTop } : ce(r)), - D(t) ? (((u = F(t, !0)).x += t.clientLeft), (u.y += t.clientTop)) : s && (u.x = ue(s))), - { x: l.left + c.scrollLeft - u.x, y: l.top + c.scrollTop - u.y, width: l.width, height: l.height } - ); - } - function Ce(e) { - var t = new Map(), - n = new Set(), - r = []; - function o(e) { - n.add(e.name), - [].concat(e.requires || [], e.requiresIfExists || []).forEach(function (e) { - if (!n.has(e)) { - var r = t.get(e); - r && o(r); - } - }), - r.push(e); - } - return ( - e.forEach(function (e) { - t.set(e.name, e); - }), - e.forEach(function (e) { - n.has(e.name) || o(e); - }), - r - ); - } - var je = { placement: 'bottom', modifiers: [], strategy: 'absolute' }; - function Te() { - for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++) t[n] = arguments[n]; - return !t.some(function (e) { - return !(e && 'function' == typeof e.getBoundingClientRect); - }); - } - function De(e) { - void 0 === e && (e = {}); - var t = e, - n = t.defaultModifiers, - r = void 0 === n ? [] : n, - o = t.defaultOptions, - i = void 0 === o ? je : o; - return function (e, t, n) { - void 0 === n && (n = i); - var o, - a, - s = { - placement: 'bottom', - orderedModifiers: [], - options: Object.assign({}, je, i), - modifiersData: {}, - elements: { reference: e, popper: t }, - attributes: {}, - styles: {}, - }, - l = [], - c = !1, - u = { - state: s, - setOptions: function (n) { - var o = 'function' == typeof n ? n(s.options) : n; - d(), - (s.options = Object.assign({}, i, s.options, o)), - (s.scrollParents = { - reference: T(e) ? he(e) : e.contextElement ? he(e.contextElement) : [], - popper: he(t), - }); - var a = (function (e) { - var t = Ce(e); - return P.reduce(function (e, n) { - return e.concat( - t.filter(function (e) { - return e.phase === n; - }), - ); - }, []); - })( - (function (e) { - var t = e.reduce(function (e, t) { - var n = e[t.name]; - return ( - (e[t.name] = n - ? Object.assign({}, n, t, { - options: Object.assign({}, n.options, t.options), - data: Object.assign({}, n.data, t.data), - }) - : t), - e - ); - }, {}); - return Object.keys(t).map(function (e) { - return t[e]; - }); - })([].concat(r, s.options.modifiers)), - ); - return ( - (s.orderedModifiers = a.filter(function (e) { - return e.enabled; - })), - s.orderedModifiers.forEach(function (e) { - var t = e.name, - n = e.options, - r = void 0 === n ? {} : n, - o = e.effect; - if ('function' == typeof o) { - var i = o({ state: s, name: t, instance: u, options: r }), - a = function () {}; - l.push(i || a); - } - }), - u.update() - ); - }, - forceUpdate: function () { - if (!c) { - var e = s.elements, - t = e.reference, - n = e.popper; - if (Te(t, n)) { - (s.rects = { reference: Pe(t, Y(n), 'fixed' === s.options.strategy), popper: z(n) }), - (s.reset = !1), - (s.placement = s.options.placement), - s.orderedModifiers.forEach(function (e) { - return (s.modifiersData[e.name] = Object.assign({}, e.data)); - }); - for (var r = 0; r < s.orderedModifiers.length; r++) - if (!0 !== s.reset) { - var o = s.orderedModifiers[r], - i = o.fn, - a = o.options, - l = void 0 === a ? {} : a, - d = o.name; - 'function' == typeof i && (s = i({ state: s, options: l, name: d, instance: u }) || s); - } else (s.reset = !1), (r = -1); - } - } - }, - update: - ((o = function () { - return new Promise(function (e) { - u.forceUpdate(), e(s); - }); - }), - function () { - return ( - a || - (a = new Promise(function (e) { - Promise.resolve().then(function () { - (a = void 0), e(o()); - }); - })), - a - ); - }), - destroy: function () { - d(), (c = !0); - }, - }; - if (!Te(e, t)) return u; - function d() { - l.forEach(function (e) { - return e(); - }), - (l = []); - } - return ( - u.setOptions(n).then(function (e) { - !c && n.onFirstUpdate && n.onFirstUpdate(e); - }), - u - ); - }; - } - var Ne = De(), - Me = De({ defaultModifiers: [oe, _e, ne, M, ke, be, Se, Q, Ee] }), - Oe = De({ defaultModifiers: [oe, _e, ne, M] }); - }, - 53536: (e, t, n) => { - 'use strict'; - t.f0 = void 0; - var r = n(92185), - o = n(77667); - function i(e) { - return (0, r.assign)(function (t, n, r) { - return (0, o.produce)(t, function (t) { - e(t, n, r); - }); - }); - } - t.f0 = i; - }, - 87608: (e, t) => { - var n; - !(function () { - 'use strict'; - var r = {}.hasOwnProperty; - function o() { - for (var e = [], t = 0; t < arguments.length; t++) { - var n = arguments[t]; - if (n) { - var i = typeof n; - if ('string' === i || 'number' === i) e.push(n); - else if (Array.isArray(n)) { - if (n.length) { - var a = o.apply(null, n); - a && e.push(a); - } - } else if ('object' === i) { - if (n.toString !== Object.prototype.toString && !n.toString.toString().includes('[native code]')) { - e.push(n.toString()); - continue; - } - for (var s in n) r.call(n, s) && n[s] && e.push(s); - } - } - } - return e.join(' '); - } - e.exports - ? ((o.default = o), (e.exports = o)) - : void 0 === - (n = function () { - return o; - }.apply(t, [])) || (e.exports = n); - })(); - }, - 70481: (e, t, n) => { - var r = n(88807), - o = n(48427), - i = TypeError; - e.exports = function (e) { - if (r(e)) return e; - throw i(o(e) + ' is not a function'); - }; - }, - 12420: (e, t, n) => { - var r = n(41758), - o = n(48427), - i = TypeError; - e.exports = function (e) { - if (r(e)) return e; - throw i(o(e) + ' is not a constructor'); - }; - }, - 5946: (e, t, n) => { - var r = n(88807), - o = String, - i = TypeError; - e.exports = function (e) { - if ('object' == typeof e || r(e)) return e; - throw i("Can't set " + o(e) + ' as a prototype'); - }; - }, - 63288: (e, t, n) => { - var r = n(96982), - o = n(56042), - i = n(90189).f, - a = r('unscopables'), - s = Array.prototype; - null == s[a] && i(s, a, { configurable: !0, value: o(null) }), - (e.exports = function (e) { - s[a][e] = !0; - }); - }, - 95158: (e, t, n) => { - 'use strict'; - var r = n(33100).charAt; - e.exports = function (e, t, n) { - return t + (n ? r(e, t).length : 1); - }; - }, - 65712: (e, t, n) => { - var r = n(13521), - o = TypeError; - e.exports = function (e, t) { - if (r(t, e)) return e; - throw o('Incorrect invocation'); - }; - }, - 71843: (e, t, n) => { - var r = n(21188), - o = String, - i = TypeError; - e.exports = function (e) { - if (r(e)) return e; - throw i(o(e) + ' is not an object'); - }; - }, - 17222: (e, t, n) => { - var r = n(30529), - o = n(90069), - i = n(40406), - a = function (e) { - return function (t, n, a) { - var s, - l = r(t), - c = i(l), - u = o(a, c); - if (e && n != n) { - for (; c > u; ) if ((s = l[u++]) != s) return !0; - } else for (; c > u; u++) if ((e || u in l) && l[u] === n) return e || u || 0; - return !e && -1; - }; - }; - e.exports = { includes: a(!0), indexOf: a(!1) }; - }, - 4789: (e, t, n) => { - 'use strict'; - var r = n(82229); - e.exports = function (e, t) { - var n = [][e]; - return ( - !!n && - r(function () { - n.call( - null, - t || - function () { - return 1; - }, - 1, - ); - }) - ); - }; - }, - 89625: (e, t, n) => { - var r = n(90069), - o = n(40406), - i = n(82519), - a = Array, - s = Math.max; - e.exports = function (e, t, n) { - for (var l = o(e), c = r(t, l), u = r(void 0 === n ? l : n, l), d = a(s(u - c, 0)), f = 0; c < u; c++, f++) - i(d, f, e[c]); - return (d.length = f), d; - }; - }, - 96784: (e, t, n) => { - var r = n(41765); - e.exports = r([].slice); - }, - 42771: (e, t, n) => { - var r = n(89625), - o = Math.floor, - i = function (e, t) { - var n = e.length, - l = o(n / 2); - return n < 8 ? a(e, t) : s(e, i(r(e, 0, l), t), i(r(e, l), t), t); - }, - a = function (e, t) { - for (var n, r, o = e.length, i = 1; i < o; ) { - for (r = i, n = e[i]; r && t(e[r - 1], n) > 0; ) e[r] = e[--r]; - r !== i++ && (e[r] = n); - } - return e; - }, - s = function (e, t, n, r) { - for (var o = t.length, i = n.length, a = 0, s = 0; a < o || s < i; ) - e[a + s] = a < o && s < i ? (r(t[a], n[s]) <= 0 ? t[a++] : n[s++]) : a < o ? t[a++] : n[s++]; - return e; - }; - e.exports = i; - }, - 3800: (e, t, n) => { - var r = n(96982)('iterator'), - o = !1; - try { - var i = 0, - a = { - next: function () { - return { done: !!i++ }; - }, - return: function () { - o = !0; - }, - }; - (a[r] = function () { - return this; - }), - Array.from(a, function () { - throw 2; - }); - } catch (s) {} - e.exports = function (e, t) { - if (!t && !o) return !1; - var n = !1; - try { - var i = {}; - (i[r] = function () { - return { - next: function () { - return { done: (n = !0) }; - }, - }; - }), - e(i); - } catch (s) {} - return n; - }; - }, - 29682: (e, t, n) => { - var r = n(24126), - o = r({}.toString), - i = r(''.slice); - e.exports = function (e) { - return i(o(e), 8, -1); - }; - }, - 765: (e, t, n) => { - var r = n(50089), - o = n(88807), - i = n(29682), - a = n(96982)('toStringTag'), - s = Object, - l = - 'Arguments' == - i( - (function () { - return arguments; - })(), - ); - e.exports = r - ? i - : function (e) { - var t, n, r; - return void 0 === e - ? 'Undefined' - : null === e - ? 'Null' - : 'string' == - typeof (n = (function (e, t) { - try { - return e[t]; - } catch (n) {} - })((t = s(e)), a)) - ? n - : l - ? i(t) - : 'Object' == (r = i(t)) && o(t.callee) - ? 'Arguments' - : r; - }; - }, - 12283: (e, t, n) => { - var r = n(91854), - o = n(72929), - i = n(68098), - a = n(90189); - e.exports = function (e, t, n) { - for (var s = o(t), l = a.f, c = i.f, u = 0; u < s.length; u++) { - var d = s[u]; - r(e, d) || (n && r(n, d)) || l(e, d, c(t, d)); - } - }; - }, - 59981: (e, t, n) => { - var r = n(96982)('match'); - e.exports = function (e) { - var t = /./; - try { - '/./'[e](t); - } catch (n) { - try { - return (t[r] = !1), '/./'[e](t); - } catch (o) {} - } - return !1; - }; - }, - 80093: (e, t, n) => { - var r = n(82229); - e.exports = !r(function () { - function e() {} - return (e.prototype.constructor = null), Object.getPrototypeOf(new e()) !== e.prototype; - }); - }, - 74903: e => { - e.exports = function (e, t) { - return { value: e, done: t }; - }; - }, - 7001: (e, t, n) => { - var r = n(95417), - o = n(90189), - i = n(413); - e.exports = r - ? function (e, t, n) { - return o.f(e, t, i(1, n)); - } - : function (e, t, n) { - return (e[t] = n), e; - }; - }, - 413: e => { - e.exports = function (e, t) { - return { enumerable: !(1 & e), configurable: !(2 & e), writable: !(4 & e), value: t }; - }; - }, - 82519: (e, t, n) => { - 'use strict'; - var r = n(37712), - o = n(90189), - i = n(413); - e.exports = function (e, t, n) { - var a = r(t); - a in e ? o.f(e, a, i(0, n)) : (e[a] = n); - }; - }, - 29379: (e, t, n) => { - var r = n(88807), - o = n(90189), - i = n(93450), - a = n(26139); - e.exports = function (e, t, n, s) { - s || (s = {}); - var l = s.enumerable, - c = void 0 !== s.name ? s.name : t; - if ((r(n) && i(n, c, s), s.global)) l ? (e[t] = n) : a(t, n); - else { - try { - s.unsafe ? e[t] && (l = !0) : delete e[t]; - } catch (u) {} - l - ? (e[t] = n) - : o.f(e, t, { value: n, enumerable: !1, configurable: !s.nonConfigurable, writable: !s.nonWritable }); - } - return e; - }; - }, - 26139: (e, t, n) => { - var r = n(70412), - o = Object.defineProperty; - e.exports = function (e, t) { - try { - o(r, e, { value: t, configurable: !0, writable: !0 }); - } catch (n) { - r[e] = t; - } - return t; - }; - }, - 7351: (e, t, n) => { - 'use strict'; - var r = n(48427), - o = TypeError; - e.exports = function (e, t) { - if (!delete e[t]) throw o('Cannot delete property ' + r(t) + ' of ' + r(e)); - }; - }, - 95417: (e, t, n) => { - var r = n(82229); - e.exports = !r(function () { - return ( - 7 != - Object.defineProperty({}, 1, { - get: function () { - return 7; - }, - })[1] - ); - }); - }, - 89338: e => { - var t = 'object' == typeof document && document.all, - n = void 0 === t && void 0 !== t; - e.exports = { all: t, IS_HTMLDDA: n }; - }, - 36254: (e, t, n) => { - var r = n(70412), - o = n(21188), - i = r.document, - a = o(i) && o(i.createElement); - e.exports = function (e) { - return a ? i.createElement(e) : {}; - }; - }, - 42706: e => { - e.exports = { - CSSRuleList: 0, - CSSStyleDeclaration: 0, - CSSValueList: 0, - ClientRectList: 0, - DOMRectList: 0, - DOMStringList: 0, - DOMTokenList: 1, - DataTransferItemList: 0, - FileList: 0, - HTMLAllCollection: 0, - HTMLCollection: 0, - HTMLFormElement: 0, - HTMLSelectElement: 0, - MediaList: 0, - MimeTypeArray: 0, - NamedNodeMap: 0, - NodeList: 1, - PaintRequestList: 0, - Plugin: 0, - PluginArray: 0, - SVGLengthList: 0, - SVGNumberList: 0, - SVGPathSegList: 0, - SVGPointList: 0, - SVGStringList: 0, - SVGTransformList: 0, - SourceBufferList: 0, - StyleSheetList: 0, - TextTrackCueList: 0, - TextTrackList: 0, - TouchList: 0, - }; - }, - 92076: (e, t, n) => { - var r = n(36254)('span').classList, - o = r && r.constructor && r.constructor.prototype; - e.exports = o === Object.prototype ? void 0 : o; - }, - 89443: (e, t, n) => { - var r = n(86378).match(/firefox\/(\d+)/i); - e.exports = !!r && +r[1]; - }, - 18573: (e, t, n) => { - var r = n(27158), - o = n(84543); - e.exports = !r && !o && 'object' == typeof window && 'object' == typeof document; - }, - 27158: e => { - e.exports = 'object' == typeof Deno && Deno && 'object' == typeof Deno.version; - }, - 17608: (e, t, n) => { - var r = n(86378); - e.exports = /MSIE|Trident/.test(r); - }, - 44500: (e, t, n) => { - var r = n(86378), - o = n(70412); - e.exports = /ipad|iphone|ipod/i.test(r) && void 0 !== o.Pebble; - }, - 3148: (e, t, n) => { - var r = n(86378); - e.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(r); - }, - 84543: (e, t, n) => { - var r = n(29682), - o = n(70412); - e.exports = 'process' == r(o.process); - }, - 32415: (e, t, n) => { - var r = n(86378); - e.exports = /web0s(?!.*chrome)/i.test(r); - }, - 86378: (e, t, n) => { - var r = n(52228); - e.exports = r('navigator', 'userAgent') || ''; - }, - 44905: (e, t, n) => { - var r, - o, - i = n(70412), - a = n(86378), - s = i.process, - l = i.Deno, - c = (s && s.versions) || (l && l.version), - u = c && c.v8; - u && (o = (r = u.split('.'))[0] > 0 && r[0] < 4 ? 1 : +(r[0] + r[1])), - !o && a && (!(r = a.match(/Edge\/(\d+)/)) || r[1] >= 74) && (r = a.match(/Chrome\/(\d+)/)) && (o = +r[1]), - (e.exports = o); - }, - 58452: (e, t, n) => { - var r = n(86378).match(/AppleWebKit\/(\d+)\./); - e.exports = !!r && +r[1]; - }, - 96410: e => { - e.exports = [ - 'constructor', - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toLocaleString', - 'toString', - 'valueOf', - ]; - }, - 72698: (e, t, n) => { - var r = n(70412), - o = n(68098).f, - i = n(7001), - a = n(29379), - s = n(26139), - l = n(12283), - c = n(76777); - e.exports = function (e, t) { - var n, - u, - d, - f, - h, - p = e.target, - v = e.global, - g = e.stat; - if ((n = v ? r : g ? r[p] || s(p, {}) : (r[p] || {}).prototype)) - for (u in t) { - if ( - ((f = t[u]), - (d = e.dontCallGetSet ? (h = o(n, u)) && h.value : n[u]), - !c(v ? u : p + (g ? '.' : '#') + u, e.forced) && void 0 !== d) - ) { - if (typeof f == typeof d) continue; - l(f, d); - } - (e.sham || (d && d.sham)) && i(f, 'sham', !0), a(n, u, f, e); - } - }; - }, - 82229: e => { - e.exports = function (e) { - try { - return !!e(); - } catch (t) { - return !0; - } - }; - }, - 11323: (e, t, n) => { - 'use strict'; - n(9883); - var r = n(41765), - o = n(29379), - i = n(38157), - a = n(82229), - s = n(96982), - l = n(7001), - c = s('species'), - u = RegExp.prototype; - e.exports = function (e, t, n, d) { - var f = s(e), - h = !a(function () { - var t = {}; - return ( - (t[f] = function () { - return 7; - }), - 7 != ''[e](t) - ); - }), - p = - h && - !a(function () { - var t = !1, - n = /a/; - return ( - 'split' === e && - (((n = {}).constructor = {}), - (n.constructor[c] = function () { - return n; - }), - (n.flags = ''), - (n[f] = /./[f])), - (n.exec = function () { - return (t = !0), null; - }), - n[f](''), - !t - ); - }); - if (!h || !p || n) { - var v = r(/./[f]), - g = t(f, ''[e], function (e, t, n, o, a) { - var s = r(e), - l = t.exec; - return l === i || l === u.exec - ? h && !a - ? { done: !0, value: v(t, n, o) } - : { done: !0, value: s(n, t, o) } - : { done: !1 }; - }); - o(String.prototype, e, g[0]), o(u, f, g[1]); - } - d && l(u[f], 'sham', !0); - }; - }, - 90675: (e, t, n) => { - var r = n(43524), - o = Function.prototype, - i = o.apply, - a = o.call; - e.exports = - ('object' == typeof Reflect && Reflect.apply) || - (r - ? a.bind(i) - : function () { - return a.apply(i, arguments); - }); - }, - 7365: (e, t, n) => { - var r = n(41765), - o = n(70481), - i = n(43524), - a = r(r.bind); - e.exports = function (e, t) { - return ( - o(e), - void 0 === t - ? e - : i - ? a(e, t) - : function () { - return e.apply(t, arguments); - } - ); - }; - }, - 43524: (e, t, n) => { - var r = n(82229); - e.exports = !r(function () { - var e = function () {}.bind(); - return 'function' != typeof e || e.hasOwnProperty('prototype'); - }); - }, - 41924: (e, t, n) => { - var r = n(43524), - o = Function.prototype.call; - e.exports = r - ? o.bind(o) - : function () { - return o.apply(o, arguments); - }; - }, - 56815: (e, t, n) => { - var r = n(95417), - o = n(91854), - i = Function.prototype, - a = r && Object.getOwnPropertyDescriptor, - s = o(i, 'name'), - l = s && 'something' === function () {}.name, - c = s && (!r || (r && a(i, 'name').configurable)); - e.exports = { EXISTS: s, PROPER: l, CONFIGURABLE: c }; - }, - 24126: (e, t, n) => { - var r = n(43524), - o = Function.prototype, - i = o.call, - a = r && o.bind.bind(i, i); - e.exports = r - ? a - : function (e) { - return function () { - return i.apply(e, arguments); - }; - }; - }, - 41765: (e, t, n) => { - var r = n(29682), - o = n(24126); - e.exports = function (e) { - if ('Function' === r(e)) return o(e); - }; - }, - 52228: (e, t, n) => { - var r = n(70412), - o = n(88807); - e.exports = function (e, t) { - return arguments.length < 2 ? ((n = r[e]), o(n) ? n : void 0) : r[e] && r[e][t]; - var n; - }; - }, - 63412: (e, t, n) => { - var r = n(765), - o = n(89423), - i = n(39989), - a = n(72429), - s = n(96982)('iterator'); - e.exports = function (e) { - if (!i(e)) return o(e, s) || o(e, '@@iterator') || a[r(e)]; - }; - }, - 28338: (e, t, n) => { - var r = n(41924), - o = n(70481), - i = n(71843), - a = n(48427), - s = n(63412), - l = TypeError; - e.exports = function (e, t) { - var n = arguments.length < 2 ? s(e) : t; - if (o(n)) return i(r(n, e)); - throw l(a(e) + ' is not iterable'); - }; - }, - 89423: (e, t, n) => { - var r = n(70481), - o = n(39989); - e.exports = function (e, t) { - var n = e[t]; - return o(n) ? void 0 : r(n); - }; - }, - 80556: (e, t, n) => { - var r = n(41765), - o = n(90663), - i = Math.floor, - a = r(''.charAt), - s = r(''.replace), - l = r(''.slice), - c = /\$([$&'`]|\d{1,2}|<[^>]*>)/g, - u = /\$([$&'`]|\d{1,2})/g; - e.exports = function (e, t, n, r, d, f) { - var h = n + e.length, - p = r.length, - v = u; - return ( - void 0 !== d && ((d = o(d)), (v = c)), - s(f, v, function (o, s) { - var c; - switch (a(s, 0)) { - case '$': - return '$'; - case '&': - return e; - case '`': - return l(t, 0, n); - case "'": - return l(t, h); - case '<': - c = d[l(s, 1, -1)]; - break; - default: - var u = +s; - if (0 === u) return o; - if (u > p) { - var f = i(u / 10); - return 0 === f ? o : f <= p ? (void 0 === r[f - 1] ? a(s, 1) : r[f - 1] + a(s, 1)) : o; - } - c = r[u - 1]; - } - return void 0 === c ? '' : c; - }) - ); - }; - }, - 70412: (e, t, n) => { - var r = function (e) { - return e && e.Math == Math && e; - }; - e.exports = - r('object' == typeof globalThis && globalThis) || - r('object' == typeof window && window) || - r('object' == typeof self && self) || - r('object' == typeof n.g && n.g) || - (function () { - return this; - })() || - Function('return this')(); - }, - 91854: (e, t, n) => { - var r = n(41765), - o = n(90663), - i = r({}.hasOwnProperty); - e.exports = - Object.hasOwn || - function (e, t) { - return i(o(e), t); - }; - }, - 64690: e => { - e.exports = {}; - }, - 19630: (e, t, n) => { - var r = n(70412); - e.exports = function (e, t) { - var n = r.console; - n && n.error && (1 == arguments.length ? n.error(e) : n.error(e, t)); - }; - }, - 95439: (e, t, n) => { - var r = n(52228); - e.exports = r('document', 'documentElement'); - }, - 94469: (e, t, n) => { - var r = n(95417), - o = n(82229), - i = n(36254); - e.exports = - !r && - !o(function () { - return ( - 7 != - Object.defineProperty(i('div'), 'a', { - get: function () { - return 7; - }, - }).a - ); - }); - }, - 21197: (e, t, n) => { - var r = n(41765), - o = n(82229), - i = n(29682), - a = Object, - s = r(''.split); - e.exports = o(function () { - return !a('z').propertyIsEnumerable(0); - }) - ? function (e) { - return 'String' == i(e) ? s(e, '') : a(e); - } - : a; - }, - 60227: (e, t, n) => { - var r = n(41765), - o = n(88807), - i = n(81502), - a = r(Function.toString); - o(i.inspectSource) || - (i.inspectSource = function (e) { - return a(e); - }), - (e.exports = i.inspectSource); - }, - 887: (e, t, n) => { - var r, - o, - i, - a = n(17023), - s = n(70412), - l = n(21188), - c = n(7001), - u = n(91854), - d = n(81502), - f = n(5350), - h = n(64690), - p = 'Object already initialized', - v = s.TypeError, - g = s.WeakMap; - if (a || d.state) { - var m = d.state || (d.state = new g()); - (m.get = m.get), - (m.has = m.has), - (m.set = m.set), - (r = function (e, t) { - if (m.has(e)) throw v(p); - return (t.facade = e), m.set(e, t), t; - }), - (o = function (e) { - return m.get(e) || {}; - }), - (i = function (e) { - return m.has(e); - }); - } else { - var y = f('state'); - (h[y] = !0), - (r = function (e, t) { - if (u(e, y)) throw v(p); - return (t.facade = e), c(e, y, t), t; - }), - (o = function (e) { - return u(e, y) ? e[y] : {}; - }), - (i = function (e) { - return u(e, y); - }); - } - e.exports = { - set: r, - get: o, - has: i, - enforce: function (e) { - return i(e) ? o(e) : r(e, {}); - }, - getterFor: function (e) { - return function (t) { - var n; - if (!l(t) || (n = o(t)).type !== e) throw v('Incompatible receiver, ' + e + ' required'); - return n; - }; - }, - }; - }, - 46196: (e, t, n) => { - var r = n(96982), - o = n(72429), - i = r('iterator'), - a = Array.prototype; - e.exports = function (e) { - return void 0 !== e && (o.Array === e || a[i] === e); - }; - }, - 88807: (e, t, n) => { - var r = n(89338), - o = r.all; - e.exports = r.IS_HTMLDDA - ? function (e) { - return 'function' == typeof e || e === o; - } - : function (e) { - return 'function' == typeof e; - }; - }, - 41758: (e, t, n) => { - var r = n(41765), - o = n(82229), - i = n(88807), - a = n(765), - s = n(52228), - l = n(60227), - c = function () {}, - u = [], - d = s('Reflect', 'construct'), - f = /^\s*(?:class|function)\b/, - h = r(f.exec), - p = !f.exec(c), - v = function (e) { - if (!i(e)) return !1; - try { - return d(c, u, e), !0; - } catch (t) { - return !1; - } - }, - g = function (e) { - if (!i(e)) return !1; - switch (a(e)) { - case 'AsyncFunction': - case 'GeneratorFunction': - case 'AsyncGeneratorFunction': - return !1; - } - try { - return p || !!h(f, l(e)); - } catch (t) { - return !0; - } - }; - (g.sham = !0), - (e.exports = - !d || - o(function () { - var e; - return ( - v(v.call) || - !v(Object) || - !v(function () { - e = !0; - }) || - e - ); - }) - ? g - : v); - }, - 76777: (e, t, n) => { - var r = n(82229), - o = n(88807), - i = /#|\.prototype\./, - a = function (e, t) { - var n = l[s(e)]; - return n == u || (n != c && (o(t) ? r(t) : !!t)); - }, - s = (a.normalize = function (e) { - return String(e).replace(i, '.').toLowerCase(); - }), - l = (a.data = {}), - c = (a.NATIVE = 'N'), - u = (a.POLYFILL = 'P'); - e.exports = a; - }, - 39989: e => { - e.exports = function (e) { - return null == e; - }; - }, - 21188: (e, t, n) => { - var r = n(88807), - o = n(89338), - i = o.all; - e.exports = o.IS_HTMLDDA - ? function (e) { - return 'object' == typeof e ? null !== e : r(e) || e === i; - } - : function (e) { - return 'object' == typeof e ? null !== e : r(e); - }; - }, - 8588: e => { - e.exports = !1; - }, - 16372: (e, t, n) => { - var r = n(21188), - o = n(29682), - i = n(96982)('match'); - e.exports = function (e) { - var t; - return r(e) && (void 0 !== (t = e[i]) ? !!t : 'RegExp' == o(e)); - }; - }, - 29844: (e, t, n) => { - var r = n(52228), - o = n(88807), - i = n(13521), - a = n(39696), - s = Object; - e.exports = a - ? function (e) { - return 'symbol' == typeof e; - } - : function (e) { - var t = r('Symbol'); - return o(t) && i(t.prototype, s(e)); - }; - }, - 98102: (e, t, n) => { - var r = n(7365), - o = n(41924), - i = n(71843), - a = n(48427), - s = n(46196), - l = n(40406), - c = n(13521), - u = n(28338), - d = n(63412), - f = n(4593), - h = TypeError, - p = function (e, t) { - (this.stopped = e), (this.result = t); - }, - v = p.prototype; - e.exports = function (e, t, n) { - var g, - m, - y, - b, - x, - w, - E, - k = n && n.that, - _ = !(!n || !n.AS_ENTRIES), - S = !(!n || !n.IS_RECORD), - P = !(!n || !n.IS_ITERATOR), - C = !(!n || !n.INTERRUPTED), - j = r(t, k), - T = function (e) { - return g && f(g, 'normal', e), new p(!0, e); - }, - D = function (e) { - return _ ? (i(e), C ? j(e[0], e[1], T) : j(e[0], e[1])) : C ? j(e, T) : j(e); - }; - if (S) g = e.iterator; - else if (P) g = e; - else { - if (!(m = d(e))) throw h(a(e) + ' is not iterable'); - if (s(m)) { - for (y = 0, b = l(e); b > y; y++) if ((x = D(e[y])) && c(v, x)) return x; - return new p(!1); - } - g = u(e, m); - } - for (w = S ? e.next : g.next; !(E = o(w, g)).done; ) { - try { - x = D(E.value); - } catch (N) { - f(g, 'throw', N); - } - if ('object' == typeof x && x && c(v, x)) return x; - } - return new p(!1); - }; - }, - 4593: (e, t, n) => { - var r = n(41924), - o = n(71843), - i = n(89423); - e.exports = function (e, t, n) { - var a, s; - o(e); - try { - if (!(a = i(e, 'return'))) { - if ('throw' === t) throw n; - return n; - } - a = r(a, e); - } catch (l) { - (s = !0), (a = l); - } - if ('throw' === t) throw n; - if (s) throw a; - return o(a), n; - }; - }, - 57015: (e, t, n) => { - 'use strict'; - var r = n(56194).IteratorPrototype, - o = n(56042), - i = n(413), - a = n(43803), - s = n(72429), - l = function () { - return this; - }; - e.exports = function (e, t, n, c) { - var u = t + ' Iterator'; - return (e.prototype = o(r, { next: i(+!c, n) })), a(e, u, !1, !0), (s[u] = l), e; - }; - }, - 61666: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(41924), - i = n(8588), - a = n(56815), - s = n(88807), - l = n(57015), - c = n(62421), - u = n(71083), - d = n(43803), - f = n(7001), - h = n(29379), - p = n(96982), - v = n(72429), - g = n(56194), - m = a.PROPER, - y = a.CONFIGURABLE, - b = g.IteratorPrototype, - x = g.BUGGY_SAFARI_ITERATORS, - w = p('iterator'), - E = 'keys', - k = 'values', - _ = 'entries', - S = function () { - return this; - }; - e.exports = function (e, t, n, a, p, g, P) { - l(n, t, a); - var C, - j, - T, - D = function (e) { - if (e === p && R) return R; - if (!x && e in O) return O[e]; - switch (e) { - case E: - case k: - case _: - return function () { - return new n(this, e); - }; - } - return function () { - return new n(this); - }; - }, - N = t + ' Iterator', - M = !1, - O = e.prototype, - A = O[w] || O['@@iterator'] || (p && O[p]), - R = (!x && A) || D(p), - L = ('Array' == t && O.entries) || A; - if ( - (L && - (C = c(L.call(new e()))) !== Object.prototype && - C.next && - (i || c(C) === b || (u ? u(C, b) : s(C[w]) || h(C, w, S)), d(C, N, !0, !0), i && (v[N] = S)), - m && - p == k && - A && - A.name !== k && - (!i && y - ? f(O, 'name', k) - : ((M = !0), - (R = function () { - return o(A, this); - }))), - p) - ) - if (((j = { values: D(k), keys: g ? R : D(E), entries: D(_) }), P)) - for (T in j) (x || M || !(T in O)) && h(O, T, j[T]); - else r({ target: t, proto: !0, forced: x || M }, j); - return (i && !P) || O[w] === R || h(O, w, R, { name: p }), (v[t] = R), j; - }; - }, - 56194: (e, t, n) => { - 'use strict'; - var r, - o, - i, - a = n(82229), - s = n(88807), - l = n(21188), - c = n(56042), - u = n(62421), - d = n(29379), - f = n(96982), - h = n(8588), - p = f('iterator'), - v = !1; - [].keys && ('next' in (i = [].keys()) ? (o = u(u(i))) !== Object.prototype && (r = o) : (v = !0)), - !l(r) || - a(function () { - var e = {}; - return r[p].call(e) !== e; - }) - ? (r = {}) - : h && (r = c(r)), - s(r[p]) || - d(r, p, function () { - return this; - }), - (e.exports = { IteratorPrototype: r, BUGGY_SAFARI_ITERATORS: v }); - }, - 72429: e => { - e.exports = {}; - }, - 40406: (e, t, n) => { - var r = n(25664); - e.exports = function (e) { - return r(e.length); - }; - }, - 93450: (e, t, n) => { - var r = n(82229), - o = n(88807), - i = n(91854), - a = n(95417), - s = n(56815).CONFIGURABLE, - l = n(60227), - c = n(887), - u = c.enforce, - d = c.get, - f = Object.defineProperty, - h = - a && - !r(function () { - return 8 !== f(function () {}, 'length', { value: 8 }).length; - }), - p = String(String).split('String'), - v = (e.exports = function (e, t, n) { - 'Symbol(' === String(t).slice(0, 7) && (t = '[' + String(t).replace(/^Symbol\(([^)]*)\)/, '$1') + ']'), - n && n.getter && (t = 'get ' + t), - n && n.setter && (t = 'set ' + t), - (!i(e, 'name') || (s && e.name !== t)) && (a ? f(e, 'name', { value: t, configurable: !0 }) : (e.name = t)), - h && n && i(n, 'arity') && e.length !== n.arity && f(e, 'length', { value: n.arity }); - try { - n && i(n, 'constructor') && n.constructor - ? a && f(e, 'prototype', { writable: !1 }) - : e.prototype && (e.prototype = void 0); - } catch (o) {} - var r = u(e); - return i(r, 'source') || (r.source = p.join('string' == typeof t ? t : '')), e; - }); - Function.prototype.toString = v(function () { - return (o(this) && d(this).source) || l(this); - }, 'toString'); - }, - 99958: e => { - var t = Math.ceil, - n = Math.floor; - e.exports = - Math.trunc || - function (e) { - var r = +e; - return (r > 0 ? n : t)(r); - }; - }, - 49514: (e, t, n) => { - var r, - o, - i, - a, - s, - l, - c, - u, - d = n(70412), - f = n(7365), - h = n(68098).f, - p = n(1017).set, - v = n(3148), - g = n(44500), - m = n(32415), - y = n(84543), - b = d.MutationObserver || d.WebKitMutationObserver, - x = d.document, - w = d.process, - E = d.Promise, - k = h(d, 'queueMicrotask'), - _ = k && k.value; - _ || - ((r = function () { - var e, t; - for (y && (e = w.domain) && e.exit(); o; ) { - (t = o.fn), (o = o.next); - try { - t(); - } catch (n) { - throw (o ? a() : (i = void 0), n); - } - } - (i = void 0), e && e.enter(); - }), - v || y || m || !b || !x - ? !g && E && E.resolve - ? (((c = E.resolve(void 0)).constructor = E), - (u = f(c.then, c)), - (a = function () { - u(r); - })) - : y - ? (a = function () { - w.nextTick(r); - }) - : ((p = f(p, d)), - (a = function () { - p(r); - })) - : ((s = !0), - (l = x.createTextNode('')), - new b(r).observe(l, { characterData: !0 }), - (a = function () { - l.data = s = !s; - }))), - (e.exports = - _ || - function (e) { - var t = { fn: e, next: void 0 }; - i && (i.next = t), o || ((o = t), a()), (i = t); - }); - }, - 92473: (e, t, n) => { - 'use strict'; - var r = n(70481), - o = TypeError, - i = function (e) { - var t, n; - (this.promise = new e(function (e, r) { - if (void 0 !== t || void 0 !== n) throw o('Bad Promise constructor'); - (t = e), (n = r); - })), - (this.resolve = r(t)), - (this.reject = r(n)); - }; - e.exports.f = function (e) { - return new i(e); - }; - }, - 47082: (e, t, n) => { - var r = n(16372), - o = TypeError; - e.exports = function (e) { - if (r(e)) throw o("The method doesn't accept regular expressions"); - return e; - }; - }, - 94382: (e, t, n) => { - 'use strict'; - var r = n(95417), - o = n(41765), - i = n(41924), - a = n(82229), - s = n(46615), - l = n(97399), - c = n(99706), - u = n(90663), - d = n(21197), - f = Object.assign, - h = Object.defineProperty, - p = o([].concat); - e.exports = - !f || - a(function () { - if ( - r && - 1 !== - f( - { b: 1 }, - f( - h({}, 'a', { - enumerable: !0, - get: function () { - h(this, 'b', { value: 3, enumerable: !1 }); - }, - }), - { b: 2 }, - ), - ).b - ) - return !0; - var e = {}, - t = {}, - n = Symbol(), - o = 'abcdefghijklmnopqrst'; - return ( - (e[n] = 7), - o.split('').forEach(function (e) { - t[e] = e; - }), - 7 != f({}, e)[n] || s(f({}, t)).join('') != o - ); - }) - ? function (e, t) { - for (var n = u(e), o = arguments.length, a = 1, f = l.f, h = c.f; o > a; ) - for (var v, g = d(arguments[a++]), m = f ? p(s(g), f(g)) : s(g), y = m.length, b = 0; y > b; ) - (v = m[b++]), (r && !i(h, g, v)) || (n[v] = g[v]); - return n; - } - : f; - }, - 56042: (e, t, n) => { - var r, - o = n(71843), - i = n(13687), - a = n(96410), - s = n(64690), - l = n(95439), - c = n(36254), - u = n(5350), - d = 'prototype', - f = 'script', - h = u('IE_PROTO'), - p = function () {}, - v = function (e) { - return '<' + f + '>' + e + ''; - }, - g = function (e) { - e.write(v('')), e.close(); - var t = e.parentWindow.Object; - return (e = null), t; - }, - m = function () { - try { - r = new ActiveXObject('htmlfile'); - } catch (i) {} - var e, t, n; - m = - 'undefined' != typeof document - ? document.domain && r - ? g(r) - : ((t = c('iframe')), - (n = 'java' + f + ':'), - (t.style.display = 'none'), - l.appendChild(t), - (t.src = String(n)), - (e = t.contentWindow.document).open(), - e.write(v('document.F=Object')), - e.close(), - e.F) - : g(r); - for (var o = a.length; o--; ) delete m[d][a[o]]; - return m(); - }; - (s[h] = !0), - (e.exports = - Object.create || - function (e, t) { - var n; - return ( - null !== e ? ((p[d] = o(e)), (n = new p()), (p[d] = null), (n[h] = e)) : (n = m()), - void 0 === t ? n : i.f(n, t) - ); - }); - }, - 13687: (e, t, n) => { - var r = n(95417), - o = n(5989), - i = n(90189), - a = n(71843), - s = n(30529), - l = n(46615); - t.f = - r && !o - ? Object.defineProperties - : function (e, t) { - a(e); - for (var n, r = s(t), o = l(t), c = o.length, u = 0; c > u; ) i.f(e, (n = o[u++]), r[n]); - return e; - }; - }, - 90189: (e, t, n) => { - var r = n(95417), - o = n(94469), - i = n(5989), - a = n(71843), - s = n(37712), - l = TypeError, - c = Object.defineProperty, - u = Object.getOwnPropertyDescriptor, - d = 'enumerable', - f = 'configurable', - h = 'writable'; - t.f = r - ? i - ? function (e, t, n) { - if ( - (a(e), (t = s(t)), a(n), 'function' == typeof e && 'prototype' === t && 'value' in n && h in n && !n[h]) - ) { - var r = u(e, t); - r && - r[h] && - ((e[t] = n.value), - (n = { configurable: f in n ? n[f] : r[f], enumerable: d in n ? n[d] : r[d], writable: !1 })); - } - return c(e, t, n); - } - : c - : function (e, t, n) { - if ((a(e), (t = s(t)), a(n), o)) - try { - return c(e, t, n); - } catch (r) {} - if ('get' in n || 'set' in n) throw l('Accessors not supported'); - return 'value' in n && (e[t] = n.value), e; - }; - }, - 68098: (e, t, n) => { - var r = n(95417), - o = n(41924), - i = n(99706), - a = n(413), - s = n(30529), - l = n(37712), - c = n(91854), - u = n(94469), - d = Object.getOwnPropertyDescriptor; - t.f = r - ? d - : function (e, t) { - if (((e = s(e)), (t = l(t)), u)) - try { - return d(e, t); - } catch (n) {} - if (c(e, t)) return a(!o(i.f, e, t), e[t]); - }; - }, - 58206: (e, t, n) => { - var r = n(28715), - o = n(96410).concat('length', 'prototype'); - t.f = - Object.getOwnPropertyNames || - function (e) { - return r(e, o); - }; - }, - 97399: (e, t) => { - t.f = Object.getOwnPropertySymbols; - }, - 62421: (e, t, n) => { - var r = n(91854), - o = n(88807), - i = n(90663), - a = n(5350), - s = n(80093), - l = a('IE_PROTO'), - c = Object, - u = c.prototype; - e.exports = s - ? c.getPrototypeOf - : function (e) { - var t = i(e); - if (r(t, l)) return t[l]; - var n = t.constructor; - return o(n) && t instanceof n ? n.prototype : t instanceof c ? u : null; - }; - }, - 13521: (e, t, n) => { - var r = n(41765); - e.exports = r({}.isPrototypeOf); - }, - 28715: (e, t, n) => { - var r = n(41765), - o = n(91854), - i = n(30529), - a = n(17222).indexOf, - s = n(64690), - l = r([].push); - e.exports = function (e, t) { - var n, - r = i(e), - c = 0, - u = []; - for (n in r) !o(s, n) && o(r, n) && l(u, n); - for (; t.length > c; ) o(r, (n = t[c++])) && (~a(u, n) || l(u, n)); - return u; - }; - }, - 46615: (e, t, n) => { - var r = n(28715), - o = n(96410); - e.exports = - Object.keys || - function (e) { - return r(e, o); - }; - }, - 99706: (e, t) => { - 'use strict'; - var n = {}.propertyIsEnumerable, - r = Object.getOwnPropertyDescriptor, - o = r && !n.call({ 1: 2 }, 1); - t.f = o - ? function (e) { - var t = r(this, e); - return !!t && t.enumerable; - } - : n; - }, - 71083: (e, t, n) => { - var r = n(41765), - o = n(71843), - i = n(5946); - e.exports = - Object.setPrototypeOf || - ('__proto__' in {} - ? (function () { - var e, - t = !1, - n = {}; - try { - (e = r(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set))(n, []), - (t = n instanceof Array); - } catch (a) {} - return function (n, r) { - return o(n), i(r), t ? e(n, r) : (n.__proto__ = r), n; - }; - })() - : void 0); - }, - 56976: (e, t, n) => { - var r = n(41924), - o = n(88807), - i = n(21188), - a = TypeError; - e.exports = function (e, t) { - var n, s; - if ('string' === t && o((n = e.toString)) && !i((s = r(n, e)))) return s; - if (o((n = e.valueOf)) && !i((s = r(n, e)))) return s; - if ('string' !== t && o((n = e.toString)) && !i((s = r(n, e)))) return s; - throw a("Can't convert object to primitive value"); - }; - }, - 72929: (e, t, n) => { - var r = n(52228), - o = n(41765), - i = n(58206), - a = n(97399), - s = n(71843), - l = o([].concat); - e.exports = - r('Reflect', 'ownKeys') || - function (e) { - var t = i.f(s(e)), - n = a.f; - return n ? l(t, n(e)) : t; - }; - }, - 30668: e => { - e.exports = function (e) { - try { - return { error: !1, value: e() }; - } catch (t) { - return { error: !0, value: t }; - } - }; - }, - 27743: (e, t, n) => { - var r = n(70412), - o = n(15461), - i = n(88807), - a = n(76777), - s = n(60227), - l = n(96982), - c = n(18573), - u = n(27158), - d = n(8588), - f = n(44905), - h = o && o.prototype, - p = l('species'), - v = !1, - g = i(r.PromiseRejectionEvent), - m = a('Promise', function () { - var e = s(o), - t = e !== String(o); - if (!t && 66 === f) return !0; - if (d && (!h.catch || !h.finally)) return !0; - if (!f || f < 51 || !/native code/.test(e)) { - var n = new o(function (e) { - e(1); - }), - r = function (e) { - e( - function () {}, - function () {}, - ); - }; - if ((((n.constructor = {})[p] = r), !(v = n.then(function () {}) instanceof r))) return !0; - } - return !t && (c || u) && !g; - }); - e.exports = { CONSTRUCTOR: m, REJECTION_EVENT: g, SUBCLASSING: v }; - }, - 15461: (e, t, n) => { - var r = n(70412); - e.exports = r.Promise; - }, - 88149: (e, t, n) => { - var r = n(71843), - o = n(21188), - i = n(92473); - e.exports = function (e, t) { - if ((r(e), o(t) && t.constructor === e)) return t; - var n = i.f(e); - return (0, n.resolve)(t), n.promise; - }; - }, - 20769: (e, t, n) => { - var r = n(15461), - o = n(3800), - i = n(27743).CONSTRUCTOR; - e.exports = - i || - !o(function (e) { - r.all(e).then(void 0, function () {}); - }); - }, - 69323: e => { - var t = function () { - (this.head = null), (this.tail = null); - }; - (t.prototype = { - add: function (e) { - var t = { item: e, next: null }; - this.head ? (this.tail.next = t) : (this.head = t), (this.tail = t); - }, - get: function () { - var e = this.head; - if (e) return (this.head = e.next), this.tail === e && (this.tail = null), e.item; - }, - }), - (e.exports = t); - }, - 12134: (e, t, n) => { - var r = n(41924), - o = n(71843), - i = n(88807), - a = n(29682), - s = n(38157), - l = TypeError; - e.exports = function (e, t) { - var n = e.exec; - if (i(n)) { - var c = r(n, e, t); - return null !== c && o(c), c; - } - if ('RegExp' === a(e)) return r(s, e, t); - throw l('RegExp#exec called on incompatible receiver'); - }; - }, - 38157: (e, t, n) => { - 'use strict'; - var r, - o, - i = n(41924), - a = n(41765), - s = n(98170), - l = n(88103), - c = n(48756), - u = n(39215), - d = n(56042), - f = n(887).get, - h = n(60054), - p = n(77084), - v = u('native-string-replace', String.prototype.replace), - g = RegExp.prototype.exec, - m = g, - y = a(''.charAt), - b = a(''.indexOf), - x = a(''.replace), - w = a(''.slice), - E = ((o = /b*/g), i(g, (r = /a/), 'a'), i(g, o, 'a'), 0 !== r.lastIndex || 0 !== o.lastIndex), - k = c.BROKEN_CARET, - _ = void 0 !== /()??/.exec('')[1]; - (E || _ || k || h || p) && - (m = function (e) { - var t, - n, - r, - o, - a, - c, - u, - h = this, - p = f(h), - S = s(e), - P = p.raw; - if (P) return (P.lastIndex = h.lastIndex), (t = i(m, P, S)), (h.lastIndex = P.lastIndex), t; - var C = p.groups, - j = k && h.sticky, - T = i(l, h), - D = h.source, - N = 0, - M = S; - if ( - (j && - ((T = x(T, 'y', '')), - -1 === b(T, 'g') && (T += 'g'), - (M = w(S, h.lastIndex)), - h.lastIndex > 0 && - (!h.multiline || (h.multiline && '\n' !== y(S, h.lastIndex - 1))) && - ((D = '(?: ' + D + ')'), (M = ' ' + M), N++), - (n = new RegExp('^(?:' + D + ')', T))), - _ && (n = new RegExp('^' + D + '$(?!\\s)', T)), - E && (r = h.lastIndex), - (o = i(g, j ? n : h, M)), - j - ? o - ? ((o.input = w(o.input, N)), - (o[0] = w(o[0], N)), - (o.index = h.lastIndex), - (h.lastIndex += o[0].length)) - : (h.lastIndex = 0) - : E && o && (h.lastIndex = h.global ? o.index + o[0].length : r), - _ && - o && - o.length > 1 && - i(v, o[0], n, function () { - for (a = 1; a < arguments.length - 2; a++) void 0 === arguments[a] && (o[a] = void 0); - }), - o && C) - ) - for (o.groups = c = d(null), a = 0; a < C.length; a++) c[(u = C[a])[0]] = o[u[1]]; - return o; - }), - (e.exports = m); - }, - 88103: (e, t, n) => { - 'use strict'; - var r = n(71843); - e.exports = function () { - var e = r(this), - t = ''; - return ( - e.hasIndices && (t += 'd'), - e.global && (t += 'g'), - e.ignoreCase && (t += 'i'), - e.multiline && (t += 'm'), - e.dotAll && (t += 's'), - e.unicode && (t += 'u'), - e.unicodeSets && (t += 'v'), - e.sticky && (t += 'y'), - t - ); - }; - }, - 48756: (e, t, n) => { - var r = n(82229), - o = n(70412).RegExp, - i = r(function () { - var e = o('a', 'y'); - return (e.lastIndex = 2), null != e.exec('abcd'); - }), - a = - i || - r(function () { - return !o('a', 'y').sticky; - }), - s = - i || - r(function () { - var e = o('^r', 'gy'); - return (e.lastIndex = 2), null != e.exec('str'); - }); - e.exports = { BROKEN_CARET: s, MISSED_STICKY: a, UNSUPPORTED_Y: i }; - }, - 60054: (e, t, n) => { - var r = n(82229), - o = n(70412).RegExp; - e.exports = r(function () { - var e = o('.', 's'); - return !(e.dotAll && e.exec('\n') && 's' === e.flags); - }); - }, - 77084: (e, t, n) => { - var r = n(82229), - o = n(70412).RegExp; - e.exports = r(function () { - var e = o('(?b)', 'g'); - return 'b' !== e.exec('b').groups.a || 'bc' !== 'b'.replace(e, '$c'); - }); - }, - 20774: (e, t, n) => { - var r = n(39989), - o = TypeError; - e.exports = function (e) { - if (r(e)) throw o("Can't call method on " + e); - return e; - }; - }, - 53411: e => { - e.exports = - Object.is || - function (e, t) { - return e === t ? 0 !== e || 1 / e == 1 / t : e != e && t != t; - }; - }, - 35787: (e, t, n) => { - 'use strict'; - var r = n(52228), - o = n(90189), - i = n(96982), - a = n(95417), - s = i('species'); - e.exports = function (e) { - var t = r(e), - n = o.f; - a && - t && - !t[s] && - n(t, s, { - configurable: !0, - get: function () { - return this; - }, - }); - }; - }, - 43803: (e, t, n) => { - var r = n(90189).f, - o = n(91854), - i = n(96982)('toStringTag'); - e.exports = function (e, t, n) { - e && !n && (e = e.prototype), e && !o(e, i) && r(e, i, { configurable: !0, value: t }); - }; - }, - 5350: (e, t, n) => { - var r = n(39215), - o = n(34436), - i = r('keys'); - e.exports = function (e) { - return i[e] || (i[e] = o(e)); - }; - }, - 81502: (e, t, n) => { - var r = n(70412), - o = n(26139), - i = '__core-js_shared__', - a = r[i] || o(i, {}); - e.exports = a; - }, - 39215: (e, t, n) => { - var r = n(8588), - o = n(81502); - (e.exports = function (e, t) { - return o[e] || (o[e] = void 0 !== t ? t : {}); - })('versions', []).push({ - version: '3.26.0', - mode: r ? 'pure' : 'global', - copyright: '\xa9 2014-2022 Denis Pushkarev (zloirock.ru)', - license: 'https://github.com/zloirock/core-js/blob/v3.26.0/LICENSE', - source: 'https://github.com/zloirock/core-js', - }); - }, - 23913: (e, t, n) => { - var r = n(71843), - o = n(12420), - i = n(39989), - a = n(96982)('species'); - e.exports = function (e, t) { - var n, - s = r(e).constructor; - return void 0 === s || i((n = r(s)[a])) ? t : o(n); - }; - }, - 33100: (e, t, n) => { - var r = n(41765), - o = n(32048), - i = n(98170), - a = n(20774), - s = r(''.charAt), - l = r(''.charCodeAt), - c = r(''.slice), - u = function (e) { - return function (t, n) { - var r, - u, - d = i(a(t)), - f = o(n), - h = d.length; - return f < 0 || f >= h - ? e - ? '' - : void 0 - : (r = l(d, f)) < 55296 || r > 56319 || f + 1 === h || (u = l(d, f + 1)) < 56320 || u > 57343 - ? e - ? s(d, f) - : r - : e - ? c(d, f, f + 2) - : u - 56320 + ((r - 55296) << 10) + 65536; - }; - }; - e.exports = { codeAt: u(!1), charAt: u(!0) }; - }, - 9770: (e, t, n) => { - var r = n(44905), - o = n(82229); - e.exports = - !!Object.getOwnPropertySymbols && - !o(function () { - var e = Symbol(); - return !String(e) || !(Object(e) instanceof Symbol) || (!Symbol.sham && r && r < 41); - }); - }, - 1017: (e, t, n) => { - var r, - o, - i, - a, - s = n(70412), - l = n(90675), - c = n(7365), - u = n(88807), - d = n(91854), - f = n(82229), - h = n(95439), - p = n(96784), - v = n(36254), - g = n(58453), - m = n(3148), - y = n(84543), - b = s.setImmediate, - x = s.clearImmediate, - w = s.process, - E = s.Dispatch, - k = s.Function, - _ = s.MessageChannel, - S = s.String, - P = 0, - C = {}, - j = 'onreadystatechange'; - try { - r = s.location; - } catch (O) {} - var T = function (e) { - if (d(C, e)) { - var t = C[e]; - delete C[e], t(); - } - }, - D = function (e) { - return function () { - T(e); - }; - }, - N = function (e) { - T(e.data); - }, - M = function (e) { - s.postMessage(S(e), r.protocol + '//' + r.host); - }; - (b && x) || - ((b = function (e) { - g(arguments.length, 1); - var t = u(e) ? e : k(e), - n = p(arguments, 1); - return ( - (C[++P] = function () { - l(t, void 0, n); - }), - o(P), - P - ); - }), - (x = function (e) { - delete C[e]; - }), - y - ? (o = function (e) { - w.nextTick(D(e)); - }) - : E && E.now - ? (o = function (e) { - E.now(D(e)); - }) - : _ && !m - ? ((a = (i = new _()).port2), (i.port1.onmessage = N), (o = c(a.postMessage, a))) - : s.addEventListener && u(s.postMessage) && !s.importScripts && r && 'file:' !== r.protocol && !f(M) - ? ((o = M), s.addEventListener('message', N, !1)) - : (o = - j in v('script') - ? function (e) { - h.appendChild(v('script'))[j] = function () { - h.removeChild(this), T(e); - }; - } - : function (e) { - setTimeout(D(e), 0); - })), - (e.exports = { set: b, clear: x }); - }, - 90069: (e, t, n) => { - var r = n(32048), - o = Math.max, - i = Math.min; - e.exports = function (e, t) { - var n = r(e); - return n < 0 ? o(n + t, 0) : i(n, t); - }; - }, - 30529: (e, t, n) => { - var r = n(21197), - o = n(20774); - e.exports = function (e) { - return r(o(e)); - }; - }, - 32048: (e, t, n) => { - var r = n(99958); - e.exports = function (e) { - var t = +e; - return t != t || 0 === t ? 0 : r(t); - }; - }, - 25664: (e, t, n) => { - var r = n(32048), - o = Math.min; - e.exports = function (e) { - return e > 0 ? o(r(e), 9007199254740991) : 0; - }; - }, - 90663: (e, t, n) => { - var r = n(20774), - o = Object; - e.exports = function (e) { - return o(r(e)); - }; - }, - 5368: (e, t, n) => { - var r = n(41924), - o = n(21188), - i = n(29844), - a = n(89423), - s = n(56976), - l = n(96982), - c = TypeError, - u = l('toPrimitive'); - e.exports = function (e, t) { - if (!o(e) || i(e)) return e; - var n, - l = a(e, u); - if (l) { - if ((void 0 === t && (t = 'default'), (n = r(l, e, t)), !o(n) || i(n))) return n; - throw c("Can't convert object to primitive value"); - } - return void 0 === t && (t = 'number'), s(e, t); - }; - }, - 37712: (e, t, n) => { - var r = n(5368), - o = n(29844); - e.exports = function (e) { - var t = r(e, 'string'); - return o(t) ? t : t + ''; - }; - }, - 50089: (e, t, n) => { - var r = {}; - (r[n(96982)('toStringTag')] = 'z'), (e.exports = '[object z]' === String(r)); - }, - 98170: (e, t, n) => { - var r = n(765), - o = String; - e.exports = function (e) { - if ('Symbol' === r(e)) throw TypeError('Cannot convert a Symbol value to a string'); - return o(e); - }; - }, - 48427: e => { - var t = String; - e.exports = function (e) { - try { - return t(e); - } catch (n) { - return 'Object'; - } - }; - }, - 34436: (e, t, n) => { - var r = n(41765), - o = 0, - i = Math.random(), - a = r((1).toString); - e.exports = function (e) { - return 'Symbol(' + (void 0 === e ? '' : e) + ')_' + a(++o + i, 36); - }; - }, - 39696: (e, t, n) => { - var r = n(9770); - e.exports = r && !Symbol.sham && 'symbol' == typeof Symbol.iterator; - }, - 5989: (e, t, n) => { - var r = n(95417), - o = n(82229); - e.exports = - r && - o(function () { - return 42 != Object.defineProperty(function () {}, 'prototype', { value: 42, writable: !1 }).prototype; - }); - }, - 58453: e => { - var t = TypeError; - e.exports = function (e, n) { - if (e < n) throw t('Not enough arguments'); - return e; - }; - }, - 17023: (e, t, n) => { - var r = n(70412), - o = n(88807), - i = r.WeakMap; - e.exports = o(i) && /native code/.test(String(i)); - }, - 96982: (e, t, n) => { - var r = n(70412), - o = n(39215), - i = n(91854), - a = n(34436), - s = n(9770), - l = n(39696), - c = o('wks'), - u = r.Symbol, - d = u && u.for, - f = l ? u : (u && u.withoutSetter) || a; - e.exports = function (e) { - if (!i(c, e) || (!s && 'string' != typeof c[e])) { - var t = 'Symbol.' + e; - s && i(u, e) ? (c[e] = u[e]) : (c[e] = l && d ? d(t) : f(t)); - } - return c[e]; - }; - }, - 94841: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(17222).includes, - i = n(82229), - a = n(63288); - r( - { - target: 'Array', - proto: !0, - forced: i(function () { - return !Array(1).includes(); - }), - }, - { - includes: function (e) { - return o(this, e, arguments.length > 1 ? arguments[1] : void 0); - }, - }, - ), - a('includes'); - }, - 78062: (e, t, n) => { - 'use strict'; - var r = n(30529), - o = n(63288), - i = n(72429), - a = n(887), - s = n(90189).f, - l = n(61666), - c = n(74903), - u = n(8588), - d = n(95417), - f = 'Array Iterator', - h = a.set, - p = a.getterFor(f); - e.exports = l( - Array, - 'Array', - function (e, t) { - h(this, { type: f, target: r(e), index: 0, kind: t }); - }, - function () { - var e = p(this), - t = e.target, - n = e.kind, - r = e.index++; - return !t || r >= t.length - ? ((e.target = void 0), c(void 0, !0)) - : c('keys' == n ? r : 'values' == n ? t[r] : [r, t[r]], !1); - }, - 'values', - ); - var v = (i.Arguments = i.Array); - if ((o('keys'), o('values'), o('entries'), !u && d && 'values' !== v.name)) - try { - s(v, 'name', { value: 'values' }); - } catch (g) {} - }, - 75715: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(41765), - i = n(70481), - a = n(90663), - s = n(40406), - l = n(7351), - c = n(98170), - u = n(82229), - d = n(42771), - f = n(4789), - h = n(89443), - p = n(17608), - v = n(44905), - g = n(58452), - m = [], - y = o(m.sort), - b = o(m.push), - x = u(function () { - m.sort(void 0); - }), - w = u(function () { - m.sort(null); - }), - E = f('sort'), - k = !u(function () { - if (v) return v < 70; - if (!(h && h > 3)) { - if (p) return !0; - if (g) return g < 603; - var e, - t, - n, - r, - o = ''; - for (e = 65; e < 76; e++) { - switch (((t = String.fromCharCode(e)), e)) { - case 66: - case 69: - case 70: - case 72: - n = 3; - break; - case 68: - case 71: - n = 4; - break; - default: - n = 2; - } - for (r = 0; r < 47; r++) m.push({ k: t + r, v: n }); - } - for ( - m.sort(function (e, t) { - return t.v - e.v; - }), - r = 0; - r < m.length; - r++ - ) - (t = m[r].k.charAt(0)), o.charAt(o.length - 1) !== t && (o += t); - return 'DGBEFHACIJK' !== o; - } - }); - r( - { target: 'Array', proto: !0, forced: x || !w || !E || !k }, - { - sort: function (e) { - void 0 !== e && i(e); - var t = a(this); - if (k) return void 0 === e ? y(t) : y(t, e); - var n, - r, - o = [], - u = s(t); - for (r = 0; r < u; r++) r in t && b(o, t[r]); - for ( - d( - o, - (function (e) { - return function (t, n) { - return void 0 === n ? -1 : void 0 === t ? 1 : void 0 !== e ? +e(t, n) || 0 : c(t) > c(n) ? 1 : -1; - }; - })(e), - ), - n = s(o), - r = 0; - r < n; - - ) - t[r] = o[r++]; - for (; r < u; ) l(t, r++); - return t; - }, - }, - ); - }, - 19658: (e, t, n) => { - var r = n(72698), - o = n(94382); - r({ target: 'Object', stat: !0, arity: 2, forced: Object.assign !== o }, { assign: o }); - }, - 58628: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(41924), - i = n(70481), - a = n(92473), - s = n(30668), - l = n(98102); - r( - { target: 'Promise', stat: !0, forced: n(20769) }, - { - all: function (e) { - var t = this, - n = a.f(t), - r = n.resolve, - c = n.reject, - u = s(function () { - var n = i(t.resolve), - a = [], - s = 0, - u = 1; - l(e, function (e) { - var i = s++, - l = !1; - u++, - o(n, t, e).then(function (e) { - l || ((l = !0), (a[i] = e), --u || r(a)); - }, c); - }), - --u || r(a); - }); - return u.error && c(u.value), n.promise; - }, - }, - ); - }, - 60562: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(8588), - i = n(27743).CONSTRUCTOR, - a = n(15461), - s = n(52228), - l = n(88807), - c = n(29379), - u = a && a.prototype; - if ( - (r( - { target: 'Promise', proto: !0, forced: i, real: !0 }, - { - catch: function (e) { - return this.then(void 0, e); - }, - }, - ), - !o && l(a)) - ) { - var d = s('Promise').prototype.catch; - u.catch !== d && c(u, 'catch', d, { unsafe: !0 }); - } - }, - 67726: (e, t, n) => { - 'use strict'; - var r, - o, - i, - a = n(72698), - s = n(8588), - l = n(84543), - c = n(70412), - u = n(41924), - d = n(29379), - f = n(71083), - h = n(43803), - p = n(35787), - v = n(70481), - g = n(88807), - m = n(21188), - y = n(65712), - b = n(23913), - x = n(1017).set, - w = n(49514), - E = n(19630), - k = n(30668), - _ = n(69323), - S = n(887), - P = n(15461), - C = n(27743), - j = n(92473), - T = 'Promise', - D = C.CONSTRUCTOR, - N = C.REJECTION_EVENT, - M = C.SUBCLASSING, - O = S.getterFor(T), - A = S.set, - R = P && P.prototype, - L = P, - I = R, - B = c.TypeError, - F = c.document, - z = c.process, - V = j.f, - G = V, - H = !!(F && F.createEvent && c.dispatchEvent), - W = 'unhandledrejection', - U = function (e) { - var t; - return !(!m(e) || !g((t = e.then))) && t; - }, - q = function (e, t) { - var n, - r, - o, - i = t.value, - a = 1 == t.state, - s = a ? e.ok : e.fail, - l = e.resolve, - c = e.reject, - d = e.domain; - try { - s - ? (a || (2 === t.rejection && Z(t), (t.rejection = 1)), - !0 === s ? (n = i) : (d && d.enter(), (n = s(i)), d && (d.exit(), (o = !0))), - n === e.promise ? c(B('Promise-chain cycle')) : (r = U(n)) ? u(r, n, l, c) : l(n)) - : c(i); - } catch (f) { - d && !o && d.exit(), c(f); - } - }, - Y = function (e, t) { - e.notified || - ((e.notified = !0), - w(function () { - for (var n, r = e.reactions; (n = r.get()); ) q(n, e); - (e.notified = !1), t && !e.rejection && $(e); - })); - }, - X = function (e, t, n) { - var r, o; - H - ? (((r = F.createEvent('Event')).promise = t), (r.reason = n), r.initEvent(e, !1, !0), c.dispatchEvent(r)) - : (r = { promise: t, reason: n }), - !N && (o = c['on' + e]) ? o(r) : e === W && E('Unhandled promise rejection', n); - }, - $ = function (e) { - u(x, c, function () { - var t, - n = e.facade, - r = e.value; - if ( - K(e) && - ((t = k(function () { - l ? z.emit('unhandledRejection', r, n) : X(W, n, r); - })), - (e.rejection = l || K(e) ? 2 : 1), - t.error) - ) - throw t.value; - }); - }, - K = function (e) { - return 1 !== e.rejection && !e.parent; - }, - Z = function (e) { - u(x, c, function () { - var t = e.facade; - l ? z.emit('rejectionHandled', t) : X('rejectionhandled', t, e.value); - }); - }, - Q = function (e, t, n) { - return function (r) { - e(t, r, n); - }; - }, - J = function (e, t, n) { - e.done || ((e.done = !0), n && (e = n), (e.value = t), (e.state = 2), Y(e, !0)); - }, - ee = function (e, t, n) { - if (!e.done) { - (e.done = !0), n && (e = n); - try { - if (e.facade === t) throw B("Promise can't be resolved itself"); - var r = U(t); - r - ? w(function () { - var n = { done: !1 }; - try { - u(r, t, Q(ee, n, e), Q(J, n, e)); - } catch (o) { - J(n, o, e); - } - }) - : ((e.value = t), (e.state = 1), Y(e, !1)); - } catch (o) { - J({ done: !1 }, o, e); - } - } - }; - if ( - D && - ((I = (L = function (e) { - y(this, I), v(e), u(r, this); - var t = O(this); - try { - e(Q(ee, t), Q(J, t)); - } catch (n) { - J(t, n); - } - }).prototype), - ((r = function (e) { - A(this, { - type: T, - done: !1, - notified: !1, - parent: !1, - reactions: new _(), - rejection: !1, - state: 0, - value: void 0, - }); - }).prototype = d(I, 'then', function (e, t) { - var n = O(this), - r = V(b(this, L)); - return ( - (n.parent = !0), - (r.ok = !g(e) || e), - (r.fail = g(t) && t), - (r.domain = l ? z.domain : void 0), - 0 == n.state - ? n.reactions.add(r) - : w(function () { - q(r, n); - }), - r.promise - ); - })), - (o = function () { - var e = new r(), - t = O(e); - (this.promise = e), (this.resolve = Q(ee, t)), (this.reject = Q(J, t)); - }), - (j.f = V = - function (e) { - return e === L || undefined === e ? new o(e) : G(e); - }), - !s && g(P) && R !== Object.prototype) - ) { - (i = R.then), - M || - d( - R, - 'then', - function (e, t) { - var n = this; - return new L(function (e, t) { - u(i, n, e, t); - }).then(e, t); - }, - { unsafe: !0 }, - ); - try { - delete R.constructor; - } catch (te) {} - f && f(R, I); - } - a({ global: !0, constructor: !0, wrap: !0, forced: D }, { Promise: L }), h(L, T, !1, !0), p(T); - }, - 70769: (e, t, n) => { - n(67726), n(58628), n(60562), n(9439), n(49081), n(98669); - }, - 9439: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(41924), - i = n(70481), - a = n(92473), - s = n(30668), - l = n(98102); - r( - { target: 'Promise', stat: !0, forced: n(20769) }, - { - race: function (e) { - var t = this, - n = a.f(t), - r = n.reject, - c = s(function () { - var a = i(t.resolve); - l(e, function (e) { - o(a, t, e).then(n.resolve, r); - }); - }); - return c.error && r(c.value), n.promise; - }, - }, - ); - }, - 49081: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(41924), - i = n(92473); - r( - { target: 'Promise', stat: !0, forced: n(27743).CONSTRUCTOR }, - { - reject: function (e) { - var t = i.f(this); - return o(t.reject, void 0, e), t.promise; - }, - }, - ); - }, - 98669: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(52228), - i = n(8588), - a = n(15461), - s = n(27743).CONSTRUCTOR, - l = n(88149), - c = o('Promise'), - u = i && !s; - r( - { target: 'Promise', stat: !0, forced: i || s }, - { - resolve: function (e) { - return l(u && this === c ? a : this, e); - }, - }, - ); - }, - 9883: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(38157); - r({ target: 'RegExp', proto: !0, forced: /./.exec !== o }, { exec: o }); - }, - 9944: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(41765), - i = n(47082), - a = n(20774), - s = n(98170), - l = n(59981), - c = o(''.indexOf); - r( - { target: 'String', proto: !0, forced: !l('includes') }, - { - includes: function (e) { - return !!~c(s(a(this)), s(i(e)), arguments.length > 1 ? arguments[1] : void 0); - }, - }, - ); - }, - 29: (e, t, n) => { - 'use strict'; - var r = n(90675), - o = n(41924), - i = n(41765), - a = n(11323), - s = n(82229), - l = n(71843), - c = n(88807), - u = n(39989), - d = n(32048), - f = n(25664), - h = n(98170), - p = n(20774), - v = n(95158), - g = n(89423), - m = n(80556), - y = n(12134), - b = n(96982)('replace'), - x = Math.max, - w = Math.min, - E = i([].concat), - k = i([].push), - _ = i(''.indexOf), - S = i(''.slice), - P = '$0' === 'a'.replace(/./, '$0'), - C = !!/./[b] && '' === /./[b]('a', '$0'); - a( - 'replace', - function (e, t, n) { - var i = C ? '$' : '$0'; - return [ - function (e, n) { - var r = p(this), - i = u(e) ? void 0 : g(e, b); - return i ? o(i, e, r, n) : o(t, h(r), e, n); - }, - function (e, o) { - var a = l(this), - s = h(e); - if ('string' == typeof o && -1 === _(o, i) && -1 === _(o, '$<')) { - var u = n(t, a, s, o); - if (u.done) return u.value; - } - var p = c(o); - p || (o = h(o)); - var g = a.global; - if (g) { - var b = a.unicode; - a.lastIndex = 0; - } - for (var P = []; ; ) { - var C = y(a, s); - if (null === C) break; - if ((k(P, C), !g)) break; - '' === h(C[0]) && (a.lastIndex = v(s, f(a.lastIndex), b)); - } - for (var j, T = '', D = 0, N = 0; N < P.length; N++) { - for (var M = h((C = P[N])[0]), O = x(w(d(C.index), s.length), 0), A = [], R = 1; R < C.length; R++) - k(A, void 0 === (j = C[R]) ? j : String(j)); - var L = C.groups; - if (p) { - var I = E([M], A, O, s); - void 0 !== L && k(I, L); - var B = h(r(o, void 0, I)); - } else B = m(M, s, O, A, L, o); - O >= D && ((T += S(s, D, O) + B), (D = O + M.length)); - } - return T + S(s, D); - }, - ]; - }, - !!s(function () { - var e = /./; - return ( - (e.exec = function () { - var e = []; - return (e.groups = { a: '7' }), e; - }), - '7' !== ''.replace(e, '$') - ); - }) || - !P || - C, - ); - }, - 71867: (e, t, n) => { - 'use strict'; - var r = n(41924), - o = n(11323), - i = n(71843), - a = n(39989), - s = n(20774), - l = n(53411), - c = n(98170), - u = n(89423), - d = n(12134); - o('search', function (e, t, n) { - return [ - function (t) { - var n = s(this), - o = a(t) ? void 0 : u(t, e); - return o ? r(o, t, n) : new RegExp(t)[e](c(n)); - }, - function (e) { - var r = i(this), - o = c(e), - a = n(t, r, o); - if (a.done) return a.value; - var s = r.lastIndex; - l(s, 0) || (r.lastIndex = 0); - var u = d(r, o); - return l(r.lastIndex, s) || (r.lastIndex = s), null === u ? -1 : u.index; - }, - ]; - }); - }, - 47306: (e, t, n) => { - 'use strict'; - var r = n(72698), - o = n(95417), - i = n(70412), - a = n(41765), - s = n(91854), - l = n(88807), - c = n(13521), - u = n(98170), - d = n(90189).f, - f = n(12283), - h = i.Symbol, - p = h && h.prototype; - if (o && l(h) && (!('description' in p) || void 0 !== h().description)) { - var v = {}, - g = function () { - var e = arguments.length < 1 || void 0 === arguments[0] ? void 0 : u(arguments[0]), - t = c(p, this) ? new h(e) : void 0 === e ? h() : h(e); - return '' === e && (v[t] = !0), t; - }; - f(g, h), (g.prototype = p), (p.constructor = g); - var m = 'Symbol(test)' == String(h('test')), - y = a(p.valueOf), - b = a(p.toString), - x = /^Symbol\((.*)\)[^)]+$/, - w = a(''.replace), - E = a(''.slice); - d(p, 'description', { - configurable: !0, - get: function () { - var e = y(this); - if (s(v, e)) return ''; - var t = b(e), - n = m ? E(t, 7, -1) : w(t, x, '$1'); - return '' === n ? void 0 : n; - }, - }), - r({ global: !0, constructor: !0, forced: !0 }, { Symbol: g }); - } - }, - 3346: (e, t, n) => { - var r = n(70412), - o = n(42706), - i = n(92076), - a = n(78062), - s = n(7001), - l = n(96982), - c = l('iterator'), - u = l('toStringTag'), - d = a.values, - f = function (e, t) { - if (e) { - if (e[c] !== d) - try { - s(e, c, d); - } catch (r) { - e[c] = d; - } - if ((e[u] || s(e, u, t), o[t])) - for (var n in a) - if (e[n] !== a[n]) - try { - s(e, n, a[n]); - } catch (r) { - e[n] = a[n]; - } - } - }; - for (var h in o) f(r[h] && r[h].prototype, h); - f(i, 'DOMTokenList'); - }, - 46457: function (e, t, n) { - var r; - (r = function (e) { - return (function (e) { - var t = {}; - function n(r) { - if (t[r]) return t[r].exports; - var o = (t[r] = { i: r, l: !1, exports: {} }); - return e[r].call(o.exports, o, o.exports, n), (o.l = !0), o.exports; - } - return ( - (n.m = e), - (n.c = t), - (n.d = function (e, t, r) { - n.o(e, t) || Object.defineProperty(e, t, { enumerable: !0, get: r }); - }), - (n.r = function (e) { - 'undefined' != typeof Symbol && - Symbol.toStringTag && - Object.defineProperty(e, Symbol.toStringTag, { value: 'Module' }), - Object.defineProperty(e, '__esModule', { value: !0 }); - }), - (n.t = function (e, t) { - if ((1 & t && (e = n(e)), 8 & t)) return e; - if (4 & t && 'object' == typeof e && e && e.__esModule) return e; - var r = Object.create(null); - if ( - (n.r(r), - Object.defineProperty(r, 'default', { enumerable: !0, value: e }), - 2 & t && 'string' != typeof e) - ) - for (var o in e) - n.d( - r, - o, - function (t) { - return e[t]; - }.bind(null, o), - ); - return r; - }), - (n.n = function (e) { - var t = - e && e.__esModule - ? function () { - return e.default; - } - : function () { - return e; - }; - return n.d(t, 'a', t), t; - }), - (n.o = function (e, t) { - return Object.prototype.hasOwnProperty.call(e, t); - }), - (n.p = ''), - n((n.s = 0)) - ); - })([ - function (e, t, n) { - var r = n(1), - o = function (e) { - e && e('layout', 'dagre', r); - }; - 'undefined' != typeof cytoscape && o(cytoscape), (e.exports = o); - }, - function (e, t, n) { - function r(e) { - return ( - (r = - 'function' == typeof Symbol && 'symbol' == typeof Symbol.iterator - ? function (e) { - return typeof e; - } - : function (e) { - return e && 'function' == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype - ? 'symbol' - : typeof e; - }), - r(e) - ); - } - var o = n(2), - i = n(3), - a = n(4); - function s(e) { - this.options = i({}, o, e); - } - (s.prototype.run = function () { - var e = this.options, - t = e.cy, - n = e.eles, - o = function (e, t) { - return 'function' == typeof t ? t.apply(e, [e]) : t; - }, - i = e.boundingBox || { x1: 0, y1: 0, w: t.width(), h: t.height() }; - void 0 === i.x2 && (i.x2 = i.x1 + i.w), - void 0 === i.w && (i.w = i.x2 - i.x1), - void 0 === i.y2 && (i.y2 = i.y1 + i.h), - void 0 === i.h && (i.h = i.y2 - i.y1); - var s = new a.graphlib.Graph({ multigraph: !0, compound: !0 }), - l = {}, - c = function (e, t) { - null != t && (l[e] = t); - }; - c('nodesep', e.nodeSep), - c('edgesep', e.edgeSep), - c('ranksep', e.rankSep), - c('rankdir', e.rankDir), - c('align', e.align), - c('ranker', e.ranker), - c('acyclicer', e.acyclicer), - s.setGraph(l), - s.setDefaultEdgeLabel(function () { - return {}; - }), - s.setDefaultNodeLabel(function () { - return {}; - }); - for (var u = n.nodes(), d = 0; d < u.length; d++) { - var f = u[d], - h = f.layoutDimensions(e); - s.setNode(f.id(), { width: h.w, height: h.h, name: f.id() }); - } - for (var p = 0; p < u.length; p++) { - var v = u[p]; - v.isChild() && s.setParent(v.id(), v.parent().id()); - } - for ( - var g = n.edges().stdFilter(function (e) { - return !e.source().isParent() && !e.target().isParent(); - }), - m = 0; - m < g.length; - m++ - ) { - var y = g[m]; - s.setEdge( - y.source().id(), - y.target().id(), - { minlen: o(y, e.minLen), weight: o(y, e.edgeWeight), name: y.id() }, - y.id(), - ); - } - a.layout(s); - for (var b, x = s.nodes(), w = 0; w < x.length; w++) { - var E = x[w], - k = s.node(E); - t.getElementById(E).scratch().dagre = k; - } - return ( - e.boundingBox - ? ((b = { x1: 1 / 0, x2: -1 / 0, y1: 1 / 0, y2: -1 / 0 }), - u.forEach(function (e) { - var t = e.scratch().dagre; - (b.x1 = Math.min(b.x1, t.x)), - (b.x2 = Math.max(b.x2, t.x)), - (b.y1 = Math.min(b.y1, t.y)), - (b.y2 = Math.max(b.y2, t.y)); - }), - (b.w = b.x2 - b.x1), - (b.h = b.y2 - b.y1)) - : (b = i), - u.layoutPositions(this, e, function (t) { - var n = (t = 'object' === r(t) ? t : this).scratch().dagre; - return (function (t) { - if (e.boundingBox) { - var n = 0 === b.w ? 0 : (t.x - b.x1) / b.w, - r = 0 === b.h ? 0 : (t.y - b.y1) / b.h; - return { x: i.x1 + n * i.w, y: i.y1 + r * i.h }; - } - return t; - })({ x: n.x, y: n.y }); - }), - this - ); - }), - (e.exports = s); - }, - function (e, t) { - var n = { - nodeSep: void 0, - edgeSep: void 0, - rankSep: void 0, - rankDir: void 0, - align: void 0, - ranker: void 0, - minLen: function (e) { - return 1; - }, - edgeWeight: function (e) { - return 1; - }, - fit: !0, - padding: 30, - spacingFactor: void 0, - nodeDimensionsIncludeLabels: !1, - animate: !1, - animateFilter: function (e, t) { - return !0; - }, - animationDuration: 500, - animationEasing: void 0, - boundingBox: void 0, - transform: function (e, t) { - return t; - }, - ready: function () {}, - stop: function () {}, - }; - e.exports = n; - }, - function (e, t) { - e.exports = - null != Object.assign - ? Object.assign.bind(Object) - : function (e) { - for (var t = arguments.length, n = new Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++) - n[r - 1] = arguments[r]; - return ( - n.forEach(function (t) { - Object.keys(t).forEach(function (n) { - return (e[n] = t[n]); - }); - }), - e - ); - }; - }, - function (t, n) { - t.exports = e; - }, - ]); - }), - (e.exports = r(n(15439))); - }, - 68420: function (e, t, n) { - var r; - (r = function (e) { - return (function (e) { - var t = {}; - function n(r) { - if (t[r]) return t[r].exports; - var o = (t[r] = { i: r, l: !1, exports: {} }); - return e[r].call(o.exports, o, o.exports, n), (o.l = !0), o.exports; - } - return ( - (n.m = e), - (n.c = t), - (n.i = function (e) { - return e; - }), - (n.d = function (e, t, r) { - n.o(e, t) || Object.defineProperty(e, t, { configurable: !1, enumerable: !0, get: r }); - }), - (n.n = function (e) { - var t = - e && e.__esModule - ? function () { - return e.default; - } - : function () { - return e; - }; - return n.d(t, 'a', t), t; - }), - (n.o = function (e, t) { - return Object.prototype.hasOwnProperty.call(e, t); - }), - (n.p = ''), - n((n.s = 7)) - ); - })([ - function (e, t, n) { - 'use strict'; - e.exports = - null != Object.assign - ? Object.assign.bind(Object) - : function (e) { - for (var t = arguments.length, n = Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++) - n[r - 1] = arguments[r]; - return ( - n.forEach(function (t) { - null != t && - Object.keys(t).forEach(function (n) { - return (e[n] = t[n]); - }); - }), - e - ); - }; - }, - function (e, t, n) { - 'use strict'; - var r = n(5).getBoundingBox; - e.exports = { - getRef: function (e, t) { - return { - getBoundingClientRect: function () { - return r(e, t); - }, - }; - }, - }; - }, - function (e, t, n) { - 'use strict'; - var r = n(0), - o = n(1).getRef, - i = n(6).getContent, - a = {}, - s = n(8).createPopper; - e.exports = { - getPopper: function (e, t) { - var n = o(e, t), - l = i(e, t.content), - c = r({}, a, t.popper); - return s(n, l, c); - }, - }; - }, - function (e, t, n) { - 'use strict'; - var r = n(0), - o = n(2).getPopper, - i = n(1).getRef; - function a(e, t) { - var n = function (e) { - return e.isNode() ? { w: e.renderedWidth(), h: e.renderedHeight() } : { w: 3, h: 3 }; - }, - o = e.cy(), - i = { - renderedDimensions: n, - renderedPosition: function (e) { - return e.isNode() - ? (function (e, t) { - var n = e.renderedPosition(), - r = t(e), - o = r.w / 2, - i = r.h / 2; - return { x: n.x - o, y: n.y - i }; - })(e, n) - : (function (e) { - var t = e.midpoint(), - n = e.cy().pan(), - r = e.cy().zoom(); - return { x: t.x * r + n.x, y: t.y * r + n.y }; - })(e); - }, - popper: {}, - cy: o, - }; - return r({}, i, t); - } - function s(e) { - e.length > 1 && - (console.warn('Popper.js Extension should only be used on one element.'), - console.warn('Ignoring all subsequent elements')); - } - e.exports = { - popper: function (e) { - return s(this), o(this[0], a(this[0], e)); - }, - popperRef: function (e) { - return s(this), i(this[0], a(this[0], e)); - }, - }; - }, - function (e, t, n) { - 'use strict'; - var r = n(0), - o = n(2).getPopper, - i = n(1).getRef; - function a(e, t) { - return r( - {}, - { - boundingBox: { top: 0, left: 0, right: 0, bottom: 0, w: 3, h: 3 }, - renderedDimensions: function () { - return { w: 3, h: 3 }; - }, - renderedPosition: function () { - return { x: 0, y: 0 }; - }, - popper: {}, - cy: e, - }, - t, - ); - } - e.exports = { - popper: function (e) { - return o(this, a(this, e)); - }, - popperRef: function (e) { - return i(this, a(this, e)); - }, - }; - }, - function (e, t, n) { - 'use strict'; - e.exports = { - getBoundingBox: function (e, t) { - var n = t.renderedPosition, - r = t.cy, - o = t.renderedDimensions, - i = r.container().getBoundingClientRect(), - a = o(e), - s = n(e); - return { - top: s.y + i.top, - left: s.x + i.left, - right: s.x + a.w + i.left, - bottom: s.y + a.h + i.top, - width: a.w, - height: a.h, - }; - }, - }; - }, - function (e, t, n) { - 'use strict'; - e.exports = { - getContent: function (e, t) { - var n = null; - if ('function' != typeof t) { - if (t instanceof HTMLElement) return t; - throw new Error("Can not create popper from 'target' with unknown type"); - } - if (null === (n = t(e))) throw new Error("No 'target' specified to create popper"); - return n; - }, - }; - }, - function (e, t, n) { - 'use strict'; - var r = n(4), - o = n(3), - i = function (e) { - e && - (e('core', 'popper', r.popper), - e('collection', 'popper', o.popper), - e('core', 'popperRef', r.popperRef), - e('collection', 'popperRef', o.popperRef)); - }; - 'undefined' != typeof cytoscape && i(cytoscape), (e.exports = i); - }, - function (t, n) { - t.exports = e; - }, - ]); - }), - (e.exports = r(n(1020))); - }, - 50413: (e, t, n) => { - 'use strict'; - var r = n(77837), - o = n(97597), - i = n(13546), - a = n(26226), - s = n(59430); - function l(e) { - return e && 'object' == typeof e && 'default' in e ? e : { default: e }; - } - var c = l(r), - u = l(o), - d = l(i), - f = l(a), - h = l(s); - function p(e) { - return ( - (p = - 'function' == typeof Symbol && 'symbol' == typeof Symbol.iterator - ? function (e) { - return typeof e; - } - : function (e) { - return e && 'function' == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype - ? 'symbol' - : typeof e; - }), - p(e) - ); - } - function v(e, t) { - if (!(e instanceof t)) throw new TypeError('Cannot call a class as a function'); - } - function g(e, t) { - for (var n = 0; n < t.length; n++) { - var r = t[n]; - (r.enumerable = r.enumerable || !1), - (r.configurable = !0), - 'value' in r && (r.writable = !0), - Object.defineProperty(e, r.key, r); - } - } - function m(e, t, n) { - return t && g(e.prototype, t), n && g(e, n), Object.defineProperty(e, 'prototype', { writable: !1 }), e; - } - function y(e, t, n) { - return ( - t in e - ? Object.defineProperty(e, t, { value: n, enumerable: !0, configurable: !0, writable: !0 }) - : (e[t] = n), - e - ); - } - function b(e, t) { - return ( - (function (e) { - if (Array.isArray(e)) return e; - })(e) || - (function (e, t) { - var n = null == e ? null : ('undefined' != typeof Symbol && e[Symbol.iterator]) || e['@@iterator']; - if (null == n) return; - var r, - o, - i = [], - a = !0, - s = !1; - try { - for (n = n.call(e); !(a = (r = n.next()).done) && (i.push(r.value), !t || i.length !== t); a = !0); - } catch (l) { - (s = !0), (o = l); - } finally { - try { - a || null == n.return || n.return(); - } finally { - if (s) throw o; - } - } - return i; - })(e, t) || - (function (e, t) { - if (!e) return; - if ('string' == typeof e) return x(e, t); - var n = Object.prototype.toString.call(e).slice(8, -1); - 'Object' === n && e.constructor && (n = e.constructor.name); - if ('Map' === n || 'Set' === n) return Array.from(e); - if ('Arguments' === n || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return x(e, t); - })(e, t) || - (function () { - throw new TypeError( - 'Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.', - ); - })() - ); - } - function x(e, t) { - (null == t || t > e.length) && (t = e.length); - for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; - return r; - } - var w = 'undefined' == typeof window ? null : window, - E = w ? w.navigator : null; - w && w.document; - var k = p(''), - _ = p({}), - S = p(function () {}), - P = 'undefined' == typeof HTMLElement ? 'undefined' : p(HTMLElement), - C = function (e) { - return e && e.instanceString && T(e.instanceString) ? e.instanceString() : null; - }, - j = function (e) { - return null != e && p(e) == k; - }, - T = function (e) { - return null != e && p(e) === S; - }, - D = function (e) { - return !A(e) && (Array.isArray ? Array.isArray(e) : null != e && e instanceof Array); - }, - N = function (e) { - return null != e && p(e) === _ && !D(e) && e.constructor === Object; - }, - M = function (e) { - return null != e && p(e) === p(1) && !isNaN(e); - }, - O = function (e) { - return 'undefined' === P ? void 0 : null != e && e instanceof HTMLElement; - }, - A = function (e) { - return R(e) || L(e); - }, - R = function (e) { - return 'collection' === C(e) && e._private.single; - }, - L = function (e) { - return 'collection' === C(e) && !e._private.single; - }, - I = function (e) { - return 'core' === C(e); - }, - B = function (e) { - return 'stylesheet' === C(e); - }, - F = function (e) { - return null == e || !('' !== e && !e.match(/^\s+$/)); - }, - z = function (e) { - return ( - (function (e) { - return null != e && p(e) === _; - })(e) && T(e.then) - ); - }, - V = function (e, t) { - t || - (t = function () { - if (1 === arguments.length) return arguments[0]; - if (0 === arguments.length) return 'undefined'; - for (var e = [], t = 0; t < arguments.length; t++) e.push(arguments[t]); - return e.join('$'); - }); - var n = function n() { - var r, - o = arguments, - i = t.apply(this, o), - a = n.cache; - return (r = a[i]) || (r = a[i] = e.apply(this, o)), r; - }; - return (n.cache = {}), n; - }, - G = V(function (e) { - return e.replace(/([A-Z])/g, function (e) { - return '-' + e.toLowerCase(); - }); - }), - H = V(function (e) { - return e.replace(/(-\w)/g, function (e) { - return e[1].toUpperCase(); - }); - }), - W = V( - function (e, t) { - return e + t[0].toUpperCase() + t.substring(1); - }, - function (e, t) { - return e + '$' + t; - }, - ), - U = function (e) { - return F(e) ? e : e.charAt(0).toUpperCase() + e.substring(1); - }, - q = '(?:[-+]?(?:(?:\\d+|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?))', - Y = 'rgb[a]?\\((' + q + '[%]?)\\s*,\\s*(' + q + '[%]?)\\s*,\\s*(' + q + '[%]?)(?:\\s*,\\s*(' + q + '))?\\)', - X = - 'rgb[a]?\\((?:' + - q + - '[%]?)\\s*,\\s*(?:' + - q + - '[%]?)\\s*,\\s*(?:' + - q + - '[%]?)(?:\\s*,\\s*(?:' + - q + - '))?\\)', - $ = 'hsl[a]?\\((' + q + ')\\s*,\\s*(' + q + '[%])\\s*,\\s*(' + q + '[%])(?:\\s*,\\s*(' + q + '))?\\)', - K = 'hsl[a]?\\((?:' + q + ')\\s*,\\s*(?:' + q + '[%])\\s*,\\s*(?:' + q + '[%])(?:\\s*,\\s*(?:' + q + '))?\\)', - Z = function (e, t) { - return e < t ? -1 : e > t ? 1 : 0; - }, - Q = - null != Object.assign - ? Object.assign.bind(Object) - : function (e) { - for (var t = arguments, n = 1; n < t.length; n++) { - var r = t[n]; - if (null != r) - for (var o = Object.keys(r), i = 0; i < o.length; i++) { - var a = o[i]; - e[a] = r[a]; - } - } - return e; - }, - J = function (e) { - return ( - (D(e) ? e : null) || - (function (e) { - return ee[e.toLowerCase()]; - })(e) || - (function (e) { - if ((4 === e.length || 7 === e.length) && '#' === e[0]) { - var t, - n, - r, - o = 16; - return ( - 4 === e.length - ? ((t = parseInt(e[1] + e[1], o)), (n = parseInt(e[2] + e[2], o)), (r = parseInt(e[3] + e[3], o))) - : ((t = parseInt(e[1] + e[2], o)), (n = parseInt(e[3] + e[4], o)), (r = parseInt(e[5] + e[6], o))), - [t, n, r] - ); - } - })(e) || - (function (e) { - var t, - n = new RegExp('^' + Y + '$').exec(e); - if (n) { - t = []; - for (var r = [], o = 1; o <= 3; o++) { - var i = n[o]; - if ( - ('%' === i[i.length - 1] && (r[o] = !0), - (i = parseFloat(i)), - r[o] && (i = (i / 100) * 255), - i < 0 || i > 255) - ) - return; - t.push(Math.floor(i)); - } - var a = r[1] || r[2] || r[3], - s = r[1] && r[2] && r[3]; - if (a && !s) return; - var l = n[4]; - if (void 0 !== l) { - if ((l = parseFloat(l)) < 0 || l > 1) return; - t.push(l); - } - } - return t; - })(e) || - (function (e) { - var t, n, r, o, i, a, s, l; - function c(e, t, n) { - return ( - n < 0 && (n += 1), - n > 1 && (n -= 1), - n < 1 / 6 ? e + 6 * (t - e) * n : n < 0.5 ? t : n < 2 / 3 ? e + (t - e) * (2 / 3 - n) * 6 : e - ); - } - var u = new RegExp('^' + $ + '$').exec(e); - if (u) { - if ( - ((n = parseInt(u[1])) < 0 ? (n = (360 - ((-1 * n) % 360)) % 360) : n > 360 && (n %= 360), - (n /= 360), - (r = parseFloat(u[2])) < 0 || r > 100) - ) - return; - if (((r /= 100), (o = parseFloat(u[3])) < 0 || o > 100)) return; - if (((o /= 100), void 0 !== (i = u[4]) && ((i = parseFloat(i)) < 0 || i > 1))) return; - if (0 === r) a = s = l = Math.round(255 * o); - else { - var d = o < 0.5 ? o * (1 + r) : o + r - o * r, - f = 2 * o - d; - (a = Math.round(255 * c(f, d, n + 1 / 3))), - (s = Math.round(255 * c(f, d, n))), - (l = Math.round(255 * c(f, d, n - 1 / 3))); - } - t = [a, s, l, i]; - } - return t; - })(e) - ); - }, - ee = { - transparent: [0, 0, 0, 0], - aliceblue: [240, 248, 255], - antiquewhite: [250, 235, 215], - aqua: [0, 255, 255], - aquamarine: [127, 255, 212], - azure: [240, 255, 255], - beige: [245, 245, 220], - bisque: [255, 228, 196], - black: [0, 0, 0], - blanchedalmond: [255, 235, 205], - blue: [0, 0, 255], - blueviolet: [138, 43, 226], - brown: [165, 42, 42], - burlywood: [222, 184, 135], - cadetblue: [95, 158, 160], - chartreuse: [127, 255, 0], - chocolate: [210, 105, 30], - coral: [255, 127, 80], - cornflowerblue: [100, 149, 237], - cornsilk: [255, 248, 220], - crimson: [220, 20, 60], - cyan: [0, 255, 255], - darkblue: [0, 0, 139], - darkcyan: [0, 139, 139], - darkgoldenrod: [184, 134, 11], - darkgray: [169, 169, 169], - darkgreen: [0, 100, 0], - darkgrey: [169, 169, 169], - darkkhaki: [189, 183, 107], - darkmagenta: [139, 0, 139], - darkolivegreen: [85, 107, 47], - darkorange: [255, 140, 0], - darkorchid: [153, 50, 204], - darkred: [139, 0, 0], - darksalmon: [233, 150, 122], - darkseagreen: [143, 188, 143], - darkslateblue: [72, 61, 139], - darkslategray: [47, 79, 79], - darkslategrey: [47, 79, 79], - darkturquoise: [0, 206, 209], - darkviolet: [148, 0, 211], - deeppink: [255, 20, 147], - deepskyblue: [0, 191, 255], - dimgray: [105, 105, 105], - dimgrey: [105, 105, 105], - dodgerblue: [30, 144, 255], - firebrick: [178, 34, 34], - floralwhite: [255, 250, 240], - forestgreen: [34, 139, 34], - fuchsia: [255, 0, 255], - gainsboro: [220, 220, 220], - ghostwhite: [248, 248, 255], - gold: [255, 215, 0], - goldenrod: [218, 165, 32], - gray: [128, 128, 128], - grey: [128, 128, 128], - green: [0, 128, 0], - greenyellow: [173, 255, 47], - honeydew: [240, 255, 240], - hotpink: [255, 105, 180], - indianred: [205, 92, 92], - indigo: [75, 0, 130], - ivory: [255, 255, 240], - khaki: [240, 230, 140], - lavender: [230, 230, 250], - lavenderblush: [255, 240, 245], - lawngreen: [124, 252, 0], - lemonchiffon: [255, 250, 205], - lightblue: [173, 216, 230], - lightcoral: [240, 128, 128], - lightcyan: [224, 255, 255], - lightgoldenrodyellow: [250, 250, 210], - lightgray: [211, 211, 211], - lightgreen: [144, 238, 144], - lightgrey: [211, 211, 211], - lightpink: [255, 182, 193], - lightsalmon: [255, 160, 122], - lightseagreen: [32, 178, 170], - lightskyblue: [135, 206, 250], - lightslategray: [119, 136, 153], - lightslategrey: [119, 136, 153], - lightsteelblue: [176, 196, 222], - lightyellow: [255, 255, 224], - lime: [0, 255, 0], - limegreen: [50, 205, 50], - linen: [250, 240, 230], - magenta: [255, 0, 255], - maroon: [128, 0, 0], - mediumaquamarine: [102, 205, 170], - mediumblue: [0, 0, 205], - mediumorchid: [186, 85, 211], - mediumpurple: [147, 112, 219], - mediumseagreen: [60, 179, 113], - mediumslateblue: [123, 104, 238], - mediumspringgreen: [0, 250, 154], - mediumturquoise: [72, 209, 204], - mediumvioletred: [199, 21, 133], - midnightblue: [25, 25, 112], - mintcream: [245, 255, 250], - mistyrose: [255, 228, 225], - moccasin: [255, 228, 181], - navajowhite: [255, 222, 173], - navy: [0, 0, 128], - oldlace: [253, 245, 230], - olive: [128, 128, 0], - olivedrab: [107, 142, 35], - orange: [255, 165, 0], - orangered: [255, 69, 0], - orchid: [218, 112, 214], - palegoldenrod: [238, 232, 170], - palegreen: [152, 251, 152], - paleturquoise: [175, 238, 238], - palevioletred: [219, 112, 147], - papayawhip: [255, 239, 213], - peachpuff: [255, 218, 185], - peru: [205, 133, 63], - pink: [255, 192, 203], - plum: [221, 160, 221], - powderblue: [176, 224, 230], - purple: [128, 0, 128], - red: [255, 0, 0], - rosybrown: [188, 143, 143], - royalblue: [65, 105, 225], - saddlebrown: [139, 69, 19], - salmon: [250, 128, 114], - sandybrown: [244, 164, 96], - seagreen: [46, 139, 87], - seashell: [255, 245, 238], - sienna: [160, 82, 45], - silver: [192, 192, 192], - skyblue: [135, 206, 235], - slateblue: [106, 90, 205], - slategray: [112, 128, 144], - slategrey: [112, 128, 144], - snow: [255, 250, 250], - springgreen: [0, 255, 127], - steelblue: [70, 130, 180], - tan: [210, 180, 140], - teal: [0, 128, 128], - thistle: [216, 191, 216], - tomato: [255, 99, 71], - turquoise: [64, 224, 208], - violet: [238, 130, 238], - wheat: [245, 222, 179], - white: [255, 255, 255], - whitesmoke: [245, 245, 245], - yellow: [255, 255, 0], - yellowgreen: [154, 205, 50], - }, - te = function (e) { - for (var t = e.map, n = e.keys, r = n.length, o = 0; o < r; o++) { - var i = n[o]; - if (N(i)) throw Error('Tried to set map with object key'); - o < n.length - 1 ? (null == t[i] && (t[i] = {}), (t = t[i])) : (t[i] = e.value); - } - }, - ne = function (e) { - for (var t = e.map, n = e.keys, r = n.length, o = 0; o < r; o++) { - var i = n[o]; - if (N(i)) throw Error('Tried to get map with object key'); - if (null == (t = t[i])) return t; - } - return t; - }, - re = w ? w.performance : null, - oe = - re && re.now - ? function () { - return re.now(); - } - : function () { - return Date.now(); - }, - ie = (function () { - if (w) { - if (w.requestAnimationFrame) - return function (e) { - w.requestAnimationFrame(e); - }; - if (w.mozRequestAnimationFrame) - return function (e) { - w.mozRequestAnimationFrame(e); - }; - if (w.webkitRequestAnimationFrame) - return function (e) { - w.webkitRequestAnimationFrame(e); - }; - if (w.msRequestAnimationFrame) - return function (e) { - w.msRequestAnimationFrame(e); - }; - } - return function (e) { - e && - setTimeout(function () { - e(oe()); - }, 1e3 / 60); - }; - })(), - ae = function (e) { - return ie(e); - }, - se = oe, - le = 9261, - ce = 5381, - ue = function (e) { - for (var t, n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : le; !(t = e.next()).done; ) - n = (65599 * n + t.value) | 0; - return n; - }, - de = function (e) { - return (65599 * (arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : le) + e) | 0; - }, - fe = function (e) { - var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : ce; - return ((t << 5) + t + e) | 0; - }, - he = function (e) { - return 2097152 * e[0] + e[1]; - }, - pe = function (e, t) { - return [de(e[0], t[0]), fe(e[1], t[1])]; - }, - ve = function (e, t) { - var n = { value: 0, done: !1 }, - r = 0, - o = e.length; - return ue( - { - next: function () { - return r < o ? (n.value = e.charCodeAt(r++)) : (n.done = !0), n; - }, - }, - t, - ); - }, - ge = function () { - return me(arguments); - }, - me = function (e) { - for (var t, n = 0; n < e.length; n++) { - var r = e[n]; - t = 0 === n ? ve(r) : ve(r, t); - } - return t; - }, - ye = !0, - be = null != console.warn, - xe = null != console.trace, - we = Number.MAX_SAFE_INTEGER || 9007199254740991, - Ee = function () { - return !0; - }, - ke = function () { - return !1; - }, - _e = function () { - return 0; - }, - Se = function () {}, - Pe = function (e) { - throw new Error(e); - }, - Ce = function (e) { - if (void 0 === e) return ye; - ye = !!e; - }, - je = function (e) { - Ce() && (be ? console.warn(e) : (console.log(e), xe && console.trace())); - }, - Te = function (e) { - return null == e - ? e - : D(e) - ? e.slice() - : N(e) - ? (function (e) { - return Q({}, e); - })(e) - : e; - }, - De = function (e, t) { - for ( - t = e = ''; - e++ < 36; - t += (51 * e) & 52 ? (15 ^ e ? 8 ^ (Math.random() * (20 ^ e ? 16 : 4)) : 4).toString(16) : '-' - ); - return t; - }, - Ne = {}, - Me = function () { - return Ne; - }, - Oe = function (e) { - var t = Object.keys(e); - return function (n) { - for (var r = {}, o = 0; o < t.length; o++) { - var i = t[o], - a = null == n ? void 0 : n[i]; - r[i] = void 0 === a ? e[i] : a; - } - return r; - }; - }, - Ae = function (e, t, n) { - for (var r = e.length - 1; r >= 0 && (e[r] !== t || (e.splice(r, 1), !n)); r--); - }, - Re = function (e) { - e.splice(0, e.length); - }, - Le = function (e, t, n) { - return n && (t = W(n, t)), e[t]; - }, - Ie = function (e, t, n, r) { - n && (t = W(n, t)), (e[t] = r); - }, - Be = - 'undefined' != typeof Map - ? Map - : (function () { - function e() { - v(this, e), (this._obj = {}); - } - return ( - m(e, [ - { - key: 'set', - value: function (e, t) { - return (this._obj[e] = t), this; - }, - }, - { - key: 'delete', - value: function (e) { - return (this._obj[e] = void 0), this; - }, - }, - { - key: 'clear', - value: function () { - this._obj = {}; - }, - }, - { - key: 'has', - value: function (e) { - return void 0 !== this._obj[e]; - }, - }, - { - key: 'get', - value: function (e) { - return this._obj[e]; - }, - }, - ]), - e - ); - })(), - Fe = (function () { - function e(t) { - if ((v(this, e), (this._obj = Object.create(null)), (this.size = 0), null != t)) { - var n; - n = null != t.instanceString && t.instanceString() === this.instanceString() ? t.toArray() : t; - for (var r = 0; r < n.length; r++) this.add(n[r]); - } - } - return ( - m(e, [ - { - key: 'instanceString', - value: function () { - return 'set'; - }, - }, - { - key: 'add', - value: function (e) { - var t = this._obj; - 1 !== t[e] && ((t[e] = 1), this.size++); - }, - }, - { - key: 'delete', - value: function (e) { - var t = this._obj; - 1 === t[e] && ((t[e] = 0), this.size--); - }, - }, - { - key: 'clear', - value: function () { - this._obj = Object.create(null); - }, - }, - { - key: 'has', - value: function (e) { - return 1 === this._obj[e]; - }, - }, - { - key: 'toArray', - value: function () { - var e = this; - return Object.keys(this._obj).filter(function (t) { - return e.has(t); - }); - }, - }, - { - key: 'forEach', - value: function (e, t) { - return this.toArray().forEach(e, t); - }, - }, - ]), - e - ); - })(), - ze = 'undefined' !== ('undefined' == typeof Set ? 'undefined' : p(Set)) ? Set : Fe, - Ve = function (e, t) { - var n = !(arguments.length > 2 && void 0 !== arguments[2]) || arguments[2]; - if (void 0 !== e && void 0 !== t && I(e)) { - var r = t.group; - if ( - (null == r && (r = t.data && null != t.data.source && null != t.data.target ? 'edges' : 'nodes'), - 'nodes' === r || 'edges' === r) - ) { - (this.length = 1), (this[0] = this); - var o = (this._private = { - cy: e, - single: !0, - data: t.data || {}, - position: t.position || { x: 0, y: 0 }, - autoWidth: void 0, - autoHeight: void 0, - autoPadding: void 0, - compoundBoundsClean: !1, - listeners: [], - group: r, - style: {}, - rstyle: {}, - styleCxts: [], - styleKeys: {}, - removed: !0, - selected: !!t.selected, - selectable: void 0 === t.selectable || !!t.selectable, - locked: !!t.locked, - grabbed: !1, - grabbable: void 0 === t.grabbable || !!t.grabbable, - pannable: void 0 === t.pannable ? 'edges' === r : !!t.pannable, - active: !1, - classes: new ze(), - animation: { current: [], queue: [] }, - rscratch: {}, - scratch: t.scratch || {}, - edges: [], - children: [], - parent: t.parent && t.parent.isNode() ? t.parent : null, - traversalCache: {}, - backgrounding: !1, - bbCache: null, - bbCacheShift: { x: 0, y: 0 }, - bodyBounds: null, - overlayBounds: null, - labelBounds: { all: null, source: null, target: null, main: null }, - arrowBounds: { source: null, target: null, 'mid-source': null, 'mid-target': null }, - }); - if ( - (null == o.position.x && (o.position.x = 0), - null == o.position.y && (o.position.y = 0), - t.renderedPosition) - ) { - var i = t.renderedPosition, - a = e.pan(), - s = e.zoom(); - o.position = { x: (i.x - a.x) / s, y: (i.y - a.y) / s }; - } - var l = []; - D(t.classes) ? (l = t.classes) : j(t.classes) && (l = t.classes.split(/\s+/)); - for (var c = 0, u = l.length; c < u; c++) { - var d = l[c]; - d && '' !== d && o.classes.add(d); - } - this.createEmitter(); - var f = t.style || t.css; - f && - (je( - 'Setting a `style` bypass at element creation should be done only when absolutely necessary. Try to use the stylesheet instead.', - ), - this.style(f)), - (void 0 === n || n) && this.restore(); - } else Pe('An element must be of type `nodes` or `edges`; you specified `' + r + '`'); - } else Pe('An element must have a core reference and parameters set'); - }, - Ge = function (e) { - return ( - (e = { bfs: e.bfs || !e.dfs, dfs: e.dfs || !e.bfs }), - function (t, n, r) { - var o; - N(t) && !A(t) && ((t = (o = t).roots || o.root), (n = o.visit), (r = o.directed)), - (r = 2 !== arguments.length || T(n) ? r : n), - (n = T(n) ? n : function () {}); - for ( - var i, - a = this._private.cy, - s = (t = j(t) ? this.filter(t) : t), - l = [], - c = [], - u = {}, - d = {}, - f = {}, - h = 0, - p = this.byGroup(), - v = p.nodes, - g = p.edges, - m = 0; - m < s.length; - m++ - ) { - var y = s[m], - b = y.id(); - y.isNode() && (l.unshift(y), e.bfs && ((f[b] = !0), c.push(y)), (d[b] = 0)); - } - for ( - var x = function () { - var t = e.bfs ? l.shift() : l.pop(), - o = t.id(); - if (e.dfs) { - if (f[o]) return 'continue'; - (f[o] = !0), c.push(t); - } - var a, - s = d[o], - p = u[o], - m = null != p ? p.source() : null, - y = null != p ? p.target() : null, - b = null == p ? void 0 : t.same(m) ? y[0] : m[0]; - if (!0 === (a = n(t, p, b, h++, s))) return (i = t), 'break'; - if (!1 === a) return 'break'; - for ( - var x = t.connectedEdges().filter(function (e) { - return (!r || e.source().same(t)) && g.has(e); - }), - w = 0; - w < x.length; - w++ - ) { - var E = x[w], - k = E.connectedNodes().filter(function (e) { - return !e.same(t) && v.has(e); - }), - _ = k.id(); - 0 === k.length || - f[_] || - ((k = k[0]), l.push(k), e.bfs && ((f[_] = !0), c.push(k)), (u[_] = E), (d[_] = d[o] + 1)); - } - }; - 0 !== l.length; - - ) { - var w = x(); - if ('continue' !== w && 'break' === w) break; - } - for (var E = a.collection(), k = 0; k < c.length; k++) { - var _ = c[k], - S = u[_.id()]; - null != S && E.push(S), E.push(_); - } - return { path: a.collection(E), found: a.collection(i) }; - } - ); - }, - He = { breadthFirstSearch: Ge({ bfs: !0 }), depthFirstSearch: Ge({ dfs: !0 }) }; - (He.bfs = He.breadthFirstSearch), (He.dfs = He.depthFirstSearch); - var We = Oe({ - root: null, - weight: function (e) { - return 1; - }, - directed: !1, - }), - Ue = { - dijkstra: function (e) { - if (!N(e)) { - var t = arguments; - e = { root: t[0], weight: t[1], directed: t[2] }; - } - var n = We(e), - r = n.root, - o = n.weight, - i = n.directed, - a = this, - s = o, - l = j(r) ? this.filter(r)[0] : r[0], - c = {}, - d = {}, - f = {}, - h = this.byGroup(), - p = h.nodes, - v = h.edges; - v.unmergeBy(function (e) { - return e.isLoop(); - }); - for ( - var g = function (e) { - return c[e.id()]; - }, - m = function (e, t) { - (c[e.id()] = t), y.updateItem(e); - }, - y = new u.default(function (e, t) { - return g(e) - g(t); - }), - b = 0; - b < p.length; - b++ - ) { - var x = p[b]; - (c[x.id()] = x.same(l) ? 0 : 1 / 0), y.push(x); - } - for ( - var w = function (e, t) { - for (var n, r = (i ? e.edgesTo(t) : e.edgesWith(t)).intersect(v), o = 1 / 0, a = 0; a < r.length; a++) { - var l = r[a], - c = s(l); - (c < o || !n) && ((o = c), (n = l)); - } - return { edge: n, dist: o }; - }; - y.size() > 0; - - ) { - var E = y.pop(), - k = g(E), - _ = E.id(); - if (((f[_] = k), k !== 1 / 0)) - for (var S = E.neighborhood().intersect(p), P = 0; P < S.length; P++) { - var C = S[P], - T = C.id(), - D = w(E, C), - M = k + D.dist; - M < g(C) && (m(C, M), (d[T] = { node: E, edge: D.edge })); - } - } - return { - distanceTo: function (e) { - var t = j(e) ? p.filter(e)[0] : e[0]; - return f[t.id()]; - }, - pathTo: function (e) { - var t = j(e) ? p.filter(e)[0] : e[0], - n = [], - r = t, - o = r.id(); - if (t.length > 0) - for (n.unshift(t); d[o]; ) { - var i = d[o]; - n.unshift(i.edge), n.unshift(i.node), (o = (r = i.node).id()); - } - return a.spawn(n); - }, - }; - }, - }, - qe = { - kruskal: function (e) { - e = - e || - function (e) { - return 1; - }; - for ( - var t = this.byGroup(), - n = t.nodes, - r = t.edges, - o = n.length, - i = new Array(o), - a = n, - s = function (e) { - for (var t = 0; t < i.length; t++) { - if (i[t].has(e)) return t; - } - }, - l = 0; - l < o; - l++ - ) - i[l] = this.spawn(n[l]); - for ( - var c = r.sort(function (t, n) { - return e(t) - e(n); - }), - u = 0; - u < c.length; - u++ - ) { - var d = c[u], - f = d.source()[0], - h = d.target()[0], - p = s(f), - v = s(h), - g = i[p], - m = i[v]; - p !== v && (a.merge(d), g.merge(m), i.splice(v, 1)); - } - return a; - }, - }, - Ye = Oe({ - root: null, - goal: null, - weight: function (e) { - return 1; - }, - heuristic: function (e) { - return 0; - }, - directed: !1, - }), - Xe = { - aStar: function (e) { - var t = this.cy(), - n = Ye(e), - r = n.root, - o = n.goal, - i = n.heuristic, - a = n.directed, - s = n.weight; - (r = t.collection(r)[0]), (o = t.collection(o)[0]); - var l, - c, - d = r.id(), - f = o.id(), - h = {}, - p = {}, - v = {}, - g = new u.default(function (e, t) { - return p[e.id()] - p[t.id()]; - }), - m = new ze(), - y = {}, - b = {}, - x = function (e, t) { - g.push(e), m.add(t); - }; - x(r, d), (h[d] = 0), (p[d] = i(r)); - for (var w, E = 0; g.size() > 0; ) { - if (((l = g.pop()), (c = l.id()), m.delete(c), E++, c === f)) { - for (var k = [], _ = o, S = f, P = b[S]; k.unshift(_), null != P && k.unshift(P), null != (_ = y[S]); ) - P = b[(S = _.id())]; - return { found: !0, distance: h[c], path: this.spawn(k), steps: E }; - } - v[c] = !0; - for (var C = l._private.edges, j = 0; j < C.length; j++) { - var T = C[j]; - if (this.hasElementWithId(T.id()) && (!a || T.data('source') === c)) { - var D = T.source(), - N = T.target(), - M = D.id() !== c ? D : N, - O = M.id(); - if (this.hasElementWithId(O) && !v[O]) { - var A = h[c] + s(T); - (w = O), - m.has(w) - ? A < h[O] && ((h[O] = A), (p[O] = A + i(M)), (y[O] = l), (b[O] = T)) - : ((h[O] = A), (p[O] = A + i(M)), x(M, O), (y[O] = l), (b[O] = T)); - } - } - } - } - return { found: !1, distance: void 0, path: void 0, steps: E }; - }, - }, - $e = Oe({ - weight: function (e) { - return 1; - }, - directed: !1, - }), - Ke = { - floydWarshall: function (e) { - for ( - var t = this.cy(), - n = $e(e), - r = n.weight, - o = n.directed, - i = r, - a = this.byGroup(), - s = a.nodes, - l = a.edges, - c = s.length, - u = c * c, - d = function (e) { - return s.indexOf(e); - }, - f = function (e) { - return s[e]; - }, - h = new Array(u), - p = 0; - p < u; - p++ - ) { - var v = p % c, - g = (p - v) / c; - h[p] = g === v ? 0 : 1 / 0; - } - for (var m = new Array(u), y = new Array(u), b = 0; b < l.length; b++) { - var x = l[b], - w = x.source()[0], - E = x.target()[0]; - if (w !== E) { - var k = d(w), - _ = d(E), - S = k * c + _, - P = i(x); - if ((h[S] > P && ((h[S] = P), (m[S] = _), (y[S] = x)), !o)) { - var C = _ * c + k; - !o && h[C] > P && ((h[C] = P), (m[C] = k), (y[C] = x)); - } - } - } - for (var T = 0; T < c; T++) - for (var D = 0; D < c; D++) - for (var N = D * c + T, M = 0; M < c; M++) { - var O = D * c + M, - A = T * c + M; - h[N] + h[A] < h[O] && ((h[O] = h[N] + h[A]), (m[O] = m[N])); - } - var R = function (e) { - return d( - (function (e) { - return (j(e) ? t.filter(e) : e)[0]; - })(e), - ); - }, - L = { - distance: function (e, t) { - var n = R(e), - r = R(t); - return h[n * c + r]; - }, - path: function (e, n) { - var r = R(e), - o = R(n), - i = f(r); - if (r === o) return i.collection(); - if (null == m[r * c + o]) return t.collection(); - var a, - s = t.collection(), - l = r; - for (s.merge(i); r !== o; ) - (l = r), (r = m[r * c + o]), (a = y[l * c + r]), s.merge(a), s.merge(f(r)); - return s; - }, - }; - return L; - }, - }, - Ze = Oe({ - weight: function (e) { - return 1; - }, - directed: !1, - root: null, - }), - Qe = { - bellmanFord: function (e) { - var t = this, - n = Ze(e), - r = n.weight, - o = n.directed, - i = n.root, - a = r, - s = this, - l = this.cy(), - c = this.byGroup(), - u = c.edges, - d = c.nodes, - f = d.length, - h = new Be(), - p = !1, - v = []; - (i = l.collection(i)[0]), - u.unmergeBy(function (e) { - return e.isLoop(); - }); - for ( - var g = u.length, - m = function (e) { - var t = h.get(e.id()); - return t || ((t = {}), h.set(e.id(), t)), t; - }, - y = function (e) { - return (j(e) ? l.$(e) : e)[0]; - }, - b = 0; - b < f; - b++ - ) { - var x = d[b], - w = m(x); - x.same(i) ? (w.dist = 0) : (w.dist = 1 / 0), (w.pred = null), (w.edge = null); - } - for ( - var E = !1, - k = function (e, t, n, r, o, i) { - var a = r.dist + i; - a < o.dist && !n.same(r.edge) && ((o.dist = a), (o.pred = e), (o.edge = n), (E = !0)); - }, - _ = 1; - _ < f; - _++ - ) { - E = !1; - for (var S = 0; S < g; S++) { - var P = u[S], - C = P.source(), - T = P.target(), - D = a(P), - N = m(C), - M = m(T); - k(C, 0, P, N, M, D), o || k(T, 0, P, M, N, D); - } - if (!E) break; - } - if (E) - for (var O = [], A = 0; A < g; A++) { - var R = u[A], - L = R.source(), - I = R.target(), - B = a(R), - F = m(L).dist, - z = m(I).dist; - if (F + B < z || (!o && z + B < F)) { - if ( - (p || (je('Graph contains a negative weight cycle for Bellman-Ford'), (p = !0)), - !1 === e.findNegativeWeightCycles) - ) - break; - var V = []; - F + B < z && V.push(L), !o && z + B < F && V.push(I); - for (var G = V.length, H = 0; H < G; H++) { - var W = V[H], - U = [W]; - U.push(m(W).edge); - for (var q = m(W).pred; -1 === U.indexOf(q); ) U.push(q), U.push(m(q).edge), (q = m(q).pred); - for (var Y = (U = U.slice(U.indexOf(q)))[0].id(), X = 0, $ = 2; $ < U.length; $ += 2) - U[$].id() < Y && ((Y = U[$].id()), (X = $)); - (U = U.slice(X).concat(U.slice(0, X))).push(U[0]); - var K = U.map(function (e) { - return e.id(); - }).join(','); - -1 === O.indexOf(K) && (v.push(s.spawn(U)), O.push(K)); - } - } - } - return { - distanceTo: function (e) { - return m(y(e)).dist; - }, - pathTo: function (e) { - for (var n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : i, r = [], o = y(e); ; ) { - if (null == o) return t.spawn(); - var a = m(o), - l = a.edge, - c = a.pred; - if ((r.unshift(o[0]), o.same(n) && r.length > 0)) break; - null != l && r.unshift(l), (o = c); - } - return s.spawn(r); - }, - hasNegativeWeightCycle: p, - negativeWeightCycles: v, - }; - }, - }, - Je = Math.sqrt(2), - et = function (e, t, n) { - 0 === n.length && Pe('Karger-Stein must be run on a connected (sub)graph'); - for (var r = n[e], o = r[1], i = r[2], a = t[o], s = t[i], l = n, c = l.length - 1; c >= 0; c--) { - var u = l[c], - d = u[1], - f = u[2]; - ((t[d] === a && t[f] === s) || (t[d] === s && t[f] === a)) && l.splice(c, 1); - } - for (var h = 0; h < l.length; h++) { - var p = l[h]; - p[1] === s ? ((l[h] = p.slice()), (l[h][1] = a)) : p[2] === s && ((l[h] = p.slice()), (l[h][2] = a)); - } - for (var v = 0; v < t.length; v++) t[v] === s && (t[v] = a); - return l; - }, - tt = function (e, t, n, r) { - for (; n > r; ) { - var o = Math.floor(Math.random() * t.length); - (t = et(o, e, t)), n--; - } - return t; - }, - nt = { - kargerStein: function () { - var e = this, - t = this.byGroup(), - n = t.nodes, - r = t.edges; - r.unmergeBy(function (e) { - return e.isLoop(); - }); - var o = n.length, - i = r.length, - a = Math.ceil(Math.pow(Math.log(o) / Math.LN2, 2)), - s = Math.floor(o / Je); - if (!(o < 2)) { - for (var l = [], c = 0; c < i; c++) { - var u = r[c]; - l.push([c, n.indexOf(u.source()), n.indexOf(u.target())]); - } - for ( - var d = 1 / 0, - f = [], - h = new Array(o), - p = new Array(o), - v = new Array(o), - g = function (e, t) { - for (var n = 0; n < o; n++) t[n] = e[n]; - }, - m = 0; - m <= a; - m++ - ) { - for (var y = 0; y < o; y++) p[y] = y; - var b = tt(p, l.slice(), o, s), - x = b.slice(); - g(p, v); - var w = tt(p, b, s, 2), - E = tt(v, x, s, 2); - w.length <= E.length && w.length < d - ? ((d = w.length), (f = w), g(p, h)) - : E.length <= w.length && E.length < d && ((d = E.length), (f = E), g(v, h)); - } - for ( - var k = this.spawn( - f.map(function (e) { - return r[e[0]]; - }), - ), - _ = this.spawn(), - S = this.spawn(), - P = h[0], - C = 0; - C < h.length; - C++ - ) { - var j = h[C], - T = n[C]; - j === P ? _.merge(T) : S.merge(T); - } - var D = function (t) { - var n = e.spawn(); - return ( - t.forEach(function (t) { - n.merge(t), - t.connectedEdges().forEach(function (t) { - e.contains(t) && !k.contains(t) && n.merge(t); - }); - }), - n - ); - }, - N = [D(_), D(S)]; - return { cut: k, components: N, partition1: _, partition2: S }; - } - Pe('At least 2 nodes are required for Karger-Stein algorithm'); - }, - }, - rt = function (e, t, n) { - return { x: e.x * t + n.x, y: e.y * t + n.y }; - }, - ot = function (e, t, n) { - return { x: (e.x - n.x) / t, y: (e.y - n.y) / t }; - }, - it = function (e) { - return { x: e[0], y: e[1] }; - }, - at = function (e, t) { - return Math.atan2(t, e) - Math.PI / 2; - }, - st = - Math.log2 || - function (e) { - return Math.log(e) / Math.log(2); - }, - lt = function (e) { - return e > 0 ? 1 : e < 0 ? -1 : 0; - }, - ct = function (e, t) { - return Math.sqrt(ut(e, t)); - }, - ut = function (e, t) { - var n = t.x - e.x, - r = t.y - e.y; - return n * n + r * r; - }, - dt = function (e) { - for (var t = e.length, n = 0, r = 0; r < t; r++) n += e[r]; - for (var o = 0; o < t; o++) e[o] = e[o] / n; - return e; - }, - ft = function (e, t, n, r) { - return (1 - r) * (1 - r) * e + 2 * (1 - r) * r * t + r * r * n; - }, - ht = function (e, t, n, r) { - return { x: ft(e.x, t.x, n.x, r), y: ft(e.y, t.y, n.y, r) }; - }, - pt = function (e, t, n) { - return Math.max(e, Math.min(n, t)); - }, - vt = function (e) { - if (null == e) return { x1: 1 / 0, y1: 1 / 0, x2: -1 / 0, y2: -1 / 0, w: 0, h: 0 }; - if (null != e.x1 && null != e.y1) { - if (null != e.x2 && null != e.y2 && e.x2 >= e.x1 && e.y2 >= e.y1) - return { x1: e.x1, y1: e.y1, x2: e.x2, y2: e.y2, w: e.x2 - e.x1, h: e.y2 - e.y1 }; - if (null != e.w && null != e.h && e.w >= 0 && e.h >= 0) - return { x1: e.x1, y1: e.y1, x2: e.x1 + e.w, y2: e.y1 + e.h, w: e.w, h: e.h }; - } - }, - gt = function (e, t, n) { - (e.x1 = Math.min(e.x1, t)), - (e.x2 = Math.max(e.x2, t)), - (e.w = e.x2 - e.x1), - (e.y1 = Math.min(e.y1, n)), - (e.y2 = Math.max(e.y2, n)), - (e.h = e.y2 - e.y1); - }, - mt = function (e) { - var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0; - return (e.x1 -= t), (e.x2 += t), (e.y1 -= t), (e.y2 += t), (e.w = e.x2 - e.x1), (e.h = e.y2 - e.y1), e; - }, - yt = function (e) { - var t, - n, - r, - o, - i = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : [0]; - if (1 === i.length) t = n = r = o = i[0]; - else if (2 === i.length) (t = r = i[0]), (o = n = i[1]); - else if (4 === i.length) { - var a = b(i, 4); - (t = a[0]), (n = a[1]), (r = a[2]), (o = a[3]); - } - return (e.x1 -= o), (e.x2 += n), (e.y1 -= t), (e.y2 += r), (e.w = e.x2 - e.x1), (e.h = e.y2 - e.y1), e; - }, - bt = function (e, t) { - (e.x1 = t.x1), (e.y1 = t.y1), (e.x2 = t.x2), (e.y2 = t.y2), (e.w = e.x2 - e.x1), (e.h = e.y2 - e.y1); - }, - xt = function (e, t) { - return ( - !(e.x1 > t.x2) && - !(t.x1 > e.x2) && - !(e.x2 < t.x1) && - !(t.x2 < e.x1) && - !(e.y2 < t.y1) && - !(t.y2 < e.y1) && - !(e.y1 > t.y2) && - !(t.y1 > e.y2) - ); - }, - wt = function (e, t, n) { - return e.x1 <= t && t <= e.x2 && e.y1 <= n && n <= e.y2; - }, - Et = function (e, t) { - return wt(e, t.x1, t.y1) && wt(e, t.x2, t.y2); - }, - kt = function (e, t, n, r, o, i, a) { - var s, - l = Vt(o, i), - c = o / 2, - u = i / 2, - d = r - u - a; - if ((s = Rt(e, t, n, r, n - c + l - a, d, n + c - l + a, d, !1)).length > 0) return s; - var f = n + c + a; - if ((s = Rt(e, t, n, r, f, r - u + l - a, f, r + u - l + a, !1)).length > 0) return s; - var h = r + u + a; - if ((s = Rt(e, t, n, r, n - c + l - a, h, n + c - l + a, h, !1)).length > 0) return s; - var p, - v = n - c - a; - if ((s = Rt(e, t, n, r, v, r - u + l - a, v, r + u - l + a, !1)).length > 0) return s; - var g = n - c + l, - m = r - u + l; - if ((p = Ot(e, t, n, r, g, m, l + a)).length > 0 && p[0] <= g && p[1] <= m) return [p[0], p[1]]; - var y = n + c - l, - b = r - u + l; - if ((p = Ot(e, t, n, r, y, b, l + a)).length > 0 && p[0] >= y && p[1] <= b) return [p[0], p[1]]; - var x = n + c - l, - w = r + u - l; - if ((p = Ot(e, t, n, r, x, w, l + a)).length > 0 && p[0] >= x && p[1] >= w) return [p[0], p[1]]; - var E = n - c + l, - k = r + u - l; - return (p = Ot(e, t, n, r, E, k, l + a)).length > 0 && p[0] <= E && p[1] >= k ? [p[0], p[1]] : []; - }, - _t = function (e, t, n, r, o, i, a) { - var s = a, - l = Math.min(n, o), - c = Math.max(n, o), - u = Math.min(r, i), - d = Math.max(r, i); - return l - s <= e && e <= c + s && u - s <= t && t <= d + s; - }, - St = function (e, t, n, r, o, i, a, s, l) { - var c = Math.min(n, a, o) - l, - u = Math.max(n, a, o) + l, - d = Math.min(r, s, i) - l, - f = Math.max(r, s, i) + l; - return !(e < c || e > u || t < d || t > f); - }, - Pt = function (e, t, n, r, o, i, a, s) { - var l = []; - !(function (e, t, n, r, o) { - var i, a, s, l, c, u, d, f; - 0 === e && (e = 1e-5), - (s = -27 * (r /= e) + (t /= e) * (9 * (n /= e) - t * t * 2)), - (i = (a = (3 * n - t * t) / 9) * a * a + (s /= 54) * s), - (o[1] = 0), - (d = t / 3), - i > 0 - ? ((c = (c = s + Math.sqrt(i)) < 0 ? -Math.pow(-c, 1 / 3) : Math.pow(c, 1 / 3)), - (u = (u = s - Math.sqrt(i)) < 0 ? -Math.pow(-u, 1 / 3) : Math.pow(u, 1 / 3)), - (o[0] = -d + c + u), - (d += (c + u) / 2), - (o[4] = o[2] = -d), - (d = (Math.sqrt(3) * (-u + c)) / 2), - (o[3] = d), - (o[5] = -d)) - : ((o[5] = o[3] = 0), - 0 === i - ? ((f = s < 0 ? -Math.pow(-s, 1 / 3) : Math.pow(s, 1 / 3)), - (o[0] = 2 * f - d), - (o[4] = o[2] = -(f + d))) - : ((l = (a = -a) * a * a), - (l = Math.acos(s / Math.sqrt(l))), - (f = 2 * Math.sqrt(a)), - (o[0] = -d + f * Math.cos(l / 3)), - (o[2] = -d + f * Math.cos((l + 2 * Math.PI) / 3)), - (o[4] = -d + f * Math.cos((l + 4 * Math.PI) / 3)))); - })( - 1 * n * n - - 4 * n * o + - 2 * n * a + - 4 * o * o - - 4 * o * a + - a * a + - r * r - - 4 * r * i + - 2 * r * s + - 4 * i * i - - 4 * i * s + - s * s, - 9 * n * o - - 3 * n * n - - 3 * n * a - - 6 * o * o + - 3 * o * a + - 9 * r * i - - 3 * r * r - - 3 * r * s - - 6 * i * i + - 3 * i * s, - 3 * n * n - - 6 * n * o + - n * a - - n * e + - 2 * o * o + - 2 * o * e - - a * e + - 3 * r * r - - 6 * r * i + - r * s - - r * t + - 2 * i * i + - 2 * i * t - - s * t, - 1 * n * o - n * n + n * e - o * e + r * i - r * r + r * t - i * t, - l, - ); - for (var c = [], u = 0; u < 6; u += 2) Math.abs(l[u + 1]) < 1e-7 && l[u] >= 0 && l[u] <= 1 && c.push(l[u]); - c.push(1), c.push(0); - for (var d, f, h, p = -1, v = 0; v < c.length; v++) - (d = Math.pow(1 - c[v], 2) * n + 2 * (1 - c[v]) * c[v] * o + c[v] * c[v] * a), - (f = Math.pow(1 - c[v], 2) * r + 2 * (1 - c[v]) * c[v] * i + c[v] * c[v] * s), - (h = Math.pow(d - e, 2) + Math.pow(f - t, 2)), - p >= 0 ? h < p && (p = h) : (p = h); - return p; - }, - Ct = function (e, t, n, r, o, i) { - var a = [e - n, t - r], - s = [o - n, i - r], - l = s[0] * s[0] + s[1] * s[1], - c = a[0] * a[0] + a[1] * a[1], - u = a[0] * s[0] + a[1] * s[1], - d = (u * u) / l; - return u < 0 ? c : d > l ? (e - o) * (e - o) + (t - i) * (t - i) : c - d; - }, - jt = function (e, t, n) { - for (var r, o, i, a, s = 0, l = 0; l < n.length / 2; l++) - if ( - ((r = n[2 * l]), - (o = n[2 * l + 1]), - l + 1 < n.length / 2 - ? ((i = n[2 * (l + 1)]), (a = n[2 * (l + 1) + 1])) - : ((i = n[2 * (l + 1 - n.length / 2)]), (a = n[2 * (l + 1 - n.length / 2) + 1])), - r == e && i == e) - ); - else { - if (!((r >= e && e >= i) || (r <= e && e <= i))) continue; - ((e - r) / (i - r)) * (a - o) + o > t && s++; - } - return s % 2 != 0; - }, - Tt = function (e, t, n, r, o, i, a, s, l) { - var c, - u = new Array(n.length); - null != s[0] - ? ((c = Math.atan(s[1] / s[0])), s[0] < 0 ? (c += Math.PI / 2) : (c = -c - Math.PI / 2)) - : (c = s); - for (var d, f = Math.cos(-c), h = Math.sin(-c), p = 0; p < u.length / 2; p++) - (u[2 * p] = (i / 2) * (n[2 * p] * f - n[2 * p + 1] * h)), - (u[2 * p + 1] = (a / 2) * (n[2 * p + 1] * f + n[2 * p] * h)), - (u[2 * p] += r), - (u[2 * p + 1] += o); - if (l > 0) { - var v = Nt(u, -l); - d = Dt(v); - } else d = u; - return jt(e, t, d); - }, - Dt = function (e) { - for (var t, n, r, o, i, a, s, l, c = new Array(e.length / 2), u = 0; u < e.length / 4; u++) { - (t = e[4 * u]), - (n = e[4 * u + 1]), - (r = e[4 * u + 2]), - (o = e[4 * u + 3]), - u < e.length / 4 - 1 - ? ((i = e[4 * (u + 1)]), (a = e[4 * (u + 1) + 1]), (s = e[4 * (u + 1) + 2]), (l = e[4 * (u + 1) + 3])) - : ((i = e[0]), (a = e[1]), (s = e[2]), (l = e[3])); - var d = Rt(t, n, r, o, i, a, s, l, !0); - (c[2 * u] = d[0]), (c[2 * u + 1] = d[1]); - } - return c; - }, - Nt = function (e, t) { - for (var n, r, o, i, a = new Array(2 * e.length), s = 0; s < e.length / 2; s++) { - (n = e[2 * s]), - (r = e[2 * s + 1]), - s < e.length / 2 - 1 ? ((o = e[2 * (s + 1)]), (i = e[2 * (s + 1) + 1])) : ((o = e[0]), (i = e[1])); - var l = i - r, - c = -(o - n), - u = Math.sqrt(l * l + c * c), - d = l / u, - f = c / u; - (a[4 * s] = n + d * t), (a[4 * s + 1] = r + f * t), (a[4 * s + 2] = o + d * t), (a[4 * s + 3] = i + f * t); - } - return a; - }, - Mt = function (e, t, n, r, o, i, a) { - return (e -= o), (t -= i), (e /= n / 2 + a) * e + (t /= r / 2 + a) * t <= 1; - }, - Ot = function (e, t, n, r, o, i, a) { - var s = [n - e, r - t], - l = [e - o, t - i], - c = s[0] * s[0] + s[1] * s[1], - u = 2 * (l[0] * s[0] + l[1] * s[1]), - d = u * u - 4 * c * (l[0] * l[0] + l[1] * l[1] - a * a); - if (d < 0) return []; - var f = (-u + Math.sqrt(d)) / (2 * c), - h = (-u - Math.sqrt(d)) / (2 * c), - p = Math.min(f, h), - v = Math.max(f, h), - g = []; - if ((p >= 0 && p <= 1 && g.push(p), v >= 0 && v <= 1 && g.push(v), 0 === g.length)) return []; - var m = g[0] * s[0] + e, - y = g[0] * s[1] + t; - return g.length > 1 ? (g[0] == g[1] ? [m, y] : [m, y, g[1] * s[0] + e, g[1] * s[1] + t]) : [m, y]; - }, - At = function (e, t, n) { - return (t <= e && e <= n) || (n <= e && e <= t) ? e : (e <= t && t <= n) || (n <= t && t <= e) ? t : n; - }, - Rt = function (e, t, n, r, o, i, a, s, l) { - var c = e - o, - u = n - e, - d = a - o, - f = t - i, - h = r - t, - p = s - i, - v = d * f - p * c, - g = u * f - h * c, - m = p * u - d * h; - if (0 !== m) { - var y = v / m, - b = g / m, - x = -0.001; - return (x <= y && y <= 1.001 && x <= b && b <= 1.001) || l ? [e + y * u, t + y * h] : []; - } - return 0 === v || 0 === g - ? At(e, n, a) === a - ? [a, s] - : At(e, n, o) === o - ? [o, i] - : At(o, a, n) === n - ? [n, r] - : [] - : []; - }, - Lt = function (e, t, n, r, o, i, a, s) { - var l, - c, - u, - d, - f, - h, - p = [], - v = new Array(n.length), - g = !0; - if ((null == i && (g = !1), g)) { - for (var m = 0; m < v.length / 2; m++) (v[2 * m] = n[2 * m] * i + r), (v[2 * m + 1] = n[2 * m + 1] * a + o); - if (s > 0) { - var y = Nt(v, -s); - c = Dt(y); - } else c = v; - } else c = n; - for (var b = 0; b < c.length / 2; b++) - (u = c[2 * b]), - (d = c[2 * b + 1]), - b < c.length / 2 - 1 ? ((f = c[2 * (b + 1)]), (h = c[2 * (b + 1) + 1])) : ((f = c[0]), (h = c[1])), - 0 !== (l = Rt(e, t, r, o, u, d, f, h)).length && p.push(l[0], l[1]); - return p; - }, - It = function (e, t, n) { - var r = [e[0] - t[0], e[1] - t[1]], - o = Math.sqrt(r[0] * r[0] + r[1] * r[1]), - i = (o - n) / o; - return i < 0 && (i = 1e-5), [t[0] + i * r[0], t[1] + i * r[1]]; - }, - Bt = function (e, t) { - var n = zt(e, t); - return (n = Ft(n)); - }, - Ft = function (e) { - for (var t, n, r = e.length / 2, o = 1 / 0, i = 1 / 0, a = -1 / 0, s = -1 / 0, l = 0; l < r; l++) - (t = e[2 * l]), - (n = e[2 * l + 1]), - (o = Math.min(o, t)), - (a = Math.max(a, t)), - (i = Math.min(i, n)), - (s = Math.max(s, n)); - for (var c = 2 / (a - o), u = 2 / (s - i), d = 0; d < r; d++) - (t = e[2 * d] = e[2 * d] * c), - (n = e[2 * d + 1] = e[2 * d + 1] * u), - (o = Math.min(o, t)), - (a = Math.max(a, t)), - (i = Math.min(i, n)), - (s = Math.max(s, n)); - if (i < -1) for (var f = 0; f < r; f++) n = e[2 * f + 1] = e[2 * f + 1] + (-1 - i); - return e; - }, - zt = function (e, t) { - var n = (1 / e) * 2 * Math.PI, - r = e % 2 == 0 ? Math.PI / 2 + n / 2 : Math.PI / 2; - r += t; - for (var o, i = new Array(2 * e), a = 0; a < e; a++) - (o = a * n + r), (i[2 * a] = Math.cos(o)), (i[2 * a + 1] = Math.sin(-o)); - return i; - }, - Vt = function (e, t) { - return Math.min(e / 4, t / 4, 8); - }, - Gt = function (e, t) { - return Math.min(e / 10, t / 10, 8); - }, - Ht = function (e, t) { - return { heightOffset: Math.min(15, 0.05 * t), widthOffset: Math.min(100, 0.25 * e), ctrlPtOffsetPct: 0.05 }; - }, - Wt = Oe({ - dampingFactor: 0.8, - precision: 1e-6, - iterations: 200, - weight: function (e) { - return 1; - }, - }), - Ut = { - pageRank: function (e) { - for ( - var t = Wt(e), - n = t.dampingFactor, - r = t.precision, - o = t.iterations, - i = t.weight, - a = this._private.cy, - s = this.byGroup(), - l = s.nodes, - c = s.edges, - u = l.length, - d = u * u, - f = c.length, - h = new Array(d), - p = new Array(u), - v = (1 - n) / u, - g = 0; - g < u; - g++ - ) { - for (var m = 0; m < u; m++) { - h[g * u + m] = 0; - } - p[g] = 0; - } - for (var y = 0; y < f; y++) { - var b = c[y], - x = b.data('source'), - w = b.data('target'); - if (x !== w) { - var E = l.indexOfId(x), - k = l.indexOfId(w), - _ = i(b); - (h[k * u + E] += _), (p[E] += _); - } - } - for (var S = 1 / u + v, P = 0; P < u; P++) - if (0 === p[P]) - for (var C = 0; C < u; C++) { - h[C * u + P] = S; - } - else - for (var j = 0; j < u; j++) { - var T = j * u + P; - h[T] = h[T] / p[P] + v; - } - for (var D, N = new Array(u), M = new Array(u), O = 0; O < u; O++) N[O] = 1; - for (var A = 0; A < o; A++) { - for (var R = 0; R < u; R++) M[R] = 0; - for (var L = 0; L < u; L++) - for (var I = 0; I < u; I++) { - var B = L * u + I; - M[L] += h[B] * N[I]; - } - dt(M), (D = N), (N = M), (M = D); - for (var F = 0, z = 0; z < u; z++) { - var V = D[z] - N[z]; - F += V * V; - } - if (F < r) break; - } - return { - rank: function (e) { - return (e = a.collection(e)[0]), N[l.indexOf(e)]; - }, - }; - }, - }, - qt = Oe({ - root: null, - weight: function (e) { - return 1; - }, - directed: !1, - alpha: 0, - }), - Yt = { - degreeCentralityNormalized: function (e) { - e = qt(e); - var t = this.cy(), - n = this.nodes(), - r = n.length; - if (e.directed) { - for (var o = {}, i = {}, a = 0, s = 0, l = 0; l < r; l++) { - var c = n[l], - u = c.id(); - e.root = c; - var d = this.degreeCentrality(e); - a < d.indegree && (a = d.indegree), - s < d.outdegree && (s = d.outdegree), - (o[u] = d.indegree), - (i[u] = d.outdegree); - } - return { - indegree: function (e) { - return 0 == a ? 0 : (j(e) && (e = t.filter(e)), o[e.id()] / a); - }, - outdegree: function (e) { - return 0 === s ? 0 : (j(e) && (e = t.filter(e)), i[e.id()] / s); - }, - }; - } - for (var f = {}, h = 0, p = 0; p < r; p++) { - var v = n[p]; - e.root = v; - var g = this.degreeCentrality(e); - h < g.degree && (h = g.degree), (f[v.id()] = g.degree); - } - return { - degree: function (e) { - return 0 === h ? 0 : (j(e) && (e = t.filter(e)), f[e.id()] / h); - }, - }; - }, - degreeCentrality: function (e) { - e = qt(e); - var t = this.cy(), - n = this, - r = e, - o = r.root, - i = r.weight, - a = r.directed, - s = r.alpha; - if (((o = t.collection(o)[0]), a)) { - for ( - var l = o.connectedEdges(), - c = l.filter(function (e) { - return e.target().same(o) && n.has(e); - }), - u = l.filter(function (e) { - return e.source().same(o) && n.has(e); - }), - d = c.length, - f = u.length, - h = 0, - p = 0, - v = 0; - v < c.length; - v++ - ) - h += i(c[v]); - for (var g = 0; g < u.length; g++) p += i(u[g]); - return { indegree: Math.pow(d, 1 - s) * Math.pow(h, s), outdegree: Math.pow(f, 1 - s) * Math.pow(p, s) }; - } - for (var m = o.connectedEdges().intersection(n), y = m.length, b = 0, x = 0; x < m.length; x++) - b += i(m[x]); - return { degree: Math.pow(y, 1 - s) * Math.pow(b, s) }; - }, - }; - (Yt.dc = Yt.degreeCentrality), (Yt.dcn = Yt.degreeCentralityNormalised = Yt.degreeCentralityNormalized); - var Xt = Oe({ - harmonic: !0, - weight: function () { - return 1; - }, - directed: !1, - root: null, - }), - $t = { - closenessCentralityNormalized: function (e) { - for ( - var t = Xt(e), - n = t.harmonic, - r = t.weight, - o = t.directed, - i = this.cy(), - a = {}, - s = 0, - l = this.nodes(), - c = this.floydWarshall({ weight: r, directed: o }), - u = 0; - u < l.length; - u++ - ) { - for (var d = 0, f = l[u], h = 0; h < l.length; h++) - if (u !== h) { - var p = c.distance(f, l[h]); - d += n ? 1 / p : p; - } - n || (d = 1 / d), s < d && (s = d), (a[f.id()] = d); - } - return { - closeness: function (e) { - return 0 == s ? 0 : ((e = j(e) ? i.filter(e)[0].id() : e.id()), a[e] / s); - }, - }; - }, - closenessCentrality: function (e) { - var t = Xt(e), - n = t.root, - r = t.weight, - o = t.directed, - i = t.harmonic; - n = this.filter(n)[0]; - for ( - var a = this.dijkstra({ root: n, weight: r, directed: o }), s = 0, l = this.nodes(), c = 0; - c < l.length; - c++ - ) { - var u = l[c]; - if (!u.same(n)) { - var d = a.distanceTo(u); - s += i ? 1 / d : d; - } - } - return i ? s : 1 / s; - }, - }; - ($t.cc = $t.closenessCentrality), ($t.ccn = $t.closenessCentralityNormalised = $t.closenessCentralityNormalized); - var Kt = Oe({ weight: null, directed: !1 }), - Zt = { - betweennessCentrality: function (e) { - for ( - var t = Kt(e), - n = t.directed, - r = t.weight, - o = null != r, - i = this.cy(), - a = this.nodes(), - s = {}, - l = {}, - c = 0, - d = function (e, t) { - (l[e] = t), t > c && (c = t); - }, - f = function (e) { - return l[e]; - }, - h = 0; - h < a.length; - h++ - ) { - var p = a[h], - v = p.id(); - (s[v] = n ? p.outgoers().nodes() : p.openNeighborhood().nodes()), d(v, 0); - } - for ( - var g = function (e) { - for ( - var t = a[e].id(), - n = [], - l = {}, - c = {}, - h = {}, - p = new u.default(function (e, t) { - return h[e] - h[t]; - }), - v = 0; - v < a.length; - v++ - ) { - var g = a[v].id(); - (l[g] = []), (c[g] = 0), (h[g] = 1 / 0); - } - for (c[t] = 1, h[t] = 0, p.push(t); !p.empty(); ) { - var m = p.pop(); - if ((n.push(m), o)) - for (var y = 0; y < s[m].length; y++) { - var b = s[m][y], - x = i.getElementById(m), - w = void 0; - w = x.edgesTo(b).length > 0 ? x.edgesTo(b)[0] : b.edgesTo(x)[0]; - var E = r(w); - (b = b.id()), - h[b] > h[m] + E && - ((h[b] = h[m] + E), - p.nodes.indexOf(b) < 0 ? p.push(b) : p.updateItem(b), - (c[b] = 0), - (l[b] = [])), - h[b] == h[m] + E && ((c[b] = c[b] + c[m]), l[b].push(m)); - } - else - for (var k = 0; k < s[m].length; k++) { - var _ = s[m][k].id(); - h[_] == 1 / 0 && (p.push(_), (h[_] = h[m] + 1)), - h[_] == h[m] + 1 && ((c[_] = c[_] + c[m]), l[_].push(m)); - } - } - for (var S = {}, P = 0; P < a.length; P++) S[a[P].id()] = 0; - for (; n.length > 0; ) { - for (var C = n.pop(), j = 0; j < l[C].length; j++) { - var T = l[C][j]; - S[T] = S[T] + (c[T] / c[C]) * (1 + S[C]); - } - C != a[e].id() && d(C, f(C) + S[C]); - } - }, - m = 0; - m < a.length; - m++ - ) - g(m); - var y = { - betweenness: function (e) { - var t = i.collection(e).id(); - return f(t); - }, - betweennessNormalized: function (e) { - if (0 == c) return 0; - var t = i.collection(e).id(); - return f(t) / c; - }, - }; - return (y.betweennessNormalised = y.betweennessNormalized), y; - }, - }; - Zt.bc = Zt.betweennessCentrality; - var Qt = Oe({ - expandFactor: 2, - inflateFactor: 2, - multFactor: 1, - maxIterations: 20, - attributes: [ - function (e) { - return 1; - }, - ], - }), - Jt = function (e, t) { - for (var n = 0, r = 0; r < t.length; r++) n += t[r](e); - return n; - }, - en = function (e, t) { - for (var n, r = 0; r < t; r++) { - n = 0; - for (var o = 0; o < t; o++) n += e[o * t + r]; - for (var i = 0; i < t; i++) e[i * t + r] = e[i * t + r] / n; - } - }, - tn = function (e, t, n) { - for (var r = new Array(n * n), o = 0; o < n; o++) { - for (var i = 0; i < n; i++) r[o * n + i] = 0; - for (var a = 0; a < n; a++) for (var s = 0; s < n; s++) r[o * n + s] += e[o * n + a] * t[a * n + s]; - } - return r; - }, - nn = function (e, t, n) { - for (var r = e.slice(0), o = 1; o < n; o++) e = tn(e, r, t); - return e; - }, - rn = function (e, t, n) { - for (var r = new Array(t * t), o = 0; o < t * t; o++) r[o] = Math.pow(e[o], n); - return en(r, t), r; - }, - on = function (e, t, n, r) { - for (var o = 0; o < n; o++) { - if ( - Math.round(e[o] * Math.pow(10, r)) / Math.pow(10, r) !== - Math.round(t[o] * Math.pow(10, r)) / Math.pow(10, r) - ) - return !1; - } - return !0; - }, - an = function (e, t) { - for (var n = 0; n < e.length; n++) if (!t[n] || e[n].id() !== t[n].id()) return !1; - return !0; - }, - sn = function (e) { - for ( - var t = this.nodes(), - n = this.edges(), - r = this.cy(), - o = (function (e) { - return Qt(e); - })(e), - i = {}, - a = 0; - a < t.length; - a++ - ) - i[t[a].id()] = a; - for (var s, l = t.length, c = l * l, u = new Array(c), d = 0; d < c; d++) u[d] = 0; - for (var f = 0; f < n.length; f++) { - var h = n[f], - p = i[h.source().id()], - v = i[h.target().id()], - g = Jt(h, o.attributes); - (u[p * l + v] += g), (u[v * l + p] += g); - } - !(function (e, t, n) { - for (var r = 0; r < t; r++) e[r * t + r] = n; - })(u, l, o.multFactor), - en(u, l); - for (var m = !0, y = 0; m && y < o.maxIterations; ) - (m = !1), (s = nn(u, l, o.expandFactor)), (u = rn(s, l, o.inflateFactor)), on(u, s, c, 4) || (m = !0), y++; - var b = (function (e, t, n, r) { - for (var o = [], i = 0; i < t; i++) { - for (var a = [], s = 0; s < t; s++) Math.round(1e3 * e[i * t + s]) / 1e3 > 0 && a.push(n[s]); - 0 !== a.length && o.push(r.collection(a)); - } - return o; - })(u, l, t, r); - return ( - (b = (function (e) { - for (var t = 0; t < e.length; t++) - for (var n = 0; n < e.length; n++) t != n && an(e[t], e[n]) && e.splice(n, 1); - return e; - })(b)), - b - ); - }, - ln = { markovClustering: sn, mcl: sn }, - cn = function (e) { - return e; - }, - un = function (e, t) { - return Math.abs(t - e); - }, - dn = function (e, t, n) { - return e + un(t, n); - }, - fn = function (e, t, n) { - return e + Math.pow(n - t, 2); - }, - hn = function (e) { - return Math.sqrt(e); - }, - pn = function (e, t, n) { - return Math.max(e, un(t, n)); - }, - vn = function (e, t, n, r, o) { - for (var i = arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : cn, a = r, s = 0; s < e; s++) - a = o(a, t(s), n(s)); - return i(a); - }, - gn = { - euclidean: function (e, t, n) { - return e >= 2 ? vn(e, t, n, 0, fn, hn) : vn(e, t, n, 0, dn); - }, - squaredEuclidean: function (e, t, n) { - return vn(e, t, n, 0, fn); - }, - manhattan: function (e, t, n) { - return vn(e, t, n, 0, dn); - }, - max: function (e, t, n) { - return vn(e, t, n, -1 / 0, pn); - }, - }; - function mn(e, t, n, r, o, i) { - var a; - return (a = T(e) ? e : gn[e] || gn.euclidean), 0 === t && T(e) ? a(o, i) : a(t, n, r, o, i); - } - (gn['squared-euclidean'] = gn.squaredEuclidean), (gn.squaredeuclidean = gn.squaredEuclidean); - var yn = Oe({ - k: 2, - m: 2, - sensitivityThreshold: 1e-4, - distance: 'euclidean', - maxIterations: 10, - attributes: [], - testMode: !1, - testCentroids: null, - }), - bn = function (e) { - return yn(e); - }, - xn = function (e, t, n, r, o) { - var i = - 'kMedoids' !== o - ? function (e) { - return n[e]; - } - : function (e) { - return r[e](n); - }, - a = n, - s = t; - return mn( - e, - r.length, - i, - function (e) { - return r[e](t); - }, - a, - s, - ); - }, - wn = function (e, t, n) { - for (var r = n.length, o = new Array(r), i = new Array(r), a = new Array(t), s = null, l = 0; l < r; l++) - (o[l] = e.min(n[l]).value), (i[l] = e.max(n[l]).value); - for (var c = 0; c < t; c++) { - s = []; - for (var u = 0; u < r; u++) s[u] = Math.random() * (i[u] - o[u]) + o[u]; - a[c] = s; - } - return a; - }, - En = function (e, t, n, r, o) { - for (var i = 1 / 0, a = 0, s = 0; s < t.length; s++) { - var l = xn(n, e, t[s], r, o); - l < i && ((i = l), (a = s)); - } - return a; - }, - kn = function (e, t, n) { - for (var r = [], o = null, i = 0; i < t.length; i++) n[(o = t[i]).id()] === e && r.push(o); - return r; - }, - _n = function (e, t, n) { - for (var r = 0; r < e.length; r++) - for (var o = 0; o < e[r].length; o++) { - if (Math.abs(e[r][o] - t[r][o]) > n) return !1; - } - return !0; - }, - Sn = function (e, t, n) { - for (var r = 0; r < n; r++) if (e === t[r]) return !0; - return !1; - }, - Pn = function (e, t) { - var n = new Array(t); - if (e.length < 50) - for (var r = 0; r < t; r++) { - for (var o = e[Math.floor(Math.random() * e.length)]; Sn(o, n, r); ) - o = e[Math.floor(Math.random() * e.length)]; - n[r] = o; - } - else for (var i = 0; i < t; i++) n[i] = e[Math.floor(Math.random() * e.length)]; - return n; - }, - Cn = function (e, t, n) { - for (var r = 0, o = 0; o < t.length; o++) r += xn('manhattan', t[o], e, n, 'kMedoids'); - return r; - }, - jn = function (e, t, n, r, o) { - for (var i, a, s = 0; s < t.length; s++) for (var l = 0; l < e.length; l++) r[s][l] = Math.pow(n[s][l], o.m); - for (var c = 0; c < e.length; c++) - for (var u = 0; u < o.attributes.length; u++) { - (i = 0), (a = 0); - for (var d = 0; d < t.length; d++) (i += r[d][c] * o.attributes[u](t[d])), (a += r[d][c]); - e[c][u] = i / a; - } - }, - Tn = function (e, t, n, r, o) { - for (var i = 0; i < e.length; i++) t[i] = e[i].slice(); - for (var a, s, l, c = 2 / (o.m - 1), u = 0; u < n.length; u++) - for (var d = 0; d < r.length; d++) { - a = 0; - for (var f = 0; f < n.length; f++) - (s = xn(o.distance, r[d], n[u], o.attributes, 'cmeans')), - (l = xn(o.distance, r[d], n[f], o.attributes, 'cmeans')), - (a += Math.pow(s / l, c)); - e[d][u] = 1 / a; - } - }, - Dn = function (e) { - var t, - n, - r, - o, - i, - a = this.cy(), - s = this.nodes(), - l = bn(e); - o = new Array(s.length); - for (var c = 0; c < s.length; c++) o[c] = new Array(l.k); - r = new Array(s.length); - for (var u = 0; u < s.length; u++) r[u] = new Array(l.k); - for (var d = 0; d < s.length; d++) { - for (var f = 0, h = 0; h < l.k; h++) (r[d][h] = Math.random()), (f += r[d][h]); - for (var p = 0; p < l.k; p++) r[d][p] = r[d][p] / f; - } - n = new Array(l.k); - for (var v = 0; v < l.k; v++) n[v] = new Array(l.attributes.length); - i = new Array(s.length); - for (var g = 0; g < s.length; g++) i[g] = new Array(l.k); - for (var m = !0, y = 0; m && y < l.maxIterations; ) - (m = !1), jn(n, s, r, i, l), Tn(r, o, n, s, l), _n(r, o, l.sensitivityThreshold) || (m = !0), y++; - return ( - (t = (function (e, t, n, r) { - for (var o, i, a = new Array(n.k), s = 0; s < a.length; s++) a[s] = []; - for (var l = 0; l < t.length; l++) { - (o = -1 / 0), (i = -1); - for (var c = 0; c < t[0].length; c++) t[l][c] > o && ((o = t[l][c]), (i = c)); - a[i].push(e[l]); - } - for (var u = 0; u < a.length; u++) a[u] = r.collection(a[u]); - return a; - })(s, r, l, a)), - { clusters: t, degreeOfMembership: r } - ); - }, - Nn = { - kMeans: function (e) { - var t, - n = this.cy(), - r = this.nodes(), - o = null, - i = bn(e), - a = new Array(i.k), - s = {}; - i.testMode - ? 'number' == typeof i.testCentroids - ? (i.testCentroids, (t = wn(r, i.k, i.attributes))) - : (t = 'object' === p(i.testCentroids) ? i.testCentroids : wn(r, i.k, i.attributes)) - : (t = wn(r, i.k, i.attributes)); - for (var l, c, u, d = !0, f = 0; d && f < i.maxIterations; ) { - for (var h = 0; h < r.length; h++) s[(o = r[h]).id()] = En(o, t, i.distance, i.attributes, 'kMeans'); - d = !1; - for (var v = 0; v < i.k; v++) { - var g = kn(v, r, s); - if (0 !== g.length) { - for (var m = i.attributes.length, y = t[v], b = new Array(m), x = new Array(m), w = 0; w < m; w++) { - x[w] = 0; - for (var E = 0; E < g.length; E++) (o = g[E]), (x[w] += i.attributes[w](o)); - (b[w] = x[w] / g.length), - (l = b[w]), - (c = y[w]), - (u = i.sensitivityThreshold), - Math.abs(c - l) <= u || (d = !0); - } - (t[v] = b), (a[v] = n.collection(g)); - } - } - f++; - } - return a; - }, - kMedoids: function (e) { - var t, - n, - r = this.cy(), - o = this.nodes(), - i = null, - a = bn(e), - s = new Array(a.k), - l = {}, - c = new Array(a.k); - a.testMode - ? 'number' == typeof a.testCentroids || - (t = 'object' === p(a.testCentroids) ? a.testCentroids : Pn(o, a.k)) - : (t = Pn(o, a.k)); - for (var u = !0, d = 0; u && d < a.maxIterations; ) { - for (var f = 0; f < o.length; f++) l[(i = o[f]).id()] = En(i, t, a.distance, a.attributes, 'kMedoids'); - u = !1; - for (var h = 0; h < t.length; h++) { - var v = kn(h, o, l); - if (0 !== v.length) { - c[h] = Cn(t[h], v, a.attributes); - for (var g = 0; g < v.length; g++) - (n = Cn(v[g], v, a.attributes)) < c[h] && ((c[h] = n), (t[h] = v[g]), (u = !0)); - s[h] = r.collection(v); - } - } - d++; - } - return s; - }, - fuzzyCMeans: Dn, - fcm: Dn, - }, - Mn = Oe({ - distance: 'euclidean', - linkage: 'min', - mode: 'threshold', - threshold: 1 / 0, - addDendrogram: !1, - dendrogramDepth: 0, - attributes: [], - }), - On = { single: 'min', complete: 'max' }, - An = function (e, t, n, r, o) { - for ( - var i, - a = 0, - s = 1 / 0, - l = o.attributes, - c = function (e, t) { - return mn( - o.distance, - l.length, - function (t) { - return l[t](e); - }, - function (e) { - return l[e](t); - }, - e, - t, - ); - }, - u = 0; - u < e.length; - u++ - ) { - var d = e[u].key, - f = n[d][r[d]]; - f < s && ((a = d), (s = f)); - } - if (('threshold' === o.mode && s >= o.threshold) || ('dendrogram' === o.mode && 1 === e.length)) return !1; - var h, - p = t[a], - v = t[r[a]]; - (h = - 'dendrogram' === o.mode - ? { left: p, right: v, key: p.key } - : { value: p.value.concat(v.value), key: p.key }), - (e[p.index] = h), - e.splice(v.index, 1), - (t[p.key] = h); - for (var g = 0; g < e.length; g++) { - var m = e[g]; - p.key === m.key - ? (i = 1 / 0) - : 'min' === o.linkage - ? ((i = n[p.key][m.key]), n[p.key][m.key] > n[v.key][m.key] && (i = n[v.key][m.key])) - : 'max' === o.linkage - ? ((i = n[p.key][m.key]), n[p.key][m.key] < n[v.key][m.key] && (i = n[v.key][m.key])) - : (i = - 'mean' === o.linkage - ? (n[p.key][m.key] * p.size + n[v.key][m.key] * v.size) / (p.size + v.size) - : 'dendrogram' === o.mode - ? c(m.value, p.value) - : c(m.value[0], p.value[0])), - (n[p.key][m.key] = n[m.key][p.key] = i); - } - for (var y = 0; y < e.length; y++) { - var b = e[y].key; - if (r[b] === p.key || r[b] === v.key) { - for (var x = b, w = 0; w < e.length; w++) { - var E = e[w].key; - n[b][E] < n[b][x] && (x = E); - } - r[b] = x; - } - e[y].index = y; - } - return (p.key = v.key = p.index = v.index = null), !0; - }, - Rn = function e(t, n, r) { - t && (t.value ? n.push(t.value) : (t.left && e(t.left, n), t.right && e(t.right, n))); - }, - Ln = function e(t, n) { - if (!t) return ''; - if (t.left && t.right) { - var r = e(t.left, n), - o = e(t.right, n), - i = n.add({ group: 'nodes', data: { id: r + ',' + o } }); - return ( - n.add({ group: 'edges', data: { source: r, target: i.id() } }), - n.add({ group: 'edges', data: { source: o, target: i.id() } }), - i.id() - ); - } - return t.value ? t.value.id() : void 0; - }, - In = function e(t, n, r) { - if (!t) return []; - var o = [], - i = [], - a = []; - return 0 === n - ? (t.left && Rn(t.left, o), t.right && Rn(t.right, i), (a = o.concat(i)), [r.collection(a)]) - : 1 === n - ? t.value - ? [r.collection(t.value)] - : (t.left && Rn(t.left, o), t.right && Rn(t.right, i), [r.collection(o), r.collection(i)]) - : t.value - ? [r.collection(t.value)] - : (t.left && (o = e(t.left, n - 1, r)), t.right && (i = e(t.right, n - 1, r)), o.concat(i)); - }, - Bn = function (e) { - for ( - var t = this.cy(), - n = this.nodes(), - r = (function (e) { - var t = Mn(e), - n = On[t.linkage]; - return null != n && (t.linkage = n), t; - })(e), - o = r.attributes, - i = function (e, t) { - return mn( - r.distance, - o.length, - function (t) { - return o[t](e); - }, - function (e) { - return o[e](t); - }, - e, - t, - ); - }, - a = [], - s = [], - l = [], - c = [], - u = 0; - u < n.length; - u++ - ) { - var d = { value: 'dendrogram' === r.mode ? n[u] : [n[u]], key: u, index: u }; - (a[u] = d), (c[u] = d), (s[u] = []), (l[u] = 0); - } - for (var f = 0; f < a.length; f++) - for (var h = 0; h <= f; h++) { - var p = void 0; - (p = - 'dendrogram' === r.mode - ? f === h - ? 1 / 0 - : i(a[f].value, a[h].value) - : f === h - ? 1 / 0 - : i(a[f].value[0], a[h].value[0])), - (s[f][h] = p), - (s[h][f] = p), - p < s[f][l[f]] && (l[f] = h); - } - for (var v, g = An(a, c, s, l, r); g; ) g = An(a, c, s, l, r); - return ( - 'dendrogram' === r.mode - ? ((v = In(a[0], r.dendrogramDepth, t)), r.addDendrogram && Ln(a[0], t)) - : ((v = new Array(a.length)), - a.forEach(function (e, n) { - (e.key = e.index = null), (v[n] = t.collection(e.value)); - })), - v - ); - }, - Fn = { hierarchicalClustering: Bn, hca: Bn }, - zn = Oe({ - distance: 'euclidean', - preference: 'median', - damping: 0.8, - maxIterations: 1e3, - minIterations: 100, - attributes: [], - }), - Vn = function (e, t, n, r) { - var o = function (e, t) { - return r[t](e); - }; - return -mn( - e, - r.length, - function (e) { - return o(t, e); - }, - function (e) { - return o(n, e); - }, - t, - n, - ); - }, - Gn = function (e, t) { - var n = null; - return ( - (n = - 'median' === t - ? (function (e) { - var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, - n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : e.length, - r = !(arguments.length > 4 && void 0 !== arguments[4]) || arguments[4], - o = !(arguments.length > 5 && void 0 !== arguments[5]) || arguments[5]; - arguments.length > 3 && void 0 !== arguments[3] && !arguments[3] - ? (n < e.length && e.splice(n, e.length - n), t > 0 && e.splice(0, t)) - : (e = e.slice(t, n)); - for (var i = 0, a = e.length - 1; a >= 0; a--) { - var s = e[a]; - o ? isFinite(s) || ((e[a] = -1 / 0), i++) : e.splice(a, 1); - } - r && - e.sort(function (e, t) { - return e - t; - }); - var l = e.length, - c = Math.floor(l / 2); - return l % 2 != 0 ? e[c + 1 + i] : (e[c - 1 + i] + e[c + i]) / 2; - })(e) - : 'mean' === t - ? (function (e) { - for ( - var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, - n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : e.length, - r = 0, - o = 0, - i = t; - i < n; - i++ - ) { - var a = e[i]; - isFinite(a) && ((r += a), o++); - } - return r / o; - })(e) - : 'min' === t - ? (function (e) { - for ( - var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, - n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : e.length, - r = 1 / 0, - o = t; - o < n; - o++ - ) { - var i = e[o]; - isFinite(i) && (r = Math.min(i, r)); - } - return r; - })(e) - : 'max' === t - ? (function (e) { - for ( - var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0, - n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : e.length, - r = -1 / 0, - o = t; - o < n; - o++ - ) { - var i = e[o]; - isFinite(i) && (r = Math.max(i, r)); - } - return r; - })(e) - : t), - n - ); - }, - Hn = function (e, t, n) { - for (var r = [], o = 0; o < e; o++) { - for (var i = -1, a = -1 / 0, s = 0; s < n.length; s++) { - var l = n[s]; - t[o * e + l] > a && ((i = l), (a = t[o * e + l])); - } - i > 0 && r.push(i); - } - for (var c = 0; c < n.length; c++) r[n[c]] = n[c]; - return r; - }, - Wn = function (e) { - for ( - var t, - n, - r, - o, - i, - a, - s = this.cy(), - l = this.nodes(), - c = (function (e) { - var t = e.damping, - n = e.preference; - (0.5 <= t && t < 1) || Pe('Damping must range on [0.5, 1). Got: '.concat(t)); - var r = ['median', 'mean', 'min', 'max']; - return ( - r.some(function (e) { - return e === n; - }) || - M(n) || - Pe( - 'Preference must be one of [' - .concat( - r - .map(function (e) { - return "'".concat(e, "'"); - }) - .join(', '), - '] or a number. Got: ', - ) - .concat(n), - ), - zn(e) - ); - })(e), - u = {}, - d = 0; - d < l.length; - d++ - ) - u[l[d].id()] = d; - (n = (t = l.length) * t), (r = new Array(n)); - for (var f = 0; f < n; f++) r[f] = -1 / 0; - for (var h = 0; h < t; h++) - for (var p = 0; p < t; p++) h !== p && (r[h * t + p] = Vn(c.distance, l[h], l[p], c.attributes)); - o = Gn(r, c.preference); - for (var v = 0; v < t; v++) r[v * t + v] = o; - i = new Array(n); - for (var g = 0; g < n; g++) i[g] = 0; - a = new Array(n); - for (var m = 0; m < n; m++) a[m] = 0; - for (var y = new Array(t), b = new Array(t), x = new Array(t), w = 0; w < t; w++) - (y[w] = 0), (b[w] = 0), (x[w] = 0); - for (var E, k = new Array(t * c.minIterations), _ = 0; _ < k.length; _++) k[_] = 0; - for (E = 0; E < c.maxIterations; E++) { - for (var S = 0; S < t; S++) { - for (var P = -1 / 0, C = -1 / 0, j = -1, T = 0, D = 0; D < t; D++) - (y[D] = i[S * t + D]), - (T = a[S * t + D] + r[S * t + D]) >= P ? ((C = P), (P = T), (j = D)) : T > C && (C = T); - for (var N = 0; N < t; N++) i[S * t + N] = (1 - c.damping) * (r[S * t + N] - P) + c.damping * y[N]; - i[S * t + j] = (1 - c.damping) * (r[S * t + j] - C) + c.damping * y[j]; - } - for (var O = 0; O < t; O++) { - for (var A = 0, R = 0; R < t; R++) (y[R] = a[R * t + O]), (b[R] = Math.max(0, i[R * t + O])), (A += b[R]); - (A -= b[O]), (b[O] = i[O * t + O]), (A += b[O]); - for (var L = 0; L < t; L++) a[L * t + O] = (1 - c.damping) * Math.min(0, A - b[L]) + c.damping * y[L]; - a[O * t + O] = (1 - c.damping) * (A - b[O]) + c.damping * y[O]; - } - for (var I = 0, B = 0; B < t; B++) { - var F = a[B * t + B] + i[B * t + B] > 0 ? 1 : 0; - (k[(E % c.minIterations) * t + B] = F), (I += F); - } - if (I > 0 && (E >= c.minIterations - 1 || E == c.maxIterations - 1)) { - for (var z = 0, V = 0; V < t; V++) { - x[V] = 0; - for (var G = 0; G < c.minIterations; G++) x[V] += k[G * t + V]; - (0 !== x[V] && x[V] !== c.minIterations) || z++; - } - if (z === t) break; - } - } - for ( - var H = (function (e, t, n) { - for (var r = [], o = 0; o < e; o++) t[o * e + o] + n[o * e + o] > 0 && r.push(o); - return r; - })(t, i, a), - W = (function (e, t, n) { - for (var r = Hn(e, t, n), o = 0; o < n.length; o++) { - for (var i = [], a = 0; a < r.length; a++) r[a] === n[o] && i.push(a); - for (var s = -1, l = -1 / 0, c = 0; c < i.length; c++) { - for (var u = 0, d = 0; d < i.length; d++) u += t[i[d] * e + i[c]]; - u > l && ((s = c), (l = u)); - } - n[o] = i[s]; - } - return Hn(e, t, n); - })(t, r, H), - U = {}, - q = 0; - q < H.length; - q++ - ) - U[H[q]] = []; - for (var Y = 0; Y < l.length; Y++) { - var X = W[u[l[Y].id()]]; - null != X && U[X].push(l[Y]); - } - for (var $ = new Array(H.length), K = 0; K < H.length; K++) $[K] = s.collection(U[H[K]]); - return $; - }, - Un = { affinityPropagation: Wn, ap: Wn }, - qn = Oe({ root: void 0, directed: !1 }), - Yn = function () { - var e = this, - t = {}, - n = 0, - r = 0, - o = [], - i = [], - a = {}, - s = function s(l, c, u) { - l === u && (r += 1), (t[c] = { id: n, low: n++, cutVertex: !1 }); - var d, - f, - h, - p, - v = e.getElementById(c).connectedEdges().intersection(e); - 0 === v.size() - ? o.push(e.spawn(e.getElementById(c))) - : v.forEach(function (n) { - (d = n.source().id()), - (f = n.target().id()), - (h = d === c ? f : d) !== u && - ((p = n.id()), - a[p] || ((a[p] = !0), i.push({ x: c, y: h, edge: n })), - h in t - ? (t[c].low = Math.min(t[c].low, t[h].id)) - : (s(l, h, c), - (t[c].low = Math.min(t[c].low, t[h].low)), - t[c].id <= t[h].low && - ((t[c].cutVertex = !0), - (function (n, r) { - for (var a = i.length - 1, s = [], l = e.spawn(); i[a].x != n || i[a].y != r; ) - s.push(i.pop().edge), a--; - s.push(i.pop().edge), - s.forEach(function (n) { - var r = n.connectedNodes().intersection(e); - l.merge(n), - r.forEach(function (n) { - var r = n.id(), - o = n.connectedEdges().intersection(e); - l.merge(n), - t[r].cutVertex - ? l.merge( - o.filter(function (e) { - return e.isLoop(); - }), - ) - : l.merge(o); - }); - }), - o.push(l); - })(c, h)))); - }); - }; - e.forEach(function (e) { - if (e.isNode()) { - var n = e.id(); - n in t || ((r = 0), s(n, n), (t[n].cutVertex = r > 1)); - } - }); - var l = Object.keys(t) - .filter(function (e) { - return t[e].cutVertex; - }) - .map(function (t) { - return e.getElementById(t); - }); - return { cut: e.spawn(l), components: o }; - }, - Xn = function () { - var e = this, - t = {}, - n = 0, - r = [], - o = [], - i = e.spawn(e), - a = function a(s) { - if ( - (o.push(s), - (t[s] = { index: n, low: n++, explored: !1 }), - e - .getElementById(s) - .connectedEdges() - .intersection(e) - .forEach(function (e) { - var n = e.target().id(); - n !== s && (n in t || a(n), t[n].explored || (t[s].low = Math.min(t[s].low, t[n].low))); - }), - t[s].index === t[s].low) - ) { - for (var l = e.spawn(); ; ) { - var c = o.pop(); - if ((l.merge(e.getElementById(c)), (t[c].low = t[s].index), (t[c].explored = !0), c === s)) break; - } - var u = l.edgesWith(l), - d = l.merge(u); - r.push(d), (i = i.difference(d)); - } - }; - return ( - e.forEach(function (e) { - if (e.isNode()) { - var n = e.id(); - n in t || a(n); - } - }), - { cut: i, components: r } - ); - }, - $n = {}; - [ - He, - Ue, - qe, - Xe, - Ke, - Qe, - nt, - Ut, - Yt, - $t, - Zt, - ln, - Nn, - Fn, - Un, - { - hierholzer: function (e) { - if (!N(e)) { - var t = arguments; - e = { root: t[0], directed: t[1] }; - } - var n, - r, - o, - i = qn(e), - a = i.root, - s = i.directed, - l = this, - c = !1; - a && (o = j(a) ? this.filter(a)[0].id() : a[0].id()); - var u = {}, - d = {}; - s - ? l.forEach(function (e) { - var t = e.id(); - if (e.isNode()) { - var o = e.indegree(!0), - i = e.outdegree(!0), - a = o - i, - s = i - o; - 1 == a - ? n - ? (c = !0) - : (n = t) - : 1 == s - ? r - ? (c = !0) - : (r = t) - : (s > 1 || a > 1) && (c = !0), - (u[t] = []), - e.outgoers().forEach(function (e) { - e.isEdge() && u[t].push(e.id()); - }); - } else d[t] = [void 0, e.target().id()]; - }) - : l.forEach(function (e) { - var t = e.id(); - e.isNode() - ? (e.degree(!0) % 2 && (n ? (r ? (c = !0) : (r = t)) : (n = t)), - (u[t] = []), - e.connectedEdges().forEach(function (e) { - return u[t].push(e.id()); - })) - : (d[t] = [e.source().id(), e.target().id()]); - }); - var f = { found: !1, trail: void 0 }; - if (c) return f; - if (r && n) - if (s) { - if (o && r != o) return f; - o = r; - } else { - if (o && r != o && n != o) return f; - o || (o = r); - } - else o || (o = l[0].id()); - var h = function (e) { - for (var t, n, r, o = e, i = [e]; u[o].length; ) - (t = u[o].shift()), - (n = d[t][0]), - o != (r = d[t][1]) - ? ((u[r] = u[r].filter(function (e) { - return e != t; - })), - (o = r)) - : s || - o == n || - ((u[n] = u[n].filter(function (e) { - return e != t; - })), - (o = n)), - i.unshift(t), - i.unshift(o); - return i; - }, - p = [], - v = []; - for (v = h(o); 1 != v.length; ) - 0 == u[v[0]].length - ? (p.unshift(l.getElementById(v.shift())), p.unshift(l.getElementById(v.shift()))) - : (v = h(v.shift()).concat(v)); - for (var g in (p.unshift(l.getElementById(v.shift())), u)) if (u[g].length) return f; - return (f.found = !0), (f.trail = this.spawn(p, !0)), f; - }, - }, - { hopcroftTarjanBiconnected: Yn, htbc: Yn, htb: Yn, hopcroftTarjanBiconnectedComponents: Yn }, - { tarjanStronglyConnected: Xn, tsc: Xn, tscc: Xn, tarjanStronglyConnectedComponents: Xn }, - ].forEach(function (e) { - Q($n, e); - }); - var Kn = function e(t) { - if (!(this instanceof e)) return new e(t); - (this.id = 'Thenable/1.0.7'), - (this.state = 0), - (this.fulfillValue = void 0), - (this.rejectReason = void 0), - (this.onFulfilled = []), - (this.onRejected = []), - (this.proxy = { then: this.then.bind(this) }), - 'function' == typeof t && t.call(this, this.fulfill.bind(this), this.reject.bind(this)); - }; - Kn.prototype = { - fulfill: function (e) { - return Zn(this, 1, 'fulfillValue', e); - }, - reject: function (e) { - return Zn(this, 2, 'rejectReason', e); - }, - then: function (e, t) { - var n = this, - r = new Kn(); - return n.onFulfilled.push(er(e, r, 'fulfill')), n.onRejected.push(er(t, r, 'reject')), Qn(n), r.proxy; - }, - }; - var Zn = function (e, t, n, r) { - return 0 === e.state && ((e.state = t), (e[n] = r), Qn(e)), e; - }, - Qn = function (e) { - 1 === e.state ? Jn(e, 'onFulfilled', e.fulfillValue) : 2 === e.state && Jn(e, 'onRejected', e.rejectReason); - }, - Jn = function (e, t, n) { - if (0 !== e[t].length) { - var r = e[t]; - e[t] = []; - var o = function () { - for (var e = 0; e < r.length; e++) r[e](n); - }; - 'function' == typeof setImmediate ? setImmediate(o) : setTimeout(o, 0); - } - }, - er = function (e, t, n) { - return function (r) { - if ('function' != typeof e) t[n].call(t, r); - else { - var o; - try { - o = e(r); - } catch (i) { - return void t.reject(i); - } - tr(t, o); - } - }; - }, - tr = function e(t, n) { - if (t !== n && t.proxy !== n) { - var r; - if (('object' === p(n) && null !== n) || 'function' == typeof n) - try { - r = n.then; - } catch (i) { - return void t.reject(i); - } - if ('function' != typeof r) t.fulfill(n); - else { - var o = !1; - try { - r.call( - n, - function (r) { - o || ((o = !0), r === n ? t.reject(new TypeError('circular thenable chain')) : e(t, r)); - }, - function (e) { - o || ((o = !0), t.reject(e)); - }, - ); - } catch (i) { - o || t.reject(i); - } - } - } else t.reject(new TypeError('cannot resolve promise with itself')); - }; - (Kn.all = function (e) { - return new Kn(function (t, n) { - for ( - var r = new Array(e.length), - o = 0, - i = function (n, i) { - (r[n] = i), ++o === e.length && t(r); - }, - a = 0; - a < e.length; - a++ - ) - !(function (t) { - var r = e[t]; - null != r && null != r.then - ? r.then( - function (e) { - i(t, e); - }, - function (e) { - n(e); - }, - ) - : i(t, r); - })(a); - }); - }), - (Kn.resolve = function (e) { - return new Kn(function (t, n) { - t(e); - }); - }), - (Kn.reject = function (e) { - return new Kn(function (t, n) { - n(e); - }); - }); - var nr = 'undefined' != typeof Promise ? Promise : Kn, - rr = function (e, t, n) { - var r = I(e), - o = !r, - i = (this._private = Q({ duration: 1e3 }, t, n)); - if ( - ((i.target = e), - (i.style = i.style || i.css), - (i.started = !1), - (i.playing = !1), - (i.hooked = !1), - (i.applying = !1), - (i.progress = 0), - (i.completes = []), - (i.frames = []), - i.complete && T(i.complete) && i.completes.push(i.complete), - o) - ) { - var a = e.position(); - (i.startPosition = i.startPosition || { x: a.x, y: a.y }), - (i.startStyle = i.startStyle || e.cy().style().getAnimationStartStyle(e, i.style)); - } - if (r) { - var s = e.pan(); - (i.startPan = { x: s.x, y: s.y }), (i.startZoom = e.zoom()); - } - (this.length = 1), (this[0] = this); - }, - or = rr.prototype; - Q(or, { - instanceString: function () { - return 'animation'; - }, - hook: function () { - var e = this._private; - if (!e.hooked) { - var t = e.target._private.animation; - (e.queue ? t.queue : t.current).push(this), - A(e.target) && e.target.cy().addToAnimationPool(e.target), - (e.hooked = !0); - } - return this; - }, - play: function () { - var e = this._private; - return ( - 1 === e.progress && (e.progress = 0), - (e.playing = !0), - (e.started = !1), - (e.stopped = !1), - this.hook(), - this - ); - }, - playing: function () { - return this._private.playing; - }, - apply: function () { - var e = this._private; - return (e.applying = !0), (e.started = !1), (e.stopped = !1), this.hook(), this; - }, - applying: function () { - return this._private.applying; - }, - pause: function () { - var e = this._private; - return (e.playing = !1), (e.started = !1), this; - }, - stop: function () { - var e = this._private; - return (e.playing = !1), (e.started = !1), (e.stopped = !0), this; - }, - rewind: function () { - return this.progress(0); - }, - fastforward: function () { - return this.progress(1); - }, - time: function (e) { - var t = this._private; - return void 0 === e ? t.progress * t.duration : this.progress(e / t.duration); - }, - progress: function (e) { - var t = this._private, - n = t.playing; - return void 0 === e - ? t.progress - : (n && this.pause(), (t.progress = e), (t.started = !1), n && this.play(), this); - }, - completed: function () { - return 1 === this._private.progress; - }, - reverse: function () { - var e = this._private, - t = e.playing; - t && this.pause(), (e.progress = 1 - e.progress), (e.started = !1); - var n = function (t, n) { - var r = e[t]; - null != r && ((e[t] = e[n]), (e[n] = r)); - }; - if ((n('zoom', 'startZoom'), n('pan', 'startPan'), n('position', 'startPosition'), e.style)) - for (var r = 0; r < e.style.length; r++) { - var o = e.style[r], - i = o.name, - a = e.startStyle[i]; - (e.startStyle[i] = o), (e.style[r] = a); - } - return t && this.play(), this; - }, - promise: function (e) { - var t, - n = this._private; - if ('frame' === e) t = n.frames; - else t = n.completes; - return new nr(function (e, n) { - t.push(function () { - e(); - }); - }); - }, - }), - (or.complete = or.completed), - (or.run = or.play), - (or.running = or.playing); - var ir = { - animated: function () { - return function () { - var e = this, - t = void 0 !== e.length ? e : [e]; - if (!(this._private.cy || this).styleEnabled()) return !1; - var n = t[0]; - return n ? n._private.animation.current.length > 0 : void 0; - }; - }, - clearQueue: function () { - return function () { - var e = this, - t = void 0 !== e.length ? e : [e]; - if (!(this._private.cy || this).styleEnabled()) return this; - for (var n = 0; n < t.length; n++) { - t[n]._private.animation.queue = []; - } - return this; - }; - }, - delay: function () { - return function (e, t) { - return (this._private.cy || this).styleEnabled() - ? this.animate({ delay: e, duration: e, complete: t }) - : this; - }; - }, - delayAnimation: function () { - return function (e, t) { - return (this._private.cy || this).styleEnabled() - ? this.animation({ delay: e, duration: e, complete: t }) - : this; - }; - }, - animation: function () { - return function (e, t) { - var n = this, - r = void 0 !== n.length, - o = r ? n : [n], - i = this._private.cy || this, - a = !r, - s = !a; - if (!i.styleEnabled()) return this; - var l = i.style(); - if (((e = Q({}, e, t)), 0 === Object.keys(e).length)) return new rr(o[0], e); - switch ((void 0 === e.duration && (e.duration = 400), e.duration)) { - case 'slow': - e.duration = 600; - break; - case 'fast': - e.duration = 200; - } - if ( - (s && ((e.style = l.getPropsList(e.style || e.css)), (e.css = void 0)), s && null != e.renderedPosition) - ) { - var c = e.renderedPosition, - u = i.pan(), - d = i.zoom(); - e.position = ot(c, d, u); - } - if (a && null != e.panBy) { - var f = e.panBy, - h = i.pan(); - e.pan = { x: h.x + f.x, y: h.y + f.y }; - } - var p = e.center || e.centre; - if (a && null != p) { - var v = i.getCenterPan(p.eles, e.zoom); - null != v && (e.pan = v); - } - if (a && null != e.fit) { - var g = e.fit, - m = i.getFitViewport(g.eles || g.boundingBox, g.padding); - null != m && ((e.pan = m.pan), (e.zoom = m.zoom)); - } - if (a && N(e.zoom)) { - var y = i.getZoomedViewport(e.zoom); - null != y ? (y.zoomed && (e.zoom = y.zoom), y.panned && (e.pan = y.pan)) : (e.zoom = null); - } - return new rr(o[0], e); - }; - }, - animate: function () { - return function (e, t) { - var n = this, - r = void 0 !== n.length ? n : [n]; - if (!(this._private.cy || this).styleEnabled()) return this; - t && (e = Q({}, e, t)); - for (var o = 0; o < r.length; o++) { - var i = r[o], - a = i.animated() && (void 0 === e.queue || e.queue); - i.animation(e, a ? { queue: !0 } : void 0).play(); - } - return this; - }; - }, - stop: function () { - return function (e, t) { - var n = this, - r = void 0 !== n.length ? n : [n], - o = this._private.cy || this; - if (!o.styleEnabled()) return this; - for (var i = 0; i < r.length; i++) { - for (var a = r[i]._private, s = a.animation.current, l = 0; l < s.length; l++) { - var c = s[l]._private; - t && (c.duration = 0); - } - e && (a.animation.queue = []), t || (a.animation.current = []); - } - return o.notify('draw'), this; - }; - }, - }, - ar = { - data: function (e) { - return ( - (e = Q( - {}, - { - field: 'data', - bindingEvent: 'data', - allowBinding: !1, - allowSetting: !1, - allowGetting: !1, - settingEvent: 'data', - settingTriggersEvent: !1, - triggerFnName: 'trigger', - immutableKeys: {}, - updateStyle: !1, - beforeGet: function (e) {}, - beforeSet: function (e, t) {}, - onSet: function (e) {}, - canSet: function (e) { - return !0; - }, - }, - e, - )), - function (t, n) { - var r = e, - o = this, - i = void 0 !== o.length, - a = i ? o : [o], - s = i ? o[0] : o; - if (j(t)) { - var l, - c = -1 !== t.indexOf('.') && h.default(t); - if (r.allowGetting && void 0 === n) - return ( - s && - (r.beforeGet(s), - (l = - c && void 0 === s._private[r.field][t] - ? d.default(s._private[r.field], c) - : s._private[r.field][t])), - l - ); - if (r.allowSetting && void 0 !== n && !r.immutableKeys[t]) { - var u = y({}, t, n); - r.beforeSet(o, u); - for (var p = 0, v = a.length; p < v; p++) { - var g = a[p]; - r.canSet(g) && - (c && void 0 === s._private[r.field][t] - ? f.default(g._private[r.field], c, n) - : (g._private[r.field][t] = n)); - } - r.updateStyle && o.updateStyle(), - r.onSet(o), - r.settingTriggersEvent && o[r.triggerFnName](r.settingEvent); - } - } else if (r.allowSetting && N(t)) { - var m, - b, - x = t, - w = Object.keys(x); - r.beforeSet(o, x); - for (var E = 0; E < w.length; E++) { - if (((b = x[(m = w[E])]), !r.immutableKeys[m])) - for (var k = 0; k < a.length; k++) { - var _ = a[k]; - r.canSet(_) && (_._private[r.field][m] = b); - } - } - r.updateStyle && o.updateStyle(), - r.onSet(o), - r.settingTriggersEvent && o[r.triggerFnName](r.settingEvent); - } else if (r.allowBinding && T(t)) { - var S = t; - o.on(r.bindingEvent, S); - } else if (r.allowGetting && void 0 === t) { - var P; - return s && (r.beforeGet(s), (P = s._private[r.field])), P; - } - return o; - } - ); - }, - removeData: function (e) { - return ( - (e = Q( - {}, - { field: 'data', event: 'data', triggerFnName: 'trigger', triggerEvent: !1, immutableKeys: {} }, - e, - )), - function (t) { - var n = e, - r = this, - o = void 0 !== r.length ? r : [r]; - if (j(t)) { - for (var i = t.split(/\s+/), a = i.length, s = 0; s < a; s++) { - var l = i[s]; - if (!F(l)) - if (!n.immutableKeys[l]) - for (var c = 0, u = o.length; c < u; c++) o[c]._private[n.field][l] = void 0; - } - n.triggerEvent && r[n.triggerFnName](n.event); - } else if (void 0 === t) { - for (var d = 0, f = o.length; d < f; d++) - for (var h = o[d]._private[n.field], p = Object.keys(h), v = 0; v < p.length; v++) { - var g = p[v]; - !n.immutableKeys[g] && (h[g] = void 0); - } - n.triggerEvent && r[n.triggerFnName](n.event); - } - return r; - } - ); - }, - }, - sr = { - eventAliasesOn: function (e) { - var t = e; - (t.addListener = t.listen = t.bind = t.on), - (t.unlisten = t.unbind = t.off = t.removeListener), - (t.trigger = t.emit), - (t.pon = t.promiseOn = - function (e, t) { - var n = this, - r = Array.prototype.slice.call(arguments, 0); - return new nr(function (e, t) { - var o = r.concat([ - function (t) { - n.off.apply(n, i), e(t); - }, - ]), - i = o.concat([]); - n.on.apply(n, o); - }); - }); - }, - }, - lr = {}; - [ir, ar, sr].forEach(function (e) { - Q(lr, e); - }); - var cr = { - animate: lr.animate(), - animation: lr.animation(), - animated: lr.animated(), - clearQueue: lr.clearQueue(), - delay: lr.delay(), - delayAnimation: lr.delayAnimation(), - stop: lr.stop(), - }, - ur = { - classes: function (e) { - var t = this; - if (void 0 === e) { - var n = []; - return ( - t[0]._private.classes.forEach(function (e) { - return n.push(e); - }), - n - ); - } - D(e) || (e = (e || '').match(/\S+/g) || []); - for (var r = [], o = new ze(e), i = 0; i < t.length; i++) { - for (var a = t[i], s = a._private, l = s.classes, c = !1, u = 0; u < e.length; u++) { - var d = e[u]; - if (!l.has(d)) { - c = !0; - break; - } - } - c || (c = l.size !== e.length), c && ((s.classes = o), r.push(a)); - } - return r.length > 0 && this.spawn(r).updateStyle().emit('class'), t; - }, - addClass: function (e) { - return this.toggleClass(e, !0); - }, - hasClass: function (e) { - var t = this[0]; - return null != t && t._private.classes.has(e); - }, - toggleClass: function (e, t) { - D(e) || (e = e.match(/\S+/g) || []); - for (var n = this, r = void 0 === t, o = [], i = 0, a = n.length; i < a; i++) - for (var s = n[i], l = s._private.classes, c = !1, u = 0; u < e.length; u++) { - var d = e[u], - f = l.has(d), - h = !1; - t || (r && !f) ? (l.add(d), (h = !0)) : (!t || (r && f)) && (l.delete(d), (h = !0)), - !c && h && (o.push(s), (c = !0)); - } - return o.length > 0 && this.spawn(o).updateStyle().emit('class'), n; - }, - removeClass: function (e) { - return this.toggleClass(e, !1); - }, - flashClass: function (e, t) { - var n = this; - if (null == t) t = 250; - else if (0 === t) return n; - return ( - n.addClass(e), - setTimeout(function () { - n.removeClass(e); - }, t), - n - ); - }, - }; - ur.className = ur.classNames = ur.classes; - var dr = { - metaChar: '[\\!\\"\\#\\$\\%\\&\\\'\\(\\)\\*\\+\\,\\.\\/\\:\\;\\<\\=\\>\\?\\@\\[\\]\\^\\`\\{\\|\\}\\~]', - comparatorOp: '=|\\!=|>|>=|<|<=|\\$=|\\^=|\\*=', - boolOp: '\\?|\\!|\\^', - string: '"(?:\\\\"|[^"])*"|\'(?:\\\\\'|[^\'])*\'', - number: q, - meta: 'degree|indegree|outdegree', - separator: '\\s*,\\s*', - descendant: '\\s+', - child: '\\s+>\\s+', - subject: '\\$', - group: 'node|edge|\\*', - directedEdge: '\\s+->\\s+', - undirectedEdge: '\\s+<->\\s+', - }; - (dr.variable = '(?:[\\w-.]|(?:\\\\' + dr.metaChar + '))+'), - (dr.className = '(?:[\\w-]|(?:\\\\' + dr.metaChar + '))+'), - (dr.value = dr.string + '|' + dr.number), - (dr.id = dr.variable), - (function () { - var e, t, n; - for (e = dr.comparatorOp.split('|'), n = 0; n < e.length; n++) (t = e[n]), (dr.comparatorOp += '|@' + t); - for (e = dr.comparatorOp.split('|'), n = 0; n < e.length; n++) - (t = e[n]).indexOf('!') >= 0 || ('=' !== t && (dr.comparatorOp += '|\\!' + t)); - })(); - var fr = 0, - hr = 1, - pr = 2, - vr = 3, - gr = 4, - mr = 5, - yr = 6, - br = 7, - xr = 8, - wr = 9, - Er = 10, - kr = 11, - _r = 12, - Sr = 13, - Pr = 14, - Cr = 15, - jr = 16, - Tr = 17, - Dr = 18, - Nr = 19, - Mr = 20, - Or = [ - { - selector: ':selected', - matches: function (e) { - return e.selected(); - }, - }, - { - selector: ':unselected', - matches: function (e) { - return !e.selected(); - }, - }, - { - selector: ':selectable', - matches: function (e) { - return e.selectable(); - }, - }, - { - selector: ':unselectable', - matches: function (e) { - return !e.selectable(); - }, - }, - { - selector: ':locked', - matches: function (e) { - return e.locked(); - }, - }, - { - selector: ':unlocked', - matches: function (e) { - return !e.locked(); - }, - }, - { - selector: ':visible', - matches: function (e) { - return e.visible(); - }, - }, - { - selector: ':hidden', - matches: function (e) { - return !e.visible(); - }, - }, - { - selector: ':transparent', - matches: function (e) { - return e.transparent(); - }, - }, - { - selector: ':grabbed', - matches: function (e) { - return e.grabbed(); - }, - }, - { - selector: ':free', - matches: function (e) { - return !e.grabbed(); - }, - }, - { - selector: ':removed', - matches: function (e) { - return e.removed(); - }, - }, - { - selector: ':inside', - matches: function (e) { - return !e.removed(); - }, - }, - { - selector: ':grabbable', - matches: function (e) { - return e.grabbable(); - }, - }, - { - selector: ':ungrabbable', - matches: function (e) { - return !e.grabbable(); - }, - }, - { - selector: ':animated', - matches: function (e) { - return e.animated(); - }, - }, - { - selector: ':unanimated', - matches: function (e) { - return !e.animated(); - }, - }, - { - selector: ':parent', - matches: function (e) { - return e.isParent(); - }, - }, - { - selector: ':childless', - matches: function (e) { - return e.isChildless(); - }, - }, - { - selector: ':child', - matches: function (e) { - return e.isChild(); - }, - }, - { - selector: ':orphan', - matches: function (e) { - return e.isOrphan(); - }, - }, - { - selector: ':nonorphan', - matches: function (e) { - return e.isChild(); - }, - }, - { - selector: ':compound', - matches: function (e) { - return e.isNode() ? e.isParent() : e.source().isParent() || e.target().isParent(); - }, - }, - { - selector: ':loop', - matches: function (e) { - return e.isLoop(); - }, - }, - { - selector: ':simple', - matches: function (e) { - return e.isSimple(); - }, - }, - { - selector: ':active', - matches: function (e) { - return e.active(); - }, - }, - { - selector: ':inactive', - matches: function (e) { - return !e.active(); - }, - }, - { - selector: ':backgrounding', - matches: function (e) { - return e.backgrounding(); - }, - }, - { - selector: ':nonbackgrounding', - matches: function (e) { - return !e.backgrounding(); - }, - }, - ].sort(function (e, t) { - return (function (e, t) { - return -1 * Z(e, t); - })(e.selector, t.selector); - }), - Ar = (function () { - for (var e, t = {}, n = 0; n < Or.length; n++) t[(e = Or[n]).selector] = e.matches; - return t; - })(), - Rr = - '(' + - Or.map(function (e) { - return e.selector; - }).join('|') + - ')', - Lr = function (e) { - return e.replace(new RegExp('\\\\(' + dr.metaChar + ')', 'g'), function (e, t) { - return t; - }); - }, - Ir = function (e, t, n) { - e[e.length - 1] = n; - }, - Br = [ - { - name: 'group', - query: !0, - regex: '(' + dr.group + ')', - populate: function (e, t, n) { - var r = b(n, 1)[0]; - t.checks.push({ type: fr, value: '*' === r ? r : r + 's' }); - }, - }, - { - name: 'state', - query: !0, - regex: Rr, - populate: function (e, t, n) { - var r = b(n, 1)[0]; - t.checks.push({ type: br, value: r }); - }, - }, - { - name: 'id', - query: !0, - regex: '\\#(' + dr.id + ')', - populate: function (e, t, n) { - var r = b(n, 1)[0]; - t.checks.push({ type: xr, value: Lr(r) }); - }, - }, - { - name: 'className', - query: !0, - regex: '\\.(' + dr.className + ')', - populate: function (e, t, n) { - var r = b(n, 1)[0]; - t.checks.push({ type: wr, value: Lr(r) }); - }, - }, - { - name: 'dataExists', - query: !0, - regex: '\\[\\s*(' + dr.variable + ')\\s*\\]', - populate: function (e, t, n) { - var r = b(n, 1)[0]; - t.checks.push({ type: gr, field: Lr(r) }); - }, - }, - { - name: 'dataCompare', - query: !0, - regex: '\\[\\s*(' + dr.variable + ')\\s*(' + dr.comparatorOp + ')\\s*(' + dr.value + ')\\s*\\]', - populate: function (e, t, n) { - var r = b(n, 3), - o = r[0], - i = r[1], - a = r[2]; - (a = null != new RegExp('^' + dr.string + '$').exec(a) ? a.substring(1, a.length - 1) : parseFloat(a)), - t.checks.push({ type: vr, field: Lr(o), operator: i, value: a }); - }, - }, - { - name: 'dataBool', - query: !0, - regex: '\\[\\s*(' + dr.boolOp + ')\\s*(' + dr.variable + ')\\s*\\]', - populate: function (e, t, n) { - var r = b(n, 2), - o = r[0], - i = r[1]; - t.checks.push({ type: mr, field: Lr(i), operator: o }); - }, - }, - { - name: 'metaCompare', - query: !0, - regex: '\\[\\[\\s*(' + dr.meta + ')\\s*(' + dr.comparatorOp + ')\\s*(' + dr.number + ')\\s*\\]\\]', - populate: function (e, t, n) { - var r = b(n, 3), - o = r[0], - i = r[1], - a = r[2]; - t.checks.push({ type: yr, field: Lr(o), operator: i, value: parseFloat(a) }); - }, - }, - { - name: 'nextQuery', - separator: !0, - regex: dr.separator, - populate: function (e, t) { - var n = e.currentSubject, - r = e.edgeCount, - o = e.compoundCount, - i = e[e.length - 1]; - return ( - null != n && ((i.subject = n), (e.currentSubject = null)), - (i.edgeCount = r), - (i.compoundCount = o), - (e.edgeCount = 0), - (e.compoundCount = 0), - (e[e.length++] = { checks: [] }) - ); - }, - }, - { - name: 'directedEdge', - separator: !0, - regex: dr.directedEdge, - populate: function (e, t) { - if (null == e.currentSubject) { - var n = { checks: [] }, - r = t, - o = { checks: [] }; - return n.checks.push({ type: kr, source: r, target: o }), Ir(e, 0, n), e.edgeCount++, o; - } - var i = { checks: [] }, - a = t, - s = { checks: [] }; - return i.checks.push({ type: _r, source: a, target: s }), Ir(e, 0, i), e.edgeCount++, s; - }, - }, - { - name: 'undirectedEdge', - separator: !0, - regex: dr.undirectedEdge, - populate: function (e, t) { - if (null == e.currentSubject) { - var n = { checks: [] }, - r = t, - o = { checks: [] }; - return n.checks.push({ type: Er, nodes: [r, o] }), Ir(e, 0, n), e.edgeCount++, o; - } - var i = { checks: [] }, - a = t, - s = { checks: [] }; - return i.checks.push({ type: Pr, node: a, neighbor: s }), Ir(e, 0, i), s; - }, - }, - { - name: 'child', - separator: !0, - regex: dr.child, - populate: function (e, t) { - if (null == e.currentSubject) { - var n = { checks: [] }, - r = { checks: [] }, - o = e[e.length - 1]; - return n.checks.push({ type: Cr, parent: o, child: r }), Ir(e, 0, n), e.compoundCount++, r; - } - if (e.currentSubject === t) { - var i = { checks: [] }, - a = e[e.length - 1], - s = { checks: [] }, - l = { checks: [] }, - c = { checks: [] }, - u = { checks: [] }; - return ( - i.checks.push({ type: Nr, left: a, right: s, subject: l }), - (l.checks = t.checks), - (t.checks = [{ type: Mr }]), - u.checks.push({ type: Mr }), - s.checks.push({ type: Tr, parent: u, child: c }), - Ir(e, 0, i), - (e.currentSubject = l), - e.compoundCount++, - c - ); - } - var d = { checks: [] }, - f = { checks: [] }, - h = [{ type: Tr, parent: d, child: f }]; - return (d.checks = t.checks), (t.checks = h), e.compoundCount++, f; - }, - }, - { - name: 'descendant', - separator: !0, - regex: dr.descendant, - populate: function (e, t) { - if (null == e.currentSubject) { - var n = { checks: [] }, - r = { checks: [] }, - o = e[e.length - 1]; - return n.checks.push({ type: jr, ancestor: o, descendant: r }), Ir(e, 0, n), e.compoundCount++, r; - } - if (e.currentSubject === t) { - var i = { checks: [] }, - a = e[e.length - 1], - s = { checks: [] }, - l = { checks: [] }, - c = { checks: [] }, - u = { checks: [] }; - return ( - i.checks.push({ type: Nr, left: a, right: s, subject: l }), - (l.checks = t.checks), - (t.checks = [{ type: Mr }]), - u.checks.push({ type: Mr }), - s.checks.push({ type: Dr, ancestor: u, descendant: c }), - Ir(e, 0, i), - (e.currentSubject = l), - e.compoundCount++, - c - ); - } - var d = { checks: [] }, - f = { checks: [] }, - h = [{ type: Dr, ancestor: d, descendant: f }]; - return (d.checks = t.checks), (t.checks = h), e.compoundCount++, f; - }, - }, - { - name: 'subject', - modifier: !0, - regex: dr.subject, - populate: function (e, t) { - if (null != e.currentSubject && e.currentSubject !== t) - return je('Redefinition of subject in selector `' + e.toString() + '`'), !1; - e.currentSubject = t; - var n = e[e.length - 1].checks[0], - r = null == n ? null : n.type; - r === kr - ? (n.type = Sr) - : r === Er && ((n.type = Pr), (n.node = n.nodes[1]), (n.neighbor = n.nodes[0]), (n.nodes = null)); - }, - }, - ]; - Br.forEach(function (e) { - return (e.regexObj = new RegExp('^' + e.regex)); - }); - var Fr = function (e) { - for (var t, n, r, o = 0; o < Br.length; o++) { - var i = Br[o], - a = i.name, - s = e.match(i.regexObj); - if (null != s) { - (n = s), (t = i), (r = a); - var l = s[0]; - e = e.substring(l.length); - break; - } - } - return { expr: t, match: n, name: r, remaining: e }; - }, - zr = { - parse: function (e) { - var t = this, - n = (t.inputText = e), - r = (t[0] = { checks: [] }); - for ( - t.length = 1, - n = (function (e) { - var t = e.match(/^\s+/); - if (t) { - var n = t[0]; - e = e.substring(n.length); - } - return e; - })(n); - ; - - ) { - var o = Fr(n); - if (null == o.expr) return je('The selector `' + e + '`is invalid'), !1; - var i = o.match.slice(1), - a = o.expr.populate(t, r, i); - if (!1 === a) return !1; - if ((null != a && (r = a), (n = o.remaining).match(/^\s*$/))) break; - } - var s = t[t.length - 1]; - null != t.currentSubject && (s.subject = t.currentSubject), - (s.edgeCount = t.edgeCount), - (s.compoundCount = t.compoundCount); - for (var l = 0; l < t.length; l++) { - var c = t[l]; - if (c.compoundCount > 0 && c.edgeCount > 0) - return ( - je( - 'The selector `' + e + '` is invalid because it uses both a compound selector and an edge selector', - ), - !1 - ); - if (c.edgeCount > 1) - return je('The selector `' + e + '` is invalid because it uses multiple edge selectors'), !1; - 1 === c.edgeCount && - je( - 'The selector `' + - e + - '` is deprecated. Edge selectors do not take effect on changes to source and target nodes after an edge is added, for performance reasons. Use a class or data selector on edges instead, updating the class or data of an edge when your app detects a change in source or target nodes.', - ); - } - return !0; - }, - toString: function () { - if (null != this.toStringCache) return this.toStringCache; - for ( - var e = function (e) { - return e ?? ''; - }, - t = function (t) { - return j(t) ? '"' + t + '"' : e(t); - }, - n = function (e) { - return ' ' + e + ' '; - }, - r = function (r, i) { - var a = r.type, - s = r.value; - switch (a) { - case fr: - var l = e(s); - return l.substring(0, l.length - 1); - case vr: - var c = r.field, - u = r.operator; - return '[' + c + n(e(u)) + t(s) + ']'; - case mr: - var d = r.operator, - f = r.field; - return '[' + e(d) + f + ']'; - case gr: - return '[' + r.field + ']'; - case yr: - var h = r.operator; - return '[[' + r.field + n(e(h)) + t(s) + ']]'; - case br: - return s; - case xr: - return '#' + s; - case wr: - return '.' + s; - case Tr: - case Cr: - return o(r.parent, i) + n('>') + o(r.child, i); - case Dr: - case jr: - return o(r.ancestor, i) + ' ' + o(r.descendant, i); - case Nr: - var p = o(r.left, i), - v = o(r.subject, i), - g = o(r.right, i); - return p + (p.length > 0 ? ' ' : '') + v + g; - case Mr: - return ''; - } - }, - o = function (e, t) { - return e.checks.reduce(function (n, o, i) { - return n + (t === e && 0 === i ? '$' : '') + r(o, t); - }, ''); - }, - i = '', - a = 0; - a < this.length; - a++ - ) { - var s = this[a]; - (i += o(s, s.subject)), this.length > 1 && a < this.length - 1 && (i += ', '); - } - return (this.toStringCache = i), i; - }, - }, - Vr = function (e, t, n) { - var r, - o, - i, - a = j(e), - s = M(e), - l = j(n), - c = !1, - u = !1, - d = !1; - switch ( - (t.indexOf('!') >= 0 && ((t = t.replace('!', '')), (u = !0)), - t.indexOf('@') >= 0 && ((t = t.replace('@', '')), (c = !0)), - (a || l || c) && ((o = a || s ? '' + e : ''), (i = '' + n)), - c && ((e = o = o.toLowerCase()), (n = i = i.toLowerCase())), - t) - ) { - case '*=': - r = o.indexOf(i) >= 0; - break; - case '$=': - r = o.indexOf(i, o.length - i.length) >= 0; - break; - case '^=': - r = 0 === o.indexOf(i); - break; - case '=': - r = e === n; - break; - case '>': - (d = !0), (r = e > n); - break; - case '>=': - (d = !0), (r = e >= n); - break; - case '<': - (d = !0), (r = e < n); - break; - case '<=': - (d = !0), (r = e <= n); - break; - default: - r = !1; - } - return !u || (null == e && d) || (r = !r), r; - }, - Gr = function (e, t) { - return e.data(t); - }, - Hr = [], - Wr = function (e, t) { - return e.checks.every(function (e) { - return Hr[e.type](e, t); - }); - }; - (Hr[fr] = function (e, t) { - var n = e.value; - return '*' === n || n === t.group(); - }), - (Hr[br] = function (e, t) { - return (function (e, t) { - return Ar[e](t); - })(e.value, t); - }), - (Hr[xr] = function (e, t) { - var n = e.value; - return t.id() === n; - }), - (Hr[wr] = function (e, t) { - var n = e.value; - return t.hasClass(n); - }), - (Hr[yr] = function (e, t) { - var n = e.field, - r = e.operator, - o = e.value; - return Vr( - (function (e, t) { - return e[t](); - })(t, n), - r, - o, - ); - }), - (Hr[vr] = function (e, t) { - var n = e.field, - r = e.operator, - o = e.value; - return Vr(Gr(t, n), r, o); - }), - (Hr[mr] = function (e, t) { - var n = e.field, - r = e.operator; - return (function (e, t) { - switch (t) { - case '?': - return !!e; - case '!': - return !e; - case '^': - return void 0 === e; - } - })(Gr(t, n), r); - }), - (Hr[gr] = function (e, t) { - var n = e.field; - return e.operator, void 0 !== Gr(t, n); - }), - (Hr[Er] = function (e, t) { - var n = e.nodes[0], - r = e.nodes[1], - o = t.source(), - i = t.target(); - return (Wr(n, o) && Wr(r, i)) || (Wr(r, o) && Wr(n, i)); - }), - (Hr[Pr] = function (e, t) { - return ( - Wr(e.node, t) && - t.neighborhood().some(function (t) { - return t.isNode() && Wr(e.neighbor, t); - }) - ); - }), - (Hr[kr] = function (e, t) { - return Wr(e.source, t.source()) && Wr(e.target, t.target()); - }), - (Hr[_r] = function (e, t) { - return ( - Wr(e.source, t) && - t.outgoers().some(function (t) { - return t.isNode() && Wr(e.target, t); - }) - ); - }), - (Hr[Sr] = function (e, t) { - return ( - Wr(e.target, t) && - t.incomers().some(function (t) { - return t.isNode() && Wr(e.source, t); - }) - ); - }), - (Hr[Cr] = function (e, t) { - return Wr(e.child, t) && Wr(e.parent, t.parent()); - }), - (Hr[Tr] = function (e, t) { - return ( - Wr(e.parent, t) && - t.children().some(function (t) { - return Wr(e.child, t); - }) - ); - }), - (Hr[jr] = function (e, t) { - return ( - Wr(e.descendant, t) && - t.ancestors().some(function (t) { - return Wr(e.ancestor, t); - }) - ); - }), - (Hr[Dr] = function (e, t) { - return ( - Wr(e.ancestor, t) && - t.descendants().some(function (t) { - return Wr(e.descendant, t); - }) - ); - }), - (Hr[Nr] = function (e, t) { - return Wr(e.subject, t) && Wr(e.left, t) && Wr(e.right, t); - }), - (Hr[Mr] = function () { - return !0; - }), - (Hr[hr] = function (e, t) { - return e.value.has(t); - }), - (Hr[pr] = function (e, t) { - return (0, e.value)(t); - }); - var Ur = { - matches: function (e) { - for (var t = 0; t < this.length; t++) { - var n = this[t]; - if (Wr(n, e)) return !0; - } - return !1; - }, - filter: function (e) { - var t = this; - if (1 === t.length && 1 === t[0].checks.length && t[0].checks[0].type === xr) - return e.getElementById(t[0].checks[0].value).collection(); - var n = function (e) { - for (var n = 0; n < t.length; n++) { - var r = t[n]; - if (Wr(r, e)) return !0; - } - return !1; - }; - return ( - null == t.text() && - (n = function () { - return !0; - }), - e.filter(n) - ); - }, - }, - qr = function (e) { - (this.inputText = e), - (this.currentSubject = null), - (this.compoundCount = 0), - (this.edgeCount = 0), - (this.length = 0), - null == e || - (j(e) && e.match(/^\s*$/)) || - (A(e) - ? this.addQuery({ checks: [{ type: hr, value: e.collection() }] }) - : T(e) - ? this.addQuery({ checks: [{ type: pr, value: e }] }) - : j(e) - ? this.parse(e) || (this.invalid = !0) - : Pe('A selector must be created from a string; found ')); - }, - Yr = qr.prototype; - [zr, Ur].forEach(function (e) { - return Q(Yr, e); - }), - (Yr.text = function () { - return this.inputText; - }), - (Yr.size = function () { - return this.length; - }), - (Yr.eq = function (e) { - return this[e]; - }), - (Yr.sameText = function (e) { - return !this.invalid && !e.invalid && this.text() === e.text(); - }), - (Yr.addQuery = function (e) { - this[this.length++] = e; - }), - (Yr.selector = Yr.toString); - var Xr = { - allAre: function (e) { - var t = new qr(e); - return this.every(function (e) { - return t.matches(e); - }); - }, - is: function (e) { - var t = new qr(e); - return this.some(function (e) { - return t.matches(e); - }); - }, - some: function (e, t) { - for (var n = 0; n < this.length; n++) { - if (t ? e.apply(t, [this[n], n, this]) : e(this[n], n, this)) return !0; - } - return !1; - }, - every: function (e, t) { - for (var n = 0; n < this.length; n++) { - if (!(t ? e.apply(t, [this[n], n, this]) : e(this[n], n, this))) return !1; - } - return !0; - }, - same: function (e) { - if (this === e) return !0; - e = this.cy().collection(e); - var t = this.length; - return ( - t === e.length && - (1 === t - ? this[0] === e[0] - : this.every(function (t) { - return e.hasElementWithId(t.id()); - })) - ); - }, - anySame: function (e) { - return ( - (e = this.cy().collection(e)), - this.some(function (t) { - return e.hasElementWithId(t.id()); - }) - ); - }, - allAreNeighbors: function (e) { - e = this.cy().collection(e); - var t = this.neighborhood(); - return e.every(function (e) { - return t.hasElementWithId(e.id()); - }); - }, - contains: function (e) { - e = this.cy().collection(e); - var t = this; - return e.every(function (e) { - return t.hasElementWithId(e.id()); - }); - }, - }; - (Xr.allAreNeighbours = Xr.allAreNeighbors), (Xr.has = Xr.contains), (Xr.equal = Xr.equals = Xr.same); - var $r, - Kr, - Zr = function (e, t) { - return function (n, r, o, i) { - var a, - s = n, - l = this; - if ((null == s ? (a = '') : A(s) && 1 === s.length && (a = s.id()), 1 === l.length && a)) { - var c = l[0]._private, - u = (c.traversalCache = c.traversalCache || {}), - d = (u[t] = u[t] || []), - f = ve(a), - h = d[f]; - return h || (d[f] = e.call(l, n, r, o, i)); - } - return e.call(l, n, r, o, i); - }; - }, - Qr = { - parent: function (e) { - var t = []; - if (1 === this.length) { - var n = this[0]._private.parent; - if (n) return n; - } - for (var r = 0; r < this.length; r++) { - var o = this[r]._private.parent; - o && t.push(o); - } - return this.spawn(t, !0).filter(e); - }, - parents: function (e) { - for (var t = [], n = this.parent(); n.nonempty(); ) { - for (var r = 0; r < n.length; r++) { - var o = n[r]; - t.push(o); - } - n = n.parent(); - } - return this.spawn(t, !0).filter(e); - }, - commonAncestors: function (e) { - for (var t, n = 0; n < this.length; n++) { - var r = this[n].parents(); - t = (t = t || r).intersect(r); - } - return t.filter(e); - }, - orphans: function (e) { - return this.stdFilter(function (e) { - return e.isOrphan(); - }).filter(e); - }, - nonorphans: function (e) { - return this.stdFilter(function (e) { - return e.isChild(); - }).filter(e); - }, - children: Zr(function (e) { - for (var t = [], n = 0; n < this.length; n++) - for (var r = this[n]._private.children, o = 0; o < r.length; o++) t.push(r[o]); - return this.spawn(t, !0).filter(e); - }, 'children'), - siblings: function (e) { - return this.parent().children().not(this).filter(e); - }, - isParent: function () { - var e = this[0]; - if (e) return e.isNode() && 0 !== e._private.children.length; - }, - isChildless: function () { - var e = this[0]; - if (e) return e.isNode() && 0 === e._private.children.length; - }, - isChild: function () { - var e = this[0]; - if (e) return e.isNode() && null != e._private.parent; - }, - isOrphan: function () { - var e = this[0]; - if (e) return e.isNode() && null == e._private.parent; - }, - descendants: function (e) { - var t = []; - return ( - (function e(n) { - for (var r = 0; r < n.length; r++) { - var o = n[r]; - t.push(o), o.children().nonempty() && e(o.children()); - } - })(this.children()), - this.spawn(t, !0).filter(e) - ); - }, - }; - function Jr(e, t, n, r) { - for (var o = [], i = new ze(), a = e.cy().hasCompoundNodes(), s = 0; s < e.length; s++) { - var l = e[s]; - n ? o.push(l) : a && r(o, i, l); - } - for (; o.length > 0; ) { - var c = o.shift(); - t(c), i.add(c.id()), a && r(o, i, c); - } - return e; - } - function eo(e, t, n) { - if (n.isParent()) - for (var r = n._private.children, o = 0; o < r.length; o++) { - var i = r[o]; - t.has(i.id()) || e.push(i); - } - } - function to(e, t, n) { - if (n.isChild()) { - var r = n._private.parent; - t.has(r.id()) || e.push(r); - } - } - function no(e, t, n) { - to(e, t, n), eo(e, t, n); - } - (Qr.forEachDown = function (e) { - return Jr(this, e, !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], eo); - }), - (Qr.forEachUp = function (e) { - return Jr(this, e, !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], to); - }), - (Qr.forEachUpAndDown = function (e) { - return Jr(this, e, !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], no); - }), - (Qr.ancestors = Qr.parents), - (($r = Kr = - { - data: lr.data({ - field: 'data', - bindingEvent: 'data', - allowBinding: !0, - allowSetting: !0, - settingEvent: 'data', - settingTriggersEvent: !0, - triggerFnName: 'trigger', - allowGetting: !0, - immutableKeys: { id: !0, source: !0, target: !0, parent: !0 }, - updateStyle: !0, - }), - removeData: lr.removeData({ - field: 'data', - event: 'data', - triggerFnName: 'trigger', - triggerEvent: !0, - immutableKeys: { id: !0, source: !0, target: !0, parent: !0 }, - updateStyle: !0, - }), - scratch: lr.data({ - field: 'scratch', - bindingEvent: 'scratch', - allowBinding: !0, - allowSetting: !0, - settingEvent: 'scratch', - settingTriggersEvent: !0, - triggerFnName: 'trigger', - allowGetting: !0, - updateStyle: !0, - }), - removeScratch: lr.removeData({ - field: 'scratch', - event: 'scratch', - triggerFnName: 'trigger', - triggerEvent: !0, - updateStyle: !0, - }), - rscratch: lr.data({ - field: 'rscratch', - allowBinding: !1, - allowSetting: !0, - settingTriggersEvent: !1, - allowGetting: !0, - }), - removeRscratch: lr.removeData({ field: 'rscratch', triggerEvent: !1 }), - id: function () { - var e = this[0]; - if (e) return e._private.data.id; - }, - }).attr = $r.data), - ($r.removeAttr = $r.removeData); - var ro, - oo, - io = Kr, - ao = {}; - function so(e) { - return function (t) { - var n = this; - if ((void 0 === t && (t = !0), 0 !== n.length && n.isNode() && !n.removed())) { - for (var r = 0, o = n[0], i = o._private.edges, a = 0; a < i.length; a++) { - var s = i[a]; - (!t && s.isLoop()) || (r += e(o, s)); - } - return r; - } - }; - } - function lo(e, t) { - return function (n) { - for (var r, o = this.nodes(), i = 0; i < o.length; i++) { - var a = o[i][e](n); - void 0 === a || (void 0 !== r && !t(a, r)) || (r = a); - } - return r; - }; - } - Q(ao, { - degree: so(function (e, t) { - return t.source().same(t.target()) ? 2 : 1; - }), - indegree: so(function (e, t) { - return t.target().same(e) ? 1 : 0; - }), - outdegree: so(function (e, t) { - return t.source().same(e) ? 1 : 0; - }), - }), - Q(ao, { - minDegree: lo('degree', function (e, t) { - return e < t; - }), - maxDegree: lo('degree', function (e, t) { - return e > t; - }), - minIndegree: lo('indegree', function (e, t) { - return e < t; - }), - maxIndegree: lo('indegree', function (e, t) { - return e > t; - }), - minOutdegree: lo('outdegree', function (e, t) { - return e < t; - }), - maxOutdegree: lo('outdegree', function (e, t) { - return e > t; - }), - }), - Q(ao, { - totalDegree: function (e) { - for (var t = 0, n = this.nodes(), r = 0; r < n.length; r++) t += n[r].degree(e); - return t; - }, - }); - var co = function (e, t, n) { - for (var r = 0; r < e.length; r++) { - var o = e[r]; - if (!o.locked()) { - var i = o._private.position, - a = { x: null != t.x ? t.x - i.x : 0, y: null != t.y ? t.y - i.y : 0 }; - !o.isParent() || (0 === a.x && 0 === a.y) || o.children().shift(a, n), o.dirtyBoundingBoxCache(); - } - } - }, - uo = { - field: 'position', - bindingEvent: 'position', - allowBinding: !0, - allowSetting: !0, - settingEvent: 'position', - settingTriggersEvent: !0, - triggerFnName: 'emitAndNotify', - allowGetting: !0, - validKeys: ['x', 'y'], - beforeGet: function (e) { - e.updateCompoundBounds(); - }, - beforeSet: function (e, t) { - co(e, t, !1); - }, - onSet: function (e) { - e.dirtyCompoundBoundsCache(); - }, - canSet: function (e) { - return !e.locked(); - }, - }; - (ro = oo = - { - position: lr.data(uo), - silentPosition: lr.data( - Q({}, uo, { - allowBinding: !1, - allowSetting: !0, - settingTriggersEvent: !1, - allowGetting: !1, - beforeSet: function (e, t) { - co(e, t, !0); - }, - onSet: function (e) { - e.dirtyCompoundBoundsCache(); - }, - }), - ), - positions: function (e, t) { - if (N(e)) t ? this.silentPosition(e) : this.position(e); - else if (T(e)) { - var n = e, - r = this.cy(); - r.startBatch(); - for (var o = 0; o < this.length; o++) { - var i, - a = this[o]; - (i = n(a, o)) && (t ? a.silentPosition(i) : a.position(i)); - } - r.endBatch(); - } - return this; - }, - silentPositions: function (e) { - return this.positions(e, !0); - }, - shift: function (e, t, n) { - var r; - if ( - (N(e) - ? ((r = { x: M(e.x) ? e.x : 0, y: M(e.y) ? e.y : 0 }), (n = t)) - : j(e) && M(t) && ((r = { x: 0, y: 0 })[e] = t), - null != r) - ) { - var o = this.cy(); - o.startBatch(); - for (var i = 0; i < this.length; i++) { - var a = this[i]; - if (!(o.hasCompoundNodes() && a.isChild() && a.ancestors().anySame(this))) { - var s = a.position(), - l = { x: s.x + r.x, y: s.y + r.y }; - n ? a.silentPosition(l) : a.position(l); - } - } - o.endBatch(); - } - return this; - }, - silentShift: function (e, t) { - return N(e) ? this.shift(e, !0) : j(e) && M(t) && this.shift(e, t, !0), this; - }, - renderedPosition: function (e, t) { - var n = this[0], - r = this.cy(), - o = r.zoom(), - i = r.pan(), - a = N(e) ? e : void 0, - s = void 0 !== a || (void 0 !== t && j(e)); - if (n && n.isNode()) { - if (!s) { - var l = n.position(); - return (a = rt(l, o, i)), void 0 === e ? a : a[e]; - } - for (var c = 0; c < this.length; c++) { - var u = this[c]; - void 0 !== t ? u.position(e, (t - i[e]) / o) : void 0 !== a && u.position(ot(a, o, i)); - } - } else if (!s) return; - return this; - }, - relativePosition: function (e, t) { - var n = this[0], - r = this.cy(), - o = N(e) ? e : void 0, - i = void 0 !== o || (void 0 !== t && j(e)), - a = r.hasCompoundNodes(); - if (n && n.isNode()) { - if (!i) { - var s = n.position(), - l = a ? n.parent() : null, - c = l && l.length > 0, - u = c; - c && (l = l[0]); - var d = u ? l.position() : { x: 0, y: 0 }; - return (o = { x: s.x - d.x, y: s.y - d.y }), void 0 === e ? o : o[e]; - } - for (var f = 0; f < this.length; f++) { - var h = this[f], - p = a ? h.parent() : null, - v = p && p.length > 0, - g = v; - v && (p = p[0]); - var m = g ? p.position() : { x: 0, y: 0 }; - void 0 !== t ? h.position(e, t + m[e]) : void 0 !== o && h.position({ x: o.x + m.x, y: o.y + m.y }); - } - } else if (!i) return; - return this; - }, - }), - (ro.modelPosition = ro.point = ro.position), - (ro.modelPositions = ro.points = ro.positions), - (ro.renderedPoint = ro.renderedPosition), - (ro.relativePoint = ro.relativePosition); - var fo, - ho, - po = oo; - (fo = ho = {}), - (ho.renderedBoundingBox = function (e) { - var t = this.boundingBox(e), - n = this.cy(), - r = n.zoom(), - o = n.pan(), - i = t.x1 * r + o.x, - a = t.x2 * r + o.x, - s = t.y1 * r + o.y, - l = t.y2 * r + o.y; - return { x1: i, x2: a, y1: s, y2: l, w: a - i, h: l - s }; - }), - (ho.dirtyCompoundBoundsCache = function () { - var e = arguments.length > 0 && void 0 !== arguments[0] && arguments[0], - t = this.cy(); - return t.styleEnabled() && t.hasCompoundNodes() - ? (this.forEachUp(function (t) { - if (t.isParent()) { - var n = t._private; - (n.compoundBoundsClean = !1), (n.bbCache = null), e || t.emitAndNotify('bounds'); - } - }), - this) - : this; - }), - (ho.updateCompoundBounds = function () { - var e = arguments.length > 0 && void 0 !== arguments[0] && arguments[0], - t = this.cy(); - if (!t.styleEnabled() || !t.hasCompoundNodes()) return this; - if (!e && t.batching()) return this; - function n(e) { - if (e.isParent()) { - var t = e._private, - n = e.children(), - r = 'include' === e.pstyle('compound-sizing-wrt-labels').value, - o = { - width: { - val: e.pstyle('min-width').pfValue, - left: e.pstyle('min-width-bias-left'), - right: e.pstyle('min-width-bias-right'), - }, - height: { - val: e.pstyle('min-height').pfValue, - top: e.pstyle('min-height-bias-top'), - bottom: e.pstyle('min-height-bias-bottom'), - }, - }, - i = n.boundingBox({ includeLabels: r, includeOverlays: !1, useCache: !1 }), - a = t.position; - (0 !== i.w && 0 !== i.h) || - (((i = { w: e.pstyle('width').pfValue, h: e.pstyle('height').pfValue }).x1 = a.x - i.w / 2), - (i.x2 = a.x + i.w / 2), - (i.y1 = a.y - i.h / 2), - (i.y2 = a.y + i.h / 2)); - var s = o.width.left.value; - 'px' === o.width.left.units && o.width.val > 0 && (s = (100 * s) / o.width.val); - var l = o.width.right.value; - 'px' === o.width.right.units && o.width.val > 0 && (l = (100 * l) / o.width.val); - var c = o.height.top.value; - 'px' === o.height.top.units && o.height.val > 0 && (c = (100 * c) / o.height.val); - var u = o.height.bottom.value; - 'px' === o.height.bottom.units && o.height.val > 0 && (u = (100 * u) / o.height.val); - var d = m(o.width.val - i.w, s, l), - f = d.biasDiff, - h = d.biasComplementDiff, - p = m(o.height.val - i.h, c, u), - v = p.biasDiff, - g = p.biasComplementDiff; - (t.autoPadding = (function (e, t, n, r) { - if ('%' !== n.units) return 'px' === n.units ? n.pfValue : 0; - switch (r) { - case 'width': - return e > 0 ? n.pfValue * e : 0; - case 'height': - return t > 0 ? n.pfValue * t : 0; - case 'average': - return e > 0 && t > 0 ? (n.pfValue * (e + t)) / 2 : 0; - case 'min': - return e > 0 && t > 0 ? (e > t ? n.pfValue * t : n.pfValue * e) : 0; - case 'max': - return e > 0 && t > 0 ? (e > t ? n.pfValue * e : n.pfValue * t) : 0; - default: - return 0; - } - })(i.w, i.h, e.pstyle('padding'), e.pstyle('padding-relative-to').value)), - (t.autoWidth = Math.max(i.w, o.width.val)), - (a.x = (-f + i.x1 + i.x2 + h) / 2), - (t.autoHeight = Math.max(i.h, o.height.val)), - (a.y = (-v + i.y1 + i.y2 + g) / 2); - } - function m(e, t, n) { - var r = 0, - o = 0, - i = t + n; - return e > 0 && i > 0 && ((r = (t / i) * e), (o = (n / i) * e)), { biasDiff: r, biasComplementDiff: o }; - } - } - for (var r = 0; r < this.length; r++) { - var o = this[r], - i = o._private; - (i.compoundBoundsClean && !e) || (n(o), t.batching() || (i.compoundBoundsClean = !0)); - } - return this; - }); - var vo = function (e) { - return e === 1 / 0 || e === -1 / 0 ? 0 : e; - }, - go = function (e, t, n, r, o) { - r - t != 0 && - o - n != 0 && - null != t && - null != n && - null != r && - null != o && - ((e.x1 = t < e.x1 ? t : e.x1), - (e.x2 = r > e.x2 ? r : e.x2), - (e.y1 = n < e.y1 ? n : e.y1), - (e.y2 = o > e.y2 ? o : e.y2), - (e.w = e.x2 - e.x1), - (e.h = e.y2 - e.y1)); - }, - mo = function (e, t) { - return null == t ? e : go(e, t.x1, t.y1, t.x2, t.y2); - }, - yo = function (e, t, n) { - return Le(e, t, n); - }, - bo = function (e, t, n) { - if (!t.cy().headless()) { - var r, - o, - i = t._private, - a = i.rstyle, - s = a.arrowWidth / 2; - if ('none' !== t.pstyle(n + '-arrow-shape').value) { - 'source' === n - ? ((r = a.srcX), (o = a.srcY)) - : 'target' === n - ? ((r = a.tgtX), (o = a.tgtY)) - : ((r = a.midX), (o = a.midY)); - var l = (i.arrowBounds = i.arrowBounds || {}), - c = (l[n] = l[n] || {}); - (c.x1 = r - s), - (c.y1 = o - s), - (c.x2 = r + s), - (c.y2 = o + s), - (c.w = c.x2 - c.x1), - (c.h = c.y2 - c.y1), - mt(c, 1), - go(e, c.x1, c.y1, c.x2, c.y2); - } - } - }, - xo = function (e, t, n) { - if (!t.cy().headless()) { - var r; - r = n ? n + '-' : ''; - var o = t._private, - i = o.rstyle; - if (t.pstyle(r + 'label').strValue) { - var a, - s, - l, - c, - u = t.pstyle('text-halign'), - d = t.pstyle('text-valign'), - f = yo(i, 'labelWidth', n), - h = yo(i, 'labelHeight', n), - p = yo(i, 'labelX', n), - v = yo(i, 'labelY', n), - g = t.pstyle(r + 'text-margin-x').pfValue, - m = t.pstyle(r + 'text-margin-y').pfValue, - y = t.isEdge(), - b = t.pstyle(r + 'text-rotation'), - x = t.pstyle('text-outline-width').pfValue, - w = t.pstyle('text-border-width').pfValue / 2, - E = t.pstyle('text-background-padding').pfValue, - k = h, - _ = f, - S = _ / 2, - P = k / 2; - if (y) (a = p - S), (s = p + S), (l = v - P), (c = v + P); - else { - switch (u.value) { - case 'left': - (a = p - _), (s = p); - break; - case 'center': - (a = p - S), (s = p + S); - break; - case 'right': - (a = p), (s = p + _); - } - switch (d.value) { - case 'top': - (l = v - k), (c = v); - break; - case 'center': - (l = v - P), (c = v + P); - break; - case 'bottom': - (l = v), (c = v + k); - } - } - (a += g - Math.max(x, w) - E - 2), - (s += g + Math.max(x, w) + E + 2), - (l += m - Math.max(x, w) - E - 2), - (c += m + Math.max(x, w) + E + 2); - var C = n || 'main', - j = o.labelBounds, - T = (j[C] = j[C] || {}); - (T.x1 = a), (T.y1 = l), (T.x2 = s), (T.y2 = c), (T.w = s - a), (T.h = c - l); - var D = y && 'autorotate' === b.strValue, - N = null != b.pfValue && 0 !== b.pfValue; - if (D || N) { - var M = D ? yo(o.rstyle, 'labelAngle', n) : b.pfValue, - O = Math.cos(M), - A = Math.sin(M), - R = (a + s) / 2, - L = (l + c) / 2; - if (!y) { - switch (u.value) { - case 'left': - R = s; - break; - case 'right': - R = a; - } - switch (d.value) { - case 'top': - L = c; - break; - case 'bottom': - L = l; - } - } - var I = function (e, t) { - return { x: (e -= R) * O - (t -= L) * A + R, y: e * A + t * O + L }; - }, - B = I(a, l), - F = I(a, c), - z = I(s, l), - V = I(s, c); - (a = Math.min(B.x, F.x, z.x, V.x)), - (s = Math.max(B.x, F.x, z.x, V.x)), - (l = Math.min(B.y, F.y, z.y, V.y)), - (c = Math.max(B.y, F.y, z.y, V.y)); - } - var G = C + 'Rot', - H = (j[G] = j[G] || {}); - (H.x1 = a), - (H.y1 = l), - (H.x2 = s), - (H.y2 = c), - (H.w = s - a), - (H.h = c - l), - go(e, a, l, s, c), - go(o.labelBounds.all, a, l, s, c); - } - return e; - } - }, - wo = function (e) { - var t = 0, - n = function (e) { - return (e ? 1 : 0) << t++; - }, - r = 0; - return ( - (r += n(e.incudeNodes)), - (r += n(e.includeEdges)), - (r += n(e.includeLabels)), - (r += n(e.includeMainLabels)), - (r += n(e.includeSourceLabels)), - (r += n(e.includeTargetLabels)), - (r += n(e.includeOverlays)) - ); - }, - Eo = function (e) { - if (e.isEdge()) { - var t = e.source().position(), - n = e.target().position(), - r = function (e) { - return Math.round(e); - }; - return (function (e, t) { - var n = { value: 0, done: !1 }, - r = 0, - o = e.length; - return ue( - { - next: function () { - return r < o ? (n.value = e[r++]) : (n.done = !0), n; - }, - }, - t, - ); - })([r(t.x), r(t.y), r(n.x), r(n.y)]); - } - return 0; - }, - ko = function (e, t) { - var n, - r = e._private, - o = e.isEdge(), - i = (null == t ? So : wo(t)) === So, - a = Eo(e), - s = r.bbCachePosKey === a, - l = t.useCache && s, - c = function (e) { - return null == e._private.bbCache || e._private.styleDirty; - }; - if ( - (!l || c(e) || (o && c(e.source())) || c(e.target()) - ? (s || e.recalculateRenderedStyle(l), - (n = (function (e, t) { - var n, - r, - o, - i, - a, - s, - l, - c = e._private.cy, - u = c.styleEnabled(), - d = c.headless(), - f = vt(), - h = e._private, - p = e.isNode(), - v = e.isEdge(), - g = h.rstyle, - m = p && u ? e.pstyle('bounds-expansion').pfValue : [0], - y = function (e) { - return 'none' !== e.pstyle('display').value; - }, - b = !u || (y(e) && (!v || (y(e.source()) && y(e.target())))); - if (b) { - var x = 0; - u && - t.includeOverlays && - 0 !== e.pstyle('overlay-opacity').value && - (x = e.pstyle('overlay-padding').value); - var w = 0; - u && - t.includeUnderlays && - 0 !== e.pstyle('underlay-opacity').value && - (w = e.pstyle('underlay-padding').value); - var E = Math.max(x, w), - k = 0; - if ((u && (k = e.pstyle('width').pfValue / 2), p && t.includeNodes)) { - var _ = e.position(); - (a = _.x), (s = _.y); - var S = e.outerWidth() / 2, - P = e.outerHeight() / 2; - go(f, (n = a - S), (o = s - P), (r = a + S), (i = s + P)); - } else if (v && t.includeEdges) - if (u && !d) { - var C = e.pstyle('curve-style').strValue; - if ( - ((n = Math.min(g.srcX, g.midX, g.tgtX)), - (r = Math.max(g.srcX, g.midX, g.tgtX)), - (o = Math.min(g.srcY, g.midY, g.tgtY)), - (i = Math.max(g.srcY, g.midY, g.tgtY)), - go(f, (n -= k), (o -= k), (r += k), (i += k)), - 'haystack' === C) - ) { - var j = g.haystackPts; - if (j && 2 === j.length) { - if (((n = j[0].x), (o = j[0].y), n > (r = j[1].x))) { - var T = n; - (n = r), (r = T); - } - if (o > (i = j[1].y)) { - var D = o; - (o = i), (i = D); - } - go(f, n - k, o - k, r + k, i + k); - } - } else if ('bezier' === C || 'unbundled-bezier' === C || 'segments' === C || 'taxi' === C) { - var N; - switch (C) { - case 'bezier': - case 'unbundled-bezier': - N = g.bezierPts; - break; - case 'segments': - case 'taxi': - N = g.linePts; - } - if (null != N) - for (var M = 0; M < N.length; M++) { - var O = N[M]; - (n = O.x - k), (r = O.x + k), (o = O.y - k), (i = O.y + k), go(f, n, o, r, i); - } - } - } else { - var A = e.source().position(), - R = e.target().position(); - if ((n = A.x) > (r = R.x)) { - var L = n; - (n = r), (r = L); - } - if ((o = A.y) > (i = R.y)) { - var I = o; - (o = i), (i = I); - } - go(f, (n -= k), (o -= k), (r += k), (i += k)); - } - if ( - (u && - t.includeEdges && - v && - (bo(f, e, 'mid-source'), bo(f, e, 'mid-target'), bo(f, e, 'source'), bo(f, e, 'target')), - u && 'yes' === e.pstyle('ghost').value) - ) { - var B = e.pstyle('ghost-offset-x').pfValue, - F = e.pstyle('ghost-offset-y').pfValue; - go(f, f.x1 + B, f.y1 + F, f.x2 + B, f.y2 + F); - } - var z = (h.bodyBounds = h.bodyBounds || {}); - bt(z, f), - yt(z, m), - mt(z, 1), - u && ((n = f.x1), (r = f.x2), (o = f.y1), (i = f.y2), go(f, n - E, o - E, r + E, i + E)); - var V = (h.overlayBounds = h.overlayBounds || {}); - bt(V, f), yt(V, m), mt(V, 1); - var G = (h.labelBounds = h.labelBounds || {}); - null != G.all - ? (((l = G.all).x1 = 1 / 0), - (l.y1 = 1 / 0), - (l.x2 = -1 / 0), - (l.y2 = -1 / 0), - (l.w = 0), - (l.h = 0)) - : (G.all = vt()), - u && - t.includeLabels && - (t.includeMainLabels && xo(f, e, null), - v && - (t.includeSourceLabels && xo(f, e, 'source'), t.includeTargetLabels && xo(f, e, 'target'))); - } - return ( - (f.x1 = vo(f.x1)), - (f.y1 = vo(f.y1)), - (f.x2 = vo(f.x2)), - (f.y2 = vo(f.y2)), - (f.w = vo(f.x2 - f.x1)), - (f.h = vo(f.y2 - f.y1)), - f.w > 0 && f.h > 0 && b && (yt(f, m), mt(f, 1)), - f - ); - })(e, _o)), - (r.bbCache = n), - (r.bbCachePosKey = a)) - : (n = r.bbCache), - !i) - ) { - var u = e.isNode(); - (n = vt()), - ((t.includeNodes && u) || (t.includeEdges && !u)) && - (t.includeOverlays ? mo(n, r.overlayBounds) : mo(n, r.bodyBounds)), - t.includeLabels && - (t.includeMainLabels && (!o || (t.includeSourceLabels && t.includeTargetLabels)) - ? mo(n, r.labelBounds.all) - : (t.includeMainLabels && mo(n, r.labelBounds.mainRot), - t.includeSourceLabels && mo(n, r.labelBounds.sourceRot), - t.includeTargetLabels && mo(n, r.labelBounds.targetRot))), - (n.w = n.x2 - n.x1), - (n.h = n.y2 - n.y1); - } - return n; - }, - _o = { - includeNodes: !0, - includeEdges: !0, - includeLabels: !0, - includeMainLabels: !0, - includeSourceLabels: !0, - includeTargetLabels: !0, - includeOverlays: !0, - includeUnderlays: !0, - useCache: !0, - }, - So = wo(_o), - Po = Oe(_o); - (ho.boundingBox = function (e) { - var t; - if ( - 1 !== this.length || - null == this[0]._private.bbCache || - this[0]._private.styleDirty || - (void 0 !== e && void 0 !== e.useCache && !0 !== e.useCache) - ) { - t = vt(); - var n = Po((e = e || _o)), - r = this; - if (r.cy().styleEnabled()) - for (var o = 0; o < r.length; o++) { - var i = r[o], - a = i._private, - s = Eo(i), - l = a.bbCachePosKey === s, - c = n.useCache && l && !a.styleDirty; - i.recalculateRenderedStyle(c); - } - this.updateCompoundBounds(!e.useCache); - for (var u = 0; u < r.length; u++) { - var d = r[u]; - mo(t, ko(d, n)); - } - } else (e = void 0 === e ? _o : Po(e)), (t = ko(this[0], e)); - return ( - (t.x1 = vo(t.x1)), - (t.y1 = vo(t.y1)), - (t.x2 = vo(t.x2)), - (t.y2 = vo(t.y2)), - (t.w = vo(t.x2 - t.x1)), - (t.h = vo(t.y2 - t.y1)), - t - ); - }), - (ho.dirtyBoundingBoxCache = function () { - for (var e = 0; e < this.length; e++) { - var t = this[e]._private; - (t.bbCache = null), - (t.bbCachePosKey = null), - (t.bodyBounds = null), - (t.overlayBounds = null), - (t.labelBounds.all = null), - (t.labelBounds.source = null), - (t.labelBounds.target = null), - (t.labelBounds.main = null), - (t.labelBounds.sourceRot = null), - (t.labelBounds.targetRot = null), - (t.labelBounds.mainRot = null), - (t.arrowBounds.source = null), - (t.arrowBounds.target = null), - (t.arrowBounds['mid-source'] = null), - (t.arrowBounds['mid-target'] = null); - } - return this.emitAndNotify('bounds'), this; - }), - (ho.boundingBoxAt = function (e) { - var t = this.nodes(), - n = this.cy(), - r = n.hasCompoundNodes(), - o = n.collection(); - if ( - (r && - ((o = t.filter(function (e) { - return e.isParent(); - })), - (t = t.not(o))), - N(e)) - ) { - var i = e; - e = function () { - return i; - }; - } - n.startBatch(), - t - .forEach(function (t, n) { - return (t._private.bbAtOldPos = e(t, n)); - }) - .silentPositions(e), - r && (o.dirtyCompoundBoundsCache(), o.dirtyBoundingBoxCache(), o.updateCompoundBounds(!0)); - var a = (function (e) { - return { x1: e.x1, x2: e.x2, w: e.w, y1: e.y1, y2: e.y2, h: e.h }; - })(this.boundingBox({ useCache: !1 })); - return ( - t.silentPositions(function (e) { - return e._private.bbAtOldPos; - }), - r && (o.dirtyCompoundBoundsCache(), o.dirtyBoundingBoxCache(), o.updateCompoundBounds(!0)), - n.endBatch(), - a - ); - }), - (fo.boundingbox = fo.bb = fo.boundingBox), - (fo.renderedBoundingbox = fo.renderedBoundingBox); - var Co, - jo, - To = ho; - Co = jo = {}; - var Do = function (e) { - (e.uppercaseName = U(e.name)), - (e.autoName = 'auto' + e.uppercaseName), - (e.labelName = 'label' + e.uppercaseName), - (e.outerName = 'outer' + e.uppercaseName), - (e.uppercaseOuterName = U(e.outerName)), - (Co[e.name] = function () { - var t = this[0], - n = t._private, - r = n.cy._private.styleEnabled; - if (t) { - if (r) { - if (t.isParent()) return t.updateCompoundBounds(), n[e.autoName] || 0; - var o = t.pstyle(e.name); - return 'label' === o.strValue ? (t.recalculateRenderedStyle(), n.rstyle[e.labelName] || 0) : o.pfValue; - } - return 1; - } - }), - (Co['outer' + e.uppercaseName] = function () { - var t = this[0], - n = t._private.cy._private.styleEnabled; - if (t) return n ? t[e.name]() + t.pstyle('border-width').pfValue + 2 * t.padding() : 1; - }), - (Co['rendered' + e.uppercaseName] = function () { - var t = this[0]; - if (t) return t[e.name]() * this.cy().zoom(); - }), - (Co['rendered' + e.uppercaseOuterName] = function () { - var t = this[0]; - if (t) return t[e.outerName]() * this.cy().zoom(); - }); - }; - Do({ name: 'width' }), - Do({ name: 'height' }), - (jo.padding = function () { - var e = this[0], - t = e._private; - return e.isParent() - ? (e.updateCompoundBounds(), void 0 !== t.autoPadding ? t.autoPadding : e.pstyle('padding').pfValue) - : e.pstyle('padding').pfValue; - }), - (jo.paddedHeight = function () { - var e = this[0]; - return e.height() + 2 * e.padding(); - }), - (jo.paddedWidth = function () { - var e = this[0]; - return e.width() + 2 * e.padding(); - }); - var No = jo, - Mo = { - controlPoints: { - get: function (e) { - return e.renderer().getControlPoints(e); - }, - mult: !0, - }, - segmentPoints: { - get: function (e) { - return e.renderer().getSegmentPoints(e); - }, - mult: !0, - }, - sourceEndpoint: { - get: function (e) { - return e.renderer().getSourceEndpoint(e); - }, - }, - targetEndpoint: { - get: function (e) { - return e.renderer().getTargetEndpoint(e); - }, - }, - midpoint: { - get: function (e) { - return e.renderer().getEdgeMidpoint(e); - }, - }, - }, - Oo = Object.keys(Mo).reduce(function (e, t) { - var n = Mo[t], - r = (function (e) { - return 'rendered' + e[0].toUpperCase() + e.substr(1); - })(t); - return ( - (e[t] = function () { - return (function (e, t) { - if (e.isEdge()) return t(e); - })(this, n.get); - }), - n.mult - ? (e[r] = function () { - return (function (e, t) { - if (e.isEdge()) { - var n = e.cy(), - r = n.pan(), - o = n.zoom(); - return t(e).map(function (e) { - return rt(e, o, r); - }); - } - })(this, n.get); - }) - : (e[r] = function () { - return (function (e, t) { - if (e.isEdge()) { - var n = e.cy(); - return rt(t(e), n.zoom(), n.pan()); - } - })(this, n.get); - }), - e - ); - }, {}), - Ao = Q({}, po, To, No, Oo), - Ro = function (e, t) { - this.recycle(e, t); - }; - function Lo() { - return !1; - } - function Io() { - return !0; - } - Ro.prototype = { - instanceString: function () { - return 'event'; - }, - recycle: function (e, t) { - if ( - ((this.isImmediatePropagationStopped = this.isPropagationStopped = this.isDefaultPrevented = Lo), - null != e && e.preventDefault - ? ((this.type = e.type), (this.isDefaultPrevented = e.defaultPrevented ? Io : Lo)) - : null != e && e.type - ? (t = e) - : (this.type = e), - null != t && - ((this.originalEvent = t.originalEvent), - (this.type = null != t.type ? t.type : this.type), - (this.cy = t.cy), - (this.target = t.target), - (this.position = t.position), - (this.renderedPosition = t.renderedPosition), - (this.namespace = t.namespace), - (this.layout = t.layout)), - null != this.cy && null != this.position && null == this.renderedPosition) - ) { - var n = this.position, - r = this.cy.zoom(), - o = this.cy.pan(); - this.renderedPosition = { x: n.x * r + o.x, y: n.y * r + o.y }; - } - this.timeStamp = (e && e.timeStamp) || Date.now(); - }, - preventDefault: function () { - this.isDefaultPrevented = Io; - var e = this.originalEvent; - e && e.preventDefault && e.preventDefault(); - }, - stopPropagation: function () { - this.isPropagationStopped = Io; - var e = this.originalEvent; - e && e.stopPropagation && e.stopPropagation(); - }, - stopImmediatePropagation: function () { - (this.isImmediatePropagationStopped = Io), this.stopPropagation(); - }, - isDefaultPrevented: Lo, - isPropagationStopped: Lo, - isImmediatePropagationStopped: Lo, - }; - var Bo = /^([^.]+)(\.(?:[^.]+))?$/, - Fo = { - qualifierCompare: function (e, t) { - return e === t; - }, - eventMatches: function () { - return !0; - }, - addEventFields: function () {}, - callbackContext: function (e) { - return e; - }, - beforeEmit: function () {}, - afterEmit: function () {}, - bubble: function () { - return !1; - }, - parent: function () { - return null; - }, - context: null, - }, - zo = Object.keys(Fo), - Vo = {}; - function Go() { - for ( - var e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : Vo, - t = arguments.length > 1 ? arguments[1] : void 0, - n = 0; - n < zo.length; - n++ - ) { - var r = zo[n]; - this[r] = e[r] || Fo[r]; - } - (this.context = t || this.context), (this.listeners = []), (this.emitting = 0); - } - var Ho = Go.prototype, - Wo = function (e, t, n, r, o, i, a) { - T(r) && ((o = r), (r = null)), a && (i = null == i ? a : Q({}, i, a)); - for (var s = D(n) ? n : n.split(/\s+/), l = 0; l < s.length; l++) { - var c = s[l]; - if (!F(c)) { - var u = c.match(Bo); - if (u) if (!1 === t(e, c, u[1], u[2] ? u[2] : null, r, o, i)) break; - } - } - }, - Uo = function (e, t) { - return e.addEventFields(e.context, t), new Ro(t.type, t); - }, - qo = function (e, t, n) { - if ('event' !== C(n)) - if (N(n)) t(e, Uo(e, n)); - else - for (var r = D(n) ? n : n.split(/\s+/), o = 0; o < r.length; o++) { - var i = r[o]; - if (!F(i)) { - var a = i.match(Bo); - if (a) { - var s = a[1], - l = a[2] ? a[2] : null; - t(e, Uo(e, { type: s, namespace: l, target: e.context })); - } - } - } - else t(e, n); - }; - (Ho.on = Ho.addListener = - function (e, t, n, r, o) { - return ( - Wo( - this, - function (e, t, n, r, o, i, a) { - T(i) && e.listeners.push({ event: t, callback: i, type: n, namespace: r, qualifier: o, conf: a }); - }, - e, - t, - n, - r, - o, - ), - this - ); - }), - (Ho.one = function (e, t, n, r) { - return this.on(e, t, n, r, { one: !0 }); - }), - (Ho.removeListener = Ho.off = - function (e, t, n, r) { - var o = this; - 0 !== this.emitting && (this.listeners = this.listeners.slice()); - for ( - var i = this.listeners, - a = function (a) { - var s = i[a]; - Wo( - o, - function (t, n, r, o, l, c) { - if ( - (s.type === r || '*' === e) && - ((!o && '.*' !== s.namespace) || s.namespace === o) && - (!l || t.qualifierCompare(s.qualifier, l)) && - (!c || s.callback === c) - ) - return i.splice(a, 1), !1; - }, - e, - t, - n, - r, - ); - }, - s = i.length - 1; - s >= 0; - s-- - ) - a(s); - return this; - }), - (Ho.removeAllListeners = function () { - return this.removeListener('*'); - }), - (Ho.emit = Ho.trigger = - function (e, t, n) { - var r = this.listeners, - o = r.length; - return ( - this.emitting++, - D(t) || (t = [t]), - qo( - this, - function (e, i) { - null != n && - ((r = [{ event: i.event, type: i.type, namespace: i.namespace, callback: n }]), (o = r.length)); - for ( - var a = function (n) { - var o = r[n]; - if ( - o.type === i.type && - (!o.namespace || o.namespace === i.namespace || '.*' === o.namespace) && - e.eventMatches(e.context, o, i) - ) { - var a = [i]; - null != t && - (function (e, t) { - for (var n = 0; n < t.length; n++) { - var r = t[n]; - e.push(r); - } - })(a, t), - e.beforeEmit(e.context, o, i), - o.conf && - o.conf.one && - (e.listeners = e.listeners.filter(function (e) { - return e !== o; - })); - var s = e.callbackContext(e.context, o, i), - l = o.callback.apply(s, a); - e.afterEmit(e.context, o, i), !1 === l && (i.stopPropagation(), i.preventDefault()); - } - }, - s = 0; - s < o; - s++ - ) - a(s); - e.bubble(e.context) && !i.isPropagationStopped() && e.parent(e.context).emit(i, t); - }, - e, - ), - this.emitting--, - this - ); - }); - var Yo = { - qualifierCompare: function (e, t) { - return null == e || null == t ? null == e && null == t : e.sameText(t); - }, - eventMatches: function (e, t, n) { - var r = t.qualifier; - return null == r || (e !== n.target && R(n.target) && r.matches(n.target)); - }, - addEventFields: function (e, t) { - (t.cy = e.cy()), (t.target = e); - }, - callbackContext: function (e, t, n) { - return null != t.qualifier ? n.target : e; - }, - beforeEmit: function (e, t) { - t.conf && t.conf.once && t.conf.onceCollection.removeListener(t.event, t.qualifier, t.callback); - }, - bubble: function () { - return !0; - }, - parent: function (e) { - return e.isChild() ? e.parent() : e.cy(); - }, - }, - Xo = function (e) { - return j(e) ? new qr(e) : e; - }, - $o = { - createEmitter: function () { - for (var e = 0; e < this.length; e++) { - var t = this[e], - n = t._private; - n.emitter || (n.emitter = new Go(Yo, t)); - } - return this; - }, - emitter: function () { - return this._private.emitter; - }, - on: function (e, t, n) { - for (var r = Xo(t), o = 0; o < this.length; o++) { - this[o].emitter().on(e, r, n); - } - return this; - }, - removeListener: function (e, t, n) { - for (var r = Xo(t), o = 0; o < this.length; o++) { - this[o].emitter().removeListener(e, r, n); - } - return this; - }, - removeAllListeners: function () { - for (var e = 0; e < this.length; e++) { - this[e].emitter().removeAllListeners(); - } - return this; - }, - one: function (e, t, n) { - for (var r = Xo(t), o = 0; o < this.length; o++) { - this[o].emitter().one(e, r, n); - } - return this; - }, - once: function (e, t, n) { - for (var r = Xo(t), o = 0; o < this.length; o++) { - this[o].emitter().on(e, r, n, { once: !0, onceCollection: this }); - } - }, - emit: function (e, t) { - for (var n = 0; n < this.length; n++) { - this[n].emitter().emit(e, t); - } - return this; - }, - emitAndNotify: function (e, t) { - if (0 !== this.length) return this.cy().notify(e, this), this.emit(e, t), this; - }, - }; - lr.eventAliasesOn($o); - var Ko = { - nodes: function (e) { - return this.filter(function (e) { - return e.isNode(); - }).filter(e); - }, - edges: function (e) { - return this.filter(function (e) { - return e.isEdge(); - }).filter(e); - }, - byGroup: function () { - for (var e = this.spawn(), t = this.spawn(), n = 0; n < this.length; n++) { - var r = this[n]; - r.isNode() ? e.push(r) : t.push(r); - } - return { nodes: e, edges: t }; - }, - filter: function (e, t) { - if (void 0 === e) return this; - if (j(e) || A(e)) return new qr(e).filter(this); - if (T(e)) { - for (var n = this.spawn(), r = this, o = 0; o < r.length; o++) { - var i = r[o]; - (t ? e.apply(t, [i, o, r]) : e(i, o, r)) && n.push(i); - } - return n; - } - return this.spawn(); - }, - not: function (e) { - if (e) { - j(e) && (e = this.filter(e)); - for (var t = this.spawn(), n = 0; n < this.length; n++) { - var r = this[n]; - e.has(r) || t.push(r); - } - return t; - } - return this; - }, - absoluteComplement: function () { - return this.cy().mutableElements().not(this); - }, - intersect: function (e) { - if (j(e)) { - var t = e; - return this.filter(t); - } - for ( - var n = this.spawn(), r = e, o = this.length < e.length, i = o ? this : r, a = o ? r : this, s = 0; - s < i.length; - s++ - ) { - var l = i[s]; - a.has(l) && n.push(l); - } - return n; - }, - xor: function (e) { - var t = this._private.cy; - j(e) && (e = t.$(e)); - var n = this.spawn(), - r = e, - o = function (e, t) { - for (var r = 0; r < e.length; r++) { - var o = e[r], - i = o._private.data.id; - t.hasElementWithId(i) || n.push(o); - } - }; - return o(this, r), o(r, this), n; - }, - diff: function (e) { - var t = this._private.cy; - j(e) && (e = t.$(e)); - var n = this.spawn(), - r = this.spawn(), - o = this.spawn(), - i = e, - a = function (e, t, n) { - for (var r = 0; r < e.length; r++) { - var i = e[r], - a = i._private.data.id; - t.hasElementWithId(a) ? o.merge(i) : n.push(i); - } - }; - return a(this, i, n), a(i, this, r), { left: n, right: r, both: o }; - }, - add: function (e) { - var t = this._private.cy; - if (!e) return this; - if (j(e)) { - var n = e; - e = t.mutableElements().filter(n); - } - for (var r = this.spawnSelf(), o = 0; o < e.length; o++) { - var i = e[o], - a = !this.has(i); - a && r.push(i); - } - return r; - }, - merge: function (e) { - var t = this._private, - n = t.cy; - if (!e) return this; - if (e && j(e)) { - var r = e; - e = n.mutableElements().filter(r); - } - for (var o = t.map, i = 0; i < e.length; i++) { - var a = e[i], - s = a._private.data.id; - if (!o.has(s)) { - var l = this.length++; - (this[l] = a), o.set(s, { ele: a, index: l }); - } - } - return this; - }, - unmergeAt: function (e) { - var t = this[e].id(), - n = this._private.map; - (this[e] = void 0), n.delete(t); - var r = e === this.length - 1; - if (this.length > 1 && !r) { - var o = this.length - 1, - i = this[o], - a = i._private.data.id; - (this[o] = void 0), (this[e] = i), n.set(a, { ele: i, index: e }); - } - return this.length--, this; - }, - unmergeOne: function (e) { - e = e[0]; - var t = this._private, - n = e._private.data.id, - r = t.map.get(n); - if (!r) return this; - var o = r.index; - return this.unmergeAt(o), this; - }, - unmerge: function (e) { - var t = this._private.cy; - if (!e) return this; - if (e && j(e)) { - var n = e; - e = t.mutableElements().filter(n); - } - for (var r = 0; r < e.length; r++) this.unmergeOne(e[r]); - return this; - }, - unmergeBy: function (e) { - for (var t = this.length - 1; t >= 0; t--) { - e(this[t]) && this.unmergeAt(t); - } - return this; - }, - map: function (e, t) { - for (var n = [], r = this, o = 0; o < r.length; o++) { - var i = r[o], - a = t ? e.apply(t, [i, o, r]) : e(i, o, r); - n.push(a); - } - return n; - }, - reduce: function (e, t) { - for (var n = t, r = this, o = 0; o < r.length; o++) n = e(n, r[o], o, r); - return n; - }, - max: function (e, t) { - for (var n, r = -1 / 0, o = this, i = 0; i < o.length; i++) { - var a = o[i], - s = t ? e.apply(t, [a, i, o]) : e(a, i, o); - s > r && ((r = s), (n = a)); - } - return { value: r, ele: n }; - }, - min: function (e, t) { - for (var n, r = 1 / 0, o = this, i = 0; i < o.length; i++) { - var a = o[i], - s = t ? e.apply(t, [a, i, o]) : e(a, i, o); - s < r && ((r = s), (n = a)); - } - return { value: r, ele: n }; - }, - }, - Zo = Ko; - (Zo.u = Zo['|'] = Zo['+'] = Zo.union = Zo.or = Zo.add), - (Zo['\\'] = Zo['!'] = Zo['-'] = Zo.difference = Zo.relativeComplement = Zo.subtract = Zo.not), - (Zo.n = Zo['&'] = Zo['.'] = Zo.and = Zo.intersection = Zo.intersect), - (Zo['^'] = Zo['(+)'] = Zo['(-)'] = Zo.symmetricDifference = Zo.symdiff = Zo.xor), - (Zo.fnFilter = Zo.filterFn = Zo.stdFilter = Zo.filter), - (Zo.complement = Zo.abscomp = Zo.absoluteComplement); - var Qo = function (e, t) { - var n = e.cy().hasCompoundNodes(); - function r(e) { - var t = e.pstyle('z-compound-depth'); - return 'auto' === t.value ? (n ? e.zDepth() : 0) : 'bottom' === t.value ? -1 : 'top' === t.value ? we : 0; - } - var o = r(e) - r(t); - if (0 !== o) return o; - function i(e) { - return 'auto' === e.pstyle('z-index-compare').value && e.isNode() ? 1 : 0; - } - var a = i(e) - i(t); - if (0 !== a) return a; - var s = e.pstyle('z-index').value - t.pstyle('z-index').value; - return 0 !== s ? s : e.poolIndex() - t.poolIndex(); - }, - Jo = { - forEach: function (e, t) { - if (T(e)) - for (var n = this.length, r = 0; r < n; r++) { - var o = this[r]; - if (!1 === (t ? e.apply(t, [o, r, this]) : e(o, r, this))) break; - } - return this; - }, - toArray: function () { - for (var e = [], t = 0; t < this.length; t++) e.push(this[t]); - return e; - }, - slice: function (e, t) { - var n = [], - r = this.length; - null == t && (t = r), null == e && (e = 0), e < 0 && (e = r + e), t < 0 && (t = r + t); - for (var o = e; o >= 0 && o < t && o < r; o++) n.push(this[o]); - return this.spawn(n); - }, - size: function () { - return this.length; - }, - eq: function (e) { - return this[e] || this.spawn(); - }, - first: function () { - return this[0] || this.spawn(); - }, - last: function () { - return this[this.length - 1] || this.spawn(); - }, - empty: function () { - return 0 === this.length; - }, - nonempty: function () { - return !this.empty(); - }, - sort: function (e) { - if (!T(e)) return this; - var t = this.toArray().sort(e); - return this.spawn(t); - }, - sortByZIndex: function () { - return this.sort(Qo); - }, - zDepth: function () { - var e = this[0]; - if (e) { - var t = e._private; - if ('nodes' === t.group) { - var n = t.data.parent ? e.parents().size() : 0; - return e.isParent() ? n : we - 1; - } - var r = t.source, - o = t.target, - i = r.zDepth(), - a = o.zDepth(); - return Math.max(i, a, 0); - } - }, - }; - Jo.each = Jo.forEach; - var ei; - (ei = 'undefined'), - ('undefined' == typeof Symbol ? 'undefined' : p(Symbol)) != ei && - p(Symbol.iterator) != ei && - (Jo[Symbol.iterator] = function () { - var e = this, - t = { value: void 0, done: !1 }, - n = 0, - r = this.length; - return y( - { - next: function () { - return n < r ? (t.value = e[n++]) : ((t.value = void 0), (t.done = !0)), t; - }, - }, - Symbol.iterator, - function () { - return this; - }, - ); - }); - var ti = Oe({ nodeDimensionsIncludeLabels: !1 }), - ni = { - layoutDimensions: function (e) { - var t; - if (((e = ti(e)), this.takesUpSpace())) - if (e.nodeDimensionsIncludeLabels) { - var n = this.boundingBox(); - t = { w: n.w, h: n.h }; - } else t = { w: this.outerWidth(), h: this.outerHeight() }; - else t = { w: 0, h: 0 }; - return (0 !== t.w && 0 !== t.h) || (t.w = t.h = 1), t; - }, - layoutPositions: function (e, t, n) { - var r = this.nodes().filter(function (e) { - return !e.isParent(); - }), - o = this.cy(), - i = t.eles, - a = function (e) { - return e.id(); - }, - s = V(n, a); - e.emit({ type: 'layoutstart', layout: e }), (e.animations = []); - var l = t.spacingFactor && 1 !== t.spacingFactor, - c = (function () { - if (!l) return null; - for (var e = vt(), t = 0; t < r.length; t++) { - var n = r[t], - o = s(n, t); - gt(e, o.x, o.y); - } - return e; - })(), - u = V(function (e, n) { - var r = s(e, n); - l && - (r = (function (e, t, n) { - var r = t.x1 + t.w / 2, - o = t.y1 + t.h / 2; - return { x: r + (n.x - r) * e, y: o + (n.y - o) * e }; - })(Math.abs(t.spacingFactor), c, r)); - return null != t.transform && (r = t.transform(e, r)), r; - }, a); - if (t.animate) { - for (var d = 0; d < r.length; d++) { - var f = r[d], - h = u(f, d); - if (null == t.animateFilter || t.animateFilter(f, d)) { - var p = f.animation({ position: h, duration: t.animationDuration, easing: t.animationEasing }); - e.animations.push(p); - } else f.position(h); - } - if (t.fit) { - var v = o.animation({ - fit: { boundingBox: i.boundingBoxAt(u), padding: t.padding }, - duration: t.animationDuration, - easing: t.animationEasing, - }); - e.animations.push(v); - } else if (void 0 !== t.zoom && void 0 !== t.pan) { - var g = o.animation({ - zoom: t.zoom, - pan: t.pan, - duration: t.animationDuration, - easing: t.animationEasing, - }); - e.animations.push(g); - } - e.animations.forEach(function (e) { - return e.play(); - }), - e.one('layoutready', t.ready), - e.emit({ type: 'layoutready', layout: e }), - nr - .all( - e.animations.map(function (e) { - return e.promise(); - }), - ) - .then(function () { - e.one('layoutstop', t.stop), e.emit({ type: 'layoutstop', layout: e }); - }); - } else - r.positions(u), - t.fit && o.fit(t.eles, t.padding), - null != t.zoom && o.zoom(t.zoom), - t.pan && o.pan(t.pan), - e.one('layoutready', t.ready), - e.emit({ type: 'layoutready', layout: e }), - e.one('layoutstop', t.stop), - e.emit({ type: 'layoutstop', layout: e }); - return this; - }, - layout: function (e) { - return this.cy().makeLayout(Q({}, e, { eles: this })); - }, - }; - function ri(e, t, n) { - var r, - o = n._private, - i = (o.styleCache = o.styleCache || []); - return null != (r = i[e]) ? r : (r = i[e] = t(n)); - } - function oi(e, t) { - return ( - (e = ve(e)), - function (n) { - return ri(e, t, n); - } - ); - } - function ii(e, t) { - e = ve(e); - var n = function (e) { - return t.call(e); - }; - return function () { - var t = this[0]; - if (t) return ri(e, n, t); - }; - } - ni.createLayout = ni.makeLayout = ni.layout; - var ai = { - recalculateRenderedStyle: function (e) { - var t = this.cy(), - n = t.renderer(), - r = t.styleEnabled(); - return n && r && n.recalculateRenderedStyle(this, e), this; - }, - dirtyStyleCache: function () { - var e, - t = this.cy(), - n = function (e) { - return (e._private.styleCache = null); - }; - t.hasCompoundNodes() - ? ((e = this.spawnSelf().merge(this.descendants()).merge(this.parents())).merge(e.connectedEdges()), - e.forEach(n)) - : this.forEach(function (e) { - n(e), e.connectedEdges().forEach(n); - }); - return this; - }, - updateStyle: function (e) { - var t = this._private.cy; - if (!t.styleEnabled()) return this; - if (t.batching()) return t._private.batchStyleEles.merge(this), this; - var n = this; - (e = !(!e && void 0 !== e)), - t.hasCompoundNodes() && (n = this.spawnSelf().merge(this.descendants()).merge(this.parents())); - var r = n; - return ( - e ? r.emitAndNotify('style') : r.emit('style'), - n.forEach(function (e) { - return (e._private.styleDirty = !0); - }), - this - ); - }, - cleanStyle: function () { - var e = this.cy(); - if (e.styleEnabled()) - for (var t = 0; t < this.length; t++) { - var n = this[t]; - n._private.styleDirty && ((n._private.styleDirty = !1), e.style().apply(n)); - } - }, - parsedStyle: function (e) { - var t = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], - n = this[0], - r = n.cy(); - if (r.styleEnabled() && n) { - this.cleanStyle(); - var o = n._private.style[e]; - return null != o ? o : t ? r.style().getDefaultProperty(e) : null; - } - }, - numericStyle: function (e) { - var t = this[0]; - if (t.cy().styleEnabled() && t) { - var n = t.pstyle(e); - return void 0 !== n.pfValue ? n.pfValue : n.value; - } - }, - numericStyleUnits: function (e) { - var t = this[0]; - if (t.cy().styleEnabled()) return t ? t.pstyle(e).units : void 0; - }, - renderedStyle: function (e) { - var t = this.cy(); - if (!t.styleEnabled()) return this; - var n = this[0]; - return n ? t.style().getRenderedStyle(n, e) : void 0; - }, - style: function (e, t) { - var n = this.cy(); - if (!n.styleEnabled()) return this; - var r = n.style(); - if (N(e)) { - var o = e; - r.applyBypass(this, o, false), this.emitAndNotify('style'); - } else if (j(e)) { - if (void 0 === t) { - var i = this[0]; - return i ? r.getStylePropertyValue(i, e) : void 0; - } - r.applyBypass(this, e, t, false), this.emitAndNotify('style'); - } else if (void 0 === e) { - var a = this[0]; - return a ? r.getRawStyle(a) : void 0; - } - return this; - }, - removeStyle: function (e) { - var t = this.cy(); - if (!t.styleEnabled()) return this; - var n = t.style(), - r = this; - if (void 0 === e) - for (var o = 0; o < r.length; o++) { - var i = r[o]; - n.removeAllBypasses(i, false); - } - else { - e = e.split(/\s+/); - for (var a = 0; a < r.length; a++) { - var s = r[a]; - n.removeBypasses(s, e, false); - } - } - return this.emitAndNotify('style'), this; - }, - show: function () { - return this.css('display', 'element'), this; - }, - hide: function () { - return this.css('display', 'none'), this; - }, - effectiveOpacity: function () { - var e = this.cy(); - if (!e.styleEnabled()) return 1; - var t = e.hasCompoundNodes(), - n = this[0]; - if (n) { - var r = n._private, - o = n.pstyle('opacity').value; - if (!t) return o; - var i = r.data.parent ? n.parents() : null; - if (i) - for (var a = 0; a < i.length; a++) { - o *= i[a].pstyle('opacity').value; - } - return o; - } - }, - transparent: function () { - if (!this.cy().styleEnabled()) return !1; - var e = this[0], - t = e.cy().hasCompoundNodes(); - return e ? (t ? 0 === e.effectiveOpacity() : 0 === e.pstyle('opacity').value) : void 0; - }, - backgrounding: function () { - return !!this.cy().styleEnabled() && !!this[0]._private.backgrounding; - }, - }; - function si(e, t) { - var n = e._private.data.parent ? e.parents() : null; - if (n) - for (var r = 0; r < n.length; r++) { - if (!t(n[r])) return !1; - } - return !0; - } - function li(e) { - var t = e.ok, - n = e.edgeOkViaNode || e.ok, - r = e.parentOk || e.ok; - return function () { - var e = this.cy(); - if (!e.styleEnabled()) return !0; - var o = this[0], - i = e.hasCompoundNodes(); - if (o) { - var a = o._private; - if (!t(o)) return !1; - if (o.isNode()) return !i || si(o, r); - var s = a.source, - l = a.target; - return n(s) && (!i || si(s, n)) && (s === l || (n(l) && (!i || si(l, n)))); - } - }; - } - var ci = oi('eleTakesUpSpace', function (e) { - return 'element' === e.pstyle('display').value && 0 !== e.width() && (!e.isNode() || 0 !== e.height()); - }); - ai.takesUpSpace = ii('takesUpSpace', li({ ok: ci })); - var ui = oi('eleInteractive', function (e) { - return 'yes' === e.pstyle('events').value && 'visible' === e.pstyle('visibility').value && ci(e); - }), - di = oi('parentInteractive', function (e) { - return 'visible' === e.pstyle('visibility').value && ci(e); - }); - (ai.interactive = ii('interactive', li({ ok: ui, parentOk: di, edgeOkViaNode: ci }))), - (ai.noninteractive = function () { - var e = this[0]; - if (e) return !e.interactive(); - }); - var fi = oi('eleVisible', function (e) { - return 'visible' === e.pstyle('visibility').value && 0 !== e.pstyle('opacity').pfValue && ci(e); - }), - hi = ci; - (ai.visible = ii('visible', li({ ok: fi, edgeOkViaNode: hi }))), - (ai.hidden = function () { - var e = this[0]; - if (e) return !e.visible(); - }), - (ai.isBundledBezier = ii('isBundledBezier', function () { - return ( - !!this.cy().styleEnabled() && - !this.removed() && - 'bezier' === this.pstyle('curve-style').value && - this.takesUpSpace() - ); - })), - (ai.bypass = ai.css = ai.style), - (ai.renderedCss = ai.renderedStyle), - (ai.removeBypass = ai.removeCss = ai.removeStyle), - (ai.pstyle = ai.parsedStyle); - var pi = {}; - function vi(e) { - return function () { - var t = arguments, - n = []; - if (2 === t.length) { - var r = t[0], - o = t[1]; - this.on(e.event, r, o); - } else if (1 === t.length && T(t[0])) { - var i = t[0]; - this.on(e.event, i); - } else if (0 === t.length || (1 === t.length && D(t[0]))) { - for (var a = 1 === t.length ? t[0] : null, s = 0; s < this.length; s++) { - var l = this[s], - c = !e.ableField || l._private[e.ableField], - u = l._private[e.field] != e.value; - if (e.overrideAble) { - var d = e.overrideAble(l); - if (void 0 !== d && ((c = d), !d)) return this; - } - c && ((l._private[e.field] = e.value), u && n.push(l)); - } - var f = this.spawn(n); - f.updateStyle(), f.emit(e.event), a && f.emit(a); - } - return this; - }; - } - function gi(e) { - (pi[e.field] = function () { - var t = this[0]; - if (t) { - if (e.overrideField) { - var n = e.overrideField(t); - if (void 0 !== n) return n; - } - return t._private[e.field]; - } - }), - (pi[e.on] = vi({ - event: e.on, - field: e.field, - ableField: e.ableField, - overrideAble: e.overrideAble, - value: !0, - })), - (pi[e.off] = vi({ - event: e.off, - field: e.field, - ableField: e.ableField, - overrideAble: e.overrideAble, - value: !1, - })); - } - gi({ - field: 'locked', - overrideField: function (e) { - return !!e.cy().autolock() || void 0; - }, - on: 'lock', - off: 'unlock', - }), - gi({ - field: 'grabbable', - overrideField: function (e) { - return !e.cy().autoungrabify() && !e.pannable() && void 0; - }, - on: 'grabify', - off: 'ungrabify', - }), - gi({ - field: 'selected', - ableField: 'selectable', - overrideAble: function (e) { - return !e.cy().autounselectify() && void 0; - }, - on: 'select', - off: 'unselect', - }), - gi({ - field: 'selectable', - overrideField: function (e) { - return !e.cy().autounselectify() && void 0; - }, - on: 'selectify', - off: 'unselectify', - }), - (pi.deselect = pi.unselect), - (pi.grabbed = function () { - var e = this[0]; - if (e) return e._private.grabbed; - }), - gi({ field: 'active', on: 'activate', off: 'unactivate' }), - gi({ field: 'pannable', on: 'panify', off: 'unpanify' }), - (pi.inactive = function () { - var e = this[0]; - if (e) return !e._private.active; - }); - var mi = {}, - yi = function (e) { - return function (t) { - for (var n = [], r = 0; r < this.length; r++) { - var o = this[r]; - if (o.isNode()) { - for (var i = !1, a = o.connectedEdges(), s = 0; s < a.length; s++) { - var l = a[s], - c = l.source(), - u = l.target(); - if ((e.noIncomingEdges && u === o && c !== o) || (e.noOutgoingEdges && c === o && u !== o)) { - i = !0; - break; - } - } - i || n.push(o); - } - } - return this.spawn(n, !0).filter(t); - }; - }, - bi = function (e) { - return function (t) { - for (var n = [], r = 0; r < this.length; r++) { - var o = this[r]; - if (o.isNode()) - for (var i = o.connectedEdges(), a = 0; a < i.length; a++) { - var s = i[a], - l = s.source(), - c = s.target(); - e.outgoing && l === o ? (n.push(s), n.push(c)) : e.incoming && c === o && (n.push(s), n.push(l)); - } - } - return this.spawn(n, !0).filter(t); - }; - }, - xi = function (e) { - return function (t) { - for (var n = this, r = [], o = {}; ; ) { - var i = e.outgoing ? n.outgoers() : n.incomers(); - if (0 === i.length) break; - for (var a = !1, s = 0; s < i.length; s++) { - var l = i[s], - c = l.id(); - o[c] || ((o[c] = !0), r.push(l), (a = !0)); - } - if (!a) break; - n = i; - } - return this.spawn(r, !0).filter(t); - }; - }; - function wi(e) { - return function (t) { - for (var n = [], r = 0; r < this.length; r++) { - var o = this[r]._private[e.attr]; - o && n.push(o); - } - return this.spawn(n, !0).filter(t); - }; - } - function Ei(e) { - return function (t) { - var n = [], - r = this._private.cy, - o = e || {}; - j(t) && (t = r.$(t)); - for (var i = 0; i < t.length; i++) - for (var a = t[i]._private.edges, s = 0; s < a.length; s++) { - var l = a[s], - c = l._private.data, - u = this.hasElementWithId(c.source) && t.hasElementWithId(c.target), - d = t.hasElementWithId(c.source) && this.hasElementWithId(c.target); - if (u || d) { - if (o.thisIsSrc || o.thisIsTgt) { - if (o.thisIsSrc && !u) continue; - if (o.thisIsTgt && !d) continue; - } - n.push(l); - } - } - return this.spawn(n, !0); - }; - } - function ki(e) { - return ( - (e = Q({}, { codirected: !1 }, e)), - function (t) { - for (var n = [], r = this.edges(), o = e, i = 0; i < r.length; i++) - for ( - var a = r[i]._private, - s = a.source, - l = s._private.data.id, - c = a.data.target, - u = s._private.edges, - d = 0; - d < u.length; - d++ - ) { - var f = u[d], - h = f._private.data, - p = h.target, - v = h.source, - g = p === c && v === l, - m = l === p && c === v; - ((o.codirected && g) || (!o.codirected && (g || m))) && n.push(f); - } - return this.spawn(n, !0).filter(t); - } - ); - } - (mi.clearTraversalCache = function () { - for (var e = 0; e < this.length; e++) this[e]._private.traversalCache = null; - }), - Q(mi, { - roots: yi({ noIncomingEdges: !0 }), - leaves: yi({ noOutgoingEdges: !0 }), - outgoers: Zr(bi({ outgoing: !0 }), 'outgoers'), - successors: xi({ outgoing: !0 }), - incomers: Zr(bi({ incoming: !0 }), 'incomers'), - predecessors: xi({ incoming: !0 }), - }), - Q(mi, { - neighborhood: Zr(function (e) { - for (var t = [], n = this.nodes(), r = 0; r < n.length; r++) - for (var o = n[r], i = o.connectedEdges(), a = 0; a < i.length; a++) { - var s = i[a], - l = s.source(), - c = s.target(), - u = o === l ? c : l; - u.length > 0 && t.push(u[0]), t.push(s[0]); - } - return this.spawn(t, !0).filter(e); - }, 'neighborhood'), - closedNeighborhood: function (e) { - return this.neighborhood().add(this).filter(e); - }, - openNeighborhood: function (e) { - return this.neighborhood(e); - }, - }), - (mi.neighbourhood = mi.neighborhood), - (mi.closedNeighbourhood = mi.closedNeighborhood), - (mi.openNeighbourhood = mi.openNeighborhood), - Q(mi, { - source: Zr(function (e) { - var t, - n = this[0]; - return n && (t = n._private.source || n.cy().collection()), t && e ? t.filter(e) : t; - }, 'source'), - target: Zr(function (e) { - var t, - n = this[0]; - return n && (t = n._private.target || n.cy().collection()), t && e ? t.filter(e) : t; - }, 'target'), - sources: wi({ attr: 'source' }), - targets: wi({ attr: 'target' }), - }), - Q(mi, { edgesWith: Zr(Ei(), 'edgesWith'), edgesTo: Zr(Ei({ thisIsSrc: !0 }), 'edgesTo') }), - Q(mi, { - connectedEdges: Zr(function (e) { - for (var t = [], n = 0; n < this.length; n++) { - var r = this[n]; - if (r.isNode()) - for (var o = r._private.edges, i = 0; i < o.length; i++) { - var a = o[i]; - t.push(a); - } - } - return this.spawn(t, !0).filter(e); - }, 'connectedEdges'), - connectedNodes: Zr(function (e) { - for (var t = [], n = 0; n < this.length; n++) { - var r = this[n]; - r.isEdge() && (t.push(r.source()[0]), t.push(r.target()[0])); - } - return this.spawn(t, !0).filter(e); - }, 'connectedNodes'), - parallelEdges: Zr(ki(), 'parallelEdges'), - codirectedEdges: Zr(ki({ codirected: !0 }), 'codirectedEdges'), - }), - Q(mi, { - components: function (e) { - var t = this, - n = t.cy(), - r = n.collection(), - o = null == e ? t.nodes() : e.nodes(), - i = []; - null != e && o.empty() && (o = e.sources()); - var a = function (e, t) { - r.merge(e), o.unmerge(e), t.merge(e); - }; - if (o.empty()) return t.spawn(); - var s = function () { - var e = n.collection(); - i.push(e); - var r = o[0]; - a(r, e), - t.bfs({ - directed: !1, - roots: r, - visit: function (t) { - return a(t, e); - }, - }), - e.forEach(function (n) { - n.connectedEdges().forEach(function (n) { - t.has(n) && e.has(n.source()) && e.has(n.target()) && e.merge(n); - }); - }); - }; - do { - s(); - } while (o.length > 0); - return i; - }, - component: function () { - var e = this[0]; - return e.cy().mutableElements().components(e)[0]; - }, - }), - (mi.componentsOf = mi.components); - var _i = function (e, t) { - var n = arguments.length > 2 && void 0 !== arguments[2] && arguments[2], - r = arguments.length > 3 && void 0 !== arguments[3] && arguments[3]; - if (void 0 !== e) { - var o = new Be(), - i = !1; - if (t) { - if (t.length > 0 && N(t[0]) && !R(t[0])) { - i = !0; - for (var a = [], s = new ze(), l = 0, c = t.length; l < c; l++) { - var u = t[l]; - null == u.data && (u.data = {}); - var d = u.data; - if (null == d.id) d.id = De(); - else if (e.hasElementWithId(d.id) || s.has(d.id)) continue; - var f = new Ve(e, u, !1); - a.push(f), s.add(d.id); - } - t = a; - } - } else t = []; - this.length = 0; - for (var h = 0, p = t.length; h < p; h++) { - var v = t[h][0]; - if (null != v) { - var g = v._private.data.id; - (n && o.has(g)) || - (n && o.set(g, { index: this.length, ele: v }), (this[this.length] = v), this.length++); - } - } - (this._private = { - eles: this, - cy: e, - get map() { - return null == this.lazyMap && this.rebuildMap(), this.lazyMap; - }, - set map(e) { - this.lazyMap = e; - }, - rebuildMap: function () { - for (var e = (this.lazyMap = new Be()), t = this.eles, n = 0; n < t.length; n++) { - var r = t[n]; - e.set(r.id(), { index: n, ele: r }); - } - }, - }), - n && (this._private.map = o), - i && !r && this.restore(); - } else Pe('A collection must have a reference to the core'); - }, - Si = (Ve.prototype = _i.prototype = Object.create(Array.prototype)); - (Si.instanceString = function () { - return 'collection'; - }), - (Si.spawn = function (e, t) { - return new _i(this.cy(), e, t); - }), - (Si.spawnSelf = function () { - return this.spawn(this); - }), - (Si.cy = function () { - return this._private.cy; - }), - (Si.renderer = function () { - return this._private.cy.renderer(); - }), - (Si.element = function () { - return this[0]; - }), - (Si.collection = function () { - return L(this) ? this : new _i(this._private.cy, [this]); - }), - (Si.unique = function () { - return new _i(this._private.cy, this, !0); - }), - (Si.hasElementWithId = function (e) { - return (e = '' + e), this._private.map.has(e); - }), - (Si.getElementById = function (e) { - e = '' + e; - var t = this._private.cy, - n = this._private.map.get(e); - return n ? n.ele : new _i(t); - }), - (Si.$id = Si.getElementById), - (Si.poolIndex = function () { - var e = this._private.cy._private.elements, - t = this[0]._private.data.id; - return e._private.map.get(t).index; - }), - (Si.indexOf = function (e) { - var t = e[0]._private.data.id; - return this._private.map.get(t).index; - }), - (Si.indexOfId = function (e) { - return (e = '' + e), this._private.map.get(e).index; - }), - (Si.json = function (e) { - var t = this.element(), - n = this.cy(); - if (null == t && e) return this; - if (null != t) { - var r = t._private; - if (N(e)) { - if ((n.startBatch(), e.data)) { - t.data(e.data); - var o = r.data; - if (t.isEdge()) { - var i = !1, - a = {}, - s = e.data.source, - l = e.data.target; - null != s && s != o.source && ((a.source = '' + s), (i = !0)), - null != l && l != o.target && ((a.target = '' + l), (i = !0)), - i && (t = t.move(a)); - } else { - var c = 'parent' in e.data, - u = e.data.parent; - !c || - (null == u && null == o.parent) || - u == o.parent || - (void 0 === u && (u = null), null != u && (u = '' + u), (t = t.move({ parent: u }))); - } - } - e.position && t.position(e.position); - var d = function (n, o, i) { - var a = e[n]; - null != a && a !== r[n] && (a ? t[o]() : t[i]()); - }; - return ( - d('removed', 'remove', 'restore'), - d('selected', 'select', 'unselect'), - d('selectable', 'selectify', 'unselectify'), - d('locked', 'lock', 'unlock'), - d('grabbable', 'grabify', 'ungrabify'), - d('pannable', 'panify', 'unpanify'), - null != e.classes && t.classes(e.classes), - n.endBatch(), - this - ); - } - if (void 0 === e) { - var f = { - data: Te(r.data), - position: Te(r.position), - group: r.group, - removed: r.removed, - selected: r.selected, - selectable: r.selectable, - locked: r.locked, - grabbable: r.grabbable, - pannable: r.pannable, - classes: (null, ''), - }, - h = 0; - return ( - r.classes.forEach(function (e) { - return (f.classes += 0 == h++ ? e : ' ' + e); - }), - f - ); - } - } - }), - (Si.jsons = function () { - for (var e = [], t = 0; t < this.length; t++) { - var n = this[t].json(); - e.push(n); - } - return e; - }), - (Si.clone = function () { - for (var e = this.cy(), t = [], n = 0; n < this.length; n++) { - var r = this[n].json(), - o = new Ve(e, r, !1); - t.push(o); - } - return new _i(e, t); - }), - (Si.copy = Si.clone), - (Si.restore = function () { - for ( - var e, - t, - n = !(arguments.length > 0 && void 0 !== arguments[0]) || arguments[0], - r = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], - o = this, - i = o.cy(), - a = i._private, - s = [], - l = [], - c = 0, - u = o.length; - c < u; - c++ - ) { - var d = o[c]; - (r && !d.removed()) || (d.isNode() ? s.push(d) : l.push(d)); - } - e = s.concat(l); - var f = function () { - e.splice(t, 1), t--; - }; - for (t = 0; t < e.length; t++) { - var h = e[t], - p = h._private, - v = p.data; - if ((h.clearTraversalCache(), r || p.removed)) - if (void 0 === v.id) v.id = De(); - else if (M(v.id)) v.id = '' + v.id; - else { - if (F(v.id) || !j(v.id)) { - Pe('Can not create element with invalid string ID `' + v.id + '`'), f(); - continue; - } - if (i.hasElementWithId(v.id)) { - Pe('Can not create second element with ID `' + v.id + '`'), f(); - continue; - } - } - else; - var g = v.id; - if (h.isNode()) { - var m = p.position; - null == m.x && (m.x = 0), null == m.y && (m.y = 0); - } - if (h.isEdge()) { - for (var y = h, b = ['source', 'target'], x = b.length, w = !1, E = 0; E < x; E++) { - var k = b[E], - _ = v[k]; - M(_) && (_ = v[k] = '' + v[k]), - null == _ || '' === _ - ? (Pe('Can not create edge `' + g + '` with unspecified ' + k), (w = !0)) - : i.hasElementWithId(_) || - (Pe('Can not create edge `' + g + '` with nonexistant ' + k + ' `' + _ + '`'), (w = !0)); - } - if (w) { - f(); - continue; - } - var S = i.getElementById(v.source), - P = i.getElementById(v.target); - S.same(P) ? S._private.edges.push(y) : (S._private.edges.push(y), P._private.edges.push(y)), - (y._private.source = S), - (y._private.target = P); - } - (p.map = new Be()), p.map.set(g, { ele: h, index: 0 }), (p.removed = !1), r && i.addToPool(h); - } - for (var C = 0; C < s.length; C++) { - var T = s[C], - D = T._private.data; - M(D.parent) && (D.parent = '' + D.parent); - var N = D.parent; - if (null != N || T._private.parent) { - var O = T._private.parent ? i.collection().merge(T._private.parent) : i.getElementById(N); - if (O.empty()) D.parent = void 0; - else if (O[0].removed()) - je('Node added with missing parent, reference to parent removed'), - (D.parent = void 0), - (T._private.parent = null); - else { - for (var A = !1, R = O; !R.empty(); ) { - if (T.same(R)) { - (A = !0), (D.parent = void 0); - break; - } - R = R.parent(); - } - A || (O[0]._private.children.push(T), (T._private.parent = O[0]), (a.hasCompoundNodes = !0)); - } - } - } - if (e.length > 0) { - for (var L = e.length === o.length ? o : new _i(i, e), I = 0; I < L.length; I++) { - var B = L[I]; - B.isNode() || - (B.parallelEdges().clearTraversalCache(), - B.source().clearTraversalCache(), - B.target().clearTraversalCache()); - } - (a.hasCompoundNodes ? i.collection().merge(L).merge(L.connectedNodes()).merge(L.parent()) : L) - .dirtyCompoundBoundsCache() - .dirtyBoundingBoxCache() - .updateStyle(n), - n ? L.emitAndNotify('add') : r && L.emit('add'); - } - return o; - }), - (Si.removed = function () { - var e = this[0]; - return e && e._private.removed; - }), - (Si.inside = function () { - var e = this[0]; - return e && !e._private.removed; - }), - (Si.remove = function () { - var e = !(arguments.length > 0 && void 0 !== arguments[0]) || arguments[0], - t = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], - n = this, - r = [], - o = {}, - i = n._private.cy; - function a(e) { - var n = o[e.id()]; - (t && e.removed()) || - n || - ((o[e.id()] = !0), - e.isNode() - ? (r.push(e), - (function (e) { - for (var t = e._private.edges, n = 0; n < t.length; n++) a(t[n]); - })(e), - (function (e) { - for (var t = e._private.children, n = 0; n < t.length; n++) a(t[n]); - })(e)) - : r.unshift(e)); - } - for (var s = 0, l = n.length; s < l; s++) { - a(n[s]); - } - function c(e, t) { - var n = e._private.edges; - Ae(n, t), e.clearTraversalCache(); - } - function u(e) { - e.clearTraversalCache(); - } - var d = []; - function f(e, t) { - t = t[0]; - var n = (e = e[0])._private.children, - r = e.id(); - Ae(n, t), (t._private.parent = null), d.ids[r] || ((d.ids[r] = !0), d.push(e)); - } - (d.ids = {}), n.dirtyCompoundBoundsCache(), t && i.removeFromPool(r); - for (var h = 0; h < r.length; h++) { - var p = r[h]; - if (p.isEdge()) { - var v = p.source()[0], - g = p.target()[0]; - c(v, p), c(g, p); - for (var m = p.parallelEdges(), y = 0; y < m.length; y++) { - var b = m[y]; - u(b), b.isBundledBezier() && b.dirtyBoundingBoxCache(); - } - } else { - var x = p.parent(); - 0 !== x.length && f(x, p); - } - t && (p._private.removed = !0); - } - var w = i._private.elements; - i._private.hasCompoundNodes = !1; - for (var E = 0; E < w.length; E++) { - if (w[E].isParent()) { - i._private.hasCompoundNodes = !0; - break; - } - } - var k = new _i(this.cy(), r); - k.size() > 0 && (e ? k.emitAndNotify('remove') : t && k.emit('remove')); - for (var _ = 0; _ < d.length; _++) { - var S = d[_]; - (t && S.removed()) || S.updateStyle(); - } - return k; - }), - (Si.move = function (e) { - var t = this._private.cy, - n = this, - r = !1, - o = !1, - i = function (e) { - return null == e ? e : '' + e; - }; - if (void 0 !== e.source || void 0 !== e.target) { - var a = i(e.source), - s = i(e.target), - l = null != a && t.hasElementWithId(a), - c = null != s && t.hasElementWithId(s); - (l || c) && - (t.batch(function () { - n.remove(r, o), n.emitAndNotify('moveout'); - for (var e = 0; e < n.length; e++) { - var t = n[e], - i = t._private.data; - t.isEdge() && (l && (i.source = a), c && (i.target = s)); - } - n.restore(r, o); - }), - n.emitAndNotify('move')); - } else if (void 0 !== e.parent) { - var u = i(e.parent); - if (null === u || t.hasElementWithId(u)) { - var d = null === u ? void 0 : u; - t.batch(function () { - var e = n.remove(r, o); - e.emitAndNotify('moveout'); - for (var t = 0; t < n.length; t++) { - var i = n[t], - a = i._private.data; - i.isNode() && (a.parent = d); - } - e.restore(r, o); - }), - n.emitAndNotify('move'); - } - } - return this; - }), - [ - $n, - cr, - ur, - Xr, - Qr, - io, - ao, - Ao, - $o, - Ko, - { - isNode: function () { - return 'nodes' === this.group(); - }, - isEdge: function () { - return 'edges' === this.group(); - }, - isLoop: function () { - return this.isEdge() && this.source()[0] === this.target()[0]; - }, - isSimple: function () { - return this.isEdge() && this.source()[0] !== this.target()[0]; - }, - group: function () { - var e = this[0]; - if (e) return e._private.group; - }, - }, - Jo, - ni, - ai, - pi, - mi, - ].forEach(function (e) { - Q(Si, e); - }); - var Pi = { - add: function (e) { - var t, - n = this; - if (A(e)) { - var r = e; - if (r._private.cy === n) t = r.restore(); - else { - for (var o = [], i = 0; i < r.length; i++) { - var a = r[i]; - o.push(a.json()); - } - t = new _i(n, o); - } - } else if (D(e)) { - t = new _i(n, e); - } else if (N(e) && (D(e.nodes) || D(e.edges))) { - for (var s = e, l = [], c = ['nodes', 'edges'], u = 0, d = c.length; u < d; u++) { - var f = c[u], - h = s[f]; - if (D(h)) - for (var p = 0, v = h.length; p < v; p++) { - var g = Q({ group: f }, h[p]); - l.push(g); - } - } - t = new _i(n, l); - } else { - t = new Ve(n, e).collection(); - } - return t; - }, - remove: function (e) { - if (A(e)); - else if (j(e)) { - var t = e; - e = this.$(t); - } - return e.remove(); - }, - }; - function Ci(e, t, n, r) { - var o = 4, - i = 1e-7, - a = 10, - s = 11, - l = 1 / (s - 1), - c = 'undefined' != typeof Float32Array; - if (4 !== arguments.length) return !1; - for (var u = 0; u < 4; ++u) - if ('number' != typeof arguments[u] || isNaN(arguments[u]) || !isFinite(arguments[u])) return !1; - (e = Math.min(e, 1)), (n = Math.min(n, 1)), (e = Math.max(e, 0)), (n = Math.max(n, 0)); - var d = c ? new Float32Array(s) : new Array(s); - function f(e, t) { - return 1 - 3 * t + 3 * e; - } - function h(e, t) { - return 3 * t - 6 * e; - } - function p(e) { - return 3 * e; - } - function v(e, t, n) { - return ((f(t, n) * e + h(t, n)) * e + p(t)) * e; - } - function g(e, t, n) { - return 3 * f(t, n) * e * e + 2 * h(t, n) * e + p(t); - } - function m(t) { - for (var r = 0, c = 1, u = s - 1; c !== u && d[c] <= t; ++c) r += l; - --c; - var f = r + ((t - d[c]) / (d[c + 1] - d[c])) * l, - h = g(f, e, n); - return h >= 0.001 - ? (function (t, r) { - for (var i = 0; i < o; ++i) { - var a = g(r, e, n); - if (0 === a) return r; - r -= (v(r, e, n) - t) / a; - } - return r; - })(t, f) - : 0 === h - ? f - : (function (t, r, o) { - var s, - l, - c = 0; - do { - (s = v((l = r + (o - r) / 2), e, n) - t) > 0 ? (o = l) : (r = l); - } while (Math.abs(s) > i && ++c < a); - return l; - })(t, r, r + l); - } - var y = !1; - function b() { - (y = !0), - (e === t && n === r) || - (function () { - for (var t = 0; t < s; ++t) d[t] = v(t * l, e, n); - })(); - } - var x = function (o) { - return y || b(), e === t && n === r ? o : 0 === o ? 0 : 1 === o ? 1 : v(m(o), t, r); - }; - x.getControlPoints = function () { - return [ - { x: e, y: t }, - { x: n, y: r }, - ]; - }; - var w = 'generateBezier(' + [e, t, n, r] + ')'; - return ( - (x.toString = function () { - return w; - }), - x - ); - } - var ji = (function () { - function e(e) { - return -e.tension * e.x - e.friction * e.v; - } - function t(t, n, r) { - var o = { x: t.x + r.dx * n, v: t.v + r.dv * n, tension: t.tension, friction: t.friction }; - return { dx: o.v, dv: e(o) }; - } - function n(n, r) { - var o = { dx: n.v, dv: e(n) }, - i = t(n, 0.5 * r, o), - a = t(n, 0.5 * r, i), - s = t(n, r, a), - l = (1 / 6) * (o.dx + 2 * (i.dx + a.dx) + s.dx), - c = (1 / 6) * (o.dv + 2 * (i.dv + a.dv) + s.dv); - return (n.x = n.x + l * r), (n.v = n.v + c * r), n; - } - return function e(t, r, o) { - var i, - a, - s, - l = { x: -1, v: 0, tension: null, friction: null }, - c = [0], - u = 0, - d = 1e-4; - for ( - t = parseFloat(t) || 500, - r = parseFloat(r) || 20, - o = o || null, - l.tension = t, - l.friction = r, - a = (i = null !== o) ? ((u = e(t, r)) / o) * 0.016 : 0.016; - (s = n(s || l, a)), c.push(1 + s.x), (u += 16), Math.abs(s.x) > d && Math.abs(s.v) > d; - - ); - return i - ? function (e) { - return c[(e * (c.length - 1)) | 0]; - } - : u; - }; - })(), - Ti = function (e, t, n, r) { - var o = Ci(e, t, n, r); - return function (e, t, n) { - return e + (t - e) * o(n); - }; - }, - Di = { - linear: function (e, t, n) { - return e + (t - e) * n; - }, - ease: Ti(0.25, 0.1, 0.25, 1), - 'ease-in': Ti(0.42, 0, 1, 1), - 'ease-out': Ti(0, 0, 0.58, 1), - 'ease-in-out': Ti(0.42, 0, 0.58, 1), - 'ease-in-sine': Ti(0.47, 0, 0.745, 0.715), - 'ease-out-sine': Ti(0.39, 0.575, 0.565, 1), - 'ease-in-out-sine': Ti(0.445, 0.05, 0.55, 0.95), - 'ease-in-quad': Ti(0.55, 0.085, 0.68, 0.53), - 'ease-out-quad': Ti(0.25, 0.46, 0.45, 0.94), - 'ease-in-out-quad': Ti(0.455, 0.03, 0.515, 0.955), - 'ease-in-cubic': Ti(0.55, 0.055, 0.675, 0.19), - 'ease-out-cubic': Ti(0.215, 0.61, 0.355, 1), - 'ease-in-out-cubic': Ti(0.645, 0.045, 0.355, 1), - 'ease-in-quart': Ti(0.895, 0.03, 0.685, 0.22), - 'ease-out-quart': Ti(0.165, 0.84, 0.44, 1), - 'ease-in-out-quart': Ti(0.77, 0, 0.175, 1), - 'ease-in-quint': Ti(0.755, 0.05, 0.855, 0.06), - 'ease-out-quint': Ti(0.23, 1, 0.32, 1), - 'ease-in-out-quint': Ti(0.86, 0, 0.07, 1), - 'ease-in-expo': Ti(0.95, 0.05, 0.795, 0.035), - 'ease-out-expo': Ti(0.19, 1, 0.22, 1), - 'ease-in-out-expo': Ti(1, 0, 0, 1), - 'ease-in-circ': Ti(0.6, 0.04, 0.98, 0.335), - 'ease-out-circ': Ti(0.075, 0.82, 0.165, 1), - 'ease-in-out-circ': Ti(0.785, 0.135, 0.15, 0.86), - spring: function (e, t, n) { - if (0 === n) return Di.linear; - var r = ji(e, t, n); - return function (e, t, n) { - return e + (t - e) * r(n); - }; - }, - 'cubic-bezier': Ti, - }; - function Ni(e, t, n, r, o) { - if (1 === r) return n; - if (t === n) return n; - var i = o(t, n, r); - return ( - null == e || - ((e.roundValue || e.color) && (i = Math.round(i)), - void 0 !== e.min && (i = Math.max(i, e.min)), - void 0 !== e.max && (i = Math.min(i, e.max))), - i - ); - } - function Mi(e, t) { - return null != e.pfValue || null != e.value - ? null == e.pfValue || (null != t && '%' === t.type.units) - ? e.value - : e.pfValue - : e; - } - function Oi(e, t, n, r, o) { - var i = null != o ? o.type : null; - n < 0 ? (n = 0) : n > 1 && (n = 1); - var a = Mi(e, o), - s = Mi(t, o); - if (M(a) && M(s)) return Ni(i, a, s, n, r); - if (D(a) && D(s)) { - for (var l = [], c = 0; c < s.length; c++) { - var u = a[c], - d = s[c]; - if (null != u && null != d) { - var f = Ni(i, u, d, n, r); - l.push(f); - } else l.push(d); - } - return l; - } - } - function Ai(e, t, n, r) { - var o = !r, - i = e._private, - a = t._private, - s = a.easing, - l = a.startTime, - c = (r ? e : e.cy()).style(); - if (!a.easingImpl) - if (null == s) a.easingImpl = Di.linear; - else { - var u, d, f; - if (j(s)) u = c.parse('transition-timing-function', s).value; - else u = s; - j(u) - ? ((d = u), (f = [])) - : ((d = u[1]), - (f = u.slice(2).map(function (e) { - return +e; - }))), - f.length > 0 - ? ('spring' === d && f.push(a.duration), (a.easingImpl = Di[d].apply(null, f))) - : (a.easingImpl = Di[d]); - } - var h, - p = a.easingImpl; - if ( - ((h = 0 === a.duration ? 1 : (n - l) / a.duration), - a.applying && (h = a.progress), - h < 0 ? (h = 0) : h > 1 && (h = 1), - null == a.delay) - ) { - var v = a.startPosition, - g = a.position; - if (g && o && !e.locked()) { - var m = {}; - Ri(v.x, g.x) && (m.x = Oi(v.x, g.x, h, p)), Ri(v.y, g.y) && (m.y = Oi(v.y, g.y, h, p)), e.position(m); - } - var y = a.startPan, - b = a.pan, - x = i.pan, - w = null != b && r; - w && (Ri(y.x, b.x) && (x.x = Oi(y.x, b.x, h, p)), Ri(y.y, b.y) && (x.y = Oi(y.y, b.y, h, p)), e.emit('pan')); - var E = a.startZoom, - k = a.zoom, - _ = null != k && r; - _ && (Ri(E, k) && (i.zoom = pt(i.minZoom, Oi(E, k, h, p), i.maxZoom)), e.emit('zoom')), - (w || _) && e.emit('viewport'); - var S = a.style; - if (S && S.length > 0 && o) { - for (var P = 0; P < S.length; P++) { - var C = S[P], - T = C.name, - D = C, - N = a.startStyle[T], - M = Oi(N, D, h, p, c.properties[N.name]); - c.overrideBypass(e, T, M); - } - e.emit('style'); - } - } - return (a.progress = h), h; - } - function Ri(e, t) { - return null != e && null != t && (!(!M(e) || !M(t)) || !(!e || !t)); - } - function Li(e, t, n, r) { - var o = t._private; - (o.started = !0), (o.startTime = n - o.progress * o.duration); - } - function Ii(e, t) { - var n = t._private.aniEles, - r = []; - function o(t, n) { - var o = t._private, - i = o.animation.current, - a = o.animation.queue, - s = !1; - if (0 === i.length) { - var l = a.shift(); - l && i.push(l); - } - for ( - var c = function (e) { - for (var t = e.length - 1; t >= 0; t--) { - (0, e[t])(); - } - e.splice(0, e.length); - }, - u = i.length - 1; - u >= 0; - u-- - ) { - var d = i[u], - f = d._private; - f.stopped - ? (i.splice(u, 1), (f.hooked = !1), (f.playing = !1), (f.started = !1), c(f.frames)) - : (f.playing || f.applying) && - (f.playing && f.applying && (f.applying = !1), - f.started || Li(0, d, e), - Ai(t, d, e, n), - f.applying && (f.applying = !1), - c(f.frames), - null != f.step && f.step(e), - d.completed() && (i.splice(u, 1), (f.hooked = !1), (f.playing = !1), (f.started = !1), c(f.completes)), - (s = !0)); - } - return n || 0 !== i.length || 0 !== a.length || r.push(t), s; - } - for (var i = !1, a = 0; a < n.length; a++) { - var s = o(n[a]); - i = i || s; - } - var l = o(t, !0); - (i || l) && (n.length > 0 ? t.notify('draw', n) : t.notify('draw')), n.unmerge(r), t.emit('step'); - } - var Bi = { - animate: lr.animate(), - animation: lr.animation(), - animated: lr.animated(), - clearQueue: lr.clearQueue(), - delay: lr.delay(), - delayAnimation: lr.delayAnimation(), - stop: lr.stop(), - addToAnimationPool: function (e) { - this.styleEnabled() && this._private.aniEles.merge(e); - }, - stopAnimationLoop: function () { - this._private.animationsRunning = !1; - }, - startAnimationLoop: function () { - var e = this; - if (((e._private.animationsRunning = !0), e.styleEnabled())) { - var t = e.renderer(); - t && t.beforeRender - ? t.beforeRender(function (t, n) { - Ii(n, e); - }, t.beforeRenderPriorities.animations) - : (function t() { - e._private.animationsRunning && - ae(function (n) { - Ii(n, e), t(); - }); - })(); - } - }, - }, - Fi = { - qualifierCompare: function (e, t) { - return null == e || null == t ? null == e && null == t : e.sameText(t); - }, - eventMatches: function (e, t, n) { - var r = t.qualifier; - return null == r || (e !== n.target && R(n.target) && r.matches(n.target)); - }, - addEventFields: function (e, t) { - (t.cy = e), (t.target = e); - }, - callbackContext: function (e, t, n) { - return null != t.qualifier ? n.target : e; - }, - }, - zi = function (e) { - return j(e) ? new qr(e) : e; - }, - Vi = { - createEmitter: function () { - var e = this._private; - return e.emitter || (e.emitter = new Go(Fi, this)), this; - }, - emitter: function () { - return this._private.emitter; - }, - on: function (e, t, n) { - return this.emitter().on(e, zi(t), n), this; - }, - removeListener: function (e, t, n) { - return this.emitter().removeListener(e, zi(t), n), this; - }, - removeAllListeners: function () { - return this.emitter().removeAllListeners(), this; - }, - one: function (e, t, n) { - return this.emitter().one(e, zi(t), n), this; - }, - once: function (e, t, n) { - return this.emitter().one(e, zi(t), n), this; - }, - emit: function (e, t) { - return this.emitter().emit(e, t), this; - }, - emitAndNotify: function (e, t) { - return this.emit(e), this.notify(e, t), this; - }, - }; - lr.eventAliasesOn(Vi); - var Gi = { - png: function (e) { - return (e = e || {}), this._private.renderer.png(e); - }, - jpg: function (e) { - var t = this._private.renderer; - return ((e = e || {}).bg = e.bg || '#fff'), t.jpg(e); - }, - }; - Gi.jpeg = Gi.jpg; - var Hi = { - layout: function (e) { - var t = this; - if (null != e) - if (null != e.name) { - var n = e.name, - r = t.extension('layout', n); - if (null != r) { - var o; - o = j(e.eles) ? t.$(e.eles) : null != e.eles ? e.eles : t.$(); - var i = new r(Q({}, e, { cy: t, eles: o })); - return i; - } - Pe('No such layout `' + n + '` found. Did you forget to import it and `cytoscape.use()` it?'); - } else Pe('A `name` must be specified to make a layout'); - else Pe('Layout options must be specified to make a layout'); - }, - }; - Hi.createLayout = Hi.makeLayout = Hi.layout; - var Wi = { - notify: function (e, t) { - var n = this._private; - if (this.batching()) { - n.batchNotifications = n.batchNotifications || {}; - var r = (n.batchNotifications[e] = n.batchNotifications[e] || this.collection()); - null != t && r.merge(t); - } else if (n.notificationsEnabled) { - var o = this.renderer(); - !this.destroyed() && o && o.notify(e, t); - } - }, - notifications: function (e) { - var t = this._private; - return void 0 === e ? t.notificationsEnabled : ((t.notificationsEnabled = !!e), this); - }, - noNotifications: function (e) { - this.notifications(!1), e(), this.notifications(!0); - }, - batching: function () { - return this._private.batchCount > 0; - }, - startBatch: function () { - var e = this._private; - return ( - null == e.batchCount && (e.batchCount = 0), - 0 === e.batchCount && ((e.batchStyleEles = this.collection()), (e.batchNotifications = {})), - e.batchCount++, - this - ); - }, - endBatch: function () { - var e = this._private; - if (0 === e.batchCount) return this; - if ((e.batchCount--, 0 === e.batchCount)) { - e.batchStyleEles.updateStyle(); - var t = this.renderer(); - Object.keys(e.batchNotifications).forEach(function (n) { - var r = e.batchNotifications[n]; - r.empty() ? t.notify(n) : t.notify(n, r); - }); - } - return this; - }, - batch: function (e) { - return this.startBatch(), e(), this.endBatch(), this; - }, - batchData: function (e) { - var t = this; - return this.batch(function () { - for (var n = Object.keys(e), r = 0; r < n.length; r++) { - var o = n[r], - i = e[o]; - t.getElementById(o).data(i); - } - }); - }, - }, - Ui = Oe({ - hideEdgesOnViewport: !1, - textureOnViewport: !1, - motionBlur: !1, - motionBlurOpacity: 0.05, - pixelRatio: void 0, - desktopTapThreshold: 4, - touchTapThreshold: 8, - wheelSensitivity: 1, - debug: !1, - showFps: !1, - }), - qi = { - renderTo: function (e, t, n, r) { - return this._private.renderer.renderTo(e, t, n, r), this; - }, - renderer: function () { - return this._private.renderer; - }, - forceRender: function () { - return this.notify('draw'), this; - }, - resize: function () { - return this.invalidateSize(), this.emitAndNotify('resize'), this; - }, - initRenderer: function (e) { - var t = this, - n = t.extension('renderer', e.name); - if (null != n) { - void 0 !== e.wheelSensitivity && - je( - 'You have set a custom wheel sensitivity. This will make your app zoom unnaturally when using mainstream mice. You should change this value from the default only if you can guarantee that all your users will use the same hardware and OS configuration as your current machine.', - ); - var r = Ui(e); - (r.cy = t), (t._private.renderer = new n(r)), this.notify('init'); - } else - Pe( - 'Can not initialise: No such renderer `'.concat( - e.name, - '` found. Did you forget to import it and `cytoscape.use()` it?', - ), - ); - }, - destroyRenderer: function () { - var e = this; - e.notify('destroy'); - var t = e.container(); - if (t) for (t._cyreg = null; t.childNodes.length > 0; ) t.removeChild(t.childNodes[0]); - (e._private.renderer = null), - e.mutableElements().forEach(function (e) { - var t = e._private; - (t.rscratch = {}), (t.rstyle = {}), (t.animation.current = []), (t.animation.queue = []); - }); - }, - onRender: function (e) { - return this.on('render', e); - }, - offRender: function (e) { - return this.off('render', e); - }, - }; - qi.invalidateDimensions = qi.resize; - var Yi = { - collection: function (e, t) { - return j(e) - ? this.$(e) - : A(e) - ? e.collection() - : D(e) - ? (t || (t = {}), new _i(this, e, t.unique, t.removed)) - : new _i(this); - }, - nodes: function (e) { - var t = this.$(function (e) { - return e.isNode(); - }); - return e ? t.filter(e) : t; - }, - edges: function (e) { - var t = this.$(function (e) { - return e.isEdge(); - }); - return e ? t.filter(e) : t; - }, - $: function (e) { - var t = this._private.elements; - return e ? t.filter(e) : t.spawnSelf(); - }, - mutableElements: function () { - return this._private.elements; - }, - }; - Yi.elements = Yi.filter = Yi.$; - var Xi = {}, - $i = 't'; - (Xi.apply = function (e) { - for (var t = this, n = t._private.cy.collection(), r = 0; r < e.length; r++) { - var o = e[r], - i = t.getContextMeta(o); - if (!i.empty) { - var a = t.getContextStyle(i), - s = t.applyContextStyle(i, a, o); - o._private.appliedInitStyle ? t.updateTransitions(o, s.diffProps) : (o._private.appliedInitStyle = !0), - t.updateStyleHints(o) && n.push(o); - } - } - return n; - }), - (Xi.getPropertiesDiff = function (e, t) { - var n = this, - r = (n._private.propDiffs = n._private.propDiffs || {}), - o = e + '-' + t, - i = r[o]; - if (i) return i; - for (var a = [], s = {}, l = 0; l < n.length; l++) { - var c = n[l], - u = e[l] === $i, - d = t[l] === $i, - f = u !== d, - h = c.mappedProperties.length > 0; - if (f || (d && h)) { - var p = void 0; - (f && h) || f ? (p = c.properties) : h && (p = c.mappedProperties); - for (var v = 0; v < p.length; v++) { - for (var g = p[v], m = g.name, y = !1, b = l + 1; b < n.length; b++) { - var x = n[b]; - if (t[b] === $i && (y = null != x.properties[g.name])) break; - } - s[m] || y || ((s[m] = !0), a.push(m)); - } - } - } - return (r[o] = a), a; - }), - (Xi.getContextMeta = function (e) { - for (var t, n = this, r = '', o = e._private.styleCxtKey || '', i = 0; i < n.length; i++) { - var a = n[i]; - r += a.selector && a.selector.matches(e) ? $i : 'f'; - } - return ( - (t = n.getPropertiesDiff(o, r)), - (e._private.styleCxtKey = r), - { key: r, diffPropNames: t, empty: 0 === t.length } - ); - }), - (Xi.getContextStyle = function (e) { - var t = e.key, - n = (this._private.contextStyles = this._private.contextStyles || {}); - if (n[t]) return n[t]; - for (var r = { _private: { key: t } }, o = 0; o < this.length; o++) { - var i = this[o]; - if (t[o] === $i) - for (var a = 0; a < i.properties.length; a++) { - var s = i.properties[a]; - r[s.name] = s; - } - } - return (n[t] = r), r; - }), - (Xi.applyContextStyle = function (e, t, n) { - for (var r = e.diffPropNames, o = {}, i = this.types, a = 0; a < r.length; a++) { - var s = r[a], - l = t[s], - c = n.pstyle(s); - if (!l) { - if (!c) continue; - l = c.bypass ? { name: s, deleteBypassed: !0 } : { name: s, delete: !0 }; - } - if (c !== l) { - if (l.mapped === i.fn && null != c && null != c.mapping && c.mapping.value === l.value) { - var u = c.mapping; - if ((u.fnValue = l.value(n)) === u.prevFnValue) continue; - } - var d = (o[s] = { prev: c }); - this.applyParsedProperty(n, l), - (d.next = n.pstyle(s)), - d.next && d.next.bypass && (d.next = d.next.bypassed); - } - } - return { diffProps: o }; - }), - (Xi.updateStyleHints = function (e) { - var t = e._private, - n = this, - r = n.propertyGroupNames, - o = n.propertyGroupKeys, - i = function (e, t, r) { - return n.getPropertiesHash(e, t, r); - }, - a = t.styleKey; - if (e.removed()) return !1; - var s = 'nodes' === t.group, - l = e._private.style; - r = Object.keys(l); - for (var c = 0; c < o.length; c++) { - var u = o[c]; - t.styleKeys[u] = [le, ce]; - } - for ( - var d, - f = function (e, n) { - return (t.styleKeys[n][0] = de(e, t.styleKeys[n][0])); - }, - h = function (e, n) { - return (t.styleKeys[n][1] = fe(e, t.styleKeys[n][1])); - }, - p = function (e, t) { - f(e, t), h(e, t); - }, - v = function (e, t) { - for (var n = 0; n < e.length; n++) { - var r = e.charCodeAt(n); - f(r, t), h(r, t); - } - }, - g = 0; - g < r.length; - g++ - ) { - var m = r[g], - y = l[m]; - if (null != y) { - var b = this.properties[m], - x = b.type, - w = b.groupKey, - E = void 0; - null != b.hashOverride ? (E = b.hashOverride(e, y)) : null != y.pfValue && (E = y.pfValue); - var k = null == b.enums ? y.value : null, - _ = null != E, - S = _ || null != k, - P = y.units; - if (x.number && S && !x.multiple) - p(-128 < (d = _ ? E : k) && d < 128 && Math.floor(d) !== d ? 2e9 - ((1024 * d) | 0) : d, w), - _ || null == P || v(P, w); - else v(y.strValue, w); - } - } - for (var C, j, T = [le, ce], D = 0; D < o.length; D++) { - var N = o[D], - M = t.styleKeys[N]; - (T[0] = de(M[0], T[0])), (T[1] = fe(M[1], T[1])); - } - t.styleKey = ((C = T[0]), (j = T[1]), 2097152 * C + j); - var O = t.styleKeys; - t.labelDimsKey = he(O.labelDimensions); - var A = i(e, ['label'], O.labelDimensions); - if (((t.labelKey = he(A)), (t.labelStyleKey = he(pe(O.commonLabel, A))), !s)) { - var R = i(e, ['source-label'], O.labelDimensions); - (t.sourceLabelKey = he(R)), (t.sourceLabelStyleKey = he(pe(O.commonLabel, R))); - var L = i(e, ['target-label'], O.labelDimensions); - (t.targetLabelKey = he(L)), (t.targetLabelStyleKey = he(pe(O.commonLabel, L))); - } - if (s) { - var I = t.styleKeys, - B = I.nodeBody, - F = I.nodeBorder, - z = I.backgroundImage, - V = I.compound, - G = I.pie, - H = [B, F, z, V, G] - .filter(function (e) { - return null != e; - }) - .reduce(pe, [le, ce]); - (t.nodeKey = he(H)), (t.hasPie = null != G && G[0] !== le && G[1] !== ce); - } - return a !== t.styleKey; - }), - (Xi.clearStyleHints = function (e) { - var t = e._private; - (t.styleCxtKey = ''), - (t.styleKeys = {}), - (t.styleKey = null), - (t.labelKey = null), - (t.labelStyleKey = null), - (t.sourceLabelKey = null), - (t.sourceLabelStyleKey = null), - (t.targetLabelKey = null), - (t.targetLabelStyleKey = null), - (t.nodeKey = null), - (t.hasPie = null); - }), - (Xi.applyParsedProperty = function (e, t) { - var n, - r = this, - o = t, - i = e._private.style, - a = r.types, - s = r.properties[o.name].type, - l = o.bypass, - c = i[o.name], - u = c && c.bypass, - d = e._private, - f = 'mapping', - h = function (e) { - return null == e ? null : null != e.pfValue ? e.pfValue : e.value; - }, - p = function () { - var t = h(c), - n = h(o); - r.checkTriggers(e, o.name, t, n); - }; - if ( - (o && - 'pie' === o.name.substr(0, 3) && - je('The pie style properties are deprecated. Create charts using background images instead.'), - 'curve-style' === t.name && - e.isEdge() && - (('bezier' !== t.value && e.isLoop()) || - ('haystack' === t.value && (e.source().isParent() || e.target().isParent()))) && - (o = t = this.parse(t.name, 'bezier', l)), - o.delete) - ) - return (i[o.name] = void 0), p(), !0; - if (o.deleteBypassed) return c ? !!c.bypass && ((c.bypassed = void 0), p(), !0) : (p(), !0); - if (o.deleteBypass) return c ? !!c.bypass && ((i[o.name] = c.bypassed), p(), !0) : (p(), !0); - var v = function () { - je( - 'Do not assign mappings to elements without corresponding data (i.e. ele `' + - e.id() + - '` has no mapping for property `' + - o.name + - '` with data field `' + - o.field + - '`); try a `[' + - o.field + - ']` selector to limit scope to elements with `' + - o.field + - '` defined', - ); - }; - switch (o.mapped) { - case a.mapData: - for (var g, m = o.field.split('.'), y = d.data, b = 0; b < m.length && y; b++) { - y = y[m[b]]; - } - if (null == y) return v(), !1; - if (!M(y)) - return ( - je( - 'Do not use continuous mappers without specifying numeric data (i.e. `' + - o.field + - ': ' + - y + - '` for `' + - e.id() + - '` is non-numeric)', - ), - !1 - ); - var x = o.fieldMax - o.fieldMin; - if (((g = 0 === x ? 0 : (y - o.fieldMin) / x) < 0 ? (g = 0) : g > 1 && (g = 1), s.color)) { - var w = o.valueMin[0], - E = o.valueMax[0], - k = o.valueMin[1], - _ = o.valueMax[1], - S = o.valueMin[2], - P = o.valueMax[2], - C = null == o.valueMin[3] ? 1 : o.valueMin[3], - j = null == o.valueMax[3] ? 1 : o.valueMax[3], - T = [ - Math.round(w + (E - w) * g), - Math.round(k + (_ - k) * g), - Math.round(S + (P - S) * g), - Math.round(C + (j - C) * g), - ]; - n = { - bypass: o.bypass, - name: o.name, - value: T, - strValue: 'rgb(' + T[0] + ', ' + T[1] + ', ' + T[2] + ')', - }; - } else { - if (!s.number) return !1; - var D = o.valueMin + (o.valueMax - o.valueMin) * g; - n = this.parse(o.name, D, o.bypass, f); - } - if (!n) return v(), !1; - (n.mapping = o), (o = n); - break; - case a.data: - for (var N = o.field.split('.'), O = d.data, A = 0; A < N.length && O; A++) { - O = O[N[A]]; - } - if ((null != O && (n = this.parse(o.name, O, o.bypass, f)), !n)) return v(), !1; - (n.mapping = o), (o = n); - break; - case a.fn: - var R = o.value, - L = null != o.fnValue ? o.fnValue : R(e); - if (((o.prevFnValue = L), null == L)) - return ( - je( - 'Custom function mappers may not return null (i.e. `' + - o.name + - '` for ele `' + - e.id() + - '` is null)', - ), - !1 - ); - if (!(n = this.parse(o.name, L, o.bypass, f))) - return ( - je( - 'Custom function mappers may not return invalid values for the property type (i.e. `' + - o.name + - '` for ele `' + - e.id() + - '` is invalid)', - ), - !1 - ); - (n.mapping = Te(o)), (o = n); - break; - case void 0: - break; - default: - return !1; - } - return ( - l ? ((o.bypassed = u ? c.bypassed : c), (i[o.name] = o)) : u ? (c.bypassed = o) : (i[o.name] = o), p(), !0 - ); - }), - (Xi.cleanElements = function (e, t) { - for (var n = 0; n < e.length; n++) { - var r = e[n]; - if ((this.clearStyleHints(r), r.dirtyCompoundBoundsCache(), r.dirtyBoundingBoxCache(), t)) - for (var o = r._private.style, i = Object.keys(o), a = 0; a < i.length; a++) { - var s = i[a], - l = o[s]; - null != l && (l.bypass ? (l.bypassed = null) : (o[s] = null)); - } - else r._private.style = {}; - } - }), - (Xi.update = function () { - this._private.cy.mutableElements().updateStyle(); - }), - (Xi.updateTransitions = function (e, t) { - var n = this, - r = e._private, - o = e.pstyle('transition-property').value, - i = e.pstyle('transition-duration').pfValue, - a = e.pstyle('transition-delay').pfValue; - if (o.length > 0 && i > 0) { - for (var s = {}, l = !1, c = 0; c < o.length; c++) { - var u = o[c], - d = e.pstyle(u), - f = t[u]; - if (f) { - var h = f.prev, - p = null != f.next ? f.next : d, - v = !1, - g = void 0, - m = 1e-6; - h && - (M(h.pfValue) && M(p.pfValue) - ? ((v = p.pfValue - h.pfValue), (g = h.pfValue + m * v)) - : M(h.value) && M(p.value) - ? ((v = p.value - h.value), (g = h.value + m * v)) - : D(h.value) && - D(p.value) && - ((v = h.value[0] !== p.value[0] || h.value[1] !== p.value[1] || h.value[2] !== p.value[2]), - (g = h.strValue)), - v && ((s[u] = p.strValue), this.applyBypass(e, u, g), (l = !0))); - } - } - if (!l) return; - (r.transitioning = !0), - new nr(function (t) { - a > 0 ? e.delayAnimation(a).play().promise().then(t) : t(); - }) - .then(function () { - return e - .animation({ - style: s, - duration: i, - easing: e.pstyle('transition-timing-function').value, - queue: !1, - }) - .play() - .promise(); - }) - .then(function () { - n.removeBypasses(e, o), e.emitAndNotify('style'), (r.transitioning = !1); - }); - } else r.transitioning && (this.removeBypasses(e, o), e.emitAndNotify('style'), (r.transitioning = !1)); - }), - (Xi.checkTrigger = function (e, t, n, r, o, i) { - var a = this.properties[t], - s = o(a); - null != s && s(n, r) && i(a); - }), - (Xi.checkZOrderTrigger = function (e, t, n, r) { - var o = this; - this.checkTrigger( - e, - t, - n, - r, - function (e) { - return e.triggersZOrder; - }, - function () { - o._private.cy.notify('zorder', e); - }, - ); - }), - (Xi.checkBoundsTrigger = function (e, t, n, r) { - this.checkTrigger( - e, - t, - n, - r, - function (e) { - return e.triggersBounds; - }, - function (o) { - e.dirtyCompoundBoundsCache(), - e.dirtyBoundingBoxCache(), - !o.triggersBoundsOfParallelBeziers || - (('curve-style' !== t || ('bezier' !== n && 'bezier' !== r)) && - ('display' !== t || ('none' !== n && 'none' !== r))) || - e.parallelEdges().forEach(function (e) { - e.isBundledBezier() && e.dirtyBoundingBoxCache(); - }); - }, - ); - }), - (Xi.checkTriggers = function (e, t, n, r) { - e.dirtyStyleCache(), this.checkZOrderTrigger(e, t, n, r), this.checkBoundsTrigger(e, t, n, r); - }); - var Ki = { - applyBypass: function (e, t, n, r) { - var o = []; - if ('*' === t || '**' === t) { - if (void 0 !== n) - for (var i = 0; i < this.properties.length; i++) { - var a = this.properties[i].name, - s = this.parse(a, n, !0); - s && o.push(s); - } - } else if (j(t)) { - var l = this.parse(t, n, !0); - l && o.push(l); - } else { - if (!N(t)) return !1; - var c = t; - r = n; - for (var u = Object.keys(c), d = 0; d < u.length; d++) { - var f = u[d], - h = c[f]; - if ((void 0 === h && (h = c[H(f)]), void 0 !== h)) { - var p = this.parse(f, h, !0); - p && o.push(p); - } - } - } - if (0 === o.length) return !1; - for (var v = !1, g = 0; g < e.length; g++) { - for (var m = e[g], y = {}, b = void 0, x = 0; x < o.length; x++) { - var w = o[x]; - if (r) { - var E = m.pstyle(w.name); - b = y[w.name] = { prev: E }; - } - (v = this.applyParsedProperty(m, Te(w)) || v), r && (b.next = m.pstyle(w.name)); - } - v && this.updateStyleHints(m), r && this.updateTransitions(m, y, true); - } - return v; - }, - overrideBypass: function (e, t, n) { - t = G(t); - for (var r = 0; r < e.length; r++) { - var o = e[r], - i = o._private.style[t], - a = this.properties[t].type, - s = a.color, - l = a.mutiple, - c = i ? (null != i.pfValue ? i.pfValue : i.value) : null; - i && i.bypass - ? ((i.value = n), - null != i.pfValue && (i.pfValue = n), - (i.strValue = s ? 'rgb(' + n.join(',') + ')' : l ? n.join(' ') : '' + n), - this.updateStyleHints(o)) - : this.applyBypass(o, t, n), - this.checkTriggers(o, t, c, n); - } - }, - removeAllBypasses: function (e, t) { - return this.removeBypasses(e, this.propertyNames, t); - }, - removeBypasses: function (e, t, n) { - for (var r = 0; r < e.length; r++) { - for (var o = e[r], i = {}, a = 0; a < t.length; a++) { - var s = t[a], - l = this.properties[s], - c = o.pstyle(l.name); - if (c && c.bypass) { - var u = this.parse(s, '', !0), - d = (i[l.name] = { prev: c }); - this.applyParsedProperty(o, u), (d.next = o.pstyle(l.name)); - } - } - this.updateStyleHints(o), n && this.updateTransitions(o, i, true); - } - }, - }, - Zi = { - getEmSizeInPixels: function () { - var e = this.containerCss('font-size'); - return null != e ? parseFloat(e) : 1; - }, - containerCss: function (e) { - var t = this._private.cy.container(); - if (w && t && w.getComputedStyle) return w.getComputedStyle(t).getPropertyValue(e); - }, - }, - Qi = { - getRenderedStyle: function (e, t) { - return t ? this.getStylePropertyValue(e, t, !0) : this.getRawStyle(e, !0); - }, - getRawStyle: function (e, t) { - var n = this; - if ((e = e[0])) { - for (var r = {}, o = 0; o < n.properties.length; o++) { - var i = n.properties[o], - a = n.getStylePropertyValue(e, i.name, t); - null != a && ((r[i.name] = a), (r[H(i.name)] = a)); - } - return r; - } - }, - getIndexedStyle: function (e, t, n, r) { - var o = e.pstyle(t)[n][r]; - return null != o ? o : e.cy().style().getDefaultProperty(t)[n][0]; - }, - getStylePropertyValue: function (e, t, n) { - if ((e = e[0])) { - var r = this.properties[t]; - r.alias && (r = r.pointsTo); - var o = r.type, - i = e.pstyle(r.name); - if (i) { - var a = i.value, - s = i.units, - l = i.strValue; - if (n && o.number && null != a && M(a)) { - var c = e.cy().zoom(), - u = function (e) { - return e * c; - }, - d = function (e, t) { - return u(e) + t; - }, - f = D(a); - return ( - f - ? s.every(function (e) { - return null != e; - }) - : null != s - ) - ? f - ? a - .map(function (e, t) { - return d(e, s[t]); - }) - .join(' ') - : d(a, s) - : f - ? a - .map(function (e) { - return j(e) ? e : '' + u(e); - }) - .join(' ') - : '' + u(a); - } - if (null != l) return l; - } - return null; - } - }, - getAnimationStartStyle: function (e, t) { - for (var n = {}, r = 0; r < t.length; r++) { - var o = t[r].name, - i = e.pstyle(o); - void 0 !== i && (i = N(i) ? this.parse(o, i.strValue) : this.parse(o, i)), i && (n[o] = i); - } - return n; - }, - getPropsList: function (e) { - var t = [], - n = e, - r = this.properties; - if (n) - for (var o = Object.keys(n), i = 0; i < o.length; i++) { - var a = o[i], - s = n[a], - l = r[a] || r[G(a)], - c = this.parse(l.name, s); - c && t.push(c); - } - return t; - }, - getNonDefaultPropertiesHash: function (e, t, n) { - var r, - o, - i, - a, - s, - l, - c = n.slice(); - for (s = 0; s < t.length; s++) - if (((r = t[s]), null != (o = e.pstyle(r, !1)))) - if (null != o.pfValue) (c[0] = de(a, c[0])), (c[1] = fe(a, c[1])); - else - for (i = o.strValue, l = 0; l < i.length; l++) - (a = i.charCodeAt(l)), (c[0] = de(a, c[0])), (c[1] = fe(a, c[1])); - return c; - }, - }; - Qi.getPropertiesHash = Qi.getNonDefaultPropertiesHash; - var Ji = { - appendFromJson: function (e) { - for (var t = this, n = 0; n < e.length; n++) { - var r = e[n], - o = r.selector, - i = r.style || r.css, - a = Object.keys(i); - t.selector(o); - for (var s = 0; s < a.length; s++) { - var l = a[s], - c = i[l]; - t.css(l, c); - } - } - return t; - }, - fromJson: function (e) { - var t = this; - return t.resetToDefault(), t.appendFromJson(e), t; - }, - json: function () { - for (var e = [], t = this.defaultLength; t < this.length; t++) { - for (var n = this[t], r = n.selector, o = n.properties, i = {}, a = 0; a < o.length; a++) { - var s = o[a]; - i[s.name] = s.strValue; - } - e.push({ selector: r ? r.toString() : 'core', style: i }); - } - return e; - }, - }, - ea = { - appendFromString: function (e) { - var t, - n, - r, - o = this, - i = '' + e; - function a() { - i = i.length > t.length ? i.substr(t.length) : ''; - } - function s() { - n = n.length > r.length ? n.substr(r.length) : ''; - } - for (i = i.replace(/[/][*](\s|.)+?[*][/]/g, ''); ; ) { - if (i.match(/^\s*$/)) break; - var l = i.match(/^\s*((?:.|\s)+?)\s*\{((?:.|\s)+?)\}/); - if (!l) { - je( - 'Halting stylesheet parsing: String stylesheet contains more to parse but no selector and block found in: ' + - i, - ); - break; - } - t = l[0]; - var c = l[1]; - if ('core' !== c) - if (new qr(c).invalid) { - je('Skipping parsing of block: Invalid selector found in string stylesheet: ' + c), a(); - continue; - } - var u = l[2], - d = !1; - n = u; - for (var f = []; ; ) { - if (n.match(/^\s*$/)) break; - var h = n.match(/^\s*(.+?)\s*:\s*(.+?)(?:\s*;|\s*$)/); - if (!h) { - je( - 'Skipping parsing of block: Invalid formatting of style property and value definitions found in:' + - u, - ), - (d = !0); - break; - } - r = h[0]; - var p = h[1], - v = h[2]; - if (this.properties[p]) - o.parse(p, v) - ? (f.push({ name: p, val: v }), s()) - : (je('Skipping property: Invalid property definition in: ' + r), s()); - else je('Skipping property: Invalid property name in: ' + r), s(); - } - if (d) { - a(); - break; - } - o.selector(c); - for (var g = 0; g < f.length; g++) { - var m = f[g]; - o.css(m.name, m.val); - } - a(); - } - return o; - }, - fromString: function (e) { - var t = this; - return t.resetToDefault(), t.appendFromString(e), t; - }, - }, - ta = {}; - !(function () { - var e = q, - t = X, - n = K, - r = function (e) { - return '^' + e + '\\s*\\(\\s*([\\w\\.]+)\\s*\\)$'; - }, - o = function (r) { - var o = e + '|\\w+|' + t + '|' + n + '|\\#[0-9a-fA-F]{3}|\\#[0-9a-fA-F]{6}'; - return ( - '^' + - r + - '\\s*\\(([\\w\\.]+)\\s*\\,\\s*(' + - e + - ')\\s*\\,\\s*(' + - e + - ')\\s*,\\s*(' + - o + - ')\\s*\\,\\s*(' + - o + - ')\\)$' - ); - }, - i = ['^url\\s*\\(\\s*[\'"]?(.+?)[\'"]?\\s*\\)$', '^(none)$', '^(.+)$']; - ta.types = { - time: { number: !0, min: 0, units: 's|ms', implicitUnits: 'ms' }, - percent: { number: !0, min: 0, max: 100, units: '%', implicitUnits: '%' }, - percentages: { number: !0, min: 0, max: 100, units: '%', implicitUnits: '%', multiple: !0 }, - zeroOneNumber: { number: !0, min: 0, max: 1, unitless: !0 }, - zeroOneNumbers: { number: !0, min: 0, max: 1, unitless: !0, multiple: !0 }, - nOneOneNumber: { number: !0, min: -1, max: 1, unitless: !0 }, - nonNegativeInt: { number: !0, min: 0, integer: !0, unitless: !0 }, - position: { enums: ['parent', 'origin'] }, - nodeSize: { number: !0, min: 0, enums: ['label'] }, - number: { number: !0, unitless: !0 }, - numbers: { number: !0, unitless: !0, multiple: !0 }, - positiveNumber: { number: !0, unitless: !0, min: 0, strictMin: !0 }, - size: { number: !0, min: 0 }, - bidirectionalSize: { number: !0 }, - bidirectionalSizeMaybePercent: { number: !0, allowPercent: !0 }, - bidirectionalSizes: { number: !0, multiple: !0 }, - sizeMaybePercent: { number: !0, min: 0, allowPercent: !0 }, - axisDirection: { enums: ['horizontal', 'leftward', 'rightward', 'vertical', 'upward', 'downward', 'auto'] }, - paddingRelativeTo: { enums: ['width', 'height', 'average', 'min', 'max'] }, - bgWH: { number: !0, min: 0, allowPercent: !0, enums: ['auto'], multiple: !0 }, - bgPos: { number: !0, allowPercent: !0, multiple: !0 }, - bgRelativeTo: { enums: ['inner', 'include-padding'], multiple: !0 }, - bgRepeat: { enums: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat'], multiple: !0 }, - bgFit: { enums: ['none', 'contain', 'cover'], multiple: !0 }, - bgCrossOrigin: { enums: ['anonymous', 'use-credentials'], multiple: !0 }, - bgClip: { enums: ['none', 'node'], multiple: !0 }, - bgContainment: { enums: ['inside', 'over'], multiple: !0 }, - color: { color: !0 }, - colors: { color: !0, multiple: !0 }, - fill: { enums: ['solid', 'linear-gradient', 'radial-gradient'] }, - bool: { enums: ['yes', 'no'] }, - bools: { enums: ['yes', 'no'], multiple: !0 }, - lineStyle: { enums: ['solid', 'dotted', 'dashed'] }, - lineCap: { enums: ['butt', 'round', 'square'] }, - borderStyle: { enums: ['solid', 'dotted', 'dashed', 'double'] }, - curveStyle: { - enums: ['bezier', 'unbundled-bezier', 'haystack', 'segments', 'straight', 'straight-triangle', 'taxi'], - }, - fontFamily: { regex: '^([\\w- \\"]+(?:\\s*,\\s*[\\w- \\"]+)*)$' }, - fontStyle: { enums: ['italic', 'normal', 'oblique'] }, - fontWeight: { - enums: [ - 'normal', - 'bold', - 'bolder', - 'lighter', - '100', - '200', - '300', - '400', - '500', - '600', - '800', - '900', - 100, - 200, - 300, - 400, - 500, - 600, - 700, - 800, - 900, - ], - }, - textDecoration: { enums: ['none', 'underline', 'overline', 'line-through'] }, - textTransform: { enums: ['none', 'uppercase', 'lowercase'] }, - textWrap: { enums: ['none', 'wrap', 'ellipsis'] }, - textOverflowWrap: { enums: ['whitespace', 'anywhere'] }, - textBackgroundShape: { enums: ['rectangle', 'roundrectangle', 'round-rectangle'] }, - nodeShape: { - enums: [ - 'rectangle', - 'roundrectangle', - 'round-rectangle', - 'cutrectangle', - 'cut-rectangle', - 'bottomroundrectangle', - 'bottom-round-rectangle', - 'barrel', - 'ellipse', - 'triangle', - 'round-triangle', - 'square', - 'pentagon', - 'round-pentagon', - 'hexagon', - 'round-hexagon', - 'concavehexagon', - 'concave-hexagon', - 'heptagon', - 'round-heptagon', - 'octagon', - 'round-octagon', - 'tag', - 'round-tag', - 'star', - 'diamond', - 'round-diamond', - 'vee', - 'rhomboid', - 'polygon', - ], - }, - overlayShape: { enums: ['roundrectangle', 'round-rectangle', 'ellipse'] }, - compoundIncludeLabels: { enums: ['include', 'exclude'] }, - arrowShape: { - enums: [ - 'tee', - 'triangle', - 'triangle-tee', - 'circle-triangle', - 'triangle-cross', - 'triangle-backcurve', - 'vee', - 'square', - 'circle', - 'diamond', - 'chevron', - 'none', - ], - }, - arrowFill: { enums: ['filled', 'hollow'] }, - display: { enums: ['element', 'none'] }, - visibility: { enums: ['hidden', 'visible'] }, - zCompoundDepth: { enums: ['bottom', 'orphan', 'auto', 'top'] }, - zIndexCompare: { enums: ['auto', 'manual'] }, - valign: { enums: ['top', 'center', 'bottom'] }, - halign: { enums: ['left', 'center', 'right'] }, - justification: { enums: ['left', 'center', 'right', 'auto'] }, - text: { string: !0 }, - data: { mapping: !0, regex: r('data') }, - layoutData: { mapping: !0, regex: r('layoutData') }, - scratch: { mapping: !0, regex: r('scratch') }, - mapData: { mapping: !0, regex: o('mapData') }, - mapLayoutData: { mapping: !0, regex: o('mapLayoutData') }, - mapScratch: { mapping: !0, regex: o('mapScratch') }, - fn: { mapping: !0, fn: !0 }, - url: { regexes: i, singleRegexMatchValue: !0 }, - urls: { regexes: i, singleRegexMatchValue: !0, multiple: !0 }, - propList: { propList: !0 }, - angle: { number: !0, units: 'deg|rad', implicitUnits: 'rad' }, - textRotation: { number: !0, units: 'deg|rad', implicitUnits: 'rad', enums: ['none', 'autorotate'] }, - polygonPointList: { number: !0, multiple: !0, evenMultiple: !0, min: -1, max: 1, unitless: !0 }, - edgeDistances: { enums: ['intersection', 'node-position'] }, - edgeEndpoint: { - number: !0, - multiple: !0, - units: '%|px|em|deg|rad', - implicitUnits: 'px', - enums: [ - 'inside-to-node', - 'outside-to-node', - 'outside-to-node-or-label', - 'outside-to-line', - 'outside-to-line-or-label', - ], - singleEnum: !0, - validate: function (e, t) { - switch (e.length) { - case 2: - return 'deg' !== t[0] && 'rad' !== t[0] && 'deg' !== t[1] && 'rad' !== t[1]; - case 1: - return j(e[0]) || 'deg' === t[0] || 'rad' === t[0]; - default: - return !1; - } - }, - }, - easing: { - regexes: [ - '^(spring)\\s*\\(\\s*(' + e + ')\\s*,\\s*(' + e + ')\\s*\\)$', - '^(cubic-bezier)\\s*\\(\\s*(' + - e + - ')\\s*,\\s*(' + - e + - ')\\s*,\\s*(' + - e + - ')\\s*,\\s*(' + - e + - ')\\s*\\)$', - ], - enums: [ - 'linear', - 'ease', - 'ease-in', - 'ease-out', - 'ease-in-out', - 'ease-in-sine', - 'ease-out-sine', - 'ease-in-out-sine', - 'ease-in-quad', - 'ease-out-quad', - 'ease-in-out-quad', - 'ease-in-cubic', - 'ease-out-cubic', - 'ease-in-out-cubic', - 'ease-in-quart', - 'ease-out-quart', - 'ease-in-out-quart', - 'ease-in-quint', - 'ease-out-quint', - 'ease-in-out-quint', - 'ease-in-expo', - 'ease-out-expo', - 'ease-in-out-expo', - 'ease-in-circ', - 'ease-out-circ', - 'ease-in-out-circ', - ], - }, - gradientDirection: { - enums: [ - 'to-bottom', - 'to-top', - 'to-left', - 'to-right', - 'to-bottom-right', - 'to-bottom-left', - 'to-top-right', - 'to-top-left', - 'to-right-bottom', - 'to-left-bottom', - 'to-right-top', - 'to-left-top', - ], - }, - boundsExpansion: { - number: !0, - multiple: !0, - min: 0, - validate: function (e) { - var t = e.length; - return 1 === t || 2 === t || 4 === t; - }, - }, - }; - var a = { - zeroNonZero: function (e, t) { - return ((null == e || null == t) && e !== t) || (0 == e && 0 != t) || (0 != e && 0 == t); - }, - any: function (e, t) { - return e != t; - }, - emptyNonEmpty: function (e, t) { - var n = F(e), - r = F(t); - return (n && !r) || (!n && r); - }, - }, - s = ta.types, - l = [ - { name: 'label', type: s.text, triggersBounds: a.any, triggersZOrder: a.emptyNonEmpty }, - { name: 'text-rotation', type: s.textRotation, triggersBounds: a.any }, - { name: 'text-margin-x', type: s.bidirectionalSize, triggersBounds: a.any }, - { name: 'text-margin-y', type: s.bidirectionalSize, triggersBounds: a.any }, - ], - c = [ - { name: 'source-label', type: s.text, triggersBounds: a.any }, - { name: 'source-text-rotation', type: s.textRotation, triggersBounds: a.any }, - { name: 'source-text-margin-x', type: s.bidirectionalSize, triggersBounds: a.any }, - { name: 'source-text-margin-y', type: s.bidirectionalSize, triggersBounds: a.any }, - { name: 'source-text-offset', type: s.size, triggersBounds: a.any }, - ], - u = [ - { name: 'target-label', type: s.text, triggersBounds: a.any }, - { name: 'target-text-rotation', type: s.textRotation, triggersBounds: a.any }, - { name: 'target-text-margin-x', type: s.bidirectionalSize, triggersBounds: a.any }, - { name: 'target-text-margin-y', type: s.bidirectionalSize, triggersBounds: a.any }, - { name: 'target-text-offset', type: s.size, triggersBounds: a.any }, - ], - d = [ - { name: 'font-family', type: s.fontFamily, triggersBounds: a.any }, - { name: 'font-style', type: s.fontStyle, triggersBounds: a.any }, - { name: 'font-weight', type: s.fontWeight, triggersBounds: a.any }, - { name: 'font-size', type: s.size, triggersBounds: a.any }, - { name: 'text-transform', type: s.textTransform, triggersBounds: a.any }, - { name: 'text-wrap', type: s.textWrap, triggersBounds: a.any }, - { name: 'text-overflow-wrap', type: s.textOverflowWrap, triggersBounds: a.any }, - { name: 'text-max-width', type: s.size, triggersBounds: a.any }, - { name: 'text-outline-width', type: s.size, triggersBounds: a.any }, - { name: 'line-height', type: s.positiveNumber, triggersBounds: a.any }, - ], - f = [ - { name: 'text-valign', type: s.valign, triggersBounds: a.any }, - { name: 'text-halign', type: s.halign, triggersBounds: a.any }, - { name: 'color', type: s.color }, - { name: 'text-outline-color', type: s.color }, - { name: 'text-outline-opacity', type: s.zeroOneNumber }, - { name: 'text-background-color', type: s.color }, - { name: 'text-background-opacity', type: s.zeroOneNumber }, - { name: 'text-background-padding', type: s.size, triggersBounds: a.any }, - { name: 'text-border-opacity', type: s.zeroOneNumber }, - { name: 'text-border-color', type: s.color }, - { name: 'text-border-width', type: s.size, triggersBounds: a.any }, - { name: 'text-border-style', type: s.borderStyle, triggersBounds: a.any }, - { name: 'text-background-shape', type: s.textBackgroundShape, triggersBounds: a.any }, - { name: 'text-justification', type: s.justification }, - ], - h = [ - { name: 'events', type: s.bool }, - { name: 'text-events', type: s.bool }, - ], - p = [ - { - name: 'display', - type: s.display, - triggersZOrder: a.any, - triggersBounds: a.any, - triggersBoundsOfParallelBeziers: !0, - }, - { name: 'visibility', type: s.visibility, triggersZOrder: a.any }, - { name: 'opacity', type: s.zeroOneNumber, triggersZOrder: a.zeroNonZero }, - { name: 'text-opacity', type: s.zeroOneNumber }, - { name: 'min-zoomed-font-size', type: s.size }, - { name: 'z-compound-depth', type: s.zCompoundDepth, triggersZOrder: a.any }, - { name: 'z-index-compare', type: s.zIndexCompare, triggersZOrder: a.any }, - { name: 'z-index', type: s.nonNegativeInt, triggersZOrder: a.any }, - ], - v = [ - { name: 'overlay-padding', type: s.size, triggersBounds: a.any }, - { name: 'overlay-color', type: s.color }, - { name: 'overlay-opacity', type: s.zeroOneNumber, triggersBounds: a.zeroNonZero }, - { name: 'overlay-shape', type: s.overlayShape, triggersBounds: a.any }, - ], - g = [ - { name: 'underlay-padding', type: s.size, triggersBounds: a.any }, - { name: 'underlay-color', type: s.color }, - { name: 'underlay-opacity', type: s.zeroOneNumber, triggersBounds: a.zeroNonZero }, - { name: 'underlay-shape', type: s.overlayShape, triggersBounds: a.any }, - ], - m = [ - { name: 'transition-property', type: s.propList }, - { name: 'transition-duration', type: s.time }, - { name: 'transition-delay', type: s.time }, - { name: 'transition-timing-function', type: s.easing }, - ], - y = function (e, t) { - return 'label' === t.value ? -e.poolIndex() : t.pfValue; - }, - b = [ - { name: 'height', type: s.nodeSize, triggersBounds: a.any, hashOverride: y }, - { name: 'width', type: s.nodeSize, triggersBounds: a.any, hashOverride: y }, - { name: 'shape', type: s.nodeShape, triggersBounds: a.any }, - { name: 'shape-polygon-points', type: s.polygonPointList, triggersBounds: a.any }, - { name: 'background-color', type: s.color }, - { name: 'background-fill', type: s.fill }, - { name: 'background-opacity', type: s.zeroOneNumber }, - { name: 'background-blacken', type: s.nOneOneNumber }, - { name: 'background-gradient-stop-colors', type: s.colors }, - { name: 'background-gradient-stop-positions', type: s.percentages }, - { name: 'background-gradient-direction', type: s.gradientDirection }, - { name: 'padding', type: s.sizeMaybePercent, triggersBounds: a.any }, - { name: 'padding-relative-to', type: s.paddingRelativeTo, triggersBounds: a.any }, - { name: 'bounds-expansion', type: s.boundsExpansion, triggersBounds: a.any }, - ], - x = [ - { name: 'border-color', type: s.color }, - { name: 'border-opacity', type: s.zeroOneNumber }, - { name: 'border-width', type: s.size, triggersBounds: a.any }, - { name: 'border-style', type: s.borderStyle }, - ], - w = [ - { name: 'background-image', type: s.urls }, - { name: 'background-image-crossorigin', type: s.bgCrossOrigin }, - { name: 'background-image-opacity', type: s.zeroOneNumbers }, - { name: 'background-image-containment', type: s.bgContainment }, - { name: 'background-image-smoothing', type: s.bools }, - { name: 'background-position-x', type: s.bgPos }, - { name: 'background-position-y', type: s.bgPos }, - { name: 'background-width-relative-to', type: s.bgRelativeTo }, - { name: 'background-height-relative-to', type: s.bgRelativeTo }, - { name: 'background-repeat', type: s.bgRepeat }, - { name: 'background-fit', type: s.bgFit }, - { name: 'background-clip', type: s.bgClip }, - { name: 'background-width', type: s.bgWH }, - { name: 'background-height', type: s.bgWH }, - { name: 'background-offset-x', type: s.bgPos }, - { name: 'background-offset-y', type: s.bgPos }, - ], - E = [ - { name: 'position', type: s.position, triggersBounds: a.any }, - { name: 'compound-sizing-wrt-labels', type: s.compoundIncludeLabels, triggersBounds: a.any }, - { name: 'min-width', type: s.size, triggersBounds: a.any }, - { name: 'min-width-bias-left', type: s.sizeMaybePercent, triggersBounds: a.any }, - { name: 'min-width-bias-right', type: s.sizeMaybePercent, triggersBounds: a.any }, - { name: 'min-height', type: s.size, triggersBounds: a.any }, - { name: 'min-height-bias-top', type: s.sizeMaybePercent, triggersBounds: a.any }, - { name: 'min-height-bias-bottom', type: s.sizeMaybePercent, triggersBounds: a.any }, - ], - k = [ - { name: 'line-style', type: s.lineStyle }, - { name: 'line-color', type: s.color }, - { name: 'line-fill', type: s.fill }, - { name: 'line-cap', type: s.lineCap }, - { name: 'line-opacity', type: s.zeroOneNumber }, - { name: 'line-dash-pattern', type: s.numbers }, - { name: 'line-dash-offset', type: s.number }, - { name: 'line-gradient-stop-colors', type: s.colors }, - { name: 'line-gradient-stop-positions', type: s.percentages }, - { name: 'curve-style', type: s.curveStyle, triggersBounds: a.any, triggersBoundsOfParallelBeziers: !0 }, - { name: 'haystack-radius', type: s.zeroOneNumber, triggersBounds: a.any }, - { name: 'source-endpoint', type: s.edgeEndpoint, triggersBounds: a.any }, - { name: 'target-endpoint', type: s.edgeEndpoint, triggersBounds: a.any }, - { name: 'control-point-step-size', type: s.size, triggersBounds: a.any }, - { name: 'control-point-distances', type: s.bidirectionalSizes, triggersBounds: a.any }, - { name: 'control-point-weights', type: s.numbers, triggersBounds: a.any }, - { name: 'segment-distances', type: s.bidirectionalSizes, triggersBounds: a.any }, - { name: 'segment-weights', type: s.numbers, triggersBounds: a.any }, - { name: 'taxi-turn', type: s.bidirectionalSizeMaybePercent, triggersBounds: a.any }, - { name: 'taxi-turn-min-distance', type: s.size, triggersBounds: a.any }, - { name: 'taxi-direction', type: s.axisDirection, triggersBounds: a.any }, - { name: 'edge-distances', type: s.edgeDistances, triggersBounds: a.any }, - { name: 'arrow-scale', type: s.positiveNumber, triggersBounds: a.any }, - { name: 'loop-direction', type: s.angle, triggersBounds: a.any }, - { name: 'loop-sweep', type: s.angle, triggersBounds: a.any }, - { name: 'source-distance-from-node', type: s.size, triggersBounds: a.any }, - { name: 'target-distance-from-node', type: s.size, triggersBounds: a.any }, - ], - _ = [ - { name: 'ghost', type: s.bool, triggersBounds: a.any }, - { name: 'ghost-offset-x', type: s.bidirectionalSize, triggersBounds: a.any }, - { name: 'ghost-offset-y', type: s.bidirectionalSize, triggersBounds: a.any }, - { name: 'ghost-opacity', type: s.zeroOneNumber }, - ], - S = [ - { name: 'selection-box-color', type: s.color }, - { name: 'selection-box-opacity', type: s.zeroOneNumber }, - { name: 'selection-box-border-color', type: s.color }, - { name: 'selection-box-border-width', type: s.size }, - { name: 'active-bg-color', type: s.color }, - { name: 'active-bg-opacity', type: s.zeroOneNumber }, - { name: 'active-bg-size', type: s.size }, - { name: 'outside-texture-bg-color', type: s.color }, - { name: 'outside-texture-bg-opacity', type: s.zeroOneNumber }, - ], - P = []; - (ta.pieBackgroundN = 16), P.push({ name: 'pie-size', type: s.sizeMaybePercent }); - for (var C = 1; C <= ta.pieBackgroundN; C++) - P.push({ name: 'pie-' + C + '-background-color', type: s.color }), - P.push({ name: 'pie-' + C + '-background-size', type: s.percent }), - P.push({ name: 'pie-' + C + '-background-opacity', type: s.zeroOneNumber }); - var T = [], - D = (ta.arrowPrefixes = ['source', 'mid-source', 'target', 'mid-target']); - [ - { name: 'arrow-shape', type: s.arrowShape, triggersBounds: a.any }, - { name: 'arrow-color', type: s.color }, - { name: 'arrow-fill', type: s.arrowFill }, - ].forEach(function (e) { - D.forEach(function (t) { - var n = t + '-' + e.name, - r = e.type, - o = e.triggersBounds; - T.push({ name: n, type: r, triggersBounds: o }); - }); - }, {}); - var N = (ta.properties = [].concat(h, m, p, v, g, _, f, d, l, c, u, b, x, w, P, E, k, T, S)), - M = (ta.propertyGroups = { - behavior: h, - transition: m, - visibility: p, - overlay: v, - underlay: g, - ghost: _, - commonLabel: f, - labelDimensions: d, - mainLabel: l, - sourceLabel: c, - targetLabel: u, - nodeBody: b, - nodeBorder: x, - backgroundImage: w, - pie: P, - compound: E, - edgeLine: k, - edgeArrow: T, - core: S, - }), - O = (ta.propertyGroupNames = {}); - (ta.propertyGroupKeys = Object.keys(M)).forEach(function (e) { - (O[e] = M[e].map(function (e) { - return e.name; - })), - M[e].forEach(function (t) { - return (t.groupKey = e); - }); - }); - var A = (ta.aliases = [ - { name: 'content', pointsTo: 'label' }, - { name: 'control-point-distance', pointsTo: 'control-point-distances' }, - { name: 'control-point-weight', pointsTo: 'control-point-weights' }, - { name: 'edge-text-rotation', pointsTo: 'text-rotation' }, - { name: 'padding-left', pointsTo: 'padding' }, - { name: 'padding-right', pointsTo: 'padding' }, - { name: 'padding-top', pointsTo: 'padding' }, - { name: 'padding-bottom', pointsTo: 'padding' }, - ]); - ta.propertyNames = N.map(function (e) { - return e.name; - }); - for (var R = 0; R < N.length; R++) { - var L = N[R]; - N[L.name] = L; - } - for (var I = 0; I < A.length; I++) { - var B = A[I], - z = N[B.pointsTo], - V = { name: B.name, alias: !0, pointsTo: z }; - N.push(V), (N[B.name] = V); - } - })(), - (ta.getDefaultProperty = function (e) { - return this.getDefaultProperties()[e]; - }), - (ta.getDefaultProperties = function () { - var e = this._private; - if (null != e.defaultProperties) return e.defaultProperties; - for ( - var t = Q( - { - 'selection-box-color': '#ddd', - 'selection-box-opacity': 0.65, - 'selection-box-border-color': '#aaa', - 'selection-box-border-width': 1, - 'active-bg-color': 'black', - 'active-bg-opacity': 0.15, - 'active-bg-size': 30, - 'outside-texture-bg-color': '#000', - 'outside-texture-bg-opacity': 0.125, - events: 'yes', - 'text-events': 'no', - 'text-valign': 'top', - 'text-halign': 'center', - 'text-justification': 'auto', - 'line-height': 1, - color: '#000', - 'text-outline-color': '#000', - 'text-outline-width': 0, - 'text-outline-opacity': 1, - 'text-opacity': 1, - 'text-decoration': 'none', - 'text-transform': 'none', - 'text-wrap': 'none', - 'text-overflow-wrap': 'whitespace', - 'text-max-width': 9999, - 'text-background-color': '#000', - 'text-background-opacity': 0, - 'text-background-shape': 'rectangle', - 'text-background-padding': 0, - 'text-border-opacity': 0, - 'text-border-width': 0, - 'text-border-style': 'solid', - 'text-border-color': '#000', - 'font-family': 'Helvetica Neue, Helvetica, sans-serif', - 'font-style': 'normal', - 'font-weight': 'normal', - 'font-size': 16, - 'min-zoomed-font-size': 0, - 'text-rotation': 'none', - 'source-text-rotation': 'none', - 'target-text-rotation': 'none', - visibility: 'visible', - display: 'element', - opacity: 1, - 'z-compound-depth': 'auto', - 'z-index-compare': 'auto', - 'z-index': 0, - label: '', - 'text-margin-x': 0, - 'text-margin-y': 0, - 'source-label': '', - 'source-text-offset': 0, - 'source-text-margin-x': 0, - 'source-text-margin-y': 0, - 'target-label': '', - 'target-text-offset': 0, - 'target-text-margin-x': 0, - 'target-text-margin-y': 0, - 'overlay-opacity': 0, - 'overlay-color': '#000', - 'overlay-padding': 10, - 'overlay-shape': 'round-rectangle', - 'underlay-opacity': 0, - 'underlay-color': '#000', - 'underlay-padding': 10, - 'underlay-shape': 'round-rectangle', - 'transition-property': 'none', - 'transition-duration': 0, - 'transition-delay': 0, - 'transition-timing-function': 'linear', - 'background-blacken': 0, - 'background-color': '#999', - 'background-fill': 'solid', - 'background-opacity': 1, - 'background-image': 'none', - 'background-image-crossorigin': 'anonymous', - 'background-image-opacity': 1, - 'background-image-containment': 'inside', - 'background-image-smoothing': 'yes', - 'background-position-x': '50%', - 'background-position-y': '50%', - 'background-offset-x': 0, - 'background-offset-y': 0, - 'background-width-relative-to': 'include-padding', - 'background-height-relative-to': 'include-padding', - 'background-repeat': 'no-repeat', - 'background-fit': 'none', - 'background-clip': 'node', - 'background-width': 'auto', - 'background-height': 'auto', - 'border-color': '#000', - 'border-opacity': 1, - 'border-width': 0, - 'border-style': 'solid', - height: 30, - width: 30, - shape: 'ellipse', - 'shape-polygon-points': '-1, -1, 1, -1, 1, 1, -1, 1', - 'bounds-expansion': 0, - 'background-gradient-direction': 'to-bottom', - 'background-gradient-stop-colors': '#999', - 'background-gradient-stop-positions': '0%', - ghost: 'no', - 'ghost-offset-y': 0, - 'ghost-offset-x': 0, - 'ghost-opacity': 0, - padding: 0, - 'padding-relative-to': 'width', - position: 'origin', - 'compound-sizing-wrt-labels': 'include', - 'min-width': 0, - 'min-width-bias-left': 0, - 'min-width-bias-right': 0, - 'min-height': 0, - 'min-height-bias-top': 0, - 'min-height-bias-bottom': 0, - }, - { 'pie-size': '100%' }, - [ - { name: 'pie-{{i}}-background-color', value: 'black' }, - { name: 'pie-{{i}}-background-size', value: '0%' }, - { name: 'pie-{{i}}-background-opacity', value: 1 }, - ].reduce(function (e, t) { - for (var n = 1; n <= ta.pieBackgroundN; n++) { - var r = t.name.replace('{{i}}', n), - o = t.value; - e[r] = o; - } - return e; - }, {}), - { - 'line-style': 'solid', - 'line-color': '#999', - 'line-fill': 'solid', - 'line-cap': 'butt', - 'line-opacity': 1, - 'line-gradient-stop-colors': '#999', - 'line-gradient-stop-positions': '0%', - 'control-point-step-size': 40, - 'control-point-weights': 0.5, - 'segment-weights': 0.5, - 'segment-distances': 20, - 'taxi-turn': '50%', - 'taxi-turn-min-distance': 10, - 'taxi-direction': 'auto', - 'edge-distances': 'intersection', - 'curve-style': 'haystack', - 'haystack-radius': 0, - 'arrow-scale': 1, - 'loop-direction': '-45deg', - 'loop-sweep': '-90deg', - 'source-distance-from-node': 0, - 'target-distance-from-node': 0, - 'source-endpoint': 'outside-to-node', - 'target-endpoint': 'outside-to-node', - 'line-dash-pattern': [6, 3], - 'line-dash-offset': 0, - }, - [ - { name: 'arrow-shape', value: 'none' }, - { name: 'arrow-color', value: '#999' }, - { name: 'arrow-fill', value: 'filled' }, - ].reduce(function (e, t) { - return ( - ta.arrowPrefixes.forEach(function (n) { - var r = n + '-' + t.name, - o = t.value; - e[r] = o; - }), - e - ); - }, {}), - ), - n = {}, - r = 0; - r < this.properties.length; - r++ - ) { - var o = this.properties[r]; - if (!o.pointsTo) { - var i = o.name, - a = t[i], - s = this.parse(i, a); - n[i] = s; - } - } - return (e.defaultProperties = n), e.defaultProperties; - }), - (ta.addDefaultStylesheet = function () { - this.selector(':parent') - .css({ - shape: 'rectangle', - padding: 10, - 'background-color': '#eee', - 'border-color': '#ccc', - 'border-width': 1, - }) - .selector('edge') - .css({ width: 3 }) - .selector(':loop') - .css({ 'curve-style': 'bezier' }) - .selector('edge:compound') - .css({ - 'curve-style': 'bezier', - 'source-endpoint': 'outside-to-line', - 'target-endpoint': 'outside-to-line', - }) - .selector(':selected') - .css({ - 'background-color': '#0169D9', - 'line-color': '#0169D9', - 'source-arrow-color': '#0169D9', - 'target-arrow-color': '#0169D9', - 'mid-source-arrow-color': '#0169D9', - 'mid-target-arrow-color': '#0169D9', - }) - .selector(':parent:selected') - .css({ 'background-color': '#CCE1F9', 'border-color': '#aec8e5' }) - .selector(':active') - .css({ 'overlay-color': 'black', 'overlay-padding': 10, 'overlay-opacity': 0.25 }), - (this.defaultLength = this.length); - }); - var na = { - parse: function (e, t, n, r) { - var o = this; - if (T(t)) return o.parseImplWarn(e, t, n, r); - var i, - a = ge(e, '' + t, n ? 't' : 'f', 'mapping' === r || !0 === r || !1 === r || null == r ? 'dontcare' : r), - s = (o.propCache = o.propCache || []); - return ( - (i = s[a]) || (i = s[a] = o.parseImplWarn(e, t, n, r)), - (n || 'mapping' === r) && (i = Te(i)) && (i.value = Te(i.value)), - i - ); - }, - parseImplWarn: function (e, t, n, r) { - var o = this.parseImpl(e, t, n, r); - return ( - o || null == t || je('The style property `'.concat(e, ': ').concat(t, '` is invalid')), - !o || - ('width' !== o.name && 'height' !== o.name) || - 'label' !== t || - je('The style value of `label` is deprecated for `' + o.name + '`'), - o - ); - }, - }; - na.parseImpl = function (e, t, n, r) { - var o = this; - e = G(e); - var i = o.properties[e], - a = t, - s = o.types; - if (!i) return null; - if (void 0 === t) return null; - i.alias && ((i = i.pointsTo), (e = i.name)); - var l = j(t); - l && (t = t.trim()); - var c, - u, - d = i.type; - if (!d) return null; - if (n && ('' === t || null === t)) return { name: e, value: t, bypass: !0, deleteBypass: !0 }; - if (T(t)) return { name: e, value: t, strValue: 'fn', mapped: s.fn, bypass: n }; - if (!l || r || t.length < 7 || 'a' !== t[1]); - else { - if (t.length >= 7 && 'd' === t[0] && (c = new RegExp(s.data.regex).exec(t))) { - if (n) return !1; - var f = s.data; - return { name: e, value: c, strValue: '' + t, mapped: f, field: c[1], bypass: n }; - } - if (t.length >= 10 && 'm' === t[0] && (u = new RegExp(s.mapData.regex).exec(t))) { - if (n) return !1; - if (d.multiple) return !1; - var h = s.mapData; - if (!d.color && !d.number) return !1; - var p = this.parse(e, u[4]); - if (!p || p.mapped) return !1; - var v = this.parse(e, u[5]); - if (!v || v.mapped) return !1; - if (p.pfValue === v.pfValue || p.strValue === v.strValue) - return ( - je( - '`' + - e + - ': ' + - t + - '` is not a valid mapper because the output range is zero; converting to `' + - e + - ': ' + - p.strValue + - '`', - ), - this.parse(e, p.strValue) - ); - if (d.color) { - var g = p.value, - m = v.value; - if ( - !( - g[0] !== m[0] || - g[1] !== m[1] || - g[2] !== m[2] || - (g[3] !== m[3] && ((null != g[3] && 1 !== g[3]) || (null != m[3] && 1 !== m[3]))) - ) - ) - return !1; - } - return { - name: e, - value: u, - strValue: '' + t, - mapped: h, - field: u[1], - fieldMin: parseFloat(u[2]), - fieldMax: parseFloat(u[3]), - valueMin: p.value, - valueMax: v.value, - bypass: n, - }; - } - } - if (d.multiple && 'multiple' !== r) { - var y; - if (((y = l ? t.split(/\s+/) : D(t) ? t : [t]), d.evenMultiple && y.length % 2 != 0)) return null; - for (var b = [], x = [], w = [], E = '', k = !1, _ = 0; _ < y.length; _++) { - var S = o.parse(e, y[_], n, 'multiple'); - (k = k || j(S.value)), - b.push(S.value), - w.push(null != S.pfValue ? S.pfValue : S.value), - x.push(S.units), - (E += (_ > 0 ? ' ' : '') + S.strValue); - } - return d.validate && !d.validate(b, x) - ? null - : d.singleEnum && k - ? 1 === b.length && j(b[0]) - ? { name: e, value: b[0], strValue: b[0], bypass: n } - : null - : { name: e, value: b, pfValue: w, strValue: E, bypass: n, units: x }; - } - var P, - C, - N = function () { - for (var r = 0; r < d.enums.length; r++) { - if (d.enums[r] === t) return { name: e, value: t, strValue: '' + t, bypass: n }; - } - return null; - }; - if (d.number) { - var O, - A = 'px'; - if ((d.units && (O = d.units), d.implicitUnits && (A = d.implicitUnits), !d.unitless)) - if (l) { - var R = 'px|em' + (d.allowPercent ? '|\\%' : ''); - O && (R = O); - var L = t.match('^(' + q + ')(' + R + ')?$'); - L && ((t = L[1]), (O = L[2] || A)); - } else (O && !d.implicitUnits) || (O = A); - if (((t = parseFloat(t)), isNaN(t) && void 0 === d.enums)) return null; - if (isNaN(t) && void 0 !== d.enums) return (t = a), N(); - if (d.integer && (!M((C = t)) || Math.floor(C) !== C)) return null; - if ( - (void 0 !== d.min && (t < d.min || (d.strictMin && t === d.min))) || - (void 0 !== d.max && (t > d.max || (d.strictMax && t === d.max))) - ) - return null; - var I = { name: e, value: t, strValue: '' + t + (O || ''), units: O, bypass: n }; - return ( - d.unitless || ('px' !== O && 'em' !== O) - ? (I.pfValue = t) - : (I.pfValue = 'px' !== O && O ? this.getEmSizeInPixels() * t : t), - ('ms' !== O && 's' !== O) || (I.pfValue = 'ms' === O ? t : 1e3 * t), - ('deg' !== O && 'rad' !== O) || (I.pfValue = 'rad' === O ? t : ((P = t), (Math.PI * P) / 180)), - '%' === O && (I.pfValue = t / 100), - I - ); - } - if (d.propList) { - var B = [], - F = '' + t; - if ('none' === F); - else { - for (var z = F.split(/\s*,\s*|\s+/), V = 0; V < z.length; V++) { - var H = z[V].trim(); - o.properties[H] ? B.push(H) : je('`' + H + '` is not a valid property name'); - } - if (0 === B.length) return null; - } - return { name: e, value: B, strValue: 0 === B.length ? 'none' : B.join(' '), bypass: n }; - } - if (d.color) { - var W = J(t); - return W - ? { name: e, value: W, pfValue: W, strValue: 'rgb(' + W[0] + ',' + W[1] + ',' + W[2] + ')', bypass: n } - : null; - } - if (d.regex || d.regexes) { - if (d.enums) { - var U = N(); - if (U) return U; - } - for (var Y = d.regexes ? d.regexes : [d.regex], X = 0; X < Y.length; X++) { - var $ = new RegExp(Y[X]).exec(t); - if ($) return { name: e, value: d.singleRegexMatchValue ? $[1] : $, strValue: '' + t, bypass: n }; - } - return null; - } - return d.string ? { name: e, value: '' + t, strValue: '' + t, bypass: n } : d.enums ? N() : null; - }; - var ra = function e(t) { - if (!(this instanceof e)) return new e(t); - I(t) - ? ((this._private = { cy: t, coreStyle: {} }), (this.length = 0), this.resetToDefault()) - : Pe('A style must have a core reference'); - }, - oa = ra.prototype; - (oa.instanceString = function () { - return 'style'; - }), - (oa.clear = function () { - for (var e = this._private, t = e.cy.elements(), n = 0; n < this.length; n++) this[n] = void 0; - return ( - (this.length = 0), - (e.contextStyles = {}), - (e.propDiffs = {}), - this.cleanElements(t, !0), - t.forEach(function (e) { - var t = e[0]._private; - (t.styleDirty = !0), (t.appliedInitStyle = !1); - }), - this - ); - }), - (oa.resetToDefault = function () { - return this.clear(), this.addDefaultStylesheet(), this; - }), - (oa.core = function (e) { - return this._private.coreStyle[e] || this.getDefaultProperty(e); - }), - (oa.selector = function (e) { - var t = 'core' === e ? null : new qr(e), - n = this.length++; - return (this[n] = { selector: t, properties: [], mappedProperties: [], index: n }), this; - }), - (oa.css = function () { - var e = arguments; - if (1 === e.length) - for (var t = e[0], n = 0; n < this.properties.length; n++) { - var r = this.properties[n], - o = t[r.name]; - void 0 === o && (o = t[H(r.name)]), void 0 !== o && this.cssRule(r.name, o); - } - else 2 === e.length && this.cssRule(e[0], e[1]); - return this; - }), - (oa.style = oa.css), - (oa.cssRule = function (e, t) { - var n = this.parse(e, t); - if (n) { - var r = this.length - 1; - this[r].properties.push(n), - (this[r].properties[n.name] = n), - n.name.match(/pie-(\d+)-background-size/) && n.value && (this._private.hasPie = !0), - n.mapped && this[r].mappedProperties.push(n), - !this[r].selector && (this._private.coreStyle[n.name] = n); - } - return this; - }), - (oa.append = function (e) { - return B(e) ? e.appendToStyle(this) : D(e) ? this.appendFromJson(e) : j(e) && this.appendFromString(e), this; - }), - (ra.fromJson = function (e, t) { - var n = new ra(e); - return n.fromJson(t), n; - }), - (ra.fromString = function (e, t) { - return new ra(e).fromString(t); - }), - [Xi, Ki, Zi, Qi, Ji, ea, ta, na].forEach(function (e) { - Q(oa, e); - }), - (ra.types = oa.types), - (ra.properties = oa.properties), - (ra.propertyGroups = oa.propertyGroups), - (ra.propertyGroupNames = oa.propertyGroupNames), - (ra.propertyGroupKeys = oa.propertyGroupKeys); - var ia = { - style: function (e) { - e && this.setStyle(e).update(); - return this._private.style; - }, - setStyle: function (e) { - var t = this._private; - return ( - B(e) - ? (t.style = e.generateStyle(this)) - : D(e) - ? (t.style = ra.fromJson(this, e)) - : j(e) - ? (t.style = ra.fromString(this, e)) - : (t.style = ra(this)), - t.style - ); - }, - updateStyle: function () { - this.mutableElements().updateStyle(); - }, - }, - aa = { - autolock: function (e) { - return void 0 === e ? this._private.autolock : ((this._private.autolock = !!e), this); - }, - autoungrabify: function (e) { - return void 0 === e ? this._private.autoungrabify : ((this._private.autoungrabify = !!e), this); - }, - autounselectify: function (e) { - return void 0 === e ? this._private.autounselectify : ((this._private.autounselectify = !!e), this); - }, - selectionType: function (e) { - var t = this._private; - return ( - null == t.selectionType && (t.selectionType = 'single'), - void 0 === e ? t.selectionType : (('additive' !== e && 'single' !== e) || (t.selectionType = e), this) - ); - }, - panningEnabled: function (e) { - return void 0 === e ? this._private.panningEnabled : ((this._private.panningEnabled = !!e), this); - }, - userPanningEnabled: function (e) { - return void 0 === e ? this._private.userPanningEnabled : ((this._private.userPanningEnabled = !!e), this); - }, - zoomingEnabled: function (e) { - return void 0 === e ? this._private.zoomingEnabled : ((this._private.zoomingEnabled = !!e), this); - }, - userZoomingEnabled: function (e) { - return void 0 === e ? this._private.userZoomingEnabled : ((this._private.userZoomingEnabled = !!e), this); - }, - boxSelectionEnabled: function (e) { - return void 0 === e ? this._private.boxSelectionEnabled : ((this._private.boxSelectionEnabled = !!e), this); - }, - pan: function () { - var e, - t, - n, - r, - o, - i = arguments, - a = this._private.pan; - switch (i.length) { - case 0: - return a; - case 1: - if (j(i[0])) return a[(e = i[0])]; - if (N(i[0])) { - if (!this._private.panningEnabled) return this; - (r = (n = i[0]).x), (o = n.y), M(r) && (a.x = r), M(o) && (a.y = o), this.emit('pan viewport'); - } - break; - case 2: - if (!this._private.panningEnabled) return this; - (t = i[1]), ('x' !== (e = i[0]) && 'y' !== e) || !M(t) || (a[e] = t), this.emit('pan viewport'); - } - return this.notify('viewport'), this; - }, - panBy: function (e, t) { - var n, - r, - o, - i, - a, - s = arguments, - l = this._private.pan; - if (!this._private.panningEnabled) return this; - switch (s.length) { - case 1: - N(e) && - ((i = (o = s[0]).x), (a = o.y), M(i) && (l.x += i), M(a) && (l.y += a), this.emit('pan viewport')); - break; - case 2: - (r = t), ('x' !== (n = e) && 'y' !== n) || !M(r) || (l[n] += r), this.emit('pan viewport'); - } - return this.notify('viewport'), this; - }, - fit: function (e, t) { - var n = this.getFitViewport(e, t); - if (n) { - var r = this._private; - (r.zoom = n.zoom), (r.pan = n.pan), this.emit('pan zoom viewport'), this.notify('viewport'); - } - return this; - }, - getFitViewport: function (e, t) { - if ( - (M(e) && void 0 === t && ((t = e), (e = void 0)), - this._private.panningEnabled && this._private.zoomingEnabled) - ) { - var n, r; - if (j(e)) { - var o = e; - e = this.$(o); - } else if (N((r = e)) && M(r.x1) && M(r.x2) && M(r.y1) && M(r.y2)) { - var i = e; - ((n = { x1: i.x1, y1: i.y1, x2: i.x2, y2: i.y2 }).w = n.x2 - n.x1), (n.h = n.y2 - n.y1); - } else A(e) || (e = this.mutableElements()); - if (!A(e) || !e.empty()) { - n = n || e.boundingBox(); - var a, - s = this.width(), - l = this.height(); - if ( - ((t = M(t) ? t : 0), - !isNaN(s) && !isNaN(l) && s > 0 && l > 0 && !isNaN(n.w) && !isNaN(n.h) && n.w > 0 && n.h > 0) - ) - return { - zoom: (a = - (a = - (a = Math.min((s - 2 * t) / n.w, (l - 2 * t) / n.h)) > this._private.maxZoom - ? this._private.maxZoom - : a) < this._private.minZoom - ? this._private.minZoom - : a), - pan: { x: (s - a * (n.x1 + n.x2)) / 2, y: (l - a * (n.y1 + n.y2)) / 2 }, - }; - } - } - }, - zoomRange: function (e, t) { - var n = this._private; - if (null == t) { - var r = e; - (e = r.min), (t = r.max); - } - return ( - M(e) && M(t) && e <= t - ? ((n.minZoom = e), (n.maxZoom = t)) - : M(e) && void 0 === t && e <= n.maxZoom - ? (n.minZoom = e) - : M(t) && void 0 === e && t >= n.minZoom && (n.maxZoom = t), - this - ); - }, - minZoom: function (e) { - return void 0 === e ? this._private.minZoom : this.zoomRange({ min: e }); - }, - maxZoom: function (e) { - return void 0 === e ? this._private.maxZoom : this.zoomRange({ max: e }); - }, - getZoomedViewport: function (e) { - var t, - n, - r = this._private, - o = r.pan, - i = r.zoom, - a = !1; - if ( - (r.zoomingEnabled || (a = !0), - M(e) - ? (n = e) - : N(e) && - ((n = e.level), - null != e.position - ? (t = rt(e.position, i, o)) - : null != e.renderedPosition && (t = e.renderedPosition), - null == t || r.panningEnabled || (a = !0)), - (n = (n = n > r.maxZoom ? r.maxZoom : n) < r.minZoom ? r.minZoom : n), - a || !M(n) || n === i || (null != t && (!M(t.x) || !M(t.y)))) - ) - return null; - if (null != t) { - var s = o, - l = i, - c = n; - return { - zoomed: !0, - panned: !0, - zoom: c, - pan: { x: (-c / l) * (t.x - s.x) + t.x, y: (-c / l) * (t.y - s.y) + t.y }, - }; - } - return { zoomed: !0, panned: !1, zoom: n, pan: o }; - }, - zoom: function (e) { - if (void 0 === e) return this._private.zoom; - var t = this.getZoomedViewport(e), - n = this._private; - return null != t && t.zoomed - ? ((n.zoom = t.zoom), - t.panned && ((n.pan.x = t.pan.x), (n.pan.y = t.pan.y)), - this.emit('zoom' + (t.panned ? ' pan' : '') + ' viewport'), - this.notify('viewport'), - this) - : this; - }, - viewport: function (e) { - var t = this._private, - n = !0, - r = !0, - o = [], - i = !1, - a = !1; - if (!e) return this; - if ((M(e.zoom) || (n = !1), N(e.pan) || (r = !1), !n && !r)) return this; - if (n) { - var s = e.zoom; - s < t.minZoom || s > t.maxZoom || !t.zoomingEnabled ? (i = !0) : ((t.zoom = s), o.push('zoom')); - } - if (r && (!i || !e.cancelOnFailedZoom) && t.panningEnabled) { - var l = e.pan; - M(l.x) && ((t.pan.x = l.x), (a = !1)), M(l.y) && ((t.pan.y = l.y), (a = !1)), a || o.push('pan'); - } - return o.length > 0 && (o.push('viewport'), this.emit(o.join(' ')), this.notify('viewport')), this; - }, - center: function (e) { - var t = this.getCenterPan(e); - return t && ((this._private.pan = t), this.emit('pan viewport'), this.notify('viewport')), this; - }, - getCenterPan: function (e, t) { - if (this._private.panningEnabled) { - if (j(e)) { - var n = e; - e = this.mutableElements().filter(n); - } else A(e) || (e = this.mutableElements()); - if (0 !== e.length) { - var r = e.boundingBox(), - o = this.width(), - i = this.height(); - return { - x: (o - (t = void 0 === t ? this._private.zoom : t) * (r.x1 + r.x2)) / 2, - y: (i - t * (r.y1 + r.y2)) / 2, - }; - } - } - }, - reset: function () { - return this._private.panningEnabled && this._private.zoomingEnabled - ? (this.viewport({ pan: { x: 0, y: 0 }, zoom: 1 }), this) - : this; - }, - invalidateSize: function () { - this._private.sizeCache = null; - }, - size: function () { - var e, - t, - n = this._private, - r = n.container; - return (n.sizeCache = - n.sizeCache || - (r - ? ((e = w.getComputedStyle(r)), - (t = function (t) { - return parseFloat(e.getPropertyValue(t)); - }), - { - width: r.clientWidth - t('padding-left') - t('padding-right'), - height: r.clientHeight - t('padding-top') - t('padding-bottom'), - }) - : { width: 1, height: 1 })); - }, - width: function () { - return this.size().width; - }, - height: function () { - return this.size().height; - }, - extent: function () { - var e = this._private.pan, - t = this._private.zoom, - n = this.renderedExtent(), - r = { x1: (n.x1 - e.x) / t, x2: (n.x2 - e.x) / t, y1: (n.y1 - e.y) / t, y2: (n.y2 - e.y) / t }; - return (r.w = r.x2 - r.x1), (r.h = r.y2 - r.y1), r; - }, - renderedExtent: function () { - var e = this.width(), - t = this.height(); - return { x1: 0, y1: 0, x2: e, y2: t, w: e, h: t }; - }, - multiClickDebounceTime: function (e) { - return e ? ((this._private.multiClickDebounceTime = e), this) : this._private.multiClickDebounceTime; - }, - }; - (aa.centre = aa.center), (aa.autolockNodes = aa.autolock), (aa.autoungrabifyNodes = aa.autoungrabify); - var sa = { - data: lr.data({ - field: 'data', - bindingEvent: 'data', - allowBinding: !0, - allowSetting: !0, - settingEvent: 'data', - settingTriggersEvent: !0, - triggerFnName: 'trigger', - allowGetting: !0, - updateStyle: !0, - }), - removeData: lr.removeData({ - field: 'data', - event: 'data', - triggerFnName: 'trigger', - triggerEvent: !0, - updateStyle: !0, - }), - scratch: lr.data({ - field: 'scratch', - bindingEvent: 'scratch', - allowBinding: !0, - allowSetting: !0, - settingEvent: 'scratch', - settingTriggersEvent: !0, - triggerFnName: 'trigger', - allowGetting: !0, - updateStyle: !0, - }), - removeScratch: lr.removeData({ - field: 'scratch', - event: 'scratch', - triggerFnName: 'trigger', - triggerEvent: !0, - updateStyle: !0, - }), - }; - (sa.attr = sa.data), (sa.removeAttr = sa.removeData); - var la = function (e) { - var t = this, - n = (e = Q({}, e)).container; - n && !O(n) && O(n[0]) && (n = n[0]); - var r = n ? n._cyreg : null; - (r = r || {}) && r.cy && (r.cy.destroy(), (r = {})); - var o = (r.readies = r.readies || []); - n && (n._cyreg = r), (r.cy = t); - var i = void 0 !== w && void 0 !== n && !e.headless, - a = e; - (a.layout = Q({ name: i ? 'grid' : 'null' }, a.layout)), - (a.renderer = Q({ name: i ? 'canvas' : 'null' }, a.renderer)); - var s = function (e, t, n) { - return void 0 !== t ? t : void 0 !== n ? n : e; - }, - l = (this._private = { - container: n, - ready: !1, - options: a, - elements: new _i(this), - listeners: [], - aniEles: new _i(this), - data: a.data || {}, - scratch: {}, - layout: null, - renderer: null, - destroyed: !1, - notificationsEnabled: !0, - minZoom: 1e-50, - maxZoom: 1e50, - zoomingEnabled: s(!0, a.zoomingEnabled), - userZoomingEnabled: s(!0, a.userZoomingEnabled), - panningEnabled: s(!0, a.panningEnabled), - userPanningEnabled: s(!0, a.userPanningEnabled), - boxSelectionEnabled: s(!0, a.boxSelectionEnabled), - autolock: s(!1, a.autolock, a.autolockNodes), - autoungrabify: s(!1, a.autoungrabify, a.autoungrabifyNodes), - autounselectify: s(!1, a.autounselectify), - styleEnabled: void 0 === a.styleEnabled ? i : a.styleEnabled, - zoom: M(a.zoom) ? a.zoom : 1, - pan: { x: N(a.pan) && M(a.pan.x) ? a.pan.x : 0, y: N(a.pan) && M(a.pan.y) ? a.pan.y : 0 }, - animation: { current: [], queue: [] }, - hasCompoundNodes: !1, - multiClickDebounceTime: s(250, a.multiClickDebounceTime), - }); - this.createEmitter(), this.selectionType(a.selectionType), this.zoomRange({ min: a.minZoom, max: a.maxZoom }); - l.styleEnabled && t.setStyle([]); - var c = Q({}, a, a.renderer); - t.initRenderer(c); - !(function (e, t) { - if (e.some(z)) return nr.all(e).then(t); - t(e); - })([a.style, a.elements], function (e) { - var n = e[0], - i = e[1]; - l.styleEnabled && t.style().append(n), - (function (e, n, r) { - t.notifications(!1); - var o = t.mutableElements(); - o.length > 0 && o.remove(), - null != e && (N(e) || D(e)) && t.add(e), - t - .one('layoutready', function (e) { - t.notifications(!0), t.emit(e), t.one('load', n), t.emitAndNotify('load'); - }) - .one('layoutstop', function () { - t.one('done', r), t.emit('done'); - }); - var i = Q({}, t._private.options.layout); - (i.eles = t.elements()), t.layout(i).run(); - })( - i, - function () { - t.startAnimationLoop(), (l.ready = !0), T(a.ready) && t.on('ready', a.ready); - for (var e = 0; e < o.length; e++) { - var n = o[e]; - t.on('ready', n); - } - r && (r.readies = []), t.emit('ready'); - }, - a.done, - ); - }); - }, - ca = la.prototype; - Q(ca, { - instanceString: function () { - return 'core'; - }, - isReady: function () { - return this._private.ready; - }, - destroyed: function () { - return this._private.destroyed; - }, - ready: function (e) { - return this.isReady() ? this.emitter().emit('ready', [], e) : this.on('ready', e), this; - }, - destroy: function () { - var e = this; - if (!e.destroyed()) - return e.stopAnimationLoop(), e.destroyRenderer(), this.emit('destroy'), (e._private.destroyed = !0), e; - }, - hasElementWithId: function (e) { - return this._private.elements.hasElementWithId(e); - }, - getElementById: function (e) { - return this._private.elements.getElementById(e); - }, - hasCompoundNodes: function () { - return this._private.hasCompoundNodes; - }, - headless: function () { - return this._private.renderer.isHeadless(); - }, - styleEnabled: function () { - return this._private.styleEnabled; - }, - addToPool: function (e) { - return this._private.elements.merge(e), this; - }, - removeFromPool: function (e) { - return this._private.elements.unmerge(e), this; - }, - container: function () { - return this._private.container || null; - }, - mount: function (e) { - if (null != e) { - var t = this, - n = t._private, - r = n.options; - return ( - !O(e) && O(e[0]) && (e = e[0]), - t.stopAnimationLoop(), - t.destroyRenderer(), - (n.container = e), - (n.styleEnabled = !0), - t.invalidateSize(), - t.initRenderer(Q({}, r, r.renderer, { name: 'null' === r.renderer.name ? 'canvas' : r.renderer.name })), - t.startAnimationLoop(), - t.style(r.style), - t.emit('mount'), - t - ); - } - }, - unmount: function () { - var e = this; - return e.stopAnimationLoop(), e.destroyRenderer(), e.initRenderer({ name: 'null' }), e.emit('unmount'), e; - }, - options: function () { - return Te(this._private.options); - }, - json: function (e) { - var t = this, - n = t._private, - r = t.mutableElements(); - if (N(e)) { - if ((t.startBatch(), e.elements)) { - var o = {}, - i = function (e, n) { - for (var r = [], i = [], a = 0; a < e.length; a++) { - var s = e[a]; - if (s.data.id) { - var l = '' + s.data.id, - c = t.getElementById(l); - (o[l] = !0), - 0 !== c.length ? i.push({ ele: c, json: s }) : n ? ((s.group = n), r.push(s)) : r.push(s); - } else je('cy.json() cannot handle elements without an ID attribute'); - } - t.add(r); - for (var u = 0; u < i.length; u++) { - var d = i[u], - f = d.ele, - h = d.json; - f.json(h); - } - }; - if (D(e.elements)) i(e.elements); - else - for (var a = ['nodes', 'edges'], s = 0; s < a.length; s++) { - var l = a[s], - c = e.elements[l]; - D(c) && i(c, l); - } - var u = t.collection(); - r - .filter(function (e) { - return !o[e.id()]; - }) - .forEach(function (e) { - e.isParent() ? u.merge(e) : e.remove(); - }), - u.forEach(function (e) { - return e.children().move({ parent: null }); - }), - u.forEach(function (e) { - return (function (e) { - return t.getElementById(e.id()); - })(e).remove(); - }); - } - e.style && t.style(e.style), - null != e.zoom && e.zoom !== n.zoom && t.zoom(e.zoom), - e.pan && ((e.pan.x === n.pan.x && e.pan.y === n.pan.y) || t.pan(e.pan)), - e.data && t.data(e.data); - for ( - var d = [ - 'minZoom', - 'maxZoom', - 'zoomingEnabled', - 'userZoomingEnabled', - 'panningEnabled', - 'userPanningEnabled', - 'boxSelectionEnabled', - 'autolock', - 'autoungrabify', - 'autounselectify', - 'multiClickDebounceTime', - ], - f = 0; - f < d.length; - f++ - ) { - var h = d[f]; - null != e[h] && t[h](e[h]); - } - return t.endBatch(), this; - } - var p = {}; - !!e - ? (p.elements = this.elements().map(function (e) { - return e.json(); - })) - : ((p.elements = {}), - r.forEach(function (e) { - var t = e.group(); - p.elements[t] || (p.elements[t] = []), p.elements[t].push(e.json()); - })), - this._private.styleEnabled && (p.style = t.style().json()), - (p.data = Te(t.data())); - var v = n.options; - return ( - (p.zoomingEnabled = n.zoomingEnabled), - (p.userZoomingEnabled = n.userZoomingEnabled), - (p.zoom = n.zoom), - (p.minZoom = n.minZoom), - (p.maxZoom = n.maxZoom), - (p.panningEnabled = n.panningEnabled), - (p.userPanningEnabled = n.userPanningEnabled), - (p.pan = Te(n.pan)), - (p.boxSelectionEnabled = n.boxSelectionEnabled), - (p.renderer = Te(v.renderer)), - (p.hideEdgesOnViewport = v.hideEdgesOnViewport), - (p.textureOnViewport = v.textureOnViewport), - (p.wheelSensitivity = v.wheelSensitivity), - (p.motionBlur = v.motionBlur), - (p.multiClickDebounceTime = v.multiClickDebounceTime), - p - ); - }, - }), - (ca.$id = ca.getElementById), - [Pi, Bi, Vi, Gi, Hi, Wi, qi, Yi, ia, aa, sa].forEach(function (e) { - Q(ca, e); - }); - var ua = { - fit: !0, - directed: !1, - padding: 30, - circle: !1, - grid: !1, - spacingFactor: 1.75, - boundingBox: void 0, - avoidOverlap: !0, - nodeDimensionsIncludeLabels: !1, - roots: void 0, - maximal: !1, - depthSort: void 0, - animate: !1, - animationDuration: 500, - animationEasing: void 0, - animateFilter: function (e, t) { - return !0; - }, - ready: void 0, - stop: void 0, - transform: function (e, t) { - return t; - }, - }, - da = function (e) { - return e.scratch('breadthfirst'); - }, - fa = function (e, t) { - return e.scratch('breadthfirst', t); - }; - function ha(e) { - this.options = Q({}, ua, e); - } - ha.prototype.run = function () { - var e, - t = this.options, - n = t, - r = t.cy, - o = n.eles, - i = o.nodes().filter(function (e) { - return !e.isParent(); - }), - a = o, - s = n.directed, - l = n.maximal || n.maximalAdjustments > 0, - c = vt(n.boundingBox ? n.boundingBox : { x1: 0, y1: 0, w: r.width(), h: r.height() }); - if (A(n.roots)) e = n.roots; - else if (D(n.roots)) { - for (var u = [], d = 0; d < n.roots.length; d++) { - var f = n.roots[d], - h = r.getElementById(f); - u.push(h); - } - e = r.collection(u); - } else if (j(n.roots)) e = r.$(n.roots); - else if (s) e = i.roots(); - else { - var p = o.components(); - e = r.collection(); - for ( - var v = function (t) { - var n = p[t], - r = n.maxDegree(!1), - o = n.filter(function (e) { - return e.degree(!1) === r; - }); - e = e.add(o); - }, - g = 0; - g < p.length; - g++ - ) - v(g); - } - var m = [], - y = {}, - b = function (e, t) { - null == m[t] && (m[t] = []); - var n = m[t].length; - m[t].push(e), fa(e, { index: n, depth: t }); - }; - a.bfs({ - roots: e, - directed: n.directed, - visit: function (e, t, n, r, o) { - var i = e[0], - a = i.id(); - b(i, o), (y[a] = !0); - }, - }); - for (var x = [], w = 0; w < i.length; w++) { - var E = i[w]; - y[E.id()] || x.push(E); - } - var k = function (e) { - for (var t = m[e], n = 0; n < t.length; n++) { - var r = t[n]; - null != r ? fa(r, { depth: e, index: n }) : (t.splice(n, 1), n--); - } - }, - _ = function () { - for (var e = 0; e < m.length; e++) k(e); - }, - S = function (e, t) { - for ( - var n = da(e), - r = e.incomers().filter(function (e) { - return e.isNode() && o.has(e); - }), - i = -1, - a = e.id(), - s = 0; - s < r.length; - s++ - ) { - var l = r[s], - c = da(l); - i = Math.max(i, c.depth); - } - return ( - n.depth <= i && - (t[a] - ? null - : ((function (e, t) { - var n = da(e), - r = n.depth, - o = n.index; - (m[r][o] = null), b(e, t); - })(e, i + 1), - (t[a] = !0), - !0)) - ); - }; - if (s && l) { - var P = [], - C = {}, - T = function (e) { - return P.push(e); - }; - for ( - i.forEach(function (e) { - return P.push(e); - }); - P.length > 0; - - ) { - var N = P.shift(), - M = S(N, C); - if (M) - N.outgoers() - .filter(function (e) { - return e.isNode() && o.has(e); - }) - .forEach(T); - else if (null === M) { - je( - 'Detected double maximal shift for node `' + - N.id() + - '`. Bailing maximal adjustment due to cycle. Use `options.maximal: true` only on DAGs.', - ); - break; - } - } - } - _(); - var O = 0; - if (n.avoidOverlap) - for (var R = 0; R < i.length; R++) { - var L = i[R].layoutDimensions(n), - I = L.w, - B = L.h; - O = Math.max(O, I, B); - } - var F = {}, - z = function (e) { - if (F[e.id()]) return F[e.id()]; - for (var t = da(e).depth, n = e.neighborhood(), r = 0, o = 0, a = 0; a < n.length; a++) { - var s = n[a]; - if (!s.isEdge() && !s.isParent() && i.has(s)) { - var l = da(s); - if (null != l) { - var c = l.index, - u = l.depth; - if (null != c && null != u) { - var d = m[u].length; - u < t && ((r += c / d), o++); - } - } - } - } - return (r /= o = Math.max(1, o)), 0 === o && (r = 0), (F[e.id()] = r), r; - }, - V = function (e, t) { - var n = z(e) - z(t); - return 0 === n ? Z(e.id(), t.id()) : n; - }; - void 0 !== n.depthSort && (V = n.depthSort); - for (var G = 0; G < m.length; G++) m[G].sort(V), k(G); - for (var H = [], W = 0; W < x.length; W++) H.push(x[W]); - m.unshift(H), _(); - for (var U = 0, q = 0; q < m.length; q++) U = Math.max(m[q].length, U); - var Y = c.x1 + c.w / 2, - X = c.x1 + c.h / 2, - $ = m.reduce(function (e, t) { - return Math.max(e, t.length); - }, 0); - return ( - o.nodes().layoutPositions(this, n, function (e) { - var t = da(e), - r = t.depth, - o = t.index, - i = m[r].length, - a = Math.max(c.w / ((n.grid ? $ : i) + 1), O), - s = Math.max(c.h / (m.length + 1), O), - l = Math.min(c.w / 2 / m.length, c.h / 2 / m.length); - if (((l = Math.max(l, O)), n.circle)) { - var u = l * r + l - (m.length > 0 && m[0].length <= 3 ? l / 2 : 0), - d = ((2 * Math.PI) / m[r].length) * o; - return 0 === r && 1 === m[0].length && (u = 1), { x: Y + u * Math.cos(d), y: X + u * Math.sin(d) }; - } - return { x: Y + (o + 1 - (i + 1) / 2) * a, y: (r + 1) * s }; - }), - this - ); - }; - var pa = { - fit: !0, - padding: 30, - boundingBox: void 0, - avoidOverlap: !0, - nodeDimensionsIncludeLabels: !1, - spacingFactor: void 0, - radius: void 0, - startAngle: 1.5 * Math.PI, - sweep: void 0, - clockwise: !0, - sort: void 0, - animate: !1, - animationDuration: 500, - animationEasing: void 0, - animateFilter: function (e, t) { - return !0; - }, - ready: void 0, - stop: void 0, - transform: function (e, t) { - return t; - }, - }; - function va(e) { - this.options = Q({}, pa, e); - } - va.prototype.run = function () { - var e = this.options, - t = e, - n = e.cy, - r = t.eles, - o = void 0 !== t.counterclockwise ? !t.counterclockwise : t.clockwise, - i = r.nodes().not(':parent'); - t.sort && (i = i.sort(t.sort)); - for ( - var a, - s = vt(t.boundingBox ? t.boundingBox : { x1: 0, y1: 0, w: n.width(), h: n.height() }), - l = s.x1 + s.w / 2, - c = s.y1 + s.h / 2, - u = (void 0 === t.sweep ? 2 * Math.PI - (2 * Math.PI) / i.length : t.sweep) / Math.max(1, i.length - 1), - d = 0, - f = 0; - f < i.length; - f++ - ) { - var h = i[f].layoutDimensions(t), - p = h.w, - v = h.h; - d = Math.max(d, p, v); - } - if ( - ((a = M(t.radius) ? t.radius : i.length <= 1 ? 0 : Math.min(s.h, s.w) / 2 - d), - i.length > 1 && t.avoidOverlap) - ) { - d *= 1.75; - var g = Math.cos(u) - Math.cos(0), - m = Math.sin(u) - Math.sin(0), - y = Math.sqrt((d * d) / (g * g + m * m)); - a = Math.max(y, a); - } - return ( - r.nodes().layoutPositions(this, t, function (e, n) { - var r = t.startAngle + n * u * (o ? 1 : -1), - i = a * Math.cos(r), - s = a * Math.sin(r); - return { x: l + i, y: c + s }; - }), - this - ); - }; - var ga, - ma = { - fit: !0, - padding: 30, - startAngle: 1.5 * Math.PI, - sweep: void 0, - clockwise: !0, - equidistant: !1, - minNodeSpacing: 10, - boundingBox: void 0, - avoidOverlap: !0, - nodeDimensionsIncludeLabels: !1, - height: void 0, - width: void 0, - spacingFactor: void 0, - concentric: function (e) { - return e.degree(); - }, - levelWidth: function (e) { - return e.maxDegree() / 4; - }, - animate: !1, - animationDuration: 500, - animationEasing: void 0, - animateFilter: function (e, t) { - return !0; - }, - ready: void 0, - stop: void 0, - transform: function (e, t) { - return t; - }, - }; - function ya(e) { - this.options = Q({}, ma, e); - } - ya.prototype.run = function () { - for ( - var e = this.options, - t = e, - n = void 0 !== t.counterclockwise ? !t.counterclockwise : t.clockwise, - r = e.cy, - o = t.eles, - i = o.nodes().not(':parent'), - a = vt(t.boundingBox ? t.boundingBox : { x1: 0, y1: 0, w: r.width(), h: r.height() }), - s = a.x1 + a.w / 2, - l = a.y1 + a.h / 2, - c = [], - u = 0, - d = 0; - d < i.length; - d++ - ) { - var f, - h = i[d]; - (f = t.concentric(h)), c.push({ value: f, node: h }), (h._private.scratch.concentric = f); - } - i.updateStyle(); - for (var p = 0; p < i.length; p++) { - var v = i[p].layoutDimensions(t); - u = Math.max(u, v.w, v.h); - } - c.sort(function (e, t) { - return t.value - e.value; - }); - for (var g = t.levelWidth(i), m = [[]], y = m[0], b = 0; b < c.length; b++) { - var x = c[b]; - if (y.length > 0) Math.abs(y[0].value - x.value) >= g && ((y = []), m.push(y)); - y.push(x); - } - var w = u + t.minNodeSpacing; - if (!t.avoidOverlap) { - var E = m.length > 0 && m[0].length > 1, - k = (Math.min(a.w, a.h) / 2 - w) / (m.length + E ? 1 : 0); - w = Math.min(w, k); - } - for (var _ = 0, S = 0; S < m.length; S++) { - var P = m[S], - C = void 0 === t.sweep ? 2 * Math.PI - (2 * Math.PI) / P.length : t.sweep, - j = (P.dTheta = C / Math.max(1, P.length - 1)); - if (P.length > 1 && t.avoidOverlap) { - var T = Math.cos(j) - Math.cos(0), - D = Math.sin(j) - Math.sin(0), - N = Math.sqrt((w * w) / (T * T + D * D)); - _ = Math.max(N, _); - } - (P.r = _), (_ += w); - } - if (t.equidistant) { - for (var M = 0, O = 0, A = 0; A < m.length; A++) { - var R = m[A].r - O; - M = Math.max(M, R); - } - O = 0; - for (var L = 0; L < m.length; L++) { - var I = m[L]; - 0 === L && (O = I.r), (I.r = O), (O += M); - } - } - for (var B = {}, F = 0; F < m.length; F++) - for (var z = m[F], V = z.dTheta, G = z.r, H = 0; H < z.length; H++) { - var W = z[H], - U = t.startAngle + (n ? 1 : -1) * V * H, - q = { x: s + G * Math.cos(U), y: l + G * Math.sin(U) }; - B[W.node.id()] = q; - } - return ( - o.nodes().layoutPositions(this, t, function (e) { - var t = e.id(); - return B[t]; - }), - this - ); - }; - var ba = { - ready: function () {}, - stop: function () {}, - animate: !0, - animationEasing: void 0, - animationDuration: void 0, - animateFilter: function (e, t) { - return !0; - }, - animationThreshold: 250, - refresh: 20, - fit: !0, - padding: 30, - boundingBox: void 0, - nodeDimensionsIncludeLabels: !1, - randomize: !1, - componentSpacing: 40, - nodeRepulsion: function (e) { - return 2048; - }, - nodeOverlap: 4, - idealEdgeLength: function (e) { - return 32; - }, - edgeElasticity: function (e) { - return 32; - }, - nestingFactor: 1.2, - gravity: 1, - numIter: 1e3, - initialTemp: 1e3, - coolingFactor: 0.99, - minTemp: 1, - }; - function xa(e) { - (this.options = Q({}, ba, e)), (this.options.layout = this); - } - (xa.prototype.run = function () { - var e = this.options, - t = e.cy, - n = this; - (n.stopped = !1), - (!0 !== e.animate && !1 !== e.animate) || n.emit({ type: 'layoutstart', layout: n }), - (ga = !0 === e.debug); - var r = wa(t, n, e); - ga && undefined(r), e.randomize && _a(r); - var o = se(), - i = function () { - Pa(r, t, e), !0 === e.fit && t.fit(e.padding); - }, - a = function (t) { - return ( - !(n.stopped || t >= e.numIter) && - (Ca(r, e), (r.temperature = r.temperature * e.coolingFactor), !(r.temperature < e.minTemp)) - ); - }, - s = function () { - if (!0 === e.animate || !1 === e.animate) - i(), n.one('layoutstop', e.stop), n.emit({ type: 'layoutstop', layout: n }); - else { - var t = e.eles.nodes(), - o = Sa(r, e, t); - t.layoutPositions(n, e, o); - } - }, - l = 0, - c = !0; - if (!0 === e.animate) { - !(function t() { - for (var n = 0; c && n < e.refresh; ) (c = a(l)), l++, n++; - c ? (se() - o >= e.animationThreshold && i(), ae(t)) : (Fa(r, e), s()); - })(); - } else { - for (; c; ) (c = a(l)), l++; - Fa(r, e), s(); - } - return this; - }), - (xa.prototype.stop = function () { - return (this.stopped = !0), this.thread && this.thread.stop(), this.emit('layoutstop'), this; - }), - (xa.prototype.destroy = function () { - return this.thread && this.thread.stop(), this; - }); - var wa = function (e, t, n) { - for ( - var r = n.eles.edges(), - o = n.eles.nodes(), - i = { - isCompound: e.hasCompoundNodes(), - layoutNodes: [], - idToIndex: {}, - nodeSize: o.size(), - graphSet: [], - indexToGraph: [], - layoutEdges: [], - edgeSize: r.size(), - temperature: n.initialTemp, - clientWidth: e.width(), - clientHeight: e.width(), - boundingBox: vt(n.boundingBox ? n.boundingBox : { x1: 0, y1: 0, w: e.width(), h: e.height() }), - }, - a = n.eles.components(), - s = {}, - l = 0; - l < a.length; - l++ - ) - for (var c = a[l], u = 0; u < c.length; u++) { - s[c[u].id()] = l; - } - for (l = 0; l < i.nodeSize; l++) { - var d = (g = o[l]).layoutDimensions(n); - ((O = {}).isLocked = g.locked()), - (O.id = g.data('id')), - (O.parentId = g.data('parent')), - (O.cmptId = s[g.id()]), - (O.children = []), - (O.positionX = g.position('x')), - (O.positionY = g.position('y')), - (O.offsetX = 0), - (O.offsetY = 0), - (O.height = d.w), - (O.width = d.h), - (O.maxX = O.positionX + O.width / 2), - (O.minX = O.positionX - O.width / 2), - (O.maxY = O.positionY + O.height / 2), - (O.minY = O.positionY - O.height / 2), - (O.padLeft = parseFloat(g.style('padding'))), - (O.padRight = parseFloat(g.style('padding'))), - (O.padTop = parseFloat(g.style('padding'))), - (O.padBottom = parseFloat(g.style('padding'))), - (O.nodeRepulsion = T(n.nodeRepulsion) ? n.nodeRepulsion(g) : n.nodeRepulsion), - i.layoutNodes.push(O), - (i.idToIndex[O.id] = l); - } - var f = [], - h = 0, - p = -1, - v = []; - for (l = 0; l < i.nodeSize; l++) { - var g, - m = (g = i.layoutNodes[l]).parentId; - null != m ? i.layoutNodes[i.idToIndex[m]].children.push(g.id) : ((f[++p] = g.id), v.push(g.id)); - } - for (i.graphSet.push(v); h <= p; ) { - var y = f[h++], - b = i.idToIndex[y], - x = i.layoutNodes[b].children; - if (x.length > 0) { - i.graphSet.push(x); - for (l = 0; l < x.length; l++) f[++p] = x[l]; - } - } - for (l = 0; l < i.graphSet.length; l++) { - var w = i.graphSet[l]; - for (u = 0; u < w.length; u++) { - var E = i.idToIndex[w[u]]; - i.indexToGraph[E] = l; - } - } - for (l = 0; l < i.edgeSize; l++) { - var k = r[l], - _ = {}; - (_.id = k.data('id')), (_.sourceId = k.data('source')), (_.targetId = k.data('target')); - var S = T(n.idealEdgeLength) ? n.idealEdgeLength(k) : n.idealEdgeLength, - P = T(n.edgeElasticity) ? n.edgeElasticity(k) : n.edgeElasticity, - C = i.idToIndex[_.sourceId], - j = i.idToIndex[_.targetId]; - if (i.indexToGraph[C] != i.indexToGraph[j]) { - for ( - var D = Ea(_.sourceId, _.targetId, i), N = i.graphSet[D], M = 0, O = i.layoutNodes[C]; - -1 === N.indexOf(O.id); - - ) - (O = i.layoutNodes[i.idToIndex[O.parentId]]), M++; - for (O = i.layoutNodes[j]; -1 === N.indexOf(O.id); ) (O = i.layoutNodes[i.idToIndex[O.parentId]]), M++; - S *= M * n.nestingFactor; - } - (_.idealLength = S), (_.elasticity = P), i.layoutEdges.push(_); - } - return i; - }, - Ea = function (e, t, n) { - var r = ka(e, t, 0, n); - return 2 > r.count ? 0 : r.graph; - }, - ka = function e(t, n, r, o) { - var i = o.graphSet[r]; - if (-1 < i.indexOf(t) && -1 < i.indexOf(n)) return { count: 2, graph: r }; - for (var a = 0, s = 0; s < i.length; s++) { - var l = i[s], - c = o.idToIndex[l], - u = o.layoutNodes[c].children; - if (0 !== u.length) { - var d = e(t, n, o.indexToGraph[o.idToIndex[u[0]]], o); - if (0 !== d.count) { - if (1 !== d.count) return d; - if (2 === ++a) break; - } - } - } - return { count: a, graph: r }; - }, - _a = function (e, t) { - for (var n = e.clientWidth, r = e.clientHeight, o = 0; o < e.nodeSize; o++) { - var i = e.layoutNodes[o]; - 0 !== i.children.length || - i.isLocked || - ((i.positionX = Math.random() * n), (i.positionY = Math.random() * r)); - } - }, - Sa = function (e, t, n) { - var r = e.boundingBox, - o = { x1: 1 / 0, x2: -1 / 0, y1: 1 / 0, y2: -1 / 0 }; - return ( - t.boundingBox && - (n.forEach(function (t) { - var n = e.layoutNodes[e.idToIndex[t.data('id')]]; - (o.x1 = Math.min(o.x1, n.positionX)), - (o.x2 = Math.max(o.x2, n.positionX)), - (o.y1 = Math.min(o.y1, n.positionY)), - (o.y2 = Math.max(o.y2, n.positionY)); - }), - (o.w = o.x2 - o.x1), - (o.h = o.y2 - o.y1)), - function (n, i) { - var a = e.layoutNodes[e.idToIndex[n.data('id')]]; - if (t.boundingBox) { - var s = (a.positionX - o.x1) / o.w, - l = (a.positionY - o.y1) / o.h; - return { x: r.x1 + s * r.w, y: r.y1 + l * r.h }; - } - return { x: a.positionX, y: a.positionY }; - } - ); - }, - Pa = function (e, t, n) { - var r = n.layout, - o = n.eles.nodes(), - i = Sa(e, n, o); - o.positions(i), - !0 !== e.ready && - ((e.ready = !0), r.one('layoutready', n.ready), r.emit({ type: 'layoutready', layout: this })); - }, - Ca = function (e, t, n) { - ja(e, t), Oa(e), Aa(e, t), Ra(e), La(e); - }, - ja = function (e, t) { - for (var n = 0; n < e.graphSet.length; n++) - for (var r = e.graphSet[n], o = r.length, i = 0; i < o; i++) - for (var a = e.layoutNodes[e.idToIndex[r[i]]], s = i + 1; s < o; s++) { - var l = e.layoutNodes[e.idToIndex[r[s]]]; - Da(a, l, e, t); - } - }, - Ta = function (e) { - return -e + 2 * e * Math.random(); - }, - Da = function (e, t, n, r) { - if (e.cmptId === t.cmptId || n.isCompound) { - var o = t.positionX - e.positionX, - i = t.positionY - e.positionY; - 0 === o && 0 === i && ((o = Ta(1)), (i = Ta(1))); - var a = Na(e, t, o, i); - if (a > 0) - var s = ((c = r.nodeOverlap * a) * o) / (v = Math.sqrt(o * o + i * i)), - l = (c * i) / v; - else { - var c, - u = Ma(e, o, i), - d = Ma(t, -1 * o, -1 * i), - f = d.x - u.x, - h = d.y - u.y, - p = f * f + h * h, - v = Math.sqrt(p); - (s = ((c = (e.nodeRepulsion + t.nodeRepulsion) / p) * f) / v), (l = (c * h) / v); - } - e.isLocked || ((e.offsetX -= s), (e.offsetY -= l)), t.isLocked || ((t.offsetX += s), (t.offsetY += l)); - } - }, - Na = function (e, t, n, r) { - if (n > 0) var o = e.maxX - t.minX; - else o = t.maxX - e.minX; - if (r > 0) var i = e.maxY - t.minY; - else i = t.maxY - e.minY; - return o >= 0 && i >= 0 ? Math.sqrt(o * o + i * i) : 0; - }, - Ma = function (e, t, n) { - var r = e.positionX, - o = e.positionY, - i = e.height || 1, - a = e.width || 1, - s = n / t, - l = i / a, - c = {}; - return (0 === t && 0 < n) || (0 === t && 0 > n) - ? ((c.x = r), (c.y = o + i / 2), c) - : 0 < t && -1 * l <= s && s <= l - ? ((c.x = r + a / 2), (c.y = o + (a * n) / 2 / t), c) - : 0 > t && -1 * l <= s && s <= l - ? ((c.x = r - a / 2), (c.y = o - (a * n) / 2 / t), c) - : 0 < n && (s <= -1 * l || s >= l) - ? ((c.x = r + (i * t) / 2 / n), (c.y = o + i / 2), c) - : 0 > n && (s <= -1 * l || s >= l) - ? ((c.x = r - (i * t) / 2 / n), (c.y = o - i / 2), c) - : c; - }, - Oa = function (e, t) { - for (var n = 0; n < e.edgeSize; n++) { - var r = e.layoutEdges[n], - o = e.idToIndex[r.sourceId], - i = e.layoutNodes[o], - a = e.idToIndex[r.targetId], - s = e.layoutNodes[a], - l = s.positionX - i.positionX, - c = s.positionY - i.positionY; - if (0 !== l || 0 !== c) { - var u = Ma(i, l, c), - d = Ma(s, -1 * l, -1 * c), - f = d.x - u.x, - h = d.y - u.y, - p = Math.sqrt(f * f + h * h), - v = Math.pow(r.idealLength - p, 2) / r.elasticity; - if (0 !== p) - var g = (v * f) / p, - m = (v * h) / p; - else (g = 0), (m = 0); - i.isLocked || ((i.offsetX += g), (i.offsetY += m)), s.isLocked || ((s.offsetX -= g), (s.offsetY -= m)); - } - } - }, - Aa = function (e, t) { - if (0 !== t.gravity) - for (var n = 0; n < e.graphSet.length; n++) { - var r = e.graphSet[n], - o = r.length; - if (0 === n) - var i = e.clientHeight / 2, - a = e.clientWidth / 2; - else { - var s = e.layoutNodes[e.idToIndex[r[0]]], - l = e.layoutNodes[e.idToIndex[s.parentId]]; - (i = l.positionX), (a = l.positionY); - } - for (var c = 0; c < o; c++) { - var u = e.layoutNodes[e.idToIndex[r[c]]]; - if (!u.isLocked) { - var d = i - u.positionX, - f = a - u.positionY, - h = Math.sqrt(d * d + f * f); - if (h > 1) { - var p = (t.gravity * d) / h, - v = (t.gravity * f) / h; - (u.offsetX += p), (u.offsetY += v); - } - } - } - } - }, - Ra = function (e, t) { - var n = [], - r = 0, - o = -1; - for (n.push.apply(n, e.graphSet[0]), o += e.graphSet[0].length; r <= o; ) { - var i = n[r++], - a = e.idToIndex[i], - s = e.layoutNodes[a], - l = s.children; - if (0 < l.length && !s.isLocked) { - for (var c = s.offsetX, u = s.offsetY, d = 0; d < l.length; d++) { - var f = e.layoutNodes[e.idToIndex[l[d]]]; - (f.offsetX += c), (f.offsetY += u), (n[++o] = l[d]); - } - (s.offsetX = 0), (s.offsetY = 0); - } - } - }, - La = function (e, t) { - for (var n = 0; n < e.nodeSize; n++) { - 0 < (o = e.layoutNodes[n]).children.length && - ((o.maxX = void 0), (o.minX = void 0), (o.maxY = void 0), (o.minY = void 0)); - } - for (n = 0; n < e.nodeSize; n++) { - if (!(0 < (o = e.layoutNodes[n]).children.length || o.isLocked)) { - var r = Ia(o.offsetX, o.offsetY, e.temperature); - (o.positionX += r.x), - (o.positionY += r.y), - (o.offsetX = 0), - (o.offsetY = 0), - (o.minX = o.positionX - o.width), - (o.maxX = o.positionX + o.width), - (o.minY = o.positionY - o.height), - (o.maxY = o.positionY + o.height), - Ba(o, e); - } - } - for (n = 0; n < e.nodeSize; n++) { - var o; - 0 < (o = e.layoutNodes[n]).children.length && - !o.isLocked && - ((o.positionX = (o.maxX + o.minX) / 2), - (o.positionY = (o.maxY + o.minY) / 2), - (o.width = o.maxX - o.minX), - (o.height = o.maxY - o.minY)); - } - }, - Ia = function (e, t, n) { - var r = Math.sqrt(e * e + t * t); - if (r > n) var o = { x: (n * e) / r, y: (n * t) / r }; - else o = { x: e, y: t }; - return o; - }, - Ba = function e(t, n) { - var r = t.parentId; - if (null != r) { - var o = n.layoutNodes[n.idToIndex[r]], - i = !1; - return ( - (null == o.maxX || t.maxX + o.padRight > o.maxX) && ((o.maxX = t.maxX + o.padRight), (i = !0)), - (null == o.minX || t.minX - o.padLeft < o.minX) && ((o.minX = t.minX - o.padLeft), (i = !0)), - (null == o.maxY || t.maxY + o.padBottom > o.maxY) && ((o.maxY = t.maxY + o.padBottom), (i = !0)), - (null == o.minY || t.minY - o.padTop < o.minY) && ((o.minY = t.minY - o.padTop), (i = !0)), - i ? e(o, n) : void 0 - ); - } - }, - Fa = function (e, t) { - for (var n = e.layoutNodes, r = [], o = 0; o < n.length; o++) { - var i = n[o], - a = i.cmptId; - (r[a] = r[a] || []).push(i); - } - var s = 0; - for (o = 0; o < r.length; o++) { - if ((v = r[o])) { - (v.x1 = 1 / 0), (v.x2 = -1 / 0), (v.y1 = 1 / 0), (v.y2 = -1 / 0); - for (var l = 0; l < v.length; l++) { - var c = v[l]; - (v.x1 = Math.min(v.x1, c.positionX - c.width / 2)), - (v.x2 = Math.max(v.x2, c.positionX + c.width / 2)), - (v.y1 = Math.min(v.y1, c.positionY - c.height / 2)), - (v.y2 = Math.max(v.y2, c.positionY + c.height / 2)); - } - (v.w = v.x2 - v.x1), (v.h = v.y2 - v.y1), (s += v.w * v.h); - } - } - r.sort(function (e, t) { - return t.w * t.h - e.w * e.h; - }); - var u = 0, - d = 0, - f = 0, - h = 0, - p = (Math.sqrt(s) * e.clientWidth) / e.clientHeight; - for (o = 0; o < r.length; o++) { - var v; - if ((v = r[o])) { - for (l = 0; l < v.length; l++) { - (c = v[l]).isLocked || ((c.positionX += u - v.x1), (c.positionY += d - v.y1)); - } - (u += v.w + t.componentSpacing), - (f += v.w + t.componentSpacing), - (h = Math.max(h, v.h)), - f > p && ((d += h + t.componentSpacing), (u = 0), (f = 0), (h = 0)); - } - } - }, - za = { - fit: !0, - padding: 30, - boundingBox: void 0, - avoidOverlap: !0, - avoidOverlapPadding: 10, - nodeDimensionsIncludeLabels: !1, - spacingFactor: void 0, - condense: !1, - rows: void 0, - cols: void 0, - position: function (e) {}, - sort: void 0, - animate: !1, - animationDuration: 500, - animationEasing: void 0, - animateFilter: function (e, t) { - return !0; - }, - ready: void 0, - stop: void 0, - transform: function (e, t) { - return t; - }, - }; - function Va(e) { - this.options = Q({}, za, e); - } - Va.prototype.run = function () { - var e = this.options, - t = e, - n = e.cy, - r = t.eles, - o = r.nodes().not(':parent'); - t.sort && (o = o.sort(t.sort)); - var i = vt(t.boundingBox ? t.boundingBox : { x1: 0, y1: 0, w: n.width(), h: n.height() }); - if (0 === i.h || 0 === i.w) - r.nodes().layoutPositions(this, t, function (e) { - return { x: i.x1, y: i.y1 }; - }); - else { - var a = o.size(), - s = Math.sqrt((a * i.h) / i.w), - l = Math.round(s), - c = Math.round((i.w / i.h) * s), - u = function (e) { - if (null == e) return Math.min(l, c); - Math.min(l, c) == l ? (l = e) : (c = e); - }, - d = function (e) { - if (null == e) return Math.max(l, c); - Math.max(l, c) == l ? (l = e) : (c = e); - }, - f = t.rows, - h = null != t.cols ? t.cols : t.columns; - if (null != f && null != h) (l = f), (c = h); - else if (null != f && null == h) (l = f), (c = Math.ceil(a / l)); - else if (null == f && null != h) (c = h), (l = Math.ceil(a / c)); - else if (c * l > a) { - var p = u(), - v = d(); - (p - 1) * v >= a ? u(p - 1) : (v - 1) * p >= a && d(v - 1); - } else - for (; c * l < a; ) { - var g = u(), - m = d(); - (m + 1) * g >= a ? d(m + 1) : u(g + 1); - } - var y = i.w / c, - b = i.h / l; - if ((t.condense && ((y = 0), (b = 0)), t.avoidOverlap)) - for (var x = 0; x < o.length; x++) { - var w = o[x], - E = w._private.position; - (null != E.x && null != E.y) || ((E.x = 0), (E.y = 0)); - var k = w.layoutDimensions(t), - _ = t.avoidOverlapPadding, - S = k.w + _, - P = k.h + _; - (y = Math.max(y, S)), (b = Math.max(b, P)); - } - for ( - var C = {}, - j = function (e, t) { - return !!C['c-' + e + '-' + t]; - }, - T = function (e, t) { - C['c-' + e + '-' + t] = !0; - }, - D = 0, - N = 0, - M = function () { - ++N >= c && ((N = 0), D++); - }, - O = {}, - A = 0; - A < o.length; - A++ - ) { - var R = o[A], - L = t.position(R); - if (L && (void 0 !== L.row || void 0 !== L.col)) { - var I = { row: L.row, col: L.col }; - if (void 0 === I.col) for (I.col = 0; j(I.row, I.col); ) I.col++; - else if (void 0 === I.row) for (I.row = 0; j(I.row, I.col); ) I.row++; - (O[R.id()] = I), T(I.row, I.col); - } - } - o.layoutPositions(this, t, function (e, t) { - var n, r; - if (e.locked() || e.isParent()) return !1; - var o = O[e.id()]; - if (o) (n = o.col * y + y / 2 + i.x1), (r = o.row * b + b / 2 + i.y1); - else { - for (; j(D, N); ) M(); - (n = N * y + y / 2 + i.x1), (r = D * b + b / 2 + i.y1), T(D, N), M(); - } - return { x: n, y: r }; - }); - } - return this; - }; - var Ga = { ready: function () {}, stop: function () {} }; - function Ha(e) { - this.options = Q({}, Ga, e); - } - (Ha.prototype.run = function () { - var e = this.options, - t = e.eles, - n = this; - return ( - e.cy, - n.emit('layoutstart'), - t.nodes().positions(function () { - return { x: 0, y: 0 }; - }), - n.one('layoutready', e.ready), - n.emit('layoutready'), - n.one('layoutstop', e.stop), - n.emit('layoutstop'), - this - ); - }), - (Ha.prototype.stop = function () { - return this; - }); - var Wa = { - positions: void 0, - zoom: void 0, - pan: void 0, - fit: !0, - padding: 30, - animate: !1, - animationDuration: 500, - animationEasing: void 0, - animateFilter: function (e, t) { - return !0; - }, - ready: void 0, - stop: void 0, - transform: function (e, t) { - return t; - }, - }; - function Ua(e) { - this.options = Q({}, Wa, e); - } - Ua.prototype.run = function () { - var e = this.options, - t = e.eles.nodes(), - n = T(e.positions); - return ( - t.layoutPositions(this, e, function (t, r) { - var o = (function (t) { - if (null == e.positions) - return (function (e) { - return { x: e.x, y: e.y }; - })(t.position()); - if (n) return e.positions(t); - var r = e.positions[t._private.data.id]; - return r ?? null; - })(t); - return !t.locked() && null != o && o; - }), - this - ); - }; - var qa = { - fit: !0, - padding: 30, - boundingBox: void 0, - animate: !1, - animationDuration: 500, - animationEasing: void 0, - animateFilter: function (e, t) { - return !0; - }, - ready: void 0, - stop: void 0, - transform: function (e, t) { - return t; - }, - }; - function Ya(e) { - this.options = Q({}, qa, e); - } - Ya.prototype.run = function () { - var e = this.options, - t = e.cy, - n = e.eles, - r = vt(e.boundingBox ? e.boundingBox : { x1: 0, y1: 0, w: t.width(), h: t.height() }); - return ( - n.nodes().layoutPositions(this, e, function (e, t) { - return { x: r.x1 + Math.round(Math.random() * r.w), y: r.y1 + Math.round(Math.random() * r.h) }; - }), - this - ); - }; - var Xa = [ - { name: 'breadthfirst', impl: ha }, - { name: 'circle', impl: va }, - { name: 'concentric', impl: ya }, - { name: 'cose', impl: xa }, - { name: 'grid', impl: Va }, - { name: 'null', impl: Ha }, - { name: 'preset', impl: Ua }, - { name: 'random', impl: Ya }, - ]; - function $a(e) { - (this.options = e), (this.notifications = 0); - } - var Ka = function () {}, - Za = function () { - throw new Error('A headless instance can not render images'); - }; - $a.prototype = { - recalculateRenderedStyle: Ka, - notify: function () { - this.notifications++; - }, - init: Ka, - isHeadless: function () { - return !0; - }, - png: Za, - jpg: Za, - }; - var Qa = { - arrowShapeWidth: 0.3, - registerArrowShapes: function () { - var e = (this.arrowShapes = {}), - t = this, - n = function (e, t, n, r, o, i, a) { - var s = o.x - n / 2 - a, - l = o.x + n / 2 + a, - c = o.y - n / 2 - a, - u = o.y + n / 2 + a; - return s <= e && e <= l && c <= t && t <= u; - }, - r = function (e, t, n, r, o) { - var i = e * Math.cos(r) - t * Math.sin(r), - a = (e * Math.sin(r) + t * Math.cos(r)) * n; - return { x: i * n + o.x, y: a + o.y }; - }, - o = function (e, t, n, o) { - for (var i = [], a = 0; a < e.length; a += 2) { - var s = e[a], - l = e[a + 1]; - i.push(r(s, l, t, n, o)); - } - return i; - }, - i = function (e) { - for (var t = [], n = 0; n < e.length; n++) { - var r = e[n]; - t.push(r.x, r.y); - } - return t; - }, - a = function (e) { - return e.pstyle('width').pfValue * e.pstyle('arrow-scale').pfValue * 2; - }, - s = function (r, s) { - j(s) && (s = e[s]), - (e[r] = Q( - { - name: r, - points: [-0.15, -0.3, 0.15, -0.3, 0.15, 0.3, -0.15, 0.3], - collide: function (e, t, n, r, a, s) { - var l = i(o(this.points, n + 2 * s, r, a)); - return jt(e, t, l); - }, - roughCollide: n, - draw: function (e, n, r, i) { - var a = o(this.points, n, r, i); - t.arrowShapeImpl('polygon')(e, a); - }, - spacing: function (e) { - return 0; - }, - gap: a, - }, - s, - )); - }; - s('none', { collide: ke, roughCollide: ke, draw: Se, spacing: _e, gap: _e }), - s('triangle', { points: [-0.15, -0.3, 0, 0, 0.15, -0.3] }), - s('arrow', 'triangle'), - s('triangle-backcurve', { - points: e.triangle.points, - controlPoint: [0, -0.15], - roughCollide: n, - draw: function (e, n, i, a, s) { - var l = o(this.points, n, i, a), - c = this.controlPoint, - u = r(c[0], c[1], n, i, a); - t.arrowShapeImpl(this.name)(e, l, u); - }, - gap: function (e) { - return 0.8 * a(e); - }, - }), - s('triangle-tee', { - points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], - pointsTee: [-0.15, -0.4, -0.15, -0.5, 0.15, -0.5, 0.15, -0.4], - collide: function (e, t, n, r, a, s, l) { - var c = i(o(this.points, n + 2 * l, r, a)), - u = i(o(this.pointsTee, n + 2 * l, r, a)); - return jt(e, t, c) || jt(e, t, u); - }, - draw: function (e, n, r, i, a) { - var s = o(this.points, n, r, i), - l = o(this.pointsTee, n, r, i); - t.arrowShapeImpl(this.name)(e, s, l); - }, - }), - s('circle-triangle', { - radius: 0.15, - pointsTr: [0, -0.15, 0.15, -0.45, -0.15, -0.45, 0, -0.15], - collide: function (e, t, n, r, a, s, l) { - var c = a, - u = Math.pow(c.x - e, 2) + Math.pow(c.y - t, 2) <= Math.pow((n + 2 * l) * this.radius, 2), - d = i(o(this.points, n + 2 * l, r, a)); - return jt(e, t, d) || u; - }, - draw: function (e, n, r, i, a) { - var s = o(this.pointsTr, n, r, i); - t.arrowShapeImpl(this.name)(e, s, i.x, i.y, this.radius * n); - }, - spacing: function (e) { - return t.getArrowWidth(e.pstyle('width').pfValue, e.pstyle('arrow-scale').value) * this.radius; - }, - }), - s('triangle-cross', { - points: [0, 0, 0.15, -0.3, -0.15, -0.3, 0, 0], - baseCrossLinePts: [-0.15, -0.4, -0.15, -0.4, 0.15, -0.4, 0.15, -0.4], - crossLinePts: function (e, t) { - var n = this.baseCrossLinePts.slice(), - r = t / e; - return (n[3] = n[3] - r), (n[5] = n[5] - r), n; - }, - collide: function (e, t, n, r, a, s, l) { - var c = i(o(this.points, n + 2 * l, r, a)), - u = i(o(this.crossLinePts(n, s), n + 2 * l, r, a)); - return jt(e, t, c) || jt(e, t, u); - }, - draw: function (e, n, r, i, a) { - var s = o(this.points, n, r, i), - l = o(this.crossLinePts(n, a), n, r, i); - t.arrowShapeImpl(this.name)(e, s, l); - }, - }), - s('vee', { - points: [-0.15, -0.3, 0, 0, 0.15, -0.3, 0, -0.15], - gap: function (e) { - return 0.525 * a(e); - }, - }), - s('circle', { - radius: 0.15, - collide: function (e, t, n, r, o, i, a) { - var s = o; - return Math.pow(s.x - e, 2) + Math.pow(s.y - t, 2) <= Math.pow((n + 2 * a) * this.radius, 2); - }, - draw: function (e, n, r, o, i) { - t.arrowShapeImpl(this.name)(e, o.x, o.y, this.radius * n); - }, - spacing: function (e) { - return t.getArrowWidth(e.pstyle('width').pfValue, e.pstyle('arrow-scale').value) * this.radius; - }, - }), - s('tee', { - points: [-0.15, 0, -0.15, -0.1, 0.15, -0.1, 0.15, 0], - spacing: function (e) { - return 1; - }, - gap: function (e) { - return 1; - }, - }), - s('square', { points: [-0.15, 0, 0.15, 0, 0.15, -0.3, -0.15, -0.3] }), - s('diamond', { - points: [-0.15, -0.15, 0, -0.3, 0.15, -0.15, 0, 0], - gap: function (e) { - return e.pstyle('width').pfValue * e.pstyle('arrow-scale').value; - }, - }), - s('chevron', { - points: [0, 0, -0.15, -0.15, -0.1, -0.2, 0, -0.1, 0.1, -0.2, 0.15, -0.15], - gap: function (e) { - return 0.95 * e.pstyle('width').pfValue * e.pstyle('arrow-scale').value; - }, - }); - }, - }, - Ja = { - projectIntoViewport: function (e, t) { - var n = this.cy, - r = this.findContainerClientCoords(), - o = r[0], - i = r[1], - a = r[4], - s = n.pan(), - l = n.zoom(); - return [((e - o) / a - s.x) / l, ((t - i) / a - s.y) / l]; - }, - findContainerClientCoords: function () { - if (this.containerBB) return this.containerBB; - var e = this.container, - t = e.getBoundingClientRect(), - n = w.getComputedStyle(e), - r = function (e) { - return parseFloat(n.getPropertyValue(e)); - }, - o = r('padding-left'), - i = r('padding-right'), - a = r('padding-top'), - s = r('padding-bottom'), - l = r('border-left-width'), - c = r('border-right-width'), - u = r('border-top-width'), - d = (r('border-bottom-width'), e.clientWidth), - f = e.clientHeight, - h = o + i, - p = a + s, - v = l + c, - g = t.width / (d + v), - m = d - h, - y = f - p, - b = t.left + o + l, - x = t.top + a + u; - return (this.containerBB = [b, x, m, y, g]); - }, - invalidateContainerClientCoordsCache: function () { - this.containerBB = null; - }, - findNearestElement: function (e, t, n, r) { - return this.findNearestElements(e, t, n, r)[0]; - }, - findNearestElements: function (e, t, n, r) { - var o, - i, - a = this, - s = this, - l = s.getCachedZSortedEles(), - c = [], - u = s.cy.zoom(), - d = s.cy.hasCompoundNodes(), - f = (r ? 24 : 8) / u, - h = (r ? 8 : 2) / u, - p = (r ? 8 : 2) / u, - v = 1 / 0; - function g(e, t) { - if (e.isNode()) { - if (i) return; - (i = e), c.push(e); - } - if (e.isEdge() && (null == t || t < v)) - if (o) { - if ( - o.pstyle('z-compound-depth').value === e.pstyle('z-compound-depth').value && - o.pstyle('z-compound-depth').value === e.pstyle('z-compound-depth').value - ) - for (var n = 0; n < c.length; n++) - if (c[n].isEdge()) { - (c[n] = e), (o = e), (v = null != t ? t : v); - break; - } - } else c.push(e), (o = e), (v = null != t ? t : v); - } - function m(n) { - var r = n.outerWidth() + 2 * h, - o = n.outerHeight() + 2 * h, - i = r / 2, - l = o / 2, - c = n.position(); - if ( - c.x - i <= e && - e <= c.x + i && - c.y - l <= t && - t <= c.y + l && - s.nodeShapes[a.getNodeShape(n)].checkPoint(e, t, 0, r, o, c.x, c.y) - ) - return g(n, 0), !0; - } - function y(n) { - var r, - o = n._private, - i = o.rscratch, - l = n.pstyle('width').pfValue, - u = n.pstyle('arrow-scale').value, - h = l / 2 + f, - p = h * h, - v = 2 * h, - y = o.source, - b = o.target; - if ('segments' === i.edgeType || 'straight' === i.edgeType || 'haystack' === i.edgeType) { - for (var x = i.allpts, w = 0; w + 3 < x.length; w += 2) - if ( - _t(e, t, x[w], x[w + 1], x[w + 2], x[w + 3], v) && - p > (r = Ct(e, t, x[w], x[w + 1], x[w + 2], x[w + 3])) - ) - return g(n, r), !0; - } else if ( - 'bezier' === i.edgeType || - 'multibezier' === i.edgeType || - 'self' === i.edgeType || - 'compound' === i.edgeType - ) - for (x = i.allpts, w = 0; w + 5 < i.allpts.length; w += 4) - if ( - St(e, t, x[w], x[w + 1], x[w + 2], x[w + 3], x[w + 4], x[w + 5], v) && - p > (r = Pt(e, t, x[w], x[w + 1], x[w + 2], x[w + 3], x[w + 4], x[w + 5])) - ) - return g(n, r), !0; - (y = y || o.source), (b = b || o.target); - var E = a.getArrowWidth(l, u), - k = [ - { name: 'source', x: i.arrowStartX, y: i.arrowStartY, angle: i.srcArrowAngle }, - { name: 'target', x: i.arrowEndX, y: i.arrowEndY, angle: i.tgtArrowAngle }, - { name: 'mid-source', x: i.midX, y: i.midY, angle: i.midsrcArrowAngle }, - { name: 'mid-target', x: i.midX, y: i.midY, angle: i.midtgtArrowAngle }, - ]; - for (w = 0; w < k.length; w++) { - var _ = k[w], - S = s.arrowShapes[n.pstyle(_.name + '-arrow-shape').value], - P = n.pstyle('width').pfValue; - if ( - S.roughCollide(e, t, E, _.angle, { x: _.x, y: _.y }, P, f) && - S.collide(e, t, E, _.angle, { x: _.x, y: _.y }, P, f) - ) - return g(n), !0; - } - d && c.length > 0 && (m(y), m(b)); - } - function b(e, t, n) { - return Le(e, t, n); - } - function x(n, r) { - var o, - i = n._private, - a = p; - (o = r ? r + '-' : ''), n.boundingBox(); - var s = i.labelBounds[r || 'main'], - l = n.pstyle(o + 'label').value; - if ('yes' === n.pstyle('text-events').strValue && l) { - var c = b(i.rscratch, 'labelX', r), - u = b(i.rscratch, 'labelY', r), - d = b(i.rscratch, 'labelAngle', r), - f = n.pstyle(o + 'text-margin-x').pfValue, - h = n.pstyle(o + 'text-margin-y').pfValue, - v = s.x1 - a - f, - m = s.x2 + a - f, - y = s.y1 - a - h, - x = s.y2 + a - h; - if (d) { - var w = Math.cos(d), - E = Math.sin(d), - k = function (e, t) { - return { x: (e -= c) * w - (t -= u) * E + c, y: e * E + t * w + u }; - }, - _ = k(v, y), - S = k(v, x), - P = k(m, y), - C = k(m, x), - j = [_.x + f, _.y + h, P.x + f, P.y + h, C.x + f, C.y + h, S.x + f, S.y + h]; - if (jt(e, t, j)) return g(n), !0; - } else if (wt(s, e, t)) return g(n), !0; - } - } - n && (l = l.interactive); - for (var w = l.length - 1; w >= 0; w--) { - var E = l[w]; - E.isNode() ? m(E) || x(E) : y(E) || x(E) || x(E, 'source') || x(E, 'target'); - } - return c; - }, - getAllInBox: function (e, t, n, r) { - for ( - var o, - i, - a = this.getCachedZSortedEles().interactive, - s = [], - l = Math.min(e, n), - c = Math.max(e, n), - u = Math.min(t, r), - d = Math.max(t, r), - f = vt({ x1: (e = l), y1: (t = u), x2: (n = c), y2: (r = d) }), - h = 0; - h < a.length; - h++ - ) { - var p = a[h]; - if (p.isNode()) { - var v = p, - g = v.boundingBox({ includeNodes: !0, includeEdges: !1, includeLabels: !1 }); - xt(f, g) && !Et(g, f) && s.push(v); - } else { - var m = p, - y = m._private, - b = y.rscratch; - if (null != b.startX && null != b.startY && !wt(f, b.startX, b.startY)) continue; - if (null != b.endX && null != b.endY && !wt(f, b.endX, b.endY)) continue; - if ( - 'bezier' === b.edgeType || - 'multibezier' === b.edgeType || - 'self' === b.edgeType || - 'compound' === b.edgeType || - 'segments' === b.edgeType || - 'haystack' === b.edgeType - ) { - for ( - var x = y.rstyle.bezierPts || y.rstyle.linePts || y.rstyle.haystackPts, w = !0, E = 0; - E < x.length; - E++ - ) - if (((o = f), (i = x[E]), !wt(o, i.x, i.y))) { - w = !1; - break; - } - w && s.push(m); - } else ('haystack' !== b.edgeType && 'straight' !== b.edgeType) || s.push(m); - } - } - return s; - }, - }, - es = { - calculateArrowAngles: function (e) { - var t, - n, - r, - o, - i, - a, - s = e._private.rscratch, - l = 'haystack' === s.edgeType, - c = 'bezier' === s.edgeType, - u = 'multibezier' === s.edgeType, - d = 'segments' === s.edgeType, - f = 'compound' === s.edgeType, - h = 'self' === s.edgeType; - if ( - (l - ? ((r = s.haystackPts[0]), (o = s.haystackPts[1]), (i = s.haystackPts[2]), (a = s.haystackPts[3])) - : ((r = s.arrowStartX), (o = s.arrowStartY), (i = s.arrowEndX), (a = s.arrowEndY)), - (v = s.midX), - (g = s.midY), - d) - ) - (t = r - s.segpts[0]), (n = o - s.segpts[1]); - else if (u || f || h || c) { - var p = s.allpts; - (t = r - ft(p[0], p[2], p[4], 0.1)), (n = o - ft(p[1], p[3], p[5], 0.1)); - } else (t = r - v), (n = o - g); - s.srcArrowAngle = at(t, n); - var v = s.midX, - g = s.midY; - if ((l && ((v = (r + i) / 2), (g = (o + a) / 2)), (t = i - r), (n = a - o), d)) - if (((p = s.allpts).length / 2) % 2 == 0) { - var m = (y = p.length / 2) - 2; - (t = p[y] - p[m]), (n = p[y + 1] - p[m + 1]); - } else { - m = (y = p.length / 2 - 1) - 2; - var y, - b = y + 2; - (t = p[y] - p[m]), (n = p[y + 1] - p[m + 1]); - } - else if (u || f || h) { - var x, - w, - E, - k, - p = s.allpts; - if ((s.ctrlpts.length / 2) % 2 == 0) { - var _ = (S = (P = p.length / 2 - 1) + 2) + 2; - (x = ft(p[P], p[S], p[_], 0)), - (w = ft(p[P + 1], p[S + 1], p[_ + 1], 0)), - (E = ft(p[P], p[S], p[_], 1e-4)), - (k = ft(p[P + 1], p[S + 1], p[_ + 1], 1e-4)); - } else { - var S, P; - _ = (S = p.length / 2 - 1) + 2; - (x = ft(p[(P = S - 2)], p[S], p[_], 0.4999)), - (w = ft(p[P + 1], p[S + 1], p[_ + 1], 0.4999)), - (E = ft(p[P], p[S], p[_], 0.5)), - (k = ft(p[P + 1], p[S + 1], p[_ + 1], 0.5)); - } - (t = E - x), (n = k - w); - } - ((s.midtgtArrowAngle = at(t, n)), (s.midDispX = t), (s.midDispY = n), (t *= -1), (n *= -1), d) && - (((p = s.allpts).length / 2) % 2 == 0 || - ((t = -(p[(b = (y = p.length / 2 - 1) + 2)] - p[y])), (n = -(p[b + 1] - p[y + 1])))); - if (((s.midsrcArrowAngle = at(t, n)), d)) - (t = i - s.segpts[s.segpts.length - 2]), (n = a - s.segpts[s.segpts.length - 1]); - else if (u || f || h || c) { - var C = (p = s.allpts).length; - (t = i - ft(p[C - 6], p[C - 4], p[C - 2], 0.9)), (n = a - ft(p[C - 5], p[C - 3], p[C - 1], 0.9)); - } else (t = i - v), (n = a - g); - s.tgtArrowAngle = at(t, n); - }, - }; - es.getArrowWidth = es.getArrowHeight = function (e, t) { - var n = (this.arrowWidthCache = this.arrowWidthCache || {}), - r = n[e + ', ' + t]; - return r || ((r = Math.max(Math.pow(13.37 * e, 0.9), 29) * t), (n[e + ', ' + t] = r), r); - }; - var ts = {}; - function ns(e) { - var t = []; - if (null != e) { - for (var n = 0; n < e.length; n += 2) { - var r = e[n], - o = e[n + 1]; - t.push({ x: r, y: o }); - } - return t; - } - } - (ts.findHaystackPoints = function (e) { - for (var t = 0; t < e.length; t++) { - var n = e[t], - r = n._private, - o = r.rscratch; - if (!o.haystack) { - var i = 2 * Math.random() * Math.PI; - (o.source = { x: Math.cos(i), y: Math.sin(i) }), - (i = 2 * Math.random() * Math.PI), - (o.target = { x: Math.cos(i), y: Math.sin(i) }); - } - var a = r.source, - s = r.target, - l = a.position(), - c = s.position(), - u = a.width(), - d = s.width(), - f = a.height(), - h = s.height(), - p = n.pstyle('haystack-radius').value / 2; - (o.haystackPts = o.allpts = - [o.source.x * u * p + l.x, o.source.y * f * p + l.y, o.target.x * d * p + c.x, o.target.y * h * p + c.y]), - (o.midX = (o.allpts[0] + o.allpts[2]) / 2), - (o.midY = (o.allpts[1] + o.allpts[3]) / 2), - (o.edgeType = 'haystack'), - (o.haystack = !0), - this.storeEdgeProjections(n), - this.calculateArrowAngles(n), - this.recalculateEdgeLabelProjections(n), - this.calculateLabelAngles(n); - } - }), - (ts.findSegmentsPoints = function (e, t) { - var n = e._private.rscratch, - r = t.posPts, - o = t.intersectionPts, - i = t.vectorNormInverse, - a = e.pstyle('edge-distances').value, - s = e.pstyle('segment-weights'), - l = e.pstyle('segment-distances'), - c = Math.min(s.pfValue.length, l.pfValue.length); - (n.edgeType = 'segments'), (n.segpts = []); - for (var u = 0; u < c; u++) { - var d = s.pfValue[u], - f = l.pfValue[u], - h = 1 - d, - p = d, - v = 'node-position' === a ? r : o, - g = { x: v.x1 * h + v.x2 * p, y: v.y1 * h + v.y2 * p }; - n.segpts.push(g.x + i.x * f, g.y + i.y * f); - } - }), - (ts.findLoopPoints = function (e, t, n, r) { - var o = e._private.rscratch, - i = t.dirCounts, - a = t.srcPos, - s = e.pstyle('control-point-distances'), - l = s ? s.pfValue[0] : void 0, - c = e.pstyle('loop-direction').pfValue, - u = e.pstyle('loop-sweep').pfValue, - d = e.pstyle('control-point-step-size').pfValue; - o.edgeType = 'self'; - var f = n, - h = d; - r && ((f = 0), (h = l)); - var p = c - Math.PI / 2, - v = p - u / 2, - g = p + u / 2, - m = String(c + '_' + u); - (f = void 0 === i[m] ? (i[m] = 0) : ++i[m]), - (o.ctrlpts = [ - a.x + 1.4 * Math.cos(v) * h * (f / 3 + 1), - a.y + 1.4 * Math.sin(v) * h * (f / 3 + 1), - a.x + 1.4 * Math.cos(g) * h * (f / 3 + 1), - a.y + 1.4 * Math.sin(g) * h * (f / 3 + 1), - ]); - }), - (ts.findCompoundLoopPoints = function (e, t, n, r) { - var o = e._private.rscratch; - o.edgeType = 'compound'; - var i = t.srcPos, - a = t.tgtPos, - s = t.srcW, - l = t.srcH, - c = t.tgtW, - u = t.tgtH, - d = e.pstyle('control-point-step-size').pfValue, - f = e.pstyle('control-point-distances'), - h = f ? f.pfValue[0] : void 0, - p = n, - v = d; - r && ((p = 0), (v = h)); - var g = { x: i.x - s / 2, y: i.y - l / 2 }, - m = { x: a.x - c / 2, y: a.y - u / 2 }, - y = { x: Math.min(g.x, m.x), y: Math.min(g.y, m.y) }, - b = Math.max(0.5, Math.log(0.01 * s)), - x = Math.max(0.5, Math.log(0.01 * c)); - o.ctrlpts = [ - y.x, - y.y - (1 + Math.pow(50, 1.12) / 100) * v * (p / 3 + 1) * b, - y.x - (1 + Math.pow(50, 1.12) / 100) * v * (p / 3 + 1) * x, - y.y, - ]; - }), - (ts.findStraightEdgePoints = function (e) { - e._private.rscratch.edgeType = 'straight'; - }), - (ts.findBezierPoints = function (e, t, n, r, o) { - var i = e._private.rscratch, - a = t.vectorNormInverse, - s = t.posPts, - l = t.intersectionPts, - c = e.pstyle('edge-distances').value, - u = e.pstyle('control-point-step-size').pfValue, - d = e.pstyle('control-point-distances'), - f = e.pstyle('control-point-weights'), - h = d && f ? Math.min(d.value.length, f.value.length) : 1, - p = d ? d.pfValue[0] : void 0, - v = f.value[0], - g = r; - (i.edgeType = g ? 'multibezier' : 'bezier'), (i.ctrlpts = []); - for (var m = 0; m < h; m++) { - var y = (0.5 - t.eles.length / 2 + n) * u * (o ? -1 : 1), - b = void 0, - x = lt(y); - g && ((p = d ? d.pfValue[m] : u), (v = f.value[m])); - var w = void 0 !== (b = r ? p : void 0 !== p ? x * p : void 0) ? b : y, - E = 1 - v, - k = v, - _ = 'node-position' === c ? s : l, - S = { x: _.x1 * E + _.x2 * k, y: _.y1 * E + _.y2 * k }; - i.ctrlpts.push(S.x + a.x * w, S.y + a.y * w); - } - }), - (ts.findTaxiPoints = function (e, t) { - var n = e._private.rscratch; - n.edgeType = 'segments'; - var r = 'vertical', - o = 'horizontal', - i = 'leftward', - a = 'rightward', - s = 'downward', - l = 'upward', - c = t.posPts, - u = t.srcW, - d = t.srcH, - f = t.tgtW, - h = t.tgtH, - p = 'node-position' !== e.pstyle('edge-distances').value, - v = e.pstyle('taxi-direction').value, - g = v, - m = e.pstyle('taxi-turn'), - y = '%' === m.units, - b = m.pfValue, - x = b < 0, - w = e.pstyle('taxi-turn-min-distance').pfValue, - E = p ? (u + f) / 2 : 0, - k = p ? (d + h) / 2 : 0, - _ = c.x2 - c.x1, - S = c.y2 - c.y1, - P = function (e, t) { - return e > 0 ? Math.max(e - t, 0) : Math.min(e + t, 0); - }, - C = P(_, E), - j = P(S, k), - T = !1; - 'auto' === g - ? (v = Math.abs(C) > Math.abs(j) ? o : r) - : g === l || g === s - ? ((v = r), (T = !0)) - : (g !== i && g !== a) || ((v = o), (T = !0)); - var D, - N = v === r, - M = N ? j : C, - O = N ? S : _, - A = lt(O), - R = !1; - ((T && (y || x)) || - !((g === s && O < 0) || (g === l && O > 0) || (g === i && O > 0) || (g === a && O < 0)) || - ((M = (A *= -1) * Math.abs(M)), (R = !0)), - y) - ? (D = (b < 0 ? 1 + b : b) * M) - : (D = (b < 0 ? M : 0) + b * A); - var L = function (e) { - return Math.abs(e) < w || Math.abs(e) >= Math.abs(M); - }, - I = L(D), - B = L(Math.abs(M) - Math.abs(D)); - if ((I || B) && !R) - if (N) { - var F = Math.abs(O) <= d / 2, - z = Math.abs(_) <= f / 2; - if (F) { - var V = (c.x1 + c.x2) / 2, - G = c.y1, - H = c.y2; - n.segpts = [V, G, V, H]; - } else if (z) { - var W = (c.y1 + c.y2) / 2, - U = c.x1, - q = c.x2; - n.segpts = [U, W, q, W]; - } else n.segpts = [c.x1, c.y2]; - } else { - var Y = Math.abs(O) <= u / 2, - X = Math.abs(S) <= h / 2; - if (Y) { - var $ = (c.y1 + c.y2) / 2, - K = c.x1, - Z = c.x2; - n.segpts = [K, $, Z, $]; - } else if (X) { - var Q = (c.x1 + c.x2) / 2, - J = c.y1, - ee = c.y2; - n.segpts = [Q, J, Q, ee]; - } else n.segpts = [c.x2, c.y1]; - } - else if (N) { - var te = c.y1 + D + (p ? (d / 2) * A : 0), - ne = c.x1, - re = c.x2; - n.segpts = [ne, te, re, te]; - } else { - var oe = c.x1 + D + (p ? (u / 2) * A : 0), - ie = c.y1, - ae = c.y2; - n.segpts = [oe, ie, oe, ae]; - } - }), - (ts.tryToCorrectInvalidPoints = function (e, t) { - var n = e._private.rscratch; - if ('bezier' === n.edgeType) { - var r = t.srcPos, - o = t.tgtPos, - i = t.srcW, - a = t.srcH, - s = t.tgtW, - l = t.tgtH, - c = t.srcShape, - u = t.tgtShape, - d = !M(n.startX) || !M(n.startY), - f = !M(n.arrowStartX) || !M(n.arrowStartY), - h = !M(n.endX) || !M(n.endY), - p = !M(n.arrowEndX) || !M(n.arrowEndY), - v = - 3 * - (this.getArrowWidth(e.pstyle('width').pfValue, e.pstyle('arrow-scale').value) * this.arrowShapeWidth), - g = ct({ x: n.ctrlpts[0], y: n.ctrlpts[1] }, { x: n.startX, y: n.startY }), - m = g < v, - y = ct({ x: n.ctrlpts[0], y: n.ctrlpts[1] }, { x: n.endX, y: n.endY }), - b = y < v, - x = !1; - if (d || f || m) { - x = !0; - var w = { x: n.ctrlpts[0] - r.x, y: n.ctrlpts[1] - r.y }, - E = Math.sqrt(w.x * w.x + w.y * w.y), - k = { x: w.x / E, y: w.y / E }, - _ = Math.max(i, a), - S = { x: n.ctrlpts[0] + 2 * k.x * _, y: n.ctrlpts[1] + 2 * k.y * _ }, - P = c.intersectLine(r.x, r.y, i, a, S.x, S.y, 0); - m - ? ((n.ctrlpts[0] = n.ctrlpts[0] + k.x * (v - g)), (n.ctrlpts[1] = n.ctrlpts[1] + k.y * (v - g))) - : ((n.ctrlpts[0] = P[0] + k.x * v), (n.ctrlpts[1] = P[1] + k.y * v)); - } - if (h || p || b) { - x = !0; - var C = { x: n.ctrlpts[0] - o.x, y: n.ctrlpts[1] - o.y }, - j = Math.sqrt(C.x * C.x + C.y * C.y), - T = { x: C.x / j, y: C.y / j }, - D = Math.max(i, a), - N = { x: n.ctrlpts[0] + 2 * T.x * D, y: n.ctrlpts[1] + 2 * T.y * D }, - O = u.intersectLine(o.x, o.y, s, l, N.x, N.y, 0); - b - ? ((n.ctrlpts[0] = n.ctrlpts[0] + T.x * (v - y)), (n.ctrlpts[1] = n.ctrlpts[1] + T.y * (v - y))) - : ((n.ctrlpts[0] = O[0] + T.x * v), (n.ctrlpts[1] = O[1] + T.y * v)); - } - x && this.findEndpoints(e); - } - }), - (ts.storeAllpts = function (e) { - var t = e._private.rscratch; - if ( - 'multibezier' === t.edgeType || - 'bezier' === t.edgeType || - 'self' === t.edgeType || - 'compound' === t.edgeType - ) { - (t.allpts = []), t.allpts.push(t.startX, t.startY); - for (var n = 0; n + 1 < t.ctrlpts.length; n += 2) - t.allpts.push(t.ctrlpts[n], t.ctrlpts[n + 1]), - n + 3 < t.ctrlpts.length && - t.allpts.push((t.ctrlpts[n] + t.ctrlpts[n + 2]) / 2, (t.ctrlpts[n + 1] + t.ctrlpts[n + 3]) / 2); - var r; - t.allpts.push(t.endX, t.endY), - (t.ctrlpts.length / 2) % 2 == 0 - ? ((r = t.allpts.length / 2 - 1), (t.midX = t.allpts[r]), (t.midY = t.allpts[r + 1])) - : ((r = t.allpts.length / 2 - 3), - 0.5, - (t.midX = ft(t.allpts[r], t.allpts[r + 2], t.allpts[r + 4], 0.5)), - (t.midY = ft(t.allpts[r + 1], t.allpts[r + 3], t.allpts[r + 5], 0.5))); - } else if ('straight' === t.edgeType) - (t.allpts = [t.startX, t.startY, t.endX, t.endY]), - (t.midX = (t.startX + t.endX + t.arrowStartX + t.arrowEndX) / 4), - (t.midY = (t.startY + t.endY + t.arrowStartY + t.arrowEndY) / 4); - else if ('segments' === t.edgeType) - if ( - ((t.allpts = []), - t.allpts.push(t.startX, t.startY), - t.allpts.push.apply(t.allpts, t.segpts), - t.allpts.push(t.endX, t.endY), - t.segpts.length % 4 == 0) - ) { - var o = t.segpts.length / 2, - i = o - 2; - (t.midX = (t.segpts[i] + t.segpts[o]) / 2), (t.midY = (t.segpts[i + 1] + t.segpts[o + 1]) / 2); - } else { - var a = t.segpts.length / 2 - 1; - (t.midX = t.segpts[a]), (t.midY = t.segpts[a + 1]); - } - }), - (ts.checkForInvalidEdgeWarning = function (e) { - var t = e[0]._private.rscratch; - t.nodesOverlap || (M(t.startX) && M(t.startY) && M(t.endX) && M(t.endY)) - ? (t.loggedErr = !1) - : t.loggedErr || - ((t.loggedErr = !0), - je( - 'Edge `' + - e.id() + - '` has invalid endpoints and so it is impossible to draw. Adjust your edge style (e.g. control points) accordingly or use an alternative edge type. This is expected behaviour when the source node and the target node overlap.', - )); - }), - (ts.findEdgeControlPoints = function (e) { - var t = this; - if (e && 0 !== e.length) { - for ( - var n = this, - r = n.cy.hasCompoundNodes(), - o = { - map: new Be(), - get: function (e) { - var t = this.map.get(e[0]); - return null != t ? t.get(e[1]) : null; - }, - set: function (e, t) { - var n = this.map.get(e[0]); - null == n && ((n = new Be()), this.map.set(e[0], n)), n.set(e[1], t); - }, - }, - i = [], - a = [], - s = 0; - s < e.length; - s++ - ) { - var l = e[s], - c = l._private, - u = l.pstyle('curve-style').value; - if (!l.removed() && l.takesUpSpace()) - if ('haystack' !== u) { - var d = - 'unbundled-bezier' === u || - 'segments' === u || - 'straight' === u || - 'straight-triangle' === u || - 'taxi' === u, - f = 'unbundled-bezier' === u || 'bezier' === u, - h = c.source, - p = c.target, - v = [h.poolIndex(), p.poolIndex()].sort(), - g = o.get(v); - null == g && ((g = { eles: [] }), o.set(v, g), i.push(v)), - g.eles.push(l), - d && (g.hasUnbundled = !0), - f && (g.hasBezier = !0); - } else a.push(l); - } - for ( - var m = function (e) { - var a = i[e], - s = o.get(a), - l = void 0; - if (!s.hasUnbundled) { - var c = s.eles[0].parallelEdges().filter(function (e) { - return e.isBundledBezier(); - }); - Re(s.eles), - c.forEach(function (e) { - return s.eles.push(e); - }), - s.eles.sort(function (e, t) { - return e.poolIndex() - t.poolIndex(); - }); - } - var u = s.eles[0], - d = u.source(), - f = u.target(); - if (d.poolIndex() > f.poolIndex()) { - var h = d; - (d = f), (f = h); - } - var p = (s.srcPos = d.position()), - v = (s.tgtPos = f.position()), - g = (s.srcW = d.outerWidth()), - m = (s.srcH = d.outerHeight()), - y = (s.tgtW = f.outerWidth()), - b = (s.tgtH = f.outerHeight()), - x = (s.srcShape = n.nodeShapes[t.getNodeShape(d)]), - w = (s.tgtShape = n.nodeShapes[t.getNodeShape(f)]); - s.dirCounts = { - north: 0, - west: 0, - south: 0, - east: 0, - northwest: 0, - southwest: 0, - northeast: 0, - southeast: 0, - }; - for (var E = 0; E < s.eles.length; E++) { - var k = s.eles[E], - _ = k[0]._private.rscratch, - S = k.pstyle('curve-style').value, - P = 'unbundled-bezier' === S || 'segments' === S || 'taxi' === S, - C = !d.same(k.source()); - if (!s.calculatedIntersection && d !== f && (s.hasBezier || s.hasUnbundled)) { - s.calculatedIntersection = !0; - var j = x.intersectLine(p.x, p.y, g, m, v.x, v.y, 0), - T = (s.srcIntn = j), - D = w.intersectLine(v.x, v.y, y, b, p.x, p.y, 0), - N = (s.tgtIntn = D), - O = (s.intersectionPts = { x1: j[0], x2: D[0], y1: j[1], y2: D[1] }), - A = (s.posPts = { x1: p.x, x2: v.x, y1: p.y, y2: v.y }), - R = D[1] - j[1], - L = D[0] - j[0], - I = Math.sqrt(L * L + R * R), - B = (s.vector = { x: L, y: R }), - F = (s.vectorNorm = { x: B.x / I, y: B.y / I }), - z = { x: -F.y, y: F.x }; - (s.nodesOverlap = - !M(I) || - w.checkPoint(j[0], j[1], 0, y, b, v.x, v.y) || - x.checkPoint(D[0], D[1], 0, g, m, p.x, p.y)), - (s.vectorNormInverse = z), - (l = { - nodesOverlap: s.nodesOverlap, - dirCounts: s.dirCounts, - calculatedIntersection: !0, - hasBezier: s.hasBezier, - hasUnbundled: s.hasUnbundled, - eles: s.eles, - srcPos: v, - tgtPos: p, - srcW: y, - srcH: b, - tgtW: g, - tgtH: m, - srcIntn: N, - tgtIntn: T, - srcShape: w, - tgtShape: x, - posPts: { x1: A.x2, y1: A.y2, x2: A.x1, y2: A.y1 }, - intersectionPts: { x1: O.x2, y1: O.y2, x2: O.x1, y2: O.y1 }, - vector: { x: -B.x, y: -B.y }, - vectorNorm: { x: -F.x, y: -F.y }, - vectorNormInverse: { x: -z.x, y: -z.y }, - }); - } - var V = C ? l : s; - (_.nodesOverlap = V.nodesOverlap), - (_.srcIntn = V.srcIntn), - (_.tgtIntn = V.tgtIntn), - r && - (d.isParent() || d.isChild() || f.isParent() || f.isChild()) && - (d.parents().anySame(f) || f.parents().anySame(d) || (d.same(f) && d.isParent())) - ? t.findCompoundLoopPoints(k, V, E, P) - : d === f - ? t.findLoopPoints(k, V, E, P) - : 'segments' === S - ? t.findSegmentsPoints(k, V) - : 'taxi' === S - ? t.findTaxiPoints(k, V) - : 'straight' === S || (!P && s.eles.length % 2 == 1 && E === Math.floor(s.eles.length / 2)) - ? t.findStraightEdgePoints(k) - : t.findBezierPoints(k, V, E, P, C), - t.findEndpoints(k), - t.tryToCorrectInvalidPoints(k, V), - t.checkForInvalidEdgeWarning(k), - t.storeAllpts(k), - t.storeEdgeProjections(k), - t.calculateArrowAngles(k), - t.recalculateEdgeLabelProjections(k), - t.calculateLabelAngles(k); - } - }, - y = 0; - y < i.length; - y++ - ) - m(y); - this.findHaystackPoints(a); - } - }), - (ts.getSegmentPoints = function (e) { - var t = e[0]._private.rscratch; - if ('segments' === t.edgeType) return this.recalculateRenderedStyle(e), ns(t.segpts); - }), - (ts.getControlPoints = function (e) { - var t = e[0]._private.rscratch, - n = t.edgeType; - if ('bezier' === n || 'multibezier' === n || 'self' === n || 'compound' === n) - return this.recalculateRenderedStyle(e), ns(t.ctrlpts); - }), - (ts.getEdgeMidpoint = function (e) { - var t = e[0]._private.rscratch; - return this.recalculateRenderedStyle(e), { x: t.midX, y: t.midY }; - }); - var rs = { - manualEndptToPx: function (e, t) { - var n = e.position(), - r = e.outerWidth(), - o = e.outerHeight(); - if (2 === t.value.length) { - var i = [t.pfValue[0], t.pfValue[1]]; - return ( - '%' === t.units[0] && (i[0] = i[0] * r), - '%' === t.units[1] && (i[1] = i[1] * o), - (i[0] += n.x), - (i[1] += n.y), - i - ); - } - var a = t.pfValue[0]; - a = -Math.PI / 2 + a; - var s = 2 * Math.max(r, o), - l = [n.x + Math.cos(a) * s, n.y + Math.sin(a) * s]; - return this.nodeShapes[this.getNodeShape(e)].intersectLine(n.x, n.y, r, o, l[0], l[1], 0); - }, - findEndpoints: function (e) { - var t, - n, - r, - o, - i, - a = this, - s = e.source()[0], - l = e.target()[0], - c = s.position(), - u = l.position(), - d = e.pstyle('target-arrow-shape').value, - f = e.pstyle('source-arrow-shape').value, - h = e.pstyle('target-distance-from-node').pfValue, - p = e.pstyle('source-distance-from-node').pfValue, - v = e.pstyle('curve-style').value, - g = e._private.rscratch, - m = g.edgeType, - y = 'self' === m || 'compound' === m, - b = 'bezier' === m || 'multibezier' === m || y, - x = 'bezier' !== m, - w = 'straight' === m || 'segments' === m, - E = 'segments' === m, - k = b || x || w, - _ = y || 'taxi' === v, - S = e.pstyle('source-endpoint'), - P = _ ? 'outside-to-node' : S.value, - C = e.pstyle('target-endpoint'), - j = _ ? 'outside-to-node' : C.value; - if (((g.srcManEndpt = S), (g.tgtManEndpt = C), b)) { - var T = [g.ctrlpts[0], g.ctrlpts[1]]; - (n = x ? [g.ctrlpts[g.ctrlpts.length - 2], g.ctrlpts[g.ctrlpts.length - 1]] : T), (r = T); - } else if (w) { - var D = E ? g.segpts.slice(0, 2) : [u.x, u.y]; - (n = E ? g.segpts.slice(g.segpts.length - 2) : [c.x, c.y]), (r = D); - } - if ('inside-to-node' === j) t = [u.x, u.y]; - else if (C.units) t = this.manualEndptToPx(l, C); - else if ('outside-to-line' === j) t = g.tgtIntn; - else if ( - ('outside-to-node' === j || 'outside-to-node-or-label' === j - ? (o = n) - : ('outside-to-line' !== j && 'outside-to-line-or-label' !== j) || (o = [c.x, c.y]), - (t = a.nodeShapes[this.getNodeShape(l)].intersectLine( - u.x, - u.y, - l.outerWidth(), - l.outerHeight(), - o[0], - o[1], - 0, - )), - 'outside-to-node-or-label' === j || 'outside-to-line-or-label' === j) - ) { - var N = l._private.rscratch, - O = N.labelWidth, - A = N.labelHeight, - R = N.labelX, - L = N.labelY, - I = O / 2, - B = A / 2, - F = l.pstyle('text-valign').value; - 'top' === F ? (L -= B) : 'bottom' === F && (L += B); - var z = l.pstyle('text-halign').value; - 'left' === z ? (R -= I) : 'right' === z && (R += I); - var V = Lt(o[0], o[1], [R - I, L - B, R + I, L - B, R + I, L + B, R - I, L + B], u.x, u.y); - if (V.length > 0) { - var G = c, - H = ut(G, it(t)), - W = ut(G, it(V)), - U = H; - if ((W < H && ((t = V), (U = W)), V.length > 2)) ut(G, { x: V[2], y: V[3] }) < U && (t = [V[2], V[3]]); - } - } - var q = It(t, n, a.arrowShapes[d].spacing(e) + h), - Y = It(t, n, a.arrowShapes[d].gap(e) + h); - if (((g.endX = Y[0]), (g.endY = Y[1]), (g.arrowEndX = q[0]), (g.arrowEndY = q[1]), 'inside-to-node' === P)) - t = [c.x, c.y]; - else if (S.units) t = this.manualEndptToPx(s, S); - else if ('outside-to-line' === P) t = g.srcIntn; - else if ( - ('outside-to-node' === P || 'outside-to-node-or-label' === P - ? (i = r) - : ('outside-to-line' !== P && 'outside-to-line-or-label' !== P) || (i = [u.x, u.y]), - (t = a.nodeShapes[this.getNodeShape(s)].intersectLine( - c.x, - c.y, - s.outerWidth(), - s.outerHeight(), - i[0], - i[1], - 0, - )), - 'outside-to-node-or-label' === P || 'outside-to-line-or-label' === P) - ) { - var X = s._private.rscratch, - $ = X.labelWidth, - K = X.labelHeight, - Z = X.labelX, - Q = X.labelY, - J = $ / 2, - ee = K / 2, - te = s.pstyle('text-valign').value; - 'top' === te ? (Q -= ee) : 'bottom' === te && (Q += ee); - var ne = s.pstyle('text-halign').value; - 'left' === ne ? (Z -= J) : 'right' === ne && (Z += J); - var re = Lt(i[0], i[1], [Z - J, Q - ee, Z + J, Q - ee, Z + J, Q + ee, Z - J, Q + ee], c.x, c.y); - if (re.length > 0) { - var oe = u, - ie = ut(oe, it(t)), - ae = ut(oe, it(re)), - se = ie; - if ((ae < ie && ((t = [re[0], re[1]]), (se = ae)), re.length > 2)) - ut(oe, { x: re[2], y: re[3] }) < se && (t = [re[2], re[3]]); - } - } - var le = It(t, r, a.arrowShapes[f].spacing(e) + p), - ce = It(t, r, a.arrowShapes[f].gap(e) + p); - (g.startX = ce[0]), - (g.startY = ce[1]), - (g.arrowStartX = le[0]), - (g.arrowStartY = le[1]), - k && (M(g.startX) && M(g.startY) && M(g.endX) && M(g.endY) ? (g.badLine = !1) : (g.badLine = !0)); - }, - getSourceEndpoint: function (e) { - var t = e[0]._private.rscratch; - return ( - this.recalculateRenderedStyle(e), - 'haystack' === t.edgeType - ? { x: t.haystackPts[0], y: t.haystackPts[1] } - : { x: t.arrowStartX, y: t.arrowStartY } - ); - }, - getTargetEndpoint: function (e) { - var t = e[0]._private.rscratch; - return ( - this.recalculateRenderedStyle(e), - 'haystack' === t.edgeType - ? { x: t.haystackPts[2], y: t.haystackPts[3] } - : { x: t.arrowEndX, y: t.arrowEndY } - ); - }, - }, - os = {}; - function is(e, t, n) { - for ( - var r = function (e, t, n, r) { - return ft(e, t, n, r); - }, - o = t._private.rstyle.bezierPts, - i = 0; - i < e.bezierProjPcts.length; - i++ - ) { - var a = e.bezierProjPcts[i]; - o.push({ x: r(n[0], n[2], n[4], a), y: r(n[1], n[3], n[5], a) }); - } - } - (os.storeEdgeProjections = function (e) { - var t = e._private, - n = t.rscratch, - r = n.edgeType; - if ( - ((t.rstyle.bezierPts = null), - (t.rstyle.linePts = null), - (t.rstyle.haystackPts = null), - 'multibezier' === r || 'bezier' === r || 'self' === r || 'compound' === r) - ) { - t.rstyle.bezierPts = []; - for (var o = 0; o + 5 < n.allpts.length; o += 4) is(this, e, n.allpts.slice(o, o + 6)); - } else if ('segments' === r) { - var i = (t.rstyle.linePts = []); - for (o = 0; o + 1 < n.allpts.length; o += 2) i.push({ x: n.allpts[o], y: n.allpts[o + 1] }); - } else if ('haystack' === r) { - var a = n.haystackPts; - t.rstyle.haystackPts = [ - { x: a[0], y: a[1] }, - { x: a[2], y: a[3] }, - ]; - } - t.rstyle.arrowWidth = - this.getArrowWidth(e.pstyle('width').pfValue, e.pstyle('arrow-scale').value) * this.arrowShapeWidth; - }), - (os.recalculateEdgeProjections = function (e) { - this.findEdgeControlPoints(e); - }); - var as = { - recalculateNodeLabelProjection: function (e) { - var t = e.pstyle('label').strValue; - if (!F(t)) { - var n, - r, - o = e._private, - i = e.width(), - a = e.height(), - s = e.padding(), - l = e.position(), - c = e.pstyle('text-halign').strValue, - u = e.pstyle('text-valign').strValue, - d = o.rscratch, - f = o.rstyle; - switch (c) { - case 'left': - n = l.x - i / 2 - s; - break; - case 'right': - n = l.x + i / 2 + s; - break; - default: - n = l.x; - } - switch (u) { - case 'top': - r = l.y - a / 2 - s; - break; - case 'bottom': - r = l.y + a / 2 + s; - break; - default: - r = l.y; - } - (d.labelX = n), - (d.labelY = r), - (f.labelX = n), - (f.labelY = r), - this.calculateLabelAngles(e), - this.applyLabelDimensions(e); - } - }, - }, - ss = function (e, t) { - var n = Math.atan(t / e); - return 0 === e && n < 0 && (n *= -1), n; - }, - ls = function (e, t) { - var n = t.x - e.x, - r = t.y - e.y; - return ss(n, r); - }; - (as.recalculateEdgeLabelProjections = function (e) { - var t, - n = e._private, - r = n.rscratch, - o = this, - i = { - mid: e.pstyle('label').strValue, - source: e.pstyle('source-label').strValue, - target: e.pstyle('target-label').strValue, - }; - if (i.mid || i.source || i.target) { - t = { x: r.midX, y: r.midY }; - var a = function (e, t, r) { - Ie(n.rscratch, e, t, r), Ie(n.rstyle, e, t, r); - }; - a('labelX', null, t.x), a('labelY', null, t.y); - var s = ss(r.midDispX, r.midDispY); - a('labelAutoAngle', null, s); - var l = function e() { - if (e.cache) return e.cache; - for (var t = [], i = 0; i + 5 < r.allpts.length; i += 4) { - var a = { x: r.allpts[i], y: r.allpts[i + 1] }, - s = { x: r.allpts[i + 2], y: r.allpts[i + 3] }, - l = { x: r.allpts[i + 4], y: r.allpts[i + 5] }; - t.push({ p0: a, p1: s, p2: l, startDist: 0, length: 0, segments: [] }); - } - var c = n.rstyle.bezierPts, - u = o.bezierProjPcts.length; - function d(e, t, n, r, o) { - var i = ct(t, n), - a = e.segments[e.segments.length - 1], - s = { p0: t, p1: n, t0: r, t1: o, startDist: a ? a.startDist + a.length : 0, length: i }; - e.segments.push(s), (e.length += i); - } - for (var f = 0; f < t.length; f++) { - var h = t[f], - p = t[f - 1]; - p && (h.startDist = p.startDist + p.length), d(h, h.p0, c[f * u], 0, o.bezierProjPcts[0]); - for (var v = 0; v < u - 1; v++) - d(h, c[f * u + v], c[f * u + v + 1], o.bezierProjPcts[v], o.bezierProjPcts[v + 1]); - d(h, c[f * u + u - 1], h.p2, o.bezierProjPcts[u - 1], 1); - } - return (e.cache = t); - }, - c = function (n) { - var o, - s = 'source' === n; - if (i[n]) { - var c = e.pstyle(n + '-text-offset').pfValue; - switch (r.edgeType) { - case 'self': - case 'compound': - case 'bezier': - case 'multibezier': - for (var u, d = l(), f = 0, h = 0, p = 0; p < d.length; p++) { - for (var v = d[s ? p : d.length - 1 - p], g = 0; g < v.segments.length; g++) { - var m = v.segments[s ? g : v.segments.length - 1 - g], - y = p === d.length - 1 && g === v.segments.length - 1; - if (((f = h), (h += m.length) >= c || y)) { - u = { cp: v, segment: m }; - break; - } - } - if (u) break; - } - var b = u.cp, - x = u.segment, - w = (c - f) / x.length, - E = x.t1 - x.t0, - k = s ? x.t0 + E * w : x.t1 - E * w; - (k = pt(0, k, 1)), - (t = ht(b.p0, b.p1, b.p2, k)), - (o = (function (e, t, n, r) { - var o = pt(0, r - 0.001, 1), - i = pt(0, r + 0.001, 1), - a = ht(e, t, n, o), - s = ht(e, t, n, i); - return ls(a, s); - })(b.p0, b.p1, b.p2, k)); - break; - case 'straight': - case 'segments': - case 'haystack': - for ( - var _, S, P, C, j = 0, T = r.allpts.length, D = 0; - D + 3 < T && - (s - ? ((P = { x: r.allpts[D], y: r.allpts[D + 1] }), - (C = { x: r.allpts[D + 2], y: r.allpts[D + 3] })) - : ((P = { x: r.allpts[T - 2 - D], y: r.allpts[T - 1 - D] }), - (C = { x: r.allpts[T - 4 - D], y: r.allpts[T - 3 - D] })), - (S = j), - !((j += _ = ct(P, C)) >= c)); - D += 2 - ); - var N = (c - S) / _; - (N = pt(0, N, 1)), - (t = (function (e, t, n, r) { - var o = t.x - e.x, - i = t.y - e.y, - a = ct(e, t), - s = o / a, - l = i / a; - return (n = n ?? 0), (r = null != r ? r : n * a), { x: e.x + s * r, y: e.y + l * r }; - })(P, C, N)), - (o = ls(P, C)); - } - a('labelX', n, t.x), a('labelY', n, t.y), a('labelAutoAngle', n, o); - } - }; - c('source'), c('target'), this.applyLabelDimensions(e); - } - }), - (as.applyLabelDimensions = function (e) { - this.applyPrefixedLabelDimensions(e), - e.isEdge() && - (this.applyPrefixedLabelDimensions(e, 'source'), this.applyPrefixedLabelDimensions(e, 'target')); - }), - (as.applyPrefixedLabelDimensions = function (e, t) { - var n = e._private, - r = this.getLabelText(e, t), - o = this.calculateLabelDimensions(e, r), - i = e.pstyle('line-height').pfValue, - a = e.pstyle('text-wrap').strValue, - s = Le(n.rscratch, 'labelWrapCachedLines', t) || [], - l = 'wrap' !== a ? 1 : Math.max(s.length, 1), - c = o.height / l, - u = c * i, - d = o.width, - f = o.height + (l - 1) * (i - 1) * c; - Ie(n.rstyle, 'labelWidth', t, d), - Ie(n.rscratch, 'labelWidth', t, d), - Ie(n.rstyle, 'labelHeight', t, f), - Ie(n.rscratch, 'labelHeight', t, f), - Ie(n.rscratch, 'labelLineHeight', t, u); - }), - (as.getLabelText = function (e, t) { - var n = e._private, - r = t ? t + '-' : '', - o = e.pstyle(r + 'label').strValue, - i = e.pstyle('text-transform').value, - a = function (e, r) { - return r ? (Ie(n.rscratch, e, t, r), r) : Le(n.rscratch, e, t); - }; - if (!o) return ''; - 'none' == i || ('uppercase' == i ? (o = o.toUpperCase()) : 'lowercase' == i && (o = o.toLowerCase())); - var s = e.pstyle('text-wrap').value; - if ('wrap' === s) { - var l = a('labelKey'); - if (null != l && a('labelWrapKey') === l) return a('labelWrapCachedText'); - for ( - var c = o.split('\n'), - u = e.pstyle('text-max-width').pfValue, - d = 'anywhere' === e.pstyle('text-overflow-wrap').value, - f = [], - h = /[\s\u200b]+/, - p = d ? '' : ' ', - v = 0; - v < c.length; - v++ - ) { - var g = c[v], - m = this.calculateLabelDimensions(e, g).width; - if (d) { - var y = g.split('').join('\u200b'); - g = y; - } - if (m > u) { - for (var b = g.split(h), x = '', w = 0; w < b.length; w++) { - var E = b[w], - k = 0 === x.length ? E : x + p + E; - this.calculateLabelDimensions(e, k).width <= u ? (x += E + p) : (x && f.push(x), (x = E + p)); - } - x.match(/^[\s\u200b]+$/) || f.push(x); - } else f.push(g); - } - a('labelWrapCachedLines', f), (o = a('labelWrapCachedText', f.join('\n'))), a('labelWrapKey', l); - } else if ('ellipsis' === s) { - var _ = e.pstyle('text-max-width').pfValue, - S = '', - P = !1; - if (this.calculateLabelDimensions(e, o).width < _) return o; - for (var C = 0; C < o.length; C++) { - if (this.calculateLabelDimensions(e, S + o[C] + '\u2026').width > _) break; - (S += o[C]), C === o.length - 1 && (P = !0); - } - return P || (S += '\u2026'), S; - } - return o; - }), - (as.getLabelJustification = function (e) { - var t = e.pstyle('text-justification').strValue, - n = e.pstyle('text-halign').strValue; - if ('auto' !== t) return t; - if (!e.isNode()) return 'center'; - switch (n) { - case 'left': - return 'right'; - case 'right': - return 'left'; - default: - return 'center'; - } - }), - (as.calculateLabelDimensions = function (e, t) { - var n = ve(t, e._private.labelDimsKey), - r = this.labelDimCache || (this.labelDimCache = []), - o = r[n]; - if (null != o) return o; - var i = e.pstyle('font-style').strValue, - a = e.pstyle('font-size').pfValue, - s = e.pstyle('font-family').strValue, - l = e.pstyle('font-weight').strValue, - c = this.labelCalcCanvas, - u = this.labelCalcCanvasContext; - if (!c) { - (c = this.labelCalcCanvas = document.createElement('canvas')), - (u = this.labelCalcCanvasContext = c.getContext('2d')); - var d = c.style; - (d.position = 'absolute'), - (d.left = '-9999px'), - (d.top = '-9999px'), - (d.zIndex = '-1'), - (d.visibility = 'hidden'), - (d.pointerEvents = 'none'); - } - u.font = ''.concat(i, ' ').concat(l, ' ').concat(a, 'px ').concat(s); - for (var f = 0, h = 0, p = t.split('\n'), v = 0; v < p.length; v++) { - var g = p[v], - m = u.measureText(g), - y = Math.ceil(m.width), - b = a; - (f = Math.max(y, f)), (h += b); - } - return (f += 0), (h += 0), (r[n] = { width: f, height: h }); - }), - (as.calculateLabelAngle = function (e, t) { - var n = e._private.rscratch, - r = e.isEdge(), - o = t ? t + '-' : '', - i = e.pstyle(o + 'text-rotation'), - a = i.strValue; - return 'none' === a ? 0 : r && 'autorotate' === a ? n.labelAutoAngle : 'autorotate' === a ? 0 : i.pfValue; - }), - (as.calculateLabelAngles = function (e) { - var t = this, - n = e.isEdge(), - r = e._private.rscratch; - (r.labelAngle = t.calculateLabelAngle(e)), - n && - ((r.sourceLabelAngle = t.calculateLabelAngle(e, 'source')), - (r.targetLabelAngle = t.calculateLabelAngle(e, 'target'))); - }); - var cs = {}, - us = !1; - cs.getNodeShape = function (e) { - var t = e.pstyle('shape').value; - if ('cutrectangle' === t && (e.width() < 28 || e.height() < 28)) - return ( - us || - (je('The `cutrectangle` node shape can not be used at small sizes so `rectangle` is used instead'), - (us = !0)), - 'rectangle' - ); - if (e.isParent()) - return 'rectangle' === t || - 'roundrectangle' === t || - 'round-rectangle' === t || - 'cutrectangle' === t || - 'cut-rectangle' === t || - 'barrel' === t - ? t - : 'rectangle'; - if ('polygon' === t) { - var n = e.pstyle('shape-polygon-points').value; - return this.nodeShapes.makePolygon(n).name; - } - return t; - }; - var ds = { - registerCalculationListeners: function () { - var e = this.cy, - t = e.collection(), - n = this, - r = function (e) { - var n = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1]; - if ((t.merge(e), n)) - for (var r = 0; r < e.length; r++) { - var o = e[r]._private.rstyle; - (o.clean = !1), (o.cleanConnected = !1); - } - }; - n.binder(e) - .on('bounds.* dirty.*', function (e) { - var t = e.target; - r(t); - }) - .on('style.* background.*', function (e) { - var t = e.target; - r(t, !1); - }); - var o = function (o) { - if (o) { - var i = n.onUpdateEleCalcsFns; - t.cleanStyle(); - for (var a = 0; a < t.length; a++) { - var s = t[a], - l = s._private.rstyle; - s.isNode() && !l.cleanConnected && (r(s.connectedEdges()), (l.cleanConnected = !0)); - } - if (i) - for (var c = 0; c < i.length; c++) { - (0, i[c])(o, t); - } - n.recalculateRenderedStyle(t), (t = e.collection()); - } - }; - (n.flushRenderedStyleQueue = function () { - o(!0); - }), - n.beforeRender(o, n.beforeRenderPriorities.eleCalcs); - }, - onUpdateEleCalcs: function (e) { - (this.onUpdateEleCalcsFns = this.onUpdateEleCalcsFns || []).push(e); - }, - recalculateRenderedStyle: function (e, t) { - var n = function (e) { - return e._private.rstyle.cleanConnected; - }, - r = [], - o = []; - if (!this.destroyed) { - void 0 === t && (t = !0); - for (var i = 0; i < e.length; i++) { - var a = e[i], - s = a._private, - l = s.rstyle; - !a.isEdge() || (n(a.source()) && n(a.target())) || (l.clean = !1), - (t && l.clean) || - a.removed() || - ('none' !== a.pstyle('display').value && - ('nodes' === s.group ? o.push(a) : r.push(a), (l.clean = !0))); - } - for (var c = 0; c < o.length; c++) { - var u = o[c], - d = u._private.rstyle, - f = u.position(); - this.recalculateNodeLabelProjection(u), - (d.nodeX = f.x), - (d.nodeY = f.y), - (d.nodeW = u.pstyle('width').pfValue), - (d.nodeH = u.pstyle('height').pfValue); - } - this.recalculateEdgeProjections(r); - for (var h = 0; h < r.length; h++) { - var p = r[h]._private, - v = p.rstyle, - g = p.rscratch; - (v.srcX = g.arrowStartX), - (v.srcY = g.arrowStartY), - (v.tgtX = g.arrowEndX), - (v.tgtY = g.arrowEndY), - (v.midX = g.midX), - (v.midY = g.midY), - (v.labelAngle = g.labelAngle), - (v.sourceLabelAngle = g.sourceLabelAngle), - (v.targetLabelAngle = g.targetLabelAngle); - } - } - }, - }, - fs = { - updateCachedGrabbedEles: function () { - var e = this.cachedZSortedEles; - if (e) { - (e.drag = []), (e.nondrag = []); - for (var t = [], n = 0; n < e.length; n++) { - var r = (o = e[n])._private.rscratch; - o.grabbed() && !o.isParent() ? t.push(o) : r.inDragLayer ? e.drag.push(o) : e.nondrag.push(o); - } - for (n = 0; n < t.length; n++) { - var o = t[n]; - e.drag.push(o); - } - } - }, - invalidateCachedZSortedEles: function () { - this.cachedZSortedEles = null; - }, - getCachedZSortedEles: function (e) { - if (e || !this.cachedZSortedEles) { - var t = this.cy.mutableElements().toArray(); - t.sort(Qo), - (t.interactive = t.filter(function (e) { - return e.interactive(); - })), - (this.cachedZSortedEles = t), - this.updateCachedGrabbedEles(); - } else t = this.cachedZSortedEles; - return t; - }, - }, - hs = {}; - [Ja, es, ts, rs, os, as, cs, ds, fs].forEach(function (e) { - Q(hs, e); - }); - var ps = { - getCachedImage: function (e, t, n) { - var r = (this.imageCache = this.imageCache || {}), - o = r[e]; - if (o) return o.image.complete || o.image.addEventListener('load', n), o.image; - var i = ((o = r[e] = r[e] || {}).image = new Image()); - i.addEventListener('load', n), - i.addEventListener('error', function () { - i.error = !0; - }); - var a = 'data:'; - return e.substring(0, 5).toLowerCase() === a || (i.crossOrigin = t), (i.src = e), i; - }, - }, - vs = { - registerBinding: function (e, t, n, r) { - var o = Array.prototype.slice.apply(arguments, [1]), - i = this.binder(e); - return i.on.apply(i, o); - }, - }; - (vs.binder = function (e) { - var t, - n = this, - r = - e === window || - e === document || - e === document.body || - ((t = e), 'undefined' != typeof HTMLElement && t instanceof HTMLElement); - if (null == n.supportsPassiveEvents) { - var o = !1; - try { - var i = Object.defineProperty({}, 'passive', { - get: function () { - return (o = !0), !0; - }, - }); - window.addEventListener('test', null, i); - } catch (s) {} - n.supportsPassiveEvents = o; - } - var a = function (t, o, i) { - var a = Array.prototype.slice.call(arguments); - return ( - r && n.supportsPassiveEvents && (a[2] = { capture: null != i && i, passive: !1, once: !1 }), - n.bindings.push({ target: e, args: a }), - (e.addEventListener || e.on).apply(e, a), - this - ); - }; - return { on: a, addEventListener: a, addListener: a, bind: a }; - }), - (vs.nodeIsDraggable = function (e) { - return e && e.isNode() && !e.locked() && e.grabbable(); - }), - (vs.nodeIsGrabbable = function (e) { - return this.nodeIsDraggable(e) && e.interactive(); - }), - (vs.load = function () { - var e = this, - t = function (e) { - return e.selected(); - }, - n = function (t, n, r, o) { - null == t && (t = e.cy); - for (var i = 0; i < n.length; i++) { - var a = n[i]; - t.emit({ originalEvent: r, type: a, position: o }); - } - }, - r = function (e) { - return e.shiftKey || e.metaKey || e.ctrlKey; - }, - o = function (t, n) { - var r = !0; - if (e.cy.hasCompoundNodes() && t && t.pannable()) - for (var o = 0; n && o < n.length; o++) { - if ((t = n[o]).isNode() && t.isParent() && !t.pannable()) { - r = !1; - break; - } - } - else r = !0; - return r; - }, - i = function (e) { - e[0]._private.rscratch.inDragLayer = !0; - }, - a = function (e) { - e[0]._private.rscratch.isGrabTarget = !0; - }, - s = function (e, t) { - var n = t.addToList; - n.has(e) || - !e.grabbable() || - e.locked() || - (n.merge(e), - (function (e) { - e[0]._private.grabbed = !0; - })(e)); - }, - l = function (t, n) { - n = n || {}; - var r = t.cy().hasCompoundNodes(); - n.inDragLayer && - (t.forEach(i), - t - .neighborhood() - .stdFilter(function (e) { - return !r || e.isEdge(); - }) - .forEach(i)), - n.addToList && - t.forEach(function (e) { - s(e, n); - }), - (function (e, t) { - if (e.cy().hasCompoundNodes() && (null != t.inDragLayer || null != t.addToList)) { - var n = e.descendants(); - t.inDragLayer && (n.forEach(i), n.connectedEdges().forEach(i)), t.addToList && s(n, t); - } - })(t, n), - f(t, { inDragLayer: n.inDragLayer }), - e.updateCachedGrabbedEles(); - }, - u = l, - d = function (t) { - t && - (e.getCachedZSortedEles().forEach(function (e) { - !(function (e) { - e[0]._private.grabbed = !1; - })(e), - (function (e) { - e[0]._private.rscratch.inDragLayer = !1; - })(e), - (function (e) { - e[0]._private.rscratch.isGrabTarget = !1; - })(e); - }), - e.updateCachedGrabbedEles()); - }, - f = function (e, t) { - if ((null != t.inDragLayer || null != t.addToList) && e.cy().hasCompoundNodes()) { - var n = e.ancestors().orphans(); - if (!n.same(e)) { - var r = n.descendants().spawnSelf().merge(n).unmerge(e).unmerge(e.descendants()), - o = r.connectedEdges(); - t.inDragLayer && (o.forEach(i), r.forEach(i)), - t.addToList && - r.forEach(function (e) { - s(e, t); - }); - } - } - }, - h = function () { - null != document.activeElement && null != document.activeElement.blur && document.activeElement.blur(); - }, - p = 'undefined' != typeof MutationObserver, - v = 'undefined' != typeof ResizeObserver; - p - ? ((e.removeObserver = new MutationObserver(function (t) { - for (var n = 0; n < t.length; n++) { - var r = t[n].removedNodes; - if (r) - for (var o = 0; o < r.length; o++) { - if (r[o] === e.container) { - e.destroy(); - break; - } - } - } - })), - e.container.parentNode && e.removeObserver.observe(e.container.parentNode, { childList: !0 })) - : e.registerBinding(e.container, 'DOMNodeRemoved', function (t) { - e.destroy(); - }); - var g = c.default(function () { - e.cy.resize(); - }, 100); - p && ((e.styleObserver = new MutationObserver(g)), e.styleObserver.observe(e.container, { attributes: !0 })), - e.registerBinding(window, 'resize', g), - v && ((e.resizeObserver = new ResizeObserver(g)), e.resizeObserver.observe(e.container)); - var m = function () { - e.invalidateContainerClientCoordsCache(); - }; - !(function (e, t) { - for (; null != e; ) t(e), (e = e.parentNode); - })(e.container, function (t) { - e.registerBinding(t, 'transitionend', m), - e.registerBinding(t, 'animationend', m), - e.registerBinding(t, 'scroll', m); - }), - e.registerBinding(e.container, 'contextmenu', function (e) { - e.preventDefault(); - }); - var y, - b, - x, - w = function (t) { - for ( - var n = e.findContainerClientCoords(), - r = n[0], - o = n[1], - i = n[2], - a = n[3], - s = t.touches ? t.touches : [t], - l = !1, - c = 0; - c < s.length; - c++ - ) { - var u = s[c]; - if (r <= u.clientX && u.clientX <= r + i && o <= u.clientY && u.clientY <= o + a) { - l = !0; - break; - } - } - if (!l) return !1; - for (var d = e.container, f = t.target.parentNode, h = !1; f; ) { - if (f === d) { - h = !0; - break; - } - f = f.parentNode; - } - return !!h; - }; - e.registerBinding( - e.container, - 'mousedown', - function (t) { - if (w(t)) { - t.preventDefault(), h(), (e.hoverData.capture = !0), (e.hoverData.which = t.which); - var r = e.cy, - o = [t.clientX, t.clientY], - i = e.projectIntoViewport(o[0], o[1]), - s = e.selection, - c = e.findNearestElements(i[0], i[1], !0, !1), - d = c[0], - f = e.dragData.possibleDragElements; - (e.hoverData.mdownPos = i), (e.hoverData.mdownGPos = o); - if (3 == t.which) { - e.hoverData.cxtStarted = !0; - var p = { originalEvent: t, type: 'cxttapstart', position: { x: i[0], y: i[1] } }; - d ? (d.activate(), d.emit(p), (e.hoverData.down = d)) : r.emit(p), - (e.hoverData.downTime = new Date().getTime()), - (e.hoverData.cxtDragged = !1); - } else if (1 == t.which) { - if ((d && d.activate(), null != d && e.nodeIsGrabbable(d))) { - var v = function (e) { - return { originalEvent: t, type: e, position: { x: i[0], y: i[1] } }; - }; - if ((a(d), d.selected())) { - f = e.dragData.possibleDragElements = r.collection(); - var g = r.$(function (t) { - return t.isNode() && t.selected() && e.nodeIsGrabbable(t); - }); - l(g, { addToList: f }), - d.emit(v('grabon')), - g.forEach(function (e) { - e.emit(v('grab')); - }); - } else - (f = e.dragData.possibleDragElements = r.collection()), - u(d, { addToList: f }), - d.emit(v('grabon')).emit(v('grab')); - e.redrawHint('eles', !0), e.redrawHint('drag', !0); - } - (e.hoverData.down = d), - (e.hoverData.downs = c), - (e.hoverData.downTime = new Date().getTime()), - n(d, ['mousedown', 'tapstart', 'vmousedown'], t, { x: i[0], y: i[1] }), - null == d - ? ((s[4] = 1), - (e.data.bgActivePosistion = { x: i[0], y: i[1] }), - e.redrawHint('select', !0), - e.redraw()) - : d.pannable() && (s[4] = 1), - (e.hoverData.tapholdCancelled = !1), - clearTimeout(e.hoverData.tapholdTimeout), - (e.hoverData.tapholdTimeout = setTimeout(function () { - if (!e.hoverData.tapholdCancelled) { - var n = e.hoverData.down; - n - ? n.emit({ originalEvent: t, type: 'taphold', position: { x: i[0], y: i[1] } }) - : r.emit({ originalEvent: t, type: 'taphold', position: { x: i[0], y: i[1] } }); - } - }, e.tapholdDuration)); - } - (s[0] = s[2] = i[0]), (s[1] = s[3] = i[1]); - } - }, - !1, - ), - e.registerBinding( - window, - 'mousemove', - function (t) { - if (e.hoverData.capture || w(t)) { - var i = !1, - a = e.cy, - s = a.zoom(), - c = [t.clientX, t.clientY], - u = e.projectIntoViewport(c[0], c[1]), - f = e.hoverData.mdownPos, - h = e.hoverData.mdownGPos, - p = e.selection, - v = null; - e.hoverData.draggingEles || - e.hoverData.dragging || - e.hoverData.selecting || - (v = e.findNearestElement(u[0], u[1], !0, !1)); - var g, - m = e.hoverData.last, - y = e.hoverData.down, - b = [u[0] - p[2], u[1] - p[3]], - x = e.dragData.possibleDragElements; - if (h) { - var E = c[0] - h[0], - k = E * E, - _ = c[1] - h[1], - S = k + _ * _; - e.hoverData.isOverThresholdDrag = g = S >= e.desktopTapThreshold2; - } - var P = r(t); - g && (e.hoverData.tapholdCancelled = !0); - (i = !0), n(v, ['mousemove', 'vmousemove', 'tapdrag'], t, { x: u[0], y: u[1] }); - var C = function () { - (e.data.bgActivePosistion = void 0), - e.hoverData.selecting || - a.emit({ originalEvent: t, type: 'boxstart', position: { x: u[0], y: u[1] } }), - (p[4] = 1), - (e.hoverData.selecting = !0), - e.redrawHint('select', !0), - e.redraw(); - }; - if (3 === e.hoverData.which) { - if (g) { - var j = { originalEvent: t, type: 'cxtdrag', position: { x: u[0], y: u[1] } }; - y ? y.emit(j) : a.emit(j), - (e.hoverData.cxtDragged = !0), - (e.hoverData.cxtOver && v === e.hoverData.cxtOver) || - (e.hoverData.cxtOver && - e.hoverData.cxtOver.emit({ - originalEvent: t, - type: 'cxtdragout', - position: { x: u[0], y: u[1] }, - }), - (e.hoverData.cxtOver = v), - v && v.emit({ originalEvent: t, type: 'cxtdragover', position: { x: u[0], y: u[1] } })); - } - } else if (e.hoverData.dragging) { - if (((i = !0), a.panningEnabled() && a.userPanningEnabled())) { - var T; - if (e.hoverData.justStartedPan) { - var D = e.hoverData.mdownPos; - (T = { x: (u[0] - D[0]) * s, y: (u[1] - D[1]) * s }), (e.hoverData.justStartedPan = !1); - } else T = { x: b[0] * s, y: b[1] * s }; - a.panBy(T), a.emit('dragpan'), (e.hoverData.dragged = !0); - } - u = e.projectIntoViewport(t.clientX, t.clientY); - } else if (1 != p[4] || (null != y && !y.pannable())) { - if ( - (y && y.pannable() && y.active() && y.unactivate(), - (y && y.grabbed()) || - v == m || - (m && n(m, ['mouseout', 'tapdragout'], t, { x: u[0], y: u[1] }), - v && n(v, ['mouseover', 'tapdragover'], t, { x: u[0], y: u[1] }), - (e.hoverData.last = v)), - y) - ) - if (g) { - if (a.boxSelectionEnabled() && P) - y && - y.grabbed() && - (d(x), - y.emit('freeon'), - x.emit('free'), - e.dragData.didDrag && (y.emit('dragfreeon'), x.emit('dragfree'))), - C(); - else if (y && y.grabbed() && e.nodeIsDraggable(y)) { - var N = !e.dragData.didDrag; - N && e.redrawHint('eles', !0), - (e.dragData.didDrag = !0), - e.hoverData.draggingEles || l(x, { inDragLayer: !0 }); - var O = { x: 0, y: 0 }; - if (M(b[0]) && M(b[1]) && ((O.x += b[0]), (O.y += b[1]), N)) { - var A = e.hoverData.dragDelta; - A && M(A[0]) && M(A[1]) && ((O.x += A[0]), (O.y += A[1])); - } - (e.hoverData.draggingEles = !0), - x.silentShift(O).emit('position drag'), - e.redrawHint('drag', !0), - e.redraw(); - } - } else - !(function () { - var t = (e.hoverData.dragDelta = e.hoverData.dragDelta || []); - 0 === t.length ? (t.push(b[0]), t.push(b[1])) : ((t[0] += b[0]), (t[1] += b[1])); - })(); - i = !0; - } else if (g) { - if ( - e.hoverData.dragging || - !a.boxSelectionEnabled() || - (!P && a.panningEnabled() && a.userPanningEnabled()) - ) { - if (!e.hoverData.selecting && a.panningEnabled() && a.userPanningEnabled()) { - o(y, e.hoverData.downs) && - ((e.hoverData.dragging = !0), - (e.hoverData.justStartedPan = !0), - (p[4] = 0), - (e.data.bgActivePosistion = it(f)), - e.redrawHint('select', !0), - e.redraw()); - } - } else C(); - y && y.pannable() && y.active() && y.unactivate(); - } - return ( - (p[2] = u[0]), - (p[3] = u[1]), - i ? (t.stopPropagation && t.stopPropagation(), t.preventDefault && t.preventDefault(), !1) : void 0 - ); - } - }, - !1, - ), - e.registerBinding( - window, - 'mouseup', - function (o) { - if (e.hoverData.capture) { - e.hoverData.capture = !1; - var i = e.cy, - a = e.projectIntoViewport(o.clientX, o.clientY), - s = e.selection, - l = e.findNearestElement(a[0], a[1], !0, !1), - c = e.dragData.possibleDragElements, - u = e.hoverData.down, - f = r(o); - if ( - (e.data.bgActivePosistion && (e.redrawHint('select', !0), e.redraw()), - (e.hoverData.tapholdCancelled = !0), - (e.data.bgActivePosistion = void 0), - u && u.unactivate(), - 3 === e.hoverData.which) - ) { - var h = { originalEvent: o, type: 'cxttapend', position: { x: a[0], y: a[1] } }; - if ((u ? u.emit(h) : i.emit(h), !e.hoverData.cxtDragged)) { - var p = { originalEvent: o, type: 'cxttap', position: { x: a[0], y: a[1] } }; - u ? u.emit(p) : i.emit(p); - } - (e.hoverData.cxtDragged = !1), (e.hoverData.which = null); - } else if (1 === e.hoverData.which) { - if ( - (n(l, ['mouseup', 'tapend', 'vmouseup'], o, { x: a[0], y: a[1] }), - e.dragData.didDrag || - e.hoverData.dragged || - e.hoverData.selecting || - e.hoverData.isOverThresholdDrag || - (n(u, ['click', 'tap', 'vclick'], o, { x: a[0], y: a[1] }), - (b = !1), - o.timeStamp - x <= i.multiClickDebounceTime() - ? (y && clearTimeout(y), - (b = !0), - (x = null), - n(u, ['dblclick', 'dbltap', 'vdblclick'], o, { x: a[0], y: a[1] })) - : ((y = setTimeout(function () { - b || n(u, ['oneclick', 'onetap', 'voneclick'], o, { x: a[0], y: a[1] }); - }, i.multiClickDebounceTime())), - (x = o.timeStamp))), - null != u || - e.dragData.didDrag || - e.hoverData.selecting || - e.hoverData.dragged || - r(o) || - (i.$(t).unselect(['tapunselect']), - c.length > 0 && e.redrawHint('eles', !0), - (e.dragData.possibleDragElements = c = i.collection())), - l != u || - e.dragData.didDrag || - e.hoverData.selecting || - (null != l && - l._private.selectable && - (e.hoverData.dragging || - ('additive' === i.selectionType() || f - ? l.selected() - ? l.unselect(['tapunselect']) - : l.select(['tapselect']) - : f || (i.$(t).unmerge(l).unselect(['tapunselect']), l.select(['tapselect']))), - e.redrawHint('eles', !0))), - e.hoverData.selecting) - ) { - var v = i.collection(e.getAllInBox(s[0], s[1], s[2], s[3])); - e.redrawHint('select', !0), - v.length > 0 && e.redrawHint('eles', !0), - i.emit({ type: 'boxend', originalEvent: o, position: { x: a[0], y: a[1] } }); - var g = function (e) { - return e.selectable() && !e.selected(); - }; - 'additive' === i.selectionType() || f || i.$(t).unmerge(v).unselect(), - v.emit('box').stdFilter(g).select().emit('boxselect'), - e.redraw(); - } - if ( - (e.hoverData.dragging && - ((e.hoverData.dragging = !1), e.redrawHint('select', !0), e.redrawHint('eles', !0), e.redraw()), - !s[4]) - ) { - e.redrawHint('drag', !0), e.redrawHint('eles', !0); - var m = u && u.grabbed(); - d(c), - m && - (u.emit('freeon'), - c.emit('free'), - e.dragData.didDrag && (u.emit('dragfreeon'), c.emit('dragfree'))); - } - } - (s[4] = 0), - (e.hoverData.down = null), - (e.hoverData.cxtStarted = !1), - (e.hoverData.draggingEles = !1), - (e.hoverData.selecting = !1), - (e.hoverData.isOverThresholdDrag = !1), - (e.dragData.didDrag = !1), - (e.hoverData.dragged = !1), - (e.hoverData.dragDelta = []), - (e.hoverData.mdownPos = null), - (e.hoverData.mdownGPos = null); - } - }, - !1, - ); - var E, - k, - _, - S, - P, - C, - j, - T, - D, - N, - O, - A, - R, - L = function (t) { - if (!e.scrollingPage) { - var n = e.cy, - r = n.zoom(), - o = n.pan(), - i = e.projectIntoViewport(t.clientX, t.clientY), - a = [i[0] * r + o.x, i[1] * r + o.y]; - if (e.hoverData.draggingEles || e.hoverData.dragging || e.hoverData.cxtStarted || 0 !== e.selection[4]) - t.preventDefault(); - else if (n.panningEnabled() && n.userPanningEnabled() && n.zoomingEnabled() && n.userZoomingEnabled()) { - var s; - t.preventDefault(), - (e.data.wheelZooming = !0), - clearTimeout(e.data.wheelTimeout), - (e.data.wheelTimeout = setTimeout(function () { - (e.data.wheelZooming = !1), e.redrawHint('eles', !0), e.redraw(); - }, 150)), - (s = - null != t.deltaY - ? t.deltaY / -250 - : null != t.wheelDeltaY - ? t.wheelDeltaY / 1e3 - : t.wheelDelta / 1e3), - (s *= e.wheelSensitivity), - 1 === t.deltaMode && (s *= 33); - var l = n.zoom() * Math.pow(10, s); - 'gesturechange' === t.type && (l = e.gestureStartZoom * t.scale), - n.zoom({ level: l, renderedPosition: { x: a[0], y: a[1] } }), - n.emit('gesturechange' === t.type ? 'pinchzoom' : 'scrollzoom'); - } - } - }; - e.registerBinding(e.container, 'wheel', L, !0), - e.registerBinding( - window, - 'scroll', - function (t) { - (e.scrollingPage = !0), - clearTimeout(e.scrollingPageTimeout), - (e.scrollingPageTimeout = setTimeout(function () { - e.scrollingPage = !1; - }, 250)); - }, - !0, - ), - e.registerBinding( - e.container, - 'gesturestart', - function (t) { - (e.gestureStartZoom = e.cy.zoom()), e.hasTouchStarted || t.preventDefault(); - }, - !0, - ), - e.registerBinding( - e.container, - 'gesturechange', - function (t) { - e.hasTouchStarted || L(t); - }, - !0, - ), - e.registerBinding( - e.container, - 'mouseout', - function (t) { - var n = e.projectIntoViewport(t.clientX, t.clientY); - e.cy.emit({ originalEvent: t, type: 'mouseout', position: { x: n[0], y: n[1] } }); - }, - !1, - ), - e.registerBinding( - e.container, - 'mouseover', - function (t) { - var n = e.projectIntoViewport(t.clientX, t.clientY); - e.cy.emit({ originalEvent: t, type: 'mouseover', position: { x: n[0], y: n[1] } }); - }, - !1, - ); - var I, - B, - F, - z, - V, - G, - H, - W = function (e, t, n, r) { - return Math.sqrt((n - e) * (n - e) + (r - t) * (r - t)); - }, - U = function (e, t, n, r) { - return (n - e) * (n - e) + (r - t) * (r - t); - }; - if ( - (e.registerBinding( - e.container, - 'touchstart', - (I = function (t) { - if (((e.hasTouchStarted = !0), w(t))) { - h(), (e.touchData.capture = !0), (e.data.bgActivePosistion = void 0); - var r = e.cy, - o = e.touchData.now, - i = e.touchData.earlier; - if (t.touches[0]) { - var s = e.projectIntoViewport(t.touches[0].clientX, t.touches[0].clientY); - (o[0] = s[0]), (o[1] = s[1]); - } - if (t.touches[1]) { - s = e.projectIntoViewport(t.touches[1].clientX, t.touches[1].clientY); - (o[2] = s[0]), (o[3] = s[1]); - } - if (t.touches[2]) { - s = e.projectIntoViewport(t.touches[2].clientX, t.touches[2].clientY); - (o[4] = s[0]), (o[5] = s[1]); - } - if (t.touches[1]) { - (e.touchData.singleTouchMoved = !0), d(e.dragData.touchDragEles); - var c = e.findContainerClientCoords(); - (D = c[0]), - (N = c[1]), - (O = c[2]), - (A = c[3]), - (E = t.touches[0].clientX - D), - (k = t.touches[0].clientY - N), - (_ = t.touches[1].clientX - D), - (S = t.touches[1].clientY - N), - (R = 0 <= E && E <= O && 0 <= _ && _ <= O && 0 <= k && k <= A && 0 <= S && S <= A); - var f = r.pan(), - p = r.zoom(); - (P = W(E, k, _, S)), - (C = U(E, k, _, S)), - (T = [((j = [(E + _) / 2, (k + S) / 2])[0] - f.x) / p, (j[1] - f.y) / p]); - if (C < 4e4 && !t.touches[2]) { - var v = e.findNearestElement(o[0], o[1], !0, !0), - g = e.findNearestElement(o[2], o[3], !0, !0); - return ( - v && v.isNode() - ? (v - .activate() - .emit({ originalEvent: t, type: 'cxttapstart', position: { x: o[0], y: o[1] } }), - (e.touchData.start = v)) - : g && g.isNode() - ? (g - .activate() - .emit({ originalEvent: t, type: 'cxttapstart', position: { x: o[0], y: o[1] } }), - (e.touchData.start = g)) - : r.emit({ originalEvent: t, type: 'cxttapstart', position: { x: o[0], y: o[1] } }), - e.touchData.start && (e.touchData.start._private.grabbed = !1), - (e.touchData.cxt = !0), - (e.touchData.cxtDragged = !1), - (e.data.bgActivePosistion = void 0), - void e.redraw() - ); - } - } - if (t.touches[2]) r.boxSelectionEnabled() && t.preventDefault(); - else if (t.touches[1]); - else if (t.touches[0]) { - var m = e.findNearestElements(o[0], o[1], !0, !0), - y = m[0]; - if ( - null != y && - (y.activate(), (e.touchData.start = y), (e.touchData.starts = m), e.nodeIsGrabbable(y)) - ) { - var b = (e.dragData.touchDragEles = r.collection()), - x = null; - e.redrawHint('eles', !0), - e.redrawHint('drag', !0), - y.selected() - ? ((x = r.$(function (t) { - return t.selected() && e.nodeIsGrabbable(t); - })), - l(x, { addToList: b })) - : u(y, { addToList: b }), - a(y); - var M = function (e) { - return { originalEvent: t, type: e, position: { x: o[0], y: o[1] } }; - }; - y.emit(M('grabon')), - x - ? x.forEach(function (e) { - e.emit(M('grab')); - }) - : y.emit(M('grab')); - } - n(y, ['touchstart', 'tapstart', 'vmousedown'], t, { x: o[0], y: o[1] }), - null == y && - ((e.data.bgActivePosistion = { x: s[0], y: s[1] }), e.redrawHint('select', !0), e.redraw()), - (e.touchData.singleTouchMoved = !1), - (e.touchData.singleTouchStartTime = +new Date()), - clearTimeout(e.touchData.tapholdTimeout), - (e.touchData.tapholdTimeout = setTimeout(function () { - !1 !== e.touchData.singleTouchMoved || - e.pinching || - e.touchData.selecting || - n(e.touchData.start, ['taphold'], t, { x: o[0], y: o[1] }); - }, e.tapholdDuration)); - } - if (t.touches.length >= 1) { - for (var L = (e.touchData.startPosition = []), I = 0; I < o.length; I++) L[I] = i[I] = o[I]; - var B = t.touches[0]; - e.touchData.startGPosition = [B.clientX, B.clientY]; - } - } - }), - !1, - ), - e.registerBinding( - window, - 'touchmove', - (B = function (t) { - var r = e.touchData.capture; - if (r || w(t)) { - var i = e.selection, - a = e.cy, - s = e.touchData.now, - c = e.touchData.earlier, - u = a.zoom(); - if (t.touches[0]) { - var f = e.projectIntoViewport(t.touches[0].clientX, t.touches[0].clientY); - (s[0] = f[0]), (s[1] = f[1]); - } - if (t.touches[1]) { - f = e.projectIntoViewport(t.touches[1].clientX, t.touches[1].clientY); - (s[2] = f[0]), (s[3] = f[1]); - } - if (t.touches[2]) { - f = e.projectIntoViewport(t.touches[2].clientX, t.touches[2].clientY); - (s[4] = f[0]), (s[5] = f[1]); - } - var h, - p = e.touchData.startGPosition; - if (r && t.touches[0] && p) { - for (var v = [], g = 0; g < s.length; g++) v[g] = s[g] - c[g]; - var m = t.touches[0].clientX - p[0], - y = m * m, - b = t.touches[0].clientY - p[1]; - h = y + b * b >= e.touchTapThreshold2; - } - if (r && e.touchData.cxt) { - t.preventDefault(); - var x = t.touches[0].clientX - D, - j = t.touches[0].clientY - N, - O = t.touches[1].clientX - D, - A = t.touches[1].clientY - N, - L = U(x, j, O, A); - if (L / C >= 2.25 || L >= 22500) { - (e.touchData.cxt = !1), (e.data.bgActivePosistion = void 0), e.redrawHint('select', !0); - var I = { originalEvent: t, type: 'cxttapend', position: { x: s[0], y: s[1] } }; - e.touchData.start - ? (e.touchData.start.unactivate().emit(I), (e.touchData.start = null)) - : a.emit(I); - } - } - if (r && e.touchData.cxt) { - I = { originalEvent: t, type: 'cxtdrag', position: { x: s[0], y: s[1] } }; - (e.data.bgActivePosistion = void 0), - e.redrawHint('select', !0), - e.touchData.start ? e.touchData.start.emit(I) : a.emit(I), - e.touchData.start && (e.touchData.start._private.grabbed = !1), - (e.touchData.cxtDragged = !0); - var B = e.findNearestElement(s[0], s[1], !0, !0); - (e.touchData.cxtOver && B === e.touchData.cxtOver) || - (e.touchData.cxtOver && - e.touchData.cxtOver.emit({ - originalEvent: t, - type: 'cxtdragout', - position: { x: s[0], y: s[1] }, - }), - (e.touchData.cxtOver = B), - B && B.emit({ originalEvent: t, type: 'cxtdragover', position: { x: s[0], y: s[1] } })); - } else if (r && t.touches[2] && a.boxSelectionEnabled()) - t.preventDefault(), - (e.data.bgActivePosistion = void 0), - (this.lastThreeTouch = +new Date()), - e.touchData.selecting || - a.emit({ originalEvent: t, type: 'boxstart', position: { x: s[0], y: s[1] } }), - (e.touchData.selecting = !0), - (e.touchData.didSelect = !0), - (i[4] = 1), - i && 0 !== i.length && void 0 !== i[0] - ? ((i[2] = (s[0] + s[2] + s[4]) / 3), (i[3] = (s[1] + s[3] + s[5]) / 3)) - : ((i[0] = (s[0] + s[2] + s[4]) / 3), - (i[1] = (s[1] + s[3] + s[5]) / 3), - (i[2] = (s[0] + s[2] + s[4]) / 3 + 1), - (i[3] = (s[1] + s[3] + s[5]) / 3 + 1)), - e.redrawHint('select', !0), - e.redraw(); - else if ( - r && - t.touches[1] && - !e.touchData.didSelect && - a.zoomingEnabled() && - a.panningEnabled() && - a.userZoomingEnabled() && - a.userPanningEnabled() - ) { - if ( - (t.preventDefault(), - (e.data.bgActivePosistion = void 0), - e.redrawHint('select', !0), - (ee = e.dragData.touchDragEles)) - ) { - e.redrawHint('drag', !0); - for (var F = 0; F < ee.length; F++) { - var z = ee[F]._private; - (z.grabbed = !1), (z.rscratch.inDragLayer = !1); - } - } - var V = e.touchData.start, - G = - ((x = t.touches[0].clientX - D), - (j = t.touches[0].clientY - N), - (O = t.touches[1].clientX - D), - (A = t.touches[1].clientY - N), - W(x, j, O, A)), - H = G / P; - if (R) { - var q = (x - E + (O - _)) / 2, - Y = (j - k + (A - S)) / 2, - X = a.zoom(), - $ = X * H, - K = a.pan(), - Z = T[0] * X + K.x, - Q = T[1] * X + K.y, - J = { x: (-$ / X) * (Z - K.x - q) + Z, y: (-$ / X) * (Q - K.y - Y) + Q }; - if (V && V.active()) { - var ee = e.dragData.touchDragEles; - d(ee), - e.redrawHint('drag', !0), - e.redrawHint('eles', !0), - V.unactivate().emit('freeon'), - ee.emit('free'), - e.dragData.didDrag && (V.emit('dragfreeon'), ee.emit('dragfree')); - } - a.viewport({ zoom: $, pan: J, cancelOnFailedZoom: !0 }), - a.emit('pinchzoom'), - (P = G), - (E = x), - (k = j), - (_ = O), - (S = A), - (e.pinching = !0); - } - if (t.touches[0]) { - f = e.projectIntoViewport(t.touches[0].clientX, t.touches[0].clientY); - (s[0] = f[0]), (s[1] = f[1]); - } - if (t.touches[1]) { - f = e.projectIntoViewport(t.touches[1].clientX, t.touches[1].clientY); - (s[2] = f[0]), (s[3] = f[1]); - } - if (t.touches[2]) { - f = e.projectIntoViewport(t.touches[2].clientX, t.touches[2].clientY); - (s[4] = f[0]), (s[5] = f[1]); - } - } else if (t.touches[0] && !e.touchData.didSelect) { - var te = e.touchData.start, - ne = e.touchData.last; - if ( - (e.hoverData.draggingEles || e.swipePanning || (B = e.findNearestElement(s[0], s[1], !0, !0)), - r && null != te && t.preventDefault(), - r && null != te && e.nodeIsDraggable(te)) - ) - if (h) { - ee = e.dragData.touchDragEles; - var re = !e.dragData.didDrag; - re && l(ee, { inDragLayer: !0 }), (e.dragData.didDrag = !0); - var oe = { x: 0, y: 0 }; - if (M(v[0]) && M(v[1])) - if (((oe.x += v[0]), (oe.y += v[1]), re)) - e.redrawHint('eles', !0), - (ie = e.touchData.dragDelta) && - M(ie[0]) && - M(ie[1]) && - ((oe.x += ie[0]), (oe.y += ie[1])); - (e.hoverData.draggingEles = !0), - ee.silentShift(oe).emit('position drag'), - e.redrawHint('drag', !0), - e.touchData.startPosition[0] == c[0] && - e.touchData.startPosition[1] == c[1] && - e.redrawHint('eles', !0), - e.redraw(); - } else { - var ie; - 0 === (ie = e.touchData.dragDelta = e.touchData.dragDelta || []).length - ? (ie.push(v[0]), ie.push(v[1])) - : ((ie[0] += v[0]), (ie[1] += v[1])); - } - if ( - (n(te || B, ['touchmove', 'tapdrag', 'vmousemove'], t, { x: s[0], y: s[1] }), - (te && te.grabbed()) || - B == ne || - (ne && ne.emit({ originalEvent: t, type: 'tapdragout', position: { x: s[0], y: s[1] } }), - B && B.emit({ originalEvent: t, type: 'tapdragover', position: { x: s[0], y: s[1] } })), - (e.touchData.last = B), - r) - ) - for (F = 0; F < s.length; F++) - s[F] && e.touchData.startPosition[F] && h && (e.touchData.singleTouchMoved = !0); - if (r && (null == te || te.pannable()) && a.panningEnabled() && a.userPanningEnabled()) { - o(te, e.touchData.starts) && - (t.preventDefault(), - e.data.bgActivePosistion || (e.data.bgActivePosistion = it(e.touchData.startPosition)), - e.swipePanning - ? (a.panBy({ x: v[0] * u, y: v[1] * u }), a.emit('dragpan')) - : h && - ((e.swipePanning = !0), - a.panBy({ x: m * u, y: b * u }), - a.emit('dragpan'), - te && (te.unactivate(), e.redrawHint('select', !0), (e.touchData.start = null)))); - f = e.projectIntoViewport(t.touches[0].clientX, t.touches[0].clientY); - (s[0] = f[0]), (s[1] = f[1]); - } - } - for (g = 0; g < s.length; g++) c[g] = s[g]; - r && - t.touches.length > 0 && - !e.hoverData.draggingEles && - !e.swipePanning && - null != e.data.bgActivePosistion && - ((e.data.bgActivePosistion = void 0), e.redrawHint('select', !0), e.redraw()); - } - }), - !1, - ), - e.registerBinding( - window, - 'touchcancel', - (F = function (t) { - var n = e.touchData.start; - (e.touchData.capture = !1), n && n.unactivate(); - }), - ), - e.registerBinding( - window, - 'touchend', - (z = function (r) { - var o = e.touchData.start; - if (e.touchData.capture) { - 0 === r.touches.length && (e.touchData.capture = !1), r.preventDefault(); - var i = e.selection; - (e.swipePanning = !1), (e.hoverData.draggingEles = !1); - var a, - s = e.cy, - l = s.zoom(), - c = e.touchData.now, - u = e.touchData.earlier; - if (r.touches[0]) { - var f = e.projectIntoViewport(r.touches[0].clientX, r.touches[0].clientY); - (c[0] = f[0]), (c[1] = f[1]); - } - if (r.touches[1]) { - f = e.projectIntoViewport(r.touches[1].clientX, r.touches[1].clientY); - (c[2] = f[0]), (c[3] = f[1]); - } - if (r.touches[2]) { - f = e.projectIntoViewport(r.touches[2].clientX, r.touches[2].clientY); - (c[4] = f[0]), (c[5] = f[1]); - } - if ((o && o.unactivate(), e.touchData.cxt)) { - if ( - ((a = { originalEvent: r, type: 'cxttapend', position: { x: c[0], y: c[1] } }), - o ? o.emit(a) : s.emit(a), - !e.touchData.cxtDragged) - ) { - var h = { originalEvent: r, type: 'cxttap', position: { x: c[0], y: c[1] } }; - o ? o.emit(h) : s.emit(h); - } - return ( - e.touchData.start && (e.touchData.start._private.grabbed = !1), - (e.touchData.cxt = !1), - (e.touchData.start = null), - void e.redraw() - ); - } - if (!r.touches[2] && s.boxSelectionEnabled() && e.touchData.selecting) { - e.touchData.selecting = !1; - var p = s.collection(e.getAllInBox(i[0], i[1], i[2], i[3])); - (i[0] = void 0), - (i[1] = void 0), - (i[2] = void 0), - (i[3] = void 0), - (i[4] = 0), - e.redrawHint('select', !0), - s.emit({ type: 'boxend', originalEvent: r, position: { x: c[0], y: c[1] } }); - p - .emit('box') - .stdFilter(function (e) { - return e.selectable() && !e.selected(); - }) - .select() - .emit('boxselect'), - p.nonempty() && e.redrawHint('eles', !0), - e.redraw(); - } - if ((null != o && o.unactivate(), r.touches[2])) - (e.data.bgActivePosistion = void 0), e.redrawHint('select', !0); - else if (r.touches[1]); - else if (r.touches[0]); - else if (!r.touches[0]) { - (e.data.bgActivePosistion = void 0), e.redrawHint('select', !0); - var v = e.dragData.touchDragEles; - if (null != o) { - var g = o._private.grabbed; - d(v), - e.redrawHint('drag', !0), - e.redrawHint('eles', !0), - g && - (o.emit('freeon'), - v.emit('free'), - e.dragData.didDrag && (o.emit('dragfreeon'), v.emit('dragfree'))), - n(o, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], r, { x: c[0], y: c[1] }), - o.unactivate(), - (e.touchData.start = null); - } else { - var m = e.findNearestElement(c[0], c[1], !0, !0); - n(m, ['touchend', 'tapend', 'vmouseup', 'tapdragout'], r, { x: c[0], y: c[1] }); - } - var y = e.touchData.startPosition[0] - c[0], - b = y * y, - x = e.touchData.startPosition[1] - c[1], - w = (b + x * x) * l * l; - e.touchData.singleTouchMoved || - (o || s.$(':selected').unselect(['tapunselect']), - n(o, ['tap', 'vclick'], r, { x: c[0], y: c[1] }), - (V = !1), - r.timeStamp - H <= s.multiClickDebounceTime() - ? (G && clearTimeout(G), - (V = !0), - (H = null), - n(o, ['dbltap', 'vdblclick'], r, { x: c[0], y: c[1] })) - : ((G = setTimeout(function () { - V || n(o, ['onetap', 'voneclick'], r, { x: c[0], y: c[1] }); - }, s.multiClickDebounceTime())), - (H = r.timeStamp))), - null != o && - !e.dragData.didDrag && - o._private.selectable && - w < e.touchTapThreshold2 && - !e.pinching && - ('single' === s.selectionType() - ? (s.$(t).unmerge(o).unselect(['tapunselect']), o.select(['tapselect'])) - : o.selected() - ? o.unselect(['tapunselect']) - : o.select(['tapselect']), - e.redrawHint('eles', !0)), - (e.touchData.singleTouchMoved = !0); - } - for (var E = 0; E < c.length; E++) u[E] = c[E]; - (e.dragData.didDrag = !1), - 0 === r.touches.length && - ((e.touchData.dragDelta = []), - (e.touchData.startPosition = null), - (e.touchData.startGPosition = null), - (e.touchData.didSelect = !1)), - r.touches.length < 2 && - (1 === r.touches.length && - (e.touchData.startGPosition = [r.touches[0].clientX, r.touches[0].clientY]), - (e.pinching = !1), - e.redrawHint('eles', !0), - e.redraw()); - } - }), - !1, - ), - 'undefined' == typeof TouchEvent) - ) { - var q = [], - Y = function (e) { - return { - clientX: e.clientX, - clientY: e.clientY, - force: 1, - identifier: e.pointerId, - pageX: e.pageX, - pageY: e.pageY, - radiusX: e.width / 2, - radiusY: e.height / 2, - screenX: e.screenX, - screenY: e.screenY, - target: e.target, - }; - }, - X = function (e) { - q.push( - (function (e) { - return { event: e, touch: Y(e) }; - })(e), - ); - }, - $ = function (e) { - for (var t = 0; t < q.length; t++) { - if (q[t].event.pointerId === e.pointerId) return void q.splice(t, 1); - } - }, - K = function (e) { - e.touches = q.map(function (e) { - return e.touch; - }); - }, - Z = function (e) { - return 'mouse' === e.pointerType || 4 === e.pointerType; - }; - e.registerBinding(e.container, 'pointerdown', function (e) { - Z(e) || (e.preventDefault(), X(e), K(e), I(e)); - }), - e.registerBinding(e.container, 'pointerup', function (e) { - Z(e) || ($(e), K(e), z(e)); - }), - e.registerBinding(e.container, 'pointercancel', function (e) { - Z(e) || ($(e), K(e), F()); - }), - e.registerBinding(e.container, 'pointermove', function (e) { - Z(e) || - (e.preventDefault(), - (function (e) { - var t = q.filter(function (t) { - return t.event.pointerId === e.pointerId; - })[0]; - (t.event = e), (t.touch = Y(e)); - })(e), - K(e), - B(e)); - }); - } - }); - var gs = { - generatePolygon: function (e, t) { - return (this.nodeShapes[e] = { - renderer: this, - name: e, - points: t, - draw: function (e, t, n, r, o) { - this.renderer.nodeShapeImpl('polygon', e, t, n, r, o, this.points); - }, - intersectLine: function (e, t, n, r, o, i, a) { - return Lt(o, i, this.points, e, t, n / 2, r / 2, a); - }, - checkPoint: function (e, t, n, r, o, i, a) { - return Tt(e, t, this.points, i, a, r, o, [0, -1], n); - }, - }); - }, - }; - (gs.generateEllipse = function () { - return (this.nodeShapes.ellipse = { - renderer: this, - name: 'ellipse', - draw: function (e, t, n, r, o) { - this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); - }, - intersectLine: function (e, t, n, r, o, i, a) { - return (function (e, t, n, r, o, i) { - var a = n - e, - s = r - t; - (a /= o), (s /= i); - var l = Math.sqrt(a * a + s * s), - c = l - 1; - if (c < 0) return []; - var u = c / l; - return [(n - e) * u + e, (r - t) * u + t]; - })(o, i, e, t, n / 2 + a, r / 2 + a); - }, - checkPoint: function (e, t, n, r, o, i, a) { - return Mt(e, t, r, o, i, a, n); - }, - }); - }), - (gs.generateRoundPolygon = function (e, t) { - for (var n = new Array(2 * t.length), r = 0; r < t.length / 2; r++) { - var o = 2 * r, - i = void 0; - (i = r < t.length / 2 - 1 ? 2 * (r + 1) : 0), (n[4 * r] = t[o]), (n[4 * r + 1] = t[o + 1]); - var a = t[i] - t[o], - s = t[i + 1] - t[o + 1], - l = Math.sqrt(a * a + s * s); - (n[4 * r + 2] = a / l), (n[4 * r + 3] = s / l); - } - return (this.nodeShapes[e] = { - renderer: this, - name: e, - points: n, - draw: function (e, t, n, r, o) { - this.renderer.nodeShapeImpl('round-polygon', e, t, n, r, o, this.points); - }, - intersectLine: function (e, t, n, r, o, i, a) { - return (function (e, t, n, r, o, i, a, s) { - for ( - var l, c = [], u = new Array(n.length), d = i / 2, f = a / 2, h = Gt(i, a), p = 0; - p < n.length / 4; - p++ - ) { - var v, - g = void 0; - (g = 0 === p ? n.length - 2 : 4 * p - 2), (v = 4 * p + 2); - var m = r + d * n[4 * p], - y = o + f * n[4 * p + 1], - b = -n[g] * n[v] - n[g + 1] * n[v + 1], - x = h / Math.tan(Math.acos(b) / 2), - w = m - x * n[g], - E = y - x * n[g + 1], - k = m + x * n[v], - _ = y + x * n[v + 1]; - 0 === p ? ((u[n.length - 2] = w), (u[n.length - 1] = E)) : ((u[4 * p - 2] = w), (u[4 * p - 1] = E)), - (u[4 * p] = k), - (u[4 * p + 1] = _); - var S = n[g + 1], - P = -n[g]; - S * n[v] + P * n[v + 1] < 0 && ((S *= -1), (P *= -1)), - 0 !== (l = Ot(e, t, r, o, w + S * h, E + P * h, h)).length && c.push(l[0], l[1]); - } - for (var C = 0; C < u.length / 4; C++) - 0 !== (l = Rt(e, t, r, o, u[4 * C], u[4 * C + 1], u[4 * C + 2], u[4 * C + 3], !1)).length && - c.push(l[0], l[1]); - if (c.length > 2) { - for ( - var j = [c[0], c[1]], T = Math.pow(j[0] - e, 2) + Math.pow(j[1] - t, 2), D = 1; - D < c.length / 2; - D++ - ) { - var N = Math.pow(c[2 * D] - e, 2) + Math.pow(c[2 * D + 1] - t, 2); - N <= T && ((j[0] = c[2 * D]), (j[1] = c[2 * D + 1]), (T = N)); - } - return j; - } - return c; - })(o, i, this.points, e, t, n, r); - }, - checkPoint: function (e, t, n, r, o, i, a) { - return (function (e, t, n, r, o, i, a) { - for ( - var s = new Array(n.length), l = i / 2, c = a / 2, u = Gt(i, a), d = u * u, f = 0; - f < n.length / 4; - f++ - ) { - var h, - p = void 0; - (p = 0 === f ? n.length - 2 : 4 * f - 2), (h = 4 * f + 2); - var v = r + l * n[4 * f], - g = o + c * n[4 * f + 1], - m = -n[p] * n[h] - n[p + 1] * n[h + 1], - y = u / Math.tan(Math.acos(m) / 2), - b = v - y * n[p], - x = g - y * n[p + 1], - w = v + y * n[h], - E = g + y * n[h + 1]; - (s[4 * f] = b), (s[4 * f + 1] = x), (s[4 * f + 2] = w), (s[4 * f + 3] = E); - var k = n[p + 1], - _ = -n[p]; - k * n[h] + _ * n[h + 1] < 0 && ((k *= -1), (_ *= -1)); - var S = b + k * u, - P = x + _ * u; - if (Math.pow(S - e, 2) + Math.pow(P - t, 2) <= d) return !0; - } - return jt(e, t, s); - })(e, t, this.points, i, a, r, o); - }, - }); - }), - (gs.generateRoundRectangle = function () { - return (this.nodeShapes['round-rectangle'] = this.nodeShapes.roundrectangle = - { - renderer: this, - name: 'round-rectangle', - points: Bt(4, 0), - draw: function (e, t, n, r, o) { - this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); - }, - intersectLine: function (e, t, n, r, o, i, a) { - return kt(o, i, e, t, n, r, a); - }, - checkPoint: function (e, t, n, r, o, i, a) { - var s = Vt(r, o), - l = 2 * s; - return ( - !!Tt(e, t, this.points, i, a, r, o - l, [0, -1], n) || - !!Tt(e, t, this.points, i, a, r - l, o, [0, -1], n) || - !!Mt(e, t, l, l, i - r / 2 + s, a - o / 2 + s, n) || - !!Mt(e, t, l, l, i + r / 2 - s, a - o / 2 + s, n) || - !!Mt(e, t, l, l, i + r / 2 - s, a + o / 2 - s, n) || - !!Mt(e, t, l, l, i - r / 2 + s, a + o / 2 - s, n) - ); - }, - }); - }), - (gs.generateCutRectangle = function () { - return (this.nodeShapes['cut-rectangle'] = this.nodeShapes.cutrectangle = - { - renderer: this, - name: 'cut-rectangle', - cornerLength: 8, - points: Bt(4, 0), - draw: function (e, t, n, r, o) { - this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); - }, - generateCutTrianglePts: function (e, t, n, r) { - var o = this.cornerLength, - i = t / 2, - a = e / 2, - s = n - a, - l = n + a, - c = r - i, - u = r + i; - return { - topLeft: [s, c + o, s + o, c, s + o, c + o], - topRight: [l - o, c, l, c + o, l - o, c + o], - bottomRight: [l, u - o, l - o, u, l - o, u - o], - bottomLeft: [s + o, u, s, u - o, s + o, u - o], - }; - }, - intersectLine: function (e, t, n, r, o, i, a) { - var s = this.generateCutTrianglePts(n + 2 * a, r + 2 * a, e, t), - l = [].concat.apply( - [], - [ - s.topLeft.splice(0, 4), - s.topRight.splice(0, 4), - s.bottomRight.splice(0, 4), - s.bottomLeft.splice(0, 4), - ], - ); - return Lt(o, i, l, e, t); - }, - checkPoint: function (e, t, n, r, o, i, a) { - if (Tt(e, t, this.points, i, a, r, o - 2 * this.cornerLength, [0, -1], n)) return !0; - if (Tt(e, t, this.points, i, a, r - 2 * this.cornerLength, o, [0, -1], n)) return !0; - var s = this.generateCutTrianglePts(r, o, i, a); - return jt(e, t, s.topLeft) || jt(e, t, s.topRight) || jt(e, t, s.bottomRight) || jt(e, t, s.bottomLeft); - }, - }); - }), - (gs.generateBarrel = function () { - return (this.nodeShapes.barrel = { - renderer: this, - name: 'barrel', - points: Bt(4, 0), - draw: function (e, t, n, r, o) { - this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); - }, - intersectLine: function (e, t, n, r, o, i, a) { - var s = this.generateBarrelBezierPts(n + 2 * a, r + 2 * a, e, t), - l = function (e) { - var t = ht({ x: e[0], y: e[1] }, { x: e[2], y: e[3] }, { x: e[4], y: e[5] }, 0.15), - n = ht({ x: e[0], y: e[1] }, { x: e[2], y: e[3] }, { x: e[4], y: e[5] }, 0.5), - r = ht({ x: e[0], y: e[1] }, { x: e[2], y: e[3] }, { x: e[4], y: e[5] }, 0.85); - return [e[0], e[1], t.x, t.y, n.x, n.y, r.x, r.y, e[4], e[5]]; - }, - c = [].concat(l(s.topLeft), l(s.topRight), l(s.bottomRight), l(s.bottomLeft)); - return Lt(o, i, c, e, t); - }, - generateBarrelBezierPts: function (e, t, n, r) { - var o = t / 2, - i = e / 2, - a = n - i, - s = n + i, - l = r - o, - c = r + o, - u = Ht(e, t), - d = u.heightOffset, - f = u.widthOffset, - h = u.ctrlPtOffsetPct * e, - p = { - topLeft: [a, l + d, a + h, l, a + f, l], - topRight: [s - f, l, s - h, l, s, l + d], - bottomRight: [s, c - d, s - h, c, s - f, c], - bottomLeft: [a + f, c, a + h, c, a, c - d], - }; - return ( - (p.topLeft.isTop = !0), - (p.topRight.isTop = !0), - (p.bottomLeft.isBottom = !0), - (p.bottomRight.isBottom = !0), - p - ); - }, - checkPoint: function (e, t, n, r, o, i, a) { - var s = Ht(r, o), - l = s.heightOffset, - c = s.widthOffset; - if (Tt(e, t, this.points, i, a, r, o - 2 * l, [0, -1], n)) return !0; - if (Tt(e, t, this.points, i, a, r - 2 * c, o, [0, -1], n)) return !0; - for ( - var u = this.generateBarrelBezierPts(r, o, i, a), - d = function (e, t, n) { - var r, - o, - i = n[4], - a = n[2], - s = n[0], - l = n[5], - c = n[1], - u = Math.min(i, s), - d = Math.max(i, s), - f = Math.min(l, c), - h = Math.max(l, c); - if (u <= e && e <= d && f <= t && t <= h) { - var p = [(r = i) - 2 * (o = a) + s, 2 * (o - r), r], - v = (function (e, t, n, r) { - var o = t * t - 4 * e * (n -= r); - if (o < 0) return []; - var i = Math.sqrt(o), - a = 2 * e; - return [(-t + i) / a, (-t - i) / a]; - })(p[0], p[1], p[2], e).filter(function (e) { - return 0 <= e && e <= 1; - }); - if (v.length > 0) return v[0]; - } - return null; - }, - f = Object.keys(u), - h = 0; - h < f.length; - h++ - ) { - var p = u[f[h]], - v = d(e, t, p); - if (null != v) { - var g = p[5], - m = p[3], - y = p[1], - b = ft(g, m, y, v); - if (p.isTop && b <= t) return !0; - if (p.isBottom && t <= b) return !0; - } - } - return !1; - }, - }); - }), - (gs.generateBottomRoundrectangle = function () { - return (this.nodeShapes['bottom-round-rectangle'] = this.nodeShapes.bottomroundrectangle = - { - renderer: this, - name: 'bottom-round-rectangle', - points: Bt(4, 0), - draw: function (e, t, n, r, o) { - this.renderer.nodeShapeImpl(this.name, e, t, n, r, o); - }, - intersectLine: function (e, t, n, r, o, i, a) { - var s = t - (r / 2 + a), - l = Rt(o, i, e, t, e - (n / 2 + a), s, e + (n / 2 + a), s, !1); - return l.length > 0 ? l : kt(o, i, e, t, n, r, a); - }, - checkPoint: function (e, t, n, r, o, i, a) { - var s = Vt(r, o), - l = 2 * s; - if (Tt(e, t, this.points, i, a, r, o - l, [0, -1], n)) return !0; - if (Tt(e, t, this.points, i, a, r - l, o, [0, -1], n)) return !0; - var c = r / 2 + 2 * n, - u = o / 2 + 2 * n; - return ( - !!jt(e, t, [i - c, a - u, i - c, a, i + c, a, i + c, a - u]) || - !!Mt(e, t, l, l, i + r / 2 - s, a + o / 2 - s, n) || - !!Mt(e, t, l, l, i - r / 2 + s, a + o / 2 - s, n) - ); - }, - }); - }), - (gs.registerNodeShapes = function () { - var e = (this.nodeShapes = {}), - t = this; - this.generateEllipse(), - this.generatePolygon('triangle', Bt(3, 0)), - this.generateRoundPolygon('round-triangle', Bt(3, 0)), - this.generatePolygon('rectangle', Bt(4, 0)), - (e.square = e.rectangle), - this.generateRoundRectangle(), - this.generateCutRectangle(), - this.generateBarrel(), - this.generateBottomRoundrectangle(); - var n = [0, 1, 1, 0, 0, -1, -1, 0]; - this.generatePolygon('diamond', n), - this.generateRoundPolygon('round-diamond', n), - this.generatePolygon('pentagon', Bt(5, 0)), - this.generateRoundPolygon('round-pentagon', Bt(5, 0)), - this.generatePolygon('hexagon', Bt(6, 0)), - this.generateRoundPolygon('round-hexagon', Bt(6, 0)), - this.generatePolygon('heptagon', Bt(7, 0)), - this.generateRoundPolygon('round-heptagon', Bt(7, 0)), - this.generatePolygon('octagon', Bt(8, 0)), - this.generateRoundPolygon('round-octagon', Bt(8, 0)); - var r = new Array(20), - o = zt(5, 0), - i = zt(5, Math.PI / 5), - a = 0.5 * (3 - Math.sqrt(5)); - a *= 1.57; - for (var s = 0; s < i.length / 2; s++) (i[2 * s] *= a), (i[2 * s + 1] *= a); - for (s = 0; s < 5; s++) - (r[4 * s] = o[2 * s]), - (r[4 * s + 1] = o[2 * s + 1]), - (r[4 * s + 2] = i[2 * s]), - (r[4 * s + 3] = i[2 * s + 1]); - (r = Ft(r)), - this.generatePolygon('star', r), - this.generatePolygon('vee', [-1, -1, 0, -0.333, 1, -1, 0, 1]), - this.generatePolygon('rhomboid', [-1, -1, 0.333, -1, 1, 1, -0.333, 1]), - (this.nodeShapes.concavehexagon = this.generatePolygon( - 'concave-hexagon', - [-1, -0.95, -0.75, 0, -1, 0.95, 1, 0.95, 0.75, 0, 1, -0.95], - )); - var l = [-1, -1, 0.25, -1, 1, 0, 0.25, 1, -1, 1]; - this.generatePolygon('tag', l), - this.generateRoundPolygon('round-tag', l), - (e.makePolygon = function (e) { - var n, - r = 'polygon-' + e.join('$'); - return (n = this[r]) ? n : t.generatePolygon(r, e); - }); - }); - var ms = { - timeToRender: function () { - return this.redrawTotalTime / this.redrawCount; - }, - redraw: function (e) { - e = e || Me(); - var t = this; - void 0 === t.averageRedrawTime && (t.averageRedrawTime = 0), - void 0 === t.lastRedrawTime && (t.lastRedrawTime = 0), - void 0 === t.lastDrawTime && (t.lastDrawTime = 0), - (t.requestedFrame = !0), - (t.renderOptions = e); - }, - beforeRender: function (e, t) { - if (!this.destroyed) { - null == t && Pe('Priority is not optional for beforeRender'); - var n = this.beforeRenderCallbacks; - n.push({ fn: e, priority: t }), - n.sort(function (e, t) { - return t.priority - e.priority; - }); - } - }, - }, - ys = function (e, t, n) { - for (var r = e.beforeRenderCallbacks, o = 0; o < r.length; o++) r[o].fn(t, n); - }; - ms.startRenderLoop = function () { - var e = this, - t = e.cy; - if (!e.renderLoopStarted) { - e.renderLoopStarted = !0; - ae(function n(r) { - if (!e.destroyed) { - if (t.batching()); - else if (e.requestedFrame && !e.skipFrame) { - ys(e, !0, r); - var o = se(); - e.render(e.renderOptions); - var i = (e.lastDrawTime = se()); - void 0 === e.averageRedrawTime && (e.averageRedrawTime = i - o), - void 0 === e.redrawCount && (e.redrawCount = 0), - e.redrawCount++, - void 0 === e.redrawTotalTime && (e.redrawTotalTime = 0); - var a = i - o; - (e.redrawTotalTime += a), - (e.lastRedrawTime = a), - (e.averageRedrawTime = e.averageRedrawTime / 2 + a / 2), - (e.requestedFrame = !1); - } else ys(e, !1, r); - (e.skipFrame = !1), ae(n); - } - }); - } - }; - var bs = function (e) { - this.init(e); - }, - xs = bs.prototype; - (xs.clientFunctions = ['redrawHint', 'render', 'renderTo', 'matchCanvasSize', 'nodeShapeImpl', 'arrowShapeImpl']), - (xs.init = function (e) { - var t = this; - (t.options = e), (t.cy = e.cy); - var n = (t.container = e.cy.container()); - if (w) { - var r = w.document, - o = r.head, - i = '__________cytoscape_stylesheet', - a = '__________cytoscape_container', - s = null != r.getElementById(i); - if ((n.className.indexOf(a) < 0 && (n.className = (n.className || '') + ' ' + a), !s)) { - var l = r.createElement('style'); - (l.id = i), (l.innerHTML = '.' + a + ' { position: relative; }'), o.insertBefore(l, o.children[0]); - } - 'static' === w.getComputedStyle(n).getPropertyValue('position') && - je('A Cytoscape container has style position:static and so can not use UI extensions properly'); - } - (t.selection = [void 0, void 0, void 0, void 0, 0]), - (t.bezierProjPcts = [0.05, 0.225, 0.4, 0.5, 0.6, 0.775, 0.95]), - (t.hoverData = { - down: null, - last: null, - downTime: null, - triggerMode: null, - dragging: !1, - initialPan: [null, null], - capture: !1, - }), - (t.dragData = { possibleDragElements: [] }), - (t.touchData = { - start: null, - capture: !1, - startPosition: [null, null, null, null, null, null], - singleTouchStartTime: null, - singleTouchMoved: !0, - now: [null, null, null, null, null, null], - earlier: [null, null, null, null, null, null], - }), - (t.redraws = 0), - (t.showFps = e.showFps), - (t.debug = e.debug), - (t.hideEdgesOnViewport = e.hideEdgesOnViewport), - (t.textureOnViewport = e.textureOnViewport), - (t.wheelSensitivity = e.wheelSensitivity), - (t.motionBlurEnabled = e.motionBlur), - (t.forcedPixelRatio = M(e.pixelRatio) ? e.pixelRatio : null), - (t.motionBlur = e.motionBlur), - (t.motionBlurOpacity = e.motionBlurOpacity), - (t.motionBlurTransparency = 1 - t.motionBlurOpacity), - (t.motionBlurPxRatio = 1), - (t.mbPxRBlurry = 1), - (t.minMbLowQualFrames = 4), - (t.fullQualityMb = !1), - (t.clearedForMotionBlur = []), - (t.desktopTapThreshold = e.desktopTapThreshold), - (t.desktopTapThreshold2 = e.desktopTapThreshold * e.desktopTapThreshold), - (t.touchTapThreshold = e.touchTapThreshold), - (t.touchTapThreshold2 = e.touchTapThreshold * e.touchTapThreshold), - (t.tapholdDuration = 500), - (t.bindings = []), - (t.beforeRenderCallbacks = []), - (t.beforeRenderPriorities = { - animations: 400, - eleCalcs: 300, - eleTxrDeq: 200, - lyrTxrDeq: 150, - lyrTxrSkip: 100, - }), - t.registerNodeShapes(), - t.registerArrowShapes(), - t.registerCalculationListeners(); - }), - (xs.notify = function (e, t) { - var n = this, - r = n.cy; - this.destroyed || - ('init' !== e - ? 'destroy' !== e - ? (('add' === e || - 'remove' === e || - ('move' === e && r.hasCompoundNodes()) || - 'load' === e || - 'zorder' === e || - 'mount' === e) && - n.invalidateCachedZSortedEles(), - 'viewport' === e && n.redrawHint('select', !0), - ('load' !== e && 'resize' !== e && 'mount' !== e) || - (n.invalidateContainerClientCoordsCache(), n.matchCanvasSize(n.container)), - n.redrawHint('eles', !0), - n.redrawHint('drag', !0), - this.startRenderLoop(), - this.redraw()) - : n.destroy() - : n.load()); - }), - (xs.destroy = function () { - var e = this; - (e.destroyed = !0), e.cy.stopAnimationLoop(); - for (var t = 0; t < e.bindings.length; t++) { - var n = e.bindings[t], - r = n.target; - (r.off || r.removeEventListener).apply(r, n.args); - } - if ( - ((e.bindings = []), - (e.beforeRenderCallbacks = []), - (e.onUpdateEleCalcsFns = []), - e.removeObserver && e.removeObserver.disconnect(), - e.styleObserver && e.styleObserver.disconnect(), - e.resizeObserver && e.resizeObserver.disconnect(), - e.labelCalcDiv) - ) - try { - document.body.removeChild(e.labelCalcDiv); - } catch (o) {} - }), - (xs.isHeadless = function () { - return !1; - }), - [Qa, hs, ps, vs, gs, ms].forEach(function (e) { - Q(xs, e); - }); - var ws = 1e3 / 60, - Es = function (e) { - return function () { - var t = this, - n = this.renderer; - if (!t.dequeueingSetup) { - t.dequeueingSetup = !0; - var r = c.default(function () { - n.redrawHint('eles', !0), n.redrawHint('drag', !0), n.redraw(); - }, e.deqRedrawThreshold), - o = e.priority || Se; - n.beforeRender(function (o, i) { - var a = se(), - s = n.averageRedrawTime, - l = n.lastRedrawTime, - c = [], - u = n.cy.extent(), - d = n.getPixelRatio(); - for (o || n.flushRenderedStyleQueue(); ; ) { - var f = se(), - h = f - a, - p = f - i; - if (l < ws) { - var v = ws - (o ? s : 0); - if (p >= e.deqFastCost * v) break; - } else if (o) { - if (h >= e.deqCost * l || h >= e.deqAvgCost * s) break; - } else if (p >= e.deqNoDrawCost * ws) break; - var g = e.deq(t, d, u); - if (!(g.length > 0)) break; - for (var m = 0; m < g.length; m++) c.push(g[m]); - } - c.length > 0 && (e.onDeqd(t, c), !o && e.shouldRedraw(t, c, d, u) && r()); - }, o(t)); - } - }; - }, - ks = (function () { - function e(t) { - var n = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : ke; - v(this, e), - (this.idsByKey = new Be()), - (this.keyForId = new Be()), - (this.cachesByLvl = new Be()), - (this.lvls = []), - (this.getKey = t), - (this.doesEleInvalidateKey = n); - } - return ( - m(e, [ - { - key: 'getIdsFor', - value: function (e) { - null == e && Pe('Can not get id list for null key'); - var t = this.idsByKey, - n = this.idsByKey.get(e); - return n || ((n = new ze()), t.set(e, n)), n; - }, - }, - { - key: 'addIdForKey', - value: function (e, t) { - null != e && this.getIdsFor(e).add(t); - }, - }, - { - key: 'deleteIdForKey', - value: function (e, t) { - null != e && this.getIdsFor(e).delete(t); - }, - }, - { - key: 'getNumberOfIdsForKey', - value: function (e) { - return null == e ? 0 : this.getIdsFor(e).size; - }, - }, - { - key: 'updateKeyMappingFor', - value: function (e) { - var t = e.id(), - n = this.keyForId.get(t), - r = this.getKey(e); - this.deleteIdForKey(n, t), this.addIdForKey(r, t), this.keyForId.set(t, r); - }, - }, - { - key: 'deleteKeyMappingFor', - value: function (e) { - var t = e.id(), - n = this.keyForId.get(t); - this.deleteIdForKey(n, t), this.keyForId.delete(t); - }, - }, - { - key: 'keyHasChangedFor', - value: function (e) { - var t = e.id(); - return this.keyForId.get(t) !== this.getKey(e); - }, - }, - { - key: 'isInvalid', - value: function (e) { - return this.keyHasChangedFor(e) || this.doesEleInvalidateKey(e); - }, - }, - { - key: 'getCachesAt', - value: function (e) { - var t = this.cachesByLvl, - n = this.lvls, - r = t.get(e); - return r || ((r = new Be()), t.set(e, r), n.push(e)), r; - }, - }, - { - key: 'getCache', - value: function (e, t) { - return this.getCachesAt(t).get(e); - }, - }, - { - key: 'get', - value: function (e, t) { - var n = this.getKey(e), - r = this.getCache(n, t); - return null != r && this.updateKeyMappingFor(e), r; - }, - }, - { - key: 'getForCachedKey', - value: function (e, t) { - var n = this.keyForId.get(e.id()); - return this.getCache(n, t); - }, - }, - { - key: 'hasCache', - value: function (e, t) { - return this.getCachesAt(t).has(e); - }, - }, - { - key: 'has', - value: function (e, t) { - var n = this.getKey(e); - return this.hasCache(n, t); - }, - }, - { - key: 'setCache', - value: function (e, t, n) { - (n.key = e), this.getCachesAt(t).set(e, n); - }, - }, - { - key: 'set', - value: function (e, t, n) { - var r = this.getKey(e); - this.setCache(r, t, n), this.updateKeyMappingFor(e); - }, - }, - { - key: 'deleteCache', - value: function (e, t) { - this.getCachesAt(t).delete(e); - }, - }, - { - key: 'delete', - value: function (e, t) { - var n = this.getKey(e); - this.deleteCache(n, t); - }, - }, - { - key: 'invalidateKey', - value: function (e) { - var t = this; - this.lvls.forEach(function (n) { - return t.deleteCache(e, n); - }); - }, - }, - { - key: 'invalidate', - value: function (e) { - var t = e.id(), - n = this.keyForId.get(t); - this.deleteKeyMappingFor(e); - var r = this.doesEleInvalidateKey(e); - return r && this.invalidateKey(n), r || 0 === this.getNumberOfIdsForKey(n); - }, - }, - ]), - e - ); - })(), - _s = { dequeue: 'dequeue', downscale: 'downscale', highQuality: 'highQuality' }, - Ss = Oe({ - getKey: null, - doesEleInvalidateKey: ke, - drawElement: null, - getBoundingBox: null, - getRotationPoint: null, - getRotationOffset: null, - isVisible: Ee, - allowEdgeTxrCaching: !0, - allowParentTxrCaching: !0, - }), - Ps = function (e, t) { - var n = this; - (n.renderer = e), (n.onDequeues = []); - var r = Ss(t); - Q(n, r), (n.lookup = new ks(r.getKey, r.doesEleInvalidateKey)), n.setupDequeueing(); - }, - Cs = Ps.prototype; - (Cs.reasons = _s), - (Cs.getTextureQueue = function (e) { - var t = this; - return (t.eleImgCaches = t.eleImgCaches || {}), (t.eleImgCaches[e] = t.eleImgCaches[e] || []); - }), - (Cs.getRetiredTextureQueue = function (e) { - var t = (this.eleImgCaches.retired = this.eleImgCaches.retired || {}); - return (t[e] = t[e] || []); - }), - (Cs.getElementQueue = function () { - return (this.eleCacheQueue = - this.eleCacheQueue || - new u.default(function (e, t) { - return t.reqs - e.reqs; - })); - }), - (Cs.getElementKeyToQueue = function () { - return (this.eleKeyToCacheQueue = this.eleKeyToCacheQueue || {}); - }), - (Cs.getElement = function (e, t, n, r, o) { - var i = this, - a = this.renderer, - s = a.cy.zoom(), - l = this.lookup; - if (!t || 0 === t.w || 0 === t.h || isNaN(t.w) || isNaN(t.h) || !e.visible() || e.removed()) return null; - if ((!i.allowEdgeTxrCaching && e.isEdge()) || (!i.allowParentTxrCaching && e.isParent())) return null; - if ((null == r && (r = Math.ceil(st(s * n))), r < -4)) r = -4; - else if (s >= 7.99 || r > 3) return null; - var c = Math.pow(2, r), - u = t.h * c, - d = t.w * c, - f = a.eleTextBiggerThanMin(e, c); - if (!this.isVisible(e, f)) return null; - var h, - p = l.get(e, r); - if ((p && p.invalidated && ((p.invalidated = !1), (p.texture.invalidatedWidth -= p.width)), p)) return p; - if (((h = u <= 25 ? 25 : u <= 50 ? 50 : 50 * Math.ceil(u / 50)), u > 1024 || d > 1024)) return null; - var v = i.getTextureQueue(h), - g = v[v.length - 2], - m = function () { - return i.recycleTexture(h, d) || i.addTexture(h, d); - }; - g || (g = v[v.length - 1]), g || (g = m()), g.width - g.usedWidth < d && (g = m()); - for ( - var y, - b = function (e) { - return e && e.scaledLabelShown === f; - }, - x = o && o === _s.dequeue, - w = o && o === _s.highQuality, - E = o && o === _s.downscale, - k = r + 1; - k <= 3; - k++ - ) { - var _ = l.get(e, k); - if (_) { - y = _; - break; - } - } - var S = y && y.level === r + 1 ? y : null, - P = function () { - g.context.drawImage(S.texture.canvas, S.x, 0, S.width, S.height, g.usedWidth, 0, d, u); - }; - if ((g.context.setTransform(1, 0, 0, 1, 0, 0), g.context.clearRect(g.usedWidth, 0, d, h), b(S))) P(); - else if (b(y)) { - if (!w) return i.queueElement(e, y.level - 1), y; - for (var C = y.level; C > r; C--) S = i.getElement(e, t, n, C, _s.downscale); - P(); - } else { - var j; - if (!x && !w && !E) - for (var T = r - 1; T >= -4; T--) { - var D = l.get(e, T); - if (D) { - j = D; - break; - } - } - if (b(j)) return i.queueElement(e, r), j; - g.context.translate(g.usedWidth, 0), - g.context.scale(c, c), - this.drawElement(g.context, e, t, f, !1), - g.context.scale(1 / c, 1 / c), - g.context.translate(-g.usedWidth, 0); - } - return ( - (p = { x: g.usedWidth, texture: g, level: r, scale: c, width: d, height: u, scaledLabelShown: f }), - (g.usedWidth += Math.ceil(d + 8)), - g.eleCaches.push(p), - l.set(e, r, p), - i.checkTextureFullness(g), - p - ); - }), - (Cs.invalidateElements = function (e) { - for (var t = 0; t < e.length; t++) this.invalidateElement(e[t]); - }), - (Cs.invalidateElement = function (e) { - var t = this, - n = t.lookup, - r = []; - if (n.isInvalid(e)) { - for (var o = -4; o <= 3; o++) { - var i = n.getForCachedKey(e, o); - i && r.push(i); - } - if (n.invalidate(e)) - for (var a = 0; a < r.length; a++) { - var s = r[a], - l = s.texture; - (l.invalidatedWidth += s.width), (s.invalidated = !0), t.checkTextureUtility(l); - } - t.removeFromQueue(e); - } - }), - (Cs.checkTextureUtility = function (e) { - e.invalidatedWidth >= 0.2 * e.width && this.retireTexture(e); - }), - (Cs.checkTextureFullness = function (e) { - var t = this.getTextureQueue(e.height); - e.usedWidth / e.width > 0.8 && e.fullnessChecks >= 10 ? Ae(t, e) : e.fullnessChecks++; - }), - (Cs.retireTexture = function (e) { - var t = e.height, - n = this.getTextureQueue(t), - r = this.lookup; - Ae(n, e), (e.retired = !0); - for (var o = e.eleCaches, i = 0; i < o.length; i++) { - var a = o[i]; - r.deleteCache(a.key, a.level); - } - Re(o), this.getRetiredTextureQueue(t).push(e); - }), - (Cs.addTexture = function (e, t) { - var n = {}; - return ( - this.getTextureQueue(e).push(n), - (n.eleCaches = []), - (n.height = e), - (n.width = Math.max(1024, t)), - (n.usedWidth = 0), - (n.invalidatedWidth = 0), - (n.fullnessChecks = 0), - (n.canvas = this.renderer.makeOffscreenCanvas(n.width, n.height)), - (n.context = n.canvas.getContext('2d')), - n - ); - }), - (Cs.recycleTexture = function (e, t) { - for (var n = this.getTextureQueue(e), r = this.getRetiredTextureQueue(e), o = 0; o < r.length; o++) { - var i = r[o]; - if (i.width >= t) - return ( - (i.retired = !1), - (i.usedWidth = 0), - (i.invalidatedWidth = 0), - (i.fullnessChecks = 0), - Re(i.eleCaches), - i.context.setTransform(1, 0, 0, 1, 0, 0), - i.context.clearRect(0, 0, i.width, i.height), - Ae(r, i), - n.push(i), - i - ); - } - }), - (Cs.queueElement = function (e, t) { - var n = this.getElementQueue(), - r = this.getElementKeyToQueue(), - o = this.getKey(e), - i = r[o]; - if (i) (i.level = Math.max(i.level, t)), i.eles.merge(e), i.reqs++, n.updateItem(i); - else { - var a = { eles: e.spawn().merge(e), level: t, reqs: 1, key: o }; - n.push(a), (r[o] = a); - } - }), - (Cs.dequeue = function (e) { - for ( - var t = this, n = t.getElementQueue(), r = t.getElementKeyToQueue(), o = [], i = t.lookup, a = 0; - a < 1 && n.size() > 0; - a++ - ) { - var s = n.pop(), - l = s.key, - c = s.eles[0], - u = i.hasCache(c, s.level); - if (((r[l] = null), !u)) { - o.push(s); - var d = t.getBoundingBox(c); - t.getElement(c, d, e, s.level, _s.dequeue); - } - } - return o; - }), - (Cs.removeFromQueue = function (e) { - var t = this.getElementQueue(), - n = this.getElementKeyToQueue(), - r = this.getKey(e), - o = n[r]; - null != o && - (1 === o.eles.length ? ((o.reqs = we), t.updateItem(o), t.pop(), (n[r] = null)) : o.eles.unmerge(e)); - }), - (Cs.onDequeue = function (e) { - this.onDequeues.push(e); - }), - (Cs.offDequeue = function (e) { - Ae(this.onDequeues, e); - }), - (Cs.setupDequeueing = Es({ - deqRedrawThreshold: 100, - deqCost: 0.15, - deqAvgCost: 0.1, - deqNoDrawCost: 0.9, - deqFastCost: 0.9, - deq: function (e, t, n) { - return e.dequeue(t, n); - }, - onDeqd: function (e, t) { - for (var n = 0; n < e.onDequeues.length; n++) { - (0, e.onDequeues[n])(t); - } - }, - shouldRedraw: function (e, t, n, r) { - for (var o = 0; o < t.length; o++) - for (var i = t[o].eles, a = 0; a < i.length; a++) { - var s = i[a].boundingBox(); - if (xt(s, r)) return !0; - } - return !1; - }, - priority: function (e) { - return e.renderer.beforeRenderPriorities.eleTxrDeq; - }, - })); - var js = function (e) { - var t = this, - n = (t.renderer = e), - r = n.cy; - (t.layersByLevel = {}), - (t.firstGet = !0), - (t.lastInvalidationTime = se() - 500), - (t.skipping = !1), - (t.eleTxrDeqs = r.collection()), - (t.scheduleElementRefinement = c.default(function () { - t.refineElementTextures(t.eleTxrDeqs), t.eleTxrDeqs.unmerge(t.eleTxrDeqs); - }, 50)), - n.beforeRender(function (e, n) { - n - t.lastInvalidationTime <= 250 ? (t.skipping = !0) : (t.skipping = !1); - }, n.beforeRenderPriorities.lyrTxrSkip); - (t.layersQueue = new u.default(function (e, t) { - return t.reqs - e.reqs; - })), - t.setupDequeueing(); - }, - Ts = js.prototype, - Ds = 0, - Ns = Math.pow(2, 53) - 1; - (Ts.makeLayer = function (e, t) { - var n = Math.pow(2, t), - r = Math.ceil(e.w * n), - o = Math.ceil(e.h * n), - i = this.renderer.makeOffscreenCanvas(r, o), - a = { - id: (Ds = ++Ds % Ns), - bb: e, - level: t, - width: r, - height: o, - canvas: i, - context: i.getContext('2d'), - eles: [], - elesQueue: [], - reqs: 0, - }, - s = a.context, - l = -a.bb.x1, - c = -a.bb.y1; - return s.scale(n, n), s.translate(l, c), a; - }), - (Ts.getLayers = function (e, t, n) { - var r = this, - o = r.renderer.cy.zoom(), - i = r.firstGet; - if (((r.firstGet = !1), null == n)) - if ((n = Math.ceil(st(o * t))) < -4) n = -4; - else if (o >= 3.99 || n > 2) return null; - r.validateLayersElesOrdering(n, e); - var a, - s, - l = r.layersByLevel, - c = Math.pow(2, n), - u = (l[n] = l[n] || []); - if (r.levelIsComplete(n, e)) return u; - !(function () { - var t = function (t) { - if ((r.validateLayersElesOrdering(t, e), r.levelIsComplete(t, e))) return (s = l[t]), !0; - }, - o = function (e) { - if (!s) for (var r = n + e; -4 <= r && r <= 2 && !t(r); r += e); - }; - o(1), o(-1); - for (var i = u.length - 1; i >= 0; i--) { - var a = u[i]; - a.invalid && Ae(u, a); - } - })(); - var d = function (t) { - var o = (t = t || {}).after; - if ( - ((function () { - if (!a) { - a = vt(); - for (var t = 0; t < e.length; t++) - (n = a), - (r = e[t].boundingBox()), - (n.x1 = Math.min(n.x1, r.x1)), - (n.x2 = Math.max(n.x2, r.x2)), - (n.w = n.x2 - n.x1), - (n.y1 = Math.min(n.y1, r.y1)), - (n.y2 = Math.max(n.y2, r.y2)), - (n.h = n.y2 - n.y1); - } - var n, r; - })(), - a.w * c * (a.h * c) > 16e6) - ) - return null; - var i = r.makeLayer(a, n); - if (null != o) { - var s = u.indexOf(o) + 1; - u.splice(s, 0, i); - } else (void 0 === t.insert || t.insert) && u.unshift(i); - return i; - }; - if (r.skipping && !i) return null; - for (var f = null, h = e.length / 1, p = !i, v = 0; v < e.length; v++) { - var g = e[v], - m = g._private.rscratch, - y = (m.imgLayerCaches = m.imgLayerCaches || {}), - b = y[n]; - if (b) f = b; - else { - if ((!f || f.eles.length >= h || !Et(f.bb, g.boundingBox())) && !(f = d({ insert: !0, after: f }))) - return null; - s || p ? r.queueLayer(f, g) : r.drawEleInLayer(f, g, n, t), f.eles.push(g), (y[n] = f); - } - } - return s || (p ? null : u); - }), - (Ts.getEleLevelForLayerLevel = function (e, t) { - return e; - }), - (Ts.drawEleInLayer = function (e, t, n, r) { - var o = this.renderer, - i = e.context, - a = t.boundingBox(); - 0 !== a.w && - 0 !== a.h && - t.visible() && - ((n = this.getEleLevelForLayerLevel(n, r)), - o.setImgSmoothing(i, !1), - o.drawCachedElement(i, t, null, null, n, true), - o.setImgSmoothing(i, !0)); - }), - (Ts.levelIsComplete = function (e, t) { - var n = this.layersByLevel[e]; - if (!n || 0 === n.length) return !1; - for (var r = 0, o = 0; o < n.length; o++) { - var i = n[o]; - if (i.reqs > 0) return !1; - if (i.invalid) return !1; - r += i.eles.length; - } - return r === t.length; - }), - (Ts.validateLayersElesOrdering = function (e, t) { - var n = this.layersByLevel[e]; - if (n) - for (var r = 0; r < n.length; r++) { - for (var o = n[r], i = -1, a = 0; a < t.length; a++) - if (o.eles[0] === t[a]) { - i = a; - break; - } - if (i < 0) this.invalidateLayer(o); - else { - var s = i; - for (a = 0; a < o.eles.length; a++) - if (o.eles[a] !== t[s + a]) { - this.invalidateLayer(o); - break; - } - } - } - }), - (Ts.updateElementsInLayers = function (e, t) { - for (var n = R(e[0]), r = 0; r < e.length; r++) - for ( - var o = n ? null : e[r], - i = n ? e[r] : e[r].ele, - a = i._private.rscratch, - s = (a.imgLayerCaches = a.imgLayerCaches || {}), - l = -4; - l <= 2; - l++ - ) { - var c = s[l]; - c && ((o && this.getEleLevelForLayerLevel(c.level) !== o.level) || t(c, i, o)); - } - }), - (Ts.haveLayers = function () { - for (var e = !1, t = -4; t <= 2; t++) { - var n = this.layersByLevel[t]; - if (n && n.length > 0) { - e = !0; - break; - } - } - return e; - }), - (Ts.invalidateElements = function (e) { - var t = this; - 0 !== e.length && - ((t.lastInvalidationTime = se()), - 0 !== e.length && - t.haveLayers() && - t.updateElementsInLayers(e, function (e, n, r) { - t.invalidateLayer(e); - })); - }), - (Ts.invalidateLayer = function (e) { - if (((this.lastInvalidationTime = se()), !e.invalid)) { - var t = e.level, - n = e.eles, - r = this.layersByLevel[t]; - Ae(r, e), (e.elesQueue = []), (e.invalid = !0), e.replacement && (e.replacement.invalid = !0); - for (var o = 0; o < n.length; o++) { - var i = n[o]._private.rscratch.imgLayerCaches; - i && (i[t] = null); - } - } - }), - (Ts.refineElementTextures = function (e) { - var t = this; - t.updateElementsInLayers(e, function (e, n, r) { - var o = e.replacement; - if ((o || (((o = e.replacement = t.makeLayer(e.bb, e.level)).replaces = e), (o.eles = e.eles)), !o.reqs)) - for (var i = 0; i < o.eles.length; i++) t.queueLayer(o, o.eles[i]); - }); - }), - (Ts.enqueueElementRefinement = function (e) { - this.eleTxrDeqs.merge(e), this.scheduleElementRefinement(); - }), - (Ts.queueLayer = function (e, t) { - var n = this.layersQueue, - r = e.elesQueue, - o = (r.hasId = r.hasId || {}); - if (!e.replacement) { - if (t) { - if (o[t.id()]) return; - r.push(t), (o[t.id()] = !0); - } - e.reqs ? (e.reqs++, n.updateItem(e)) : ((e.reqs = 1), n.push(e)); - } - }), - (Ts.dequeue = function (e) { - for (var t = this, n = t.layersQueue, r = [], o = 0; o < 1 && 0 !== n.size(); ) { - var i = n.peek(); - if (i.replacement) n.pop(); - else if (i.replaces && i !== i.replaces.replacement) n.pop(); - else if (i.invalid) n.pop(); - else { - var a = i.elesQueue.shift(); - a && (t.drawEleInLayer(i, a, i.level, e), o++), - 0 === r.length && r.push(!0), - 0 === i.elesQueue.length && - (n.pop(), (i.reqs = 0), i.replaces && t.applyLayerReplacement(i), t.requestRedraw()); - } - } - return r; - }), - (Ts.applyLayerReplacement = function (e) { - var t = this.layersByLevel[e.level], - n = e.replaces, - r = t.indexOf(n); - if (!(r < 0 || n.invalid)) { - t[r] = e; - for (var o = 0; o < e.eles.length; o++) { - var i = e.eles[o]._private, - a = (i.imgLayerCaches = i.imgLayerCaches || {}); - a && (a[e.level] = e); - } - this.requestRedraw(); - } - }), - (Ts.requestRedraw = c.default(function () { - var e = this.renderer; - e.redrawHint('eles', !0), e.redrawHint('drag', !0), e.redraw(); - }, 100)), - (Ts.setupDequeueing = Es({ - deqRedrawThreshold: 50, - deqCost: 0.15, - deqAvgCost: 0.1, - deqNoDrawCost: 0.9, - deqFastCost: 0.9, - deq: function (e, t) { - return e.dequeue(t); - }, - onDeqd: Se, - shouldRedraw: Ee, - priority: function (e) { - return e.renderer.beforeRenderPriorities.lyrTxrDeq; - }, - })); - var Ms, - Os = {}; - function As(e, t) { - for (var n = 0; n < t.length; n++) { - var r = t[n]; - e.lineTo(r.x, r.y); - } - } - function Rs(e, t, n) { - for (var r, o = 0; o < t.length; o++) { - var i = t[o]; - 0 === o && (r = i), e.lineTo(i.x, i.y); - } - e.quadraticCurveTo(n.x, n.y, r.x, r.y); - } - function Ls(e, t, n) { - e.beginPath && e.beginPath(); - for (var r = t, o = 0; o < r.length; o++) { - var i = r[o]; - e.lineTo(i.x, i.y); - } - var a = n, - s = n[0]; - e.moveTo(s.x, s.y); - for (o = 1; o < a.length; o++) { - i = a[o]; - e.lineTo(i.x, i.y); - } - e.closePath && e.closePath(); - } - function Is(e, t, n, r, o) { - e.beginPath && e.beginPath(), e.arc(n, r, o, 0, 2 * Math.PI, !1); - var i = t, - a = i[0]; - e.moveTo(a.x, a.y); - for (var s = 0; s < i.length; s++) { - var l = i[s]; - e.lineTo(l.x, l.y); - } - e.closePath && e.closePath(); - } - function Bs(e, t, n, r) { - e.arc(t, n, r, 0, 2 * Math.PI, !1); - } - Os.arrowShapeImpl = function (e) { - return (Ms || - (Ms = { - polygon: As, - 'triangle-backcurve': Rs, - 'triangle-tee': Ls, - 'circle-triangle': Is, - 'triangle-cross': Ls, - circle: Bs, - }))[e]; - }; - var Fs = { - drawElement: function (e, t, n, r, o, i) { - t.isNode() ? this.drawNode(e, t, n, r, o, i) : this.drawEdge(e, t, n, r, o, i); - }, - drawElementOverlay: function (e, t) { - t.isNode() ? this.drawNodeOverlay(e, t) : this.drawEdgeOverlay(e, t); - }, - drawElementUnderlay: function (e, t) { - t.isNode() ? this.drawNodeUnderlay(e, t) : this.drawEdgeUnderlay(e, t); - }, - drawCachedElementPortion: function (e, t, n, r, o, i, a, s) { - var l = this, - c = n.getBoundingBox(t); - if (0 !== c.w && 0 !== c.h) { - var u = n.getElement(t, c, r, o, i); - if (null != u) { - var d = s(l, t); - if (0 === d) return; - var f, - h, - p, - v, - g, - m, - y = a(l, t), - b = c.x1, - x = c.y1, - w = c.w, - E = c.h; - if (0 !== y) { - var k = n.getRotationPoint(t); - (p = k.x), - (v = k.y), - e.translate(p, v), - e.rotate(y), - (g = l.getImgSmoothing(e)) || l.setImgSmoothing(e, !0); - var _ = n.getRotationOffset(t); - (f = _.x), (h = _.y); - } else (f = b), (h = x); - 1 !== d && ((m = e.globalAlpha), (e.globalAlpha = m * d)), - e.drawImage(u.texture.canvas, u.x, 0, u.width, u.height, f, h, w, E), - 1 !== d && (e.globalAlpha = m), - 0 !== y && (e.rotate(-y), e.translate(-p, -v), g || l.setImgSmoothing(e, !1)); - } else n.drawElement(e, t); - } - }, - }, - zs = function () { - return 0; - }, - Vs = function (e, t) { - return e.getTextAngle(t, null); - }, - Gs = function (e, t) { - return e.getTextAngle(t, 'source'); - }, - Hs = function (e, t) { - return e.getTextAngle(t, 'target'); - }, - Ws = function (e, t) { - return t.effectiveOpacity(); - }, - Us = function (e, t) { - return t.pstyle('text-opacity').pfValue * t.effectiveOpacity(); - }; - (Fs.drawCachedElement = function (e, t, n, r, o, i) { - var a = this, - s = a.data, - l = s.eleTxrCache, - c = s.lblTxrCache, - u = s.slbTxrCache, - d = s.tlbTxrCache, - f = t.boundingBox(), - h = !0 === i ? l.reasons.highQuality : null; - if (0 !== f.w && 0 !== f.h && t.visible() && (!r || xt(f, r))) { - var p = t.isEdge(), - v = t.element()._private.rscratch.badLine; - a.drawElementUnderlay(e, t), - a.drawCachedElementPortion(e, t, l, n, o, h, zs, Ws), - (p && v) || a.drawCachedElementPortion(e, t, c, n, o, h, Vs, Us), - p && - !v && - (a.drawCachedElementPortion(e, t, u, n, o, h, Gs, Us), - a.drawCachedElementPortion(e, t, d, n, o, h, Hs, Us)), - a.drawElementOverlay(e, t); - } - }), - (Fs.drawElements = function (e, t) { - for (var n = 0; n < t.length; n++) { - var r = t[n]; - this.drawElement(e, r); - } - }), - (Fs.drawCachedElements = function (e, t, n, r) { - for (var o = 0; o < t.length; o++) { - var i = t[o]; - this.drawCachedElement(e, i, n, r); - } - }), - (Fs.drawCachedNodes = function (e, t, n, r) { - for (var o = 0; o < t.length; o++) { - var i = t[o]; - i.isNode() && this.drawCachedElement(e, i, n, r); - } - }), - (Fs.drawLayeredElements = function (e, t, n, r) { - var o = this.data.lyrTxrCache.getLayers(t, n); - if (o) - for (var i = 0; i < o.length; i++) { - var a = o[i], - s = a.bb; - 0 !== s.w && 0 !== s.h && e.drawImage(a.canvas, s.x1, s.y1, s.w, s.h); - } - else this.drawCachedElements(e, t, n, r); - }); - var qs = { - drawEdge: function (e, t, n) { - var r = !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3], - o = !(arguments.length > 4 && void 0 !== arguments[4]) || arguments[4], - i = !(arguments.length > 5 && void 0 !== arguments[5]) || arguments[5], - a = this, - s = t._private.rscratch; - if ((!i || t.visible()) && !s.badLine && null != s.allpts && !isNaN(s.allpts[0])) { - var l; - n && ((l = n), e.translate(-l.x1, -l.y1)); - var c = i ? t.pstyle('opacity').value : 1, - u = i ? t.pstyle('line-opacity').value : 1, - d = t.pstyle('curve-style').value, - f = t.pstyle('line-style').value, - h = t.pstyle('width').pfValue, - p = t.pstyle('line-cap').value, - v = c * u, - g = c * u, - m = function () { - var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : v; - 'straight-triangle' === d - ? (a.eleStrokeStyle(e, t, n), a.drawEdgeTrianglePath(t, e, s.allpts)) - : ((e.lineWidth = h), - (e.lineCap = p), - a.eleStrokeStyle(e, t, n), - a.drawEdgePath(t, e, s.allpts, f), - (e.lineCap = 'butt')); - }, - y = function () { - var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : g; - a.drawArrowheads(e, t, n); - }; - if (((e.lineJoin = 'round'), 'yes' === t.pstyle('ghost').value)) { - var b = t.pstyle('ghost-offset-x').pfValue, - x = t.pstyle('ghost-offset-y').pfValue, - w = t.pstyle('ghost-opacity').value, - E = v * w; - e.translate(b, x), m(E), y(E), e.translate(-b, -x); - } - o && a.drawEdgeUnderlay(e, t), - m(), - y(), - o && a.drawEdgeOverlay(e, t), - a.drawElementText(e, t, null, r), - n && e.translate(l.x1, l.y1); - } - }, - }, - Ys = function (e) { - if (!['overlay', 'underlay'].includes(e)) throw new Error('Invalid state'); - return function (t, n) { - if (n.visible()) { - var r = n.pstyle(''.concat(e, '-opacity')).value; - if (0 !== r) { - var o = this, - i = o.usePaths(), - a = n._private.rscratch, - s = 2 * n.pstyle(''.concat(e, '-padding')).pfValue, - l = n.pstyle(''.concat(e, '-color')).value; - (t.lineWidth = s), - 'self' !== a.edgeType || i ? (t.lineCap = 'round') : (t.lineCap = 'butt'), - o.colorStrokeStyle(t, l[0], l[1], l[2], r), - o.drawEdgePath(n, t, a.allpts, 'solid'); - } - } - }; - }; - (qs.drawEdgeOverlay = Ys('overlay')), - (qs.drawEdgeUnderlay = Ys('underlay')), - (qs.drawEdgePath = function (e, t, n, r) { - var o, - i = e._private.rscratch, - a = t, - s = !1, - l = this.usePaths(), - c = e.pstyle('line-dash-pattern').pfValue, - u = e.pstyle('line-dash-offset').pfValue; - if (l) { - var d = n.join('$'); - i.pathCacheKey && i.pathCacheKey === d - ? ((o = t = i.pathCache), (s = !0)) - : ((o = t = new Path2D()), (i.pathCacheKey = d), (i.pathCache = o)); - } - if (a.setLineDash) - switch (r) { - case 'dotted': - a.setLineDash([1, 1]); - break; - case 'dashed': - a.setLineDash(c), (a.lineDashOffset = u); - break; - case 'solid': - a.setLineDash([]); - } - if (!s && !i.badLine) - switch ((t.beginPath && t.beginPath(), t.moveTo(n[0], n[1]), i.edgeType)) { - case 'bezier': - case 'self': - case 'compound': - case 'multibezier': - for (var f = 2; f + 3 < n.length; f += 4) t.quadraticCurveTo(n[f], n[f + 1], n[f + 2], n[f + 3]); - break; - case 'straight': - case 'segments': - case 'haystack': - for (var h = 2; h + 1 < n.length; h += 2) t.lineTo(n[h], n[h + 1]); - } - (t = a), l ? t.stroke(o) : t.stroke(), t.setLineDash && t.setLineDash([]); - }), - (qs.drawEdgeTrianglePath = function (e, t, n) { - t.fillStyle = t.strokeStyle; - for (var r = e.pstyle('width').pfValue, o = 0; o + 1 < n.length; o += 2) { - var i = [n[o + 2] - n[o], n[o + 3] - n[o + 1]], - a = Math.sqrt(i[0] * i[0] + i[1] * i[1]), - s = [i[1] / a, -i[0] / a], - l = [(s[0] * r) / 2, (s[1] * r) / 2]; - t.beginPath(), - t.moveTo(n[o] - l[0], n[o + 1] - l[1]), - t.lineTo(n[o] + l[0], n[o + 1] + l[1]), - t.lineTo(n[o + 2], n[o + 3]), - t.closePath(), - t.fill(); - } - }), - (qs.drawArrowheads = function (e, t, n) { - var r = t._private.rscratch, - o = 'haystack' === r.edgeType; - o || this.drawArrowhead(e, t, 'source', r.arrowStartX, r.arrowStartY, r.srcArrowAngle, n), - this.drawArrowhead(e, t, 'mid-target', r.midX, r.midY, r.midtgtArrowAngle, n), - this.drawArrowhead(e, t, 'mid-source', r.midX, r.midY, r.midsrcArrowAngle, n), - o || this.drawArrowhead(e, t, 'target', r.arrowEndX, r.arrowEndY, r.tgtArrowAngle, n); - }), - (qs.drawArrowhead = function (e, t, n, r, o, i, a) { - if (!(isNaN(r) || null == r || isNaN(o) || null == o || isNaN(i) || null == i)) { - var s = this, - l = t.pstyle(n + '-arrow-shape').value; - if ('none' !== l) { - var c = 'hollow' === t.pstyle(n + '-arrow-fill').value ? 'both' : 'filled', - u = t.pstyle(n + '-arrow-fill').value, - d = t.pstyle('width').pfValue, - f = t.pstyle('opacity').value; - void 0 === a && (a = f); - var h = e.globalCompositeOperation; - (1 === a && 'hollow' !== u) || - ((e.globalCompositeOperation = 'destination-out'), - s.colorFillStyle(e, 255, 255, 255, 1), - s.colorStrokeStyle(e, 255, 255, 255, 1), - s.drawArrowShape(t, e, c, d, l, r, o, i), - (e.globalCompositeOperation = h)); - var p = t.pstyle(n + '-arrow-color').value; - s.colorFillStyle(e, p[0], p[1], p[2], a), - s.colorStrokeStyle(e, p[0], p[1], p[2], a), - s.drawArrowShape(t, e, u, d, l, r, o, i); - } - } - }), - (qs.drawArrowShape = function (e, t, n, r, o, i, a, s) { - var l, - c = this, - u = this.usePaths() && 'triangle-cross' !== o, - d = !1, - f = t, - h = { x: i, y: a }, - p = e.pstyle('arrow-scale').value, - v = this.getArrowWidth(r, p), - g = c.arrowShapes[o]; - if (u) { - var m = (c.arrowPathCache = c.arrowPathCache || []), - y = ve(o), - b = m[y]; - null != b ? ((l = t = b), (d = !0)) : ((l = t = new Path2D()), (m[y] = l)); - } - d || - (t.beginPath && t.beginPath(), - u ? g.draw(t, 1, 0, { x: 0, y: 0 }, 1) : g.draw(t, v, s, h, r), - t.closePath && t.closePath()), - (t = f), - u && (t.translate(i, a), t.rotate(s), t.scale(v, v)), - ('filled' !== n && 'both' !== n) || (u ? t.fill(l) : t.fill()), - ('hollow' !== n && 'both' !== n) || - ((t.lineWidth = (g.matchEdgeWidth ? r : 1) / (u ? v : 1)), - (t.lineJoin = 'miter'), - u ? t.stroke(l) : t.stroke()), - u && (t.scale(1 / v, 1 / v), t.rotate(-s), t.translate(-i, -a)); - }); - var Xs = { - safeDrawImage: function (e, t, n, r, o, i, a, s, l, c) { - if (!(o <= 0 || i <= 0 || l <= 0 || c <= 0)) - try { - e.drawImage(t, n, r, o, i, a, s, l, c); - } catch (u) { - je(u); - } - }, - drawInscribedImage: function (e, t, n, r, o) { - var i = this, - a = n.position(), - s = a.x, - l = a.y, - c = n.cy().style(), - u = c.getIndexedStyle.bind(c), - d = u(n, 'background-fit', 'value', r), - f = u(n, 'background-repeat', 'value', r), - h = n.width(), - p = n.height(), - v = 2 * n.padding(), - g = h + ('inner' === u(n, 'background-width-relative-to', 'value', r) ? 0 : v), - m = p + ('inner' === u(n, 'background-height-relative-to', 'value', r) ? 0 : v), - y = n._private.rscratch, - b = 'node' === u(n, 'background-clip', 'value', r), - x = u(n, 'background-image-opacity', 'value', r) * o, - w = u(n, 'background-image-smoothing', 'value', r), - E = t.width || t.cachedW, - k = t.height || t.cachedH; - (null != E && null != k) || - (document.body.appendChild(t), - (E = t.cachedW = t.width || t.offsetWidth), - (k = t.cachedH = t.height || t.offsetHeight), - document.body.removeChild(t)); - var _ = E, - S = k; - if ( - ('auto' !== u(n, 'background-width', 'value', r) && - (_ = - '%' === u(n, 'background-width', 'units', r) - ? u(n, 'background-width', 'pfValue', r) * g - : u(n, 'background-width', 'pfValue', r)), - 'auto' !== u(n, 'background-height', 'value', r) && - (S = - '%' === u(n, 'background-height', 'units', r) - ? u(n, 'background-height', 'pfValue', r) * m - : u(n, 'background-height', 'pfValue', r)), - 0 !== _ && 0 !== S) - ) { - if ('contain' === d) (_ *= P = Math.min(g / _, m / S)), (S *= P); - else if ('cover' === d) { - var P; - (_ *= P = Math.max(g / _, m / S)), (S *= P); - } - var C = s - g / 2, - j = u(n, 'background-position-x', 'units', r), - T = u(n, 'background-position-x', 'pfValue', r); - C += '%' === j ? (g - _) * T : T; - var D = u(n, 'background-offset-x', 'units', r), - N = u(n, 'background-offset-x', 'pfValue', r); - C += '%' === D ? (g - _) * N : N; - var M = l - m / 2, - O = u(n, 'background-position-y', 'units', r), - A = u(n, 'background-position-y', 'pfValue', r); - M += '%' === O ? (m - S) * A : A; - var R = u(n, 'background-offset-y', 'units', r), - L = u(n, 'background-offset-y', 'pfValue', r); - (M += '%' === R ? (m - S) * L : L), y.pathCache && ((C -= s), (M -= l), (s = 0), (l = 0)); - var I = e.globalAlpha; - e.globalAlpha = x; - var B = i.getImgSmoothing(e), - F = !1; - if ( - ('no' === w && B - ? (i.setImgSmoothing(e, !1), (F = !0)) - : 'yes' !== w || B || (i.setImgSmoothing(e, !0), (F = !0)), - 'no-repeat' === f) - ) - b && - (e.save(), - y.pathCache ? e.clip(y.pathCache) : (i.nodeShapes[i.getNodeShape(n)].draw(e, s, l, g, m), e.clip())), - i.safeDrawImage(e, t, 0, 0, E, k, C, M, _, S), - b && e.restore(); - else { - var z = e.createPattern(t, f); - (e.fillStyle = z), - i.nodeShapes[i.getNodeShape(n)].draw(e, s, l, g, m), - e.translate(C, M), - e.fill(), - e.translate(-C, -M); - } - (e.globalAlpha = I), F && i.setImgSmoothing(e, B); - } - }, - }, - $s = {}; - ($s.eleTextBiggerThanMin = function (e, t) { - if (!t) { - var n = e.cy().zoom(), - r = this.getPixelRatio(), - o = Math.ceil(st(n * r)); - t = Math.pow(2, o); - } - return !(e.pstyle('font-size').pfValue * t < e.pstyle('min-zoomed-font-size').pfValue); - }), - ($s.drawElementText = function (e, t, n, r, o) { - var i = !(arguments.length > 5 && void 0 !== arguments[5]) || arguments[5], - a = this; - if (null == r) { - if (i && !a.eleTextBiggerThanMin(t)) return; - } else if (!1 === r) return; - if (t.isNode()) { - var s = t.pstyle('label'); - if (!s || !s.value) return; - var l = a.getLabelJustification(t); - (e.textAlign = l), (e.textBaseline = 'bottom'); - } else { - var c = t.element()._private.rscratch.badLine, - u = t.pstyle('label'), - d = t.pstyle('source-label'), - f = t.pstyle('target-label'); - if (c || ((!u || !u.value) && (!d || !d.value) && (!f || !f.value))) return; - (e.textAlign = 'center'), (e.textBaseline = 'bottom'); - } - var h, - p = !n; - n && ((h = n), e.translate(-h.x1, -h.y1)), - null == o - ? (a.drawText(e, t, null, p, i), - t.isEdge() && (a.drawText(e, t, 'source', p, i), a.drawText(e, t, 'target', p, i))) - : a.drawText(e, t, o, p, i), - n && e.translate(h.x1, h.y1); - }), - ($s.getFontCache = function (e) { - var t; - this.fontCaches = this.fontCaches || []; - for (var n = 0; n < this.fontCaches.length; n++) if ((t = this.fontCaches[n]).context === e) return t; - return (t = { context: e }), this.fontCaches.push(t), t; - }), - ($s.setupTextStyle = function (e, t) { - var n = !(arguments.length > 2 && void 0 !== arguments[2]) || arguments[2], - r = t.pstyle('font-style').strValue, - o = t.pstyle('font-size').pfValue + 'px', - i = t.pstyle('font-family').strValue, - a = t.pstyle('font-weight').strValue, - s = n ? t.effectiveOpacity() * t.pstyle('text-opacity').value : 1, - l = t.pstyle('text-outline-opacity').value * s, - c = t.pstyle('color').value, - u = t.pstyle('text-outline-color').value; - (e.font = r + ' ' + a + ' ' + o + ' ' + i), - (e.lineJoin = 'round'), - this.colorFillStyle(e, c[0], c[1], c[2], s), - this.colorStrokeStyle(e, u[0], u[1], u[2], l); - }), - ($s.getTextAngle = function (e, t) { - var n = e._private.rscratch, - r = t ? t + '-' : '', - o = e.pstyle(r + 'text-rotation'), - i = Le(n, 'labelAngle', t); - return 'autorotate' === o.strValue ? (e.isEdge() ? i : 0) : 'none' === o.strValue ? 0 : o.pfValue; - }), - ($s.drawText = function (e, t, n) { - var r = !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3], - o = !(arguments.length > 4 && void 0 !== arguments[4]) || arguments[4], - i = t._private.rscratch, - a = o ? t.effectiveOpacity() : 1; - if (!o || (0 !== a && 0 !== t.pstyle('text-opacity').value)) { - 'main' === n && (n = null); - var s, - l, - c = Le(i, 'labelX', n), - u = Le(i, 'labelY', n), - d = this.getLabelText(t, n); - if (null != d && '' !== d && !isNaN(c) && !isNaN(u)) { - this.setupTextStyle(e, t, o); - var f, - h = n ? n + '-' : '', - p = Le(i, 'labelWidth', n), - v = Le(i, 'labelHeight', n), - g = t.pstyle(h + 'text-margin-x').pfValue, - m = t.pstyle(h + 'text-margin-y').pfValue, - y = t.isEdge(), - b = t.pstyle('text-halign').value, - x = t.pstyle('text-valign').value; - switch ( - (y && ((b = 'center'), (x = 'center')), - (c += g), - (u += m), - 0 !== (f = r ? this.getTextAngle(t, n) : 0) && - ((s = c), (l = u), e.translate(s, l), e.rotate(f), (c = 0), (u = 0)), - x) - ) { - case 'top': - break; - case 'center': - u += v / 2; - break; - case 'bottom': - u += v; - } - var w = t.pstyle('text-background-opacity').value, - E = t.pstyle('text-border-opacity').value, - k = t.pstyle('text-border-width').pfValue, - _ = t.pstyle('text-background-padding').pfValue; - if (w > 0 || (k > 0 && E > 0)) { - var S = c - _; - switch (b) { - case 'left': - S -= p; - break; - case 'center': - S -= p / 2; - } - var P = u - v - _, - C = p + 2 * _, - j = v + 2 * _; - if (w > 0) { - var T = e.fillStyle, - D = t.pstyle('text-background-color').value; - (e.fillStyle = 'rgba(' + D[0] + ',' + D[1] + ',' + D[2] + ',' + w * a + ')'), - 0 === t.pstyle('text-background-shape').strValue.indexOf('round') - ? (function (e, t, n, r, o) { - var i = arguments.length > 5 && void 0 !== arguments[5] ? arguments[5] : 5; - e.beginPath(), - e.moveTo(t + i, n), - e.lineTo(t + r - i, n), - e.quadraticCurveTo(t + r, n, t + r, n + i), - e.lineTo(t + r, n + o - i), - e.quadraticCurveTo(t + r, n + o, t + r - i, n + o), - e.lineTo(t + i, n + o), - e.quadraticCurveTo(t, n + o, t, n + o - i), - e.lineTo(t, n + i), - e.quadraticCurveTo(t, n, t + i, n), - e.closePath(), - e.fill(); - })(e, S, P, C, j, 2) - : e.fillRect(S, P, C, j), - (e.fillStyle = T); - } - if (k > 0 && E > 0) { - var N = e.strokeStyle, - M = e.lineWidth, - O = t.pstyle('text-border-color').value, - A = t.pstyle('text-border-style').value; - if ( - ((e.strokeStyle = 'rgba(' + O[0] + ',' + O[1] + ',' + O[2] + ',' + E * a + ')'), - (e.lineWidth = k), - e.setLineDash) - ) - switch (A) { - case 'dotted': - e.setLineDash([1, 1]); - break; - case 'dashed': - e.setLineDash([4, 2]); - break; - case 'double': - (e.lineWidth = k / 4), e.setLineDash([]); - break; - case 'solid': - e.setLineDash([]); - } - if ((e.strokeRect(S, P, C, j), 'double' === A)) { - var R = k / 2; - e.strokeRect(S + R, P + R, C - 2 * R, j - 2 * R); - } - e.setLineDash && e.setLineDash([]), (e.lineWidth = M), (e.strokeStyle = N); - } - } - var L = 2 * t.pstyle('text-outline-width').pfValue; - if ((L > 0 && (e.lineWidth = L), 'wrap' === t.pstyle('text-wrap').value)) { - var I = Le(i, 'labelWrapCachedLines', n), - B = Le(i, 'labelLineHeight', n), - F = p / 2, - z = this.getLabelJustification(t); - switch ( - ('auto' === z || - ('left' === b - ? 'left' === z - ? (c += -p) - : 'center' === z && (c += -F) - : 'center' === b - ? 'left' === z - ? (c += -F) - : 'right' === z && (c += F) - : 'right' === b && ('center' === z ? (c += F) : 'right' === z && (c += p))), - x) - ) { - case 'top': - case 'center': - case 'bottom': - u -= (I.length - 1) * B; - } - for (var V = 0; V < I.length; V++) L > 0 && e.strokeText(I[V], c, u), e.fillText(I[V], c, u), (u += B); - } else L > 0 && e.strokeText(d, c, u), e.fillText(d, c, u); - 0 !== f && (e.rotate(-f), e.translate(-s, -l)); - } - } - }); - var Ks = { - drawNode: function (e, t, n) { - var r, - o, - i = !(arguments.length > 3 && void 0 !== arguments[3]) || arguments[3], - a = !(arguments.length > 4 && void 0 !== arguments[4]) || arguments[4], - s = !(arguments.length > 5 && void 0 !== arguments[5]) || arguments[5], - l = this, - c = t._private, - u = c.rscratch, - d = t.position(); - if (M(d.x) && M(d.y) && (!s || t.visible())) { - var f, - h, - p = s ? t.effectiveOpacity() : 1, - v = l.usePaths(), - g = !1, - m = t.padding(); - (r = t.width() + 2 * m), (o = t.height() + 2 * m), n && ((h = n), e.translate(-h.x1, -h.y1)); - for ( - var y = t.pstyle('background-image').value, - b = new Array(y.length), - x = new Array(y.length), - w = 0, - E = 0; - E < y.length; - E++ - ) { - var k = y[E]; - if ((b[E] = null != k && 'none' !== k)) { - var _ = t.cy().style().getIndexedStyle(t, 'background-image-crossorigin', 'value', E); - w++, - (x[E] = l.getCachedImage(k, _, function () { - (c.backgroundTimestamp = Date.now()), t.emitAndNotify('background'); - })); - } - } - var S = t.pstyle('background-blacken').value, - P = t.pstyle('border-width').pfValue, - C = t.pstyle('background-opacity').value * p, - j = t.pstyle('border-color').value, - T = t.pstyle('border-style').value, - D = t.pstyle('border-opacity').value * p; - e.lineJoin = 'miter'; - var N = function () { - var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : C; - l.eleFillStyle(e, t, n); - }, - O = function () { - var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : D; - l.colorStrokeStyle(e, j[0], j[1], j[2], t); - }, - A = t.pstyle('shape').strValue, - R = t.pstyle('shape-polygon-points').pfValue; - if (v) { - e.translate(d.x, d.y); - var L = (l.nodePathCache = l.nodePathCache || []), - I = ge('polygon' === A ? A + ',' + R.join(',') : A, '' + o, '' + r), - B = L[I]; - null != B ? ((f = B), (g = !0), (u.pathCache = f)) : ((f = new Path2D()), (L[I] = u.pathCache = f)); - } - var F = function () { - if (!g) { - var n = d; - v && (n = { x: 0, y: 0 }), l.nodeShapes[l.getNodeShape(t)].draw(f || e, n.x, n.y, r, o); - } - v ? e.fill(f) : e.fill(); - }, - z = function () { - for ( - var n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : p, - r = !(arguments.length > 1 && void 0 !== arguments[1]) || arguments[1], - o = c.backgrounding, - i = 0, - a = 0; - a < x.length; - a++ - ) { - var s = t.cy().style().getIndexedStyle(t, 'background-image-containment', 'value', a); - (r && 'over' === s) || (!r && 'inside' === s) - ? i++ - : b[a] && x[a].complete && !x[a].error && (i++, l.drawInscribedImage(e, x[a], t, a, n)); - } - (c.backgrounding = !(i === w)), o !== c.backgrounding && t.updateStyle(!1); - }, - V = function () { - var n = arguments.length > 0 && void 0 !== arguments[0] && arguments[0], - i = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : p; - l.hasPie(t) && - (l.drawPie(e, t, i), n && (v || l.nodeShapes[l.getNodeShape(t)].draw(e, d.x, d.y, r, o))); - }, - G = function () { - var t = (S > 0 ? S : -S) * (arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : p), - n = S > 0 ? 0 : 255; - 0 !== S && (l.colorFillStyle(e, n, n, n, t), v ? e.fill(f) : e.fill()); - }, - H = function () { - if (P > 0) { - if (((e.lineWidth = P), (e.lineCap = 'butt'), e.setLineDash)) - switch (T) { - case 'dotted': - e.setLineDash([1, 1]); - break; - case 'dashed': - e.setLineDash([4, 2]); - break; - case 'solid': - case 'double': - e.setLineDash([]); - } - if ((v ? e.stroke(f) : e.stroke(), 'double' === T)) { - e.lineWidth = P / 3; - var t = e.globalCompositeOperation; - (e.globalCompositeOperation = 'destination-out'), - v ? e.stroke(f) : e.stroke(), - (e.globalCompositeOperation = t); - } - e.setLineDash && e.setLineDash([]); - } - }; - if ('yes' === t.pstyle('ghost').value) { - var W = t.pstyle('ghost-offset-x').pfValue, - U = t.pstyle('ghost-offset-y').pfValue, - q = t.pstyle('ghost-opacity').value, - Y = q * p; - e.translate(W, U), - N(q * C), - F(), - z(Y, !0), - O(q * D), - H(), - V(0 !== S || 0 !== P), - z(Y, !1), - G(Y), - e.translate(-W, -U); - } - v && e.translate(-d.x, -d.y), - a && l.drawNodeUnderlay(e, t, d, r, o), - v && e.translate(d.x, d.y), - N(), - F(), - z(p, !0), - O(), - H(), - V(0 !== S || 0 !== P), - z(p, !1), - G(), - v && e.translate(-d.x, -d.y), - l.drawElementText(e, t, null, i), - a && l.drawNodeOverlay(e, t, d, r, o), - n && e.translate(h.x1, h.y1); - } - }, - }, - Zs = function (e) { - if (!['overlay', 'underlay'].includes(e)) throw new Error('Invalid state'); - return function (t, n, r, o, i) { - if (n.visible()) { - var a = n.pstyle(''.concat(e, '-padding')).pfValue, - s = n.pstyle(''.concat(e, '-opacity')).value, - l = n.pstyle(''.concat(e, '-color')).value, - c = n.pstyle(''.concat(e, '-shape')).value; - if (s > 0) { - if (((r = r || n.position()), null == o || null == i)) { - var u = n.padding(); - (o = n.width() + 2 * u), (i = n.height() + 2 * u); - } - this.colorFillStyle(t, l[0], l[1], l[2], s), - this.nodeShapes[c].draw(t, r.x, r.y, o + 2 * a, i + 2 * a), - t.fill(); - } - } - }; - }; - (Ks.drawNodeOverlay = Zs('overlay')), - (Ks.drawNodeUnderlay = Zs('underlay')), - (Ks.hasPie = function (e) { - return (e = e[0])._private.hasPie; - }), - (Ks.drawPie = function (e, t, n, r) { - (t = t[0]), (r = r || t.position()); - var o = t.cy().style(), - i = t.pstyle('pie-size'), - a = r.x, - s = r.y, - l = t.width(), - c = t.height(), - u = Math.min(l, c) / 2, - d = 0; - this.usePaths() && ((a = 0), (s = 0)), - '%' === i.units ? (u *= i.pfValue) : void 0 !== i.pfValue && (u = i.pfValue / 2); - for (var f = 1; f <= o.pieBackgroundN; f++) { - var h = t.pstyle('pie-' + f + '-background-size').value, - p = t.pstyle('pie-' + f + '-background-color').value, - v = t.pstyle('pie-' + f + '-background-opacity').value * n, - g = h / 100; - g + d > 1 && (g = 1 - d); - var m = 1.5 * Math.PI + 2 * Math.PI * d, - y = m + 2 * Math.PI * g; - 0 === h || - d >= 1 || - d + g > 1 || - (e.beginPath(), - e.moveTo(a, s), - e.arc(a, s, u, m, y), - e.closePath(), - this.colorFillStyle(e, p[0], p[1], p[2], v), - e.fill(), - (d += g)); - } - }); - var Qs = {}; - (Qs.getPixelRatio = function () { - var e = this.data.contexts[0]; - if (null != this.forcedPixelRatio) return this.forcedPixelRatio; - var t = - e.backingStorePixelRatio || - e.webkitBackingStorePixelRatio || - e.mozBackingStorePixelRatio || - e.msBackingStorePixelRatio || - e.oBackingStorePixelRatio || - e.backingStorePixelRatio || - 1; - return (window.devicePixelRatio || 1) / t; - }), - (Qs.paintCache = function (e) { - for (var t, n = (this.paintCaches = this.paintCaches || []), r = !0, o = 0; o < n.length; o++) - if ((t = n[o]).context === e) { - r = !1; - break; - } - return r && ((t = { context: e }), n.push(t)), t; - }), - (Qs.createGradientStyleFor = function (e, t, n, r, o) { - var i, - a = this.usePaths(), - s = n.pstyle(t + '-gradient-stop-colors').value, - l = n.pstyle(t + '-gradient-stop-positions').pfValue; - if ('radial-gradient' === r) - if (n.isEdge()) { - var c = n.sourceEndpoint(), - u = n.targetEndpoint(), - d = n.midpoint(), - f = ct(c, d), - h = ct(u, d); - i = e.createRadialGradient(d.x, d.y, 0, d.x, d.y, Math.max(f, h)); - } else { - var p = a ? { x: 0, y: 0 } : n.position(), - v = n.paddedWidth(), - g = n.paddedHeight(); - i = e.createRadialGradient(p.x, p.y, 0, p.x, p.y, Math.max(v, g)); - } - else if (n.isEdge()) { - var m = n.sourceEndpoint(), - y = n.targetEndpoint(); - i = e.createLinearGradient(m.x, m.y, y.x, y.y); - } else { - var b = a ? { x: 0, y: 0 } : n.position(), - x = n.paddedWidth() / 2, - w = n.paddedHeight() / 2; - switch (n.pstyle('background-gradient-direction').value) { - case 'to-bottom': - i = e.createLinearGradient(b.x, b.y - w, b.x, b.y + w); - break; - case 'to-top': - i = e.createLinearGradient(b.x, b.y + w, b.x, b.y - w); - break; - case 'to-left': - i = e.createLinearGradient(b.x + x, b.y, b.x - x, b.y); - break; - case 'to-right': - i = e.createLinearGradient(b.x - x, b.y, b.x + x, b.y); - break; - case 'to-bottom-right': - case 'to-right-bottom': - i = e.createLinearGradient(b.x - x, b.y - w, b.x + x, b.y + w); - break; - case 'to-top-right': - case 'to-right-top': - i = e.createLinearGradient(b.x - x, b.y + w, b.x + x, b.y - w); - break; - case 'to-bottom-left': - case 'to-left-bottom': - i = e.createLinearGradient(b.x + x, b.y - w, b.x - x, b.y + w); - break; - case 'to-top-left': - case 'to-left-top': - i = e.createLinearGradient(b.x + x, b.y + w, b.x - x, b.y - w); - } - } - if (!i) return null; - for (var E = l.length === s.length, k = s.length, _ = 0; _ < k; _++) - i.addColorStop(E ? l[_] : _ / (k - 1), 'rgba(' + s[_][0] + ',' + s[_][1] + ',' + s[_][2] + ',' + o + ')'); - return i; - }), - (Qs.gradientFillStyle = function (e, t, n, r) { - var o = this.createGradientStyleFor(e, 'background', t, n, r); - if (!o) return null; - e.fillStyle = o; - }), - (Qs.colorFillStyle = function (e, t, n, r, o) { - e.fillStyle = 'rgba(' + t + ',' + n + ',' + r + ',' + o + ')'; - }), - (Qs.eleFillStyle = function (e, t, n) { - var r = t.pstyle('background-fill').value; - if ('linear-gradient' === r || 'radial-gradient' === r) this.gradientFillStyle(e, t, r, n); - else { - var o = t.pstyle('background-color').value; - this.colorFillStyle(e, o[0], o[1], o[2], n); - } - }), - (Qs.gradientStrokeStyle = function (e, t, n, r) { - var o = this.createGradientStyleFor(e, 'line', t, n, r); - if (!o) return null; - e.strokeStyle = o; - }), - (Qs.colorStrokeStyle = function (e, t, n, r, o) { - e.strokeStyle = 'rgba(' + t + ',' + n + ',' + r + ',' + o + ')'; - }), - (Qs.eleStrokeStyle = function (e, t, n) { - var r = t.pstyle('line-fill').value; - if ('linear-gradient' === r || 'radial-gradient' === r) this.gradientStrokeStyle(e, t, r, n); - else { - var o = t.pstyle('line-color').value; - this.colorStrokeStyle(e, o[0], o[1], o[2], n); - } - }), - (Qs.matchCanvasSize = function (e) { - var t = this, - n = t.data, - r = t.findContainerClientCoords(), - o = r[2], - i = r[3], - a = t.getPixelRatio(), - s = t.motionBlurPxRatio; - (e !== t.data.bufferCanvases[t.MOTIONBLUR_BUFFER_NODE] && - e !== t.data.bufferCanvases[t.MOTIONBLUR_BUFFER_DRAG]) || - (a = s); - var l, - c = o * a, - u = i * a; - if (c !== t.canvasWidth || u !== t.canvasHeight) { - t.fontCaches = null; - var d = n.canvasContainer; - (d.style.width = o + 'px'), (d.style.height = i + 'px'); - for (var f = 0; f < t.CANVAS_LAYERS; f++) - ((l = n.canvases[f]).width = c), (l.height = u), (l.style.width = o + 'px'), (l.style.height = i + 'px'); - for (f = 0; f < t.BUFFER_COUNT; f++) - ((l = n.bufferCanvases[f]).width = c), - (l.height = u), - (l.style.width = o + 'px'), - (l.style.height = i + 'px'); - (t.textureMult = 1), - a <= 1 && - ((l = n.bufferCanvases[t.TEXTURE_BUFFER]), - (t.textureMult = 2), - (l.width = c * t.textureMult), - (l.height = u * t.textureMult)), - (t.canvasWidth = c), - (t.canvasHeight = u); - } - }), - (Qs.renderTo = function (e, t, n, r) { - this.render({ forcedContext: e, forcedZoom: t, forcedPan: n, drawAllLayers: !0, forcedPxRatio: r }); - }), - (Qs.render = function (e) { - var t = (e = e || Me()).forcedContext, - n = e.drawAllLayers, - r = e.drawOnlyNodeLayer, - o = e.forcedZoom, - i = e.forcedPan, - a = this, - s = void 0 === e.forcedPxRatio ? this.getPixelRatio() : e.forcedPxRatio, - l = a.cy, - c = a.data, - u = c.canvasNeedsRedraw, - d = - a.textureOnViewport && - !t && - (a.pinching || a.hoverData.dragging || a.swipePanning || a.data.wheelZooming), - f = void 0 !== e.motionBlur ? e.motionBlur : a.motionBlur, - h = a.motionBlurPxRatio, - p = l.hasCompoundNodes(), - v = a.hoverData.draggingEles, - g = !(!a.hoverData.selecting && !a.touchData.selecting), - m = (f = f && !t && a.motionBlurEnabled && !g); - t || - (a.prevPxRatio !== s && - (a.invalidateContainerClientCoordsCache(), - a.matchCanvasSize(a.container), - a.redrawHint('eles', !0), - a.redrawHint('drag', !0)), - (a.prevPxRatio = s)), - !t && a.motionBlurTimeout && clearTimeout(a.motionBlurTimeout), - f && - (null == a.mbFrames && (a.mbFrames = 0), - a.mbFrames++, - a.mbFrames < 3 && (m = !1), - a.mbFrames > a.minMbLowQualFrames && (a.motionBlurPxRatio = a.mbPxRBlurry)), - a.clearingMotionBlur && (a.motionBlurPxRatio = 1), - a.textureDrawLastFrame && !d && ((u[a.NODE] = !0), (u[a.SELECT_BOX] = !0)); - var y = l.style(), - b = l.zoom(), - x = void 0 !== o ? o : b, - w = l.pan(), - E = { x: w.x, y: w.y }, - k = { zoom: b, pan: { x: w.x, y: w.y } }, - _ = a.prevViewport; - void 0 === _ || - k.zoom !== _.zoom || - k.pan.x !== _.pan.x || - k.pan.y !== _.pan.y || - (v && !p) || - (a.motionBlurPxRatio = 1), - i && (E = i), - (x *= s), - (E.x *= s), - (E.y *= s); - var S = a.getCachedZSortedEles(); - function P(e, t, n, r, o) { - var i = e.globalCompositeOperation; - (e.globalCompositeOperation = 'destination-out'), - a.colorFillStyle(e, 255, 255, 255, a.motionBlurTransparency), - e.fillRect(t, n, r, o), - (e.globalCompositeOperation = i); - } - function C(e, r) { - var s, l, u, d; - a.clearingMotionBlur || - (e !== c.bufferContexts[a.MOTIONBLUR_BUFFER_NODE] && e !== c.bufferContexts[a.MOTIONBLUR_BUFFER_DRAG]) - ? ((s = E), (l = x), (u = a.canvasWidth), (d = a.canvasHeight)) - : ((s = { x: w.x * h, y: w.y * h }), (l = b * h), (u = a.canvasWidth * h), (d = a.canvasHeight * h)), - e.setTransform(1, 0, 0, 1, 0, 0), - 'motionBlur' === r ? P(e, 0, 0, u, d) : t || (void 0 !== r && !r) || e.clearRect(0, 0, u, d), - n || (e.translate(s.x, s.y), e.scale(l, l)), - i && e.translate(i.x, i.y), - o && e.scale(o, o); - } - if ((d || (a.textureDrawLastFrame = !1), d)) { - if (((a.textureDrawLastFrame = !0), !a.textureCache)) { - (a.textureCache = {}), - (a.textureCache.bb = l.mutableElements().boundingBox()), - (a.textureCache.texture = a.data.bufferCanvases[a.TEXTURE_BUFFER]); - var j = a.data.bufferContexts[a.TEXTURE_BUFFER]; - j.setTransform(1, 0, 0, 1, 0, 0), - j.clearRect(0, 0, a.canvasWidth * a.textureMult, a.canvasHeight * a.textureMult), - a.render({ forcedContext: j, drawOnlyNodeLayer: !0, forcedPxRatio: s * a.textureMult }), - ((k = a.textureCache.viewport = - { zoom: l.zoom(), pan: l.pan(), width: a.canvasWidth, height: a.canvasHeight }).mpan = { - x: (0 - k.pan.x) / k.zoom, - y: (0 - k.pan.y) / k.zoom, - }); - } - (u[a.DRAG] = !1), (u[a.NODE] = !1); - var T = c.contexts[a.NODE], - D = a.textureCache.texture; - k = a.textureCache.viewport; - T.setTransform(1, 0, 0, 1, 0, 0), f ? P(T, 0, 0, k.width, k.height) : T.clearRect(0, 0, k.width, k.height); - var N = y.core('outside-texture-bg-color').value, - M = y.core('outside-texture-bg-opacity').value; - a.colorFillStyle(T, N[0], N[1], N[2], M), T.fillRect(0, 0, k.width, k.height); - b = l.zoom(); - C(T, !1), - T.clearRect(k.mpan.x, k.mpan.y, k.width / k.zoom / s, k.height / k.zoom / s), - T.drawImage(D, k.mpan.x, k.mpan.y, k.width / k.zoom / s, k.height / k.zoom / s); - } else a.textureOnViewport && !t && (a.textureCache = null); - var O = l.extent(), - A = - a.pinching || - a.hoverData.dragging || - a.swipePanning || - a.data.wheelZooming || - a.hoverData.draggingEles || - a.cy.animated(), - R = a.hideEdgesOnViewport && A, - L = []; - if ( - ((L[a.NODE] = (!u[a.NODE] && f && !a.clearedForMotionBlur[a.NODE]) || a.clearingMotionBlur), - L[a.NODE] && (a.clearedForMotionBlur[a.NODE] = !0), - (L[a.DRAG] = (!u[a.DRAG] && f && !a.clearedForMotionBlur[a.DRAG]) || a.clearingMotionBlur), - L[a.DRAG] && (a.clearedForMotionBlur[a.DRAG] = !0), - u[a.NODE] || n || r || L[a.NODE]) - ) { - var I = f && !L[a.NODE] && 1 !== h; - C( - (T = t || (I ? a.data.bufferContexts[a.MOTIONBLUR_BUFFER_NODE] : c.contexts[a.NODE])), - f && !I ? 'motionBlur' : void 0, - ), - R ? a.drawCachedNodes(T, S.nondrag, s, O) : a.drawLayeredElements(T, S.nondrag, s, O), - a.debug && a.drawDebugPoints(T, S.nondrag), - n || f || (u[a.NODE] = !1); - } - if (!r && (u[a.DRAG] || n || L[a.DRAG])) { - I = f && !L[a.DRAG] && 1 !== h; - C( - (T = t || (I ? a.data.bufferContexts[a.MOTIONBLUR_BUFFER_DRAG] : c.contexts[a.DRAG])), - f && !I ? 'motionBlur' : void 0, - ), - R ? a.drawCachedNodes(T, S.drag, s, O) : a.drawCachedElements(T, S.drag, s, O), - a.debug && a.drawDebugPoints(T, S.drag), - n || f || (u[a.DRAG] = !1); - } - if (a.showFps || (!r && u[a.SELECT_BOX] && !n)) { - if ( - (C((T = t || c.contexts[a.SELECT_BOX])), - 1 == a.selection[4] && (a.hoverData.selecting || a.touchData.selecting)) - ) { - b = a.cy.zoom(); - var B = y.core('selection-box-border-width').value / b; - (T.lineWidth = B), - (T.fillStyle = - 'rgba(' + - y.core('selection-box-color').value[0] + - ',' + - y.core('selection-box-color').value[1] + - ',' + - y.core('selection-box-color').value[2] + - ',' + - y.core('selection-box-opacity').value + - ')'), - T.fillRect( - a.selection[0], - a.selection[1], - a.selection[2] - a.selection[0], - a.selection[3] - a.selection[1], - ), - B > 0 && - ((T.strokeStyle = - 'rgba(' + - y.core('selection-box-border-color').value[0] + - ',' + - y.core('selection-box-border-color').value[1] + - ',' + - y.core('selection-box-border-color').value[2] + - ',' + - y.core('selection-box-opacity').value + - ')'), - T.strokeRect( - a.selection[0], - a.selection[1], - a.selection[2] - a.selection[0], - a.selection[3] - a.selection[1], - )); - } - if (c.bgActivePosistion && !a.hoverData.selecting) { - b = a.cy.zoom(); - var F = c.bgActivePosistion; - (T.fillStyle = - 'rgba(' + - y.core('active-bg-color').value[0] + - ',' + - y.core('active-bg-color').value[1] + - ',' + - y.core('active-bg-color').value[2] + - ',' + - y.core('active-bg-opacity').value + - ')'), - T.beginPath(), - T.arc(F.x, F.y, y.core('active-bg-size').pfValue / b, 0, 2 * Math.PI), - T.fill(); - } - var z = a.lastRedrawTime; - if (a.showFps && z) { - z = Math.round(z); - var V = Math.round(1e3 / z); - T.setTransform(1, 0, 0, 1, 0, 0), - (T.fillStyle = 'rgba(255, 0, 0, 0.75)'), - (T.strokeStyle = 'rgba(255, 0, 0, 0.75)'), - (T.lineWidth = 1), - T.fillText('1 frame = ' + z + ' ms = ' + V + ' fps', 0, 20); - T.strokeRect(0, 30, 250, 20), T.fillRect(0, 30, 250 * Math.min(V / 60, 1), 20); - } - n || (u[a.SELECT_BOX] = !1); - } - if (f && 1 !== h) { - var G = c.contexts[a.NODE], - H = a.data.bufferCanvases[a.MOTIONBLUR_BUFFER_NODE], - W = c.contexts[a.DRAG], - U = a.data.bufferCanvases[a.MOTIONBLUR_BUFFER_DRAG], - q = function (e, t, n) { - e.setTransform(1, 0, 0, 1, 0, 0), - n || !m - ? e.clearRect(0, 0, a.canvasWidth, a.canvasHeight) - : P(e, 0, 0, a.canvasWidth, a.canvasHeight); - var r = h; - e.drawImage(t, 0, 0, a.canvasWidth * r, a.canvasHeight * r, 0, 0, a.canvasWidth, a.canvasHeight); - }; - (u[a.NODE] || L[a.NODE]) && (q(G, H, L[a.NODE]), (u[a.NODE] = !1)), - (u[a.DRAG] || L[a.DRAG]) && (q(W, U, L[a.DRAG]), (u[a.DRAG] = !1)); - } - (a.prevViewport = k), - a.clearingMotionBlur && ((a.clearingMotionBlur = !1), (a.motionBlurCleared = !0), (a.motionBlur = !0)), - f && - (a.motionBlurTimeout = setTimeout(function () { - (a.motionBlurTimeout = null), - (a.clearedForMotionBlur[a.NODE] = !1), - (a.clearedForMotionBlur[a.DRAG] = !1), - (a.motionBlur = !1), - (a.clearingMotionBlur = !d), - (a.mbFrames = 0), - (u[a.NODE] = !0), - (u[a.DRAG] = !0), - a.redraw(); - }, 100)), - t || l.emit('render'); - }); - for ( - var Js = { - drawPolygonPath: function (e, t, n, r, o, i) { - var a = r / 2, - s = o / 2; - e.beginPath && e.beginPath(), e.moveTo(t + a * i[0], n + s * i[1]); - for (var l = 1; l < i.length / 2; l++) e.lineTo(t + a * i[2 * l], n + s * i[2 * l + 1]); - e.closePath(); - }, - drawRoundPolygonPath: function (e, t, n, r, o, i) { - var a = r / 2, - s = o / 2, - l = Gt(r, o); - e.beginPath && e.beginPath(); - for (var c = 0; c < i.length / 4; c++) { - var u, - d = void 0; - (d = 0 === c ? i.length - 2 : 4 * c - 2), (u = 4 * c + 2); - var f = t + a * i[4 * c], - h = n + s * i[4 * c + 1], - p = -i[d] * i[u] - i[d + 1] * i[u + 1], - v = l / Math.tan(Math.acos(p) / 2), - g = f - v * i[d], - m = h - v * i[d + 1], - y = f + v * i[u], - b = h + v * i[u + 1]; - 0 === c ? e.moveTo(g, m) : e.lineTo(g, m), e.arcTo(f, h, y, b, l); - } - e.closePath(); - }, - drawRoundRectanglePath: function (e, t, n, r, o) { - var i = r / 2, - a = o / 2, - s = Vt(r, o); - e.beginPath && e.beginPath(), - e.moveTo(t, n - a), - e.arcTo(t + i, n - a, t + i, n, s), - e.arcTo(t + i, n + a, t, n + a, s), - e.arcTo(t - i, n + a, t - i, n, s), - e.arcTo(t - i, n - a, t, n - a, s), - e.lineTo(t, n - a), - e.closePath(); - }, - drawBottomRoundRectanglePath: function (e, t, n, r, o) { - var i = r / 2, - a = o / 2, - s = Vt(r, o); - e.beginPath && e.beginPath(), - e.moveTo(t, n - a), - e.lineTo(t + i, n - a), - e.lineTo(t + i, n), - e.arcTo(t + i, n + a, t, n + a, s), - e.arcTo(t - i, n + a, t - i, n, s), - e.lineTo(t - i, n - a), - e.lineTo(t, n - a), - e.closePath(); - }, - drawCutRectanglePath: function (e, t, n, r, o) { - var i = r / 2, - a = o / 2; - e.beginPath && e.beginPath(), - e.moveTo(t - i + 8, n - a), - e.lineTo(t + i - 8, n - a), - e.lineTo(t + i, n - a + 8), - e.lineTo(t + i, n + a - 8), - e.lineTo(t + i - 8, n + a), - e.lineTo(t - i + 8, n + a), - e.lineTo(t - i, n + a - 8), - e.lineTo(t - i, n - a + 8), - e.closePath(); - }, - drawBarrelPath: function (e, t, n, r, o) { - var i = r / 2, - a = o / 2, - s = t - i, - l = t + i, - c = n - a, - u = n + a, - d = Ht(r, o), - f = d.widthOffset, - h = d.heightOffset, - p = d.ctrlPtOffsetPct * f; - e.beginPath && e.beginPath(), - e.moveTo(s, c + h), - e.lineTo(s, u - h), - e.quadraticCurveTo(s + p, u, s + f, u), - e.lineTo(l - f, u), - e.quadraticCurveTo(l - p, u, l, u - h), - e.lineTo(l, c + h), - e.quadraticCurveTo(l - p, c, l - f, c), - e.lineTo(s + f, c), - e.quadraticCurveTo(s + p, c, s, c + h), - e.closePath(); - }, - }, - el = Math.sin(0), - tl = Math.cos(0), - nl = {}, - rl = {}, - ol = Math.PI / 40, - il = 0 * Math.PI; - il < 2 * Math.PI; - il += ol - ) - (nl[il] = Math.sin(il)), (rl[il] = Math.cos(il)); - Js.drawEllipsePath = function (e, t, n, r, o) { - if ((e.beginPath && e.beginPath(), e.ellipse)) e.ellipse(t, n, r / 2, o / 2, 0, 0, 2 * Math.PI); - else - for (var i, a, s = r / 2, l = o / 2, c = 0 * Math.PI; c < 2 * Math.PI; c += ol) - (i = t - s * nl[c] * el + s * rl[c] * tl), - (a = n + l * rl[c] * el + l * nl[c] * tl), - 0 === c ? e.moveTo(i, a) : e.lineTo(i, a); - e.closePath(); - }; - var al = {}; - function sl(e) { - var t = e.indexOf(','); - return e.substr(t + 1); - } - function ll(e, t, n) { - var r = function () { - return t.toDataURL(n, e.quality); - }; - switch (e.output) { - case 'blob-promise': - return new nr(function (r, o) { - try { - t.toBlob( - function (e) { - null != e ? r(e) : o(new Error('`canvas.toBlob()` sent a null value in its callback')); - }, - n, - e.quality, - ); - } catch (i) { - o(i); - } - }); - case 'blob': - return (function (e, t) { - for (var n = atob(e), r = new ArrayBuffer(n.length), o = new Uint8Array(r), i = 0; i < n.length; i++) - o[i] = n.charCodeAt(i); - return new Blob([r], { type: t }); - })(sl(r()), n); - case 'base64': - return sl(r()); - default: - return r(); - } - } - (al.createBuffer = function (e, t) { - var n = document.createElement('canvas'); - return (n.width = e), (n.height = t), [n, n.getContext('2d')]; - }), - (al.bufferCanvasImage = function (e) { - var t = this.cy, - n = t.mutableElements().boundingBox(), - r = this.findContainerClientCoords(), - o = e.full ? Math.ceil(n.w) : r[2], - i = e.full ? Math.ceil(n.h) : r[3], - a = M(e.maxWidth) || M(e.maxHeight), - s = this.getPixelRatio(), - l = 1; - if (void 0 !== e.scale) (o *= e.scale), (i *= e.scale), (l = e.scale); - else if (a) { - var c = 1 / 0, - u = 1 / 0; - M(e.maxWidth) && (c = (l * e.maxWidth) / o), - M(e.maxHeight) && (u = (l * e.maxHeight) / i), - (o *= l = Math.min(c, u)), - (i *= l); - } - a || ((o *= s), (i *= s), (l *= s)); - var d = document.createElement('canvas'); - (d.width = o), (d.height = i), (d.style.width = o + 'px'), (d.style.height = i + 'px'); - var f = d.getContext('2d'); - if (o > 0 && i > 0) { - f.clearRect(0, 0, o, i), (f.globalCompositeOperation = 'source-over'); - var h = this.getCachedZSortedEles(); - if (e.full) - f.translate(-n.x1 * l, -n.y1 * l), - f.scale(l, l), - this.drawElements(f, h), - f.scale(1 / l, 1 / l), - f.translate(n.x1 * l, n.y1 * l); - else { - var p = t.pan(), - v = { x: p.x * l, y: p.y * l }; - (l *= t.zoom()), - f.translate(v.x, v.y), - f.scale(l, l), - this.drawElements(f, h), - f.scale(1 / l, 1 / l), - f.translate(-v.x, -v.y); - } - e.bg && - ((f.globalCompositeOperation = 'destination-over'), (f.fillStyle = e.bg), f.rect(0, 0, o, i), f.fill()); - } - return d; - }), - (al.png = function (e) { - return ll(e, this.bufferCanvasImage(e), 'image/png'); - }), - (al.jpg = function (e) { - return ll(e, this.bufferCanvasImage(e), 'image/jpeg'); - }); - var cl = { - nodeShapeImpl: function (e, t, n, r, o, i, a) { - switch (e) { - case 'ellipse': - return this.drawEllipsePath(t, n, r, o, i); - case 'polygon': - return this.drawPolygonPath(t, n, r, o, i, a); - case 'round-polygon': - return this.drawRoundPolygonPath(t, n, r, o, i, a); - case 'roundrectangle': - case 'round-rectangle': - return this.drawRoundRectanglePath(t, n, r, o, i); - case 'cutrectangle': - case 'cut-rectangle': - return this.drawCutRectanglePath(t, n, r, o, i); - case 'bottomroundrectangle': - case 'bottom-round-rectangle': - return this.drawBottomRoundRectanglePath(t, n, r, o, i); - case 'barrel': - return this.drawBarrelPath(t, n, r, o, i); - } - }, - }, - ul = fl, - dl = fl.prototype; - function fl(e) { - var t = this; - t.data = { - canvases: new Array(dl.CANVAS_LAYERS), - contexts: new Array(dl.CANVAS_LAYERS), - canvasNeedsRedraw: new Array(dl.CANVAS_LAYERS), - bufferCanvases: new Array(dl.BUFFER_COUNT), - bufferContexts: new Array(dl.CANVAS_LAYERS), - }; - var n = '-webkit-tap-highlight-color', - r = 'rgba(0,0,0,0)'; - t.data.canvasContainer = document.createElement('div'); - var o = t.data.canvasContainer.style; - (t.data.canvasContainer.style[n] = r), (o.position = 'relative'), (o.zIndex = '0'), (o.overflow = 'hidden'); - var i = e.cy.container(); - i.appendChild(t.data.canvasContainer), (i.style[n] = r); - var a = { - '-webkit-user-select': 'none', - '-moz-user-select': '-moz-none', - 'user-select': 'none', - '-webkit-tap-highlight-color': 'rgba(0,0,0,0)', - 'outline-style': 'none', - }; - E && - E.userAgent.match(/msie|trident|edge/i) && - ((a['-ms-touch-action'] = 'none'), (a['touch-action'] = 'none')); - for (var s = 0; s < dl.CANVAS_LAYERS; s++) { - var l = (t.data.canvases[s] = document.createElement('canvas')); - (t.data.contexts[s] = l.getContext('2d')), - Object.keys(a).forEach(function (e) { - l.style[e] = a[e]; - }), - (l.style.position = 'absolute'), - l.setAttribute('data-id', 'layer' + s), - (l.style.zIndex = String(dl.CANVAS_LAYERS - s)), - t.data.canvasContainer.appendChild(l), - (t.data.canvasNeedsRedraw[s] = !1); - } - (t.data.topCanvas = t.data.canvases[0]), - t.data.canvases[dl.NODE].setAttribute('data-id', 'layer' + dl.NODE + '-node'), - t.data.canvases[dl.SELECT_BOX].setAttribute('data-id', 'layer' + dl.SELECT_BOX + '-selectbox'), - t.data.canvases[dl.DRAG].setAttribute('data-id', 'layer' + dl.DRAG + '-drag'); - for (s = 0; s < dl.BUFFER_COUNT; s++) - (t.data.bufferCanvases[s] = document.createElement('canvas')), - (t.data.bufferContexts[s] = t.data.bufferCanvases[s].getContext('2d')), - (t.data.bufferCanvases[s].style.position = 'absolute'), - t.data.bufferCanvases[s].setAttribute('data-id', 'buffer' + s), - (t.data.bufferCanvases[s].style.zIndex = String(-s - 1)), - (t.data.bufferCanvases[s].style.visibility = 'hidden'); - t.pathsEnabled = !0; - var c = vt(), - u = function (e) { - return { x: -e.w / 2, y: -e.h / 2 }; - }, - d = function (e) { - return e.boundingBox(), e[0]._private.bodyBounds; - }, - f = function (e) { - return e.boundingBox(), e[0]._private.labelBounds.main || c; - }, - h = function (e) { - return e.boundingBox(), e[0]._private.labelBounds.source || c; - }, - p = function (e) { - return e.boundingBox(), e[0]._private.labelBounds.target || c; - }, - v = function (e, t) { - return t; - }, - g = function (e, t, n) { - var r = e ? e + '-' : ''; - return { x: t.x + n.pstyle(r + 'text-margin-x').pfValue, y: t.y + n.pstyle(r + 'text-margin-y').pfValue }; - }, - m = function (e, t, n) { - var r = e[0]._private.rscratch; - return { x: r[t], y: r[n] }; - }, - y = (t.data.eleTxrCache = new Ps(t, { - getKey: function (e) { - return e[0]._private.nodeKey; - }, - doesEleInvalidateKey: function (e) { - var t = e[0]._private; - return !(t.oldBackgroundTimestamp === t.backgroundTimestamp); - }, - drawElement: function (e, n, r, o, i) { - return t.drawElement(e, n, r, !1, !1, i); - }, - getBoundingBox: d, - getRotationPoint: function (e) { - return { x: ((t = d(e)).x1 + t.x2) / 2, y: (t.y1 + t.y2) / 2 }; - var t; - }, - getRotationOffset: function (e) { - return u(d(e)); - }, - allowEdgeTxrCaching: !1, - allowParentTxrCaching: !1, - })), - b = (t.data.lblTxrCache = new Ps(t, { - getKey: function (e) { - return e[0]._private.labelStyleKey; - }, - drawElement: function (e, n, r, o, i) { - return t.drawElementText(e, n, r, o, 'main', i); - }, - getBoundingBox: f, - getRotationPoint: function (e) { - return g('', m(e, 'labelX', 'labelY'), e); - }, - getRotationOffset: function (e) { - var t = f(e), - n = u(f(e)); - if (e.isNode()) { - switch (e.pstyle('text-halign').value) { - case 'left': - n.x = -t.w; - break; - case 'right': - n.x = 0; - } - switch (e.pstyle('text-valign').value) { - case 'top': - n.y = -t.h; - break; - case 'bottom': - n.y = 0; - } - } - return n; - }, - isVisible: v, - })), - x = (t.data.slbTxrCache = new Ps(t, { - getKey: function (e) { - return e[0]._private.sourceLabelStyleKey; - }, - drawElement: function (e, n, r, o, i) { - return t.drawElementText(e, n, r, o, 'source', i); - }, - getBoundingBox: h, - getRotationPoint: function (e) { - return g('source', m(e, 'sourceLabelX', 'sourceLabelY'), e); - }, - getRotationOffset: function (e) { - return u(h(e)); - }, - isVisible: v, - })), - w = (t.data.tlbTxrCache = new Ps(t, { - getKey: function (e) { - return e[0]._private.targetLabelStyleKey; - }, - drawElement: function (e, n, r, o, i) { - return t.drawElementText(e, n, r, o, 'target', i); - }, - getBoundingBox: p, - getRotationPoint: function (e) { - return g('target', m(e, 'targetLabelX', 'targetLabelY'), e); - }, - getRotationOffset: function (e) { - return u(p(e)); - }, - isVisible: v, - })), - k = (t.data.lyrTxrCache = new js(t)); - t.onUpdateEleCalcs(function (e, t) { - y.invalidateElements(t), - b.invalidateElements(t), - x.invalidateElements(t), - w.invalidateElements(t), - k.invalidateElements(t); - for (var n = 0; n < t.length; n++) { - var r = t[n]._private; - r.oldBackgroundTimestamp = r.backgroundTimestamp; - } - }); - var _ = function (e) { - for (var t = 0; t < e.length; t++) k.enqueueElementRefinement(e[t].ele); - }; - y.onDequeue(_), b.onDequeue(_), x.onDequeue(_), w.onDequeue(_); - } - (dl.CANVAS_LAYERS = 3), - (dl.SELECT_BOX = 0), - (dl.DRAG = 1), - (dl.NODE = 2), - (dl.BUFFER_COUNT = 3), - (dl.TEXTURE_BUFFER = 0), - (dl.MOTIONBLUR_BUFFER_NODE = 1), - (dl.MOTIONBLUR_BUFFER_DRAG = 2), - (dl.redrawHint = function (e, t) { - var n = this; - switch (e) { - case 'eles': - n.data.canvasNeedsRedraw[dl.NODE] = t; - break; - case 'drag': - n.data.canvasNeedsRedraw[dl.DRAG] = t; - break; - case 'select': - n.data.canvasNeedsRedraw[dl.SELECT_BOX] = t; - } - }); - var hl = 'undefined' != typeof Path2D; - (dl.path2dEnabled = function (e) { - if (void 0 === e) return this.pathsEnabled; - this.pathsEnabled = !!e; - }), - (dl.usePaths = function () { - return hl && this.pathsEnabled; - }), - (dl.setImgSmoothing = function (e, t) { - null != e.imageSmoothingEnabled - ? (e.imageSmoothingEnabled = t) - : ((e.webkitImageSmoothingEnabled = t), (e.mozImageSmoothingEnabled = t), (e.msImageSmoothingEnabled = t)); - }), - (dl.getImgSmoothing = function (e) { - return null != e.imageSmoothingEnabled - ? e.imageSmoothingEnabled - : e.webkitImageSmoothingEnabled || e.mozImageSmoothingEnabled || e.msImageSmoothingEnabled; - }), - (dl.makeOffscreenCanvas = function (e, t) { - var n; - return ( - 'undefined' !== ('undefined' == typeof OffscreenCanvas ? 'undefined' : p(OffscreenCanvas)) - ? (n = new OffscreenCanvas(e, t)) - : (((n = document.createElement('canvas')).width = e), (n.height = t)), - n - ); - }), - [Os, Fs, qs, Xs, $s, Ks, Qs, Js, al, cl].forEach(function (e) { - Q(dl, e); - }); - var pl = [ - { type: 'layout', extensions: Xa }, - { - type: 'renderer', - extensions: [ - { name: 'null', impl: $a }, - { name: 'base', impl: bs }, - { name: 'canvas', impl: ul }, - ], - }, - ], - vl = {}, - gl = {}; - function ml(e, t, n) { - var r = n, - o = function (n) { - je( - 'Can not register `' + - t + - '` for `' + - e + - '` since `' + - n + - '` already exists in the prototype and can not be overridden', - ); - }; - if ('core' === e) { - if (la.prototype[t]) return o(t); - la.prototype[t] = n; - } else if ('collection' === e) { - if (_i.prototype[t]) return o(t); - _i.prototype[t] = n; - } else if ('layout' === e) { - for ( - var i = function (e) { - (this.options = e), - n.call(this, e), - N(this._private) || (this._private = {}), - (this._private.cy = e.cy), - (this._private.listeners = []), - this.createEmitter(); - }, - a = (i.prototype = Object.create(n.prototype)), - s = [], - l = 0; - l < s.length; - l++ - ) { - var c = s[l]; - a[c] = - a[c] || - function () { - return this; - }; - } - a.start && !a.run - ? (a.run = function () { - return this.start(), this; - }) - : !a.start && - a.run && - (a.start = function () { - return this.run(), this; - }); - var u = n.prototype.stop; - (a.stop = function () { - var e = this.options; - if (e && e.animate) { - var t = this.animations; - if (t) for (var n = 0; n < t.length; n++) t[n].stop(); - } - return u ? u.call(this) : this.emit('layoutstop'), this; - }), - a.destroy || - (a.destroy = function () { - return this; - }), - (a.cy = function () { - return this._private.cy; - }); - var d = function (e) { - return e._private.cy; - }, - f = { - addEventFields: function (e, t) { - (t.layout = e), (t.cy = d(e)), (t.target = e); - }, - bubble: function () { - return !0; - }, - parent: function (e) { - return d(e); - }, - }; - Q(a, { - createEmitter: function () { - return (this._private.emitter = new Go(f, this)), this; - }, - emitter: function () { - return this._private.emitter; - }, - on: function (e, t) { - return this.emitter().on(e, t), this; - }, - one: function (e, t) { - return this.emitter().one(e, t), this; - }, - once: function (e, t) { - return this.emitter().one(e, t), this; - }, - removeListener: function (e, t) { - return this.emitter().removeListener(e, t), this; - }, - removeAllListeners: function () { - return this.emitter().removeAllListeners(), this; - }, - emit: function (e, t) { - return this.emitter().emit(e, t), this; - }, - }), - lr.eventAliasesOn(a), - (r = i); - } else if ('renderer' === e && 'null' !== t && 'base' !== t) { - var h = yl('renderer', 'base'), - p = h.prototype, - v = n, - g = n.prototype, - m = function () { - h.apply(this, arguments), v.apply(this, arguments); - }, - y = m.prototype; - for (var b in p) { - var x = p[b]; - if (null != g[b]) return o(b); - y[b] = x; - } - for (var w in g) y[w] = g[w]; - p.clientFunctions.forEach(function (e) { - y[e] = - y[e] || - function () { - Pe('Renderer does not implement `renderer.' + e + '()` on its prototype'); - }; - }), - (r = m); - } else if ('__proto__' === e || 'constructor' === e || 'prototype' === e) - return Pe(e + ' is an illegal type to be registered, possibly lead to prototype pollutions'); - return te({ map: vl, keys: [e, t], value: r }); - } - function yl(e, t) { - return ne({ map: vl, keys: [e, t] }); - } - function bl(e, t, n, r, o) { - return te({ map: gl, keys: [e, t, n, r], value: o }); - } - function xl(e, t, n, r) { - return ne({ map: gl, keys: [e, t, n, r] }); - } - var wl = function () { - return 2 === arguments.length - ? yl.apply(null, arguments) - : 3 === arguments.length - ? ml.apply(null, arguments) - : 4 === arguments.length - ? xl.apply(null, arguments) - : 5 === arguments.length - ? bl.apply(null, arguments) - : void Pe('Invalid extension access syntax'); - }; - (la.prototype.extension = wl), - pl.forEach(function (e) { - e.extensions.forEach(function (t) { - ml(e.type, t.name, t.impl); - }); - }); - var El = function e() { - if (!(this instanceof e)) return new e(); - this.length = 0; - }, - kl = El.prototype; - (kl.instanceString = function () { - return 'stylesheet'; - }), - (kl.selector = function (e) { - return (this[this.length++] = { selector: e, properties: [] }), this; - }), - (kl.css = function (e, t) { - var n = this.length - 1; - if (j(e)) this[n].properties.push({ name: e, value: t }); - else if (N(e)) - for (var r = e, o = Object.keys(r), i = 0; i < o.length; i++) { - var a = o[i], - s = r[a]; - if (null != s) { - var l = ra.properties[a] || ra.properties[H(a)]; - if (null != l) { - var c = l.name, - u = s; - this[n].properties.push({ name: c, value: u }); - } - } - } - return this; - }), - (kl.style = kl.css), - (kl.generateStyle = function (e) { - var t = new ra(e); - return this.appendToStyle(t); - }), - (kl.appendToStyle = function (e) { - for (var t = 0; t < this.length; t++) { - var n = this[t], - r = n.selector, - o = n.properties; - e.selector(r); - for (var i = 0; i < o.length; i++) { - var a = o[i]; - e.css(a.name, a.value); - } - } - return e; - }); - var _l = function (e) { - return void 0 === e && (e = {}), N(e) ? new la(e) : j(e) ? wl.apply(wl, arguments) : void 0; - }; - (_l.use = function (e) { - var t = Array.prototype.slice.call(arguments, 1); - return t.unshift(_l), e.apply(null, t), this; - }), - (_l.warnings = function (e) { - return Ce(e); - }), - (_l.version = '3.23.0'), - (_l.stylesheet = _l.Stylesheet = El), - (e.exports = _l); - }, - 15439: (e, t, n) => { - e.exports = { - graphlib: n(21943), - layout: n(75499), - debug: n(55856), - util: { time: n(30345).time, notime: n(30345).notime }, - version: n(93404), - }; - }, - 55205: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(50824); - e.exports = { - run: function (e) { - var t = - 'greedy' === e.graph().acyclicer - ? o( - e, - (function (e) { - return function (t) { - return e.edge(t).weight; - }; - })(e), - ) - : (function (e) { - var t = [], - n = {}, - o = {}; - function i(a) { - r.has(o, a) || - ((o[a] = !0), - (n[a] = !0), - r.forEach(e.outEdges(a), function (e) { - r.has(n, e.w) ? t.push(e) : i(e.w); - }), - delete n[a]); - } - return r.forEach(e.nodes(), i), t; - })(e); - r.forEach(t, function (t) { - var n = e.edge(t); - e.removeEdge(t), (n.forwardName = t.name), (n.reversed = !0), e.setEdge(t.w, t.v, n, r.uniqueId('rev')); - }); - }, - undo: function (e) { - r.forEach(e.edges(), function (t) { - var n = e.edge(t); - if (n.reversed) { - e.removeEdge(t); - var r = n.forwardName; - delete n.reversed, delete n.forwardName, e.setEdge(t.w, t.v, n, r); - } - }); - }, - }; - }, - 11555: (e, t, n) => { - var r = n(32692), - o = n(30345); - function i(e, t, n, r, i, a) { - var s = { width: 0, height: 0, rank: a, borderType: t }, - l = i[t][a - 1], - c = o.addDummyNode(e, 'border', s, n); - (i[t][a] = c), e.setParent(c, r), l && e.setEdge(l, c, { weight: 1 }); - } - e.exports = function (e) { - r.forEach(e.children(), function t(n) { - var o = e.children(n), - a = e.node(n); - if ((o.length && r.forEach(o, t), r.has(a, 'minRank'))) { - (a.borderLeft = []), (a.borderRight = []); - for (var s = a.minRank, l = a.maxRank + 1; s < l; ++s) - i(e, 'borderLeft', '_bl', n, a, s), i(e, 'borderRight', '_br', n, a, s); - } - }); - }; - }, - 84688: (e, t, n) => { - 'use strict'; - var r = n(32692); - function o(e) { - r.forEach(e.nodes(), function (t) { - i(e.node(t)); - }), - r.forEach(e.edges(), function (t) { - i(e.edge(t)); - }); - } - function i(e) { - var t = e.width; - (e.width = e.height), (e.height = t); - } - function a(e) { - e.y = -e.y; - } - function s(e) { - var t = e.x; - (e.x = e.y), (e.y = t); - } - e.exports = { - adjust: function (e) { - var t = e.graph().rankdir.toLowerCase(); - ('lr' !== t && 'rl' !== t) || o(e); - }, - undo: function (e) { - var t = e.graph().rankdir.toLowerCase(); - ('bt' !== t && 'rl' !== t) || - (function (e) { - r.forEach(e.nodes(), function (t) { - a(e.node(t)); - }), - r.forEach(e.edges(), function (t) { - var n = e.edge(t); - r.forEach(n.points, a), r.has(n, 'y') && a(n); - }); - })(e); - ('lr' !== t && 'rl' !== t) || - (!(function (e) { - r.forEach(e.nodes(), function (t) { - s(e.node(t)); - }), - r.forEach(e.edges(), function (t) { - var n = e.edge(t); - r.forEach(n.points, s), r.has(n, 'x') && s(n); - }); - })(e), - o(e)); - }, - }; - }, - 32278: e => { - function t() { - var e = {}; - (e._next = e._prev = e), (this._sentinel = e); - } - function n(e) { - (e._prev._next = e._next), (e._next._prev = e._prev), delete e._next, delete e._prev; - } - function r(e, t) { - if ('_next' !== e && '_prev' !== e) return t; - } - (e.exports = t), - (t.prototype.dequeue = function () { - var e = this._sentinel, - t = e._prev; - if (t !== e) return n(t), t; - }), - (t.prototype.enqueue = function (e) { - var t = this._sentinel; - e._prev && e._next && n(e), (e._next = t._next), (t._next._prev = e), (t._next = e), (e._prev = t); - }), - (t.prototype.toString = function () { - for (var e = [], t = this._sentinel, n = t._prev; n !== t; ) e.push(JSON.stringify(n, r)), (n = n._prev); - return '[' + e.join(', ') + ']'; - }); - }, - 55856: (e, t, n) => { - var r = n(32692), - o = n(30345), - i = n(21943).Graph; - e.exports = { - debugOrdering: function (e) { - var t = o.buildLayerMatrix(e), - n = new i({ compound: !0, multigraph: !0 }).setGraph({}); - return ( - r.forEach(e.nodes(), function (t) { - n.setNode(t, { label: t }), n.setParent(t, 'layer' + e.node(t).rank); - }), - r.forEach(e.edges(), function (e) { - n.setEdge(e.v, e.w, {}, e.name); - }), - r.forEach(t, function (e, t) { - var o = 'layer' + t; - n.setNode(o, { rank: 'same' }), - r.reduce(e, function (e, t) { - return n.setEdge(e, t, { style: 'invis' }), t; - }); - }), - n - ); - }, - }; - }, - 21943: (e, t, n) => { - var r; - try { - r = n(66960); - } catch (o) {} - r || (r = window.graphlib), (e.exports = r); - }, - 50824: (e, t, n) => { - var r = n(32692), - o = n(21943).Graph, - i = n(32278); - e.exports = function (e, t) { - if (e.nodeCount() <= 1) return []; - var n = (function (e, t) { - var n = new o(), - a = 0, - s = 0; - r.forEach(e.nodes(), function (e) { - n.setNode(e, { v: e, in: 0, out: 0 }); - }), - r.forEach(e.edges(), function (e) { - var r = n.edge(e.v, e.w) || 0, - o = t(e), - i = r + o; - n.setEdge(e.v, e.w, i), - (s = Math.max(s, (n.node(e.v).out += o))), - (a = Math.max(a, (n.node(e.w).in += o))); - }); - var c = r.range(s + a + 3).map(function () { - return new i(); - }), - u = a + 1; - return ( - r.forEach(n.nodes(), function (e) { - l(c, u, n.node(e)); - }), - { graph: n, buckets: c, zeroIdx: u } - ); - })(e, t || a), - c = (function (e, t, n) { - var r, - o = [], - i = t[t.length - 1], - a = t[0]; - for (; e.nodeCount(); ) { - for (; (r = a.dequeue()); ) s(e, t, n, r); - for (; (r = i.dequeue()); ) s(e, t, n, r); - if (e.nodeCount()) - for (var l = t.length - 2; l > 0; --l) - if ((r = t[l].dequeue())) { - o = o.concat(s(e, t, n, r, !0)); - break; - } - } - return o; - })(n.graph, n.buckets, n.zeroIdx); - return r.flatten( - r.map(c, function (t) { - return e.outEdges(t.v, t.w); - }), - !0, - ); - }; - var a = r.constant(1); - function s(e, t, n, o, i) { - var a = i ? [] : void 0; - return ( - r.forEach(e.inEdges(o.v), function (r) { - var o = e.edge(r), - s = e.node(r.v); - i && a.push({ v: r.v, w: r.w }), (s.out -= o), l(t, n, s); - }), - r.forEach(e.outEdges(o.v), function (r) { - var o = e.edge(r), - i = r.w, - a = e.node(i); - (a.in -= o), l(t, n, a); - }), - e.removeNode(o.v), - a - ); - } - function l(e, t, n) { - n.out ? (n.in ? e[n.out - n.in + t].enqueue(n) : e[e.length - 1].enqueue(n)) : e[0].enqueue(n); - } - }, - 75499: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(55205), - i = n(44125), - a = n(28264), - s = n(30345).normalizeRanks, - l = n(32555), - c = n(30345).removeEmptyRanks, - u = n(60838), - d = n(11555), - f = n(84688), - h = n(56571), - p = n(89533), - v = n(30345), - g = n(21943).Graph; - e.exports = function (e, t) { - var n = t && t.debugTiming ? v.time : v.notime; - n('layout', function () { - var t = n(' buildLayoutGraph', function () { - return (function (e) { - var t = new g({ multigraph: !0, compound: !0 }), - n = P(e.graph()); - return ( - t.setGraph(r.merge({}, y, S(n, m), r.pick(n, b))), - r.forEach(e.nodes(), function (n) { - var o = P(e.node(n)); - t.setNode(n, r.defaults(S(o, x), w)), t.setParent(n, e.parent(n)); - }), - r.forEach(e.edges(), function (n) { - var o = P(e.edge(n)); - t.setEdge(n, r.merge({}, k, S(o, E), r.pick(o, _))); - }), - t - ); - })(e); - }); - n(' runLayout', function () { - !(function (e, t) { - t(' makeSpaceForEdgeLabels', function () { - !(function (e) { - var t = e.graph(); - (t.ranksep /= 2), - r.forEach(e.edges(), function (n) { - var r = e.edge(n); - (r.minlen *= 2), - 'c' !== r.labelpos.toLowerCase() && - ('TB' === t.rankdir || 'BT' === t.rankdir - ? (r.width += r.labeloffset) - : (r.height += r.labeloffset)); - }); - })(e); - }), - t(' removeSelfEdges', function () { - !(function (e) { - r.forEach(e.edges(), function (t) { - if (t.v === t.w) { - var n = e.node(t.v); - n.selfEdges || (n.selfEdges = []), - n.selfEdges.push({ e: t, label: e.edge(t) }), - e.removeEdge(t); - } - }); - })(e); - }), - t(' acyclic', function () { - o.run(e); - }), - t(' nestingGraph.run', function () { - u.run(e); - }), - t(' rank', function () { - a(v.asNonCompoundGraph(e)); - }), - t(' injectEdgeLabelProxies', function () { - !(function (e) { - r.forEach(e.edges(), function (t) { - var n = e.edge(t); - if (n.width && n.height) { - var r = e.node(t.v), - o = { rank: (e.node(t.w).rank - r.rank) / 2 + r.rank, e: t }; - v.addDummyNode(e, 'edge-proxy', o, '_ep'); - } - }); - })(e); - }), - t(' removeEmptyRanks', function () { - c(e); - }), - t(' nestingGraph.cleanup', function () { - u.cleanup(e); - }), - t(' normalizeRanks', function () { - s(e); - }), - t(' assignRankMinMax', function () { - !(function (e) { - var t = 0; - r.forEach(e.nodes(), function (n) { - var o = e.node(n); - o.borderTop && - ((o.minRank = e.node(o.borderTop).rank), - (o.maxRank = e.node(o.borderBottom).rank), - (t = r.max(t, o.maxRank))); - }), - (e.graph().maxRank = t); - })(e); - }), - t(' removeEdgeLabelProxies', function () { - !(function (e) { - r.forEach(e.nodes(), function (t) { - var n = e.node(t); - 'edge-proxy' === n.dummy && ((e.edge(n.e).labelRank = n.rank), e.removeNode(t)); - }); - })(e); - }), - t(' normalize.run', function () { - i.run(e); - }), - t(' parentDummyChains', function () { - l(e); - }), - t(' addBorderSegments', function () { - d(e); - }), - t(' order', function () { - h(e); - }), - t(' insertSelfEdges', function () { - !(function (e) { - var t = v.buildLayerMatrix(e); - r.forEach(t, function (t) { - var n = 0; - r.forEach(t, function (t, o) { - var i = e.node(t); - (i.order = o + n), - r.forEach(i.selfEdges, function (t) { - v.addDummyNode( - e, - 'selfedge', - { - width: t.label.width, - height: t.label.height, - rank: i.rank, - order: o + ++n, - e: t.e, - label: t.label, - }, - '_se', - ); - }), - delete i.selfEdges; - }); - }); - })(e); - }), - t(' adjustCoordinateSystem', function () { - f.adjust(e); - }), - t(' position', function () { - p(e); - }), - t(' positionSelfEdges', function () { - !(function (e) { - r.forEach(e.nodes(), function (t) { - var n = e.node(t); - if ('selfedge' === n.dummy) { - var r = e.node(n.e.v), - o = r.x + r.width / 2, - i = r.y, - a = n.x - o, - s = r.height / 2; - e.setEdge(n.e, n.label), - e.removeNode(t), - (n.label.points = [ - { x: o + (2 * a) / 3, y: i - s }, - { x: o + (5 * a) / 6, y: i - s }, - { x: o + a, y: i }, - { x: o + (5 * a) / 6, y: i + s }, - { x: o + (2 * a) / 3, y: i + s }, - ]), - (n.label.x = n.x), - (n.label.y = n.y); - } - }); - })(e); - }), - t(' removeBorderNodes', function () { - !(function (e) { - r.forEach(e.nodes(), function (t) { - if (e.children(t).length) { - var n = e.node(t), - o = e.node(n.borderTop), - i = e.node(n.borderBottom), - a = e.node(r.last(n.borderLeft)), - s = e.node(r.last(n.borderRight)); - (n.width = Math.abs(s.x - a.x)), - (n.height = Math.abs(i.y - o.y)), - (n.x = a.x + n.width / 2), - (n.y = o.y + n.height / 2); - } - }), - r.forEach(e.nodes(), function (t) { - 'border' === e.node(t).dummy && e.removeNode(t); - }); - })(e); - }), - t(' normalize.undo', function () { - i.undo(e); - }), - t(' fixupEdgeLabelCoords', function () { - !(function (e) { - r.forEach(e.edges(), function (t) { - var n = e.edge(t); - if (r.has(n, 'x')) - switch ( - (('l' !== n.labelpos && 'r' !== n.labelpos) || (n.width -= n.labeloffset), n.labelpos) - ) { - case 'l': - n.x -= n.width / 2 + n.labeloffset; - break; - case 'r': - n.x += n.width / 2 + n.labeloffset; - } - }); - })(e); - }), - t(' undoCoordinateSystem', function () { - f.undo(e); - }), - t(' translateGraph', function () { - !(function (e) { - var t = Number.POSITIVE_INFINITY, - n = 0, - o = Number.POSITIVE_INFINITY, - i = 0, - a = e.graph(), - s = a.marginx || 0, - l = a.marginy || 0; - function c(e) { - var r = e.x, - a = e.y, - s = e.width, - l = e.height; - (t = Math.min(t, r - s / 2)), - (n = Math.max(n, r + s / 2)), - (o = Math.min(o, a - l / 2)), - (i = Math.max(i, a + l / 2)); - } - r.forEach(e.nodes(), function (t) { - c(e.node(t)); - }), - r.forEach(e.edges(), function (t) { - var n = e.edge(t); - r.has(n, 'x') && c(n); - }), - (t -= s), - (o -= l), - r.forEach(e.nodes(), function (n) { - var r = e.node(n); - (r.x -= t), (r.y -= o); - }), - r.forEach(e.edges(), function (n) { - var i = e.edge(n); - r.forEach(i.points, function (e) { - (e.x -= t), (e.y -= o); - }), - r.has(i, 'x') && (i.x -= t), - r.has(i, 'y') && (i.y -= o); - }), - (a.width = n - t + s), - (a.height = i - o + l); - })(e); - }), - t(' assignNodeIntersects', function () { - !(function (e) { - r.forEach(e.edges(), function (t) { - var n, - r, - o = e.edge(t), - i = e.node(t.v), - a = e.node(t.w); - o.points - ? ((n = o.points[0]), (r = o.points[o.points.length - 1])) - : ((o.points = []), (n = a), (r = i)), - o.points.unshift(v.intersectRect(i, n)), - o.points.push(v.intersectRect(a, r)); - }); - })(e); - }), - t(' reversePoints', function () { - !(function (e) { - r.forEach(e.edges(), function (t) { - var n = e.edge(t); - n.reversed && n.points.reverse(); - }); - })(e); - }), - t(' acyclic.undo', function () { - o.undo(e); - }); - })(t, n); - }), - n(' updateInputGraph', function () { - !(function (e, t) { - r.forEach(e.nodes(), function (n) { - var r = e.node(n), - o = t.node(n); - r && ((r.x = o.x), (r.y = o.y), t.children(n).length && ((r.width = o.width), (r.height = o.height))); - }), - r.forEach(e.edges(), function (n) { - var o = e.edge(n), - i = t.edge(n); - (o.points = i.points), r.has(i, 'x') && ((o.x = i.x), (o.y = i.y)); - }), - (e.graph().width = t.graph().width), - (e.graph().height = t.graph().height); - })(e, t); - }); - }); - }; - var m = ['nodesep', 'edgesep', 'ranksep', 'marginx', 'marginy'], - y = { ranksep: 50, edgesep: 20, nodesep: 50, rankdir: 'tb' }, - b = ['acyclicer', 'ranker', 'rankdir', 'align'], - x = ['width', 'height'], - w = { width: 0, height: 0 }, - E = ['minlen', 'weight', 'width', 'height', 'labeloffset'], - k = { minlen: 1, weight: 1, width: 0, height: 0, labeloffset: 10, labelpos: 'r' }, - _ = ['labelpos']; - function S(e, t) { - return r.mapValues(r.pick(e, t), Number); - } - function P(e) { - var t = {}; - return ( - r.forEach(e, function (e, n) { - t[n.toLowerCase()] = e; - }), - t - ); - } - }, - 32692: (e, t, n) => { - var r; - try { - r = { - cloneDeep: n(77179), - constant: n(89203), - defaults: n(73821), - each: n(20678), - filter: n(64663), - find: n(26969), - flatten: n(62923), - forEach: n(77734), - forIn: n(87514), - has: n(45346), - isUndefined: n(86474), - last: n(77875), - map: n(69107), - mapValues: n(61230), - max: n(56492), - merge: n(88469), - min: n(65071), - minBy: n(76838), - now: n(80231), - pick: n(49335), - range: n(38569), - reduce: n(17682), - sortBy: n(71635), - uniqueId: n(61422), - values: n(31682), - zipObject: n(54142), - }; - } catch (o) {} - r || (r = window._), (e.exports = r); - }, - 60838: (e, t, n) => { - var r = n(32692), - o = n(30345); - function i(e, t, n, a, s, l, c) { - var u = e.children(c); - if (u.length) { - var d = o.addBorderNode(e, '_bt'), - f = o.addBorderNode(e, '_bb'), - h = e.node(c); - e.setParent(d, c), - (h.borderTop = d), - e.setParent(f, c), - (h.borderBottom = f), - r.forEach(u, function (r) { - i(e, t, n, a, s, l, r); - var o = e.node(r), - u = o.borderTop ? o.borderTop : r, - h = o.borderBottom ? o.borderBottom : r, - p = o.borderTop ? a : 2 * a, - v = u !== h ? 1 : s - l[c] + 1; - e.setEdge(d, u, { weight: p, minlen: v, nestingEdge: !0 }), - e.setEdge(h, f, { weight: p, minlen: v, nestingEdge: !0 }); - }), - e.parent(c) || e.setEdge(t, d, { weight: 0, minlen: s + l[c] }); - } else c !== t && e.setEdge(t, c, { weight: 0, minlen: n }); - } - e.exports = { - run: function (e) { - var t = o.addDummyNode(e, 'root', {}, '_root'), - n = (function (e) { - var t = {}; - function n(o, i) { - var a = e.children(o); - a && - a.length && - r.forEach(a, function (e) { - n(e, i + 1); - }), - (t[o] = i); - } - return ( - r.forEach(e.children(), function (e) { - n(e, 1); - }), - t - ); - })(e), - a = r.max(r.values(n)) - 1, - s = 2 * a + 1; - (e.graph().nestingRoot = t), - r.forEach(e.edges(), function (t) { - e.edge(t).minlen *= s; - }); - var l = - (function (e) { - return r.reduce( - e.edges(), - function (t, n) { - return t + e.edge(n).weight; - }, - 0, - ); - })(e) + 1; - r.forEach(e.children(), function (r) { - i(e, t, s, l, a, n, r); - }), - (e.graph().nodeRankFactor = s); - }, - cleanup: function (e) { - var t = e.graph(); - e.removeNode(t.nestingRoot), - delete t.nestingRoot, - r.forEach(e.edges(), function (t) { - e.edge(t).nestingEdge && e.removeEdge(t); - }); - }, - }; - }, - 44125: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(30345); - e.exports = { - run: function (e) { - (e.graph().dummyChains = []), - r.forEach(e.edges(), function (t) { - !(function (e, t) { - var n, - r, - i, - a = t.v, - s = e.node(a).rank, - l = t.w, - c = e.node(l).rank, - u = t.name, - d = e.edge(t), - f = d.labelRank; - if (c === s + 1) return; - for (e.removeEdge(t), i = 0, ++s; s < c; ++i, ++s) - (d.points = []), - (r = { width: 0, height: 0, edgeLabel: d, edgeObj: t, rank: s }), - (n = o.addDummyNode(e, 'edge', r, '_d')), - s === f && - ((r.width = d.width), (r.height = d.height), (r.dummy = 'edge-label'), (r.labelpos = d.labelpos)), - e.setEdge(a, n, { weight: d.weight }, u), - 0 === i && e.graph().dummyChains.push(n), - (a = n); - e.setEdge(a, l, { weight: d.weight }, u); - })(e, t); - }); - }, - undo: function (e) { - r.forEach(e.graph().dummyChains, function (t) { - var n, - r = e.node(t), - o = r.edgeLabel; - for (e.setEdge(r.edgeObj, o); r.dummy; ) - (n = e.successors(t)[0]), - e.removeNode(t), - o.points.push({ x: r.x, y: r.y }), - 'edge-label' === r.dummy && ((o.x = r.x), (o.y = r.y), (o.width = r.width), (o.height = r.height)), - (t = n), - (r = e.node(t)); - }); - }, - }; - }, - 4333: (e, t, n) => { - var r = n(32692); - e.exports = function (e, t, n) { - var o, - i = {}; - r.forEach(n, function (n) { - for (var r, a, s = e.parent(n); s; ) { - if (((r = e.parent(s)) ? ((a = i[r]), (i[r] = s)) : ((a = o), (o = s)), a && a !== s)) - return void t.setEdge(a, s); - s = r; - } - }); - }; - }, - 15374: (e, t, n) => { - var r = n(32692); - e.exports = function (e, t) { - return r.map(t, function (t) { - var n = e.inEdges(t); - if (n.length) { - var o = r.reduce( - n, - function (t, n) { - var r = e.edge(n), - o = e.node(n.v); - return { sum: t.sum + r.weight * o.order, weight: t.weight + r.weight }; - }, - { sum: 0, weight: 0 }, - ); - return { v: t, barycenter: o.sum / o.weight, weight: o.weight }; - } - return { v: t }; - }); - }; - }, - 3037: (e, t, n) => { - var r = n(32692), - o = n(21943).Graph; - e.exports = function (e, t, n) { - var i = (function (e) { - var t; - for (; e.hasNode((t = r.uniqueId('_root'))); ); - return t; - })(e), - a = new o({ compound: !0 }).setGraph({ root: i }).setDefaultNodeLabel(function (t) { - return e.node(t); - }); - return ( - r.forEach(e.nodes(), function (o) { - var s = e.node(o), - l = e.parent(o); - (s.rank === t || (s.minRank <= t && t <= s.maxRank)) && - (a.setNode(o), - a.setParent(o, l || i), - r.forEach(e[n](o), function (t) { - var n = t.v === o ? t.w : t.v, - i = a.edge(n, o), - s = r.isUndefined(i) ? 0 : i.weight; - a.setEdge(n, o, { weight: e.edge(t).weight + s }); - }), - r.has(s, 'minRank') && a.setNode(o, { borderLeft: s.borderLeft[t], borderRight: s.borderRight[t] })); - }), - a - ); - }; - }, - 29420: (e, t, n) => { - 'use strict'; - var r = n(32692); - function o(e, t, n) { - for ( - var o = r.zipObject( - n, - r.map(n, function (e, t) { - return t; - }), - ), - i = r.flatten( - r.map(t, function (t) { - return r.sortBy( - r.map(e.outEdges(t), function (t) { - return { pos: o[t.w], weight: e.edge(t).weight }; - }), - 'pos', - ); - }), - !0, - ), - a = 1; - a < n.length; - - ) - a <<= 1; - var s = 2 * a - 1; - a -= 1; - var l = r.map(new Array(s), function () { - return 0; - }), - c = 0; - return ( - r.forEach( - i.forEach(function (e) { - var t = e.pos + a; - l[t] += e.weight; - for (var n = 0; t > 0; ) t % 2 && (n += l[t + 1]), (l[(t = (t - 1) >> 1)] += e.weight); - c += e.weight * n; - }), - ), - c - ); - } - e.exports = function (e, t) { - for (var n = 0, r = 1; r < t.length; ++r) n += o(e, t[r - 1], t[r]); - return n; - }; - }, - 56571: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(61001), - i = n(29420), - a = n(37407), - s = n(3037), - l = n(4333), - c = n(21943).Graph, - u = n(30345); - function d(e, t, n) { - return r.map(t, function (t) { - return s(e, t, n); - }); - } - function f(e, t) { - var n = new c(); - r.forEach(e, function (e) { - var o = e.graph().root, - i = a(e, o, n, t); - r.forEach(i.vs, function (t, n) { - e.node(t).order = n; - }), - l(e, n, i.vs); - }); - } - function h(e, t) { - r.forEach(t, function (t) { - r.forEach(t, function (t, n) { - e.node(t).order = n; - }); - }); - } - e.exports = function (e) { - var t = u.maxRank(e), - n = d(e, r.range(1, t + 1), 'inEdges'), - a = d(e, r.range(t - 1, -1, -1), 'outEdges'), - s = o(e); - h(e, s); - for (var l, c = Number.POSITIVE_INFINITY, p = 0, v = 0; v < 4; ++p, ++v) { - f(p % 2 ? n : a, p % 4 >= 2), (s = u.buildLayerMatrix(e)); - var g = i(e, s); - g < c && ((v = 0), (l = r.cloneDeep(s)), (c = g)); - } - h(e, l); - }; - }, - 61001: (e, t, n) => { - 'use strict'; - var r = n(32692); - e.exports = function (e) { - var t = {}, - n = r.filter(e.nodes(), function (t) { - return !e.children(t).length; - }), - o = r.max( - r.map(n, function (t) { - return e.node(t).rank; - }), - ), - i = r.map(r.range(o + 1), function () { - return []; - }); - var a = r.sortBy(n, function (t) { - return e.node(t).rank; - }); - return ( - r.forEach(a, function n(o) { - if (r.has(t, o)) return; - t[o] = !0; - var a = e.node(o); - i[a.rank].push(o), r.forEach(e.successors(o), n); - }), - i - ); - }; - }, - 68522: (e, t, n) => { - 'use strict'; - var r = n(32692); - e.exports = function (e, t) { - var n = {}; - return ( - r.forEach(e, function (e, t) { - var o = (n[e.v] = { indegree: 0, in: [], out: [], vs: [e.v], i: t }); - r.isUndefined(e.barycenter) || ((o.barycenter = e.barycenter), (o.weight = e.weight)); - }), - r.forEach(t.edges(), function (e) { - var t = n[e.v], - o = n[e.w]; - r.isUndefined(t) || r.isUndefined(o) || (o.indegree++, t.out.push(n[e.w])); - }), - (function (e) { - var t = []; - function n(e) { - return function (t) { - t.merged || - ((r.isUndefined(t.barycenter) || r.isUndefined(e.barycenter) || t.barycenter >= e.barycenter) && - (function (e, t) { - var n = 0, - r = 0; - e.weight && ((n += e.barycenter * e.weight), (r += e.weight)); - t.weight && ((n += t.barycenter * t.weight), (r += t.weight)); - (e.vs = t.vs.concat(e.vs)), - (e.barycenter = n / r), - (e.weight = r), - (e.i = Math.min(t.i, e.i)), - (t.merged = !0); - })(e, t)); - }; - } - function o(t) { - return function (n) { - n.in.push(t), 0 == --n.indegree && e.push(n); - }; - } - for (; e.length; ) { - var i = e.pop(); - t.push(i), r.forEach(i.in.reverse(), n(i)), r.forEach(i.out, o(i)); - } - return r.map( - r.filter(t, function (e) { - return !e.merged; - }), - function (e) { - return r.pick(e, ['vs', 'i', 'barycenter', 'weight']); - }, - ); - })( - r.filter(n, function (e) { - return !e.indegree; - }), - ) - ); - }; - }, - 37407: (e, t, n) => { - var r = n(32692), - o = n(15374), - i = n(68522), - a = n(52711); - e.exports = function e(t, n, s, l) { - var c = t.children(n), - u = t.node(n), - d = u ? u.borderLeft : void 0, - f = u ? u.borderRight : void 0, - h = {}; - d && - (c = r.filter(c, function (e) { - return e !== d && e !== f; - })); - var p = o(t, c); - r.forEach(p, function (n) { - if (t.children(n.v).length) { - var o = e(t, n.v, s, l); - (h[n.v] = o), - r.has(o, 'barycenter') && - ((i = n), - (a = o), - r.isUndefined(i.barycenter) - ? ((i.barycenter = a.barycenter), (i.weight = a.weight)) - : ((i.barycenter = (i.barycenter * i.weight + a.barycenter * a.weight) / (i.weight + a.weight)), - (i.weight += a.weight))); - } - var i, a; - }); - var v = i(p, s); - !(function (e, t) { - r.forEach(e, function (e) { - e.vs = r.flatten( - e.vs.map(function (e) { - return t[e] ? t[e].vs : e; - }), - !0, - ); - }); - })(v, h); - var g = a(v, l); - if (d && ((g.vs = r.flatten([d, g.vs, f], !0)), t.predecessors(d).length)) { - var m = t.node(t.predecessors(d)[0]), - y = t.node(t.predecessors(f)[0]); - r.has(g, 'barycenter') || ((g.barycenter = 0), (g.weight = 0)), - (g.barycenter = (g.barycenter * g.weight + m.order + y.order) / (g.weight + 2)), - (g.weight += 2); - } - return g; - }; - }, - 52711: (e, t, n) => { - var r = n(32692), - o = n(30345); - function i(e, t, n) { - for (var o; t.length && (o = r.last(t)).i <= n; ) t.pop(), e.push(o.vs), n++; - return n; - } - e.exports = function (e, t) { - var n = o.partition(e, function (e) { - return r.has(e, 'barycenter'); - }), - a = n.lhs, - s = r.sortBy(n.rhs, function (e) { - return -e.i; - }), - l = [], - c = 0, - u = 0, - d = 0; - a.sort( - ((f = !!t), - function (e, t) { - return e.barycenter < t.barycenter ? -1 : e.barycenter > t.barycenter ? 1 : f ? t.i - e.i : e.i - t.i; - }), - ), - (d = i(l, s, d)), - r.forEach(a, function (e) { - (d += e.vs.length), l.push(e.vs), (c += e.barycenter * e.weight), (u += e.weight), (d = i(l, s, d)); - }); - var f; - var h = { vs: r.flatten(l, !0) }; - u && ((h.barycenter = c / u), (h.weight = u)); - return h; - }; - }, - 32555: (e, t, n) => { - var r = n(32692); - e.exports = function (e) { - var t = (function (e) { - var t = {}, - n = 0; - function o(i) { - var a = n; - r.forEach(e.children(i), o), (t[i] = { low: a, lim: n++ }); - } - return r.forEach(e.children(), o), t; - })(e); - r.forEach(e.graph().dummyChains, function (n) { - for ( - var r = e.node(n), - o = r.edgeObj, - i = (function (e, t, n, r) { - var o, - i, - a = [], - s = [], - l = Math.min(t[n].low, t[r].low), - c = Math.max(t[n].lim, t[r].lim); - o = n; - do { - (o = e.parent(o)), a.push(o); - } while (o && (t[o].low > l || c > t[o].lim)); - (i = o), (o = r); - for (; (o = e.parent(o)) !== i; ) s.push(o); - return { path: a.concat(s.reverse()), lca: i }; - })(e, t, o.v, o.w), - a = i.path, - s = i.lca, - l = 0, - c = a[l], - u = !0; - n !== o.w; - - ) { - if (((r = e.node(n)), u)) { - for (; (c = a[l]) !== s && e.node(c).maxRank < r.rank; ) l++; - c === s && (u = !1); - } - if (!u) { - for (; l < a.length - 1 && e.node((c = a[l + 1])).minRank <= r.rank; ) l++; - c = a[l]; - } - e.setParent(n, c), (n = e.successors(n)[0]); - } - }); - }; - }, - 17828: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(21943).Graph, - i = n(30345); - function a(e, t) { - var n = {}; - return ( - r.reduce(t, function (t, o) { - var i = 0, - a = 0, - s = t.length, - c = r.last(o); - return ( - r.forEach(o, function (t, u) { - var d = (function (e, t) { - if (e.node(t).dummy) - return r.find(e.predecessors(t), function (t) { - return e.node(t).dummy; - }); - })(e, t), - f = d ? e.node(d).order : s; - (d || t === c) && - (r.forEach(o.slice(a, u + 1), function (t) { - r.forEach(e.predecessors(t), function (r) { - var o = e.node(r), - a = o.order; - !(a < i || f < a) || (o.dummy && e.node(t).dummy) || l(n, r, t); - }); - }), - (a = u + 1), - (i = f)); - }), - o - ); - }), - n - ); - } - function s(e, t) { - var n = {}; - function o(t, o, i, a, s) { - var c; - r.forEach(r.range(o, i), function (o) { - (c = t[o]), - e.node(c).dummy && - r.forEach(e.predecessors(c), function (t) { - var r = e.node(t); - r.dummy && (r.order < a || r.order > s) && l(n, t, c); - }); - }); - } - return ( - r.reduce(t, function (t, n) { - var i, - a = -1, - s = 0; - return ( - r.forEach(n, function (r, l) { - if ('border' === e.node(r).dummy) { - var c = e.predecessors(r); - c.length && ((i = e.node(c[0]).order), o(n, s, l, a, i), (s = l), (a = i)); - } - o(n, s, n.length, i, t.length); - }), - n - ); - }), - n - ); - } - function l(e, t, n) { - if (t > n) { - var r = t; - (t = n), (n = r); - } - var o = e[t]; - o || (e[t] = o = {}), (o[n] = !0); - } - function c(e, t, n) { - if (t > n) { - var o = t; - (t = n), (n = o); - } - return r.has(e[t], n); - } - function u(e, t, n, o) { - var i = {}, - a = {}, - s = {}; - return ( - r.forEach(t, function (e) { - r.forEach(e, function (e, t) { - (i[e] = e), (a[e] = e), (s[e] = t); - }); - }), - r.forEach(t, function (e) { - var t = -1; - r.forEach(e, function (e) { - var l = o(e); - if (l.length) { - l = r.sortBy(l, function (e) { - return s[e]; - }); - for (var u = (l.length - 1) / 2, d = Math.floor(u), f = Math.ceil(u); d <= f; ++d) { - var h = l[d]; - a[e] === e && t < s[h] && !c(n, e, h) && ((a[h] = e), (a[e] = i[e] = i[h]), (t = s[h])); - } - } - }); - }), - { root: i, align: a } - ); - } - function d(e, t, n, i, a) { - var s = {}, - l = (function (e, t, n, i) { - var a = new o(), - s = e.graph(), - l = (function (e, t, n) { - return function (o, i, a) { - var s, - l = o.node(i), - c = o.node(a), - u = 0; - if (((u += l.width / 2), r.has(l, 'labelpos'))) - switch (l.labelpos.toLowerCase()) { - case 'l': - s = -l.width / 2; - break; - case 'r': - s = l.width / 2; - } - if ( - (s && (u += n ? s : -s), - (s = 0), - (u += (l.dummy ? t : e) / 2), - (u += (c.dummy ? t : e) / 2), - (u += c.width / 2), - r.has(c, 'labelpos')) - ) - switch (c.labelpos.toLowerCase()) { - case 'l': - s = c.width / 2; - break; - case 'r': - s = -c.width / 2; - } - return s && (u += n ? s : -s), (s = 0), u; - }; - })(s.nodesep, s.edgesep, i); - return ( - r.forEach(t, function (t) { - var o; - r.forEach(t, function (t) { - var r = n[t]; - if ((a.setNode(r), o)) { - var i = n[o], - s = a.edge(i, r); - a.setEdge(i, r, Math.max(l(e, t, o), s || 0)); - } - o = t; - }); - }), - a - ); - })(e, t, n, a), - c = a ? 'borderLeft' : 'borderRight'; - function u(e, t) { - for (var n = l.nodes(), r = n.pop(), o = {}; r; ) - o[r] ? e(r) : ((o[r] = !0), n.push(r), (n = n.concat(t(r)))), (r = n.pop()); - } - return ( - u(function (e) { - s[e] = l.inEdges(e).reduce(function (e, t) { - return Math.max(e, s[t.v] + l.edge(t)); - }, 0); - }, l.predecessors.bind(l)), - u(function (t) { - var n = l.outEdges(t).reduce(function (e, t) { - return Math.min(e, s[t.w] - l.edge(t)); - }, Number.POSITIVE_INFINITY), - r = e.node(t); - n !== Number.POSITIVE_INFINITY && r.borderType !== c && (s[t] = Math.max(s[t], n)); - }, l.successors.bind(l)), - r.forEach(i, function (e) { - s[e] = s[n[e]]; - }), - s - ); - } - function f(e, t) { - return r.minBy(r.values(t), function (t) { - var n = Number.NEGATIVE_INFINITY, - o = Number.POSITIVE_INFINITY; - return ( - r.forIn(t, function (t, r) { - var i = - (function (e, t) { - return e.node(t).width; - })(e, r) / 2; - (n = Math.max(t + i, n)), (o = Math.min(t - i, o)); - }), - n - o - ); - }); - } - function h(e, t) { - var n = r.values(t), - o = r.min(n), - i = r.max(n); - r.forEach(['u', 'd'], function (n) { - r.forEach(['l', 'r'], function (a) { - var s, - l = n + a, - c = e[l]; - if (c !== t) { - var u = r.values(c); - (s = 'l' === a ? o - r.min(u) : i - r.max(u)) && - (e[l] = r.mapValues(c, function (e) { - return e + s; - })); - } - }); - }); - } - function p(e, t) { - return r.mapValues(e.ul, function (n, o) { - if (t) return e[t.toLowerCase()][o]; - var i = r.sortBy(r.map(e, o)); - return (i[1] + i[2]) / 2; - }); - } - e.exports = { - positionX: function (e) { - var t, - n = i.buildLayerMatrix(e), - o = r.merge(a(e, n), s(e, n)), - l = {}; - r.forEach(['u', 'd'], function (i) { - (t = 'u' === i ? n : r.values(n).reverse()), - r.forEach(['l', 'r'], function (n) { - 'r' === n && - (t = r.map(t, function (e) { - return r.values(e).reverse(); - })); - var a = ('u' === i ? e.predecessors : e.successors).bind(e), - s = u(e, t, o, a), - c = d(e, t, s.root, s.align, 'r' === n); - 'r' === n && - (c = r.mapValues(c, function (e) { - return -e; - })), - (l[i + n] = c); - }); - }); - var c = f(e, l); - return h(l, c), p(l, e.graph().align); - }, - findType1Conflicts: a, - findType2Conflicts: s, - addConflict: l, - hasConflict: c, - verticalAlignment: u, - horizontalCompaction: d, - alignCoordinates: h, - findSmallestWidthAlignment: f, - balance: p, - }; - }, - 89533: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(30345), - i = n(17828).positionX; - e.exports = function (e) { - (function (e) { - var t = o.buildLayerMatrix(e), - n = e.graph().ranksep, - i = 0; - r.forEach(t, function (t) { - var o = r.max( - r.map(t, function (t) { - return e.node(t).height; - }), - ); - r.forEach(t, function (t) { - e.node(t).y = i + o / 2; - }), - (i += o + n); - }); - })((e = o.asNonCompoundGraph(e))), - r.forEach(i(e), function (t, n) { - e.node(n).x = t; - }); - }; - }, - 86771: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(21943).Graph, - i = n(23834).slack; - function a(e, t) { - return ( - r.forEach(e.nodes(), function n(o) { - r.forEach(t.nodeEdges(o), function (r) { - var a = r.v, - s = o === a ? r.w : a; - e.hasNode(s) || i(t, r) || (e.setNode(s, {}), e.setEdge(o, s, {}), n(s)); - }); - }), - e.nodeCount() - ); - } - function s(e, t) { - return r.minBy(t.edges(), function (n) { - if (e.hasNode(n.v) !== e.hasNode(n.w)) return i(t, n); - }); - } - function l(e, t, n) { - r.forEach(e.nodes(), function (e) { - t.node(e).rank += n; - }); - } - e.exports = function (e) { - var t, - n, - r = new o({ directed: !1 }), - c = e.nodes()[0], - u = e.nodeCount(); - r.setNode(c, {}); - for (; a(r, e) < u; ) (t = s(r, e)), (n = r.hasNode(t.v) ? i(e, t) : -i(e, t)), l(r, e, n); - return r; - }; - }, - 28264: (e, t, n) => { - 'use strict'; - var r = n(23834).longestPath, - o = n(86771), - i = n(53284); - e.exports = function (e) { - switch (e.graph().ranker) { - case 'network-simplex': - default: - s(e); - break; - case 'tight-tree': - !(function (e) { - r(e), o(e); - })(e); - break; - case 'longest-path': - a(e); - } - }; - var a = r; - function s(e) { - i(e); - } - }, - 53284: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(86771), - i = n(23834).slack, - a = n(23834).longestPath, - s = n(21943).alg.preorder, - l = n(21943).alg.postorder, - c = n(30345).simplify; - function u(e) { - (e = c(e)), a(e); - var t, - n = o(e); - for (h(n), d(n, e); (t = v(n)); ) m(n, e, t, g(n, e, t)); - } - function d(e, t) { - var n = l(e, e.nodes()); - (n = n.slice(0, n.length - 1)), - r.forEach(n, function (n) { - !(function (e, t, n) { - var r = e.node(n), - o = r.parent; - e.edge(n, o).cutvalue = f(e, t, n); - })(e, t, n); - }); - } - function f(e, t, n) { - var o = e.node(n).parent, - i = !0, - a = t.edge(n, o), - s = 0; - return ( - a || ((i = !1), (a = t.edge(o, n))), - (s = a.weight), - r.forEach(t.nodeEdges(n), function (r) { - var a, - l, - c = r.v === n, - u = c ? r.w : r.v; - if (u !== o) { - var d = c === i, - f = t.edge(r).weight; - if (((s += d ? f : -f), (a = n), (l = u), e.hasEdge(a, l))) { - var h = e.edge(n, u).cutvalue; - s += d ? -h : h; - } - } - }), - s - ); - } - function h(e, t) { - arguments.length < 2 && (t = e.nodes()[0]), p(e, {}, 1, t); - } - function p(e, t, n, o, i) { - var a = n, - s = e.node(o); - return ( - (t[o] = !0), - r.forEach(e.neighbors(o), function (i) { - r.has(t, i) || (n = p(e, t, n, i, o)); - }), - (s.low = a), - (s.lim = n++), - i ? (s.parent = i) : delete s.parent, - n - ); - } - function v(e) { - return r.find(e.edges(), function (t) { - return e.edge(t).cutvalue < 0; - }); - } - function g(e, t, n) { - var o = n.v, - a = n.w; - t.hasEdge(o, a) || ((o = n.w), (a = n.v)); - var s = e.node(o), - l = e.node(a), - c = s, - u = !1; - s.lim > l.lim && ((c = l), (u = !0)); - var d = r.filter(t.edges(), function (t) { - return u === y(e, e.node(t.v), c) && u !== y(e, e.node(t.w), c); - }); - return r.minBy(d, function (e) { - return i(t, e); - }); - } - function m(e, t, n, o) { - var i = n.v, - a = n.w; - e.removeEdge(i, a), - e.setEdge(o.v, o.w, {}), - h(e), - d(e, t), - (function (e, t) { - var n = r.find(e.nodes(), function (e) { - return !t.node(e).parent; - }), - o = s(e, n); - (o = o.slice(1)), - r.forEach(o, function (n) { - var r = e.node(n).parent, - o = t.edge(n, r), - i = !1; - o || ((o = t.edge(r, n)), (i = !0)), (t.node(n).rank = t.node(r).rank + (i ? o.minlen : -o.minlen)); - }); - })(e, t); - } - function y(e, t, n) { - return n.low <= t.lim && t.lim <= n.lim; - } - (e.exports = u), - (u.initLowLimValues = h), - (u.initCutValues = d), - (u.calcCutValue = f), - (u.leaveEdge = v), - (u.enterEdge = g), - (u.exchangeEdges = m); - }, - 23834: (e, t, n) => { - 'use strict'; - var r = n(32692); - e.exports = { - longestPath: function (e) { - var t = {}; - r.forEach(e.sources(), function n(o) { - var i = e.node(o); - if (r.has(t, o)) return i.rank; - t[o] = !0; - var a = r.min( - r.map(e.outEdges(o), function (t) { - return n(t.w) - e.edge(t).minlen; - }), - ); - return (a !== Number.POSITIVE_INFINITY && null != a) || (a = 0), (i.rank = a); - }); - }, - slack: function (e, t) { - return e.node(t.w).rank - e.node(t.v).rank - e.edge(t).minlen; - }, - }; - }, - 30345: (e, t, n) => { - 'use strict'; - var r = n(32692), - o = n(21943).Graph; - function i(e, t, n, o) { - var i; - do { - i = r.uniqueId(o); - } while (e.hasNode(i)); - return (n.dummy = t), e.setNode(i, n), i; - } - function a(e) { - return r.max( - r.map(e.nodes(), function (t) { - var n = e.node(t).rank; - if (!r.isUndefined(n)) return n; - }), - ); - } - e.exports = { - addDummyNode: i, - simplify: function (e) { - var t = new o().setGraph(e.graph()); - return ( - r.forEach(e.nodes(), function (n) { - t.setNode(n, e.node(n)); - }), - r.forEach(e.edges(), function (n) { - var r = t.edge(n.v, n.w) || { weight: 0, minlen: 1 }, - o = e.edge(n); - t.setEdge(n.v, n.w, { weight: r.weight + o.weight, minlen: Math.max(r.minlen, o.minlen) }); - }), - t - ); - }, - asNonCompoundGraph: function (e) { - var t = new o({ multigraph: e.isMultigraph() }).setGraph(e.graph()); - return ( - r.forEach(e.nodes(), function (n) { - e.children(n).length || t.setNode(n, e.node(n)); - }), - r.forEach(e.edges(), function (n) { - t.setEdge(n, e.edge(n)); - }), - t - ); - }, - successorWeights: function (e) { - var t = r.map(e.nodes(), function (t) { - var n = {}; - return ( - r.forEach(e.outEdges(t), function (t) { - n[t.w] = (n[t.w] || 0) + e.edge(t).weight; - }), - n - ); - }); - return r.zipObject(e.nodes(), t); - }, - predecessorWeights: function (e) { - var t = r.map(e.nodes(), function (t) { - var n = {}; - return ( - r.forEach(e.inEdges(t), function (t) { - n[t.v] = (n[t.v] || 0) + e.edge(t).weight; - }), - n - ); - }); - return r.zipObject(e.nodes(), t); - }, - intersectRect: function (e, t) { - var n, - r, - o = e.x, - i = e.y, - a = t.x - o, - s = t.y - i, - l = e.width / 2, - c = e.height / 2; - if (!a && !s) throw new Error('Not possible to find intersection inside of the rectangle'); - Math.abs(s) * l > Math.abs(a) * c - ? (s < 0 && (c = -c), (n = (c * a) / s), (r = c)) - : (a < 0 && (l = -l), (n = l), (r = (l * s) / a)); - return { x: o + n, y: i + r }; - }, - buildLayerMatrix: function (e) { - var t = r.map(r.range(a(e) + 1), function () { - return []; - }); - return ( - r.forEach(e.nodes(), function (n) { - var o = e.node(n), - i = o.rank; - r.isUndefined(i) || (t[i][o.order] = n); - }), - t - ); - }, - normalizeRanks: function (e) { - var t = r.min( - r.map(e.nodes(), function (t) { - return e.node(t).rank; - }), - ); - r.forEach(e.nodes(), function (n) { - var o = e.node(n); - r.has(o, 'rank') && (o.rank -= t); - }); - }, - removeEmptyRanks: function (e) { - var t = r.min( - r.map(e.nodes(), function (t) { - return e.node(t).rank; - }), - ), - n = []; - r.forEach(e.nodes(), function (r) { - var o = e.node(r).rank - t; - n[o] || (n[o] = []), n[o].push(r); - }); - var o = 0, - i = e.graph().nodeRankFactor; - r.forEach(n, function (t, n) { - r.isUndefined(t) && n % i != 0 - ? --o - : o && - r.forEach(t, function (t) { - e.node(t).rank += o; - }); - }); - }, - addBorderNode: function (e, t, n, r) { - var o = { width: 0, height: 0 }; - arguments.length >= 4 && ((o.rank = n), (o.order = r)); - return i(e, 'border', o, t); - }, - maxRank: a, - partition: function (e, t) { - var n = { lhs: [], rhs: [] }; - return ( - r.forEach(e, function (e) { - t(e) ? n.lhs.push(e) : n.rhs.push(e); - }), - n - ); - }, - time: function (e, t) { - var n = r.now(); - try { - return t(); - } finally { - console.log(e + ' time: ' + (r.now() - n) + 'ms'); - } - }, - notime: function (e, t) { - return t(); - }, - }; - }, - 93404: e => { - e.exports = '0.8.5'; - }, - 4329: e => { - (e.exports = a), (a.default = a), (a.stable = u), (a.stableStringify = u); - var t = '[...]', - n = '[Circular]', - r = [], - o = []; - function i() { - return { depthLimit: Number.MAX_SAFE_INTEGER, edgesLimit: Number.MAX_SAFE_INTEGER }; - } - function a(e, t, n, a) { - var s; - void 0 === a && (a = i()), l(e, '', 0, [], void 0, 0, a); - try { - s = 0 === o.length ? JSON.stringify(e, t, n) : JSON.stringify(e, f(t), n); - } catch (u) { - return JSON.stringify('[unable to serialize, circular reference is too complex to analyze]'); - } finally { - for (; 0 !== r.length; ) { - var c = r.pop(); - 4 === c.length ? Object.defineProperty(c[0], c[1], c[3]) : (c[0][c[1]] = c[2]); - } - } - return s; - } - function s(e, t, n, i) { - var a = Object.getOwnPropertyDescriptor(i, n); - void 0 !== a.get - ? a.configurable - ? (Object.defineProperty(i, n, { value: e }), r.push([i, n, t, a])) - : o.push([t, n, e]) - : ((i[n] = e), r.push([i, n, t])); - } - function l(e, r, o, i, a, c, u) { - var d; - if (((c += 1), 'object' == typeof e && null !== e)) { - for (d = 0; d < i.length; d++) if (i[d] === e) return void s(n, e, r, a); - if (void 0 !== u.depthLimit && c > u.depthLimit) return void s(t, e, r, a); - if (void 0 !== u.edgesLimit && o + 1 > u.edgesLimit) return void s(t, e, r, a); - if ((i.push(e), Array.isArray(e))) for (d = 0; d < e.length; d++) l(e[d], d, d, i, e, c, u); - else { - var f = Object.keys(e); - for (d = 0; d < f.length; d++) { - var h = f[d]; - l(e[h], h, d, i, e, c, u); - } - } - i.pop(); - } - } - function c(e, t) { - return e < t ? -1 : e > t ? 1 : 0; - } - function u(e, t, n, a) { - void 0 === a && (a = i()); - var s, - l = d(e, '', 0, [], void 0, 0, a) || e; - try { - s = 0 === o.length ? JSON.stringify(l, t, n) : JSON.stringify(l, f(t), n); - } catch (u) { - return JSON.stringify('[unable to serialize, circular reference is too complex to analyze]'); - } finally { - for (; 0 !== r.length; ) { - var c = r.pop(); - 4 === c.length ? Object.defineProperty(c[0], c[1], c[3]) : (c[0][c[1]] = c[2]); - } - } - return s; - } - function d(e, o, i, a, l, u, f) { - var h; - if (((u += 1), 'object' == typeof e && null !== e)) { - for (h = 0; h < a.length; h++) if (a[h] === e) return void s(n, e, o, l); - try { - if ('function' == typeof e.toJSON) return; - } catch (m) { - return; - } - if (void 0 !== f.depthLimit && u > f.depthLimit) return void s(t, e, o, l); - if (void 0 !== f.edgesLimit && i + 1 > f.edgesLimit) return void s(t, e, o, l); - if ((a.push(e), Array.isArray(e))) for (h = 0; h < e.length; h++) d(e[h], h, h, a, e, u, f); - else { - var p = {}, - v = Object.keys(e).sort(c); - for (h = 0; h < v.length; h++) { - var g = v[h]; - d(e[g], g, h, a, e, u, f), (p[g] = e[g]); - } - if (void 0 === l) return p; - r.push([l, o, e]), (l[o] = p); - } - a.pop(); - } - } - function f(e) { - return ( - (e = - void 0 !== e - ? e - : function (e, t) { - return t; - }), - function (t, n) { - if (o.length > 0) - for (var r = 0; r < o.length; r++) { - var i = o[r]; - if (i[1] === t && i[0] === n) { - (n = i[2]), o.splice(r, 1); - break; - } - } - return e.call(this, t, n); - } - ); - } - }, - 66960: (e, t, n) => { - var r = n(3150); - e.exports = { Graph: r.Graph, json: n(11430), alg: n(89757), version: r.version }; - }, - 79535: (e, t, n) => { - var r = n(44434); - e.exports = function (e) { - var t, - n = {}, - o = []; - function i(o) { - r.has(n, o) || ((n[o] = !0), t.push(o), r.each(e.successors(o), i), r.each(e.predecessors(o), i)); - } - return ( - r.each(e.nodes(), function (e) { - (t = []), i(e), t.length && o.push(t); - }), - o - ); - }; - }, - 97819: (e, t, n) => { - var r = n(44434); - function o(e, t, n, i, a, s) { - r.has(i, t) || - ((i[t] = !0), - n || s.push(t), - r.each(a(t), function (t) { - o(e, t, n, i, a, s); - }), - n && s.push(t)); - } - e.exports = function (e, t, n) { - r.isArray(t) || (t = [t]); - var i = (e.isDirected() ? e.successors : e.neighbors).bind(e), - a = [], - s = {}; - return ( - r.each(t, function (t) { - if (!e.hasNode(t)) throw new Error('Graph does not have node: ' + t); - o(e, t, 'post' === n, s, i, a); - }), - a - ); - }; - }, - 61353: (e, t, n) => { - var r = n(4245), - o = n(44434); - e.exports = function (e, t, n) { - return o.transform( - e.nodes(), - function (o, i) { - o[i] = r(e, i, t, n); - }, - {}, - ); - }; - }, - 4245: (e, t, n) => { - var r = n(44434), - o = n(51011); - e.exports = function (e, t, n, r) { - return (function (e, t, n, r) { - var i, - a, - s = {}, - l = new o(), - c = function (e) { - var t = e.v !== i ? e.v : e.w, - r = s[t], - o = n(e), - c = a.distance + o; - if (o < 0) - throw new Error('dijkstra does not allow negative edge weights. Bad edge: ' + e + ' Weight: ' + o); - c < r.distance && ((r.distance = c), (r.predecessor = i), l.decrease(t, c)); - }; - e.nodes().forEach(function (e) { - var n = e === t ? 0 : Number.POSITIVE_INFINITY; - (s[e] = { distance: n }), l.add(e, n); - }); - for (; l.size() > 0 && ((i = l.removeMin()), (a = s[i]).distance !== Number.POSITIVE_INFINITY); ) - r(i).forEach(c); - return s; - })( - e, - String(t), - n || i, - r || - function (t) { - return e.outEdges(t); - }, - ); - }; - var i = r.constant(1); - }, - 30937: (e, t, n) => { - var r = n(44434), - o = n(59177); - e.exports = function (e) { - return r.filter(o(e), function (t) { - return t.length > 1 || (1 === t.length && e.hasEdge(t[0], t[0])); - }); - }; - }, - 70086: (e, t, n) => { - var r = n(44434); - e.exports = function (e, t, n) { - return (function (e, t, n) { - var r = {}, - o = e.nodes(); - return ( - o.forEach(function (e) { - (r[e] = {}), - (r[e][e] = { distance: 0 }), - o.forEach(function (t) { - e !== t && (r[e][t] = { distance: Number.POSITIVE_INFINITY }); - }), - n(e).forEach(function (n) { - var o = n.v === e ? n.w : n.v, - i = t(n); - r[e][o] = { distance: i, predecessor: e }; - }); - }), - o.forEach(function (e) { - var t = r[e]; - o.forEach(function (n) { - var i = r[n]; - o.forEach(function (n) { - var r = i[e], - o = t[n], - a = i[n], - s = r.distance + o.distance; - s < a.distance && ((a.distance = s), (a.predecessor = o.predecessor)); - }); - }); - }), - r - ); - })( - e, - t || o, - n || - function (t) { - return e.outEdges(t); - }, - ); - }; - var o = r.constant(1); - }, - 89757: (e, t, n) => { - e.exports = { - components: n(79535), - dijkstra: n(4245), - dijkstraAll: n(61353), - findCycles: n(30937), - floydWarshall: n(70086), - isAcyclic: n(47772), - postorder: n(28494), - preorder: n(50101), - prim: n(53816), - tarjan: n(59177), - topsort: n(60750), - }; - }, - 47772: (e, t, n) => { - var r = n(60750); - e.exports = function (e) { - try { - r(e); - } catch (t) { - if (t instanceof r.CycleException) return !1; - throw t; - } - return !0; - }; - }, - 28494: (e, t, n) => { - var r = n(97819); - e.exports = function (e, t) { - return r(e, t, 'post'); - }; - }, - 50101: (e, t, n) => { - var r = n(97819); - e.exports = function (e, t) { - return r(e, t, 'pre'); - }; - }, - 53816: (e, t, n) => { - var r = n(44434), - o = n(69955), - i = n(51011); - e.exports = function (e, t) { - var n, - a = new o(), - s = {}, - l = new i(); - function c(e) { - var r = e.v === n ? e.w : e.v, - o = l.priority(r); - if (void 0 !== o) { - var i = t(e); - i < o && ((s[r] = n), l.decrease(r, i)); - } - } - if (0 === e.nodeCount()) return a; - r.each(e.nodes(), function (e) { - l.add(e, Number.POSITIVE_INFINITY), a.setNode(e); - }), - l.decrease(e.nodes()[0], 0); - var u = !1; - for (; l.size() > 0; ) { - if (((n = l.removeMin()), r.has(s, n))) a.setEdge(n, s[n]); - else { - if (u) throw new Error('Input graph is not connected: ' + e); - u = !0; - } - e.nodeEdges(n).forEach(c); - } - return a; - }; - }, - 59177: (e, t, n) => { - var r = n(44434); - e.exports = function (e) { - var t = 0, - n = [], - o = {}, - i = []; - function a(s) { - var l = (o[s] = { onStack: !0, lowlink: t, index: t++ }); - if ( - (n.push(s), - e.successors(s).forEach(function (e) { - r.has(o, e) - ? o[e].onStack && (l.lowlink = Math.min(l.lowlink, o[e].index)) - : (a(e), (l.lowlink = Math.min(l.lowlink, o[e].lowlink))); - }), - l.lowlink === l.index) - ) { - var c, - u = []; - do { - (c = n.pop()), (o[c].onStack = !1), u.push(c); - } while (s !== c); - i.push(u); - } - } - return ( - e.nodes().forEach(function (e) { - r.has(o, e) || a(e); - }), - i - ); - }; - }, - 60750: (e, t, n) => { - var r = n(44434); - function o(e) { - var t = {}, - n = {}, - o = []; - if ( - (r.each(e.sinks(), function a(s) { - if (r.has(n, s)) throw new i(); - r.has(t, s) || ((n[s] = !0), (t[s] = !0), r.each(e.predecessors(s), a), delete n[s], o.push(s)); - }), - r.size(t) !== e.nodeCount()) - ) - throw new i(); - return o; - } - function i() {} - (e.exports = o), (o.CycleException = i), (i.prototype = new Error()); - }, - 51011: (e, t, n) => { - var r = n(44434); - function o() { - (this._arr = []), (this._keyIndices = {}); - } - (e.exports = o), - (o.prototype.size = function () { - return this._arr.length; - }), - (o.prototype.keys = function () { - return this._arr.map(function (e) { - return e.key; - }); - }), - (o.prototype.has = function (e) { - return r.has(this._keyIndices, e); - }), - (o.prototype.priority = function (e) { - var t = this._keyIndices[e]; - if (void 0 !== t) return this._arr[t].priority; - }), - (o.prototype.min = function () { - if (0 === this.size()) throw new Error('Queue underflow'); - return this._arr[0].key; - }), - (o.prototype.add = function (e, t) { - var n = this._keyIndices; - if (((e = String(e)), !r.has(n, e))) { - var o = this._arr, - i = o.length; - return (n[e] = i), o.push({ key: e, priority: t }), this._decrease(i), !0; - } - return !1; - }), - (o.prototype.removeMin = function () { - this._swap(0, this._arr.length - 1); - var e = this._arr.pop(); - return delete this._keyIndices[e.key], this._heapify(0), e.key; - }), - (o.prototype.decrease = function (e, t) { - var n = this._keyIndices[e]; - if (t > this._arr[n].priority) - throw new Error( - 'New priority is greater than current priority. Key: ' + - e + - ' Old: ' + - this._arr[n].priority + - ' New: ' + - t, - ); - (this._arr[n].priority = t), this._decrease(n); - }), - (o.prototype._heapify = function (e) { - var t = this._arr, - n = 2 * e, - r = n + 1, - o = e; - n < t.length && - ((o = t[n].priority < t[o].priority ? n : o), - r < t.length && (o = t[r].priority < t[o].priority ? r : o), - o !== e && (this._swap(e, o), this._heapify(o))); - }), - (o.prototype._decrease = function (e) { - for (var t, n = this._arr, r = n[e].priority; 0 !== e && !(n[(t = e >> 1)].priority < r); ) - this._swap(e, t), (e = t); - }), - (o.prototype._swap = function (e, t) { - var n = this._arr, - r = this._keyIndices, - o = n[e], - i = n[t]; - (n[e] = i), (n[t] = o), (r[i.key] = e), (r[o.key] = t); - }); - }, - 69955: (e, t, n) => { - 'use strict'; - var r = n(44434); - e.exports = s; - var o = '\0', - i = '\0', - a = '\x01'; - function s(e) { - (this._isDirected = !r.has(e, 'directed') || e.directed), - (this._isMultigraph = !!r.has(e, 'multigraph') && e.multigraph), - (this._isCompound = !!r.has(e, 'compound') && e.compound), - (this._label = void 0), - (this._defaultNodeLabelFn = r.constant(void 0)), - (this._defaultEdgeLabelFn = r.constant(void 0)), - (this._nodes = {}), - this._isCompound && ((this._parent = {}), (this._children = {}), (this._children[i] = {})), - (this._in = {}), - (this._preds = {}), - (this._out = {}), - (this._sucs = {}), - (this._edgeObjs = {}), - (this._edgeLabels = {}); - } - function l(e, t) { - e[t] ? e[t]++ : (e[t] = 1); - } - function c(e, t) { - --e[t] || delete e[t]; - } - function u(e, t, n, i) { - var s = '' + t, - l = '' + n; - if (!e && s > l) { - var c = s; - (s = l), (l = c); - } - return s + a + l + a + (r.isUndefined(i) ? o : i); - } - function d(e, t) { - return u(e, t.v, t.w, t.name); - } - (s.prototype._nodeCount = 0), - (s.prototype._edgeCount = 0), - (s.prototype.isDirected = function () { - return this._isDirected; - }), - (s.prototype.isMultigraph = function () { - return this._isMultigraph; - }), - (s.prototype.isCompound = function () { - return this._isCompound; - }), - (s.prototype.setGraph = function (e) { - return (this._label = e), this; - }), - (s.prototype.graph = function () { - return this._label; - }), - (s.prototype.setDefaultNodeLabel = function (e) { - return r.isFunction(e) || (e = r.constant(e)), (this._defaultNodeLabelFn = e), this; - }), - (s.prototype.nodeCount = function () { - return this._nodeCount; - }), - (s.prototype.nodes = function () { - return r.keys(this._nodes); - }), - (s.prototype.sources = function () { - var e = this; - return r.filter(this.nodes(), function (t) { - return r.isEmpty(e._in[t]); - }); - }), - (s.prototype.sinks = function () { - var e = this; - return r.filter(this.nodes(), function (t) { - return r.isEmpty(e._out[t]); - }); - }), - (s.prototype.setNodes = function (e, t) { - var n = arguments, - o = this; - return ( - r.each(e, function (e) { - n.length > 1 ? o.setNode(e, t) : o.setNode(e); - }), - this - ); - }), - (s.prototype.setNode = function (e, t) { - return r.has(this._nodes, e) - ? (arguments.length > 1 && (this._nodes[e] = t), this) - : ((this._nodes[e] = arguments.length > 1 ? t : this._defaultNodeLabelFn(e)), - this._isCompound && ((this._parent[e] = i), (this._children[e] = {}), (this._children[i][e] = !0)), - (this._in[e] = {}), - (this._preds[e] = {}), - (this._out[e] = {}), - (this._sucs[e] = {}), - ++this._nodeCount, - this); - }), - (s.prototype.node = function (e) { - return this._nodes[e]; - }), - (s.prototype.hasNode = function (e) { - return r.has(this._nodes, e); - }), - (s.prototype.removeNode = function (e) { - var t = this; - if (r.has(this._nodes, e)) { - var n = function (e) { - t.removeEdge(t._edgeObjs[e]); - }; - delete this._nodes[e], - this._isCompound && - (this._removeFromParentsChildList(e), - delete this._parent[e], - r.each(this.children(e), function (e) { - t.setParent(e); - }), - delete this._children[e]), - r.each(r.keys(this._in[e]), n), - delete this._in[e], - delete this._preds[e], - r.each(r.keys(this._out[e]), n), - delete this._out[e], - delete this._sucs[e], - --this._nodeCount; - } - return this; - }), - (s.prototype.setParent = function (e, t) { - if (!this._isCompound) throw new Error('Cannot set parent in a non-compound graph'); - if (r.isUndefined(t)) t = i; - else { - for (var n = (t += ''); !r.isUndefined(n); n = this.parent(n)) - if (n === e) throw new Error('Setting ' + t + ' as parent of ' + e + ' would create a cycle'); - this.setNode(t); - } - return ( - this.setNode(e), - this._removeFromParentsChildList(e), - (this._parent[e] = t), - (this._children[t][e] = !0), - this - ); - }), - (s.prototype._removeFromParentsChildList = function (e) { - delete this._children[this._parent[e]][e]; - }), - (s.prototype.parent = function (e) { - if (this._isCompound) { - var t = this._parent[e]; - if (t !== i) return t; - } - }), - (s.prototype.children = function (e) { - if ((r.isUndefined(e) && (e = i), this._isCompound)) { - var t = this._children[e]; - if (t) return r.keys(t); - } else { - if (e === i) return this.nodes(); - if (this.hasNode(e)) return []; - } - }), - (s.prototype.predecessors = function (e) { - var t = this._preds[e]; - if (t) return r.keys(t); - }), - (s.prototype.successors = function (e) { - var t = this._sucs[e]; - if (t) return r.keys(t); - }), - (s.prototype.neighbors = function (e) { - var t = this.predecessors(e); - if (t) return r.union(t, this.successors(e)); - }), - (s.prototype.isLeaf = function (e) { - return 0 === (this.isDirected() ? this.successors(e) : this.neighbors(e)).length; - }), - (s.prototype.filterNodes = function (e) { - var t = new this.constructor({ - directed: this._isDirected, - multigraph: this._isMultigraph, - compound: this._isCompound, - }); - t.setGraph(this.graph()); - var n = this; - r.each(this._nodes, function (n, r) { - e(r) && t.setNode(r, n); - }), - r.each(this._edgeObjs, function (e) { - t.hasNode(e.v) && t.hasNode(e.w) && t.setEdge(e, n.edge(e)); - }); - var o = {}; - function i(e) { - var r = n.parent(e); - return void 0 === r || t.hasNode(r) ? ((o[e] = r), r) : r in o ? o[r] : i(r); - } - return ( - this._isCompound && - r.each(t.nodes(), function (e) { - t.setParent(e, i(e)); - }), - t - ); - }), - (s.prototype.setDefaultEdgeLabel = function (e) { - return r.isFunction(e) || (e = r.constant(e)), (this._defaultEdgeLabelFn = e), this; - }), - (s.prototype.edgeCount = function () { - return this._edgeCount; - }), - (s.prototype.edges = function () { - return r.values(this._edgeObjs); - }), - (s.prototype.setPath = function (e, t) { - var n = this, - o = arguments; - return ( - r.reduce(e, function (e, r) { - return o.length > 1 ? n.setEdge(e, r, t) : n.setEdge(e, r), r; - }), - this - ); - }), - (s.prototype.setEdge = function () { - var e, - t, - n, - o, - i = !1, - a = arguments[0]; - 'object' == typeof a && null !== a && 'v' in a - ? ((e = a.v), (t = a.w), (n = a.name), 2 === arguments.length && ((o = arguments[1]), (i = !0))) - : ((e = a), (t = arguments[1]), (n = arguments[3]), arguments.length > 2 && ((o = arguments[2]), (i = !0))), - (e = '' + e), - (t = '' + t), - r.isUndefined(n) || (n = '' + n); - var s = u(this._isDirected, e, t, n); - if (r.has(this._edgeLabels, s)) return i && (this._edgeLabels[s] = o), this; - if (!r.isUndefined(n) && !this._isMultigraph) - throw new Error('Cannot set a named edge when isMultigraph = false'); - this.setNode(e), this.setNode(t), (this._edgeLabels[s] = i ? o : this._defaultEdgeLabelFn(e, t, n)); - var c = (function (e, t, n, r) { - var o = '' + t, - i = '' + n; - if (!e && o > i) { - var a = o; - (o = i), (i = a); - } - var s = { v: o, w: i }; - r && (s.name = r); - return s; - })(this._isDirected, e, t, n); - return ( - (e = c.v), - (t = c.w), - Object.freeze(c), - (this._edgeObjs[s] = c), - l(this._preds[t], e), - l(this._sucs[e], t), - (this._in[t][s] = c), - (this._out[e][s] = c), - this._edgeCount++, - this - ); - }), - (s.prototype.edge = function (e, t, n) { - var r = 1 === arguments.length ? d(this._isDirected, arguments[0]) : u(this._isDirected, e, t, n); - return this._edgeLabels[r]; - }), - (s.prototype.hasEdge = function (e, t, n) { - var o = 1 === arguments.length ? d(this._isDirected, arguments[0]) : u(this._isDirected, e, t, n); - return r.has(this._edgeLabels, o); - }), - (s.prototype.removeEdge = function (e, t, n) { - var r = 1 === arguments.length ? d(this._isDirected, arguments[0]) : u(this._isDirected, e, t, n), - o = this._edgeObjs[r]; - return ( - o && - ((e = o.v), - (t = o.w), - delete this._edgeLabels[r], - delete this._edgeObjs[r], - c(this._preds[t], e), - c(this._sucs[e], t), - delete this._in[t][r], - delete this._out[e][r], - this._edgeCount--), - this - ); - }), - (s.prototype.inEdges = function (e, t) { - var n = this._in[e]; - if (n) { - var o = r.values(n); - return t - ? r.filter(o, function (e) { - return e.v === t; - }) - : o; - } - }), - (s.prototype.outEdges = function (e, t) { - var n = this._out[e]; - if (n) { - var o = r.values(n); - return t - ? r.filter(o, function (e) { - return e.w === t; - }) - : o; - } - }), - (s.prototype.nodeEdges = function (e, t) { - var n = this.inEdges(e, t); - if (n) return n.concat(this.outEdges(e, t)); - }); - }, - 3150: (e, t, n) => { - e.exports = { Graph: n(69955), version: n(59127) }; - }, - 11430: (e, t, n) => { - var r = n(44434), - o = n(69955); - function i(e) { - return r.map(e.nodes(), function (t) { - var n = e.node(t), - o = e.parent(t), - i = { v: t }; - return r.isUndefined(n) || (i.value = n), r.isUndefined(o) || (i.parent = o), i; - }); - } - function a(e) { - return r.map(e.edges(), function (t) { - var n = e.edge(t), - o = { v: t.v, w: t.w }; - return r.isUndefined(t.name) || (o.name = t.name), r.isUndefined(n) || (o.value = n), o; - }); - } - e.exports = { - write: function (e) { - var t = { - options: { directed: e.isDirected(), multigraph: e.isMultigraph(), compound: e.isCompound() }, - nodes: i(e), - edges: a(e), - }; - r.isUndefined(e.graph()) || (t.value = r.clone(e.graph())); - return t; - }, - read: function (e) { - var t = new o(e.options).setGraph(e.value); - return ( - r.each(e.nodes, function (e) { - t.setNode(e.v, e.value), e.parent && t.setParent(e.v, e.parent); - }), - r.each(e.edges, function (e) { - t.setEdge({ v: e.v, w: e.w, name: e.name }, e.value); - }), - t - ); - }, - }; - }, - 44434: (e, t, n) => { - var r; - try { - r = { - clone: n(17953), - constant: n(89203), - each: n(20678), - filter: n(64663), - has: n(45346), - isArray: n(55589), - isEmpty: n(29787), - isFunction: n(45563), - isUndefined: n(86474), - keys: n(62096), - map: n(69107), - reduce: n(17682), - size: n(91039), - transform: n(63604), - union: n(27767), - values: n(31682), - }; - } catch (o) {} - r || (r = window._), (e.exports = r); - }, - 59127: e => { - e.exports = '2.1.8'; - }, - 97597: (e, t, n) => { - e.exports = n(79127); - }, - 79127: function (e, t) { - var n, r, o; - (function () { - var i, a, s, l, c, u, d, f, h, p, v, g, m, y, b; - (s = Math.floor), - (p = Math.min), - (a = function (e, t) { - return e < t ? -1 : e > t ? 1 : 0; - }), - (h = function (e, t, n, r, o) { - var i; - if ((null == n && (n = 0), null == o && (o = a), n < 0)) throw new Error('lo must be non-negative'); - for (null == r && (r = e.length); n < r; ) o(t, e[(i = s((n + r) / 2))]) < 0 ? (r = i) : (n = i + 1); - return [].splice.apply(e, [n, n - n].concat(t)), t; - }), - (u = function (e, t, n) { - return null == n && (n = a), e.push(t), y(e, 0, e.length - 1, n); - }), - (c = function (e, t) { - var n, r; - return null == t && (t = a), (n = e.pop()), e.length ? ((r = e[0]), (e[0] = n), b(e, 0, t)) : (r = n), r; - }), - (f = function (e, t, n) { - var r; - return null == n && (n = a), (r = e[0]), (e[0] = t), b(e, 0, n), r; - }), - (d = function (e, t, n) { - var r; - return ( - null == n && (n = a), - e.length && n(e[0], t) < 0 && ((t = (r = [e[0], t])[0]), (e[0] = r[1]), b(e, 0, n)), - t - ); - }), - (l = function (e, t) { - var n, r, o, i, l, c; - for ( - null == t && (t = a), - i = function () { - c = []; - for (var t = 0, n = s(e.length / 2); 0 <= n ? t < n : t > n; 0 <= n ? t++ : t--) c.push(t); - return c; - } - .apply(this) - .reverse(), - l = [], - r = 0, - o = i.length; - r < o; - r++ - ) - (n = i[r]), l.push(b(e, n, t)); - return l; - }), - (m = function (e, t, n) { - var r; - if ((null == n && (n = a), -1 !== (r = e.indexOf(t)))) return y(e, 0, r, n), b(e, r, n); - }), - (v = function (e, t, n) { - var r, o, i, s, c; - if ((null == n && (n = a), !(o = e.slice(0, t)).length)) return o; - for (l(o, n), i = 0, s = (c = e.slice(t)).length; i < s; i++) (r = c[i]), d(o, r, n); - return o.sort(n).reverse(); - }), - (g = function (e, t, n) { - var r, o, i, s, u, d, f, v, g; - if ((null == n && (n = a), 10 * t <= e.length)) { - if (!(i = e.slice(0, t).sort(n)).length) return i; - for (o = i[i.length - 1], s = 0, d = (f = e.slice(t)).length; s < d; s++) - n((r = f[s]), o) < 0 && (h(i, r, 0, null, n), i.pop(), (o = i[i.length - 1])); - return i; - } - for (l(e, n), g = [], u = 0, v = p(t, e.length); 0 <= v ? u < v : u > v; 0 <= v ? ++u : --u) - g.push(c(e, n)); - return g; - }), - (y = function (e, t, n, r) { - var o, i, s; - for (null == r && (r = a), o = e[n]; n > t && r(o, (i = e[(s = (n - 1) >> 1)])) < 0; ) (e[n] = i), (n = s); - return (e[n] = o); - }), - (b = function (e, t, n) { - var r, o, i, s, l; - for (null == n && (n = a), o = e.length, l = t, i = e[t], r = 2 * t + 1; r < o; ) - (s = r + 1) < o && !(n(e[r], e[s]) < 0) && (r = s), (e[t] = e[r]), (r = 2 * (t = r) + 1); - return (e[t] = i), y(e, l, t, n); - }), - (i = (function () { - function e(e) { - (this.cmp = null != e ? e : a), (this.nodes = []); - } - return ( - (e.push = u), - (e.pop = c), - (e.replace = f), - (e.pushpop = d), - (e.heapify = l), - (e.updateItem = m), - (e.nlargest = v), - (e.nsmallest = g), - (e.prototype.push = function (e) { - return u(this.nodes, e, this.cmp); - }), - (e.prototype.pop = function () { - return c(this.nodes, this.cmp); - }), - (e.prototype.peek = function () { - return this.nodes[0]; - }), - (e.prototype.contains = function (e) { - return -1 !== this.nodes.indexOf(e); - }), - (e.prototype.replace = function (e) { - return f(this.nodes, e, this.cmp); - }), - (e.prototype.pushpop = function (e) { - return d(this.nodes, e, this.cmp); - }), - (e.prototype.heapify = function () { - return l(this.nodes, this.cmp); - }), - (e.prototype.updateItem = function (e) { - return m(this.nodes, e, this.cmp); - }), - (e.prototype.clear = function () { - return (this.nodes = []); - }), - (e.prototype.empty = function () { - return 0 === this.nodes.length; - }), - (e.prototype.size = function () { - return this.nodes.length; - }), - (e.prototype.clone = function () { - var t; - return ((t = new e()).nodes = this.nodes.slice(0)), t; - }), - (e.prototype.toArray = function () { - return this.nodes.slice(0); - }), - (e.prototype.insert = e.prototype.push), - (e.prototype.top = e.prototype.peek), - (e.prototype.front = e.prototype.peek), - (e.prototype.has = e.prototype.contains), - (e.prototype.copy = e.prototype.clone), - e - ); - })()), - (r = []), - void 0 === - (o = - 'function' == - typeof (n = function () { - return i; - }) - ? n.apply(t, r) - : n) || (e.exports = o); - }).call(this); - }, - 33845: (e, t) => { - function n(e) { - for (var t = arguments.length, n = Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++) n[r - 1] = arguments[r]; - throw Error( - '[Immer] minified error nr: ' + - e + - (n.length - ? ' ' + - n - .map(function (e) { - return "'" + e + "'"; - }) - .join(',') - : '') + - '. Find the full error at: https://bit.ly/3cXEKWf', - ); - } - function r(e) { - return !!e && !!e[X]; - } - function o(e) { - var t; - return ( - !!e && - ((function (e) { - if (!e || 'object' != typeof e) return !1; - var t = Object.getPrototypeOf(e); - if (null === t) return !0; - var n = Object.hasOwnProperty.call(t, 'constructor') && t.constructor; - return n === Object || ('function' == typeof n && Function.toString.call(n) === K); - })(e) || - Array.isArray(e) || - !!e[Y] || - !!(null === (t = e.constructor) || void 0 === t ? void 0 : t[Y]) || - d(e) || - f(e)) - ); - } - function i(e, t, n) { - void 0 === n && (n = !1), - 0 === a(e) - ? (n ? Object.keys : Z)(e).forEach(function (r) { - (n && 'symbol' == typeof r) || t(r, e[r], e); - }) - : e.forEach(function (n, r) { - return t(r, n, e); - }); - } - function a(e) { - var t = e[X]; - return t ? (t.t > 3 ? t.t - 4 : t.t) : Array.isArray(e) ? 1 : d(e) ? 2 : f(e) ? 3 : 0; - } - function s(e, t) { - return 2 === a(e) ? e.has(t) : Object.prototype.hasOwnProperty.call(e, t); - } - function l(e, t) { - return 2 === a(e) ? e.get(t) : e[t]; - } - function c(e, t, n) { - var r = a(e); - 2 === r ? e.set(t, n) : 3 === r ? (e.delete(t), e.add(n)) : (e[t] = n); - } - function u(e, t) { - return e === t ? 0 !== e || 1 / e == 1 / t : e != e && t != t; - } - function d(e) { - return H && e instanceof Map; - } - function f(e) { - return W && e instanceof Set; - } - function h(e) { - return e.i || e.o; - } - function p(e) { - if (Array.isArray(e)) return Array.prototype.slice.call(e); - var t = Q(e); - delete t[X]; - for (var n = Z(t), r = 0; r < n.length; r++) { - var o = n[r], - i = t[o]; - !1 === i.writable && ((i.writable = !0), (i.configurable = !0)), - (i.get || i.set) && (t[o] = { configurable: !0, writable: !0, enumerable: i.enumerable, value: e[o] }); - } - return Object.create(Object.getPrototypeOf(e), t); - } - function v(e, t) { - return ( - void 0 === t && (t = !1), - m(e) || - r(e) || - !o(e) || - (a(e) > 1 && (e.set = e.add = e.clear = e.delete = g), - Object.freeze(e), - t && - i( - e, - function (e, t) { - return v(t, !0); - }, - !0, - )), - e - ); - } - function g() { - n(2); - } - function m(e) { - return null == e || 'object' != typeof e || Object.isFrozen(e); - } - function y(e) { - var t = J[e]; - return t || n(18, e), t; - } - function b(e, t) { - J[e] || (J[e] = t); - } - function x() { - return V; - } - function w(e, t) { - t && (y('Patches'), (e.u = []), (e.v = []), (e.s = t)); - } - function E(e) { - k(e), e.p.forEach(S), (e.p = null); - } - function k(e) { - e === V && (V = e.l); - } - function _(e) { - return (V = { p: [], l: V, h: e, _: !0, m: 0 }); - } - function S(e) { - var t = e[X]; - 0 === t.t || 1 === t.t ? t.j() : (t.O = !0); - } - function P(e, t) { - t.m = t.p.length; - var r = t.p[0], - i = void 0 !== e && e !== r; - return ( - t.h.S || y('ES5').P(t, e, i), - i - ? (r[X].M && (E(t), n(4)), - o(e) && ((e = C(t, e)), t.l || T(t, e)), - t.u && y('Patches').g(r[X].o, e, t.u, t.v)) - : (e = C(t, r, [])), - E(t), - t.u && t.s(t.u, t.v), - e !== q ? e : void 0 - ); - } - function C(e, t, n) { - if (m(t)) return t; - var r = t[X]; - if (!r) - return ( - i( - t, - function (o, i) { - return j(e, r, t, o, i, n); - }, - !0, - ), - t - ); - if (r.A !== e) return t; - if (!r.M) return T(e, r.o, !0), r.o; - if (!r.R) { - (r.R = !0), r.A.m--; - var o = 4 === r.t || 5 === r.t ? (r.i = p(r.k)) : r.i; - i(3 === r.t ? new Set(o) : o, function (t, i) { - return j(e, r, o, t, i, n); - }), - T(e, o, !1), - n && e.u && y('Patches').F(r, n, e.u, e.v); - } - return r.i; - } - function j(e, t, n, i, a, l) { - if (r(a)) { - var u = C(e, a, l && t && 3 !== t.t && !s(t.D, i) ? l.concat(i) : void 0); - if ((c(n, i, u), !r(u))) return; - e._ = !1; - } - if (o(a) && !m(a)) { - if (!e.h.K && e.m < 1) return; - C(e, a), (t && t.A.l) || T(e, a); - } - } - function T(e, t, n) { - void 0 === n && (n = !1), e.h.K && e._ && v(t, n); - } - function D(e, t) { - var n = e[X]; - return (n ? h(n) : e)[t]; - } - function N(e, t) { - if (t in e) - for (var n = Object.getPrototypeOf(e); n; ) { - var r = Object.getOwnPropertyDescriptor(n, t); - if (r) return r; - n = Object.getPrototypeOf(n); - } - } - function M(e) { - e.M || ((e.M = !0), e.l && M(e.l)); - } - function O(e) { - e.i || (e.i = p(e.o)); - } - function A(e, t, n) { - var r = d(t) - ? y('MapSet').$(t, n) - : f(t) - ? y('MapSet').C(t, n) - : e.S - ? (function (e, t) { - var n = Array.isArray(e), - r = { - t: n ? 1 : 0, - A: t ? t.A : x(), - M: !1, - R: !1, - D: {}, - l: t, - o: e, - k: null, - i: null, - j: null, - I: !1, - }, - o = r, - i = ee; - n && ((o = [r]), (i = te)); - var a = Proxy.revocable(o, i), - s = a.revoke, - l = a.proxy; - return (r.k = l), (r.j = s), l; - })(t, n) - : y('ES5').J(t, n); - return (n ? n.A : x()).p.push(r), r; - } - function R(e) { - return ( - r(e) || n(22, e), - (function e(t) { - if (!o(t)) return t; - var n, - r = t[X], - s = a(t); - if (r) { - if (!r.M && (r.t < 4 || !y('ES5').N(r))) return r.o; - (r.R = !0), (n = L(t, s)), (r.R = !1); - } else n = L(t, s); - return ( - i(n, function (t, o) { - (r && l(r.o, t) === o) || c(n, t, e(o)); - }), - 3 === s ? new Set(n) : n - ); - })(e) - ); - } - function L(e, t) { - switch (t) { - case 2: - return new Map(e); - case 3: - return Array.from(e); - } - return p(e); - } - function I() { - function e(e, t) { - var n = a[e]; - return ( - n - ? (n.enumerable = t) - : (a[e] = n = - { - configurable: !0, - enumerable: t, - get: function () { - return ee.get(this[X], e); - }, - set: function (t) { - ee.set(this[X], e, t); - }, - }), - n - ); - } - function t(e) { - for (var t = e.length - 1; t >= 0; t--) { - var r = e[t][X]; - if (!r.M) - switch (r.t) { - case 5: - o(r) && M(r); - break; - case 4: - n(r) && M(r); - } - } - } - function n(e) { - for (var t = e.o, n = e.k, r = Z(n), o = r.length - 1; o >= 0; o--) { - var i = r[o]; - if (i !== X) { - var a = t[i]; - if (void 0 === a && !s(t, i)) return !0; - var l = n[i], - c = l && l[X]; - if (c ? c.o !== a : !u(l, a)) return !0; - } - } - var d = !!t[X]; - return r.length !== Z(t).length + (d ? 0 : 1); - } - function o(e) { - var t = e.k; - if (t.length !== e.o.length) return !0; - var n = Object.getOwnPropertyDescriptor(t, t.length - 1); - if (n && !n.get) return !0; - for (var r = 0; r < t.length; r++) if (!t.hasOwnProperty(r)) return !0; - return !1; - } - var a = {}; - b('ES5', { - J: function (t, n) { - var r = Array.isArray(t), - o = (function (t, n) { - if (t) { - for (var r = Array(n.length), o = 0; o < n.length; o++) Object.defineProperty(r, '' + o, e(o, !0)); - return r; - } - var i = Q(n); - delete i[X]; - for (var a = Z(i), s = 0; s < a.length; s++) { - var l = a[s]; - i[l] = e(l, t || !!i[l].enumerable); - } - return Object.create(Object.getPrototypeOf(n), i); - })(r, t), - i = { t: r ? 5 : 4, A: n ? n.A : x(), M: !1, R: !1, D: {}, l: n, o: t, k: o, i: null, O: !1, I: !1 }; - return Object.defineProperty(o, X, { value: i, writable: !0 }), o; - }, - P: function (e, n, a) { - a - ? r(n) && n[X].A === e && t(e.p) - : (e.u && - (function e(t) { - if (t && 'object' == typeof t) { - var n = t[X]; - if (n) { - var r = n.o, - a = n.k, - l = n.D, - c = n.t; - if (4 === c) - i(a, function (t) { - t !== X && (void 0 !== r[t] || s(r, t) ? l[t] || e(a[t]) : ((l[t] = !0), M(n))); - }), - i(r, function (e) { - void 0 !== a[e] || s(a, e) || ((l[e] = !1), M(n)); - }); - else if (5 === c) { - if ((o(n) && (M(n), (l.length = !0)), a.length < r.length)) - for (var u = a.length; u < r.length; u++) l[u] = !1; - else for (var d = r.length; d < a.length; d++) l[d] = !0; - for (var f = Math.min(a.length, r.length), h = 0; h < f; h++) - a.hasOwnProperty(h) || (l[h] = !0), void 0 === l[h] && e(a[h]); - } - } - } - })(e.p[0]), - t(e.p)); - }, - N: function (e) { - return 4 === e.t ? n(e) : o(e); - }, - }); - } - function B() { - function e(t) { - if (!o(t)) return t; - if (Array.isArray(t)) return t.map(e); - if (d(t)) - return new Map( - Array.from(t.entries()).map(function (t) { - return [t[0], e(t[1])]; - }), - ); - if (f(t)) return new Set(Array.from(t).map(e)); - var n = Object.create(Object.getPrototypeOf(t)); - for (var r in t) n[r] = e(t[r]); - return s(t, Y) && (n[Y] = t[Y]), n; - } - function t(t) { - return r(t) ? e(t) : t; - } - var c = 'add'; - b('Patches', { - W: function (t, r) { - return ( - r.forEach(function (r) { - for (var o = r.path, i = r.op, s = t, u = 0; u < o.length - 1; u++) { - var d = a(s), - f = '' + o[u]; - (0 !== d && 1 !== d) || ('__proto__' !== f && 'constructor' !== f) || n(24), - 'function' == typeof s && 'prototype' === f && n(24), - 'object' != typeof (s = l(s, f)) && n(15, o.join('/')); - } - var h = a(s), - p = e(r.value), - v = o[o.length - 1]; - switch (i) { - case 'replace': - switch (h) { - case 2: - return s.set(v, p); - case 3: - n(16); - default: - return (s[v] = p); - } - case c: - switch (h) { - case 1: - return '-' === v ? s.push(p) : s.splice(v, 0, p); - case 2: - return s.set(v, p); - case 3: - return s.add(p); - default: - return (s[v] = p); - } - case 'remove': - switch (h) { - case 1: - return s.splice(v, 1); - case 2: - return s.delete(v); - case 3: - return s.delete(r.value); - default: - return delete s[v]; - } - default: - n(17, i); - } - }), - t - ); - }, - F: function (e, n, r, o) { - switch (e.t) { - case 0: - case 4: - case 2: - return (function (e, n, r, o) { - var a = e.o, - u = e.i; - i(e.D, function (e, i) { - var d = l(a, e), - f = l(u, e), - h = i ? (s(a, e) ? 'replace' : c) : 'remove'; - if (d !== f || 'replace' !== h) { - var p = n.concat(e); - r.push('remove' === h ? { op: h, path: p } : { op: h, path: p, value: f }), - o.push( - h === c - ? { op: 'remove', path: p } - : 'remove' === h - ? { op: c, path: p, value: t(d) } - : { op: 'replace', path: p, value: t(d) }, - ); - } - }); - })(e, n, r, o); - case 5: - case 1: - return (function (e, n, r, o) { - var i = e.o, - a = e.D, - s = e.i; - if (s.length < i.length) { - var l = [s, i]; - (i = l[0]), (s = l[1]); - var u = [o, r]; - (r = u[0]), (o = u[1]); - } - for (var d = 0; d < i.length; d++) - if (a[d] && s[d] !== i[d]) { - var f = n.concat([d]); - r.push({ op: 'replace', path: f, value: t(s[d]) }), - o.push({ op: 'replace', path: f, value: t(i[d]) }); - } - for (var h = i.length; h < s.length; h++) { - var p = n.concat([h]); - r.push({ op: c, path: p, value: t(s[h]) }); - } - i.length < s.length && o.push({ op: 'replace', path: n.concat(['length']), value: i.length }); - })(e, n, r, o); - case 3: - return (function (e, t, n, r) { - var o = e.o, - i = e.i, - a = 0; - o.forEach(function (e) { - if (!i.has(e)) { - var o = t.concat([a]); - n.push({ op: 'remove', path: o, value: e }), r.unshift({ op: c, path: o, value: e }); - } - a++; - }), - (a = 0), - i.forEach(function (e) { - if (!o.has(e)) { - var i = t.concat([a]); - n.push({ op: c, path: i, value: e }), r.unshift({ op: 'remove', path: i, value: e }); - } - a++; - }); - })(e, n, r, o); - } - }, - g: function (e, t, n, r) { - n.push({ op: 'replace', path: [], value: t === q ? void 0 : t }), - r.push({ op: 'replace', path: [], value: e }); - }, - }); - } - function F() { - function e(e, t) { - function n() { - this.constructor = e; - } - s(e, t), (e.prototype = ((n.prototype = t.prototype), new n())); - } - function t(e) { - e.i || ((e.D = new Map()), (e.i = new Map(e.o))); - } - function r(e) { - e.i || - ((e.i = new Set()), - e.o.forEach(function (t) { - if (o(t)) { - var n = A(e.A.h, t, e); - e.p.set(t, n), e.i.add(n); - } else e.i.add(t); - })); - } - function a(e) { - e.O && n(3, JSON.stringify(h(e))); - } - var s = function (e, t) { - return (s = - Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && - function (e, t) { - e.__proto__ = t; - }) || - function (e, t) { - for (var n in t) t.hasOwnProperty(n) && (e[n] = t[n]); - })(e, t); - }, - l = (function () { - function n(e, t) { - return ( - (this[X] = { - t: 2, - l: t, - A: t ? t.A : x(), - M: !1, - R: !1, - i: void 0, - D: void 0, - o: e, - k: this, - I: !1, - O: !1, - }), - this - ); - } - e(n, Map); - var r = n.prototype; - return ( - Object.defineProperty(r, 'size', { - get: function () { - return h(this[X]).size; - }, - }), - (r.has = function (e) { - return h(this[X]).has(e); - }), - (r.set = function (e, n) { - var r = this[X]; - return ( - a(r), - (h(r).has(e) && h(r).get(e) === n) || (t(r), M(r), r.D.set(e, !0), r.i.set(e, n), r.D.set(e, !0)), - this - ); - }), - (r.delete = function (e) { - if (!this.has(e)) return !1; - var n = this[X]; - return a(n), t(n), M(n), n.o.has(e) ? n.D.set(e, !1) : n.D.delete(e), n.i.delete(e), !0; - }), - (r.clear = function () { - var e = this[X]; - a(e), - h(e).size && - (t(e), - M(e), - (e.D = new Map()), - i(e.o, function (t) { - e.D.set(t, !1); - }), - e.i.clear()); - }), - (r.forEach = function (e, t) { - var n = this; - h(this[X]).forEach(function (r, o) { - e.call(t, n.get(o), o, n); - }); - }), - (r.get = function (e) { - var n = this[X]; - a(n); - var r = h(n).get(e); - if (n.R || !o(r)) return r; - if (r !== n.o.get(e)) return r; - var i = A(n.A.h, r, n); - return t(n), n.i.set(e, i), i; - }), - (r.keys = function () { - return h(this[X]).keys(); - }), - (r.values = function () { - var e, - t = this, - n = this.keys(); - return ( - ((e = {})[$] = function () { - return t.values(); - }), - (e.next = function () { - var e = n.next(); - return e.done ? e : { done: !1, value: t.get(e.value) }; - }), - e - ); - }), - (r.entries = function () { - var e, - t = this, - n = this.keys(); - return ( - ((e = {})[$] = function () { - return t.entries(); - }), - (e.next = function () { - var e = n.next(); - if (e.done) return e; - var r = t.get(e.value); - return { done: !1, value: [e.value, r] }; - }), - e - ); - }), - (r[$] = function () { - return this.entries(); - }), - n - ); - })(), - c = (function () { - function t(e, t) { - return ( - (this[X] = { - t: 3, - l: t, - A: t ? t.A : x(), - M: !1, - R: !1, - i: void 0, - o: e, - k: this, - p: new Map(), - O: !1, - I: !1, - }), - this - ); - } - e(t, Set); - var n = t.prototype; - return ( - Object.defineProperty(n, 'size', { - get: function () { - return h(this[X]).size; - }, - }), - (n.has = function (e) { - var t = this[X]; - return a(t), t.i ? !!t.i.has(e) || !(!t.p.has(e) || !t.i.has(t.p.get(e))) : t.o.has(e); - }), - (n.add = function (e) { - var t = this[X]; - return a(t), this.has(e) || (r(t), M(t), t.i.add(e)), this; - }), - (n.delete = function (e) { - if (!this.has(e)) return !1; - var t = this[X]; - return a(t), r(t), M(t), t.i.delete(e) || (!!t.p.has(e) && t.i.delete(t.p.get(e))); - }), - (n.clear = function () { - var e = this[X]; - a(e), h(e).size && (r(e), M(e), e.i.clear()); - }), - (n.values = function () { - var e = this[X]; - return a(e), r(e), e.i.values(); - }), - (n.entries = function () { - var e = this[X]; - return a(e), r(e), e.i.entries(); - }), - (n.keys = function () { - return this.values(); - }), - (n[$] = function () { - return this.values(); - }), - (n.forEach = function (e, t) { - for (var n = this.values(), r = n.next(); !r.done; ) e.call(t, r.value, r.value, this), (r = n.next()); - }), - t - ); - })(); - b('MapSet', { - $: function (e, t) { - return new l(e, t); - }, - C: function (e, t) { - return new c(e, t); - }, - }); - } - var z; - Object.defineProperty(t, '__esModule', { value: !0 }); - var V, - G = 'undefined' != typeof Symbol && 'symbol' == typeof Symbol('x'), - H = 'undefined' != typeof Map, - W = 'undefined' != typeof Set, - U = 'undefined' != typeof Proxy && void 0 !== Proxy.revocable && 'undefined' != typeof Reflect, - q = G ? Symbol.for('immer-nothing') : (((z = {})['immer-nothing'] = !0), z), - Y = G ? Symbol.for('immer-draftable') : '__$immer_draftable', - X = G ? Symbol.for('immer-state') : '__$immer_state', - $ = ('undefined' != typeof Symbol && Symbol.iterator) || '@@iterator', - K = '' + Object.prototype.constructor, - Z = - 'undefined' != typeof Reflect && Reflect.ownKeys - ? Reflect.ownKeys - : void 0 !== Object.getOwnPropertySymbols - ? function (e) { - return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e)); - } - : Object.getOwnPropertyNames, - Q = - Object.getOwnPropertyDescriptors || - function (e) { - var t = {}; - return ( - Z(e).forEach(function (n) { - t[n] = Object.getOwnPropertyDescriptor(e, n); - }), - t - ); - }, - J = {}, - ee = { - get: function (e, t) { - if (t === X) return e; - var n = h(e); - if (!s(n, t)) - return (function (e, t, n) { - var r, - o = N(t, n); - return o - ? 'value' in o - ? o.value - : null === (r = o.get) || void 0 === r - ? void 0 - : r.call(e.k) - : void 0; - })(e, n, t); - var r = n[t]; - return e.R || !o(r) ? r : r === D(e.o, t) ? (O(e), (e.i[t] = A(e.A.h, r, e))) : r; - }, - has: function (e, t) { - return t in h(e); - }, - ownKeys: function (e) { - return Reflect.ownKeys(h(e)); - }, - set: function (e, t, n) { - var r = N(h(e), t); - if (null == r ? void 0 : r.set) return r.set.call(e.k, n), !0; - if (!e.M) { - var o = D(h(e), t), - i = null == o ? void 0 : o[X]; - if (i && i.o === n) return (e.i[t] = n), (e.D[t] = !1), !0; - if (u(n, o) && (void 0 !== n || s(e.o, t))) return !0; - O(e), M(e); - } - return ( - (e.i[t] === n && 'number' != typeof n && (void 0 !== n || t in e.i)) || ((e.i[t] = n), (e.D[t] = !0), !0) - ); - }, - deleteProperty: function (e, t) { - return ( - void 0 !== D(e.o, t) || t in e.o ? ((e.D[t] = !1), O(e), M(e)) : delete e.D[t], e.i && delete e.i[t], !0 - ); - }, - getOwnPropertyDescriptor: function (e, t) { - var n = h(e), - r = Reflect.getOwnPropertyDescriptor(n, t); - return r - ? { writable: !0, configurable: 1 !== e.t || 'length' !== t, enumerable: r.enumerable, value: n[t] } - : r; - }, - defineProperty: function () { - n(11); - }, - getPrototypeOf: function (e) { - return Object.getPrototypeOf(e.o); - }, - setPrototypeOf: function () { - n(12); - }, - }, - te = {}; - i(ee, function (e, t) { - te[e] = function () { - return (arguments[0] = arguments[0][0]), t.apply(this, arguments); - }; - }), - (te.deleteProperty = function (e, t) { - return te.set.call(this, e, t, void 0); - }), - (te.set = function (e, t, n) { - return ee.set.call(this, e[0], t, n, e[0]); - }); - var ne = (function () { - function e(e) { - var t = this; - (this.S = U), - (this.K = !0), - (this.produce = function (e, r, i) { - if ('function' == typeof e && 'function' != typeof r) { - var a = r; - r = e; - var s = t; - return function (e) { - var t = this; - void 0 === e && (e = a); - for (var n = arguments.length, o = Array(n > 1 ? n - 1 : 0), i = 1; i < n; i++) - o[i - 1] = arguments[i]; - return s.produce(e, function (e) { - var n; - return (n = r).call.apply(n, [t, e].concat(o)); - }); - }; - } - var l; - if (('function' != typeof r && n(6), void 0 !== i && 'function' != typeof i && n(7), o(e))) { - var c = _(t), - u = A(t, e, void 0), - d = !0; - try { - (l = r(u)), (d = !1); - } finally { - d ? E(c) : k(c); - } - return 'undefined' != typeof Promise && l instanceof Promise - ? l.then( - function (e) { - return w(c, i), P(e, c); - }, - function (e) { - throw (E(c), e); - }, - ) - : (w(c, i), P(l, c)); - } - if (!e || 'object' != typeof e) { - if ((void 0 === (l = r(e)) && (l = e), l === q && (l = void 0), t.K && v(l, !0), i)) { - var f = [], - h = []; - y('Patches').g(e, l, f, h), i(f, h); - } - return l; - } - n(21, e); - }), - (this.produceWithPatches = function (e, n) { - if ('function' == typeof e) - return function (n) { - for (var r = arguments.length, o = Array(r > 1 ? r - 1 : 0), i = 1; i < r; i++) - o[i - 1] = arguments[i]; - return t.produceWithPatches(n, function (t) { - return e.apply(void 0, [t].concat(o)); - }); - }; - var r, - o, - i = t.produce(e, n, function (e, t) { - (r = e), (o = t); - }); - return 'undefined' != typeof Promise && i instanceof Promise - ? i.then(function (e) { - return [e, r, o]; - }) - : [i, r, o]; - }), - 'boolean' == typeof (null == e ? void 0 : e.useProxies) && this.setUseProxies(e.useProxies), - 'boolean' == typeof (null == e ? void 0 : e.autoFreeze) && this.setAutoFreeze(e.autoFreeze); - } - var t = e.prototype; - return ( - (t.createDraft = function (e) { - o(e) || n(8), r(e) && (e = R(e)); - var t = _(this), - i = A(this, e, void 0); - return (i[X].I = !0), k(t), i; - }), - (t.finishDraft = function (e, t) { - var n = (e && e[X]).A; - return w(n, t), P(void 0, n); - }), - (t.setAutoFreeze = function (e) { - this.K = e; - }), - (t.setUseProxies = function (e) { - e && !U && n(20), (this.S = e); - }), - (t.applyPatches = function (e, t) { - var n; - for (n = t.length - 1; n >= 0; n--) { - var o = t[n]; - if (0 === o.path.length && 'replace' === o.op) { - e = o.value; - break; - } - } - n > -1 && (t = t.slice(n + 1)); - var i = y('Patches').W; - return r(e) - ? i(e, t) - : this.produce(e, function (e) { - return i(e, t); - }); - }), - e - ); - })(), - re = new ne(), - oe = re.produce, - ie = re.produceWithPatches.bind(re), - ae = re.setAutoFreeze.bind(re), - se = re.setUseProxies.bind(re), - le = re.applyPatches.bind(re), - ce = re.createDraft.bind(re), - ue = re.finishDraft.bind(re); - (t.Immer = ne), - (t.applyPatches = le), - (t.castDraft = function (e) { - return e; - }), - (t.castImmutable = function (e) { - return e; - }), - (t.createDraft = ce), - (t.current = R), - (t.default = oe), - (t.enableAllPlugins = function () { - I(), F(), B(); - }), - (t.enableES5 = I), - (t.enableMapSet = F), - (t.enablePatches = B), - (t.finishDraft = ue), - (t.freeze = v), - (t.immerable = Y), - (t.isDraft = r), - (t.isDraftable = o), - (t.nothing = q), - (t.original = function (e) { - return r(e) || n(23, e), e[X].o; - }), - (t.produce = oe), - (t.produceWithPatches = ie), - (t.setAutoFreeze = ae), - (t.setUseProxies = se); - }, - 77667: (e, t, n) => { - 'use strict'; - e.exports = n(33845); - }, - 94466: (e, t, n) => { - var r = n(65234)(n(83250), 'DataView'); - e.exports = r; - }, - 85208: (e, t, n) => { - var r = n(34440), - o = n(84108), - i = n(61085), - a = n(77706), - s = n(8636); - function l(e) { - var t = -1, - n = null == e ? 0 : e.length; - for (this.clear(); ++t < n; ) { - var r = e[t]; - this.set(r[0], r[1]); - } - } - (l.prototype.clear = r), - (l.prototype.delete = o), - (l.prototype.get = i), - (l.prototype.has = a), - (l.prototype.set = s), - (e.exports = l); - }, - 81998: (e, t, n) => { - var r = n(90266), - o = n(42875), - i = n(45828), - a = n(24115), - s = n(67690); - function l(e) { - var t = -1, - n = null == e ? 0 : e.length; - for (this.clear(); ++t < n; ) { - var r = e[t]; - this.set(r[0], r[1]); - } - } - (l.prototype.clear = r), - (l.prototype.delete = o), - (l.prototype.get = i), - (l.prototype.has = a), - (l.prototype.set = s), - (e.exports = l); - }, - 72887: (e, t, n) => { - var r = n(65234)(n(83250), 'Map'); - e.exports = r; - }, - 95678: (e, t, n) => { - var r = n(39016), - o = n(62363), - i = n(64348), - a = n(53062), - s = n(30262); - function l(e) { - var t = -1, - n = null == e ? 0 : e.length; - for (this.clear(); ++t < n; ) { - var r = e[t]; - this.set(r[0], r[1]); - } - } - (l.prototype.clear = r), - (l.prototype.delete = o), - (l.prototype.get = i), - (l.prototype.has = a), - (l.prototype.set = s), - (e.exports = l); - }, - 95747: (e, t, n) => { - var r = n(65234)(n(83250), 'Promise'); - e.exports = r; - }, - 56616: (e, t, n) => { - var r = n(65234)(n(83250), 'Set'); - e.exports = r; - }, - 84546: (e, t, n) => { - var r = n(95678), - o = n(83937), - i = n(15009); - function a(e) { - var t = -1, - n = null == e ? 0 : e.length; - for (this.__data__ = new r(); ++t < n; ) this.add(e[t]); - } - (a.prototype.add = a.prototype.push = o), (a.prototype.has = i), (e.exports = a); - }, - 19549: (e, t, n) => { - var r = n(81998), - o = n(93210), - i = n(48603), - a = n(38947), - s = n(70885), - l = n(98938); - function c(e) { - var t = (this.__data__ = new r(e)); - this.size = t.size; - } - (c.prototype.clear = o), - (c.prototype.delete = i), - (c.prototype.get = a), - (c.prototype.has = s), - (c.prototype.set = l), - (e.exports = c); - }, - 70861: (e, t, n) => { - var r = n(83250).Symbol; - e.exports = r; - }, - 3526: (e, t, n) => { - var r = n(83250).Uint8Array; - e.exports = r; - }, - 98001: (e, t, n) => { - var r = n(65234)(n(83250), 'WeakMap'); - e.exports = r; - }, - 82274: e => { - e.exports = function (e, t, n) { - switch (n.length) { - case 0: - return e.call(t); - case 1: - return e.call(t, n[0]); - case 2: - return e.call(t, n[0], n[1]); - case 3: - return e.call(t, n[0], n[1], n[2]); - } - return e.apply(t, n); - }; - }, - 84004: e => { - e.exports = function (e, t) { - for (var n = -1, r = null == e ? 0 : e.length; ++n < r && !1 !== t(e[n], n, e); ); - return e; - }; - }, - 82493: e => { - e.exports = function (e, t) { - for (var n = -1, r = null == e ? 0 : e.length, o = 0, i = []; ++n < r; ) { - var a = e[n]; - t(a, n, e) && (i[o++] = a); - } - return i; - }; - }, - 45436: (e, t, n) => { - var r = n(94365); - e.exports = function (e, t) { - return !!(null == e ? 0 : e.length) && r(e, t, 0) > -1; - }; - }, - 99105: e => { - e.exports = function (e, t, n) { - for (var r = -1, o = null == e ? 0 : e.length; ++r < o; ) if (n(t, e[r])) return !0; - return !1; - }; - }, - 75825: (e, t, n) => { - var r = n(18509), - o = n(79312), - i = n(55589), - a = n(85778), - s = n(5023), - l = n(50922), - c = Object.prototype.hasOwnProperty; - e.exports = function (e, t) { - var n = i(e), - u = !n && o(e), - d = !n && !u && a(e), - f = !n && !u && !d && l(e), - h = n || u || d || f, - p = h ? r(e.length, String) : [], - v = p.length; - for (var g in e) - (!t && !c.call(e, g)) || - (h && - ('length' == g || - (d && ('offset' == g || 'parent' == g)) || - (f && ('buffer' == g || 'byteLength' == g || 'byteOffset' == g)) || - s(g, v))) || - p.push(g); - return p; - }; - }, - 29233: e => { - e.exports = function (e, t) { - for (var n = -1, r = null == e ? 0 : e.length, o = Array(r); ++n < r; ) o[n] = t(e[n], n, e); - return o; - }; - }, - 10111: e => { - e.exports = function (e, t) { - for (var n = -1, r = t.length, o = e.length; ++n < r; ) e[o + n] = t[n]; - return e; - }; - }, - 85115: e => { - e.exports = function (e, t, n, r) { - var o = -1, - i = null == e ? 0 : e.length; - for (r && i && (n = e[++o]); ++o < i; ) n = t(n, e[o], o, e); - return n; - }; - }, - 1831: e => { - e.exports = function (e, t) { - for (var n = -1, r = null == e ? 0 : e.length; ++n < r; ) if (t(e[n], n, e)) return !0; - return !1; - }; - }, - 97088: (e, t, n) => { - var r = n(86174)('length'); - e.exports = r; - }, - 73532: (e, t, n) => { - var r = n(87500), - o = n(58260); - e.exports = function (e, t, n) { - ((void 0 !== n && !o(e[t], n)) || (void 0 === n && !(t in e))) && r(e, t, n); - }; - }, - 93192: (e, t, n) => { - var r = n(87500), - o = n(58260), - i = Object.prototype.hasOwnProperty; - e.exports = function (e, t, n) { - var a = e[t]; - (i.call(e, t) && o(a, n) && (void 0 !== n || t in e)) || r(e, t, n); - }; - }, - 18498: (e, t, n) => { - var r = n(58260); - e.exports = function (e, t) { - for (var n = e.length; n--; ) if (r(e[n][0], t)) return n; - return -1; - }; - }, - 44265: (e, t, n) => { - var r = n(78618), - o = n(62096); - e.exports = function (e, t) { - return e && r(t, o(t), e); - }; - }, - 31629: (e, t, n) => { - var r = n(78618), - o = n(9882); - e.exports = function (e, t) { - return e && r(t, o(t), e); - }; - }, - 87500: (e, t, n) => { - var r = n(25595); - e.exports = function (e, t, n) { - '__proto__' == t && r ? r(e, t, { configurable: !0, enumerable: !0, value: n, writable: !0 }) : (e[t] = n); - }; - }, - 18361: (e, t, n) => { - var r = n(19549), - o = n(84004), - i = n(93192), - a = n(44265), - s = n(31629), - l = n(46502), - c = n(32166), - u = n(67272), - d = n(52066), - f = n(54357), - h = n(55713), - p = n(87493), - v = n(82865), - g = n(11908), - m = n(84046), - y = n(55589), - b = n(85778), - x = n(37613), - w = n(93702), - E = n(60693), - k = n(62096), - _ = n(9882), - S = '[object Arguments]', - P = '[object Function]', - C = '[object Object]', - j = {}; - (j[S] = - j['[object Array]'] = - j['[object ArrayBuffer]'] = - j['[object DataView]'] = - j['[object Boolean]'] = - j['[object Date]'] = - j['[object Float32Array]'] = - j['[object Float64Array]'] = - j['[object Int8Array]'] = - j['[object Int16Array]'] = - j['[object Int32Array]'] = - j['[object Map]'] = - j['[object Number]'] = - j[C] = - j['[object RegExp]'] = - j['[object Set]'] = - j['[object String]'] = - j['[object Symbol]'] = - j['[object Uint8Array]'] = - j['[object Uint8ClampedArray]'] = - j['[object Uint16Array]'] = - j['[object Uint32Array]'] = - !0), - (j['[object Error]'] = j[P] = j['[object WeakMap]'] = !1), - (e.exports = function e(t, n, T, D, N, M) { - var O, - A = 1 & n, - R = 2 & n, - L = 4 & n; - if ((T && (O = N ? T(t, D, N, M) : T(t)), void 0 !== O)) return O; - if (!w(t)) return t; - var I = y(t); - if (I) { - if (((O = v(t)), !A)) return c(t, O); - } else { - var B = p(t), - F = B == P || '[object GeneratorFunction]' == B; - if (b(t)) return l(t, A); - if (B == C || B == S || (F && !N)) { - if (((O = R || F ? {} : m(t)), !A)) return R ? d(t, s(O, t)) : u(t, a(O, t)); - } else { - if (!j[B]) return N ? t : {}; - O = g(t, B, A); - } - } - M || (M = new r()); - var z = M.get(t); - if (z) return z; - M.set(t, O), - E(t) - ? t.forEach(function (r) { - O.add(e(r, n, T, r, t, M)); - }) - : x(t) && - t.forEach(function (r, o) { - O.set(o, e(r, n, T, o, t, M)); - }); - var V = I ? void 0 : (L ? (R ? h : f) : R ? _ : k)(t); - return ( - o(V || t, function (r, o) { - V && (r = t[(o = r)]), i(O, o, e(r, n, T, o, t, M)); - }), - O - ); - }); - }, - 57890: (e, t, n) => { - var r = n(93702), - o = Object.create, - i = (function () { - function e() {} - return function (t) { - if (!r(t)) return {}; - if (o) return o(t); - e.prototype = t; - var n = new e(); - return (e.prototype = void 0), n; - }; - })(); - e.exports = i; - }, - 61701: (e, t, n) => { - var r = n(44003), - o = n(96313)(r); - e.exports = o; - }, - 85117: (e, t, n) => { - var r = n(52624); - e.exports = function (e, t, n) { - for (var o = -1, i = e.length; ++o < i; ) { - var a = e[o], - s = t(a); - if (null != s && (void 0 === l ? s == s && !r(s) : n(s, l))) - var l = s, - c = a; - } - return c; - }; - }, - 68146: (e, t, n) => { - var r = n(61701); - e.exports = function (e, t) { - var n = []; - return ( - r(e, function (e, r, o) { - t(e, r, o) && n.push(e); - }), - n - ); - }; - }, - 44770: e => { - e.exports = function (e, t, n, r) { - for (var o = e.length, i = n + (r ? 1 : -1); r ? i-- : ++i < o; ) if (t(e[i], i, e)) return i; - return -1; - }; - }, - 22825: (e, t, n) => { - var r = n(10111), - o = n(67123); - e.exports = function e(t, n, i, a, s) { - var l = -1, - c = t.length; - for (i || (i = o), s || (s = []); ++l < c; ) { - var u = t[l]; - n > 0 && i(u) ? (n > 1 ? e(u, n - 1, i, a, s) : r(s, u)) : a || (s[s.length] = u); - } - return s; - }; - }, - 39943: (e, t, n) => { - var r = n(72545)(); - e.exports = r; - }, - 44003: (e, t, n) => { - var r = n(39943), - o = n(62096); - e.exports = function (e, t) { - return e && r(e, t, o); - }; - }, - 40548: (e, t, n) => { - var r = n(24007), - o = n(86040); - e.exports = function (e, t) { - for (var n = 0, i = (t = r(t, e)).length; null != e && n < i; ) e = e[o(t[n++])]; - return n && n == i ? e : void 0; - }; - }, - 4468: (e, t, n) => { - var r = n(10111), - o = n(55589); - e.exports = function (e, t, n) { - var i = t(e); - return o(e) ? i : r(i, n(e)); - }; - }, - 69823: (e, t, n) => { - var r = n(70861), - o = n(91339), - i = n(25151), - a = r ? r.toStringTag : void 0; - e.exports = function (e) { - return null == e ? (void 0 === e ? '[object Undefined]' : '[object Null]') : a && a in Object(e) ? o(e) : i(e); - }; - }, - 51669: e => { - e.exports = function (e, t) { - return e > t; - }; - }, - 32586: e => { - var t = Object.prototype.hasOwnProperty; - e.exports = function (e, n) { - return null != e && t.call(e, n); - }; - }, - 62902: e => { - e.exports = function (e, t) { - return null != e && t in Object(e); - }; - }, - 94365: (e, t, n) => { - var r = n(44770), - o = n(56963), - i = n(45898); - e.exports = function (e, t, n) { - return t == t ? i(e, t, n) : r(e, o, n); - }; - }, - 33016: (e, t, n) => { - var r = n(69823), - o = n(50440); - e.exports = function (e) { - return o(e) && '[object Arguments]' == r(e); - }; - }, - 34662: (e, t, n) => { - var r = n(88968), - o = n(50440); - e.exports = function e(t, n, i, a, s) { - return t === n || (null == t || null == n || (!o(t) && !o(n)) ? t != t && n != n : r(t, n, i, a, e, s)); - }; - }, - 88968: (e, t, n) => { - var r = n(19549), - o = n(14952), - i = n(21080), - a = n(86524), - s = n(87493), - l = n(55589), - c = n(85778), - u = n(50922), - d = '[object Arguments]', - f = '[object Array]', - h = '[object Object]', - p = Object.prototype.hasOwnProperty; - e.exports = function (e, t, n, v, g, m) { - var y = l(e), - b = l(t), - x = y ? f : s(e), - w = b ? f : s(t), - E = (x = x == d ? h : x) == h, - k = (w = w == d ? h : w) == h, - _ = x == w; - if (_ && c(e)) { - if (!c(t)) return !1; - (y = !0), (E = !1); - } - if (_ && !E) return m || (m = new r()), y || u(e) ? o(e, t, n, v, g, m) : i(e, t, x, n, v, g, m); - if (!(1 & n)) { - var S = E && p.call(e, '__wrapped__'), - P = k && p.call(t, '__wrapped__'); - if (S || P) { - var C = S ? e.value() : e, - j = P ? t.value() : t; - return m || (m = new r()), g(C, j, n, v, m); - } - } - return !!_ && (m || (m = new r()), a(e, t, n, v, g, m)); - }; - }, - 52275: (e, t, n) => { - var r = n(87493), - o = n(50440); - e.exports = function (e) { - return o(e) && '[object Map]' == r(e); - }; - }, - 2972: (e, t, n) => { - var r = n(19549), - o = n(34662); - e.exports = function (e, t, n, i) { - var a = n.length, - s = a, - l = !i; - if (null == e) return !s; - for (e = Object(e); a--; ) { - var c = n[a]; - if (l && c[2] ? c[1] !== e[c[0]] : !(c[0] in e)) return !1; - } - for (; ++a < s; ) { - var u = (c = n[a])[0], - d = e[u], - f = c[1]; - if (l && c[2]) { - if (void 0 === d && !(u in e)) return !1; - } else { - var h = new r(); - if (i) var p = i(d, f, u, e, t, h); - if (!(void 0 === p ? o(f, d, 3, i, h) : p)) return !1; - } - } - return !0; - }; - }, - 56963: e => { - e.exports = function (e) { - return e != e; - }; - }, - 99817: (e, t, n) => { - var r = n(45563), - o = n(28597), - i = n(93702), - a = n(55784), - s = /^\[object .+?Constructor\]$/, - l = Function.prototype, - c = Object.prototype, - u = l.toString, - d = c.hasOwnProperty, - f = RegExp( - '^' + - u - .call(d) - .replace(/[\\^$.*+?()[\]{}|]/g, '\\$&') - .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + - '$', - ); - e.exports = function (e) { - return !(!i(e) || o(e)) && (r(e) ? f : s).test(a(e)); - }; - }, - 7170: (e, t, n) => { - var r = n(87493), - o = n(50440); - e.exports = function (e) { - return o(e) && '[object Set]' == r(e); - }; - }, - 42448: (e, t, n) => { - var r = n(69823), - o = n(66052), - i = n(50440), - a = {}; - (a['[object Float32Array]'] = - a['[object Float64Array]'] = - a['[object Int8Array]'] = - a['[object Int16Array]'] = - a['[object Int32Array]'] = - a['[object Uint8Array]'] = - a['[object Uint8ClampedArray]'] = - a['[object Uint16Array]'] = - a['[object Uint32Array]'] = - !0), - (a['[object Arguments]'] = - a['[object Array]'] = - a['[object ArrayBuffer]'] = - a['[object Boolean]'] = - a['[object DataView]'] = - a['[object Date]'] = - a['[object Error]'] = - a['[object Function]'] = - a['[object Map]'] = - a['[object Number]'] = - a['[object Object]'] = - a['[object RegExp]'] = - a['[object Set]'] = - a['[object String]'] = - a['[object WeakMap]'] = - !1), - (e.exports = function (e) { - return i(e) && o(e.length) && !!a[r(e)]; - }); - }, - 55833: (e, t, n) => { - var r = n(15640), - o = n(9906), - i = n(80229), - a = n(55589), - s = n(94437); - e.exports = function (e) { - return 'function' == typeof e ? e : null == e ? i : 'object' == typeof e ? (a(e) ? o(e[0], e[1]) : r(e)) : s(e); - }; - }, - 41351: (e, t, n) => { - var r = n(32840), - o = n(82825), - i = Object.prototype.hasOwnProperty; - e.exports = function (e) { - if (!r(e)) return o(e); - var t = []; - for (var n in Object(e)) i.call(e, n) && 'constructor' != n && t.push(n); - return t; - }; - }, - 71309: (e, t, n) => { - var r = n(93702), - o = n(32840), - i = n(84866), - a = Object.prototype.hasOwnProperty; - e.exports = function (e) { - if (!r(e)) return i(e); - var t = o(e), - n = []; - for (var s in e) ('constructor' != s || (!t && a.call(e, s))) && n.push(s); - return n; - }; - }, - 46718: e => { - e.exports = function (e, t) { - return e < t; - }; - }, - 78068: (e, t, n) => { - var r = n(61701), - o = n(30568); - e.exports = function (e, t) { - var n = -1, - i = o(e) ? Array(e.length) : []; - return ( - r(e, function (e, r, o) { - i[++n] = t(e, r, o); - }), - i - ); - }; - }, - 15640: (e, t, n) => { - var r = n(2972), - o = n(72198), - i = n(94656); - e.exports = function (e) { - var t = o(e); - return 1 == t.length && t[0][2] - ? i(t[0][0], t[0][1]) - : function (n) { - return n === e || r(n, e, t); - }; - }; - }, - 9906: (e, t, n) => { - var r = n(34662), - o = n(13546), - i = n(56708), - a = n(5130), - s = n(18802), - l = n(94656), - c = n(86040); - e.exports = function (e, t) { - return a(e) && s(t) - ? l(c(e), t) - : function (n) { - var a = o(n, e); - return void 0 === a && a === t ? i(n, e) : r(t, a, 3); - }; - }; - }, - 92133: (e, t, n) => { - var r = n(19549), - o = n(73532), - i = n(39943), - a = n(21241), - s = n(93702), - l = n(9882), - c = n(11933); - e.exports = function e(t, n, u, d, f) { - t !== n && - i( - n, - function (i, l) { - if ((f || (f = new r()), s(i))) a(t, n, l, u, e, d, f); - else { - var h = d ? d(c(t, l), i, l + '', t, n, f) : void 0; - void 0 === h && (h = i), o(t, l, h); - } - }, - l, - ); - }; - }, - 21241: (e, t, n) => { - var r = n(73532), - o = n(46502), - i = n(21327), - a = n(32166), - s = n(84046), - l = n(79312), - c = n(55589), - u = n(18268), - d = n(85778), - f = n(45563), - h = n(93702), - p = n(54256), - v = n(50922), - g = n(11933), - m = n(36222); - e.exports = function (e, t, n, y, b, x, w) { - var E = g(e, n), - k = g(t, n), - _ = w.get(k); - if (_) r(e, n, _); - else { - var S = x ? x(E, k, n + '', e, t, w) : void 0, - P = void 0 === S; - if (P) { - var C = c(k), - j = !C && d(k), - T = !C && !j && v(k); - (S = k), - C || j || T - ? c(E) - ? (S = E) - : u(E) - ? (S = a(E)) - : j - ? ((P = !1), (S = o(k, !0))) - : T - ? ((P = !1), (S = i(k, !0))) - : (S = []) - : p(k) || l(k) - ? ((S = E), l(E) ? (S = m(E)) : (h(E) && !f(E)) || (S = s(k))) - : (P = !1); - } - P && (w.set(k, S), b(S, k, y, x, w), w.delete(k)), r(e, n, S); - } - }; - }, - 54466: (e, t, n) => { - var r = n(29233), - o = n(40548), - i = n(55833), - a = n(78068), - s = n(53340), - l = n(31525), - c = n(20315), - u = n(80229), - d = n(55589); - e.exports = function (e, t, n) { - t = t.length - ? r(t, function (e) { - return d(e) - ? function (t) { - return o(t, 1 === e.length ? e[0] : e); - } - : e; - }) - : [u]; - var f = -1; - t = r(t, l(i)); - var h = a(e, function (e, n, o) { - return { - criteria: r(t, function (t) { - return t(e); - }), - index: ++f, - value: e, - }; - }); - return s(h, function (e, t) { - return c(e, t, n); - }); - }; - }, - 21785: (e, t, n) => { - var r = n(57121), - o = n(56708); - e.exports = function (e, t) { - return r(e, t, function (t, n) { - return o(e, n); - }); - }; - }, - 57121: (e, t, n) => { - var r = n(40548), - o = n(32619), - i = n(24007); - e.exports = function (e, t, n) { - for (var a = -1, s = t.length, l = {}; ++a < s; ) { - var c = t[a], - u = r(e, c); - n(u, c) && o(l, i(c, e), u); - } - return l; - }; - }, - 86174: e => { - e.exports = function (e) { - return function (t) { - return null == t ? void 0 : t[e]; - }; - }; - }, - 3293: (e, t, n) => { - var r = n(40548); - e.exports = function (e) { - return function (t) { - return r(t, e); - }; - }; - }, - 24930: e => { - var t = Math.ceil, - n = Math.max; - e.exports = function (e, r, o, i) { - for (var a = -1, s = n(t((r - e) / (o || 1)), 0), l = Array(s); s--; ) (l[i ? s : ++a] = e), (e += o); - return l; - }; - }, - 34306: e => { - e.exports = function (e, t, n, r, o) { - return ( - o(e, function (e, o, i) { - n = r ? ((r = !1), e) : t(n, e, o, i); - }), - n - ); - }; - }, - 29735: (e, t, n) => { - var r = n(80229), - o = n(20340), - i = n(4173); - e.exports = function (e, t) { - return i(o(e, t, r), e + ''); - }; - }, - 32619: (e, t, n) => { - var r = n(93192), - o = n(24007), - i = n(5023), - a = n(93702), - s = n(86040); - e.exports = function (e, t, n, l) { - if (!a(e)) return e; - for (var c = -1, u = (t = o(t, e)).length, d = u - 1, f = e; null != f && ++c < u; ) { - var h = s(t[c]), - p = n; - if ('__proto__' === h || 'constructor' === h || 'prototype' === h) return e; - if (c != d) { - var v = f[h]; - void 0 === (p = l ? l(v, h, f) : void 0) && (p = a(v) ? v : i(t[c + 1]) ? [] : {}); - } - r(f, h, p), (f = f[h]); - } - return e; - }; - }, - 46739: (e, t, n) => { - var r = n(89203), - o = n(25595), - i = n(80229), - a = o - ? function (e, t) { - return o(e, 'toString', { configurable: !0, enumerable: !1, value: r(t), writable: !0 }); - } - : i; - e.exports = a; - }, - 53340: e => { - e.exports = function (e, t) { - var n = e.length; - for (e.sort(t); n--; ) e[n] = e[n].value; - return e; - }; - }, - 18509: e => { - e.exports = function (e, t) { - for (var n = -1, r = Array(e); ++n < e; ) r[n] = t(n); - return r; - }; - }, - 86245: (e, t, n) => { - var r = n(70861), - o = n(29233), - i = n(55589), - a = n(52624), - s = r ? r.prototype : void 0, - l = s ? s.toString : void 0; - e.exports = function e(t) { - if ('string' == typeof t) return t; - if (i(t)) return o(t, e) + ''; - if (a(t)) return l ? l.call(t) : ''; - var n = t + ''; - return '0' == n && 1 / t == -Infinity ? '-0' : n; - }; - }, - 21656: (e, t, n) => { - var r = n(62438), - o = /^\s+/; - e.exports = function (e) { - return e ? e.slice(0, r(e) + 1).replace(o, '') : e; - }; - }, - 31525: e => { - e.exports = function (e) { - return function (t) { - return e(t); - }; - }; - }, - 80135: (e, t, n) => { - var r = n(84546), - o = n(45436), - i = n(99105), - a = n(77026), - s = n(86262), - l = n(77969); - e.exports = function (e, t, n) { - var c = -1, - u = o, - d = e.length, - f = !0, - h = [], - p = h; - if (n) (f = !1), (u = i); - else if (d >= 200) { - var v = t ? null : s(e); - if (v) return l(v); - (f = !1), (u = a), (p = new r()); - } else p = t ? [] : h; - e: for (; ++c < d; ) { - var g = e[c], - m = t ? t(g) : g; - if (((g = n || 0 !== g ? g : 0), f && m == m)) { - for (var y = p.length; y--; ) if (p[y] === m) continue e; - t && p.push(m), h.push(g); - } else u(p, m, n) || (p !== h && p.push(m), h.push(g)); - } - return h; - }; - }, - 20071: (e, t, n) => { - var r = n(29233); - e.exports = function (e, t) { - return r(t, function (t) { - return e[t]; - }); - }; - }, - 36302: e => { - e.exports = function (e, t, n) { - for (var r = -1, o = e.length, i = t.length, a = {}; ++r < o; ) { - var s = r < i ? t[r] : void 0; - n(a, e[r], s); - } - return a; - }; - }, - 77026: e => { - e.exports = function (e, t) { - return e.has(t); - }; - }, - 84781: (e, t, n) => { - var r = n(80229); - e.exports = function (e) { - return 'function' == typeof e ? e : r; - }; - }, - 24007: (e, t, n) => { - var r = n(55589), - o = n(5130), - i = n(44041), - a = n(99835); - e.exports = function (e, t) { - return r(e) ? e : o(e, t) ? [e] : i(a(e)); - }; - }, - 72962: (e, t, n) => { - var r = n(3526); - e.exports = function (e) { - var t = new e.constructor(e.byteLength); - return new r(t).set(new r(e)), t; - }; - }, - 46502: (e, t, n) => { - e = n.nmd(e); - var r = n(83250), - o = t && !t.nodeType && t, - i = o && e && !e.nodeType && e, - a = i && i.exports === o ? r.Buffer : void 0, - s = a ? a.allocUnsafe : void 0; - e.exports = function (e, t) { - if (t) return e.slice(); - var n = e.length, - r = s ? s(n) : new e.constructor(n); - return e.copy(r), r; - }; - }, - 97037: (e, t, n) => { - var r = n(72962); - e.exports = function (e, t) { - var n = t ? r(e.buffer) : e.buffer; - return new e.constructor(n, e.byteOffset, e.byteLength); - }; - }, - 3429: e => { - var t = /\w*$/; - e.exports = function (e) { - var n = new e.constructor(e.source, t.exec(e)); - return (n.lastIndex = e.lastIndex), n; - }; - }, - 99349: (e, t, n) => { - var r = n(70861), - o = r ? r.prototype : void 0, - i = o ? o.valueOf : void 0; - e.exports = function (e) { - return i ? Object(i.call(e)) : {}; - }; - }, - 21327: (e, t, n) => { - var r = n(72962); - e.exports = function (e, t) { - var n = t ? r(e.buffer) : e.buffer; - return new e.constructor(n, e.byteOffset, e.length); - }; - }, - 88899: (e, t, n) => { - var r = n(52624); - e.exports = function (e, t) { - if (e !== t) { - var n = void 0 !== e, - o = null === e, - i = e == e, - a = r(e), - s = void 0 !== t, - l = null === t, - c = t == t, - u = r(t); - if ((!l && !u && !a && e > t) || (a && s && c && !l && !u) || (o && s && c) || (!n && c) || !i) return 1; - if ((!o && !a && !u && e < t) || (u && n && i && !o && !a) || (l && n && i) || (!s && i) || !c) return -1; - } - return 0; - }; - }, - 20315: (e, t, n) => { - var r = n(88899); - e.exports = function (e, t, n) { - for (var o = -1, i = e.criteria, a = t.criteria, s = i.length, l = n.length; ++o < s; ) { - var c = r(i[o], a[o]); - if (c) return o >= l ? c : c * ('desc' == n[o] ? -1 : 1); - } - return e.index - t.index; - }; - }, - 32166: e => { - e.exports = function (e, t) { - var n = -1, - r = e.length; - for (t || (t = Array(r)); ++n < r; ) t[n] = e[n]; - return t; - }; - }, - 78618: (e, t, n) => { - var r = n(93192), - o = n(87500); - e.exports = function (e, t, n, i) { - var a = !n; - n || (n = {}); - for (var s = -1, l = t.length; ++s < l; ) { - var c = t[s], - u = i ? i(n[c], e[c], c, n, e) : void 0; - void 0 === u && (u = e[c]), a ? o(n, c, u) : r(n, c, u); - } - return n; - }; - }, - 67272: (e, t, n) => { - var r = n(78618), - o = n(44450); - e.exports = function (e, t) { - return r(e, o(e), t); - }; - }, - 52066: (e, t, n) => { - var r = n(78618), - o = n(94969); - e.exports = function (e, t) { - return r(e, o(e), t); - }; - }, - 1622: (e, t, n) => { - var r = n(83250)['__core-js_shared__']; - e.exports = r; - }, - 66948: (e, t, n) => { - var r = n(29735), - o = n(98132); - e.exports = function (e) { - return r(function (t, n) { - var r = -1, - i = n.length, - a = i > 1 ? n[i - 1] : void 0, - s = i > 2 ? n[2] : void 0; - for ( - a = e.length > 3 && 'function' == typeof a ? (i--, a) : void 0, - s && o(n[0], n[1], s) && ((a = i < 3 ? void 0 : a), (i = 1)), - t = Object(t); - ++r < i; - - ) { - var l = n[r]; - l && e(t, l, r, a); - } - return t; - }); - }; - }, - 96313: (e, t, n) => { - var r = n(30568); - e.exports = function (e, t) { - return function (n, o) { - if (null == n) return n; - if (!r(n)) return e(n, o); - for (var i = n.length, a = t ? i : -1, s = Object(n); (t ? a-- : ++a < i) && !1 !== o(s[a], a, s); ); - return n; - }; - }; - }, - 72545: e => { - e.exports = function (e) { - return function (t, n, r) { - for (var o = -1, i = Object(t), a = r(t), s = a.length; s--; ) { - var l = a[e ? s : ++o]; - if (!1 === n(i[l], l, i)) break; - } - return t; - }; - }; - }, - 29301: (e, t, n) => { - var r = n(55833), - o = n(30568), - i = n(62096); - e.exports = function (e) { - return function (t, n, a) { - var s = Object(t); - if (!o(t)) { - var l = r(n, 3); - (t = i(t)), - (n = function (e) { - return l(s[e], e, s); - }); - } - var c = e(t, n, a); - return c > -1 ? s[l ? t[c] : c] : void 0; - }; - }; - }, - 51523: (e, t, n) => { - var r = n(24930), - o = n(98132), - i = n(99558); - e.exports = function (e) { - return function (t, n, a) { - return ( - a && 'number' != typeof a && o(t, n, a) && (n = a = void 0), - (t = i(t)), - void 0 === n ? ((n = t), (t = 0)) : (n = i(n)), - (a = void 0 === a ? (t < n ? 1 : -1) : i(a)), - r(t, n, a, e) - ); - }; - }; - }, - 86262: (e, t, n) => { - var r = n(56616), - o = n(71607), - i = n(77969), - a = - r && 1 / i(new r([, -0]))[1] == 1 / 0 - ? function (e) { - return new r(e); - } - : o; - e.exports = a; - }, - 25595: (e, t, n) => { - var r = n(65234), - o = (function () { - try { - var e = r(Object, 'defineProperty'); - return e({}, '', {}), e; - } catch (t) {} - })(); - e.exports = o; - }, - 14952: (e, t, n) => { - var r = n(84546), - o = n(1831), - i = n(77026); - e.exports = function (e, t, n, a, s, l) { - var c = 1 & n, - u = e.length, - d = t.length; - if (u != d && !(c && d > u)) return !1; - var f = l.get(e), - h = l.get(t); - if (f && h) return f == t && h == e; - var p = -1, - v = !0, - g = 2 & n ? new r() : void 0; - for (l.set(e, t), l.set(t, e); ++p < u; ) { - var m = e[p], - y = t[p]; - if (a) var b = c ? a(y, m, p, t, e, l) : a(m, y, p, e, t, l); - if (void 0 !== b) { - if (b) continue; - v = !1; - break; - } - if (g) { - if ( - !o(t, function (e, t) { - if (!i(g, t) && (m === e || s(m, e, n, a, l))) return g.push(t); - }) - ) { - v = !1; - break; - } - } else if (m !== y && !s(m, y, n, a, l)) { - v = !1; - break; - } - } - return l.delete(e), l.delete(t), v; - }; - }, - 21080: (e, t, n) => { - var r = n(70861), - o = n(3526), - i = n(58260), - a = n(14952), - s = n(81140), - l = n(77969), - c = r ? r.prototype : void 0, - u = c ? c.valueOf : void 0; - e.exports = function (e, t, n, r, c, d, f) { - switch (n) { - case '[object DataView]': - if (e.byteLength != t.byteLength || e.byteOffset != t.byteOffset) return !1; - (e = e.buffer), (t = t.buffer); - case '[object ArrayBuffer]': - return !(e.byteLength != t.byteLength || !d(new o(e), new o(t))); - case '[object Boolean]': - case '[object Date]': - case '[object Number]': - return i(+e, +t); - case '[object Error]': - return e.name == t.name && e.message == t.message; - case '[object RegExp]': - case '[object String]': - return e == t + ''; - case '[object Map]': - var h = s; - case '[object Set]': - var p = 1 & r; - if ((h || (h = l), e.size != t.size && !p)) return !1; - var v = f.get(e); - if (v) return v == t; - (r |= 2), f.set(e, t); - var g = a(h(e), h(t), r, c, d, f); - return f.delete(e), g; - case '[object Symbol]': - if (u) return u.call(e) == u.call(t); - } - return !1; - }; - }, - 86524: (e, t, n) => { - var r = n(54357), - o = Object.prototype.hasOwnProperty; - e.exports = function (e, t, n, i, a, s) { - var l = 1 & n, - c = r(e), - u = c.length; - if (u != r(t).length && !l) return !1; - for (var d = u; d--; ) { - var f = c[d]; - if (!(l ? f in t : o.call(t, f))) return !1; - } - var h = s.get(e), - p = s.get(t); - if (h && p) return h == t && p == e; - var v = !0; - s.set(e, t), s.set(t, e); - for (var g = l; ++d < u; ) { - var m = e[(f = c[d])], - y = t[f]; - if (i) var b = l ? i(y, m, f, t, e, s) : i(m, y, f, e, t, s); - if (!(void 0 === b ? m === y || a(m, y, n, i, s) : b)) { - v = !1; - break; - } - g || (g = 'constructor' == f); - } - if (v && !g) { - var x = e.constructor, - w = t.constructor; - x == w || - !('constructor' in e) || - !('constructor' in t) || - ('function' == typeof x && x instanceof x && 'function' == typeof w && w instanceof w) || - (v = !1); - } - return s.delete(e), s.delete(t), v; - }; - }, - 33273: (e, t, n) => { - var r = n(62923), - o = n(20340), - i = n(4173); - e.exports = function (e) { - return i(o(e, void 0, r), e + ''); - }; - }, - 20302: (e, t, n) => { - var r = 'object' == typeof n.g && n.g && n.g.Object === Object && n.g; - e.exports = r; - }, - 54357: (e, t, n) => { - var r = n(4468), - o = n(44450), - i = n(62096); - e.exports = function (e) { - return r(e, i, o); - }; - }, - 55713: (e, t, n) => { - var r = n(4468), - o = n(94969), - i = n(9882); - e.exports = function (e) { - return r(e, i, o); - }; - }, - 77570: (e, t, n) => { - var r = n(58949); - e.exports = function (e, t) { - var n = e.__data__; - return r(t) ? n['string' == typeof t ? 'string' : 'hash'] : n.map; - }; - }, - 72198: (e, t, n) => { - var r = n(18802), - o = n(62096); - e.exports = function (e) { - for (var t = o(e), n = t.length; n--; ) { - var i = t[n], - a = e[i]; - t[n] = [i, a, r(a)]; - } - return t; - }; - }, - 65234: (e, t, n) => { - var r = n(99817), - o = n(67736); - e.exports = function (e, t) { - var n = o(e, t); - return r(n) ? n : void 0; - }; - }, - 18490: (e, t, n) => { - var r = n(33540)(Object.getPrototypeOf, Object); - e.exports = r; - }, - 91339: (e, t, n) => { - var r = n(70861), - o = Object.prototype, - i = o.hasOwnProperty, - a = o.toString, - s = r ? r.toStringTag : void 0; - e.exports = function (e) { - var t = i.call(e, s), - n = e[s]; - try { - e[s] = void 0; - var r = !0; - } catch (l) {} - var o = a.call(e); - return r && (t ? (e[s] = n) : delete e[s]), o; - }; - }, - 44450: (e, t, n) => { - var r = n(82493), - o = n(84506), - i = Object.prototype.propertyIsEnumerable, - a = Object.getOwnPropertySymbols, - s = a - ? function (e) { - return null == e - ? [] - : ((e = Object(e)), - r(a(e), function (t) { - return i.call(e, t); - })); - } - : o; - e.exports = s; - }, - 94969: (e, t, n) => { - var r = n(10111), - o = n(18490), - i = n(44450), - a = n(84506), - s = Object.getOwnPropertySymbols - ? function (e) { - for (var t = []; e; ) r(t, i(e)), (e = o(e)); - return t; - } - : a; - e.exports = s; - }, - 87493: (e, t, n) => { - var r = n(94466), - o = n(72887), - i = n(95747), - a = n(56616), - s = n(98001), - l = n(69823), - c = n(55784), - u = '[object Map]', - d = '[object Promise]', - f = '[object Set]', - h = '[object WeakMap]', - p = '[object DataView]', - v = c(r), - g = c(o), - m = c(i), - y = c(a), - b = c(s), - x = l; - ((r && x(new r(new ArrayBuffer(1))) != p) || - (o && x(new o()) != u) || - (i && x(i.resolve()) != d) || - (a && x(new a()) != f) || - (s && x(new s()) != h)) && - (x = function (e) { - var t = l(e), - n = '[object Object]' == t ? e.constructor : void 0, - r = n ? c(n) : ''; - if (r) - switch (r) { - case v: - return p; - case g: - return u; - case m: - return d; - case y: - return f; - case b: - return h; - } - return t; - }), - (e.exports = x); - }, - 67736: e => { - e.exports = function (e, t) { - return null == e ? void 0 : e[t]; - }; - }, - 13544: (e, t, n) => { - var r = n(24007), - o = n(79312), - i = n(55589), - a = n(5023), - s = n(66052), - l = n(86040); - e.exports = function (e, t, n) { - for (var c = -1, u = (t = r(t, e)).length, d = !1; ++c < u; ) { - var f = l(t[c]); - if (!(d = null != e && n(e, f))) break; - e = e[f]; - } - return d || ++c != u ? d : !!(u = null == e ? 0 : e.length) && s(u) && a(f, u) && (i(e) || o(e)); - }; - }, - 63932: e => { - var t = RegExp('[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]'); - e.exports = function (e) { - return t.test(e); - }; - }, - 34440: (e, t, n) => { - var r = n(24545); - e.exports = function () { - (this.__data__ = r ? r(null) : {}), (this.size = 0); - }; - }, - 84108: e => { - e.exports = function (e) { - var t = this.has(e) && delete this.__data__[e]; - return (this.size -= t ? 1 : 0), t; - }; - }, - 61085: (e, t, n) => { - var r = n(24545), - o = Object.prototype.hasOwnProperty; - e.exports = function (e) { - var t = this.__data__; - if (r) { - var n = t[e]; - return '__lodash_hash_undefined__' === n ? void 0 : n; - } - return o.call(t, e) ? t[e] : void 0; - }; - }, - 77706: (e, t, n) => { - var r = n(24545), - o = Object.prototype.hasOwnProperty; - e.exports = function (e) { - var t = this.__data__; - return r ? void 0 !== t[e] : o.call(t, e); - }; - }, - 8636: (e, t, n) => { - var r = n(24545); - e.exports = function (e, t) { - var n = this.__data__; - return (this.size += this.has(e) ? 0 : 1), (n[e] = r && void 0 === t ? '__lodash_hash_undefined__' : t), this; - }; - }, - 82865: e => { - var t = Object.prototype.hasOwnProperty; - e.exports = function (e) { - var n = e.length, - r = new e.constructor(n); - return n && 'string' == typeof e[0] && t.call(e, 'index') && ((r.index = e.index), (r.input = e.input)), r; - }; - }, - 11908: (e, t, n) => { - var r = n(72962), - o = n(97037), - i = n(3429), - a = n(99349), - s = n(21327); - e.exports = function (e, t, n) { - var l = e.constructor; - switch (t) { - case '[object ArrayBuffer]': - return r(e); - case '[object Boolean]': - case '[object Date]': - return new l(+e); - case '[object DataView]': - return o(e, n); - case '[object Float32Array]': - case '[object Float64Array]': - case '[object Int8Array]': - case '[object Int16Array]': - case '[object Int32Array]': - case '[object Uint8Array]': - case '[object Uint8ClampedArray]': - case '[object Uint16Array]': - case '[object Uint32Array]': - return s(e, n); - case '[object Map]': - case '[object Set]': - return new l(); - case '[object Number]': - case '[object String]': - return new l(e); - case '[object RegExp]': - return i(e); - case '[object Symbol]': - return a(e); - } - }; - }, - 84046: (e, t, n) => { - var r = n(57890), - o = n(18490), - i = n(32840); - e.exports = function (e) { - return 'function' != typeof e.constructor || i(e) ? {} : r(o(e)); - }; - }, - 67123: (e, t, n) => { - var r = n(70861), - o = n(79312), - i = n(55589), - a = r ? r.isConcatSpreadable : void 0; - e.exports = function (e) { - return i(e) || o(e) || !!(a && e && e[a]); - }; - }, - 5023: e => { - var t = /^(?:0|[1-9]\d*)$/; - e.exports = function (e, n) { - var r = typeof e; - return ( - !!(n = n ?? 9007199254740991) && - ('number' == r || ('symbol' != r && t.test(e))) && - e > -1 && - e % 1 == 0 && - e < n - ); - }; - }, - 98132: (e, t, n) => { - var r = n(58260), - o = n(30568), - i = n(5023), - a = n(93702); - e.exports = function (e, t, n) { - if (!a(n)) return !1; - var s = typeof t; - return !!('number' == s ? o(n) && i(t, n.length) : 'string' == s && t in n) && r(n[t], e); - }; - }, - 5130: (e, t, n) => { - var r = n(55589), - o = n(52624), - i = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, - a = /^\w*$/; - e.exports = function (e, t) { - if (r(e)) return !1; - var n = typeof e; - return ( - !('number' != n && 'symbol' != n && 'boolean' != n && null != e && !o(e)) || - a.test(e) || - !i.test(e) || - (null != t && e in Object(t)) - ); - }; - }, - 58949: e => { - e.exports = function (e) { - var t = typeof e; - return 'string' == t || 'number' == t || 'symbol' == t || 'boolean' == t ? '__proto__' !== e : null === e; - }; - }, - 28597: (e, t, n) => { - var r, - o = n(1622), - i = (r = /[^.]+$/.exec((o && o.keys && o.keys.IE_PROTO) || '')) ? 'Symbol(src)_1.' + r : ''; - e.exports = function (e) { - return !!i && i in e; - }; - }, - 32840: e => { - var t = Object.prototype; - e.exports = function (e) { - var n = e && e.constructor; - return e === (('function' == typeof n && n.prototype) || t); - }; - }, - 18802: (e, t, n) => { - var r = n(93702); - e.exports = function (e) { - return e == e && !r(e); - }; - }, - 90266: e => { - e.exports = function () { - (this.__data__ = []), (this.size = 0); - }; - }, - 42875: (e, t, n) => { - var r = n(18498), - o = Array.prototype.splice; - e.exports = function (e) { - var t = this.__data__, - n = r(t, e); - return !(n < 0) && (n == t.length - 1 ? t.pop() : o.call(t, n, 1), --this.size, !0); - }; - }, - 45828: (e, t, n) => { - var r = n(18498); - e.exports = function (e) { - var t = this.__data__, - n = r(t, e); - return n < 0 ? void 0 : t[n][1]; - }; - }, - 24115: (e, t, n) => { - var r = n(18498); - e.exports = function (e) { - return r(this.__data__, e) > -1; - }; - }, - 67690: (e, t, n) => { - var r = n(18498); - e.exports = function (e, t) { - var n = this.__data__, - o = r(n, e); - return o < 0 ? (++this.size, n.push([e, t])) : (n[o][1] = t), this; - }; - }, - 39016: (e, t, n) => { - var r = n(85208), - o = n(81998), - i = n(72887); - e.exports = function () { - (this.size = 0), (this.__data__ = { hash: new r(), map: new (i || o)(), string: new r() }); - }; - }, - 62363: (e, t, n) => { - var r = n(77570); - e.exports = function (e) { - var t = r(this, e).delete(e); - return (this.size -= t ? 1 : 0), t; - }; - }, - 64348: (e, t, n) => { - var r = n(77570); - e.exports = function (e) { - return r(this, e).get(e); - }; - }, - 53062: (e, t, n) => { - var r = n(77570); - e.exports = function (e) { - return r(this, e).has(e); - }; - }, - 30262: (e, t, n) => { - var r = n(77570); - e.exports = function (e, t) { - var n = r(this, e), - o = n.size; - return n.set(e, t), (this.size += n.size == o ? 0 : 1), this; - }; - }, - 81140: e => { - e.exports = function (e) { - var t = -1, - n = Array(e.size); - return ( - e.forEach(function (e, r) { - n[++t] = [r, e]; - }), - n - ); - }; - }, - 94656: e => { - e.exports = function (e, t) { - return function (n) { - return null != n && n[e] === t && (void 0 !== t || e in Object(n)); - }; - }; - }, - 32924: (e, t, n) => { - var r = n(67997); - e.exports = function (e) { - var t = r(e, function (e) { - return 500 === n.size && n.clear(), e; - }), - n = t.cache; - return t; - }; - }, - 24545: (e, t, n) => { - var r = n(65234)(Object, 'create'); - e.exports = r; - }, - 82825: (e, t, n) => { - var r = n(33540)(Object.keys, Object); - e.exports = r; - }, - 84866: e => { - e.exports = function (e) { - var t = []; - if (null != e) for (var n in Object(e)) t.push(n); - return t; - }; - }, - 8690: (e, t, n) => { - e = n.nmd(e); - var r = n(20302), - o = t && !t.nodeType && t, - i = o && e && !e.nodeType && e, - a = i && i.exports === o && r.process, - s = (function () { - try { - var e = i && i.require && i.require('util').types; - return e || (a && a.binding && a.binding('util')); - } catch (t) {} - })(); - e.exports = s; - }, - 25151: e => { - var t = Object.prototype.toString; - e.exports = function (e) { - return t.call(e); - }; - }, - 33540: e => { - e.exports = function (e, t) { - return function (n) { - return e(t(n)); - }; - }; - }, - 20340: (e, t, n) => { - var r = n(82274), - o = Math.max; - e.exports = function (e, t, n) { - return ( - (t = o(void 0 === t ? e.length - 1 : t, 0)), - function () { - for (var i = arguments, a = -1, s = o(i.length - t, 0), l = Array(s); ++a < s; ) l[a] = i[t + a]; - a = -1; - for (var c = Array(t + 1); ++a < t; ) c[a] = i[a]; - return (c[t] = n(l)), r(e, this, c); - } - ); - }; - }, - 83250: (e, t, n) => { - var r = n(20302), - o = 'object' == typeof self && self && self.Object === Object && self, - i = r || o || Function('return this')(); - e.exports = i; - }, - 11933: e => { - e.exports = function (e, t) { - if (('constructor' !== t || 'function' != typeof e[t]) && '__proto__' != t) return e[t]; - }; - }, - 83937: e => { - e.exports = function (e) { - return this.__data__.set(e, '__lodash_hash_undefined__'), this; - }; - }, - 15009: e => { - e.exports = function (e) { - return this.__data__.has(e); - }; - }, - 77969: e => { - e.exports = function (e) { - var t = -1, - n = Array(e.size); - return ( - e.forEach(function (e) { - n[++t] = e; - }), - n - ); - }; - }, - 4173: (e, t, n) => { - var r = n(46739), - o = n(37357)(r); - e.exports = o; - }, - 37357: e => { - var t = Date.now; - e.exports = function (e) { - var n = 0, - r = 0; - return function () { - var o = t(), - i = 16 - (o - r); - if (((r = o), i > 0)) { - if (++n >= 800) return arguments[0]; - } else n = 0; - return e.apply(void 0, arguments); - }; - }; - }, - 93210: (e, t, n) => { - var r = n(81998); - e.exports = function () { - (this.__data__ = new r()), (this.size = 0); - }; - }, - 48603: e => { - e.exports = function (e) { - var t = this.__data__, - n = t.delete(e); - return (this.size = t.size), n; - }; - }, - 38947: e => { - e.exports = function (e) { - return this.__data__.get(e); - }; - }, - 70885: e => { - e.exports = function (e) { - return this.__data__.has(e); - }; - }, - 98938: (e, t, n) => { - var r = n(81998), - o = n(72887), - i = n(95678); - e.exports = function (e, t) { - var n = this.__data__; - if (n instanceof r) { - var a = n.__data__; - if (!o || a.length < 199) return a.push([e, t]), (this.size = ++n.size), this; - n = this.__data__ = new i(a); - } - return n.set(e, t), (this.size = n.size), this; - }; - }, - 45898: e => { - e.exports = function (e, t, n) { - for (var r = n - 1, o = e.length; ++r < o; ) if (e[r] === t) return r; - return -1; - }; - }, - 11324: (e, t, n) => { - var r = n(97088), - o = n(63932), - i = n(60445); - e.exports = function (e) { - return o(e) ? i(e) : r(e); - }; - }, - 44041: (e, t, n) => { - var r = n(32924), - o = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g, - i = /\\(\\)?/g, - a = r(function (e) { - var t = []; - return ( - 46 === e.charCodeAt(0) && t.push(''), - e.replace(o, function (e, n, r, o) { - t.push(r ? o.replace(i, '$1') : n || e); - }), - t - ); - }); - e.exports = a; - }, - 86040: (e, t, n) => { - var r = n(52624); - e.exports = function (e) { - if ('string' == typeof e || r(e)) return e; - var t = e + ''; - return '0' == t && 1 / e == -Infinity ? '-0' : t; - }; - }, - 55784: e => { - var t = Function.prototype.toString; - e.exports = function (e) { - if (null != e) { - try { - return t.call(e); - } catch (n) {} - try { - return e + ''; - } catch (n) {} - } - return ''; - }; - }, - 62438: e => { - var t = /\s/; - e.exports = function (e) { - for (var n = e.length; n-- && t.test(e.charAt(n)); ); - return n; - }; - }, - 60445: e => { - var t = '\\ud800-\\udfff', - n = '[' + t + ']', - r = '[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]', - o = '\\ud83c[\\udffb-\\udfff]', - i = '[^' + t + ']', - a = '(?:\\ud83c[\\udde6-\\uddff]){2}', - s = '[\\ud800-\\udbff][\\udc00-\\udfff]', - l = '(?:' + r + '|' + o + ')' + '?', - c = '[\\ufe0e\\ufe0f]?', - u = c + l + ('(?:\\u200d(?:' + [i, a, s].join('|') + ')' + c + l + ')*'), - d = '(?:' + [i + r + '?', r, a, s, n].join('|') + ')', - f = RegExp(o + '(?=' + o + ')|' + d + u, 'g'); - e.exports = function (e) { - for (var t = (f.lastIndex = 0); f.test(e); ) ++t; - return t; - }; - }, - 17953: (e, t, n) => { - var r = n(18361); - e.exports = function (e) { - return r(e, 4); - }; - }, - 77179: (e, t, n) => { - var r = n(18361); - e.exports = function (e) { - return r(e, 5); - }; - }, - 89203: e => { - e.exports = function (e) { - return function () { - return e; - }; - }; - }, - 77837: (e, t, n) => { - var r = n(93702), - o = n(80231), - i = n(29153), - a = Math.max, - s = Math.min; - e.exports = function (e, t, n) { - var l, - c, - u, - d, - f, - h, - p = 0, - v = !1, - g = !1, - m = !0; - if ('function' != typeof e) throw new TypeError('Expected a function'); - function y(t) { - var n = l, - r = c; - return (l = c = void 0), (p = t), (d = e.apply(r, n)); - } - function b(e) { - var n = e - h; - return void 0 === h || n >= t || n < 0 || (g && e - p >= u); - } - function x() { - var e = o(); - if (b(e)) return w(e); - f = setTimeout( - x, - (function (e) { - var n = t - (e - h); - return g ? s(n, u - (e - p)) : n; - })(e), - ); - } - function w(e) { - return (f = void 0), m && l ? y(e) : ((l = c = void 0), d); - } - function E() { - var e = o(), - n = b(e); - if (((l = arguments), (c = this), (h = e), n)) { - if (void 0 === f) - return (function (e) { - return (p = e), (f = setTimeout(x, t)), v ? y(e) : d; - })(h); - if (g) return clearTimeout(f), (f = setTimeout(x, t)), y(h); - } - return void 0 === f && (f = setTimeout(x, t)), d; - } - return ( - (t = i(t) || 0), - r(n) && - ((v = !!n.leading), - (u = (g = 'maxWait' in n) ? a(i(n.maxWait) || 0, t) : u), - (m = 'trailing' in n ? !!n.trailing : m)), - (E.cancel = function () { - void 0 !== f && clearTimeout(f), (p = 0), (l = h = c = f = void 0); - }), - (E.flush = function () { - return void 0 === f ? d : w(o()); - }), - E - ); - }; - }, - 73821: (e, t, n) => { - var r = n(29735), - o = n(58260), - i = n(98132), - a = n(9882), - s = Object.prototype, - l = s.hasOwnProperty, - c = r(function (e, t) { - e = Object(e); - var n = -1, - r = t.length, - c = r > 2 ? t[2] : void 0; - for (c && i(t[0], t[1], c) && (r = 1); ++n < r; ) - for (var u = t[n], d = a(u), f = -1, h = d.length; ++f < h; ) { - var p = d[f], - v = e[p]; - (void 0 === v || (o(v, s[p]) && !l.call(e, p))) && (e[p] = u[p]); - } - return e; - }); - e.exports = c; - }, - 20678: (e, t, n) => { - e.exports = n(77734); - }, - 58260: e => { - e.exports = function (e, t) { - return e === t || (e != e && t != t); - }; - }, - 64663: (e, t, n) => { - var r = n(82493), - o = n(68146), - i = n(55833), - a = n(55589); - e.exports = function (e, t) { - return (a(e) ? r : o)(e, i(t, 3)); - }; - }, - 26969: (e, t, n) => { - var r = n(29301)(n(69312)); - e.exports = r; - }, - 69312: (e, t, n) => { - var r = n(44770), - o = n(55833), - i = n(96843), - a = Math.max; - e.exports = function (e, t, n) { - var s = null == e ? 0 : e.length; - if (!s) return -1; - var l = null == n ? 0 : i(n); - return l < 0 && (l = a(s + l, 0)), r(e, o(t, 3), l); - }; - }, - 62923: (e, t, n) => { - var r = n(22825); - e.exports = function (e) { - return (null == e ? 0 : e.length) ? r(e, 1) : []; - }; - }, - 77734: (e, t, n) => { - var r = n(84004), - o = n(61701), - i = n(84781), - a = n(55589); - e.exports = function (e, t) { - return (a(e) ? r : o)(e, i(t)); - }; - }, - 87514: (e, t, n) => { - var r = n(39943), - o = n(84781), - i = n(9882); - e.exports = function (e, t) { - return null == e ? e : r(e, o(t), i); - }; - }, - 13546: (e, t, n) => { - var r = n(40548); - e.exports = function (e, t, n) { - var o = null == e ? void 0 : r(e, t); - return void 0 === o ? n : o; - }; - }, - 45346: (e, t, n) => { - var r = n(32586), - o = n(13544); - e.exports = function (e, t) { - return null != e && o(e, t, r); - }; - }, - 56708: (e, t, n) => { - var r = n(62902), - o = n(13544); - e.exports = function (e, t) { - return null != e && o(e, t, r); - }; - }, - 80229: e => { - e.exports = function (e) { - return e; - }; - }, - 79312: (e, t, n) => { - var r = n(33016), - o = n(50440), - i = Object.prototype, - a = i.hasOwnProperty, - s = i.propertyIsEnumerable, - l = r( - (function () { - return arguments; - })(), - ) - ? r - : function (e) { - return o(e) && a.call(e, 'callee') && !s.call(e, 'callee'); - }; - e.exports = l; - }, - 55589: e => { - var t = Array.isArray; - e.exports = t; - }, - 30568: (e, t, n) => { - var r = n(45563), - o = n(66052); - e.exports = function (e) { - return null != e && o(e.length) && !r(e); - }; - }, - 18268: (e, t, n) => { - var r = n(30568), - o = n(50440); - e.exports = function (e) { - return o(e) && r(e); - }; - }, - 85778: (e, t, n) => { - e = n.nmd(e); - var r = n(83250), - o = n(37999), - i = t && !t.nodeType && t, - a = i && e && !e.nodeType && e, - s = a && a.exports === i ? r.Buffer : void 0, - l = (s ? s.isBuffer : void 0) || o; - e.exports = l; - }, - 29787: (e, t, n) => { - var r = n(41351), - o = n(87493), - i = n(79312), - a = n(55589), - s = n(30568), - l = n(85778), - c = n(32840), - u = n(50922), - d = Object.prototype.hasOwnProperty; - e.exports = function (e) { - if (null == e) return !0; - if (s(e) && (a(e) || 'string' == typeof e || 'function' == typeof e.splice || l(e) || u(e) || i(e))) - return !e.length; - var t = o(e); - if ('[object Map]' == t || '[object Set]' == t) return !e.size; - if (c(e)) return !r(e).length; - for (var n in e) if (d.call(e, n)) return !1; - return !0; - }; - }, - 45563: (e, t, n) => { - var r = n(69823), - o = n(93702); - e.exports = function (e) { - if (!o(e)) return !1; - var t = r(e); - return ( - '[object Function]' == t || - '[object GeneratorFunction]' == t || - '[object AsyncFunction]' == t || - '[object Proxy]' == t - ); - }; - }, - 66052: e => { - e.exports = function (e) { - return 'number' == typeof e && e > -1 && e % 1 == 0 && e <= 9007199254740991; - }; - }, - 37613: (e, t, n) => { - var r = n(52275), - o = n(31525), - i = n(8690), - a = i && i.isMap, - s = a ? o(a) : r; - e.exports = s; - }, - 93702: e => { - e.exports = function (e) { - var t = typeof e; - return null != e && ('object' == t || 'function' == t); - }; - }, - 50440: e => { - e.exports = function (e) { - return null != e && 'object' == typeof e; - }; - }, - 54256: (e, t, n) => { - var r = n(69823), - o = n(18490), - i = n(50440), - a = Function.prototype, - s = Object.prototype, - l = a.toString, - c = s.hasOwnProperty, - u = l.call(Object); - e.exports = function (e) { - if (!i(e) || '[object Object]' != r(e)) return !1; - var t = o(e); - if (null === t) return !0; - var n = c.call(t, 'constructor') && t.constructor; - return 'function' == typeof n && n instanceof n && l.call(n) == u; - }; - }, - 60693: (e, t, n) => { - var r = n(7170), - o = n(31525), - i = n(8690), - a = i && i.isSet, - s = a ? o(a) : r; - e.exports = s; - }, - 76705: (e, t, n) => { - var r = n(69823), - o = n(55589), - i = n(50440); - e.exports = function (e) { - return 'string' == typeof e || (!o(e) && i(e) && '[object String]' == r(e)); - }; - }, - 52624: (e, t, n) => { - var r = n(69823), - o = n(50440); - e.exports = function (e) { - return 'symbol' == typeof e || (o(e) && '[object Symbol]' == r(e)); - }; - }, - 50922: (e, t, n) => { - var r = n(42448), - o = n(31525), - i = n(8690), - a = i && i.isTypedArray, - s = a ? o(a) : r; - e.exports = s; - }, - 86474: e => { - e.exports = function (e) { - return void 0 === e; - }; - }, - 62096: (e, t, n) => { - var r = n(75825), - o = n(41351), - i = n(30568); - e.exports = function (e) { - return i(e) ? r(e) : o(e); - }; - }, - 9882: (e, t, n) => { - var r = n(75825), - o = n(71309), - i = n(30568); - e.exports = function (e) { - return i(e) ? r(e, !0) : o(e); - }; - }, - 77875: e => { - e.exports = function (e) { - var t = null == e ? 0 : e.length; - return t ? e[t - 1] : void 0; - }; - }, - 69107: (e, t, n) => { - var r = n(29233), - o = n(55833), - i = n(78068), - a = n(55589); - e.exports = function (e, t) { - return (a(e) ? r : i)(e, o(t, 3)); - }; - }, - 61230: (e, t, n) => { - var r = n(87500), - o = n(44003), - i = n(55833); - e.exports = function (e, t) { - var n = {}; - return ( - (t = i(t, 3)), - o(e, function (e, o, i) { - r(n, o, t(e, o, i)); - }), - n - ); - }; - }, - 56492: (e, t, n) => { - var r = n(85117), - o = n(51669), - i = n(80229); - e.exports = function (e) { - return e && e.length ? r(e, i, o) : void 0; - }; - }, - 67997: (e, t, n) => { - var r = n(95678); - function o(e, t) { - if ('function' != typeof e || (null != t && 'function' != typeof t)) throw new TypeError('Expected a function'); - var n = function () { - var r = arguments, - o = t ? t.apply(this, r) : r[0], - i = n.cache; - if (i.has(o)) return i.get(o); - var a = e.apply(this, r); - return (n.cache = i.set(o, a) || i), a; - }; - return (n.cache = new (o.Cache || r)()), n; - } - (o.Cache = r), (e.exports = o); - }, - 88469: (e, t, n) => { - var r = n(92133), - o = n(66948)(function (e, t, n) { - r(e, t, n); - }); - e.exports = o; - }, - 65071: (e, t, n) => { - var r = n(85117), - o = n(46718), - i = n(80229); - e.exports = function (e) { - return e && e.length ? r(e, i, o) : void 0; - }; - }, - 76838: (e, t, n) => { - var r = n(85117), - o = n(55833), - i = n(46718); - e.exports = function (e, t) { - return e && e.length ? r(e, o(t, 2), i) : void 0; - }; - }, - 71607: e => { - e.exports = function () {}; - }, - 80231: (e, t, n) => { - var r = n(83250); - e.exports = function () { - return r.Date.now(); - }; - }, - 49335: (e, t, n) => { - var r = n(21785), - o = n(33273)(function (e, t) { - return null == e ? {} : r(e, t); - }); - e.exports = o; - }, - 94437: (e, t, n) => { - var r = n(86174), - o = n(3293), - i = n(5130), - a = n(86040); - e.exports = function (e) { - return i(e) ? r(a(e)) : o(e); - }; - }, - 38569: (e, t, n) => { - var r = n(51523)(); - e.exports = r; - }, - 17682: (e, t, n) => { - var r = n(85115), - o = n(61701), - i = n(55833), - a = n(34306), - s = n(55589); - e.exports = function (e, t, n) { - var l = s(e) ? r : a, - c = arguments.length < 3; - return l(e, i(t, 4), n, c, o); - }; - }, - 26226: (e, t, n) => { - var r = n(32619); - e.exports = function (e, t, n) { - return null == e ? e : r(e, t, n); - }; - }, - 91039: (e, t, n) => { - var r = n(41351), - o = n(87493), - i = n(30568), - a = n(76705), - s = n(11324); - e.exports = function (e) { - if (null == e) return 0; - if (i(e)) return a(e) ? s(e) : e.length; - var t = o(e); - return '[object Map]' == t || '[object Set]' == t ? e.size : r(e).length; - }; - }, - 71635: (e, t, n) => { - var r = n(22825), - o = n(54466), - i = n(29735), - a = n(98132), - s = i(function (e, t) { - if (null == e) return []; - var n = t.length; - return n > 1 && a(e, t[0], t[1]) ? (t = []) : n > 2 && a(t[0], t[1], t[2]) && (t = [t[0]]), o(e, r(t, 1), []); - }); - e.exports = s; - }, - 84506: e => { - e.exports = function () { - return []; - }; - }, - 37999: e => { - e.exports = function () { - return !1; - }; - }, - 99558: (e, t, n) => { - var r = n(29153), - o = 1 / 0; - e.exports = function (e) { - return e - ? (e = r(e)) === o || e === -1 / 0 - ? 17976931348623157e292 * (e < 0 ? -1 : 1) - : e == e - ? e - : 0 - : 0 === e - ? e - : 0; - }; - }, - 96843: (e, t, n) => { - var r = n(99558); - e.exports = function (e) { - var t = r(e), - n = t % 1; - return t == t ? (n ? t - n : t) : 0; - }; - }, - 29153: (e, t, n) => { - var r = n(21656), - o = n(93702), - i = n(52624), - a = /^[-+]0x[0-9a-f]+$/i, - s = /^0b[01]+$/i, - l = /^0o[0-7]+$/i, - c = parseInt; - e.exports = function (e) { - if ('number' == typeof e) return e; - if (i(e)) return NaN; - if (o(e)) { - var t = 'function' == typeof e.valueOf ? e.valueOf() : e; - e = o(t) ? t + '' : t; - } - if ('string' != typeof e) return 0 === e ? e : +e; - e = r(e); - var n = s.test(e); - return n || l.test(e) ? c(e.slice(2), n ? 2 : 8) : a.test(e) ? NaN : +e; - }; - }, - 59430: (e, t, n) => { - var r = n(29233), - o = n(32166), - i = n(55589), - a = n(52624), - s = n(44041), - l = n(86040), - c = n(99835); - e.exports = function (e) { - return i(e) ? r(e, l) : a(e) ? [e] : o(s(c(e))); - }; - }, - 36222: (e, t, n) => { - var r = n(78618), - o = n(9882); - e.exports = function (e) { - return r(e, o(e)); - }; - }, - 99835: (e, t, n) => { - var r = n(86245); - e.exports = function (e) { - return null == e ? '' : r(e); - }; - }, - 63604: (e, t, n) => { - var r = n(84004), - o = n(57890), - i = n(44003), - a = n(55833), - s = n(18490), - l = n(55589), - c = n(85778), - u = n(45563), - d = n(93702), - f = n(50922); - e.exports = function (e, t, n) { - var h = l(e), - p = h || c(e) || f(e); - if (((t = a(t, 4)), null == n)) { - var v = e && e.constructor; - n = p ? (h ? new v() : []) : d(e) && u(v) ? o(s(e)) : {}; - } - return ( - (p ? r : i)(e, function (e, r, o) { - return t(n, e, r, o); - }), - n - ); - }; - }, - 27767: (e, t, n) => { - var r = n(22825), - o = n(29735), - i = n(80135), - a = n(18268), - s = o(function (e) { - return i(r(e, 1, a, !0)); - }); - e.exports = s; - }, - 61422: (e, t, n) => { - var r = n(99835), - o = 0; - e.exports = function (e) { - var t = ++o; - return r(e) + t; - }; - }, - 31682: (e, t, n) => { - var r = n(20071), - o = n(62096); - e.exports = function (e) { - return null == e ? [] : r(e, o(e)); - }; - }, - 54142: (e, t, n) => { - var r = n(93192), - o = n(36302); - e.exports = function (e, t) { - return o(e || [], t || [], r); - }; - }, - 33286: (e, t, n) => { - 'use strict'; - n.r(t), - n.d(t, { - Children: () => z, - Component: () => a.wA, - Fragment: () => a.HY, - PureComponent: () => A, - StrictMode: () => xe, - Suspense: () => H, - SuspenseList: () => q, - __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: () => de, - cloneElement: () => ve, - createContext: () => a.kr, - createElement: () => a.az, - createFactory: () => he, - createPortal: () => K, - createRef: () => a.Vf, - default: () => we, - findDOMNode: () => me, - flushSync: () => be, - forwardRef: () => B, - hydrate: () => ne, - isValidElement: () => pe, - lazy: () => U, - memo: () => R, - render: () => te, - unmountComponentAtNode: () => ge, - unstable_batchedUpdates: () => ye, - useCallback: () => E, - useContext: () => k, - useDebugValue: () => _, - useEffect: () => m, - useErrorBoundary: () => S, - useImperativeHandle: () => x, - useLayoutEffect: () => y, - useMemo: () => w, - useReducer: () => g, - useRef: () => b, - useState: () => v, - version: () => fe, - }); - var r, - o, - i, - a = n(75644), - s = 0, - l = [], - c = a.YM.__b, - u = a.YM.__r, - d = a.YM.diffed, - f = a.YM.__c, - h = a.YM.unmount; - function p(e, t) { - a.YM.__h && a.YM.__h(o, e, s || t), (s = 0); - var n = o.__H || (o.__H = { __: [], __h: [] }); - return e >= n.__.length && n.__.push({}), n.__[e]; - } - function v(e) { - return (s = 1), g(N, e); - } - function g(e, t, n) { - var i = p(r++, 2); - return ( - (i.t = e), - i.__c || - ((i.__ = [ - n ? n(t) : N(void 0, t), - function (e) { - var t = i.t(i.__[0], e); - i.__[0] !== t && ((i.__ = [t, i.__[1]]), i.__c.setState({})); - }, - ]), - (i.__c = o)), - i.__ - ); - } - function m(e, t) { - var n = p(r++, 3); - !a.YM.__s && D(n.__H, t) && ((n.__ = e), (n.__H = t), o.__H.__h.push(n)); - } - function y(e, t) { - var n = p(r++, 4); - !a.YM.__s && D(n.__H, t) && ((n.__ = e), (n.__H = t), o.__h.push(n)); - } - function b(e) { - return ( - (s = 5), - w(function () { - return { current: e }; - }, []) - ); - } - function x(e, t, n) { - (s = 6), - y( - function () { - 'function' == typeof e ? e(t()) : e && (e.current = t()); - }, - null == n ? n : n.concat(e), - ); - } - function w(e, t) { - var n = p(r++, 7); - return D(n.__H, t) && ((n.__ = e()), (n.__H = t), (n.__h = e)), n.__; - } - function E(e, t) { - return ( - (s = 8), - w(function () { - return e; - }, t) - ); - } - function k(e) { - var t = o.context[e.__c], - n = p(r++, 9); - return (n.c = e), t ? (null == n.__ && ((n.__ = !0), t.sub(o)), t.props.value) : e.__; - } - function _(e, t) { - a.YM.useDebugValue && a.YM.useDebugValue(t ? t(e) : e); - } - function S(e) { - var t = p(r++, 10), - n = v(); - return ( - (t.__ = e), - o.componentDidCatch || - (o.componentDidCatch = function (e) { - t.__ && t.__(e), n[1](e); - }), - [ - n[0], - function () { - n[1](void 0); - }, - ] - ); - } - function P() { - var e; - for ( - l.sort(function (e, t) { - return e.__v.__b - t.__v.__b; - }); - (e = l.pop()); - - ) - if (e.__P) - try { - e.__H.__h.forEach(j), e.__H.__h.forEach(T), (e.__H.__h = []); - } catch (o) { - (e.__H.__h = []), a.YM.__e(o, e.__v); - } - } - (a.YM.__b = function (e) { - (o = null), c && c(e); - }), - (a.YM.__r = function (e) { - u && u(e), (r = 0); - var t = (o = e.__c).__H; - t && (t.__h.forEach(j), t.__h.forEach(T), (t.__h = [])); - }), - (a.YM.diffed = function (e) { - d && d(e); - var t = e.__c; - t && - t.__H && - t.__H.__h.length && - ((1 !== l.push(t) && i === a.YM.requestAnimationFrame) || - ( - (i = a.YM.requestAnimationFrame) || - function (e) { - var t, - n = function () { - clearTimeout(r), C && cancelAnimationFrame(t), setTimeout(e); - }, - r = setTimeout(n, 100); - C && (t = requestAnimationFrame(n)); - } - )(P)), - (o = null); - }), - (a.YM.__c = function (e, t) { - t.some(function (e) { - try { - e.__h.forEach(j), - (e.__h = e.__h.filter(function (e) { - return !e.__ || T(e); - })); - } catch (i) { - t.some(function (e) { - e.__h && (e.__h = []); - }), - (t = []), - a.YM.__e(i, e.__v); - } - }), - f && f(e, t); - }), - (a.YM.unmount = function (e) { - h && h(e); - var t, - n = e.__c; - n && - n.__H && - (n.__H.__.forEach(function (e) { - try { - j(e); - } catch (e) { - t = e; - } - }), - t && a.YM.__e(t, n.__v)); - }); - var C = 'function' == typeof requestAnimationFrame; - function j(e) { - var t = o, - n = e.__c; - 'function' == typeof n && ((e.__c = void 0), n()), (o = t); - } - function T(e) { - var t = o; - (e.__c = e.__()), (o = t); - } - function D(e, t) { - return ( - !e || - e.length !== t.length || - t.some(function (t, n) { - return t !== e[n]; - }) - ); - } - function N(e, t) { - return 'function' == typeof t ? t(e) : t; - } - function M(e, t) { - for (var n in t) e[n] = t[n]; - return e; - } - function O(e, t) { - for (var n in e) if ('__source' !== n && !(n in t)) return !0; - for (var r in t) if ('__source' !== r && e[r] !== t[r]) return !0; - return !1; - } - function A(e) { - this.props = e; - } - function R(e, t) { - function n(e) { - var n = this.props.ref, - r = n == e.ref; - return !r && n && (n.call ? n(null) : (n.current = null)), t ? !t(this.props, e) || !r : O(this.props, e); - } - function r(t) { - return (this.shouldComponentUpdate = n), (0, a.az)(e, t); - } - return ( - (r.displayName = 'Memo(' + (e.displayName || e.name) + ')'), - (r.prototype.isReactComponent = !0), - (r.__f = !0), - r - ); - } - ((A.prototype = new a.wA()).isPureReactComponent = !0), - (A.prototype.shouldComponentUpdate = function (e, t) { - return O(this.props, e) || O(this.state, t); - }); - var L = a.YM.__b; - a.YM.__b = function (e) { - e.type && e.type.__f && e.ref && ((e.props.ref = e.ref), (e.ref = null)), L && L(e); - }; - var I = ('undefined' != typeof Symbol && Symbol.for && Symbol.for('react.forward_ref')) || 3911; - function B(e) { - function t(t, n) { - var r = M({}, t); - return delete r.ref, e(r, (n = t.ref || n) && ('object' != typeof n || 'current' in n) ? n : null); - } - return ( - (t.$$typeof = I), - (t.render = t), - (t.prototype.isReactComponent = t.__f = !0), - (t.displayName = 'ForwardRef(' + (e.displayName || e.name) + ')'), - t - ); - } - var F = function (e, t) { - return null == e ? null : (0, a.bR)((0, a.bR)(e).map(t)); - }, - z = { - map: F, - forEach: F, - count: function (e) { - return e ? (0, a.bR)(e).length : 0; - }, - only: function (e) { - var t = (0, a.bR)(e); - if (1 !== t.length) throw 'Children.only'; - return t[0]; - }, - toArray: a.bR, - }, - V = a.YM.__e; - a.YM.__e = function (e, t, n) { - if (e.then) - for (var r, o = t; (o = o.__); ) - if ((r = o.__c) && r.__c) return null == t.__e && ((t.__e = n.__e), (t.__k = n.__k)), r.__c(e, t); - V(e, t, n); - }; - var G = a.YM.unmount; - function H() { - (this.__u = 0), (this.t = null), (this.__b = null); - } - function W(e) { - var t = e.__.__c; - return t && t.__e && t.__e(e); - } - function U(e) { - var t, n, r; - function o(o) { - if ( - (t || - (t = e()).then( - function (e) { - n = e.default || e; - }, - function (e) { - r = e; - }, - ), - r) - ) - throw r; - if (!n) throw t; - return (0, a.az)(n, o); - } - return (o.displayName = 'Lazy'), (o.__f = !0), o; - } - function q() { - (this.u = null), (this.o = null); - } - (a.YM.unmount = function (e) { - var t = e.__c; - t && t.__R && t.__R(), t && !0 === e.__h && (e.type = null), G && G(e); - }), - ((H.prototype = new a.wA()).__c = function (e, t) { - var n = t.__c, - r = this; - null == r.t && (r.t = []), r.t.push(n); - var o = W(r.__v), - i = !1, - a = function () { - i || ((i = !0), (n.__R = null), o ? o(s) : s()); - }; - n.__R = a; - var s = function () { - if (!--r.__u) { - if (r.state.__e) { - var e = r.state.__e; - r.__v.__k[0] = (function e(t, n, r) { - return ( - t && - ((t.__v = null), - (t.__k = - t.__k && - t.__k.map(function (t) { - return e(t, n, r); - })), - t.__c && - t.__c.__P === n && - (t.__e && r.insertBefore(t.__e, t.__d), (t.__c.__e = !0), (t.__c.__P = r))), - t - ); - })(e, e.__c.__P, e.__c.__O); - } - var t; - for (r.setState({ __e: (r.__b = null) }); (t = r.t.pop()); ) t.forceUpdate(); - } - }, - l = !0 === t.__h; - r.__u++ || l || r.setState({ __e: (r.__b = r.__v.__k[0]) }), e.then(a, a); - }), - (H.prototype.componentWillUnmount = function () { - this.t = []; - }), - (H.prototype.render = function (e, t) { - if (this.__b) { - if (this.__v.__k) { - var n = document.createElement('div'), - r = this.__v.__k[0].__c; - this.__v.__k[0] = (function e(t, n, r) { - return ( - t && - (t.__c && - t.__c.__H && - (t.__c.__H.__.forEach(function (e) { - 'function' == typeof e.__c && e.__c(); - }), - (t.__c.__H = null)), - null != (t = M({}, t)).__c && (t.__c.__P === r && (t.__c.__P = n), (t.__c = null)), - (t.__k = - t.__k && - t.__k.map(function (t) { - return e(t, n, r); - }))), - t - ); - })(this.__b, n, (r.__O = r.__P)); - } - this.__b = null; - } - var o = t.__e && (0, a.az)(a.HY, null, e.fallback); - return o && (o.__h = null), [(0, a.az)(a.HY, null, t.__e ? null : e.children), o]; - }); - var Y = function (e, t, n) { - if ((++n[1] === n[0] && e.o.delete(t), e.props.revealOrder && ('t' !== e.props.revealOrder[0] || !e.o.size))) - for (n = e.u; n; ) { - for (; n.length > 3; ) n.pop()(); - if (n[1] < n[0]) break; - e.u = n = n[2]; - } - }; - function X(e) { - return ( - (this.getChildContext = function () { - return e.context; - }), - e.children - ); - } - function $(e) { - var t = this, - n = e.i; - (t.componentWillUnmount = function () { - (0, a.sY)(null, t.l), (t.l = null), (t.i = null); - }), - t.i && t.i !== n && t.componentWillUnmount(), - e.__v - ? (t.l || - ((t.i = n), - (t.l = { - nodeType: 1, - parentNode: n, - childNodes: [], - appendChild: function (e) { - this.childNodes.push(e), t.i.appendChild(e); - }, - insertBefore: function (e, n) { - this.childNodes.push(e), t.i.appendChild(e); - }, - removeChild: function (e) { - this.childNodes.splice(this.childNodes.indexOf(e) >>> 1, 1), t.i.removeChild(e); - }, - })), - (0, a.sY)((0, a.az)(X, { context: t.context }, e.__v), t.l)) - : t.l && t.componentWillUnmount(); - } - function K(e, t) { - return (0, a.az)($, { __v: e, i: t }); - } - ((q.prototype = new a.wA()).__e = function (e) { - var t = this, - n = W(t.__v), - r = t.o.get(e); - return ( - r[0]++, - function (o) { - var i = function () { - t.props.revealOrder ? (r.push(o), Y(t, e, r)) : o(); - }; - n ? n(i) : i(); - } - ); - }), - (q.prototype.render = function (e) { - (this.u = null), (this.o = new Map()); - var t = (0, a.bR)(e.children); - e.revealOrder && 'b' === e.revealOrder[0] && t.reverse(); - for (var n = t.length; n--; ) this.o.set(t[n], (this.u = [1, 0, this.u])); - return e.children; - }), - (q.prototype.componentDidUpdate = q.prototype.componentDidMount = - function () { - var e = this; - this.o.forEach(function (t, n) { - Y(e, n, t); - }); - }); - var Z = ('undefined' != typeof Symbol && Symbol.for && Symbol.for('react.element')) || 60103, - Q = - /^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|marker(?!H|W|U)|overline|paint|stop|strikethrough|stroke|text(?!L)|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/, - J = 'undefined' != typeof document, - ee = function (e) { - return ('undefined' != typeof Symbol && 'symbol' == typeof Symbol() ? /fil|che|rad/i : /fil|che|ra/i).test(e); - }; - function te(e, t, n) { - return null == t.__k && (t.textContent = ''), (0, a.sY)(e, t), 'function' == typeof n && n(), e ? e.__c : null; - } - function ne(e, t, n) { - return (0, a.ZB)(e, t), 'function' == typeof n && n(), e ? e.__c : null; - } - (a.wA.prototype.isReactComponent = {}), - ['componentWillMount', 'componentWillReceiveProps', 'componentWillUpdate'].forEach(function (e) { - Object.defineProperty(a.wA.prototype, e, { - configurable: !0, - get: function () { - return this['UNSAFE_' + e]; - }, - set: function (t) { - Object.defineProperty(this, e, { configurable: !0, writable: !0, value: t }); - }, - }); - }); - var re = a.YM.event; - function oe() {} - function ie() { - return this.cancelBubble; - } - function ae() { - return this.defaultPrevented; - } - a.YM.event = function (e) { - return ( - re && (e = re(e)), - (e.persist = oe), - (e.isPropagationStopped = ie), - (e.isDefaultPrevented = ae), - (e.nativeEvent = e) - ); - }; - var se, - le = { - configurable: !0, - get: function () { - return this.class; - }, - }, - ce = a.YM.vnode; - a.YM.vnode = function (e) { - var t = e.type, - n = e.props, - r = n; - if ('string' == typeof t) { - var o = -1 === t.indexOf('-'); - for (var i in ((r = {}), n)) { - var s = n[i]; - (J && 'children' === i && 'noscript' === t) || - ('value' === i && 'defaultValue' in n && null == s) || - ('defaultValue' === i && 'value' in n && null == n.value - ? (i = 'value') - : 'download' === i && !0 === s - ? (s = '') - : /ondoubleclick/i.test(i) - ? (i = 'ondblclick') - : /^onchange(textarea|input)/i.test(i + t) && !ee(n.type) - ? (i = 'oninput') - : /^onfocus$/i.test(i) - ? (i = 'onfocusin') - : /^onblur$/i.test(i) - ? (i = 'onfocusout') - : /^on(Ani|Tra|Tou|BeforeInp)/.test(i) - ? (i = i.toLowerCase()) - : o && Q.test(i) - ? (i = i.replace(/[A-Z0-9]/, '-$&').toLowerCase()) - : null === s && (s = void 0), - (r[i] = s)); - } - 'select' == t && - r.multiple && - Array.isArray(r.value) && - (r.value = (0, a.bR)(n.children).forEach(function (e) { - e.props.selected = -1 != r.value.indexOf(e.props.value); - })), - 'select' == t && - null != r.defaultValue && - (r.value = (0, a.bR)(n.children).forEach(function (e) { - e.props.selected = r.multiple - ? -1 != r.defaultValue.indexOf(e.props.value) - : r.defaultValue == e.props.value; - })), - (e.props = r), - n.class != n.className && - ((le.enumerable = 'className' in n), - null != n.className && (r.class = n.className), - Object.defineProperty(r, 'className', le)); - } - (e.$$typeof = Z), ce && ce(e); - }; - var ue = a.YM.__r; - a.YM.__r = function (e) { - ue && ue(e), (se = e.__c); - }; - var de = { - ReactCurrentDispatcher: { - current: { - readContext: function (e) { - return se.__n[e.__c].props.value; - }, - }, - }, - }, - fe = '17.0.2'; - function he(e) { - return a.az.bind(null, e); - } - function pe(e) { - return !!e && e.$$typeof === Z; - } - function ve(e) { - return pe(e) ? a.Tm.apply(null, arguments) : e; - } - function ge(e) { - return !!e.__k && ((0, a.sY)(null, e), !0); - } - function me(e) { - return (e && (e.base || (1 === e.nodeType && e))) || null; - } - var ye = function (e, t) { - return e(t); - }, - be = function (e, t) { - return e(t); - }, - xe = a.HY; - const we = { - useState: v, - useReducer: g, - useEffect: m, - useLayoutEffect: y, - useRef: b, - useImperativeHandle: x, - useMemo: w, - useCallback: E, - useContext: k, - useDebugValue: _, - version: '17.0.2', - Children: z, - render: te, - hydrate: ne, - unmountComponentAtNode: ge, - createPortal: K, - createElement: a.az, - createContext: a.kr, - createFactory: he, - cloneElement: ve, - createRef: a.Vf, - Fragment: a.HY, - isValidElement: pe, - findDOMNode: me, - Component: a.wA, - PureComponent: A, - memo: R, - forwardRef: B, - flushSync: be, - unstable_batchedUpdates: ye, - StrictMode: a.HY, - Suspense: H, - SuspenseList: q, - lazy: U, - __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: de, - }; - }, - 75644: (e, t, n) => { - 'use strict'; - n.d(t, { - HY: () => y, - Tm: () => z, - Vf: () => m, - YM: () => o, - ZB: () => F, - az: () => v, - bR: () => P, - kr: () => V, - sY: () => B, - wA: () => b, - }); - var r, - o, - i, - a, - s, - l, - c, - u = {}, - d = [], - f = /acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i; - function h(e, t) { - for (var n in t) e[n] = t[n]; - return e; - } - function p(e) { - var t = e.parentNode; - t && t.removeChild(e); - } - function v(e, t, n) { - var o, - i, - a, - s = {}; - for (a in t) 'key' == a ? (o = t[a]) : 'ref' == a ? (i = t[a]) : (s[a] = t[a]); - if ( - (arguments.length > 2 && (s.children = arguments.length > 3 ? r.call(arguments, 2) : n), - 'function' == typeof e && null != e.defaultProps) - ) - for (a in e.defaultProps) void 0 === s[a] && (s[a] = e.defaultProps[a]); - return g(e, s, o, i, null); - } - function g(e, t, n, r, a) { - var s = { - type: e, - props: t, - key: n, - ref: r, - __k: null, - __: null, - __b: 0, - __e: null, - __d: void 0, - __c: null, - __h: null, - constructor: void 0, - __v: a ?? ++i, - }; - return null == a && null != o.vnode && o.vnode(s), s; - } - function m() { - return { current: null }; - } - function y(e) { - return e.children; - } - function b(e, t) { - (this.props = e), (this.context = t); - } - function x(e, t) { - if (null == t) return e.__ ? x(e.__, e.__.__k.indexOf(e) + 1) : null; - for (var n; t < e.__k.length; t++) if (null != (n = e.__k[t]) && null != n.__e) return n.__e; - return 'function' == typeof e.type ? x(e) : null; - } - function w(e) { - var t, n; - if (null != (e = e.__) && null != e.__c) { - for (e.__e = e.__c.base = null, t = 0; t < e.__k.length; t++) - if (null != (n = e.__k[t]) && null != n.__e) { - e.__e = e.__c.base = n.__e; - break; - } - return w(e); - } - } - function E(e) { - ((!e.__d && (e.__d = !0) && a.push(e) && !k.__r++) || l !== o.debounceRendering) && - ((l = o.debounceRendering) || s)(k); - } - function k() { - for (var e; (k.__r = a.length); ) - (e = a.sort(function (e, t) { - return e.__v.__b - t.__v.__b; - })), - (a = []), - e.some(function (e) { - var t, n, r, o, i, a; - e.__d && - ((i = (o = (t = e).__v).__e), - (a = t.__P) && - ((n = []), - ((r = h({}, o)).__v = o.__v + 1), - M(a, o, r, t.__n, void 0 !== a.ownerSVGElement, null != o.__h ? [i] : null, n, i ?? x(o), o.__h), - O(n, o), - o.__e != i && w(o))); - }); - } - function _(e, t, n, r, o, i, a, s, l, c) { - var f, - h, - p, - v, - m, - b, - w, - E = (r && r.__k) || d, - k = E.length; - for (n.__k = [], f = 0; f < t.length; f++) - if ( - null != - (v = n.__k[f] = - null == (v = t[f]) || 'boolean' == typeof v - ? null - : 'string' == typeof v || 'number' == typeof v || 'bigint' == typeof v - ? g(null, v, null, null, v) - : Array.isArray(v) - ? g(y, { children: v }, null, null, null) - : v.__b > 0 - ? g(v.type, v.props, v.key, null, v.__v) - : v) - ) { - if (((v.__ = n), (v.__b = n.__b + 1), null === (p = E[f]) || (p && v.key == p.key && v.type === p.type))) - E[f] = void 0; - else - for (h = 0; h < k; h++) { - if ((p = E[h]) && v.key == p.key && v.type === p.type) { - E[h] = void 0; - break; - } - p = null; - } - M(e, v, (p = p || u), o, i, a, s, l, c), - (m = v.__e), - (h = v.ref) && p.ref != h && (w || (w = []), p.ref && w.push(p.ref, null, v), w.push(h, v.__c || m, v)), - null != m - ? (null == b && (b = m), - 'function' == typeof v.type && v.__k === p.__k ? (v.__d = l = S(v, l, e)) : (l = C(e, v, p, E, m, l)), - 'function' == typeof n.type && (n.__d = l)) - : l && p.__e == l && l.parentNode != e && (l = x(p)); - } - for (n.__e = b, f = k; f--; ) - null != E[f] && - ('function' == typeof n.type && null != E[f].__e && E[f].__e == n.__d && (n.__d = x(r, f + 1)), - L(E[f], E[f])); - if (w) for (f = 0; f < w.length; f++) R(w[f], w[++f], w[++f]); - } - function S(e, t, n) { - for (var r, o = e.__k, i = 0; o && i < o.length; i++) - (r = o[i]) && ((r.__ = e), (t = 'function' == typeof r.type ? S(r, t, n) : C(n, r, r, o, r.__e, t))); - return t; - } - function P(e, t) { - return ( - (t = t || []), - null == e || - 'boolean' == typeof e || - (Array.isArray(e) - ? e.some(function (e) { - P(e, t); - }) - : t.push(e)), - t - ); - } - function C(e, t, n, r, o, i) { - var a, s, l; - if (void 0 !== t.__d) (a = t.__d), (t.__d = void 0); - else if (null == n || o != i || null == o.parentNode) - e: if (null == i || i.parentNode !== e) e.appendChild(o), (a = null); - else { - for (s = i, l = 0; (s = s.nextSibling) && l < r.length; l += 2) if (s == o) break e; - e.insertBefore(o, i), (a = i); - } - return void 0 !== a ? a : o.nextSibling; - } - function j(e, t, n) { - '-' === t[0] ? e.setProperty(t, n) : (e[t] = null == n ? '' : 'number' != typeof n || f.test(t) ? n : n + 'px'); - } - function T(e, t, n, r, o) { - var i; - e: if ('style' === t) - if ('string' == typeof n) e.style.cssText = n; - else { - if (('string' == typeof r && (e.style.cssText = r = ''), r)) - for (t in r) (n && t in n) || j(e.style, t, ''); - if (n) for (t in n) (r && n[t] === r[t]) || j(e.style, t, n[t]); - } - else if ('o' === t[0] && 'n' === t[1]) - (i = t !== (t = t.replace(/Capture$/, ''))), - (t = t.toLowerCase() in e ? t.toLowerCase().slice(2) : t.slice(2)), - e.l || (e.l = {}), - (e.l[t + i] = n), - n ? r || e.addEventListener(t, i ? N : D, i) : e.removeEventListener(t, i ? N : D, i); - else if ('dangerouslySetInnerHTML' !== t) { - if (o) t = t.replace(/xlink[H:h]/, 'h').replace(/sName$/, 's'); - else if ('href' !== t && 'list' !== t && 'form' !== t && 'tabIndex' !== t && 'download' !== t && t in e) - try { - e[t] = n ?? ''; - break e; - } catch (e) {} - 'function' == typeof n || - (null != n && (!1 !== n || ('a' === t[0] && 'r' === t[1])) ? e.setAttribute(t, n) : e.removeAttribute(t)); - } - } - function D(e) { - this.l[e.type + !1](o.event ? o.event(e) : e); - } - function N(e) { - this.l[e.type + !0](o.event ? o.event(e) : e); - } - function M(e, t, n, r, i, a, s, l, c) { - var u, - d, - f, - p, - v, - g, - m, - x, - w, - E, - k, - S = t.type; - if (void 0 !== t.constructor) return null; - null != n.__h && ((c = n.__h), (l = t.__e = n.__e), (t.__h = null), (a = [l])), (u = o.__b) && u(t); - try { - e: if ('function' == typeof S) { - if ( - ((x = t.props), - (w = (u = S.contextType) && r[u.__c]), - (E = u ? (w ? w.props.value : u.__) : r), - n.__c - ? (m = (d = t.__c = n.__c).__ = d.__E) - : ('prototype' in S && S.prototype.render - ? (t.__c = d = new S(x, E)) - : ((t.__c = d = new b(x, E)), (d.constructor = S), (d.render = I)), - w && w.sub(d), - (d.props = x), - d.state || (d.state = {}), - (d.context = E), - (d.__n = r), - (f = d.__d = !0), - (d.__h = [])), - null == d.__s && (d.__s = d.state), - null != S.getDerivedStateFromProps && - (d.__s == d.state && (d.__s = h({}, d.__s)), h(d.__s, S.getDerivedStateFromProps(x, d.__s))), - (p = d.props), - (v = d.state), - f) - ) - null == S.getDerivedStateFromProps && null != d.componentWillMount && d.componentWillMount(), - null != d.componentDidMount && d.__h.push(d.componentDidMount); - else { - if ( - (null == S.getDerivedStateFromProps && - x !== p && - null != d.componentWillReceiveProps && - d.componentWillReceiveProps(x, E), - (!d.__e && null != d.shouldComponentUpdate && !1 === d.shouldComponentUpdate(x, d.__s, E)) || - t.__v === n.__v) - ) { - (d.props = x), - (d.state = d.__s), - t.__v !== n.__v && (d.__d = !1), - (d.__v = t), - (t.__e = n.__e), - (t.__k = n.__k), - t.__k.forEach(function (e) { - e && (e.__ = t); - }), - d.__h.length && s.push(d); - break e; - } - null != d.componentWillUpdate && d.componentWillUpdate(x, d.__s, E), - null != d.componentDidUpdate && - d.__h.push(function () { - d.componentDidUpdate(p, v, g); - }); - } - (d.context = E), - (d.props = x), - (d.state = d.__s), - (u = o.__r) && u(t), - (d.__d = !1), - (d.__v = t), - (d.__P = e), - (u = d.render(d.props, d.state, d.context)), - (d.state = d.__s), - null != d.getChildContext && (r = h(h({}, r), d.getChildContext())), - f || null == d.getSnapshotBeforeUpdate || (g = d.getSnapshotBeforeUpdate(p, v)), - (k = null != u && u.type === y && null == u.key ? u.props.children : u), - _(e, Array.isArray(k) ? k : [k], t, n, r, i, a, s, l, c), - (d.base = t.__e), - (t.__h = null), - d.__h.length && s.push(d), - m && (d.__E = d.__ = null), - (d.__e = !1); - } else - null == a && t.__v === n.__v ? ((t.__k = n.__k), (t.__e = n.__e)) : (t.__e = A(n.__e, t, n, r, i, a, s, c)); - (u = o.diffed) && u(t); - } catch (e) { - (t.__v = null), (c || null != a) && ((t.__e = l), (t.__h = !!c), (a[a.indexOf(l)] = null)), o.__e(e, t, n); - } - } - function O(e, t) { - o.__c && o.__c(t, e), - e.some(function (t) { - try { - (e = t.__h), - (t.__h = []), - e.some(function (e) { - e.call(t); - }); - } catch (e) { - o.__e(e, t.__v); - } - }); - } - function A(e, t, n, o, i, a, s, l) { - var c, - d, - f, - h = n.props, - v = t.props, - g = t.type, - m = 0; - if (('svg' === g && (i = !0), null != a)) - for (; m < a.length; m++) - if ((c = a[m]) && 'setAttribute' in c == !!g && (g ? c.localName === g : 3 === c.nodeType)) { - (e = c), (a[m] = null); - break; - } - if (null == e) { - if (null === g) return document.createTextNode(v); - (e = i ? document.createElementNS('http://www.w3.org/2000/svg', g) : document.createElement(g, v.is && v)), - (a = null), - (l = !1); - } - if (null === g) h === v || (l && e.data === v) || (e.data = v); - else { - if ( - ((a = a && r.call(e.childNodes)), - (d = (h = n.props || u).dangerouslySetInnerHTML), - (f = v.dangerouslySetInnerHTML), - !l) - ) { - if (null != a) - for (h = {}, m = 0; m < e.attributes.length; m++) h[e.attributes[m].name] = e.attributes[m].value; - (f || d) && - ((f && ((d && f.__html == d.__html) || f.__html === e.innerHTML)) || - (e.innerHTML = (f && f.__html) || '')); - } - if ( - ((function (e, t, n, r, o) { - var i; - for (i in n) 'children' === i || 'key' === i || i in t || T(e, i, null, n[i], r); - for (i in t) - (o && 'function' != typeof t[i]) || - 'children' === i || - 'key' === i || - 'value' === i || - 'checked' === i || - n[i] === t[i] || - T(e, i, t[i], n[i], r); - })(e, v, h, i, l), - f) - ) - t.__k = []; - else if ( - ((m = t.props.children), - _(e, Array.isArray(m) ? m : [m], t, n, o, i && 'foreignObject' !== g, a, s, a ? a[0] : n.__k && x(n, 0), l), - null != a) - ) - for (m = a.length; m--; ) null != a[m] && p(a[m]); - l || - ('value' in v && - void 0 !== (m = v.value) && - (m !== h.value || m !== e.value || ('progress' === g && !m)) && - T(e, 'value', m, h.value, !1), - 'checked' in v && void 0 !== (m = v.checked) && m !== e.checked && T(e, 'checked', m, h.checked, !1)); - } - return e; - } - function R(e, t, n) { - try { - 'function' == typeof e ? e(t) : (e.current = t); - } catch (e) { - o.__e(e, n); - } - } - function L(e, t, n) { - var r, i; - if ( - (o.unmount && o.unmount(e), - (r = e.ref) && ((r.current && r.current !== e.__e) || R(r, null, t)), - null != (r = e.__c)) - ) { - if (r.componentWillUnmount) - try { - r.componentWillUnmount(); - } catch (e) { - o.__e(e, t); - } - r.base = r.__P = null; - } - if ((r = e.__k)) for (i = 0; i < r.length; i++) r[i] && L(r[i], t, 'function' != typeof e.type); - n || null == e.__e || p(e.__e), (e.__e = e.__d = void 0); - } - function I(e, t, n) { - return this.constructor(e, n); - } - function B(e, t, n) { - var i, a, s; - o.__ && o.__(e, t), - (a = (i = 'function' == typeof n) ? null : (n && n.__k) || t.__k), - (s = []), - M( - t, - (e = ((!i && n) || t).__k = v(y, null, [e])), - a || u, - u, - void 0 !== t.ownerSVGElement, - !i && n ? [n] : a ? null : t.firstChild ? r.call(t.childNodes) : null, - s, - !i && n ? n : a ? a.__e : t.firstChild, - i, - ), - O(s, e); - } - function F(e, t) { - B(e, t, F); - } - function z(e, t, n) { - var o, - i, - a, - s = h({}, e.props); - for (a in t) 'key' == a ? (o = t[a]) : 'ref' == a ? (i = t[a]) : (s[a] = t[a]); - return ( - arguments.length > 2 && (s.children = arguments.length > 3 ? r.call(arguments, 2) : n), - g(e.type, s, o || e.key, i || e.ref, null) - ); - } - function V(e, t) { - var n = { - __c: (t = '__cC' + c++), - __: e, - Consumer: function (e, t) { - return e.children(t); - }, - Provider: function (e) { - var n, r; - return ( - this.getChildContext || - ((n = []), - ((r = {})[t] = this), - (this.getChildContext = function () { - return r; - }), - (this.shouldComponentUpdate = function (e) { - this.props.value !== e.value && n.some(E); - }), - (this.sub = function (e) { - n.push(e); - var t = e.componentWillUnmount; - e.componentWillUnmount = function () { - n.splice(n.indexOf(e), 1), t && t.call(e); - }; - })), - e.children - ); - }, - }; - return (n.Provider.__ = n.Consumer.contextType = n); - } - (r = d.slice), - (o = { - __e: function (e, t) { - for (var n, r, o; (t = t.__); ) - if ((n = t.__c) && !n.__) - try { - if ( - ((r = n.constructor) && - null != r.getDerivedStateFromError && - (n.setState(r.getDerivedStateFromError(e)), (o = n.__d)), - null != n.componentDidCatch && (n.componentDidCatch(e), (o = n.__d)), - o) - ) - return (n.__E = n); - } catch (t) { - e = t; - } - throw e; - }, - }), - (i = 0), - (b.prototype.setState = function (e, t) { - var n; - (n = null != this.__s && this.__s !== this.state ? this.__s : (this.__s = h({}, this.state))), - 'function' == typeof e && (e = e(h({}, n), this.props)), - e && h(n, e), - null != e && this.__v && (t && this.__h.push(t), E(this)); - }), - (b.prototype.forceUpdate = function (e) { - this.__v && ((this.__e = !0), e && this.__h.push(e), E(this)); - }), - (b.prototype.render = y), - (a = []), - (s = 'function' == typeof Promise ? Promise.prototype.then.bind(Promise.resolve()) : setTimeout), - (k.__r = 0), - (c = 0); - }, - 31706: (e, t, n) => { - 'use strict'; - var r = n(33286); - var o = - 'function' == typeof Object.is - ? Object.is - : function (e, t) { - return (e === t && (0 !== e || 1 / e == 1 / t)) || (e != e && t != t); - }, - i = r.useState, - a = r.useEffect, - s = r.useLayoutEffect, - l = r.useDebugValue; - function c(e) { - var t = e.getSnapshot; - e = e.value; - try { - var n = t(); - return !o(e, n); - } catch (r) { - return !0; - } - } - var u = - 'undefined' == typeof window || void 0 === window.document || void 0 === window.document.createElement - ? function (e, t) { - return t(); - } - : function (e, t) { - var n = t(), - r = i({ inst: { value: n, getSnapshot: t } }), - o = r[0].inst, - u = r[1]; - return ( - s( - function () { - (o.value = n), (o.getSnapshot = t), c(o) && u({ inst: o }); - }, - [e, n, t], - ), - a( - function () { - return ( - c(o) && u({ inst: o }), - e(function () { - c(o) && u({ inst: o }); - }) - ); - }, - [e], - ), - l(n), - n - ); - }; - t.useSyncExternalStore = void 0 !== r.useSyncExternalStore ? r.useSyncExternalStore : u; - }, - 99165: (e, t, n) => { - 'use strict'; - var r = n(33286), - o = n(83576); - var i = - 'function' == typeof Object.is - ? Object.is - : function (e, t) { - return (e === t && (0 !== e || 1 / e == 1 / t)) || (e != e && t != t); - }, - a = o.useSyncExternalStore, - s = r.useRef, - l = r.useEffect, - c = r.useMemo, - u = r.useDebugValue; - t.useSyncExternalStoreWithSelector = function (e, t, n, r, o) { - var d = s(null); - if (null === d.current) { - var f = { hasValue: !1, value: null }; - d.current = f; - } else f = d.current; - d = c( - function () { - function e(e) { - if (!l) { - if (((l = !0), (a = e), (e = r(e)), void 0 !== o && f.hasValue)) { - var t = f.value; - if (o(t, e)) return (s = t); - } - return (s = e); - } - if (((t = s), i(a, e))) return t; - var n = r(e); - return void 0 !== o && o(t, n) ? t : ((a = e), (s = n)); - } - var a, - s, - l = !1, - c = void 0 === n ? null : n; - return [ - function () { - return e(t()); - }, - null === c - ? void 0 - : function () { - return e(c()); - }, - ]; - }, - [t, n, r, o], - ); - var h = a(e, d[0], d[1]); - return ( - l( - function () { - (f.hasValue = !0), (f.value = h); - }, - [h], - ), - u(h), - h - ); - }; - }, - 83576: (e, t, n) => { - 'use strict'; - e.exports = n(31706); - }, - 52014: (e, t, n) => { - 'use strict'; - e.exports = n(99165); - }, - 71125: (e, t, n) => { - 'use strict'; - n.d(t, { Xg: () => l, f3: () => c, mu: () => s, vk: () => u }); - var r = n(86859), - o = n(14487), - i = n(21427); - function a(e) { - var t; - return ( - ((t = { - id: e, - send: function () {}, - subscribe: function () { - return { unsubscribe: function () {} }; - }, - getSnapshot: function () {}, - toJSON: function () { - return { id: e }; - }, - })[o.L$] = function () { - return this; - }), - t - ); - } - function s(e, t, n, r) { - var i, - s = (0, o.j)(e.src), - c = null === (i = null == t ? void 0 : t.options.services) || void 0 === i ? void 0 : i[s.type], - u = e.data ? (0, o.QX)(e.data, n, r) : void 0, - d = c ? l(c, e.id, u) : a(e.id); - return (d.meta = e), d; - } - function l(e, t, n) { - var r = a(t); - if (((r.deferred = !0), (0, o.O4)(e))) { - var s = (r.state = (0, i.J)(void 0, function () { - return (n ? e.withContext(n) : e).initialState; - })); - r.getSnapshot = function () { - return s; - }; - } - return r; - } - function c(e) { - return ( - (function (e) { - try { - return 'function' == typeof e.send; - } catch (t) { - return !1; - } - })(e) && 'id' in e - ); - } - function u(e) { - var t; - return (0, r.pi)( - (((t = { - subscribe: function () { - return { unsubscribe: function () {} }; - }, - id: 'anonymous', - getSnapshot: function () {}, - })[o.L$] = function () { - return this; - }), - t), - e, - ); - } - }, - 93884: (e, t, n) => { - 'use strict'; - n.d(t, { C: () => s, J: () => a }); - var r = n(90084), - o = n(11293), - i = !1; - function a(e, t, n) { - return void 0 === n && (n = e.context), new r.n(e, t, n); - } - function s(e, t) { - return ( - o.M || - e.predictableActionArguments || - i || - ((i = !0), - console.warn( - 'It is highly recommended to set `predictableActionArguments` to `true` when using `createMachine`. https://xstate.js.org/docs/guides/actions.html', - )), - new r.n(e, t) - ); - } - }, - 64e3: (e, t, n) => { - 'use strict'; - n.d(t, { TL: () => u, ZM: () => f, j1: () => d, j_: () => c }); - var r = n(86859), - o = n(79308), - i = n(14487), - a = n(73340), - s = n(19913), - l = n(11293); - function c(e, t) { - if (e === t) return !0; - if (void 0 === e || void 0 === t) return !1; - if ((0, i.HD)(e) || (0, i.HD)(t)) return e === t; - var n = Object.keys(e), - r = Object.keys(t); - return ( - n.length === r.length && - n.every(function (n) { - return c(e[n], t[n]); - }) - ); - } - function u(e) { - return 'object' == typeof e && null !== e && 'value' in e && '_event' in e; - } - function d(e, t) { - var n = e.exec; - return (0, r.pi)((0, r.pi)({}, e), { - exec: - void 0 !== n - ? function () { - return n(t.context, t.event, { action: e, state: t, _event: t._event }); - } - : void 0, - }); - } - var f = (function () { - function e(e) { - var t, - n = this; - (this.actions = []), - (this.activities = o.qP), - (this.meta = {}), - (this.events = []), - (this.value = e.value), - (this.context = e.context), - (this._event = e._event), - (this._sessionid = e._sessionid), - (this.event = this._event.data), - (this.historyValue = e.historyValue), - (this.history = e.history), - (this.actions = e.actions || []), - (this.activities = e.activities || o.qP), - (this.meta = (0, a.xZ)(e.configuration)), - (this.events = e.events || []), - (this.matches = this.matches.bind(this)), - (this.toStrings = this.toStrings.bind(this)), - (this.configuration = e.configuration), - (this.transitions = e.transitions), - (this.children = e.children), - (this.done = !!e.done), - (this.tags = - null !== (t = Array.isArray(e.tags) ? new Set(e.tags) : e.tags) && void 0 !== t ? t : new Set()), - (this.machine = e.machine), - Object.defineProperty(this, 'nextEvents', { - get: function () { - return (0, a.nJ)(n.configuration); - }, - }); - } - return ( - (e.from = function (t, n) { - return t instanceof e - ? t.context !== n - ? new e({ - value: t.value, - context: n, - _event: t._event, - _sessionid: null, - historyValue: t.historyValue, - history: t.history, - actions: [], - activities: t.activities, - meta: {}, - events: [], - configuration: [], - transitions: [], - children: {}, - }) - : t - : new e({ - value: t, - context: n, - _event: s.initEvent, - _sessionid: null, - historyValue: void 0, - history: void 0, - actions: [], - activities: void 0, - meta: void 0, - events: [], - configuration: [], - transitions: [], - children: {}, - }); - }), - (e.create = function (t) { - return new e(t); - }), - (e.inert = function (t, n) { - if (t instanceof e) { - if (!t.actions.length) return t; - var r = s.initEvent; - return new e({ - value: t.value, - context: n, - _event: r, - _sessionid: null, - historyValue: t.historyValue, - history: t.history, - activities: t.activities, - configuration: t.configuration, - transitions: [], - children: {}, - }); - } - return e.from(t, n); - }), - (e.prototype.toStrings = function (e, t) { - var n = this; - if ((void 0 === e && (e = this.value), void 0 === t && (t = '.'), (0, i.HD)(e))) return [e]; - var o = Object.keys(e); - return o.concat.apply( - o, - (0, r.ev)( - [], - (0, r.CR)( - o.map(function (r) { - return n.toStrings(e[r], t).map(function (e) { - return r + t + e; - }); - }), - ), - !1, - ), - ); - }), - (e.prototype.toJSON = function () { - var e = this; - e.configuration, e.transitions; - var t = e.tags; - e.machine; - var n = (0, r._T)(e, ['configuration', 'transitions', 'tags', 'machine']); - return (0, r.pi)((0, r.pi)({}, n), { tags: Array.from(t) }); - }), - (e.prototype.matches = function (e) { - return (0, i.W)(e, this.value); - }), - (e.prototype.hasTag = function (e) { - return this.tags.has(e); - }), - (e.prototype.can = function (e) { - var t; - l.M && - (0, i.ZK)( - !!this.machine, - 'state.can(...) used outside of a machine-created State object; this will always return false.', - ); - var n = null === (t = this.machine) || void 0 === t ? void 0 : t.getTransitionData(this, e); - return ( - !!(null == n ? void 0 : n.transitions.length) && - n.transitions.some(function (e) { - return void 0 !== e.target || e.actions.length; - }) - ); - }), - e - ); - })(); - }, - 90084: (e, t, n) => { - 'use strict'; - n.d(t, { n: () => b }); - var r = n(86859), - o = n(14487), - i = n(71073), - a = n(64e3), - s = n(26426), - l = n(19913), - c = n(11293), - u = n(79308), - d = n(73340), - f = n(71125); - function h(e) { - if ('string' == typeof e) { - var t = { - type: e, - toString: function () { - return e; - }, - }; - return t; - } - return e; - } - function p(e) { - return (0, r.pi)((0, r.pi)({ type: s.invoke }, e), { - toJSON: function () { - e.onDone, e.onError; - var t = (0, r._T)(e, ['onDone', 'onError']); - return (0, r.pi)((0, r.pi)({}, t), { type: s.invoke, src: h(e.src) }); - }, - }); - } - var v = '', - g = '*', - m = {}, - y = function (e) { - return '#' === e[0]; - }, - b = (function () { - function e(t, n, i, a) { - void 0 === i && (i = 'context' in t ? t.context : void 0); - var s, - f = this; - (this.config = t), - (this._context = i), - (this.order = -1), - (this.__xstatenode = !0), - (this.__cache = { - events: void 0, - relativeValue: new Map(), - initialStateValue: void 0, - initialState: void 0, - on: void 0, - transitions: void 0, - candidates: {}, - delayedTransitions: void 0, - }), - (this.idMap = {}), - (this.tags = []), - (this.options = Object.assign({ actions: {}, guards: {}, services: {}, activities: {}, delays: {} }, n)), - (this.parent = null == a ? void 0 : a.parent), - (this.key = this.config.key || (null == a ? void 0 : a.key) || this.config.id || '(machine)'), - (this.machine = this.parent ? this.parent.machine : this), - (this.path = this.parent ? this.parent.path.concat(this.key) : []), - (this.delimiter = this.config.delimiter || (this.parent ? this.parent.delimiter : u.iS)), - (this.id = - this.config.id || (0, r.ev)([this.machine.key], (0, r.CR)(this.path), !1).join(this.delimiter)), - (this.version = this.parent ? this.parent.version : this.config.version), - (this.type = - this.config.type || - (this.config.parallel - ? 'parallel' - : this.config.states && Object.keys(this.config.states).length - ? 'compound' - : this.config.history - ? 'history' - : 'atomic')), - (this.schema = this.parent - ? this.machine.schema - : null !== (s = this.config.schema) && void 0 !== s - ? s - : {}), - (this.description = this.config.description), - c.M || - (0, o.ZK)( - !('parallel' in this.config), - 'The "parallel" property is deprecated and will be removed in version 4.1. ' - .concat( - this.config.parallel ? "Replace with `type: 'parallel'`" : "Use `type: '".concat(this.type, "'`"), - " in the config for state node '", - ) - .concat(this.id, "' instead."), - ), - (this.initial = this.config.initial), - (this.states = this.config.states - ? (0, o.Q8)(this.config.states, function (t, n) { - var o, - i = new e(t, {}, void 0, { parent: f, key: n }); - return Object.assign(f.idMap, (0, r.pi)((((o = {})[i.id] = i), o), i.idMap)), i; - }) - : m); - var h = 0; - !(function e(t) { - var n, o; - t.order = h++; - try { - for (var i = (0, r.XA)((0, d.nI)(t)), a = i.next(); !a.done; a = i.next()) { - e(a.value); - } - } catch (s) { - n = { error: s }; - } finally { - try { - a && !a.done && (o = i.return) && o.call(i); - } finally { - if (n) throw n.error; - } - } - })(this), - (this.history = !0 === this.config.history ? 'shallow' : this.config.history || !1), - (this._transient = - !!this.config.always || - (!!this.config.on && - (Array.isArray(this.config.on) - ? this.config.on.some(function (e) { - return e.event === v; - }) - : v in this.config.on))), - (this.strict = !!this.config.strict), - (this.onEntry = (0, o.qo)(this.config.entry || this.config.onEntry).map(function (e) { - return (0, l.toActionObject)(e); - })), - (this.onExit = (0, o.qo)(this.config.exit || this.config.onExit).map(function (e) { - return (0, l.toActionObject)(e); - })), - (this.meta = this.config.meta), - (this.doneData = 'final' === this.type ? this.config.data : void 0), - (this.invoke = (0, o.qo)(this.config.invoke).map(function (e, t) { - var n, i; - if ((0, o.O4)(e)) { - var a = (0, o.bx)(f.id, t); - return ( - (f.machine.options.services = (0, r.pi)((((n = {})[a] = e), n), f.machine.options.services)), - p({ src: a, id: a }) - ); - } - if ((0, o.HD)(e.src)) { - a = e.id || (0, o.bx)(f.id, t); - return p((0, r.pi)((0, r.pi)({}, e), { id: a, src: e.src })); - } - if ((0, o.O4)(e.src) || (0, o.mf)(e.src)) { - a = e.id || (0, o.bx)(f.id, t); - return ( - (f.machine.options.services = (0, r.pi)((((i = {})[a] = e.src), i), f.machine.options.services)), - p((0, r.pi)((0, r.pi)({ id: a }, e), { src: a })) - ); - } - var s = e.src; - return p((0, r.pi)((0, r.pi)({ id: (0, o.bx)(f.id, t) }, e), { src: s })); - })), - (this.activities = (0, o.qo)(this.config.activities) - .concat(this.invoke) - .map(function (e) { - return (0, l.toActivityDefinition)(e); - })), - (this.transition = this.transition.bind(this)), - (this.tags = (0, o.qo)(this.config.tags)); - } - return ( - (e.prototype._init = function () { - this.__cache.transitions || - (0, d.ac)(this).forEach(function (e) { - return e.on; - }); - }), - (e.prototype.withConfig = function (t, n) { - var o = this.options, - i = o.actions, - a = o.activities, - s = o.guards, - l = o.services, - c = o.delays; - return new e( - this.config, - { - actions: (0, r.pi)((0, r.pi)({}, i), t.actions), - activities: (0, r.pi)((0, r.pi)({}, a), t.activities), - guards: (0, r.pi)((0, r.pi)({}, s), t.guards), - services: (0, r.pi)((0, r.pi)({}, l), t.services), - delays: (0, r.pi)((0, r.pi)({}, c), t.delays), - }, - null != n ? n : this.context, - ); - }), - (e.prototype.withContext = function (t) { - return new e(this.config, this.options, t); - }), - Object.defineProperty(e.prototype, 'context', { - get: function () { - return (0, o.mf)(this._context) ? this._context() : this._context; - }, - enumerable: !1, - configurable: !0, - }), - Object.defineProperty(e.prototype, 'definition', { - get: function () { - return { - id: this.id, - key: this.key, - version: this.version, - context: this.context, - type: this.type, - initial: this.initial, - history: this.history, - states: (0, o.Q8)(this.states, function (e) { - return e.definition; - }), - on: this.on, - transitions: this.transitions, - entry: this.onEntry, - exit: this.onExit, - activities: this.activities || [], - meta: this.meta, - order: this.order || -1, - data: this.doneData, - invoke: this.invoke, - description: this.description, - tags: this.tags, - }; - }, - enumerable: !1, - configurable: !0, - }), - (e.prototype.toJSON = function () { - return this.definition; - }), - Object.defineProperty(e.prototype, 'on', { - get: function () { - if (this.__cache.on) return this.__cache.on; - var e = this.transitions; - return (this.__cache.on = e.reduce(function (e, t) { - return (e[t.eventType] = e[t.eventType] || []), e[t.eventType].push(t), e; - }, {})); - }, - enumerable: !1, - configurable: !0, - }), - Object.defineProperty(e.prototype, 'after', { - get: function () { - return ( - this.__cache.delayedTransitions || - ((this.__cache.delayedTransitions = this.getDelayedTransitions()), this.__cache.delayedTransitions) - ); - }, - enumerable: !1, - configurable: !0, - }), - Object.defineProperty(e.prototype, 'transitions', { - get: function () { - return ( - this.__cache.transitions || - ((this.__cache.transitions = this.formatTransitions()), this.__cache.transitions) - ); - }, - enumerable: !1, - configurable: !0, - }), - (e.prototype.getCandidates = function (e) { - if (this.__cache.candidates[e]) return this.__cache.candidates[e]; - var t = e === v, - n = this.transitions.filter(function (n) { - var r = n.eventType === e; - return t ? r : r || n.eventType === g; - }); - return (this.__cache.candidates[e] = n), n; - }), - (e.prototype.getDelayedTransitions = function () { - var e = this, - t = this.config.after; - if (!t) return []; - var n = function (t, n) { - var r = (0, o.mf)(t) ? ''.concat(e.id, ':delay[').concat(n, ']') : t, - i = (0, l.after)(r, e.id); - return e.onEntry.push((0, l.send)(i, { delay: t })), e.onExit.push((0, l.cancel)(i)), i; - }; - return ( - (0, o.kJ)(t) - ? t.map(function (e, t) { - var o = n(e.delay, t); - return (0, r.pi)((0, r.pi)({}, e), { event: o }); - }) - : (0, o.xH)( - Object.keys(t).map(function (e, i) { - var a = t[e], - s = (0, o.HD)(a) ? { target: a } : a, - l = isNaN(+e) ? e : +e, - c = n(l, i); - return (0, o.qo)(s).map(function (e) { - return (0, r.pi)((0, r.pi)({}, e), { event: c, delay: l }); - }); - }), - ) - ).map(function (t) { - var n = t.delay; - return (0, r.pi)((0, r.pi)({}, e.formatTransition(t)), { delay: n }); - }); - }), - (e.prototype.getStateNodes = function (e) { - var t, - n = this; - if (!e) return []; - var i = e instanceof a.ZM ? e.value : (0, o.WM)(e, this.delimiter); - if ((0, o.HD)(i)) { - var s = this.getStateNode(i).initial; - return void 0 !== s ? this.getStateNodes((((t = {})[i] = s), t)) : [this, this.states[i]]; - } - var l = Object.keys(i), - c = [this]; - return ( - c.push.apply( - c, - (0, r.ev)( - [], - (0, r.CR)( - (0, o.xH)( - l.map(function (e) { - return n.getStateNode(e).getStateNodes(i[e]); - }), - ), - ), - !1, - ), - ), - c - ); - }), - (e.prototype.handles = function (e) { - var t = (0, o.x6)(e); - return this.events.includes(t); - }), - (e.prototype.resolveState = function (e) { - var t = e instanceof a.ZM ? e : a.ZM.create(e), - n = Array.from((0, d.P_)([], this.getStateNodes(t.value))); - return new a.ZM( - (0, r.pi)((0, r.pi)({}, t), { - value: this.resolve(t.value), - configuration: n, - done: (0, d.Ij)(n, this), - tags: (0, d.Oe)(n), - machine: this.machine, - }), - ); - }), - (e.prototype.transitionLeafNode = function (e, t, n) { - var r = this.getStateNode(e).next(t, n); - return r && r.transitions.length ? r : this.next(t, n); - }), - (e.prototype.transitionCompoundNode = function (e, t, n) { - var r = Object.keys(e), - o = this.getStateNode(r[0])._transition(e[r[0]], t, n); - return o && o.transitions.length ? o : this.next(t, n); - }), - (e.prototype.transitionParallelNode = function (e, t, n) { - var i, - a, - s = {}; - try { - for (var l = (0, r.XA)(Object.keys(e)), c = l.next(); !c.done; c = l.next()) { - var u = c.value, - d = e[u]; - if (d) { - var f = this.getStateNode(u)._transition(d, t, n); - f && (s[u] = f); - } - } - } catch (m) { - i = { error: m }; - } finally { - try { - c && !c.done && (a = l.return) && a.call(l); - } finally { - if (i) throw i.error; - } - } - var h = Object.keys(s).map(function (e) { - return s[e]; - }), - p = (0, o.xH)( - h.map(function (e) { - return e.transitions; - }), - ); - if ( - !h.some(function (e) { - return e.transitions.length > 0; - }) - ) - return this.next(t, n); - var v = (0, o.xH)( - h.map(function (e) { - return e.entrySet; - }), - ), - g = (0, o.xH)( - Object.keys(s).map(function (e) { - return s[e].configuration; - }), - ); - return { - transitions: p, - entrySet: v, - exitSet: (0, o.xH)( - h.map(function (e) { - return e.exitSet; - }), - ), - configuration: g, - source: t, - actions: (0, o.xH)( - Object.keys(s).map(function (e) { - return s[e].actions; - }), - ), - }; - }), - (e.prototype._transition = function (e, t, n) { - return (0, o.HD)(e) - ? this.transitionLeafNode(e, t, n) - : 1 === Object.keys(e).length - ? this.transitionCompoundNode(e, t, n) - : this.transitionParallelNode(e, t, n); - }), - (e.prototype.getTransitionData = function (e, t) { - return this._transition(e.value, e, (0, o.g5)(t)); - }), - (e.prototype.next = function (e, t) { - var n, - i, - a, - s = this, - l = t.name, - c = [], - u = []; - try { - for (var d = (0, r.XA)(this.getCandidates(l)), f = d.next(); !f.done; f = d.next()) { - var h = f.value, - p = h.cond, - v = h.in, - g = e.context, - m = - !v || - ((0, o.HD)(v) && y(v) - ? e.matches((0, o.WM)(this.getStateNodeById(v).path, this.delimiter)) - : (0, o.W)((0, o.WM)(v, this.delimiter), (0, o.ET)(this.path.slice(0, -2))(e.value))), - b = !1; - try { - b = !p || (0, o.vx)(this.machine, p, g, t, e); - } catch (k) { - throw new Error( - "Unable to evaluate guard '" - .concat(p.name || p.type, "' in transition for event '") - .concat(l, "' in state node '") - .concat(this.id, "':\n") - .concat(k.message), - ); - } - if (b && m) { - void 0 !== h.target && (u = h.target), - c.push.apply(c, (0, r.ev)([], (0, r.CR)(h.actions), !1)), - (a = h); - break; - } - } - } catch (_) { - n = { error: _ }; - } finally { - try { - f && !f.done && (i = d.return) && i.call(d); - } finally { - if (n) throw n.error; - } - } - if (a) { - if (!u.length) - return { - transitions: [a], - entrySet: [], - exitSet: [], - configuration: e.value ? [this] : [], - source: e, - actions: c, - }; - var x = (0, o.xH)( - u.map(function (t) { - return s.getRelativeStateNodes(t, e.historyValue); - }), - ), - w = !!a.internal, - E = []; - return ( - w || - u.forEach(function (e) { - E.push.apply(E, (0, r.ev)([], (0, r.CR)(s.getExternalReentryNodes(e)), !1)); - }), - { transitions: [a], entrySet: E, exitSet: w ? [] : [this], configuration: x, source: e, actions: c } - ); - } - }), - (e.prototype.getExternalReentryNodes = function (e) { - for ( - var t = [], n = (0, r.CR)(e.order > this.order ? [e, this] : [this, e], 2), o = n[0], i = n[1]; - o && o !== i; - - ) - t.push(o), (o = o.parent); - return o !== i ? [] : (t.push(i), t); - }), - (e.prototype.getActions = function (e, t, n, a, c, u, f) { - var h, - p, - v, - g, - m = this, - y = (0, d.P_)([], u ? this.getStateNodes(u.value) : [this]); - try { - for (var b = (0, r.XA)(e), x = b.next(); !x.done; x = b.next()) { - var w = x.value; - (!(0, d.e$)(y, w) || ((0, d.e$)(n.entrySet, w.parent) && !(0, d.e$)(n.entrySet, w))) && - n.entrySet.push(w); - } - } catch (D) { - h = { error: D }; - } finally { - try { - x && !x.done && (p = b.return) && p.call(b); - } finally { - if (h) throw h.error; - } - } - try { - for (var E = (0, r.XA)(y), k = E.next(); !k.done; k = E.next()) { - w = k.value; - ((0, d.e$)(e, w) && !(0, d.e$)(n.exitSet, w.parent)) || n.exitSet.push(w); - } - } catch (N) { - v = { error: N }; - } finally { - try { - k && !k.done && (g = E.return) && g.call(E); - } finally { - if (v) throw v.error; - } - } - var _ = (0, o.xH)( - n.entrySet.map(function (e) { - var t = []; - if ('final' !== e.type) return t; - var r = e.parent; - if (!r.parent) return t; - t.push( - (0, l.done)(e.id, e.doneData), - (0, l.done)(r.id, e.doneData ? (0, o.QX)(e.doneData, a, c) : void 0), - ); - var i = r.parent; - return ( - 'parallel' === i.type && - (0, d.G)(i).every(function (e) { - return (0, d.Ij)(n.configuration, e); - }) && - t.push((0, l.done)(i.id)), - t - ); - }), - ); - n.exitSet.sort(function (e, t) { - return t.order - e.order; - }), - n.entrySet.sort(function (e, t) { - return e.order - t.order; - }); - var S = new Set(n.entrySet), - P = new Set(n.exitSet), - C = Array.from(S) - .map(function (e) { - var t = e.onEntry, - n = e.activities.map(function (e) { - return (0, l.start)(e); - }); - return (0, - l.toActionObjects)(f ? (0, r.ev)((0, r.ev)([], (0, r.CR)(t), !1), (0, r.CR)(n), !1) : (0, r.ev)((0, r.ev)([], (0, r.CR)(n), !1), (0, r.CR)(t), !1), m.machine.options.actions); - }) - .concat([_.map(l.raise)]), - j = Array.from(P) - .map(function (e) { - return (0, l.toActionObjects)( - (0, r.ev)( - (0, r.ev)([], (0, r.CR)(e.onExit), !1), - (0, r.CR)( - e.activities.map(function (e) { - return (0, l.stop)(e); - }), - ), - !1, - ), - m.machine.options.actions, - ); - }) - .concat([(0, l.toActionObjects)(n.actions, this.machine.options.actions)]) - .concat(C); - if (t) { - var T = (0, l.toActionObjects)( - (0, o.xH)( - (0, r.ev)([], (0, r.CR)(e), !1) - .sort(function (e, t) { - return t.order - e.order; - }) - .map(function (e) { - return e.onExit; - }), - ), - this.machine.options.actions, - ).filter(function (e) { - return e.type !== s.raise && (e.type !== s.send || (!!e.to && e.to !== i.K.Internal)); - }); - return j.concat([T]); - } - return j; - }), - (e.prototype.transition = function (e, t, n, i) { - void 0 === e && (e = this.initialState); - var s, - l = (0, o.g5)(t); - if (e instanceof a.ZM) s = void 0 === n ? e : this.resolveState(a.ZM.from(e, n)); - else { - var u = (0, o.HD)(e) ? this.resolve((0, o.on)(this.getResolvedPath(e))) : this.resolve(e), - f = null != n ? n : this.machine.context; - s = this.resolveState(a.ZM.from(u, f)); - } - if (!c.M && l.name === g) throw new Error("An event cannot have the wildcard type ('".concat(g, "')")); - if (this.strict && !this.events.includes(l.name) && !(0, o.JQ)(l.name)) - throw new Error("Machine '".concat(this.id, "' does not accept event '").concat(l.name, "'")); - var h = this._transition(s.value, s, l) || { - transitions: [], - configuration: [], - entrySet: [], - exitSet: [], - source: s, - actions: [], - }, - p = (0, d.P_)([], this.getStateNodes(s.value)), - v = h.configuration.length ? (0, d.P_)(p, h.configuration) : p; - return (h.configuration = (0, r.ev)([], (0, r.CR)(v), !1)), this.resolveTransition(h, s, s.context, i, l); - }), - (e.prototype.resolveRaisedTransition = function (e, t, n, o) { - var i, - a = e.actions; - return ( - ((e = this.transition(e, t, void 0, o))._event = n), - (e.event = n.data), - (i = e.actions).unshift.apply(i, (0, r.ev)([], (0, r.CR)(a), !1)), - e - ); - }), - (e.prototype.resolveTransition = function (e, t, n, c, u) { - var h, - p, - g, - m, - y = this; - void 0 === u && (u = l.initEvent); - var b = e.configuration, - x = !t || e.transitions.length > 0, - w = x ? e.configuration : t ? t.configuration : [], - E = (0, d.Ij)(w, this), - k = x ? (0, d.NA)(this.machine, b) : void 0, - _ = t - ? t.historyValue - ? t.historyValue - : e.source - ? this.machine.historyValue(t.value) - : void 0 - : void 0, - S = this.getActions(new Set(w), E, e, n, u, t, c), - P = t ? (0, r.pi)({}, t.activities) : {}; - try { - for (var C = (0, r.XA)(S), j = C.next(); !j.done; j = C.next()) { - var T = j.value; - try { - for (var D = ((g = void 0), (0, r.XA)(T)), N = D.next(); !N.done; N = D.next()) { - var M = N.value; - M.type === s.start - ? (P[M.activity.id || M.activity.type] = M) - : M.type === s.stop && (P[M.activity.id || M.activity.type] = !1); - } - } catch (X) { - g = { error: X }; - } finally { - try { - N && !N.done && (m = D.return) && m.call(D); - } finally { - if (g) throw g.error; - } - } - } - } catch ($) { - h = { error: $ }; - } finally { - try { - j && !j.done && (p = C.return) && p.call(C); - } finally { - if (h) throw h.error; - } - } - var O = (0, r.CR)( - (0, l.resolveActions)( - this, - t, - n, - u, - S, - c, - this.machine.config.predictableActionArguments || this.machine.config.preserveActionOrder, - ), - 2, - ), - A = O[0], - R = O[1], - L = (0, r.CR)( - (0, o.uK)(A, function (e) { - return e.type === s.raise || (e.type === s.send && e.to === i.K.Internal); - }), - 2, - ), - I = L[0], - B = L[1], - F = A.filter(function (e) { - var t; - return ( - e.type === s.start && (null === (t = e.activity) || void 0 === t ? void 0 : t.type) === s.invoke - ); - }), - z = F.reduce( - function (e, t) { - return (e[t.activity.id] = (0, f.mu)(t.activity, y.machine, R, u)), e; - }, - t ? (0, r.pi)({}, t.children) : {}, - ), - V = new a.ZM({ - value: k || t.value, - context: R, - _event: u, - _sessionid: t ? t._sessionid : null, - historyValue: k ? (_ ? (0, o.yv)(_, k) : void 0) : t ? t.historyValue : void 0, - history: !k || e.source ? t : void 0, - actions: k ? B : [], - activities: k ? P : t ? t.activities : {}, - events: [], - configuration: w, - transitions: e.transitions, - children: z, - done: E, - tags: (0, d.Oe)(w), - machine: this, - }), - G = n !== R; - V.changed = u.name === s.update || G; - var H = V.history; - H && delete H.history; - var W = - !E && - (this._transient || - b.some(function (e) { - return e._transient; - })); - if (!(x || (W && u.name !== v))) return V; - var U = V; - if (!E) - for (W && (U = this.resolveRaisedTransition(U, { type: s.nullEvent }, u, c)); I.length; ) { - var q = I.shift(); - U = this.resolveRaisedTransition(U, q._event, u, c); - } - var Y = - U.changed || - (H - ? !!U.actions.length || G || typeof H.value != typeof U.value || !(0, a.j_)(U.value, H.value) - : void 0); - return (U.changed = Y), (U.history = H), U; - }), - (e.prototype.getStateNode = function (e) { - if (y(e)) return this.machine.getStateNodeById(e); - if (!this.states) - throw new Error( - "Unable to retrieve child state '".concat(e, "' from '").concat(this.id, "'; no child states exist."), - ); - var t = this.states[e]; - if (!t) throw new Error("Child state '".concat(e, "' does not exist on '").concat(this.id, "'")); - return t; - }), - (e.prototype.getStateNodeById = function (e) { - var t = y(e) ? e.slice(1) : e; - if (t === this.id) return this; - var n = this.machine.idMap[t]; - if (!n) - throw new Error("Child state node '#".concat(t, "' does not exist on machine '").concat(this.id, "'")); - return n; - }), - (e.prototype.getStateNodeByPath = function (e) { - if ('string' == typeof e && y(e)) - try { - return this.getStateNodeById(e.slice(1)); - } catch (i) {} - for (var t = (0, o.Q9)(e, this.delimiter).slice(), n = this; t.length; ) { - var r = t.shift(); - if (!r.length) break; - n = n.getStateNode(r); - } - return n; - }), - (e.prototype.resolve = function (e) { - var t, - n = this; - if (!e) return this.initialStateValue || m; - switch (this.type) { - case 'parallel': - return (0, o.Q8)(this.initialStateValue, function (t, r) { - return t ? n.getStateNode(r).resolve(e[r] || t) : m; - }); - case 'compound': - if ((0, o.HD)(e)) { - var r = this.getStateNode(e); - return 'parallel' === r.type || 'compound' === r.type - ? (((t = {})[e] = r.initialStateValue), t) - : e; - } - return Object.keys(e).length - ? (0, o.Q8)(e, function (e, t) { - return e ? n.getStateNode(t).resolve(e) : m; - }) - : this.initialStateValue || {}; - default: - return e || m; - } - }), - (e.prototype.getResolvedPath = function (e) { - if (y(e)) { - var t = this.machine.idMap[e.slice(1)]; - if (!t) throw new Error("Unable to find state node '".concat(e, "'")); - return t.path; - } - return (0, o.Q9)(e, this.delimiter); - }), - Object.defineProperty(e.prototype, 'initialStateValue', { - get: function () { - var e, t; - if (this.__cache.initialStateValue) return this.__cache.initialStateValue; - if ('parallel' === this.type) - t = (0, o.ib)( - this.states, - function (e) { - return e.initialStateValue || m; - }, - function (e) { - return !('history' === e.type); - }, - ); - else if (void 0 !== this.initial) { - if (!this.states[this.initial]) - throw new Error("Initial state '".concat(this.initial, "' not found on '").concat(this.key, "'")); - t = (0, d.N9)(this.states[this.initial]) - ? this.initial - : (((e = {})[this.initial] = this.states[this.initial].initialStateValue), e); - } else t = {}; - return (this.__cache.initialStateValue = t), this.__cache.initialStateValue; - }, - enumerable: !1, - configurable: !0, - }), - (e.prototype.getInitialState = function (e, t) { - this._init(); - var n = this.getStateNodes(e); - return this.resolveTransition( - { configuration: n, entrySet: n, exitSet: [], transitions: [], source: void 0, actions: [] }, - void 0, - null != t ? t : this.machine.context, - void 0, - ); - }), - Object.defineProperty(e.prototype, 'initialState', { - get: function () { - var e = this.initialStateValue; - if (!e) throw new Error("Cannot retrieve initial state from simple state '".concat(this.id, "'.")); - return this.getInitialState(e); - }, - enumerable: !1, - configurable: !0, - }), - Object.defineProperty(e.prototype, 'target', { - get: function () { - var e; - if ('history' === this.type) { - var t = this.config; - e = - (0, o.HD)(t.target) && y(t.target) - ? (0, o.on)(this.machine.getStateNodeById(t.target).path.slice(this.path.length - 1)) - : t.target; - } - return e; - }, - enumerable: !1, - configurable: !0, - }), - (e.prototype.getRelativeStateNodes = function (e, t, n) { - return ( - void 0 === n && (n = !0), n ? ('history' === e.type ? e.resolveHistory(t) : e.initialStateNodes) : [e] - ); - }), - Object.defineProperty(e.prototype, 'initialStateNodes', { - get: function () { - var e = this; - if ((0, d.N9)(this)) return [this]; - if ('compound' === this.type && !this.initial) - return ( - c.M || (0, o.ZK)(!1, "Compound state node '".concat(this.id, "' has no initial state.")), [this] - ); - var t = (0, o.SA)(this.initialStateValue); - return (0, o.xH)( - t.map(function (t) { - return e.getFromRelativePath(t); - }), - ); - }, - enumerable: !1, - configurable: !0, - }), - (e.prototype.getFromRelativePath = function (e) { - if (!e.length) return [this]; - var t = (0, r.CR)(e), - n = t[0], - o = t.slice(1); - if (!this.states) throw new Error("Cannot retrieve subPath '".concat(n, "' from node with no states")); - var i = this.getStateNode(n); - if ('history' === i.type) return i.resolveHistory(); - if (!this.states[n]) - throw new Error("Child state '".concat(n, "' does not exist on '").concat(this.id, "'")); - return this.states[n].getFromRelativePath(o); - }), - (e.prototype.historyValue = function (e) { - if (Object.keys(this.states).length) - return { - current: e || this.initialStateValue, - states: (0, o.ib)( - this.states, - function (t, n) { - if (!e) return t.historyValue(); - var r = (0, o.HD)(e) ? void 0 : e[n]; - return t.historyValue(r || t.initialStateValue); - }, - function (e) { - return !e.history; - }, - ), - }; - }), - (e.prototype.resolveHistory = function (e) { - var t = this; - if ('history' !== this.type) return [this]; - var n = this.parent; - if (!e) { - var r = this.target; - return r - ? (0, o.xH)( - (0, o.SA)(r).map(function (e) { - return n.getFromRelativePath(e); - }), - ) - : n.initialStateNodes; - } - var i = (0, o.gk)(n.path, 'states')(e).current; - return (0, o.HD)(i) - ? [n.getStateNode(i)] - : (0, o.xH)( - (0, o.SA)(i).map(function (e) { - return 'deep' === t.history ? n.getFromRelativePath(e) : [n.states[e[0]]]; - }), - ); - }), - Object.defineProperty(e.prototype, 'stateIds', { - get: function () { - var e = this, - t = (0, o.xH)( - Object.keys(this.states).map(function (t) { - return e.states[t].stateIds; - }), - ); - return [this.id].concat(t); - }, - enumerable: !1, - configurable: !0, - }), - Object.defineProperty(e.prototype, 'events', { - get: function () { - var e, t, n, o; - if (this.__cache.events) return this.__cache.events; - var i = this.states, - a = new Set(this.ownEvents); - if (i) - try { - for (var s = (0, r.XA)(Object.keys(i)), l = s.next(); !l.done; l = s.next()) { - var c = i[l.value]; - if (c.states) - try { - for (var u = ((n = void 0), (0, r.XA)(c.events)), d = u.next(); !d.done; d = u.next()) { - var f = d.value; - a.add(''.concat(f)); - } - } catch (h) { - n = { error: h }; - } finally { - try { - d && !d.done && (o = u.return) && o.call(u); - } finally { - if (n) throw n.error; - } - } - } - } catch (p) { - e = { error: p }; - } finally { - try { - l && !l.done && (t = s.return) && t.call(s); - } finally { - if (e) throw e.error; - } - } - return (this.__cache.events = Array.from(a)); - }, - enumerable: !1, - configurable: !0, - }), - Object.defineProperty(e.prototype, 'ownEvents', { - get: function () { - var e = new Set( - this.transitions - .filter(function (e) { - return !(!e.target && !e.actions.length && e.internal); - }) - .map(function (e) { - return e.eventType; - }), - ); - return Array.from(e); - }, - enumerable: !1, - configurable: !0, - }), - (e.prototype.resolveTarget = function (e) { - var t = this; - if (void 0 !== e) - return e.map(function (e) { - if (!(0, o.HD)(e)) return e; - var n = e[0] === t.delimiter; - if (n && !t.parent) return t.getStateNodeByPath(e.slice(1)); - var r = n ? t.key + e : e; - if (!t.parent) return t.getStateNodeByPath(r); - try { - return t.parent.getStateNodeByPath(r); - } catch (i) { - throw new Error( - "Invalid transition definition for state node '".concat(t.id, "':\n").concat(i.message), - ); - } - }); - }), - (e.prototype.formatTransition = function (e) { - var t = this, - n = (0, o.rg)(e.target), - i = - 'internal' in e - ? e.internal - : !n || - n.some(function (e) { - return (0, o.HD)(e) && e[0] === t.delimiter; - }), - a = this.machine.options.guards, - s = this.resolveTarget(n), - c = (0, r.pi)((0, r.pi)({}, e), { - actions: (0, l.toActionObjects)((0, o.qo)(e.actions)), - cond: (0, o.Qi)(e.cond, a), - target: s, - source: this, - internal: i, - eventType: e.event, - toJSON: function () { - return (0, r.pi)((0, r.pi)({}, c), { - target: c.target - ? c.target.map(function (e) { - return '#'.concat(e.id); - }) - : void 0, - source: '#'.concat(t.id), - }); - }, - }); - return c; - }), - (e.prototype.formatTransitions = function () { - var e, - t, - n, - i = this; - if (this.config.on) - if (Array.isArray(this.config.on)) n = this.config.on; - else { - var a = this.config.on, - s = g, - u = a[s], - d = void 0 === u ? [] : u, - f = (0, r._T)(a, ['*']); - n = (0, o.xH)( - Object.keys(f) - .map(function (e) { - c.M || - e !== v || - (0, o.ZK)( - !1, - "Empty string transition configs (e.g., `{ on: { '': ... }}`) for transient transitions are deprecated. Specify the transition in the `{ always: ... }` property instead. " + - 'Please check the `on` configuration for "#'.concat(i.id, '".'), - ); - var t = (0, o.jh)(e, f[e]); - return ( - c.M || - (function (e, t, n) { - var r = n.slice(0, -1).some(function (e) { - return !('cond' in e) && !('in' in e) && ((0, o.HD)(e.target) || (0, o.O4)(e.target)); - }), - i = t === v ? 'the transient event' : "event '".concat(t, "'"); - (0, o.ZK)( - !r, - 'One or more transitions for ' - .concat(i, " on state '") - .concat(e.id, "' are unreachable. ") + - 'Make sure that the default transition is the last one defined.', - ); - })(i, e, t), - t - ); - }) - .concat((0, o.jh)(g, d)), - ); - } - else n = []; - var h = this.config.always ? (0, o.jh)('', this.config.always) : [], - p = this.config.onDone ? (0, o.jh)(String((0, l.done)(this.id)), this.config.onDone) : []; - c.M || - (0, o.ZK)( - !(this.config.onDone && !this.parent), - 'Root nodes cannot have an ".onDone" transition. Please check the config of "'.concat(this.id, '".'), - ); - var m = (0, o.xH)( - this.invoke.map(function (e) { - var t = []; - return ( - e.onDone && - t.push.apply( - t, - (0, r.ev)([], (0, r.CR)((0, o.jh)(String((0, l.doneInvoke)(e.id)), e.onDone)), !1), - ), - e.onError && - t.push.apply(t, (0, r.ev)([], (0, r.CR)((0, o.jh)(String((0, l.error)(e.id)), e.onError)), !1)), - t - ); - }), - ), - y = this.after, - b = (0, o.xH)( - (0, r.ev)( - (0, r.ev)((0, r.ev)((0, r.ev)([], (0, r.CR)(p), !1), (0, r.CR)(m), !1), (0, r.CR)(n), !1), - (0, r.CR)(h), - !1, - ).map(function (e) { - return (0, o.qo)(e).map(function (e) { - return i.formatTransition(e); - }); - }), - ); - try { - for (var x = (0, r.XA)(y), w = x.next(); !w.done; w = x.next()) { - var E = w.value; - b.push(E); - } - } catch (k) { - e = { error: k }; - } finally { - try { - w && !w.done && (t = x.return) && t.call(x); - } finally { - if (e) throw e.error; - } - } - return b; - }), - e - ); - })(); - }, - 86859: (e, t, n) => { - 'use strict'; - n.d(t, { CR: () => a, XA: () => i, _T: () => o, ev: () => s, pi: () => r }); - var r = function () { - return ( - (r = - Object.assign || - function (e) { - for (var t, n = 1, r = arguments.length; n < r; n++) - for (var o in (t = arguments[n])) Object.prototype.hasOwnProperty.call(t, o) && (e[o] = t[o]); - return e; - }), - r.apply(this, arguments) - ); - }; - function o(e, t) { - var n = {}; - for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]); - if (null != e && 'function' == typeof Object.getOwnPropertySymbols) { - var o = 0; - for (r = Object.getOwnPropertySymbols(e); o < r.length; o++) - t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (n[r[o]] = e[r[o]]); - } - return n; - } - function i(e) { - var t = 'function' == typeof Symbol && Symbol.iterator, - n = t && e[t], - r = 0; - if (n) return n.call(e); - if (e && 'number' == typeof e.length) - return { - next: function () { - return e && r >= e.length && (e = void 0), { value: e && e[r++], done: !e }; - }, - }; - throw new TypeError(t ? 'Object is not iterable.' : 'Symbol.iterator is not defined.'); - } - function a(e, t) { - var n = 'function' == typeof Symbol && e[Symbol.iterator]; - if (!n) return e; - var r, - o, - i = n.call(e), - a = []; - try { - for (; (void 0 === t || t-- > 0) && !(r = i.next()).done; ) a.push(r.value); - } catch (s) { - o = { error: s }; - } finally { - try { - r && !r.done && (n = i.return) && n.call(i); - } finally { - if (o) throw o.error; - } - } - return a; - } - function s(e, t, n) { - if (n || 2 === arguments.length) - for (var r, o = 0, i = t.length; o < i; o++) - (!r && o in t) || (r || (r = Array.prototype.slice.call(t, 0, o)), (r[o] = t[o])); - return e.concat(r || Array.prototype.slice.call(t)); - } - }, - 26426: (e, t, n) => { - 'use strict'; - n.r(t), - n.d(t, { - after: () => d, - assign: () => u, - cancel: () => l, - choose: () => x, - doneState: () => f, - error: () => y, - errorExecution: () => g, - errorPlatform: () => m, - init: () => p, - invoke: () => v, - log: () => h, - nullEvent: () => c, - pure: () => w, - raise: () => a, - send: () => s, - start: () => o, - stop: () => i, - update: () => b, - }); - var r = n(71073), - o = r.M.Start, - i = r.M.Stop, - a = r.M.Raise, - s = r.M.Send, - l = r.M.Cancel, - c = r.M.NullEvent, - u = r.M.Assign, - d = r.M.After, - f = r.M.DoneState, - h = r.M.Log, - p = r.M.Init, - v = r.M.Invoke, - g = r.M.ErrorExecution, - m = r.M.ErrorPlatform, - y = r.M.ErrorCustom, - b = r.M.Update, - x = r.M.Choose, - w = r.M.Pure; - }, - 19913: (e, t, n) => { - 'use strict'; - n.r(t), - n.d(t, { - actionTypes: () => i, - after: () => D, - assign: () => j, - cancel: () => _, - choose: () => I, - done: () => N, - doneInvoke: () => M, - error: () => O, - escalate: () => L, - forwardTo: () => R, - getActionFunction: () => c, - initEvent: () => l, - isActionObject: () => T, - log: () => E, - pure: () => A, - raise: () => h, - resolveActions: () => F, - resolveLog: () => k, - resolveRaise: () => p, - resolveSend: () => g, - resolveStop: () => C, - respond: () => x, - send: () => v, - sendParent: () => m, - sendTo: () => y, - sendUpdate: () => b, - start: () => S, - stop: () => P, - toActionObject: () => u, - toActionObjects: () => d, - toActivityDefinition: () => f, - }); - var r = n(86859), - o = n(71073), - i = n(26426), - a = n(14487), - s = n(11293), - l = (0, a.g5)({ type: i.init }); - function c(e, t) { - return (t && t[e]) || void 0; - } - function u(e, t) { - var n; - if ((0, a.HD)(e) || 'number' == typeof e) { - var o = c(e, t); - n = (0, a.mf)(o) ? { type: e, exec: o } : o || { type: e, exec: void 0 }; - } else if ((0, a.mf)(e)) n = { type: e.name || e.toString(), exec: e }; - else { - o = c(e.type, t); - if ((0, a.mf)(o)) n = (0, r.pi)((0, r.pi)({}, e), { exec: o }); - else if (o) { - var i = o.type || e.type; - n = (0, r.pi)((0, r.pi)((0, r.pi)({}, o), e), { type: i }); - } else n = e; - } - return n; - } - var d = function (e, t) { - return e - ? ((0, a.kJ)(e) ? e : [e]).map(function (e) { - return u(e, t); - }) - : []; - }; - function f(e) { - var t = u(e); - return (0, r.pi)((0, r.pi)({ id: (0, a.HD)(e) ? e : t.id }, t), { type: t.type }); - } - function h(e) { - return (0, a.HD)(e) ? { type: i.raise, event: e } : v(e, { to: o.K.Internal }); - } - function p(e) { - return { type: i.raise, _event: (0, a.g5)(e.event) }; - } - function v(e, t) { - return { - to: t ? t.to : void 0, - type: i.send, - event: (0, a.mf)(e) ? e : (0, a._v)(e), - delay: t ? t.delay : void 0, - id: t && void 0 !== t.id ? t.id : (0, a.mf)(e) ? e.name : (0, a.x6)(e), - }; - } - function g(e, t, n, o) { - var i, - s = { _event: n }, - l = (0, a.g5)((0, a.mf)(e.event) ? e.event(t, n.data, s) : e.event); - if ((0, a.HD)(e.delay)) { - var c = o && o[e.delay]; - i = (0, a.mf)(c) ? c(t, n.data, s) : c; - } else i = (0, a.mf)(e.delay) ? e.delay(t, n.data, s) : e.delay; - var u = (0, a.mf)(e.to) ? e.to(t, n.data, s) : e.to; - return (0, r.pi)((0, r.pi)({}, e), { to: u, _event: l, event: l.data, delay: i }); - } - function m(e, t) { - return v(e, (0, r.pi)((0, r.pi)({}, t), { to: o.K.Parent })); - } - function y(e, t, n) { - return v(t, (0, r.pi)((0, r.pi)({}, n), { to: e })); - } - function b() { - return m(i.update); - } - function x(e, t) { - return v( - e, - (0, r.pi)((0, r.pi)({}, t), { - to: function (e, t, n) { - return n._event.origin; - }, - }), - ); - } - var w = function (e, t) { - return { context: e, event: t }; - }; - function E(e, t) { - return void 0 === e && (e = w), { type: i.log, label: t, expr: e }; - } - var k = function (e, t, n) { - return (0, r.pi)((0, r.pi)({}, e), { value: (0, a.HD)(e.expr) ? e.expr : e.expr(t, n.data, { _event: n }) }); - }, - _ = function (e) { - return { type: i.cancel, sendId: e }; - }; - function S(e) { - var t = f(e); - return { type: o.M.Start, activity: t, exec: void 0 }; - } - function P(e) { - var t = (0, a.mf)(e) ? e : f(e); - return { type: o.M.Stop, activity: t, exec: void 0 }; - } - function C(e, t, n) { - var r = (0, a.mf)(e.activity) ? e.activity(t, n.data) : e.activity, - i = 'string' == typeof r ? { id: r } : r; - return { type: o.M.Stop, activity: i }; - } - var j = function (e) { - return { type: i.assign, assignment: e }; - }; - function T(e) { - return 'object' == typeof e && 'type' in e; - } - function D(e, t) { - var n = t ? '#'.concat(t) : ''; - return ''.concat(o.M.After, '(').concat(e, ')').concat(n); - } - function N(e, t) { - var n = ''.concat(o.M.DoneState, '.').concat(e), - r = { - type: n, - data: t, - toString: function () { - return n; - }, - }; - return r; - } - function M(e, t) { - var n = ''.concat(o.M.DoneInvoke, '.').concat(e), - r = { - type: n, - data: t, - toString: function () { - return n; - }, - }; - return r; - } - function O(e, t) { - var n = ''.concat(o.M.ErrorPlatform, '.').concat(e), - r = { - type: n, - data: t, - toString: function () { - return n; - }, - }; - return r; - } - function A(e) { - return { type: o.M.Pure, get: e }; - } - function R(e, t) { - if (!(s.M || (e && 'function' != typeof e))) { - var n = e; - e = function () { - for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t]; - var o = 'function' == typeof n ? n.apply(void 0, (0, r.ev)([], (0, r.CR)(e), !1)) : n; - if (!o) - throw new Error( - 'Attempted to forward event to undefined actor. This risks an infinite loop in the sender.', - ); - return o; - }; - } - return v(function (e, t) { - return t; - }, (0, r.pi)((0, r.pi)({}, t), { to: e })); - } - function L(e, t) { - return m(function (t, n, r) { - return { type: i.error, data: (0, a.mf)(e) ? e(t, n, r) : e }; - }, (0, r.pi)((0, r.pi)({}, t), { to: o.K.Parent })); - } - function I(e) { - return { type: o.M.Choose, conds: e }; - } - var B = function (e) { - var t, - n, - o = []; - try { - for (var a = (0, r.XA)(e), s = a.next(); !s.done; s = a.next()) - for (var l = s.value, c = 0; c < l.length; ) l[c].type !== i.assign ? c++ : (o.push(l[c]), l.splice(c, 1)); - } catch (u) { - t = { error: u }; - } finally { - try { - s && !s.done && (n = a.return) && n.call(a); - } finally { - if (t) throw t.error; - } - } - return o; - }; - function F(e, t, n, l, c, f, h) { - void 0 === h && (h = !1); - var v = h ? [] : B(c), - m = v.length ? (0, a.dt)(n, l, v, t) : n, - y = h ? [n] : void 0, - b = []; - function x(c) { - var v; - switch (c.type) { - case i.raise: - return p(c); - case i.send: - var x = g(c, m, l, e.options.delays); - return ( - s.M || - (0, a.ZK)( - !(0, a.HD)(c.delay) || 'number' == typeof x.delay, - "No delay reference for delay expression '" - .concat(c.delay, "' was found on machine '") - .concat(e.id, "'"), - ), - f && x.to !== o.K.Internal && b.push(x), - x - ); - case i.log: - var w = k(c, m, l); - return null == f || f(w, m, l), w; - case i.choose: - if ( - !(P = - null === - (v = c.conds.find(function (n) { - var r = (0, a.Qi)(n.cond, e.options.guards); - return !r || (0, a.vx)(e, r, m, l, f ? void 0 : t); - })) || void 0 === v - ? void 0 - : v.actions) - ) - return []; - var E = (0, r.CR)(F(e, t, m, l, [d((0, a.qo)(P), e.options.actions)], f, h), 2), - _ = E[0], - S = E[1]; - return (m = S), null == y || y.push(m), _; - case i.pure: - var P; - if (!(P = c.get(m, l.data))) return []; - var j = (0, r.CR)(F(e, t, m, l, [d((0, a.qo)(P), e.options.actions)], f, h), 2), - T = j[0], - D = j[1]; - return (m = D), null == y || y.push(m), T; - case i.stop: - w = C(c, m, l); - return null == f || f(w, n, l), w; - case i.assign: - (m = (0, a.dt)(m, l, [c], f ? void 0 : t)), null == y || y.push(m); - break; - default: - var N = u(c, e.options.actions), - M = N.exec; - if (f) f(N, m, l); - else if (M && y) { - var O = y.length - 1; - N = (0, r.pi)((0, r.pi)({}, N), { - exec: function (e) { - for (var t = [], n = 1; n < arguments.length; n++) t[n - 1] = arguments[n]; - M.apply(void 0, (0, r.ev)([y[O]], (0, r.CR)(t), !1)); - }, - }); - } - return N; - } - } - return [ - (0, a.xH)( - c.map(function (e) { - var t, - n, - o = []; - try { - for (var i = (0, r.XA)(e), a = i.next(); !a.done; a = i.next()) { - var s = x(a.value); - s && (o = o.concat(s)); - } - } catch (c) { - t = { error: c }; - } finally { - try { - a && !a.done && (n = i.return) && n.call(i); - } finally { - if (t) throw t.error; - } - } - return ( - b.forEach(function (e) { - f(e, m, l); - }), - (b.length = 0), - o - ); - }), - ), - m, - ]; - } - }, - 62539: (e, t, n) => { - 'use strict'; - n.d(t, { YP: () => i }); - var r = n(71125), - o = n(14487); - function i(e, t) { - void 0 === t && (t = {}); - var n = e.initialState, - i = new Set(), - a = [], - s = !1, - l = (0, r.vk)({ - id: t.id, - send: function (t) { - a.push(t), - (function () { - if (!s) { - for (s = !0; a.length > 0; ) { - var t = a.shift(); - (n = e.transition(n, t, c)), - i.forEach(function (e) { - return e.next(n); - }); - } - s = !1; - } - })(); - }, - getSnapshot: function () { - return n; - }, - subscribe: function (e, t, r) { - var a = (0, o.zM)(e, t, r); - return ( - i.add(a), - a.next(n), - { - unsubscribe: function () { - i.delete(a); - }, - } - ); - }, - }), - c = { parent: t.parent, self: l, id: t.id || 'anonymous', observers: i }; - return (n = e.start ? e.start(c) : n), l; - } - }, - 79308: (e, t, n) => { - 'use strict'; - n.d(t, { TV: () => i, iS: () => r, qP: () => o, rt: () => a }); - var r = '.', - o = {}, - i = 'xstate.guard', - a = ''; - }, - 11293: (e, t, n) => { - 'use strict'; - n.d(t, { M: () => r }); - var r = !0; - }, - 92185: (e, t, n) => { - 'use strict'; - n.r(t), - n.d(t, { - ActionTypes: () => g.M, - Interpreter: () => i.Ng, - InterpreterStatus: () => i.TM, - Machine: () => a.J, - SpecialTargets: () => g.K, - State: () => u.ZM, - StateNode: () => p.n, - actions: () => r, - assign: () => m, - createMachine: () => a.C, - createSchema: () => f, - doneInvoke: () => k, - forwardTo: () => E, - interpret: () => i.kJ, - mapState: () => c, - matchState: () => d, - matchesState: () => l.W, - raise: () => _, - send: () => y, - sendParent: () => x, - sendTo: () => b, - sendUpdate: () => w, - spawn: () => i.Cs, - spawnBehavior: () => v.YP, - t: () => h, - toActorRef: () => o.vk, - toEventObject: () => l._v, - toObserver: () => l.zM, - toSCXMLEvent: () => l.g5, - }); - var r = n(19913), - o = n(71125), - i = n(26916), - a = n(93884), - s = n(86859), - l = n(14487); - function c(e, t) { - var n, r, o; - try { - for (var i = (0, s.XA)(Object.keys(e)), a = i.next(); !a.done; a = i.next()) { - var c = a.value; - (0, l.W)(c, t) && (!o || t.length > o.length) && (o = c); - } - } catch (u) { - n = { error: u }; - } finally { - try { - a && !a.done && (r = i.return) && r.call(i); - } finally { - if (n) throw n.error; - } - } - return e[o]; - } - var u = n(64e3); - function d(e, t, n) { - var r, - o, - i = u.ZM.from(e, e instanceof u.ZM ? e.context : void 0); - try { - for (var a = (0, s.XA)(t), l = a.next(); !l.done; l = a.next()) { - var c = (0, s.CR)(l.value, 2), - d = c[0], - f = c[1]; - if (i.matches(d)) return f(i); - } - } catch (h) { - r = { error: h }; - } finally { - try { - l && !l.done && (o = a.return) && o.call(a); - } finally { - if (r) throw r.error; - } - } - return n(i); - } - function f(e) { - return e; - } - var h = f, - p = n(90084), - v = n(62539), - g = n(71073), - m = r.assign, - y = r.send, - b = r.sendTo, - x = r.sendParent, - w = r.sendUpdate, - E = r.forwardTo, - k = r.doneInvoke, - _ = r.raise; - }, - 26916: (e, t, n) => { - 'use strict'; - n.d(t, { Ng: () => S, TM: () => w, kJ: () => j, Cs: () => C }); - var r = n(86859), - o = n(71073), - i = n(64e3), - a = n(26426), - s = n(19913), - l = n(11293), - c = n(14487), - u = { deferEvents: !1 }, - d = (function () { - function e(e) { - (this.processingEvent = !1), - (this.queue = []), - (this.initialized = !1), - (this.options = (0, r.pi)((0, r.pi)({}, u), e)); - } - return ( - (e.prototype.initialize = function (e) { - if (((this.initialized = !0), e)) { - if (!this.options.deferEvents) return void this.schedule(e); - this.process(e); - } - this.flushEvents(); - }), - (e.prototype.schedule = function (e) { - if (this.initialized && !this.processingEvent) { - if (0 !== this.queue.length) - throw new Error('Event queue should be empty when it is not processing events'); - this.process(e), this.flushEvents(); - } else this.queue.push(e); - }), - (e.prototype.clear = function () { - this.queue = []; - }), - (e.prototype.flushEvents = function () { - for (var e = this.queue.shift(); e; ) this.process(e), (e = this.queue.shift()); - }), - (e.prototype.process = function (e) { - this.processingEvent = !0; - try { - e(); - } catch (t) { - throw (this.clear(), t); - } finally { - this.processingEvent = !1; - } - }), - e - ); - })(), - f = n(71125), - h = new Map(), - p = 0, - v = function () { - return 'x:'.concat(p++); - }, - g = function (e, t) { - return h.set(e, t), e; - }, - m = function (e) { - return h.get(e); - }, - y = function (e) { - h.delete(e); - }; - function b() { - return 'undefined' != typeof globalThis - ? globalThis - : 'undefined' != typeof self - ? self - : 'undefined' != typeof window - ? window - : void 0 !== n.g - ? n.g - : void ( - l.M || - console.warn( - 'XState could not find a global object in this environment. Please let the maintainers know and raise an issue here: https://github.com/statelyai/xstate/issues', - ) - ); - } - function x(e) { - if (b()) { - var t = (function () { - var e = b(); - if (e && '__xstate__' in e) return e.__xstate__; - })(); - t && t.register(e); - } - } - var w, - E = n(21427), - k = n(62539), - _ = { sync: !1, autoForward: !1 }; - !(function (e) { - (e[(e.NotStarted = 0)] = 'NotStarted'), (e[(e.Running = 1)] = 'Running'), (e[(e.Stopped = 2)] = 'Stopped'); - })(w || (w = {})); - var S = (function () { - function e(t, n) { - void 0 === n && (n = e.defaultOptions); - var i = this; - (this.machine = t), - (this.delayedEventsMap = {}), - (this.listeners = new Set()), - (this.contextListeners = new Set()), - (this.stopListeners = new Set()), - (this.doneListeners = new Set()), - (this.eventListeners = new Set()), - (this.sendListeners = new Set()), - (this.initialized = !1), - (this.status = w.NotStarted), - (this.children = new Map()), - (this.forwardTo = new Set()), - (this._outgoingQueue = []), - (this.init = this.start), - (this.send = function (e, t) { - if ((0, c.kJ)(e)) return i.batch(e), i.state; - var n = (0, c.g5)((0, c._v)(e, t)); - if (i.status === w.Stopped) - return ( - l.M || - (0, c.ZK)( - !1, - 'Event "' - .concat(n.name, '" was sent to stopped service "') - .concat( - i.machine.id, - '". This service has already reached its final state, and will not transition.\nEvent: ', - ) - .concat(JSON.stringify(n.data)), - ), - i.state - ); - if (i.status !== w.Running && !i.options.deferEvents) - throw new Error( - 'Event "' - .concat(n.name, '" was sent to uninitialized service "') - .concat( - i.machine.id, - '". Make sure .start() is called for this service, or set { deferEvents: true } in the service options.\nEvent: ', - ) - .concat(JSON.stringify(n.data)), - ); - return ( - i.scheduler.schedule(function () { - i.forward(n); - var e = i._nextState(n); - i.update(e, n); - }), - i._state - ); - }), - (this.sendTo = function (e, t, n) { - var u = i.parent && (t === o.K.Parent || i.parent.id === t), - d = u ? i.parent : (0, c.HD)(t) ? i.children.get(t) || m(t) : (0, c.Bc)(t) ? t : void 0; - if (d) - if ('machine' in d) { - if (i.status !== w.Stopped || i.parent !== d || i.state.done) { - var f = (0, r.pi)((0, r.pi)({}, e), { - name: e.name === a.error ? ''.concat((0, s.error)(i.id)) : e.name, - origin: i.sessionId, - }); - !n && i.machine.config.predictableActionArguments ? i._outgoingQueue.push([d, f]) : d.send(f); - } - } else - !n && i.machine.config.predictableActionArguments - ? i._outgoingQueue.push([d, e.data]) - : d.send(e.data); - else { - if (!u) - throw new Error("Unable to send event to child '".concat(t, "' from service '").concat(i.id, "'.")); - l.M || - (0, c.ZK)(!1, "Service '".concat(i.id, "' has no parent: unable to send event ").concat(e.type)); - } - }), - (this._exec = function (e, t, n, r) { - void 0 === r && (r = i.machine.options.actions); - var u = e.exec || (0, s.getActionFunction)(e.type, r), - d = (0, c.mf)(u) ? u : u ? u.exec : e.exec; - if (d) - try { - return d( - t, - n.data, - i.machine.config.predictableActionArguments - ? { action: e, _event: n } - : { action: e, state: i.state, _event: n }, - ); - } catch (S) { - throw (i.parent && i.parent.send({ type: 'xstate.error', data: S }), S); - } - switch (e.type) { - case a.send: - var f = e; - if ('number' == typeof f.delay) return void i.defer(f); - f.to ? i.sendTo(f._event, f.to, n === s.initEvent) : i.send(f._event); - break; - case a.cancel: - i.cancel(e.sendId); - break; - case a.start: - if (i.status !== w.Running) return; - var h = e.activity; - if (!i.machine.config.predictableActionArguments && !i.state.activities[h.id || h.type]) break; - if (h.type === o.M.Invoke) { - var p = (0, c.j)(h.src), - v = i.machine.options.services ? i.machine.options.services[p.type] : void 0, - g = h.id, - m = h.data; - l.M || - (0, c.ZK)( - !('forward' in h), - "`forward` property is deprecated (found in invocation of '" - .concat(h.src, "' in in machine '") - .concat(i.machine.id, "'). ") + 'Please use `autoForward` instead.', - ); - var y = 'autoForward' in h ? h.autoForward : !!h.forward; - if (!v) - return void ( - l.M || - (0, c.ZK)( - !1, - "No service found for invocation '" - .concat(h.src, "' in machine '") - .concat(i.machine.id, "'."), - ) - ); - var b = m ? (0, c.QX)(m, t, n) : void 0; - if ('string' == typeof v) return; - var x = (0, c.mf)(v) ? v(t, n.data, { data: b, src: p, meta: h.meta }) : v; - if (!x) return; - var E = void 0; - (0, c.O4)(x) && ((x = b ? x.withContext(b) : x), (E = { autoForward: y })), i.spawn(x, g, E); - } else i.spawnActivity(h); - break; - case a.stop: - i.stopChild(e.activity.id); - break; - case a.log: - var k = e.label, - _ = e.value; - k ? i.logger(k, _) : i.logger(_); - break; - default: - l.M || (0, c.ZK)(!1, "No implementation found for action type '".concat(e.type, "'")); - } - }); - var u = (0, r.pi)((0, r.pi)({}, e.defaultOptions), n), - f = u.clock, - h = u.logger, - p = u.parent, - g = u.id, - y = void 0 !== g ? g : t.id; - (this.id = y), - (this.logger = h), - (this.clock = f), - (this.parent = p), - (this.options = u), - (this.scheduler = new d({ deferEvents: this.options.deferEvents })), - (this.sessionId = v()); - } - return ( - Object.defineProperty(e.prototype, 'initialState', { - get: function () { - var e = this; - return this._initialState - ? this._initialState - : (0, E.J)(this, function () { - return (e._initialState = e.machine.initialState), e._initialState; - }); - }, - enumerable: !1, - configurable: !0, - }), - Object.defineProperty(e.prototype, 'state', { - get: function () { - return ( - l.M || - (0, c.ZK)( - this.status !== w.NotStarted, - "Attempted to read state from uninitialized service '".concat( - this.id, - "'. Make sure the service is started first.", - ), - ), - this._state - ); - }, - enumerable: !1, - configurable: !0, - }), - (e.prototype.execute = function (e, t) { - var n, o; - try { - for (var i = (0, r.XA)(e.actions), a = i.next(); !a.done; a = i.next()) { - var s = a.value; - this.exec(s, e, t); - } - } catch (l) { - n = { error: l }; - } finally { - try { - a && !a.done && (o = i.return) && o.call(i); - } finally { - if (n) throw n.error; - } - } - }), - (e.prototype.update = function (e, t) { - var n, - o, - i, - a, - l, - u, - d, - f, - h = this; - if ( - ((e._sessionid = this.sessionId), - (this._state = e), - (this.machine.config.predictableActionArguments && t !== s.initEvent) || !this.options.execute) - ) - for (var p = void 0; (p = this._outgoingQueue.shift()); ) p[0].send(p[1]); - else this.execute(this.state); - if ( - (this.children.forEach(function (e) { - h.state.children[e.id] = e; - }), - this.devTools && this.devTools.send(t.data, e), - e.event) - ) - try { - for (var v = (0, r.XA)(this.eventListeners), g = v.next(); !g.done; g = v.next()) { - (0, g.value)(e.event); - } - } catch (S) { - n = { error: S }; - } finally { - try { - g && !g.done && (o = v.return) && o.call(v); - } finally { - if (n) throw n.error; - } - } - try { - for (var m = (0, r.XA)(this.listeners), y = m.next(); !y.done; y = m.next()) { - (0, y.value)(e, e.event); - } - } catch (P) { - i = { error: P }; - } finally { - try { - y && !y.done && (a = m.return) && a.call(m); - } finally { - if (i) throw i.error; - } - } - try { - for (var b = (0, r.XA)(this.contextListeners), x = b.next(); !x.done; x = b.next()) { - (0, x.value)(this.state.context, this.state.history ? this.state.history.context : void 0); - } - } catch (C) { - l = { error: C }; - } finally { - try { - x && !x.done && (u = b.return) && u.call(b); - } finally { - if (l) throw l.error; - } - } - if (this.state.done) { - var w = e.configuration.find(function (e) { - return 'final' === e.type && e.parent === h.machine; - }), - E = w && w.doneData ? (0, c.QX)(w.doneData, e.context, t) : void 0; - try { - for (var k = (0, r.XA)(this.doneListeners), _ = k.next(); !_.done; _ = k.next()) { - (0, _.value)((0, s.doneInvoke)(this.id, E)); - } - } catch (j) { - d = { error: j }; - } finally { - try { - _ && !_.done && (f = k.return) && f.call(k); - } finally { - if (d) throw d.error; - } - } - this._stop(), this._stopChildren(); - } - }), - (e.prototype.onTransition = function (e) { - return this.listeners.add(e), this.status === w.Running && e(this.state, this.state.event), this; - }), - (e.prototype.subscribe = function (e, t, n) { - var r = this, - o = (0, c.zM)(e, t, n); - this.listeners.add(o.next), this.status !== w.NotStarted && o.next(this.state); - var i = function () { - r.doneListeners.delete(i), r.stopListeners.delete(i), o.complete(); - }; - return ( - this.status === w.Stopped ? o.complete() : (this.onDone(i), this.onStop(i)), - { - unsubscribe: function () { - r.listeners.delete(o.next), r.doneListeners.delete(i), r.stopListeners.delete(i); - }, - } - ); - }), - (e.prototype.onEvent = function (e) { - return this.eventListeners.add(e), this; - }), - (e.prototype.onSend = function (e) { - return this.sendListeners.add(e), this; - }), - (e.prototype.onChange = function (e) { - return this.contextListeners.add(e), this; - }), - (e.prototype.onStop = function (e) { - return this.stopListeners.add(e), this; - }), - (e.prototype.onDone = function (e) { - return this.doneListeners.add(e), this; - }), - (e.prototype.off = function (e) { - return ( - this.listeners.delete(e), - this.eventListeners.delete(e), - this.sendListeners.delete(e), - this.stopListeners.delete(e), - this.doneListeners.delete(e), - this.contextListeners.delete(e), - this - ); - }), - (e.prototype.start = function (e) { - var t = this; - if (this.status === w.Running) return this; - this.machine._init(), g(this.sessionId, this), (this.initialized = !0), (this.status = w.Running); - var n = - void 0 === e - ? this.initialState - : (0, E.J)(this, function () { - return (0, i.TL)(e) - ? t.machine.resolveState(e) - : t.machine.resolveState(i.ZM.from(e, t.machine.context)); - }); - return ( - this.options.devTools && this.attachDev(), - this.scheduler.initialize(function () { - t.update(n, s.initEvent); - }), - this - ); - }), - (e.prototype._stopChildren = function () { - this.children.forEach(function (e) { - (0, c.mf)(e.stop) && e.stop(); - }), - this.children.clear(); - }), - (e.prototype._stop = function () { - var e, t, n, o, i, a, s, l, c, u; - try { - for (var f = (0, r.XA)(this.listeners), h = f.next(); !h.done; h = f.next()) { - var p = h.value; - this.listeners.delete(p); - } - } catch (S) { - e = { error: S }; - } finally { - try { - h && !h.done && (t = f.return) && t.call(f); - } finally { - if (e) throw e.error; - } - } - try { - for (var v = (0, r.XA)(this.stopListeners), g = v.next(); !g.done; g = v.next()) { - (p = g.value)(), this.stopListeners.delete(p); - } - } catch (P) { - n = { error: P }; - } finally { - try { - g && !g.done && (o = v.return) && o.call(v); - } finally { - if (n) throw n.error; - } - } - try { - for (var m = (0, r.XA)(this.contextListeners), y = m.next(); !y.done; y = m.next()) { - p = y.value; - this.contextListeners.delete(p); - } - } catch (C) { - i = { error: C }; - } finally { - try { - y && !y.done && (a = m.return) && a.call(m); - } finally { - if (i) throw i.error; - } - } - try { - for (var b = (0, r.XA)(this.doneListeners), x = b.next(); !x.done; x = b.next()) { - p = x.value; - this.doneListeners.delete(p); - } - } catch (j) { - s = { error: j }; - } finally { - try { - x && !x.done && (l = b.return) && l.call(b); - } finally { - if (s) throw s.error; - } - } - if (!this.initialized) return this; - (this.initialized = !1), (this.status = w.Stopped), (this._initialState = void 0); - try { - for (var E = (0, r.XA)(Object.keys(this.delayedEventsMap)), k = E.next(); !k.done; k = E.next()) { - var _ = k.value; - this.clock.clearTimeout(this.delayedEventsMap[_]); - } - } catch (T) { - c = { error: T }; - } finally { - try { - k && !k.done && (u = E.return) && u.call(E); - } finally { - if (c) throw c.error; - } - } - this.scheduler.clear(), (this.scheduler = new d({ deferEvents: this.options.deferEvents })); - }), - (e.prototype.stop = function () { - var e = this, - t = this.scheduler; - return ( - this._stop(), - t.schedule(function () { - var t = (0, c.g5)({ type: 'xstate.stop' }), - n = (0, E.J)(e, function () { - var n = (0, c.xH)( - (0, r.ev)([], (0, r.CR)(e.state.configuration), !1) - .sort(function (e, t) { - return t.order - e.order; - }) - .map(function (t) { - return (0, s.toActionObjects)(t.onExit, e.machine.options.actions); - }), - ), - l = (0, r.CR)( - (0, s.resolveActions)( - e.machine, - e.state, - e.state.context, - t, - [n], - e.machine.config.predictableActionArguments ? e._exec : void 0, - e.machine.config.predictableActionArguments || e.machine.config.preserveActionOrder, - ), - 2, - ), - u = l[0], - d = l[1], - f = new i.ZM({ - value: e.state.value, - context: d, - _event: t, - _sessionid: e.sessionId, - historyValue: void 0, - history: e.state, - actions: u.filter(function (e) { - return e.type !== a.raise && (e.type !== a.send || (!!e.to && e.to !== o.K.Internal)); - }), - activities: {}, - events: [], - configuration: [], - transitions: [], - children: {}, - done: e.state.done, - tags: e.state.tags, - machine: e.machine, - }); - return (f.changed = !0), f; - }); - e.update(n, t), e._stopChildren(), y(e.sessionId); - }), - this - ); - }), - (e.prototype.batch = function (e) { - var t = this; - if (this.status === w.NotStarted && this.options.deferEvents) - l.M || - (0, c.ZK)( - !1, - '' - .concat(e.length, ' event(s) were sent to uninitialized service "') - .concat( - this.machine.id, - '" and are deferred. Make sure .start() is called for this service.\nEvent: ', - ) - .concat(JSON.stringify(event)), - ); - else if (this.status !== w.Running) - throw new Error( - '' - .concat(e.length, ' event(s) were sent to uninitialized service "') - .concat( - this.machine.id, - '". Make sure .start() is called for this service, or set { deferEvents: true } in the service options.', - ), - ); - if (e.length) { - var n = !!this.machine.config.predictableActionArguments && this._exec; - this.scheduler.schedule(function () { - var o, - a, - s = t.state, - l = !1, - u = [], - d = function (e) { - var o = (0, c.g5)(e); - t.forward(o), - (s = (0, E.J)(t, function () { - return t.machine.transition(s, o, void 0, n || void 0); - })), - u.push.apply( - u, - (0, r.ev)( - [], - (0, r.CR)( - t.machine.config.predictableActionArguments - ? s.actions - : s.actions.map(function (e) { - return (0, i.j1)(e, s); - }), - ), - !1, - ), - ), - (l = l || !!s.changed); - }; - try { - for (var f = (0, r.XA)(e), h = f.next(); !h.done; h = f.next()) { - d(h.value); - } - } catch (p) { - o = { error: p }; - } finally { - try { - h && !h.done && (a = f.return) && a.call(f); - } finally { - if (o) throw o.error; - } - } - (s.changed = l), (s.actions = u), t.update(s, (0, c.g5)(e[e.length - 1])); - }); - } - }), - (e.prototype.sender = function (e) { - return this.send.bind(this, e); - }), - (e.prototype._nextState = function (e, t) { - var n = this; - void 0 === t && (t = !!this.machine.config.predictableActionArguments && this._exec); - var r = (0, c.g5)(e); - if ( - 0 === r.name.indexOf(a.errorPlatform) && - !this.state.nextEvents.some(function (e) { - return 0 === e.indexOf(a.errorPlatform); - }) - ) - throw r.data.data; - return (0, E.J)(this, function () { - return n.machine.transition(n.state, r, void 0, t || void 0); - }); - }), - (e.prototype.nextState = function (e) { - return this._nextState(e, !1); - }), - (e.prototype.forward = function (e) { - var t, n; - try { - for (var o = (0, r.XA)(this.forwardTo), i = o.next(); !i.done; i = o.next()) { - var a = i.value, - s = this.children.get(a); - if (!s) - throw new Error( - "Unable to forward event '" - .concat(e, "' from interpreter '") - .concat(this.id, "' to nonexistant child '") - .concat(a, "'."), - ); - s.send(e); - } - } catch (l) { - t = { error: l }; - } finally { - try { - i && !i.done && (n = o.return) && n.call(o); - } finally { - if (t) throw t.error; - } - } - }), - (e.prototype.defer = function (e) { - var t = this; - this.delayedEventsMap[e.id] = this.clock.setTimeout(function () { - e.to ? t.sendTo(e._event, e.to, !0) : t.send(e._event); - }, e.delay); - }), - (e.prototype.cancel = function (e) { - this.clock.clearTimeout(this.delayedEventsMap[e]), delete this.delayedEventsMap[e]; - }), - (e.prototype.exec = function (e, t, n) { - void 0 === n && (n = this.machine.options.actions), this._exec(e, t.context, t._event, n); - }), - (e.prototype.removeChild = function (e) { - var t; - this.children.delete(e), - this.forwardTo.delete(e), - null === (t = this.state) || void 0 === t || delete t.children[e]; - }), - (e.prototype.stopChild = function (e) { - var t = this.children.get(e); - t && (this.removeChild(e), (0, c.mf)(t.stop) && t.stop()); - }), - (e.prototype.spawn = function (e, t, n) { - if (this.status !== w.Running) return (0, f.Xg)(e, t); - if ((0, c.y8)(e)) return this.spawnPromise(Promise.resolve(e), t); - if ((0, c.mf)(e)) return this.spawnCallback(e, t); - if ((0, f.f3)(e)) return this.spawnActor(e, t); - if ((0, c.bi)(e)) return this.spawnObservable(e, t); - if ((0, c.O4)(e)) return this.spawnMachine(e, (0, r.pi)((0, r.pi)({}, n), { id: t })); - if ((0, c.HV)(e)) return this.spawnBehavior(e, t); - throw new Error('Unable to spawn entity "'.concat(t, '" of type "').concat(typeof e, '".')); - }), - (e.prototype.spawnMachine = function (t, n) { - var o = this; - void 0 === n && (n = {}); - var i = new e(t, (0, r.pi)((0, r.pi)({}, this.options), { parent: this, id: n.id || t.id })), - s = (0, r.pi)((0, r.pi)({}, _), n); - s.sync && - i.onTransition(function (e) { - o.send(a.update, { state: e, id: i.id }); - }); - var l = i; - return ( - this.children.set(i.id, l), - s.autoForward && this.forwardTo.add(i.id), - i - .onDone(function (e) { - o.removeChild(i.id), o.send((0, c.g5)(e, { origin: i.id })); - }) - .start(), - l - ); - }), - (e.prototype.spawnBehavior = function (e, t) { - var n = (0, k.YP)(e, { id: t, parent: this }); - return this.children.set(t, n), n; - }), - (e.prototype.spawnPromise = function (e, t) { - var n, - r, - o = this, - i = !1; - e.then( - function (e) { - i || ((r = e), o.removeChild(t), o.send((0, c.g5)((0, s.doneInvoke)(t, e), { origin: t }))); - }, - function (e) { - if (!i) { - o.removeChild(t); - var n = (0, s.error)(t, e); - try { - o.send((0, c.g5)(n, { origin: t })); - } catch (r) { - (0, c.v4)(e, r, t), o.devTools && o.devTools.send(n, o.state), o.machine.strict && o.stop(); - } - } - }, - ); - var a = - (((n = { - id: t, - send: function () {}, - subscribe: function (t, n, r) { - var o = (0, c.zM)(t, n, r), - i = !1; - return ( - e.then( - function (e) { - i || (o.next(e), i || o.complete()); - }, - function (e) { - i || o.error(e); - }, - ), - { - unsubscribe: function () { - return (i = !0); - }, - } - ); - }, - stop: function () { - i = !0; - }, - toJSON: function () { - return { id: t }; - }, - getSnapshot: function () { - return r; - }, - })[c.L$] = function () { - return this; - }), - n); - return this.children.set(t, a), a; - }), - (e.prototype.spawnCallback = function (e, t) { - var n, - r, - o, - i = this, - a = !1, - l = new Set(), - u = new Set(); - try { - o = e( - function (e) { - (r = e), - u.forEach(function (t) { - return t(e); - }), - a || i.send((0, c.g5)(e, { origin: t })); - }, - function (e) { - l.add(e); - }, - ); - } catch (f) { - this.send((0, s.error)(t, f)); - } - if ((0, c.y8)(o)) return this.spawnPromise(o, t); - var d = - (((n = { - id: t, - send: function (e) { - return l.forEach(function (t) { - return t(e); - }); - }, - subscribe: function (e) { - var t = (0, c.zM)(e); - return ( - u.add(t.next), - { - unsubscribe: function () { - u.delete(t.next); - }, - } - ); - }, - stop: function () { - (a = !0), (0, c.mf)(o) && o(); - }, - toJSON: function () { - return { id: t }; - }, - getSnapshot: function () { - return r; - }, - })[c.L$] = function () { - return this; - }), - n); - return this.children.set(t, d), d; - }), - (e.prototype.spawnObservable = function (e, t) { - var n, - r, - o = this, - i = e.subscribe( - function (e) { - (r = e), o.send((0, c.g5)(e, { origin: t })); - }, - function (e) { - o.removeChild(t), o.send((0, c.g5)((0, s.error)(t, e), { origin: t })); - }, - function () { - o.removeChild(t), o.send((0, c.g5)((0, s.doneInvoke)(t), { origin: t })); - }, - ), - a = - (((n = { - id: t, - send: function () {}, - subscribe: function (t, n, r) { - return e.subscribe(t, n, r); - }, - stop: function () { - return i.unsubscribe(); - }, - getSnapshot: function () { - return r; - }, - toJSON: function () { - return { id: t }; - }, - })[c.L$] = function () { - return this; - }), - n); - return this.children.set(t, a), a; - }), - (e.prototype.spawnActor = function (e, t) { - return this.children.set(t, e), e; - }), - (e.prototype.spawnActivity = function (e) { - var t = - this.machine.options && this.machine.options.activities - ? this.machine.options.activities[e.type] - : void 0; - if (t) { - var n = t(this.state.context, e); - this.spawnEffect(e.id, n); - } else l.M || (0, c.ZK)(!1, "No implementation found for activity '".concat(e.type, "'")); - }), - (e.prototype.spawnEffect = function (e, t) { - var n; - this.children.set( - e, - (((n = { - id: e, - send: function () {}, - subscribe: function () { - return { unsubscribe: function () {} }; - }, - stop: t || void 0, - getSnapshot: function () {}, - toJSON: function () { - return { id: e }; - }, - })[c.L$] = function () { - return this; - }), - n), - ); - }), - (e.prototype.attachDev = function () { - var e = b(); - if (this.options.devTools && e) { - if (e.__REDUX_DEVTOOLS_EXTENSION__) { - var t = 'object' == typeof this.options.devTools ? this.options.devTools : void 0; - (this.devTools = e.__REDUX_DEVTOOLS_EXTENSION__.connect( - (0, r.pi)( - (0, r.pi)( - { - name: this.id, - autoPause: !0, - stateSanitizer: function (e) { - return { value: e.value, context: e.context, actions: e.actions }; - }, - }, - t, - ), - { features: (0, r.pi)({ jump: !1, skip: !1 }, t ? t.features : void 0) }, - ), - this.machine, - )), - this.devTools.init(this.state); - } - x(this); - } - }), - (e.prototype.toJSON = function () { - return { id: this.id }; - }), - (e.prototype[c.L$] = function () { - return this; - }), - (e.prototype.getSnapshot = function () { - return this.status === w.NotStarted ? this.initialState : this._state; - }), - (e.defaultOptions = { - execute: !0, - deferEvents: !0, - clock: { - setTimeout: function (e, t) { - return setTimeout(e, t); - }, - clearTimeout: function (e) { - return clearTimeout(e); - }, - }, - logger: console.log.bind(console), - devTools: !1, - }), - (e.interpret = j), - e - ); - })(), - P = function (e) { - return (0, c.HD)(e) - ? (0, r.pi)((0, r.pi)({}, _), { name: e }) - : (0, r.pi)((0, r.pi)((0, r.pi)({}, _), { name: (0, c.EL)() }), e); - }; - function C(e, t) { - var n = P(t); - return (0, E.F)(function (t) { - if (!l.M) { - var r = (0, c.O4)(e) || (0, c.mf)(e); - (0, c.ZK)( - !!t || r, - 'Attempted to spawn an Actor (ID: "'.concat( - (0, c.O4)(e) ? e.id : 'undefined', - '") outside of a service. This will have no effect.', - ), - ); - } - return t ? t.spawn(e, n.name, n) : (0, f.Xg)(e, n.name); - }); - } - function j(e, t) { - return new S(e, t); - } - }, - 21427: (e, t, n) => { - 'use strict'; - n.d(t, { F: () => i, J: () => o }); - var r = [], - o = function (e, t) { - r.push(e); - var n = t(e); - return r.pop(), n; - }, - i = function (e) { - return e(r[r.length - 1]); - }; - }, - 73340: (e, t, n) => { - 'use strict'; - n.d(t, { - G: () => s, - Ij: () => v, - N9: () => i, - NA: () => f, - Oe: () => m, - P_: () => c, - ac: () => l, - e$: () => h, - nI: () => a, - nJ: () => p, - xZ: () => g, - }); - var r = n(86859), - o = n(14487), - i = function (e) { - return 'atomic' === e.type || 'final' === e.type; - }; - function a(e) { - return Object.keys(e.states).map(function (t) { - return e.states[t]; - }); - } - function s(e) { - return a(e).filter(function (e) { - return 'history' !== e.type; - }); - } - function l(e) { - var t = [e]; - return i(e) ? t : t.concat((0, o.xH)(s(e).map(l))); - } - function c(e, t) { - var n, - o, - i, - a, - l, - c, - u, - f, - h = d(new Set(e)), - p = new Set(t); - try { - for (var v = (0, r.XA)(p), g = v.next(); !g.done; g = v.next()) - for (var m = (P = g.value).parent; m && !p.has(m); ) p.add(m), (m = m.parent); - } catch (C) { - n = { error: C }; - } finally { - try { - g && !g.done && (o = v.return) && o.call(v); - } finally { - if (n) throw n.error; - } - } - var y = d(p); - try { - for (var b = (0, r.XA)(p), x = b.next(); !x.done; x = b.next()) { - if ('compound' !== (P = x.value).type || (y.get(P) && y.get(P).length)) { - if ('parallel' === P.type) - try { - for (var w = ((l = void 0), (0, r.XA)(s(P))), E = w.next(); !E.done; E = w.next()) { - var k = E.value; - p.has(k) || - (p.add(k), - h.get(k) - ? h.get(k).forEach(function (e) { - return p.add(e); - }) - : k.initialStateNodes.forEach(function (e) { - return p.add(e); - })); - } - } catch (j) { - l = { error: j }; - } finally { - try { - E && !E.done && (c = w.return) && c.call(w); - } finally { - if (l) throw l.error; - } - } - } else - h.get(P) - ? h.get(P).forEach(function (e) { - return p.add(e); - }) - : P.initialStateNodes.forEach(function (e) { - return p.add(e); - }); - } - } catch (T) { - i = { error: T }; - } finally { - try { - x && !x.done && (a = b.return) && a.call(b); - } finally { - if (i) throw i.error; - } - } - try { - for (var _ = (0, r.XA)(p), S = _.next(); !S.done; S = _.next()) { - var P; - for (m = (P = S.value).parent; m && !p.has(m); ) p.add(m), (m = m.parent); - } - } catch (D) { - u = { error: D }; - } finally { - try { - S && !S.done && (f = _.return) && f.call(_); - } finally { - if (u) throw u.error; - } - } - return p; - } - function u(e, t) { - var n = t.get(e); - if (!n) return {}; - if ('compound' === e.type) { - var r = n[0]; - if (!r) return {}; - if (i(r)) return r.key; - } - var o = {}; - return ( - n.forEach(function (e) { - o[e.key] = u(e, t); - }), - o - ); - } - function d(e) { - var t, - n, - o = new Map(); - try { - for (var i = (0, r.XA)(e), a = i.next(); !a.done; a = i.next()) { - var s = a.value; - o.has(s) || o.set(s, []), s.parent && (o.has(s.parent) || o.set(s.parent, []), o.get(s.parent).push(s)); - } - } catch (l) { - t = { error: l }; - } finally { - try { - a && !a.done && (n = i.return) && n.call(i); - } finally { - if (t) throw t.error; - } - } - return o; - } - function f(e, t) { - return u(e, d(c([e], t))); - } - function h(e, t) { - return Array.isArray(e) - ? e.some(function (e) { - return e === t; - }) - : e instanceof Set && e.has(t); - } - function p(e) { - return (0, r.ev)( - [], - (0, r.CR)( - new Set( - (0, o.xH)( - (0, r.ev)( - [], - (0, r.CR)( - e.map(function (e) { - return e.ownEvents; - }), - ), - !1, - ), - ), - ), - ), - !1, - ); - } - function v(e, t) { - return 'compound' === t.type - ? s(t).some(function (t) { - return 'final' === t.type && h(e, t); - }) - : 'parallel' === t.type && - s(t).every(function (t) { - return v(e, t); - }); - } - function g(e) { - return ( - void 0 === e && (e = []), - e.reduce(function (e, t) { - return void 0 !== t.meta && (e[t.id] = t.meta), e; - }, {}) - ); - } - function m(e) { - return new Set( - (0, o.xH)( - e.map(function (e) { - return e.tags; - }), - ), - ); - } - }, - 71073: (e, t, n) => { - 'use strict'; - var r, o; - n.d(t, { K: () => o, M: () => r }), - (function (e) { - (e.Start = 'xstate.start'), - (e.Stop = 'xstate.stop'), - (e.Raise = 'xstate.raise'), - (e.Send = 'xstate.send'), - (e.Cancel = 'xstate.cancel'), - (e.NullEvent = ''), - (e.Assign = 'xstate.assign'), - (e.After = 'xstate.after'), - (e.DoneState = 'done.state'), - (e.DoneInvoke = 'done.invoke'), - (e.Log = 'xstate.log'), - (e.Init = 'xstate.init'), - (e.Invoke = 'xstate.invoke'), - (e.ErrorExecution = 'error.execution'), - (e.ErrorCommunication = 'error.communication'), - (e.ErrorPlatform = 'error.platform'), - (e.ErrorCustom = 'xstate.error'), - (e.Update = 'xstate.update'), - (e.Pure = 'xstate.pure'), - (e.Choose = 'xstate.choose'); - })(r || (r = {})), - (function (e) { - (e.Parent = '#_parent'), (e.Internal = '#_internal'); - })(o || (o = {})); - }, - 14487: (e, t, n) => { - 'use strict'; - n.d(t, { - Bc: () => L, - EL: () => I, - ET: () => p, - HD: () => N, - HV: () => k, - JQ: () => w, - L$: () => A, - O4: () => R, - Q8: () => f, - Q9: () => c, - QX: () => x, - Qi: () => M, - SA: () => g, - W: () => s, - WM: () => u, - ZK: () => j, - _v: () => B, - bi: () => O, - bx: () => q, - dt: () => C, - g5: () => F, - gk: () => v, - ib: () => h, - j: () => W, - jh: () => z, - kJ: () => T, - mf: () => D, - on: () => d, - qo: () => b, - rg: () => V, - uK: () => _, - v4: () => G, - vx: () => H, - x6: () => l, - xH: () => m, - y8: () => E, - yv: () => P, - zM: () => U, - }); - var r, - o = n(86859), - i = n(79308), - a = n(11293); - function s(e, t, n) { - void 0 === n && (n = i.iS); - var r = u(e, n), - o = u(t, n); - return N(o) - ? !!N(r) && o === r - : N(r) - ? r in o - : Object.keys(r).every(function (e) { - return e in o && s(r[e], o[e]); - }); - } - function l(e) { - try { - return N(e) || 'number' == typeof e ? ''.concat(e) : e.type; - } catch (t) { - throw new Error('Events must be strings or objects with a string event.type property.'); - } - } - function c(e, t) { - try { - return T(e) ? e : e.toString().split(t); - } catch (n) { - throw new Error("'".concat(e, "' is not a valid state path.")); - } - } - function u(e, t) { - return 'object' == typeof (n = e) && 'value' in n && 'context' in n && 'event' in n && '_event' in n - ? e.value - : T(e) - ? d(e) - : 'string' != typeof e - ? e - : d(c(e, t)); - var n; - } - function d(e) { - if (1 === e.length) return e[0]; - for (var t = {}, n = t, r = 0; r < e.length - 1; r++) - r === e.length - 2 ? (n[e[r]] = e[r + 1]) : ((n[e[r]] = {}), (n = n[e[r]])); - return t; - } - function f(e, t) { - for (var n = {}, r = Object.keys(e), o = 0; o < r.length; o++) { - var i = r[o]; - n[i] = t(e[i], i, e, o); - } - return n; - } - function h(e, t, n) { - var r, - i, - a = {}; - try { - for (var s = (0, o.XA)(Object.keys(e)), l = s.next(); !l.done; l = s.next()) { - var c = l.value, - u = e[c]; - n(u) && (a[c] = t(u, c, e)); - } - } catch (d) { - r = { error: d }; - } finally { - try { - l && !l.done && (i = s.return) && i.call(s); - } finally { - if (r) throw r.error; - } - } - return a; - } - var p = function (e) { - return function (t) { - var n, - r, - i = t; - try { - for (var a = (0, o.XA)(e), s = a.next(); !s.done; s = a.next()) { - i = i[s.value]; - } - } catch (l) { - n = { error: l }; - } finally { - try { - s && !s.done && (r = a.return) && r.call(a); - } finally { - if (n) throw n.error; - } - } - return i; - }; - }; - function v(e, t) { - return function (n) { - var r, - i, - a = n; - try { - for (var s = (0, o.XA)(e), l = s.next(); !l.done; l = s.next()) { - var c = l.value; - a = a[t][c]; - } - } catch (u) { - r = { error: u }; - } finally { - try { - l && !l.done && (i = s.return) && i.call(s); - } finally { - if (r) throw r.error; - } - } - return a; - }; - } - function g(e) { - return e - ? N(e) - ? [[e]] - : m( - Object.keys(e).map(function (t) { - var n = e[t]; - return 'string' == typeof n || (n && Object.keys(n).length) - ? g(e[t]).map(function (e) { - return [t].concat(e); - }) - : [[t]]; - }), - ) - : [[]]; - } - function m(e) { - var t; - return (t = []).concat.apply(t, (0, o.ev)([], (0, o.CR)(e), !1)); - } - function y(e) { - return T(e) ? e : [e]; - } - function b(e) { - return void 0 === e ? [] : y(e); - } - function x(e, t, n) { - var r, i; - if (D(e)) return e(t, n.data); - var a = {}; - try { - for (var s = (0, o.XA)(Object.keys(e)), l = s.next(); !l.done; l = s.next()) { - var c = l.value, - u = e[c]; - D(u) ? (a[c] = u(t, n.data)) : (a[c] = u); - } - } catch (d) { - r = { error: d }; - } finally { - try { - l && !l.done && (i = s.return) && i.call(s); - } finally { - if (r) throw r.error; - } - } - return a; - } - function w(e) { - return /^(done|error)\./.test(e); - } - function E(e) { - return e instanceof Promise || !(null === e || (!D(e) && 'object' != typeof e) || !D(e.then)); - } - function k(e) { - return null !== e && 'object' == typeof e && 'transition' in e && 'function' == typeof e.transition; - } - function _(e, t) { - var n, - r, - i = (0, o.CR)([[], []], 2), - a = i[0], - s = i[1]; - try { - for (var l = (0, o.XA)(e), c = l.next(); !c.done; c = l.next()) { - var u = c.value; - t(u) ? a.push(u) : s.push(u); - } - } catch (d) { - n = { error: d }; - } finally { - try { - c && !c.done && (r = l.return) && r.call(l); - } finally { - if (n) throw n.error; - } - } - return [a, s]; - } - function S(e, t) { - return f(e.states, function (e, n) { - if (e) { - var r = (N(t) ? void 0 : t[n]) || (e ? e.current : void 0); - if (r) return { current: r, states: S(e, r) }; - } - }); - } - function P(e, t) { - return { current: t, states: S(e, t) }; - } - function C(e, t, n, r) { - a.M || j(!!e, 'Attempting to update undefined context'); - var i = e - ? n.reduce(function (e, n) { - var i, - a, - s = n.assignment, - l = { state: r, action: n, _event: t }, - c = {}; - if (D(s)) c = s(e, t.data, l); - else - try { - for (var u = (0, o.XA)(Object.keys(s)), d = u.next(); !d.done; d = u.next()) { - var f = d.value, - h = s[f]; - c[f] = D(h) ? h(e, t.data, l) : h; - } - } catch (p) { - i = { error: p }; - } finally { - try { - d && !d.done && (a = u.return) && a.call(u); - } finally { - if (i) throw i.error; - } - } - return Object.assign({}, e, c); - }, e) - : e; - return i; - } - var j = function () {}; - function T(e) { - return Array.isArray(e); - } - function D(e) { - return 'function' == typeof e; - } - function N(e) { - return 'string' == typeof e; - } - function M(e, t) { - if (e) - return N(e) - ? { type: i.TV, name: e, predicate: t ? t[e] : void 0 } - : D(e) - ? { type: i.TV, name: e.name, predicate: e } - : e; - } - function O(e) { - try { - return 'subscribe' in e && D(e.subscribe); - } catch (t) { - return !1; - } - } - a.M || - (j = function (e, t) { - var n = e instanceof Error ? e : void 0; - if ((n || !e) && void 0 !== console) { - var r = ['Warning: '.concat(t)]; - n && r.push(n), console.warn.apply(console, r); - } - }); - var A = (function () { - return ('function' == typeof Symbol && Symbol.observable) || '@@observable'; - })(); - ((r = {})[A] = function () { - return this; - }), - (r[Symbol.observable] = function () { - return this; - }); - function R(e) { - return !!e && '__xstatenode' in e; - } - function L(e) { - return !!e && 'function' == typeof e.send; - } - var I = (function () { - var e = 0; - return function () { - return (++e).toString(16); - }; - })(); - function B(e, t) { - return N(e) || 'number' == typeof e ? (0, o.pi)({ type: e }, t) : e; - } - function F(e, t) { - if (!N(e) && '$$type' in e && 'scxml' === e.$$type) return e; - var n = B(e); - return (0, o.pi)({ name: n.type, data: n, $$type: 'scxml', type: 'external' }, t); - } - function z(e, t) { - return y(t).map(function (t) { - return void 0 === t || 'string' == typeof t || R(t) - ? { target: t, event: e } - : (0, o.pi)((0, o.pi)({}, t), { event: e }); - }); - } - function V(e) { - if (void 0 !== e && e !== i.rt) return b(e); - } - function G(e, t, n) { - if (!a.M) { - var r = e.stack ? " Stacktrace was '".concat(e.stack, "'") : ''; - if (e === t) - console.error( - "Missing onError handler for invocation '".concat(n, "', error was '").concat(e, "'.").concat(r), - ); - else { - var o = t.stack ? " Stacktrace was '".concat(t.stack, "'") : ''; - console.error( - "Missing onError handler and/or unhandled exception/promise rejection for invocation '".concat(n, "'. ") + - "Original error: '".concat(e, "'. ").concat(r, " Current error is '").concat(t, "'.").concat(o), - ); - } - } - } - function H(e, t, n, r, o) { - var a = e.options.guards, - s = { state: o, cond: t, _event: r }; - if (t.type === i.TV) return ((null == a ? void 0 : a[t.name]) || t.predicate)(n, r.data, s); - var l = null == a ? void 0 : a[t.type]; - if (!l) throw new Error("Guard '".concat(t.type, "' is not implemented on machine '").concat(e.id, "'.")); - return l(n, r.data, s); - } - function W(e) { - return 'string' == typeof e ? { type: e } : e; - } - function U(e, t, n) { - var r = function () {}, - o = 'object' == typeof e, - i = o ? e : null; - return { - next: ((o ? e.next : e) || r).bind(i), - error: ((o ? e.error : t) || r).bind(i), - complete: ((o ? e.complete : n) || r).bind(i), - }; - } - function q(e, t) { - return ''.concat(e, ':invocation[').concat(t, ']'); - } - }, - }, - e => { - var t; - (t = 55948), e((e.s = t)); - }, -]); diff --git a/.nx/cache/nx-console-project-graph/static/polyfills.js b/.nx/cache/nx-console-project-graph/static/polyfills.js deleted file mode 100644 index bcc3721b1b543..0000000000000 --- a/.nx/cache/nx-console-project-graph/static/polyfills.js +++ /dev/null @@ -1,6951 +0,0 @@ -(self.webpackChunk = self.webpackChunk || []).push([ - [429], - { - 77365: (t, r, e) => { - 'use strict'; - e(47306), - e(17818), - e(39661), - e(13591), - e(18868), - e(54095), - e(57640), - e(18253), - e(94841), - e(78062), - e(89909), - e(5425), - e(59882), - e(75715), - e(24560), - e(14137), - e(2048), - e(51072), - e(91609), - e(80742), - e(30403), - e(63411), - e(19658), - e(22634), - e(8297), - e(47657), - e(24024), - e(13749), - e(22741), - e(7116), - e(70769), - e(94457), - e(15371), - e(46933), - e(9883), - e(76618), - e(16784), - e(46073), - e(9944), - e(8258), - e(80776), - e(50633), - e(29), - e(71867), - e(64469), - e(40387), - e(58521), - e(19280), - e(62108), - e(11662), - e(78598), - e(55806), - e(27999), - e(30146), - e(44160), - e(21887), - e(17507), - e(22894), - e(61066), - e(58528), - e(74273), - e(51850), - e(72726), - e(31368), - e(22993), - e(3346), - e(98720), - e(39853), - e(57307), - e(8711), - e(73397); - }, - 70481: (t, r, e) => { - var n = e(88807), - o = e(48427), - i = TypeError; - t.exports = function (t) { - if (n(t)) return t; - throw i(o(t) + ' is not a function'); - }; - }, - 12420: (t, r, e) => { - var n = e(41758), - o = e(48427), - i = TypeError; - t.exports = function (t) { - if (n(t)) return t; - throw i(o(t) + ' is not a constructor'); - }; - }, - 5946: (t, r, e) => { - var n = e(88807), - o = String, - i = TypeError; - t.exports = function (t) { - if ('object' == typeof t || n(t)) return t; - throw i("Can't set " + o(t) + ' as a prototype'); - }; - }, - 63288: (t, r, e) => { - var n = e(96982), - o = e(56042), - i = e(90189).f, - a = n('unscopables'), - u = Array.prototype; - null == u[a] && i(u, a, { configurable: !0, value: o(null) }), - (t.exports = function (t) { - u[a][t] = !0; - }); - }, - 95158: (t, r, e) => { - 'use strict'; - var n = e(33100).charAt; - t.exports = function (t, r, e) { - return r + (e ? n(t, r).length : 1); - }; - }, - 65712: (t, r, e) => { - var n = e(13521), - o = TypeError; - t.exports = function (t, r) { - if (n(r, t)) return t; - throw o('Incorrect invocation'); - }; - }, - 71843: (t, r, e) => { - var n = e(21188), - o = String, - i = TypeError; - t.exports = function (t) { - if (n(t)) return t; - throw i(o(t) + ' is not an object'); - }; - }, - 47603: t => { - t.exports = 'undefined' != typeof ArrayBuffer && 'undefined' != typeof DataView; - }, - 89473: (t, r, e) => { - var n = e(82229); - t.exports = n(function () { - if ('function' == typeof ArrayBuffer) { - var t = new ArrayBuffer(8); - Object.isExtensible(t) && Object.defineProperty(t, 'a', { value: 8 }); - } - }); - }, - 30491: (t, r, e) => { - 'use strict'; - var n, - o, - i, - a = e(47603), - u = e(95417), - s = e(70412), - c = e(88807), - f = e(21188), - l = e(91854), - h = e(765), - p = e(48427), - v = e(7001), - d = e(29379), - g = e(90189).f, - y = e(13521), - m = e(62421), - b = e(71083), - x = e(96982), - w = e(34436), - S = e(887), - A = S.enforce, - R = S.get, - E = s.Int8Array, - O = E && E.prototype, - I = s.Uint8ClampedArray, - P = I && I.prototype, - T = E && m(E), - j = O && m(O), - L = Object.prototype, - k = s.TypeError, - U = x('toStringTag'), - C = w('TYPED_ARRAY_TAG'), - _ = 'TypedArrayConstructor', - M = a && !!b && 'Opera' !== h(s.opera), - F = !1, - N = { - Int8Array: 1, - Uint8Array: 1, - Uint8ClampedArray: 1, - Int16Array: 2, - Uint16Array: 2, - Int32Array: 4, - Uint32Array: 4, - Float32Array: 4, - Float64Array: 8, - }, - B = { BigInt64Array: 8, BigUint64Array: 8 }, - D = function (t) { - var r = m(t); - if (f(r)) { - var e = R(r); - return e && l(e, _) ? e[_] : D(r); - } - }, - H = function (t) { - if (!f(t)) return !1; - var r = h(t); - return l(N, r) || l(B, r); - }; - for (n in N) (i = (o = s[n]) && o.prototype) ? (A(i)[_] = o) : (M = !1); - for (n in B) (i = (o = s[n]) && o.prototype) && (A(i)[_] = o); - if ( - (!M || !c(T) || T === Function.prototype) && - ((T = function () { - throw k('Incorrect invocation'); - }), - M) - ) - for (n in N) s[n] && b(s[n], T); - if ((!M || !j || j === L) && ((j = T.prototype), M)) for (n in N) s[n] && b(s[n].prototype, j); - if ((M && m(P) !== j && b(P, j), u && !l(j, U))) - for (n in ((F = !0), - g(j, U, { - get: function () { - return f(this) ? this[C] : void 0; - }, - }), - N)) - s[n] && v(s[n], C, n); - t.exports = { - NATIVE_ARRAY_BUFFER_VIEWS: M, - TYPED_ARRAY_TAG: F && C, - aTypedArray: function (t) { - if (H(t)) return t; - throw k('Target is not a typed array'); - }, - aTypedArrayConstructor: function (t) { - if (c(t) && (!b || y(T, t))) return t; - throw k(p(t) + ' is not a typed array constructor'); - }, - exportTypedArrayMethod: function (t, r, e, n) { - if (u) { - if (e) - for (var o in N) { - var i = s[o]; - if (i && l(i.prototype, t)) - try { - delete i.prototype[t]; - } catch (a) { - try { - i.prototype[t] = r; - } catch (c) {} - } - } - (j[t] && !e) || d(j, t, e ? r : (M && O[t]) || r, n); - } - }, - exportTypedArrayStaticMethod: function (t, r, e) { - var n, o; - if (u) { - if (b) { - if (e) - for (n in N) - if ((o = s[n]) && l(o, t)) - try { - delete o[t]; - } catch (i) {} - if (T[t] && !e) return; - try { - return d(T, t, e ? r : (M && T[t]) || r); - } catch (i) {} - } - for (n in N) !(o = s[n]) || (o[t] && !e) || d(o, t, r); - } - }, - getTypedArrayConstructor: D, - isView: function (t) { - if (!f(t)) return !1; - var r = h(t); - return 'DataView' === r || l(N, r) || l(B, r); - }, - isTypedArray: H, - TypedArray: T, - TypedArrayPrototype: j, - }; - }, - 11812: (t, r, e) => { - 'use strict'; - var n = e(70412), - o = e(41765), - i = e(95417), - a = e(47603), - u = e(56815), - s = e(7001), - c = e(87570), - f = e(82229), - l = e(65712), - h = e(32048), - p = e(25664), - v = e(22785), - d = e(23205), - g = e(62421), - y = e(71083), - m = e(58206).f, - b = e(90189).f, - x = e(99369), - w = e(89625), - S = e(43803), - A = e(887), - R = u.PROPER, - E = u.CONFIGURABLE, - O = A.get, - I = A.set, - P = 'ArrayBuffer', - T = 'DataView', - j = 'prototype', - L = 'Wrong index', - k = n[P], - U = k, - C = U && U[j], - _ = n[T], - M = _ && _[j], - F = Object.prototype, - N = n.Array, - B = n.RangeError, - D = o(x), - H = o([].reverse), - z = d.pack, - q = d.unpack, - W = function (t) { - return [255 & t]; - }, - G = function (t) { - return [255 & t, (t >> 8) & 255]; - }, - V = function (t) { - return [255 & t, (t >> 8) & 255, (t >> 16) & 255, (t >> 24) & 255]; - }, - $ = function (t) { - return (t[3] << 24) | (t[2] << 16) | (t[1] << 8) | t[0]; - }, - Y = function (t) { - return z(t, 23, 4); - }, - K = function (t) { - return z(t, 52, 8); - }, - J = function (t, r) { - b(t[j], r, { - get: function () { - return O(this)[r]; - }, - }); - }, - X = function (t, r, e, n) { - var o = v(e), - i = O(t); - if (o + r > i.byteLength) throw B(L); - var a = O(i.buffer).bytes, - u = o + i.byteOffset, - s = w(a, u, u + r); - return n ? s : H(s); - }, - Q = function (t, r, e, n, o, i) { - var a = v(e), - u = O(t); - if (a + r > u.byteLength) throw B(L); - for (var s = O(u.buffer).bytes, c = a + u.byteOffset, f = n(+o), l = 0; l < r; l++) - s[c + l] = f[i ? l : r - l - 1]; - }; - if (a) { - var Z = R && k.name !== P; - if ( - f(function () { - k(1); - }) && - f(function () { - new k(-1); - }) && - !f(function () { - return new k(), new k(1.5), new k(NaN), 1 != k.length || (Z && !E); - }) - ) - Z && E && s(k, 'name', P); - else { - (U = function (t) { - return l(this, C), new k(v(t)); - })[j] = C; - for (var tt, rt = m(k), et = 0; rt.length > et; ) (tt = rt[et++]) in U || s(U, tt, k[tt]); - C.constructor = U; - } - y && g(M) !== F && y(M, F); - var nt = new _(new U(2)), - ot = o(M.setInt8); - nt.setInt8(0, 2147483648), - nt.setInt8(1, 2147483649), - (!nt.getInt8(0) && nt.getInt8(1)) || - c( - M, - { - setInt8: function (t, r) { - ot(this, t, (r << 24) >> 24); - }, - setUint8: function (t, r) { - ot(this, t, (r << 24) >> 24); - }, - }, - { unsafe: !0 }, - ); - } else - (C = (U = function (t) { - l(this, C); - var r = v(t); - I(this, { bytes: D(N(r), 0), byteLength: r }), i || (this.byteLength = r); - })[j]), - (M = (_ = function (t, r, e) { - l(this, M), l(t, C); - var n = O(t).byteLength, - o = h(r); - if (o < 0 || o > n) throw B('Wrong offset'); - if (o + (e = void 0 === e ? n - o : p(e)) > n) throw B('Wrong length'); - I(this, { buffer: t, byteLength: e, byteOffset: o }), - i || ((this.buffer = t), (this.byteLength = e), (this.byteOffset = o)); - })[j]), - i && (J(U, 'byteLength'), J(_, 'buffer'), J(_, 'byteLength'), J(_, 'byteOffset')), - c(M, { - getInt8: function (t) { - return (X(this, 1, t)[0] << 24) >> 24; - }, - getUint8: function (t) { - return X(this, 1, t)[0]; - }, - getInt16: function (t) { - var r = X(this, 2, t, arguments.length > 1 ? arguments[1] : void 0); - return (((r[1] << 8) | r[0]) << 16) >> 16; - }, - getUint16: function (t) { - var r = X(this, 2, t, arguments.length > 1 ? arguments[1] : void 0); - return (r[1] << 8) | r[0]; - }, - getInt32: function (t) { - return $(X(this, 4, t, arguments.length > 1 ? arguments[1] : void 0)); - }, - getUint32: function (t) { - return $(X(this, 4, t, arguments.length > 1 ? arguments[1] : void 0)) >>> 0; - }, - getFloat32: function (t) { - return q(X(this, 4, t, arguments.length > 1 ? arguments[1] : void 0), 23); - }, - getFloat64: function (t) { - return q(X(this, 8, t, arguments.length > 1 ? arguments[1] : void 0), 52); - }, - setInt8: function (t, r) { - Q(this, 1, t, W, r); - }, - setUint8: function (t, r) { - Q(this, 1, t, W, r); - }, - setInt16: function (t, r) { - Q(this, 2, t, G, r, arguments.length > 2 ? arguments[2] : void 0); - }, - setUint16: function (t, r) { - Q(this, 2, t, G, r, arguments.length > 2 ? arguments[2] : void 0); - }, - setInt32: function (t, r) { - Q(this, 4, t, V, r, arguments.length > 2 ? arguments[2] : void 0); - }, - setUint32: function (t, r) { - Q(this, 4, t, V, r, arguments.length > 2 ? arguments[2] : void 0); - }, - setFloat32: function (t, r) { - Q(this, 4, t, Y, r, arguments.length > 2 ? arguments[2] : void 0); - }, - setFloat64: function (t, r) { - Q(this, 8, t, K, r, arguments.length > 2 ? arguments[2] : void 0); - }, - }); - S(U, P), S(_, T), (t.exports = { ArrayBuffer: U, DataView: _ }); - }, - 99369: (t, r, e) => { - 'use strict'; - var n = e(90663), - o = e(90069), - i = e(40406); - t.exports = function (t) { - for ( - var r = n(this), - e = i(r), - a = arguments.length, - u = o(a > 1 ? arguments[1] : void 0, e), - s = a > 2 ? arguments[2] : void 0, - c = void 0 === s ? e : o(s, e); - c > u; - - ) - r[u++] = t; - return r; - }; - }, - 80951: (t, r, e) => { - 'use strict'; - var n = e(7365), - o = e(41924), - i = e(90663), - a = e(44676), - u = e(46196), - s = e(41758), - c = e(40406), - f = e(82519), - l = e(28338), - h = e(63412), - p = Array; - t.exports = function (t) { - var r = i(t), - e = s(this), - v = arguments.length, - d = v > 1 ? arguments[1] : void 0, - g = void 0 !== d; - g && (d = n(d, v > 2 ? arguments[2] : void 0)); - var y, - m, - b, - x, - w, - S, - A = h(r), - R = 0; - if (!A || (this === p && u(A))) - for (y = c(r), m = e ? new this(y) : p(y); y > R; R++) (S = g ? d(r[R], R) : r[R]), f(m, R, S); - else - for (w = (x = l(r, A)).next, m = e ? new this() : []; !(b = o(w, x)).done; R++) - (S = g ? a(x, d, [b.value, R], !0) : b.value), f(m, R, S); - return (m.length = R), m; - }; - }, - 17222: (t, r, e) => { - var n = e(30529), - o = e(90069), - i = e(40406), - a = function (t) { - return function (r, e, a) { - var u, - s = n(r), - c = i(s), - f = o(a, c); - if (t && e != e) { - for (; c > f; ) if ((u = s[f++]) != u) return !0; - } else for (; c > f; f++) if ((t || f in s) && s[f] === e) return t || f || 0; - return !t && -1; - }; - }; - t.exports = { includes: a(!0), indexOf: a(!1) }; - }, - 99248: (t, r, e) => { - var n = e(7365), - o = e(41765), - i = e(21197), - a = e(90663), - u = e(40406), - s = e(69164), - c = o([].push), - f = function (t) { - var r = 1 == t, - e = 2 == t, - o = 3 == t, - f = 4 == t, - l = 6 == t, - h = 7 == t, - p = 5 == t || l; - return function (v, d, g, y) { - for ( - var m, - b, - x = a(v), - w = i(x), - S = n(d, g), - A = u(w), - R = 0, - E = y || s, - O = r ? E(v, A) : e || h ? E(v, 0) : void 0; - A > R; - R++ - ) - if ((p || R in w) && ((b = S((m = w[R]), R, x)), t)) - if (r) O[R] = b; - else if (b) - switch (t) { - case 3: - return !0; - case 5: - return m; - case 6: - return R; - case 2: - c(O, m); - } - else - switch (t) { - case 4: - return !1; - case 7: - c(O, m); - } - return l ? -1 : o || f ? f : O; - }; - }; - t.exports = { - forEach: f(0), - map: f(1), - filter: f(2), - some: f(3), - every: f(4), - find: f(5), - findIndex: f(6), - filterReject: f(7), - }; - }, - 4789: (t, r, e) => { - 'use strict'; - var n = e(82229); - t.exports = function (t, r) { - var e = [][t]; - return ( - !!e && - n(function () { - e.call( - null, - r || - function () { - return 1; - }, - 1, - ); - }) - ); - }; - }, - 31136: (t, r, e) => { - var n = e(70481), - o = e(90663), - i = e(21197), - a = e(40406), - u = TypeError, - s = function (t) { - return function (r, e, s, c) { - n(e); - var f = o(r), - l = i(f), - h = a(f), - p = t ? h - 1 : 0, - v = t ? -1 : 1; - if (s < 2) - for (;;) { - if (p in l) { - (c = l[p]), (p += v); - break; - } - if (((p += v), t ? p < 0 : h <= p)) throw u('Reduce of empty array with no initial value'); - } - for (; t ? p >= 0 : h > p; p += v) p in l && (c = e(c, l[p], p, f)); - return c; - }; - }; - t.exports = { left: s(!1), right: s(!0) }; - }, - 89625: (t, r, e) => { - var n = e(90069), - o = e(40406), - i = e(82519), - a = Array, - u = Math.max; - t.exports = function (t, r, e) { - for (var s = o(t), c = n(r, s), f = n(void 0 === e ? s : e, s), l = a(u(f - c, 0)), h = 0; c < f; c++, h++) - i(l, h, t[c]); - return (l.length = h), l; - }; - }, - 96784: (t, r, e) => { - var n = e(41765); - t.exports = n([].slice); - }, - 42771: (t, r, e) => { - var n = e(89625), - o = Math.floor, - i = function (t, r) { - var e = t.length, - s = o(e / 2); - return e < 8 ? a(t, r) : u(t, i(n(t, 0, s), r), i(n(t, s), r), r); - }, - a = function (t, r) { - for (var e, n, o = t.length, i = 1; i < o; ) { - for (n = i, e = t[i]; n && r(t[n - 1], e) > 0; ) t[n] = t[--n]; - n !== i++ && (t[n] = e); - } - return t; - }, - u = function (t, r, e, n) { - for (var o = r.length, i = e.length, a = 0, u = 0; a < o || u < i; ) - t[a + u] = a < o && u < i ? (n(r[a], e[u]) <= 0 ? r[a++] : e[u++]) : a < o ? r[a++] : e[u++]; - return t; - }; - t.exports = i; - }, - 37084: (t, r, e) => { - var n = e(21528), - o = e(41758), - i = e(21188), - a = e(96982)('species'), - u = Array; - t.exports = function (t) { - var r; - return ( - n(t) && - ((r = t.constructor), - ((o(r) && (r === u || n(r.prototype))) || (i(r) && null === (r = r[a]))) && (r = void 0)), - void 0 === r ? u : r - ); - }; - }, - 69164: (t, r, e) => { - var n = e(37084); - t.exports = function (t, r) { - return new (n(t))(0 === r ? 0 : r); - }; - }, - 44676: (t, r, e) => { - var n = e(71843), - o = e(4593); - t.exports = function (t, r, e, i) { - try { - return i ? r(n(e)[0], e[1]) : r(e); - } catch (a) { - o(t, 'throw', a); - } - }; - }, - 3800: (t, r, e) => { - var n = e(96982)('iterator'), - o = !1; - try { - var i = 0, - a = { - next: function () { - return { done: !!i++ }; - }, - return: function () { - o = !0; - }, - }; - (a[n] = function () { - return this; - }), - Array.from(a, function () { - throw 2; - }); - } catch (u) {} - t.exports = function (t, r) { - if (!r && !o) return !1; - var e = !1; - try { - var i = {}; - (i[n] = function () { - return { - next: function () { - return { done: (e = !0) }; - }, - }; - }), - t(i); - } catch (u) {} - return e; - }; - }, - 29682: (t, r, e) => { - var n = e(24126), - o = n({}.toString), - i = n(''.slice); - t.exports = function (t) { - return i(o(t), 8, -1); - }; - }, - 765: (t, r, e) => { - var n = e(50089), - o = e(88807), - i = e(29682), - a = e(96982)('toStringTag'), - u = Object, - s = - 'Arguments' == - i( - (function () { - return arguments; - })(), - ); - t.exports = n - ? i - : function (t) { - var r, e, n; - return void 0 === t - ? 'Undefined' - : null === t - ? 'Null' - : 'string' == - typeof (e = (function (t, r) { - try { - return t[r]; - } catch (e) {} - })((r = u(t)), a)) - ? e - : s - ? i(r) - : 'Object' == (n = i(r)) && o(r.callee) - ? 'Arguments' - : n; - }; - }, - 31575: (t, r, e) => { - 'use strict'; - var n = e(41765), - o = e(87570), - i = e(9727).getWeakData, - a = e(65712), - u = e(71843), - s = e(39989), - c = e(21188), - f = e(98102), - l = e(99248), - h = e(91854), - p = e(887), - v = p.set, - d = p.getterFor, - g = l.find, - y = l.findIndex, - m = n([].splice), - b = 0, - x = function (t) { - return t.frozen || (t.frozen = new w()); - }, - w = function () { - this.entries = []; - }, - S = function (t, r) { - return g(t.entries, function (t) { - return t[0] === r; - }); - }; - (w.prototype = { - get: function (t) { - var r = S(this, t); - if (r) return r[1]; - }, - has: function (t) { - return !!S(this, t); - }, - set: function (t, r) { - var e = S(this, t); - e ? (e[1] = r) : this.entries.push([t, r]); - }, - delete: function (t) { - var r = y(this.entries, function (r) { - return r[0] === t; - }); - return ~r && m(this.entries, r, 1), !!~r; - }, - }), - (t.exports = { - getConstructor: function (t, r, e, n) { - var l = t(function (t, o) { - a(t, p), v(t, { type: r, id: b++, frozen: void 0 }), s(o) || f(o, t[n], { that: t, AS_ENTRIES: e }); - }), - p = l.prototype, - g = d(r), - y = function (t, r, e) { - var n = g(t), - o = i(u(r), !0); - return !0 === o ? x(n).set(r, e) : (o[n.id] = e), t; - }; - return ( - o(p, { - delete: function (t) { - var r = g(this); - if (!c(t)) return !1; - var e = i(t); - return !0 === e ? x(r).delete(t) : e && h(e, r.id) && delete e[r.id]; - }, - has: function (t) { - var r = g(this); - if (!c(t)) return !1; - var e = i(t); - return !0 === e ? x(r).has(t) : e && h(e, r.id); - }, - }), - o( - p, - e - ? { - get: function (t) { - var r = g(this); - if (c(t)) { - var e = i(t); - return !0 === e ? x(r).get(t) : e ? e[r.id] : void 0; - } - }, - set: function (t, r) { - return y(this, t, r); - }, - } - : { - add: function (t) { - return y(this, t, !0); - }, - }, - ), - l - ); - }, - }); - }, - 70175: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(70412), - i = e(41765), - a = e(76777), - u = e(29379), - s = e(9727), - c = e(98102), - f = e(65712), - l = e(88807), - h = e(39989), - p = e(21188), - v = e(82229), - d = e(3800), - g = e(43803), - y = e(42325); - t.exports = function (t, r, e) { - var m = -1 !== t.indexOf('Map'), - b = -1 !== t.indexOf('Weak'), - x = m ? 'set' : 'add', - w = o[t], - S = w && w.prototype, - A = w, - R = {}, - E = function (t) { - var r = i(S[t]); - u( - S, - t, - 'add' == t - ? function (t) { - return r(this, 0 === t ? 0 : t), this; - } - : 'delete' == t - ? function (t) { - return !(b && !p(t)) && r(this, 0 === t ? 0 : t); - } - : 'get' == t - ? function (t) { - return b && !p(t) ? void 0 : r(this, 0 === t ? 0 : t); - } - : 'has' == t - ? function (t) { - return !(b && !p(t)) && r(this, 0 === t ? 0 : t); - } - : function (t, e) { - return r(this, 0 === t ? 0 : t, e), this; - }, - ); - }; - if ( - a( - t, - !l(w) || - !( - b || - (S.forEach && - !v(function () { - new w().entries().next(); - })) - ), - ) - ) - (A = e.getConstructor(r, t, m, x)), s.enable(); - else if (a(t, !0)) { - var O = new A(), - I = O[x](b ? {} : -0, 1) != O, - P = v(function () { - O.has(1); - }), - T = d(function (t) { - new w(t); - }), - j = - !b && - v(function () { - for (var t = new w(), r = 5; r--; ) t[x](r, r); - return !t.has(-0); - }); - T || - (((A = r(function (t, r) { - f(t, S); - var e = y(new w(), t, A); - return h(r) || c(r, e[x], { that: e, AS_ENTRIES: m }), e; - })).prototype = S), - (S.constructor = A)), - (P || j) && (E('delete'), E('has'), m && E('get')), - (j || I) && E(x), - b && S.clear && delete S.clear; - } - return (R[t] = A), n({ global: !0, constructor: !0, forced: A != w }, R), g(A, t), b || e.setStrong(A, t, m), A; - }; - }, - 12283: (t, r, e) => { - var n = e(91854), - o = e(72929), - i = e(68098), - a = e(90189); - t.exports = function (t, r, e) { - for (var u = o(r), s = a.f, c = i.f, f = 0; f < u.length; f++) { - var l = u[f]; - n(t, l) || (e && n(e, l)) || s(t, l, c(r, l)); - } - }; - }, - 59981: (t, r, e) => { - var n = e(96982)('match'); - t.exports = function (t) { - var r = /./; - try { - '/./'[t](r); - } catch (e) { - try { - return (r[n] = !1), '/./'[t](r); - } catch (o) {} - } - return !1; - }; - }, - 80093: (t, r, e) => { - var n = e(82229); - t.exports = !n(function () { - function t() {} - return (t.prototype.constructor = null), Object.getPrototypeOf(new t()) !== t.prototype; - }); - }, - 74903: t => { - t.exports = function (t, r) { - return { value: t, done: r }; - }; - }, - 7001: (t, r, e) => { - var n = e(95417), - o = e(90189), - i = e(413); - t.exports = n - ? function (t, r, e) { - return o.f(t, r, i(1, e)); - } - : function (t, r, e) { - return (t[r] = e), t; - }; - }, - 413: t => { - t.exports = function (t, r) { - return { enumerable: !(1 & t), configurable: !(2 & t), writable: !(4 & t), value: r }; - }; - }, - 82519: (t, r, e) => { - 'use strict'; - var n = e(37712), - o = e(90189), - i = e(413); - t.exports = function (t, r, e) { - var a = n(r); - a in t ? o.f(t, a, i(0, e)) : (t[a] = e); - }; - }, - 10787: (t, r, e) => { - var n = e(93450), - o = e(90189); - t.exports = function (t, r, e) { - return e.get && n(e.get, r, { getter: !0 }), e.set && n(e.set, r, { setter: !0 }), o.f(t, r, e); - }; - }, - 29379: (t, r, e) => { - var n = e(88807), - o = e(90189), - i = e(93450), - a = e(26139); - t.exports = function (t, r, e, u) { - u || (u = {}); - var s = u.enumerable, - c = void 0 !== u.name ? u.name : r; - if ((n(e) && i(e, c, u), u.global)) s ? (t[r] = e) : a(r, e); - else { - try { - u.unsafe ? t[r] && (s = !0) : delete t[r]; - } catch (f) {} - s - ? (t[r] = e) - : o.f(t, r, { value: e, enumerable: !1, configurable: !u.nonConfigurable, writable: !u.nonWritable }); - } - return t; - }; - }, - 87570: (t, r, e) => { - var n = e(29379); - t.exports = function (t, r, e) { - for (var o in r) n(t, o, r[o], e); - return t; - }; - }, - 26139: (t, r, e) => { - var n = e(70412), - o = Object.defineProperty; - t.exports = function (t, r) { - try { - o(n, t, { value: r, configurable: !0, writable: !0 }); - } catch (e) { - n[t] = r; - } - return r; - }; - }, - 7351: (t, r, e) => { - 'use strict'; - var n = e(48427), - o = TypeError; - t.exports = function (t, r) { - if (!delete t[r]) throw o('Cannot delete property ' + n(r) + ' of ' + n(t)); - }; - }, - 95417: (t, r, e) => { - var n = e(82229); - t.exports = !n(function () { - return ( - 7 != - Object.defineProperty({}, 1, { - get: function () { - return 7; - }, - })[1] - ); - }); - }, - 89338: t => { - var r = 'object' == typeof document && document.all, - e = void 0 === r && void 0 !== r; - t.exports = { all: r, IS_HTMLDDA: e }; - }, - 36254: (t, r, e) => { - var n = e(70412), - o = e(21188), - i = n.document, - a = o(i) && o(i.createElement); - t.exports = function (t) { - return a ? i.createElement(t) : {}; - }; - }, - 25811: t => { - var r = TypeError; - t.exports = function (t) { - if (t > 9007199254740991) throw r('Maximum allowed index exceeded'); - return t; - }; - }, - 42706: t => { - t.exports = { - CSSRuleList: 0, - CSSStyleDeclaration: 0, - CSSValueList: 0, - ClientRectList: 0, - DOMRectList: 0, - DOMStringList: 0, - DOMTokenList: 1, - DataTransferItemList: 0, - FileList: 0, - HTMLAllCollection: 0, - HTMLCollection: 0, - HTMLFormElement: 0, - HTMLSelectElement: 0, - MediaList: 0, - MimeTypeArray: 0, - NamedNodeMap: 0, - NodeList: 1, - PaintRequestList: 0, - Plugin: 0, - PluginArray: 0, - SVGLengthList: 0, - SVGNumberList: 0, - SVGPathSegList: 0, - SVGPointList: 0, - SVGStringList: 0, - SVGTransformList: 0, - SourceBufferList: 0, - StyleSheetList: 0, - TextTrackCueList: 0, - TextTrackList: 0, - TouchList: 0, - }; - }, - 92076: (t, r, e) => { - var n = e(36254)('span').classList, - o = n && n.constructor && n.constructor.prototype; - t.exports = o === Object.prototype ? void 0 : o; - }, - 89443: (t, r, e) => { - var n = e(86378).match(/firefox\/(\d+)/i); - t.exports = !!n && +n[1]; - }, - 18573: (t, r, e) => { - var n = e(27158), - o = e(84543); - t.exports = !n && !o && 'object' == typeof window && 'object' == typeof document; - }, - 27158: t => { - t.exports = 'object' == typeof Deno && Deno && 'object' == typeof Deno.version; - }, - 17608: (t, r, e) => { - var n = e(86378); - t.exports = /MSIE|Trident/.test(n); - }, - 44500: (t, r, e) => { - var n = e(86378), - o = e(70412); - t.exports = /ipad|iphone|ipod/i.test(n) && void 0 !== o.Pebble; - }, - 3148: (t, r, e) => { - var n = e(86378); - t.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(n); - }, - 84543: (t, r, e) => { - var n = e(29682), - o = e(70412); - t.exports = 'process' == n(o.process); - }, - 32415: (t, r, e) => { - var n = e(86378); - t.exports = /web0s(?!.*chrome)/i.test(n); - }, - 86378: (t, r, e) => { - var n = e(52228); - t.exports = n('navigator', 'userAgent') || ''; - }, - 44905: (t, r, e) => { - var n, - o, - i = e(70412), - a = e(86378), - u = i.process, - s = i.Deno, - c = (u && u.versions) || (s && s.version), - f = c && c.v8; - f && (o = (n = f.split('.'))[0] > 0 && n[0] < 4 ? 1 : +(n[0] + n[1])), - !o && a && (!(n = a.match(/Edge\/(\d+)/)) || n[1] >= 74) && (n = a.match(/Chrome\/(\d+)/)) && (o = +n[1]), - (t.exports = o); - }, - 58452: (t, r, e) => { - var n = e(86378).match(/AppleWebKit\/(\d+)\./); - t.exports = !!n && +n[1]; - }, - 96410: t => { - t.exports = [ - 'constructor', - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toLocaleString', - 'toString', - 'valueOf', - ]; - }, - 72698: (t, r, e) => { - var n = e(70412), - o = e(68098).f, - i = e(7001), - a = e(29379), - u = e(26139), - s = e(12283), - c = e(76777); - t.exports = function (t, r) { - var e, - f, - l, - h, - p, - v = t.target, - d = t.global, - g = t.stat; - if ((e = d ? n : g ? n[v] || u(v, {}) : (n[v] || {}).prototype)) - for (f in r) { - if ( - ((h = r[f]), - (l = t.dontCallGetSet ? (p = o(e, f)) && p.value : e[f]), - !c(d ? f : v + (g ? '.' : '#') + f, t.forced) && void 0 !== l) - ) { - if (typeof h == typeof l) continue; - s(h, l); - } - (t.sham || (l && l.sham)) && i(h, 'sham', !0), a(e, f, h, t); - } - }; - }, - 82229: t => { - t.exports = function (t) { - try { - return !!t(); - } catch (r) { - return !0; - } - }; - }, - 11323: (t, r, e) => { - 'use strict'; - e(9883); - var n = e(41765), - o = e(29379), - i = e(38157), - a = e(82229), - u = e(96982), - s = e(7001), - c = u('species'), - f = RegExp.prototype; - t.exports = function (t, r, e, l) { - var h = u(t), - p = !a(function () { - var r = {}; - return ( - (r[h] = function () { - return 7; - }), - 7 != ''[t](r) - ); - }), - v = - p && - !a(function () { - var r = !1, - e = /a/; - return ( - 'split' === t && - (((e = {}).constructor = {}), - (e.constructor[c] = function () { - return e; - }), - (e.flags = ''), - (e[h] = /./[h])), - (e.exec = function () { - return (r = !0), null; - }), - e[h](''), - !r - ); - }); - if (!p || !v || e) { - var d = n(/./[h]), - g = r(h, ''[t], function (t, r, e, o, a) { - var u = n(t), - s = r.exec; - return s === i || s === f.exec - ? p && !a - ? { done: !0, value: d(r, e, o) } - : { done: !0, value: u(e, r, o) } - : { done: !1 }; - }); - o(String.prototype, t, g[0]), o(f, h, g[1]); - } - l && s(f[h], 'sham', !0); - }; - }, - 74596: (t, r, e) => { - 'use strict'; - var n = e(21528), - o = e(40406), - i = e(25811), - a = e(7365), - u = function (t, r, e, s, c, f, l, h) { - for (var p, v, d = c, g = 0, y = !!l && a(l, h); g < s; ) - g in e && - ((p = y ? y(e[g], g, r) : e[g]), - f > 0 && n(p) ? ((v = o(p)), (d = u(t, r, p, v, d, f - 1) - 1)) : (i(d + 1), (t[d] = p)), - d++), - g++; - return d; - }; - t.exports = u; - }, - 68565: (t, r, e) => { - var n = e(82229); - t.exports = !n(function () { - return Object.isExtensible(Object.preventExtensions({})); - }); - }, - 90675: (t, r, e) => { - var n = e(43524), - o = Function.prototype, - i = o.apply, - a = o.call; - t.exports = - ('object' == typeof Reflect && Reflect.apply) || - (n - ? a.bind(i) - : function () { - return a.apply(i, arguments); - }); - }, - 7365: (t, r, e) => { - var n = e(41765), - o = e(70481), - i = e(43524), - a = n(n.bind); - t.exports = function (t, r) { - return ( - o(t), - void 0 === r - ? t - : i - ? a(t, r) - : function () { - return t.apply(r, arguments); - } - ); - }; - }, - 43524: (t, r, e) => { - var n = e(82229); - t.exports = !n(function () { - var t = function () {}.bind(); - return 'function' != typeof t || t.hasOwnProperty('prototype'); - }); - }, - 41924: (t, r, e) => { - var n = e(43524), - o = Function.prototype.call; - t.exports = n - ? o.bind(o) - : function () { - return o.apply(o, arguments); - }; - }, - 56815: (t, r, e) => { - var n = e(95417), - o = e(91854), - i = Function.prototype, - a = n && Object.getOwnPropertyDescriptor, - u = o(i, 'name'), - s = u && 'something' === function () {}.name, - c = u && (!n || (n && a(i, 'name').configurable)); - t.exports = { EXISTS: u, PROPER: s, CONFIGURABLE: c }; - }, - 24126: (t, r, e) => { - var n = e(43524), - o = Function.prototype, - i = o.call, - a = n && o.bind.bind(i, i); - t.exports = n - ? a - : function (t) { - return function () { - return i.apply(t, arguments); - }; - }; - }, - 41765: (t, r, e) => { - var n = e(29682), - o = e(24126); - t.exports = function (t) { - if ('Function' === n(t)) return o(t); - }; - }, - 52228: (t, r, e) => { - var n = e(70412), - o = e(88807); - t.exports = function (t, r) { - return arguments.length < 2 ? ((e = n[t]), o(e) ? e : void 0) : n[t] && n[t][r]; - var e; - }; - }, - 63412: (t, r, e) => { - var n = e(765), - o = e(89423), - i = e(39989), - a = e(72429), - u = e(96982)('iterator'); - t.exports = function (t) { - if (!i(t)) return o(t, u) || o(t, '@@iterator') || a[n(t)]; - }; - }, - 28338: (t, r, e) => { - var n = e(41924), - o = e(70481), - i = e(71843), - a = e(48427), - u = e(63412), - s = TypeError; - t.exports = function (t, r) { - var e = arguments.length < 2 ? u(t) : r; - if (o(e)) return i(n(e, t)); - throw s(a(t) + ' is not iterable'); - }; - }, - 89423: (t, r, e) => { - var n = e(70481), - o = e(39989); - t.exports = function (t, r) { - var e = t[r]; - return o(e) ? void 0 : n(e); - }; - }, - 80556: (t, r, e) => { - var n = e(41765), - o = e(90663), - i = Math.floor, - a = n(''.charAt), - u = n(''.replace), - s = n(''.slice), - c = /\$([$&'`]|\d{1,2}|<[^>]*>)/g, - f = /\$([$&'`]|\d{1,2})/g; - t.exports = function (t, r, e, n, l, h) { - var p = e + t.length, - v = n.length, - d = f; - return ( - void 0 !== l && ((l = o(l)), (d = c)), - u(h, d, function (o, u) { - var c; - switch (a(u, 0)) { - case '$': - return '$'; - case '&': - return t; - case '`': - return s(r, 0, e); - case "'": - return s(r, p); - case '<': - c = l[s(u, 1, -1)]; - break; - default: - var f = +u; - if (0 === f) return o; - if (f > v) { - var h = i(f / 10); - return 0 === h ? o : h <= v ? (void 0 === n[h - 1] ? a(u, 1) : n[h - 1] + a(u, 1)) : o; - } - c = n[f - 1]; - } - return void 0 === c ? '' : c; - }) - ); - }; - }, - 70412: (t, r, e) => { - var n = function (t) { - return t && t.Math == Math && t; - }; - t.exports = - n('object' == typeof globalThis && globalThis) || - n('object' == typeof window && window) || - n('object' == typeof self && self) || - n('object' == typeof e.g && e.g) || - (function () { - return this; - })() || - Function('return this')(); - }, - 91854: (t, r, e) => { - var n = e(41765), - o = e(90663), - i = n({}.hasOwnProperty); - t.exports = - Object.hasOwn || - function (t, r) { - return i(o(t), r); - }; - }, - 64690: t => { - t.exports = {}; - }, - 19630: (t, r, e) => { - var n = e(70412); - t.exports = function (t, r) { - var e = n.console; - e && e.error && (1 == arguments.length ? e.error(t) : e.error(t, r)); - }; - }, - 95439: (t, r, e) => { - var n = e(52228); - t.exports = n('document', 'documentElement'); - }, - 94469: (t, r, e) => { - var n = e(95417), - o = e(82229), - i = e(36254); - t.exports = - !n && - !o(function () { - return ( - 7 != - Object.defineProperty(i('div'), 'a', { - get: function () { - return 7; - }, - }).a - ); - }); - }, - 23205: t => { - var r = Array, - e = Math.abs, - n = Math.pow, - o = Math.floor, - i = Math.log, - a = Math.LN2; - t.exports = { - pack: function (t, u, s) { - var c, - f, - l, - h = r(s), - p = 8 * s - u - 1, - v = (1 << p) - 1, - d = v >> 1, - g = 23 === u ? n(2, -24) - n(2, -77) : 0, - y = t < 0 || (0 === t && 1 / t < 0) ? 1 : 0, - m = 0; - for ( - (t = e(t)) != t || t === 1 / 0 - ? ((f = t != t ? 1 : 0), (c = v)) - : ((c = o(i(t) / a)), - t * (l = n(2, -c)) < 1 && (c--, (l *= 2)), - (t += c + d >= 1 ? g / l : g * n(2, 1 - d)) * l >= 2 && (c++, (l /= 2)), - c + d >= v - ? ((f = 0), (c = v)) - : c + d >= 1 - ? ((f = (t * l - 1) * n(2, u)), (c += d)) - : ((f = t * n(2, d - 1) * n(2, u)), (c = 0))); - u >= 8; - - ) - (h[m++] = 255 & f), (f /= 256), (u -= 8); - for (c = (c << u) | f, p += u; p > 0; ) (h[m++] = 255 & c), (c /= 256), (p -= 8); - return (h[--m] |= 128 * y), h; - }, - unpack: function (t, r) { - var e, - o = t.length, - i = 8 * o - r - 1, - a = (1 << i) - 1, - u = a >> 1, - s = i - 7, - c = o - 1, - f = t[c--], - l = 127 & f; - for (f >>= 7; s > 0; ) (l = 256 * l + t[c--]), (s -= 8); - for (e = l & ((1 << -s) - 1), l >>= -s, s += r; s > 0; ) (e = 256 * e + t[c--]), (s -= 8); - if (0 === l) l = 1 - u; - else { - if (l === a) return e ? NaN : f ? -1 / 0 : 1 / 0; - (e += n(2, r)), (l -= u); - } - return (f ? -1 : 1) * e * n(2, l - r); - }, - }; - }, - 21197: (t, r, e) => { - var n = e(41765), - o = e(82229), - i = e(29682), - a = Object, - u = n(''.split); - t.exports = o(function () { - return !a('z').propertyIsEnumerable(0); - }) - ? function (t) { - return 'String' == i(t) ? u(t, '') : a(t); - } - : a; - }, - 42325: (t, r, e) => { - var n = e(88807), - o = e(21188), - i = e(71083); - t.exports = function (t, r, e) { - var a, u; - return i && n((a = r.constructor)) && a !== e && o((u = a.prototype)) && u !== e.prototype && i(t, u), t; - }; - }, - 60227: (t, r, e) => { - var n = e(41765), - o = e(88807), - i = e(81502), - a = n(Function.toString); - o(i.inspectSource) || - (i.inspectSource = function (t) { - return a(t); - }), - (t.exports = i.inspectSource); - }, - 9727: (t, r, e) => { - var n = e(72698), - o = e(41765), - i = e(64690), - a = e(21188), - u = e(91854), - s = e(90189).f, - c = e(58206), - f = e(21079), - l = e(47305), - h = e(34436), - p = e(68565), - v = !1, - d = h('meta'), - g = 0, - y = function (t) { - s(t, d, { value: { objectID: 'O' + g++, weakData: {} } }); - }, - m = (t.exports = { - enable: function () { - (m.enable = function () {}), (v = !0); - var t = c.f, - r = o([].splice), - e = {}; - (e[d] = 1), - t(e).length && - ((c.f = function (e) { - for (var n = t(e), o = 0, i = n.length; o < i; o++) - if (n[o] === d) { - r(n, o, 1); - break; - } - return n; - }), - n({ target: 'Object', stat: !0, forced: !0 }, { getOwnPropertyNames: f.f })); - }, - fastKey: function (t, r) { - if (!a(t)) return 'symbol' == typeof t ? t : ('string' == typeof t ? 'S' : 'P') + t; - if (!u(t, d)) { - if (!l(t)) return 'F'; - if (!r) return 'E'; - y(t); - } - return t[d].objectID; - }, - getWeakData: function (t, r) { - if (!u(t, d)) { - if (!l(t)) return !0; - if (!r) return !1; - y(t); - } - return t[d].weakData; - }, - onFreeze: function (t) { - return p && v && l(t) && !u(t, d) && y(t), t; - }, - }); - i[d] = !0; - }, - 887: (t, r, e) => { - var n, - o, - i, - a = e(17023), - u = e(70412), - s = e(21188), - c = e(7001), - f = e(91854), - l = e(81502), - h = e(5350), - p = e(64690), - v = 'Object already initialized', - d = u.TypeError, - g = u.WeakMap; - if (a || l.state) { - var y = l.state || (l.state = new g()); - (y.get = y.get), - (y.has = y.has), - (y.set = y.set), - (n = function (t, r) { - if (y.has(t)) throw d(v); - return (r.facade = t), y.set(t, r), r; - }), - (o = function (t) { - return y.get(t) || {}; - }), - (i = function (t) { - return y.has(t); - }); - } else { - var m = h('state'); - (p[m] = !0), - (n = function (t, r) { - if (f(t, m)) throw d(v); - return (r.facade = t), c(t, m, r), r; - }), - (o = function (t) { - return f(t, m) ? t[m] : {}; - }), - (i = function (t) { - return f(t, m); - }); - } - t.exports = { - set: n, - get: o, - has: i, - enforce: function (t) { - return i(t) ? o(t) : n(t, {}); - }, - getterFor: function (t) { - return function (r) { - var e; - if (!s(r) || (e = o(r)).type !== t) throw d('Incompatible receiver, ' + t + ' required'); - return e; - }; - }, - }; - }, - 46196: (t, r, e) => { - var n = e(96982), - o = e(72429), - i = n('iterator'), - a = Array.prototype; - t.exports = function (t) { - return void 0 !== t && (o.Array === t || a[i] === t); - }; - }, - 21528: (t, r, e) => { - var n = e(29682); - t.exports = - Array.isArray || - function (t) { - return 'Array' == n(t); - }; - }, - 59537: (t, r, e) => { - var n = e(765), - o = e(41765)(''.slice); - t.exports = function (t) { - return 'Big' === o(n(t), 0, 3); - }; - }, - 88807: (t, r, e) => { - var n = e(89338), - o = n.all; - t.exports = n.IS_HTMLDDA - ? function (t) { - return 'function' == typeof t || t === o; - } - : function (t) { - return 'function' == typeof t; - }; - }, - 41758: (t, r, e) => { - var n = e(41765), - o = e(82229), - i = e(88807), - a = e(765), - u = e(52228), - s = e(60227), - c = function () {}, - f = [], - l = u('Reflect', 'construct'), - h = /^\s*(?:class|function)\b/, - p = n(h.exec), - v = !h.exec(c), - d = function (t) { - if (!i(t)) return !1; - try { - return l(c, f, t), !0; - } catch (r) { - return !1; - } - }, - g = function (t) { - if (!i(t)) return !1; - switch (a(t)) { - case 'AsyncFunction': - case 'GeneratorFunction': - case 'AsyncGeneratorFunction': - return !1; - } - try { - return v || !!p(h, s(t)); - } catch (r) { - return !0; - } - }; - (g.sham = !0), - (t.exports = - !l || - o(function () { - var t; - return ( - d(d.call) || - !d(Object) || - !d(function () { - t = !0; - }) || - t - ); - }) - ? g - : d); - }, - 33080: (t, r, e) => { - var n = e(91854); - t.exports = function (t) { - return void 0 !== t && (n(t, 'value') || n(t, 'writable')); - }; - }, - 76777: (t, r, e) => { - var n = e(82229), - o = e(88807), - i = /#|\.prototype\./, - a = function (t, r) { - var e = s[u(t)]; - return e == f || (e != c && (o(r) ? n(r) : !!r)); - }, - u = (a.normalize = function (t) { - return String(t).replace(i, '.').toLowerCase(); - }), - s = (a.data = {}), - c = (a.NATIVE = 'N'), - f = (a.POLYFILL = 'P'); - t.exports = a; - }, - 63272: (t, r, e) => { - var n = e(21188), - o = Math.floor; - t.exports = - Number.isInteger || - function (t) { - return !n(t) && isFinite(t) && o(t) === t; - }; - }, - 39989: t => { - t.exports = function (t) { - return null == t; - }; - }, - 21188: (t, r, e) => { - var n = e(88807), - o = e(89338), - i = o.all; - t.exports = o.IS_HTMLDDA - ? function (t) { - return 'object' == typeof t ? null !== t : n(t) || t === i; - } - : function (t) { - return 'object' == typeof t ? null !== t : n(t); - }; - }, - 8588: t => { - t.exports = !1; - }, - 16372: (t, r, e) => { - var n = e(21188), - o = e(29682), - i = e(96982)('match'); - t.exports = function (t) { - var r; - return n(t) && (void 0 !== (r = t[i]) ? !!r : 'RegExp' == o(t)); - }; - }, - 29844: (t, r, e) => { - var n = e(52228), - o = e(88807), - i = e(13521), - a = e(39696), - u = Object; - t.exports = a - ? function (t) { - return 'symbol' == typeof t; - } - : function (t) { - var r = n('Symbol'); - return o(r) && i(r.prototype, u(t)); - }; - }, - 98102: (t, r, e) => { - var n = e(7365), - o = e(41924), - i = e(71843), - a = e(48427), - u = e(46196), - s = e(40406), - c = e(13521), - f = e(28338), - l = e(63412), - h = e(4593), - p = TypeError, - v = function (t, r) { - (this.stopped = t), (this.result = r); - }, - d = v.prototype; - t.exports = function (t, r, e) { - var g, - y, - m, - b, - x, - w, - S, - A = e && e.that, - R = !(!e || !e.AS_ENTRIES), - E = !(!e || !e.IS_RECORD), - O = !(!e || !e.IS_ITERATOR), - I = !(!e || !e.INTERRUPTED), - P = n(r, A), - T = function (t) { - return g && h(g, 'normal', t), new v(!0, t); - }, - j = function (t) { - return R ? (i(t), I ? P(t[0], t[1], T) : P(t[0], t[1])) : I ? P(t, T) : P(t); - }; - if (E) g = t.iterator; - else if (O) g = t; - else { - if (!(y = l(t))) throw p(a(t) + ' is not iterable'); - if (u(y)) { - for (m = 0, b = s(t); b > m; m++) if ((x = j(t[m])) && c(d, x)) return x; - return new v(!1); - } - g = f(t, y); - } - for (w = E ? t.next : g.next; !(S = o(w, g)).done; ) { - try { - x = j(S.value); - } catch (L) { - h(g, 'throw', L); - } - if ('object' == typeof x && x && c(d, x)) return x; - } - return new v(!1); - }; - }, - 4593: (t, r, e) => { - var n = e(41924), - o = e(71843), - i = e(89423); - t.exports = function (t, r, e) { - var a, u; - o(t); - try { - if (!(a = i(t, 'return'))) { - if ('throw' === r) throw e; - return e; - } - a = n(a, t); - } catch (s) { - (u = !0), (a = s); - } - if ('throw' === r) throw e; - if (u) throw a; - return o(a), e; - }; - }, - 57015: (t, r, e) => { - 'use strict'; - var n = e(56194).IteratorPrototype, - o = e(56042), - i = e(413), - a = e(43803), - u = e(72429), - s = function () { - return this; - }; - t.exports = function (t, r, e, c) { - var f = r + ' Iterator'; - return (t.prototype = o(n, { next: i(+!c, e) })), a(t, f, !1, !0), (u[f] = s), t; - }; - }, - 61666: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41924), - i = e(8588), - a = e(56815), - u = e(88807), - s = e(57015), - c = e(62421), - f = e(71083), - l = e(43803), - h = e(7001), - p = e(29379), - v = e(96982), - d = e(72429), - g = e(56194), - y = a.PROPER, - m = a.CONFIGURABLE, - b = g.IteratorPrototype, - x = g.BUGGY_SAFARI_ITERATORS, - w = v('iterator'), - S = 'keys', - A = 'values', - R = 'entries', - E = function () { - return this; - }; - t.exports = function (t, r, e, a, v, g, O) { - s(e, r, a); - var I, - P, - T, - j = function (t) { - if (t === v && _) return _; - if (!x && t in U) return U[t]; - switch (t) { - case S: - case A: - case R: - return function () { - return new e(this, t); - }; - } - return function () { - return new e(this); - }; - }, - L = r + ' Iterator', - k = !1, - U = t.prototype, - C = U[w] || U['@@iterator'] || (v && U[v]), - _ = (!x && C) || j(v), - M = ('Array' == r && U.entries) || C; - if ( - (M && - (I = c(M.call(new t()))) !== Object.prototype && - I.next && - (i || c(I) === b || (f ? f(I, b) : u(I[w]) || p(I, w, E)), l(I, L, !0, !0), i && (d[L] = E)), - y && - v == A && - C && - C.name !== A && - (!i && m - ? h(U, 'name', A) - : ((k = !0), - (_ = function () { - return o(C, this); - }))), - v) - ) - if (((P = { values: j(A), keys: g ? _ : j(S), entries: j(R) }), O)) - for (T in P) (x || k || !(T in U)) && p(U, T, P[T]); - else n({ target: r, proto: !0, forced: x || k }, P); - return (i && !O) || U[w] === _ || p(U, w, _, { name: v }), (d[r] = _), P; - }; - }, - 56194: (t, r, e) => { - 'use strict'; - var n, - o, - i, - a = e(82229), - u = e(88807), - s = e(21188), - c = e(56042), - f = e(62421), - l = e(29379), - h = e(96982), - p = e(8588), - v = h('iterator'), - d = !1; - [].keys && ('next' in (i = [].keys()) ? (o = f(f(i))) !== Object.prototype && (n = o) : (d = !0)), - !s(n) || - a(function () { - var t = {}; - return n[v].call(t) !== t; - }) - ? (n = {}) - : p && (n = c(n)), - u(n[v]) || - l(n, v, function () { - return this; - }), - (t.exports = { IteratorPrototype: n, BUGGY_SAFARI_ITERATORS: d }); - }, - 72429: t => { - t.exports = {}; - }, - 40406: (t, r, e) => { - var n = e(25664); - t.exports = function (t) { - return n(t.length); - }; - }, - 93450: (t, r, e) => { - var n = e(82229), - o = e(88807), - i = e(91854), - a = e(95417), - u = e(56815).CONFIGURABLE, - s = e(60227), - c = e(887), - f = c.enforce, - l = c.get, - h = Object.defineProperty, - p = - a && - !n(function () { - return 8 !== h(function () {}, 'length', { value: 8 }).length; - }), - v = String(String).split('String'), - d = (t.exports = function (t, r, e) { - 'Symbol(' === String(r).slice(0, 7) && (r = '[' + String(r).replace(/^Symbol\(([^)]*)\)/, '$1') + ']'), - e && e.getter && (r = 'get ' + r), - e && e.setter && (r = 'set ' + r), - (!i(t, 'name') || (u && t.name !== r)) && (a ? h(t, 'name', { value: r, configurable: !0 }) : (t.name = r)), - p && e && i(e, 'arity') && t.length !== e.arity && h(t, 'length', { value: e.arity }); - try { - e && i(e, 'constructor') && e.constructor - ? a && h(t, 'prototype', { writable: !1 }) - : t.prototype && (t.prototype = void 0); - } catch (o) {} - var n = f(t); - return i(n, 'source') || (n.source = v.join('string' == typeof r ? r : '')), t; - }); - Function.prototype.toString = d(function () { - return (o(this) && l(this).source) || s(this); - }, 'toString'); - }, - 99958: t => { - var r = Math.ceil, - e = Math.floor; - t.exports = - Math.trunc || - function (t) { - var n = +t; - return (n > 0 ? e : r)(n); - }; - }, - 49514: (t, r, e) => { - var n, - o, - i, - a, - u, - s, - c, - f, - l = e(70412), - h = e(7365), - p = e(68098).f, - v = e(1017).set, - d = e(3148), - g = e(44500), - y = e(32415), - m = e(84543), - b = l.MutationObserver || l.WebKitMutationObserver, - x = l.document, - w = l.process, - S = l.Promise, - A = p(l, 'queueMicrotask'), - R = A && A.value; - R || - ((n = function () { - var t, r; - for (m && (t = w.domain) && t.exit(); o; ) { - (r = o.fn), (o = o.next); - try { - r(); - } catch (e) { - throw (o ? a() : (i = void 0), e); - } - } - (i = void 0), t && t.enter(); - }), - d || m || y || !b || !x - ? !g && S && S.resolve - ? (((c = S.resolve(void 0)).constructor = S), - (f = h(c.then, c)), - (a = function () { - f(n); - })) - : m - ? (a = function () { - w.nextTick(n); - }) - : ((v = h(v, l)), - (a = function () { - v(n); - })) - : ((u = !0), - (s = x.createTextNode('')), - new b(n).observe(s, { characterData: !0 }), - (a = function () { - s.data = u = !u; - }))), - (t.exports = - R || - function (t) { - var r = { fn: t, next: void 0 }; - i && (i.next = r), o || ((o = r), a()), (i = r); - }); - }, - 92473: (t, r, e) => { - 'use strict'; - var n = e(70481), - o = TypeError, - i = function (t) { - var r, e; - (this.promise = new t(function (t, n) { - if (void 0 !== r || void 0 !== e) throw o('Bad Promise constructor'); - (r = t), (e = n); - })), - (this.resolve = n(r)), - (this.reject = n(e)); - }; - t.exports.f = function (t) { - return new i(t); - }; - }, - 47082: (t, r, e) => { - var n = e(16372), - o = TypeError; - t.exports = function (t) { - if (n(t)) throw o("The method doesn't accept regular expressions"); - return t; - }; - }, - 338: (t, r, e) => { - var n = e(70412), - o = e(82229), - i = e(41765), - a = e(98170), - u = e(29224).trim, - s = e(94809), - c = i(''.charAt), - f = n.parseFloat, - l = n.Symbol, - h = l && l.iterator, - p = - 1 / f(s + '-0') != -1 / 0 || - (h && - !o(function () { - f(Object(h)); - })); - t.exports = p - ? function (t) { - var r = u(a(t)), - e = f(r); - return 0 === e && '-' == c(r, 0) ? -0 : e; - } - : f; - }, - 65931: (t, r, e) => { - var n = e(70412), - o = e(82229), - i = e(41765), - a = e(98170), - u = e(29224).trim, - s = e(94809), - c = n.parseInt, - f = n.Symbol, - l = f && f.iterator, - h = /^[+-]?0x/i, - p = i(h.exec), - v = - 8 !== c(s + '08') || - 22 !== c(s + '0x16') || - (l && - !o(function () { - c(Object(l)); - })); - t.exports = v - ? function (t, r) { - var e = u(a(t)); - return c(e, r >>> 0 || (p(h, e) ? 16 : 10)); - } - : c; - }, - 94382: (t, r, e) => { - 'use strict'; - var n = e(95417), - o = e(41765), - i = e(41924), - a = e(82229), - u = e(46615), - s = e(97399), - c = e(99706), - f = e(90663), - l = e(21197), - h = Object.assign, - p = Object.defineProperty, - v = o([].concat); - t.exports = - !h || - a(function () { - if ( - n && - 1 !== - h( - { b: 1 }, - h( - p({}, 'a', { - enumerable: !0, - get: function () { - p(this, 'b', { value: 3, enumerable: !1 }); - }, - }), - { b: 2 }, - ), - ).b - ) - return !0; - var t = {}, - r = {}, - e = Symbol(), - o = 'abcdefghijklmnopqrst'; - return ( - (t[e] = 7), - o.split('').forEach(function (t) { - r[t] = t; - }), - 7 != h({}, t)[e] || u(h({}, r)).join('') != o - ); - }) - ? function (t, r) { - for (var e = f(t), o = arguments.length, a = 1, h = s.f, p = c.f; o > a; ) - for (var d, g = l(arguments[a++]), y = h ? v(u(g), h(g)) : u(g), m = y.length, b = 0; m > b; ) - (d = y[b++]), (n && !i(p, g, d)) || (e[d] = g[d]); - return e; - } - : h; - }, - 56042: (t, r, e) => { - var n, - o = e(71843), - i = e(13687), - a = e(96410), - u = e(64690), - s = e(95439), - c = e(36254), - f = e(5350), - l = 'prototype', - h = 'script', - p = f('IE_PROTO'), - v = function () {}, - d = function (t) { - return '<' + h + '>' + t + ''; - }, - g = function (t) { - t.write(d('')), t.close(); - var r = t.parentWindow.Object; - return (t = null), r; - }, - y = function () { - try { - n = new ActiveXObject('htmlfile'); - } catch (i) {} - var t, r, e; - y = - 'undefined' != typeof document - ? document.domain && n - ? g(n) - : ((r = c('iframe')), - (e = 'java' + h + ':'), - (r.style.display = 'none'), - s.appendChild(r), - (r.src = String(e)), - (t = r.contentWindow.document).open(), - t.write(d('document.F=Object')), - t.close(), - t.F) - : g(n); - for (var o = a.length; o--; ) delete y[l][a[o]]; - return y(); - }; - (u[p] = !0), - (t.exports = - Object.create || - function (t, r) { - var e; - return ( - null !== t ? ((v[l] = o(t)), (e = new v()), (v[l] = null), (e[p] = t)) : (e = y()), - void 0 === r ? e : i.f(e, r) - ); - }); - }, - 13687: (t, r, e) => { - var n = e(95417), - o = e(5989), - i = e(90189), - a = e(71843), - u = e(30529), - s = e(46615); - r.f = - n && !o - ? Object.defineProperties - : function (t, r) { - a(t); - for (var e, n = u(r), o = s(r), c = o.length, f = 0; c > f; ) i.f(t, (e = o[f++]), n[e]); - return t; - }; - }, - 90189: (t, r, e) => { - var n = e(95417), - o = e(94469), - i = e(5989), - a = e(71843), - u = e(37712), - s = TypeError, - c = Object.defineProperty, - f = Object.getOwnPropertyDescriptor, - l = 'enumerable', - h = 'configurable', - p = 'writable'; - r.f = n - ? i - ? function (t, r, e) { - if ( - (a(t), (r = u(r)), a(e), 'function' == typeof t && 'prototype' === r && 'value' in e && p in e && !e[p]) - ) { - var n = f(t, r); - n && - n[p] && - ((t[r] = e.value), - (e = { configurable: h in e ? e[h] : n[h], enumerable: l in e ? e[l] : n[l], writable: !1 })); - } - return c(t, r, e); - } - : c - : function (t, r, e) { - if ((a(t), (r = u(r)), a(e), o)) - try { - return c(t, r, e); - } catch (n) {} - if ('get' in e || 'set' in e) throw s('Accessors not supported'); - return 'value' in e && (t[r] = e.value), t; - }; - }, - 68098: (t, r, e) => { - var n = e(95417), - o = e(41924), - i = e(99706), - a = e(413), - u = e(30529), - s = e(37712), - c = e(91854), - f = e(94469), - l = Object.getOwnPropertyDescriptor; - r.f = n - ? l - : function (t, r) { - if (((t = u(t)), (r = s(r)), f)) - try { - return l(t, r); - } catch (e) {} - if (c(t, r)) return a(!o(i.f, t, r), t[r]); - }; - }, - 21079: (t, r, e) => { - var n = e(29682), - o = e(30529), - i = e(58206).f, - a = e(89625), - u = 'object' == typeof window && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : []; - t.exports.f = function (t) { - return u && 'Window' == n(t) - ? (function (t) { - try { - return i(t); - } catch (r) { - return a(u); - } - })(t) - : i(o(t)); - }; - }, - 58206: (t, r, e) => { - var n = e(28715), - o = e(96410).concat('length', 'prototype'); - r.f = - Object.getOwnPropertyNames || - function (t) { - return n(t, o); - }; - }, - 97399: (t, r) => { - r.f = Object.getOwnPropertySymbols; - }, - 62421: (t, r, e) => { - var n = e(91854), - o = e(88807), - i = e(90663), - a = e(5350), - u = e(80093), - s = a('IE_PROTO'), - c = Object, - f = c.prototype; - t.exports = u - ? c.getPrototypeOf - : function (t) { - var r = i(t); - if (n(r, s)) return r[s]; - var e = r.constructor; - return o(e) && r instanceof e ? e.prototype : r instanceof c ? f : null; - }; - }, - 47305: (t, r, e) => { - var n = e(82229), - o = e(21188), - i = e(29682), - a = e(89473), - u = Object.isExtensible, - s = n(function () { - u(1); - }); - t.exports = - s || a - ? function (t) { - return !!o(t) && (!a || 'ArrayBuffer' != i(t)) && (!u || u(t)); - } - : u; - }, - 13521: (t, r, e) => { - var n = e(41765); - t.exports = n({}.isPrototypeOf); - }, - 28715: (t, r, e) => { - var n = e(41765), - o = e(91854), - i = e(30529), - a = e(17222).indexOf, - u = e(64690), - s = n([].push); - t.exports = function (t, r) { - var e, - n = i(t), - c = 0, - f = []; - for (e in n) !o(u, e) && o(n, e) && s(f, e); - for (; r.length > c; ) o(n, (e = r[c++])) && (~a(f, e) || s(f, e)); - return f; - }; - }, - 46615: (t, r, e) => { - var n = e(28715), - o = e(96410); - t.exports = - Object.keys || - function (t) { - return n(t, o); - }; - }, - 99706: (t, r) => { - 'use strict'; - var e = {}.propertyIsEnumerable, - n = Object.getOwnPropertyDescriptor, - o = n && !e.call({ 1: 2 }, 1); - r.f = o - ? function (t) { - var r = n(this, t); - return !!r && r.enumerable; - } - : e; - }, - 16922: (t, r, e) => { - 'use strict'; - var n = e(8588), - o = e(70412), - i = e(82229), - a = e(58452); - t.exports = - n || - !i(function () { - if (!(a && a < 535)) { - var t = Math.random(); - __defineSetter__.call(null, t, function () {}), delete o[t]; - } - }); - }, - 71083: (t, r, e) => { - var n = e(41765), - o = e(71843), - i = e(5946); - t.exports = - Object.setPrototypeOf || - ('__proto__' in {} - ? (function () { - var t, - r = !1, - e = {}; - try { - (t = n(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set))(e, []), - (r = e instanceof Array); - } catch (a) {} - return function (e, n) { - return o(e), i(n), r ? t(e, n) : (e.__proto__ = n), e; - }; - })() - : void 0); - }, - 56976: (t, r, e) => { - var n = e(41924), - o = e(88807), - i = e(21188), - a = TypeError; - t.exports = function (t, r) { - var e, u; - if ('string' === r && o((e = t.toString)) && !i((u = n(e, t)))) return u; - if (o((e = t.valueOf)) && !i((u = n(e, t)))) return u; - if ('string' !== r && o((e = t.toString)) && !i((u = n(e, t)))) return u; - throw a("Can't convert object to primitive value"); - }; - }, - 72929: (t, r, e) => { - var n = e(52228), - o = e(41765), - i = e(58206), - a = e(97399), - u = e(71843), - s = o([].concat); - t.exports = - n('Reflect', 'ownKeys') || - function (t) { - var r = i.f(u(t)), - e = a.f; - return e ? s(r, e(t)) : r; - }; - }, - 48159: (t, r, e) => { - var n = e(70412); - t.exports = n; - }, - 30668: t => { - t.exports = function (t) { - try { - return { error: !1, value: t() }; - } catch (r) { - return { error: !0, value: r }; - } - }; - }, - 27743: (t, r, e) => { - var n = e(70412), - o = e(15461), - i = e(88807), - a = e(76777), - u = e(60227), - s = e(96982), - c = e(18573), - f = e(27158), - l = e(8588), - h = e(44905), - p = o && o.prototype, - v = s('species'), - d = !1, - g = i(n.PromiseRejectionEvent), - y = a('Promise', function () { - var t = u(o), - r = t !== String(o); - if (!r && 66 === h) return !0; - if (l && (!p.catch || !p.finally)) return !0; - if (!h || h < 51 || !/native code/.test(t)) { - var e = new o(function (t) { - t(1); - }), - n = function (t) { - t( - function () {}, - function () {}, - ); - }; - if ((((e.constructor = {})[v] = n), !(d = e.then(function () {}) instanceof n))) return !0; - } - return !r && (c || f) && !g; - }); - t.exports = { CONSTRUCTOR: y, REJECTION_EVENT: g, SUBCLASSING: d }; - }, - 15461: (t, r, e) => { - var n = e(70412); - t.exports = n.Promise; - }, - 88149: (t, r, e) => { - var n = e(71843), - o = e(21188), - i = e(92473); - t.exports = function (t, r) { - if ((n(t), o(r) && r.constructor === t)) return r; - var e = i.f(t); - return (0, e.resolve)(r), e.promise; - }; - }, - 20769: (t, r, e) => { - var n = e(15461), - o = e(3800), - i = e(27743).CONSTRUCTOR; - t.exports = - i || - !o(function (t) { - n.all(t).then(void 0, function () {}); - }); - }, - 30382: (t, r, e) => { - var n = e(90189).f; - t.exports = function (t, r, e) { - e in t || - n(t, e, { - configurable: !0, - get: function () { - return r[e]; - }, - set: function (t) { - r[e] = t; - }, - }); - }; - }, - 69323: t => { - var r = function () { - (this.head = null), (this.tail = null); - }; - (r.prototype = { - add: function (t) { - var r = { item: t, next: null }; - this.head ? (this.tail.next = r) : (this.head = r), (this.tail = r); - }, - get: function () { - var t = this.head; - if (t) return (this.head = t.next), this.tail === t && (this.tail = null), t.item; - }, - }), - (t.exports = r); - }, - 12134: (t, r, e) => { - var n = e(41924), - o = e(71843), - i = e(88807), - a = e(29682), - u = e(38157), - s = TypeError; - t.exports = function (t, r) { - var e = t.exec; - if (i(e)) { - var c = n(e, t, r); - return null !== c && o(c), c; - } - if ('RegExp' === a(t)) return n(u, t, r); - throw s('RegExp#exec called on incompatible receiver'); - }; - }, - 38157: (t, r, e) => { - 'use strict'; - var n, - o, - i = e(41924), - a = e(41765), - u = e(98170), - s = e(88103), - c = e(48756), - f = e(39215), - l = e(56042), - h = e(887).get, - p = e(60054), - v = e(77084), - d = f('native-string-replace', String.prototype.replace), - g = RegExp.prototype.exec, - y = g, - m = a(''.charAt), - b = a(''.indexOf), - x = a(''.replace), - w = a(''.slice), - S = ((o = /b*/g), i(g, (n = /a/), 'a'), i(g, o, 'a'), 0 !== n.lastIndex || 0 !== o.lastIndex), - A = c.BROKEN_CARET, - R = void 0 !== /()??/.exec('')[1]; - (S || R || A || p || v) && - (y = function (t) { - var r, - e, - n, - o, - a, - c, - f, - p = this, - v = h(p), - E = u(t), - O = v.raw; - if (O) return (O.lastIndex = p.lastIndex), (r = i(y, O, E)), (p.lastIndex = O.lastIndex), r; - var I = v.groups, - P = A && p.sticky, - T = i(s, p), - j = p.source, - L = 0, - k = E; - if ( - (P && - ((T = x(T, 'y', '')), - -1 === b(T, 'g') && (T += 'g'), - (k = w(E, p.lastIndex)), - p.lastIndex > 0 && - (!p.multiline || (p.multiline && '\n' !== m(E, p.lastIndex - 1))) && - ((j = '(?: ' + j + ')'), (k = ' ' + k), L++), - (e = new RegExp('^(?:' + j + ')', T))), - R && (e = new RegExp('^' + j + '$(?!\\s)', T)), - S && (n = p.lastIndex), - (o = i(g, P ? e : p, k)), - P - ? o - ? ((o.input = w(o.input, L)), - (o[0] = w(o[0], L)), - (o.index = p.lastIndex), - (p.lastIndex += o[0].length)) - : (p.lastIndex = 0) - : S && o && (p.lastIndex = p.global ? o.index + o[0].length : n), - R && - o && - o.length > 1 && - i(d, o[0], e, function () { - for (a = 1; a < arguments.length - 2; a++) void 0 === arguments[a] && (o[a] = void 0); - }), - o && I) - ) - for (o.groups = c = l(null), a = 0; a < I.length; a++) c[(f = I[a])[0]] = o[f[1]]; - return o; - }), - (t.exports = y); - }, - 88103: (t, r, e) => { - 'use strict'; - var n = e(71843); - t.exports = function () { - var t = n(this), - r = ''; - return ( - t.hasIndices && (r += 'd'), - t.global && (r += 'g'), - t.ignoreCase && (r += 'i'), - t.multiline && (r += 'm'), - t.dotAll && (r += 's'), - t.unicode && (r += 'u'), - t.unicodeSets && (r += 'v'), - t.sticky && (r += 'y'), - r - ); - }; - }, - 36558: (t, r, e) => { - var n = e(41924), - o = e(91854), - i = e(13521), - a = e(88103), - u = RegExp.prototype; - t.exports = function (t) { - var r = t.flags; - return void 0 !== r || 'flags' in u || o(t, 'flags') || !i(u, t) ? r : n(a, t); - }; - }, - 48756: (t, r, e) => { - var n = e(82229), - o = e(70412).RegExp, - i = n(function () { - var t = o('a', 'y'); - return (t.lastIndex = 2), null != t.exec('abcd'); - }), - a = - i || - n(function () { - return !o('a', 'y').sticky; - }), - u = - i || - n(function () { - var t = o('^r', 'gy'); - return (t.lastIndex = 2), null != t.exec('str'); - }); - t.exports = { BROKEN_CARET: u, MISSED_STICKY: a, UNSUPPORTED_Y: i }; - }, - 60054: (t, r, e) => { - var n = e(82229), - o = e(70412).RegExp; - t.exports = n(function () { - var t = o('.', 's'); - return !(t.dotAll && t.exec('\n') && 's' === t.flags); - }); - }, - 77084: (t, r, e) => { - var n = e(82229), - o = e(70412).RegExp; - t.exports = n(function () { - var t = o('(?b)', 'g'); - return 'b' !== t.exec('b').groups.a || 'bc' !== 'b'.replace(t, '$c'); - }); - }, - 20774: (t, r, e) => { - var n = e(39989), - o = TypeError; - t.exports = function (t) { - if (n(t)) throw o("Can't call method on " + t); - return t; - }; - }, - 53411: t => { - t.exports = - Object.is || - function (t, r) { - return t === r ? 0 !== t || 1 / t == 1 / r : t != t && r != r; - }; - }, - 35787: (t, r, e) => { - 'use strict'; - var n = e(52228), - o = e(90189), - i = e(96982), - a = e(95417), - u = i('species'); - t.exports = function (t) { - var r = n(t), - e = o.f; - a && - r && - !r[u] && - e(r, u, { - configurable: !0, - get: function () { - return this; - }, - }); - }; - }, - 43803: (t, r, e) => { - var n = e(90189).f, - o = e(91854), - i = e(96982)('toStringTag'); - t.exports = function (t, r, e) { - t && !e && (t = t.prototype), t && !o(t, i) && n(t, i, { configurable: !0, value: r }); - }; - }, - 5350: (t, r, e) => { - var n = e(39215), - o = e(34436), - i = n('keys'); - t.exports = function (t) { - return i[t] || (i[t] = o(t)); - }; - }, - 81502: (t, r, e) => { - var n = e(70412), - o = e(26139), - i = '__core-js_shared__', - a = n[i] || o(i, {}); - t.exports = a; - }, - 39215: (t, r, e) => { - var n = e(8588), - o = e(81502); - (t.exports = function (t, r) { - return o[t] || (o[t] = void 0 !== r ? r : {}); - })('versions', []).push({ - version: '3.26.0', - mode: n ? 'pure' : 'global', - copyright: '\xa9 2014-2022 Denis Pushkarev (zloirock.ru)', - license: 'https://github.com/zloirock/core-js/blob/v3.26.0/LICENSE', - source: 'https://github.com/zloirock/core-js', - }); - }, - 23913: (t, r, e) => { - var n = e(71843), - o = e(12420), - i = e(39989), - a = e(96982)('species'); - t.exports = function (t, r) { - var e, - u = n(t).constructor; - return void 0 === u || i((e = n(u)[a])) ? r : o(e); - }; - }, - 33100: (t, r, e) => { - var n = e(41765), - o = e(32048), - i = e(98170), - a = e(20774), - u = n(''.charAt), - s = n(''.charCodeAt), - c = n(''.slice), - f = function (t) { - return function (r, e) { - var n, - f, - l = i(a(r)), - h = o(e), - p = l.length; - return h < 0 || h >= p - ? t - ? '' - : void 0 - : (n = s(l, h)) < 55296 || n > 56319 || h + 1 === p || (f = s(l, h + 1)) < 56320 || f > 57343 - ? t - ? u(l, h) - : n - : t - ? c(l, h, h + 2) - : f - 56320 + ((n - 55296) << 10) + 65536; - }; - }; - t.exports = { codeAt: f(!1), charAt: f(!0) }; - }, - 71896: (t, r, e) => { - var n = e(86378); - t.exports = /Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n); - }, - 52752: (t, r, e) => { - var n = e(41765), - o = e(25664), - i = e(98170), - a = e(71744), - u = e(20774), - s = n(a), - c = n(''.slice), - f = Math.ceil, - l = function (t) { - return function (r, e, n) { - var a, - l, - h = i(u(r)), - p = o(e), - v = h.length, - d = void 0 === n ? ' ' : i(n); - return p <= v || '' == d - ? h - : ((l = s(d, f((a = p - v) / d.length))).length > a && (l = c(l, 0, a)), t ? h + l : l + h); - }; - }; - t.exports = { start: l(!1), end: l(!0) }; - }, - 63253: (t, r, e) => { - 'use strict'; - var n = e(41765), - o = 2147483647, - i = /[^\0-\u007E]/, - a = /[.\u3002\uFF0E\uFF61]/g, - u = 'Overflow: input needs wider integers to process', - s = RangeError, - c = n(a.exec), - f = Math.floor, - l = String.fromCharCode, - h = n(''.charCodeAt), - p = n([].join), - v = n([].push), - d = n(''.replace), - g = n(''.split), - y = n(''.toLowerCase), - m = function (t) { - return t + 22 + 75 * (t < 26); - }, - b = function (t, r, e) { - var n = 0; - for (t = e ? f(t / 700) : t >> 1, t += f(t / r); t > 455; ) (t = f(t / 35)), (n += 36); - return f(n + (36 * t) / (t + 38)); - }, - x = function (t) { - var r = []; - t = (function (t) { - for (var r = [], e = 0, n = t.length; e < n; ) { - var o = h(t, e++); - if (o >= 55296 && o <= 56319 && e < n) { - var i = h(t, e++); - 56320 == (64512 & i) ? v(r, ((1023 & o) << 10) + (1023 & i) + 65536) : (v(r, o), e--); - } else v(r, o); - } - return r; - })(t); - var e, - n, - i = t.length, - a = 128, - c = 0, - d = 72; - for (e = 0; e < t.length; e++) (n = t[e]) < 128 && v(r, l(n)); - var g = r.length, - y = g; - for (g && v(r, '-'); y < i; ) { - var x = o; - for (e = 0; e < t.length; e++) (n = t[e]) >= a && n < x && (x = n); - var w = y + 1; - if (x - a > f((o - c) / w)) throw s(u); - for (c += (x - a) * w, a = x, e = 0; e < t.length; e++) { - if ((n = t[e]) < a && ++c > o) throw s(u); - if (n == a) { - for (var S = c, A = 36; ; ) { - var R = A <= d ? 1 : A >= d + 26 ? 26 : A - d; - if (S < R) break; - var E = S - R, - O = 36 - R; - v(r, l(m(R + (E % O)))), (S = f(E / O)), (A += 36); - } - v(r, l(m(S))), (d = b(c, w, y == g)), (c = 0), y++; - } - } - c++, a++; - } - return p(r, ''); - }; - t.exports = function (t) { - var r, - e, - n = [], - o = g(d(y(t), a, '.'), '.'); - for (r = 0; r < o.length; r++) (e = o[r]), v(n, c(i, e) ? 'xn--' + x(e) : e); - return p(n, '.'); - }; - }, - 71744: (t, r, e) => { - 'use strict'; - var n = e(32048), - o = e(98170), - i = e(20774), - a = RangeError; - t.exports = function (t) { - var r = o(i(this)), - e = '', - u = n(t); - if (u < 0 || u == 1 / 0) throw a('Wrong number of repetitions'); - for (; u > 0; (u >>>= 1) && (r += r)) 1 & u && (e += r); - return e; - }; - }, - 78778: (t, r, e) => { - 'use strict'; - var n = e(29224).end, - o = e(88205); - t.exports = o('trimEnd') - ? function () { - return n(this); - } - : ''.trimEnd; - }, - 88205: (t, r, e) => { - var n = e(56815).PROPER, - o = e(82229), - i = e(94809); - t.exports = function (t) { - return o(function () { - return !!i[t]() || '\u200b\x85\u180e' !== '\u200b\x85\u180e'[t]() || (n && i[t].name !== t); - }); - }; - }, - 682: (t, r, e) => { - 'use strict'; - var n = e(29224).start, - o = e(88205); - t.exports = o('trimStart') - ? function () { - return n(this); - } - : ''.trimStart; - }, - 29224: (t, r, e) => { - var n = e(41765), - o = e(20774), - i = e(98170), - a = e(94809), - u = n(''.replace), - s = '[' + a + ']', - c = RegExp('^' + s + s + '*'), - f = RegExp(s + s + '*$'), - l = function (t) { - return function (r) { - var e = i(o(r)); - return 1 & t && (e = u(e, c, '')), 2 & t && (e = u(e, f, '')), e; - }; - }; - t.exports = { start: l(1), end: l(2), trim: l(3) }; - }, - 9770: (t, r, e) => { - var n = e(44905), - o = e(82229); - t.exports = - !!Object.getOwnPropertySymbols && - !o(function () { - var t = Symbol(); - return !String(t) || !(Object(t) instanceof Symbol) || (!Symbol.sham && n && n < 41); - }); - }, - 1017: (t, r, e) => { - var n, - o, - i, - a, - u = e(70412), - s = e(90675), - c = e(7365), - f = e(88807), - l = e(91854), - h = e(82229), - p = e(95439), - v = e(96784), - d = e(36254), - g = e(58453), - y = e(3148), - m = e(84543), - b = u.setImmediate, - x = u.clearImmediate, - w = u.process, - S = u.Dispatch, - A = u.Function, - R = u.MessageChannel, - E = u.String, - O = 0, - I = {}, - P = 'onreadystatechange'; - try { - n = u.location; - } catch (U) {} - var T = function (t) { - if (l(I, t)) { - var r = I[t]; - delete I[t], r(); - } - }, - j = function (t) { - return function () { - T(t); - }; - }, - L = function (t) { - T(t.data); - }, - k = function (t) { - u.postMessage(E(t), n.protocol + '//' + n.host); - }; - (b && x) || - ((b = function (t) { - g(arguments.length, 1); - var r = f(t) ? t : A(t), - e = v(arguments, 1); - return ( - (I[++O] = function () { - s(r, void 0, e); - }), - o(O), - O - ); - }), - (x = function (t) { - delete I[t]; - }), - m - ? (o = function (t) { - w.nextTick(j(t)); - }) - : S && S.now - ? (o = function (t) { - S.now(j(t)); - }) - : R && !y - ? ((a = (i = new R()).port2), (i.port1.onmessage = L), (o = c(a.postMessage, a))) - : u.addEventListener && f(u.postMessage) && !u.importScripts && n && 'file:' !== n.protocol && !h(k) - ? ((o = k), u.addEventListener('message', L, !1)) - : (o = - P in d('script') - ? function (t) { - p.appendChild(d('script'))[P] = function () { - p.removeChild(this), T(t); - }; - } - : function (t) { - setTimeout(j(t), 0); - })), - (t.exports = { set: b, clear: x }); - }, - 64584: (t, r, e) => { - var n = e(41765); - t.exports = n((1).valueOf); - }, - 90069: (t, r, e) => { - var n = e(32048), - o = Math.max, - i = Math.min; - t.exports = function (t, r) { - var e = n(t); - return e < 0 ? o(e + r, 0) : i(e, r); - }; - }, - 85580: (t, r, e) => { - var n = e(5368), - o = TypeError; - t.exports = function (t) { - var r = n(t, 'number'); - if ('number' == typeof r) throw o("Can't convert number to bigint"); - return BigInt(r); - }; - }, - 22785: (t, r, e) => { - var n = e(32048), - o = e(25664), - i = RangeError; - t.exports = function (t) { - if (void 0 === t) return 0; - var r = n(t), - e = o(r); - if (r !== e) throw i('Wrong length or index'); - return e; - }; - }, - 30529: (t, r, e) => { - var n = e(21197), - o = e(20774); - t.exports = function (t) { - return n(o(t)); - }; - }, - 32048: (t, r, e) => { - var n = e(99958); - t.exports = function (t) { - var r = +t; - return r != r || 0 === r ? 0 : n(r); - }; - }, - 25664: (t, r, e) => { - var n = e(32048), - o = Math.min; - t.exports = function (t) { - return t > 0 ? o(n(t), 9007199254740991) : 0; - }; - }, - 90663: (t, r, e) => { - var n = e(20774), - o = Object; - t.exports = function (t) { - return o(n(t)); - }; - }, - 20839: (t, r, e) => { - var n = e(97119), - o = RangeError; - t.exports = function (t, r) { - var e = n(t); - if (e % r) throw o('Wrong offset'); - return e; - }; - }, - 97119: (t, r, e) => { - var n = e(32048), - o = RangeError; - t.exports = function (t) { - var r = n(t); - if (r < 0) throw o("The argument can't be less than 0"); - return r; - }; - }, - 5368: (t, r, e) => { - var n = e(41924), - o = e(21188), - i = e(29844), - a = e(89423), - u = e(56976), - s = e(96982), - c = TypeError, - f = s('toPrimitive'); - t.exports = function (t, r) { - if (!o(t) || i(t)) return t; - var e, - s = a(t, f); - if (s) { - if ((void 0 === r && (r = 'default'), (e = n(s, t, r)), !o(e) || i(e))) return e; - throw c("Can't convert object to primitive value"); - } - return void 0 === r && (r = 'number'), u(t, r); - }; - }, - 37712: (t, r, e) => { - var n = e(5368), - o = e(29844); - t.exports = function (t) { - var r = n(t, 'string'); - return o(r) ? r : r + ''; - }; - }, - 50089: (t, r, e) => { - var n = {}; - (n[e(96982)('toStringTag')] = 'z'), (t.exports = '[object z]' === String(n)); - }, - 98170: (t, r, e) => { - var n = e(765), - o = String; - t.exports = function (t) { - if ('Symbol' === n(t)) throw TypeError('Cannot convert a Symbol value to a string'); - return o(t); - }; - }, - 48427: t => { - var r = String; - t.exports = function (t) { - try { - return r(t); - } catch (e) { - return 'Object'; - } - }; - }, - 97064: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(70412), - i = e(41924), - a = e(95417), - u = e(40138), - s = e(30491), - c = e(11812), - f = e(65712), - l = e(413), - h = e(7001), - p = e(63272), - v = e(25664), - d = e(22785), - g = e(20839), - y = e(37712), - m = e(91854), - b = e(765), - x = e(21188), - w = e(29844), - S = e(56042), - A = e(13521), - R = e(71083), - E = e(58206).f, - O = e(31716), - I = e(99248).forEach, - P = e(35787), - T = e(90189), - j = e(68098), - L = e(887), - k = e(42325), - U = L.get, - C = L.set, - _ = L.enforce, - M = T.f, - F = j.f, - N = Math.round, - B = o.RangeError, - D = c.ArrayBuffer, - H = D.prototype, - z = c.DataView, - q = s.NATIVE_ARRAY_BUFFER_VIEWS, - W = s.TYPED_ARRAY_TAG, - G = s.TypedArray, - V = s.TypedArrayPrototype, - $ = s.aTypedArrayConstructor, - Y = s.isTypedArray, - K = 'BYTES_PER_ELEMENT', - J = 'Wrong length', - X = function (t, r) { - $(t); - for (var e = 0, n = r.length, o = new t(n); n > e; ) o[e] = r[e++]; - return o; - }, - Q = function (t, r) { - M(t, r, { - get: function () { - return U(this)[r]; - }, - }); - }, - Z = function (t) { - var r; - return A(H, t) || 'ArrayBuffer' == (r = b(t)) || 'SharedArrayBuffer' == r; - }, - tt = function (t, r) { - return Y(t) && !w(r) && r in t && p(+r) && r >= 0; - }, - rt = function (t, r) { - return (r = y(r)), tt(t, r) ? l(2, t[r]) : F(t, r); - }, - et = function (t, r, e) { - return ( - (r = y(r)), - !(tt(t, r) && x(e) && m(e, 'value')) || - m(e, 'get') || - m(e, 'set') || - e.configurable || - (m(e, 'writable') && !e.writable) || - (m(e, 'enumerable') && !e.enumerable) - ? M(t, r, e) - : ((t[r] = e.value), t) - ); - }; - a - ? (q || ((j.f = rt), (T.f = et), Q(V, 'buffer'), Q(V, 'byteOffset'), Q(V, 'byteLength'), Q(V, 'length')), - n({ target: 'Object', stat: !0, forced: !q }, { getOwnPropertyDescriptor: rt, defineProperty: et }), - (t.exports = function (t, r, e) { - var a = t.match(/\d+$/)[0] / 8, - s = t + (e ? 'Clamped' : '') + 'Array', - c = 'get' + t, - l = 'set' + t, - p = o[s], - y = p, - m = y && y.prototype, - b = {}, - w = function (t, r) { - M(t, r, { - get: function () { - return (function (t, r) { - var e = U(t); - return e.view[c](r * a + e.byteOffset, !0); - })(this, r); - }, - set: function (t) { - return (function (t, r, n) { - var o = U(t); - e && (n = (n = N(n)) < 0 ? 0 : n > 255 ? 255 : 255 & n), o.view[l](r * a + o.byteOffset, n, !0); - })(this, r, t); - }, - enumerable: !0, - }); - }; - q - ? u && - ((y = r(function (t, r, e, n) { - return ( - f(t, m), - k( - x(r) - ? Z(r) - ? void 0 !== n - ? new p(r, g(e, a), n) - : void 0 !== e - ? new p(r, g(e, a)) - : new p(r) - : Y(r) - ? X(y, r) - : i(O, y, r) - : new p(d(r)), - t, - y, - ) - ); - })), - R && R(y, G), - I(E(p), function (t) { - t in y || h(y, t, p[t]); - }), - (y.prototype = m)) - : ((y = r(function (t, r, e, n) { - f(t, m); - var o, - u, - s, - c = 0, - l = 0; - if (x(r)) { - if (!Z(r)) return Y(r) ? X(y, r) : i(O, y, r); - (o = r), (l = g(e, a)); - var h = r.byteLength; - if (void 0 === n) { - if (h % a) throw B(J); - if ((u = h - l) < 0) throw B(J); - } else if ((u = v(n) * a) + l > h) throw B(J); - s = u / a; - } else (s = d(r)), (o = new D((u = s * a))); - for (C(t, { buffer: o, byteOffset: l, byteLength: u, length: s, view: new z(o) }); c < s; ) w(t, c++); - })), - R && R(y, G), - (m = y.prototype = S(V))), - m.constructor !== y && h(m, 'constructor', y), - (_(m).TypedArrayConstructor = y), - W && h(m, W, s); - var A = y != p; - (b[s] = y), - n({ global: !0, constructor: !0, forced: A, sham: !q }, b), - K in y || h(y, K, a), - K in m || h(m, K, a), - P(s); - })) - : (t.exports = function () {}); - }, - 40138: (t, r, e) => { - var n = e(70412), - o = e(82229), - i = e(3800), - a = e(30491).NATIVE_ARRAY_BUFFER_VIEWS, - u = n.ArrayBuffer, - s = n.Int8Array; - t.exports = - !a || - !o(function () { - s(1); - }) || - !o(function () { - new s(-1); - }) || - !i(function (t) { - new s(), new s(null), new s(1.5), new s(t); - }, !0) || - o(function () { - return 1 !== new s(new u(2), 1, void 0).length; - }); - }, - 31716: (t, r, e) => { - var n = e(7365), - o = e(41924), - i = e(12420), - a = e(90663), - u = e(40406), - s = e(28338), - c = e(63412), - f = e(46196), - l = e(59537), - h = e(30491).aTypedArrayConstructor, - p = e(85580); - t.exports = function (t) { - var r, - e, - v, - d, - g, - y, - m, - b, - x = i(this), - w = a(t), - S = arguments.length, - A = S > 1 ? arguments[1] : void 0, - R = void 0 !== A, - E = c(w); - if (E && !f(E)) for (b = (m = s(w, E)).next, w = []; !(y = o(b, m)).done; ) w.push(y.value); - for (R && S > 2 && (A = n(A, arguments[2])), e = u(w), v = new (h(x))(e), d = l(v), r = 0; e > r; r++) - (g = R ? A(w[r], r) : w[r]), (v[r] = d ? p(g) : +g); - return v; - }; - }, - 34436: (t, r, e) => { - var n = e(41765), - o = 0, - i = Math.random(), - a = n((1).toString); - t.exports = function (t) { - return 'Symbol(' + (void 0 === t ? '' : t) + ')_' + a(++o + i, 36); - }; - }, - 506: (t, r, e) => { - var n = e(82229), - o = e(96982), - i = e(8588), - a = o('iterator'); - t.exports = !n(function () { - var t = new URL('b?a=1&b=2&c=3', 'http://a'), - r = t.searchParams, - e = ''; - return ( - (t.pathname = 'c%20d'), - r.forEach(function (t, n) { - r.delete('b'), (e += n + t); - }), - (i && !t.toJSON) || - !r.sort || - 'http://a/c%20d?a=1&c=3' !== t.href || - '3' !== r.get('c') || - 'a=1' !== String(new URLSearchParams('?a=1')) || - !r[a] || - 'a' !== new URL('https://a@b').username || - 'b' !== new URLSearchParams(new URLSearchParams('a=b')).get('a') || - 'xn--e1aybc' !== new URL('http://\u0442\u0435\u0441\u0442').host || - '#%D0%B1' !== new URL('http://a#\u0431').hash || - 'a1c3' !== e || - 'x' !== new URL('http://x', void 0).host - ); - }); - }, - 39696: (t, r, e) => { - var n = e(9770); - t.exports = n && !Symbol.sham && 'symbol' == typeof Symbol.iterator; - }, - 5989: (t, r, e) => { - var n = e(95417), - o = e(82229); - t.exports = - n && - o(function () { - return 42 != Object.defineProperty(function () {}, 'prototype', { value: 42, writable: !1 }).prototype; - }); - }, - 58453: t => { - var r = TypeError; - t.exports = function (t, e) { - if (t < e) throw r('Not enough arguments'); - return t; - }; - }, - 17023: (t, r, e) => { - var n = e(70412), - o = e(88807), - i = n.WeakMap; - t.exports = o(i) && /native code/.test(String(i)); - }, - 16515: (t, r, e) => { - var n = e(48159), - o = e(91854), - i = e(7734), - a = e(90189).f; - t.exports = function (t) { - var r = n.Symbol || (n.Symbol = {}); - o(r, t) || a(r, t, { value: i.f(t) }); - }; - }, - 7734: (t, r, e) => { - var n = e(96982); - r.f = n; - }, - 96982: (t, r, e) => { - var n = e(70412), - o = e(39215), - i = e(91854), - a = e(34436), - u = e(9770), - s = e(39696), - c = o('wks'), - f = n.Symbol, - l = f && f.for, - h = s ? f : (f && f.withoutSetter) || a; - t.exports = function (t) { - if (!i(c, t) || (!u && 'string' != typeof c[t])) { - var r = 'Symbol.' + t; - u && i(f, t) ? (c[t] = f[t]) : (c[t] = s && l ? l(r) : h(r)); - } - return c[t]; - }; - }, - 94809: t => { - t.exports = - '\t\n\v\f\r \xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff'; - }, - 2048: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(70412), - i = e(11812), - a = e(35787), - u = 'ArrayBuffer', - s = i[u]; - n({ global: !0, constructor: !0, forced: o[u] !== s }, { ArrayBuffer: s }), a(u); - }, - 51072: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41765), - i = e(82229), - a = e(11812), - u = e(71843), - s = e(90069), - c = e(25664), - f = e(23913), - l = a.ArrayBuffer, - h = a.DataView, - p = h.prototype, - v = o(l.prototype.slice), - d = o(p.getUint8), - g = o(p.setUint8); - n( - { - target: 'ArrayBuffer', - proto: !0, - unsafe: !0, - forced: i(function () { - return !new l(2).slice(1, void 0).byteLength; - }), - }, - { - slice: function (t, r) { - if (v && void 0 === r) return v(u(this), t); - for ( - var e = u(this).byteLength, - n = s(t, e), - o = s(void 0 === r ? e : r, e), - i = new (f(this, l))(c(o - n)), - a = new h(this), - p = new h(i), - y = 0; - n < o; - - ) - g(p, y++, d(a, n++)); - return i; - }, - }, - ); - }, - 18253: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(74596), - i = e(70481), - a = e(90663), - u = e(40406), - s = e(69164); - n( - { target: 'Array', proto: !0 }, - { - flatMap: function (t) { - var r, - e = a(this), - n = u(e); - return ( - i(t), ((r = s(e, 0)).length = o(r, e, e, n, 0, 1, t, arguments.length > 1 ? arguments[1] : void 0)), r - ); - }, - }, - ); - }, - 57640: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(74596), - i = e(90663), - a = e(40406), - u = e(32048), - s = e(69164); - n( - { target: 'Array', proto: !0 }, - { - flat: function () { - var t = arguments.length ? arguments[0] : void 0, - r = i(this), - e = a(r), - n = s(r, 0); - return (n.length = o(n, r, r, e, 0, void 0 === t ? 1 : u(t))), n; - }, - }, - ); - }, - 94841: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(17222).includes, - i = e(82229), - a = e(63288); - n( - { - target: 'Array', - proto: !0, - forced: i(function () { - return !Array(1).includes(); - }), - }, - { - includes: function (t) { - return o(this, t, arguments.length > 1 ? arguments[1] : void 0); - }, - }, - ), - a('includes'); - }, - 78062: (t, r, e) => { - 'use strict'; - var n = e(30529), - o = e(63288), - i = e(72429), - a = e(887), - u = e(90189).f, - s = e(61666), - c = e(74903), - f = e(8588), - l = e(95417), - h = 'Array Iterator', - p = a.set, - v = a.getterFor(h); - t.exports = s( - Array, - 'Array', - function (t, r) { - p(this, { type: h, target: n(t), index: 0, kind: r }); - }, - function () { - var t = v(this), - r = t.target, - e = t.kind, - n = t.index++; - return !r || n >= r.length - ? ((t.target = void 0), c(void 0, !0)) - : c('keys' == e ? n : 'values' == e ? r[n] : [n, r[n]], !1); - }, - 'values', - ); - var d = (i.Arguments = i.Array); - if ((o('keys'), o('values'), o('entries'), !f && l && 'values' !== d.name)) - try { - u(d, 'name', { value: 'values' }); - } catch (g) {} - }, - 5425: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(31136).right, - i = e(4789), - a = e(44905), - u = e(84543); - n( - { target: 'Array', proto: !0, forced: !i('reduceRight') || (!u && a > 79 && a < 83) }, - { - reduceRight: function (t) { - return o(this, t, arguments.length, arguments.length > 1 ? arguments[1] : void 0); - }, - }, - ); - }, - 89909: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(31136).left, - i = e(4789), - a = e(44905), - u = e(84543); - n( - { target: 'Array', proto: !0, forced: !i('reduce') || (!u && a > 79 && a < 83) }, - { - reduce: function (t) { - var r = arguments.length; - return o(this, t, r, r > 1 ? arguments[1] : void 0); - }, - }, - ); - }, - 59882: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41765), - i = e(21528), - a = o([].reverse), - u = [1, 2]; - n( - { target: 'Array', proto: !0, forced: String(u) === String(u.reverse()) }, - { - reverse: function () { - return i(this) && (this.length = this.length), a(this); - }, - }, - ); - }, - 75715: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41765), - i = e(70481), - a = e(90663), - u = e(40406), - s = e(7351), - c = e(98170), - f = e(82229), - l = e(42771), - h = e(4789), - p = e(89443), - v = e(17608), - d = e(44905), - g = e(58452), - y = [], - m = o(y.sort), - b = o(y.push), - x = f(function () { - y.sort(void 0); - }), - w = f(function () { - y.sort(null); - }), - S = h('sort'), - A = !f(function () { - if (d) return d < 70; - if (!(p && p > 3)) { - if (v) return !0; - if (g) return g < 603; - var t, - r, - e, - n, - o = ''; - for (t = 65; t < 76; t++) { - switch (((r = String.fromCharCode(t)), t)) { - case 66: - case 69: - case 70: - case 72: - e = 3; - break; - case 68: - case 71: - e = 4; - break; - default: - e = 2; - } - for (n = 0; n < 47; n++) y.push({ k: r + n, v: e }); - } - for ( - y.sort(function (t, r) { - return r.v - t.v; - }), - n = 0; - n < y.length; - n++ - ) - (r = y[n].k.charAt(0)), o.charAt(o.length - 1) !== r && (o += r); - return 'DGBEFHACIJK' !== o; - } - }); - n( - { target: 'Array', proto: !0, forced: x || !w || !S || !A }, - { - sort: function (t) { - void 0 !== t && i(t); - var r = a(this); - if (A) return void 0 === t ? m(r) : m(r, t); - var e, - n, - o = [], - f = u(r); - for (n = 0; n < f; n++) n in r && b(o, r[n]); - for ( - l( - o, - (function (t) { - return function (r, e) { - return void 0 === e ? -1 : void 0 === r ? 1 : void 0 !== t ? +t(r, e) || 0 : c(r) > c(e) ? 1 : -1; - }; - })(t), - ), - e = u(o), - n = 0; - n < e; - - ) - r[n] = o[n++]; - for (; n < f; ) s(r, n++); - return r; - }, - }, - ); - }, - 14137: (t, r, e) => { - e(63288)('flatMap'); - }, - 24560: (t, r, e) => { - e(63288)('flat'); - }, - 91609: (t, r, e) => { - var n = e(72698), - o = Math.hypot, - i = Math.abs, - a = Math.sqrt; - n( - { target: 'Math', stat: !0, arity: 2, forced: !!o && o(1 / 0, NaN) !== 1 / 0 }, - { - hypot: function (t, r) { - for (var e, n, o = 0, u = 0, s = arguments.length, c = 0; u < s; ) - c < (e = i(arguments[u++])) - ? ((o = o * (n = c / e) * n + 1), (c = e)) - : (o += e > 0 ? (n = e / c) * n : e); - return c === 1 / 0 ? 1 / 0 : c * a(o); - }, - }, - ); - }, - 80742: (t, r, e) => { - var n = e(72698), - o = e(338); - n({ target: 'Number', stat: !0, forced: Number.parseFloat != o }, { parseFloat: o }); - }, - 30403: (t, r, e) => { - var n = e(72698), - o = e(65931); - n({ target: 'Number', stat: !0, forced: Number.parseInt != o }, { parseInt: o }); - }, - 63411: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41765), - i = e(32048), - a = e(64584), - u = e(71744), - s = e(82229), - c = RangeError, - f = String, - l = Math.floor, - h = o(u), - p = o(''.slice), - v = o((1).toFixed), - d = function (t, r, e) { - return 0 === r ? e : r % 2 == 1 ? d(t, r - 1, e * t) : d(t * t, r / 2, e); - }, - g = function (t, r, e) { - for (var n = -1, o = e; ++n < 6; ) (o += r * t[n]), (t[n] = o % 1e7), (o = l(o / 1e7)); - }, - y = function (t, r) { - for (var e = 6, n = 0; --e >= 0; ) (n += t[e]), (t[e] = l(n / r)), (n = (n % r) * 1e7); - }, - m = function (t) { - for (var r = 6, e = ''; --r >= 0; ) - if ('' !== e || 0 === r || 0 !== t[r]) { - var n = f(t[r]); - e = '' === e ? n : e + h('0', 7 - n.length) + n; - } - return e; - }; - n( - { - target: 'Number', - proto: !0, - forced: - s(function () { - return ( - '0.000' !== v(8e-5, 3) || - '1' !== v(0.9, 0) || - '1.25' !== v(1.255, 2) || - '1000000000000000128' !== v(0xde0b6b3a7640080, 0) - ); - }) || - !s(function () { - v({}); - }), - }, - { - toFixed: function (t) { - var r, - e, - n, - o, - u = a(this), - s = i(t), - l = [0, 0, 0, 0, 0, 0], - v = '', - b = '0'; - if (s < 0 || s > 20) throw c('Incorrect fraction digits'); - if (u != u) return 'NaN'; - if (u <= -1e21 || u >= 1e21) return f(u); - if ((u < 0 && ((v = '-'), (u = -u)), u > 1e-21)) - if ( - ((e = - (r = - (function (t) { - for (var r = 0, e = t; e >= 4096; ) (r += 12), (e /= 4096); - for (; e >= 2; ) (r += 1), (e /= 2); - return r; - })(u * d(2, 69, 1)) - 69) < 0 - ? u * d(2, -r, 1) - : u / d(2, r, 1)), - (e *= 4503599627370496), - (r = 52 - r) > 0) - ) { - for (g(l, 0, e), n = s; n >= 7; ) g(l, 1e7, 0), (n -= 7); - for (g(l, d(10, n, 1), 0), n = r - 1; n >= 23; ) y(l, 1 << 23), (n -= 23); - y(l, 1 << n), g(l, 1, 1), y(l, 2), (b = m(l)); - } else g(l, 0, e), g(l, 1 << -r, 0), (b = m(l) + h('0', s)); - return (b = - s > 0 - ? v + ((o = b.length) <= s ? '0.' + h('0', s - o) + b : p(b, 0, o - s) + '.' + p(b, o - s)) - : v + b); - }, - }, - ); - }, - 19658: (t, r, e) => { - var n = e(72698), - o = e(94382); - n({ target: 'Object', stat: !0, arity: 2, forced: Object.assign !== o }, { assign: o }); - }, - 22634: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(95417), - i = e(16922), - a = e(70481), - u = e(90663), - s = e(90189); - o && - n( - { target: 'Object', proto: !0, forced: i }, - { - __defineGetter__: function (t, r) { - s.f(u(this), t, { get: a(r), enumerable: !0, configurable: !0 }); - }, - }, - ); - }, - 8297: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(95417), - i = e(16922), - a = e(70481), - u = e(90663), - s = e(90189); - o && - n( - { target: 'Object', proto: !0, forced: i }, - { - __defineSetter__: function (t, r) { - s.f(u(this), t, { set: a(r), enumerable: !0, configurable: !0 }); - }, - }, - ); - }, - 47657: (t, r, e) => { - var n = e(72698), - o = e(98102), - i = e(82519); - n( - { target: 'Object', stat: !0 }, - { - fromEntries: function (t) { - var r = {}; - return ( - o( - t, - function (t, e) { - i(r, t, e); - }, - { AS_ENTRIES: !0 }, - ), - r - ); - }, - }, - ); - }, - 24024: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(95417), - i = e(16922), - a = e(90663), - u = e(37712), - s = e(62421), - c = e(68098).f; - o && - n( - { target: 'Object', proto: !0, forced: i }, - { - __lookupGetter__: function (t) { - var r, - e = a(this), - n = u(t); - do { - if ((r = c(e, n))) return r.get; - } while ((e = s(e))); - }, - }, - ); - }, - 13749: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(95417), - i = e(16922), - a = e(90663), - u = e(37712), - s = e(62421), - c = e(68098).f; - o && - n( - { target: 'Object', proto: !0, forced: i }, - { - __lookupSetter__: function (t) { - var r, - e = a(this), - n = u(t); - do { - if ((r = c(e, n))) return r.set; - } while ((e = s(e))); - }, - }, - ); - }, - 22741: (t, r, e) => { - var n = e(72698), - o = e(338); - n({ global: !0, forced: parseFloat != o }, { parseFloat: o }); - }, - 7116: (t, r, e) => { - var n = e(72698), - o = e(65931); - n({ global: !0, forced: parseInt != o }, { parseInt: o }); - }, - 58628: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41924), - i = e(70481), - a = e(92473), - u = e(30668), - s = e(98102); - n( - { target: 'Promise', stat: !0, forced: e(20769) }, - { - all: function (t) { - var r = this, - e = a.f(r), - n = e.resolve, - c = e.reject, - f = u(function () { - var e = i(r.resolve), - a = [], - u = 0, - f = 1; - s(t, function (t) { - var i = u++, - s = !1; - f++, - o(e, r, t).then(function (t) { - s || ((s = !0), (a[i] = t), --f || n(a)); - }, c); - }), - --f || n(a); - }); - return f.error && c(f.value), e.promise; - }, - }, - ); - }, - 60562: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(8588), - i = e(27743).CONSTRUCTOR, - a = e(15461), - u = e(52228), - s = e(88807), - c = e(29379), - f = a && a.prototype; - if ( - (n( - { target: 'Promise', proto: !0, forced: i, real: !0 }, - { - catch: function (t) { - return this.then(void 0, t); - }, - }, - ), - !o && s(a)) - ) { - var l = u('Promise').prototype.catch; - f.catch !== l && c(f, 'catch', l, { unsafe: !0 }); - } - }, - 67726: (t, r, e) => { - 'use strict'; - var n, - o, - i, - a = e(72698), - u = e(8588), - s = e(84543), - c = e(70412), - f = e(41924), - l = e(29379), - h = e(71083), - p = e(43803), - v = e(35787), - d = e(70481), - g = e(88807), - y = e(21188), - m = e(65712), - b = e(23913), - x = e(1017).set, - w = e(49514), - S = e(19630), - A = e(30668), - R = e(69323), - E = e(887), - O = e(15461), - I = e(27743), - P = e(92473), - T = 'Promise', - j = I.CONSTRUCTOR, - L = I.REJECTION_EVENT, - k = I.SUBCLASSING, - U = E.getterFor(T), - C = E.set, - _ = O && O.prototype, - M = O, - F = _, - N = c.TypeError, - B = c.document, - D = c.process, - H = P.f, - z = H, - q = !!(B && B.createEvent && c.dispatchEvent), - W = 'unhandledrejection', - G = function (t) { - var r; - return !(!y(t) || !g((r = t.then))) && r; - }, - V = function (t, r) { - var e, - n, - o, - i = r.value, - a = 1 == r.state, - u = a ? t.ok : t.fail, - s = t.resolve, - c = t.reject, - l = t.domain; - try { - u - ? (a || (2 === r.rejection && X(r), (r.rejection = 1)), - !0 === u ? (e = i) : (l && l.enter(), (e = u(i)), l && (l.exit(), (o = !0))), - e === t.promise ? c(N('Promise-chain cycle')) : (n = G(e)) ? f(n, e, s, c) : s(e)) - : c(i); - } catch (h) { - l && !o && l.exit(), c(h); - } - }, - $ = function (t, r) { - t.notified || - ((t.notified = !0), - w(function () { - for (var e, n = t.reactions; (e = n.get()); ) V(e, t); - (t.notified = !1), r && !t.rejection && K(t); - })); - }, - Y = function (t, r, e) { - var n, o; - q - ? (((n = B.createEvent('Event')).promise = r), (n.reason = e), n.initEvent(t, !1, !0), c.dispatchEvent(n)) - : (n = { promise: r, reason: e }), - !L && (o = c['on' + t]) ? o(n) : t === W && S('Unhandled promise rejection', e); - }, - K = function (t) { - f(x, c, function () { - var r, - e = t.facade, - n = t.value; - if ( - J(t) && - ((r = A(function () { - s ? D.emit('unhandledRejection', n, e) : Y(W, e, n); - })), - (t.rejection = s || J(t) ? 2 : 1), - r.error) - ) - throw r.value; - }); - }, - J = function (t) { - return 1 !== t.rejection && !t.parent; - }, - X = function (t) { - f(x, c, function () { - var r = t.facade; - s ? D.emit('rejectionHandled', r) : Y('rejectionhandled', r, t.value); - }); - }, - Q = function (t, r, e) { - return function (n) { - t(r, n, e); - }; - }, - Z = function (t, r, e) { - t.done || ((t.done = !0), e && (t = e), (t.value = r), (t.state = 2), $(t, !0)); - }, - tt = function (t, r, e) { - if (!t.done) { - (t.done = !0), e && (t = e); - try { - if (t.facade === r) throw N("Promise can't be resolved itself"); - var n = G(r); - n - ? w(function () { - var e = { done: !1 }; - try { - f(n, r, Q(tt, e, t), Q(Z, e, t)); - } catch (o) { - Z(e, o, t); - } - }) - : ((t.value = r), (t.state = 1), $(t, !1)); - } catch (o) { - Z({ done: !1 }, o, t); - } - } - }; - if ( - j && - ((F = (M = function (t) { - m(this, F), d(t), f(n, this); - var r = U(this); - try { - t(Q(tt, r), Q(Z, r)); - } catch (e) { - Z(r, e); - } - }).prototype), - ((n = function (t) { - C(this, { - type: T, - done: !1, - notified: !1, - parent: !1, - reactions: new R(), - rejection: !1, - state: 0, - value: void 0, - }); - }).prototype = l(F, 'then', function (t, r) { - var e = U(this), - n = H(b(this, M)); - return ( - (e.parent = !0), - (n.ok = !g(t) || t), - (n.fail = g(r) && r), - (n.domain = s ? D.domain : void 0), - 0 == e.state - ? e.reactions.add(n) - : w(function () { - V(n, e); - }), - n.promise - ); - })), - (o = function () { - var t = new n(), - r = U(t); - (this.promise = t), (this.resolve = Q(tt, r)), (this.reject = Q(Z, r)); - }), - (P.f = H = - function (t) { - return t === M || undefined === t ? new o(t) : z(t); - }), - !u && g(O) && _ !== Object.prototype) - ) { - (i = _.then), - k || - l( - _, - 'then', - function (t, r) { - var e = this; - return new M(function (t, r) { - f(i, e, t, r); - }).then(t, r); - }, - { unsafe: !0 }, - ); - try { - delete _.constructor; - } catch (rt) {} - h && h(_, F); - } - a({ global: !0, constructor: !0, wrap: !0, forced: j }, { Promise: M }), p(M, T, !1, !0), v(T); - }, - 94457: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(8588), - i = e(15461), - a = e(82229), - u = e(52228), - s = e(88807), - c = e(23913), - f = e(88149), - l = e(29379), - h = i && i.prototype; - if ( - (n( - { - target: 'Promise', - proto: !0, - real: !0, - forced: - !!i && - a(function () { - h.finally.call({ then: function () {} }, function () {}); - }), - }, - { - finally: function (t) { - var r = c(this, u('Promise')), - e = s(t); - return this.then( - e - ? function (e) { - return f(r, t()).then(function () { - return e; - }); - } - : t, - e - ? function (e) { - return f(r, t()).then(function () { - throw e; - }); - } - : t, - ); - }, - }, - ), - !o && s(i)) - ) { - var p = u('Promise').prototype.finally; - h.finally !== p && l(h, 'finally', p, { unsafe: !0 }); - } - }, - 70769: (t, r, e) => { - e(67726), e(58628), e(60562), e(9439), e(49081), e(98669); - }, - 9439: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41924), - i = e(70481), - a = e(92473), - u = e(30668), - s = e(98102); - n( - { target: 'Promise', stat: !0, forced: e(20769) }, - { - race: function (t) { - var r = this, - e = a.f(r), - n = e.reject, - c = u(function () { - var a = i(r.resolve); - s(t, function (t) { - o(a, r, t).then(e.resolve, n); - }); - }); - return c.error && n(c.value), e.promise; - }, - }, - ); - }, - 49081: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41924), - i = e(92473); - n( - { target: 'Promise', stat: !0, forced: e(27743).CONSTRUCTOR }, - { - reject: function (t) { - var r = i.f(this); - return o(r.reject, void 0, t), r.promise; - }, - }, - ); - }, - 98669: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(52228), - i = e(8588), - a = e(15461), - u = e(27743).CONSTRUCTOR, - s = e(88149), - c = o('Promise'), - f = i && !u; - n( - { target: 'Promise', stat: !0, forced: i || u }, - { - resolve: function (t) { - return s(f && this === c ? a : this, t); - }, - }, - ); - }, - 15371: (t, r, e) => { - var n = e(72698), - o = e(41924), - i = e(71843), - a = e(21188), - u = e(33080), - s = e(82229), - c = e(90189), - f = e(68098), - l = e(62421), - h = e(413); - n( - { - target: 'Reflect', - stat: !0, - forced: s(function () { - var t = function () {}, - r = c.f(new t(), 'a', { configurable: !0 }); - return !1 !== Reflect.set(t.prototype, 'a', 1, r); - }), - }, - { - set: function t(r, e, n) { - var s, - p, - v, - d = arguments.length < 4 ? r : arguments[3], - g = f.f(i(r), e); - if (!g) { - if (a((p = l(r)))) return t(p, e, n, d); - g = h(0); - } - if (u(g)) { - if (!1 === g.writable || !a(d)) return !1; - if ((s = f.f(d, e))) { - if (s.get || s.set || !1 === s.writable) return !1; - (s.value = n), c.f(d, e, s); - } else c.f(d, e, h(0, n)); - } else { - if (void 0 === (v = g.set)) return !1; - o(v, d, n); - } - return !0; - }, - }, - ); - }, - 46933: (t, r, e) => { - var n = e(95417), - o = e(70412), - i = e(41765), - a = e(76777), - u = e(42325), - s = e(7001), - c = e(58206).f, - f = e(13521), - l = e(16372), - h = e(98170), - p = e(36558), - v = e(48756), - d = e(30382), - g = e(29379), - y = e(82229), - m = e(91854), - b = e(887).enforce, - x = e(35787), - w = e(96982), - S = e(60054), - A = e(77084), - R = w('match'), - E = o.RegExp, - O = E.prototype, - I = o.SyntaxError, - P = i(O.exec), - T = i(''.charAt), - j = i(''.replace), - L = i(''.indexOf), - k = i(''.slice), - U = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/, - C = /a/g, - _ = /a/g, - M = new E(C) !== C, - F = v.MISSED_STICKY, - N = v.UNSUPPORTED_Y, - B = - n && - (!M || - F || - S || - A || - y(function () { - return (_[R] = !1), E(C) != C || E(_) == _ || '/a/i' != E(C, 'i'); - })); - if (a('RegExp', B)) { - for ( - var D = function (t, r) { - var e, - n, - o, - i, - a, - c, - v = f(O, this), - d = l(t), - g = void 0 === r, - y = [], - x = t; - if (!v && d && g && t.constructor === D) return t; - if ( - ((d || f(O, t)) && ((t = t.source), g && (r = p(x))), - (t = void 0 === t ? '' : h(t)), - (r = void 0 === r ? '' : h(r)), - (x = t), - S && ('dotAll' in C) && (n = !!r && L(r, 's') > -1) && (r = j(r, /s/g, '')), - (e = r), - F && ('sticky' in C) && (o = !!r && L(r, 'y') > -1) && N && (r = j(r, /y/g, '')), - A && - ((i = (function (t) { - for ( - var r, e = t.length, n = 0, o = '', i = [], a = {}, u = !1, s = !1, c = 0, f = ''; - n <= e; - n++ - ) { - if ('\\' === (r = T(t, n))) r += T(t, ++n); - else if (']' === r) u = !1; - else if (!u) - switch (!0) { - case '[' === r: - u = !0; - break; - case '(' === r: - P(U, k(t, n + 1)) && ((n += 2), (s = !0)), (o += r), c++; - continue; - case '>' === r && s: - if ('' === f || m(a, f)) throw new I('Invalid capture group name'); - (a[f] = !0), (i[i.length] = [f, c]), (s = !1), (f = ''); - continue; - } - s ? (f += r) : (o += r); - } - return [o, i]; - })(t)), - (t = i[0]), - (y = i[1])), - (a = u(E(t, r), v ? this : O, D)), - (n || o || y.length) && - ((c = b(a)), - n && - ((c.dotAll = !0), - (c.raw = D( - (function (t) { - for (var r, e = t.length, n = 0, o = '', i = !1; n <= e; n++) - '\\' !== (r = T(t, n)) - ? i || '.' !== r - ? ('[' === r ? (i = !0) : ']' === r && (i = !1), (o += r)) - : (o += '[\\s\\S]') - : (o += r + T(t, ++n)); - return o; - })(t), - e, - ))), - o && (c.sticky = !0), - y.length && (c.groups = y)), - t !== x) - ) - try { - s(a, 'source', '' === x ? '(?:)' : x); - } catch (w) {} - return a; - }, - H = c(E), - z = 0; - H.length > z; - - ) - d(D, E, H[z++]); - (O.constructor = D), (D.prototype = O), g(o, 'RegExp', D, { constructor: !0 }); - } - x('RegExp'); - }, - 9883: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(38157); - n({ target: 'RegExp', proto: !0, forced: /./.exec !== o }, { exec: o }); - }, - 76618: (t, r, e) => { - var n = e(70412), - o = e(95417), - i = e(10787), - a = e(88103), - u = e(82229), - s = n.RegExp, - c = s.prototype; - o && - u(function () { - var t = !0; - try { - s('.', 'd'); - } catch (u) { - t = !1; - } - var r = {}, - e = '', - n = t ? 'dgimsy' : 'gimsy', - o = function (t, n) { - Object.defineProperty(r, t, { - get: function () { - return (e += n), !0; - }, - }); - }, - i = { dotAll: 's', global: 'g', ignoreCase: 'i', multiline: 'm', sticky: 'y' }; - for (var a in (t && (i.hasIndices = 'd'), i)) o(a, i[a]); - return Object.getOwnPropertyDescriptor(c, 'flags').get.call(r) !== n || e !== n; - }) && - i(c, 'flags', { configurable: !0, get: a }); - }, - 16784: (t, r, e) => { - 'use strict'; - var n = e(56815).PROPER, - o = e(29379), - i = e(71843), - a = e(98170), - u = e(82229), - s = e(36558), - c = 'toString', - f = RegExp.prototype[c], - l = u(function () { - return '/a/b' != f.call({ source: 'a', flags: 'b' }); - }), - h = n && f.name != c; - (l || h) && - o( - RegExp.prototype, - c, - function () { - var t = i(this); - return '/' + a(t.source) + '/' + a(s(t)); - }, - { unsafe: !0 }, - ); - }, - 46073: (t, r, e) => { - 'use strict'; - var n, - o = e(72698), - i = e(41765), - a = e(68098).f, - u = e(25664), - s = e(98170), - c = e(47082), - f = e(20774), - l = e(59981), - h = e(8588), - p = i(''.endsWith), - v = i(''.slice), - d = Math.min, - g = l('endsWith'); - o( - { - target: 'String', - proto: !0, - forced: !!(h || g || ((n = a(String.prototype, 'endsWith')), !n || n.writable)) && !g, - }, - { - endsWith: function (t) { - var r = s(f(this)); - c(t); - var e = arguments.length > 1 ? arguments[1] : void 0, - n = r.length, - o = void 0 === e ? n : d(u(e), n), - i = s(t); - return p ? p(r, i, o) : v(r, o - i.length, o) === i; - }, - }, - ); - }, - 9944: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41765), - i = e(47082), - a = e(20774), - u = e(98170), - s = e(59981), - c = o(''.indexOf); - n( - { target: 'String', proto: !0, forced: !s('includes') }, - { - includes: function (t) { - return !!~c(u(a(this)), u(i(t)), arguments.length > 1 ? arguments[1] : void 0); - }, - }, - ); - }, - 73814: (t, r, e) => { - 'use strict'; - var n = e(33100).charAt, - o = e(98170), - i = e(887), - a = e(61666), - u = e(74903), - s = 'String Iterator', - c = i.set, - f = i.getterFor(s); - a( - String, - 'String', - function (t) { - c(this, { type: s, string: o(t), index: 0 }); - }, - function () { - var t, - r = f(this), - e = r.string, - o = r.index; - return o >= e.length ? u(void 0, !0) : ((t = n(e, o)), (r.index += t.length), u(t, !1)); - }, - ); - }, - 8258: (t, r, e) => { - 'use strict'; - var n = e(41924), - o = e(11323), - i = e(71843), - a = e(39989), - u = e(25664), - s = e(98170), - c = e(20774), - f = e(89423), - l = e(95158), - h = e(12134); - o('match', function (t, r, e) { - return [ - function (r) { - var e = c(this), - o = a(r) ? void 0 : f(r, t); - return o ? n(o, r, e) : new RegExp(r)[t](s(e)); - }, - function (t) { - var n = i(this), - o = s(t), - a = e(r, n, o); - if (a.done) return a.value; - if (!n.global) return h(n, o); - var c = n.unicode; - n.lastIndex = 0; - for (var f, p = [], v = 0; null !== (f = h(n, o)); ) { - var d = s(f[0]); - (p[v] = d), '' === d && (n.lastIndex = l(o, u(n.lastIndex), c)), v++; - } - return 0 === v ? null : p; - }, - ]; - }); - }, - 80776: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(52752).end; - n( - { target: 'String', proto: !0, forced: e(71896) }, - { - padEnd: function (t) { - return o(this, t, arguments.length > 1 ? arguments[1] : void 0); - }, - }, - ); - }, - 50633: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(52752).start; - n( - { target: 'String', proto: !0, forced: e(71896) }, - { - padStart: function (t) { - return o(this, t, arguments.length > 1 ? arguments[1] : void 0); - }, - }, - ); - }, - 29: (t, r, e) => { - 'use strict'; - var n = e(90675), - o = e(41924), - i = e(41765), - a = e(11323), - u = e(82229), - s = e(71843), - c = e(88807), - f = e(39989), - l = e(32048), - h = e(25664), - p = e(98170), - v = e(20774), - d = e(95158), - g = e(89423), - y = e(80556), - m = e(12134), - b = e(96982)('replace'), - x = Math.max, - w = Math.min, - S = i([].concat), - A = i([].push), - R = i(''.indexOf), - E = i(''.slice), - O = '$0' === 'a'.replace(/./, '$0'), - I = !!/./[b] && '' === /./[b]('a', '$0'); - a( - 'replace', - function (t, r, e) { - var i = I ? '$' : '$0'; - return [ - function (t, e) { - var n = v(this), - i = f(t) ? void 0 : g(t, b); - return i ? o(i, t, n, e) : o(r, p(n), t, e); - }, - function (t, o) { - var a = s(this), - u = p(t); - if ('string' == typeof o && -1 === R(o, i) && -1 === R(o, '$<')) { - var f = e(r, a, u, o); - if (f.done) return f.value; - } - var v = c(o); - v || (o = p(o)); - var g = a.global; - if (g) { - var b = a.unicode; - a.lastIndex = 0; - } - for (var O = []; ; ) { - var I = m(a, u); - if (null === I) break; - if ((A(O, I), !g)) break; - '' === p(I[0]) && (a.lastIndex = d(u, h(a.lastIndex), b)); - } - for (var P, T = '', j = 0, L = 0; L < O.length; L++) { - for (var k = p((I = O[L])[0]), U = x(w(l(I.index), u.length), 0), C = [], _ = 1; _ < I.length; _++) - A(C, void 0 === (P = I[_]) ? P : String(P)); - var M = I.groups; - if (v) { - var F = S([k], C, U, u); - void 0 !== M && A(F, M); - var N = p(n(o, void 0, F)); - } else N = y(k, u, U, C, M, o); - U >= j && ((T += E(u, j, U) + N), (j = U + k.length)); - } - return T + E(u, j); - }, - ]; - }, - !!u(function () { - var t = /./; - return ( - (t.exec = function () { - var t = []; - return (t.groups = { a: '7' }), t; - }), - '7' !== ''.replace(t, '$') - ); - }) || - !O || - I, - ); - }, - 71867: (t, r, e) => { - 'use strict'; - var n = e(41924), - o = e(11323), - i = e(71843), - a = e(39989), - u = e(20774), - s = e(53411), - c = e(98170), - f = e(89423), - l = e(12134); - o('search', function (t, r, e) { - return [ - function (r) { - var e = u(this), - o = a(r) ? void 0 : f(r, t); - return o ? n(o, r, e) : new RegExp(r)[t](c(e)); - }, - function (t) { - var n = i(this), - o = c(t), - a = e(r, n, o); - if (a.done) return a.value; - var u = n.lastIndex; - s(u, 0) || (n.lastIndex = 0); - var f = l(n, o); - return s(n.lastIndex, u) || (n.lastIndex = u), null === f ? -1 : f.index; - }, - ]; - }); - }, - 64469: (t, r, e) => { - 'use strict'; - var n = e(90675), - o = e(41924), - i = e(41765), - a = e(11323), - u = e(71843), - s = e(39989), - c = e(16372), - f = e(20774), - l = e(23913), - h = e(95158), - p = e(25664), - v = e(98170), - d = e(89423), - g = e(89625), - y = e(12134), - m = e(38157), - b = e(48756), - x = e(82229), - w = b.UNSUPPORTED_Y, - S = 4294967295, - A = Math.min, - R = [].push, - E = i(/./.exec), - O = i(R), - I = i(''.slice); - a( - 'split', - function (t, r, e) { - var i; - return ( - (i = - 'c' == 'abbc'.split(/(b)*/)[1] || - 4 != 'test'.split(/(?:)/, -1).length || - 2 != 'ab'.split(/(?:ab)*/).length || - 4 != '.'.split(/(.?)(.?)/).length || - '.'.split(/()()/).length > 1 || - ''.split(/.?/).length - ? function (t, e) { - var i = v(f(this)), - a = void 0 === e ? S : e >>> 0; - if (0 === a) return []; - if (void 0 === t) return [i]; - if (!c(t)) return o(r, i, t, a); - for ( - var u, - s, - l, - h = [], - p = - (t.ignoreCase ? 'i' : '') + - (t.multiline ? 'm' : '') + - (t.unicode ? 'u' : '') + - (t.sticky ? 'y' : ''), - d = 0, - y = new RegExp(t.source, p + 'g'); - (u = o(m, y, i)) && - !( - (s = y.lastIndex) > d && - (O(h, I(i, d, u.index)), - u.length > 1 && u.index < i.length && n(R, h, g(u, 1)), - (l = u[0].length), - (d = s), - h.length >= a) - ); - - ) - y.lastIndex === u.index && y.lastIndex++; - return d === i.length ? (!l && E(y, '')) || O(h, '') : O(h, I(i, d)), h.length > a ? g(h, 0, a) : h; - } - : '0'.split(void 0, 0).length - ? function (t, e) { - return void 0 === t && 0 === e ? [] : o(r, this, t, e); - } - : r), - [ - function (r, e) { - var n = f(this), - a = s(r) ? void 0 : d(r, t); - return a ? o(a, r, n, e) : o(i, v(n), r, e); - }, - function (t, n) { - var o = u(this), - a = v(t), - s = e(i, o, a, n, i !== r); - if (s.done) return s.value; - var c = l(o, RegExp), - f = o.unicode, - d = (o.ignoreCase ? 'i' : '') + (o.multiline ? 'm' : '') + (o.unicode ? 'u' : '') + (w ? 'g' : 'y'), - g = new c(w ? '^(?:' + o.source + ')' : o, d), - m = void 0 === n ? S : n >>> 0; - if (0 === m) return []; - if (0 === a.length) return null === y(g, a) ? [a] : []; - for (var b = 0, x = 0, R = []; x < a.length; ) { - g.lastIndex = w ? 0 : x; - var E, - P = y(g, w ? I(a, x) : a); - if (null === P || (E = A(p(g.lastIndex + (w ? x : 0)), a.length)) === b) x = h(a, x, f); - else { - if ((O(R, I(a, b, x)), R.length === m)) return R; - for (var T = 1; T <= P.length - 1; T++) if ((O(R, P[T]), R.length === m)) return R; - x = b = E; - } - } - return O(R, I(a, b)), R; - }, - ] - ); - }, - !!x(function () { - var t = /(?:)/, - r = t.exec; - t.exec = function () { - return r.apply(this, arguments); - }; - var e = 'ab'.split(t); - return 2 !== e.length || 'a' !== e[0] || 'b' !== e[1]; - }), - w, - ); - }, - 40387: (t, r, e) => { - 'use strict'; - var n, - o = e(72698), - i = e(41765), - a = e(68098).f, - u = e(25664), - s = e(98170), - c = e(47082), - f = e(20774), - l = e(59981), - h = e(8588), - p = i(''.startsWith), - v = i(''.slice), - d = Math.min, - g = l('startsWith'); - o( - { - target: 'String', - proto: !0, - forced: !!(h || g || ((n = a(String.prototype, 'startsWith')), !n || n.writable)) && !g, - }, - { - startsWith: function (t) { - var r = s(f(this)); - c(t); - var e = u(d(arguments.length > 1 ? arguments[1] : void 0, r.length)), - n = s(t); - return p ? p(r, n, e) : v(r, e, e + n.length) === n; - }, - }, - ); - }, - 19280: (t, r, e) => { - e(48749); - var n = e(72698), - o = e(78778); - n({ target: 'String', proto: !0, name: 'trimEnd', forced: ''.trimEnd !== o }, { trimEnd: o }); - }, - 6577: (t, r, e) => { - var n = e(72698), - o = e(682); - n({ target: 'String', proto: !0, name: 'trimStart', forced: ''.trimLeft !== o }, { trimLeft: o }); - }, - 48749: (t, r, e) => { - var n = e(72698), - o = e(78778); - n({ target: 'String', proto: !0, name: 'trimEnd', forced: ''.trimRight !== o }, { trimRight: o }); - }, - 62108: (t, r, e) => { - e(6577); - var n = e(72698), - o = e(682); - n({ target: 'String', proto: !0, name: 'trimStart', forced: ''.trimStart !== o }, { trimStart: o }); - }, - 58521: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(29224).trim; - n( - { target: 'String', proto: !0, forced: e(88205)('trim') }, - { - trim: function () { - return o(this); - }, - }, - ); - }, - 17818: (t, r, e) => { - e(16515)('asyncIterator'); - }, - 47306: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(95417), - i = e(70412), - a = e(41765), - u = e(91854), - s = e(88807), - c = e(13521), - f = e(98170), - l = e(90189).f, - h = e(12283), - p = i.Symbol, - v = p && p.prototype; - if (o && s(p) && (!('description' in v) || void 0 !== p().description)) { - var d = {}, - g = function () { - var t = arguments.length < 1 || void 0 === arguments[0] ? void 0 : f(arguments[0]), - r = c(v, this) ? new p(t) : void 0 === t ? p() : p(t); - return '' === t && (d[r] = !0), r; - }; - h(g, p), (g.prototype = v), (v.constructor = g); - var y = 'Symbol(test)' == String(p('test')), - m = a(v.valueOf), - b = a(v.toString), - x = /^Symbol\((.*)\)[^)]+$/, - w = a(''.replace), - S = a(''.slice); - l(v, 'description', { - configurable: !0, - get: function () { - var t = m(this); - if (u(d, t)) return ''; - var r = b(t), - e = y ? S(r, 7, -1) : w(r, x, '$1'); - return '' === e ? void 0 : e; - }, - }), - n({ global: !0, constructor: !0, forced: !0 }, { Symbol: g }); - } - }, - 39661: (t, r, e) => { - e(16515)('match'); - }, - 13591: (t, r, e) => { - e(16515)('replace'); - }, - 18868: (t, r, e) => { - e(16515)('search'); - }, - 54095: (t, r, e) => { - e(16515)('split'); - }, - 61066: (t, r, e) => { - 'use strict'; - var n = e(30491), - o = e(99369), - i = e(85580), - a = e(765), - u = e(41924), - s = e(41765), - c = e(82229), - f = n.aTypedArray, - l = n.exportTypedArrayMethod, - h = s(''.slice); - l( - 'fill', - function (t) { - var r = arguments.length; - f(this); - var e = 'Big' === h(a(this), 0, 3) ? i(t) : +t; - return u(o, this, e, r > 1 ? arguments[1] : void 0, r > 2 ? arguments[2] : void 0); - }, - c(function () { - var t = 0; - return ( - new Int8Array(2).fill({ - valueOf: function () { - return t++; - }, - }), - 1 !== t - ); - }), - ); - }, - 11662: (t, r, e) => { - e(97064)('Float32', function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }); - }, - 78598: (t, r, e) => { - e(97064)('Float64', function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }); - }, - 58528: (t, r, e) => { - 'use strict'; - var n = e(40138); - (0, e(30491).exportTypedArrayStaticMethod)('from', e(31716), n); - }, - 27999: (t, r, e) => { - e(97064)('Int16', function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }); - }, - 30146: (t, r, e) => { - e(97064)('Int32', function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }); - }, - 55806: (t, r, e) => { - e(97064)('Int8', function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }); - }, - 74273: (t, r, e) => { - 'use strict'; - var n = e(30491), - o = e(40138), - i = n.aTypedArrayConstructor; - (0, n.exportTypedArrayStaticMethod)( - 'of', - function () { - for (var t = 0, r = arguments.length, e = new (i(this))(r); r > t; ) e[t] = arguments[t++]; - return e; - }, - o, - ); - }, - 51850: (t, r, e) => { - 'use strict'; - var n = e(70412), - o = e(41924), - i = e(30491), - a = e(40406), - u = e(20839), - s = e(90663), - c = e(82229), - f = n.RangeError, - l = n.Int8Array, - h = l && l.prototype, - p = h && h.set, - v = i.aTypedArray, - d = i.exportTypedArrayMethod, - g = !c(function () { - var t = new Uint8ClampedArray(2); - return o(p, t, { length: 1, 0: 3 }, 1), 3 !== t[1]; - }), - y = - g && - i.NATIVE_ARRAY_BUFFER_VIEWS && - c(function () { - var t = new l(2); - return t.set(1), t.set('2', 1), 0 !== t[0] || 2 !== t[1]; - }); - d( - 'set', - function (t) { - v(this); - var r = u(arguments.length > 1 ? arguments[1] : void 0, 1), - e = s(t); - if (g) return o(p, this, e, r); - var n = this.length, - i = a(e), - c = 0; - if (i + r > n) throw f('Wrong length'); - for (; c < i; ) this[r + c] = e[c++]; - }, - !g || y, - ); - }, - 72726: (t, r, e) => { - 'use strict'; - var n = e(70412), - o = e(41765), - i = e(82229), - a = e(70481), - u = e(42771), - s = e(30491), - c = e(89443), - f = e(17608), - l = e(44905), - h = e(58452), - p = s.aTypedArray, - v = s.exportTypedArrayMethod, - d = n.Uint16Array, - g = d && o(d.prototype.sort), - y = !( - !g || - (i(function () { - g(new d(2), null); - }) && - i(function () { - g(new d(2), {}); - })) - ), - m = - !!g && - !i(function () { - if (l) return l < 74; - if (c) return c < 67; - if (f) return !0; - if (h) return h < 602; - var t, - r, - e = new d(516), - n = Array(516); - for (t = 0; t < 516; t++) (r = t % 4), (e[t] = 515 - t), (n[t] = t - 2 * r + 3); - for ( - g(e, function (t, r) { - return ((t / 4) | 0) - ((r / 4) | 0); - }), - t = 0; - t < 516; - t++ - ) - if (e[t] !== n[t]) return !0; - }); - v( - 'sort', - function (t) { - return ( - void 0 !== t && a(t), - m - ? g(this, t) - : u( - p(this), - (function (t) { - return function (r, e) { - return void 0 !== t - ? +t(r, e) || 0 - : e != e - ? -1 - : r != r - ? 1 - : 0 === r && 0 === e - ? 1 / r > 0 && 1 / e < 0 - ? 1 - : -1 - : r > e; - }; - })(t), - ) - ); - }, - !m || y, - ); - }, - 31368: (t, r, e) => { - 'use strict'; - var n = e(70412), - o = e(90675), - i = e(30491), - a = e(82229), - u = e(96784), - s = n.Int8Array, - c = i.aTypedArray, - f = i.exportTypedArrayMethod, - l = [].toLocaleString, - h = - !!s && - a(function () { - l.call(new s(1)); - }); - f( - 'toLocaleString', - function () { - return o(l, h ? u(c(this)) : c(this), u(arguments)); - }, - a(function () { - return [1, 2].toLocaleString() != new s([1, 2]).toLocaleString(); - }) || - !a(function () { - s.prototype.toLocaleString.call([1, 2]); - }), - ); - }, - 17507: (t, r, e) => { - e(97064)('Uint16', function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }); - }, - 22894: (t, r, e) => { - e(97064)('Uint32', function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }); - }, - 44160: (t, r, e) => { - e(97064)('Uint8', function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }); - }, - 21887: (t, r, e) => { - e(97064)( - 'Uint8', - function (t) { - return function (r, e, n) { - return t(this, r, e, n); - }; - }, - !0, - ); - }, - 65679: (t, r, e) => { - 'use strict'; - var n, - o = e(70412), - i = e(41765), - a = e(87570), - u = e(9727), - s = e(70175), - c = e(31575), - f = e(21188), - l = e(47305), - h = e(887).enforce, - p = e(17023), - v = !o.ActiveXObject && 'ActiveXObject' in o, - d = function (t) { - return function () { - return t(this, arguments.length ? arguments[0] : void 0); - }; - }, - g = s('WeakMap', d, c); - if (p && v) { - (n = c.getConstructor(d, 'WeakMap', !0)), u.enable(); - var y = g.prototype, - m = i(y.delete), - b = i(y.has), - x = i(y.get), - w = i(y.set); - a(y, { - delete: function (t) { - if (f(t) && !l(t)) { - var r = h(this); - return r.frozen || (r.frozen = new n()), m(this, t) || r.frozen.delete(t); - } - return m(this, t); - }, - has: function (t) { - if (f(t) && !l(t)) { - var r = h(this); - return r.frozen || (r.frozen = new n()), b(this, t) || r.frozen.has(t); - } - return b(this, t); - }, - get: function (t) { - if (f(t) && !l(t)) { - var r = h(this); - return r.frozen || (r.frozen = new n()), b(this, t) ? x(this, t) : r.frozen.get(t); - } - return x(this, t); - }, - set: function (t, r) { - if (f(t) && !l(t)) { - var e = h(this); - e.frozen || (e.frozen = new n()), b(this, t) ? w(this, t, r) : e.frozen.set(t, r); - } else w(this, t, r); - return this; - }, - }); - } - }, - 22993: (t, r, e) => { - e(65679); - }, - 12053: (t, r, e) => { - var n = e(72698), - o = e(70412), - i = e(1017).clear; - n({ global: !0, bind: !0, enumerable: !0, forced: o.clearImmediate !== i }, { clearImmediate: i }); - }, - 3346: (t, r, e) => { - var n = e(70412), - o = e(42706), - i = e(92076), - a = e(78062), - u = e(7001), - s = e(96982), - c = s('iterator'), - f = s('toStringTag'), - l = a.values, - h = function (t, r) { - if (t) { - if (t[c] !== l) - try { - u(t, c, l); - } catch (n) { - t[c] = l; - } - if ((t[f] || u(t, f, r), o[r])) - for (var e in a) - if (t[e] !== a[e]) - try { - u(t, e, a[e]); - } catch (n) { - t[e] = a[e]; - } - } - }; - for (var p in o) h(n[p] && n[p].prototype, p); - h(i, 'DOMTokenList'); - }, - 98720: (t, r, e) => { - e(12053), e(75878); - }, - 39853: (t, r, e) => { - var n = e(72698), - o = e(70412), - i = e(49514), - a = e(70481), - u = e(58453), - s = e(84543), - c = o.process; - n( - { global: !0, enumerable: !0, dontCallGetSet: !0 }, - { - queueMicrotask: function (t) { - u(arguments.length, 1), a(t); - var r = s && c.domain; - i(r ? r.bind(t) : t); - }, - }, - ); - }, - 75878: (t, r, e) => { - var n = e(72698), - o = e(70412), - i = e(1017).set; - n({ global: !0, bind: !0, enumerable: !0, forced: o.setImmediate !== i }, { setImmediate: i }); - }, - 94168: (t, r, e) => { - 'use strict'; - e(78062); - var n = e(72698), - o = e(70412), - i = e(41924), - a = e(41765), - u = e(95417), - s = e(506), - c = e(29379), - f = e(87570), - l = e(43803), - h = e(57015), - p = e(887), - v = e(65712), - d = e(88807), - g = e(91854), - y = e(7365), - m = e(765), - b = e(71843), - x = e(21188), - w = e(98170), - S = e(56042), - A = e(413), - R = e(28338), - E = e(63412), - O = e(58453), - I = e(96982), - P = e(42771), - T = I('iterator'), - j = 'URLSearchParams', - L = j + 'Iterator', - k = p.set, - U = p.getterFor(j), - C = p.getterFor(L), - _ = Object.getOwnPropertyDescriptor, - M = function (t) { - if (!u) return o[t]; - var r = _(o, t); - return r && r.value; - }, - F = M('fetch'), - N = M('Request'), - B = M('Headers'), - D = N && N.prototype, - H = B && B.prototype, - z = o.RegExp, - q = o.TypeError, - W = o.decodeURIComponent, - G = o.encodeURIComponent, - V = a(''.charAt), - $ = a([].join), - Y = a([].push), - K = a(''.replace), - J = a([].shift), - X = a([].splice), - Q = a(''.split), - Z = a(''.slice), - tt = /\+/g, - rt = Array(4), - et = function (t) { - return rt[t - 1] || (rt[t - 1] = z('((?:%[\\da-f]{2}){' + t + '})', 'gi')); - }, - nt = function (t) { - try { - return W(t); - } catch (r) { - return t; - } - }, - ot = function (t) { - var r = K(t, tt, ' '), - e = 4; - try { - return W(r); - } catch (n) { - for (; e; ) r = K(r, et(e--), nt); - return r; - } - }, - it = /[!'()~]|%20/g, - at = { '!': '%21', "'": '%27', '(': '%28', ')': '%29', '~': '%7E', '%20': '+' }, - ut = function (t) { - return at[t]; - }, - st = function (t) { - return K(G(t), it, ut); - }, - ct = h( - function (t, r) { - k(this, { type: L, iterator: R(U(t).entries), kind: r }); - }, - 'Iterator', - function () { - var t = C(this), - r = t.kind, - e = t.iterator.next(), - n = e.value; - return e.done || (e.value = 'keys' === r ? n.key : 'values' === r ? n.value : [n.key, n.value]), e; - }, - !0, - ), - ft = function (t) { - (this.entries = []), - (this.url = null), - void 0 !== t && - (x(t) - ? this.parseObject(t) - : this.parseQuery('string' == typeof t ? ('?' === V(t, 0) ? Z(t, 1) : t) : w(t))); - }; - ft.prototype = { - type: j, - bindURL: function (t) { - (this.url = t), this.update(); - }, - parseObject: function (t) { - var r, - e, - n, - o, - a, - u, - s, - c = E(t); - if (c) - for (e = (r = R(t, c)).next; !(n = i(e, r)).done; ) { - if (((a = (o = R(b(n.value))).next), (u = i(a, o)).done || (s = i(a, o)).done || !i(a, o).done)) - throw q('Expected sequence with length 2'); - Y(this.entries, { key: w(u.value), value: w(s.value) }); - } - else for (var f in t) g(t, f) && Y(this.entries, { key: f, value: w(t[f]) }); - }, - parseQuery: function (t) { - if (t) - for (var r, e, n = Q(t, '&'), o = 0; o < n.length; ) - (r = n[o++]).length && ((e = Q(r, '=')), Y(this.entries, { key: ot(J(e)), value: ot($(e, '=')) })); - }, - serialize: function () { - for (var t, r = this.entries, e = [], n = 0; n < r.length; ) - (t = r[n++]), Y(e, st(t.key) + '=' + st(t.value)); - return $(e, '&'); - }, - update: function () { - (this.entries.length = 0), this.parseQuery(this.url.query); - }, - updateURL: function () { - this.url && this.url.update(); - }, - }; - var lt = function () { - v(this, ht), k(this, new ft(arguments.length > 0 ? arguments[0] : void 0)); - }, - ht = lt.prototype; - if ( - (f( - ht, - { - append: function (t, r) { - O(arguments.length, 2); - var e = U(this); - Y(e.entries, { key: w(t), value: w(r) }), e.updateURL(); - }, - delete: function (t) { - O(arguments.length, 1); - for (var r = U(this), e = r.entries, n = w(t), o = 0; o < e.length; ) e[o].key === n ? X(e, o, 1) : o++; - r.updateURL(); - }, - get: function (t) { - O(arguments.length, 1); - for (var r = U(this).entries, e = w(t), n = 0; n < r.length; n++) if (r[n].key === e) return r[n].value; - return null; - }, - getAll: function (t) { - O(arguments.length, 1); - for (var r = U(this).entries, e = w(t), n = [], o = 0; o < r.length; o++) - r[o].key === e && Y(n, r[o].value); - return n; - }, - has: function (t) { - O(arguments.length, 1); - for (var r = U(this).entries, e = w(t), n = 0; n < r.length; ) if (r[n++].key === e) return !0; - return !1; - }, - set: function (t, r) { - O(arguments.length, 1); - for (var e, n = U(this), o = n.entries, i = !1, a = w(t), u = w(r), s = 0; s < o.length; s++) - (e = o[s]).key === a && (i ? X(o, s--, 1) : ((i = !0), (e.value = u))); - i || Y(o, { key: a, value: u }), n.updateURL(); - }, - sort: function () { - var t = U(this); - P(t.entries, function (t, r) { - return t.key > r.key ? 1 : -1; - }), - t.updateURL(); - }, - forEach: function (t) { - for ( - var r, e = U(this).entries, n = y(t, arguments.length > 1 ? arguments[1] : void 0), o = 0; - o < e.length; - - ) - n((r = e[o++]).value, r.key, this); - }, - keys: function () { - return new ct(this, 'keys'); - }, - values: function () { - return new ct(this, 'values'); - }, - entries: function () { - return new ct(this, 'entries'); - }, - }, - { enumerable: !0 }, - ), - c(ht, T, ht.entries, { name: 'entries' }), - c( - ht, - 'toString', - function () { - return U(this).serialize(); - }, - { enumerable: !0 }, - ), - l(lt, j), - n({ global: !0, constructor: !0, forced: !s }, { URLSearchParams: lt }), - !s && d(B)) - ) { - var pt = a(H.has), - vt = a(H.set), - dt = function (t) { - if (x(t)) { - var r, - e = t.body; - if (m(e) === j) - return ( - (r = t.headers ? new B(t.headers) : new B()), - pt(r, 'content-type') || vt(r, 'content-type', 'application/x-www-form-urlencoded;charset=UTF-8'), - S(t, { body: A(0, w(e)), headers: A(0, r) }) - ); - } - return t; - }; - if ( - (d(F) && - n( - { global: !0, enumerable: !0, dontCallGetSet: !0, forced: !0 }, - { - fetch: function (t) { - return F(t, arguments.length > 1 ? dt(arguments[1]) : {}); - }, - }, - ), - d(N)) - ) { - var gt = function (t) { - return v(this, D), new N(t, arguments.length > 1 ? dt(arguments[1]) : {}); - }; - (D.constructor = gt), - (gt.prototype = D), - n({ global: !0, constructor: !0, dontCallGetSet: !0, forced: !0 }, { Request: gt }); - } - } - t.exports = { URLSearchParams: lt, getState: U }; - }, - 73397: (t, r, e) => { - e(94168); - }, - 791: (t, r, e) => { - 'use strict'; - e(73814); - var n, - o = e(72698), - i = e(95417), - a = e(506), - u = e(70412), - s = e(7365), - c = e(41765), - f = e(29379), - l = e(10787), - h = e(65712), - p = e(91854), - v = e(94382), - d = e(80951), - g = e(89625), - y = e(33100).codeAt, - m = e(63253), - b = e(98170), - x = e(43803), - w = e(58453), - S = e(94168), - A = e(887), - R = A.set, - E = A.getterFor('URL'), - O = S.URLSearchParams, - I = S.getState, - P = u.URL, - T = u.TypeError, - j = u.parseInt, - L = Math.floor, - k = Math.pow, - U = c(''.charAt), - C = c(/./.exec), - _ = c([].join), - M = c((1).toString), - F = c([].pop), - N = c([].push), - B = c(''.replace), - D = c([].shift), - H = c(''.split), - z = c(''.slice), - q = c(''.toLowerCase), - W = c([].unshift), - G = 'Invalid scheme', - V = 'Invalid host', - $ = 'Invalid port', - Y = /[a-z]/i, - K = /[\d+-.a-z]/i, - J = /\d/, - X = /^0x/i, - Q = /^[0-7]+$/, - Z = /^\d+$/, - tt = /^[\da-f]+$/i, - rt = /[\0\t\n\r #%/:<>?@[\\\]^|]/, - et = /[\0\t\n\r #/:<>?@[\\\]^|]/, - nt = /^[\u0000-\u0020]+|[\u0000-\u0020]+$/g, - ot = /[\t\n\r]/g, - it = function (t) { - var r, e, n, o; - if ('number' == typeof t) { - for (r = [], e = 0; e < 4; e++) W(r, t % 256), (t = L(t / 256)); - return _(r, '.'); - } - if ('object' == typeof t) { - for ( - r = '', - n = (function (t) { - for (var r = null, e = 1, n = null, o = 0, i = 0; i < 8; i++) - 0 !== t[i] ? (o > e && ((r = n), (e = o)), (n = null), (o = 0)) : (null === n && (n = i), ++o); - return o > e && ((r = n), (e = o)), r; - })(t), - e = 0; - e < 8; - e++ - ) - (o && 0 === t[e]) || - (o && (o = !1), - n === e ? ((r += e ? ':' : '::'), (o = !0)) : ((r += M(t[e], 16)), e < 7 && (r += ':'))); - return '[' + r + ']'; - } - return t; - }, - at = {}, - ut = v({}, at, { ' ': 1, '"': 1, '<': 1, '>': 1, '`': 1 }), - st = v({}, ut, { '#': 1, '?': 1, '{': 1, '}': 1 }), - ct = v({}, st, { '/': 1, ':': 1, ';': 1, '=': 1, '@': 1, '[': 1, '\\': 1, ']': 1, '^': 1, '|': 1 }), - ft = function (t, r) { - var e = y(t, 0); - return e > 32 && e < 127 && !p(r, t) ? t : encodeURIComponent(t); - }, - lt = { ftp: 21, file: null, http: 80, https: 443, ws: 80, wss: 443 }, - ht = function (t, r) { - var e; - return 2 == t.length && C(Y, U(t, 0)) && (':' == (e = U(t, 1)) || (!r && '|' == e)); - }, - pt = function (t) { - var r; - return ( - t.length > 1 && - ht(z(t, 0, 2)) && - (2 == t.length || '/' === (r = U(t, 2)) || '\\' === r || '?' === r || '#' === r) - ); - }, - vt = function (t) { - return '.' === t || '%2e' === q(t); - }, - dt = {}, - gt = {}, - yt = {}, - mt = {}, - bt = {}, - xt = {}, - wt = {}, - St = {}, - At = {}, - Rt = {}, - Et = {}, - Ot = {}, - It = {}, - Pt = {}, - Tt = {}, - jt = {}, - Lt = {}, - kt = {}, - Ut = {}, - Ct = {}, - _t = {}, - Mt = function (t, r, e) { - var n, - o, - i, - a = b(t); - if (r) { - if ((o = this.parse(a))) throw T(o); - this.searchParams = null; - } else { - if ((void 0 !== e && (n = new Mt(e, !0)), (o = this.parse(a, null, n)))) throw T(o); - (i = I(new O())).bindURL(this), (this.searchParams = i); - } - }; - Mt.prototype = { - type: 'URL', - parse: function (t, r, e) { - var o, - i, - a, - u, - s, - c = this, - f = r || dt, - l = 0, - h = '', - v = !1, - y = !1, - m = !1; - for ( - t = b(t), - r || - ((c.scheme = ''), - (c.username = ''), - (c.password = ''), - (c.host = null), - (c.port = null), - (c.path = []), - (c.query = null), - (c.fragment = null), - (c.cannotBeABaseURL = !1), - (t = B(t, nt, ''))), - t = B(t, ot, ''), - o = d(t); - l <= o.length; - - ) { - switch (((i = o[l]), f)) { - case dt: - if (!i || !C(Y, i)) { - if (r) return G; - f = yt; - continue; - } - (h += q(i)), (f = gt); - break; - case gt: - if (i && (C(K, i) || '+' == i || '-' == i || '.' == i)) h += q(i); - else { - if (':' != i) { - if (r) return G; - (h = ''), (f = yt), (l = 0); - continue; - } - if ( - r && - (c.isSpecial() != p(lt, h) || - ('file' == h && (c.includesCredentials() || null !== c.port)) || - ('file' == c.scheme && !c.host)) - ) - return; - if (((c.scheme = h), r)) return void (c.isSpecial() && lt[c.scheme] == c.port && (c.port = null)); - (h = ''), - 'file' == c.scheme - ? (f = Pt) - : c.isSpecial() && e && e.scheme == c.scheme - ? (f = mt) - : c.isSpecial() - ? (f = St) - : '/' == o[l + 1] - ? ((f = bt), l++) - : ((c.cannotBeABaseURL = !0), N(c.path, ''), (f = Ut)); - } - break; - case yt: - if (!e || (e.cannotBeABaseURL && '#' != i)) return G; - if (e.cannotBeABaseURL && '#' == i) { - (c.scheme = e.scheme), - (c.path = g(e.path)), - (c.query = e.query), - (c.fragment = ''), - (c.cannotBeABaseURL = !0), - (f = _t); - break; - } - f = 'file' == e.scheme ? Pt : xt; - continue; - case mt: - if ('/' != i || '/' != o[l + 1]) { - f = xt; - continue; - } - (f = At), l++; - break; - case bt: - if ('/' == i) { - f = Rt; - break; - } - f = kt; - continue; - case xt: - if (((c.scheme = e.scheme), i == n)) - (c.username = e.username), - (c.password = e.password), - (c.host = e.host), - (c.port = e.port), - (c.path = g(e.path)), - (c.query = e.query); - else if ('/' == i || ('\\' == i && c.isSpecial())) f = wt; - else if ('?' == i) - (c.username = e.username), - (c.password = e.password), - (c.host = e.host), - (c.port = e.port), - (c.path = g(e.path)), - (c.query = ''), - (f = Ct); - else { - if ('#' != i) { - (c.username = e.username), - (c.password = e.password), - (c.host = e.host), - (c.port = e.port), - (c.path = g(e.path)), - c.path.length--, - (f = kt); - continue; - } - (c.username = e.username), - (c.password = e.password), - (c.host = e.host), - (c.port = e.port), - (c.path = g(e.path)), - (c.query = e.query), - (c.fragment = ''), - (f = _t); - } - break; - case wt: - if (!c.isSpecial() || ('/' != i && '\\' != i)) { - if ('/' != i) { - (c.username = e.username), - (c.password = e.password), - (c.host = e.host), - (c.port = e.port), - (f = kt); - continue; - } - f = Rt; - } else f = At; - break; - case St: - if (((f = At), '/' != i || '/' != U(h, l + 1))) continue; - l++; - break; - case At: - if ('/' != i && '\\' != i) { - f = Rt; - continue; - } - break; - case Rt: - if ('@' == i) { - v && (h = '%40' + h), (v = !0), (a = d(h)); - for (var x = 0; x < a.length; x++) { - var w = a[x]; - if (':' != w || m) { - var S = ft(w, ct); - m ? (c.password += S) : (c.username += S); - } else m = !0; - } - h = ''; - } else if (i == n || '/' == i || '?' == i || '#' == i || ('\\' == i && c.isSpecial())) { - if (v && '' == h) return 'Invalid authority'; - (l -= d(h).length + 1), (h = ''), (f = Et); - } else h += i; - break; - case Et: - case Ot: - if (r && 'file' == c.scheme) { - f = jt; - continue; - } - if (':' != i || y) { - if (i == n || '/' == i || '?' == i || '#' == i || ('\\' == i && c.isSpecial())) { - if (c.isSpecial() && '' == h) return V; - if (r && '' == h && (c.includesCredentials() || null !== c.port)) return; - if ((u = c.parseHost(h))) return u; - if (((h = ''), (f = Lt), r)) return; - continue; - } - '[' == i ? (y = !0) : ']' == i && (y = !1), (h += i); - } else { - if ('' == h) return V; - if ((u = c.parseHost(h))) return u; - if (((h = ''), (f = It), r == Ot)) return; - } - break; - case It: - if (!C(J, i)) { - if (i == n || '/' == i || '?' == i || '#' == i || ('\\' == i && c.isSpecial()) || r) { - if ('' != h) { - var A = j(h, 10); - if (A > 65535) return $; - (c.port = c.isSpecial() && A === lt[c.scheme] ? null : A), (h = ''); - } - if (r) return; - f = Lt; - continue; - } - return $; - } - h += i; - break; - case Pt: - if (((c.scheme = 'file'), '/' == i || '\\' == i)) f = Tt; - else { - if (!e || 'file' != e.scheme) { - f = kt; - continue; - } - if (i == n) (c.host = e.host), (c.path = g(e.path)), (c.query = e.query); - else if ('?' == i) (c.host = e.host), (c.path = g(e.path)), (c.query = ''), (f = Ct); - else { - if ('#' != i) { - pt(_(g(o, l), '')) || ((c.host = e.host), (c.path = g(e.path)), c.shortenPath()), (f = kt); - continue; - } - (c.host = e.host), (c.path = g(e.path)), (c.query = e.query), (c.fragment = ''), (f = _t); - } - } - break; - case Tt: - if ('/' == i || '\\' == i) { - f = jt; - break; - } - e && - 'file' == e.scheme && - !pt(_(g(o, l), '')) && - (ht(e.path[0], !0) ? N(c.path, e.path[0]) : (c.host = e.host)), - (f = kt); - continue; - case jt: - if (i == n || '/' == i || '\\' == i || '?' == i || '#' == i) { - if (!r && ht(h)) f = kt; - else if ('' == h) { - if (((c.host = ''), r)) return; - f = Lt; - } else { - if ((u = c.parseHost(h))) return u; - if (('localhost' == c.host && (c.host = ''), r)) return; - (h = ''), (f = Lt); - } - continue; - } - h += i; - break; - case Lt: - if (c.isSpecial()) { - if (((f = kt), '/' != i && '\\' != i)) continue; - } else if (r || '?' != i) - if (r || '#' != i) { - if (i != n && ((f = kt), '/' != i)) continue; - } else (c.fragment = ''), (f = _t); - else (c.query = ''), (f = Ct); - break; - case kt: - if (i == n || '/' == i || ('\\' == i && c.isSpecial()) || (!r && ('?' == i || '#' == i))) { - if ( - ('..' === (s = q((s = h))) || '%2e.' === s || '.%2e' === s || '%2e%2e' === s - ? (c.shortenPath(), '/' == i || ('\\' == i && c.isSpecial()) || N(c.path, '')) - : vt(h) - ? '/' == i || ('\\' == i && c.isSpecial()) || N(c.path, '') - : ('file' == c.scheme && - !c.path.length && - ht(h) && - (c.host && (c.host = ''), (h = U(h, 0) + ':')), - N(c.path, h)), - (h = ''), - 'file' == c.scheme && (i == n || '?' == i || '#' == i)) - ) - for (; c.path.length > 1 && '' === c.path[0]; ) D(c.path); - '?' == i ? ((c.query = ''), (f = Ct)) : '#' == i && ((c.fragment = ''), (f = _t)); - } else h += ft(i, st); - break; - case Ut: - '?' == i - ? ((c.query = ''), (f = Ct)) - : '#' == i - ? ((c.fragment = ''), (f = _t)) - : i != n && (c.path[0] += ft(i, at)); - break; - case Ct: - r || '#' != i - ? i != n && - ("'" == i && c.isSpecial() ? (c.query += '%27') : (c.query += '#' == i ? '%23' : ft(i, at))) - : ((c.fragment = ''), (f = _t)); - break; - case _t: - i != n && (c.fragment += ft(i, ut)); - } - l++; - } - }, - parseHost: function (t) { - var r, e, n; - if ('[' == U(t, 0)) { - if (']' != U(t, t.length - 1)) return V; - if ( - ((r = (function (t) { - var r, - e, - n, - o, - i, - a, - u, - s = [0, 0, 0, 0, 0, 0, 0, 0], - c = 0, - f = null, - l = 0, - h = function () { - return U(t, l); - }; - if (':' == h()) { - if (':' != U(t, 1)) return; - (l += 2), (f = ++c); - } - for (; h(); ) { - if (8 == c) return; - if (':' != h()) { - for (r = e = 0; e < 4 && C(tt, h()); ) (r = 16 * r + j(h(), 16)), l++, e++; - if ('.' == h()) { - if (0 == e) return; - if (((l -= e), c > 6)) return; - for (n = 0; h(); ) { - if (((o = null), n > 0)) { - if (!('.' == h() && n < 4)) return; - l++; - } - if (!C(J, h())) return; - for (; C(J, h()); ) { - if (((i = j(h(), 10)), null === o)) o = i; - else { - if (0 == o) return; - o = 10 * o + i; - } - if (o > 255) return; - l++; - } - (s[c] = 256 * s[c] + o), (2 != ++n && 4 != n) || c++; - } - if (4 != n) return; - break; - } - if (':' == h()) { - if ((l++, !h())) return; - } else if (h()) return; - s[c++] = r; - } else { - if (null !== f) return; - l++, (f = ++c); - } - } - if (null !== f) - for (a = c - f, c = 7; 0 != c && a > 0; ) (u = s[c]), (s[c--] = s[f + a - 1]), (s[f + --a] = u); - else if (8 != c) return; - return s; - })(z(t, 1, -1))), - !r) - ) - return V; - this.host = r; - } else if (this.isSpecial()) { - if (((t = m(t)), C(rt, t))) return V; - if ( - ((r = (function (t) { - var r, - e, - n, - o, - i, - a, - u, - s = H(t, '.'); - if ((s.length && '' == s[s.length - 1] && s.length--, (r = s.length) > 4)) return t; - for (e = [], n = 0; n < r; n++) { - if ('' == (o = s[n])) return t; - if ( - ((i = 10), - o.length > 1 && '0' == U(o, 0) && ((i = C(X, o) ? 16 : 8), (o = z(o, 8 == i ? 1 : 2))), - '' === o) - ) - a = 0; - else { - if (!C(10 == i ? Z : 8 == i ? Q : tt, o)) return t; - a = j(o, i); - } - N(e, a); - } - for (n = 0; n < r; n++) - if (((a = e[n]), n == r - 1)) { - if (a >= k(256, 5 - r)) return null; - } else if (a > 255) return null; - for (u = F(e), n = 0; n < e.length; n++) u += e[n] * k(256, 3 - n); - return u; - })(t)), - null === r) - ) - return V; - this.host = r; - } else { - if (C(et, t)) return V; - for (r = '', e = d(t), n = 0; n < e.length; n++) r += ft(e[n], at); - this.host = r; - } - }, - cannotHaveUsernamePasswordPort: function () { - return !this.host || this.cannotBeABaseURL || 'file' == this.scheme; - }, - includesCredentials: function () { - return '' != this.username || '' != this.password; - }, - isSpecial: function () { - return p(lt, this.scheme); - }, - shortenPath: function () { - var t = this.path, - r = t.length; - !r || ('file' == this.scheme && 1 == r && ht(t[0], !0)) || t.length--; - }, - serialize: function () { - var t = this, - r = t.scheme, - e = t.username, - n = t.password, - o = t.host, - i = t.port, - a = t.path, - u = t.query, - s = t.fragment, - c = r + ':'; - return ( - null !== o - ? ((c += '//'), - t.includesCredentials() && (c += e + (n ? ':' + n : '') + '@'), - (c += it(o)), - null !== i && (c += ':' + i)) - : 'file' == r && (c += '//'), - (c += t.cannotBeABaseURL ? a[0] : a.length ? '/' + _(a, '/') : ''), - null !== u && (c += '?' + u), - null !== s && (c += '#' + s), - c - ); - }, - setHref: function (t) { - var r = this.parse(t); - if (r) throw T(r); - this.searchParams.update(); - }, - getOrigin: function () { - var t = this.scheme, - r = this.port; - if ('blob' == t) - try { - return new Ft(t.path[0]).origin; - } catch (e) { - return 'null'; - } - return 'file' != t && this.isSpecial() ? t + '://' + it(this.host) + (null !== r ? ':' + r : '') : 'null'; - }, - getProtocol: function () { - return this.scheme + ':'; - }, - setProtocol: function (t) { - this.parse(b(t) + ':', dt); - }, - getUsername: function () { - return this.username; - }, - setUsername: function (t) { - var r = d(b(t)); - if (!this.cannotHaveUsernamePasswordPort()) { - this.username = ''; - for (var e = 0; e < r.length; e++) this.username += ft(r[e], ct); - } - }, - getPassword: function () { - return this.password; - }, - setPassword: function (t) { - var r = d(b(t)); - if (!this.cannotHaveUsernamePasswordPort()) { - this.password = ''; - for (var e = 0; e < r.length; e++) this.password += ft(r[e], ct); - } - }, - getHost: function () { - var t = this.host, - r = this.port; - return null === t ? '' : null === r ? it(t) : it(t) + ':' + r; - }, - setHost: function (t) { - this.cannotBeABaseURL || this.parse(t, Et); - }, - getHostname: function () { - var t = this.host; - return null === t ? '' : it(t); - }, - setHostname: function (t) { - this.cannotBeABaseURL || this.parse(t, Ot); - }, - getPort: function () { - var t = this.port; - return null === t ? '' : b(t); - }, - setPort: function (t) { - this.cannotHaveUsernamePasswordPort() || ('' == (t = b(t)) ? (this.port = null) : this.parse(t, It)); - }, - getPathname: function () { - var t = this.path; - return this.cannotBeABaseURL ? t[0] : t.length ? '/' + _(t, '/') : ''; - }, - setPathname: function (t) { - this.cannotBeABaseURL || ((this.path = []), this.parse(t, Lt)); - }, - getSearch: function () { - var t = this.query; - return t ? '?' + t : ''; - }, - setSearch: function (t) { - '' == (t = b(t)) - ? (this.query = null) - : ('?' == U(t, 0) && (t = z(t, 1)), (this.query = ''), this.parse(t, Ct)), - this.searchParams.update(); - }, - getSearchParams: function () { - return this.searchParams.facade; - }, - getHash: function () { - var t = this.fragment; - return t ? '#' + t : ''; - }, - setHash: function (t) { - '' != (t = b(t)) - ? ('#' == U(t, 0) && (t = z(t, 1)), (this.fragment = ''), this.parse(t, _t)) - : (this.fragment = null); - }, - update: function () { - this.query = this.searchParams.serialize() || null; - }, - }; - var Ft = function (t) { - var r = h(this, Nt), - e = w(arguments.length, 1) > 1 ? arguments[1] : void 0, - n = R(r, new Mt(t, !1, e)); - i || - ((r.href = n.serialize()), - (r.origin = n.getOrigin()), - (r.protocol = n.getProtocol()), - (r.username = n.getUsername()), - (r.password = n.getPassword()), - (r.host = n.getHost()), - (r.hostname = n.getHostname()), - (r.port = n.getPort()), - (r.pathname = n.getPathname()), - (r.search = n.getSearch()), - (r.searchParams = n.getSearchParams()), - (r.hash = n.getHash())); - }, - Nt = Ft.prototype, - Bt = function (t, r) { - return { - get: function () { - return E(this)[t](); - }, - set: - r && - function (t) { - return E(this)[r](t); - }, - configurable: !0, - enumerable: !0, - }; - }; - if ( - (i && - (l(Nt, 'href', Bt('serialize', 'setHref')), - l(Nt, 'origin', Bt('getOrigin')), - l(Nt, 'protocol', Bt('getProtocol', 'setProtocol')), - l(Nt, 'username', Bt('getUsername', 'setUsername')), - l(Nt, 'password', Bt('getPassword', 'setPassword')), - l(Nt, 'host', Bt('getHost', 'setHost')), - l(Nt, 'hostname', Bt('getHostname', 'setHostname')), - l(Nt, 'port', Bt('getPort', 'setPort')), - l(Nt, 'pathname', Bt('getPathname', 'setPathname')), - l(Nt, 'search', Bt('getSearch', 'setSearch')), - l(Nt, 'searchParams', Bt('getSearchParams')), - l(Nt, 'hash', Bt('getHash', 'setHash'))), - f( - Nt, - 'toJSON', - function () { - return E(this).serialize(); - }, - { enumerable: !0 }, - ), - f( - Nt, - 'toString', - function () { - return E(this).serialize(); - }, - { enumerable: !0 }, - ), - P) - ) { - var Dt = P.createObjectURL, - Ht = P.revokeObjectURL; - Dt && f(Ft, 'createObjectURL', s(Dt, P)), Ht && f(Ft, 'revokeObjectURL', s(Ht, P)); - } - x(Ft, 'URL'), o({ global: !0, constructor: !0, forced: !a, sham: !i }, { URL: Ft }); - }, - 57307: (t, r, e) => { - e(791); - }, - 8711: (t, r, e) => { - 'use strict'; - var n = e(72698), - o = e(41924); - n( - { target: 'URL', proto: !0, enumerable: !0 }, - { - toJSON: function () { - return o(URL.prototype.toString, this); - }, - }, - ); - }, - }, - t => { - var r; - (r = 77365), t((t.s = r)); - }, -]); diff --git a/.nx/cache/nx-console-project-graph/static/runtime.js b/.nx/cache/nx-console-project-graph/static/runtime.js deleted file mode 100644 index 640e6de2f8c95..0000000000000 --- a/.nx/cache/nx-console-project-graph/static/runtime.js +++ /dev/null @@ -1,75 +0,0 @@ -(() => { - 'use strict'; - var e, - r = {}, - t = {}; - function o(e) { - var n = t[e]; - if (void 0 !== n) return n.exports; - var i = (t[e] = { id: e, loaded: !1, exports: {} }); - return r[e].call(i.exports, i, i.exports, o), (i.loaded = !0), i.exports; - } - (o.m = r), - (e = []), - (o.O = (r, t, n, i) => { - if (!t) { - var l = 1 / 0; - for (f = 0; f < e.length; f++) { - for (var [t, n, i] = e[f], a = !0, u = 0; u < t.length; u++) - (!1 & i || l >= i) && Object.keys(o.O).every(e => o.O[e](t[u])) - ? t.splice(u--, 1) - : ((a = !1), i < l && (l = i)); - if (a) { - e.splice(f--, 1); - var d = n(); - void 0 !== d && (r = d); - } - } - return r; - } - i = i || 0; - for (var f = e.length; f > 0 && e[f - 1][2] > i; f--) e[f] = e[f - 1]; - e[f] = [t, n, i]; - }), - (o.n = e => { - var r = e && e.__esModule ? () => e.default : () => e; - return o.d(r, { a: r }), r; - }), - (o.d = (e, r) => { - for (var t in r) o.o(r, t) && !o.o(e, t) && Object.defineProperty(e, t, { enumerable: !0, get: r[t] }); - }), - (o.g = (function () { - if ('object' == typeof globalThis) return globalThis; - try { - return this || new Function('return this')(); - } catch (e) { - if ('object' == typeof window) return window; - } - })()), - (o.o = (e, r) => Object.prototype.hasOwnProperty.call(e, r)), - (o.r = e => { - 'undefined' != typeof Symbol && - Symbol.toStringTag && - Object.defineProperty(e, Symbol.toStringTag, { value: 'Module' }), - Object.defineProperty(e, '__esModule', { value: !0 }); - }), - (o.nmd = e => ((e.paths = []), e.children || (e.children = []), e)), - (() => { - var e = { 666: 0 }; - o.O.j = r => 0 === e[r]; - var r = (r, t) => { - var n, - i, - [l, a, u] = t, - d = 0; - if (l.some(r => 0 !== e[r])) { - for (n in a) o.o(a, n) && (o.m[n] = a[n]); - if (u) var f = u(o); - } - for (r && r(t); d < l.length; d++) (i = l[d]), o.o(e, i) && e[i] && e[i][0](), (e[i] = 0); - return o.O(f); - }, - t = (self.webpackChunk = self.webpackChunk || []); - t.forEach(r.bind(null, 0)), (t.push = r.bind(null, t.push.bind(t))); - })(); -})(); diff --git a/.nx/cache/nx-console-project-graph/static/styles.css b/.nx/cache/nx-console-project-graph/static/styles.css deleted file mode 100644 index 6c8ff6a699055..0000000000000 --- a/.nx/cache/nx-console-project-graph/static/styles.css +++ /dev/null @@ -1,1233 +0,0 @@ -.container { - width: 100%; -} -@media (min-width: 640px) { - .container { - max-width: 640px; - } -} -@media (min-width: 768px) { - .container { - max-width: 768px; - } -} -@media (min-width: 1024px) { - .container { - max-width: 1024px; - } -} -@media (min-width: 1280px) { - .container { - max-width: 1280px; - } -} -@media (min-width: 1536px) { - .container { - max-width: 1536px; - } -} -.form-input, -.form-multiselect, -.form-select, -.form-textarea { - --tw-shadow: 0 0 #0000; - -webkit-appearance: none; - appearance: none; - background-color: #fff; - border-color: #6b7280; - border-radius: 0; - border-width: 1px; - font-size: 1rem; - line-height: 1.5rem; - padding: 0.5rem 0.75rem; -} -.form-input:focus, -.form-multiselect:focus, -.form-select:focus, -.form-textarea:focus { - --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: #2563eb; - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - border-color: #2563eb; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); - outline: 2px solid transparent; - outline-offset: 2px; -} -.form-select { - background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E"); - background-position: right 0.5rem center; - background-repeat: no-repeat; - background-size: 1.5em 1.5em; - padding-right: 2.5rem; - -webkit-print-color-adjust: exact; - print-color-adjust: exact; -} /* -! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com -*/ -*, -:after, -:before { - border: 0 solid #e5e7eb; - box-sizing: border-box; -} -:after, -:before { - --tw-content: ''; -} -html { - -webkit-text-size-adjust: 100%; - font-feature-settings: normal; - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, - Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; - line-height: 1.5; - tab-size: 4; -} -body { - line-height: inherit; - margin: 0; -} -hr { - border-top-width: 1px; - color: inherit; - height: 0; -} -abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: inherit; - font-weight: inherit; -} -a { - color: inherit; - text-decoration: inherit; -} -b, -strong { - font-weight: bolder; -} -code, -kbd, -pre, -samp { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; - font-size: 1em; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.5em; -} -table { - border-collapse: collapse; - border-color: inherit; - text-indent: 0; -} -button, -input, -optgroup, -select, -textarea { - color: inherit; - font-family: inherit; - font-size: 100%; - font-weight: inherit; - line-height: inherit; - margin: 0; - padding: 0; -} -button, -select { - text-transform: none; -} -[type='button'], -[type='reset'], -[type='submit'], -button { - -webkit-appearance: button; - background-color: transparent; - background-image: none; -} -:-moz-focusring { - outline: auto; -} -:-moz-ui-invalid { - box-shadow: none; -} -progress { - vertical-align: baseline; -} -::-webkit-inner-spin-button, -::-webkit-outer-spin-button { - height: auto; -} -[type='search'] { - -webkit-appearance: textfield; - outline-offset: -2px; -} -::-webkit-search-decoration { - -webkit-appearance: none; -} -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} -summary { - display: list-item; -} -blockquote, -dd, -dl, -figure, -h1, -h2, -h3, -h4, -h5, -h6, -hr, -p, -pre { - margin: 0; -} -fieldset { - margin: 0; -} -fieldset, -legend { - padding: 0; -} -menu, -ol, -ul { - list-style: none; - margin: 0; - padding: 0; -} -textarea { - resize: vertical; -} -input::placeholder, -textarea::placeholder { - color: #9ca3af; - opacity: 1; -} -[role='button'], -button { - cursor: pointer; -} -:disabled { - cursor: default; -} -audio, -canvas, -embed, -iframe, -img, -object, -svg, -video { - display: block; - vertical-align: middle; -} -img, -video { - height: auto; - max-width: 100%; -} -[hidden] { - display: none; -} -*, -:after, -:before { - --tw-border-spacing-x: 0; - --tw-border-spacing-y: 0; - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - --tw-pan-x: ; - --tw-pan-y: ; - --tw-pinch-zoom: ; - --tw-scroll-snap-strictness: proximity; - --tw-ordinal: ; - --tw-slashed-zero: ; - --tw-numeric-figure: ; - --tw-numeric-spacing: ; - --tw-numeric-fraction: ; - --tw-ring-inset: ; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgba(59, 130, 246, 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; - --tw-shadow: 0 0 #0000; - --tw-shadow-colored: 0 0 #0000; - --tw-blur: ; - --tw-brightness: ; - --tw-contrast: ; - --tw-grayscale: ; - --tw-hue-rotate: ; - --tw-invert: ; - --tw-saturate: ; - --tw-sepia: ; - --tw-drop-shadow: ; - --tw-backdrop-blur: ; - --tw-backdrop-brightness: ; - --tw-backdrop-contrast: ; - --tw-backdrop-grayscale: ; - --tw-backdrop-hue-rotate: ; - --tw-backdrop-invert: ; - --tw-backdrop-opacity: ; - --tw-backdrop-saturate: ; - --tw-backdrop-sepia: ; -} -::-webkit-backdrop { - --tw-border-spacing-x: 0; - --tw-border-spacing-y: 0; - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - --tw-pan-x: ; - --tw-pan-y: ; - --tw-pinch-zoom: ; - --tw-scroll-snap-strictness: proximity; - --tw-ordinal: ; - --tw-slashed-zero: ; - --tw-numeric-figure: ; - --tw-numeric-spacing: ; - --tw-numeric-fraction: ; - --tw-ring-inset: ; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgba(59, 130, 246, 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; - --tw-shadow: 0 0 #0000; - --tw-shadow-colored: 0 0 #0000; - --tw-blur: ; - --tw-brightness: ; - --tw-contrast: ; - --tw-grayscale: ; - --tw-hue-rotate: ; - --tw-invert: ; - --tw-saturate: ; - --tw-sepia: ; - --tw-drop-shadow: ; - --tw-backdrop-blur: ; - --tw-backdrop-brightness: ; - --tw-backdrop-contrast: ; - --tw-backdrop-grayscale: ; - --tw-backdrop-hue-rotate: ; - --tw-backdrop-invert: ; - --tw-backdrop-opacity: ; - --tw-backdrop-saturate: ; - --tw-backdrop-sepia: ; -} -::backdrop { - --tw-border-spacing-x: 0; - --tw-border-spacing-y: 0; - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - --tw-pan-x: ; - --tw-pan-y: ; - --tw-pinch-zoom: ; - --tw-scroll-snap-strictness: proximity; - --tw-ordinal: ; - --tw-slashed-zero: ; - --tw-numeric-figure: ; - --tw-numeric-spacing: ; - --tw-numeric-fraction: ; - --tw-ring-inset: ; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgba(59, 130, 246, 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; - --tw-shadow: 0 0 #0000; - --tw-shadow-colored: 0 0 #0000; - --tw-blur: ; - --tw-brightness: ; - --tw-contrast: ; - --tw-grayscale: ; - --tw-hue-rotate: ; - --tw-invert: ; - --tw-saturate: ; - --tw-sepia: ; - --tw-drop-shadow: ; - --tw-backdrop-blur: ; - --tw-backdrop-brightness: ; - --tw-backdrop-contrast: ; - --tw-backdrop-grayscale: ; - --tw-backdrop-hue-rotate: ; - --tw-backdrop-invert: ; - --tw-backdrop-opacity: ; - --tw-backdrop-saturate: ; - --tw-backdrop-sepia: ; -} -.sr-only { - clip: rect(0, 0, 0, 0); - border-width: 0; - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - white-space: nowrap; - width: 1px; -} -.visible { - visibility: visible; -} -.invisible { - visibility: hidden; -} -.static { - position: static; -} -.fixed { - position: fixed; -} -.absolute { - position: absolute; -} -.relative { - position: relative; -} -.inset-y-0 { - bottom: 0; - top: 0; -} -.top-5 { - top: 1.25rem; -} -.left-5 { - left: 1.25rem; -} -.bottom-4 { - bottom: 1rem; -} -.right-4 { - right: 1rem; -} -.top-1\/2 { - top: 50%; -} -.left-1\/2 { - left: 50%; -} -.right-0 { - right: 0; -} -.right-2 { - right: 0.5rem; -} -.top-2 { - top: 0.5rem; -} -.top-1 { - top: 0.25rem; -} -.right-1 { - right: 0.25rem; -} -.z-50 { - z-index: 50; -} -.z-0 { - z-index: 0; -} -.z-10 { - z-index: 10; -} -.-z-10 { - z-index: -10; -} -.mx-4 { - margin-left: 1rem; - margin-right: 1rem; -} -.my-2 { - margin-bottom: 0.5rem; - margin-top: 0.5rem; -} -.mt-3 { - margin-top: 0.75rem; -} -.mr-2 { - margin-right: 0.5rem; -} -.mr-4 { - margin-right: 1rem; -} -.-mt-3 { - margin-top: -0.75rem; -} -.-ml-3 { - margin-left: -0.75rem; -} -.mr-1 { - margin-right: 0.25rem; -} -.ml-2 { - margin-left: 0.5rem; -} -.mt-4 { - margin-top: 1rem; -} -.mt-2 { - margin-top: 0.5rem; -} -.mt-8 { - margin-top: 2rem; -} -.ml-3 { - margin-left: 0.75rem; -} -.mt-10 { - margin-top: 2.5rem; -} -.-mt-1 { - margin-top: -0.25rem; -} -.-ml-1 { - margin-left: -0.25rem; -} -.mb-3 { - margin-bottom: 0.75rem; -} -.mr-3 { - margin-right: 0.75rem; -} -.block { - display: block; -} -.inline-block { - display: inline-block; -} -.inline { - display: inline; -} -.flex { - display: flex; -} -.inline-flex { - display: inline-flex; -} -.grid { - display: grid; -} -.h-full { - height: 100%; -} -.h-10 { - height: 2.5rem; -} -.h-4 { - height: 1rem; -} -.h-6 { - height: 1.5rem; -} -.h-16 { - height: 4rem; -} -.h-5 { - height: 1.25rem; -} -.max-h-\[300px\] { - max-height: 300px; -} -.w-full { - width: 100%; -} -.w-72 { - width: 18rem; -} -.w-auto { - width: auto; -} -.w-4 { - width: 1rem; -} -.w-6 { - width: 1.5rem; -} -.w-16 { - width: 4rem; -} -.w-5 { - width: 1.25rem; -} -.w-36 { - width: 9rem; -} -.min-w-\[250px\] { - min-width: 250px; -} -.flex-1 { - flex: 1 1 0%; -} -.flex-grow { - flex-grow: 1; -} -.origin-top-right { - transform-origin: top right; -} -.translate-x-32 { - --tw-translate-x: 8rem; -} -.rotate-45, -.translate-x-32 { - transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) - skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); -} -.rotate-45 { - --tw-rotate: 45deg; -} -.scale-95 { - --tw-scale-x: 0.95; - --tw-scale-y: 0.95; -} -.scale-100, -.scale-95 { - transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) - skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); -} -.scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; -} -.transform { - transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) - skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); -} -.cursor-pointer { - cursor: pointer; -} -.cursor-default { - cursor: default; -} -.cursor-text { - cursor: text; -} -.select-none { - -webkit-user-select: none; - user-select: none; -} -.select-text { - -webkit-user-select: text; - user-select: text; -} -.resize { - resize: both; -} -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); -} -.flex-row { - flex-direction: row; -} -.flex-col { - flex-direction: column; -} -.items-start { - align-items: flex-start; -} -.items-center { - align-items: center; -} -.justify-center { - justify-content: center; -} -.justify-between { - justify-content: space-between; -} -.justify-items-center { - justify-items: center; -} -.gap-4 { - gap: 1rem; -} -.divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - border-top-width: calc(1px * (1 - var(--tw-divide-y-reverse))); -} -.divide-slate-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgb(226 232 240 / var(--tw-divide-opacity)); -} -.overflow-auto { - overflow: auto; -} -.overflow-hidden { - overflow: hidden; -} -.overflow-y-scroll { - overflow-y: scroll; -} -.truncate { - overflow: hidden; - text-overflow: ellipsis; -} -.truncate, -.whitespace-nowrap { - white-space: nowrap; -} -.rounded-full { - border-radius: 9999px; -} -.rounded-md { - border-radius: 0.375rem; -} -.rounded-lg { - border-radius: 0.5rem; -} -.rounded-none { - border-radius: 0; -} -.rounded-l-md { - border-bottom-left-radius: 0.375rem; - border-top-left-radius: 0.375rem; -} -.rounded-r-md { - border-bottom-right-radius: 0.375rem; - border-top-right-radius: 0.375rem; -} -.border-2 { - border-width: 2px; -} -.border { - border-width: 1px; -} -.border-b { - border-bottom-width: 1px; -} -.border-t { - border-top-width: 1px; -} -.border-r-0 { - border-right-width: 0; -} -.border-solid { - border-style: solid; -} -.border-dashed { - border-style: dashed; -} -.border-slate-900\/10 { - border-color: rgba(15, 23, 42, 0.1); -} -.border-slate-300 { - --tw-border-opacity: 1; - border-color: rgb(203 213 225 / var(--tw-border-opacity)); -} -.border-slate-400\/10 { - border-color: rgba(148, 163, 184, 0.1); -} -.border-slate-200\/10 { - border-color: rgba(226, 232, 240, 0.1); -} -.border-purple-500 { - --tw-border-opacity: 1; - border-color: rgb(168 85 247 / var(--tw-border-opacity)); -} -.border-slate-200 { - --tw-border-opacity: 1; - border-color: rgb(226 232 240 / var(--tw-border-opacity)); -} -.border-pink-500 { - --tw-border-opacity: 1; - border-color: rgb(236 72 153 / var(--tw-border-opacity)); -} -.border-blue-500 { - --tw-border-opacity: 1; - border-color: rgb(59 130 246 / var(--tw-border-opacity)); -} -.border-slate-500 { - --tw-border-opacity: 1; - border-color: rgb(100 116 139 / var(--tw-border-opacity)); -} -.bg-white { - --tw-bg-opacity: 1; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} -.bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgb(59 130 246 / var(--tw-bg-opacity)); -} -.bg-slate-50 { - --tw-bg-opacity: 1; - background-color: rgb(248 250 252 / var(--tw-bg-opacity)); -} -.bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgb(244 114 182 / var(--tw-bg-opacity)); -} -.bg-slate-300 { - --tw-bg-opacity: 1; - background-color: rgb(203 213 225 / var(--tw-bg-opacity)); -} -.bg-slate-500 { - --tw-bg-opacity: 1; - background-color: rgb(100 116 139 / var(--tw-bg-opacity)); -} -.p-0 { - padding: 0; -} -.p-1 { - padding: 0.25rem; -} -.p-2 { - padding: 0.5rem; -} -.p-4 { - padding: 1rem; -} -.p-1\.5 { - padding: 0.375rem; -} -.p-3 { - padding: 0.75rem; -} -.px-4 { - padding-left: 1rem; - padding-right: 1rem; -} -.py-1 { - padding-bottom: 0.25rem; - padding-top: 0.25rem; -} -.py-2 { - padding-bottom: 0.5rem; - padding-top: 0.5rem; -} -.px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; -} -.px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; -} -.px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; -} -.pb-10 { - padding-bottom: 2.5rem; -} -.pl-2 { - padding-left: 0.5rem; -} -.pr-6 { - padding-right: 1.5rem; -} -.pb-0 { - padding-bottom: 0; -} -.pb-2 { - padding-bottom: 0.5rem; -} -.pl-4 { - padding-left: 1rem; -} -.pr-8 { - padding-right: 2rem; -} -.text-left { - text-align: left; -} -.text-center { - text-align: center; -} -.font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; -} -.font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, - Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; -} -.text-xs { - font-size: 0.75rem; - line-height: 1rem; -} -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; -} -.text-lg { - font-size: 1.125rem; - line-height: 1.75rem; -} -.font-medium { - font-weight: 500; -} -.font-normal { - font-weight: 400; -} -.font-semibold { - font-weight: 600; -} -.font-light { - font-weight: 300; -} -.uppercase { - text-transform: uppercase; -} -.leading-4 { - line-height: 1rem; -} -.tracking-wide { - letter-spacing: 0.025em; -} -.text-slate-500 { - --tw-text-opacity: 1; - color: rgb(100 116 139 / var(--tw-text-opacity)); -} -.text-slate-700 { - --tw-text-opacity: 1; - color: rgb(51 65 85 / var(--tw-text-opacity)); -} -.text-slate-900 { - --tw-text-opacity: 1; - color: rgb(15 23 42 / var(--tw-text-opacity)); -} -.text-white { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} -.text-slate-600 { - --tw-text-opacity: 1; - color: rgb(71 85 105 / var(--tw-text-opacity)); -} -.text-blue-500 { - --tw-text-opacity: 1; - color: rgb(59 130 246 / var(--tw-text-opacity)); -} -.text-slate-800 { - --tw-text-opacity: 1; - color: rgb(30 41 59 / var(--tw-text-opacity)); -} -.text-slate-400 { - --tw-text-opacity: 1; - color: rgb(148 163 184 / var(--tw-text-opacity)); -} -.text-yellow-500 { - --tw-text-opacity: 1; - color: rgb(234 179 8 / var(--tw-text-opacity)); -} -.text-gray-700 { - --tw-text-opacity: 1; - color: rgb(55 65 81 / var(--tw-text-opacity)); -} -.text-slate-50 { - --tw-text-opacity: 1; - color: rgb(248 250 252 / var(--tw-text-opacity)); -} -.accent-blue-500 { - accent-color: #3b82f6; -} -.accent-purple-500 { - accent-color: #a855f7; -} -.opacity-0 { - opacity: 0; -} -.opacity-100 { - opacity: 1; -} -.shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); - --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); -} -.shadow-lg, -.shadow-sm { - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); -} -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); -} -.ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); -} -.ring-slate-900\/10 { - --tw-ring-color: rgba(15, 23, 42, 0.1); -} -.ring-slate-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity)); -} -.ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); -} -.ring-slate-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity)); -} -.ring-opacity-10 { - --tw-ring-opacity: 0.1; -} -.ring-opacity-5 { - --tw-ring-opacity: 0.05; -} -.filter { - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) - var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); -} -.transition-all { - transition-duration: 0.15s; - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -} -.transition { - transition-duration: 0.15s; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, - transform, filter, -webkit-backdrop-filter; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, - transform, filter, backdrop-filter; - transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, - transform, filter, backdrop-filter, -webkit-backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -} -.duration-300 { - transition-duration: 0.3s; -} -.duration-200 { - transition-duration: 0.2s; -} -.duration-100 { - transition-duration: 0.1s; -} -.duration-75 { - transition-duration: 75ms; -} -.ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -} -.ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); -} -.ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); -} -.dark { - color-scheme: dark; -} -.placeholder\:font-light::placeholder { - font-weight: 300; -} -.placeholder\:text-slate-400::placeholder { - --tw-text-opacity: 1; - color: rgb(148 163 184 / var(--tw-text-opacity)); -} -.hover\:cursor-pointer:hover { - cursor: pointer; -} -.hover\:bg-slate-50:hover { - --tw-bg-opacity: 1; - background-color: rgb(248 250 252 / var(--tw-bg-opacity)); -} -.hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgb(236 72 153 / var(--tw-bg-opacity)); -} -.hover\:bg-slate-100:hover { - --tw-bg-opacity: 1; - background-color: rgb(241 245 249 / var(--tw-bg-opacity)); -} -.hover\:underline:hover { - text-decoration-line: underline; -} -.focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; -} -.focus-visible\:ring-2:focus-visible { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); -} -.focus-visible\:ring-white:focus-visible { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity)); -} -.focus-visible\:ring-opacity-75:focus-visible { - --tw-ring-opacity: 0.75; -} -.group:hover .group-hover\:translate-x-0 { - --tw-translate-x: 0px; - transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) - skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); -} -.group:hover .group-hover\:opacity-60 { - opacity: 0.6; -} -.dark .dark\:divide-slate-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgb(30 41 59 / var(--tw-divide-opacity)); -} -.dark .dark\:border-slate-300\/10 { - border-color: rgba(203, 213, 225, 0.1); -} -.dark .dark\:border-slate-600 { - --tw-border-opacity: 1; - border-color: rgb(71 85 105 / var(--tw-border-opacity)); -} -.dark .dark\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgb(147 51 234 / var(--tw-border-opacity)); -} -.dark .dark\:border-slate-700 { - --tw-border-opacity: 1; - border-color: rgb(51 65 85 / var(--tw-border-opacity)); -} -.dark .dark\:border-fuchsia-800 { - --tw-border-opacity: 1; - border-color: rgb(134 25 143 / var(--tw-border-opacity)); -} -.dark .dark\:border-sky-500 { - --tw-border-opacity: 1; - border-color: rgb(14 165 233 / var(--tw-border-opacity)); -} -.dark .dark\:border-slate-900 { - --tw-border-opacity: 1; - border-color: rgb(15 23 42 / var(--tw-border-opacity)); -} -.dark .dark\:border-slate-800 { - --tw-border-opacity: 1; - border-color: rgb(30 41 59 / var(--tw-border-opacity)); -} -.dark .dark\:bg-slate-900 { - --tw-bg-opacity: 1; - background-color: rgb(15 23 42 / var(--tw-bg-opacity)); -} -.dark .dark\:bg-transparent { - background-color: transparent; -} -.dark .dark\:bg-sky-500 { - --tw-bg-opacity: 1; - background-color: rgb(14 165 233 / var(--tw-bg-opacity)); -} -.dark .dark\:bg-slate-800 { - --tw-bg-opacity: 1; - background-color: rgb(30 41 59 / var(--tw-bg-opacity)); -} -.dark .dark\:bg-\[\#0B1221\] { - --tw-bg-opacity: 1; - background-color: rgb(11 18 33 / var(--tw-bg-opacity)); -} -.dark .dark\:bg-fuchsia-700 { - --tw-bg-opacity: 1; - background-color: rgb(162 28 175 / var(--tw-bg-opacity)); -} -.dark .dark\:bg-slate-600\/30 { - background-color: rgba(71, 85, 105, 0.3); -} -.dark .dark\:text-slate-400 { - --tw-text-opacity: 1; - color: rgb(148 163 184 / var(--tw-text-opacity)); -} -.dark .dark\:text-white { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} -.dark .dark\:text-sky-500 { - --tw-text-opacity: 1; - color: rgb(14 165 233 / var(--tw-text-opacity)); -} -.dark .dark\:text-slate-200 { - --tw-text-opacity: 1; - color: rgb(226 232 240 / var(--tw-text-opacity)); -} -.dark .dark\:text-slate-500 { - --tw-text-opacity: 1; - color: rgb(100 116 139 / var(--tw-text-opacity)); -} -.dark .dark\:text-yellow-400 { - --tw-text-opacity: 1; - color: rgb(250 204 21 / var(--tw-text-opacity)); -} -.dark .dark\:text-slate-300 { - --tw-text-opacity: 1; - color: rgb(203 213 225 / var(--tw-text-opacity)); -} -.dark .dark\:accent-sky-500 { - accent-color: #0ea5e9; -} -.dark .dark\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); -} -.dark .dark\:ring-slate-300\/10 { - --tw-ring-color: rgba(203, 213, 225, 0.1); -} -.dark .dark\:ring-slate-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity)); -} -.dark .dark\:ring-sky-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity)); -} -.dark .dark\:ring-slate-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity)); -} -.dark .hover\:dark\:bg-slate-700:hover { - --tw-bg-opacity: 1; - background-color: rgb(51 65 85 / var(--tw-bg-opacity)); -} -.dark .hover\:dark\:bg-fuchsia-600:hover { - --tw-bg-opacity: 1; - background-color: rgb(192 38 211 / var(--tw-bg-opacity)); -} -.dark .dark\:hover\:bg-slate-700:hover { - --tw-bg-opacity: 1; - background-color: rgb(51 65 85 / var(--tw-bg-opacity)); -} -@media (min-width: 1024px) { - .lg\:text-xs { - font-size: 0.75rem; - line-height: 1rem; - } -} diff --git a/.nx/cache/nx-console-project-graph/static/styles.js b/.nx/cache/nx-console-project-graph/static/styles.js deleted file mode 100644 index 50c284dcc72c1..0000000000000 --- a/.nx/cache/nx-console-project-graph/static/styles.js +++ /dev/null @@ -1,9 +0,0 @@ -'use strict'; -(self.webpackChunk = self.webpackChunk || []).push([ - [532], - { 33767: () => {} }, - s => { - var e; - (e = 33767), s((s.s = e)); - }, -]); diff --git a/.nx/cache/parsed-lock-file.json b/.nx/cache/parsed-lock-file.json deleted file mode 100644 index ffce5cd2706a8..0000000000000 --- a/.nx/cache/parsed-lock-file.json +++ /dev/null @@ -1,86639 +0,0 @@ -{ - "externalNodes": { - "npm:@actions/core": { - "type": "npm", - "name": "npm:@actions/core", - "data": { - "version": "1.9.1", - "packageName": "@actions/core", - "hash": "sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==" - } - }, - "npm:@actions/github": { - "type": "npm", - "name": "npm:@actions/github", - "data": { - "version": "5.0.3", - "packageName": "@actions/github", - "hash": "sha512-myjA/pdLQfhUGLtRZC/J4L1RXOG4o6aYdiEq+zr5wVVKljzbFld+xv10k1FX6IkIJtNxbAq44BdwSNpQ015P0A==" - } - }, - "npm:@actions/http-client": { - "type": "npm", - "name": "npm:@actions/http-client", - "data": { - "version": "2.0.1", - "packageName": "@actions/http-client", - "hash": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==" - } - }, - "npm:@adobe/css-tools": { - "type": "npm", - "name": "npm:@adobe/css-tools", - "data": { - "version": "4.3.1", - "packageName": "@adobe/css-tools", - "hash": "sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==" - } - }, - "npm:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.2.0", - "packageName": "@ampproject/remapping", - "hash": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==" - } - }, - "npm:@azure/abort-controller": { - "type": "npm", - "name": "npm:@azure/abort-controller", - "data": { - "version": "1.0.1", - "packageName": "@azure/abort-controller", - "hash": "sha512-wP2Jw6uPp8DEDy0n4KNidvwzDjyVV2xnycEIq7nPzj1rHyb/r+t3OPeNT1INZePP2wy5ZqlwyuyOMTi0ePyY1A==" - } - }, - "npm:@azure/core-asynciterator-polyfill": { - "type": "npm", - "name": "npm:@azure/core-asynciterator-polyfill", - "data": { - "version": "1.0.0", - "packageName": "@azure/core-asynciterator-polyfill", - "hash": "sha512-kmv8CGrPfN9SwMwrkiBK9VTQYxdFQEGe0BmQk+M8io56P9KNzpAxcWE/1fxJj7uouwN4kXF0BHW8DNlgx+wtCg==" - } - }, - "npm:@azure/core-auth": { - "type": "npm", - "name": "npm:@azure/core-auth", - "data": { - "version": "1.3.0", - "packageName": "@azure/core-auth", - "hash": "sha512-kSDSZBL6c0CYdhb+7KuutnKGf2geeT+bCJAgccB0DD7wmNJSsQPcF7TcuoZX83B7VK4tLz/u+8sOO/CnCsYp8A==" - } - }, - "npm:@azure/core-client": { - "type": "npm", - "name": "npm:@azure/core-client", - "data": { - "version": "1.1.1", - "packageName": "@azure/core-client", - "hash": "sha512-SHW4H4I9IxzqaadHCUJLQPTD5jLfBOVNkWw1TSEZr4SGk0AzZzA3BG5q8Pr9L6WDK3MKCXdi6f9IViGYKGXjzw==" - } - }, - "npm:@azure/core-http": { - "type": "npm", - "name": "npm:@azure/core-http", - "data": { - "version": "1.1.3", - "packageName": "@azure/core-http", - "hash": "sha512-GysW3+BRVV4L9cs3GsuCbnlyibrQU6hh5mcJ7hlnk7tdUBzWybUvJ8/P/nHX49PgwRmi81pD5v1ht2jF0IzxAQ==" - } - }, - "npm:@azure/core-lro": { - "type": "npm", - "name": "npm:@azure/core-lro", - "data": { - "version": "1.0.2", - "packageName": "@azure/core-lro", - "hash": "sha512-Yr0JD7GKryOmbcb5wHCQoQ4KCcH5QJWRNorofid+UvudLaxnbCfvKh/cUfQsGUqRjO9L/Bw4X7FP824DcHdMxw==" - } - }, - "npm:@azure/core-paging": { - "type": "npm", - "name": "npm:@azure/core-paging", - "data": { - "version": "1.1.1", - "packageName": "@azure/core-paging", - "hash": "sha512-hqEJBEGKan4YdOaL9ZG/GRG6PXaFd/Wb3SSjQW4LWotZzgl6xqG00h6wmkrpd2NNkbBkD1erLHBO3lPHApv+iQ==" - } - }, - "npm:@azure/core-rest-pipeline": { - "type": "npm", - "name": "npm:@azure/core-rest-pipeline", - "data": { - "version": "1.3.2", - "packageName": "@azure/core-rest-pipeline", - "hash": "sha512-kymICKESeHBpVLgQiAxllgWdSTopkqtmfPac8ITwMCxNEC6hzbSpqApYbjzxbBNkBMgoD4GESo6LLhR/sPh6kA==" - } - }, - "npm:@azure/core-tracing@1.0.0-preview.11": { - "type": "npm", - "name": "npm:@azure/core-tracing@1.0.0-preview.11", - "data": { - "version": "1.0.0-preview.11", - "packageName": "@azure/core-tracing", - "hash": "sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ==" - } - }, - "npm:@azure/core-tracing": { - "type": "npm", - "name": "npm:@azure/core-tracing", - "data": { - "version": "1.0.0-preview.13", - "packageName": "@azure/core-tracing", - "hash": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==" - } - }, - "npm:@azure/core-tracing@1.0.0-preview.8": { - "type": "npm", - "name": "npm:@azure/core-tracing@1.0.0-preview.8", - "data": { - "version": "1.0.0-preview.8", - "packageName": "@azure/core-tracing", - "hash": "sha512-ZKUpCd7Dlyfn7bdc+/zC/sf0aRIaNQMDuSj2RhYRFe3p70hVAnYGp3TX4cnG2yoEALp/LTj/XnZGQ8Xzf6Ja/Q==" - } - }, - "npm:@azure/core-xml": { - "type": "npm", - "name": "npm:@azure/core-xml", - "data": { - "version": "1.0.0", - "packageName": "@azure/core-xml", - "hash": "sha512-VSM3wQomzRZk4SnDK5vKaROON/d3hgfl+D/pfLjpGR8gxRGuO0I8R+Rp/qj6Cq3x7HPgUqrii3/s/RRwDWWdvQ==" - } - }, - "npm:@azure/data-tables": { - "type": "npm", - "name": "npm:@azure/data-tables", - "data": { - "version": "13.0.0", - "packageName": "@azure/data-tables", - "hash": "sha512-OA9X0rsTP7AM+cZENppMljihYWfn02Tkwa1IdbU8jNfCjV5SL8x2e76L7SN5z/sFxAJ3hdcyMa3sAOXvuSs6/Q==" - } - }, - "npm:@azure/logger": { - "type": "npm", - "name": "npm:@azure/logger", - "data": { - "version": "1.0.0", - "packageName": "@azure/logger", - "hash": "sha512-g2qLDgvmhyIxR3JVS8N67CyIOeFRKQlX/llxYJQr1OSGQqM3HTpVP8MjmjcEKbL/OIt2N9C9UFaNQuKOw1laOA==" - } - }, - "npm:@azure/storage-blob": { - "type": "npm", - "name": "npm:@azure/storage-blob", - "data": { - "version": "12.1.2", - "packageName": "@azure/storage-blob", - "hash": "sha512-PCHgG4r3xLt5FaFj+uiMqrRpuzD3TD17cvxCeA1JKK2bJEf8b07H3QRLQVf0DM1MmvYY8FgQagkWZTp+jr9yew==" - } - }, - "npm:@babel/code-frame@7.12.11": { - "type": "npm", - "name": "npm:@babel/code-frame@7.12.11", - "data": { - "version": "7.12.11", - "packageName": "@babel/code-frame", - "hash": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.22.13", - "packageName": "@babel/code-frame", - "hash": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.23.2", - "packageName": "@babel/compat-data", - "hash": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==" - } - }, - "npm:@babel/core@7.12.9": { - "type": "npm", - "name": "npm:@babel/core@7.12.9", - "data": { - "version": "7.12.9", - "packageName": "@babel/core", - "hash": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.23.2", - "packageName": "@babel/core", - "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.23.0", - "packageName": "@babel/generator", - "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" - } - }, - "npm:@babel/helper-builder-binary-assignment-operator-visitor": { - "type": "npm", - "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==" - } - }, - "npm:@babel/helper-create-class-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-class-features-plugin", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==" - } - }, - "npm:@babel/helper-create-regexp-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-regexp-features-plugin", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" - } - }, - "npm:@babel/helper-define-polyfill-provider@0.1.5": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "data": { - "version": "0.1.5", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==" - } - }, - "npm:@babel/helper-define-polyfill-provider": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider", - "data": { - "version": "0.4.3", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==" - } - }, - "npm:@babel/helper-environment-visitor": { - "type": "npm", - "name": "npm:@babel/helper-environment-visitor", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" - } - }, - "npm:@babel/helper-function-name": { - "type": "npm", - "name": "npm:@babel/helper-function-name", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-function-name", - "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" - } - }, - "npm:@babel/helper-hoist-variables": { - "type": "npm", - "name": "npm:@babel/helper-hoist-variables", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-hoist-variables", - "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" - } - }, - "npm:@babel/helper-member-expression-to-functions": { - "type": "npm", - "name": "npm:@babel/helper-member-expression-to-functions", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==" - } - }, - "npm:@babel/helper-optimise-call-expression": { - "type": "npm", - "name": "npm:@babel/helper-optimise-call-expression", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-optimise-call-expression", - "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" - } - }, - "npm:@babel/helper-plugin-utils@7.10.4": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils@7.10.4", - "data": { - "version": "7.10.4", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" - } - }, - "npm:@babel/helper-remap-async-to-generator": { - "type": "npm", - "name": "npm:@babel/helper-remap-async-to-generator", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" - } - }, - "npm:@babel/helper-replace-supers": { - "type": "npm", - "name": "npm:@babel/helper-replace-supers", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-replace-supers", - "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" - } - }, - "npm:@babel/helper-skip-transparent-expression-wrappers": { - "type": "npm", - "name": "npm:@babel/helper-skip-transparent-expression-wrappers", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-skip-transparent-expression-wrappers", - "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.22.6", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==" - } - }, - "npm:@babel/helper-wrap-function": { - "type": "npm", - "name": "npm:@babel/helper-wrap-function", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-wrap-function", - "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.23.2", - "packageName": "@babel/helpers", - "hash": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.22.20", - "packageName": "@babel/highlight", - "hash": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.23.0", - "packageName": "@babel/parser", - "hash": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" - } - }, - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==" - } - }, - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==" - } - }, - "npm:@babel/plugin-proposal-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-class-properties", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-class-properties", - "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" - } - }, - "npm:@babel/plugin-proposal-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==" - } - }, - "npm:@babel/plugin-proposal-export-default-from": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-export-default-from", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-proposal-export-default-from", - "hash": "sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==" - } - }, - "npm:@babel/plugin-proposal-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-export-namespace-from", - "data": { - "version": "7.18.9", - "packageName": "@babel/plugin-proposal-export-namespace-from", - "hash": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" - } - }, - "npm:@babel/plugin-proposal-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", - "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" - } - }, - "npm:@babel/plugin-proposal-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-object-rest-spread", - "data": { - "version": "7.12.1", - "packageName": "@babel/plugin-proposal-object-rest-spread", - "hash": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==" - } - }, - "npm:@babel/plugin-proposal-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-optional-chaining", - "data": { - "version": "7.21.0", - "packageName": "@babel/plugin-proposal-optional-chaining", - "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" - } - }, - "npm:@babel/plugin-proposal-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-methods", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-private-methods", - "hash": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.0-placeholder-for-preset-env.2", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "data": { - "version": "7.21.0", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-class-static-block", - "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - } - }, - "npm:@babel/plugin-syntax-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-decorators", - "data": { - "version": "7.22.10", - "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==" - } - }, - "npm:@babel/plugin-syntax-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-dynamic-import", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-dynamic-import", - "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - } - }, - "npm:@babel/plugin-syntax-export-default-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-default-from", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-export-default-from", - "hash": "sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q==" - } - }, - "npm:@babel/plugin-syntax-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-namespace-from", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-export-namespace-from", - "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - } - }, - "npm:@babel/plugin-syntax-flow": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-flow", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-flow", - "hash": "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==" - } - }, - "npm:@babel/plugin-syntax-import-assertions": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-assertions", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==" - } - }, - "npm:@babel/plugin-syntax-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==" - } - }, - "npm:@babel/plugin-syntax-import-meta": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-meta", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-import-meta", - "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" - } - }, - "npm:@babel/plugin-syntax-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-json-strings", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-json-strings", - "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - } - }, - "npm:@babel/plugin-syntax-jsx@7.12.1": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx@7.12.1", - "data": { - "version": "7.12.1", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" - } - }, - "npm:@babel/plugin-syntax-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-logical-assignment-operators", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-logical-assignment-operators", - "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - } - }, - "npm:@babel/plugin-syntax-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", - "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - } - }, - "npm:@babel/plugin-syntax-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-numeric-separator", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-numeric-separator", - "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - } - }, - "npm:@babel/plugin-syntax-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-object-rest-spread", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-object-rest-spread", - "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - } - }, - "npm:@babel/plugin-syntax-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-catch-binding", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-catch-binding", - "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - } - }, - "npm:@babel/plugin-syntax-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-chaining", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-chaining", - "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - } - }, - "npm:@babel/plugin-syntax-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-private-property-in-object", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-private-property-in-object", - "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - } - }, - "npm:@babel/plugin-syntax-top-level-await": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-top-level-await", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-top-level-await", - "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - } - }, - "npm:@babel/plugin-syntax-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-typescript", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" - } - }, - "npm:@babel/plugin-syntax-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-unicode-sets-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-syntax-unicode-sets-regex", - "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" - } - }, - "npm:@babel/plugin-transform-arrow-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-arrow-functions", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==" - } - }, - "npm:@babel/plugin-transform-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-generator-functions", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-transform-async-generator-functions", - "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" - } - }, - "npm:@babel/plugin-transform-async-to-generator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-to-generator", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" - } - }, - "npm:@babel/plugin-transform-block-scoped-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoped-functions", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==" - } - }, - "npm:@babel/plugin-transform-block-scoping": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoping", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==" - } - }, - "npm:@babel/plugin-transform-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-properties", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-class-properties", - "hash": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==" - } - }, - "npm:@babel/plugin-transform-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-static-block", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-class-static-block", - "hash": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==" - } - }, - "npm:@babel/plugin-transform-classes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-classes", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==" - } - }, - "npm:@babel/plugin-transform-computed-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-computed-properties", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==" - } - }, - "npm:@babel/plugin-transform-destructuring": { - "type": "npm", - "name": "npm:@babel/plugin-transform-destructuring", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==" - } - }, - "npm:@babel/plugin-transform-dotall-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dotall-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==" - } - }, - "npm:@babel/plugin-transform-duplicate-keys": { - "type": "npm", - "name": "npm:@babel/plugin-transform-duplicate-keys", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==" - } - }, - "npm:@babel/plugin-transform-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dynamic-import", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-dynamic-import", - "hash": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==" - } - }, - "npm:@babel/plugin-transform-exponentiation-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-exponentiation-operator", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==" - } - }, - "npm:@babel/plugin-transform-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-transform-export-namespace-from", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-export-namespace-from", - "hash": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==" - } - }, - "npm:@babel/plugin-transform-flow-strip-types": { - "type": "npm", - "name": "npm:@babel/plugin-transform-flow-strip-types", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-transform-flow-strip-types", - "hash": "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==" - } - }, - "npm:@babel/plugin-transform-for-of": { - "type": "npm", - "name": "npm:@babel/plugin-transform-for-of", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==" - } - }, - "npm:@babel/plugin-transform-function-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-function-name", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==" - } - }, - "npm:@babel/plugin-transform-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-transform-json-strings", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-json-strings", - "hash": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==" - } - }, - "npm:@babel/plugin-transform-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-literals", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==" - } - }, - "npm:@babel/plugin-transform-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-transform-logical-assignment-operators", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-logical-assignment-operators", - "hash": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==" - } - }, - "npm:@babel/plugin-transform-member-expression-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-member-expression-literals", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==" - } - }, - "npm:@babel/plugin-transform-modules-amd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-amd", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==" - } - }, - "npm:@babel/plugin-transform-modules-systemjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-systemjs", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==" - } - }, - "npm:@babel/plugin-transform-modules-umd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-umd", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==" - } - }, - "npm:@babel/plugin-transform-named-capturing-groups-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-named-capturing-groups-regex", - "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" - } - }, - "npm:@babel/plugin-transform-new-target": { - "type": "npm", - "name": "npm:@babel/plugin-transform-new-target", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==" - } - }, - "npm:@babel/plugin-transform-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-nullish-coalescing-operator", - "hash": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==" - } - }, - "npm:@babel/plugin-transform-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-numeric-separator", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-numeric-separator", - "hash": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==" - } - }, - "npm:@babel/plugin-transform-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-rest-spread", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-object-rest-spread", - "hash": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==" - } - }, - "npm:@babel/plugin-transform-object-super": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-super", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==" - } - }, - "npm:@babel/plugin-transform-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-catch-binding", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-optional-catch-binding", - "hash": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==" - } - }, - "npm:@babel/plugin-transform-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-chaining", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==" - } - }, - "npm:@babel/plugin-transform-parameters": { - "type": "npm", - "name": "npm:@babel/plugin-transform-parameters", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==" - } - }, - "npm:@babel/plugin-transform-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-methods", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-private-methods", - "hash": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==" - } - }, - "npm:@babel/plugin-transform-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-property-in-object", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-private-property-in-object", - "hash": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==" - } - }, - "npm:@babel/plugin-transform-property-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-property-literals", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==" - } - }, - "npm:@babel/plugin-transform-react-display-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-display-name", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-react-display-name", - "hash": "sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==" - } - }, - "npm:@babel/plugin-transform-react-jsx-development": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx-development", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-react-jsx-development", - "hash": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==" - } - }, - "npm:@babel/plugin-transform-react-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-react-jsx", - "hash": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==" - } - }, - "npm:@babel/plugin-transform-react-pure-annotations": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-pure-annotations", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-react-pure-annotations", - "hash": "sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==" - } - }, - "npm:@babel/plugin-transform-regenerator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-regenerator", - "data": { - "version": "7.22.10", - "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==" - } - }, - "npm:@babel/plugin-transform-reserved-words": { - "type": "npm", - "name": "npm:@babel/plugin-transform-reserved-words", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==" - } - }, - "npm:@babel/plugin-transform-runtime": { - "type": "npm", - "name": "npm:@babel/plugin-transform-runtime", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" - } - }, - "npm:@babel/plugin-transform-shorthand-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-shorthand-properties", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==" - } - }, - "npm:@babel/plugin-transform-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-spread", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==" - } - }, - "npm:@babel/plugin-transform-sticky-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-sticky-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==" - } - }, - "npm:@babel/plugin-transform-template-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-template-literals", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==" - } - }, - "npm:@babel/plugin-transform-typeof-symbol": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typeof-symbol", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==" - } - }, - "npm:@babel/plugin-transform-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typescript", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==" - } - }, - "npm:@babel/plugin-transform-unicode-escapes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-escapes", - "data": { - "version": "7.22.10", - "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==" - } - }, - "npm:@babel/plugin-transform-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-property-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-unicode-property-regex", - "hash": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==" - } - }, - "npm:@babel/plugin-transform-unicode-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==" - } - }, - "npm:@babel/plugin-transform-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-sets-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-unicode-sets-regex", - "hash": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==" - } - }, - "npm:@babel/polyfill": { - "type": "npm", - "name": "npm:@babel/polyfill", - "data": { - "version": "7.12.1", - "packageName": "@babel/polyfill", - "hash": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==" - } - }, - "npm:@babel/preset-env": { - "type": "npm", - "name": "npm:@babel/preset-env", - "data": { - "version": "7.23.2", - "packageName": "@babel/preset-env", - "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" - } - }, - "npm:@babel/preset-flow": { - "type": "npm", - "name": "npm:@babel/preset-flow", - "data": { - "version": "7.14.5", - "packageName": "@babel/preset-flow", - "hash": "sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg==" - } - }, - "npm:@babel/preset-modules": { - "type": "npm", - "name": "npm:@babel/preset-modules", - "data": { - "version": "0.1.6-no-external-plugins", - "packageName": "@babel/preset-modules", - "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" - } - }, - "npm:@babel/preset-react": { - "type": "npm", - "name": "npm:@babel/preset-react", - "data": { - "version": "7.22.15", - "packageName": "@babel/preset-react", - "hash": "sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==" - } - }, - "npm:@babel/preset-typescript": { - "type": "npm", - "name": "npm:@babel/preset-typescript", - "data": { - "version": "7.23.2", - "packageName": "@babel/preset-typescript", - "hash": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==" - } - }, - "npm:@babel/register": { - "type": "npm", - "name": "npm:@babel/register", - "data": { - "version": "7.22.15", - "packageName": "@babel/register", - "hash": "sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==" - } - }, - "npm:@babel/regjsgen": { - "type": "npm", - "name": "npm:@babel/regjsgen", - "data": { - "version": "0.8.0", - "packageName": "@babel/regjsgen", - "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - } - }, - "npm:@babel/runtime-corejs3": { - "type": "npm", - "name": "npm:@babel/runtime-corejs3", - "data": { - "version": "7.12.13", - "packageName": "@babel/runtime-corejs3", - "hash": "sha512-8fSpqYRETHATtNitsCXq8QQbKJP31/KnDl2Wz2Vtui9nKzjss2ysuZtyVsWjBtvkeEFo346gkwjYPab1hvrXkQ==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.23.2", - "packageName": "@babel/runtime", - "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" - } - }, - "npm:@babel/standalone": { - "type": "npm", - "name": "npm:@babel/standalone", - "data": { - "version": "7.23.2", - "packageName": "@babel/standalone", - "hash": "sha512-VJNw7OS26JvB6rE9XpbT6uQeQIEBWU5eeHGS4VR/+/4ZoKdLBXLcy66ZVJ/9IBkK1RMp8B0cohvhzdKWtJAGmg==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.22.15", - "packageName": "@babel/template", - "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.23.2", - "packageName": "@babel/traverse", - "hash": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.23.0", - "packageName": "@babel/types", - "hash": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==" - } - }, - "npm:@base2/pretty-print-object": { - "type": "npm", - "name": "npm:@base2/pretty-print-object", - "data": { - "version": "1.0.1", - "packageName": "@base2/pretty-print-object", - "hash": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@cactuslab/usepubsub": { - "type": "npm", - "name": "npm:@cactuslab/usepubsub", - "data": { - "version": "1.0.2", - "packageName": "@cactuslab/usepubsub", - "hash": "sha512-xNl3YemJ+aTDgs7MRlmGla7TGDVowtZ/FAF5DaHfR5EJaM4tV5EvK0FIk9hz/lt3AHXL+vxnBoyf4z2Z1sYzJA==" - } - }, - "npm:@charlietango/use-client-hydrated": { - "type": "npm", - "name": "npm:@charlietango/use-client-hydrated", - "data": { - "version": "1.8.2", - "packageName": "@charlietango/use-client-hydrated", - "hash": "sha512-Wlr6MvlCvmPVwAW8Hc/UZaAnNAKfRs2h3vkOFMFSqhaiQp+zix/ZQd+LhoY4iRGJNMhtNuOnht1ShOAz4odTIQ==" - } - }, - "npm:@charlietango/use-script": { - "type": "npm", - "name": "npm:@charlietango/use-script", - "data": { - "version": "2.1.1", - "packageName": "@charlietango/use-script", - "hash": "sha512-g6sbWV4Vg0eqbhL1z90dO3ZsMrF0EHWCw0//M4iE9OwJf9r7x0y7a+KcPb2+Myu96tT35NsmNnIeww4rSG95jQ==" - } - }, - "npm:@cnakazawa/watch": { - "type": "npm", - "name": "npm:@cnakazawa/watch", - "data": { - "version": "1.0.3", - "packageName": "@cnakazawa/watch", - "hash": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==" - } - }, - "npm:@colors/colors": { - "type": "npm", - "name": "npm:@colors/colors", - "data": { - "version": "1.5.0", - "packageName": "@colors/colors", - "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - } - }, - "npm:@cspotcode/source-map-support": { - "type": "npm", - "name": "npm:@cspotcode/source-map-support", - "data": { - "version": "0.8.1", - "packageName": "@cspotcode/source-map-support", - "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" - } - }, - "npm:@ctrl/tinycolor": { - "type": "npm", - "name": "npm:@ctrl/tinycolor", - "data": { - "version": "3.3.4", - "packageName": "@ctrl/tinycolor", - "hash": "sha512-8vmPV/nIULFDWsnJalQJDqFLC2uTPx6A/ASA2t27QGp+7oXnbWWXCe0uV8xasIH2rGbI/XoB2vmkdP/94WvMrw==" - } - }, - "npm:@cypress/mount-utils": { - "type": "npm", - "name": "npm:@cypress/mount-utils", - "data": { - "version": "1.0.2", - "packageName": "@cypress/mount-utils", - "hash": "sha512-Fn3fdTiyayHoy8Ol0RSu4MlBH2maQ2ZEXeEVKl/zHHXEQpld5HX3vdNLhK5YLij8cLynA4DxOT/nO9iEnIiOXw==" - } - }, - "npm:@cypress/react": { - "type": "npm", - "name": "npm:@cypress/react", - "data": { - "version": "5.12.4", - "packageName": "@cypress/react", - "hash": "sha512-d44InxWKmwQKyCMQT/3n1UplYa39yKEQTPlb2HhXF6ickqtmhxw7kePv00yrJpBc9gy2jUkNUOfCbtt2uz1kUw==" - } - }, - "npm:@cypress/request": { - "type": "npm", - "name": "npm:@cypress/request", - "data": { - "version": "2.88.10", - "packageName": "@cypress/request", - "hash": "sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg==" - } - }, - "npm:@cypress/webpack-dev-server": { - "type": "npm", - "name": "npm:@cypress/webpack-dev-server", - "data": { - "version": "1.8.3", - "packageName": "@cypress/webpack-dev-server", - "hash": "sha512-r5udgc5ZhXYsnjhen+CI3CRjAjqY2UszbLQcda0np2JjLfLQX+F/bTF6g5NYWr3BMurXalC8JAZUrsBgvE0Wqw==" - } - }, - "npm:@cypress/xvfb": { - "type": "npm", - "name": "npm:@cypress/xvfb", - "data": { - "version": "1.2.4", - "packageName": "@cypress/xvfb", - "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" - } - }, - "npm:@discoveryjs/json-ext": { - "type": "npm", - "name": "npm:@discoveryjs/json-ext", - "data": { - "version": "0.5.6", - "packageName": "@discoveryjs/json-ext", - "hash": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==" - } - }, - "npm:@dnd-kit/accessibility": { - "type": "npm", - "name": "npm:@dnd-kit/accessibility", - "data": { - "version": "3.0.1", - "packageName": "@dnd-kit/accessibility", - "hash": "sha512-HXRrwS9YUYQO9lFRc/49uO/VICbM+O+ZRpFDe9Pd1rwVv2PCNkRiTZRdxrDgng/UkvdC3Re9r2vwPpXXrWeFzg==" - } - }, - "npm:@dnd-kit/core": { - "type": "npm", - "name": "npm:@dnd-kit/core", - "data": { - "version": "6.0.8", - "packageName": "@dnd-kit/core", - "hash": "sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA==" - } - }, - "npm:@dnd-kit/sortable": { - "type": "npm", - "name": "npm:@dnd-kit/sortable", - "data": { - "version": "7.0.2", - "packageName": "@dnd-kit/sortable", - "hash": "sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA==" - } - }, - "npm:@dnd-kit/utilities": { - "type": "npm", - "name": "npm:@dnd-kit/utilities", - "data": { - "version": "3.2.1", - "packageName": "@dnd-kit/utilities", - "hash": "sha512-OOXqISfvBw/1REtkSK2N3Fi2EQiLMlWUlqnOK/UpOISqBZPWpE6TqL+jcPtMOkE8TqYGiURvRdPSI9hltNUjEA==" - } - }, - "npm:@dsherret/to-absolute-glob": { - "type": "npm", - "name": "npm:@dsherret/to-absolute-glob", - "data": { - "version": "2.0.2", - "packageName": "@dsherret/to-absolute-glob", - "hash": "sha1-H2R13IvZdM6gei2vOGSzF7HdMyw=" - } - }, - "npm:@effect/data@0.12.5": { - "type": "npm", - "name": "npm:@effect/data@0.12.5", - "data": { - "version": "0.12.5", - "packageName": "@effect/data", - "hash": "sha512-gmHSsG4earpIWufwCNT1R1pZ5BIe7z0bMmexnAFOT9csc8bwTSzk1e5QAd/65/vyczf/cMMrXgjpasdxlJ5POA==" - } - }, - "npm:@effect/data": { - "type": "npm", - "name": "npm:@effect/data", - "data": { - "version": "0.12.10", - "packageName": "@effect/data", - "hash": "sha512-zIz/DgumH2LgGdr1Wc9ChET5JSG0k/G5kDc8rn4a6yIJ0v2d5rfnbRWIJO2fWmdFvc+128JyaBvYguIyz9JaAQ==" - } - }, - "npm:@effect/io": { - "type": "npm", - "name": "npm:@effect/io", - "data": { - "version": "0.26.0", - "packageName": "@effect/io", - "hash": "sha512-umwZ/sRoV7zb/8WwoiK7xWoypqvY6C1EXWEGORpViAFUTx3/bXc9i7JtdttTWVokXb3qogrxGX2SHopB20I4vQ==" - } - }, - "npm:@effect/match": { - "type": "npm", - "name": "npm:@effect/match", - "data": { - "version": "0.24.4", - "packageName": "@effect/match", - "hash": "sha512-oo0uzazHhlDm4shxiMQep5osHsEZmBX6uhB9GM2RXseDahwsKrOp5Q3cMr/J4ZfhruH/0/o7GEhLLHxpwhEtuA==" - } - }, - "npm:@effect/schema": { - "type": "npm", - "name": "npm:@effect/schema", - "data": { - "version": "0.20.3", - "packageName": "@effect/schema", - "hash": "sha512-pjJW9QkHZd2/fq7Bhd6pAOidMJ0OUODOeUlesPDK0jpo62AaU9g+IGXt3v5NU8rXSX77igZgfK08XhmofwHn0A==" - } - }, - "npm:@emotion/cache": { - "type": "npm", - "name": "npm:@emotion/cache", - "data": { - "version": "10.0.27", - "packageName": "@emotion/cache", - "hash": "sha512-Zp8BEpbMunFsTcqAK4D7YTm3MvCp1SekflSLJH8lze2fCcSZ/yMkXHo8kb3t1/1Tdd3hAqf3Fb7z9VZ+FMiC9w==" - } - }, - "npm:@emotion/cache@11.4.0": { - "type": "npm", - "name": "npm:@emotion/cache@11.4.0", - "data": { - "version": "11.4.0", - "packageName": "@emotion/cache", - "hash": "sha512-Zx70bjE7LErRO9OaZrhf22Qye1y4F7iDl+ITjet0J+i+B88PrAOBkKvaAWhxsZf72tDLajwCgfCjJ2dvH77C3g==" - } - }, - "npm:@emotion/core": { - "type": "npm", - "name": "npm:@emotion/core", - "data": { - "version": "10.1.1", - "packageName": "@emotion/core", - "hash": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==" - } - }, - "npm:@emotion/css": { - "type": "npm", - "name": "npm:@emotion/css", - "data": { - "version": "10.0.27", - "packageName": "@emotion/css", - "hash": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==" - } - }, - "npm:@emotion/hash": { - "type": "npm", - "name": "npm:@emotion/hash", - "data": { - "version": "0.7.4", - "packageName": "@emotion/hash", - "hash": "sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A==" - } - }, - "npm:@emotion/hash@0.8.0": { - "type": "npm", - "name": "npm:@emotion/hash@0.8.0", - "data": { - "version": "0.8.0", - "packageName": "@emotion/hash", - "hash": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" - } - }, - "npm:@emotion/hash@0.9.1": { - "type": "npm", - "name": "npm:@emotion/hash@0.9.1", - "data": { - "version": "0.9.1", - "packageName": "@emotion/hash", - "hash": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" - } - }, - "npm:@emotion/is-prop-valid": { - "type": "npm", - "name": "npm:@emotion/is-prop-valid", - "data": { - "version": "0.8.8", - "packageName": "@emotion/is-prop-valid", - "hash": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" - } - }, - "npm:@emotion/memoize": { - "type": "npm", - "name": "npm:@emotion/memoize", - "data": { - "version": "0.7.4", - "packageName": "@emotion/memoize", - "hash": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - } - }, - "npm:@emotion/serialize": { - "type": "npm", - "name": "npm:@emotion/serialize", - "data": { - "version": "0.11.15", - "packageName": "@emotion/serialize", - "hash": "sha512-YE+qnrmGwyR+XB5j7Bi+0GT1JWsdcjM/d4POu+TXkcnrRs4RFCCsi3d/Ebf+wSStHqAlTT2+dfd+b9N9EO2KBg==" - } - }, - "npm:@emotion/serialize@1.0.2": { - "type": "npm", - "name": "npm:@emotion/serialize@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "@emotion/serialize", - "hash": "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==" - } - }, - "npm:@emotion/sheet": { - "type": "npm", - "name": "npm:@emotion/sheet", - "data": { - "version": "0.9.4", - "packageName": "@emotion/sheet", - "hash": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" - } - }, - "npm:@emotion/sheet@1.0.1": { - "type": "npm", - "name": "npm:@emotion/sheet@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "@emotion/sheet", - "hash": "sha512-GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g==" - } - }, - "npm:@emotion/stylis": { - "type": "npm", - "name": "npm:@emotion/stylis", - "data": { - "version": "0.8.5", - "packageName": "@emotion/stylis", - "hash": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" - } - }, - "npm:@emotion/unitless": { - "type": "npm", - "name": "npm:@emotion/unitless", - "data": { - "version": "0.7.5", - "packageName": "@emotion/unitless", - "hash": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" - } - }, - "npm:@emotion/utils": { - "type": "npm", - "name": "npm:@emotion/utils", - "data": { - "version": "0.11.3", - "packageName": "@emotion/utils", - "hash": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" - } - }, - "npm:@emotion/utils@1.0.0": { - "type": "npm", - "name": "npm:@emotion/utils@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "@emotion/utils", - "hash": "sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==" - } - }, - "npm:@emotion/weak-memoize": { - "type": "npm", - "name": "npm:@emotion/weak-memoize", - "data": { - "version": "0.2.5", - "packageName": "@emotion/weak-memoize", - "hash": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" - } - }, - "npm:@es-joy/jsdoccomment": { - "type": "npm", - "name": "npm:@es-joy/jsdoccomment", - "data": { - "version": "0.36.1", - "packageName": "@es-joy/jsdoccomment", - "hash": "sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==" - } - }, - "npm:@esbuild/android-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-lsB65vAbe90I/Qe10OjkmrdxSX4UJDjosDgb8sZUKcg3oefEuW2OT2Vozz8ef7wrJbMcmhvCC+hciF8jY/uAkw==" - } - }, - "npm:@esbuild/android-arm@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/android-arm", - "hash": "sha512-tM8yLeYVe7pRyAu9VMi/Q7aunpLwD139EY1S99xbQkT4/q2qa6eA4ige/WJQYdJ8GBL1K33pPFhPfPdJ/WzT8Q==" - } - }, - "npm:@esbuild/android-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/android-x64", - "hash": "sha512-qK/TpmHt2M/Hg82WXHRc/W/2SGo/l1thtDHZWqFq7oi24AjZ4O/CpPSu6ZuYKFkEgmZlFoa7CooAyYmuvnaG8w==" - } - }, - "npm:@esbuild/darwin-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-Ora8JokrvrzEPEpZO18ZYXkH4asCdc1DLdcVy8TGf5eWtPO1Ie4WroEJzwI52ZGtpODy3+m0a2yEX9l+KUn0tA==" - } - }, - "npm:@esbuild/darwin-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-tP+B5UuIbbFMj2hQaUr6EALlHOIOmlLM2FK7jeFBobPy2ERdohI4Ka6ZFjZ1ZYsrHE/hZimGuU90jusRE0pwDw==" - } - }, - "npm:@esbuild/freebsd-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-YbPY2kc0acfzL1VPVK6EnAlig4f+l8xmq36OZkU0jzBVHcOTyQDhnKQaLzZudNJQyymd9OqQezeaBgkTGdTGeQ==" - } - }, - "npm:@esbuild/freebsd-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-nSO5uZT2clM6hosjWHAsS15hLrwCvIWx+b2e3lZ3MwbYSaXwvfO528OF+dLjas1g3bZonciivI8qKR/Hm7IWGw==" - } - }, - "npm:@esbuild/linux-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-ig2P7GeG//zWlU0AggA3pV1h5gdix0MA3wgB+NsnBXViwiGgY77fuN9Wr5uoCrs2YzaYfogXgsWZbm+HGr09xg==" - } - }, - "npm:@esbuild/linux-arm@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-Odalh8hICg7SOD7XCj0YLpYCEc+6mkoq63UnExDCiRA2wXEmGlK5JVrW50vZR9Qz4qkvqnHcpH+OFEggO3PgTg==" - } - }, - "npm:@esbuild/linux-ia32@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-mLfp0ziRPOLSTek0Gd9T5B8AtzKAkoZE70fneiiyPlSnUKKI4lp+mGEnQXcQEHLJAcIYDPSyBvsUbKUG2ri/XQ==" - } - }, - "npm:@esbuild/linux-loong64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-hn28+JNDTxxCpnYjdDYVMNTR3SKavyLlCHHkufHV91fkewpIyQchS1d8wSbmXhs1fiYDpNww8KTFlJ1dHsxeSw==" - } - }, - "npm:@esbuild/linux-mips64el@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-KbXaC0Sejt7vD2fEgPoIKb6nxkfYW9OmFUK9XQE4//PvGIxNIfPk1NmlHmMg6f25x57rpmEFrn1OotASYIAaTg==" - } - }, - "npm:@esbuild/linux-ppc64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-dJ0kE8KTqbiHtA3Fc/zn7lCd7pqVr4JcT0JqOnbj4LLzYnp+7h8Qi4yjfq42ZlHfhOCM42rBh0EwHYLL6LEzcw==" - } - }, - "npm:@esbuild/linux-riscv64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-7Z/jKNFufZ/bbu4INqqCN6DDlrmOTmdw6D0gH+6Y7auok2r02Ur661qPuXidPOJ+FSgbEeQnnAGgsVynfLuOEw==" - } - }, - "npm:@esbuild/linux-s390x@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-U+RinR6aXXABFCcAY4gSlv4CL1oOVvSSCdseQmGO66H+XyuQGZIUdhG56SZaDJQcLmrSfRmx5XZOWyCJPRqS7g==" - } - }, - "npm:@esbuild/linux-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-oxzHTEv6VPm3XXNaHPyUTTte+3wGv7qVQtqaZCrgstI16gCuhNOtBXLEBkBREP57YTd68P0VgDgG73jSD8bwXQ==" - } - }, - "npm:@esbuild/netbsd-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-WNa5zZk1XpTTwMDompZmvQLHszDDDN7lYjEHCUmAGB83Bgs20EMs7ICD+oKeT6xt4phV4NDdSi/8OfjPbSbZfQ==" - } - }, - "npm:@esbuild/openbsd-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-S6kI1aT3S++Dedb7vxIuUOb3oAxqxk2Rh5rOXOTYnzN8JzW1VzBd+IqPiSpgitu45042SYD3HCoEyhLKQcDFDw==" - } - }, - "npm:@esbuild/sunos-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-VXSSMsmb+Z8LbsQGcBMiM+fYObDNRm8p7tkUDMPG/g4fhFX5DEFmjxIEa3N8Zr96SjsJ1woAhF0DUnS3MF3ARw==" - } - }, - "npm:@esbuild/win32-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-5NayUlSAyb5PQYFAU9x3bHdsqB88RC3aM9lKDAz4X1mo/EchMIT1Q+pSeBXNgkfNmRecLXA0O8xP+x8V+g/LKg==" - } - }, - "npm:@esbuild/win32-ia32@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-47gL/ek1v36iN0wL9L4Q2MFdujR0poLZMJwhO2/N3gA89jgHp4MR8DKCmwYtGNksbfJb9JoTtbkoe6sDhg2QTA==" - } - }, - "npm:@esbuild/win32-x64": { - "type": "npm", - "name": "npm:@esbuild/win32-x64", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-tcuhV7ncXBqbt/Ybf0IyrMcwVOAPDckMK9rXNHtF17UTK18OKLpg08glminN06pt2WCoALhXdLfSPbVvK/6fxw==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.4.0", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "0.4.3", - "packageName": "@eslint/eslintrc", - "hash": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==" - } - }, - "npm:@floating-ui/core": { - "type": "npm", - "name": "npm:@floating-ui/core", - "data": { - "version": "1.2.0", - "packageName": "@floating-ui/core", - "hash": "sha512-GHUXPEhMEmTpnpIfesFA2KAoMJPb1SPQw964tToQwt+BbGXdhqTCWT1rOb0VURGylsxsYxiGMnseJ3IlclVpVA==" - } - }, - "npm:@floating-ui/devtools": { - "type": "npm", - "name": "npm:@floating-ui/devtools", - "data": { - "version": "0.0.1", - "packageName": "@floating-ui/devtools", - "hash": "sha512-itUtNTkiHPfvRDOrAFKLCYEEZ3PrSIir44El6AoBBl7IbmciAx4CxXVfIWjSCIZdZnHFaeXg6vIfEukqC3Z6bw==" - } - }, - "npm:@floating-ui/dom": { - "type": "npm", - "name": "npm:@floating-ui/dom", - "data": { - "version": "1.2.0", - "packageName": "@floating-ui/dom", - "hash": "sha512-QXzg57o1cjLz3cGETzKXjI3kx1xyS49DW9l7kV2jw2c8Yftd434t2hllX0sVGn2Q8MtcW/4pNm8bfE1/4n6mng==" - } - }, - "npm:@fluentui/dom-utilities@1.1.1": { - "type": "npm", - "name": "npm:@fluentui/dom-utilities@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "@fluentui/dom-utilities", - "hash": "sha512-w40gi8fzCpwa7U8cONiuu8rszPStkVOL/weDf5pCbYEb1gdaV7MDPSNkgM6IV0Kz+k017noDgK9Fv4ru1Dwz1g==" - } - }, - "npm:@fluentui/react-icons": { - "type": "npm", - "name": "npm:@fluentui/react-icons", - "data": { - "version": "2.0.217", - "packageName": "@fluentui/react-icons", - "hash": "sha512-kTaocW+UuLTzEaTobzQTQZX5lamall7U8p4n9aibcGQYeNPtxhRvdNJK8SNkKoSGCukx46mB2hDfc0mKvky+wQ==" - } - }, - "npm:@gar/promisify": { - "type": "npm", - "name": "npm:@gar/promisify", - "data": { - "version": "1.1.3", - "packageName": "@gar/promisify", - "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" - } - }, - "npm:@griffel/babel-preset": { - "type": "npm", - "name": "npm:@griffel/babel-preset", - "data": { - "version": "1.4.20", - "packageName": "@griffel/babel-preset", - "hash": "sha512-fN3ntaNnshPY6rY8ysNrQgo/EdheZjcAi/xT8hBVV85VHFjuTkL+aKA2S3Ufea4gdSt9R4eGavMkPsO08r8dEA==" - } - }, - "npm:@griffel/core": { - "type": "npm", - "name": "npm:@griffel/core", - "data": { - "version": "1.14.1", - "packageName": "@griffel/core", - "hash": "sha512-KQ6yueap1zff9TJrn7MdfSAHDMDVP6Ec97gnpCi4NOeKiyCyT13MwPCmkkK0o/poaV1f9MdHhUTQZCpK0QtxzQ==" - } - }, - "npm:@griffel/eslint-plugin": { - "type": "npm", - "name": "npm:@griffel/eslint-plugin", - "data": { - "version": "1.2.0", - "packageName": "@griffel/eslint-plugin", - "hash": "sha512-ThqQR1UIeM+WZH1z8RUrKHCDuSXrFEwRIL4nX0UmBZznV/36DiGzODOQl6ZoZ9eCGoGYxTnl6riwy/1cB/0yGA==" - } - }, - "npm:@griffel/jest-serializer": { - "type": "npm", - "name": "npm:@griffel/jest-serializer", - "data": { - "version": "1.1.16", - "packageName": "@griffel/jest-serializer", - "hash": "sha512-43EK5EdX/xsSKQl7ObLfM/IxiZU6imlkFoJj7bzsP7aykMn6xePe11oAwMcZb+lMmiP/gtEsNMvsi1UBt+6NFw==" - } - }, - "npm:@griffel/react": { - "type": "npm", - "name": "npm:@griffel/react", - "data": { - "version": "1.5.14", - "packageName": "@griffel/react", - "hash": "sha512-/x6cy6xMtpow1r+Zrw/hMKHwo+imFAgKaZ3A/+M8GyT3L9AFxK1Kyg4JvARPjLBAn9Q2q5dkCr78jOguuVSScg==" - } - }, - "npm:@griffel/shadow-dom": { - "type": "npm", - "name": "npm:@griffel/shadow-dom", - "data": { - "version": "0.1.5", - "packageName": "@griffel/shadow-dom", - "hash": "sha512-/4MUZd1udyX7OMwqfjbZrBdAnjCbz/BqsIxsX/N/2yLMDA9lmiJonySi6NGLKzoGphGy+tAgBkCh2t4YBI1Phg==" - } - }, - "npm:@griffel/style-types": { - "type": "npm", - "name": "npm:@griffel/style-types", - "data": { - "version": "1.0.1", - "packageName": "@griffel/style-types", - "hash": "sha512-nhVryiNHhoBt5L93tfDYGoE4KtWvhBvY7y1yR1n6WKpRjasgw3GI2pBwiMiVt68bycnyvXIvcJjJTr0QM22VLQ==" - } - }, - "npm:@griffel/webpack-extraction-plugin": { - "type": "npm", - "name": "npm:@griffel/webpack-extraction-plugin", - "data": { - "version": "0.3.18", - "packageName": "@griffel/webpack-extraction-plugin", - "hash": "sha512-FYqaacXXMG3ekAXdpkS6Snc/ECW095pMIvLY8bDtOkNZidslbbg5gF/KqVrOqRcR3gDPXLpT3GylfGEHVrvEgw==" - } - }, - "npm:@griffel/webpack-loader": { - "type": "npm", - "name": "npm:@griffel/webpack-loader", - "data": { - "version": "2.1.20", - "packageName": "@griffel/webpack-loader", - "hash": "sha512-R4Sk64rZIkWuTQX0mpzOFm5ULJ0HpnD3GMxOvprqNTpQmaCaL89FHOMc1le90s25clQfmxTAZuCueBOJHYxNCA==" - } - }, - "npm:@gulp-sourcemaps/identity-map": { - "type": "npm", - "name": "npm:@gulp-sourcemaps/identity-map", - "data": { - "version": "1.0.2", - "packageName": "@gulp-sourcemaps/identity-map", - "hash": "sha512-ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ==" - } - }, - "npm:@gulp-sourcemaps/map-sources": { - "type": "npm", - "name": "npm:@gulp-sourcemaps/map-sources", - "data": { - "version": "1.0.0", - "packageName": "@gulp-sourcemaps/map-sources", - "hash": "sha1-iQrnxdjId/bThIYCFazp1+yUW9o=" - } - }, - "npm:@hot-loader/react-dom@17.0.2": { - "type": "npm", - "name": "npm:@hot-loader/react-dom@17.0.2", - "data": { - "version": "17.0.2", - "packageName": "@hot-loader/react-dom", - "hash": "sha512-G2RZrFhsQClS+bdDh/Ojpk3SgocLPUGnvnJDTQYnmKSSwXtU+Yh+8QMs+Ia3zaAvBiOSpIIDSUxuN69cvKqrWg==" - } - }, - "npm:@hutson/parse-repository-url": { - "type": "npm", - "name": "npm:@hutson/parse-repository-url", - "data": { - "version": "3.0.2", - "packageName": "@hutson/parse-repository-url", - "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:@istanbuljs/load-nyc-config": { - "type": "npm", - "name": "npm:@istanbuljs/load-nyc-config", - "data": { - "version": "1.1.0", - "packageName": "@istanbuljs/load-nyc-config", - "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" - } - }, - "npm:@istanbuljs/schema": { - "type": "npm", - "name": "npm:@istanbuljs/schema", - "data": { - "version": "0.1.2", - "packageName": "@istanbuljs/schema", - "hash": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==" - } - }, - "npm:@jest/console": { - "type": "npm", - "name": "npm:@jest/console", - "data": { - "version": "29.7.0", - "packageName": "@jest/console", - "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" - } - }, - "npm:@jest/core": { - "type": "npm", - "name": "npm:@jest/core", - "data": { - "version": "29.7.0", - "packageName": "@jest/core", - "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" - } - }, - "npm:@jest/environment": { - "type": "npm", - "name": "npm:@jest/environment", - "data": { - "version": "29.7.0", - "packageName": "@jest/environment", - "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" - } - }, - "npm:@jest/expect-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "npm:@jest/fake-timers": { - "type": "npm", - "name": "npm:@jest/fake-timers", - "data": { - "version": "29.7.0", - "packageName": "@jest/fake-timers", - "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" - } - }, - "npm:@jest/globals": { - "type": "npm", - "name": "npm:@jest/globals", - "data": { - "version": "29.7.0", - "packageName": "@jest/globals", - "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" - } - }, - "npm:@jest/reporters": { - "type": "npm", - "name": "npm:@jest/reporters", - "data": { - "version": "29.7.0", - "packageName": "@jest/reporters", - "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "29.6.3", - "packageName": "@jest/schemas", - "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" - } - }, - "npm:@jest/source-map": { - "type": "npm", - "name": "npm:@jest/source-map", - "data": { - "version": "29.6.3", - "packageName": "@jest/source-map", - "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" - } - }, - "npm:@jest/test-result": { - "type": "npm", - "name": "npm:@jest/test-result", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-result", - "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" - } - }, - "npm:@jest/test-sequencer": { - "type": "npm", - "name": "npm:@jest/test-sequencer", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-sequencer", - "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" - } - }, - "npm:@jest/transform@26.6.2": { - "type": "npm", - "name": "npm:@jest/transform@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "@jest/transform", - "hash": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==" - } - }, - "npm:@jest/transform": { - "type": "npm", - "name": "npm:@jest/transform", - "data": { - "version": "29.7.0", - "packageName": "@jest/transform", - "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" - } - }, - "npm:@jest/types@25.5.0": { - "type": "npm", - "name": "npm:@jest/types@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "@jest/types", - "hash": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==" - } - }, - "npm:@jest/types@26.6.2": { - "type": "npm", - "name": "npm:@jest/types@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "@jest/types", - "hash": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" - } - }, - "npm:@jest/types": { - "type": "npm", - "name": "npm:@jest/types", - "data": { - "version": "29.6.3", - "packageName": "@jest/types", - "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" - } - }, - "npm:@jridgewell/gen-mapping@0.1.1": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping@0.1.1", - "data": { - "version": "0.1.1", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.2", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.0", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.1.2", - "packageName": "@jridgewell/set-array", - "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.2", - "packageName": "@jridgewell/source-map", - "hash": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.4.14", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - } - }, - "npm:@jridgewell/trace-mapping@0.3.9": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.19", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==" - } - }, - "npm:@lage-run/logger": { - "type": "npm", - "name": "npm:@lage-run/logger", - "data": { - "version": "1.1.1", - "packageName": "@lage-run/logger", - "hash": "sha512-8ZWHKCnnOYdLlLS2sSrMRZ4PM3oY5uqc2JN1RptSaKg8tR8g6ITMRmJ04/J4OqqiXiWVv2vozGt9pgxJLI2i7A==" - } - }, - "npm:@lerna/child-process": { - "type": "npm", - "name": "npm:@lerna/child-process", - "data": { - "version": "7.1.3", - "packageName": "@lerna/child-process", - "hash": "sha512-ZXHo30G5Ia/RCWKVyBm+3kAe/liWy7KaRF+CPWZpxYo+ysFPBIJ/7XZlGMzmq8fQaMsPj1z61q4wyqeAlUwuvQ==" - } - }, - "npm:@lerna/create": { - "type": "npm", - "name": "npm:@lerna/create", - "data": { - "version": "7.1.3", - "packageName": "@lerna/create", - "hash": "sha512-i/xUmT7sMNTUhGpSUuQJ8N776YiT/fJaKPrzMSAoxqDBhyDryi4o4JUR+rrN9oELOEsO+SOXQEusBdkmUdVTMg==" - } - }, - "npm:@linaria/babel-preset": { - "type": "npm", - "name": "npm:@linaria/babel-preset", - "data": { - "version": "3.0.0-beta.23", - "packageName": "@linaria/babel-preset", - "hash": "sha512-NhxUZokEq12RLpDo4v/f59dB9A/1BbLgGLFotnrDzNBHfylm0qXSIIel68pZOXUB5lVdPJHqZWcT2zxbpGW6fA==" - } - }, - "npm:@linaria/core": { - "type": "npm", - "name": "npm:@linaria/core", - "data": { - "version": "3.0.0-beta.22", - "packageName": "@linaria/core", - "hash": "sha512-BPSecW8QmhQ0y+5cWXEja+MTmLsuo0T1PjqRlSWsmDgjJFFObqCnPEgbR1KNtQb3Msmx1/9q3dYKpA5Zk3g8KQ==" - } - }, - "npm:@linaria/logger": { - "type": "npm", - "name": "npm:@linaria/logger", - "data": { - "version": "3.0.0-beta.20", - "packageName": "@linaria/logger", - "hash": "sha512-wCxWnldCHf7HXdLG3QtbKyBur+z5V1qZTouSEvcVYDfd4aSRPOi/jLdwsZlsUq2PFGpA3jW6JnreZJ/vxuEl7g==" - } - }, - "npm:@linaria/preeval": { - "type": "npm", - "name": "npm:@linaria/preeval", - "data": { - "version": "3.0.0-beta.22", - "packageName": "@linaria/preeval", - "hash": "sha512-/PS86ljXBu3HVLTRd2sn/5wxD4ywnlTUGZPMMFlZDGuBCHlMZehD7xE6VbX6t/JZtOAylU8vDi2RYum96evHAw==" - } - }, - "npm:@linaria/shaker": { - "type": "npm", - "name": "npm:@linaria/shaker", - "data": { - "version": "3.0.0-beta.22", - "packageName": "@linaria/shaker", - "hash": "sha512-NOi71i/XfBJpBOT5eepRvv6B64IMdjsKwv+vxLW+IuFHx3wnqXgZsgimNK2qoXbpqy9xWsSEeB/4QA4m8GCUKQ==" - } - }, - "npm:@linaria/utils": { - "type": "npm", - "name": "npm:@linaria/utils", - "data": { - "version": "3.0.0-beta.20", - "packageName": "@linaria/utils", - "hash": "sha512-SKRC9dBApzu0kTksVtGZ7eJz1vMu7xew/JEAjQj6XTQDblzWpTPyKQHBOGXNkqXjIB8PwAqWfvKzKapzaOwQaQ==" - } - }, - "npm:@mdx-js/loader": { - "type": "npm", - "name": "npm:@mdx-js/loader", - "data": { - "version": "1.6.22", - "packageName": "@mdx-js/loader", - "hash": "sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==" - } - }, - "npm:@mdx-js/mdx": { - "type": "npm", - "name": "npm:@mdx-js/mdx", - "data": { - "version": "1.6.22", - "packageName": "@mdx-js/mdx", - "hash": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==" - } - }, - "npm:@mdx-js/react": { - "type": "npm", - "name": "npm:@mdx-js/react", - "data": { - "version": "1.6.22", - "packageName": "@mdx-js/react", - "hash": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==" - } - }, - "npm:@mdx-js/util": { - "type": "npm", - "name": "npm:@mdx-js/util", - "data": { - "version": "1.6.22", - "packageName": "@mdx-js/util", - "hash": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" - } - }, - "npm:@microsoft/api-extractor-model": { - "type": "npm", - "name": "npm:@microsoft/api-extractor-model", - "data": { - "version": "7.24.2", - "packageName": "@microsoft/api-extractor-model", - "hash": "sha512-uUvjqTCY7hYERWGks+joTioN1QYHIucCDy7I/JqLxFxLbFXE5dpc1X7L+FG4PN/s8QYL24DKt0fqJkgcrFKLTw==" - } - }, - "npm:@microsoft/api-extractor": { - "type": "npm", - "name": "npm:@microsoft/api-extractor", - "data": { - "version": "7.31.2", - "packageName": "@microsoft/api-extractor", - "hash": "sha512-ZODCU9ckTS9brXiZpUW2iDrnAg7jLxeLBM1AkPpSZFcbG/8HGLvfKOKrd71VIJHjc52x2lB8xj7ZWksnP7AOBA==" - } - }, - "npm:@microsoft/applicationinsights-analytics-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-analytics-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-analytics-js", - "hash": "sha512-vrgEiT6cKC2Yb0Y6rCp9CXjFStlRZLI/IhIiBEGYaUfzoytLxUj6F/AizUDYBuNQfE+CTYe0jNyqf+RJgEMkJQ==" - } - }, - "npm:@microsoft/applicationinsights-channel-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-channel-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-channel-js", - "hash": "sha512-jDBNKbCHsJgmpv0CKNhJ/uN9ZphvfGdb93Svk+R4LjO8L3apNNMbDDPxBvXXi0uigRmA1TBcmyBG4IRKjabGhw==" - } - }, - "npm:@microsoft/applicationinsights-common": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-common", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-common", - "hash": "sha512-y+WXWop+OVim954Cu1uyYMnNx6PWO8okHpZIQi/1YSqtqaYdtJVPv4P0AVzwJdohxzVfgzKvqj9nec/VWqE2Zg==" - } - }, - "npm:@microsoft/applicationinsights-core-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-core-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-core-js", - "hash": "sha512-WQhVhzlRlLDrQzn3OShCW/pL3BW5WC57t0oywSknX3q7lMzI3jDg7Ihh0iuIcNTzGCTbDkuqr4d6IjEDWIMtJQ==" - } - }, - "npm:@microsoft/applicationinsights-dependencies-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-dependencies-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-dependencies-js", - "hash": "sha512-b/YTonnbghg9DOFsLg4zdbYPafW8fPIzV+nZxfPPpxjA1LGvPhZz/zVx9YYWJg2RBXjojLQoJxLf1ro5eNGVig==" - } - }, - "npm:@microsoft/applicationinsights-properties-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-properties-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-properties-js", - "hash": "sha512-PFqicp8q4Tc0hqfPjwfqKo12gEqTk1l4lMyUUIU7ugE1XOuDkZcMPha05KnZWKj+F4zQXJcetcAHoVkyoyCFQw==" - } - }, - "npm:@microsoft/applicationinsights-shims": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-shims", - "data": { - "version": "3.0.1", - "packageName": "@microsoft/applicationinsights-shims", - "hash": "sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==" - } - }, - "npm:@microsoft/applicationinsights-web": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-web", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-web", - "hash": "sha512-pf2zz/3mmGy1RoyaiLZwhHoE2mFZ+AWR3Zf7xPW7HjTG7dEE4BnovNyW3f9Eu6WWkcHUAHmS/ATzqvVlpB3W6A==" - } - }, - "npm:@microsoft/dynamicproto-js": { - "type": "npm", - "name": "npm:@microsoft/dynamicproto-js", - "data": { - "version": "2.0.2", - "packageName": "@microsoft/dynamicproto-js", - "hash": "sha512-MB8trWaFREpmb037k/d0bB7T2BP7Ai24w1e1tbz3ASLB0/lwphsq3Nq8S9I5AsI5vs4zAQT+SB5nC5/dLYTiOg==" - } - }, - "npm:@microsoft/eslint-plugin-sdl": { - "type": "npm", - "name": "npm:@microsoft/eslint-plugin-sdl", - "data": { - "version": "0.1.9", - "packageName": "@microsoft/eslint-plugin-sdl", - "hash": "sha512-g3XwhU/p/N9yzNWHm8453qraT74LOyCHY39ntHq+zNRn4B0KxSvKh6iXqhnnOYTZBNgsxSpFcejBmdzO47N3oA==" - } - }, - "npm:@microsoft/fast-colors": { - "type": "npm", - "name": "npm:@microsoft/fast-colors", - "data": { - "version": "5.3.1", - "packageName": "@microsoft/fast-colors", - "hash": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" - } - }, - "npm:@microsoft/fast-element": { - "type": "npm", - "name": "npm:@microsoft/fast-element", - "data": { - "version": "1.11.1", - "packageName": "@microsoft/fast-element", - "hash": "sha512-qBGQ94V4ktMMXmxNdgF78TPNImv2ctXUi3Vzj3j2X71gpUcr+Fkat7mLcTNC3y/Jc4W63fAhK2vP3MkwYRS5kQ==" - } - }, - "npm:@microsoft/fast-foundation": { - "type": "npm", - "name": "npm:@microsoft/fast-foundation", - "data": { - "version": "2.48.1", - "packageName": "@microsoft/fast-foundation", - "hash": "sha512-gJR/26hhJipsZ4JD5DSOODb3GFYf7vgCnxS2ag4dj+Mi8ytkAwMPglTOv7v0zsJC2CHqOjY8Ixs66dhepgNkeQ==" - } - }, - "npm:@microsoft/fast-web-utilities": { - "type": "npm", - "name": "npm:@microsoft/fast-web-utilities", - "data": { - "version": "5.4.1", - "packageName": "@microsoft/fast-web-utilities", - "hash": "sha512-ReWYncndjV3c8D8iq9tp7NcFNc1vbVHvcBFPME2nNFKNbS1XCesYZGlIlf3ot5EmuOXPlrzUHOWzQ2vFpIkqDg==" - } - }, - "npm:@microsoft/load-themed-styles": { - "type": "npm", - "name": "npm:@microsoft/load-themed-styles", - "data": { - "version": "1.10.26", - "packageName": "@microsoft/load-themed-styles", - "hash": "sha512-N//pFTBL/iCSrMuDoLvBLpgGjlk+MgKX2kyFI3bJVb+LRozeyWCOZVRcR8aMKiYHdqwy5isu2Frp8drvWx7RbA==" - } - }, - "npm:@microsoft/loader-load-themed-styles": { - "type": "npm", - "name": "npm:@microsoft/loader-load-themed-styles", - "data": { - "version": "2.0.17", - "packageName": "@microsoft/loader-load-themed-styles", - "hash": "sha512-FyQdwbnkgta2pJU4PjyeLp/1/V5OBpZKrUJgrQAhjO7ApCj3X7/eYCxn0DZ+EMNjJKBKF9PUoM0BDPtSZAzJjg==" - } - }, - "npm:@microsoft/tsdoc-config": { - "type": "npm", - "name": "npm:@microsoft/tsdoc-config", - "data": { - "version": "0.16.2", - "packageName": "@microsoft/tsdoc-config", - "hash": "sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==" - } - }, - "npm:@microsoft/tsdoc": { - "type": "npm", - "name": "npm:@microsoft/tsdoc", - "data": { - "version": "0.14.1", - "packageName": "@microsoft/tsdoc", - "hash": "sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==" - } - }, - "npm:@microsoft/tsdoc@0.14.2": { - "type": "npm", - "name": "npm:@microsoft/tsdoc@0.14.2", - "data": { - "version": "0.14.2", - "packageName": "@microsoft/tsdoc", - "hash": "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==" - } - }, - "npm:@mole-inc/bin-wrapper": { - "type": "npm", - "name": "npm:@mole-inc/bin-wrapper", - "data": { - "version": "8.0.1", - "packageName": "@mole-inc/bin-wrapper", - "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" - } - }, - "npm:@mrmlnc/readdir-enhanced": { - "type": "npm", - "name": "npm:@mrmlnc/readdir-enhanced", - "data": { - "version": "2.2.1", - "packageName": "@mrmlnc/readdir-enhanced", - "hash": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==" - } - }, - "npm:@nevware21/ts-async": { - "type": "npm", - "name": "npm:@nevware21/ts-async", - "data": { - "version": "0.2.6", - "packageName": "@nevware21/ts-async", - "hash": "sha512-NCUqEZSbsy7LVtKlUScd/eTst6djkWauLlzoIPVKCOxalEBdO8lrgNRIm4Xy68JNudNN5faqa2WA12X8m0BVhA==" - } - }, - "npm:@nevware21/ts-utils": { - "type": "npm", - "name": "npm:@nevware21/ts-utils", - "data": { - "version": "0.9.8", - "packageName": "@nevware21/ts-utils", - "hash": "sha512-kZ8s8hcn9jPVX/M7kSsBYrOGlHjqLahmxrG7QeKTk5paeVwfgKdvVCjj5Acb4UGb/ukU1G34U1Z3eb7bbVanyA==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.3", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.3", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==" - } - }, - "npm:@nodelib/fs.stat@1.1.3": { - "type": "npm", - "name": "npm:@nodelib/fs.stat@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.4", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==" - } - }, - "npm:@npmcli/ci-detect": { - "type": "npm", - "name": "npm:@npmcli/ci-detect", - "data": { - "version": "1.3.0", - "packageName": "@npmcli/ci-detect", - "hash": "sha512-oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q==" - } - }, - "npm:@npmcli/fs@2.1.2": { - "type": "npm", - "name": "npm:@npmcli/fs@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "@npmcli/fs", - "hash": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "3.1.0", - "packageName": "@npmcli/fs", - "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" - } - }, - "npm:@npmcli/git@2.0.3": { - "type": "npm", - "name": "npm:@npmcli/git@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "@npmcli/git", - "hash": "sha512-c/ODsV5ppjB12VDXKc6hzVNgg6ZJX/etILUn3WgF5NLAYBhQLJ3fBq6uB2jQD4OwqOzJdPT1/xA3Xh3aaWGk5w==" - } - }, - "npm:@npmcli/git": { - "type": "npm", - "name": "npm:@npmcli/git", - "data": { - "version": "4.1.0", - "packageName": "@npmcli/git", - "hash": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==" - } - }, - "npm:@npmcli/installed-package-contents@1.0.7": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents@1.0.7", - "data": { - "version": "1.0.7", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==" - } - }, - "npm:@npmcli/installed-package-contents": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents", - "data": { - "version": "2.0.2", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" - } - }, - "npm:@npmcli/move-file": { - "type": "npm", - "name": "npm:@npmcli/move-file", - "data": { - "version": "1.0.1", - "packageName": "@npmcli/move-file", - "hash": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==" - } - }, - "npm:@npmcli/move-file@2.0.1": { - "type": "npm", - "name": "npm:@npmcli/move-file@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "@npmcli/move-file", - "hash": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" - } - }, - "npm:@npmcli/node-gyp": { - "type": "npm", - "name": "npm:@npmcli/node-gyp", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/node-gyp", - "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" - } - }, - "npm:@npmcli/promise-spawn": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn", - "data": { - "version": "1.2.0", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-nFtqjVETliApiRdjbYwKwhlSHx2ZMagyj5b9YbNt0BWeeOVxJd47ZVE2u16vxDHyTOZvk+YLV7INwfAE9a2uow==" - } - }, - "npm:@npmcli/promise-spawn@6.0.2": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==" - } - }, - "npm:@npmcli/run-script": { - "type": "npm", - "name": "npm:@npmcli/run-script", - "data": { - "version": "6.0.2", - "packageName": "@npmcli/run-script", - "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" - } - }, - "npm:@npmcli/run-script@1.3.1": { - "type": "npm", - "name": "npm:@npmcli/run-script@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "@npmcli/run-script", - "hash": "sha512-9Ea57XJjNLtBFRAaiKqqdoqRrL2QkM0vvCbMjPecljhog5IHupStPtZULbl0CoGN00N3lhLWJ4PaIEC0MGjqJw==" - } - }, - "npm:@nrwl/devkit": { - "type": "npm", - "name": "npm:@nrwl/devkit", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/devkit", - "hash": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==" - } - }, - "npm:@nrwl/jest": { - "type": "npm", - "name": "npm:@nrwl/jest", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/jest", - "hash": "sha512-hZuIK3xXh4HaE6/Ny8hGidjkJ4aLZjnQtPDxKD/423gznQe2FdHx3avoSlbOEOx5Oc6sJ9QGGZLcvckKQ5uWww==" - } - }, - "npm:@nrwl/js": { - "type": "npm", - "name": "npm:@nrwl/js", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/js", - "hash": "sha512-asybPpyPrxLLDWWdYzFqbgubLmDKLEhoMz8x9MPOm3CH8v2vlIE6hD0JT19GdJArBPxRB33nhjtu8wmJGz5czw==" - } - }, - "npm:@nrwl/linter": { - "type": "npm", - "name": "npm:@nrwl/linter", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/linter", - "hash": "sha512-XvMuTeIc2I3630iaqhlV4w3qgABQIo+kv8mT0DbT1HfjjZDm4ST8hrvkdWSf9mCl24vShNL8GDVQVNOX0bZY5A==" - } - }, - "npm:@nrwl/node": { - "type": "npm", - "name": "npm:@nrwl/node", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/node", - "hash": "sha512-UZ1s02f2IpFRXzVZIBuDLXXB+obyP280RFHV9smYruhOHrj8iA5wXNSXcJJGorwpKP3WCUS/+KS49oVSHOkLUA==" - } - }, - "npm:@nrwl/nx-plugin": { - "type": "npm", - "name": "npm:@nrwl/nx-plugin", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/nx-plugin", - "hash": "sha512-AZiQ+amECFQGcWKhvs+KbqOzGU2dcQydGd0j4Wlz3xlfkEmYfCk80dj26ypSFB+3O+0p+q+HPpJhD0fka3shtw==" - } - }, - "npm:@nrwl/tao": { - "type": "npm", - "name": "npm:@nrwl/tao", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/tao", - "hash": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==" - } - }, - "npm:@nrwl/workspace": { - "type": "npm", - "name": "npm:@nrwl/workspace", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/workspace", - "hash": "sha512-fZeNxhFs/2cm326NebfJIgSI3W4KZN94WGS46wlIBrUUGP5/vwHYsi09Kx6sG1kRkAuZVtgJ33uU2F6xcAWzUA==" - } - }, - "npm:@nx/devkit": { - "type": "npm", - "name": "npm:@nx/devkit", - "data": { - "version": "16.10.0", - "packageName": "@nx/devkit", - "hash": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==" - } - }, - "npm:@nx/jest": { - "type": "npm", - "name": "npm:@nx/jest", - "data": { - "version": "16.10.0", - "packageName": "@nx/jest", - "hash": "sha512-QseeLjDrl4c9q9Dd/057SXYqd47JVLhD2VQlQDraYwjsHz3lWkzlGaaHy0ZrVu8LSzY7lUUhJMPyYO3qo8wT6A==" - } - }, - "npm:@nx/js": { - "type": "npm", - "name": "npm:@nx/js", - "data": { - "version": "16.10.0", - "packageName": "@nx/js", - "hash": "sha512-27AH0/+XTMzOxVS6oV8Zl7/Rr1UDMYsnCVqoCU9CXp087uxcD4VnBOEjsEUlJKh1RdwGE3K0hBkk7NC1LP+vYQ==" - } - }, - "npm:@nx/linter": { - "type": "npm", - "name": "npm:@nx/linter", - "data": { - "version": "16.10.0", - "packageName": "@nx/linter", - "hash": "sha512-G6XBfuMHNHoJDc4n2Gip4fsa9KssT91V5PF2Rd4hILkg4YU8B8mlmHN71stpzwbEyUJtyhyJc5SGgVLrSpRQew==" - } - }, - "npm:@nx/node": { - "type": "npm", - "name": "npm:@nx/node", - "data": { - "version": "16.10.0", - "packageName": "@nx/node", - "hash": "sha512-mOGxsZzLNg9kMy/FDkCQfhb/ig3WsttHxzG9+ynCHBV5svKOIqA3F+EUp1gre6wgRyi/qrEUhk6GER5ZTX2ygw==" - } - }, - "npm:@nx/nx-darwin-arm64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==" - } - }, - "npm:@nx/nx-darwin-x64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==" - } - }, - "npm:@nx/nx-freebsd-x64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==" - } - }, - "npm:@nx/nx-linux-arm64-gnu@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==" - } - }, - "npm:@nx/nx-linux-arm64-musl@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==" - } - }, - "npm:@nx/nx-linux-x64-gnu@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==" - } - }, - "npm:@nx/nx-linux-x64-musl@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==" - } - }, - "npm:@nx/nx-win32-arm64-msvc@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==" - } - }, - "npm:@nx/plugin": { - "type": "npm", - "name": "npm:@nx/plugin", - "data": { - "version": "16.10.0", - "packageName": "@nx/plugin", - "hash": "sha512-oTTl+yZBfj/EBvqp8vxzE/JhavT2lWaWNKBj1B8kNOYDG041Pf6jj7GazcQmPd+g1UM96Ut0HZit/rsoJOTdvQ==" - } - }, - "npm:@nx/workspace": { - "type": "npm", - "name": "npm:@nx/workspace", - "data": { - "version": "16.10.0", - "packageName": "@nx/workspace", - "hash": "sha512-95Eq36bzq2hb095Zvg+Ru8o9oIeOE62tNGGpohBkZPKoK2CUTYEq0AZtdj1suXS82ukCFCyyZ/c/fwxL62HRZA==" - } - }, - "npm:@octokit/auth-token": { - "type": "npm", - "name": "npm:@octokit/auth-token", - "data": { - "version": "2.5.0", - "packageName": "@octokit/auth-token", - "hash": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==" - } - }, - "npm:@octokit/auth-token@3.0.1": { - "type": "npm", - "name": "npm:@octokit/auth-token@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "@octokit/auth-token", - "hash": "sha512-/USkK4cioY209wXRpund6HZzHo9GmjakpV9ycOkpMcMxMk7QVcVFVyCMtzvXYiHsB2crgDgrtNYSELYFBXhhaA==" - } - }, - "npm:@octokit/core": { - "type": "npm", - "name": "npm:@octokit/core", - "data": { - "version": "3.6.0", - "packageName": "@octokit/core", - "hash": "sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==" - } - }, - "npm:@octokit/core@4.2.4": { - "type": "npm", - "name": "npm:@octokit/core@4.2.4", - "data": { - "version": "4.2.4", - "packageName": "@octokit/core", - "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" - } - }, - "npm:@octokit/endpoint": { - "type": "npm", - "name": "npm:@octokit/endpoint", - "data": { - "version": "6.0.12", - "packageName": "@octokit/endpoint", - "hash": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==" - } - }, - "npm:@octokit/endpoint@7.0.2": { - "type": "npm", - "name": "npm:@octokit/endpoint@7.0.2", - "data": { - "version": "7.0.2", - "packageName": "@octokit/endpoint", - "hash": "sha512-8/AUACfE9vpRpehE6ZLfEtzkibe5nfsSwFZVMsG8qabqRt1M81qZYUFRZa1B8w8lP6cdfDJfRq9HWS+MbmR7tw==" - } - }, - "npm:@octokit/graphql": { - "type": "npm", - "name": "npm:@octokit/graphql", - "data": { - "version": "4.8.0", - "packageName": "@octokit/graphql", - "hash": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==" - } - }, - "npm:@octokit/graphql@5.0.1": { - "type": "npm", - "name": "npm:@octokit/graphql@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "@octokit/graphql", - "hash": "sha512-sxmnewSwAixkP1TrLdE6yRG53eEhHhDTYUykUwdV9x8f91WcbhunIHk9x1PZLALdBZKRPUO2HRcm4kezZ79HoA==" - } - }, - "npm:@octokit/openapi-types@12.11.0": { - "type": "npm", - "name": "npm:@octokit/openapi-types@12.11.0", - "data": { - "version": "12.11.0", - "packageName": "@octokit/openapi-types", - "hash": "sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==" - } - }, - "npm:@octokit/openapi-types@13.12.0": { - "type": "npm", - "name": "npm:@octokit/openapi-types@13.12.0", - "data": { - "version": "13.12.0", - "packageName": "@octokit/openapi-types", - "hash": "sha512-1QYzZrwnn3rTQE7ZoSxXrO8lhu0aIbac1c+qIPOPEaVXBWSaUyLV1x9yt4uDQOwmu6u5ywVS8OJgs+ErDLf6vQ==" - } - }, - "npm:@octokit/openapi-types": { - "type": "npm", - "name": "npm:@octokit/openapi-types", - "data": { - "version": "18.0.0", - "packageName": "@octokit/openapi-types", - "hash": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==" - } - }, - "npm:@octokit/plugin-enterprise-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-enterprise-rest", - "data": { - "version": "6.0.1", - "packageName": "@octokit/plugin-enterprise-rest", - "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" - } - }, - "npm:@octokit/plugin-paginate-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-paginate-rest", - "data": { - "version": "2.21.3", - "packageName": "@octokit/plugin-paginate-rest", - "hash": "sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==" - } - }, - "npm:@octokit/plugin-paginate-rest@6.1.2": { - "type": "npm", - "name": "npm:@octokit/plugin-paginate-rest@6.1.2", - "data": { - "version": "6.1.2", - "packageName": "@octokit/plugin-paginate-rest", - "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" - } - }, - "npm:@octokit/plugin-request-log": { - "type": "npm", - "name": "npm:@octokit/plugin-request-log", - "data": { - "version": "1.0.4", - "packageName": "@octokit/plugin-request-log", - "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" - } - }, - "npm:@octokit/plugin-rest-endpoint-methods": { - "type": "npm", - "name": "npm:@octokit/plugin-rest-endpoint-methods", - "data": { - "version": "5.16.2", - "packageName": "@octokit/plugin-rest-endpoint-methods", - "hash": "sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==" - } - }, - "npm:@octokit/plugin-rest-endpoint-methods@7.2.3": { - "type": "npm", - "name": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", - "data": { - "version": "7.2.3", - "packageName": "@octokit/plugin-rest-endpoint-methods", - "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" - } - }, - "npm:@octokit/request-error": { - "type": "npm", - "name": "npm:@octokit/request-error", - "data": { - "version": "2.1.0", - "packageName": "@octokit/request-error", - "hash": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==" - } - }, - "npm:@octokit/request-error@3.0.1": { - "type": "npm", - "name": "npm:@octokit/request-error@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "@octokit/request-error", - "hash": "sha512-ym4Bp0HTP7F3VFssV88WD1ZyCIRoE8H35pXSKwLeMizcdZAYc/t6N9X9Yr9n6t3aG9IH75XDnZ6UeZph0vHMWQ==" - } - }, - "npm:@octokit/request": { - "type": "npm", - "name": "npm:@octokit/request", - "data": { - "version": "5.6.3", - "packageName": "@octokit/request", - "hash": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==" - } - }, - "npm:@octokit/request@6.2.1": { - "type": "npm", - "name": "npm:@octokit/request@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "@octokit/request", - "hash": "sha512-gYKRCia3cpajRzDSU+3pt1q2OcuC6PK8PmFIyxZDWCzRXRSIBH8jXjFJ8ZceoygBIm0KsEUg4x1+XcYBz7dHPQ==" - } - }, - "npm:@octokit/rest": { - "type": "npm", - "name": "npm:@octokit/rest", - "data": { - "version": "18.12.0", - "packageName": "@octokit/rest", - "hash": "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==" - } - }, - "npm:@octokit/rest@19.0.11": { - "type": "npm", - "name": "npm:@octokit/rest@19.0.11", - "data": { - "version": "19.0.11", - "packageName": "@octokit/rest", - "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" - } - }, - "npm:@octokit/tsconfig": { - "type": "npm", - "name": "npm:@octokit/tsconfig", - "data": { - "version": "1.0.2", - "packageName": "@octokit/tsconfig", - "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" - } - }, - "npm:@octokit/types@10.0.0": { - "type": "npm", - "name": "npm:@octokit/types@10.0.0", - "data": { - "version": "10.0.0", - "packageName": "@octokit/types", - "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" - } - }, - "npm:@octokit/types": { - "type": "npm", - "name": "npm:@octokit/types", - "data": { - "version": "6.41.0", - "packageName": "@octokit/types", - "hash": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==" - } - }, - "npm:@octokit/types@7.5.0": { - "type": "npm", - "name": "npm:@octokit/types@7.5.0", - "data": { - "version": "7.5.0", - "packageName": "@octokit/types", - "hash": "sha512-aHm+olfIZjQpzoODpl+RCZzchKOrdSLJs+yfI7pMMcmB19Li6vidgx0DwUDO/Ic4Q3fq/lOjJORVCcLZefcrJw==" - } - }, - "npm:@octokit/types@9.3.2": { - "type": "npm", - "name": "npm:@octokit/types@9.3.2", - "data": { - "version": "9.3.2", - "packageName": "@octokit/types", - "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" - } - }, - "npm:@opencensus/web-types": { - "type": "npm", - "name": "npm:@opencensus/web-types", - "data": { - "version": "0.0.7", - "packageName": "@opencensus/web-types", - "hash": "sha512-xB+w7ZDAu3YBzqH44rCmG9/RlrOmFuDPt/bpf17eJr8eZSrLt7nc7LnWdxM9Mmoj/YKMHpxRg28txu3TcpiL+g==" - } - }, - "npm:@opentelemetry/api@1.0.0-rc.0": { - "type": "npm", - "name": "npm:@opentelemetry/api@1.0.0-rc.0", - "data": { - "version": "1.0.0-rc.0", - "packageName": "@opentelemetry/api", - "hash": "sha512-iXKByCMfrlO5S6Oh97BuM56tM2cIBB0XsL/vWF/AtJrJEKx4MC/Xdu0xDsGXMGcNWpqF7ujMsjjnp0+UHBwnDQ==" - } - }, - "npm:@opentelemetry/api": { - "type": "npm", - "name": "npm:@opentelemetry/api", - "data": { - "version": "0.6.1", - "packageName": "@opentelemetry/api", - "hash": "sha512-wpufGZa7tTxw7eAsjXJtiyIQ42IWQdX9iUQp7ACJcKo1hCtuhLU+K2Nv1U6oRwT1oAlZTE6m4CgWKZBhOiau3Q==" - } - }, - "npm:@opentelemetry/api@1.0.3": { - "type": "npm", - "name": "npm:@opentelemetry/api@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "@opentelemetry/api", - "hash": "sha512-puWxACExDe9nxbBB3lOymQFrLYml2dVOrd7USiVRnSbgXE+KwBu+HxFvxrzfqsiSda9IWsXJG1ef7C1O2/GmKQ==" - } - }, - "npm:@opentelemetry/context-base": { - "type": "npm", - "name": "npm:@opentelemetry/context-base", - "data": { - "version": "0.6.1", - "packageName": "@opentelemetry/context-base", - "hash": "sha512-5bHhlTBBq82ti3qPT15TRxkYTFPPQWbnkkQkmHPtqiS1XcTB69cEKd3Jm7Cfi/vkPoyxapmePE9tyA7EzLt8SQ==" - } - }, - "npm:@parcel/watcher": { - "type": "npm", - "name": "npm:@parcel/watcher", - "data": { - "version": "2.0.4", - "packageName": "@parcel/watcher", - "hash": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==" - } - }, - "npm:@phenomnomnominal/tsquery": { - "type": "npm", - "name": "npm:@phenomnomnominal/tsquery", - "data": { - "version": "6.1.2", - "packageName": "@phenomnomnominal/tsquery", - "hash": "sha512-NahxUvas4D4iRV1NqlL6Z3mIl2Fo+rw1x77wgZpYyaQjQnS4svv6XoVzjcRRtnP5cfY6XuVKLZki8Zltkz8z0w==" - } - }, - "npm:@phenomnomnominal/tsquery@5.0.1": { - "type": "npm", - "name": "npm:@phenomnomnominal/tsquery@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "@phenomnomnominal/tsquery", - "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@pmmmwh/react-refresh-webpack-plugin": { - "type": "npm", - "name": "npm:@pmmmwh/react-refresh-webpack-plugin", - "data": { - "version": "0.5.7", - "packageName": "@pmmmwh/react-refresh-webpack-plugin", - "hash": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==" - } - }, - "npm:@polka/url": { - "type": "npm", - "name": "npm:@polka/url", - "data": { - "version": "1.0.0-next.11", - "packageName": "@polka/url", - "hash": "sha512-3NsZsJIA/22P3QUyrEDNA2D133H4j224twJrdipXN38dpnIOzAbUDtOwkcJ5pXmn75w7LSQDjA4tO9dm1XlqlA==" - } - }, - "npm:@popperjs/core": { - "type": "npm", - "name": "npm:@popperjs/core", - "data": { - "version": "2.4.4", - "packageName": "@popperjs/core", - "hash": "sha512-1oO6+dN5kdIA3sKPZhRGJTfGVP4SWV6KqlMOwry4J3HfyD68sl/3KmG7DeYUzvN+RbhXDnv/D8vNNB8168tAMg==" - } - }, - "npm:@rnx-kit/eslint-plugin": { - "type": "npm", - "name": "npm:@rnx-kit/eslint-plugin", - "data": { - "version": "0.2.5", - "packageName": "@rnx-kit/eslint-plugin", - "hash": "sha512-69Xlsz7fMMAQqLJ9ghglH5fXvU5xXZR09gCkjoK4gephhnQR/i+QDyt0wlqKt2HBo0RUGFbO+EA8aNPcOrJDJg==" - } - }, - "npm:@rollup/pluginutils": { - "type": "npm", - "name": "npm:@rollup/pluginutils", - "data": { - "version": "3.1.0", - "packageName": "@rollup/pluginutils", - "hash": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" - } - }, - "npm:@rushstack/node-core-library@3.50.1": { - "type": "npm", - "name": "npm:@rushstack/node-core-library@3.50.1", - "data": { - "version": "3.50.1", - "packageName": "@rushstack/node-core-library", - "hash": "sha512-9d2xE7E9yQEBS6brTptdP8cslt6iL5+UnkY2lRxQQ4Q/jlXtsrWCCJCxwr56W/eJEe9YT/yHR4mMn5QY64Ps2w==" - } - }, - "npm:@rushstack/node-core-library": { - "type": "npm", - "name": "npm:@rushstack/node-core-library", - "data": { - "version": "3.52.0", - "packageName": "@rushstack/node-core-library", - "hash": "sha512-Z+MAP//G3rEGZd3JxJcBGcPYJlh8pvPoLMTLa5Sy6FTE6hRPzN+5J8DT7BbTmlqZaL6SZpXF30heRUbnYOvujw==" - } - }, - "npm:@rushstack/package-deps-hash": { - "type": "npm", - "name": "npm:@rushstack/package-deps-hash", - "data": { - "version": "3.2.40", - "packageName": "@rushstack/package-deps-hash", - "hash": "sha512-0nnhbWrYE8mdEZXYXY9wOGEMFW3VtZ7+vgh6CJeyY95MDqjz6Alx2PpAHM1T53TNDV/LNFagwl0AzivfJnjhCw==" - } - }, - "npm:@rushstack/rig-package": { - "type": "npm", - "name": "npm:@rushstack/rig-package", - "data": { - "version": "0.3.15", - "packageName": "@rushstack/rig-package", - "hash": "sha512-jxVfvO5OnkRlYRhcVDZWvwiI2l4pv37HDJRtyg5HbD8Z/I8Xj32RICgrxS5xMeGGytobrg5S6OfPOHskg7Nw+A==" - } - }, - "npm:@rushstack/ts-command-line": { - "type": "npm", - "name": "npm:@rushstack/ts-command-line", - "data": { - "version": "4.12.3", - "packageName": "@rushstack/ts-command-line", - "hash": "sha512-Pdij22RotMXzI+HWHyYCvw0RMZhiP5a6Za/96XamZ1+mxmpSm4ujf8TROKxGAHySmR5A8iNVSlzhNMnUlFQE6g==" - } - }, - "npm:@scarf/scarf": { - "type": "npm", - "name": "npm:@scarf/scarf", - "data": { - "version": "1.0.5", - "packageName": "@scarf/scarf", - "hash": "sha512-9WKaGVpQH905Aqkk+BczFEeLQxS07rl04afFRPUG9IcSlOwmo5EVVuuNu0d4M9LMYucObvK0LoAe+5HfMW2QhQ==" - } - }, - "npm:@sigstore/bundle": { - "type": "npm", - "name": "npm:@sigstore/bundle", - "data": { - "version": "1.0.0", - "packageName": "@sigstore/bundle", - "hash": "sha512-yLvrWDOh6uMOUlFCTJIZEnwOT9Xte7NPXUqVexEKGSF5XtBAuSg5du0kn3dRR0p47a4ah10Y0mNt8+uyeQXrBQ==" - } - }, - "npm:@sigstore/protobuf-specs": { - "type": "npm", - "name": "npm:@sigstore/protobuf-specs", - "data": { - "version": "0.2.0", - "packageName": "@sigstore/protobuf-specs", - "hash": "sha512-8ZhZKAVfXjIspDWwm3D3Kvj0ddbJ0HqDZ/pOs5cx88HpT8mVsotFrg7H1UMnXOuDHz6Zykwxn4mxG3QLuN+RUg==" - } - }, - "npm:@sigstore/tuf": { - "type": "npm", - "name": "npm:@sigstore/tuf", - "data": { - "version": "1.0.3", - "packageName": "@sigstore/tuf", - "hash": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.27.8", - "packageName": "@sinclair/typebox", - "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" - } - }, - "npm:@sindresorhus/is": { - "type": "npm", - "name": "npm:@sindresorhus/is", - "data": { - "version": "4.0.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==" - } - }, - "npm:@sindresorhus/is@5.3.0": { - "type": "npm", - "name": "npm:@sindresorhus/is@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==" - } - }, - "npm:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.0", - "packageName": "@sinonjs/commons", - "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" - } - }, - "npm:@sinonjs/fake-timers": { - "type": "npm", - "name": "npm:@sinonjs/fake-timers", - "data": { - "version": "10.2.0", - "packageName": "@sinonjs/fake-timers", - "hash": "sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg==" - } - }, - "npm:@storybook/addon-a11y": { - "type": "npm", - "name": "npm:@storybook/addon-a11y", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-a11y", - "hash": "sha512-4IgsCU7mrfooyGSgvyQdkZVu2iGJZqZ+2GDDIzzeIs1yXvuRy6QiHYNzesSrgeL52ykDXaPGuzKu2pcMKfDQHA==" - } - }, - "npm:@storybook/addon-actions": { - "type": "npm", - "name": "npm:@storybook/addon-actions", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-actions", - "hash": "sha512-cnLzVK1S+EydFDSuvxMmMAxVqNXijBGdV9QTgsu6ys5sOkoiXRETKZmxuN8/ZRbkfc4N+1KAylSCZOOHzBQTBQ==" - } - }, - "npm:@storybook/addon-backgrounds": { - "type": "npm", - "name": "npm:@storybook/addon-backgrounds", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-backgrounds", - "hash": "sha512-9ddB3QIL8mRurf7TvYG1P9i1sW0b8Iik3kGlHggKogHER9WJPzbiUeH0XDjkASSa4rMCZdYn5CZKNkIAoJ2jdA==" - } - }, - "npm:@storybook/addon-controls": { - "type": "npm", - "name": "npm:@storybook/addon-controls", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-controls", - "hash": "sha512-q5y0TvD0stvQoJZ2PnFmmKIRNSOI4/k2NKyZq//J2cBUBcP1reYlFxdsNwLZWmAFpSIkc2+nsliEzNxU1WByoA==" - } - }, - "npm:@storybook/addon-docs": { - "type": "npm", - "name": "npm:@storybook/addon-docs", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-docs", - "hash": "sha512-k3LAu+wVp6pNhfh6B1soCRl6+7sNTNxtqy6WTrIeVJVCGbXbyc5s7gQ48gJ4WAk6meoDEZbypiP4NK1El03YLg==" - } - }, - "npm:@storybook/addon-essentials": { - "type": "npm", - "name": "npm:@storybook/addon-essentials", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-essentials", - "hash": "sha512-m3EY6BhUk6Z9Et7P5wGaRGNoEDHzJIOsLbGS/4IXvIoDfrqmNIilqUQl8kfDqpVdBSFprvpacHpKpLosu9H37w==" - } - }, - "npm:@storybook/addon-knobs": { - "type": "npm", - "name": "npm:@storybook/addon-knobs", - "data": { - "version": "6.4.0", - "packageName": "@storybook/addon-knobs", - "hash": "sha512-DiH1/5e2AFHoHrncl1qLu18ZHPHzRMMPvOLFz8AWvvmc+VCqTdIaE+tdxKr3e8rYylKllibgvDOzrLjfTNjF+Q==" - } - }, - "npm:@storybook/addon-links": { - "type": "npm", - "name": "npm:@storybook/addon-links", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-links", - "hash": "sha512-L7Q3u/xEUuy1uPq8ttjDfvDj19Hr2Crq/Us0RfowfGAAzOb7fCoiUJDP37ADtRUlCYyuKM5V/nHxN8eGpWtugw==" - } - }, - "npm:@storybook/addon-measure": { - "type": "npm", - "name": "npm:@storybook/addon-measure", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-measure", - "hash": "sha512-j77WX/v6qpWK8ZuYscWLIc+Am4/WOJRsVgyXLIw1EZIviQsjoXPo7mmyoTneEIbbHfPtWlLRbtmkjh8DAVDrCA==" - } - }, - "npm:@storybook/addon-outline": { - "type": "npm", - "name": "npm:@storybook/addon-outline", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-outline", - "hash": "sha512-8yGEZQOYypnliU3rsakoZlgT4Pkq8iOhX9JclVXZL/fJMQWFQGCsXqlLaRn8sx7qsa+21PPxY5bd2+Hv/Au4zQ==" - } - }, - "npm:@storybook/addon-toolbars": { - "type": "npm", - "name": "npm:@storybook/addon-toolbars", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-toolbars", - "hash": "sha512-btwDTgElmaaT0dBRASABbTpq6m1UiQXQmLUmxfjLxVC3I2SK5tyJKbPQ2hVLFAQHK4cQn4u45BxdZ5LDpJ830A==" - } - }, - "npm:@storybook/addon-viewport": { - "type": "npm", - "name": "npm:@storybook/addon-viewport", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-viewport", - "hash": "sha512-oOiVzgFMlTnzPLVoHWQNzWdmpksrUyT6Aq8ZOyBPNMQ0RN2doIgFr7W53nZ1OBB5cPQx9q2FgWwzJ7Tawo+iVA==" - } - }, - "npm:@storybook/addons": { - "type": "npm", - "name": "npm:@storybook/addons", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addons", - "hash": "sha512-xT31SuSX+kYGyxCNK2nqL7WTxucs3rSmhiCLovJcUjYk+QquV3c2c53Ki7lwwdDbzfXFcNAe0HJ4hoTN4jhn0Q==" - } - }, - "npm:@storybook/api": { - "type": "npm", - "name": "npm:@storybook/api", - "data": { - "version": "6.5.15", - "packageName": "@storybook/api", - "hash": "sha512-BBE0KXKvj1/3jTghbIoWfrcDM0t+xO7EYtWWAXD6XlhGsZVD2Dy82Z52ONyLulMDRpMWl0OYy3h6A1YnFUH25w==" - } - }, - "npm:@storybook/builder-webpack4": { - "type": "npm", - "name": "npm:@storybook/builder-webpack4", - "data": { - "version": "6.5.15", - "packageName": "@storybook/builder-webpack4", - "hash": "sha512-1ZkMECUUdiYplhlgyUF5fqW3XU7eWNDJbuPUguyDOeidgJ111WZzBcLuKj+SNrzdNNgXwROCWAFybiNnX33YHQ==" - } - }, - "npm:@storybook/builder-webpack5": { - "type": "npm", - "name": "npm:@storybook/builder-webpack5", - "data": { - "version": "6.5.15", - "packageName": "@storybook/builder-webpack5", - "hash": "sha512-BnSoAmI02pvbGBSyzCx+voXb/d5EopQ78zx/lYv4CeOspBFOYEfGvAgYHILFo04V12S2/k8aSOc/tCYw5AqPtw==" - } - }, - "npm:@storybook/channel-postmessage": { - "type": "npm", - "name": "npm:@storybook/channel-postmessage", - "data": { - "version": "6.5.15", - "packageName": "@storybook/channel-postmessage", - "hash": "sha512-gMpA8LWT8lC4z5KWnaMh03aazEwtDO7GtY5kZVru+EEMgExGmaR82qgekwmLmgLj2nRJEv0o138o9IqYUcou8w==" - } - }, - "npm:@storybook/channel-websocket": { - "type": "npm", - "name": "npm:@storybook/channel-websocket", - "data": { - "version": "6.5.15", - "packageName": "@storybook/channel-websocket", - "hash": "sha512-K85KEgzo5ahzJNJjyUbSNyuRmkeC8glJX2hCg2j9HiJ9rasX53qugkODrKDlWAeheulo3kR13VSuAqIuwVbmbw==" - } - }, - "npm:@storybook/channels": { - "type": "npm", - "name": "npm:@storybook/channels", - "data": { - "version": "6.5.15", - "packageName": "@storybook/channels", - "hash": "sha512-gPpsBgirv2NCXbH4WbYqdkI0JLE96aiVuu7UEWfn9yu071pQ9CLHbhXGD9fSFNrfOkyBBY10ppSE7uCXw3Wexg==" - } - }, - "npm:@storybook/client-api": { - "type": "npm", - "name": "npm:@storybook/client-api", - "data": { - "version": "6.5.15", - "packageName": "@storybook/client-api", - "hash": "sha512-0ZGpRgVz7rdbCguBqBpwObXbsVY5qlSTWDzzIBpmz8EkxW/MtK5wEyeq+0L0O+DTn41FwvH5yCGLAENpzWD8BQ==" - } - }, - "npm:@storybook/client-logger": { - "type": "npm", - "name": "npm:@storybook/client-logger", - "data": { - "version": "6.5.15", - "packageName": "@storybook/client-logger", - "hash": "sha512-0uyxKvodq+FycGv6aUwC1wUR6suXf2+7ywMFAOlYolI4UvNj8NyU/5AfgKT5XnxYAgPmoCiAjOE700TrfHrosw==" - } - }, - "npm:@storybook/components": { - "type": "npm", - "name": "npm:@storybook/components", - "data": { - "version": "6.5.15", - "packageName": "@storybook/components", - "hash": "sha512-bHTT0Oa3s4g+MBMaLBbX9ofMtb1AW59AzIUNGrfqW1XqJMGuUHMiJ7TSo+i5dRSFpbFygnwMEG9LfHxpR2Z0Dw==" - } - }, - "npm:@storybook/core-client": { - "type": "npm", - "name": "npm:@storybook/core-client", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core-client", - "hash": "sha512-i9t4WONy2MxJwLI1FIp5ck7b52EXyJfALnxUn4O/3GTkw09J0NOKi2DPjefUsi7IB5MzFpDjDH9vw/XiTM+OZw==" - } - }, - "npm:@storybook/core-common": { - "type": "npm", - "name": "npm:@storybook/core-common", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core-common", - "hash": "sha512-uits9o6qwHTPnjsNZP25f7hWmUBGRJ7FXtxxtEaNSmtiwk50KWxBaro7wt505lJ1Gb9vOhpNPhS7y3IxdsXNmQ==" - } - }, - "npm:@storybook/core-events": { - "type": "npm", - "name": "npm:@storybook/core-events", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core-events", - "hash": "sha512-B1Ba6l5W7MeNclclqMMTMHgYgfdpB5SIhNCQFnzIz8blynzRhNFMdxvbAl6Je5G0S4xydYYd7Lno2kXQebs7HA==" - } - }, - "npm:@storybook/core-server": { - "type": "npm", - "name": "npm:@storybook/core-server", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core-server", - "hash": "sha512-m+pZwHhCjwryeqTptyyKHSbIjnnPGKoRSnkqLTOpKQf8llZMnNQWUFrn4fx6UDKzxFQ2st2+laV8O2QbMs8qwQ==" - } - }, - "npm:@storybook/core": { - "type": "npm", - "name": "npm:@storybook/core", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core", - "hash": "sha512-T9TjLxbb5P/XvLEoj0dnbtexJa0V3pqCifRlIUNkTJO0nU3PdGLMcKMSyIYWjkthAJ9oBrajnodV0UveM/epTg==" - } - }, - "npm:@storybook/csf-tools": { - "type": "npm", - "name": "npm:@storybook/csf-tools", - "data": { - "version": "6.5.15", - "packageName": "@storybook/csf-tools", - "hash": "sha512-2LwSD7yE/ccXBc58K4vdKw/oJJg6IpC4WD51rBt2mAl5JUCkxhOq7wG/Z8Wy1lZw2LVuKNTmjVou5blGRI/bTg==" - } - }, - "npm:@storybook/csf": { - "type": "npm", - "name": "npm:@storybook/csf", - "data": { - "version": "0.0.2--canary.4566f4d.1", - "packageName": "@storybook/csf", - "hash": "sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==" - } - }, - "npm:@storybook/docs-tools": { - "type": "npm", - "name": "npm:@storybook/docs-tools", - "data": { - "version": "6.5.15", - "packageName": "@storybook/docs-tools", - "hash": "sha512-8w78NFOtlJGuIa9vPPsr87J9iQUGmLFh7CrMS2+t9LxW+0oH5MZ8QqPQUHNuTuKsYN3r+QAmmi2pj0auZmCoKA==" - } - }, - "npm:@storybook/html@6.5.15": { - "type": "npm", - "name": "npm:@storybook/html@6.5.15", - "data": { - "version": "6.5.15", - "packageName": "@storybook/html", - "hash": "sha512-SFjhq9VqZNpocSLJ94j/CK9sT4g+Qt3gMixQSuhSvvNDEt2tN8T7dy/vB2IwnjIrMBdbtQZO4UDcX6kZvy0g8A==" - } - }, - "npm:@storybook/manager-webpack4": { - "type": "npm", - "name": "npm:@storybook/manager-webpack4", - "data": { - "version": "6.5.15", - "packageName": "@storybook/manager-webpack4", - "hash": "sha512-zRvBTMoaFO6MvHDsDLnt3tsFENhpY3k+e/UIPdqbIDMbUPGGQzxJucAM9aS/kbVSO5IVs8IflVxbeeB/uTIIfA==" - } - }, - "npm:@storybook/manager-webpack5": { - "type": "npm", - "name": "npm:@storybook/manager-webpack5", - "data": { - "version": "6.5.15", - "packageName": "@storybook/manager-webpack5", - "hash": "sha512-yrHVFUHGdVRWq/oGJwQu+UOZzxELH5SS+Lpn5oIQ/Dblam9piQC0KmBZtFuA9X8acaw4BBVnXgF/aiqs9fOp/Q==" - } - }, - "npm:@storybook/mdx1-csf": { - "type": "npm", - "name": "npm:@storybook/mdx1-csf", - "data": { - "version": "0.0.1", - "packageName": "@storybook/mdx1-csf", - "hash": "sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==" - } - }, - "npm:@storybook/node-logger": { - "type": "npm", - "name": "npm:@storybook/node-logger", - "data": { - "version": "6.5.15", - "packageName": "@storybook/node-logger", - "hash": "sha512-LQjjbfMuUXm7wZTBKb+iGeCNnej4r1Jb2NxG3Svu2bVhaoB6u33jHAcbmhXpXW1jghzW3kQwOU7BoLuJiRRFIw==" - } - }, - "npm:@storybook/postinstall": { - "type": "npm", - "name": "npm:@storybook/postinstall", - "data": { - "version": "6.5.15", - "packageName": "@storybook/postinstall", - "hash": "sha512-l7pApTgLD10OedNOyuf4vUdVCHLOSaIUIL9gdJl1WaSFHiUpJvvzBIh5M4aRICYPbnuExQc8y2GAjERKO4Ep+g==" - } - }, - "npm:@storybook/preview-web": { - "type": "npm", - "name": "npm:@storybook/preview-web", - "data": { - "version": "6.5.15", - "packageName": "@storybook/preview-web", - "hash": "sha512-gIHABSAD0JS0iRaG67BnSDq/q8Zf4fFwEWBQOSYgcEx2TzhAUeSkhGZUQHdlOTCwuA2PpXT0/cWDH8u2Ev+msg==" - } - }, - "npm:@storybook/react-docgen-typescript-plugin": { - "type": "npm", - "name": "npm:@storybook/react-docgen-typescript-plugin", - "data": { - "version": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0", - "packageName": "@storybook/react-docgen-typescript-plugin", - "hash": "sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==" - } - }, - "npm:@storybook/react": { - "type": "npm", - "name": "npm:@storybook/react", - "data": { - "version": "6.5.15", - "packageName": "@storybook/react", - "hash": "sha512-iQta2xOs/oK0sw/zpn3g/huvOmvggzi8z2/WholmUmmRiSQRo9lOhRXH0u13T4ja4fEa+u7m58G83xOG6i73Kw==" - } - }, - "npm:@storybook/router": { - "type": "npm", - "name": "npm:@storybook/router", - "data": { - "version": "6.5.15", - "packageName": "@storybook/router", - "hash": "sha512-9t8rI8t7/Krolau29gsdjdbRQ66orONIyP0efp0EukVgv6reNFzb/U14ARrl0uHys6Tl5Xyece9FoakQUdn8Kg==" - } - }, - "npm:@storybook/semver": { - "type": "npm", - "name": "npm:@storybook/semver", - "data": { - "version": "7.3.2", - "packageName": "@storybook/semver", - "hash": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==" - } - }, - "npm:@storybook/source-loader": { - "type": "npm", - "name": "npm:@storybook/source-loader", - "data": { - "version": "6.5.15", - "packageName": "@storybook/source-loader", - "hash": "sha512-MaWzki40g0/7NWmJgUBhOp+e7y8Ohw6G/bRr/rcDP7eXSnud6ThYylXv0QqBScLPPTy8txjmBClCoqdLGyvLWQ==" - } - }, - "npm:@storybook/store": { - "type": "npm", - "name": "npm:@storybook/store", - "data": { - "version": "6.5.15", - "packageName": "@storybook/store", - "hash": "sha512-r6cYTf6GtbqgdI4ZG3xuWdJAAu5fJ3xAWMiDkHyoK2u+R2TeYXIsJvgn0BPrW87sZhELIkg4ckdFECmATs3kpQ==" - } - }, - "npm:@storybook/telemetry": { - "type": "npm", - "name": "npm:@storybook/telemetry", - "data": { - "version": "6.5.15", - "packageName": "@storybook/telemetry", - "hash": "sha512-WHMRG6xMkEGscn1q4SotwzV8hxM1g3zHyXPN77iosY5zpOIn/qAzvkmW28V1DPH9jPWMZMizBgG1TIQvUpduXg==" - } - }, - "npm:@storybook/theming": { - "type": "npm", - "name": "npm:@storybook/theming", - "data": { - "version": "6.5.15", - "packageName": "@storybook/theming", - "hash": "sha512-pgdW0lVZKKXQ4VhIfLHycMmwFSVOY7vLTKnytag4Y8Yz+aXm0bwDN/QxPntFzDH47F1Rcy2ywNnvty8ooDTvuA==" - } - }, - "npm:@storybook/ui": { - "type": "npm", - "name": "npm:@storybook/ui", - "data": { - "version": "6.5.15", - "packageName": "@storybook/ui", - "hash": "sha512-OO+TWZmI8ebWA1C3JBKNvbUbsgvt4GppqsGlkf5CTBZrT/MzmMlYiooLAtlY1ZPcMtTd5ynLxvroHWBEnMOk2A==" - } - }, - "npm:@swc/cli": { - "type": "npm", - "name": "npm:@swc/cli", - "data": { - "version": "0.1.62", - "packageName": "@swc/cli", - "hash": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==" - } - }, - "npm:@swc/core-darwin-arm64@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-darwin-arm64@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-darwin-arm64", - "hash": "sha512-/LxLjPat1LA9CXS7Cn2M4MIqwNOoDF4KjcikPkO08H54rd6WubhaJnr0sLDjms3adRr+pmcCL0yfsUBTX//85A==" - } - }, - "npm:@swc/core-darwin-x64@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-darwin-x64@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-darwin-x64", - "hash": "sha512-hjSQNcW9BN8gEz3UQZ7Ye80ymbkFHLkUDeEek4lorRyq6S+uxvbL1f1mJAZnFPBpove7AXusykIalWMPvyOR2A==" - } - }, - "npm:@swc/core-linux-arm-gnueabihf@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-arm-gnueabihf@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-arm-gnueabihf", - "hash": "sha512-JVyNIO3tGLPSQ59rJXeKaykTpPhRNozB+7PtYMvMcxpUbYGpEzWxTPkFAX2KKPvl0ejBdA0GW5OXeuPMvTwE0w==" - } - }, - "npm:@swc/core-linux-arm64-gnu@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-gnu@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-arm64-gnu", - "hash": "sha512-gLdZKIoql5vjrNjrwwsiS7d3vOAIzYUWqN97iGCSscQOg0MgYbfUnSTO4UEvH4BYlwRNlHepfTZ7ALoG8areUQ==" - } - }, - "npm:@swc/core-linux-arm64-musl@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-musl@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-arm64-musl", - "hash": "sha512-WQ5tirVBiU8lUODQ25dt8JRCZHyRDInBe4fkGuxzImMa017zYPWa2WxrKK8LdDF7DzrAITlGl9VeoeE/l0WJbw==" - } - }, - "npm:@swc/core-linux-x64-gnu@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-gnu@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-x64-gnu", - "hash": "sha512-/vQSH7ZKOuT1It9GzpJ9UFnsOP/dQr1VLUrKQFBlHp9owIWNb2oUrZdNla+KhljCIIahh0JfQ08sycKeycCNzQ==" - } - }, - "npm:@swc/core-linux-x64-musl@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-musl@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-x64-musl", - "hash": "sha512-C1NUeISJDyMlIk4919bjcpHvjyjzbkjW7v53gUdN41Y4BPlEk7UKcLez7UHMjdMGA/o9721SLqYVp4/NrQErUw==" - } - }, - "npm:@swc/core-win32-arm64-msvc@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-win32-arm64-msvc@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-win32-arm64-msvc", - "hash": "sha512-AE7JKDJ0OsV9LsYGFfYKMTkGNfsy1au4RT5jT1rxr5MTOsmMD7P2mgiRF8drgc1WX3uOJbTHQfgdVTYroAGfdA==" - } - }, - "npm:@swc/core-win32-ia32-msvc@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-win32-ia32-msvc@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-win32-ia32-msvc", - "hash": "sha512-2V+5uvisaTPXd5lvTujNLNlEC2LPo07gEUQVGdKGsbhtLAYAggVXBnHjxU1TkuyA6NlciMS59tPKW+L2u2KpTw==" - } - }, - "npm:@swc/core-win32-x64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-x64-msvc", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-win32-x64-msvc", - "hash": "sha512-2Xak7TidlRuNQamLZC3fEOdUCmMiBzD2BW8+Dnn29f4odzamgAFfeYJ/PnqN7jdTWOINLn95tex4JBm3Pm11HQ==" - } - }, - "npm:@swc/core": { - "type": "npm", - "name": "npm:@swc/core", - "data": { - "version": "1.3.87", - "packageName": "@swc/core", - "hash": "sha512-u33Mi/EBvb+g/xpYKyxODB5XvKYqISmy81J+lhFS/Oahja0PbJWZdKEGwSQEFvBecp6E+PfaTOLPOoF1EWcRrw==" - } - }, - "npm:@swc/helpers": { - "type": "npm", - "name": "npm:@swc/helpers", - "data": { - "version": "0.5.1", - "packageName": "@swc/helpers", - "hash": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==" - } - }, - "npm:@swc/types": { - "type": "npm", - "name": "npm:@swc/types", - "data": { - "version": "0.1.5", - "packageName": "@swc/types", - "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" - } - }, - "npm:@szmarczak/http-timer": { - "type": "npm", - "name": "npm:@szmarczak/http-timer", - "data": { - "version": "4.0.5", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==" - } - }, - "npm:@szmarczak/http-timer@5.0.1": { - "type": "npm", - "name": "npm:@szmarczak/http-timer@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==" - } - }, - "npm:@testing-library/dom": { - "type": "npm", - "name": "npm:@testing-library/dom", - "data": { - "version": "8.11.3", - "packageName": "@testing-library/dom", - "hash": "sha512-9LId28I+lx70wUiZjLvi1DB/WT2zGOxUh46glrSNMaWVx849kKAluezVzZrXJfTKKoQTmEOutLes/bHg4Bj3aA==" - } - }, - "npm:@testing-library/dom@7.22.3": { - "type": "npm", - "name": "npm:@testing-library/dom@7.22.3", - "data": { - "version": "7.22.3", - "packageName": "@testing-library/dom", - "hash": "sha512-IK6/eL1Xza/0goDKrwnBvlM06L+5eL9b1o+hUhX7HslfUvMETh0TYgXEr2LVpsVkHiOhRmUbUyml95KV/VlRNw==" - } - }, - "npm:@testing-library/jest-dom": { - "type": "npm", - "name": "npm:@testing-library/jest-dom", - "data": { - "version": "5.16.5", - "packageName": "@testing-library/jest-dom", - "hash": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==" - } - }, - "npm:@testing-library/react-hooks": { - "type": "npm", - "name": "npm:@testing-library/react-hooks", - "data": { - "version": "7.0.2", - "packageName": "@testing-library/react-hooks", - "hash": "sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==" - } - }, - "npm:@testing-library/react": { - "type": "npm", - "name": "npm:@testing-library/react", - "data": { - "version": "12.1.2", - "packageName": "@testing-library/react", - "hash": "sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g==" - } - }, - "npm:@testing-library/user-event": { - "type": "npm", - "name": "npm:@testing-library/user-event", - "data": { - "version": "13.5.0", - "packageName": "@testing-library/user-event", - "hash": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==" - } - }, - "npm:@textlint/ast-node-types": { - "type": "npm", - "name": "npm:@textlint/ast-node-types", - "data": { - "version": "4.4.3", - "packageName": "@textlint/ast-node-types", - "hash": "sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==" - } - }, - "npm:@textlint/markdown-to-ast": { - "type": "npm", - "name": "npm:@textlint/markdown-to-ast", - "data": { - "version": "6.1.7", - "packageName": "@textlint/markdown-to-ast", - "hash": "sha512-B0QtokeQR4a9+4q0NQr8T9l7A1fFihTN5Ze57tVgqW+3ymzXEouh8DvPHeNQ4T6jEkAThvdjk95mxAMpGRJ79w==" - } - }, - "npm:@tokenizer/token": { - "type": "npm", - "name": "npm:@tokenizer/token", - "data": { - "version": "0.3.0", - "packageName": "@tokenizer/token", - "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - } - }, - "npm:@tootallnate/once@1.1.2": { - "type": "npm", - "name": "npm:@tootallnate/once@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "@tootallnate/once", - "hash": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" - } - }, - "npm:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "npm:@ts-morph/common": { - "type": "npm", - "name": "npm:@ts-morph/common", - "data": { - "version": "0.8.1", - "packageName": "@ts-morph/common", - "hash": "sha512-3TC91LfCKCNCW7zYpegoMnMa9VigXtZHQererUM9pCvZKN3ust3ioLA0kfX+UHSzIGln+UYYiRzfOsv0QoiUng==" - } - }, - "npm:@tsconfig/node10": { - "type": "npm", - "name": "npm:@tsconfig/node10", - "data": { - "version": "1.0.9", - "packageName": "@tsconfig/node10", - "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" - } - }, - "npm:@tsconfig/node12": { - "type": "npm", - "name": "npm:@tsconfig/node12", - "data": { - "version": "1.0.11", - "packageName": "@tsconfig/node12", - "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - } - }, - "npm:@tsconfig/node14": { - "type": "npm", - "name": "npm:@tsconfig/node14", - "data": { - "version": "1.0.3", - "packageName": "@tsconfig/node14", - "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - } - }, - "npm:@tsconfig/node16": { - "type": "npm", - "name": "npm:@tsconfig/node16", - "data": { - "version": "1.0.3", - "packageName": "@tsconfig/node16", - "hash": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==" - } - }, - "npm:@tufjs/canonical-json": { - "type": "npm", - "name": "npm:@tufjs/canonical-json", - "data": { - "version": "1.0.0", - "packageName": "@tufjs/canonical-json", - "hash": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==" - } - }, - "npm:@tufjs/models": { - "type": "npm", - "name": "npm:@tufjs/models", - "data": { - "version": "1.0.4", - "packageName": "@tufjs/models", - "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" - } - }, - "npm:@types/argparse": { - "type": "npm", - "name": "npm:@types/argparse", - "data": { - "version": "1.0.38", - "packageName": "@types/argparse", - "hash": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==" - } - }, - "npm:@types/aria-query": { - "type": "npm", - "name": "npm:@types/aria-query", - "data": { - "version": "4.2.1", - "packageName": "@types/aria-query", - "hash": "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==" - } - }, - "npm:@types/babel-plugin-tester": { - "type": "npm", - "name": "npm:@types/babel-plugin-tester", - "data": { - "version": "9.0.5", - "packageName": "@types/babel-plugin-tester", - "hash": "sha512-NRBPlhi5VkrTXMqDB1hSUnHs7vqLGRopeukC9u1zilOIFe9O1siwqeKZRiuJiVYakgpeDso/HE2Q5DU1aDqBog==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.3", - "packageName": "@types/babel__core", - "hash": "sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.6.4", - "packageName": "@types/babel__generator", - "hash": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==" - } - }, - "npm:@types/babel__helper-plugin-utils": { - "type": "npm", - "name": "npm:@types/babel__helper-plugin-utils", - "data": { - "version": "7.10.2", - "packageName": "@types/babel__helper-plugin-utils", - "hash": "sha512-Sa17cG0SKMedlH5bEozh0eXo/54iWpSxbxCoqknRJY0oGGTwO9/SCfIx1taDnG0dvkJnYW+/7tv+PTSFaQsRNA==" - } - }, - "npm:@types/babel__register": { - "type": "npm", - "name": "npm:@types/babel__register", - "data": { - "version": "7.17.2", - "packageName": "@types/babel__register", - "hash": "sha512-vtX15ukwrteTilZGP2/qAKKQcydKHUSioiIVItmKQZAwGwTOH0ZFfJ2L4kei/lq6EmwBuYooipl+5bh5gtmQgQ==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.0.2", - "packageName": "@types/babel__template", - "hash": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.20.3", - "packageName": "@types/babel__traverse", - "hash": "sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.17.1", - "packageName": "@types/body-parser", - "hash": "sha512-RoX2EZjMiFMjZh9lmYrwgoP9RTpAjSHiJxdp4oidAQVO02T7HER3xj9UKue5534ULWeqVEkujhWcyvUce+d68w==" - } - }, - "npm:@types/bonjour": { - "type": "npm", - "name": "npm:@types/bonjour", - "data": { - "version": "3.5.10", - "packageName": "@types/bonjour", - "hash": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" - } - }, - "npm:@types/braces": { - "type": "npm", - "name": "npm:@types/braces", - "data": { - "version": "3.0.1", - "packageName": "@types/braces", - "hash": "sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==" - } - }, - "npm:@types/cacheable-request": { - "type": "npm", - "name": "npm:@types/cacheable-request", - "data": { - "version": "6.0.2", - "packageName": "@types/cacheable-request", - "hash": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==" - } - }, - "npm:@types/caseless": { - "type": "npm", - "name": "npm:@types/caseless", - "data": { - "version": "0.12.2", - "packageName": "@types/caseless", - "hash": "sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w==" - } - }, - "npm:@types/chai-spies": { - "type": "npm", - "name": "npm:@types/chai-spies", - "data": { - "version": "1.0.3", - "packageName": "@types/chai-spies", - "hash": "sha512-RBZjhVuK7vrg4rWMt04UF5zHYwfHnpk5mIWu3nQvU3AKGDixXzSjZ6v0zke6pBcaJqMv3IBZ5ibLWPMRDL0sLw==" - } - }, - "npm:@types/chai": { - "type": "npm", - "name": "npm:@types/chai", - "data": { - "version": "4.3.3", - "packageName": "@types/chai", - "hash": "sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==" - } - }, - "npm:@types/cheerio": { - "type": "npm", - "name": "npm:@types/cheerio", - "data": { - "version": "0.22.31", - "packageName": "@types/cheerio", - "hash": "sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw==" - } - }, - "npm:@types/chrome-remote-interface": { - "type": "npm", - "name": "npm:@types/chrome-remote-interface", - "data": { - "version": "0.30.0", - "packageName": "@types/chrome-remote-interface", - "hash": "sha512-j7LCipaiuft35hJqocb15a+zzL2/h3AaOnWlQin/SbVVj0i+I/dhgpJJmRsJFV6XtlkMyySI3WFOBvpYC7xhpg==" - } - }, - "npm:@types/circular-dependency-plugin": { - "type": "npm", - "name": "npm:@types/circular-dependency-plugin", - "data": { - "version": "5.0.5", - "packageName": "@types/circular-dependency-plugin", - "hash": "sha512-JU1sYQWNbUluWHseLUfokakx18+BXRA9Bxji56hdY5NW0nvrJSJd4SNAl0Btpm5ima9BnUkoGEcW/2PH1QuWQA==" - } - }, - "npm:@types/classnames": { - "type": "npm", - "name": "npm:@types/classnames", - "data": { - "version": "2.2.9", - "packageName": "@types/classnames", - "hash": "sha512-MNl+rT5UmZeilaPxAVs6YaPC2m6aA8rofviZbhbxpPpl61uKodfdQVsBtgJGTqGizEf02oW3tsVe7FYB8kK14A==" - } - }, - "npm:@types/color-check": { - "type": "npm", - "name": "npm:@types/color-check", - "data": { - "version": "0.0.0", - "packageName": "@types/color-check", - "hash": "sha512-ZAm8KesT3hIm6I1vb5EbwD2C4f5XYawZjpE1UGlpfbMFOmLtBpYcZP0duGnsZY/6wzvw1y8MTofRqFzpzU2uOg==" - } - }, - "npm:@types/color-convert": { - "type": "npm", - "name": "npm:@types/color-convert", - "data": { - "version": "1.9.0", - "packageName": "@types/color-convert", - "hash": "sha512-OKGEfULrvSL2VRbkl/gnjjgbbF7ycIlpSsX7Nkab4MOWi5XxmgBYvuiQ7lcCFY5cPDz7MUNaKgxte2VRmtr4Fg==" - } - }, - "npm:@types/color-name": { - "type": "npm", - "name": "npm:@types/color-name", - "data": { - "version": "1.1.1", - "packageName": "@types/color-name", - "hash": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" - } - }, - "npm:@types/color": { - "type": "npm", - "name": "npm:@types/color", - "data": { - "version": "3.0.1", - "packageName": "@types/color", - "hash": "sha512-oeUWVaAwI+xINDUx+3F2vJkl/vVB03VChFF/Gl3iQCdbcakjuoJyMOba+3BXRtnBhxZ7uBYqQBi9EpLnvSoztA==" - } - }, - "npm:@types/component-emitter": { - "type": "npm", - "name": "npm:@types/component-emitter", - "data": { - "version": "1.2.11", - "packageName": "@types/component-emitter", - "hash": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==" - } - }, - "npm:@types/connect-history-api-fallback": { - "type": "npm", - "name": "npm:@types/connect-history-api-fallback", - "data": { - "version": "1.3.5", - "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.33", - "packageName": "@types/connect", - "hash": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==" - } - }, - "npm:@types/cookie": { - "type": "npm", - "name": "npm:@types/cookie", - "data": { - "version": "0.4.1", - "packageName": "@types/cookie", - "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" - } - }, - "npm:@types/copy-webpack-plugin": { - "type": "npm", - "name": "npm:@types/copy-webpack-plugin", - "data": { - "version": "6.4.0", - "packageName": "@types/copy-webpack-plugin", - "hash": "sha512-f5mQG5c7xH3zLGrEmKgzLLFSGNB7Y4+4a+a1X4DvjgfbTEWEZUNNXUqGs5tBVCtb5qKPzm2z+6ixX3xirWmOCg==" - } - }, - "npm:@types/cors": { - "type": "npm", - "name": "npm:@types/cors", - "data": { - "version": "2.8.13", - "packageName": "@types/cors", - "hash": "sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==" - } - }, - "npm:@types/d3-array": { - "type": "npm", - "name": "npm:@types/d3-array", - "data": { - "version": "2.12.1", - "packageName": "@types/d3-array", - "hash": "sha512-kVHqB3kfLpU0WYEmx5Y2hi3LRhUGIEIQXFdGazNNWQhyhzHx8xrgLtpAOKYzpfS3a+GjFMdKsI82QUH4q5dACQ==" - } - }, - "npm:@types/d3-axis": { - "type": "npm", - "name": "npm:@types/d3-axis", - "data": { - "version": "1.0.10", - "packageName": "@types/d3-axis", - "hash": "sha512-5YF0wfdQMPKw01VAAupLIlg/T4pn5M3/vL9u0KZjiemnVnnKBEWE24na4X1iW+TfZiYJ8j+BgK2KFYnAAT54Ug==" - } - }, - "npm:@types/d3-dsv": { - "type": "npm", - "name": "npm:@types/d3-dsv", - "data": { - "version": "3.0.0", - "packageName": "@types/d3-dsv", - "hash": "sha512-o0/7RlMl9p5n6FQDptuJVMxDf/7EDEv2SYEO/CwdG2tr1hTfUVi0Iavkk2ax+VpaQ/1jVhpnj5rq1nj8vwhn2A==" - } - }, - "npm:@types/d3-fetch": { - "type": "npm", - "name": "npm:@types/d3-fetch", - "data": { - "version": "3.0.1", - "packageName": "@types/d3-fetch", - "hash": "sha512-toZJNOwrOIqz7Oh6Q7l2zkaNfXkfR7mFSJvGvlD/Ciq/+SQ39d5gynHJZ/0fjt83ec3WL7+u3ssqIijQtBISsw==" - } - }, - "npm:@types/d3-format": { - "type": "npm", - "name": "npm:@types/d3-format", - "data": { - "version": "1.3.1", - "packageName": "@types/d3-format", - "hash": "sha512-KAWvReOKMDreaAwOjdfQMm0HjcUMlQG47GwqdVKgmm20vTd2pucj0a70c3gUSHrnsmo6H2AMrkBsZU2UhJLq8A==" - } - }, - "npm:@types/d3-hierarchy": { - "type": "npm", - "name": "npm:@types/d3-hierarchy", - "data": { - "version": "2.0.0", - "packageName": "@types/d3-hierarchy", - "hash": "sha512-YxdskUvwzqggpnSnDQj4KVkicgjpkgXn/g/9M9iGsiToLS3nG6Ytjo1FoYhYVAAElV/fJBGVL3cQ9Hb7tcv+lw==" - } - }, - "npm:@types/d3-path": { - "type": "npm", - "name": "npm:@types/d3-path", - "data": { - "version": "1.0.9", - "packageName": "@types/d3-path", - "hash": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" - } - }, - "npm:@types/d3-sankey": { - "type": "npm", - "name": "npm:@types/d3-sankey", - "data": { - "version": "0.11.2", - "packageName": "@types/d3-sankey", - "hash": "sha512-U6SrTWUERSlOhnpSrgvMX64WblX1AxX6nEjI2t3mLK2USpQrnbwYYK+AS9SwiE7wgYmOsSSKoSdr8aoKBH0HgQ==" - } - }, - "npm:@types/d3-scale": { - "type": "npm", - "name": "npm:@types/d3-scale", - "data": { - "version": "4.0.2", - "packageName": "@types/d3-scale", - "hash": "sha512-Yk4htunhPAwN0XGlIwArRomOjdoBFXC3+kCxK2Ubg7I9shQlVSJy/pG/Ht5ASN+gdMIalpk8TJ5xV74jFsetLA==" - } - }, - "npm:@types/d3-selection": { - "type": "npm", - "name": "npm:@types/d3-selection", - "data": { - "version": "1.4.1", - "packageName": "@types/d3-selection", - "hash": "sha512-bv8IfFYo/xG6dxri9OwDnK3yCagYPeRIjTlrcdYJSx+FDWlCeBDepIHUpqROmhPtZ53jyna0aUajZRk0I3rXNA==" - } - }, - "npm:@types/d3-shape": { - "type": "npm", - "name": "npm:@types/d3-shape", - "data": { - "version": "3.1.1", - "packageName": "@types/d3-shape", - "hash": "sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==" - } - }, - "npm:@types/d3-shape@1.3.8": { - "type": "npm", - "name": "npm:@types/d3-shape@1.3.8", - "data": { - "version": "1.3.8", - "packageName": "@types/d3-shape", - "hash": "sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==" - } - }, - "npm:@types/d3-time-format": { - "type": "npm", - "name": "npm:@types/d3-time-format", - "data": { - "version": "3.0.4", - "packageName": "@types/d3-time-format", - "hash": "sha512-or9DiDnYI1h38J9hxKEsw513+KVuFbEVhl7qdxcaudoiqWWepapUen+2vAriFGexr6W5+P4l9+HJrB39GG+oRg==" - } - }, - "npm:@types/d3-time": { - "type": "npm", - "name": "npm:@types/d3-time", - "data": { - "version": "2.1.3", - "packageName": "@types/d3-time", - "hash": "sha512-9EOa1kDZ1f8v6C5Mepz5YpWrVikrywGTQQ6QaYiVonrN6Chmmji2/XEVF38gn4uId3f2j85Uod14OKsv7ITOhw==" - } - }, - "npm:@types/dedent": { - "type": "npm", - "name": "npm:@types/dedent", - "data": { - "version": "0.7.0", - "packageName": "@types/dedent", - "hash": "sha512-EGlKlgMhnLt/cM4DbUSafFdrkeJoC9Mvnj0PUCU7tFmTjMjNRT957kXCx0wYm3JuEq4o4ZsS5vG+NlkM2DMd2A==" - } - }, - "npm:@types/deep-assign": { - "type": "npm", - "name": "npm:@types/deep-assign", - "data": { - "version": "0.1.1", - "packageName": "@types/deep-assign", - "hash": "sha512-88jktQ7RJ96bJ4S8I2oeRylMXGeaZt/QBG0k8PiQ5UXCIliUQm0Pzlv3zcN1ZvEIuaLBgMkP0ynr8fAkwChgOQ==" - } - }, - "npm:@types/doctrine": { - "type": "npm", - "name": "npm:@types/doctrine", - "data": { - "version": "0.0.5", - "packageName": "@types/doctrine", - "hash": "sha512-JJwEeFy8Sl9ctiugU4h4DGN9hCB47oyhUkM2H8g8xZr4tHTEXtmV4U6krKrU8Ng0S7RlG/J7fkta1rGu3pq+YQ==" - } - }, - "npm:@types/ejs": { - "type": "npm", - "name": "npm:@types/ejs", - "data": { - "version": "3.1.2", - "packageName": "@types/ejs", - "hash": "sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==" - } - }, - "npm:@types/enzyme": { - "type": "npm", - "name": "npm:@types/enzyme", - "data": { - "version": "3.10.7", - "packageName": "@types/enzyme", - "hash": "sha512-J+0wduPGAkzOvW7sr6hshGv1gBI3WXLRTczkRKzVPxLP3xAkYxZmvvagSBPw8Z452fZ8TGUxCmAXcb44yLQksw==" - } - }, - "npm:@types/eslint-scope": { - "type": "npm", - "name": "npm:@types/eslint-scope", - "data": { - "version": "3.7.3", - "packageName": "@types/eslint-scope", - "hash": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "7.2.13", - "packageName": "@types/eslint", - "hash": "sha512-LKmQCWAlnVHvvXq4oasNUMTJJb2GwSyTY8+1C7OH5ILR8mPLaljv1jxL1bXW3xB3jFbQxTKxJAvI8PyjB09aBg==" - } - }, - "npm:@types/esquery": { - "type": "npm", - "name": "npm:@types/esquery", - "data": { - "version": "1.5.0", - "packageName": "@types/esquery", - "hash": "sha512-MNQ5gCt3j1idWHlj/dEF+WPS1kl6Woe0Agzwy96JvrwDQdDadqeIBhY7mUca51CCUzxf7BsnXzcyKi6ENpEtmQ==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.1", - "packageName": "@types/estree", - "hash": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" - } - }, - "npm:@types/estree@0.0.39": { - "type": "npm", - "name": "npm:@types/estree@0.0.39", - "data": { - "version": "0.0.39", - "packageName": "@types/estree", - "hash": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" - } - }, - "npm:@types/estree@0.0.51": { - "type": "npm", - "name": "npm:@types/estree@0.0.51", - "data": { - "version": "0.0.51", - "packageName": "@types/estree", - "hash": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - } - }, - "npm:@types/events": { - "type": "npm", - "name": "npm:@types/events", - "data": { - "version": "3.0.0", - "packageName": "@types/events", - "hash": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" - } - }, - "npm:@types/execa": { - "type": "npm", - "name": "npm:@types/execa", - "data": { - "version": "0.9.0", - "packageName": "@types/execa", - "hash": "sha512-mgfd93RhzjYBUHHV532turHC2j4l/qxsF/PbfDmprHDEUHmNZGlDn1CEsulGK3AfsPdhkWzZQT/S/k0UGhLGsA==" - } - }, - "npm:@types/expect": { - "type": "npm", - "name": "npm:@types/expect", - "data": { - "version": "1.20.4", - "packageName": "@types/expect", - "hash": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "4.17.31", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "4.17.15", - "packageName": "@types/express", - "hash": "sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==" - } - }, - "npm:@types/faker": { - "type": "npm", - "name": "npm:@types/faker", - "data": { - "version": "4.1.9", - "packageName": "@types/faker", - "hash": "sha512-4ZFqA3CEXB6MgT8sDV8E5LhW+O9ndONsHeQXMbEwfOsjoQ4UXKqTJKru+BjDBUfobYEpQz1WYF9/uzQsvbY2wA==" - } - }, - "npm:@types/fs-extra": { - "type": "npm", - "name": "npm:@types/fs-extra", - "data": { - "version": "8.0.1", - "packageName": "@types/fs-extra", - "hash": "sha512-J00cVDALmi/hJOYsunyT52Hva5TnJeKP5yd1r+mH/ZU0mbYZflR0Z5kw5kITtKTRYMhm1JMClOFYdHnQszEvqw==" - } - }, - "npm:@types/glob-stream": { - "type": "npm", - "name": "npm:@types/glob-stream", - "data": { - "version": "6.1.0", - "packageName": "@types/glob-stream", - "hash": "sha512-RHv6ZQjcTncXo3thYZrsbAVwoy4vSKosSWhuhuQxLOTv74OJuFQxXkmUuZCr3q9uNBEVCvIzmZL/FeRNbHZGUg==" - } - }, - "npm:@types/glob": { - "type": "npm", - "name": "npm:@types/glob", - "data": { - "version": "7.1.1", - "packageName": "@types/glob", - "hash": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==" - } - }, - "npm:@types/globby": { - "type": "npm", - "name": "npm:@types/globby", - "data": { - "version": "9.1.0", - "packageName": "@types/globby", - "hash": "sha512-9du/HCA71EBz7syHRnM4Q/u4Fbx3SyN/Uu+4Of9lyPX4A6Xi+A8VMxvx8j5/CMTfrae2Zwdwg0fAaKvKXfRbAw==" - } - }, - "npm:@types/graceful-fs": { - "type": "npm", - "name": "npm:@types/graceful-fs", - "data": { - "version": "4.1.6", - "packageName": "@types/graceful-fs", - "hash": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==" - } - }, - "npm:@types/graphviz": { - "type": "npm", - "name": "npm:@types/graphviz", - "data": { - "version": "0.0.34", - "packageName": "@types/graphviz", - "hash": "sha512-5pyobgT+/NhwKy/LMLw14xFInvYXBPx4ITc2a5FvZbm6hcudcP73DpTKTlaZbjr8fdNAkaK9KdP8GAEF0iBwlQ==" - } - }, - "npm:@types/gulp-babel": { - "type": "npm", - "name": "npm:@types/gulp-babel", - "data": { - "version": "6.1.32", - "packageName": "@types/gulp-babel", - "hash": "sha512-vonKyjPvqmVwJE85g2nnJ9UHND+R2snIXP/7mqMuHumHNTORHGLiqBUbbixlcKqurvWe5zJkZrZWeLiGT8L5yg==" - } - }, - "npm:@types/gulp-cache": { - "type": "npm", - "name": "npm:@types/gulp-cache", - "data": { - "version": "0.4.5", - "packageName": "@types/gulp-cache", - "hash": "sha512-VUG4CILSTCrL6VV+6ZD7jxZN4kWkmd74h+fAw1gq9+t8gtBEMUHMBICOmmkMAOM+itsQDOlZC3AzUeUAcLw07w==" - } - }, - "npm:@types/gulp-remember": { - "type": "npm", - "name": "npm:@types/gulp-remember", - "data": { - "version": "0.0.31", - "packageName": "@types/gulp-remember", - "hash": "sha512-pULOyv3Nr3TCIqbrr0ecTkFn5iIPRoQIkvljYMJUIdfwN8JPbEdMemzt2XOlvqJ6xj5cxCVgFqv5zkWjQ3AVZw==" - } - }, - "npm:@types/gulp-sourcemaps": { - "type": "npm", - "name": "npm:@types/gulp-sourcemaps", - "data": { - "version": "0.0.35", - "packageName": "@types/gulp-sourcemaps", - "hash": "sha512-vUBuizwA4CAV3Mke0DJYHQxyN4YOB1aAql284qAO7Et7fe0hmnPi/R9Fhu2UhxMuSxAwFktsJUOQk5dJHOU1eA==" - } - }, - "npm:@types/gulp-util": { - "type": "npm", - "name": "npm:@types/gulp-util", - "data": { - "version": "3.0.36", - "packageName": "@types/gulp-util", - "hash": "sha512-hR3troWx2qr8Hx2xXSn0SijTG83WRPNgWS5/h0OtN4Eyqxi3KW1ptLp+zxnO8Z7DCZj0Ij5SSgYBHACMES4VCg==" - } - }, - "npm:@types/gulp": { - "type": "npm", - "name": "npm:@types/gulp", - "data": { - "version": "4.0.9", - "packageName": "@types/gulp", - "hash": "sha512-zzT+wfQ8uwoXjDhRK9Zkmmk09/fbLLmN/yDHFizJiEKIve85qutOnXcP/TM2sKPBTU+Jc16vfPbOMkORMUBN7Q==" - } - }, - "npm:@types/handlebars": { - "type": "npm", - "name": "npm:@types/handlebars", - "data": { - "version": "4.1.0", - "packageName": "@types/handlebars", - "hash": "sha512-gq9YweFKNNB1uFK71eRqsd4niVkXrxHugqWFQkeLRJvGjnxsLr16bYtcsG4tOFwmYi0Bax+wCkbf1reUfdl4kA==" - } - }, - "npm:@types/hast": { - "type": "npm", - "name": "npm:@types/hast", - "data": { - "version": "2.3.1", - "packageName": "@types/hast", - "hash": "sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==" - } - }, - "npm:@types/history": { - "type": "npm", - "name": "npm:@types/history", - "data": { - "version": "4.7.4", - "packageName": "@types/history", - "hash": "sha512-+o2igcuZA3xtOoFH56s+MCZVidwlJNcJID57DSCyawS2i910yG9vkwehCjJNZ6ImhCR5S9DbvIJKyYHcMyOfMw==" - } - }, - "npm:@types/html-minifier-terser": { - "type": "npm", - "name": "npm:@types/html-minifier-terser", - "data": { - "version": "5.1.0", - "packageName": "@types/html-minifier-terser", - "hash": "sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA==" - } - }, - "npm:@types/http-cache-semantics": { - "type": "npm", - "name": "npm:@types/http-cache-semantics", - "data": { - "version": "4.0.0", - "packageName": "@types/http-cache-semantics", - "hash": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==" - } - }, - "npm:@types/http-proxy": { - "type": "npm", - "name": "npm:@types/http-proxy", - "data": { - "version": "1.17.11", - "packageName": "@types/http-proxy", - "hash": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==" - } - }, - "npm:@types/inquirer": { - "type": "npm", - "name": "npm:@types/inquirer", - "data": { - "version": "6.0.1", - "packageName": "@types/inquirer", - "hash": "sha512-O9rEHE9iBvYaFAGS0fAlDzqY/3CsOrRKzni4zwnAEce2JrHUEbXAce2Pwwe8ZGzmQkucwSXn1tSiKig37INgfA==" - } - }, - "npm:@types/is-function": { - "type": "npm", - "name": "npm:@types/is-function", - "data": { - "version": "1.0.0", - "packageName": "@types/is-function", - "hash": "sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==" - } - }, - "npm:@types/istanbul-lib-coverage": { - "type": "npm", - "name": "npm:@types/istanbul-lib-coverage", - "data": { - "version": "2.0.3", - "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" - } - }, - "npm:@types/istanbul-lib-report": { - "type": "npm", - "name": "npm:@types/istanbul-lib-report", - "data": { - "version": "1.1.1", - "packageName": "@types/istanbul-lib-report", - "hash": "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==" - } - }, - "npm:@types/istanbul-reports@1.1.1": { - "type": "npm", - "name": "npm:@types/istanbul-reports@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "@types/istanbul-reports", - "hash": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==" - } - }, - "npm:@types/istanbul-reports": { - "type": "npm", - "name": "npm:@types/istanbul-reports", - "data": { - "version": "3.0.0", - "packageName": "@types/istanbul-reports", - "hash": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==" - } - }, - "npm:@types/jest-axe": { - "type": "npm", - "name": "npm:@types/jest-axe", - "data": { - "version": "3.5.5", - "packageName": "@types/jest-axe", - "hash": "sha512-b8WDIdoeKtr/JDJ2+QjFXMuS8UhfdMA6+15Z5KjjIie3jQrSXD9KZWMSQxc0nPtx7L9rIFKdiDpQk+m7s4a/8w==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.5.5", - "packageName": "@types/jest", - "hash": "sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==" - } - }, - "npm:@types/jju": { - "type": "npm", - "name": "npm:@types/jju", - "data": { - "version": "1.4.1", - "packageName": "@types/jju", - "hash": "sha512-LFt+YA7Lv2IZROMwokZKiPNORAV5N3huMs3IKnzlE430HWhWYZ8b+78HiwJXJJP1V2IEjinyJURuRJfGoaFSIA==" - } - }, - "npm:@types/jsdom": { - "type": "npm", - "name": "npm:@types/jsdom", - "data": { - "version": "20.0.1", - "packageName": "@types/jsdom", - "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.10", - "packageName": "@types/json-schema", - "hash": "sha512-BLO9bBq59vW3fxCpD4o0N4U+DXsvwvIcl+jofw0frQo/GrBFC+/jRZj1E7kgp6dvTyNmA4y6JCV5Id/r3mNP5A==" - } - }, - "npm:@types/json5": { - "type": "npm", - "name": "npm:@types/json5", - "data": { - "version": "0.0.29", - "packageName": "@types/json5", - "hash": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" - } - }, - "npm:@types/karma": { - "type": "npm", - "name": "npm:@types/karma", - "data": { - "version": "6.3.3", - "packageName": "@types/karma", - "hash": "sha512-nRMec4mTCt+tkpRqh5/pAxmnjzEgAaalIq7mdfLFH88gSRC8+bxejLiSjHMMT/vHIhJHqg4GPIGCnCFbwvDRww==" - } - }, - "npm:@types/keyv": { - "type": "npm", - "name": "npm:@types/keyv", - "data": { - "version": "3.1.1", - "packageName": "@types/keyv", - "hash": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==" - } - }, - "npm:@types/lerna-alias": { - "type": "npm", - "name": "npm:@types/lerna-alias", - "data": { - "version": "3.0.0", - "packageName": "@types/lerna-alias", - "hash": "sha512-EfwEzSWxAxrZgUJT5sECi4RPFCIgOm/K9e5EWXp2hR9H6wzV1QIBgjGtGEl/OpOCcglNWzmqrVRX/qjvNwli9Q==" - } - }, - "npm:@types/loader-utils": { - "type": "npm", - "name": "npm:@types/loader-utils", - "data": { - "version": "2.0.3", - "packageName": "@types/loader-utils", - "hash": "sha512-sDXXzZnTLXgdso54/iOpAFSDgqhVXabCvwGAt77Agadh/Xk0QYgOk520r3tpOouI098gyqGIFywx8Op1voc3vQ==" - } - }, - "npm:@types/lodash": { - "type": "npm", - "name": "npm:@types/lodash", - "data": { - "version": "4.14.182", - "packageName": "@types/lodash", - "hash": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" - } - }, - "npm:@types/markdown-table": { - "type": "npm", - "name": "npm:@types/markdown-table", - "data": { - "version": "2.0.0", - "packageName": "@types/markdown-table", - "hash": "sha512-fVZN/DRjZvjuk+lo7ovlI/ZycS51gpYU5vw5EcFeqkcX6lucQ+UWgEOH2O4KJHkSck4DHAY7D7CkVLD0wzc5qw==" - } - }, - "npm:@types/mdast": { - "type": "npm", - "name": "npm:@types/mdast", - "data": { - "version": "3.0.7", - "packageName": "@types/mdast", - "hash": "sha512-YwR7OK8aPmaBvMMUi+pZXBNoW2unbVbfok4YRqGMJBe1dpDlzpRkJrYEYmvjxgs5JhuQmKfDexrN98u941Zasg==" - } - }, - "npm:@types/micromatch": { - "type": "npm", - "name": "npm:@types/micromatch", - "data": { - "version": "4.0.2", - "packageName": "@types/micromatch", - "hash": "sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==" - } - }, - "npm:@types/mime": { - "type": "npm", - "name": "npm:@types/mime", - "data": { - "version": "2.0.1", - "packageName": "@types/mime", - "hash": "sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw==" - } - }, - "npm:@types/minimatch": { - "type": "npm", - "name": "npm:@types/minimatch", - "data": { - "version": "3.0.3", - "packageName": "@types/minimatch", - "hash": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" - } - }, - "npm:@types/minimist": { - "type": "npm", - "name": "npm:@types/minimist", - "data": { - "version": "1.2.1", - "packageName": "@types/minimist", - "hash": "sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==" - } - }, - "npm:@types/mocha": { - "type": "npm", - "name": "npm:@types/mocha", - "data": { - "version": "7.0.2", - "packageName": "@types/mocha", - "hash": "sha512-ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w==" - } - }, - "npm:@types/node-fetch": { - "type": "npm", - "name": "npm:@types/node-fetch", - "data": { - "version": "2.5.7", - "packageName": "@types/node-fetch", - "hash": "sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==" - } - }, - "npm:@types/node@14.18.32": { - "type": "npm", - "name": "npm:@types/node@14.18.32", - "data": { - "version": "14.18.32", - "packageName": "@types/node", - "hash": "sha512-Y6S38pFr04yb13qqHf8uk1nHE3lXgQ30WZbv1mLliV9pt0NjvqdWttLcrOYLnXbOafknVYRHZGoMSpR9UwfYow==" - } - }, - "npm:@types/node@12.20.24": { - "type": "npm", - "name": "npm:@types/node@12.20.24", - "data": { - "version": "12.20.24", - "packageName": "@types/node", - "hash": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "18.18.6", - "packageName": "@types/node", - "hash": "sha512-wf3Vz+jCmOQ2HV1YUJuCWdL64adYxumkrxtc+H1VUQlnQI04+5HtH+qZCOE21lBE7gIrt+CwX2Wv8Acrw5Ak6w==" - } - }, - "npm:@types/node@10.17.13": { - "type": "npm", - "name": "npm:@types/node@10.17.13", - "data": { - "version": "10.17.13", - "packageName": "@types/node", - "hash": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==" - } - }, - "npm:@types/node@11.15.54": { - "type": "npm", - "name": "npm:@types/node@11.15.54", - "data": { - "version": "11.15.54", - "packageName": "@types/node", - "hash": "sha512-1RWYiq+5UfozGsU6MwJyFX6BtktcT10XRjvcAQmskCtMcW3tPske88lM/nHv7BQG1w9KBXI1zPGuu5PnNCX14g==" - } - }, - "npm:@types/normalize-package-data": { - "type": "npm", - "name": "npm:@types/normalize-package-data", - "data": { - "version": "2.4.0", - "packageName": "@types/normalize-package-data", - "hash": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" - } - }, - "npm:@types/npmlog": { - "type": "npm", - "name": "npm:@types/npmlog", - "data": { - "version": "4.1.2", - "packageName": "@types/npmlog", - "hash": "sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==" - } - }, - "npm:@types/pako": { - "type": "npm", - "name": "npm:@types/pako", - "data": { - "version": "1.0.4", - "packageName": "@types/pako", - "hash": "sha512-Z+5bJSm28EXBSUJEgx29ioWeEEHUh6TiMkZHDhLwjc9wVFH+ressbkmX6waUZc5R3Gobn4Qu5llGxaoflZ+yhA==" - } - }, - "npm:@types/parse-json": { - "type": "npm", - "name": "npm:@types/parse-json", - "data": { - "version": "4.0.0", - "packageName": "@types/parse-json", - "hash": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - } - }, - "npm:@types/parse5": { - "type": "npm", - "name": "npm:@types/parse5", - "data": { - "version": "5.0.3", - "packageName": "@types/parse5", - "hash": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" - } - }, - "npm:@types/prettier": { - "type": "npm", - "name": "npm:@types/prettier", - "data": { - "version": "2.7.2", - "packageName": "@types/prettier", - "hash": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==" - } - }, - "npm:@types/pretty-hrtime": { - "type": "npm", - "name": "npm:@types/pretty-hrtime", - "data": { - "version": "1.0.1", - "packageName": "@types/pretty-hrtime", - "hash": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==" - } - }, - "npm:@types/progress": { - "type": "npm", - "name": "npm:@types/progress", - "data": { - "version": "2.0.5", - "packageName": "@types/progress", - "hash": "sha512-ZYYVc/kSMkhH9W/4dNK/sLNra3cnkfT2nJyOAIDY+C2u6w72wa0s1aXAezVtbTsnN8HID1uhXCrLwDE2ZXpplg==" - } - }, - "npm:@types/prompts": { - "type": "npm", - "name": "npm:@types/prompts", - "data": { - "version": "2.4.1", - "packageName": "@types/prompts", - "hash": "sha512-1Mqzhzi9W5KlooNE4o0JwSXGUDeQXKldbGn9NO4tpxwZbHXYd+WcKpCksG2lbhH7U9I9LigfsdVsP2QAY0lNPA==" - } - }, - "npm:@types/prop-types": { - "type": "npm", - "name": "npm:@types/prop-types", - "data": { - "version": "15.7.1", - "packageName": "@types/prop-types", - "hash": "sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.9.7", - "packageName": "@types/qs", - "hash": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.3", - "packageName": "@types/range-parser", - "hash": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" - } - }, - "npm:@types/react-addons-test-utils": { - "type": "npm", - "name": "npm:@types/react-addons-test-utils", - "data": { - "version": "0.14.18", - "packageName": "@types/react-addons-test-utils", - "hash": "sha1-g+EK8dvl7CU1vC3FNz17w7gv3uE=" - } - }, - "npm:@types/react-custom-scrollbars": { - "type": "npm", - "name": "npm:@types/react-custom-scrollbars", - "data": { - "version": "4.0.5", - "packageName": "@types/react-custom-scrollbars", - "hash": "sha512-Qdotjy9wbf9nrNRzGj0bFDlhYIvjMxwrxHR0V1zUSc2cqb74a8ujLWTfIQ6JBSUx+3hY74+tHgEOthRJLEMyKw==" - } - }, - "npm:@types/react-dom": { - "type": "npm", - "name": "npm:@types/react-dom", - "data": { - "version": "17.0.15", - "packageName": "@types/react-dom", - "hash": "sha512-Tr9VU9DvNoHDWlmecmcsE5ZZiUkYx+nKBzum4Oxe1K0yJVyBlfbq7H3eXjxXqJczBKqPGq3EgfTru4MgKb9+Yw==" - } - }, - "npm:@types/react-dom@18.0.6": { - "type": "npm", - "name": "npm:@types/react-dom@18.0.6", - "data": { - "version": "18.0.6", - "packageName": "@types/react-dom", - "hash": "sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==" - } - }, - "npm:@types/react-frame-component": { - "type": "npm", - "name": "npm:@types/react-frame-component", - "data": { - "version": "4.1.1", - "packageName": "@types/react-frame-component", - "hash": "sha512-7soxaTJ030rtC2lFlaFzzJyCY4rsPwOLxfw/eGnbEq/wq80e71outSL6dUXM9bOh2qMhM1xnp+EMEhjdVvIlkA==" - } - }, - "npm:@types/react-is": { - "type": "npm", - "name": "npm:@types/react-is", - "data": { - "version": "17.0.3", - "packageName": "@types/react-is", - "hash": "sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==" - } - }, - "npm:@types/react-router-dom": { - "type": "npm", - "name": "npm:@types/react-router-dom", - "data": { - "version": "5.1.5", - "packageName": "@types/react-router-dom", - "hash": "sha512-ArBM4B1g3BWLGbaGvwBGO75GNFbLDUthrDojV2vHLih/Tq8M+tgvY1DSwkuNrPSwdp/GUL93WSEpTZs8nVyJLw==" - } - }, - "npm:@types/react-router": { - "type": "npm", - "name": "npm:@types/react-router", - "data": { - "version": "5.1.4", - "packageName": "@types/react-router", - "hash": "sha512-PZtnBuyfL07sqCJvGg3z+0+kt6fobc/xmle08jBiezLS8FrmGeiGkJnuxL/8Zgy9L83ypUhniV5atZn/L8n9MQ==" - } - }, - "npm:@types/react-syntax-highlighter": { - "type": "npm", - "name": "npm:@types/react-syntax-highlighter", - "data": { - "version": "10.2.1", - "packageName": "@types/react-syntax-highlighter", - "hash": "sha512-M2BAOiiQ2KDkCiuhO1UxAsSNfrSegUfXL1MabRggOoqJoPpaoSuTxGF+TgLuAjMEVW8dJDtp7WpBjjRLMxWgrQ==" - } - }, - "npm:@types/react-table": { - "type": "npm", - "name": "npm:@types/react-table", - "data": { - "version": "7.0.19", - "packageName": "@types/react-table", - "hash": "sha512-RYyEY7Yry6F2JsKhHeFsGdzuFF1hMqBStQrrazDzpBl4m/ECGHJxFVQjLBRzRwK+47ZKNPm79f7qEpHirbiCLA==" - } - }, - "npm:@types/react-test-renderer": { - "type": "npm", - "name": "npm:@types/react-test-renderer", - "data": { - "version": "17.0.2", - "packageName": "@types/react-test-renderer", - "hash": "sha512-+F1KONQTBHDBBhbHuT2GNydeMpPuviduXIVJRB7Y4nma4NR5DrTJfMMZ+jbhEHbpwL+Uqhs1WXh4KHiyrtYTPg==" - } - }, - "npm:@types/react-transition-group": { - "type": "npm", - "name": "npm:@types/react-transition-group", - "data": { - "version": "4.4.6", - "packageName": "@types/react-transition-group", - "hash": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==" - } - }, - "npm:@types/react-virtualized": { - "type": "npm", - "name": "npm:@types/react-virtualized", - "data": { - "version": "9.21.8", - "packageName": "@types/react-virtualized", - "hash": "sha512-7fZoA0Azd2jLIE9XC37fMZgMqaJe3o3pfzGjvrzphoKjBCdT4oNl6wikvo4dDMESDnpkZ8DvVTc7aSe4DW86Ew==" - } - }, - "npm:@types/react-window": { - "type": "npm", - "name": "npm:@types/react-window", - "data": { - "version": "1.8.2", - "packageName": "@types/react-window", - "hash": "sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==" - } - }, - "npm:@types/react": { - "type": "npm", - "name": "npm:@types/react", - "data": { - "version": "17.0.44", - "packageName": "@types/react", - "hash": "sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==" - } - }, - "npm:@types/react@18.0.14": { - "type": "npm", - "name": "npm:@types/react@18.0.14", - "data": { - "version": "18.0.14", - "packageName": "@types/react", - "hash": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==" - } - }, - "npm:@types/request-promise-native": { - "type": "npm", - "name": "npm:@types/request-promise-native", - "data": { - "version": "1.0.18", - "packageName": "@types/request-promise-native", - "hash": "sha512-tPnODeISFc/c1LjWyLuZUY+Z0uLB3+IMfNoQyDEi395+j6kTFTTRAqjENjoPJUid4vHRGEozoTrcTrfZM+AcbA==" - } - }, - "npm:@types/request": { - "type": "npm", - "name": "npm:@types/request", - "data": { - "version": "2.48.8", - "packageName": "@types/request", - "hash": "sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==" - } - }, - "npm:@types/resolve": { - "type": "npm", - "name": "npm:@types/resolve", - "data": { - "version": "0.0.8", - "packageName": "@types/resolve", - "hash": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==" - } - }, - "npm:@types/responselike": { - "type": "npm", - "name": "npm:@types/responselike", - "data": { - "version": "1.0.0", - "packageName": "@types/responselike", - "hash": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/scheduler": { - "type": "npm", - "name": "npm:@types/scheduler", - "data": { - "version": "0.16.2", - "packageName": "@types/scheduler", - "hash": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" - } - }, - "npm:@types/semver": { - "type": "npm", - "name": "npm:@types/semver", - "data": { - "version": "6.2.3", - "packageName": "@types/semver", - "hash": "sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==" - } - }, - "npm:@types/semver@7.3.13": { - "type": "npm", - "name": "npm:@types/semver@7.3.13", - "data": { - "version": "7.3.13", - "packageName": "@types/semver", - "hash": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" - } - }, - "npm:@types/serve-index": { - "type": "npm", - "name": "npm:@types/serve-index", - "data": { - "version": "1.9.1", - "packageName": "@types/serve-index", - "hash": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "1.15.1", - "packageName": "@types/serve-static", - "hash": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==" - } - }, - "npm:@types/simulant": { - "type": "npm", - "name": "npm:@types/simulant", - "data": { - "version": "0.2.0", - "packageName": "@types/simulant", - "hash": "sha512-pQcnO5/JMR9KEnQGuYkDNQ9IDFAp0nrCfCjxqZ03WY2QDcuMPR6w0VpL6MO5VQEn93YkNCW9nTuRl/q0+iasVg==" - } - }, - "npm:@types/sinonjs__fake-timers": { - "type": "npm", - "name": "npm:@types/sinonjs__fake-timers", - "data": { - "version": "8.1.1", - "packageName": "@types/sinonjs__fake-timers", - "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" - } - }, - "npm:@types/sizzle": { - "type": "npm", - "name": "npm:@types/sizzle", - "data": { - "version": "2.3.2", - "packageName": "@types/sizzle", - "hash": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==" - } - }, - "npm:@types/sockjs": { - "type": "npm", - "name": "npm:@types/sockjs", - "data": { - "version": "0.3.33", - "packageName": "@types/sockjs", - "hash": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" - } - }, - "npm:@types/source-list-map": { - "type": "npm", - "name": "npm:@types/source-list-map", - "data": { - "version": "0.1.2", - "packageName": "@types/source-list-map", - "hash": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "2.0.1", - "packageName": "@types/stack-utils", - "hash": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" - } - }, - "npm:@types/stylis": { - "type": "npm", - "name": "npm:@types/stylis", - "data": { - "version": "4.0.0", - "packageName": "@types/stylis", - "hash": "sha512-DB1wPXVDfTTyLO9tr4wTeAptinTGd+EemFDDJTdCfsLedYXuF1mRWpJtU74Rucqx7N7HecBmMwEERbPpLt1tGA==" - } - }, - "npm:@types/tapable": { - "type": "npm", - "name": "npm:@types/tapable", - "data": { - "version": "1.0.6", - "packageName": "@types/tapable", - "hash": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" - } - }, - "npm:@types/testing-library__jest-dom": { - "type": "npm", - "name": "npm:@types/testing-library__jest-dom", - "data": { - "version": "5.9.5", - "packageName": "@types/testing-library__jest-dom", - "hash": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==" - } - }, - "npm:@types/through2": { - "type": "npm", - "name": "npm:@types/through2", - "data": { - "version": "2.0.34", - "packageName": "@types/through2", - "hash": "sha512-nhRG8+RuG/L+0fAZBQYaRflXKjTrHOKH8MFTChnf+dNVMxA3wHYYrfj0tztK0W51ABXjGfRCDc0vRkecCOrsow==" - } - }, - "npm:@types/through": { - "type": "npm", - "name": "npm:@types/through", - "data": { - "version": "0.0.30", - "packageName": "@types/through", - "hash": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==" - } - }, - "npm:@types/tmp": { - "type": "npm", - "name": "npm:@types/tmp", - "data": { - "version": "0.2.0", - "packageName": "@types/tmp", - "hash": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==" - } - }, - "npm:@types/tough-cookie": { - "type": "npm", - "name": "npm:@types/tough-cookie", - "data": { - "version": "4.0.2", - "packageName": "@types/tough-cookie", - "hash": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==" - } - }, - "npm:@types/tunnel": { - "type": "npm", - "name": "npm:@types/tunnel", - "data": { - "version": "0.0.1", - "packageName": "@types/tunnel", - "hash": "sha512-AOqu6bQu5MSWwYvehMXLukFHnupHrpZ8nvgae5Ggie9UwzDR1CCwoXgSSWNZJuyOlCdfdsWMA5F2LlmvyoTv8A==" - } - }, - "npm:@types/uglify-js": { - "type": "npm", - "name": "npm:@types/uglify-js", - "data": { - "version": "3.17.1", - "packageName": "@types/uglify-js", - "hash": "sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==" - } - }, - "npm:@types/undertaker-registry": { - "type": "npm", - "name": "npm:@types/undertaker-registry", - "data": { - "version": "1.0.1", - "packageName": "@types/undertaker-registry", - "hash": "sha512-Z4TYuEKn9+RbNVk1Ll2SS4x1JeLHecolIbM/a8gveaHsW0Hr+RQMraZACwTO2VD7JvepgA6UO1A1VrbktQrIbQ==" - } - }, - "npm:@types/undertaker": { - "type": "npm", - "name": "npm:@types/undertaker", - "data": { - "version": "1.2.2", - "packageName": "@types/undertaker", - "hash": "sha512-j4iepCSuY2JGW/hShVtUBagic0klYNFIXP7VweavnYnNC2EjiKxJFeaS9uaJmAT0ty9sQSqTS1aagWMZMV0HyA==" - } - }, - "npm:@types/unist": { - "type": "npm", - "name": "npm:@types/unist", - "data": { - "version": "2.0.6", - "packageName": "@types/unist", - "hash": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" - } - }, - "npm:@types/vinyl-fs": { - "type": "npm", - "name": "npm:@types/vinyl-fs", - "data": { - "version": "2.4.11", - "packageName": "@types/vinyl-fs", - "hash": "sha512-2OzQSfIr9CqqWMGqmcERE6Hnd2KY3eBVtFaulVo3sJghplUcaeMdL9ZjEiljcQQeHjheWY9RlNmumjIAvsBNaA==" - } - }, - "npm:@types/vinyl": { - "type": "npm", - "name": "npm:@types/vinyl", - "data": { - "version": "2.0.7", - "packageName": "@types/vinyl", - "hash": "sha512-4UqPv+2567NhMQuMLdKAyK4yzrfCqwaTt6bLhHEs8PFcxbHILsrxaY63n4wgE/BRLDWDQeI+WcTmkXKExh9hQg==" - } - }, - "npm:@types/webpack-bundle-analyzer": { - "type": "npm", - "name": "npm:@types/webpack-bundle-analyzer", - "data": { - "version": "4.4.3", - "packageName": "@types/webpack-bundle-analyzer", - "hash": "sha512-7+4XhCMxc1XyQr2lwAbEEeWTax+FX70xMeskU0WtxrODczoOZXTo9vrYh/XF7pAOn+NxqR4yRKW5gfz1HHNnfw==" - } - }, - "npm:@types/webpack-dev-middleware": { - "type": "npm", - "name": "npm:@types/webpack-dev-middleware", - "data": { - "version": "4.1.0", - "packageName": "@types/webpack-dev-middleware", - "hash": "sha512-cG/RhZcpAmVCQi7sGMc7bFyYGA2Yzu/+pWxTJezs7z2asjGZJ7j+0/+t39AuxQQbEuABWgYAwolg/DysGEcLyA==" - } - }, - "npm:@types/webpack-env": { - "type": "npm", - "name": "npm:@types/webpack-env", - "data": { - "version": "1.16.0", - "packageName": "@types/webpack-env", - "hash": "sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==" - } - }, - "npm:@types/webpack-hot-middleware": { - "type": "npm", - "name": "npm:@types/webpack-hot-middleware", - "data": { - "version": "2.25.6", - "packageName": "@types/webpack-hot-middleware", - "hash": "sha512-1Q9ClNvZR30HIsEAHYQL3bXJK1K7IsrqjGMTfIureFjphsGOZ3TkbeoCupbCmi26pSLjVTPHp+pFrJNpOkBSVg==" - } - }, - "npm:@types/webpack-sources": { - "type": "npm", - "name": "npm:@types/webpack-sources", - "data": { - "version": "0.1.6", - "packageName": "@types/webpack-sources", - "hash": "sha512-FtAWR7wR5ocJ9+nP137DV81tveD/ZgB1sadnJ/axUGM3BUVfRPx8oQNMtv3JNfTeHx3VP7cXiyfR/jmtEsVHsQ==" - } - }, - "npm:@types/webpack": { - "type": "npm", - "name": "npm:@types/webpack", - "data": { - "version": "4.41.30", - "packageName": "@types/webpack", - "hash": "sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA==" - } - }, - "npm:@types/ws": { - "type": "npm", - "name": "npm:@types/ws", - "data": { - "version": "8.5.4", - "packageName": "@types/ws", - "hash": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==" - } - }, - "npm:@types/yargs-parser": { - "type": "npm", - "name": "npm:@types/yargs-parser", - "data": { - "version": "15.0.0", - "packageName": "@types/yargs-parser", - "hash": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" - } - }, - "npm:@types/yargs-unparser": { - "type": "npm", - "name": "npm:@types/yargs-unparser", - "data": { - "version": "2.0.1", - "packageName": "@types/yargs-unparser", - "hash": "sha512-fAnDylacESFJBN4a1J2VnYCl2bTIMkwZ6f3CLCA04x/qCDalGR9aAec89KtS3K4zu05JxjQGn0aRWSPYQJ6zRQ==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "13.0.11", - "packageName": "@types/yargs", - "hash": "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==" - } - }, - "npm:@types/yargs@15.0.13": { - "type": "npm", - "name": "npm:@types/yargs@15.0.13", - "data": { - "version": "15.0.13", - "packageName": "@types/yargs", - "hash": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==" - } - }, - "npm:@types/yargs@17.0.22": { - "type": "npm", - "name": "npm:@types/yargs@17.0.22", - "data": { - "version": "17.0.22", - "packageName": "@types/yargs", - "hash": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==" - } - }, - "npm:@types/yauzl": { - "type": "npm", - "name": "npm:@types/yauzl", - "data": { - "version": "2.9.2", - "packageName": "@types/yauzl", - "hash": "sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==" - } - }, - "npm:@typescript-eslint/experimental-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/experimental-utils", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/experimental-utils", - "hash": "sha512-xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==" - } - }, - "npm:@typescript-eslint/scope-manager@5.59.1": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@5.59.1", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-mau0waO5frJctPuAzcxiNWqJR5Z8V0190FTSqRw1Q4Euop6+zTwHAf8YIXNwDOT29tyUDrQ65jSg9aTU/H0omA==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==" - } - }, - "npm:@typescript-eslint/types@5.59.1": { - "type": "npm", - "name": "npm:@typescript-eslint/types@5.59.1", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/types", - "hash": "sha512-dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==" - } - }, - "npm:@typescript-eslint/typescript-estree@5.59.1": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@5.59.1", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-lYLBBOCsFltFy7XVqzX0Ju+Lh3WPIAWxYpmH/Q7ZoqzbscLiCW00LeYCdsUnnfnj29/s1WovXKh2gwCoinHNGA==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-MkTe7FE+K1/GxZkP5gRj3rCztg45bEhsd8HYjczBuYm+qFHP5vtZmjx3B0yUCDotceQ4sHgTyz60Ycl225njmA==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==" - } - }, - "npm:@typescript-eslint/visitor-keys@5.59.1": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@5.59.1", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-6waEYwBTCWryx0VJmP7JaM4FpipLsFl9CvYf2foAE8Qh/Y0s+bxWysciwOs0LTBED4JCaNxTZ5rGadB14M6dwA==" - } - }, - "npm:@uifabric/set-version": { - "type": "npm", - "name": "npm:@uifabric/set-version", - "data": { - "version": "7.0.23", - "packageName": "@uifabric/set-version", - "hash": "sha512-9E+YKtnH2kyMKnK9XZZsqyM8OCxEJIIfxtaThTlQpYOzrWAGJxQADFbZ7+Usi0U2xHnWNPFROjq+B9ocEzhqMA==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" - } - }, - "npm:@webassemblyjs/ast@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/ast@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" - } - }, - "npm:@webassemblyjs/helper-api-error": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" - } - }, - "npm:@webassemblyjs/helper-api-error@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" - } - }, - "npm:@webassemblyjs/helper-buffer": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" - } - }, - "npm:@webassemblyjs/helper-buffer@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" - } - }, - "npm:@webassemblyjs/helper-code-frame": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-code-frame", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-code-frame", - "hash": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==" - } - }, - "npm:@webassemblyjs/helper-fsm": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-fsm", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-fsm", - "hash": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" - } - }, - "npm:@webassemblyjs/helper-module-context": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-module-context", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-module-context", - "hash": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==" - } - }, - "npm:@webassemblyjs/helper-numbers": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-numbers", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-numbers", - "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" - } - }, - "npm:@webassemblyjs/helper-wasm-section": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" - } - }, - "npm:@webassemblyjs/helper-wasm-section@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==" - } - }, - "npm:@webassemblyjs/ieee754": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" - } - }, - "npm:@webassemblyjs/ieee754@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==" - } - }, - "npm:@webassemblyjs/leb128": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" - } - }, - "npm:@webassemblyjs/leb128@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==" - } - }, - "npm:@webassemblyjs/utf8": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" - } - }, - "npm:@webassemblyjs/utf8@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" - } - }, - "npm:@webassemblyjs/wasm-edit@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==" - } - }, - "npm:@webassemblyjs/wasm-edit": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" - } - }, - "npm:@webassemblyjs/wasm-gen@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" - } - }, - "npm:@webassemblyjs/wasm-opt@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" - } - }, - "npm:@webassemblyjs/wasm-parser@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==" - } - }, - "npm:@webassemblyjs/wast-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-parser", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wast-parser", - "hash": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==" - } - }, - "npm:@webassemblyjs/wast-printer@1.11.6": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer@1.11.6", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==" - } - }, - "npm:@webpack-cli/configtest": { - "type": "npm", - "name": "npm:@webpack-cli/configtest", - "data": { - "version": "1.2.0", - "packageName": "@webpack-cli/configtest", - "hash": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==" - } - }, - "npm:@webpack-cli/info": { - "type": "npm", - "name": "npm:@webpack-cli/info", - "data": { - "version": "1.5.0", - "packageName": "@webpack-cli/info", - "hash": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==" - } - }, - "npm:@webpack-cli/serve": { - "type": "npm", - "name": "npm:@webpack-cli/serve", - "data": { - "version": "1.7.0", - "packageName": "@webpack-cli/serve", - "hash": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==" - } - }, - "npm:@wojtekmaj/enzyme-adapter-react-17": { - "type": "npm", - "name": "npm:@wojtekmaj/enzyme-adapter-react-17", - "data": { - "version": "0.6.7", - "packageName": "@wojtekmaj/enzyme-adapter-react-17", - "hash": "sha512-B+byiwi/T1bx5hcj9wc0fUL5Hlb5giSXJzcnEfJVl2j6dGV2NJfcxDBYX0WWwIxlzNiFz8kAvlkFWI2y/nscZQ==" - } - }, - "npm:@wojtekmaj/enzyme-adapter-utils": { - "type": "npm", - "name": "npm:@wojtekmaj/enzyme-adapter-utils", - "data": { - "version": "0.1.4", - "packageName": "@wojtekmaj/enzyme-adapter-utils", - "hash": "sha512-ARGIQSIIv3oBia1m5Ihn1VU0FGmft6KPe39SBKTb8p7LSXO23YI4kNtc4M/cKoIY7P+IYdrZcgMObvedyjoSQA==" - } - }, - "npm:@xmldom/xmldom@0.7.9": { - "type": "npm", - "name": "npm:@xmldom/xmldom@0.7.9", - "data": { - "version": "0.7.9", - "packageName": "@xmldom/xmldom", - "hash": "sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==" - } - }, - "npm:@xmldom/xmldom": { - "type": "npm", - "name": "npm:@xmldom/xmldom", - "data": { - "version": "0.8.2", - "packageName": "@xmldom/xmldom", - "hash": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ==" - } - }, - "npm:@xstate/react": { - "type": "npm", - "name": "npm:@xstate/react", - "data": { - "version": "1.6.3", - "packageName": "@xstate/react", - "hash": "sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==" - } - }, - "npm:@xtuc/ieee754": { - "type": "npm", - "name": "npm:@xtuc/ieee754", - "data": { - "version": "1.2.0", - "packageName": "@xtuc/ieee754", - "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - } - }, - "npm:@xtuc/long": { - "type": "npm", - "name": "npm:@xtuc/long", - "data": { - "version": "4.2.2", - "packageName": "@xtuc/long", - "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.0-rc.46", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.6", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" - } - }, - "npm:JSONStream": { - "type": "npm", - "name": "npm:JSONStream", - "data": { - "version": "1.3.5", - "packageName": "JSONStream", - "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - } - }, - "npm:abab": { - "type": "npm", - "name": "npm:abab", - "data": { - "version": "2.0.6", - "packageName": "abab", - "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - } - }, - "npm:abbrev": { - "type": "npm", - "name": "npm:abbrev", - "data": { - "version": "1.0.9", - "packageName": "abbrev", - "hash": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=" - } - }, - "npm:ability-attributes-generator": { - "type": "npm", - "name": "npm:ability-attributes-generator", - "data": { - "version": "0.0.8", - "packageName": "ability-attributes-generator", - "hash": "sha512-GN7lfbyOnpYXBEH2BT6e9gsXwna3v+nOfojzHTKJKuo6HiT8seCSLxqWGbxLW/RMNacqIjJ2OA04d4ufzPx9yw==" - } - }, - "npm:ability-attributes-js-constraints": { - "type": "npm", - "name": "npm:ability-attributes-js-constraints", - "data": { - "version": "0.0.8", - "packageName": "ability-attributes-js-constraints", - "hash": "sha512-+TjS0GcQnFaX0thTs+sXiGtNelPcy6odeN8hKntd1KxsnFtqyrC3l2i55s+z3rRzei6BvkoSHvkKEOjk0E5UjA==" - } - }, - "npm:ability-attributes": { - "type": "npm", - "name": "npm:ability-attributes", - "data": { - "version": "0.0.8", - "packageName": "ability-attributes", - "hash": "sha512-GU2Gd1nAUzvTEu4+615DKCf7OkWf+rL5kLmsi3Fg+nY7fhjrMT1ZwsU8MJ8hqilipspq1Q2yIuUYj4q8l2W8nQ==" - } - }, - "npm:abort-controller": { - "type": "npm", - "name": "npm:abort-controller", - "data": { - "version": "3.0.0", - "packageName": "abort-controller", - "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "1.3.8", - "packageName": "accepts", - "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - } - }, - "npm:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-assertions": { - "type": "npm", - "name": "npm:acorn-import-assertions", - "data": { - "version": "1.8.0", - "packageName": "acorn-import-assertions", - "hash": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk@7.2.0": { - "type": "npm", - "name": "npm:acorn-walk@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "acorn-walk", - "hash": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.2.0", - "packageName": "acorn-walk", - "hash": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" - } - }, - "npm:acorn@5.7.4": { - "type": "npm", - "name": "npm:acorn@5.7.4", - "data": { - "version": "5.7.4", - "packageName": "acorn", - "hash": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" - } - }, - "npm:acorn@6.4.1": { - "type": "npm", - "name": "npm:acorn@6.4.1", - "data": { - "version": "6.4.1", - "packageName": "acorn", - "hash": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" - } - }, - "npm:acorn@7.4.1": { - "type": "npm", - "name": "npm:acorn@7.4.1", - "data": { - "version": "7.4.1", - "packageName": "acorn", - "hash": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.10.0", - "packageName": "acorn", - "hash": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" - } - }, - "npm:adal-node": { - "type": "npm", - "name": "npm:adal-node", - "data": { - "version": "0.2.3", - "packageName": "adal-node", - "hash": "sha512-gMKr8RuYEYvsj7jyfCv/4BfKToQThz20SP71N3AtFn3ia3yAR8Qt2T3aVQhuJzunWs2b38ZsQV0qsZPdwZr7VQ==" - } - }, - "npm:add-px-to-style": { - "type": "npm", - "name": "npm:add-px-to-style", - "data": { - "version": "1.0.0", - "packageName": "add-px-to-style", - "hash": "sha1-0ME1RB+oAUqBN5BFMQlvZ/KPJjo=" - } - }, - "npm:add-stream": { - "type": "npm", - "name": "npm:add-stream", - "data": { - "version": "1.0.0", - "packageName": "add-stream", - "hash": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==" - } - }, - "npm:address": { - "type": "npm", - "name": "npm:address", - "data": { - "version": "1.1.2", - "packageName": "address", - "hash": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" - } - }, - "npm:adm-zip": { - "type": "npm", - "name": "npm:adm-zip", - "data": { - "version": "0.5.9", - "packageName": "adm-zip", - "hash": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==" - } - }, - "npm:afterframe": { - "type": "npm", - "name": "npm:afterframe", - "data": { - "version": "1.0.2", - "packageName": "afterframe", - "hash": "sha512-0JeMZI7dIfVs5guqLgidQNV7c6jBC2HO0QNSekAUB82Hr7PdU9QXNAF3kpFkvATvHYDDTGto7FPsRu1ey+aKJQ==" - } - }, - "npm:agent-base@4.3.0": { - "type": "npm", - "name": "npm:agent-base@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "agent-base", - "hash": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:agentkeepalive": { - "type": "npm", - "name": "npm:agentkeepalive", - "data": { - "version": "4.2.1", - "packageName": "agentkeepalive", - "hash": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.0.1", - "packageName": "aggregate-error", - "hash": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==" - } - }, - "npm:aggregate-error@4.0.1": { - "type": "npm", - "name": "npm:aggregate-error@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "aggregate-error", - "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" - } - }, - "npm:airbnb-js-shims": { - "type": "npm", - "name": "npm:airbnb-js-shims", - "data": { - "version": "2.2.1", - "packageName": "airbnb-js-shims", - "hash": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==" - } - }, - "npm:ajv-errors@1.0.1": { - "type": "npm", - "name": "npm:ajv-errors@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "ajv-errors", - "hash": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" - } - }, - "npm:ajv-formats@2.1.1": { - "type": "npm", - "name": "npm:ajv-formats@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ajv-formats", - "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ajv-keywords@5.1.0": { - "type": "npm", - "name": "npm:ajv-keywords@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "ajv-keywords", - "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "8.4.0", - "packageName": "ajv", - "hash": "sha512-7QD2l6+KBSLwf+7MuYocbWvRPdOu63/trReTLu2KFwkgctnub1auoF+Y1WYcm09CTM7quuscrzqmASaLHC/K4Q==" - } - }, - "npm:ajv@4.11.8": { - "type": "npm", - "name": "npm:ajv@4.11.8", - "data": { - "version": "4.11.8", - "packageName": "ajv", - "hash": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=" - } - }, - "npm:ajv@5.5.2": { - "type": "npm", - "name": "npm:ajv@5.5.2", - "data": { - "version": "5.5.2", - "packageName": "ajv", - "hash": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=" - } - }, - "npm:ajv@6.12.6": { - "type": "npm", - "name": "npm:ajv@6.12.6", - "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - } - }, - "npm:ajv@8.12.0": { - "type": "npm", - "name": "npm:ajv@8.12.0", - "data": { - "version": "8.12.0", - "packageName": "ajv", - "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" - } - }, - "npm:amdefine": { - "type": "npm", - "name": "npm:amdefine", - "data": { - "version": "1.0.1", - "packageName": "amdefine", - "hash": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" - } - }, - "npm:anchor-markdown-header": { - "type": "npm", - "name": "npm:anchor-markdown-header", - "data": { - "version": "0.5.7", - "packageName": "anchor-markdown-header", - "hash": "sha1-BFBj125qH5zTJ6V6ASaqD97Dcac=" - } - }, - "npm:ansi-align@2.0.0": { - "type": "npm", - "name": "npm:ansi-align@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ansi-align", - "hash": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=" - } - }, - "npm:ansi-align": { - "type": "npm", - "name": "npm:ansi-align", - "data": { - "version": "3.0.0", - "packageName": "ansi-align", - "hash": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==" - } - }, - "npm:ansi-colors@3.2.3": { - "type": "npm", - "name": "npm:ansi-colors@3.2.3", - "data": { - "version": "3.2.3", - "packageName": "ansi-colors", - "hash": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==" - } - }, - "npm:ansi-colors": { - "type": "npm", - "name": "npm:ansi-colors", - "data": { - "version": "1.1.0", - "packageName": "ansi-colors", - "hash": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==" - } - }, - "npm:ansi-colors@4.1.1": { - "type": "npm", - "name": "npm:ansi-colors@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "ansi-colors", - "hash": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" - } - }, - "npm:ansi-cyan": { - "type": "npm", - "name": "npm:ansi-cyan", - "data": { - "version": "0.1.1", - "packageName": "ansi-cyan", - "hash": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=" - } - }, - "npm:ansi-escape-sequences": { - "type": "npm", - "name": "npm:ansi-escape-sequences", - "data": { - "version": "6.2.1", - "packageName": "ansi-escape-sequences", - "hash": "sha512-0gK95MrLXv+Vy5h4eKGvSX1yXopBqSYBi3/w4hekUxs/hHakF6asH9Gg7UXbb7IH9weAlVIrUzVOITNBr8Imag==" - } - }, - "npm:ansi-escapes": { - "type": "npm", - "name": "npm:ansi-escapes", - "data": { - "version": "4.3.1", - "packageName": "ansi-escapes", - "hash": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==" - } - }, - "npm:ansi-escapes@6.2.0": { - "type": "npm", - "name": "npm:ansi-escapes@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "ansi-escapes", - "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" - } - }, - "npm:ansi-gray": { - "type": "npm", - "name": "npm:ansi-gray", - "data": { - "version": "0.1.1", - "packageName": "ansi-gray", - "hash": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=" - } - }, - "npm:ansi-html-community": { - "type": "npm", - "name": "npm:ansi-html-community", - "data": { - "version": "0.0.8", - "packageName": "ansi-html-community", - "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - } - }, - "npm:ansi-red": { - "type": "npm", - "name": "npm:ansi-red", - "data": { - "version": "0.1.1", - "packageName": "ansi-red", - "hash": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=" - } - }, - "npm:ansi-regex@2.1.1": { - "type": "npm", - "name": "npm:ansi-regex@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ansi-regex", - "hash": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - } - }, - "npm:ansi-regex@3.0.1": { - "type": "npm", - "name": "npm:ansi-regex@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "ansi-regex", - "hash": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" - } - }, - "npm:ansi-regex@4.1.1": { - "type": "npm", - "name": "npm:ansi-regex@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "ansi-regex", - "hash": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-regex@6.0.1": { - "type": "npm", - "name": "npm:ansi-regex@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "ansi-regex", - "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - }, - "npm:ansi-styles@2.2.1": { - "type": "npm", - "name": "npm:ansi-styles@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "ansi-styles", - "hash": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - } - }, - "npm:ansi-styles@3.2.1": { - "type": "npm", - "name": "npm:ansi-styles@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:ansi-to-html": { - "type": "npm", - "name": "npm:ansi-to-html", - "data": { - "version": "0.6.13", - "packageName": "ansi-to-html", - "hash": "sha512-Ys2/umuaTlQvP9DLkaa7UzRKF2FLrfod/hNHXS9QhXCrw7seObG6ksOGmNz3UoK+adwM8L9vQfG7mvaxfJ3Jvw==" - } - }, - "npm:ansi-wrap": { - "type": "npm", - "name": "npm:ansi-wrap", - "data": { - "version": "0.1.0", - "packageName": "ansi-wrap", - "hash": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=" - } - }, - "npm:ansicolors": { - "type": "npm", - "name": "npm:ansicolors", - "data": { - "version": "0.3.2", - "packageName": "ansicolors", - "hash": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" - } - }, - "npm:anymatch@2.0.0": { - "type": "npm", - "name": "npm:anymatch@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "anymatch", - "hash": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.2", - "packageName": "anymatch", - "hash": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" - } - }, - "npm:app-root-dir": { - "type": "npm", - "name": "npm:app-root-dir", - "data": { - "version": "1.0.2", - "packageName": "app-root-dir", - "hash": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=" - } - }, - "npm:append-buffer": { - "type": "npm", - "name": "npm:append-buffer", - "data": { - "version": "1.0.2", - "packageName": "append-buffer", - "hash": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=" - } - }, - "npm:aproba": { - "type": "npm", - "name": "npm:aproba", - "data": { - "version": "1.2.0", - "packageName": "aproba", - "hash": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" - } - }, - "npm:arch": { - "type": "npm", - "name": "npm:arch", - "data": { - "version": "2.2.0", - "packageName": "arch", - "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" - } - }, - "npm:archy": { - "type": "npm", - "name": "npm:archy", - "data": { - "version": "1.0.0", - "packageName": "archy", - "hash": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=" - } - }, - "npm:are-we-there-yet@2.0.0": { - "type": "npm", - "name": "npm:are-we-there-yet@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "are-we-there-yet", - "hash": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==" - } - }, - "npm:are-we-there-yet@3.0.1": { - "type": "npm", - "name": "npm:are-we-there-yet@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "are-we-there-yet", - "hash": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==" - } - }, - "npm:are-we-there-yet": { - "type": "npm", - "name": "npm:are-we-there-yet", - "data": { - "version": "1.1.5", - "packageName": "are-we-there-yet", - "hash": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==" - } - }, - "npm:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "4.1.3", - "packageName": "arg", - "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse@2.0.1": { - "type": "npm", - "name": "npm:argparse@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:aria-query": { - "type": "npm", - "name": "npm:aria-query", - "data": { - "version": "4.2.2", - "packageName": "aria-query", - "hash": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==" - } - }, - "npm:aria-query@5.0.0": { - "type": "npm", - "name": "npm:aria-query@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "aria-query", - "hash": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==" - } - }, - "npm:arr-diff@1.1.0": { - "type": "npm", - "name": "npm:arr-diff@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "arr-diff", - "hash": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=" - } - }, - "npm:arr-diff": { - "type": "npm", - "name": "npm:arr-diff", - "data": { - "version": "4.0.0", - "packageName": "arr-diff", - "hash": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - } - }, - "npm:arr-filter": { - "type": "npm", - "name": "npm:arr-filter", - "data": { - "version": "1.1.2", - "packageName": "arr-filter", - "hash": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=" - } - }, - "npm:arr-flatten": { - "type": "npm", - "name": "npm:arr-flatten", - "data": { - "version": "1.1.0", - "packageName": "arr-flatten", - "hash": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - } - }, - "npm:arr-map": { - "type": "npm", - "name": "npm:arr-map", - "data": { - "version": "2.0.2", - "packageName": "arr-map", - "hash": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=" - } - }, - "npm:arr-union@2.1.0": { - "type": "npm", - "name": "npm:arr-union@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "arr-union", - "hash": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=" - } - }, - "npm:arr-union": { - "type": "npm", - "name": "npm:arr-union", - "data": { - "version": "3.1.0", - "packageName": "arr-union", - "hash": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" - } - }, - "npm:array-back": { - "type": "npm", - "name": "npm:array-back", - "data": { - "version": "3.1.0", - "packageName": "array-back", - "hash": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" - } - }, - "npm:array-back@4.0.2": { - "type": "npm", - "name": "npm:array-back@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "array-back", - "hash": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" - } - }, - "npm:array-back@6.2.2": { - "type": "npm", - "name": "npm:array-back@6.2.2", - "data": { - "version": "6.2.2", - "packageName": "array-back", - "hash": "sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==" - } - }, - "npm:array-differ": { - "type": "npm", - "name": "npm:array-differ", - "data": { - "version": "1.0.0", - "packageName": "array-differ", - "hash": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=" - } - }, - "npm:array-differ@3.0.0": { - "type": "npm", - "name": "npm:array-differ@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "array-differ", - "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" - } - }, - "npm:array-each": { - "type": "npm", - "name": "npm:array-each", - "data": { - "version": "1.0.1", - "packageName": "array-each", - "hash": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" - } - }, - "npm:array-filter": { - "type": "npm", - "name": "npm:array-filter", - "data": { - "version": "1.0.0", - "packageName": "array-filter", - "hash": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" - } - }, - "npm:array-find-index": { - "type": "npm", - "name": "npm:array-find-index", - "data": { - "version": "1.0.2", - "packageName": "array-find-index", - "hash": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" - } - }, - "npm:array-flatten": { - "type": "npm", - "name": "npm:array-flatten", - "data": { - "version": "1.1.1", - "packageName": "array-flatten", - "hash": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - } - }, - "npm:array-flatten@2.1.2": { - "type": "npm", - "name": "npm:array-flatten@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "array-flatten", - "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" - } - }, - "npm:array-ify": { - "type": "npm", - "name": "npm:array-ify", - "data": { - "version": "1.0.0", - "packageName": "array-ify", - "hash": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=" - } - }, - "npm:array-includes": { - "type": "npm", - "name": "npm:array-includes", - "data": { - "version": "3.1.4", - "packageName": "array-includes", - "hash": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==" - } - }, - "npm:array-initial": { - "type": "npm", - "name": "npm:array-initial", - "data": { - "version": "1.1.0", - "packageName": "array-initial", - "hash": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=" - } - }, - "npm:array-last": { - "type": "npm", - "name": "npm:array-last", - "data": { - "version": "1.3.0", - "packageName": "array-last", - "hash": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==" - } - }, - "npm:array-slice@0.2.3": { - "type": "npm", - "name": "npm:array-slice@0.2.3", - "data": { - "version": "0.2.3", - "packageName": "array-slice", - "hash": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=" - } - }, - "npm:array-slice": { - "type": "npm", - "name": "npm:array-slice", - "data": { - "version": "1.1.0", - "packageName": "array-slice", - "hash": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==" - } - }, - "npm:array-sort": { - "type": "npm", - "name": "npm:array-sort", - "data": { - "version": "1.0.0", - "packageName": "array-sort", - "hash": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==" - } - }, - "npm:array-union@1.0.2": { - "type": "npm", - "name": "npm:array-union@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "array-union", - "hash": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=" - } - }, - "npm:array-union": { - "type": "npm", - "name": "npm:array-union", - "data": { - "version": "2.1.0", - "packageName": "array-union", - "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - } - }, - "npm:array-uniq": { - "type": "npm", - "name": "npm:array-uniq", - "data": { - "version": "1.0.3", - "packageName": "array-uniq", - "hash": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" - } - }, - "npm:array-unique": { - "type": "npm", - "name": "npm:array-unique", - "data": { - "version": "0.3.2", - "packageName": "array-unique", - "hash": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.2.5", - "packageName": "array.prototype.flat", - "hash": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.2.5", - "packageName": "array.prototype.flatmap", - "hash": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==" - } - }, - "npm:arrify@1.0.1": { - "type": "npm", - "name": "npm:arrify@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "arrify", - "hash": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" - } - }, - "npm:arrify": { - "type": "npm", - "name": "npm:arrify", - "data": { - "version": "2.0.1", - "packageName": "arrify", - "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" - } - }, - "npm:asap": { - "type": "npm", - "name": "npm:asap", - "data": { - "version": "2.0.6", - "packageName": "asap", - "hash": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - } - }, - "npm:asn1.js": { - "type": "npm", - "name": "npm:asn1.js", - "data": { - "version": "4.10.1", - "packageName": "asn1.js", - "hash": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==" - } - }, - "npm:asn1": { - "type": "npm", - "name": "npm:asn1", - "data": { - "version": "0.2.4", - "packageName": "asn1", - "hash": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==" - } - }, - "npm:assert-plus": { - "type": "npm", - "name": "npm:assert-plus", - "data": { - "version": "1.0.0", - "packageName": "assert-plus", - "hash": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - }, - "npm:assert@1.5.0": { - "type": "npm", - "name": "npm:assert@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "assert", - "hash": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==" - } - }, - "npm:assert": { - "type": "npm", - "name": "npm:assert", - "data": { - "version": "2.0.0", - "packageName": "assert", - "hash": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==" - } - }, - "npm:assertion-error": { - "type": "npm", - "name": "npm:assertion-error", - "data": { - "version": "1.1.0", - "packageName": "assertion-error", - "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" - } - }, - "npm:assign-symbols": { - "type": "npm", - "name": "npm:assign-symbols", - "data": { - "version": "1.0.0", - "packageName": "assign-symbols", - "hash": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" - } - }, - "npm:ast-types-flow": { - "type": "npm", - "name": "npm:ast-types-flow", - "data": { - "version": "0.0.7", - "packageName": "ast-types-flow", - "hash": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" - } - }, - "npm:ast-types@0.13.2": { - "type": "npm", - "name": "npm:ast-types@0.13.2", - "data": { - "version": "0.13.2", - "packageName": "ast-types", - "hash": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==" - } - }, - "npm:ast-types": { - "type": "npm", - "name": "npm:ast-types", - "data": { - "version": "0.14.2", - "packageName": "ast-types", - "hash": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "2.0.0", - "packageName": "astral-regex", - "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - } - }, - "npm:async-done": { - "type": "npm", - "name": "npm:async-done", - "data": { - "version": "1.3.2", - "packageName": "async-done", - "hash": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==" - } - }, - "npm:async-each": { - "type": "npm", - "name": "npm:async-each", - "data": { - "version": "1.0.3", - "packageName": "async-each", - "hash": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" - } - }, - "npm:async-retry": { - "type": "npm", - "name": "npm:async-retry", - "data": { - "version": "1.2.3", - "packageName": "async-retry", - "hash": "sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==" - } - }, - "npm:async-settle": { - "type": "npm", - "name": "npm:async-settle", - "data": { - "version": "1.0.0", - "packageName": "async-settle", - "hash": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=" - } - }, - "npm:async@1.5.2": { - "type": "npm", - "name": "npm:async@1.5.2", - "data": { - "version": "1.5.2", - "packageName": "async", - "hash": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "2.6.4", - "packageName": "async", - "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" - } - }, - "npm:async@3.2.3": { - "type": "npm", - "name": "npm:async@3.2.3", - "data": { - "version": "3.2.3", - "packageName": "async", - "hash": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - } - }, - "npm:at-least-node": { - "type": "npm", - "name": "npm:at-least-node", - "data": { - "version": "1.0.0", - "packageName": "at-least-node", - "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - } - }, - "npm:atob": { - "type": "npm", - "name": "npm:atob", - "data": { - "version": "2.1.2", - "packageName": "atob", - "hash": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - } - }, - "npm:autoprefixer": { - "type": "npm", - "name": "npm:autoprefixer", - "data": { - "version": "10.2.1", - "packageName": "autoprefixer", - "hash": "sha512-dwP0UjyYvROUvtU+boBx8ff5pPWami1NGTrJs9YUsS/oZVbRAcdNHOOuXSA1fc46tgKqe072cVaKD69rvCc3QQ==" - } - }, - "npm:autoprefixer@9.8.6": { - "type": "npm", - "name": "npm:autoprefixer@9.8.6", - "data": { - "version": "9.8.6", - "packageName": "autoprefixer", - "hash": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==" - } - }, - "npm:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.2", - "packageName": "available-typed-arrays", - "hash": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==" - } - }, - "npm:aws-sign2": { - "type": "npm", - "name": "npm:aws-sign2", - "data": { - "version": "0.7.0", - "packageName": "aws-sign2", - "hash": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - } - }, - "npm:aws4": { - "type": "npm", - "name": "npm:aws4", - "data": { - "version": "1.8.0", - "packageName": "aws4", - "hash": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" - } - }, - "npm:axe-core": { - "type": "npm", - "name": "npm:axe-core", - "data": { - "version": "4.4.3", - "packageName": "axe-core", - "hash": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" - } - }, - "npm:axios@0.21.4": { - "type": "npm", - "name": "npm:axios@0.21.4", - "data": { - "version": "0.21.4", - "packageName": "axios", - "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "1.4.0", - "packageName": "axios", - "hash": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==" - } - }, - "npm:axobject-query": { - "type": "npm", - "name": "npm:axobject-query", - "data": { - "version": "2.2.0", - "packageName": "axobject-query", - "hash": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" - } - }, - "npm:azure-devops-node-api": { - "type": "npm", - "name": "npm:azure-devops-node-api", - "data": { - "version": "10.2.2", - "packageName": "azure-devops-node-api", - "hash": "sha512-4TVv2X7oNStT0vLaEfExmy3J4/CzfuXolEcQl/BRUmvGySqKStTG2O55/hUQ0kM7UJlZBLgniM0SBq4d/WkKow==" - } - }, - "npm:azure-storage-simple": { - "type": "npm", - "name": "npm:azure-storage-simple", - "data": { - "version": "1.0.0", - "packageName": "azure-storage-simple", - "hash": "sha512-n9zaOEfoxKUNZaeT1fJKJRfns9yyckstLlRXSPVr32m4RXwMSarJQZYl0ePBxToPY/JxdRK4lwXE0r0hp1JP3w==" - } - }, - "npm:azure-storage": { - "type": "npm", - "name": "npm:azure-storage", - "data": { - "version": "2.10.7", - "packageName": "azure-storage", - "hash": "sha512-4oeFGtn3Ziw/fGs/zkoIpKKtygnCVIcZwzJ7UQzKTxhkGQqVCByOFbYqMGYR3L+wOsunX9lNfD0jc51SQuKSSA==" - } - }, - "npm:babel-code-frame": { - "type": "npm", - "name": "npm:babel-code-frame", - "data": { - "version": "6.26.0", - "packageName": "babel-code-frame", - "hash": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=" - } - }, - "npm:babel-generator": { - "type": "npm", - "name": "npm:babel-generator", - "data": { - "version": "6.26.1", - "packageName": "babel-generator", - "hash": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==" - } - }, - "npm:babel-jest": { - "type": "npm", - "name": "npm:babel-jest", - "data": { - "version": "29.7.0", - "packageName": "babel-jest", - "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" - } - }, - "npm:babel-loader": { - "type": "npm", - "name": "npm:babel-loader", - "data": { - "version": "8.3.0", - "packageName": "babel-loader", - "hash": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==" - } - }, - "npm:babel-messages": { - "type": "npm", - "name": "npm:babel-messages", - "data": { - "version": "6.23.0", - "packageName": "babel-messages", - "hash": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=" - } - }, - "npm:babel-plugin-add-react-displayname": { - "type": "npm", - "name": "npm:babel-plugin-add-react-displayname", - "data": { - "version": "0.0.5", - "packageName": "babel-plugin-add-react-displayname", - "hash": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=" - } - }, - "npm:babel-plugin-annotate-pure-calls": { - "type": "npm", - "name": "npm:babel-plugin-annotate-pure-calls", - "data": { - "version": "0.4.0", - "packageName": "babel-plugin-annotate-pure-calls", - "hash": "sha512-oi4M/PWUJOU9ZyRGoPTfPMqdyMp06jbJAomd3RcyYuzUtBOddv98BqLm96Lucpi2QFoQHkdGQt0ACvw7VzVEQA==" - } - }, - "npm:babel-plugin-annotate-pure-imports": { - "type": "npm", - "name": "npm:babel-plugin-annotate-pure-imports", - "data": { - "version": "1.0.0-1", - "packageName": "babel-plugin-annotate-pure-imports", - "hash": "sha512-BJk9paXY1qh7amBLwWfhWbvxFWsUCmiz6NSnpTbP5T4EAM0PwvCr6U5bz+0NbCADphziPMVgbt/M+/06oV+1GA==" - } - }, - "npm:babel-plugin-apply-mdx-type-prop@1.6.22": { - "type": "npm", - "name": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "data": { - "version": "1.6.22", - "packageName": "babel-plugin-apply-mdx-type-prop", - "hash": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==" - } - }, - "npm:babel-plugin-const-enum": { - "type": "npm", - "name": "npm:babel-plugin-const-enum", - "data": { - "version": "1.2.0", - "packageName": "babel-plugin-const-enum", - "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" - } - }, - "npm:babel-plugin-emotion": { - "type": "npm", - "name": "npm:babel-plugin-emotion", - "data": { - "version": "10.0.27", - "packageName": "babel-plugin-emotion", - "hash": "sha512-SUNYcT4FqhOqvwv0z1oeYhqgheU8qrceLojuHyX17ngo7WtWqN5I9l3IGHzf21Xraj465CVzF4IvOlAF+3ed0A==" - } - }, - "npm:babel-plugin-extract-import-names": { - "type": "npm", - "name": "npm:babel-plugin-extract-import-names", - "data": { - "version": "1.6.22", - "packageName": "babel-plugin-extract-import-names", - "hash": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==" - } - }, - "npm:babel-plugin-iife-wrap-react-components": { - "type": "npm", - "name": "npm:babel-plugin-iife-wrap-react-components", - "data": { - "version": "1.0.0-5", - "packageName": "babel-plugin-iife-wrap-react-components", - "hash": "sha512-N91+hcZ98cm7AhqqC9zTwRCwziqEcljgXNuZXWeHRicDKeFASbzbyG5TuSGdgiRYm4oO0TLEEXWx2dxMNoXzaw==" - } - }, - "npm:babel-plugin-istanbul": { - "type": "npm", - "name": "npm:babel-plugin-istanbul", - "data": { - "version": "6.1.1", - "packageName": "babel-plugin-istanbul", - "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" - } - }, - "npm:babel-plugin-jest-hoist": { - "type": "npm", - "name": "npm:babel-plugin-jest-hoist", - "data": { - "version": "29.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-plugin-lodash": { - "type": "npm", - "name": "npm:babel-plugin-lodash", - "data": { - "version": "3.3.4", - "packageName": "babel-plugin-lodash", - "hash": "sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==" - } - }, - "npm:babel-plugin-macros": { - "type": "npm", - "name": "npm:babel-plugin-macros", - "data": { - "version": "2.8.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" - } - }, - "npm:babel-plugin-macros@3.1.0": { - "type": "npm", - "name": "npm:babel-plugin-macros@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" - } - }, - "npm:babel-plugin-module-resolver": { - "type": "npm", - "name": "npm:babel-plugin-module-resolver", - "data": { - "version": "4.1.0", - "packageName": "babel-plugin-module-resolver", - "hash": "sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==" - } - }, - "npm:babel-plugin-named-exports-order": { - "type": "npm", - "name": "npm:babel-plugin-named-exports-order", - "data": { - "version": "0.0.2", - "packageName": "babel-plugin-named-exports-order", - "hash": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==" - } - }, - "npm:babel-plugin-polyfill-corejs2": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs2", - "data": { - "version": "0.4.6", - "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==" - } - }, - "npm:babel-plugin-polyfill-corejs3@0.1.7": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3@0.1.7", - "data": { - "version": "0.1.7", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==" - } - }, - "npm:babel-plugin-polyfill-corejs3": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3", - "data": { - "version": "0.8.6", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==" - } - }, - "npm:babel-plugin-polyfill-regenerator": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-regenerator", - "data": { - "version": "0.5.3", - "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==" - } - }, - "npm:babel-plugin-react-docgen": { - "type": "npm", - "name": "npm:babel-plugin-react-docgen", - "data": { - "version": "4.2.1", - "packageName": "babel-plugin-react-docgen", - "hash": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==" - } - }, - "npm:babel-plugin-styled-components": { - "type": "npm", - "name": "npm:babel-plugin-styled-components", - "data": { - "version": "1.10.7", - "packageName": "babel-plugin-styled-components", - "hash": "sha512-MBMHGcIA22996n9hZRf/UJLVVgkEOITuR2SvjHLb5dSTUyR4ZRGn+ngITapes36FI3WLxZHfRhkA1ffHxihOrg==" - } - }, - "npm:babel-plugin-syntax-jsx": { - "type": "npm", - "name": "npm:babel-plugin-syntax-jsx", - "data": { - "version": "6.18.0", - "packageName": "babel-plugin-syntax-jsx", - "hash": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" - } - }, - "npm:babel-plugin-tester": { - "type": "npm", - "name": "npm:babel-plugin-tester", - "data": { - "version": "10.1.0", - "packageName": "babel-plugin-tester", - "hash": "sha512-4P2tNaM/Mtg6ytA9YAqmgONnMYqWvdbGDuwRTpIIC9yFZGQrEHoyvDPCx+X1QALAufVb5DKieOPGj5dffiEiNg==" - } - }, - "npm:babel-plugin-transform-react-remove-prop-types": { - "type": "npm", - "name": "npm:babel-plugin-transform-react-remove-prop-types", - "data": { - "version": "0.4.24", - "packageName": "babel-plugin-transform-react-remove-prop-types", - "hash": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" - } - }, - "npm:babel-plugin-transform-typescript-metadata": { - "type": "npm", - "name": "npm:babel-plugin-transform-typescript-metadata", - "data": { - "version": "0.3.2", - "packageName": "babel-plugin-transform-typescript-metadata", - "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.0.1", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" - } - }, - "npm:babel-preset-jest": { - "type": "npm", - "name": "npm:babel-preset-jest", - "data": { - "version": "29.6.3", - "packageName": "babel-preset-jest", - "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" - } - }, - "npm:babel-runtime": { - "type": "npm", - "name": "npm:babel-runtime", - "data": { - "version": "6.26.0", - "packageName": "babel-runtime", - "hash": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=" - } - }, - "npm:babel-template": { - "type": "npm", - "name": "npm:babel-template", - "data": { - "version": "6.26.0", - "packageName": "babel-template", - "hash": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=" - } - }, - "npm:babel-traverse": { - "type": "npm", - "name": "npm:babel-traverse", - "data": { - "version": "6.26.0", - "packageName": "babel-traverse", - "hash": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=" - } - }, - "npm:babel-types": { - "type": "npm", - "name": "npm:babel-types", - "data": { - "version": "6.26.0", - "packageName": "babel-types", - "hash": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=" - } - }, - "npm:babylon": { - "type": "npm", - "name": "npm:babylon", - "data": { - "version": "6.18.0", - "packageName": "babylon", - "hash": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" - } - }, - "npm:bach": { - "type": "npm", - "name": "npm:bach", - "data": { - "version": "1.2.0", - "packageName": "bach", - "hash": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=" - } - }, - "npm:backfill-cache": { - "type": "npm", - "name": "npm:backfill-cache", - "data": { - "version": "5.6.2", - "packageName": "backfill-cache", - "hash": "sha512-E2SjMLgHt8NJ9sPKL6djxPqQKvI3YEedT0q/fZ8uknQbNg9H6JAxjWlff6sB8UcoBmep4R99ACUuYqOfFEBglw==" - } - }, - "npm:backfill-config": { - "type": "npm", - "name": "npm:backfill-config", - "data": { - "version": "6.3.0", - "packageName": "backfill-config", - "hash": "sha512-4Pvqe4SIthHmlJi1yEyh8ThdZCh9SbNcf12Dx1TNkLii6um3Ez1P1rruPNQGW8jFtLb5kOWWkTnXPj6OXewXSA==" - } - }, - "npm:backfill-hasher": { - "type": "npm", - "name": "npm:backfill-hasher", - "data": { - "version": "6.4.3", - "packageName": "backfill-hasher", - "hash": "sha512-Btijbf5mC96bbFervlUMf5I14V9/bPPUiEFhWYO+XRyxlfbTejpvqzTpCDKEyCR/wMlt3AViAjZ3/UOZ6cMGsg==" - } - }, - "npm:backfill-logger": { - "type": "npm", - "name": "npm:backfill-logger", - "data": { - "version": "5.1.3", - "packageName": "backfill-logger", - "hash": "sha512-S1QUP+q3WWqcXWfwVt/jpi3r61CGWWJBfxGpzLPbRE8vMUw71P8sA+zYSx7M8ZI1PNZrxSA/TKq/NhoiMYXnpA==" - } - }, - "npm:backfill-utils-dotenv": { - "type": "npm", - "name": "npm:backfill-utils-dotenv", - "data": { - "version": "5.1.1", - "packageName": "backfill-utils-dotenv", - "hash": "sha512-hSdY1pflGFf4xXXpI51bnNPr8arS3ga5tSeyeTjIdohC5IwUf+Eldz2yeSMrbqtP3PKIuxHc2RcwTJfL5jSBfg==" - } - }, - "npm:backfill": { - "type": "npm", - "name": "npm:backfill", - "data": { - "version": "6.1.23", - "packageName": "backfill", - "hash": "sha512-VidtpsjTnEFH5Vg7p+IR8F5Fko+FJWse9SWEmbufaflL/Jp9xQO5igReqIp+HX2qzz1JjpfrPmRzFwOyVFdkrA==" - } - }, - "npm:bail": { - "type": "npm", - "name": "npm:bail", - "data": { - "version": "1.0.5", - "packageName": "bail", - "hash": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:base64id": { - "type": "npm", - "name": "npm:base64id", - "data": { - "version": "2.0.0", - "packageName": "base64id", - "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" - } - }, - "npm:base": { - "type": "npm", - "name": "npm:base", - "data": { - "version": "0.11.2", - "packageName": "base", - "hash": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==" - } - }, - "npm:batch-processor": { - "type": "npm", - "name": "npm:batch-processor", - "data": { - "version": "1.0.0", - "packageName": "batch-processor", - "hash": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=" - } - }, - "npm:batch": { - "type": "npm", - "name": "npm:batch", - "data": { - "version": "0.6.1", - "packageName": "batch", - "hash": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" - } - }, - "npm:bcrypt-pbkdf": { - "type": "npm", - "name": "npm:bcrypt-pbkdf", - "data": { - "version": "1.0.2", - "packageName": "bcrypt-pbkdf", - "hash": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=" - } - }, - "npm:beachball": { - "type": "npm", - "name": "npm:beachball", - "data": { - "version": "2.31.0", - "packageName": "beachball", - "hash": "sha512-xi6xf9nLLp9dpXBhnQuDsWdM6k+I34CrSdtniW8Qlt/BdHoUdTGhFFk9ky30pgywCam/bgGQbMd2FOChaUvfjQ==" - } - }, - "npm:beeper": { - "type": "npm", - "name": "npm:beeper", - "data": { - "version": "1.1.1", - "packageName": "beeper", - "hash": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=" - } - }, - "npm:before-after-hook": { - "type": "npm", - "name": "npm:before-after-hook", - "data": { - "version": "2.2.2", - "packageName": "before-after-hook", - "hash": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==" - } - }, - "npm:better-opn": { - "type": "npm", - "name": "npm:better-opn", - "data": { - "version": "2.1.1", - "packageName": "better-opn", - "hash": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==" - } - }, - "npm:big-integer": { - "type": "npm", - "name": "npm:big-integer", - "data": { - "version": "1.6.51", - "packageName": "big-integer", - "hash": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:bin-check": { - "type": "npm", - "name": "npm:bin-check", - "data": { - "version": "4.1.0", - "packageName": "bin-check", - "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" - } - }, - "npm:bin-version-check": { - "type": "npm", - "name": "npm:bin-version-check", - "data": { - "version": "5.1.0", - "packageName": "bin-version-check", - "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" - } - }, - "npm:bin-version": { - "type": "npm", - "name": "npm:bin-version", - "data": { - "version": "6.0.0", - "packageName": "bin-version", - "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" - } - }, - "npm:binary-extensions@1.13.1": { - "type": "npm", - "name": "npm:binary-extensions@1.13.1", - "data": { - "version": "1.13.1", - "packageName": "binary-extensions", - "hash": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" - } - }, - "npm:binary-extensions": { - "type": "npm", - "name": "npm:binary-extensions", - "data": { - "version": "2.1.0", - "packageName": "binary-extensions", - "hash": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==" - } - }, - "npm:binary": { - "type": "npm", - "name": "npm:binary", - "data": { - "version": "0.3.0", - "packageName": "binary", - "hash": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==" - } - }, - "npm:binaryextensions": { - "type": "npm", - "name": "npm:binaryextensions", - "data": { - "version": "2.3.0", - "packageName": "binaryextensions", - "hash": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==" - } - }, - "npm:bindings@1.5.0": { - "type": "npm", - "name": "npm:bindings@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "bindings", - "hash": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:blob-util": { - "type": "npm", - "name": "npm:blob-util", - "data": { - "version": "2.0.2", - "packageName": "blob-util", - "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" - } - }, - "npm:bluebird": { - "type": "npm", - "name": "npm:bluebird", - "data": { - "version": "3.7.2", - "packageName": "bluebird", - "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - } - }, - "npm:bluebird@3.4.7": { - "type": "npm", - "name": "npm:bluebird@3.4.7", - "data": { - "version": "3.4.7", - "packageName": "bluebird", - "hash": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" - } - }, - "npm:bn.js": { - "type": "npm", - "name": "npm:bn.js", - "data": { - "version": "4.11.9", - "packageName": "bn.js", - "hash": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "1.19.2", - "packageName": "body-parser", - "hash": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==" - } - }, - "npm:body-scroll-lock": { - "type": "npm", - "name": "npm:body-scroll-lock", - "data": { - "version": "3.1.5", - "packageName": "body-scroll-lock", - "hash": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==" - } - }, - "npm:bonjour": { - "type": "npm", - "name": "npm:bonjour", - "data": { - "version": "3.5.0", - "packageName": "bonjour", - "hash": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" - } - }, - "npm:boundary": { - "type": "npm", - "name": "npm:boundary", - "data": { - "version": "1.0.1", - "packageName": "boundary", - "hash": "sha1-TWfcJgLAzBbdm85+v4fpSCkPWBI=" - } - }, - "npm:boxen@1.3.0": { - "type": "npm", - "name": "npm:boxen@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "boxen", - "hash": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==" - } - }, - "npm:boxen": { - "type": "npm", - "name": "npm:boxen", - "data": { - "version": "4.2.0", - "packageName": "boxen", - "hash": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==" - } - }, - "npm:boxen@5.1.2": { - "type": "npm", - "name": "npm:boxen@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "boxen", - "hash": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==" - } - }, - "npm:bplist-parser": { - "type": "npm", - "name": "npm:bplist-parser", - "data": { - "version": "0.1.1", - "packageName": "bplist-parser", - "hash": "sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==" - } - }, - "npm:brace-expansion@1.1.11": { - "type": "npm", - "name": "npm:brace-expansion@1.1.11", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "2.0.1", - "packageName": "brace-expansion", - "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" - } - }, - "npm:brace": { - "type": "npm", - "name": "npm:brace", - "data": { - "version": "0.11.1", - "packageName": "brace", - "hash": "sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg=" - } - }, - "npm:braces@2.3.2": { - "type": "npm", - "name": "npm:braces@2.3.2", - "data": { - "version": "2.3.2", - "packageName": "braces", - "hash": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:brorand": { - "type": "npm", - "name": "npm:brorand", - "data": { - "version": "1.1.0", - "packageName": "brorand", - "hash": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - } - }, - "npm:brotli-size": { - "type": "npm", - "name": "npm:brotli-size", - "data": { - "version": "4.0.0", - "packageName": "brotli-size", - "hash": "sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==" - } - }, - "npm:browser-assert": { - "type": "npm", - "name": "npm:browser-assert", - "data": { - "version": "1.2.1", - "packageName": "browser-assert", - "hash": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==" - } - }, - "npm:browser-stdout": { - "type": "npm", - "name": "npm:browser-stdout", - "data": { - "version": "1.3.1", - "packageName": "browser-stdout", - "hash": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==" - } - }, - "npm:browserify-aes": { - "type": "npm", - "name": "npm:browserify-aes", - "data": { - "version": "1.2.0", - "packageName": "browserify-aes", - "hash": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==" - } - }, - "npm:browserify-cipher": { - "type": "npm", - "name": "npm:browserify-cipher", - "data": { - "version": "1.0.1", - "packageName": "browserify-cipher", - "hash": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==" - } - }, - "npm:browserify-des": { - "type": "npm", - "name": "npm:browserify-des", - "data": { - "version": "1.0.2", - "packageName": "browserify-des", - "hash": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==" - } - }, - "npm:browserify-mime": { - "type": "npm", - "name": "npm:browserify-mime", - "data": { - "version": "1.2.9", - "packageName": "browserify-mime", - "hash": "sha512-uz+ItyJXBLb6wgon1ELEiVowJBEsy03PUWGRQU7cxxx9S+DW2hujPp+DaMYEOClRPzsn7NB99NtJ6pGnt8y+CQ==" - } - }, - "npm:browserify-rsa": { - "type": "npm", - "name": "npm:browserify-rsa", - "data": { - "version": "4.0.1", - "packageName": "browserify-rsa", - "hash": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=" - } - }, - "npm:browserify-sign": { - "type": "npm", - "name": "npm:browserify-sign", - "data": { - "version": "4.0.4", - "packageName": "browserify-sign", - "hash": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=" - } - }, - "npm:browserify-zlib": { - "type": "npm", - "name": "npm:browserify-zlib", - "data": { - "version": "0.2.0", - "packageName": "browserify-zlib", - "hash": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.22.1", - "packageName": "browserslist", - "hash": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==" - } - }, - "npm:bs-logger": { - "type": "npm", - "name": "npm:bs-logger", - "data": { - "version": "0.2.6", - "packageName": "bs-logger", - "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" - } - }, - "npm:bser": { - "type": "npm", - "name": "npm:bser", - "data": { - "version": "2.1.0", - "packageName": "bser", - "hash": "sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg==" - } - }, - "npm:buffer-crc32": { - "type": "npm", - "name": "npm:buffer-crc32", - "data": { - "version": "0.2.13", - "packageName": "buffer-crc32", - "hash": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" - } - }, - "npm:buffer-equal-constant-time": { - "type": "npm", - "name": "npm:buffer-equal-constant-time", - "data": { - "version": "1.0.1", - "packageName": "buffer-equal-constant-time", - "hash": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" - } - }, - "npm:buffer-equal": { - "type": "npm", - "name": "npm:buffer-equal", - "data": { - "version": "1.0.0", - "packageName": "buffer-equal", - "hash": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.1", - "packageName": "buffer-from", - "hash": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - } - }, - "npm:buffer-indexof-polyfill": { - "type": "npm", - "name": "npm:buffer-indexof-polyfill", - "data": { - "version": "1.0.2", - "packageName": "buffer-indexof-polyfill", - "hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" - } - }, - "npm:buffer-indexof": { - "type": "npm", - "name": "npm:buffer-indexof", - "data": { - "version": "1.1.1", - "packageName": "buffer-indexof", - "hash": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" - } - }, - "npm:buffer-xor": { - "type": "npm", - "name": "npm:buffer-xor", - "data": { - "version": "1.0.3", - "packageName": "buffer-xor", - "hash": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" - } - }, - "npm:buffer@4.9.1": { - "type": "npm", - "name": "npm:buffer@4.9.1", - "data": { - "version": "4.9.1", - "packageName": "buffer", - "hash": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:buffer@6.0.3": { - "type": "npm", - "name": "npm:buffer@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "buffer", - "hash": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==" - } - }, - "npm:buffers": { - "type": "npm", - "name": "npm:buffers", - "data": { - "version": "0.1.1", - "packageName": "buffers", - "hash": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=" - } - }, - "npm:builtin-modules": { - "type": "npm", - "name": "npm:builtin-modules", - "data": { - "version": "3.1.0", - "packageName": "builtin-modules", - "hash": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==" - } - }, - "npm:builtin-status-codes": { - "type": "npm", - "name": "npm:builtin-status-codes", - "data": { - "version": "3.0.0", - "packageName": "builtin-status-codes", - "hash": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" - } - }, - "npm:builtins@1.0.3": { - "type": "npm", - "name": "npm:builtins@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "builtins", - "hash": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "5.0.1", - "packageName": "builtins", - "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" - } - }, - "npm:byte-size": { - "type": "npm", - "name": "npm:byte-size", - "data": { - "version": "8.1.1", - "packageName": "byte-size", - "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" - } - }, - "npm:bytes@3.0.0": { - "type": "npm", - "name": "npm:bytes@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "bytes", - "hash": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:cacache@12.0.3": { - "type": "npm", - "name": "npm:cacache@12.0.3", - "data": { - "version": "12.0.3", - "packageName": "cacache", - "hash": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "15.0.5", - "packageName": "cacache", - "hash": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==" - } - }, - "npm:cacache@16.1.3": { - "type": "npm", - "name": "npm:cacache@16.1.3", - "data": { - "version": "16.1.3", - "packageName": "cacache", - "hash": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" - } - }, - "npm:cacache@17.1.3": { - "type": "npm", - "name": "npm:cacache@17.1.3", - "data": { - "version": "17.1.3", - "packageName": "cacache", - "hash": "sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==" - } - }, - "npm:cache-base": { - "type": "npm", - "name": "npm:cache-base", - "data": { - "version": "1.0.1", - "packageName": "cache-base", - "hash": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==" - } - }, - "npm:cache-content-type": { - "type": "npm", - "name": "npm:cache-content-type", - "data": { - "version": "1.0.1", - "packageName": "cache-content-type", - "hash": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==" - } - }, - "npm:cache-swap": { - "type": "npm", - "name": "npm:cache-swap", - "data": { - "version": "0.3.0", - "packageName": "cache-swap", - "hash": "sha1-HFQaoQilAQb2ML3Zj+HeyLoTP1E=" - } - }, - "npm:cacheable-lookup": { - "type": "npm", - "name": "npm:cacheable-lookup", - "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - } - }, - "npm:cacheable-lookup@6.1.0": { - "type": "npm", - "name": "npm:cacheable-lookup@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "cacheable-lookup", - "hash": "sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==" - } - }, - "npm:cacheable-request": { - "type": "npm", - "name": "npm:cacheable-request", - "data": { - "version": "7.0.2", - "packageName": "cacheable-request", - "hash": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==" - } - }, - "npm:cachedir": { - "type": "npm", - "name": "npm:cachedir", - "data": { - "version": "2.3.0", - "packageName": "cachedir", - "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.2", - "packageName": "call-bind", - "hash": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" - } - }, - "npm:call-me-maybe": { - "type": "npm", - "name": "npm:call-me-maybe", - "data": { - "version": "1.0.1", - "packageName": "call-me-maybe", - "hash": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" - } - }, - "npm:caller-callsite": { - "type": "npm", - "name": "npm:caller-callsite", - "data": { - "version": "2.0.0", - "packageName": "caller-callsite", - "hash": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=" - } - }, - "npm:caller-path": { - "type": "npm", - "name": "npm:caller-path", - "data": { - "version": "2.0.0", - "packageName": "caller-path", - "hash": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=" - } - }, - "npm:callsites@2.0.0": { - "type": "npm", - "name": "npm:callsites@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "callsites", - "hash": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camel-case": { - "type": "npm", - "name": "npm:camel-case", - "data": { - "version": "3.0.0", - "packageName": "camel-case", - "hash": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=" - } - }, - "npm:camel-case@4.1.2": { - "type": "npm", - "name": "npm:camel-case@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "camel-case", - "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" - } - }, - "npm:camelcase-css": { - "type": "npm", - "name": "npm:camelcase-css", - "data": { - "version": "2.0.1", - "packageName": "camelcase-css", - "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" - } - }, - "npm:camelcase-keys@2.1.0": { - "type": "npm", - "name": "npm:camelcase-keys@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "camelcase-keys", - "hash": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=" - } - }, - "npm:camelcase-keys": { - "type": "npm", - "name": "npm:camelcase-keys", - "data": { - "version": "6.2.2", - "packageName": "camelcase-keys", - "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" - } - }, - "npm:camelcase@2.1.1": { - "type": "npm", - "name": "npm:camelcase@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "camelcase", - "hash": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" - } - }, - "npm:camelcase@3.0.0": { - "type": "npm", - "name": "npm:camelcase@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "camelcase", - "hash": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - } - }, - "npm:camelcase@4.1.0": { - "type": "npm", - "name": "npm:camelcase@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "camelcase", - "hash": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" - } - }, - "npm:camelcase": { - "type": "npm", - "name": "npm:camelcase", - "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.2.1": { - "type": "npm", - "name": "npm:camelcase@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "camelcase", - "hash": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==" - } - }, - "npm:camelize": { - "type": "npm", - "name": "npm:camelize", - "data": { - "version": "1.0.0", - "packageName": "camelize", - "hash": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001553", - "packageName": "caniuse-lite", - "hash": "sha512-N0ttd6TrFfuqKNi+pMgWJTb9qrdJu4JSpgPFLe/lrD19ugC6fZgF0pUewRowDwzdDnb9V41mFcdlYgl/PyKf4A==" - } - }, - "npm:capture-exit": { - "type": "npm", - "name": "npm:capture-exit", - "data": { - "version": "2.0.0", - "packageName": "capture-exit", - "hash": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==" - } - }, - "npm:capture-stack-trace": { - "type": "npm", - "name": "npm:capture-stack-trace", - "data": { - "version": "1.0.1", - "packageName": "capture-stack-trace", - "hash": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==" - } - }, - "npm:cardinal": { - "type": "npm", - "name": "npm:cardinal", - "data": { - "version": "2.1.1", - "packageName": "cardinal", - "hash": "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=" - } - }, - "npm:case-sensitive-paths-webpack-plugin": { - "type": "npm", - "name": "npm:case-sensitive-paths-webpack-plugin", - "data": { - "version": "2.4.0", - "packageName": "case-sensitive-paths-webpack-plugin", - "hash": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==" - } - }, - "npm:caseless": { - "type": "npm", - "name": "npm:caseless", - "data": { - "version": "0.12.0", - "packageName": "caseless", - "hash": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - } - }, - "npm:ccount": { - "type": "npm", - "name": "npm:ccount", - "data": { - "version": "1.1.0", - "packageName": "ccount", - "hash": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" - } - }, - "npm:chai-spies": { - "type": "npm", - "name": "npm:chai-spies", - "data": { - "version": "1.0.0", - "packageName": "chai-spies", - "hash": "sha512-elF2ZUczBsFoP07qCfMO/zeggs8pqCf3fZGyK5+2X4AndS8jycZYID91ztD9oQ7d/0tnS963dPkd0frQEThDsg==" - } - }, - "npm:chai": { - "type": "npm", - "name": "npm:chai", - "data": { - "version": "4.3.6", - "packageName": "chai", - "hash": "sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==" - } - }, - "npm:chainsaw": { - "type": "npm", - "name": "npm:chainsaw", - "data": { - "version": "0.1.0", - "packageName": "chainsaw", - "hash": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "4.1.0", - "packageName": "chalk", - "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" - } - }, - "npm:chalk@4.1.2": { - "type": "npm", - "name": "npm:chalk@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:chalk@1.1.3": { - "type": "npm", - "name": "npm:chalk@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "chalk", - "hash": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=" - } - }, - "npm:chalk@2.4.2": { - "type": "npm", - "name": "npm:chalk@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk@3.0.0": { - "type": "npm", - "name": "npm:chalk@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chalk", - "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" - } - }, - "npm:chalk@5.2.0": { - "type": "npm", - "name": "npm:chalk@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "chalk", - "hash": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==" - } - }, - "npm:change-case": { - "type": "npm", - "name": "npm:change-case", - "data": { - "version": "3.1.0", - "packageName": "change-case", - "hash": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==" - } - }, - "npm:char-regex": { - "type": "npm", - "name": "npm:char-regex", - "data": { - "version": "1.0.2", - "packageName": "char-regex", - "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - } - }, - "npm:char-regex@2.0.1": { - "type": "npm", - "name": "npm:char-regex@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "char-regex", - "hash": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" - } - }, - "npm:character-entities-legacy": { - "type": "npm", - "name": "npm:character-entities-legacy", - "data": { - "version": "1.1.3", - "packageName": "character-entities-legacy", - "hash": "sha512-YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww==" - } - }, - "npm:character-entities": { - "type": "npm", - "name": "npm:character-entities", - "data": { - "version": "1.2.3", - "packageName": "character-entities", - "hash": "sha512-yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w==" - } - }, - "npm:character-reference-invalid": { - "type": "npm", - "name": "npm:character-reference-invalid", - "data": { - "version": "1.1.3", - "packageName": "character-reference-invalid", - "hash": "sha512-VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg==" - } - }, - "npm:chardet": { - "type": "npm", - "name": "npm:chardet", - "data": { - "version": "0.7.0", - "packageName": "chardet", - "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - } - }, - "npm:check-error": { - "type": "npm", - "name": "npm:check-error", - "data": { - "version": "1.0.2", - "packageName": "check-error", - "hash": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=" - } - }, - "npm:check-more-types": { - "type": "npm", - "name": "npm:check-more-types", - "data": { - "version": "2.24.0", - "packageName": "check-more-types", - "hash": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=" - } - }, - "npm:cheerio": { - "type": "npm", - "name": "npm:cheerio", - "data": { - "version": "1.0.0-rc.3", - "packageName": "cheerio", - "hash": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==" - } - }, - "npm:chokidar@3.3.0": { - "type": "npm", - "name": "npm:chokidar@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "chokidar", - "hash": "sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "3.5.3", - "packageName": "chokidar", - "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" - } - }, - "npm:chokidar@2.1.8": { - "type": "npm", - "name": "npm:chokidar@2.1.8", - "data": { - "version": "2.1.8", - "packageName": "chokidar", - "hash": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==" - } - }, - "npm:chownr@1.1.4": { - "type": "npm", - "name": "npm:chownr@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "chownr", - "hash": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "2.0.0", - "packageName": "chownr", - "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - } - }, - "npm:chrome-remote-interface": { - "type": "npm", - "name": "npm:chrome-remote-interface", - "data": { - "version": "0.28.2", - "packageName": "chrome-remote-interface", - "hash": "sha512-F7mjof7rWvRNsJqhVXuiFU/HWySCxTA9tzpLxUJxVfdLkljwFJ1aMp08AnwXRmmP7r12/doTDOMwaNhFCJsacw==" - } - }, - "npm:chrome-trace-event": { - "type": "npm", - "name": "npm:chrome-trace-event", - "data": { - "version": "1.0.2", - "packageName": "chrome-trace-event", - "hash": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.8.0", - "packageName": "ci-info", - "hash": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==" - } - }, - "npm:ci-info@1.6.0": { - "type": "npm", - "name": "npm:ci-info@1.6.0", - "data": { - "version": "1.6.0", - "packageName": "ci-info", - "hash": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==" - } - }, - "npm:ci-info@2.0.0": { - "type": "npm", - "name": "npm:ci-info@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ci-info", - "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - } - }, - "npm:cipher-base": { - "type": "npm", - "name": "npm:cipher-base", - "data": { - "version": "1.0.4", - "packageName": "cipher-base", - "hash": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==" - } - }, - "npm:circular-dependency-plugin": { - "type": "npm", - "name": "npm:circular-dependency-plugin", - "data": { - "version": "5.2.2", - "packageName": "circular-dependency-plugin", - "hash": "sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.2.2", - "packageName": "cjs-module-lexer", - "hash": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" - } - }, - "npm:class-utils": { - "type": "npm", - "name": "npm:class-utils", - "data": { - "version": "0.3.6", - "packageName": "class-utils", - "hash": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==" - } - }, - "npm:classnames": { - "type": "npm", - "name": "npm:classnames", - "data": { - "version": "2.2.6", - "packageName": "classnames", - "hash": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" - } - }, - "npm:clean-css": { - "type": "npm", - "name": "npm:clean-css", - "data": { - "version": "4.2.3", - "packageName": "clean-css", - "hash": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:clean-stack@4.2.0": { - "type": "npm", - "name": "npm:clean-stack@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "clean-stack", - "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" - } - }, - "npm:clean-webpack-plugin": { - "type": "npm", - "name": "npm:clean-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "clean-webpack-plugin", - "hash": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==" - } - }, - "npm:cli-boxes@1.0.0": { - "type": "npm", - "name": "npm:cli-boxes@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "cli-boxes", - "hash": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=" - } - }, - "npm:cli-boxes": { - "type": "npm", - "name": "npm:cli-boxes", - "data": { - "version": "2.2.1", - "packageName": "cli-boxes", - "hash": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-cursor@2.1.0": { - "type": "npm", - "name": "npm:cli-cursor@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "cli-cursor", - "hash": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.6.1", - "packageName": "cli-spinners", - "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" - } - }, - "npm:cli-table3": { - "type": "npm", - "name": "npm:cli-table3", - "data": { - "version": "0.6.3", - "packageName": "cli-table3", - "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" - } - }, - "npm:cli-table": { - "type": "npm", - "name": "npm:cli-table", - "data": { - "version": "0.3.1", - "packageName": "cli-table", - "hash": "sha1-9TsFJmqLGguTSz0IIebi3FkUriM=" - } - }, - "npm:cli-truncate": { - "type": "npm", - "name": "npm:cli-truncate", - "data": { - "version": "2.1.0", - "packageName": "cli-truncate", - "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" - } - }, - "npm:cli-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "3.0.0", - "packageName": "cli-width", - "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" - } - }, - "npm:clipboard": { - "type": "npm", - "name": "npm:clipboard", - "data": { - "version": "2.0.4", - "packageName": "clipboard", - "hash": "sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==" - } - }, - "npm:cliui@3.2.0": { - "type": "npm", - "name": "npm:cliui@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "cliui", - "hash": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=" - } - }, - "npm:cliui@5.0.0": { - "type": "npm", - "name": "npm:cliui@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "cliui", - "hash": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==" - } - }, - "npm:cliui@6.0.0": { - "type": "npm", - "name": "npm:cliui@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "cliui", - "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" - } - }, - "npm:cliui@7.0.4": { - "type": "npm", - "name": "npm:cliui@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "cliui", - "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:clone-buffer": { - "type": "npm", - "name": "npm:clone-buffer", - "data": { - "version": "1.0.0", - "packageName": "clone-buffer", - "hash": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:clone-response": { - "type": "npm", - "name": "npm:clone-response", - "data": { - "version": "1.0.2", - "packageName": "clone-response", - "hash": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" - } - }, - "npm:clone-stats@0.0.1": { - "type": "npm", - "name": "npm:clone-stats@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "clone-stats", - "hash": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" - } - }, - "npm:clone-stats": { - "type": "npm", - "name": "npm:clone-stats", - "data": { - "version": "1.0.0", - "packageName": "clone-stats", - "hash": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" - } - }, - "npm:clone@2.1.2": { - "type": "npm", - "name": "npm:clone@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "clone", - "hash": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" - } - }, - "npm:cloneable-readable": { - "type": "npm", - "name": "npm:cloneable-readable", - "data": { - "version": "1.1.3", - "packageName": "cloneable-readable", - "hash": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" - } - }, - "npm:clsx": { - "type": "npm", - "name": "npm:clsx", - "data": { - "version": "1.1.0", - "packageName": "clsx", - "hash": "sha512-3avwM37fSK5oP6M5rQ9CNe99lwxhXDOeSWVPAOYF6OazUTgZCMb0yWlJpmdD74REy1gkEaFiub2ULv4fq9GUhA==" - } - }, - "npm:cmd-shim": { - "type": "npm", - "name": "npm:cmd-shim", - "data": { - "version": "6.0.1", - "packageName": "cmd-shim", - "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" - } - }, - "npm:co-body": { - "type": "npm", - "name": "npm:co-body", - "data": { - "version": "6.1.0", - "packageName": "co-body", - "hash": "sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" - } - }, - "npm:code-block-writer": { - "type": "npm", - "name": "npm:code-block-writer", - "data": { - "version": "10.1.1", - "packageName": "code-block-writer", - "hash": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==" - } - }, - "npm:code-point-at": { - "type": "npm", - "name": "npm:code-point-at", - "data": { - "version": "1.1.0", - "packageName": "code-point-at", - "hash": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - } - }, - "npm:codesandbox-import-util-types": { - "type": "npm", - "name": "npm:codesandbox-import-util-types", - "data": { - "version": "2.2.3", - "packageName": "codesandbox-import-util-types", - "hash": "sha512-Qj00p60oNExthP2oR3vvXmUGjukij+rxJGuiaKM6tyUmSyimdZsqHI/TUvFFClAffk9s7hxGnQgWQ8KCce27qQ==" - } - }, - "npm:codesandbox-import-utils": { - "type": "npm", - "name": "npm:codesandbox-import-utils", - "data": { - "version": "2.2.3", - "packageName": "codesandbox-import-utils", - "hash": "sha512-ymtmcgZKU27U+nM2qUb21aO8Ut/u2S9s6KorOgG81weP+NA0UZkaHKlaRqbLJ9h4i/4FLvwmEXYAnTjNmp6ogg==" - } - }, - "npm:codesandboxer": { - "type": "npm", - "name": "npm:codesandboxer", - "data": { - "version": "1.0.3", - "packageName": "codesandboxer", - "hash": "sha512-LRBGbQ707AsaC8cPEMEr5K5y2EGskg7T5K4RIC30wzgr1LKeLEtB2exy4P+QwUrQKwJOgxmiq1yKPLnKzXWJ+w==" - } - }, - "npm:collapse-white-space": { - "type": "npm", - "name": "npm:collapse-white-space", - "data": { - "version": "1.0.6", - "packageName": "collapse-white-space", - "hash": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" - } - }, - "npm:collect-v8-coverage": { - "type": "npm", - "name": "npm:collect-v8-coverage", - "data": { - "version": "1.0.1", - "packageName": "collect-v8-coverage", - "hash": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" - } - }, - "npm:collection-map": { - "type": "npm", - "name": "npm:collection-map", - "data": { - "version": "1.0.0", - "packageName": "collection-map", - "hash": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=" - } - }, - "npm:collection-visit": { - "type": "npm", - "name": "npm:collection-visit", - "data": { - "version": "1.0.0", - "packageName": "collection-visit", - "hash": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=" - } - }, - "npm:color-check": { - "type": "npm", - "name": "npm:color-check", - "data": { - "version": "0.0.2", - "packageName": "color-check", - "hash": "sha1-L07qW3QykYGtzAd+DOhF2UEbR8Q=" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:color-convert@2.0.1": { - "type": "npm", - "name": "npm:color-convert@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-name@1.1.3": { - "type": "npm", - "name": "npm:color-name@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:color-string": { - "type": "npm", - "name": "npm:color-string", - "data": { - "version": "1.5.5", - "packageName": "color-string", - "hash": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==" - } - }, - "npm:color-support": { - "type": "npm", - "name": "npm:color-support", - "data": { - "version": "1.1.3", - "packageName": "color-support", - "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" - } - }, - "npm:color": { - "type": "npm", - "name": "npm:color", - "data": { - "version": "3.1.2", - "packageName": "color", - "hash": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "1.2.2", - "packageName": "colorette", - "hash": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" - } - }, - "npm:colorette@2.0.20": { - "type": "npm", - "name": "npm:colorette@2.0.20", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:colors@1.0.3": { - "type": "npm", - "name": "npm:colors@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "colors", - "hash": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - } - }, - "npm:colors@1.4.0": { - "type": "npm", - "name": "npm:colors@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "colors", - "hash": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" - } - }, - "npm:colors": { - "type": "npm", - "name": "npm:colors", - "data": { - "version": "1.2.5", - "packageName": "colors", - "hash": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==" - } - }, - "npm:columnify": { - "type": "npm", - "name": "npm:columnify", - "data": { - "version": "1.6.0", - "packageName": "columnify", - "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:comma-separated-tokens": { - "type": "npm", - "name": "npm:comma-separated-tokens", - "data": { - "version": "1.0.7", - "packageName": "comma-separated-tokens", - "hash": "sha512-Jrx3xsP4pPv4AwJUDWY9wOXGtwPXARej6Xd99h4TUGotmf8APuquKMpK+dnD3UgyxK7OEWaisjZz+3b5jtL6xQ==" - } - }, - "npm:command-line-args": { - "type": "npm", - "name": "npm:command-line-args", - "data": { - "version": "5.2.1", - "packageName": "command-line-args", - "hash": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==" - } - }, - "npm:command-line-usage": { - "type": "npm", - "name": "npm:command-line-usage", - "data": { - "version": "6.1.3", - "packageName": "command-line-usage", - "hash": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==" - } - }, - "npm:commander@11.0.0": { - "type": "npm", - "name": "npm:commander@11.0.0", - "data": { - "version": "11.0.0", - "packageName": "commander", - "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" - } - }, - "npm:commander@2.11.0": { - "type": "npm", - "name": "npm:commander@2.11.0", - "data": { - "version": "2.11.0", - "packageName": "commander", - "hash": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" - } - }, - "npm:commander@7.2.0": { - "type": "npm", - "name": "npm:commander@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "2.20.3", - "packageName": "commander", - "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } - }, - "npm:commander@4.1.1": { - "type": "npm", - "name": "npm:commander@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "commander", - "hash": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" - } - }, - "npm:commander@5.1.0": { - "type": "npm", - "name": "npm:commander@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "commander", - "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" - } - }, - "npm:commander@6.2.1": { - "type": "npm", - "name": "npm:commander@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "commander", - "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" - } - }, - "npm:comment-parser": { - "type": "npm", - "name": "npm:comment-parser", - "data": { - "version": "1.3.1", - "packageName": "comment-parser", - "hash": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==" - } - }, - "npm:common-path-prefix": { - "type": "npm", - "name": "npm:common-path-prefix", - "data": { - "version": "3.0.0", - "packageName": "common-path-prefix", - "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - } - }, - "npm:common-tags": { - "type": "npm", - "name": "npm:common-tags", - "data": { - "version": "1.8.0", - "packageName": "common-tags", - "hash": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" - } - }, - "npm:commondir": { - "type": "npm", - "name": "npm:commondir", - "data": { - "version": "1.0.1", - "packageName": "commondir", - "hash": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" - } - }, - "npm:compare-func": { - "type": "npm", - "name": "npm:compare-func", - "data": { - "version": "2.0.0", - "packageName": "compare-func", - "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" - } - }, - "npm:component-emitter": { - "type": "npm", - "name": "npm:component-emitter", - "data": { - "version": "1.3.0", - "packageName": "component-emitter", - "hash": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" - } - }, - "npm:compressible": { - "type": "npm", - "name": "npm:compressible", - "data": { - "version": "2.0.17", - "packageName": "compressible", - "hash": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==" - } - }, - "npm:compression": { - "type": "npm", - "name": "npm:compression", - "data": { - "version": "1.7.4", - "packageName": "compression", - "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - } - }, - "npm:compute-scroll-into-view": { - "type": "npm", - "name": "npm:compute-scroll-into-view", - "data": { - "version": "1.0.11", - "packageName": "compute-scroll-into-view", - "hash": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - } - }, - "npm:concat-stream": { - "type": "npm", - "name": "npm:concat-stream", - "data": { - "version": "1.6.2", - "packageName": "concat-stream", - "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" - } - }, - "npm:concat-stream@2.0.0": { - "type": "npm", - "name": "npm:concat-stream@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "concat-stream", - "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" - } - }, - "npm:configstore": { - "type": "npm", - "name": "npm:configstore", - "data": { - "version": "3.1.2", - "packageName": "configstore", - "hash": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==" - } - }, - "npm:confusing-browser-globals": { - "type": "npm", - "name": "npm:confusing-browser-globals", - "data": { - "version": "1.0.10", - "packageName": "confusing-browser-globals", - "hash": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" - } - }, - "npm:connect-history-api-fallback": { - "type": "npm", - "name": "npm:connect-history-api-fallback", - "data": { - "version": "1.6.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - } - }, - "npm:connect": { - "type": "npm", - "name": "npm:connect", - "data": { - "version": "3.7.0", - "packageName": "connect", - "hash": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==" - } - }, - "npm:console-browserify": { - "type": "npm", - "name": "npm:console-browserify", - "data": { - "version": "1.2.0", - "packageName": "console-browserify", - "hash": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - } - }, - "npm:console-control-strings": { - "type": "npm", - "name": "npm:console-control-strings", - "data": { - "version": "1.1.0", - "packageName": "console-control-strings", - "hash": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" - } - }, - "npm:constant-case": { - "type": "npm", - "name": "npm:constant-case", - "data": { - "version": "2.0.0", - "packageName": "constant-case", - "hash": "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=" - } - }, - "npm:constants-browserify": { - "type": "npm", - "name": "npm:constants-browserify", - "data": { - "version": "1.0.0", - "packageName": "constants-browserify", - "hash": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "0.5.4", - "packageName": "content-disposition", - "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.4", - "packageName": "content-type", - "hash": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - } - }, - "npm:conventional-changelog-angular": { - "type": "npm", - "name": "npm:conventional-changelog-angular", - "data": { - "version": "6.0.0", - "packageName": "conventional-changelog-angular", - "hash": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==" - } - }, - "npm:conventional-changelog-core": { - "type": "npm", - "name": "npm:conventional-changelog-core", - "data": { - "version": "5.0.1", - "packageName": "conventional-changelog-core", - "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" - } - }, - "npm:conventional-changelog-preset-loader": { - "type": "npm", - "name": "npm:conventional-changelog-preset-loader", - "data": { - "version": "3.0.0", - "packageName": "conventional-changelog-preset-loader", - "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" - } - }, - "npm:conventional-changelog-writer": { - "type": "npm", - "name": "npm:conventional-changelog-writer", - "data": { - "version": "6.0.1", - "packageName": "conventional-changelog-writer", - "hash": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==" - } - }, - "npm:conventional-commits-filter": { - "type": "npm", - "name": "npm:conventional-commits-filter", - "data": { - "version": "3.0.0", - "packageName": "conventional-commits-filter", - "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" - } - }, - "npm:conventional-commits-parser": { - "type": "npm", - "name": "npm:conventional-commits-parser", - "data": { - "version": "4.0.0", - "packageName": "conventional-commits-parser", - "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" - } - }, - "npm:conventional-recommended-bump": { - "type": "npm", - "name": "npm:conventional-recommended-bump", - "data": { - "version": "7.0.1", - "packageName": "conventional-recommended-bump", - "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "1.8.0", - "packageName": "convert-source-map", - "hash": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==" - } - }, - "npm:convert-source-map@2.0.0": { - "type": "npm", - "name": "npm:convert-source-map@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.0.6", - "packageName": "cookie-signature", - "hash": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.4.2", - "packageName": "cookie", - "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" - } - }, - "npm:cookies": { - "type": "npm", - "name": "npm:cookies", - "data": { - "version": "0.8.0", - "packageName": "cookies", - "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" - } - }, - "npm:copy-concurrently": { - "type": "npm", - "name": "npm:copy-concurrently", - "data": { - "version": "1.0.5", - "packageName": "copy-concurrently", - "hash": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==" - } - }, - "npm:copy-descriptor": { - "type": "npm", - "name": "npm:copy-descriptor", - "data": { - "version": "0.1.1", - "packageName": "copy-descriptor", - "hash": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" - } - }, - "npm:copy-props": { - "type": "npm", - "name": "npm:copy-props", - "data": { - "version": "2.0.5", - "packageName": "copy-props", - "hash": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==" - } - }, - "npm:copy-to-clipboard": { - "type": "npm", - "name": "npm:copy-to-clipboard", - "data": { - "version": "3.3.1", - "packageName": "copy-to-clipboard", - "hash": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==" - } - }, - "npm:copy-to": { - "type": "npm", - "name": "npm:copy-to", - "data": { - "version": "2.0.1", - "packageName": "copy-to", - "hash": "sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==" - } - }, - "npm:copy-webpack-plugin": { - "type": "npm", - "name": "npm:copy-webpack-plugin", - "data": { - "version": "8.1.0", - "packageName": "copy-webpack-plugin", - "hash": "sha512-Soiq8kXI2AZkpw3dSp18u6oU2JonC7UKv3UdXsKOmT1A5QT46ku9+6c0Qy29JDbSavQJNN1/eKGpd3QNw+cZWg==" - } - }, - "npm:core-js-compat": { - "type": "npm", - "name": "npm:core-js-compat", - "data": { - "version": "3.33.1", - "packageName": "core-js-compat", - "hash": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==" - } - }, - "npm:core-js-pure": { - "type": "npm", - "name": "npm:core-js-pure", - "data": { - "version": "3.21.1", - "packageName": "core-js-pure", - "hash": "sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==" - } - }, - "npm:core-js": { - "type": "npm", - "name": "npm:core-js", - "data": { - "version": "3.15.2", - "packageName": "core-js", - "hash": "sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q==" - } - }, - "npm:core-js@2.6.11": { - "type": "npm", - "name": "npm:core-js@2.6.11", - "data": { - "version": "2.6.11", - "packageName": "core-js", - "hash": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==" - } - }, - "npm:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.2", - "packageName": "core-util-is", - "hash": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - } - }, - "npm:cors": { - "type": "npm", - "name": "npm:cors", - "data": { - "version": "2.8.5", - "packageName": "cors", - "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" - } - }, - "npm:cosmiconfig@8.0.0": { - "type": "npm", - "name": "npm:cosmiconfig@8.0.0", - "data": { - "version": "8.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==" - } - }, - "npm:cosmiconfig@8.2.0": { - "type": "npm", - "name": "npm:cosmiconfig@8.2.0", - "data": { - "version": "8.2.0", - "packageName": "cosmiconfig", - "hash": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==" - } - }, - "npm:cosmiconfig@5.2.1": { - "type": "npm", - "name": "npm:cosmiconfig@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "cosmiconfig", - "hash": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" - } - }, - "npm:cosmiconfig@6.0.0": { - "type": "npm", - "name": "npm:cosmiconfig@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "7.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==" - } - }, - "npm:cp-file": { - "type": "npm", - "name": "npm:cp-file", - "data": { - "version": "7.0.0", - "packageName": "cp-file", - "hash": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==" - } - }, - "npm:cpy": { - "type": "npm", - "name": "npm:cpy", - "data": { - "version": "8.1.2", - "packageName": "cpy", - "hash": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==" - } - }, - "npm:crc32": { - "type": "npm", - "name": "npm:crc32", - "data": { - "version": "0.2.2", - "packageName": "crc32", - "hash": "sha1-etIg1v/c0Rn5/BJ6d3LKzqOQpLo=" - } - }, - "npm:create-ecdh": { - "type": "npm", - "name": "npm:create-ecdh", - "data": { - "version": "4.0.3", - "packageName": "create-ecdh", - "hash": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==" - } - }, - "npm:create-error-class": { - "type": "npm", - "name": "npm:create-error-class", - "data": { - "version": "3.0.2", - "packageName": "create-error-class", - "hash": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=" - } - }, - "npm:create-hash": { - "type": "npm", - "name": "npm:create-hash", - "data": { - "version": "1.2.0", - "packageName": "create-hash", - "hash": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==" - } - }, - "npm:create-hmac": { - "type": "npm", - "name": "npm:create-hmac", - "data": { - "version": "1.1.7", - "packageName": "create-hmac", - "hash": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:create-require": { - "type": "npm", - "name": "npm:create-require", - "data": { - "version": "1.1.1", - "packageName": "create-require", - "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - } - }, - "npm:cross-env": { - "type": "npm", - "name": "npm:cross-env", - "data": { - "version": "5.2.1", - "packageName": "cross-env", - "hash": "sha512-1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==" - } - }, - "npm:cross-fetch": { - "type": "npm", - "name": "npm:cross-fetch", - "data": { - "version": "3.1.5", - "packageName": "cross-fetch", - "hash": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==" - } - }, - "npm:cross-spawn@5.1.0": { - "type": "npm", - "name": "npm:cross-spawn@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "cross-spawn", - "hash": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=" - } - }, - "npm:cross-spawn@6.0.5": { - "type": "npm", - "name": "npm:cross-spawn@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "cross-spawn", - "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:crypto-browserify": { - "type": "npm", - "name": "npm:crypto-browserify", - "data": { - "version": "3.12.0", - "packageName": "crypto-browserify", - "hash": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==" - } - }, - "npm:crypto-random-string": { - "type": "npm", - "name": "npm:crypto-random-string", - "data": { - "version": "1.0.0", - "packageName": "crypto-random-string", - "hash": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" - } - }, - "npm:css-color-keywords": { - "type": "npm", - "name": "npm:css-color-keywords", - "data": { - "version": "1.0.0", - "packageName": "css-color-keywords", - "hash": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" - } - }, - "npm:css-in-js-utils": { - "type": "npm", - "name": "npm:css-in-js-utils", - "data": { - "version": "3.0.0", - "packageName": "css-in-js-utils", - "hash": "sha512-FSdC7hZIeSmEPANOZB/VHHeaYh+MiNvqLRP7MWVck6MQs2B5KHH3XmMU9Asb/6BdwDp+JTt1q+cGgSBCuFU1GQ==" - } - }, - "npm:css-loader": { - "type": "npm", - "name": "npm:css-loader", - "data": { - "version": "5.0.1", - "packageName": "css-loader", - "hash": "sha512-cXc2ti9V234cq7rJzFKhirb2L2iPy8ZjALeVJAozXYz9te3r4eqLSixNAbMDJSgJEQywqXzs8gonxaboeKqwiw==" - } - }, - "npm:css-loader@3.6.0": { - "type": "npm", - "name": "npm:css-loader@3.6.0", - "data": { - "version": "3.6.0", - "packageName": "css-loader", - "hash": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==" - } - }, - "npm:css-select@4.1.3": { - "type": "npm", - "name": "npm:css-select@4.1.3", - "data": { - "version": "4.1.3", - "packageName": "css-select", - "hash": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "1.2.0", - "packageName": "css-select", - "hash": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=" - } - }, - "npm:css-to-react-native": { - "type": "npm", - "name": "npm:css-to-react-native", - "data": { - "version": "3.0.0", - "packageName": "css-to-react-native", - "hash": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "2.1.3", - "packageName": "css-what", - "hash": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" - } - }, - "npm:css-what@5.0.1": { - "type": "npm", - "name": "npm:css-what@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "css-what", - "hash": "sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==" - } - }, - "npm:css.escape": { - "type": "npm", - "name": "npm:css.escape", - "data": { - "version": "1.5.1", - "packageName": "css.escape", - "hash": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" - } - }, - "npm:css": { - "type": "npm", - "name": "npm:css", - "data": { - "version": "2.2.4", - "packageName": "css", - "hash": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssfontparser": { - "type": "npm", - "name": "npm:cssfontparser", - "data": { - "version": "1.2.1", - "packageName": "cssfontparser", - "hash": "sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==" - } - }, - "npm:cssjanus": { - "type": "npm", - "name": "npm:cssjanus", - "data": { - "version": "2.1.0", - "packageName": "cssjanus", - "hash": "sha512-kAijbny3GmdOi9k+QT6DGIXqFvL96aksNlGr4Rhk9qXDZYWUojU4bRc3IHWxdaLNOqgEZHuXoe5Wl2l7dxLW5g==" - } - }, - "npm:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssom@0.3.8": { - "type": "npm", - "name": "npm:cssom@0.3.8", - "data": { - "version": "0.3.8", - "packageName": "cssom", - "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:csstype@2.6.19": { - "type": "npm", - "name": "npm:csstype@2.6.19", - "data": { - "version": "2.6.19", - "packageName": "csstype", - "hash": "sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==" - } - }, - "npm:csstype": { - "type": "npm", - "name": "npm:csstype", - "data": { - "version": "3.1.2", - "packageName": "csstype", - "hash": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - } - }, - "npm:csv-stringify": { - "type": "npm", - "name": "npm:csv-stringify", - "data": { - "version": "6.2.0", - "packageName": "csv-stringify", - "hash": "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA==" - } - }, - "npm:currently-unhandled": { - "type": "npm", - "name": "npm:currently-unhandled", - "data": { - "version": "0.4.1", - "packageName": "currently-unhandled", - "hash": "sha1-mI3zP+qxke95mmE2nddsF635V+o=" - } - }, - "npm:custom-event": { - "type": "npm", - "name": "npm:custom-event", - "data": { - "version": "1.0.1", - "packageName": "custom-event", - "hash": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=" - } - }, - "npm:cyclist": { - "type": "npm", - "name": "npm:cyclist", - "data": { - "version": "0.2.2", - "packageName": "cyclist", - "hash": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=" - } - }, - "npm:cypress-real-events": { - "type": "npm", - "name": "npm:cypress-real-events", - "data": { - "version": "1.7.1", - "packageName": "cypress-real-events", - "hash": "sha512-/Bg15RgJ0SYsuXc6lPqH08x19z6j2vmhWN4wXfJqm3z8BTAFiK2MvipZPzxT8Z0jJP0q7kuniWrLIvz/i/8lCQ==" - } - }, - "npm:cypress-storybook": { - "type": "npm", - "name": "npm:cypress-storybook", - "data": { - "version": "0.5.1", - "packageName": "cypress-storybook", - "hash": "sha512-+CNDdcrFD3QRvHrjwpVclFpLtseyXA0NxeB3PDTheisvg/OJjLkP96t0I9R66IkZRYUUE3mLhqZpmpsv59FIIw==" - } - }, - "npm:cypress": { - "type": "npm", - "name": "npm:cypress", - "data": { - "version": "10.6.0", - "packageName": "cypress", - "hash": "sha512-6sOpHjostp8gcLO34p6r/Ci342lBs8S5z9/eb3ZCQ22w2cIhMWGUoGKkosabPBfKcvRS9BE4UxybBtlIs8gTQA==" - } - }, - "npm:d3-array": { - "type": "npm", - "name": "npm:d3-array", - "data": { - "version": "1.2.1", - "packageName": "d3-array", - "hash": "sha512-CyINJQ0SOUHojDdFDH4JEM0552vCR1utGyLHegJHyYH0JyCpSeTPxi4OBqHMA2jJZq4NH782LtaJWBImqI/HBw==" - } - }, - "npm:d3-array@2.12.1": { - "type": "npm", - "name": "npm:d3-array@2.12.1", - "data": { - "version": "2.12.1", - "packageName": "d3-array", - "hash": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==" - } - }, - "npm:d3-axis": { - "type": "npm", - "name": "npm:d3-axis", - "data": { - "version": "1.0.8", - "packageName": "d3-axis", - "hash": "sha1-MacFoLU15ldZ3hQXOjGTMTfxjvo=" - } - }, - "npm:d3-collection": { - "type": "npm", - "name": "npm:d3-collection", - "data": { - "version": "1.0.7", - "packageName": "d3-collection", - "hash": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" - } - }, - "npm:d3-color": { - "type": "npm", - "name": "npm:d3-color", - "data": { - "version": "1.4.0", - "packageName": "d3-color", - "hash": "sha512-TzNPeJy2+iEepfiL92LAAB7fvnp/dV2YwANPVHdDWmYMm23qIJBYww3qT8I8C1wXrmrg4UWs7BKc2tKIgyjzHg==" - } - }, - "npm:d3-contour": { - "type": "npm", - "name": "npm:d3-contour", - "data": { - "version": "1.3.2", - "packageName": "d3-contour", - "hash": "sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg==" - } - }, - "npm:d3-dsv": { - "type": "npm", - "name": "npm:d3-dsv", - "data": { - "version": "3.0.1", - "packageName": "d3-dsv", - "hash": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==" - } - }, - "npm:d3-fetch": { - "type": "npm", - "name": "npm:d3-fetch", - "data": { - "version": "3.0.1", - "packageName": "d3-fetch", - "hash": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==" - } - }, - "npm:d3-format": { - "type": "npm", - "name": "npm:d3-format", - "data": { - "version": "1.4.4", - "packageName": "d3-format", - "hash": "sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw==" - } - }, - "npm:d3-geo": { - "type": "npm", - "name": "npm:d3-geo", - "data": { - "version": "1.11.9", - "packageName": "d3-geo", - "hash": "sha512-9edcH6J3s/Aa3KJITWqFJbyB/8q3mMlA9Fi7z6yy+FAYMnRaxmC7jBhUnsINxVWD14GmqX3DK8uk7nV6/Ekt4A==" - } - }, - "npm:d3-hexbin": { - "type": "npm", - "name": "npm:d3-hexbin", - "data": { - "version": "0.2.2", - "packageName": "d3-hexbin", - "hash": "sha1-nFg32s/UcasFM3qeke8Qv8T5iDE=" - } - }, - "npm:d3-hierarchy": { - "type": "npm", - "name": "npm:d3-hierarchy", - "data": { - "version": "2.0.0", - "packageName": "d3-hierarchy", - "hash": "sha512-SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw==" - } - }, - "npm:d3-hierarchy@1.1.9": { - "type": "npm", - "name": "npm:d3-hierarchy@1.1.9", - "data": { - "version": "1.1.9", - "packageName": "d3-hierarchy", - "hash": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==" - } - }, - "npm:d3-interpolate": { - "type": "npm", - "name": "npm:d3-interpolate", - "data": { - "version": "1.4.0", - "packageName": "d3-interpolate", - "hash": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==" - } - }, - "npm:d3-path": { - "type": "npm", - "name": "npm:d3-path", - "data": { - "version": "1.0.7", - "packageName": "d3-path", - "hash": "sha512-q0cW1RpvA5c5ma2rch62mX8AYaiLX0+bdaSM2wxSU9tXjU4DNvkx9qiUvjkuWCj3p22UO/hlPivujqMiR9PDzA==" - } - }, - "npm:d3-path@3.1.0": { - "type": "npm", - "name": "npm:d3-path@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "d3-path", - "hash": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==" - } - }, - "npm:d3-sankey": { - "type": "npm", - "name": "npm:d3-sankey", - "data": { - "version": "0.12.3", - "packageName": "d3-sankey", - "hash": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==" - } - }, - "npm:d3-sankey@0.7.1": { - "type": "npm", - "name": "npm:d3-sankey@0.7.1", - "data": { - "version": "0.7.1", - "packageName": "d3-sankey", - "hash": "sha1-0imDImj8aaf+yEgD6WwiVqYUxSE=" - } - }, - "npm:d3-scale": { - "type": "npm", - "name": "npm:d3-scale", - "data": { - "version": "1.0.7", - "packageName": "d3-scale", - "hash": "sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==" - } - }, - "npm:d3-scale@4.0.2": { - "type": "npm", - "name": "npm:d3-scale@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "d3-scale", - "hash": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==" - } - }, - "npm:d3-selection": { - "type": "npm", - "name": "npm:d3-selection", - "data": { - "version": "1.3.0", - "packageName": "d3-selection", - "hash": "sha512-qgpUOg9tl5CirdqESUAu0t9MU/t3O9klYfGfyKsXEmhyxyzLpzpeh08gaxBUTQw1uXIOkr/30Ut2YRjSSxlmHA==" - } - }, - "npm:d3-shape@3.2.0": { - "type": "npm", - "name": "npm:d3-shape@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "d3-shape", - "hash": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==" - } - }, - "npm:d3-shape": { - "type": "npm", - "name": "npm:d3-shape", - "data": { - "version": "1.3.7", - "packageName": "d3-shape", - "hash": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==" - } - }, - "npm:d3-time-format@2.1.3": { - "type": "npm", - "name": "npm:d3-time-format@2.1.3", - "data": { - "version": "2.1.3", - "packageName": "d3-time-format", - "hash": "sha512-6k0a2rZryzGm5Ihx+aFMuO1GgelgIz+7HhB4PH4OEndD5q2zGn1mDfRdNrulspOfR6JXkb2sThhDK41CSK85QA==" - } - }, - "npm:d3-time-format": { - "type": "npm", - "name": "npm:d3-time-format", - "data": { - "version": "3.0.0", - "packageName": "d3-time-format", - "hash": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==" - } - }, - "npm:d3-time@1.1.0": { - "type": "npm", - "name": "npm:d3-time@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "d3-time", - "hash": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" - } - }, - "npm:d3-time": { - "type": "npm", - "name": "npm:d3-time", - "data": { - "version": "2.1.1", - "packageName": "d3-time", - "hash": "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==" - } - }, - "npm:d3-voronoi": { - "type": "npm", - "name": "npm:d3-voronoi", - "data": { - "version": "1.1.4", - "packageName": "d3-voronoi", - "hash": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" - } - }, - "npm:d": { - "type": "npm", - "name": "npm:d", - "data": { - "version": "1.0.1", - "packageName": "d", - "hash": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" - } - }, - "npm:damerau-levenshtein": { - "type": "npm", - "name": "npm:damerau-levenshtein", - "data": { - "version": "1.0.7", - "packageName": "damerau-levenshtein", - "hash": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==" - } - }, - "npm:danger": { - "type": "npm", - "name": "npm:danger", - "data": { - "version": "11.0.2", - "packageName": "danger", - "hash": "sha512-TKE5E1Zrb0uV7Ft3mhbTA3bwVf4hZs7DVx6Mo8weVdIcaXJIIle3+aCjn259GX9/pF4ewoYuof7eLRPJligOgA==" - } - }, - "npm:dargs": { - "type": "npm", - "name": "npm:dargs", - "data": { - "version": "7.0.0", - "packageName": "dargs", - "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" - } - }, - "npm:dashdash": { - "type": "npm", - "name": "npm:dashdash", - "data": { - "version": "1.14.1", - "packageName": "dashdash", - "hash": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=" - } - }, - "npm:data-uri-to-buffer": { - "type": "npm", - "name": "npm:data-uri-to-buffer", - "data": { - "version": "4.0.1", - "packageName": "data-uri-to-buffer", - "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" - } - }, - "npm:data-urls": { - "type": "npm", - "name": "npm:data-urls", - "data": { - "version": "3.0.2", - "packageName": "data-urls", - "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" - } - }, - "npm:date-format": { - "type": "npm", - "name": "npm:date-format", - "data": { - "version": "4.0.4", - "packageName": "date-format", - "hash": "sha512-/jyf4rhB17ge328HJuJjAcmRtCsGd+NDeAtahRBTaK6vSPR6MO5HlrAit3Nn7dVjaa6sowW0WXt8yQtLyZQFRg==" - } - }, - "npm:date-utils": { - "type": "npm", - "name": "npm:date-utils", - "data": { - "version": "1.2.21", - "packageName": "date-utils", - "hash": "sha512-wJMBjqlwXR0Iv0wUo/lFbhSQ7MmG1hl36iuxuE91kW+5b5sWbase73manEqNH9sOLFAMG83B4ffNKq9/Iq0FVA==" - } - }, - "npm:dateformat@2.2.0": { - "type": "npm", - "name": "npm:dateformat@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "dateformat", - "hash": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=" - } - }, - "npm:dateformat": { - "type": "npm", - "name": "npm:dateformat", - "data": { - "version": "3.0.3", - "packageName": "dateformat", - "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" - } - }, - "npm:dayjs": { - "type": "npm", - "name": "npm:dayjs", - "data": { - "version": "1.11.0", - "packageName": "dayjs", - "hash": "sha512-JLC809s6Y948/FuCZPm5IX8rRhQwOiyMb2TfVVQEixG7P8Lm/gt5S7yoQZmC8x1UehI9Pb7sksEt4xx14m+7Ug==" - } - }, - "npm:debug-fabulous": { - "type": "npm", - "name": "npm:debug-fabulous", - "data": { - "version": "1.1.0", - "packageName": "debug-fabulous", - "hash": "sha512-GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==" - } - }, - "npm:debug@2.6.9": { - "type": "npm", - "name": "npm:debug@2.6.9", - "data": { - "version": "2.6.9", - "packageName": "debug", - "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - } - }, - "npm:debug@3.1.0": { - "type": "npm", - "name": "npm:debug@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "debug", - "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" - } - }, - "npm:debug@3.2.6": { - "type": "npm", - "name": "npm:debug@3.2.6", - "data": { - "version": "3.2.6", - "packageName": "debug", - "hash": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==" - } - }, - "npm:debug@3.2.7": { - "type": "npm", - "name": "npm:debug@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "debug", - "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug@4.1.1": { - "type": "npm", - "name": "npm:debug@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "debug", - "hash": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" - } - }, - "npm:decamelize-keys": { - "type": "npm", - "name": "npm:decamelize-keys", - "data": { - "version": "1.1.0", - "packageName": "decamelize-keys", - "hash": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=" - } - }, - "npm:decamelize": { - "type": "npm", - "name": "npm:decamelize", - "data": { - "version": "1.2.0", - "packageName": "decamelize", - "hash": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - } - }, - "npm:decamelize@4.0.0": { - "type": "npm", - "name": "npm:decamelize@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "decamelize", - "hash": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:decode-uri-component": { - "type": "npm", - "name": "npm:decode-uri-component", - "data": { - "version": "0.2.2", - "packageName": "decode-uri-component", - "hash": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" - } - }, - "npm:decompress-response": { - "type": "npm", - "name": "npm:decompress-response", - "data": { - "version": "6.0.0", - "packageName": "decompress-response", - "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" - } - }, - "npm:dedent": { - "type": "npm", - "name": "npm:dedent", - "data": { - "version": "0.7.0", - "packageName": "dedent", - "hash": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" - } - }, - "npm:dedent@1.5.1": { - "type": "npm", - "name": "npm:dedent@1.5.1", - "data": { - "version": "1.5.1", - "packageName": "dedent", - "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" - } - }, - "npm:deep-assign": { - "type": "npm", - "name": "npm:deep-assign", - "data": { - "version": "2.0.0", - "packageName": "deep-assign", - "hash": "sha1-6+BrHwfwja5ZdiDj3RYi83GhxXI=" - } - }, - "npm:deep-eql": { - "type": "npm", - "name": "npm:deep-eql", - "data": { - "version": "3.0.1", - "packageName": "deep-eql", - "hash": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==" - } - }, - "npm:deep-equal": { - "type": "npm", - "name": "npm:deep-equal", - "data": { - "version": "1.0.1", - "packageName": "deep-equal", - "hash": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" - } - }, - "npm:deep-extend": { - "type": "npm", - "name": "npm:deep-extend", - "data": { - "version": "0.6.0", - "packageName": "deep-extend", - "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.3", - "packageName": "deep-is", - "hash": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" - } - }, - "npm:deepmerge@2.2.1": { - "type": "npm", - "name": "npm:deepmerge@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "deepmerge", - "hash": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" - } - }, - "npm:deepmerge": { - "type": "npm", - "name": "npm:deepmerge", - "data": { - "version": "4.2.2", - "packageName": "deepmerge", - "hash": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" - } - }, - "npm:default-browser-id": { - "type": "npm", - "name": "npm:default-browser-id", - "data": { - "version": "1.0.4", - "packageName": "default-browser-id", - "hash": "sha1-5Z0JpdFXuCi4dsJoFuYcPSosIDo=" - } - }, - "npm:default-compare": { - "type": "npm", - "name": "npm:default-compare", - "data": { - "version": "1.0.0", - "packageName": "default-compare", - "hash": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==" - } - }, - "npm:default-gateway": { - "type": "npm", - "name": "npm:default-gateway", - "data": { - "version": "6.0.3", - "packageName": "default-gateway", - "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - } - }, - "npm:default-resolution": { - "type": "npm", - "name": "npm:default-resolution", - "data": { - "version": "2.0.0", - "packageName": "default-resolution", - "hash": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.3", - "packageName": "defaults", - "hash": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=" - } - }, - "npm:defer-to-connect": { - "type": "npm", - "name": "npm:defer-to-connect", - "data": { - "version": "2.0.1", - "packageName": "defer-to-connect", - "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:define-properties": { - "type": "npm", - "name": "npm:define-properties", - "data": { - "version": "1.1.3", - "packageName": "define-properties", - "hash": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" - } - }, - "npm:define-property": { - "type": "npm", - "name": "npm:define-property", - "data": { - "version": "0.2.5", - "packageName": "define-property", - "hash": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" - } - }, - "npm:define-property@1.0.0": { - "type": "npm", - "name": "npm:define-property@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "define-property", - "hash": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" - } - }, - "npm:define-property@2.0.2": { - "type": "npm", - "name": "npm:define-property@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "define-property", - "hash": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==" - } - }, - "npm:deflate-js": { - "type": "npm", - "name": "npm:deflate-js", - "data": { - "version": "0.2.3", - "packageName": "deflate-js", - "hash": "sha1-+Fq7WOvFFRowYUdHPVfD5PfkQms=" - } - }, - "npm:del": { - "type": "npm", - "name": "npm:del", - "data": { - "version": "6.0.0", - "packageName": "del", - "hash": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==" - } - }, - "npm:del@4.1.1": { - "type": "npm", - "name": "npm:del@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "del", - "hash": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" - } - }, - "npm:del@5.1.0": { - "type": "npm", - "name": "npm:del@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "del", - "hash": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==" - } - }, - "npm:del@7.0.0": { - "type": "npm", - "name": "npm:del@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "del", - "hash": "sha512-tQbV/4u5WVB8HMJr08pgw0b6nG4RGt/tj+7Numvq+zqcvUFeMaIWWOUFltiU+6go8BSO2/ogsB4EasDaj0y68Q==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - } - }, - "npm:delegate": { - "type": "npm", - "name": "npm:delegate", - "data": { - "version": "3.2.0", - "packageName": "delegate", - "hash": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" - } - }, - "npm:delegates": { - "type": "npm", - "name": "npm:delegates", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "1.1.2", - "packageName": "depd", - "hash": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - } - }, - "npm:depd@2.0.0": { - "type": "npm", - "name": "npm:depd@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:deprecation": { - "type": "npm", - "name": "npm:deprecation", - "data": { - "version": "2.3.1", - "packageName": "deprecation", - "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" - } - }, - "npm:des.js": { - "type": "npm", - "name": "npm:des.js", - "data": { - "version": "1.0.0", - "packageName": "des.js", - "hash": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=" - } - }, - "npm:destroy": { - "type": "npm", - "name": "npm:destroy", - "data": { - "version": "1.0.4", - "packageName": "destroy", - "hash": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - } - }, - "npm:detab": { - "type": "npm", - "name": "npm:detab", - "data": { - "version": "2.0.4", - "packageName": "detab", - "hash": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==" - } - }, - "npm:detect-file": { - "type": "npm", - "name": "npm:detect-file", - "data": { - "version": "1.0.0", - "packageName": "detect-file", - "hash": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" - } - }, - "npm:detect-indent@4.0.0": { - "type": "npm", - "name": "npm:detect-indent@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "detect-indent", - "hash": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=" - } - }, - "npm:detect-indent": { - "type": "npm", - "name": "npm:detect-indent", - "data": { - "version": "5.0.0", - "packageName": "detect-indent", - "hash": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "2.1.0", - "packageName": "detect-newline", - "hash": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=" - } - }, - "npm:detect-newline@3.1.0": { - "type": "npm", - "name": "npm:detect-newline@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:detect-node": { - "type": "npm", - "name": "npm:detect-node", - "data": { - "version": "2.0.4", - "packageName": "detect-node", - "hash": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" - } - }, - "npm:detect-package-manager": { - "type": "npm", - "name": "npm:detect-package-manager", - "data": { - "version": "2.0.1", - "packageName": "detect-package-manager", - "hash": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==" - } - }, - "npm:detect-port": { - "type": "npm", - "name": "npm:detect-port", - "data": { - "version": "1.5.1", - "packageName": "detect-port", - "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" - } - }, - "npm:devtools-protocol@0.0.1082910": { - "type": "npm", - "name": "npm:devtools-protocol@0.0.1082910", - "data": { - "version": "0.0.1082910", - "packageName": "devtools-protocol", - "hash": "sha512-RqoZ2GmqaNxyx+99L/RemY5CkwG9D0WEfOKxekwCRXOGrDCep62ngezEJUVMq6rISYQ+085fJnWDQqGHlxVNww==" - } - }, - "npm:devtools-protocol": { - "type": "npm", - "name": "npm:devtools-protocol", - "data": { - "version": "0.0.894172", - "packageName": "devtools-protocol", - "hash": "sha512-tL9V5hs9s8TBkSX/d0qy8PbHQ6rW9myDILIbDdCboJxenSwqgoVx+C/+qEmI1OZH/zQ7OREv6ic336wJ82cOXg==" - } - }, - "npm:di": { - "type": "npm", - "name": "npm:di", - "data": { - "version": "0.0.1", - "packageName": "di", - "hash": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=" - } - }, - "npm:diff-match-patch": { - "type": "npm", - "name": "npm:diff-match-patch", - "data": { - "version": "1.0.5", - "packageName": "diff-match-patch", - "hash": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" - } - }, - "npm:diff-sequences@27.5.1": { - "type": "npm", - "name": "npm:diff-sequences@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "diff-sequences", - "hash": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:diff@3.5.0": { - "type": "npm", - "name": "npm:diff@3.5.0", - "data": { - "version": "3.5.0", - "packageName": "diff", - "hash": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" - } - }, - "npm:diff": { - "type": "npm", - "name": "npm:diff", - "data": { - "version": "4.0.2", - "packageName": "diff", - "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - } - }, - "npm:diffie-hellman": { - "type": "npm", - "name": "npm:diffie-hellman", - "data": { - "version": "5.0.3", - "packageName": "diffie-hellman", - "hash": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==" - } - }, - "npm:dir-glob@2.2.2": { - "type": "npm", - "name": "npm:dir-glob@2.2.2", - "data": { - "version": "2.2.2", - "packageName": "dir-glob", - "hash": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "npm:discontinuous-range": { - "type": "npm", - "name": "npm:discontinuous-range", - "data": { - "version": "1.0.0", - "packageName": "discontinuous-range", - "hash": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=" - } - }, - "npm:dns-equal": { - "type": "npm", - "name": "npm:dns-equal", - "data": { - "version": "1.0.0", - "packageName": "dns-equal", - "hash": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" - } - }, - "npm:dns-packet": { - "type": "npm", - "name": "npm:dns-packet", - "data": { - "version": "1.3.4", - "packageName": "dns-packet", - "hash": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==" - } - }, - "npm:dns-txt": { - "type": "npm", - "name": "npm:dns-txt", - "data": { - "version": "2.0.2", - "packageName": "dns-txt", - "hash": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=" - } - }, - "npm:doctoc": { - "type": "npm", - "name": "npm:doctoc", - "data": { - "version": "2.0.1", - "packageName": "doctoc", - "hash": "sha512-JsxnSVZtLCThKehjFPBDhP1+ZLmdfXQynZH/0ABAwrnd1Zf3AV6LigC9oWJyaZ+c6RXCDnlGUNJ7I+1v8VaaRg==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:doctrine@2.1.0": { - "type": "npm", - "name": "npm:doctrine@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "doctrine", - "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" - } - }, - "npm:dom-accessibility-api": { - "type": "npm", - "name": "npm:dom-accessibility-api", - "data": { - "version": "0.5.11", - "packageName": "dom-accessibility-api", - "hash": "sha512-7X6GvzjYf4yTdRKuCVScV+aA9Fvh5r8WzWrXBH9w82ZWB/eYDMGCnazoC/YAqAzUJWHzLOnZqr46K3iEyUhUvw==" - } - }, - "npm:dom-converter": { - "type": "npm", - "name": "npm:dom-converter", - "data": { - "version": "0.2.0", - "packageName": "dom-converter", - "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" - } - }, - "npm:dom-css": { - "type": "npm", - "name": "npm:dom-css", - "data": { - "version": "2.1.0", - "packageName": "dom-css", - "hash": "sha1-/bwtWgFdCj4YcuEUcrvQ57nmogI=" - } - }, - "npm:dom-helpers": { - "type": "npm", - "name": "npm:dom-helpers", - "data": { - "version": "5.1.3", - "packageName": "dom-helpers", - "hash": "sha512-nZD1OtwfWGRBWlpANxacBEZrEuLa16o1nh7YopFWeoF68Zt8GGEmzHu6Xv4F3XaFIC+YXtTLrzgqKxFgLEe4jw==" - } - }, - "npm:dom-serialize": { - "type": "npm", - "name": "npm:dom-serialize", - "data": { - "version": "2.2.1", - "packageName": "dom-serialize", - "hash": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "0.1.1", - "packageName": "dom-serializer", - "hash": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==" - } - }, - "npm:dom-serializer@1.3.2": { - "type": "npm", - "name": "npm:dom-serializer@1.3.2", - "data": { - "version": "1.3.2", - "packageName": "dom-serializer", - "hash": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" - } - }, - "npm:dom-walk": { - "type": "npm", - "name": "npm:dom-walk", - "data": { - "version": "0.1.1", - "packageName": "dom-walk", - "hash": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" - } - }, - "npm:domain-browser@1.2.0": { - "type": "npm", - "name": "npm:domain-browser@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "domain-browser", - "hash": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" - } - }, - "npm:domain-browser": { - "type": "npm", - "name": "npm:domain-browser", - "data": { - "version": "4.19.0", - "packageName": "domain-browser", - "hash": "sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ==" - } - }, - "npm:domelementtype@1.3.1": { - "type": "npm", - "name": "npm:domelementtype@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "domelementtype", - "hash": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.2.0", - "packageName": "domelementtype", - "hash": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:domhandler@2.4.2": { - "type": "npm", - "name": "npm:domhandler@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "domhandler", - "hash": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==" - } - }, - "npm:domhandler@3.0.0": { - "type": "npm", - "name": "npm:domhandler@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "domhandler", - "hash": "sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "4.2.0", - "packageName": "domhandler", - "hash": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==" - } - }, - "npm:domutils@1.5.1": { - "type": "npm", - "name": "npm:domutils@1.5.1", - "data": { - "version": "1.5.1", - "packageName": "domutils", - "hash": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "2.7.0", - "packageName": "domutils", - "hash": "sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==" - } - }, - "npm:dot-case": { - "type": "npm", - "name": "npm:dot-case", - "data": { - "version": "2.1.1", - "packageName": "dot-case", - "hash": "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=" - } - }, - "npm:dot-case@3.0.4": { - "type": "npm", - "name": "npm:dot-case@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "dot-case", - "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" - } - }, - "npm:dot-prop": { - "type": "npm", - "name": "npm:dot-prop", - "data": { - "version": "4.2.0", - "packageName": "dot-prop", - "hash": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==" - } - }, - "npm:dot-prop@5.3.0": { - "type": "npm", - "name": "npm:dot-prop@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "dot-prop", - "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" - } - }, - "npm:dotenv-expand@5.1.0": { - "type": "npm", - "name": "npm:dotenv-expand@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "dotenv-expand", - "hash": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "10.0.0", - "packageName": "dotenv-expand", - "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "8.6.0", - "packageName": "dotenv", - "hash": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==" - } - }, - "npm:dotenv@16.3.1": { - "type": "npm", - "name": "npm:dotenv@16.3.1", - "data": { - "version": "16.3.1", - "packageName": "dotenv", - "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" - } - }, - "npm:dotparser": { - "type": "npm", - "name": "npm:dotparser", - "data": { - "version": "1.1.1", - "packageName": "dotparser", - "hash": "sha512-8ojhUts0HbLnXJgjTiJOddwVVBUk6hg4SJ5kGiuhzgK/f+y79TiWvICwx1oCWlVbBC8YI3nEaIQg9fjGYbGBXw==" - } - }, - "npm:downshift": { - "type": "npm", - "name": "npm:downshift", - "data": { - "version": "5.0.5", - "packageName": "downshift", - "hash": "sha512-V1idov3Rkvz1YWA1K67aIx51EgokIDvep4x6KmU7HhsayI8DvTEZBeH4O92zeFVGximKujRO7ChBzBAf4PKWFA==" - } - }, - "npm:duplexer2": { - "type": "npm", - "name": "npm:duplexer2", - "data": { - "version": "0.0.2", - "packageName": "duplexer2", - "hash": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=" - } - }, - "npm:duplexer2@0.1.4": { - "type": "npm", - "name": "npm:duplexer2@0.1.4", - "data": { - "version": "0.1.4", - "packageName": "duplexer2", - "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" - } - }, - "npm:duplexer3": { - "type": "npm", - "name": "npm:duplexer3", - "data": { - "version": "0.1.4", - "packageName": "duplexer3", - "hash": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" - } - }, - "npm:duplexer@0.1.1": { - "type": "npm", - "name": "npm:duplexer@0.1.1", - "data": { - "version": "0.1.1", - "packageName": "duplexer", - "hash": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" - } - }, - "npm:duplexer": { - "type": "npm", - "name": "npm:duplexer", - "data": { - "version": "0.1.2", - "packageName": "duplexer", - "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - } - }, - "npm:duplexify": { - "type": "npm", - "name": "npm:duplexify", - "data": { - "version": "3.7.1", - "packageName": "duplexify", - "hash": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==" - } - }, - "npm:each-props": { - "type": "npm", - "name": "npm:each-props", - "data": { - "version": "1.3.2", - "packageName": "each-props", - "hash": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:easy-stack": { - "type": "npm", - "name": "npm:easy-stack", - "data": { - "version": "1.0.0", - "packageName": "easy-stack", - "hash": "sha1-EskbMIWjfwuqM26UhurEv5Tj54g=" - } - }, - "npm:ecc-jsbn": { - "type": "npm", - "name": "npm:ecc-jsbn", - "data": { - "version": "0.1.2", - "packageName": "ecc-jsbn", - "hash": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=" - } - }, - "npm:ecdsa-sig-formatter": { - "type": "npm", - "name": "npm:ecdsa-sig-formatter", - "data": { - "version": "1.0.11", - "packageName": "ecdsa-sig-formatter", - "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" - } - }, - "npm:editions": { - "type": "npm", - "name": "npm:editions", - "data": { - "version": "2.3.1", - "packageName": "editions", - "hash": "sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - } - }, - "npm:ejs": { - "type": "npm", - "name": "npm:ejs", - "data": { - "version": "3.1.9", - "packageName": "ejs", - "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.4.563", - "packageName": "electron-to-chromium", - "hash": "sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==" - } - }, - "npm:element-resize-detector": { - "type": "npm", - "name": "npm:element-resize-detector", - "data": { - "version": "1.2.3", - "packageName": "element-resize-detector", - "hash": "sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==" - } - }, - "npm:elliptic": { - "type": "npm", - "name": "npm:elliptic", - "data": { - "version": "6.5.4", - "packageName": "elliptic", - "hash": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "6.1.1", - "packageName": "emoji-regex", - "hash": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=" - } - }, - "npm:emoji-regex@7.0.3": { - "type": "npm", - "name": "npm:emoji-regex@7.0.3", - "data": { - "version": "7.0.3", - "packageName": "emoji-regex", - "hash": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - } - }, - "npm:emoji-regex@8.0.0": { - "type": "npm", - "name": "npm:emoji-regex@8.0.0", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "1.0.2", - "packageName": "encodeurl", - "hash": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - } - }, - "npm:encoding": { - "type": "npm", - "name": "npm:encoding", - "data": { - "version": "0.1.13", - "packageName": "encoding", - "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.4", - "packageName": "end-of-stream", - "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - } - }, - "npm:endent": { - "type": "npm", - "name": "npm:endent", - "data": { - "version": "2.0.1", - "packageName": "endent", - "hash": "sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==" - } - }, - "npm:engine.io-parser": { - "type": "npm", - "name": "npm:engine.io-parser", - "data": { - "version": "5.0.4", - "packageName": "engine.io-parser", - "hash": "sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==" - } - }, - "npm:engine.io": { - "type": "npm", - "name": "npm:engine.io", - "data": { - "version": "6.2.1", - "packageName": "engine.io", - "hash": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==" - } - }, - "npm:enhanced-resolve@4.5.0": { - "type": "npm", - "name": "npm:enhanced-resolve@4.5.0", - "data": { - "version": "4.5.0", - "packageName": "enhanced-resolve", - "hash": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.14.0", - "packageName": "enhanced-resolve", - "hash": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:ent": { - "type": "npm", - "name": "npm:ent", - "data": { - "version": "2.2.0", - "packageName": "ent", - "hash": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "1.1.2", - "packageName": "entities", - "hash": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" - } - }, - "npm:entities@2.0.0": { - "type": "npm", - "name": "npm:entities@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "entities", - "hash": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" - } - }, - "npm:entities@4.5.0": { - "type": "npm", - "name": "npm:entities@4.5.0", - "data": { - "version": "4.5.0", - "packageName": "entities", - "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - } - }, - "npm:env-paths": { - "type": "npm", - "name": "npm:env-paths", - "data": { - "version": "2.2.0", - "packageName": "env-paths", - "hash": "sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==" - } - }, - "npm:envinfo": { - "type": "npm", - "name": "npm:envinfo", - "data": { - "version": "7.8.1", - "packageName": "envinfo", - "hash": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" - } - }, - "npm:enzyme-shallow-equal": { - "type": "npm", - "name": "npm:enzyme-shallow-equal", - "data": { - "version": "1.0.4", - "packageName": "enzyme-shallow-equal", - "hash": "sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==" - } - }, - "npm:enzyme-to-json": { - "type": "npm", - "name": "npm:enzyme-to-json", - "data": { - "version": "3.6.2", - "packageName": "enzyme-to-json", - "hash": "sha512-Ynm6Z6R6iwQ0g2g1YToz6DWhxVnt8Dy1ijR2zynRKxTyBGA8rCDXU3rs2Qc4OKvUvc2Qoe1bcFK6bnPs20TrTg==" - } - }, - "npm:enzyme": { - "type": "npm", - "name": "npm:enzyme", - "data": { - "version": "3.10.0", - "packageName": "enzyme", - "hash": "sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg==" - } - }, - "npm:err-code@1.1.2": { - "type": "npm", - "name": "npm:err-code@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "err-code", - "hash": "sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA=" - } - }, - "npm:err-code": { - "type": "npm", - "name": "npm:err-code", - "data": { - "version": "2.0.3", - "packageName": "err-code", - "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - } - }, - "npm:errlop": { - "type": "npm", - "name": "npm:errlop", - "data": { - "version": "2.2.0", - "packageName": "errlop", - "hash": "sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==" - } - }, - "npm:errno": { - "type": "npm", - "name": "npm:errno", - "data": { - "version": "0.1.8", - "packageName": "errno", - "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:error-stack-parser": { - "type": "npm", - "name": "npm:error-stack-parser", - "data": { - "version": "2.0.6", - "packageName": "error-stack-parser", - "hash": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.19.1", - "packageName": "es-abstract", - "hash": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.2.1", - "packageName": "es-module-lexer", - "hash": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.2.1", - "packageName": "es-to-primitive", - "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - } - }, - "npm:es5-ext": { - "type": "npm", - "name": "npm:es5-ext", - "data": { - "version": "0.10.53", - "packageName": "es5-ext", - "hash": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==" - } - }, - "npm:es5-shim": { - "type": "npm", - "name": "npm:es5-shim", - "data": { - "version": "4.5.13", - "packageName": "es5-shim", - "hash": "sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw==" - } - }, - "npm:es6-iterator": { - "type": "npm", - "name": "npm:es6-iterator", - "data": { - "version": "2.0.3", - "packageName": "es6-iterator", - "hash": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=" - } - }, - "npm:es6-object-assign": { - "type": "npm", - "name": "npm:es6-object-assign", - "data": { - "version": "1.1.0", - "packageName": "es6-object-assign", - "hash": "sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=" - } - }, - "npm:es6-promise": { - "type": "npm", - "name": "npm:es6-promise", - "data": { - "version": "4.2.8", - "packageName": "es6-promise", - "hash": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" - } - }, - "npm:es6-promisify": { - "type": "npm", - "name": "npm:es6-promisify", - "data": { - "version": "5.0.0", - "packageName": "es6-promisify", - "hash": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=" - } - }, - "npm:es6-shim": { - "type": "npm", - "name": "npm:es6-shim", - "data": { - "version": "0.35.5", - "packageName": "es6-shim", - "hash": "sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg==" - } - }, - "npm:es6-symbol": { - "type": "npm", - "name": "npm:es6-symbol", - "data": { - "version": "3.1.3", - "packageName": "es6-symbol", - "hash": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" - } - }, - "npm:es6-weak-map": { - "type": "npm", - "name": "npm:es6-weak-map", - "data": { - "version": "2.0.3", - "packageName": "es6-weak-map", - "hash": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" - } - }, - "npm:esbuild-android-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-android-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-android-64", - "hash": "sha512-6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==" - } - }, - "npm:esbuild-android-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-android-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-android-arm64", - "hash": "sha512-vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==" - } - }, - "npm:esbuild-darwin-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-darwin-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-darwin-64", - "hash": "sha512-YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==" - } - }, - "npm:esbuild-darwin-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-darwin-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-darwin-arm64", - "hash": "sha512-juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==" - } - }, - "npm:esbuild-freebsd-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-freebsd-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-freebsd-64", - "hash": "sha512-cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==" - } - }, - "npm:esbuild-freebsd-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-freebsd-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-freebsd-arm64", - "hash": "sha512-TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==" - } - }, - "npm:esbuild-linux-32@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-32@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-32", - "hash": "sha512-RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==" - } - }, - "npm:esbuild-linux-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-64", - "hash": "sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==" - } - }, - "npm:esbuild-linux-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-arm64", - "hash": "sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==" - } - }, - "npm:esbuild-linux-arm@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-arm@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-arm", - "hash": "sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==" - } - }, - "npm:esbuild-linux-mips64le@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-mips64le@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-mips64le", - "hash": "sha512-vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==" - } - }, - "npm:esbuild-linux-ppc64le@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-ppc64le@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-ppc64le", - "hash": "sha512-xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==" - } - }, - "npm:esbuild-linux-riscv64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-riscv64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-riscv64", - "hash": "sha512-syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==" - } - }, - "npm:esbuild-linux-s390x@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-s390x@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-s390x", - "hash": "sha512-kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==" - } - }, - "npm:esbuild-loader": { - "type": "npm", - "name": "npm:esbuild-loader", - "data": { - "version": "3.2.0", - "packageName": "esbuild-loader", - "hash": "sha512-lnIdRMQpk50alCa0QoW0ozc0D3rjJXl02mtMsk9INIcW25RPZhDja332bu85ixwVNbhQ7VfBRcQyZ/qza8mWiA==" - } - }, - "npm:esbuild-netbsd-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-netbsd-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-netbsd-64", - "hash": "sha512-ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==" - } - }, - "npm:esbuild-openbsd-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-openbsd-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-openbsd-64", - "hash": "sha512-7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==" - } - }, - "npm:esbuild-sunos-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-sunos-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-sunos-64", - "hash": "sha512-HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==" - } - }, - "npm:esbuild-windows-32@0.14.51": { - "type": "npm", - "name": "npm:esbuild-windows-32@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-windows-32", - "hash": "sha512-4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==" - } - }, - "npm:esbuild-windows-64": { - "type": "npm", - "name": "npm:esbuild-windows-64", - "data": { - "version": "0.14.51", - "packageName": "esbuild-windows-64", - "hash": "sha512-HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==" - } - }, - "npm:esbuild-windows-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-windows-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-windows-arm64", - "hash": "sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.14.51", - "packageName": "esbuild", - "hash": "sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==" - } - }, - "npm:esbuild@0.19.2": { - "type": "npm", - "name": "npm:esbuild@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "esbuild", - "hash": "sha512-G6hPax8UbFakEj3hWO0Vs52LQ8k3lnBhxZWomUJDxfz3rZTLqF5k/FCzuNdLx2RbpBiQQF9H9onlDDH1lZsnjg==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.1.1", - "packageName": "escalade", - "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - } - }, - "npm:escape-string-regexp@5.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - } - }, - "npm:escape-string-regexp@2.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } - }, - "npm:escape-string-regexp@4.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escodegen@1.8.1": { - "type": "npm", - "name": "npm:escodegen@1.8.1", - "data": { - "version": "1.8.1", - "packageName": "escodegen", - "hash": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.0.0", - "packageName": "escodegen", - "hash": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==" - } - }, - "npm:eslint-config-airbnb-base": { - "type": "npm", - "name": "npm:eslint-config-airbnb-base", - "data": { - "version": "14.2.1", - "packageName": "eslint-config-airbnb-base", - "hash": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==" - } - }, - "npm:eslint-config-airbnb": { - "type": "npm", - "name": "npm:eslint-config-airbnb", - "data": { - "version": "18.2.1", - "packageName": "eslint-config-airbnb", - "hash": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "8.3.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==" - } - }, - "npm:eslint-import-resolver-node": { - "type": "npm", - "name": "npm:eslint-import-resolver-node", - "data": { - "version": "0.3.6", - "packageName": "eslint-import-resolver-node", - "hash": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==" - } - }, - "npm:eslint-import-resolver-typescript": { - "type": "npm", - "name": "npm:eslint-import-resolver-typescript", - "data": { - "version": "2.5.0", - "packageName": "eslint-import-resolver-typescript", - "hash": "sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==" - } - }, - "npm:eslint-module-utils": { - "type": "npm", - "name": "npm:eslint-module-utils", - "data": { - "version": "2.7.3", - "packageName": "eslint-module-utils", - "hash": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==" - } - }, - "npm:eslint-plugin-deprecation": { - "type": "npm", - "name": "npm:eslint-plugin-deprecation", - "data": { - "version": "1.2.1", - "packageName": "eslint-plugin-deprecation", - "hash": "sha512-8KFAWPO3AvF0szxIh1ivRtHotd1fzxVOuNR3NI8dfCsQKgcxu9fAgEY+eTKvCRLAwwI8kaDDfImMt+498+EgRw==" - } - }, - "npm:eslint-plugin-es": { - "type": "npm", - "name": "npm:eslint-plugin-es", - "data": { - "version": "4.1.0", - "packageName": "eslint-plugin-es", - "hash": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==" - } - }, - "npm:eslint-plugin-es@3.0.1": { - "type": "npm", - "name": "npm:eslint-plugin-es@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "eslint-plugin-es", - "hash": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" - } - }, - "npm:eslint-plugin-import": { - "type": "npm", - "name": "npm:eslint-plugin-import", - "data": { - "version": "2.25.4", - "packageName": "eslint-plugin-import", - "hash": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==" - } - }, - "npm:eslint-plugin-jest": { - "type": "npm", - "name": "npm:eslint-plugin-jest", - "data": { - "version": "23.20.0", - "packageName": "eslint-plugin-jest", - "hash": "sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==" - } - }, - "npm:eslint-plugin-jest@25.2.4": { - "type": "npm", - "name": "npm:eslint-plugin-jest@25.2.4", - "data": { - "version": "25.2.4", - "packageName": "eslint-plugin-jest", - "hash": "sha512-HRyinpgmEdkVr7pNPaYPHCoGqEzpgk79X8pg/xCeoAdurbyQjntJQ4pTzHl7BiVEBlam/F1Qsn+Dk0HtJO7Aaw==" - } - }, - "npm:eslint-plugin-jsdoc": { - "type": "npm", - "name": "npm:eslint-plugin-jsdoc", - "data": { - "version": "39.9.1", - "packageName": "eslint-plugin-jsdoc", - "hash": "sha512-Rq2QY6BZP2meNIs48aZ3GlIlJgBqFCmR55+UBvaDkA3ZNQ0SvQXOs2QKkubakEijV8UbIVbVZKsOVN8G3MuqZw==" - } - }, - "npm:eslint-plugin-jsx-a11y": { - "type": "npm", - "name": "npm:eslint-plugin-jsx-a11y", - "data": { - "version": "6.4.1", - "packageName": "eslint-plugin-jsx-a11y", - "hash": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==" - } - }, - "npm:eslint-plugin-node": { - "type": "npm", - "name": "npm:eslint-plugin-node", - "data": { - "version": "11.1.0", - "packageName": "eslint-plugin-node", - "hash": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" - } - }, - "npm:eslint-plugin-react-hooks": { - "type": "npm", - "name": "npm:eslint-plugin-react-hooks", - "data": { - "version": "4.2.0", - "packageName": "eslint-plugin-react-hooks", - "hash": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==" - } - }, - "npm:eslint-plugin-react@7.24.0": { - "type": "npm", - "name": "npm:eslint-plugin-react@7.24.0", - "data": { - "version": "7.24.0", - "packageName": "eslint-plugin-react", - "hash": "sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q==" - } - }, - "npm:eslint-plugin-react": { - "type": "npm", - "name": "npm:eslint-plugin-react", - "data": { - "version": "7.26.0", - "packageName": "eslint-plugin-react", - "hash": "sha512-dceliS5itjk4EZdQYtLMz6GulcsasguIs+VTXuiC7Q5IPIdGTkyfXVdmsQOqEhlD9MciofH4cMcT1bw1WWNxCQ==" - } - }, - "npm:eslint-plugin-security": { - "type": "npm", - "name": "npm:eslint-plugin-security", - "data": { - "version": "1.4.0", - "packageName": "eslint-plugin-security", - "hash": "sha512-xlS7P2PLMXeqfhyf3NpqbvbnW04kN8M9NtmhpR3XGyOvt/vNKS7XPXT5EDbwKW9vCjWH4PpfQvgD/+JgN0VJKA==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-scope@4.0.3": { - "type": "npm", - "name": "npm:eslint-scope@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "eslint-scope", - "hash": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==" - } - }, - "npm:eslint-utils": { - "type": "npm", - "name": "npm:eslint-utils", - "data": { - "version": "2.1.0", - "packageName": "eslint-utils", - "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" - } - }, - "npm:eslint-visitor-keys@1.3.0": { - "type": "npm", - "name": "npm:eslint-visitor-keys@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - } - }, - "npm:eslint-visitor-keys@2.0.0": { - "type": "npm", - "name": "npm:eslint-visitor-keys@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "3.4.1", - "packageName": "eslint-visitor-keys", - "hash": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "7.25.0", - "packageName": "eslint", - "hash": "sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==" - } - }, - "npm:esm": { - "type": "npm", - "name": "npm:esm", - "data": { - "version": "3.2.25", - "packageName": "esm", - "hash": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "7.3.1", - "packageName": "espree", - "hash": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" - } - }, - "npm:espree@9.6.1": { - "type": "npm", - "name": "npm:espree@9.6.1", - "data": { - "version": "9.6.1", - "packageName": "espree", - "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" - } - }, - "npm:esprima-extract-comments": { - "type": "npm", - "name": "npm:esprima-extract-comments", - "data": { - "version": "1.1.0", - "packageName": "esprima-extract-comments", - "hash": "sha512-sBQUnvJwpeE9QnPrxh7dpI/dp67erYG4WXEAreAMoelPRpMR7NWb4YtwRPn9b+H1uLQKl/qS8WYmyaljTpjIsw==" - } - }, - "npm:esprima@2.7.3": { - "type": "npm", - "name": "npm:esprima@2.7.3", - "data": { - "version": "2.7.3", - "packageName": "esprima", - "hash": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.5.0", - "packageName": "esquery", - "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse@1.9.3": { - "type": "npm", - "name": "npm:estraverse@1.9.3", - "data": { - "version": "1.9.3", - "packageName": "estraverse", - "hash": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=" - } - }, - "npm:estraverse@4.2.0": { - "type": "npm", - "name": "npm:estraverse@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "estraverse", - "hash": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estree-walker": { - "type": "npm", - "name": "npm:estree-walker", - "data": { - "version": "0.6.1", - "packageName": "estree-walker", - "hash": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" - } - }, - "npm:estree-walker@1.0.1": { - "type": "npm", - "name": "npm:estree-walker@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "estree-walker", - "hash": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.2", - "packageName": "esutils", - "hash": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" - } - }, - "npm:event-emitter": { - "type": "npm", - "name": "npm:event-emitter", - "data": { - "version": "0.3.5", - "packageName": "event-emitter", - "hash": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=" - } - }, - "npm:event-pubsub": { - "type": "npm", - "name": "npm:event-pubsub", - "data": { - "version": "4.3.0", - "packageName": "event-pubsub", - "hash": "sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==" - } - }, - "npm:event-target-shim": { - "type": "npm", - "name": "npm:event-target-shim", - "data": { - "version": "5.0.1", - "packageName": "event-target-shim", - "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - } - }, - "npm:eventemitter2": { - "type": "npm", - "name": "npm:eventemitter2", - "data": { - "version": "6.4.5", - "packageName": "eventemitter2", - "hash": "sha512-bXE7Dyc1i6oQElDG0jMRZJrRAn9QR2xyyFGmBdZleNmyQX0FqGYmhZIrIrpPfm/w//LTo4tVQGOGQcGCb5q9uw==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:events": { - "type": "npm", - "name": "npm:events", - "data": { - "version": "3.3.0", - "packageName": "events", - "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - } - }, - "npm:evp_bytestokey": { - "type": "npm", - "name": "npm:evp_bytestokey", - "data": { - "version": "1.0.3", - "packageName": "evp_bytestokey", - "hash": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==" - } - }, - "npm:exec-sh": { - "type": "npm", - "name": "npm:exec-sh", - "data": { - "version": "0.3.2", - "packageName": "exec-sh", - "hash": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==" - } - }, - "npm:execa@4.1.0": { - "type": "npm", - "name": "npm:execa@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "execa", - "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" - } - }, - "npm:execa@5.0.0": { - "type": "npm", - "name": "npm:execa@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "execa", - "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" - } - }, - "npm:execa@0.7.0": { - "type": "npm", - "name": "npm:execa@0.7.0", - "data": { - "version": "0.7.0", - "packageName": "execa", - "hash": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=" - } - }, - "npm:execa@1.0.0": { - "type": "npm", - "name": "npm:execa@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "execa", - "hash": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - } - }, - "npm:executable": { - "type": "npm", - "name": "npm:executable", - "data": { - "version": "4.1.1", - "packageName": "executable", - "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" - } - }, - "npm:exenv-es6": { - "type": "npm", - "name": "npm:exenv-es6", - "data": { - "version": "1.1.1", - "packageName": "exenv-es6", - "hash": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" - } - }, - "npm:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" - } - }, - "npm:expand-brackets": { - "type": "npm", - "name": "npm:expand-brackets", - "data": { - "version": "2.1.4", - "packageName": "expand-brackets", - "hash": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=" - } - }, - "npm:expand-tilde": { - "type": "npm", - "name": "npm:expand-tilde", - "data": { - "version": "2.0.2", - "packageName": "expand-tilde", - "hash": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=" - } - }, - "npm:expect": { - "type": "npm", - "name": "npm:expect", - "data": { - "version": "29.7.0", - "packageName": "expect", - "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "4.17.3", - "packageName": "express", - "hash": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==" - } - }, - "npm:ext-list": { - "type": "npm", - "name": "npm:ext-list", - "data": { - "version": "2.2.2", - "packageName": "ext-list", - "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" - } - }, - "npm:ext-name": { - "type": "npm", - "name": "npm:ext-name", - "data": { - "version": "5.0.0", - "packageName": "ext-name", - "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" - } - }, - "npm:ext": { - "type": "npm", - "name": "npm:ext", - "data": { - "version": "1.4.0", - "packageName": "ext", - "hash": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==" - } - }, - "npm:extend-shallow@1.1.4": { - "type": "npm", - "name": "npm:extend-shallow@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "extend-shallow", - "hash": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=" - } - }, - "npm:extend-shallow": { - "type": "npm", - "name": "npm:extend-shallow", - "data": { - "version": "2.0.1", - "packageName": "extend-shallow", - "hash": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - } - }, - "npm:extend-shallow@3.0.2": { - "type": "npm", - "name": "npm:extend-shallow@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "extend-shallow", - "hash": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" - } - }, - "npm:extend": { - "type": "npm", - "name": "npm:extend", - "data": { - "version": "3.0.2", - "packageName": "extend", - "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - } - }, - "npm:external-editor": { - "type": "npm", - "name": "npm:external-editor", - "data": { - "version": "3.0.3", - "packageName": "external-editor", - "hash": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==" - } - }, - "npm:extglob": { - "type": "npm", - "name": "npm:extglob", - "data": { - "version": "2.0.4", - "packageName": "extglob", - "hash": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==" - } - }, - "npm:extract-comments": { - "type": "npm", - "name": "npm:extract-comments", - "data": { - "version": "1.1.0", - "packageName": "extract-comments", - "hash": "sha512-dzbZV2AdSSVW/4E7Ti5hZdHWbA+Z80RJsJhr5uiL10oyjl/gy7/o+HI1HwK4/WSZhlq4SNKU3oUzXlM13Qx02Q==" - } - }, - "npm:extract-zip": { - "type": "npm", - "name": "npm:extract-zip", - "data": { - "version": "2.0.1", - "packageName": "extract-zip", - "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" - } - }, - "npm:extsprintf": { - "type": "npm", - "name": "npm:extsprintf", - "data": { - "version": "1.3.0", - "packageName": "extsprintf", - "hash": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - } - }, - "npm:faker": { - "type": "npm", - "name": "npm:faker", - "data": { - "version": "4.1.0", - "packageName": "faker", - "hash": "sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8=" - } - }, - "npm:fancy-log": { - "type": "npm", - "name": "npm:fancy-log", - "data": { - "version": "1.3.3", - "packageName": "fancy-log", - "hash": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==" - } - }, - "npm:fast-check": { - "type": "npm", - "name": "npm:fast-check", - "data": { - "version": "3.11.0", - "packageName": "fast-check", - "hash": "sha512-H2tctb7AGfFQfz+DEr3UWhJ3s47LXsGp5g3jeJr5tHjnf4xUvpArIqiwcDmL2EXiv+auLHIpF5MqaIpIKvpxiA==" - } - }, - "npm:fast-deep-equal@1.1.0": { - "type": "npm", - "name": "npm:fast-deep-equal@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "fast-deep-equal", - "hash": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-glob@3.2.7": { - "type": "npm", - "name": "npm:fast-glob@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "fast-glob", - "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" - } - }, - "npm:fast-glob@2.2.7": { - "type": "npm", - "name": "npm:fast-glob@2.2.7", - "data": { - "version": "2.2.7", - "packageName": "fast-glob", - "hash": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.0", - "packageName": "fast-glob", - "hash": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==" - } - }, - "npm:fast-json-parse": { - "type": "npm", - "name": "npm:fast-json-parse", - "data": { - "version": "1.0.3", - "packageName": "fast-json-parse", - "hash": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==" - } - }, - "npm:fast-json-patch": { - "type": "npm", - "name": "npm:fast-json-patch", - "data": { - "version": "3.1.1", - "packageName": "fast-json-patch", - "hash": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-levenshtein@1.1.4": { - "type": "npm", - "name": "npm:fast-levenshtein@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "fast-levenshtein", - "hash": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - } - }, - "npm:fast-loops": { - "type": "npm", - "name": "npm:fast-loops", - "data": { - "version": "1.1.2", - "packageName": "fast-loops", - "hash": "sha512-ql8BgnHFryLogmmzR5O3uobe+3Zzaq6h6MWn/VtAyL9OXb51r5PSTbCm9f56fvEvMWWGjbdkr4xyhT0/vLJkKw==" - } - }, - "npm:fast-png": { - "type": "npm", - "name": "npm:fast-png", - "data": { - "version": "6.1.0", - "packageName": "fast-png", - "hash": "sha512-v8e/40RKZbE1mALigoqBOkYnemCVSMmVlGSz8fawZAZg5UQ9OZeR00L++CPvrhIGm2F6TxV5u9lbWD0oOJHcCw==" - } - }, - "npm:fastest-levenshtein": { - "type": "npm", - "name": "npm:fastest-levenshtein", - "data": { - "version": "1.0.12", - "packageName": "fastest-levenshtein", - "hash": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.6.0", - "packageName": "fastq", - "hash": "sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA==" - } - }, - "npm:fault": { - "type": "npm", - "name": "npm:fault", - "data": { - "version": "1.0.4", - "packageName": "fault", - "hash": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==" - } - }, - "npm:faye-websocket": { - "type": "npm", - "name": "npm:faye-websocket", - "data": { - "version": "0.11.3", - "packageName": "faye-websocket", - "hash": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.0", - "packageName": "fb-watchman", - "hash": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=" - } - }, - "npm:fclone": { - "type": "npm", - "name": "npm:fclone", - "data": { - "version": "1.0.11", - "packageName": "fclone", - "hash": "sha512-GDqVQezKzRABdeqflsgMr7ktzgF9CyS+p2oe0jJqUY6izSSbhPIQJDpoU4PtGcD7VPM9xh/dVrTu6z1nwgmEGw==" - } - }, - "npm:fd-slicer": { - "type": "npm", - "name": "npm:fd-slicer", - "data": { - "version": "1.1.0", - "packageName": "fd-slicer", - "hash": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=" - } - }, - "npm:fela-bindings": { - "type": "npm", - "name": "npm:fela-bindings", - "data": { - "version": "10.6.1", - "packageName": "fela-bindings", - "hash": "sha512-VY6PzkVHDpVHSvefa4AnfRYuzw1jgAheU+ePof4m8je3JgkoezKDiadI7uHD0teyzJhajDZ25nr2dOt2yCuMtA==" - } - }, - "npm:fela-dom": { - "type": "npm", - "name": "npm:fela-dom", - "data": { - "version": "10.6.1", - "packageName": "fela-dom", - "hash": "sha512-J/EbPv7w7GGEBwhwwohTNdBThS1CrVaO5t8eapuKg0GDUCulbpBHuL5fw1+TbpJKEL54h7GwaCV9RZKZPUOXGA==" - } - }, - "npm:fela-dom@11.7.0": { - "type": "npm", - "name": "npm:fela-dom@11.7.0", - "data": { - "version": "11.7.0", - "packageName": "fela-dom", - "hash": "sha512-mYboADGGQc/EihhyPOs8Xo2aJ0cOQI4q3+aWQ11KPzaCAT3TTVdXuTslT5QeXoE6cT6nS77GvvrRzXb3U/gY6Q==" - } - }, - "npm:fela-plugin-custom-property": { - "type": "npm", - "name": "npm:fela-plugin-custom-property", - "data": { - "version": "10.8.2", - "packageName": "fela-plugin-custom-property", - "hash": "sha512-SFbuMRQpetEUYwMsG0ngZrdEB7N7ytH+jsXeWt54GKhdz68XcvbAEIoc5vWSPiNVBKH47jV3+dwXjhejd5AdaQ==" - } - }, - "npm:fela-plugin-embedded": { - "type": "npm", - "name": "npm:fela-plugin-embedded", - "data": { - "version": "10.8.2", - "packageName": "fela-plugin-embedded", - "hash": "sha512-HeLyDJHQgpBEMbWjsCES1Jtptawtaqnp0Ml3zKebPMrryCQj4j0k4VdyzcS+QzE4M0JD1r0FYhKla+mpuMP5Qw==" - } - }, - "npm:fela-plugin-fallback-value": { - "type": "npm", - "name": "npm:fela-plugin-fallback-value", - "data": { - "version": "10.8.2", - "packageName": "fela-plugin-fallback-value", - "hash": "sha512-pjNQ4TJVJz8rDS8kEB7afRDHelQFzi0kIOhLSR0/LWLLFC7CfaQ3Vop9/w5Ot7iJtH8oR1dAxSQEyk497QcyPw==" - } - }, - "npm:fela-plugin-placeholder-prefixer": { - "type": "npm", - "name": "npm:fela-plugin-placeholder-prefixer", - "data": { - "version": "10.6.1", - "packageName": "fela-plugin-placeholder-prefixer", - "hash": "sha512-yZcTYsjRXjNrDFeDvML5QalgeO9hHN6sqC3geAwC44GTpaw9BG22BKiuCInvzhkSYWuT+q8XSgPrW7wDwL1TRQ==" - } - }, - "npm:fela-plugin-rtl": { - "type": "npm", - "name": "npm:fela-plugin-rtl", - "data": { - "version": "10.8.2", - "packageName": "fela-plugin-rtl", - "hash": "sha512-Xc3uYTNU0TponAtMwqfJQc/F33gACCCPr7QOMqpJurlYUU9VaYhchgs7YMocqns6kBPRGrYc0mYiQqNCfpKsjw==" - } - }, - "npm:fela-tools": { - "type": "npm", - "name": "npm:fela-tools", - "data": { - "version": "10.6.1", - "packageName": "fela-tools", - "hash": "sha512-fywHZDZPY2jQoNA+COPn5ge4rq4uFYVEeNVsT/AKW/RtQNnr18JsHoO1kbn/n4N76NJcNKP6R8OM6jOcOdLiYQ==" - } - }, - "npm:fela-utils": { - "type": "npm", - "name": "npm:fela-utils", - "data": { - "version": "10.8.2", - "packageName": "fela-utils", - "hash": "sha512-RmoDOIby14Zb3Xn03noLolyMC2528xcNO5KcNCaznyByd1Acq8DnvQn91Ph9nBLcLqdC1rGme5HwRcrCOHG+kA==" - } - }, - "npm:fela-utils@11.7.0": { - "type": "npm", - "name": "npm:fela-utils@11.7.0", - "data": { - "version": "11.7.0", - "packageName": "fela-utils", - "hash": "sha512-s/3QJtkCesH+2/yJDpedHVAvMgKy9hSt2++6l7Xjio5BixiUnvkwbqdCV/fcAb4E3reJLNzYeatgPdcw4HVXRQ==" - } - }, - "npm:fela": { - "type": "npm", - "name": "npm:fela", - "data": { - "version": "10.6.1", - "packageName": "fela", - "hash": "sha512-Fp07Wst/BchfJAufCF+sfeMeIsB8hq+EHObpjUMrLfXcweqRtcJ5gg+47ncYO6W/HnRi1NBUzV+fY4tnMVm+MA==" - } - }, - "npm:fetch-blob": { - "type": "npm", - "name": "npm:fetch-blob", - "data": { - "version": "3.2.0", - "packageName": "fetch-blob", - "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" - } - }, - "npm:fetch-retry": { - "type": "npm", - "name": "npm:fetch-retry", - "data": { - "version": "5.0.2", - "packageName": "fetch-retry", - "hash": "sha512-57Hmu+1kc6pKFUGVIobT7qw3NeAzY/uNN26bSevERLVvf6VGFR/ooDCOFBHMNDgAxBiU2YJq1D0vFzc6U1DcPw==" - } - }, - "npm:figgy-pudding": { - "type": "npm", - "name": "npm:figgy-pudding", - "data": { - "version": "3.5.2", - "packageName": "figgy-pudding", - "hash": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "6.0.1", - "packageName": "file-entry-cache", - "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - } - }, - "npm:file-loader": { - "type": "npm", - "name": "npm:file-loader", - "data": { - "version": "6.2.0", - "packageName": "file-loader", - "hash": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==" - } - }, - "npm:file-system-cache": { - "type": "npm", - "name": "npm:file-system-cache", - "data": { - "version": "1.0.5", - "packageName": "file-system-cache", - "hash": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=" - } - }, - "npm:file-type": { - "type": "npm", - "name": "npm:file-type", - "data": { - "version": "17.1.6", - "packageName": "file-type", - "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" - } - }, - "npm:file-uri-to-path@1.0.0": { - "type": "npm", - "name": "npm:file-uri-to-path@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "file-uri-to-path", - "hash": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" - } - }, - "npm:filelist": { - "type": "npm", - "name": "npm:filelist", - "data": { - "version": "1.0.3", - "packageName": "filelist", - "hash": "sha512-LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==" - } - }, - "npm:filename-reserved-regex": { - "type": "npm", - "name": "npm:filename-reserved-regex", - "data": { - "version": "2.0.0", - "packageName": "filename-reserved-regex", - "hash": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=" - } - }, - "npm:filename-reserved-regex@3.0.0": { - "type": "npm", - "name": "npm:filename-reserved-regex@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "filename-reserved-regex", - "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" - } - }, - "npm:filenamify": { - "type": "npm", - "name": "npm:filenamify", - "data": { - "version": "4.1.0", - "packageName": "filenamify", - "hash": "sha512-KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg==" - } - }, - "npm:filenamify@5.1.1": { - "type": "npm", - "name": "npm:filenamify@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "filenamify", - "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" - } - }, - "npm:filesize@3.6.1": { - "type": "npm", - "name": "npm:filesize@3.6.1", - "data": { - "version": "3.6.1", - "packageName": "filesize", - "hash": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==" - } - }, - "npm:filesize": { - "type": "npm", - "name": "npm:filesize", - "data": { - "version": "6.1.0", - "packageName": "filesize", - "hash": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" - } - }, - "npm:fill-range@4.0.0": { - "type": "npm", - "name": "npm:fill-range@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "fill-range", - "hash": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "npm:filter-obj": { - "type": "npm", - "name": "npm:filter-obj", - "data": { - "version": "1.1.0", - "packageName": "filter-obj", - "hash": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.1.2", - "packageName": "finalhandler", - "hash": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" - } - }, - "npm:find-babel-config": { - "type": "npm", - "name": "npm:find-babel-config", - "data": { - "version": "1.2.0", - "packageName": "find-babel-config", - "hash": "sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==" - } - }, - "npm:find-cache-dir@2.1.0": { - "type": "npm", - "name": "npm:find-cache-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-cache-dir", - "hash": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:find-free-port": { - "type": "npm", - "name": "npm:find-free-port", - "data": { - "version": "2.0.0", - "packageName": "find-free-port", - "hash": "sha512-J1j8gfEVf5FN4PR5w5wrZZ7NYs2IvqsHcd03cAeQx3Ec/mo+lKceaVNhpsRKoZpZKbId88o8qh+dwUwzBV6WCg==" - } - }, - "npm:find-replace": { - "type": "npm", - "name": "npm:find-replace", - "data": { - "version": "3.0.0", - "packageName": "find-replace", - "hash": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==" - } - }, - "npm:find-root": { - "type": "npm", - "name": "npm:find-root", - "data": { - "version": "1.1.0", - "packageName": "find-root", - "hash": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - } - }, - "npm:find-up@3.0.0": { - "type": "npm", - "name": "npm:find-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "find-up", - "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" - } - }, - "npm:find-up@1.1.2": { - "type": "npm", - "name": "npm:find-up@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "find-up", - "hash": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=" - } - }, - "npm:find-up@2.1.0": { - "type": "npm", - "name": "npm:find-up@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-up", - "hash": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" - } - }, - "npm:find-up@4.1.0": { - "type": "npm", - "name": "npm:find-up@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:find-up@6.3.0": { - "type": "npm", - "name": "npm:find-up@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "find-up", - "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" - } - }, - "npm:find-versions": { - "type": "npm", - "name": "npm:find-versions", - "data": { - "version": "5.1.0", - "packageName": "find-versions", - "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" - } - }, - "npm:find-webpack": { - "type": "npm", - "name": "npm:find-webpack", - "data": { - "version": "2.2.1", - "packageName": "find-webpack", - "hash": "sha512-OdDtn2AzQvu3l9U1TS5ALc7uTVcLK/yv3fhjo+Pz7yuv4hG3ANKnbkKnPIPZ5ofd9mpYe6wRf5g5H4X9Lx48vQ==" - } - }, - "npm:find-yarn-workspace-root@1.2.1": { - "type": "npm", - "name": "npm:find-yarn-workspace-root@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "find-yarn-workspace-root", - "hash": "sha512-dVtfb0WuQG+8Ag2uWkbG79hOUzEsRrhBzgfn86g2sJPkzmcpGdghbNTfUKGTxymFrY/tLIodDzLoW9nOJ4FY8Q==" - } - }, - "npm:find-yarn-workspace-root": { - "type": "npm", - "name": "npm:find-yarn-workspace-root", - "data": { - "version": "2.0.0", - "packageName": "find-yarn-workspace-root", - "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" - } - }, - "npm:findup-sync": { - "type": "npm", - "name": "npm:findup-sync", - "data": { - "version": "2.0.0", - "packageName": "findup-sync", - "hash": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=" - } - }, - "npm:findup-sync@3.0.0": { - "type": "npm", - "name": "npm:findup-sync@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "findup-sync", - "hash": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==" - } - }, - "npm:fined": { - "type": "npm", - "name": "npm:fined", - "data": { - "version": "1.2.0", - "packageName": "fined", - "hash": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==" - } - }, - "npm:flagged-respawn": { - "type": "npm", - "name": "npm:flagged-respawn", - "data": { - "version": "1.0.1", - "packageName": "flagged-respawn", - "hash": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==" - } - }, - "npm:flamebearer": { - "type": "npm", - "name": "npm:flamebearer", - "data": { - "version": "1.1.3", - "packageName": "flamebearer", - "hash": "sha512-3AEti4HwtsVRQTHTB47kQZvXkenSn5YfmpGGZX/mRW8R+9ZDFO+iqgEC4W7Nb8PQvUceYVfbM7nqQxI/m6DeDA==" - } - }, - "npm:flamegrill": { - "type": "npm", - "name": "npm:flamegrill", - "data": { - "version": "0.2.0", - "packageName": "flamegrill", - "hash": "sha512-p4TMMR47KjZCYy+rLucMfoVOXFPAwxvF+NmNKmDJV0bPzKM3Q19txSiHzIsOuCF9WDWrbTgyA97RT1HI+exQ1g==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.0.4", - "packageName": "flat-cache", - "hash": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" - } - }, - "npm:flat@4.1.0": { - "type": "npm", - "name": "npm:flat@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "flat", - "hash": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.2.5", - "packageName": "flatted", - "hash": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" - } - }, - "npm:flush-write-stream": { - "type": "npm", - "name": "npm:flush-write-stream", - "data": { - "version": "1.1.1", - "packageName": "flush-write-stream", - "hash": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.2", - "packageName": "follow-redirects", - "hash": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" - } - }, - "npm:for-in": { - "type": "npm", - "name": "npm:for-in", - "data": { - "version": "1.0.2", - "packageName": "for-in", - "hash": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" - } - }, - "npm:for-own": { - "type": "npm", - "name": "npm:for-own", - "data": { - "version": "1.0.0", - "packageName": "for-own", - "hash": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=" - } - }, - "npm:foreach": { - "type": "npm", - "name": "npm:foreach", - "data": { - "version": "2.0.5", - "packageName": "foreach", - "hash": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.1.1", - "packageName": "foreground-child", - "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" - } - }, - "npm:forever-agent": { - "type": "npm", - "name": "npm:forever-agent", - "data": { - "version": "0.6.1", - "packageName": "forever-agent", - "hash": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - } - }, - "npm:fork-ts-checker-webpack-plugin": { - "type": "npm", - "name": "npm:fork-ts-checker-webpack-plugin", - "data": { - "version": "6.1.0", - "packageName": "fork-ts-checker-webpack-plugin", - "hash": "sha512-xLNufWQ1dfQUdZe48TGQlER/0OkcMnUB6lfbN9Tt13wsYyo+2DwcCbnOaPBo1PoFow/WL8pJPktGIdbJaHxAnw==" - } - }, - "npm:fork-ts-checker-webpack-plugin@4.1.6": { - "type": "npm", - "name": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "data": { - "version": "4.1.6", - "packageName": "fork-ts-checker-webpack-plugin", - "hash": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==" - } - }, - "npm:form-data-encoder": { - "type": "npm", - "name": "npm:form-data-encoder", - "data": { - "version": "2.0.1", - "packageName": "form-data-encoder", - "hash": "sha512-Oy+P9w5mnO4TWXVgUiQvggNKPI9/ummcSt5usuIV6HkaLKigwzPpoenhEqmGmx3zHqm6ZLJ+CR/99N8JLinaEw==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "2.5.1", - "packageName": "form-data", - "hash": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==" - } - }, - "npm:form-data@3.0.0": { - "type": "npm", - "name": "npm:form-data@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "form-data", - "hash": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==" - } - }, - "npm:form-data@4.0.0": { - "type": "npm", - "name": "npm:form-data@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" - } - }, - "npm:form-data@2.3.3": { - "type": "npm", - "name": "npm:form-data@2.3.3", - "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" - } - }, - "npm:format": { - "type": "npm", - "name": "npm:format", - "data": { - "version": "0.2.2", - "packageName": "format", - "hash": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=" - } - }, - "npm:formdata-polyfill": { - "type": "npm", - "name": "npm:formdata-polyfill", - "data": { - "version": "4.0.10", - "packageName": "formdata-polyfill", - "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" - } - }, - "npm:formik": { - "type": "npm", - "name": "npm:formik", - "data": { - "version": "2.2.6", - "packageName": "formik", - "hash": "sha512-Kxk2zQRafy56zhLmrzcbryUpMBvT0tal5IvcifK5+4YNGelKsnrODFJ0sZQRMQboblWNym4lAW3bt+tf2vApSA==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:fraction.js": { - "type": "npm", - "name": "npm:fraction.js", - "data": { - "version": "4.2.0", - "packageName": "fraction.js", - "hash": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" - } - }, - "npm:fragment-cache": { - "type": "npm", - "name": "npm:fragment-cache", - "data": { - "version": "0.2.1", - "packageName": "fragment-cache", - "hash": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "0.5.2", - "packageName": "fresh", - "hash": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" - } - }, - "npm:from2": { - "type": "npm", - "name": "npm:from2", - "data": { - "version": "2.3.0", - "packageName": "from2", - "hash": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=" - } - }, - "npm:fs-constants": { - "type": "npm", - "name": "npm:fs-constants", - "data": { - "version": "1.0.0", - "packageName": "fs-constants", - "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - } - }, - "npm:fs-exists-sync": { - "type": "npm", - "name": "npm:fs-exists-sync", - "data": { - "version": "0.1.0", - "packageName": "fs-exists-sync", - "hash": "sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=" - } - }, - "npm:fs-extra@11.1.1": { - "type": "npm", - "name": "npm:fs-extra@11.1.1", - "data": { - "version": "11.1.1", - "packageName": "fs-extra", - "hash": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "8.1.0", - "packageName": "fs-extra", - "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - } - }, - "npm:fs-extra@0.30.0": { - "type": "npm", - "name": "npm:fs-extra@0.30.0", - "data": { - "version": "0.30.0", - "packageName": "fs-extra", - "hash": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=" - } - }, - "npm:fs-extra@10.1.0": { - "type": "npm", - "name": "npm:fs-extra@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:fs-extra@4.0.3": { - "type": "npm", - "name": "npm:fs-extra@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "fs-extra", - "hash": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==" - } - }, - "npm:fs-extra@9.1.0": { - "type": "npm", - "name": "npm:fs-extra@9.1.0", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:fs-extra@7.0.1": { - "type": "npm", - "name": "npm:fs-extra@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "fs-extra", - "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" - } - }, - "npm:fs-minipass@1.2.7": { - "type": "npm", - "name": "npm:fs-minipass@1.2.7", - "data": { - "version": "1.2.7", - "packageName": "fs-minipass", - "hash": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - } - }, - "npm:fs-minipass@3.0.2": { - "type": "npm", - "name": "npm:fs-minipass@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "fs-minipass", - "hash": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==" - } - }, - "npm:fs-mkdirp-stream": { - "type": "npm", - "name": "npm:fs-mkdirp-stream", - "data": { - "version": "1.0.0", - "packageName": "fs-mkdirp-stream", - "hash": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=" - } - }, - "npm:fs-monkey": { - "type": "npm", - "name": "npm:fs-monkey", - "data": { - "version": "1.0.3", - "packageName": "fs-monkey", - "hash": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" - } - }, - "npm:fs-write-stream-atomic": { - "type": "npm", - "name": "npm:fs-write-stream-atomic", - "data": { - "version": "1.0.10", - "packageName": "fs-write-stream-atomic", - "hash": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - } - }, - "npm:fsevents@1.2.13": { - "type": "npm", - "name": "npm:fsevents@1.2.13", - "data": { - "version": "1.2.13", - "packageName": "fsevents", - "hash": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==" - } - }, - "npm:fsevents@2.3.3": { - "type": "npm", - "name": "npm:fsevents@2.3.3", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:fsevents@2.1.3": { - "type": "npm", - "name": "npm:fsevents@2.1.3", - "data": { - "version": "2.1.3", - "packageName": "fsevents", - "hash": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==" - } - }, - "npm:fstream": { - "type": "npm", - "name": "npm:fstream", - "data": { - "version": "1.0.12", - "packageName": "fstream", - "hash": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.1", - "packageName": "function-bind", - "hash": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - } - }, - "npm:function.prototype.name": { - "type": "npm", - "name": "npm:function.prototype.name", - "data": { - "version": "1.1.0", - "packageName": "function.prototype.name", - "hash": "sha512-Bs0VRrTz4ghD8pTmbJQD1mZ8A/mN0ur/jGz+A6FBxPDUPkm1tNfF6bhTYPA7i7aF4lZJVr+OXTNNrnnIl58Wfg==" - } - }, - "npm:functional-red-black-tree": { - "type": "npm", - "name": "npm:functional-red-black-tree", - "data": { - "version": "1.0.1", - "packageName": "functional-red-black-tree", - "hash": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" - } - }, - "npm:gauge@3.0.2": { - "type": "npm", - "name": "npm:gauge@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "gauge", - "hash": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==" - } - }, - "npm:gauge@4.0.4": { - "type": "npm", - "name": "npm:gauge@4.0.4", - "data": { - "version": "4.0.4", - "packageName": "gauge", - "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" - } - }, - "npm:gauge": { - "type": "npm", - "name": "npm:gauge", - "data": { - "version": "2.7.4", - "packageName": "gauge", - "hash": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=" - } - }, - "npm:geckodriver": { - "type": "npm", - "name": "npm:geckodriver", - "data": { - "version": "3.0.2", - "packageName": "geckodriver", - "hash": "sha512-GHOQzQnTeZOJdcdEXLuzmcRwkbHuei1VivXkn2BLyleKiT6lTvl0T7vm+d0wvr/EZC7jr0m1u1pBHSfqtuFuNQ==" - } - }, - "npm:generic-names": { - "type": "npm", - "name": "npm:generic-names", - "data": { - "version": "2.0.1", - "packageName": "generic-names", - "hash": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file@1.0.3": { - "type": "npm", - "name": "npm:get-caller-file@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "get-caller-file", - "hash": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-func-name": { - "type": "npm", - "name": "npm:get-func-name", - "data": { - "version": "2.0.2", - "packageName": "get-func-name", - "hash": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.1.1", - "packageName": "get-intrinsic", - "hash": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" - } - }, - "npm:get-lerna-packages": { - "type": "npm", - "name": "npm:get-lerna-packages", - "data": { - "version": "0.1.1", - "packageName": "get-lerna-packages", - "hash": "sha512-venxkvga57gOUZoTmXZlJ0zHc8cmvsx7Y0GTMcoEK/7OCEK3PLpG5gVTbUUMJaLxbzK13AWQdKPf1LSkuEfWqA==" - } - }, - "npm:get-own-enumerable-property-symbols": { - "type": "npm", - "name": "npm:get-own-enumerable-property-symbols", - "data": { - "version": "3.0.0", - "packageName": "get-own-enumerable-property-symbols", - "hash": "sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg==" - } - }, - "npm:get-package-type": { - "type": "npm", - "name": "npm:get-package-type", - "data": { - "version": "0.1.0", - "packageName": "get-package-type", - "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - } - }, - "npm:get-pkg-repo": { - "type": "npm", - "name": "npm:get-pkg-repo", - "data": { - "version": "4.2.1", - "packageName": "get-pkg-repo", - "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" - } - }, - "npm:get-port": { - "type": "npm", - "name": "npm:get-port", - "data": { - "version": "5.1.1", - "packageName": "get-port", - "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" - } - }, - "npm:get-stdin@4.0.1": { - "type": "npm", - "name": "npm:get-stdin@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "get-stdin", - "hash": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" - } - }, - "npm:get-stdin": { - "type": "npm", - "name": "npm:get-stdin", - "data": { - "version": "6.0.0", - "packageName": "get-stdin", - "hash": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==" - } - }, - "npm:get-stream@6.0.0": { - "type": "npm", - "name": "npm:get-stream@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "get-stream", - "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" - } - }, - "npm:get-stream@3.0.0": { - "type": "npm", - "name": "npm:get-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "get-stream", - "hash": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" - } - }, - "npm:get-stream@4.1.0": { - "type": "npm", - "name": "npm:get-stream@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "get-stream", - "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "5.1.0", - "packageName": "get-stream", - "hash": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==" - } - }, - "npm:get-stream@6.0.1": { - "type": "npm", - "name": "npm:get-stream@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - } - }, - "npm:get-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.0.0", - "packageName": "get-symbol-description", - "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" - } - }, - "npm:get-tsconfig": { - "type": "npm", - "name": "npm:get-tsconfig", - "data": { - "version": "4.7.0", - "packageName": "get-tsconfig", - "hash": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==" - } - }, - "npm:get-value": { - "type": "npm", - "name": "npm:get-value", - "data": { - "version": "2.0.6", - "packageName": "get-value", - "hash": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" - } - }, - "npm:getos": { - "type": "npm", - "name": "npm:getos", - "data": { - "version": "3.2.1", - "packageName": "getos", - "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" - } - }, - "npm:getpass": { - "type": "npm", - "name": "npm:getpass", - "data": { - "version": "0.1.7", - "packageName": "getpass", - "hash": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=" - } - }, - "npm:git-config-path": { - "type": "npm", - "name": "npm:git-config-path", - "data": { - "version": "1.0.1", - "packageName": "git-config-path", - "hash": "sha1-bTP37WPbDQ4RgTFQO6s6ykfVRmQ=" - } - }, - "npm:git-raw-commits": { - "type": "npm", - "name": "npm:git-raw-commits", - "data": { - "version": "3.0.0", - "packageName": "git-raw-commits", - "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" - } - }, - "npm:git-remote-origin-url": { - "type": "npm", - "name": "npm:git-remote-origin-url", - "data": { - "version": "2.0.0", - "packageName": "git-remote-origin-url", - "hash": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=" - } - }, - "npm:git-semver-tags": { - "type": "npm", - "name": "npm:git-semver-tags", - "data": { - "version": "5.0.1", - "packageName": "git-semver-tags", - "hash": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==" - } - }, - "npm:git-up": { - "type": "npm", - "name": "npm:git-up", - "data": { - "version": "7.0.0", - "packageName": "git-up", - "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" - } - }, - "npm:git-url-parse": { - "type": "npm", - "name": "npm:git-url-parse", - "data": { - "version": "13.1.0", - "packageName": "git-url-parse", - "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" - } - }, - "npm:gitconfiglocal": { - "type": "npm", - "name": "npm:gitconfiglocal", - "data": { - "version": "1.0.0", - "packageName": "gitconfiglocal", - "hash": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=" - } - }, - "npm:github-slugger": { - "type": "npm", - "name": "npm:github-slugger", - "data": { - "version": "1.3.0", - "packageName": "github-slugger", - "hash": "sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==" - } - }, - "npm:gitlab": { - "type": "npm", - "name": "npm:gitlab", - "data": { - "version": "10.2.1", - "packageName": "gitlab", - "hash": "sha512-z+DxRF1C9uayVbocs9aJkJz+kGy14TSm1noB/rAIEBbXOkOYbjKxyuqJzt+0zeFpXFdgA0yq6DVVbvM7HIfGwg==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-parent@3.1.0": { - "type": "npm", - "name": "npm:glob-parent@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "glob-parent", - "hash": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=" - } - }, - "npm:glob-promise": { - "type": "npm", - "name": "npm:glob-promise", - "data": { - "version": "3.4.0", - "packageName": "glob-promise", - "hash": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==" - } - }, - "npm:glob-stream": { - "type": "npm", - "name": "npm:glob-stream", - "data": { - "version": "6.1.0", - "packageName": "glob-stream", - "hash": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=" - } - }, - "npm:glob-to-regexp@0.3.0": { - "type": "npm", - "name": "npm:glob-to-regexp@0.3.0", - "data": { - "version": "0.3.0", - "packageName": "glob-to-regexp", - "hash": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:glob-watcher": { - "type": "npm", - "name": "npm:glob-watcher", - "data": { - "version": "5.0.3", - "packageName": "glob-watcher", - "hash": "sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg==" - } - }, - "npm:glob@7.1.3": { - "type": "npm", - "name": "npm:glob@7.1.3", - "data": { - "version": "7.1.3", - "packageName": "glob", - "hash": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==" - } - }, - "npm:glob@7.1.4": { - "type": "npm", - "name": "npm:glob@7.1.4", - "data": { - "version": "7.1.4", - "packageName": "glob", - "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.2.0", - "packageName": "glob", - "hash": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==" - } - }, - "npm:glob@10.3.3": { - "type": "npm", - "name": "npm:glob@10.3.3", - "data": { - "version": "10.3.3", - "packageName": "glob", - "hash": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==" - } - }, - "npm:glob@5.0.15": { - "type": "npm", - "name": "npm:glob@5.0.15", - "data": { - "version": "5.0.15", - "packageName": "glob", - "hash": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=" - } - }, - "npm:glob@8.1.0": { - "type": "npm", - "name": "npm:glob@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:glob@9.3.5": { - "type": "npm", - "name": "npm:glob@9.3.5", - "data": { - "version": "9.3.5", - "packageName": "glob", - "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" - } - }, - "npm:global-dirs@0.1.1": { - "type": "npm", - "name": "npm:global-dirs@0.1.1", - "data": { - "version": "0.1.1", - "packageName": "global-dirs", - "hash": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=" - } - }, - "npm:global-dirs": { - "type": "npm", - "name": "npm:global-dirs", - "data": { - "version": "3.0.0", - "packageName": "global-dirs", - "hash": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==" - } - }, - "npm:global-modules": { - "type": "npm", - "name": "npm:global-modules", - "data": { - "version": "1.0.0", - "packageName": "global-modules", - "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" - } - }, - "npm:global-prefix": { - "type": "npm", - "name": "npm:global-prefix", - "data": { - "version": "1.0.2", - "packageName": "global-prefix", - "hash": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=" - } - }, - "npm:global": { - "type": "npm", - "name": "npm:global", - "data": { - "version": "4.4.0", - "packageName": "global", - "hash": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:globals@13.12.0": { - "type": "npm", - "name": "npm:globals@13.12.0", - "data": { - "version": "13.12.0", - "packageName": "globals", - "hash": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==" - } - }, - "npm:globals@9.18.0": { - "type": "npm", - "name": "npm:globals@9.18.0", - "data": { - "version": "9.18.0", - "packageName": "globals", - "hash": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.0", - "packageName": "globalthis", - "hash": "sha512-vcCAZTJ3r5Qcu5l8/2oyVdoFwxKgfYnMTR2vwWeux/NAVZK3PwcMaWkdUIn4GJbmKuRK7xcvDsLuK+CKcXyodg==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:globby@10.0.2": { - "type": "npm", - "name": "npm:globby@10.0.2", - "data": { - "version": "10.0.2", - "packageName": "globby", - "hash": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==" - } - }, - "npm:globby@13.2.2": { - "type": "npm", - "name": "npm:globby@13.2.2", - "data": { - "version": "13.2.2", - "packageName": "globby", - "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" - } - }, - "npm:globby@6.1.0": { - "type": "npm", - "name": "npm:globby@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "globby", - "hash": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=" - } - }, - "npm:globby@9.2.0": { - "type": "npm", - "name": "npm:globby@9.2.0", - "data": { - "version": "9.2.0", - "packageName": "globby", - "hash": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==" - } - }, - "npm:glogg": { - "type": "npm", - "name": "npm:glogg", - "data": { - "version": "1.0.2", - "packageName": "glogg", - "hash": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==" - } - }, - "npm:good-listener": { - "type": "npm", - "name": "npm:good-listener", - "data": { - "version": "1.2.2", - "packageName": "good-listener", - "hash": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=" - } - }, - "npm:got": { - "type": "npm", - "name": "npm:got", - "data": { - "version": "11.8.5", - "packageName": "got", - "hash": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==" - } - }, - "npm:got@12.3.1": { - "type": "npm", - "name": "npm:got@12.3.1", - "data": { - "version": "12.3.1", - "packageName": "got", - "hash": "sha512-tS6+JMhBh4iXMSXF6KkIsRxmloPln31QHDlcb6Ec3bzxjjFJFr/8aXdpyuLmVc9I4i2HyBHYw1QU5K1ruUdpkw==" - } - }, - "npm:got@6.7.1": { - "type": "npm", - "name": "npm:got@6.7.1", - "data": { - "version": "6.7.1", - "packageName": "got", - "hash": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:graphviz": { - "type": "npm", - "name": "npm:graphviz", - "data": { - "version": "0.0.9", - "packageName": "graphviz", - "hash": "sha512-SmoY2pOtcikmMCqCSy2NO1YsRfu9OO0wpTlOYW++giGjfX1a6gax/m1Fo8IdUd0/3H15cTOfR1SMKwohj4LKsg==" - } - }, - "npm:growl": { - "type": "npm", - "name": "npm:growl", - "data": { - "version": "1.10.5", - "packageName": "growl", - "hash": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==" - } - }, - "npm:gulp-babel": { - "type": "npm", - "name": "npm:gulp-babel", - "data": { - "version": "8.0.0", - "packageName": "gulp-babel", - "hash": "sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ==" - } - }, - "npm:gulp-cache": { - "type": "npm", - "name": "npm:gulp-cache", - "data": { - "version": "1.1.3", - "packageName": "gulp-cache", - "hash": "sha512-NE814LdX1NWQn2sMzn+Rf673o4mqlgg7OyLf92oQ4KEl6DdPfduEGLNH+HexLVcFZXH93DBuxFOvpv4/Js5VaA==" - } - }, - "npm:gulp-cli": { - "type": "npm", - "name": "npm:gulp-cli", - "data": { - "version": "2.2.0", - "packageName": "gulp-cli", - "hash": "sha512-rGs3bVYHdyJpLqR0TUBnlcZ1O5O++Zs4bA0ajm+zr3WFCfiSLjGwoCBqFs18wzN+ZxahT9DkOK5nDf26iDsWjA==" - } - }, - "npm:gulp-remember": { - "type": "npm", - "name": "npm:gulp-remember", - "data": { - "version": "1.0.1", - "packageName": "gulp-remember", - "hash": "sha512-6OMSOzGeW05rl2TSFiBgXp6bV5r16n1CbZAT4t98vt1osQQ0UL76Y2M91xJTtMwppTo3Aj25Rle85jCP1eL9rQ==" - } - }, - "npm:gulp-sourcemaps": { - "type": "npm", - "name": "npm:gulp-sourcemaps", - "data": { - "version": "2.6.5", - "packageName": "gulp-sourcemaps", - "hash": "sha512-SYLBRzPTew8T5Suh2U8jCSDKY+4NARua4aqjj8HOysBh2tSgT9u4jc1FYirAdPx1akUxxDeK++fqw6Jg0LkQRg==" - } - }, - "npm:gulp-util": { - "type": "npm", - "name": "npm:gulp-util", - "data": { - "version": "3.0.8", - "packageName": "gulp-util", - "hash": "sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==" - } - }, - "npm:gulp": { - "type": "npm", - "name": "npm:gulp", - "data": { - "version": "4.0.2", - "packageName": "gulp", - "hash": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==" - } - }, - "npm:gulplog": { - "type": "npm", - "name": "npm:gulplog", - "data": { - "version": "1.0.0", - "packageName": "gulplog", - "hash": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=" - } - }, - "npm:gzip-js": { - "type": "npm", - "name": "npm:gzip-js", - "data": { - "version": "0.3.2", - "packageName": "gzip-js", - "hash": "sha1-IxF+/usozzhSSN7/Df+tiUg22Ws=" - } - }, - "npm:gzip-size": { - "type": "npm", - "name": "npm:gzip-size", - "data": { - "version": "5.1.1", - "packageName": "gzip-size", - "hash": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==" - } - }, - "npm:gzip-size@6.0.0": { - "type": "npm", - "name": "npm:gzip-size@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "gzip-size", - "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" - } - }, - "npm:gzip-size@7.0.0": { - "type": "npm", - "name": "npm:gzip-size@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "gzip-size", - "hash": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==" - } - }, - "npm:halcyon": { - "type": "npm", - "name": "npm:halcyon", - "data": { - "version": "0.19.1", - "packageName": "halcyon", - "hash": "sha1-86aN7DydyKJ8Ot5pbol+GxSfCKc=" - } - }, - "npm:handle-thing": { - "type": "npm", - "name": "npm:handle-thing", - "data": { - "version": "2.0.0", - "packageName": "handle-thing", - "hash": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==" - } - }, - "npm:handlebars": { - "type": "npm", - "name": "npm:handlebars", - "data": { - "version": "4.7.7", - "packageName": "handlebars", - "hash": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" - } - }, - "npm:har-schema": { - "type": "npm", - "name": "npm:har-schema", - "data": { - "version": "2.0.0", - "packageName": "har-schema", - "hash": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - } - }, - "npm:har-validator": { - "type": "npm", - "name": "npm:har-validator", - "data": { - "version": "5.1.3", - "packageName": "har-validator", - "hash": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==" - } - }, - "npm:hard-rejection": { - "type": "npm", - "name": "npm:hard-rejection", - "data": { - "version": "2.1.0", - "packageName": "hard-rejection", - "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" - } - }, - "npm:harmony-reflect": { - "type": "npm", - "name": "npm:harmony-reflect", - "data": { - "version": "1.6.2", - "packageName": "harmony-reflect", - "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" - } - }, - "npm:has-ansi": { - "type": "npm", - "name": "npm:has-ansi", - "data": { - "version": "2.0.0", - "packageName": "has-ansi", - "hash": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=" - } - }, - "npm:has-bigints": { - "type": "npm", - "name": "npm:has-bigints", - "data": { - "version": "1.0.1", - "packageName": "has-bigints", - "hash": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" - } - }, - "npm:has-flag@1.0.0": { - "type": "npm", - "name": "npm:has-flag@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "has-flag", - "hash": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - } - }, - "npm:has-flag@2.0.0": { - "type": "npm", - "name": "npm:has-flag@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "has-flag", - "hash": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - } - }, - "npm:has-flag@4.0.0": { - "type": "npm", - "name": "npm:has-flag@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:has-glob": { - "type": "npm", - "name": "npm:has-glob", - "data": { - "version": "1.0.0", - "packageName": "has-glob", - "hash": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=" - } - }, - "npm:has-gulplog": { - "type": "npm", - "name": "npm:has-gulplog", - "data": { - "version": "0.1.0", - "packageName": "has-gulplog", - "hash": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.0.2", - "packageName": "has-symbols", - "hash": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.0", - "packageName": "has-tostringtag", - "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" - } - }, - "npm:has-unicode": { - "type": "npm", - "name": "npm:has-unicode", - "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" - } - }, - "npm:has-value@0.3.1": { - "type": "npm", - "name": "npm:has-value@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "has-value", - "hash": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=" - } - }, - "npm:has-value": { - "type": "npm", - "name": "npm:has-value", - "data": { - "version": "1.0.0", - "packageName": "has-value", - "hash": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=" - } - }, - "npm:has-values@0.1.4": { - "type": "npm", - "name": "npm:has-values@0.1.4", - "data": { - "version": "0.1.4", - "packageName": "has-values", - "hash": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - } - }, - "npm:has-values": { - "type": "npm", - "name": "npm:has-values", - "data": { - "version": "1.0.0", - "packageName": "has-values", - "hash": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=" - } - }, - "npm:has": { - "type": "npm", - "name": "npm:has", - "data": { - "version": "1.0.3", - "packageName": "has", - "hash": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" - } - }, - "npm:hash-base": { - "type": "npm", - "name": "npm:hash-base", - "data": { - "version": "3.0.4", - "packageName": "hash-base", - "hash": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=" - } - }, - "npm:hash.js": { - "type": "npm", - "name": "npm:hash.js", - "data": { - "version": "1.1.7", - "packageName": "hash.js", - "hash": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==" - } - }, - "npm:hast-to-hyperscript": { - "type": "npm", - "name": "npm:hast-to-hyperscript", - "data": { - "version": "9.0.1", - "packageName": "hast-to-hyperscript", - "hash": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==" - } - }, - "npm:hast-util-from-parse5": { - "type": "npm", - "name": "npm:hast-util-from-parse5", - "data": { - "version": "6.0.1", - "packageName": "hast-util-from-parse5", - "hash": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==" - } - }, - "npm:hast-util-parse-selector": { - "type": "npm", - "name": "npm:hast-util-parse-selector", - "data": { - "version": "2.2.5", - "packageName": "hast-util-parse-selector", - "hash": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" - } - }, - "npm:hast-util-raw": { - "type": "npm", - "name": "npm:hast-util-raw", - "data": { - "version": "6.0.1", - "packageName": "hast-util-raw", - "hash": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==" - } - }, - "npm:hast-util-to-parse5": { - "type": "npm", - "name": "npm:hast-util-to-parse5", - "data": { - "version": "6.0.0", - "packageName": "hast-util-to-parse5", - "hash": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==" - } - }, - "npm:hastscript": { - "type": "npm", - "name": "npm:hastscript", - "data": { - "version": "5.1.0", - "packageName": "hastscript", - "hash": "sha512-7mOQX5VfVs/gmrOGlN8/EDfp1GqV6P3gTNVt+KnX4gbYhpASTM8bklFdFQCbFRAadURXAmw0R1QQdBdqp7jswQ==" - } - }, - "npm:hastscript@6.0.0": { - "type": "npm", - "name": "npm:hastscript@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "hastscript", - "hash": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==" - } - }, - "npm:hasurl": { - "type": "npm", - "name": "npm:hasurl", - "data": { - "version": "1.0.0", - "packageName": "hasurl", - "hash": "sha512-43ypUd3DbwyCT01UYpA99AEZxZ4aKtRxWGBHEIbjcOsUghd9YUON0C+JF6isNjaiwC/UF5neaUudy6JS9jZPZQ==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:header-case": { - "type": "npm", - "name": "npm:header-case", - "data": { - "version": "1.0.1", - "packageName": "header-case", - "hash": "sha1-lTWXMZfBRLCWE81l0xfvGZY70C0=" - } - }, - "npm:highlight.js": { - "type": "npm", - "name": "npm:highlight.js", - "data": { - "version": "9.13.1", - "packageName": "highlight.js", - "hash": "sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A==" - } - }, - "npm:history": { - "type": "npm", - "name": "npm:history", - "data": { - "version": "4.10.1", - "packageName": "history", - "hash": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" - } - }, - "npm:hmac-drbg": { - "type": "npm", - "name": "npm:hmac-drbg", - "data": { - "version": "1.0.1", - "packageName": "hmac-drbg", - "hash": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=" - } - }, - "npm:hoek": { - "type": "npm", - "name": "npm:hoek", - "data": { - "version": "4.2.1", - "packageName": "hoek", - "hash": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==" - } - }, - "npm:hoist-non-react-statics": { - "type": "npm", - "name": "npm:hoist-non-react-statics", - "data": { - "version": "3.3.2", - "packageName": "hoist-non-react-statics", - "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" - } - }, - "npm:homedir-polyfill": { - "type": "npm", - "name": "npm:homedir-polyfill", - "data": { - "version": "1.0.3", - "packageName": "homedir-polyfill", - "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" - } - }, - "npm:hosted-git-info@2.8.9": { - "type": "npm", - "name": "npm:hosted-git-info@2.8.9", - "data": { - "version": "2.8.9", - "packageName": "hosted-git-info", - "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" - } - }, - "npm:hosted-git-info@3.0.8": { - "type": "npm", - "name": "npm:hosted-git-info@3.0.8", - "data": { - "version": "3.0.8", - "packageName": "hosted-git-info", - "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" - } - }, - "npm:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "4.1.0", - "packageName": "hosted-git-info", - "hash": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" - } - }, - "npm:hosted-git-info@6.1.1": { - "type": "npm", - "name": "npm:hosted-git-info@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "hosted-git-info", - "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" - } - }, - "npm:hosted-git-info@7.0.1": { - "type": "npm", - "name": "npm:hosted-git-info@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "hosted-git-info", - "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" - } - }, - "npm:hpack.js": { - "type": "npm", - "name": "npm:hpack.js", - "data": { - "version": "2.1.6", - "packageName": "hpack.js", - "hash": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=" - } - }, - "npm:html-element-map": { - "type": "npm", - "name": "npm:html-element-map", - "data": { - "version": "1.0.1", - "packageName": "html-element-map", - "hash": "sha512-BZSfdEm6n706/lBfXKWa4frZRZcT5k1cOusw95ijZsHlI+GdgY0v95h6IzO3iIDf2ROwq570YTwqNPqHcNMozw==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.3.2", - "packageName": "html-entities", - "hash": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==" - } - }, - "npm:html-escaper": { - "type": "npm", - "name": "npm:html-escaper", - "data": { - "version": "2.0.0", - "packageName": "html-escaper", - "hash": "sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==" - } - }, - "npm:html-loader": { - "type": "npm", - "name": "npm:html-loader", - "data": { - "version": "1.3.2", - "packageName": "html-loader", - "hash": "sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==" - } - }, - "npm:html-minifier-terser": { - "type": "npm", - "name": "npm:html-minifier-terser", - "data": { - "version": "5.1.1", - "packageName": "html-minifier-terser", - "hash": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==" - } - }, - "npm:html-tags": { - "type": "npm", - "name": "npm:html-tags", - "data": { - "version": "3.1.0", - "packageName": "html-tags", - "hash": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==" - } - }, - "npm:html-to-react": { - "type": "npm", - "name": "npm:html-to-react", - "data": { - "version": "1.4.2", - "packageName": "html-to-react", - "hash": "sha512-TdTfxd95sRCo6QL8admCkE7mvNNrXtGoVr1dyS+7uvc8XCqAymnf/6ckclvnVbQNUo2Nh21VPwtfEHd0khiV7g==" - } - }, - "npm:html-void-elements": { - "type": "npm", - "name": "npm:html-void-elements", - "data": { - "version": "1.0.5", - "packageName": "html-void-elements", - "hash": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" - } - }, - "npm:html-webpack-plugin": { - "type": "npm", - "name": "npm:html-webpack-plugin", - "data": { - "version": "5.1.0", - "packageName": "html-webpack-plugin", - "hash": "sha512-2axkp+2NHmvHUWrKe1dY4LyM3WatQEdFChr42OY7R/Ad7f0AQzaKscGCcqN/FtQBxo8rdfJP7M3RMFDttqok3g==" - } - }, - "npm:html-webpack-plugin@4.5.2": { - "type": "npm", - "name": "npm:html-webpack-plugin@4.5.2", - "data": { - "version": "4.5.2", - "packageName": "html-webpack-plugin", - "hash": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==" - } - }, - "npm:htmlparser2@3.10.1": { - "type": "npm", - "name": "npm:htmlparser2@3.10.1", - "data": { - "version": "3.10.1", - "packageName": "htmlparser2", - "hash": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==" - } - }, - "npm:htmlparser2": { - "type": "npm", - "name": "npm:htmlparser2", - "data": { - "version": "4.1.0", - "packageName": "htmlparser2", - "hash": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==" - } - }, - "npm:htmlparser2@6.1.0": { - "type": "npm", - "name": "npm:htmlparser2@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "htmlparser2", - "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" - } - }, - "npm:http-assert": { - "type": "npm", - "name": "npm:http-assert", - "data": { - "version": "1.5.0", - "packageName": "http-assert", - "hash": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==" - } - }, - "npm:http-cache-semantics": { - "type": "npm", - "name": "npm:http-cache-semantics", - "data": { - "version": "4.1.1", - "packageName": "http-cache-semantics", - "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - } - }, - "npm:http-deceiver": { - "type": "npm", - "name": "npm:http-deceiver", - "data": { - "version": "1.2.7", - "packageName": "http-deceiver", - "hash": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "1.8.1", - "packageName": "http-errors", - "hash": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==" - } - }, - "npm:http-errors@1.6.3": { - "type": "npm", - "name": "npm:http-errors@1.6.3", - "data": { - "version": "1.6.3", - "packageName": "http-errors", - "hash": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=" - } - }, - "npm:http-parser-js": { - "type": "npm", - "name": "npm:http-parser-js", - "data": { - "version": "0.5.3", - "packageName": "http-parser-js", - "hash": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" - } - }, - "npm:http-proxy-agent@2.1.0": { - "type": "npm", - "name": "npm:http-proxy-agent@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "http-proxy-agent", - "hash": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==" - } - }, - "npm:http-proxy-agent@4.0.1": { - "type": "npm", - "name": "npm:http-proxy-agent@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "http-proxy-agent", - "hash": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:http-proxy-middleware": { - "type": "npm", - "name": "npm:http-proxy-middleware", - "data": { - "version": "2.0.6", - "packageName": "http-proxy-middleware", - "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:http-signature@1.2.0": { - "type": "npm", - "name": "npm:http-signature@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "http-signature", - "hash": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=" - } - }, - "npm:http-signature": { - "type": "npm", - "name": "npm:http-signature", - "data": { - "version": "1.3.6", - "packageName": "http-signature", - "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" - } - }, - "npm:http2-wrapper": { - "type": "npm", - "name": "npm:http2-wrapper", - "data": { - "version": "1.0.0-beta.5.2", - "packageName": "http2-wrapper", - "hash": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==" - } - }, - "npm:http2-wrapper@2.1.11": { - "type": "npm", - "name": "npm:http2-wrapper@2.1.11", - "data": { - "version": "2.1.11", - "packageName": "http2-wrapper", - "hash": "sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==" - } - }, - "npm:https-browserify": { - "type": "npm", - "name": "npm:https-browserify", - "data": { - "version": "1.0.0", - "packageName": "https-browserify", - "hash": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - } - }, - "npm:https-proxy-agent@5.0.0": { - "type": "npm", - "name": "npm:https-proxy-agent@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "https-proxy-agent", - "hash": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:https-proxy-agent@2.2.4": { - "type": "npm", - "name": "npm:https-proxy-agent@2.2.4", - "data": { - "version": "2.2.4", - "packageName": "https-proxy-agent", - "hash": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==" - } - }, - "npm:human-signals@1.1.1": { - "type": "npm", - "name": "npm:human-signals@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "human-signals", - "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "npm:humanize-ms": { - "type": "npm", - "name": "npm:humanize-ms", - "data": { - "version": "1.2.1", - "packageName": "humanize-ms", - "hash": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=" - } - }, - "npm:humps": { - "type": "npm", - "name": "npm:humps", - "data": { - "version": "2.0.1", - "packageName": "humps", - "hash": "sha1-3QLqYIG9BWjcXQcxhEY5V7qe+ao=" - } - }, - "npm:hyperlinker": { - "type": "npm", - "name": "npm:hyperlinker", - "data": { - "version": "1.0.0", - "packageName": "hyperlinker", - "hash": "sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==" - } - }, - "npm:hyphenate-style-name": { - "type": "npm", - "name": "npm:hyphenate-style-name", - "data": { - "version": "1.0.3", - "packageName": "hyphenate-style-name", - "hash": "sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==" - } - }, - "npm:iconv-lite@0.4.24": { - "type": "npm", - "name": "npm:iconv-lite@0.4.24", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:icss-replace-symbols": { - "type": "npm", - "name": "npm:icss-replace-symbols", - "data": { - "version": "1.1.0", - "packageName": "icss-replace-symbols", - "hash": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" - } - }, - "npm:icss-utils": { - "type": "npm", - "name": "npm:icss-utils", - "data": { - "version": "4.1.1", - "packageName": "icss-utils", - "hash": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==" - } - }, - "npm:icss-utils@5.1.0": { - "type": "npm", - "name": "npm:icss-utils@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "icss-utils", - "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - } - }, - "npm:identity-obj-proxy": { - "type": "npm", - "name": "npm:identity-obj-proxy", - "data": { - "version": "3.0.0", - "packageName": "identity-obj-proxy", - "hash": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:iferr": { - "type": "npm", - "name": "npm:iferr", - "data": { - "version": "0.1.5", - "packageName": "iferr", - "hash": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" - } - }, - "npm:ignore-loader": { - "type": "npm", - "name": "npm:ignore-loader", - "data": { - "version": "0.1.2", - "packageName": "ignore-loader", - "hash": "sha512-yOJQEKrNwoYqrWLS4DcnzM7SEQhRKis5mB+LdKKh4cPmGYlLPR0ozRzHV5jmEk2IxptqJNQA5Cc0gw8Fj12bXA==" - } - }, - "npm:ignore-not-found-export-webpack-plugin": { - "type": "npm", - "name": "npm:ignore-not-found-export-webpack-plugin", - "data": { - "version": "1.0.2", - "packageName": "ignore-not-found-export-webpack-plugin", - "hash": "sha512-CeMqul+L7fEEc59NpQhzr5sh/LRjbMW4cYmMUJWdCm3dYyWF8Big6qea0YSBHQvajKfrnKTcARmwzd9rTp+50w==" - } - }, - "npm:ignore-walk@3.0.3": { - "type": "npm", - "name": "npm:ignore-walk@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "ignore-walk", - "hash": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==" - } - }, - "npm:ignore-walk": { - "type": "npm", - "name": "npm:ignore-walk", - "data": { - "version": "5.0.1", - "packageName": "ignore-walk", - "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" - } - }, - "npm:ignore-walk@6.0.3": { - "type": "npm", - "name": "npm:ignore-walk@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "ignore-walk", - "hash": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==" - } - }, - "npm:ignore@4.0.6": { - "type": "npm", - "name": "npm:ignore@4.0.6", - "data": { - "version": "4.0.6", - "packageName": "ignore", - "hash": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.2.4", - "packageName": "ignore", - "hash": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" - } - }, - "npm:immediate": { - "type": "npm", - "name": "npm:immediate", - "data": { - "version": "3.0.6", - "packageName": "immediate", - "hash": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" - } - }, - "npm:immer": { - "type": "npm", - "name": "npm:immer", - "data": { - "version": "9.0.12", - "packageName": "immer", - "hash": "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" - } - }, - "npm:immutable": { - "type": "npm", - "name": "npm:immutable", - "data": { - "version": "4.0.0", - "packageName": "immutable", - "hash": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==" - } - }, - "npm:import-fresh@2.0.0": { - "type": "npm", - "name": "npm:import-fresh@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "import-fresh", - "hash": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.2.1", - "packageName": "import-fresh", - "hash": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==" - } - }, - "npm:import-lazy@2.1.0": { - "type": "npm", - "name": "npm:import-lazy@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "import-lazy", - "hash": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" - } - }, - "npm:import-lazy": { - "type": "npm", - "name": "npm:import-lazy", - "data": { - "version": "4.0.0", - "packageName": "import-lazy", - "hash": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:imports-loader": { - "type": "npm", - "name": "npm:imports-loader", - "data": { - "version": "1.2.0", - "packageName": "imports-loader", - "hash": "sha512-zPvangKEgrrPeqeUqH0Uhc59YqK07JqZBi9a9cQ3v/EKUIqrbJHY4CvUrDus2lgQa5AmPyXuGrWP8JJTqzE5RQ==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" - } - }, - "npm:indent-string@2.1.0": { - "type": "npm", - "name": "npm:indent-string@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "indent-string", - "hash": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:indent-string@5.0.0": { - "type": "npm", - "name": "npm:indent-string@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "indent-string", - "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" - } - }, - "npm:infer-owner": { - "type": "npm", - "name": "npm:infer-owner", - "data": { - "version": "1.0.4", - "packageName": "infer-owner", - "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" - } - }, - "npm:inflation": { - "type": "npm", - "name": "npm:inflation", - "data": { - "version": "2.0.0", - "packageName": "inflation", - "hash": "sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==" - } - }, - "npm:inflight": { - "type": "npm", - "name": "npm:inflight", - "data": { - "version": "1.0.6", - "packageName": "inflight", - "hash": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:inherits@2.0.1": { - "type": "npm", - "name": "npm:inherits@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "inherits", - "hash": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - } - }, - "npm:inherits@2.0.3": { - "type": "npm", - "name": "npm:inherits@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "inherits", - "hash": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } - }, - "npm:ini@2.0.0": { - "type": "npm", - "name": "npm:ini@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ini", - "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:init-package-json": { - "type": "npm", - "name": "npm:init-package-json", - "data": { - "version": "5.0.0", - "packageName": "init-package-json", - "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" - } - }, - "npm:inline-style-expand-shorthand": { - "type": "npm", - "name": "npm:inline-style-expand-shorthand", - "data": { - "version": "1.2.0", - "packageName": "inline-style-expand-shorthand", - "hash": "sha512-YdteDMlG1StHeEXF7opaVfPMCIVO8B4TPjE6kZLwdhZdgjH3Q7lxwSe+89sMhdPN77F3quOYhBbqBE0+KXuHpA==" - } - }, - "npm:inline-style-parser": { - "type": "npm", - "name": "npm:inline-style-parser", - "data": { - "version": "0.1.1", - "packageName": "inline-style-parser", - "hash": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" - } - }, - "npm:inquirer": { - "type": "npm", - "name": "npm:inquirer", - "data": { - "version": "7.3.3", - "packageName": "inquirer", - "hash": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==" - } - }, - "npm:inquirer@8.2.4": { - "type": "npm", - "name": "npm:inquirer@8.2.4", - "data": { - "version": "8.2.4", - "packageName": "inquirer", - "hash": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.0.3", - "packageName": "internal-slot", - "hash": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" - } - }, - "npm:internmap": { - "type": "npm", - "name": "npm:internmap", - "data": { - "version": "1.0.1", - "packageName": "internmap", - "hash": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" - } - }, - "npm:interpret": { - "type": "npm", - "name": "npm:interpret", - "data": { - "version": "1.2.0", - "packageName": "interpret", - "hash": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==" - } - }, - "npm:interpret@2.2.0": { - "type": "npm", - "name": "npm:interpret@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "interpret", - "hash": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==" - } - }, - "npm:invariant": { - "type": "npm", - "name": "npm:invariant", - "data": { - "version": "2.2.4", - "packageName": "invariant", - "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" - } - }, - "npm:invert-kv": { - "type": "npm", - "name": "npm:invert-kv", - "data": { - "version": "1.0.0", - "packageName": "invert-kv", - "hash": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" - } - }, - "npm:iobuffer": { - "type": "npm", - "name": "npm:iobuffer", - "data": { - "version": "5.2.1", - "packageName": "iobuffer", - "hash": "sha512-VcilIyf5iaeEEPwCdhDsVMpZuWJ94j9KYI1hQQz1z7k/m+WygYvOGc6s51sg5R4qzN2EfDGEIW9EUbTU0iJIXw==" - } - }, - "npm:ip@1.1.5": { - "type": "npm", - "name": "npm:ip@1.1.5", - "data": { - "version": "1.1.5", - "packageName": "ip", - "hash": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" - } - }, - "npm:ip": { - "type": "npm", - "name": "npm:ip", - "data": { - "version": "2.0.0", - "packageName": "ip", - "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - } - }, - "npm:ipaddr.js@1.9.1": { - "type": "npm", - "name": "npm:ipaddr.js@1.9.1", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "2.0.1", - "packageName": "ipaddr.js", - "hash": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" - } - }, - "npm:is-absolute-url": { - "type": "npm", - "name": "npm:is-absolute-url", - "data": { - "version": "3.0.3", - "packageName": "is-absolute-url", - "hash": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" - } - }, - "npm:is-absolute": { - "type": "npm", - "name": "npm:is-absolute", - "data": { - "version": "1.0.0", - "packageName": "is-absolute", - "hash": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==" - } - }, - "npm:is-accessor-descriptor@0.1.6": { - "type": "npm", - "name": "npm:is-accessor-descriptor@0.1.6", - "data": { - "version": "0.1.6", - "packageName": "is-accessor-descriptor", - "hash": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=" - } - }, - "npm:is-accessor-descriptor": { - "type": "npm", - "name": "npm:is-accessor-descriptor", - "data": { - "version": "1.0.0", - "packageName": "is-accessor-descriptor", - "hash": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" - } - }, - "npm:is-alphabetical": { - "type": "npm", - "name": "npm:is-alphabetical", - "data": { - "version": "1.0.4", - "packageName": "is-alphabetical", - "hash": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" - } - }, - "npm:is-alphanumerical": { - "type": "npm", - "name": "npm:is-alphanumerical", - "data": { - "version": "1.0.3", - "packageName": "is-alphanumerical", - "hash": "sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA==" - } - }, - "npm:is-arguments": { - "type": "npm", - "name": "npm:is-arguments", - "data": { - "version": "1.0.4", - "packageName": "is-arguments", - "hash": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - } - }, - "npm:is-arrayish@0.3.2": { - "type": "npm", - "name": "npm:is-arrayish@0.3.2", - "data": { - "version": "0.3.2", - "packageName": "is-arrayish", - "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.0.2", - "packageName": "is-bigint", - "hash": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" - } - }, - "npm:is-binary-path@1.0.1": { - "type": "npm", - "name": "npm:is-binary-path@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "is-binary-path", - "hash": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=" - } - }, - "npm:is-binary-path": { - "type": "npm", - "name": "npm:is-binary-path", - "data": { - "version": "2.1.0", - "packageName": "is-binary-path", - "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - } - }, - "npm:is-boolean-object": { - "type": "npm", - "name": "npm:is-boolean-object", - "data": { - "version": "1.1.1", - "packageName": "is-boolean-object", - "hash": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==" - } - }, - "npm:is-buffer": { - "type": "npm", - "name": "npm:is-buffer", - "data": { - "version": "1.1.6", - "packageName": "is-buffer", - "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - } - }, - "npm:is-buffer@2.0.4": { - "type": "npm", - "name": "npm:is-buffer@2.0.4", - "data": { - "version": "2.0.4", - "packageName": "is-buffer", - "hash": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==" - } - }, - "npm:is-callable": { - "type": "npm", - "name": "npm:is-callable", - "data": { - "version": "1.2.4", - "packageName": "is-callable", - "hash": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" - } - }, - "npm:is-ci": { - "type": "npm", - "name": "npm:is-ci", - "data": { - "version": "3.0.1", - "packageName": "is-ci", - "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" - } - }, - "npm:is-ci@1.2.1": { - "type": "npm", - "name": "npm:is-ci@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "is-ci", - "hash": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==" - } - }, - "npm:is-ci@2.0.0": { - "type": "npm", - "name": "npm:is-ci@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-ci", - "hash": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.12.1", - "packageName": "is-core-module", - "hash": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==" - } - }, - "npm:is-data-descriptor@0.1.4": { - "type": "npm", - "name": "npm:is-data-descriptor@0.1.4", - "data": { - "version": "0.1.4", - "packageName": "is-data-descriptor", - "hash": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=" - } - }, - "npm:is-data-descriptor": { - "type": "npm", - "name": "npm:is-data-descriptor", - "data": { - "version": "1.0.0", - "packageName": "is-data-descriptor", - "hash": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" - } - }, - "npm:is-date-object": { - "type": "npm", - "name": "npm:is-date-object", - "data": { - "version": "1.0.1", - "packageName": "is-date-object", - "hash": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" - } - }, - "npm:is-decimal": { - "type": "npm", - "name": "npm:is-decimal", - "data": { - "version": "1.0.3", - "packageName": "is-decimal", - "hash": "sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ==" - } - }, - "npm:is-descriptor@0.1.6": { - "type": "npm", - "name": "npm:is-descriptor@0.1.6", - "data": { - "version": "0.1.6", - "packageName": "is-descriptor", - "hash": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==" - } - }, - "npm:is-descriptor": { - "type": "npm", - "name": "npm:is-descriptor", - "data": { - "version": "1.0.2", - "packageName": "is-descriptor", - "hash": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" - } - }, - "npm:is-directory": { - "type": "npm", - "name": "npm:is-directory", - "data": { - "version": "0.3.1", - "packageName": "is-directory", - "hash": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-dom": { - "type": "npm", - "name": "npm:is-dom", - "data": { - "version": "1.1.0", - "packageName": "is-dom", - "hash": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==" - } - }, - "npm:is-extendable": { - "type": "npm", - "name": "npm:is-extendable", - "data": { - "version": "0.1.1", - "packageName": "is-extendable", - "hash": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" - } - }, - "npm:is-extendable@1.0.1": { - "type": "npm", - "name": "npm:is-extendable@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "is-extendable", - "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - } - }, - "npm:is-finite": { - "type": "npm", - "name": "npm:is-finite", - "data": { - "version": "1.0.2", - "packageName": "is-finite", - "hash": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=" - } - }, - "npm:is-fullwidth-code-point@1.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=" - } - }, - "npm:is-fullwidth-code-point@2.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:is-function": { - "type": "npm", - "name": "npm:is-function", - "data": { - "version": "1.0.2", - "packageName": "is-function", - "hash": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - } - }, - "npm:is-generator-fn": { - "type": "npm", - "name": "npm:is-generator-fn", - "data": { - "version": "2.1.0", - "packageName": "is-generator-fn", - "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - } - }, - "npm:is-generator-function": { - "type": "npm", - "name": "npm:is-generator-function", - "data": { - "version": "1.0.8", - "packageName": "is-generator-function", - "hash": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==" - } - }, - "npm:is-glob@3.1.0": { - "type": "npm", - "name": "npm:is-glob@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "is-glob", - "hash": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-hexadecimal": { - "type": "npm", - "name": "npm:is-hexadecimal", - "data": { - "version": "1.0.3", - "packageName": "is-hexadecimal", - "hash": "sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA==" - } - }, - "npm:is-installed-globally@0.1.0": { - "type": "npm", - "name": "npm:is-installed-globally@0.1.0", - "data": { - "version": "0.1.0", - "packageName": "is-installed-globally", - "hash": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=" - } - }, - "npm:is-installed-globally": { - "type": "npm", - "name": "npm:is-installed-globally", - "data": { - "version": "0.4.0", - "packageName": "is-installed-globally", - "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-lambda": { - "type": "npm", - "name": "npm:is-lambda", - "data": { - "version": "1.0.1", - "packageName": "is-lambda", - "hash": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" - } - }, - "npm:is-lower-case": { - "type": "npm", - "name": "npm:is-lower-case", - "data": { - "version": "1.1.3", - "packageName": "is-lower-case", - "hash": "sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=" - } - }, - "npm:is-module": { - "type": "npm", - "name": "npm:is-module", - "data": { - "version": "1.0.0", - "packageName": "is-module", - "hash": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" - } - }, - "npm:is-nan": { - "type": "npm", - "name": "npm:is-nan", - "data": { - "version": "1.3.2", - "packageName": "is-nan", - "hash": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==" - } - }, - "npm:is-negated-glob": { - "type": "npm", - "name": "npm:is-negated-glob", - "data": { - "version": "1.0.0", - "packageName": "is-negated-glob", - "hash": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" - } - }, - "npm:is-negative-zero": { - "type": "npm", - "name": "npm:is-negative-zero", - "data": { - "version": "2.0.1", - "packageName": "is-negative-zero", - "hash": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - } - }, - "npm:is-npm": { - "type": "npm", - "name": "npm:is-npm", - "data": { - "version": "1.0.0", - "packageName": "is-npm", - "hash": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" - } - }, - "npm:is-number-object": { - "type": "npm", - "name": "npm:is-number-object", - "data": { - "version": "1.0.5", - "packageName": "is-number-object", - "hash": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "3.0.0", - "packageName": "is-number", - "hash": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=" - } - }, - "npm:is-number@4.0.0": { - "type": "npm", - "name": "npm:is-number@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-number", - "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - } - }, - "npm:is-number@7.0.0": { - "type": "npm", - "name": "npm:is-number@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-obj": { - "type": "npm", - "name": "npm:is-obj", - "data": { - "version": "1.0.1", - "packageName": "is-obj", - "hash": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" - } - }, - "npm:is-obj@2.0.0": { - "type": "npm", - "name": "npm:is-obj@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-obj", - "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - } - }, - "npm:is-object": { - "type": "npm", - "name": "npm:is-object", - "data": { - "version": "1.0.1", - "packageName": "is-object", - "hash": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=" - } - }, - "npm:is-path-cwd": { - "type": "npm", - "name": "npm:is-path-cwd", - "data": { - "version": "2.2.0", - "packageName": "is-path-cwd", - "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" - } - }, - "npm:is-path-cwd@3.0.0": { - "type": "npm", - "name": "npm:is-path-cwd@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-path-cwd", - "hash": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==" - } - }, - "npm:is-path-in-cwd": { - "type": "npm", - "name": "npm:is-path-in-cwd", - "data": { - "version": "2.1.0", - "packageName": "is-path-in-cwd", - "hash": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" - } - }, - "npm:is-path-inside@1.0.1": { - "type": "npm", - "name": "npm:is-path-inside@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "is-path-inside", - "hash": "sha1-jvW33lBDej/cprToZe96pVy0gDY=" - } - }, - "npm:is-path-inside@2.1.0": { - "type": "npm", - "name": "npm:is-path-inside@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "is-path-inside", - "hash": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "3.0.2", - "packageName": "is-path-inside", - "hash": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==" - } - }, - "npm:is-path-inside@4.0.0": { - "type": "npm", - "name": "npm:is-path-inside@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-path-inside", - "hash": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" - } - }, - "npm:is-plain-obj@2.1.0": { - "type": "npm", - "name": "npm:is-plain-obj@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" - } - }, - "npm:is-plain-obj@3.0.0": { - "type": "npm", - "name": "npm:is-plain-obj@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:is-plain-object@5.0.0": { - "type": "npm", - "name": "npm:is-plain-object@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "is-plain-object", - "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" - } - }, - "npm:is-plain-object": { - "type": "npm", - "name": "npm:is-plain-object", - "data": { - "version": "2.0.4", - "packageName": "is-plain-object", - "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - } - }, - "npm:is-potential-custom-element-name": { - "type": "npm", - "name": "npm:is-potential-custom-element-name", - "data": { - "version": "1.0.1", - "packageName": "is-potential-custom-element-name", - "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - } - }, - "npm:is-promise": { - "type": "npm", - "name": "npm:is-promise", - "data": { - "version": "2.1.0", - "packageName": "is-promise", - "hash": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" - } - }, - "npm:is-redirect": { - "type": "npm", - "name": "npm:is-redirect", - "data": { - "version": "1.0.0", - "packageName": "is-redirect", - "hash": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" - } - }, - "npm:is-reference": { - "type": "npm", - "name": "npm:is-reference", - "data": { - "version": "1.2.1", - "packageName": "is-reference", - "hash": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==" - } - }, - "npm:is-regex": { - "type": "npm", - "name": "npm:is-regex", - "data": { - "version": "1.1.4", - "packageName": "is-regex", - "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" - } - }, - "npm:is-regexp": { - "type": "npm", - "name": "npm:is-regexp", - "data": { - "version": "1.0.0", - "packageName": "is-regexp", - "hash": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" - } - }, - "npm:is-relative": { - "type": "npm", - "name": "npm:is-relative", - "data": { - "version": "1.0.0", - "packageName": "is-relative", - "hash": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==" - } - }, - "npm:is-retry-allowed": { - "type": "npm", - "name": "npm:is-retry-allowed", - "data": { - "version": "1.2.0", - "packageName": "is-retry-allowed", - "hash": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.1", - "packageName": "is-shared-array-buffer", - "hash": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==" - } - }, - "npm:is-ssh": { - "type": "npm", - "name": "npm:is-ssh", - "data": { - "version": "1.4.0", - "packageName": "is-ssh", - "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "2.0.0", - "packageName": "is-stream", - "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" - } - }, - "npm:is-stream@1.1.0": { - "type": "npm", - "name": "npm:is-stream@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - } - }, - "npm:is-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.0.7", - "packageName": "is-string", - "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - } - }, - "npm:is-subset": { - "type": "npm", - "name": "npm:is-subset", - "data": { - "version": "0.1.1", - "packageName": "is-subset", - "hash": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=" - } - }, - "npm:is-symbol": { - "type": "npm", - "name": "npm:is-symbol", - "data": { - "version": "1.0.3", - "packageName": "is-symbol", - "hash": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==" - } - }, - "npm:is-text-path": { - "type": "npm", - "name": "npm:is-text-path", - "data": { - "version": "1.0.1", - "packageName": "is-text-path", - "hash": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.4", - "packageName": "is-typed-array", - "hash": "sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==" - } - }, - "npm:is-typedarray": { - "type": "npm", - "name": "npm:is-typedarray", - "data": { - "version": "1.0.0", - "packageName": "is-typedarray", - "hash": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - } - }, - "npm:is-unc-path": { - "type": "npm", - "name": "npm:is-unc-path", - "data": { - "version": "1.0.0", - "packageName": "is-unc-path", - "hash": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-upper-case": { - "type": "npm", - "name": "npm:is-upper-case", - "data": { - "version": "1.1.2", - "packageName": "is-upper-case", - "hash": "sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=" - } - }, - "npm:is-utf8": { - "type": "npm", - "name": "npm:is-utf8", - "data": { - "version": "0.2.1", - "packageName": "is-utf8", - "hash": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" - } - }, - "npm:is-valid-glob": { - "type": "npm", - "name": "npm:is-valid-glob", - "data": { - "version": "1.0.0", - "packageName": "is-valid-glob", - "hash": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" - } - }, - "npm:is-weakref": { - "type": "npm", - "name": "npm:is-weakref", - "data": { - "version": "1.0.1", - "packageName": "is-weakref", - "hash": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==" - } - }, - "npm:is-whitespace-character": { - "type": "npm", - "name": "npm:is-whitespace-character", - "data": { - "version": "1.0.4", - "packageName": "is-whitespace-character", - "hash": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" - } - }, - "npm:is-window": { - "type": "npm", - "name": "npm:is-window", - "data": { - "version": "1.0.2", - "packageName": "is-window", - "hash": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=" - } - }, - "npm:is-windows": { - "type": "npm", - "name": "npm:is-windows", - "data": { - "version": "1.0.2", - "packageName": "is-windows", - "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - } - }, - "npm:is-word-character": { - "type": "npm", - "name": "npm:is-word-character", - "data": { - "version": "1.0.4", - "packageName": "is-word-character", - "hash": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" - } - }, - "npm:is-wsl@1.1.0": { - "type": "npm", - "name": "npm:is-wsl@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-wsl", - "hash": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "0.0.1", - "packageName": "isarray", - "hash": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - } - }, - "npm:isarray@1.0.0": { - "type": "npm", - "name": "npm:isarray@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - } - }, - "npm:isbinaryfile": { - "type": "npm", - "name": "npm:isbinaryfile", - "data": { - "version": "4.0.8", - "packageName": "isbinaryfile", - "hash": "sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - } - }, - "npm:isobject@2.1.0": { - "type": "npm", - "name": "npm:isobject@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "isobject", - "hash": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - }, - "npm:isobject@4.0.0": { - "type": "npm", - "name": "npm:isobject@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "isobject", - "hash": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==" - } - }, - "npm:isomorphic-unfetch": { - "type": "npm", - "name": "npm:isomorphic-unfetch", - "data": { - "version": "2.1.1", - "packageName": "isomorphic-unfetch", - "hash": "sha512-nd8AULy4i2rA8dv0nOBT9xieIegd3xi7NDxTQ9+iNXDTyaG6VbUYW3F+TdMRqxqXhDFWM2k7fttKx9W2Wd8JpQ==" - } - }, - "npm:isomorphic-unfetch@3.1.0": { - "type": "npm", - "name": "npm:isomorphic-unfetch@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "isomorphic-unfetch", - "hash": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==" - } - }, - "npm:isstream": { - "type": "npm", - "name": "npm:isstream", - "data": { - "version": "0.1.2", - "packageName": "isstream", - "hash": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - } - }, - "npm:istanbul-instrumenter-loader": { - "type": "npm", - "name": "npm:istanbul-instrumenter-loader", - "data": { - "version": "3.0.1", - "packageName": "istanbul-instrumenter-loader", - "hash": "sha512-a5SPObZgS0jB/ixaKSMdn6n/gXSrK2S6q/UfRJBT3e6gQmVjwZROTODQsYW5ZNwOu78hG62Y3fWlebaVOL0C+w==" - } - }, - "npm:istanbul-lib-coverage@1.2.1": { - "type": "npm", - "name": "npm:istanbul-lib-coverage@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==" - } - }, - "npm:istanbul-lib-coverage@2.0.5": { - "type": "npm", - "name": "npm:istanbul-lib-coverage@2.0.5", - "data": { - "version": "2.0.5", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==" - } - }, - "npm:istanbul-lib-coverage": { - "type": "npm", - "name": "npm:istanbul-lib-coverage", - "data": { - "version": "3.2.0", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" - } - }, - "npm:istanbul-lib-instrument@1.10.2": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@1.10.2", - "data": { - "version": "1.10.2", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "5.2.0", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==" - } - }, - "npm:istanbul-lib-instrument@6.0.0": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==" - } - }, - "npm:istanbul-lib-report": { - "type": "npm", - "name": "npm:istanbul-lib-report", - "data": { - "version": "3.0.0", - "packageName": "istanbul-lib-report", - "hash": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==" - } - }, - "npm:istanbul-lib-source-maps@3.0.6": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps@3.0.6", - "data": { - "version": "3.0.6", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==" - } - }, - "npm:istanbul-lib-source-maps": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps", - "data": { - "version": "4.0.1", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" - } - }, - "npm:istanbul-reports": { - "type": "npm", - "name": "npm:istanbul-reports", - "data": { - "version": "3.1.5", - "packageName": "istanbul-reports", - "hash": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==" - } - }, - "npm:istanbul": { - "type": "npm", - "name": "npm:istanbul", - "data": { - "version": "0.4.5", - "packageName": "istanbul", - "hash": "sha512-nMtdn4hvK0HjUlzr1DrKSUY8ychprt8dzHOgY2KXsIhHu5PuQQEOTM27gV9Xblyon7aUH/TSFIjRHEODF/FRPg==" - } - }, - "npm:istextorbinary": { - "type": "npm", - "name": "npm:istextorbinary", - "data": { - "version": "2.6.0", - "packageName": "istextorbinary", - "hash": "sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "2.2.2", - "packageName": "jackspeak", - "hash": "sha512-mgNtVv4vUuaKA97yxUHoA3+FkuhtxkjdXEWOyB/N76fjy0FjezEt34oy3epBtvCvS+7DyKwqCFWx/oJLV5+kCg==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.8.5", - "packageName": "jake", - "hash": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==" - } - }, - "npm:jest-axe": { - "type": "npm", - "name": "npm:jest-axe", - "data": { - "version": "6.0.1", - "packageName": "jest-axe", - "hash": "sha512-+KcRAdZeKXBbtHTmMkokRq5/hXHaVFpX+WS2o3uvhkmF3szdr4+TYAz+QuOTeM0B1d4YPoNmQWhGzSzxHJNZrA==" - } - }, - "npm:jest-canvas-mock": { - "type": "npm", - "name": "npm:jest-canvas-mock", - "data": { - "version": "2.4.0", - "packageName": "jest-canvas-mock", - "hash": "sha512-mmMpZzpmLzn5vepIaHk5HoH3Ka4WykbSoLuG/EKoJd0x0ID/t+INo1l8ByfcUJuDM+RIsL4QDg/gDnBbrj2/IQ==" - } - }, - "npm:jest-changed-files": { - "type": "npm", - "name": "npm:jest-changed-files", - "data": { - "version": "29.7.0", - "packageName": "jest-changed-files", - "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" - } - }, - "npm:jest-circus": { - "type": "npm", - "name": "npm:jest-circus", - "data": { - "version": "29.7.0", - "packageName": "jest-circus", - "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" - } - }, - "npm:jest-cli": { - "type": "npm", - "name": "npm:jest-cli", - "data": { - "version": "29.7.0", - "packageName": "jest-cli", - "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" - } - }, - "npm:jest-config": { - "type": "npm", - "name": "npm:jest-config", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "29.7.0", - "packageName": "jest-diff", - "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" - } - }, - "npm:jest-diff@27.5.1": { - "type": "npm", - "name": "npm:jest-diff@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-diff", - "hash": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==" - } - }, - "npm:jest-docblock": { - "type": "npm", - "name": "npm:jest-docblock", - "data": { - "version": "29.7.0", - "packageName": "jest-docblock", - "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" - } - }, - "npm:jest-each": { - "type": "npm", - "name": "npm:jest-each", - "data": { - "version": "29.7.0", - "packageName": "jest-each", - "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" - } - }, - "npm:jest-environment-jsdom": { - "type": "npm", - "name": "npm:jest-environment-jsdom", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-jsdom", - "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" - } - }, - "npm:jest-environment-node-single-context": { - "type": "npm", - "name": "npm:jest-environment-node-single-context", - "data": { - "version": "29.1.0", - "packageName": "jest-environment-node-single-context", - "hash": "sha512-sMQSq/b4aK9f0V1atn/ZfBgdrEQZzoZo95UzUTXaS/GtiCx9e62IFP4gX0GR+IGDu1k7UuqB/Xot46vJoOsoyg==" - } - }, - "npm:jest-environment-node": { - "type": "npm", - "name": "npm:jest-environment-node", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-get-type@27.5.1": { - "type": "npm", - "name": "npm:jest-get-type@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-get-type", - "hash": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" - } - }, - "npm:jest-get-type": { - "type": "npm", - "name": "npm:jest-get-type", - "data": { - "version": "29.6.3", - "packageName": "jest-get-type", - "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" - } - }, - "npm:jest-haste-map@26.6.2": { - "type": "npm", - "name": "npm:jest-haste-map@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "jest-haste-map", - "hash": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==" - } - }, - "npm:jest-haste-map": { - "type": "npm", - "name": "npm:jest-haste-map", - "data": { - "version": "29.7.0", - "packageName": "jest-haste-map", - "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" - } - }, - "npm:jest-leak-detector": { - "type": "npm", - "name": "npm:jest-leak-detector", - "data": { - "version": "29.7.0", - "packageName": "jest-leak-detector", - "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" - } - }, - "npm:jest-matcher-utils@27.0.2": { - "type": "npm", - "name": "npm:jest-matcher-utils@27.0.2", - "data": { - "version": "27.0.2", - "packageName": "jest-matcher-utils", - "hash": "sha512-Qczi5xnTNjkhcIB0Yy75Txt+Ez51xdhOxsukN7awzq2auZQGPHcQrJ623PZj0ECDEMOk2soxWx05EXdXGd1CbA==" - } - }, - "npm:jest-matcher-utils": { - "type": "npm", - "name": "npm:jest-matcher-utils", - "data": { - "version": "29.7.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" - } - }, - "npm:jest-message-util": { - "type": "npm", - "name": "npm:jest-message-util", - "data": { - "version": "29.7.0", - "packageName": "jest-message-util", - "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" - } - }, - "npm:jest-mock": { - "type": "npm", - "name": "npm:jest-mock", - "data": { - "version": "29.7.0", - "packageName": "jest-mock", - "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" - } - }, - "npm:jest-pnp-resolver": { - "type": "npm", - "name": "npm:jest-pnp-resolver", - "data": { - "version": "1.2.2", - "packageName": "jest-pnp-resolver", - "hash": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" - } - }, - "npm:jest-regex-util@26.0.0": { - "type": "npm", - "name": "npm:jest-regex-util@26.0.0", - "data": { - "version": "26.0.0", - "packageName": "jest-regex-util", - "hash": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" - } - }, - "npm:jest-regex-util": { - "type": "npm", - "name": "npm:jest-regex-util", - "data": { - "version": "29.6.3", - "packageName": "jest-regex-util", - "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" - } - }, - "npm:jest-resolve-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "npm:jest-runner": { - "type": "npm", - "name": "npm:jest-runner", - "data": { - "version": "29.7.0", - "packageName": "jest-runner", - "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" - } - }, - "npm:jest-runtime": { - "type": "npm", - "name": "npm:jest-runtime", - "data": { - "version": "29.7.0", - "packageName": "jest-runtime", - "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" - } - }, - "npm:jest-serializer": { - "type": "npm", - "name": "npm:jest-serializer", - "data": { - "version": "26.6.2", - "packageName": "jest-serializer", - "hash": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==" - } - }, - "npm:jest-snapshot": { - "type": "npm", - "name": "npm:jest-snapshot", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-util@26.6.2": { - "type": "npm", - "name": "npm:jest-util@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "jest-util", - "hash": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==" - } - }, - "npm:jest-util": { - "type": "npm", - "name": "npm:jest-util", - "data": { - "version": "29.7.0", - "packageName": "jest-util", - "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" - } - }, - "npm:jest-validate": { - "type": "npm", - "name": "npm:jest-validate", - "data": { - "version": "29.7.0", - "packageName": "jest-validate", - "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" - } - }, - "npm:jest-watch-typeahead": { - "type": "npm", - "name": "npm:jest-watch-typeahead", - "data": { - "version": "2.2.2", - "packageName": "jest-watch-typeahead", - "hash": "sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==" - } - }, - "npm:jest-watcher": { - "type": "npm", - "name": "npm:jest-watcher", - "data": { - "version": "29.7.0", - "packageName": "jest-watcher", - "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" - } - }, - "npm:jest-worker@24.9.0": { - "type": "npm", - "name": "npm:jest-worker@24.9.0", - "data": { - "version": "24.9.0", - "packageName": "jest-worker", - "hash": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==" - } - }, - "npm:jest-worker@26.6.2": { - "type": "npm", - "name": "npm:jest-worker@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "jest-worker", - "hash": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==" - } - }, - "npm:jest-worker@27.5.1": { - "type": "npm", - "name": "npm:jest-worker@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-worker", - "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - } - }, - "npm:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.7.0", - "packageName": "jest", - "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" - } - }, - "npm:jju": { - "type": "npm", - "name": "npm:jju", - "data": { - "version": "1.4.0", - "packageName": "jju", - "hash": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=" - } - }, - "npm:jpeg-js": { - "type": "npm", - "name": "npm:jpeg-js", - "data": { - "version": "0.4.4", - "packageName": "jpeg-js", - "hash": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" - } - }, - "npm:js-message": { - "type": "npm", - "name": "npm:js-message", - "data": { - "version": "1.0.5", - "packageName": "js-message", - "hash": "sha1-IwDSSxrwjondCVvBpMnJz8uJLRU=" - } - }, - "npm:js-queue": { - "type": "npm", - "name": "npm:js-queue", - "data": { - "version": "2.0.0", - "packageName": "js-queue", - "hash": "sha1-NiITz4YPRo8BJfxslqvBdCUx+Ug=" - } - }, - "npm:js-string-escape": { - "type": "npm", - "name": "npm:js-string-escape", - "data": { - "version": "1.0.1", - "packageName": "js-string-escape", - "hash": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:js-tokens@3.0.2": { - "type": "npm", - "name": "npm:js-tokens@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "js-tokens", - "hash": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "3.13.1", - "packageName": "js-yaml", - "hash": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==" - } - }, - "npm:js-yaml@4.1.0": { - "type": "npm", - "name": "npm:js-yaml@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "js-yaml", - "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - } - }, - "npm:jsbn": { - "type": "npm", - "name": "npm:jsbn", - "data": { - "version": "0.1.1", - "packageName": "jsbn", - "hash": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - } - }, - "npm:jsdoc-type-pratt-parser": { - "type": "npm", - "name": "npm:jsdoc-type-pratt-parser", - "data": { - "version": "3.1.0", - "packageName": "jsdoc-type-pratt-parser", - "hash": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==" - } - }, - "npm:jsdom-global": { - "type": "npm", - "name": "npm:jsdom-global", - "data": { - "version": "3.0.2", - "packageName": "jsdom-global", - "hash": "sha1-a9KZwTsMRiay2iwDk81DhdYGrLk=" - } - }, - "npm:jsdom": { - "type": "npm", - "name": "npm:jsdom", - "data": { - "version": "20.0.3", - "packageName": "jsdom", - "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" - } - }, - "npm:jsesc@1.3.0": { - "type": "npm", - "name": "npm:jsesc@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "jsesc", - "hash": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "2.5.2", - "packageName": "jsesc", - "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - } - }, - "npm:jsesc@0.5.0": { - "type": "npm", - "name": "npm:jsesc@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "jsesc", - "hash": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-edm-parser": { - "type": "npm", - "name": "npm:json-edm-parser", - "data": { - "version": "0.1.2", - "packageName": "json-edm-parser", - "hash": "sha512-J1U9mk6lf8dPULcaMwALXB6yel3cJyyhk9Z8FQ4sMwiazNwjaUhegIcpZyZFNMvLRtnXwh+TkCjX9uYUObBBYA==" - } - }, - "npm:json-parse-better-errors": { - "type": "npm", - "name": "npm:json-parse-better-errors", - "data": { - "version": "1.0.2", - "packageName": "json-parse-better-errors", - "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-parse-even-better-errors@3.0.0": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==" - } - }, - "npm:json-schema-traverse@0.3.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "json-schema-traverse", - "hash": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" - } - }, - "npm:json-schema-traverse@0.4.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:json-schema@0.2.3": { - "type": "npm", - "name": "npm:json-schema@0.2.3", - "data": { - "version": "0.2.3", - "packageName": "json-schema", - "hash": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - } - }, - "npm:json-schema": { - "type": "npm", - "name": "npm:json-schema", - "data": { - "version": "0.4.0", - "packageName": "json-schema", - "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" - } - }, - "npm:json-stable-stringify": { - "type": "npm", - "name": "npm:json-stable-stringify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify", - "hash": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=" - } - }, - "npm:json-stringify-safe": { - "type": "npm", - "name": "npm:json-stringify-safe", - "data": { - "version": "5.0.1", - "packageName": "json-stringify-safe", - "hash": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - } - }, - "npm:json5@0.5.1": { - "type": "npm", - "name": "npm:json5@0.5.1", - "data": { - "version": "0.5.1", - "packageName": "json5", - "hash": "sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==" - } - }, - "npm:json5@1.0.2": { - "type": "npm", - "name": "npm:json5@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "json5", - "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonc-eslint-parser": { - "type": "npm", - "name": "npm:jsonc-eslint-parser", - "data": { - "version": "2.3.0", - "packageName": "jsonc-eslint-parser", - "hash": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==" - } - }, - "npm:jsonc-parser": { - "type": "npm", - "name": "npm:jsonc-parser", - "data": { - "version": "3.2.0", - "packageName": "jsonc-parser", - "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - } - }, - "npm:jsonfile@2.4.0": { - "type": "npm", - "name": "npm:jsonfile@2.4.0", - "data": { - "version": "2.4.0", - "packageName": "jsonfile", - "hash": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "4.0.0", - "packageName": "jsonfile", - "hash": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" - } - }, - "npm:jsonfile@6.0.1": { - "type": "npm", - "name": "npm:jsonfile@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "jsonfile", - "hash": "sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==" - } - }, - "npm:jsonify": { - "type": "npm", - "name": "npm:jsonify", - "data": { - "version": "0.0.0", - "packageName": "jsonify", - "hash": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" - } - }, - "npm:jsonparse": { - "type": "npm", - "name": "npm:jsonparse", - "data": { - "version": "1.3.1", - "packageName": "jsonparse", - "hash": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" - } - }, - "npm:jsonparse@1.2.0": { - "type": "npm", - "name": "npm:jsonparse@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "jsonparse", - "hash": "sha512-LkDEYtKnPFI9hQ/IURETe6F1dUH80cbRkaF6RaViSwoSNPwaxQpi6TgJGvJKyLQ2/9pQW+XCxK3hBoR44RAjkg==" - } - }, - "npm:jsonpointer": { - "type": "npm", - "name": "npm:jsonpointer", - "data": { - "version": "5.0.0", - "packageName": "jsonpointer", - "hash": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==" - } - }, - "npm:jsonschema": { - "type": "npm", - "name": "npm:jsonschema", - "data": { - "version": "1.4.1", - "packageName": "jsonschema", - "hash": "sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==" - } - }, - "npm:jsonwebtoken": { - "type": "npm", - "name": "npm:jsonwebtoken", - "data": { - "version": "8.5.1", - "packageName": "jsonwebtoken", - "hash": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==" - } - }, - "npm:jsprim@1.4.1": { - "type": "npm", - "name": "npm:jsprim@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "jsprim", - "hash": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=" - } - }, - "npm:jsprim": { - "type": "npm", - "name": "npm:jsprim", - "data": { - "version": "2.0.2", - "packageName": "jsprim", - "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" - } - }, - "npm:jstat": { - "type": "npm", - "name": "npm:jstat", - "data": { - "version": "1.9.5", - "packageName": "jstat", - "hash": "sha512-cWnp4vObF5GmB2XsIEzxI/1ZTcYlcfNqxQ/9Fp5KFUa0Jf/4tO0ZkGVnqoEHDisJvYgvn5n3eWZbd2xTVJJPUQ==" - } - }, - "npm:jsx-ast-utils": { - "type": "npm", - "name": "npm:jsx-ast-utils", - "data": { - "version": "3.2.0", - "packageName": "jsx-ast-utils", - "hash": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==" - } - }, - "npm:jszip": { - "type": "npm", - "name": "npm:jszip", - "data": { - "version": "3.10.1", - "packageName": "jszip", - "hash": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==" - } - }, - "npm:junk": { - "type": "npm", - "name": "npm:junk", - "data": { - "version": "3.1.0", - "packageName": "junk", - "hash": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==" - } - }, - "npm:just-debounce": { - "type": "npm", - "name": "npm:just-debounce", - "data": { - "version": "1.0.0", - "packageName": "just-debounce", - "hash": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=" - } - }, - "npm:just-scripts-utils": { - "type": "npm", - "name": "npm:just-scripts-utils", - "data": { - "version": "1.2.0", - "packageName": "just-scripts-utils", - "hash": "sha512-rJMNtMz4V6uyMyfx+a2CqdMh1X/C9cVJTOPegvEzSonYMOKsiZEw2L9VzKVIFwNteKGZT6D2hFjSMAle41MAgA==" - } - }, - "npm:just-scripts": { - "type": "npm", - "name": "npm:just-scripts", - "data": { - "version": "1.8.2", - "packageName": "just-scripts", - "hash": "sha512-ZTaWL/r2hdswji60HFrOP3FrqUCXrIr5ElgXH3sr1cySamOeP1aWsvfKXssc7c2gAP8xi3S5JFAAffDOV60/EA==" - } - }, - "npm:just-task-logger": { - "type": "npm", - "name": "npm:just-task-logger", - "data": { - "version": "1.2.0", - "packageName": "just-task-logger", - "hash": "sha512-pa5FfJMiJ11KgCXDSfnbu/Enoiwm3ReOrSO9tP0CK69/yYtfsDhE8g6S0v6cCdDYGa4zpVkX7E4G1u3L7lAPTw==" - } - }, - "npm:just-task": { - "type": "npm", - "name": "npm:just-task", - "data": { - "version": "1.5.0", - "packageName": "just-task", - "hash": "sha512-oamAeJBBfI3zbzEHjLCnPJJCeBeAJPLssRpAGO/C0vCa7Hf0p2UORBbR77irZTdNRzW/fSLV2ua6lsDJIz3mIA==" - } - }, - "npm:jwa": { - "type": "npm", - "name": "npm:jwa", - "data": { - "version": "1.4.1", - "packageName": "jwa", - "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" - } - }, - "npm:jws": { - "type": "npm", - "name": "npm:jws", - "data": { - "version": "3.2.2", - "packageName": "jws", - "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" - } - }, - "npm:karma-chrome-launcher": { - "type": "npm", - "name": "npm:karma-chrome-launcher", - "data": { - "version": "3.1.1", - "packageName": "karma-chrome-launcher", - "hash": "sha512-hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ==" - } - }, - "npm:karma-coverage-istanbul-reporter": { - "type": "npm", - "name": "npm:karma-coverage-istanbul-reporter", - "data": { - "version": "3.0.3", - "packageName": "karma-coverage-istanbul-reporter", - "hash": "sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==" - } - }, - "npm:karma-coverage": { - "type": "npm", - "name": "npm:karma-coverage", - "data": { - "version": "2.2.0", - "packageName": "karma-coverage", - "hash": "sha512-gPVdoZBNDZ08UCzdMHHhEImKrw1+PAOQOIiffv1YsvxFhBjqvo/SVXNk4tqn1SYqX0BJZT6S/59zgxiBe+9OuA==" - } - }, - "npm:karma-firefox-launcher": { - "type": "npm", - "name": "npm:karma-firefox-launcher", - "data": { - "version": "1.3.0", - "packageName": "karma-firefox-launcher", - "hash": "sha512-Fi7xPhwrRgr+94BnHX0F5dCl1miIW4RHnzjIGxF8GaIEp7rNqX7LSi7ok63VXs3PS/5MQaQMhGxw+bvD+pibBQ==" - } - }, - "npm:karma-mocha-reporter": { - "type": "npm", - "name": "npm:karma-mocha-reporter", - "data": { - "version": "2.2.5", - "packageName": "karma-mocha-reporter", - "hash": "sha512-Hr6nhkIp0GIJJrvzY8JFeHpQZNseuIakGac4bpw8K1+5F0tLb6l7uvXRa8mt2Z+NVwYgCct4QAfp2R2QP6o00w==" - } - }, - "npm:karma-mocha": { - "type": "npm", - "name": "npm:karma-mocha", - "data": { - "version": "2.0.1", - "packageName": "karma-mocha", - "hash": "sha512-Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ==" - } - }, - "npm:karma-source-map-support": { - "type": "npm", - "name": "npm:karma-source-map-support", - "data": { - "version": "1.4.0", - "packageName": "karma-source-map-support", - "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" - } - }, - "npm:karma-sourcemap-loader": { - "type": "npm", - "name": "npm:karma-sourcemap-loader", - "data": { - "version": "0.3.8", - "packageName": "karma-sourcemap-loader", - "hash": "sha512-zorxyAakYZuBcHRJE+vbrK2o2JXLFWK8VVjiT/6P+ltLBUGUvqTEkUiQ119MGdOrK7mrmxXHZF1/pfT6GgIZ6g==" - } - }, - "npm:karma-webpack": { - "type": "npm", - "name": "npm:karma-webpack", - "data": { - "version": "5.0.0", - "packageName": "karma-webpack", - "hash": "sha512-+54i/cd3/piZuP3dr54+NcFeKOPnys5QeM1IY+0SPASwrtHsliXUiCL50iW+K9WWA7RvamC4macvvQ86l3KtaA==" - } - }, - "npm:karma": { - "type": "npm", - "name": "npm:karma", - "data": { - "version": "6.4.0", - "packageName": "karma", - "hash": "sha512-s8m7z0IF5g/bS5ONT7wsOavhW4i4aFkzD4u4wgzAQWT4HGUeWI3i21cK2Yz6jndMAeHETp5XuNsRoyGJZXVd4w==" - } - }, - "npm:keyborg": { - "type": "npm", - "name": "npm:keyborg", - "data": { - "version": "2.3.0", - "packageName": "keyborg", - "hash": "sha512-TU7VDxohtY7Rf4rTuCwa8QrHjya4eqKiSThI3lHF/wcBpm29gAui/vy0wY8l3ahcFEJ9tZhV+iduXPo6EkNQXw==" - } - }, - "npm:keygrip": { - "type": "npm", - "name": "npm:keygrip", - "data": { - "version": "1.1.0", - "packageName": "keygrip", - "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.0.3", - "packageName": "keyv", - "hash": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==" - } - }, - "npm:kind-of@1.1.0": { - "type": "npm", - "name": "npm:kind-of@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "kind-of", - "hash": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=" - } - }, - "npm:kind-of@3.2.2": { - "type": "npm", - "name": "npm:kind-of@3.2.2", - "data": { - "version": "3.2.2", - "packageName": "kind-of", - "hash": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" - } - }, - "npm:kind-of@4.0.0": { - "type": "npm", - "name": "npm:kind-of@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "kind-of", - "hash": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=" - } - }, - "npm:kind-of@5.1.0": { - "type": "npm", - "name": "npm:kind-of@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "kind-of", - "hash": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:klaw": { - "type": "npm", - "name": "npm:klaw", - "data": { - "version": "1.3.1", - "packageName": "klaw", - "hash": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:klona": { - "type": "npm", - "name": "npm:klona", - "data": { - "version": "2.0.6", - "packageName": "klona", - "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" - } - }, - "npm:koa-bodyparser": { - "type": "npm", - "name": "npm:koa-bodyparser", - "data": { - "version": "4.3.0", - "packageName": "koa-bodyparser", - "hash": "sha512-uyV8G29KAGwZc4q/0WUAjH+Tsmuv9ImfBUF2oZVyZtaeo0husInagyn/JH85xMSxM0hEk/mbCII5ubLDuqW/Rw==" - } - }, - "npm:koa-compose": { - "type": "npm", - "name": "npm:koa-compose", - "data": { - "version": "4.1.0", - "packageName": "koa-compose", - "hash": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==" - } - }, - "npm:koa-convert": { - "type": "npm", - "name": "npm:koa-convert", - "data": { - "version": "2.0.0", - "packageName": "koa-convert", - "hash": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==" - } - }, - "npm:koa-mount": { - "type": "npm", - "name": "npm:koa-mount", - "data": { - "version": "4.0.0", - "packageName": "koa-mount", - "hash": "sha512-rm71jaA/P+6HeCpoRhmCv8KVBIi0tfGuO/dMKicbQnQW/YJntJ6MnnspkodoA4QstMVEZArsCphmd0bJEtoMjQ==" - } - }, - "npm:koa-node-resolve": { - "type": "npm", - "name": "npm:koa-node-resolve", - "data": { - "version": "1.0.0-pre.9", - "packageName": "koa-node-resolve", - "hash": "sha512-WKgqe5TGVD6zuR3NrKnmbb/NNHIbWOCezQVqqnyQLdtLLXWgiothlUQT23S5qQGE0Z623jp6jxpMjvAqyrcZFQ==" - } - }, - "npm:koa-send": { - "type": "npm", - "name": "npm:koa-send", - "data": { - "version": "5.0.1", - "packageName": "koa-send", - "hash": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==" - } - }, - "npm:koa-static": { - "type": "npm", - "name": "npm:koa-static", - "data": { - "version": "5.0.0", - "packageName": "koa-static", - "hash": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==" - } - }, - "npm:koa": { - "type": "npm", - "name": "npm:koa", - "data": { - "version": "2.13.4", - "packageName": "koa", - "hash": "sha512-43zkIKubNbnrULWlHdN5h1g3SEKXOEzoAlRsHOTFpnlDu8JlAOZSMJBLULusuXRequboiwJcj5vtYXKB3k7+2g==" - } - }, - "npm:ky-universal": { - "type": "npm", - "name": "npm:ky-universal", - "data": { - "version": "0.3.0", - "packageName": "ky-universal", - "hash": "sha512-CM4Bgb2zZZpsprcjI6DNYTaH3oGHXL2u7BU4DK+lfCuC4snkt9/WRpMYeKbBbXscvKkeqBwzzjFX2WwmKY5K/A==" - } - }, - "npm:ky": { - "type": "npm", - "name": "npm:ky", - "data": { - "version": "0.12.0", - "packageName": "ky", - "hash": "sha512-t9b7v3V2fGwAcQnnDDQwKQGF55eWrf4pwi1RN08Fy8b/9GEwV7Ea0xQiaSW6ZbeghBHIwl8kgnla4vVo9seepQ==" - } - }, - "npm:lage": { - "type": "npm", - "name": "npm:lage", - "data": { - "version": "1.8.8", - "packageName": "lage", - "hash": "sha512-rMXedlK1lvC69P+bVir6r9EaGqy/NZm1Rg4vE7LD1vlDzNLYkCnvD1JkMxxQHkbMjhKXBLwcB6JnAti79GdLgA==" - } - }, - "npm:language-subtag-registry": { - "type": "npm", - "name": "npm:language-subtag-registry", - "data": { - "version": "0.3.21", - "packageName": "language-subtag-registry", - "hash": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" - } - }, - "npm:language-tags": { - "type": "npm", - "name": "npm:language-tags", - "data": { - "version": "1.0.5", - "packageName": "language-tags", - "hash": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=" - } - }, - "npm:last-run": { - "type": "npm", - "name": "npm:last-run", - "data": { - "version": "1.1.1", - "packageName": "last-run", - "hash": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=" - } - }, - "npm:latest-version": { - "type": "npm", - "name": "npm:latest-version", - "data": { - "version": "3.1.0", - "packageName": "latest-version", - "hash": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=" - } - }, - "npm:lazy-ass": { - "type": "npm", - "name": "npm:lazy-ass", - "data": { - "version": "1.6.0", - "packageName": "lazy-ass", - "hash": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=" - } - }, - "npm:lazy-universal-dotenv": { - "type": "npm", - "name": "npm:lazy-universal-dotenv", - "data": { - "version": "3.0.1", - "packageName": "lazy-universal-dotenv", - "hash": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==" - } - }, - "npm:lazystream": { - "type": "npm", - "name": "npm:lazystream", - "data": { - "version": "1.0.0", - "packageName": "lazystream", - "hash": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=" - } - }, - "npm:lcid": { - "type": "npm", - "name": "npm:lcid", - "data": { - "version": "1.0.0", - "packageName": "lcid", - "hash": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=" - } - }, - "npm:lead": { - "type": "npm", - "name": "npm:lead", - "data": { - "version": "1.0.0", - "packageName": "lead", - "hash": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=" - } - }, - "npm:lerna-alias": { - "type": "npm", - "name": "npm:lerna-alias", - "data": { - "version": "3.0.3-0", - "packageName": "lerna-alias", - "hash": "sha512-IX0c2QH3v4rkgE+iG7Ro0FSEWKqqrMhvbGbB1txrnaJ8YbcrNbJ0IPpcJi+uiiPLV3olNX74EO08x9hGZ+J5ig==" - } - }, - "npm:lerna": { - "type": "npm", - "name": "npm:lerna", - "data": { - "version": "7.1.3", - "packageName": "lerna", - "hash": "sha512-LMs9HU0z5fNFMNOyDVinJcf04QaScReJ8Q2pqxO+nPOmbvNsBwykBgMTWLboL1rI1CCR0/WLdMnvObvR52MtTw==" - } - }, - "npm:leven": { - "type": "npm", - "name": "npm:leven", - "data": { - "version": "3.1.0", - "packageName": "leven", - "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:levn@0.3.0": { - "type": "npm", - "name": "npm:levn@0.3.0", - "data": { - "version": "0.3.0", - "packageName": "levn", - "hash": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=" - } - }, - "npm:li": { - "type": "npm", - "name": "npm:li", - "data": { - "version": "1.3.0", - "packageName": "li", - "hash": "sha1-IsWbyu+qmo7zWc91l4TkvxBq6hs=" - } - }, - "npm:libnpmaccess": { - "type": "npm", - "name": "npm:libnpmaccess", - "data": { - "version": "7.0.2", - "packageName": "libnpmaccess", - "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" - } - }, - "npm:libnpmpublish": { - "type": "npm", - "name": "npm:libnpmpublish", - "data": { - "version": "7.3.0", - "packageName": "libnpmpublish", - "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" - } - }, - "npm:license-webpack-plugin": { - "type": "npm", - "name": "npm:license-webpack-plugin", - "data": { - "version": "2.3.10", - "packageName": "license-webpack-plugin", - "hash": "sha512-WU+tVS0465NwdaV/DLb0t7GmQUwdaGI7QVWVKvvwLSlpYERKUD7DwcWIqSaXO+uoXM+6T3IAw3fCaGyVnI3DIQ==" - } - }, - "npm:lie": { - "type": "npm", - "name": "npm:lie", - "data": { - "version": "3.3.0", - "packageName": "lie", - "hash": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==" - } - }, - "npm:liftoff": { - "type": "npm", - "name": "npm:liftoff", - "data": { - "version": "2.5.0", - "packageName": "liftoff", - "hash": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=" - } - }, - "npm:liftoff@3.1.0": { - "type": "npm", - "name": "npm:liftoff@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "liftoff", - "hash": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "1.1.6", - "packageName": "lines-and-columns", - "hash": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" - } - }, - "npm:lines-and-columns@2.0.3": { - "type": "npm", - "name": "npm:lines-and-columns@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "lines-and-columns", - "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" - } - }, - "npm:lint-staged": { - "type": "npm", - "name": "npm:lint-staged", - "data": { - "version": "10.2.10", - "packageName": "lint-staged", - "hash": "sha512-dgelFaNH6puUGAcU+OVMgbfpKSerNYsPSn6+nlbRDjovL0KigpsVpCu0PFZG6BJxX8gnHJqaZlR9krZamQsb0w==" - } - }, - "npm:listenercount": { - "type": "npm", - "name": "npm:listenercount", - "data": { - "version": "1.0.1", - "packageName": "listenercount", - "hash": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "2.1.7", - "packageName": "listr2", - "hash": "sha512-XCC1sWLkBFFIMIRwG/LedgHUzN2XLEo02ZqXn6fwuP0GlXGE5BCuL6EAbQFb4vZB+++YEonzEXDPWQe+jCoF6Q==" - } - }, - "npm:listr2@3.14.0": { - "type": "npm", - "name": "npm:listr2@3.14.0", - "data": { - "version": "3.14.0", - "packageName": "listr2", - "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" - } - }, - "npm:load-json-file": { - "type": "npm", - "name": "npm:load-json-file", - "data": { - "version": "6.2.0", - "packageName": "load-json-file", - "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" - } - }, - "npm:load-json-file@1.1.0": { - "type": "npm", - "name": "npm:load-json-file@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "load-json-file", - "hash": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=" - } - }, - "npm:load-json-file@4.0.0": { - "type": "npm", - "name": "npm:load-json-file@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "load-json-file", - "hash": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=" - } - }, - "npm:loader-runner@2.4.0": { - "type": "npm", - "name": "npm:loader-runner@2.4.0", - "data": { - "version": "2.4.0", - "packageName": "loader-runner", - "hash": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.2.0", - "packageName": "loader-runner", - "hash": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==" - } - }, - "npm:loader-utils@1.4.2": { - "type": "npm", - "name": "npm:loader-utils@1.4.2", - "data": { - "version": "1.4.2", - "packageName": "loader-utils", - "hash": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "npm:locate-path@2.0.0": { - "type": "npm", - "name": "npm:locate-path@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "locate-path", - "hash": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" - } - }, - "npm:locate-path@3.0.0": { - "type": "npm", - "name": "npm:locate-path@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "locate-path", - "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" - } - }, - "npm:locate-path@5.0.0": { - "type": "npm", - "name": "npm:locate-path@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:locate-path@7.1.1": { - "type": "npm", - "name": "npm:locate-path@7.1.1", - "data": { - "version": "7.1.1", - "packageName": "locate-path", - "hash": "sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==" - } - }, - "npm:lodash-es": { - "type": "npm", - "name": "npm:lodash-es", - "data": { - "version": "4.17.21", - "packageName": "lodash-es", - "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - } - }, - "npm:lodash._basecopy": { - "type": "npm", - "name": "npm:lodash._basecopy", - "data": { - "version": "3.0.1", - "packageName": "lodash._basecopy", - "hash": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" - } - }, - "npm:lodash._basetostring": { - "type": "npm", - "name": "npm:lodash._basetostring", - "data": { - "version": "3.0.1", - "packageName": "lodash._basetostring", - "hash": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=" - } - }, - "npm:lodash._basevalues": { - "type": "npm", - "name": "npm:lodash._basevalues", - "data": { - "version": "3.0.0", - "packageName": "lodash._basevalues", - "hash": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=" - } - }, - "npm:lodash._getnative": { - "type": "npm", - "name": "npm:lodash._getnative", - "data": { - "version": "3.9.1", - "packageName": "lodash._getnative", - "hash": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" - } - }, - "npm:lodash._isiterateecall": { - "type": "npm", - "name": "npm:lodash._isiterateecall", - "data": { - "version": "3.0.9", - "packageName": "lodash._isiterateecall", - "hash": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" - } - }, - "npm:lodash._reescape": { - "type": "npm", - "name": "npm:lodash._reescape", - "data": { - "version": "3.0.0", - "packageName": "lodash._reescape", - "hash": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=" - } - }, - "npm:lodash._reevaluate": { - "type": "npm", - "name": "npm:lodash._reevaluate", - "data": { - "version": "3.0.0", - "packageName": "lodash._reevaluate", - "hash": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=" - } - }, - "npm:lodash._reinterpolate": { - "type": "npm", - "name": "npm:lodash._reinterpolate", - "data": { - "version": "3.0.0", - "packageName": "lodash._reinterpolate", - "hash": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" - } - }, - "npm:lodash._root": { - "type": "npm", - "name": "npm:lodash._root", - "data": { - "version": "3.0.1", - "packageName": "lodash._root", - "hash": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=" - } - }, - "npm:lodash.assign": { - "type": "npm", - "name": "npm:lodash.assign", - "data": { - "version": "4.2.0", - "packageName": "lodash.assign", - "hash": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" - } - }, - "npm:lodash.camelcase": { - "type": "npm", - "name": "npm:lodash.camelcase", - "data": { - "version": "4.3.0", - "packageName": "lodash.camelcase", - "hash": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" - } - }, - "npm:lodash.debounce": { - "type": "npm", - "name": "npm:lodash.debounce", - "data": { - "version": "4.0.8", - "packageName": "lodash.debounce", - "hash": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" - } - }, - "npm:lodash.endswith": { - "type": "npm", - "name": "npm:lodash.endswith", - "data": { - "version": "4.2.1", - "packageName": "lodash.endswith", - "hash": "sha1-/tWawXOO0+I27dcGTsRWRIs3vAk=" - } - }, - "npm:lodash.escape": { - "type": "npm", - "name": "npm:lodash.escape", - "data": { - "version": "3.2.0", - "packageName": "lodash.escape", - "hash": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=" - } - }, - "npm:lodash.escape@4.0.1": { - "type": "npm", - "name": "npm:lodash.escape@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "lodash.escape", - "hash": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=" - } - }, - "npm:lodash.find": { - "type": "npm", - "name": "npm:lodash.find", - "data": { - "version": "4.6.0", - "packageName": "lodash.find", - "hash": "sha1-ywcE1Hq3F4n/oN6Ll92Sb7iLE7E=" - } - }, - "npm:lodash.flatten": { - "type": "npm", - "name": "npm:lodash.flatten", - "data": { - "version": "4.4.0", - "packageName": "lodash.flatten", - "hash": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" - } - }, - "npm:lodash.flattendeep": { - "type": "npm", - "name": "npm:lodash.flattendeep", - "data": { - "version": "4.4.0", - "packageName": "lodash.flattendeep", - "hash": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" - } - }, - "npm:lodash.get": { - "type": "npm", - "name": "npm:lodash.get", - "data": { - "version": "4.4.2", - "packageName": "lodash.get", - "hash": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" - } - }, - "npm:lodash.includes": { - "type": "npm", - "name": "npm:lodash.includes", - "data": { - "version": "4.3.0", - "packageName": "lodash.includes", - "hash": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" - } - }, - "npm:lodash.isarguments": { - "type": "npm", - "name": "npm:lodash.isarguments", - "data": { - "version": "3.1.0", - "packageName": "lodash.isarguments", - "hash": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" - } - }, - "npm:lodash.isarray": { - "type": "npm", - "name": "npm:lodash.isarray", - "data": { - "version": "3.0.4", - "packageName": "lodash.isarray", - "hash": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" - } - }, - "npm:lodash.isboolean": { - "type": "npm", - "name": "npm:lodash.isboolean", - "data": { - "version": "3.0.3", - "packageName": "lodash.isboolean", - "hash": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" - } - }, - "npm:lodash.isequal": { - "type": "npm", - "name": "npm:lodash.isequal", - "data": { - "version": "4.5.0", - "packageName": "lodash.isequal", - "hash": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" - } - }, - "npm:lodash.isinteger": { - "type": "npm", - "name": "npm:lodash.isinteger", - "data": { - "version": "4.0.4", - "packageName": "lodash.isinteger", - "hash": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" - } - }, - "npm:lodash.ismatch": { - "type": "npm", - "name": "npm:lodash.ismatch", - "data": { - "version": "4.4.0", - "packageName": "lodash.ismatch", - "hash": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=" - } - }, - "npm:lodash.isnumber": { - "type": "npm", - "name": "npm:lodash.isnumber", - "data": { - "version": "3.0.3", - "packageName": "lodash.isnumber", - "hash": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" - } - }, - "npm:lodash.isobject": { - "type": "npm", - "name": "npm:lodash.isobject", - "data": { - "version": "3.0.2", - "packageName": "lodash.isobject", - "hash": "sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0=" - } - }, - "npm:lodash.isplainobject": { - "type": "npm", - "name": "npm:lodash.isplainobject", - "data": { - "version": "4.0.6", - "packageName": "lodash.isplainobject", - "hash": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" - } - }, - "npm:lodash.isstring": { - "type": "npm", - "name": "npm:lodash.isstring", - "data": { - "version": "4.0.1", - "packageName": "lodash.isstring", - "hash": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" - } - }, - "npm:lodash.keys@3.1.2": { - "type": "npm", - "name": "npm:lodash.keys@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "lodash.keys", - "hash": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=" - } - }, - "npm:lodash.keys": { - "type": "npm", - "name": "npm:lodash.keys", - "data": { - "version": "4.2.0", - "packageName": "lodash.keys", - "hash": "sha1-oIYCrBLk+4P5H8H7ejYKTZujUgU=" - } - }, - "npm:lodash.mapvalues": { - "type": "npm", - "name": "npm:lodash.mapvalues", - "data": { - "version": "4.6.0", - "packageName": "lodash.mapvalues", - "hash": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.mergewith": { - "type": "npm", - "name": "npm:lodash.mergewith", - "data": { - "version": "4.6.2", - "packageName": "lodash.mergewith", - "hash": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" - } - }, - "npm:lodash.once": { - "type": "npm", - "name": "npm:lodash.once", - "data": { - "version": "4.1.1", - "packageName": "lodash.once", - "hash": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" - } - }, - "npm:lodash.pick": { - "type": "npm", - "name": "npm:lodash.pick", - "data": { - "version": "4.4.0", - "packageName": "lodash.pick", - "hash": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" - } - }, - "npm:lodash.restparam": { - "type": "npm", - "name": "npm:lodash.restparam", - "data": { - "version": "3.6.1", - "packageName": "lodash.restparam", - "hash": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" - } - }, - "npm:lodash.sortby": { - "type": "npm", - "name": "npm:lodash.sortby", - "data": { - "version": "4.7.0", - "packageName": "lodash.sortby", - "hash": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" - } - }, - "npm:lodash.template": { - "type": "npm", - "name": "npm:lodash.template", - "data": { - "version": "3.6.2", - "packageName": "lodash.template", - "hash": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=" - } - }, - "npm:lodash.templatesettings": { - "type": "npm", - "name": "npm:lodash.templatesettings", - "data": { - "version": "3.1.1", - "packageName": "lodash.templatesettings", - "hash": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=" - } - }, - "npm:lodash.toarray": { - "type": "npm", - "name": "npm:lodash.toarray", - "data": { - "version": "4.4.0", - "packageName": "lodash.toarray", - "hash": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" - } - }, - "npm:lodash.truncate": { - "type": "npm", - "name": "npm:lodash.truncate", - "data": { - "version": "4.4.2", - "packageName": "lodash.truncate", - "hash": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:log-symbols@3.0.0": { - "type": "npm", - "name": "npm:log-symbols@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "log-symbols", - "hash": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==" - } - }, - "npm:log-symbols@1.0.2": { - "type": "npm", - "name": "npm:log-symbols@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "log-symbols", - "hash": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=" - } - }, - "npm:log-symbols@2.2.0": { - "type": "npm", - "name": "npm:log-symbols@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "log-symbols", - "hash": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "4.0.0", - "packageName": "log-update", - "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" - } - }, - "npm:log4js": { - "type": "npm", - "name": "npm:log4js", - "data": { - "version": "6.4.2", - "packageName": "log4js", - "hash": "sha512-k80cggS2sZQLBwllpT1p06GtfvzMmSdUCkW96f0Hj83rKGJDAu2vZjt9B9ag2vx8Zz1IXzxoLgqvRJCdMKybGg==" - } - }, - "npm:loose-envify": { - "type": "npm", - "name": "npm:loose-envify", - "data": { - "version": "1.4.0", - "packageName": "loose-envify", - "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" - } - }, - "npm:loud-rejection": { - "type": "npm", - "name": "npm:loud-rejection", - "data": { - "version": "1.6.0", - "packageName": "loud-rejection", - "hash": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=" - } - }, - "npm:loupe": { - "type": "npm", - "name": "npm:loupe", - "data": { - "version": "2.3.4", - "packageName": "loupe", - "hash": "sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==" - } - }, - "npm:lower-case-first": { - "type": "npm", - "name": "npm:lower-case-first", - "data": { - "version": "1.0.2", - "packageName": "lower-case-first", - "hash": "sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=" - } - }, - "npm:lower-case": { - "type": "npm", - "name": "npm:lower-case", - "data": { - "version": "1.1.4", - "packageName": "lower-case", - "hash": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" - } - }, - "npm:lower-case@2.0.2": { - "type": "npm", - "name": "npm:lower-case@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "lower-case", - "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" - } - }, - "npm:lowercase-keys@1.0.0": { - "type": "npm", - "name": "npm:lowercase-keys@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "lowercase-keys", - "hash": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" - } - }, - "npm:lowercase-keys": { - "type": "npm", - "name": "npm:lowercase-keys", - "data": { - "version": "2.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - }, - "npm:lowercase-keys@3.0.0": { - "type": "npm", - "name": "npm:lowercase-keys@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==" - } - }, - "npm:lowlight": { - "type": "npm", - "name": "npm:lowlight", - "data": { - "version": "1.11.0", - "packageName": "lowlight", - "hash": "sha512-xrGGN6XLL7MbTMdPD6NfWPwY43SNkjf/d0mecSx/CW36fUZTjRHEq0/Cdug3TWKtRXLWi7iMl1eP0olYxj/a4A==" - } - }, - "npm:lru-cache@10.0.1": { - "type": "npm", - "name": "npm:lru-cache@10.0.1", - "data": { - "version": "10.0.1", - "packageName": "lru-cache", - "hash": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==" - } - }, - "npm:lru-cache@4.1.5": { - "type": "npm", - "name": "npm:lru-cache@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "lru-cache", - "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" - } - }, - "npm:lru-cache@5.1.1": { - "type": "npm", - "name": "npm:lru-cache@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "6.0.0", - "packageName": "lru-cache", - "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - } - }, - "npm:lru-cache@7.14.0": { - "type": "npm", - "name": "npm:lru-cache@7.14.0", - "data": { - "version": "7.14.0", - "packageName": "lru-cache", - "hash": "sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ==" - } - }, - "npm:lru-queue": { - "type": "npm", - "name": "npm:lru-queue", - "data": { - "version": "0.1.0", - "packageName": "lru-queue", - "hash": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=" - } - }, - "npm:lz-string": { - "type": "npm", - "name": "npm:lz-string", - "data": { - "version": "1.4.4", - "packageName": "lz-string", - "hash": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.25.7", - "packageName": "magic-string", - "hash": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:make-dir@1.3.0": { - "type": "npm", - "name": "npm:make-dir@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "make-dir", - "hash": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==" - } - }, - "npm:make-dir@2.1.0": { - "type": "npm", - "name": "npm:make-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-error": { - "type": "npm", - "name": "npm:make-error", - "data": { - "version": "1.3.5", - "packageName": "make-error", - "hash": "sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==" - } - }, - "npm:make-fetch-happen@10.2.1": { - "type": "npm", - "name": "npm:make-fetch-happen@10.2.1", - "data": { - "version": "10.2.1", - "packageName": "make-fetch-happen", - "hash": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "11.1.1", - "packageName": "make-fetch-happen", - "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" - } - }, - "npm:make-fetch-happen@8.0.9": { - "type": "npm", - "name": "npm:make-fetch-happen@8.0.9", - "data": { - "version": "8.0.9", - "packageName": "make-fetch-happen", - "hash": "sha512-uHa4gv/NIdm9cUvfOhYb57nxrCY08iyMRXru0jbpaH57Q3NCge/ypY7fOvgCr8tPyucKrGbVndKhjXE0IX0VfQ==" - } - }, - "npm:make-iterator": { - "type": "npm", - "name": "npm:make-iterator", - "data": { - "version": "1.0.1", - "packageName": "make-iterator", - "hash": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:map-age-cleaner": { - "type": "npm", - "name": "npm:map-age-cleaner", - "data": { - "version": "0.1.3", - "packageName": "map-age-cleaner", - "hash": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==" - } - }, - "npm:map-cache": { - "type": "npm", - "name": "npm:map-cache", - "data": { - "version": "0.2.2", - "packageName": "map-cache", - "hash": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" - } - }, - "npm:map-obj": { - "type": "npm", - "name": "npm:map-obj", - "data": { - "version": "1.0.1", - "packageName": "map-obj", - "hash": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" - } - }, - "npm:map-obj@4.1.0": { - "type": "npm", - "name": "npm:map-obj@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "map-obj", - "hash": "sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==" - } - }, - "npm:map-or-similar": { - "type": "npm", - "name": "npm:map-or-similar", - "data": { - "version": "1.5.0", - "packageName": "map-or-similar", - "hash": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=" - } - }, - "npm:map-visit": { - "type": "npm", - "name": "npm:map-visit", - "data": { - "version": "1.0.0", - "packageName": "map-visit", - "hash": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=" - } - }, - "npm:markdown-escapes": { - "type": "npm", - "name": "npm:markdown-escapes", - "data": { - "version": "1.0.4", - "packageName": "markdown-escapes", - "hash": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" - } - }, - "npm:markdown-table": { - "type": "npm", - "name": "npm:markdown-table", - "data": { - "version": "2.0.0", - "packageName": "markdown-table", - "hash": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==" - } - }, - "npm:markdown-to-jsx": { - "type": "npm", - "name": "npm:markdown-to-jsx", - "data": { - "version": "7.1.7", - "packageName": "markdown-to-jsx", - "hash": "sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==" - } - }, - "npm:marked-terminal": { - "type": "npm", - "name": "npm:marked-terminal", - "data": { - "version": "4.1.0", - "packageName": "marked-terminal", - "hash": "sha512-5KllfAOW02WS6hLRQ7cNvGOxvKW1BKuXELH4EtbWfyWgxQhROoMxEvuQ/3fTgkNjledR0J48F4HbapvYp1zWkQ==" - } - }, - "npm:marked": { - "type": "npm", - "name": "npm:marked", - "data": { - "version": "4.0.12", - "packageName": "marked", - "hash": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==" - } - }, - "npm:matchdep": { - "type": "npm", - "name": "npm:matchdep", - "data": { - "version": "2.0.0", - "packageName": "matchdep", - "hash": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=" - } - }, - "npm:md5.js": { - "type": "npm", - "name": "npm:md5.js", - "data": { - "version": "1.3.5", - "packageName": "md5.js", - "hash": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==" - } - }, - "npm:mdast-add-list-metadata": { - "type": "npm", - "name": "npm:mdast-add-list-metadata", - "data": { - "version": "1.0.1", - "packageName": "mdast-add-list-metadata", - "hash": "sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==" - } - }, - "npm:mdast-squeeze-paragraphs": { - "type": "npm", - "name": "npm:mdast-squeeze-paragraphs", - "data": { - "version": "4.0.0", - "packageName": "mdast-squeeze-paragraphs", - "hash": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==" - } - }, - "npm:mdast-util-definitions": { - "type": "npm", - "name": "npm:mdast-util-definitions", - "data": { - "version": "4.0.0", - "packageName": "mdast-util-definitions", - "hash": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==" - } - }, - "npm:mdast-util-to-hast": { - "type": "npm", - "name": "npm:mdast-util-to-hast", - "data": { - "version": "10.0.1", - "packageName": "mdast-util-to-hast", - "hash": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==" - } - }, - "npm:mdast-util-to-string": { - "type": "npm", - "name": "npm:mdast-util-to-string", - "data": { - "version": "1.1.0", - "packageName": "mdast-util-to-string", - "hash": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==" - } - }, - "npm:mdurl": { - "type": "npm", - "name": "npm:mdurl", - "data": { - "version": "1.0.1", - "packageName": "mdurl", - "hash": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "0.3.0", - "packageName": "media-typer", - "hash": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - } - }, - "npm:mem": { - "type": "npm", - "name": "npm:mem", - "data": { - "version": "8.1.1", - "packageName": "mem", - "hash": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==" - } - }, - "npm:memfs-or-file-map-to-github-branch": { - "type": "npm", - "name": "npm:memfs-or-file-map-to-github-branch", - "data": { - "version": "1.2.1", - "packageName": "memfs-or-file-map-to-github-branch", - "hash": "sha512-I/hQzJ2a/pCGR8fkSQ9l5Yx+FQ4e7X6blNHyWBm2ojeFLT3GVzGkTj7xnyWpdclrr7Nq4dmx3xrvu70m3ypzAQ==" - } - }, - "npm:memfs": { - "type": "npm", - "name": "npm:memfs", - "data": { - "version": "3.2.2", - "packageName": "memfs", - "hash": "sha512-RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==" - } - }, - "npm:memfs@3.4.1": { - "type": "npm", - "name": "npm:memfs@3.4.1", - "data": { - "version": "3.4.1", - "packageName": "memfs", - "hash": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==" - } - }, - "npm:memoize-one": { - "type": "npm", - "name": "npm:memoize-one", - "data": { - "version": "5.1.1", - "packageName": "memoize-one", - "hash": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==" - } - }, - "npm:memoizee": { - "type": "npm", - "name": "npm:memoizee", - "data": { - "version": "0.4.14", - "packageName": "memoizee", - "hash": "sha512-/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg==" - } - }, - "npm:memoizerific": { - "type": "npm", - "name": "npm:memoizerific", - "data": { - "version": "1.11.3", - "packageName": "memoizerific", - "hash": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=" - } - }, - "npm:memory-fs": { - "type": "npm", - "name": "npm:memory-fs", - "data": { - "version": "0.4.1", - "packageName": "memory-fs", - "hash": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=" - } - }, - "npm:memory-fs@0.5.0": { - "type": "npm", - "name": "npm:memory-fs@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "memory-fs", - "hash": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==" - } - }, - "npm:meow@3.7.0": { - "type": "npm", - "name": "npm:meow@3.7.0", - "data": { - "version": "3.7.0", - "packageName": "meow", - "hash": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=" - } - }, - "npm:meow": { - "type": "npm", - "name": "npm:meow", - "data": { - "version": "8.1.2", - "packageName": "meow", - "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.1", - "packageName": "merge-descriptors", - "hash": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - } - }, - "npm:merge-stream": { - "type": "npm", - "name": "npm:merge-stream", - "data": { - "version": "2.0.0", - "packageName": "merge-stream", - "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:methods": { - "type": "npm", - "name": "npm:methods", - "data": { - "version": "1.1.2", - "packageName": "methods", - "hash": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - } - }, - "npm:microevent.ts": { - "type": "npm", - "name": "npm:microevent.ts", - "data": { - "version": "0.1.1", - "packageName": "microevent.ts", - "hash": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" - } - }, - "npm:micromatch@3.1.10": { - "type": "npm", - "name": "npm:micromatch@3.1.10", - "data": { - "version": "3.1.10", - "packageName": "micromatch", - "hash": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.4", - "packageName": "micromatch", - "hash": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==" - } - }, - "npm:miller-rabin": { - "type": "npm", - "name": "npm:miller-rabin", - "data": { - "version": "4.0.1", - "packageName": "miller-rabin", - "hash": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:mime@1.6.0": { - "type": "npm", - "name": "npm:mime@1.6.0", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "2.6.0", - "packageName": "mime", - "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - }, - "npm:mimic-fn@1.2.0": { - "type": "npm", - "name": "npm:mimic-fn@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "mimic-fn", - "hash": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:mimic-fn@3.1.0": { - "type": "npm", - "name": "npm:mimic-fn@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "mimic-fn", - "hash": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==" - } - }, - "npm:mimic-response@1.0.1": { - "type": "npm", - "name": "npm:mimic-response@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "mimic-response", - "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - }, - "npm:mimic-response": { - "type": "npm", - "name": "npm:mimic-response", - "data": { - "version": "3.1.0", - "packageName": "mimic-response", - "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - }, - "npm:min-document": { - "type": "npm", - "name": "npm:min-document", - "data": { - "version": "2.19.0", - "packageName": "min-document", - "hash": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=" - } - }, - "npm:min-indent": { - "type": "npm", - "name": "npm:min-indent", - "data": { - "version": "1.0.0", - "packageName": "min-indent", - "hash": "sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY=" - } - }, - "npm:mini-create-react-context": { - "type": "npm", - "name": "npm:mini-create-react-context", - "data": { - "version": "0.4.0", - "packageName": "mini-create-react-context", - "hash": "sha512-b0TytUgFSbgFJGzJqXPKCFCBWigAjpjo+Fl7Vf7ZbKRDptszpppKxXH6DRXEABZ/gcEQczeb0iZ7JvL8e8jjCA==" - } - }, - "npm:mini-css-extract-plugin": { - "type": "npm", - "name": "npm:mini-css-extract-plugin", - "data": { - "version": "2.6.1", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==" - } - }, - "npm:minimalistic-assert": { - "type": "npm", - "name": "npm:minimalistic-assert", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-assert", - "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - } - }, - "npm:minimalistic-crypto-utils": { - "type": "npm", - "name": "npm:minimalistic-crypto-utils", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-crypto-utils", - "hash": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.0.5", - "packageName": "minimatch", - "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" - } - }, - "npm:minimatch@3.0.4": { - "type": "npm", - "name": "npm:minimatch@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "minimatch", - "hash": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" - } - }, - "npm:minimatch@9.0.1": { - "type": "npm", - "name": "npm:minimatch@9.0.1", - "data": { - "version": "9.0.1", - "packageName": "minimatch", - "hash": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==" - } - }, - "npm:minimatch@5.0.1": { - "type": "npm", - "name": "npm:minimatch@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "minimatch", - "hash": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==" - } - }, - "npm:minimatch@8.0.4": { - "type": "npm", - "name": "npm:minimatch@8.0.4", - "data": { - "version": "8.0.4", - "packageName": "minimatch", - "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" - } - }, - "npm:minimist-options": { - "type": "npm", - "name": "npm:minimist-options", - "data": { - "version": "4.1.0", - "packageName": "minimist-options", - "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.7", - "packageName": "minimist", - "hash": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "1.0.2", - "packageName": "minipass-collect", - "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "1.3.0", - "packageName": "minipass-fetch", - "hash": "sha512-Yb23ESZZ/8QxiBvSpJ4atbVMVDx2CXrerzrtQzQ67eLqKg+zFIkYFTagk3xh6fdo+e/FvDtVuCD4QcuYDRR3hw==" - } - }, - "npm:minipass-fetch@2.1.2": { - "type": "npm", - "name": "npm:minipass-fetch@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "minipass-fetch", - "hash": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" - } - }, - "npm:minipass-fetch@3.0.3": { - "type": "npm", - "name": "npm:minipass-fetch@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "minipass-fetch", - "hash": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-json-stream": { - "type": "npm", - "name": "npm:minipass-json-stream", - "data": { - "version": "1.0.1", - "packageName": "minipass-json-stream", - "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass-sized": { - "type": "npm", - "name": "npm:minipass-sized", - "data": { - "version": "1.0.3", - "packageName": "minipass-sized", - "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - } - }, - "npm:minipass@2.9.0": { - "type": "npm", - "name": "npm:minipass@2.9.0", - "data": { - "version": "2.9.0", - "packageName": "minipass", - "hash": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "3.3.4", - "packageName": "minipass", - "hash": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==" - } - }, - "npm:minipass@4.2.8": { - "type": "npm", - "name": "npm:minipass@4.2.8", - "data": { - "version": "4.2.8", - "packageName": "minipass", - "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" - } - }, - "npm:minipass@5.0.0": { - "type": "npm", - "name": "npm:minipass@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" - } - }, - "npm:minizlib@1.3.3": { - "type": "npm", - "name": "npm:minizlib@1.3.3", - "data": { - "version": "1.3.3", - "packageName": "minizlib", - "hash": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:mississippi": { - "type": "npm", - "name": "npm:mississippi", - "data": { - "version": "3.0.0", - "packageName": "mississippi", - "hash": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==" - } - }, - "npm:mixin-deep": { - "type": "npm", - "name": "npm:mixin-deep", - "data": { - "version": "1.3.2", - "packageName": "mixin-deep", - "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" - } - }, - "npm:mkdirp-classic": { - "type": "npm", - "name": "npm:mkdirp-classic", - "data": { - "version": "0.5.3", - "packageName": "mkdirp-classic", - "hash": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "0.5.5", - "packageName": "mkdirp", - "hash": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==" - } - }, - "npm:mkdirp@1.0.4": { - "type": "npm", - "name": "npm:mkdirp@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:mocha": { - "type": "npm", - "name": "npm:mocha", - "data": { - "version": "7.2.0", - "packageName": "mocha", - "hash": "sha512-O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ==" - } - }, - "npm:mocked-env": { - "type": "npm", - "name": "npm:mocked-env", - "data": { - "version": "1.3.2", - "packageName": "mocked-env", - "hash": "sha512-jwm3ziowCjpbLNhUNYwn2G0tawV/ZGRuWeEGt6PItrkQT74Nk3pDldL2pmwm9sQZw6a/x+ZBGeBVYq54acTauQ==" - } - }, - "npm:modify-values": { - "type": "npm", - "name": "npm:modify-values", - "data": { - "version": "1.0.1", - "packageName": "modify-values", - "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" - } - }, - "npm:moment": { - "type": "npm", - "name": "npm:moment", - "data": { - "version": "2.29.4", - "packageName": "moment", - "hash": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" - } - }, - "npm:monaco-editor": { - "type": "npm", - "name": "npm:monaco-editor", - "data": { - "version": "0.33.0", - "packageName": "monaco-editor", - "hash": "sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==" - } - }, - "npm:monosize-storage-azure": { - "type": "npm", - "name": "npm:monosize-storage-azure", - "data": { - "version": "0.0.3", - "packageName": "monosize-storage-azure", - "hash": "sha512-KmivlWDprIdSSa59Ot9osXB/+niB3hQsbgLFq/SxNh0fOv7UkxIqC6HnnlRPD5aWq07XO6mP0S0iJOSxKLLuWA==" - } - }, - "npm:monosize": { - "type": "npm", - "name": "npm:monosize", - "data": { - "version": "0.1.0", - "packageName": "monosize", - "hash": "sha512-+a8VUdzZwHlja72zs4Les4UTNu3H/kPrJT7L90DPZW4XLc9LNnMyU+6Sx731X/cdQe5utWBfcYv2DbCkWBPLRA==" - } - }, - "npm:moo-color": { - "type": "npm", - "name": "npm:moo-color", - "data": { - "version": "1.0.3", - "packageName": "moo-color", - "hash": "sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==" - } - }, - "npm:moo": { - "type": "npm", - "name": "npm:moo", - "data": { - "version": "0.4.3", - "packageName": "moo", - "hash": "sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw==" - } - }, - "npm:move-concurrently": { - "type": "npm", - "name": "npm:move-concurrently", - "data": { - "version": "1.0.1", - "packageName": "move-concurrently", - "hash": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=" - } - }, - "npm:ms@2.0.0": { - "type": "npm", - "name": "npm:ms@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ms", - "hash": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - }, - "npm:ms@2.1.1": { - "type": "npm", - "name": "npm:ms@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ms", - "hash": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - } - }, - "npm:ms@2.1.2": { - "type": "npm", - "name": "npm:ms@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "ms", - "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:multicast-dns-service-types": { - "type": "npm", - "name": "npm:multicast-dns-service-types", - "data": { - "version": "1.1.0", - "packageName": "multicast-dns-service-types", - "hash": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" - } - }, - "npm:multicast-dns": { - "type": "npm", - "name": "npm:multicast-dns", - "data": { - "version": "6.2.3", - "packageName": "multicast-dns", - "hash": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==" - } - }, - "npm:multimatch": { - "type": "npm", - "name": "npm:multimatch", - "data": { - "version": "5.0.0", - "packageName": "multimatch", - "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" - } - }, - "npm:multipipe": { - "type": "npm", - "name": "npm:multipipe", - "data": { - "version": "0.1.2", - "packageName": "multipipe", - "hash": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=" - } - }, - "npm:mute-stdout": { - "type": "npm", - "name": "npm:mute-stdout", - "data": { - "version": "1.0.1", - "packageName": "mute-stdout", - "hash": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==" - } - }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "0.0.8", - "packageName": "mute-stream", - "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - } - }, - "npm:mute-stream@1.0.0": { - "type": "npm", - "name": "npm:mute-stream@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "mute-stream", - "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" - } - }, - "npm:n-readlines": { - "type": "npm", - "name": "npm:n-readlines", - "data": { - "version": "1.0.0", - "packageName": "n-readlines", - "hash": "sha512-ISDqGcspVu6U3VKqtJZG1uR55SmNNF9uK0EMq1IvNVVZOui6MW6VR0+pIZhqz85ORAGp+4zW+5fJ/SE7bwEibA==" - } - }, - "npm:nan@2.15.0": { - "type": "npm", - "name": "npm:nan@2.15.0", - "data": { - "version": "2.15.0", - "packageName": "nan", - "hash": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.6", - "packageName": "nanoid", - "hash": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" - } - }, - "npm:nanomatch": { - "type": "npm", - "name": "npm:nanomatch", - "data": { - "version": "1.2.13", - "packageName": "nanomatch", - "hash": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" - } - }, - "npm:nearley": { - "type": "npm", - "name": "npm:nearley", - "data": { - "version": "2.16.0", - "packageName": "nearley", - "hash": "sha512-Tr9XD3Vt/EujXbZBv6UAHYoLUSMQAxSsTnm9K3koXzjzNWY195NqALeyrzLZBKzAkL3gl92BcSogqrHjD8QuUg==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - } - }, - "npm:neo-async": { - "type": "npm", - "name": "npm:neo-async", - "data": { - "version": "2.6.2", - "packageName": "neo-async", - "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - } - }, - "npm:nested-error-stacks": { - "type": "npm", - "name": "npm:nested-error-stacks", - "data": { - "version": "2.1.0", - "packageName": "nested-error-stacks", - "hash": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==" - } - }, - "npm:next-tick": { - "type": "npm", - "name": "npm:next-tick", - "data": { - "version": "1.0.0", - "packageName": "next-tick", - "hash": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - } - }, - "npm:nice-try": { - "type": "npm", - "name": "npm:nice-try", - "data": { - "version": "1.0.5", - "packageName": "nice-try", - "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - } - }, - "npm:no-case": { - "type": "npm", - "name": "npm:no-case", - "data": { - "version": "2.3.2", - "packageName": "no-case", - "hash": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==" - } - }, - "npm:no-case@3.0.4": { - "type": "npm", - "name": "npm:no-case@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "no-case", - "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" - } - }, - "npm:node-addon-api": { - "type": "npm", - "name": "npm:node-addon-api", - "data": { - "version": "3.2.1", - "packageName": "node-addon-api", - "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" - } - }, - "npm:node-cleanup": { - "type": "npm", - "name": "npm:node-cleanup", - "data": { - "version": "2.1.2", - "packageName": "node-cleanup", - "hash": "sha1-esGavSl+Caf3KnFUXZUbUX5N3iw=" - } - }, - "npm:node-dir": { - "type": "npm", - "name": "npm:node-dir", - "data": { - "version": "0.1.17", - "packageName": "node-dir", - "hash": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=" - } - }, - "npm:node-domexception": { - "type": "npm", - "name": "npm:node-domexception", - "data": { - "version": "1.0.0", - "packageName": "node-domexception", - "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" - } - }, - "npm:node-emoji": { - "type": "npm", - "name": "npm:node-emoji", - "data": { - "version": "1.10.0", - "packageName": "node-emoji", - "hash": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==" - } - }, - "npm:node-environment-flags": { - "type": "npm", - "name": "npm:node-environment-flags", - "data": { - "version": "1.0.6", - "packageName": "node-environment-flags", - "hash": "sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.6.7", - "packageName": "node-fetch", - "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" - } - }, - "npm:node-fetch@3.3.1": { - "type": "npm", - "name": "npm:node-fetch@3.3.1", - "data": { - "version": "3.3.1", - "packageName": "node-fetch", - "hash": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==" - } - }, - "npm:node-forge": { - "type": "npm", - "name": "npm:node-forge", - "data": { - "version": "1.3.1", - "packageName": "node-forge", - "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.3.0", - "packageName": "node-gyp-build", - "hash": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==" - } - }, - "npm:node-gyp@6.1.0": { - "type": "npm", - "name": "npm:node-gyp@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "node-gyp", - "hash": "sha512-h4A2zDlOujeeaaTx06r4Vy+8MZ1679lU+wbCKDS4ZtvY2A37DESo37oejIw0mtmR3+rvNwts5B6Kpt1KrNYdNw==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "9.1.0", - "packageName": "node-gyp", - "hash": "sha512-HkmN0ZpQJU7FLbJauJTHkHlSVAXlNGDAzH/VYFZGDOnFyn/Na3GlNJfkudmufOdS6/jNFhy88ObzL7ERz9es1g==" - } - }, - "npm:node-int64": { - "type": "npm", - "name": "npm:node-int64", - "data": { - "version": "0.4.0", - "packageName": "node-int64", - "hash": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" - } - }, - "npm:node-ipc": { - "type": "npm", - "name": "npm:node-ipc", - "data": { - "version": "9.1.1", - "packageName": "node-ipc", - "hash": "sha512-FAyICv0sIRJxVp3GW5fzgaf9jwwRQxAKDJlmNFUL5hOy+W4X/I5AypyHoq0DXXbo9o/gt79gj++4cMr4jVWE/w==" - } - }, - "npm:node-libs-browser": { - "type": "npm", - "name": "npm:node-libs-browser", - "data": { - "version": "2.2.1", - "packageName": "node-libs-browser", - "hash": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==" - } - }, - "npm:node-machine-id": { - "type": "npm", - "name": "npm:node-machine-id", - "data": { - "version": "1.1.12", - "packageName": "node-machine-id", - "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" - } - }, - "npm:node-plop": { - "type": "npm", - "name": "npm:node-plop", - "data": { - "version": "0.25.0", - "packageName": "node-plop", - "hash": "sha512-OFvnTsDw9nxNdLrYcveJhU2Hnzg+AxOz6xBk8uXsi0vCOSP7Rng98pdgfsuZKyCN+qrc+/fSwlNC5hkXhJ6gww==" - } - }, - "npm:node-polyfill-webpack-plugin": { - "type": "npm", - "name": "npm:node-polyfill-webpack-plugin", - "data": { - "version": "1.0.2", - "packageName": "node-polyfill-webpack-plugin", - "hash": "sha512-x4dNQ28D/kwvDbp52y6WBOuXs2QhGkIkv8RT2xhBj5JO21iUrNT4aSJyw41Jio3Ima/S0UKCTfHdS6mUOxjYmw==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.13", - "packageName": "node-releases", - "hash": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "3.0.6", - "packageName": "nopt", - "hash": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=" - } - }, - "npm:nopt@4.0.1": { - "type": "npm", - "name": "npm:nopt@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "nopt", - "hash": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=" - } - }, - "npm:nopt@5.0.0": { - "type": "npm", - "name": "npm:nopt@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "nopt", - "hash": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==" - } - }, - "npm:normalize-package-data": { - "type": "npm", - "name": "npm:normalize-package-data", - "data": { - "version": "2.5.0", - "packageName": "normalize-package-data", - "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" - } - }, - "npm:normalize-package-data@3.0.3": { - "type": "npm", - "name": "npm:normalize-package-data@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "normalize-package-data", - "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" - } - }, - "npm:normalize-package-data@5.0.0": { - "type": "npm", - "name": "npm:normalize-package-data@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "normalize-package-data", - "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" - } - }, - "npm:normalize-path@2.1.1": { - "type": "npm", - "name": "npm:normalize-path@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "normalize-path", - "hash": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:normalize-range": { - "type": "npm", - "name": "npm:normalize-range", - "data": { - "version": "0.1.2", - "packageName": "normalize-range", - "hash": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:now-and-later": { - "type": "npm", - "name": "npm:now-and-later", - "data": { - "version": "2.0.1", - "packageName": "now-and-later", - "hash": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==" - } - }, - "npm:npm-bundled": { - "type": "npm", - "name": "npm:npm-bundled", - "data": { - "version": "1.1.2", - "packageName": "npm-bundled", - "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" - } - }, - "npm:npm-bundled@3.0.0": { - "type": "npm", - "name": "npm:npm-bundled@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "npm-bundled", - "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" - } - }, - "npm:npm-install-checks": { - "type": "npm", - "name": "npm:npm-install-checks", - "data": { - "version": "4.0.0", - "packageName": "npm-install-checks", - "hash": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==" - } - }, - "npm:npm-install-checks@6.1.1": { - "type": "npm", - "name": "npm:npm-install-checks@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "npm-install-checks", - "hash": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==" - } - }, - "npm:npm-normalize-package-bin": { - "type": "npm", - "name": "npm:npm-normalize-package-bin", - "data": { - "version": "1.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" - } - }, - "npm:npm-normalize-package-bin@3.0.1": { - "type": "npm", - "name": "npm:npm-normalize-package-bin@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" - } - }, - "npm:npm-package-arg@11.0.1": { - "type": "npm", - "name": "npm:npm-package-arg@11.0.1", - "data": { - "version": "11.0.1", - "packageName": "npm-package-arg", - "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" - } - }, - "npm:npm-package-arg@8.1.1": { - "type": "npm", - "name": "npm:npm-package-arg@8.1.1", - "data": { - "version": "8.1.1", - "packageName": "npm-package-arg", - "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "10.1.0", - "packageName": "npm-package-arg", - "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" - } - }, - "npm:npm-packlist": { - "type": "npm", - "name": "npm:npm-packlist", - "data": { - "version": "5.1.1", - "packageName": "npm-packlist", - "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" - } - }, - "npm:npm-packlist@2.1.2": { - "type": "npm", - "name": "npm:npm-packlist@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "npm-packlist", - "hash": "sha512-eByPaP+wsKai0BJX5pmb58d3mfR0zUATcnyuvSxIudTEn+swCPFLxh7srCmqB4hr7i9V24/DPjjq5b2qUtbgXQ==" - } - }, - "npm:npm-packlist@7.0.4": { - "type": "npm", - "name": "npm:npm-packlist@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "npm-packlist", - "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" - } - }, - "npm:npm-pick-manifest": { - "type": "npm", - "name": "npm:npm-pick-manifest", - "data": { - "version": "6.1.0", - "packageName": "npm-pick-manifest", - "hash": "sha512-ygs4k6f54ZxJXrzT0x34NybRlLeZ4+6nECAIbr2i0foTnijtS1TJiyzpqtuUAJOps/hO0tNDr8fRV5g+BtRlTw==" - } - }, - "npm:npm-pick-manifest@8.0.1": { - "type": "npm", - "name": "npm:npm-pick-manifest@8.0.1", - "data": { - "version": "8.0.1", - "packageName": "npm-pick-manifest", - "hash": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==" - } - }, - "npm:npm-registry-fetch": { - "type": "npm", - "name": "npm:npm-registry-fetch", - "data": { - "version": "14.0.5", - "packageName": "npm-registry-fetch", - "hash": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==" - } - }, - "npm:npm-registry-fetch@8.1.3": { - "type": "npm", - "name": "npm:npm-registry-fetch@8.1.3", - "data": { - "version": "8.1.3", - "packageName": "npm-registry-fetch", - "hash": "sha512-xpBFcg13wkFR0SsscvemmrIe1Sxe1SPgGUOAb7+5Uo6fR8SIRMenMHeDSjfyulv1px66/y0Ib40rtKO20PcgPg==" - } - }, - "npm:npm-run-path@2.0.2": { - "type": "npm", - "name": "npm:npm-run-path@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "npm-run-path", - "hash": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:npmlog": { - "type": "npm", - "name": "npm:npmlog", - "data": { - "version": "4.1.2", - "packageName": "npmlog", - "hash": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==" - } - }, - "npm:npmlog@5.0.1": { - "type": "npm", - "name": "npm:npmlog@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "npmlog", - "hash": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==" - } - }, - "npm:npmlog@6.0.2": { - "type": "npm", - "name": "npm:npmlog@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "npmlog", - "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" - } - }, - "npm:nth-check@2.0.0": { - "type": "npm", - "name": "npm:nth-check@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "nth-check", - "hash": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "1.0.2", - "packageName": "nth-check", - "hash": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==" - } - }, - "npm:num2fraction": { - "type": "npm", - "name": "npm:num2fraction", - "data": { - "version": "1.2.2", - "packageName": "num2fraction", - "hash": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" - } - }, - "npm:number-is-nan": { - "type": "npm", - "name": "npm:number-is-nan", - "data": { - "version": "1.0.1", - "packageName": "number-is-nan", - "hash": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.5", - "packageName": "nwsapi", - "hash": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "16.10.0", - "packageName": "nx", - "hash": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==" - } - }, - "npm:oauth-sign": { - "type": "npm", - "name": "npm:oauth-sign", - "data": { - "version": "0.9.0", - "packageName": "oauth-sign", - "hash": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - } - }, - "npm:object-assign@3.0.0": { - "type": "npm", - "name": "npm:object-assign@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "object-assign", - "hash": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" - } - }, - "npm:object-copy": { - "type": "npm", - "name": "npm:object-copy", - "data": { - "version": "0.1.0", - "packageName": "object-copy", - "hash": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.11.0", - "packageName": "object-inspect", - "hash": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" - } - }, - "npm:object-is": { - "type": "npm", - "name": "npm:object-is", - "data": { - "version": "1.1.5", - "packageName": "object-is", - "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" - } - }, - "npm:object-keys": { - "type": "npm", - "name": "npm:object-keys", - "data": { - "version": "1.1.1", - "packageName": "object-keys", - "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - } - }, - "npm:object-visit": { - "type": "npm", - "name": "npm:object-visit", - "data": { - "version": "1.0.1", - "packageName": "object-visit", - "hash": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=" - } - }, - "npm:object.assign@4.1.0": { - "type": "npm", - "name": "npm:object.assign@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "object.assign", - "hash": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==" - } - }, - "npm:object.assign": { - "type": "npm", - "name": "npm:object.assign", - "data": { - "version": "4.1.2", - "packageName": "object.assign", - "hash": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" - } - }, - "npm:object.defaults": { - "type": "npm", - "name": "npm:object.defaults", - "data": { - "version": "1.1.0", - "packageName": "object.defaults", - "hash": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=" - } - }, - "npm:object.entries": { - "type": "npm", - "name": "npm:object.entries", - "data": { - "version": "1.1.5", - "packageName": "object.entries", - "hash": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==" - } - }, - "npm:object.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.5", - "packageName": "object.fromentries", - "hash": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==" - } - }, - "npm:object.getownpropertydescriptors": { - "type": "npm", - "name": "npm:object.getownpropertydescriptors", - "data": { - "version": "2.0.3", - "packageName": "object.getownpropertydescriptors", - "hash": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=" - } - }, - "npm:object.hasown": { - "type": "npm", - "name": "npm:object.hasown", - "data": { - "version": "1.1.0", - "packageName": "object.hasown", - "hash": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==" - } - }, - "npm:object.map": { - "type": "npm", - "name": "npm:object.map", - "data": { - "version": "1.0.1", - "packageName": "object.map", - "hash": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=" - } - }, - "npm:object.pick": { - "type": "npm", - "name": "npm:object.pick", - "data": { - "version": "1.3.0", - "packageName": "object.pick", - "hash": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=" - } - }, - "npm:object.reduce": { - "type": "npm", - "name": "npm:object.reduce", - "data": { - "version": "1.0.1", - "packageName": "object.reduce", - "hash": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=" - } - }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.1.5", - "packageName": "object.values", - "hash": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==" - } - }, - "npm:objectorarray": { - "type": "npm", - "name": "npm:objectorarray", - "data": { - "version": "1.0.4", - "packageName": "objectorarray", - "hash": "sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==" - } - }, - "npm:obuf": { - "type": "npm", - "name": "npm:obuf", - "data": { - "version": "1.1.2", - "packageName": "obuf", - "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - } - }, - "npm:office-ui-fabric-core": { - "type": "npm", - "name": "npm:office-ui-fabric-core", - "data": { - "version": "11.0.1", - "packageName": "office-ui-fabric-core", - "hash": "sha512-jcfycbVOm2aUoI+AGtHW24HvM7nUVFr44hR5NIE56EobK67bVwbNAQL15CJj3vNz5PBrnitsV9ROOB+KOEWn8g==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=" - } - }, - "npm:on-headers": { - "type": "npm", - "name": "npm:on-headers", - "data": { - "version": "1.0.2", - "packageName": "on-headers", - "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" - } - }, - "npm:onetime@2.0.1": { - "type": "npm", - "name": "npm:onetime@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "onetime", - "hash": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:only": { - "type": "npm", - "name": "npm:only", - "data": { - "version": "0.0.2", - "packageName": "only", - "hash": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==" - } - }, - "npm:open@7.4.2": { - "type": "npm", - "name": "npm:open@7.4.2", - "data": { - "version": "7.4.2", - "packageName": "open", - "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.0", - "packageName": "open", - "hash": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==" - } - }, - "npm:opener": { - "type": "npm", - "name": "npm:opener", - "data": { - "version": "1.5.2", - "packageName": "opener", - "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - } - }, - "npm:opn": { - "type": "npm", - "name": "npm:opn", - "data": { - "version": "5.5.0", - "packageName": "opn", - "hash": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.8.2", - "packageName": "optionator", - "hash": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=" - } - }, - "npm:optionator@0.9.1": { - "type": "npm", - "name": "npm:optionator@0.9.1", - "data": { - "version": "0.9.1", - "packageName": "optionator", - "hash": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:ora@3.4.0": { - "type": "npm", - "name": "npm:ora@3.4.0", - "data": { - "version": "3.4.0", - "packageName": "ora", - "hash": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==" - } - }, - "npm:ora@5.4.1": { - "type": "npm", - "name": "npm:ora@5.4.1", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:ordered-read-streams": { - "type": "npm", - "name": "npm:ordered-read-streams", - "data": { - "version": "1.0.1", - "packageName": "ordered-read-streams", - "hash": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=" - } - }, - "npm:os-browserify": { - "type": "npm", - "name": "npm:os-browserify", - "data": { - "version": "0.3.0", - "packageName": "os-browserify", - "hash": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - } - }, - "npm:os-filter-obj": { - "type": "npm", - "name": "npm:os-filter-obj", - "data": { - "version": "2.0.0", - "packageName": "os-filter-obj", - "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" - } - }, - "npm:os-homedir": { - "type": "npm", - "name": "npm:os-homedir", - "data": { - "version": "1.0.2", - "packageName": "os-homedir", - "hash": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" - } - }, - "npm:os-locale": { - "type": "npm", - "name": "npm:os-locale", - "data": { - "version": "1.4.0", - "packageName": "os-locale", - "hash": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" - } - }, - "npm:osenv": { - "type": "npm", - "name": "npm:osenv", - "data": { - "version": "0.1.5", - "packageName": "osenv", - "hash": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==" - } - }, - "npm:ospath": { - "type": "npm", - "name": "npm:ospath", - "data": { - "version": "1.2.2", - "packageName": "ospath", - "hash": "sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=" - } - }, - "npm:override-require": { - "type": "npm", - "name": "npm:override-require", - "data": { - "version": "1.1.1", - "packageName": "override-require", - "hash": "sha1-auIvresfhQ/7DPTCD/e4fl62UN8=" - } - }, - "npm:p-all": { - "type": "npm", - "name": "npm:p-all", - "data": { - "version": "2.1.0", - "packageName": "p-all", - "hash": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==" - } - }, - "npm:p-cancelable": { - "type": "npm", - "name": "npm:p-cancelable", - "data": { - "version": "2.0.0", - "packageName": "p-cancelable", - "hash": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==" - } - }, - "npm:p-cancelable@3.0.0": { - "type": "npm", - "name": "npm:p-cancelable@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-cancelable", - "hash": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==" - } - }, - "npm:p-defer": { - "type": "npm", - "name": "npm:p-defer", - "data": { - "version": "1.0.0", - "packageName": "p-defer", - "hash": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" - } - }, - "npm:p-event": { - "type": "npm", - "name": "npm:p-event", - "data": { - "version": "4.2.0", - "packageName": "p-event", - "hash": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==" - } - }, - "npm:p-filter": { - "type": "npm", - "name": "npm:p-filter", - "data": { - "version": "2.1.0", - "packageName": "p-filter", - "hash": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - } - }, - "npm:p-graph": { - "type": "npm", - "name": "npm:p-graph", - "data": { - "version": "1.1.1", - "packageName": "p-graph", - "hash": "sha512-KdD5JEqSEbOYK5Yl4MKbHo8cNaJs+O6TW+HacoyPVau704KukYhJMhSXuC8tF332zqgB87pyAMf2FhQ54R0ugA==" - } - }, - "npm:p-limit@1.3.0": { - "type": "npm", - "name": "npm:p-limit@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "p-limit", - "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit@4.0.0": { - "type": "npm", - "name": "npm:p-limit@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "p-limit", - "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" - } - }, - "npm:p-locate@2.0.0": { - "type": "npm", - "name": "npm:p-locate@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "p-locate", - "hash": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" - } - }, - "npm:p-locate@3.0.0": { - "type": "npm", - "name": "npm:p-locate@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-locate", - "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" - } - }, - "npm:p-locate@4.1.0": { - "type": "npm", - "name": "npm:p-locate@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-locate@6.0.0": { - "type": "npm", - "name": "npm:p-locate@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "p-locate", - "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" - } - }, - "npm:p-map-series": { - "type": "npm", - "name": "npm:p-map-series", - "data": { - "version": "2.1.0", - "packageName": "p-map-series", - "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - } - }, - "npm:p-map@2.1.0": { - "type": "npm", - "name": "npm:p-map@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "p-map", - "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - } - }, - "npm:p-map@3.0.0": { - "type": "npm", - "name": "npm:p-map@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-map", - "hash": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" - } - }, - "npm:p-map@5.5.0": { - "type": "npm", - "name": "npm:p-map@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "p-map", - "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" - } - }, - "npm:p-pipe": { - "type": "npm", - "name": "npm:p-pipe", - "data": { - "version": "3.1.0", - "packageName": "p-pipe", - "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" - } - }, - "npm:p-profiler": { - "type": "npm", - "name": "npm:p-profiler", - "data": { - "version": "0.2.1", - "packageName": "p-profiler", - "hash": "sha512-/XDER5u19OrAJ283ofIgw9hsLSoyQnjzki+tmn42vdppHOfo8PgivSSZfwaiyRAzLC2h02+Q+MKiIuuSve+7nw==" - } - }, - "npm:p-queue": { - "type": "npm", - "name": "npm:p-queue", - "data": { - "version": "6.6.2", - "packageName": "p-queue", - "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" - } - }, - "npm:p-reduce": { - "type": "npm", - "name": "npm:p-reduce", - "data": { - "version": "2.1.0", - "packageName": "p-reduce", - "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "4.6.1", - "packageName": "p-retry", - "hash": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==" - } - }, - "npm:p-timeout": { - "type": "npm", - "name": "npm:p-timeout", - "data": { - "version": "3.2.0", - "packageName": "p-timeout", - "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" - } - }, - "npm:p-try@1.0.0": { - "type": "npm", - "name": "npm:p-try@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "p-try", - "hash": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:p-waterfall": { - "type": "npm", - "name": "npm:p-waterfall", - "data": { - "version": "2.1.1", - "packageName": "p-waterfall", - "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" - } - }, - "npm:package-json": { - "type": "npm", - "name": "npm:package-json", - "data": { - "version": "4.0.1", - "packageName": "package-json", - "hash": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=" - } - }, - "npm:pacote@11.1.11": { - "type": "npm", - "name": "npm:pacote@11.1.11", - "data": { - "version": "11.1.11", - "packageName": "pacote", - "hash": "sha512-r6PHtCEhkaGv+QPx1JdE/xRdkSkZUG7dE2oloNk/CGTPGNOtaJyYqZPFeN6d6UcUrTPRvZXFo3IBzJIBopPuSA==" - } - }, - "npm:pacote": { - "type": "npm", - "name": "npm:pacote", - "data": { - "version": "15.2.0", - "packageName": "pacote", - "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" - } - }, - "npm:pako@2.1.0": { - "type": "npm", - "name": "npm:pako@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "pako", - "hash": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" - } - }, - "npm:pako": { - "type": "npm", - "name": "npm:pako", - "data": { - "version": "1.0.11", - "packageName": "pako", - "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - } - }, - "npm:parallel-transform": { - "type": "npm", - "name": "npm:parallel-transform", - "data": { - "version": "1.1.0", - "packageName": "parallel-transform", - "hash": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=" - } - }, - "npm:parallel-webpack": { - "type": "npm", - "name": "npm:parallel-webpack", - "data": { - "version": "2.6.0", - "packageName": "parallel-webpack", - "hash": "sha512-aOOLfQ40yWWRt8214F0zNWp0DWbeCs7tJaEur0/XUlYU8Yht1sMTYt+eNrbY4VkM4O/SRSme7cdZJTtIantiOw==" - } - }, - "npm:param-case": { - "type": "npm", - "name": "npm:param-case", - "data": { - "version": "2.1.1", - "packageName": "param-case", - "hash": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=" - } - }, - "npm:param-case@3.0.4": { - "type": "npm", - "name": "npm:param-case@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "param-case", - "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-asn1": { - "type": "npm", - "name": "npm:parse-asn1", - "data": { - "version": "5.1.4", - "packageName": "parse-asn1", - "hash": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==" - } - }, - "npm:parse-code-context": { - "type": "npm", - "name": "npm:parse-code-context", - "data": { - "version": "1.0.0", - "packageName": "parse-code-context", - "hash": "sha512-OZQaqKaQnR21iqhlnPfVisFjBWjhnMl5J9MgbP8xC+EwoVqbXrq78lp+9Zb3ahmLzrIX5Us/qbvBnaS3hkH6OA==" - } - }, - "npm:parse-diff": { - "type": "npm", - "name": "npm:parse-diff", - "data": { - "version": "0.7.1", - "packageName": "parse-diff", - "hash": "sha512-1j3l8IKcy4yRK2W4o9EYvJLSzpAVwz4DXqCewYyx2vEwk2gcf3DBPqc8Fj4XV3K33OYJ08A8fWwyu/ykD/HUSg==" - } - }, - "npm:parse-entities": { - "type": "npm", - "name": "npm:parse-entities", - "data": { - "version": "1.2.2", - "packageName": "parse-entities", - "hash": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==" - } - }, - "npm:parse-entities@2.0.0": { - "type": "npm", - "name": "npm:parse-entities@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "parse-entities", - "hash": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==" - } - }, - "npm:parse-filepath": { - "type": "npm", - "name": "npm:parse-filepath", - "data": { - "version": "1.0.2", - "packageName": "parse-filepath", - "hash": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=" - } - }, - "npm:parse-git-config": { - "type": "npm", - "name": "npm:parse-git-config", - "data": { - "version": "2.0.3", - "packageName": "parse-git-config", - "hash": "sha512-Js7ueMZOVSZ3tP8C7E3KZiHv6QQl7lnJ+OkbxoaFazzSa2KyEHqApfGbU3XboUgUnq4ZuUmskUpYKTNx01fm5A==" - } - }, - "npm:parse-github-url": { - "type": "npm", - "name": "npm:parse-github-url", - "data": { - "version": "1.0.2", - "packageName": "parse-github-url", - "hash": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==" - } - }, - "npm:parse-json@2.2.0": { - "type": "npm", - "name": "npm:parse-json@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "parse-json", - "hash": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=" - } - }, - "npm:parse-json@4.0.0": { - "type": "npm", - "name": "npm:parse-json@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "parse-json", - "hash": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:parse-link-header": { - "type": "npm", - "name": "npm:parse-link-header", - "data": { - "version": "2.0.0", - "packageName": "parse-link-header", - "hash": "sha512-xjU87V0VyHZybn2RrCX5TIFGxTVZE6zqqZWMPlIKiSKuWh/X5WZdt+w1Ki1nXB+8L/KtL+nZ4iq+sfI6MrhhMw==" - } - }, - "npm:parse-node-version": { - "type": "npm", - "name": "npm:parse-node-version", - "data": { - "version": "1.0.1", - "packageName": "parse-node-version", - "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" - } - }, - "npm:parse-passwd": { - "type": "npm", - "name": "npm:parse-passwd", - "data": { - "version": "1.0.0", - "packageName": "parse-passwd", - "hash": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" - } - }, - "npm:parse-path": { - "type": "npm", - "name": "npm:parse-path", - "data": { - "version": "7.0.0", - "packageName": "parse-path", - "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" - } - }, - "npm:parse-url": { - "type": "npm", - "name": "npm:parse-url", - "data": { - "version": "8.1.0", - "packageName": "parse-url", - "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" - } - }, - "npm:parse5@3.0.3": { - "type": "npm", - "name": "npm:parse5@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "parse5", - "hash": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==" - } - }, - "npm:parse5@5.1.1": { - "type": "npm", - "name": "npm:parse5@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "parse5", - "hash": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" - } - }, - "npm:parse5@6.0.1": { - "type": "npm", - "name": "npm:parse5@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "parse5", - "hash": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:pascal-case": { - "type": "npm", - "name": "npm:pascal-case", - "data": { - "version": "2.0.1", - "packageName": "pascal-case", - "hash": "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=" - } - }, - "npm:pascal-case@3.1.2": { - "type": "npm", - "name": "npm:pascal-case@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "pascal-case", - "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" - } - }, - "npm:pascalcase": { - "type": "npm", - "name": "npm:pascalcase", - "data": { - "version": "0.1.1", - "packageName": "pascalcase", - "hash": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" - } - }, - "npm:path-browserify@0.0.1": { - "type": "npm", - "name": "npm:path-browserify@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "path-browserify", - "hash": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - } - }, - "npm:path-browserify": { - "type": "npm", - "name": "npm:path-browserify", - "data": { - "version": "1.0.1", - "packageName": "path-browserify", - "hash": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" - } - }, - "npm:path-case": { - "type": "npm", - "name": "npm:path-case", - "data": { - "version": "2.1.1", - "packageName": "path-case", - "hash": "sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU=" - } - }, - "npm:path-dirname": { - "type": "npm", - "name": "npm:path-dirname", - "data": { - "version": "1.0.2", - "packageName": "path-dirname", - "hash": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" - } - }, - "npm:path-exists@2.1.0": { - "type": "npm", - "name": "npm:path-exists@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "path-exists", - "hash": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" - } - }, - "npm:path-exists@4.0.0": { - "type": "npm", - "name": "npm:path-exists@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:path-exists@5.0.0": { - "type": "npm", - "name": "npm:path-exists@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-exists", - "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" - } - }, - "npm:path-is-absolute": { - "type": "npm", - "name": "npm:path-is-absolute", - "data": { - "version": "1.0.1", - "packageName": "path-is-absolute", - "hash": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - } - }, - "npm:path-is-inside": { - "type": "npm", - "name": "npm:path-is-inside", - "data": { - "version": "1.0.2", - "packageName": "path-is-inside", - "hash": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" - } - }, - "npm:path-key@3.1.1": { - "type": "npm", - "name": "npm:path-key@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-root-regex": { - "type": "npm", - "name": "npm:path-root-regex", - "data": { - "version": "0.1.2", - "packageName": "path-root-regex", - "hash": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" - } - }, - "npm:path-root": { - "type": "npm", - "name": "npm:path-root", - "data": { - "version": "0.1.1", - "packageName": "path-root", - "hash": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.10.1", - "packageName": "path-scurry", - "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "0.1.7", - "packageName": "path-to-regexp", - "hash": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - } - }, - "npm:path-to-regexp@1.7.0": { - "type": "npm", - "name": "npm:path-to-regexp@1.7.0", - "data": { - "version": "1.7.0", - "packageName": "path-to-regexp", - "hash": "sha1-Wf3g9DW62suhA6hOnTvGTpa5k30=" - } - }, - "npm:path-type@1.1.0": { - "type": "npm", - "name": "npm:path-type@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "path-type", - "hash": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=" - } - }, - "npm:path-type@3.0.0": { - "type": "npm", - "name": "npm:path-type@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-type", - "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" - } - }, - "npm:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:pathval": { - "type": "npm", - "name": "npm:pathval", - "data": { - "version": "1.1.1", - "packageName": "pathval", - "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" - } - }, - "npm:pbkdf2": { - "type": "npm", - "name": "npm:pbkdf2", - "data": { - "version": "3.0.17", - "packageName": "pbkdf2", - "hash": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==" - } - }, - "npm:peek-readable": { - "type": "npm", - "name": "npm:peek-readable", - "data": { - "version": "5.0.0", - "packageName": "peek-readable", - "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" - } - }, - "npm:pend": { - "type": "npm", - "name": "npm:pend", - "data": { - "version": "1.2.0", - "packageName": "pend", - "hash": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" - } - }, - "npm:performance-now@0.2.0": { - "type": "npm", - "name": "npm:performance-now@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "performance-now", - "hash": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=" - } - }, - "npm:performance-now": { - "type": "npm", - "name": "npm:performance-now", - "data": { - "version": "2.1.0", - "packageName": "performance-now", - "hash": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.0.0", - "packageName": "picocolors", - "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:pify@5.0.0": { - "type": "npm", - "name": "npm:pify@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "pify", - "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } - }, - "npm:pify@3.0.0": { - "type": "npm", - "name": "npm:pify@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pify", - "hash": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:pinkie-promise": { - "type": "npm", - "name": "npm:pinkie-promise", - "data": { - "version": "2.0.1", - "packageName": "pinkie-promise", - "hash": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=" - } - }, - "npm:pinkie": { - "type": "npm", - "name": "npm:pinkie", - "data": { - "version": "2.0.4", - "packageName": "pinkie", - "hash": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - } - }, - "npm:pinpoint": { - "type": "npm", - "name": "npm:pinpoint", - "data": { - "version": "1.1.0", - "packageName": "pinpoint", - "hash": "sha1-DPd1eml38b9/ajIge3CeN3OI6HQ=" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.5", - "packageName": "pirates", - "hash": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" - } - }, - "npm:pixel-buffer-diff-folders": { - "type": "npm", - "name": "npm:pixel-buffer-diff-folders", - "data": { - "version": "1.3.0", - "packageName": "pixel-buffer-diff-folders", - "hash": "sha512-EYARjQXOAN/XKdnUiJC2JX6GdyJ1hv1MXZlGbPdB6sAKxFJJN4Cl1zZcHCVKh2eOAaWEvegTctx0VNRRrcqeog==" - } - }, - "npm:pixel-buffer-diff": { - "type": "npm", - "name": "npm:pixel-buffer-diff", - "data": { - "version": "1.3.3", - "packageName": "pixel-buffer-diff", - "hash": "sha512-Idq8Wps2P5iKgvP3DEb0aZuKqqDuqsiqY0jJmqHMYfCzq4xuNPygFg1zdZSM5k5m14u8Ww72mTY39Bu2XtT2+A==" - } - }, - "npm:pkg-dir@3.0.0": { - "type": "npm", - "name": "npm:pkg-dir@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pkg-dir", - "hash": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" - } - }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, - "npm:pkg-dir@5.0.0": { - "type": "npm", - "name": "npm:pkg-dir@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "pkg-dir", - "hash": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==" - } - }, - "npm:pkg-install": { - "type": "npm", - "name": "npm:pkg-install", - "data": { - "version": "1.0.0", - "packageName": "pkg-install", - "hash": "sha512-UGI8bfhrDb1KN01RZ7Bq08GRQc8rmVjxQ2up0g4mUHPCYDTK1FzQ0PMmLOBCHg3yaIijZ2U3Fn9ofLa4N392Ug==" - } - }, - "npm:pkg-up": { - "type": "npm", - "name": "npm:pkg-up", - "data": { - "version": "3.1.0", - "packageName": "pkg-up", - "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" - } - }, - "npm:pkg-up@4.0.0": { - "type": "npm", - "name": "npm:pkg-up@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "pkg-up", - "hash": "sha512-N4zdA4sfOe6yCv+ulPCmpnIBQ5I60xfhDr1otdBBhKte9QtEf3bhfrfkW7dTb+IQ0iEx4ZDzas0kc1o5rdWpYg==" - } - }, - "npm:playwright-core": { - "type": "npm", - "name": "npm:playwright-core", - "data": { - "version": "1.27.1", - "packageName": "playwright-core", - "hash": "sha512-9EmeXDncC2Pmp/z+teoVYlvmPWUC6ejSSYZUln7YaP89Z6lpAaiaAnqroUt/BoLo8tn7WYShcfaCh+xofZa44Q==" - } - }, - "npm:playwright": { - "type": "npm", - "name": "npm:playwright", - "data": { - "version": "1.27.1", - "packageName": "playwright", - "hash": "sha512-xXYZ7m36yTtC+oFgqH0eTgullGztKSRMb4yuwLPl8IYSmgBM88QiB+3IWb1mRIC9/NNwcgbG0RwtFlg+EAFQHQ==" - } - }, - "npm:please-upgrade-node": { - "type": "npm", - "name": "npm:please-upgrade-node", - "data": { - "version": "3.2.0", - "packageName": "please-upgrade-node", - "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" - } - }, - "npm:plop": { - "type": "npm", - "name": "npm:plop", - "data": { - "version": "2.6.0", - "packageName": "plop", - "hash": "sha512-faK3oVbWL7DYdC5ZjM+lJPrmXAPirN28QRFykPWwg6i7dv2T373JyxKlcO+XGMQcPlEYDFyKUXIuiY3Db5Ktkw==" - } - }, - "npm:plugin-error@0.1.2": { - "type": "npm", - "name": "npm:plugin-error@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "plugin-error", - "hash": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=" - } - }, - "npm:plugin-error": { - "type": "npm", - "name": "npm:plugin-error", - "data": { - "version": "1.0.1", - "packageName": "plugin-error", - "hash": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==" - } - }, - "npm:pluralize": { - "type": "npm", - "name": "npm:pluralize", - "data": { - "version": "1.2.1", - "packageName": "pluralize", - "hash": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=" - } - }, - "npm:pnp-webpack-plugin": { - "type": "npm", - "name": "npm:pnp-webpack-plugin", - "data": { - "version": "1.6.4", - "packageName": "pnp-webpack-plugin", - "hash": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==" - } - }, - "npm:polished": { - "type": "npm", - "name": "npm:polished", - "data": { - "version": "4.2.2", - "packageName": "polished", - "hash": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==" - } - }, - "npm:portfinder": { - "type": "npm", - "name": "npm:portfinder", - "data": { - "version": "1.0.28", - "packageName": "portfinder", - "hash": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==" - } - }, - "npm:posix-character-classes": { - "type": "npm", - "name": "npm:posix-character-classes", - "data": { - "version": "0.1.1", - "packageName": "posix-character-classes", - "hash": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" - } - }, - "npm:postcss-flexbugs-fixes": { - "type": "npm", - "name": "npm:postcss-flexbugs-fixes", - "data": { - "version": "4.2.1", - "packageName": "postcss-flexbugs-fixes", - "hash": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==" - } - }, - "npm:postcss-loader": { - "type": "npm", - "name": "npm:postcss-loader", - "data": { - "version": "4.1.0", - "packageName": "postcss-loader", - "hash": "sha512-vbCkP70F3Q9PIk6d47aBwjqAMI4LfkXCoyxj+7NPNuVIwfTGdzv2KVQes59/RuxMniIgsYQCFSY42P3+ykJfaw==" - } - }, - "npm:postcss-loader@4.3.0": { - "type": "npm", - "name": "npm:postcss-loader@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "postcss-loader", - "hash": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==" - } - }, - "npm:postcss-modules-extract-imports@2.0.0": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==" - } - }, - "npm:postcss-modules-extract-imports": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" - } - }, - "npm:postcss-modules-local-by-default@3.0.2": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==" - } - }, - "npm:postcss-modules-local-by-default": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==" - } - }, - "npm:postcss-modules-scope@2.2.0": { - "type": "npm", - "name": "npm:postcss-modules-scope@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "postcss-modules-scope", - "hash": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==" - } - }, - "npm:postcss-modules-scope": { - "type": "npm", - "name": "npm:postcss-modules-scope", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-scope", - "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" - } - }, - "npm:postcss-modules-values@3.0.0": { - "type": "npm", - "name": "npm:postcss-modules-values@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==" - } - }, - "npm:postcss-modules-values": { - "type": "npm", - "name": "npm:postcss-modules-values", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - } - }, - "npm:postcss-modules": { - "type": "npm", - "name": "npm:postcss-modules", - "data": { - "version": "4.1.3", - "packageName": "postcss-modules", - "hash": "sha512-dBT39hrXe4OAVYJe/2ZuIZ9BzYhOe7t+IhedYeQ2OxKwDpAGlkEN/fR0fGnrbx4BvgbMReRX4hCubYK9cE/pJQ==" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "6.0.13", - "packageName": "postcss-selector-parser", - "hash": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.3.5", - "packageName": "postcss", - "hash": "sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA==" - } - }, - "npm:postcss@7.0.36": { - "type": "npm", - "name": "npm:postcss@7.0.36", - "data": { - "version": "7.0.36", - "packageName": "postcss", - "hash": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==" - } - }, - "npm:prefix-style": { - "type": "npm", - "name": "npm:prefix-style", - "data": { - "version": "2.0.1", - "packageName": "prefix-style", - "hash": "sha1-ZrupqHDP2jCKXcIOhekSCTLJWgY=" - } - }, - "npm:prelude-ls@1.2.1": { - "type": "npm", - "name": "npm:prelude-ls@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.1.2", - "packageName": "prelude-ls", - "hash": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - } - }, - "npm:prepend-http": { - "type": "npm", - "name": "npm:prepend-http", - "data": { - "version": "1.0.4", - "packageName": "prepend-http", - "hash": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "2.8.8", - "packageName": "prettier", - "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" - } - }, - "npm:pretty-bytes": { - "type": "npm", - "name": "npm:pretty-bytes", - "data": { - "version": "5.6.0", - "packageName": "pretty-bytes", - "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - } - }, - "npm:pretty-bytes@6.1.1": { - "type": "npm", - "name": "npm:pretty-bytes@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "pretty-bytes", - "hash": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==" - } - }, - "npm:pretty-error": { - "type": "npm", - "name": "npm:pretty-error", - "data": { - "version": "2.1.1", - "packageName": "pretty-error", - "hash": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=" - } - }, - "npm:pretty-format@25.5.0": { - "type": "npm", - "name": "npm:pretty-format@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "pretty-format", - "hash": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" - } - }, - "npm:pretty-format@27.5.1": { - "type": "npm", - "name": "npm:pretty-format@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "pretty-format", - "hash": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "29.7.0", - "packageName": "pretty-format", - "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" - } - }, - "npm:pretty-hrtime": { - "type": "npm", - "name": "npm:pretty-hrtime", - "data": { - "version": "1.0.3", - "packageName": "pretty-hrtime", - "hash": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" - } - }, - "npm:prettyjson": { - "type": "npm", - "name": "npm:prettyjson", - "data": { - "version": "1.2.5", - "packageName": "prettyjson", - "hash": "sha512-rksPWtoZb2ZpT5OVgtmy0KHVM+Dca3iVwWY9ifwhcexfjebtgjg3wmrUt9PvJ59XIYBcknQeYHD8IAnVlh9lAw==" - } - }, - "npm:prismjs": { - "type": "npm", - "name": "npm:prismjs", - "data": { - "version": "1.16.0", - "packageName": "prismjs", - "hash": "sha512-OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA==" - } - }, - "npm:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "3.0.0", - "packageName": "proc-log", - "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" - } - }, - "npm:process-nextick-args": { - "type": "npm", - "name": "npm:process-nextick-args", - "data": { - "version": "2.0.1", - "packageName": "process-nextick-args", - "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - } - }, - "npm:process": { - "type": "npm", - "name": "npm:process", - "data": { - "version": "0.11.10", - "packageName": "process", - "hash": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" - } - }, - "npm:progress": { - "type": "npm", - "name": "npm:progress", - "data": { - "version": "2.0.3", - "packageName": "progress", - "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" - } - }, - "npm:promise-retry@1.1.1": { - "type": "npm", - "name": "npm:promise-retry@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "promise-retry", - "hash": "sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0=" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - } - }, - "npm:promise.allsettled": { - "type": "npm", - "name": "npm:promise.allsettled", - "data": { - "version": "1.0.1", - "packageName": "promise.allsettled", - "hash": "sha512-3ST7RS7TY3TYLOIe+OACZFvcWVe1osbgz2x07nTb446pa3t4GUZWidMDzQ4zf9jC2l6mRa1/3X81icFYbi+D/g==" - } - }, - "npm:promise.prototype.finally": { - "type": "npm", - "name": "npm:promise.prototype.finally", - "data": { - "version": "3.1.0", - "packageName": "promise.prototype.finally", - "hash": "sha512-7p/K2f6dI+dM8yjRQEGrTQs5hTQixUAdOGpMEA3+pVxpX5oHKRSKAXyLw9Q9HUWDTdwtoo39dSHGQtN90HcEwQ==" - } - }, - "npm:promise": { - "type": "npm", - "name": "npm:promise", - "data": { - "version": "8.1.0", - "packageName": "promise", - "hash": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:promzard": { - "type": "npm", - "name": "npm:promzard", - "data": { - "version": "1.0.0", - "packageName": "promzard", - "hash": "sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==" - } - }, - "npm:prop-types": { - "type": "npm", - "name": "npm:prop-types", - "data": { - "version": "15.8.1", - "packageName": "prop-types", - "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" - } - }, - "npm:property-information": { - "type": "npm", - "name": "npm:property-information", - "data": { - "version": "5.4.0", - "packageName": "property-information", - "hash": "sha512-nmMWAm/3vKFGmmOWOcdLjgq/Hlxa+hsuR/px1Lp/UGEyc5A22A6l78Shc2C0E71sPmAqglni+HrS7L7VJ7AUCA==" - } - }, - "npm:protocols": { - "type": "npm", - "name": "npm:protocols", - "data": { - "version": "2.0.1", - "packageName": "protocols", - "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:proxy-from-env@1.0.0": { - "type": "npm", - "name": "npm:proxy-from-env@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "proxy-from-env", - "hash": "sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:prr": { - "type": "npm", - "name": "npm:prr", - "data": { - "version": "1.0.1", - "packageName": "prr", - "hash": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" - } - }, - "npm:pseudomap": { - "type": "npm", - "name": "npm:pseudomap", - "data": { - "version": "1.0.2", - "packageName": "pseudomap", - "hash": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" - } - }, - "npm:psl": { - "type": "npm", - "name": "npm:psl", - "data": { - "version": "1.8.0", - "packageName": "psl", - "hash": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" - } - }, - "npm:public-encrypt": { - "type": "npm", - "name": "npm:public-encrypt", - "data": { - "version": "4.0.3", - "packageName": "public-encrypt", - "hash": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==" - } - }, - "npm:pump@2.0.1": { - "type": "npm", - "name": "npm:pump@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "pump", - "hash": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.0", - "packageName": "pump", - "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - } - }, - "npm:pumpify": { - "type": "npm", - "name": "npm:pumpify", - "data": { - "version": "1.5.1", - "packageName": "pumpify", - "hash": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==" - } - }, - "npm:punycode@1.3.2": { - "type": "npm", - "name": "npm:punycode@1.3.2", - "data": { - "version": "1.3.2", - "packageName": "punycode", - "hash": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.1.1", - "packageName": "punycode", - "hash": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - } - }, - "npm:puppeteer-core": { - "type": "npm", - "name": "npm:puppeteer-core", - "data": { - "version": "19.6.0", - "packageName": "puppeteer-core", - "hash": "sha512-GvqWdHr9eY/MFR5pXf9o0apnrTmG0hhS7/TtCPfeAvCbaUS1bsLMZWxNGvI/QbviRu4xxi6HrR7VW4x/4esq1Q==" - } - }, - "npm:puppeteer": { - "type": "npm", - "name": "npm:puppeteer", - "data": { - "version": "19.6.0", - "packageName": "puppeteer", - "hash": "sha512-KpRjn/bosTWe8xOQ/F5J1UmQ4inR77ADddn8G6MqMPp/y9Tl+7EycXgrjO0/3i/OQfHi5bsvkTKXRkm0ieo/ew==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.0.2", - "packageName": "pure-rand", - "hash": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==" - } - }, - "npm:qjobs": { - "type": "npm", - "name": "npm:qjobs", - "data": { - "version": "1.2.0", - "packageName": "qjobs", - "hash": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==" - } - }, - "npm:qs@6.9.7": { - "type": "npm", - "name": "npm:qs@6.9.7", - "data": { - "version": "6.9.7", - "packageName": "qs", - "hash": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.11.0", - "packageName": "qs", - "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" - } - }, - "npm:qs@6.5.3": { - "type": "npm", - "name": "npm:qs@6.5.3", - "data": { - "version": "6.5.3", - "packageName": "qs", - "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - } - }, - "npm:query-string": { - "type": "npm", - "name": "npm:query-string", - "data": { - "version": "6.14.1", - "packageName": "query-string", - "hash": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" - } - }, - "npm:querystring-es3": { - "type": "npm", - "name": "npm:querystring-es3", - "data": { - "version": "0.2.1", - "packageName": "querystring-es3", - "hash": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" - } - }, - "npm:querystring": { - "type": "npm", - "name": "npm:querystring", - "data": { - "version": "0.2.0", - "packageName": "querystring", - "hash": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - } - }, - "npm:querystringify": { - "type": "npm", - "name": "npm:querystringify", - "data": { - "version": "2.2.0", - "packageName": "querystringify", - "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - } - }, - "npm:quick-lru@4.0.1": { - "type": "npm", - "name": "npm:quick-lru@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "quick-lru", - "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" - } - }, - "npm:quick-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "5.1.1", - "packageName": "quick-lru", - "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - } - }, - "npm:raf": { - "type": "npm", - "name": "npm:raf", - "data": { - "version": "3.4.1", - "packageName": "raf", - "hash": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==" - } - }, - "npm:railroad-diagrams": { - "type": "npm", - "name": "npm:railroad-diagrams", - "data": { - "version": "1.0.0", - "packageName": "railroad-diagrams", - "hash": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=" - } - }, - "npm:ramda": { - "type": "npm", - "name": "npm:ramda", - "data": { - "version": "0.26.1", - "packageName": "ramda", - "hash": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==" - } - }, - "npm:ramda@0.21.0": { - "type": "npm", - "name": "npm:ramda@0.21.0", - "data": { - "version": "0.21.0", - "packageName": "ramda", - "hash": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=" - } - }, - "npm:randexp": { - "type": "npm", - "name": "npm:randexp", - "data": { - "version": "0.4.6", - "packageName": "randexp", - "hash": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==" - } - }, - "npm:random-seedable": { - "type": "npm", - "name": "npm:random-seedable", - "data": { - "version": "1.0.8", - "packageName": "random-seedable", - "hash": "sha512-f6gzvNhAnZBht1Prn0e/tpukUNhkANntFF42uIdWDPriyEATYaRpyH8A9bYaGecUB3AL+dXeYtBUggy18fe3rw==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "npm:randomfill": { - "type": "npm", - "name": "npm:randomfill", - "data": { - "version": "1.0.4", - "packageName": "randomfill", - "hash": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "2.4.3", - "packageName": "raw-body", - "hash": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==" - } - }, - "npm:raw-loader": { - "type": "npm", - "name": "npm:raw-loader", - "data": { - "version": "4.0.2", - "packageName": "raw-loader", - "hash": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==" - } - }, - "npm:rc": { - "type": "npm", - "name": "npm:rc", - "data": { - "version": "1.2.8", - "packageName": "rc", - "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - } - }, - "npm:react-ace": { - "type": "npm", - "name": "npm:react-ace", - "data": { - "version": "5.10.0", - "packageName": "react-ace", - "hash": "sha512-aEK/XZCowP8IXq91e2DYqOtGhabk1bbjt+fyeW0UBcIkzDzP/RX/MeJKeyW7wsZcwElACVwyy9nnwXBTqgky3A==" - } - }, - "npm:react-addons-shallow-compare": { - "type": "npm", - "name": "npm:react-addons-shallow-compare", - "data": { - "version": "15.6.3", - "packageName": "react-addons-shallow-compare", - "hash": "sha512-EDJbgKTtGRLhr3wiGDXK/+AEJ59yqGS+tKE6mue0aNXT6ZMR7VJbbzIiT6akotmHg1BLj46ElJSb+NBMp80XBg==" - } - }, - "npm:react-app-polyfill": { - "type": "npm", - "name": "npm:react-app-polyfill", - "data": { - "version": "2.0.0", - "packageName": "react-app-polyfill", - "hash": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==" - } - }, - "npm:react-codesandboxer": { - "type": "npm", - "name": "npm:react-codesandboxer", - "data": { - "version": "3.1.5", - "packageName": "react-codesandboxer", - "hash": "sha512-gao6ydAfVI9DlmxvXJb1poqWDZt4jCSi2DWvfUCLUBmJAxH8+DkoGtjrO3VJDjdwcCFvumWb+ztg3WxsvrsWJw==" - } - }, - "npm:react-colorful": { - "type": "npm", - "name": "npm:react-colorful", - "data": { - "version": "5.3.0", - "packageName": "react-colorful", - "hash": "sha512-zWE5E88zmjPXFhv6mGnRZqKin9s5vip1O3IIGynY9EhZxN8MATUxZkT3e/9OwTEm4DjQBXc6PFWP6AetY+Px+A==" - } - }, - "npm:react-custom-scrollbars": { - "type": "npm", - "name": "npm:react-custom-scrollbars", - "data": { - "version": "4.2.1", - "packageName": "react-custom-scrollbars", - "hash": "sha1-gw/ZUCkn6X6KeMIIaBOJmyqLZts=" - } - }, - "npm:react-docgen-typescript": { - "type": "npm", - "name": "npm:react-docgen-typescript", - "data": { - "version": "2.2.2", - "packageName": "react-docgen-typescript", - "hash": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==" - } - }, - "npm:react-docgen": { - "type": "npm", - "name": "npm:react-docgen", - "data": { - "version": "5.1.0", - "packageName": "react-docgen", - "hash": "sha512-buAVMVqDEtvC7+VRDRlA9udS9cO9jFfb7yxRvKNYR9MXS0MJwaIe7OjSEydNzH9oH7LND3whDE+koFDUBtF3zA==" - } - }, - "npm:react-document-title": { - "type": "npm", - "name": "npm:react-document-title", - "data": { - "version": "2.0.3", - "packageName": "react-document-title", - "hash": "sha1-u/kioNcUEvyUgkXkKDskEt9w8rk=" - } - }, - "npm:react-dom@16.14.0": { - "type": "npm", - "name": "npm:react-dom@16.14.0", - "data": { - "version": "16.14.0", - "packageName": "react-dom", - "hash": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==" - } - }, - "npm:react-dom": { - "type": "npm", - "name": "npm:react-dom", - "data": { - "version": "17.0.2", - "packageName": "react-dom", - "hash": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==" - } - }, - "npm:react-dom@18.2.0": { - "type": "npm", - "name": "npm:react-dom@18.2.0", - "data": { - "version": "18.2.0", - "packageName": "react-dom", - "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" - } - }, - "npm:react-element-to-jsx-string": { - "type": "npm", - "name": "npm:react-element-to-jsx-string", - "data": { - "version": "14.3.4", - "packageName": "react-element-to-jsx-string", - "hash": "sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==" - } - }, - "npm:react-error-boundary": { - "type": "npm", - "name": "npm:react-error-boundary", - "data": { - "version": "3.1.0", - "packageName": "react-error-boundary", - "hash": "sha512-lmPrdi5SLRJR+AeJkqdkGlW/CRkAUvZnETahK58J4xb5wpbfDngasEGu+w0T1iXEhVrYBJZeW+c4V1hILCnMWQ==" - } - }, - "npm:react-fast-compare": { - "type": "npm", - "name": "npm:react-fast-compare", - "data": { - "version": "2.0.4", - "packageName": "react-fast-compare", - "hash": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" - } - }, - "npm:react-fela": { - "type": "npm", - "name": "npm:react-fela", - "data": { - "version": "10.6.1", - "packageName": "react-fela", - "hash": "sha512-HEtJXkvmwvvPJ4lbYrbttudgmacXnWSU9H3Syx4KiyiUBq9y/f0bn1YW/BLh4jQVVxAsbI6s6hSNornX/sdEzw==" - } - }, - "npm:react-frame-component": { - "type": "npm", - "name": "npm:react-frame-component", - "data": { - "version": "4.1.1", - "packageName": "react-frame-component", - "hash": "sha512-NfJp90AvYA1R6+uSYafQ+n+UM2HjHqi4WGHeprVXa6quU9d8o6ZFRzQ36uemY82dlkZFzf2jigFx6E4UzNFajA==" - } - }, - "npm:react-hook-form": { - "type": "npm", - "name": "npm:react-hook-form", - "data": { - "version": "5.7.2", - "packageName": "react-hook-form", - "hash": "sha512-bJvY348vayIvEUmSK7Fvea/NgqbT2racA2IbnJz/aPlQ3GBtaTeDITH6rtCa6y++obZzG6E3Q8VuoXPir7QYUg==" - } - }, - "npm:react-hooks-testing-library": { - "type": "npm", - "name": "npm:react-hooks-testing-library", - "data": { - "version": "0.5.1", - "packageName": "react-hooks-testing-library", - "hash": "sha512-wSwnVPceof2AOpdvZpiC3EX4gZiVVvY78foz0/44yYGXjC2AeaWvNAjyRH1UjlPqCfHTaEANvXCq+m9YCbWBfQ==" - } - }, - "npm:react-hot-loader": { - "type": "npm", - "name": "npm:react-hot-loader", - "data": { - "version": "4.13.0", - "packageName": "react-hot-loader", - "hash": "sha512-JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA==" - } - }, - "npm:react-input-autosize": { - "type": "npm", - "name": "npm:react-input-autosize", - "data": { - "version": "3.0.0", - "packageName": "react-input-autosize", - "hash": "sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==" - } - }, - "npm:react-inspector": { - "type": "npm", - "name": "npm:react-inspector", - "data": { - "version": "5.1.1", - "packageName": "react-inspector", - "hash": "sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "17.0.2", - "packageName": "react-is", - "hash": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - } - }, - "npm:react-is@16.13.1": { - "type": "npm", - "name": "npm:react-is@16.13.1", - "data": { - "version": "16.13.1", - "packageName": "react-is", - "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } - }, - "npm:react-is@18.2.0": { - "type": "npm", - "name": "npm:react-is@18.2.0", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, - "npm:react-lifecycles-compat": { - "type": "npm", - "name": "npm:react-lifecycles-compat", - "data": { - "version": "3.0.4", - "packageName": "react-lifecycles-compat", - "hash": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - } - }, - "npm:react-markdown": { - "type": "npm", - "name": "npm:react-markdown", - "data": { - "version": "4.3.1", - "packageName": "react-markdown", - "hash": "sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==" - } - }, - "npm:react-motion": { - "type": "npm", - "name": "npm:react-motion", - "data": { - "version": "0.5.2", - "packageName": "react-motion", - "hash": "sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==" - } - }, - "npm:react-node-resolver": { - "type": "npm", - "name": "npm:react-node-resolver", - "data": { - "version": "1.0.1", - "packageName": "react-node-resolver", - "hash": "sha1-F5inKcDiGL8vDo3fecVQ1K9h2Do=" - } - }, - "npm:react-refresh": { - "type": "npm", - "name": "npm:react-refresh", - "data": { - "version": "0.11.0", - "packageName": "react-refresh", - "hash": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" - } - }, - "npm:react-router-dom": { - "type": "npm", - "name": "npm:react-router-dom", - "data": { - "version": "5.2.0", - "packageName": "react-router-dom", - "hash": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==" - } - }, - "npm:react-router": { - "type": "npm", - "name": "npm:react-router", - "data": { - "version": "5.2.0", - "packageName": "react-router", - "hash": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==" - } - }, - "npm:react-select": { - "type": "npm", - "name": "npm:react-select", - "data": { - "version": "3.2.0", - "packageName": "react-select", - "hash": "sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==" - } - }, - "npm:react-shadow": { - "type": "npm", - "name": "npm:react-shadow", - "data": { - "version": "20.3.0", - "packageName": "react-shadow", - "hash": "sha512-oWi4W+FE6Puz+7+psL5l90wD9tu+OI1x+Uf1C2Y+O9J1AZzfaWVBbAQjvrDk/Sn8Nh0owCGSD0eemcr1ErtGzw==" - } - }, - "npm:react-shallow-renderer": { - "type": "npm", - "name": "npm:react-shallow-renderer", - "data": { - "version": "16.15.0", - "packageName": "react-shallow-renderer", - "hash": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==" - } - }, - "npm:react-side-effect": { - "type": "npm", - "name": "npm:react-side-effect", - "data": { - "version": "1.2.0", - "packageName": "react-side-effect", - "hash": "sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==" - } - }, - "npm:react-sizeme": { - "type": "npm", - "name": "npm:react-sizeme", - "data": { - "version": "3.0.1", - "packageName": "react-sizeme", - "hash": "sha512-9Hf1NLgSbny1bha77l9HwvwwxQUJxFUqi44Ih+y3evA+PezBpGdCGlnvye6avss2cIgs9PgdYgMnfuzJWn/RUw==" - } - }, - "npm:react-source-render": { - "type": "npm", - "name": "npm:react-source-render", - "data": { - "version": "4.0.0-1", - "packageName": "react-source-render", - "hash": "sha512-JSL6Xs2mcHJ3jtLoe/K9aualo3XJSQW5nOqLthHkjTCrEvfb7jaSfpkjDVFGvgNCVOu7keClX7I/ZQaTP1gnVw==" - } - }, - "npm:react-syntax-highlighter": { - "type": "npm", - "name": "npm:react-syntax-highlighter", - "data": { - "version": "10.3.5", - "packageName": "react-syntax-highlighter", - "hash": "sha512-KR4YE7Q91bHEhvIxuvs/J3tJWfxTyBAAMS4fcMOR9h0C6SoCZIr1OUkVamHOqHMDEck4tdS9gp0D/vlAyPLftA==" - } - }, - "npm:react-table": { - "type": "npm", - "name": "npm:react-table", - "data": { - "version": "7.1.0", - "packageName": "react-table", - "hash": "sha512-AZpgW0Xpo6Z7jxXZIBovzCGoYVkuBwATsJh7X4+JXwq9JtDaorOmxWC9gKx5Hui4d+n+I99enyyJS+LRtKydxA==" - } - }, - "npm:react-test-renderer": { - "type": "npm", - "name": "npm:react-test-renderer", - "data": { - "version": "17.0.2", - "packageName": "react-test-renderer", - "hash": "sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==" - } - }, - "npm:react-textarea-autosize": { - "type": "npm", - "name": "npm:react-textarea-autosize", - "data": { - "version": "7.0.4", - "packageName": "react-textarea-autosize", - "hash": "sha512-1cC8pFSrIVH92aE+UKxGQ2Gqq43qdIcMscJKScEFeBNemn6gHa+NwKqdXkHxxg5H6uuvW+cPpJPTes6zh90M+A==" - } - }, - "npm:react-transition-group": { - "type": "npm", - "name": "npm:react-transition-group", - "data": { - "version": "4.4.2", - "packageName": "react-transition-group", - "hash": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==" - } - }, - "npm:react-virtualized": { - "type": "npm", - "name": "npm:react-virtualized", - "data": { - "version": "9.21.2", - "packageName": "react-virtualized", - "hash": "sha512-oX7I7KYiUM7lVXQzmhtF4Xg/4UA5duSA+/ZcAvdWlTLFCoFYq1SbauJT5gZK9cZS/wdYR6TPGpX/dqzvTqQeBA==" - } - }, - "npm:react-vis": { - "type": "npm", - "name": "npm:react-vis", - "data": { - "version": "1.11.7", - "packageName": "react-vis", - "hash": "sha512-vJqS12l/6RHeSq8DVl4PzX0j8iPgbT8H8PtgTRsimKsBNcPjPseO4RICw1FUPrwj8MPrrna34LBtzyC4ATd5Ow==" - } - }, - "npm:react-window": { - "type": "npm", - "name": "npm:react-window", - "data": { - "version": "1.8.6", - "packageName": "react-window", - "hash": "sha512-8VwEEYyjz6DCnGBsd+MgkD0KJ2/OXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg==" - } - }, - "npm:react@16.14.0": { - "type": "npm", - "name": "npm:react@16.14.0", - "data": { - "version": "16.14.0", - "packageName": "react", - "hash": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==" - } - }, - "npm:react": { - "type": "npm", - "name": "npm:react", - "data": { - "version": "17.0.2", - "packageName": "react", - "hash": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==" - } - }, - "npm:react@18.2.0": { - "type": "npm", - "name": "npm:react@18.2.0", - "data": { - "version": "18.2.0", - "packageName": "react", - "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" - } - }, - "npm:read-cmd-shim": { - "type": "npm", - "name": "npm:read-cmd-shim", - "data": { - "version": "4.0.0", - "packageName": "read-cmd-shim", - "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" - } - }, - "npm:read-package-json-fast": { - "type": "npm", - "name": "npm:read-package-json-fast", - "data": { - "version": "1.1.3", - "packageName": "read-package-json-fast", - "hash": "sha512-MmFqiyfCXV2Dmm4jH24DEGhxdkUDFivJQj4oPZQPOKywxR7HWBE6WnMWDAapfFHi3wm1b+mhR+XHlUH0CL8axg==" - } - }, - "npm:read-package-json-fast@3.0.2": { - "type": "npm", - "name": "npm:read-package-json-fast@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "read-package-json-fast", - "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" - } - }, - "npm:read-package-json": { - "type": "npm", - "name": "npm:read-package-json", - "data": { - "version": "6.0.4", - "packageName": "read-package-json", - "hash": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==" - } - }, - "npm:read-pkg-up": { - "type": "npm", - "name": "npm:read-pkg-up", - "data": { - "version": "7.0.1", - "packageName": "read-pkg-up", - "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" - } - }, - "npm:read-pkg-up@1.0.1": { - "type": "npm", - "name": "npm:read-pkg-up@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "read-pkg-up", - "hash": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=" - } - }, - "npm:read-pkg-up@3.0.0": { - "type": "npm", - "name": "npm:read-pkg-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "read-pkg-up", - "hash": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=" - } - }, - "npm:read-pkg@1.1.0": { - "type": "npm", - "name": "npm:read-pkg@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "read-pkg", - "hash": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=" - } - }, - "npm:read-pkg": { - "type": "npm", - "name": "npm:read-pkg", - "data": { - "version": "3.0.0", - "packageName": "read-pkg", - "hash": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=" - } - }, - "npm:read-pkg@5.2.0": { - "type": "npm", - "name": "npm:read-pkg@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "read-pkg", - "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" - } - }, - "npm:read-yaml-file": { - "type": "npm", - "name": "npm:read-yaml-file", - "data": { - "version": "2.1.0", - "packageName": "read-yaml-file", - "hash": "sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==" - } - }, - "npm:read": { - "type": "npm", - "name": "npm:read", - "data": { - "version": "2.1.0", - "packageName": "read", - "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "2.3.7", - "packageName": "readable-stream", - "hash": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" - } - }, - "npm:readable-stream@3.6.0": { - "type": "npm", - "name": "npm:readable-stream@3.6.0", - "data": { - "version": "3.6.0", - "packageName": "readable-stream", - "hash": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" - } - }, - "npm:readable-stream@1.0.34": { - "type": "npm", - "name": "npm:readable-stream@1.0.34", - "data": { - "version": "1.0.34", - "packageName": "readable-stream", - "hash": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=" - } - }, - "npm:readable-stream@1.1.14": { - "type": "npm", - "name": "npm:readable-stream@1.1.14", - "data": { - "version": "1.1.14", - "packageName": "readable-stream", - "hash": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=" - } - }, - "npm:readable-web-to-node-stream": { - "type": "npm", - "name": "npm:readable-web-to-node-stream", - "data": { - "version": "3.0.2", - "packageName": "readable-web-to-node-stream", - "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" - } - }, - "npm:readdirp@2.2.1": { - "type": "npm", - "name": "npm:readdirp@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "readdirp", - "hash": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==" - } - }, - "npm:readdirp@3.2.0": { - "type": "npm", - "name": "npm:readdirp@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "readdirp", - "hash": "sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "3.6.0", - "packageName": "readdirp", - "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - } - }, - "npm:readline-sync": { - "type": "npm", - "name": "npm:readline-sync", - "data": { - "version": "1.4.10", - "packageName": "readline-sync", - "hash": "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==" - } - }, - "npm:rechoir": { - "type": "npm", - "name": "npm:rechoir", - "data": { - "version": "0.6.2", - "packageName": "rechoir", - "hash": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" - } - }, - "npm:rechoir@0.7.0": { - "type": "npm", - "name": "npm:rechoir@0.7.0", - "data": { - "version": "0.7.0", - "packageName": "rechoir", - "hash": "sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q==" - } - }, - "npm:redent@1.0.0": { - "type": "npm", - "name": "npm:redent@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "redent", - "hash": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=" - } - }, - "npm:redent": { - "type": "npm", - "name": "npm:redent", - "data": { - "version": "3.0.0", - "packageName": "redent", - "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" - } - }, - "npm:redeyed": { - "type": "npm", - "name": "npm:redeyed", - "data": { - "version": "2.1.1", - "packageName": "redeyed", - "hash": "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=" - } - }, - "npm:reduce-flatten": { - "type": "npm", - "name": "npm:reduce-flatten", - "data": { - "version": "2.0.0", - "packageName": "reduce-flatten", - "hash": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==" - } - }, - "npm:refractor": { - "type": "npm", - "name": "npm:refractor", - "data": { - "version": "2.9.0", - "packageName": "refractor", - "hash": "sha512-lCnCYvXpqd8hC7ksuvo516rz5q4NwzBbq0X5qjH5pxRfcQKiQxKZ8JctrSQmrR/7pcV2TRrs9TT+Whmq/wtluQ==" - } - }, - "npm:regenerate-unicode-properties": { - "type": "npm", - "name": "npm:regenerate-unicode-properties", - "data": { - "version": "10.1.0", - "packageName": "regenerate-unicode-properties", - "hash": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" - } - }, - "npm:regenerate": { - "type": "npm", - "name": "npm:regenerate", - "data": { - "version": "1.4.2", - "packageName": "regenerate", - "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - } - }, - "npm:regenerator-runtime@0.11.1": { - "type": "npm", - "name": "npm:regenerator-runtime@0.11.1", - "data": { - "version": "0.11.1", - "packageName": "regenerator-runtime", - "hash": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.13.11", - "packageName": "regenerator-runtime", - "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - } - }, - "npm:regenerator-runtime@0.14.0": { - "type": "npm", - "name": "npm:regenerator-runtime@0.14.0", - "data": { - "version": "0.14.0", - "packageName": "regenerator-runtime", - "hash": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - } - }, - "npm:regenerator-transform": { - "type": "npm", - "name": "npm:regenerator-transform", - "data": { - "version": "0.15.2", - "packageName": "regenerator-transform", - "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" - } - }, - "npm:regex-not": { - "type": "npm", - "name": "npm:regex-not", - "data": { - "version": "1.0.2", - "packageName": "regex-not", - "hash": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.3.1", - "packageName": "regexp.prototype.flags", - "hash": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==" - } - }, - "npm:regexpp": { - "type": "npm", - "name": "npm:regexpp", - "data": { - "version": "3.1.0", - "packageName": "regexpp", - "hash": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" - } - }, - "npm:regexpu-core": { - "type": "npm", - "name": "npm:regexpu-core", - "data": { - "version": "5.3.2", - "packageName": "regexpu-core", - "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" - } - }, - "npm:registry-auth-token": { - "type": "npm", - "name": "npm:registry-auth-token", - "data": { - "version": "3.4.0", - "packageName": "registry-auth-token", - "hash": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==" - } - }, - "npm:registry-url": { - "type": "npm", - "name": "npm:registry-url", - "data": { - "version": "3.1.0", - "packageName": "registry-url", - "hash": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=" - } - }, - "npm:regjsparser": { - "type": "npm", - "name": "npm:regjsparser", - "data": { - "version": "0.9.1", - "packageName": "regjsparser", - "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" - } - }, - "npm:relateurl": { - "type": "npm", - "name": "npm:relateurl", - "data": { - "version": "0.2.7", - "packageName": "relateurl", - "hash": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" - } - }, - "npm:remark-external-links": { - "type": "npm", - "name": "npm:remark-external-links", - "data": { - "version": "8.0.0", - "packageName": "remark-external-links", - "hash": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==" - } - }, - "npm:remark-footnotes": { - "type": "npm", - "name": "npm:remark-footnotes", - "data": { - "version": "2.0.0", - "packageName": "remark-footnotes", - "hash": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" - } - }, - "npm:remark-frontmatter": { - "type": "npm", - "name": "npm:remark-frontmatter", - "data": { - "version": "1.3.2", - "packageName": "remark-frontmatter", - "hash": "sha512-2eayxITZ8rezsXdgcXnYB3iLivohm2V/ZT4Ne8uhua6A4pk6GdLE2ZzJnbnINtD1HRLaTdB7RwF9sgUbMptJZA==" - } - }, - "npm:remark-mdx": { - "type": "npm", - "name": "npm:remark-mdx", - "data": { - "version": "1.6.22", - "packageName": "remark-mdx", - "hash": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==" - } - }, - "npm:remark-parse@8.0.3": { - "type": "npm", - "name": "npm:remark-parse@8.0.3", - "data": { - "version": "8.0.3", - "packageName": "remark-parse", - "hash": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==" - } - }, - "npm:remark-parse": { - "type": "npm", - "name": "npm:remark-parse", - "data": { - "version": "5.0.0", - "packageName": "remark-parse", - "hash": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==" - } - }, - "npm:remark-slug": { - "type": "npm", - "name": "npm:remark-slug", - "data": { - "version": "6.0.0", - "packageName": "remark-slug", - "hash": "sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==" - } - }, - "npm:remark-squeeze-paragraphs": { - "type": "npm", - "name": "npm:remark-squeeze-paragraphs", - "data": { - "version": "4.0.0", - "packageName": "remark-squeeze-paragraphs", - "hash": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==" - } - }, - "npm:remove-bom-buffer": { - "type": "npm", - "name": "npm:remove-bom-buffer", - "data": { - "version": "3.0.0", - "packageName": "remove-bom-buffer", - "hash": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==" - } - }, - "npm:remove-bom-stream": { - "type": "npm", - "name": "npm:remove-bom-stream", - "data": { - "version": "1.2.0", - "packageName": "remove-bom-stream", - "hash": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=" - } - }, - "npm:remove-trailing-separator": { - "type": "npm", - "name": "npm:remove-trailing-separator", - "data": { - "version": "1.1.0", - "packageName": "remove-trailing-separator", - "hash": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" - } - }, - "npm:renderkid": { - "type": "npm", - "name": "npm:renderkid", - "data": { - "version": "2.0.7", - "packageName": "renderkid", - "hash": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==" - } - }, - "npm:repeat-element": { - "type": "npm", - "name": "npm:repeat-element", - "data": { - "version": "1.1.3", - "packageName": "repeat-element", - "hash": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" - } - }, - "npm:repeat-string": { - "type": "npm", - "name": "npm:repeat-string", - "data": { - "version": "1.6.1", - "packageName": "repeat-string", - "hash": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - } - }, - "npm:repeating": { - "type": "npm", - "name": "npm:repeating", - "data": { - "version": "2.0.1", - "packageName": "repeating", - "hash": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=" - } - }, - "npm:replace-ext@0.0.1": { - "type": "npm", - "name": "npm:replace-ext@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "replace-ext", - "hash": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" - } - }, - "npm:replace-ext": { - "type": "npm", - "name": "npm:replace-ext", - "data": { - "version": "1.0.0", - "packageName": "replace-ext", - "hash": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=" - } - }, - "npm:replace-homedir": { - "type": "npm", - "name": "npm:replace-homedir", - "data": { - "version": "1.0.0", - "packageName": "replace-homedir", - "hash": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=" - } - }, - "npm:replace-in-file": { - "type": "npm", - "name": "npm:replace-in-file", - "data": { - "version": "6.1.0", - "packageName": "replace-in-file", - "hash": "sha512-URzjyF3nucvejuY13HFd7O+Q6tFJRLKGHLYVvSh+LiZj3gFXzSYGnIkQflnJJulCAI2/RTZaZkpOtdVdW0EhQA==" - } - }, - "npm:repromise": { - "type": "npm", - "name": "npm:repromise", - "data": { - "version": "4.0.0", - "packageName": "repromise", - "hash": "sha512-ad12PiDwzGOVD4Oc7j9cJPJuX700mquqsMWyoJ5HHysuIMh7jrF8c7lpCC6zRiKAe+ufOrD285KGPtExgAokTw==" - } - }, - "npm:request-progress": { - "type": "npm", - "name": "npm:request-progress", - "data": { - "version": "3.0.0", - "packageName": "request-progress", - "hash": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=" - } - }, - "npm:request-promise-core": { - "type": "npm", - "name": "npm:request-promise-core", - "data": { - "version": "1.1.4", - "packageName": "request-promise-core", - "hash": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==" - } - }, - "npm:request-promise-native": { - "type": "npm", - "name": "npm:request-promise-native", - "data": { - "version": "1.0.9", - "packageName": "request-promise-native", - "hash": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==" - } - }, - "npm:request": { - "type": "npm", - "name": "npm:request", - "data": { - "version": "2.88.2", - "packageName": "request", - "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:require-main-filename@1.0.1": { - "type": "npm", - "name": "npm:require-main-filename@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "require-main-filename", - "hash": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - } - }, - "npm:require-main-filename": { - "type": "npm", - "name": "npm:require-main-filename", - "data": { - "version": "2.0.0", - "packageName": "require-main-filename", - "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - } - }, - "npm:require-package-name": { - "type": "npm", - "name": "npm:require-package-name", - "data": { - "version": "2.0.1", - "packageName": "require-package-name", - "hash": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" - } - }, - "npm:reselect": { - "type": "npm", - "name": "npm:reselect", - "data": { - "version": "4.1.7", - "packageName": "reselect", - "hash": "sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==" - } - }, - "npm:resolve-alpn": { - "type": "npm", - "name": "npm:resolve-alpn", - "data": { - "version": "1.2.1", - "packageName": "resolve-alpn", - "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - } - }, - "npm:resolve-cwd": { - "type": "npm", - "name": "npm:resolve-cwd", - "data": { - "version": "3.0.0", - "packageName": "resolve-cwd", - "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" - } - }, - "npm:resolve-dir": { - "type": "npm", - "name": "npm:resolve-dir", - "data": { - "version": "1.0.1", - "packageName": "resolve-dir", - "hash": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:resolve-from@3.0.0": { - "type": "npm", - "name": "npm:resolve-from@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "resolve-from", - "hash": "sha1-six699nWiBvItuZTM17rywoYh0g=" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-options": { - "type": "npm", - "name": "npm:resolve-options", - "data": { - "version": "1.1.0", - "packageName": "resolve-options", - "hash": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=" - } - }, - "npm:resolve-path": { - "type": "npm", - "name": "npm:resolve-path", - "data": { - "version": "1.4.0", - "packageName": "resolve-path", - "hash": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==" - } - }, - "npm:resolve-pathname": { - "type": "npm", - "name": "npm:resolve-pathname", - "data": { - "version": "3.0.0", - "packageName": "resolve-pathname", - "hash": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" - } - }, - "npm:resolve-pkg-maps": { - "type": "npm", - "name": "npm:resolve-pkg-maps", - "data": { - "version": "1.0.0", - "packageName": "resolve-pkg-maps", - "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" - } - }, - "npm:resolve-url": { - "type": "npm", - "name": "npm:resolve-url", - "data": { - "version": "0.2.1", - "packageName": "resolve-url", - "hash": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "1.1.0", - "packageName": "resolve.exports", - "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" - } - }, - "npm:resolve.exports@2.0.2": { - "type": "npm", - "name": "npm:resolve.exports@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve@1.1.7": { - "type": "npm", - "name": "npm:resolve@1.1.7", - "data": { - "version": "1.1.7", - "packageName": "resolve", - "hash": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" - } - }, - "npm:resolve@1.15.1": { - "type": "npm", - "name": "npm:resolve@1.15.1", - "data": { - "version": "1.15.1", - "packageName": "resolve", - "hash": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.0", - "packageName": "resolve", - "hash": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==" - } - }, - "npm:resolve@2.0.0-next.3": { - "type": "npm", - "name": "npm:resolve@2.0.0-next.3", - "data": { - "version": "2.0.0-next.3", - "packageName": "resolve", - "hash": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==" - } - }, - "npm:resolve@1.17.0": { - "type": "npm", - "name": "npm:resolve@1.17.0", - "data": { - "version": "1.17.0", - "packageName": "resolve", - "hash": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==" - } - }, - "npm:resolve@1.19.0": { - "type": "npm", - "name": "npm:resolve@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "resolve", - "hash": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==" - } - }, - "npm:responselike": { - "type": "npm", - "name": "npm:responselike", - "data": { - "version": "2.0.0", - "packageName": "responselike", - "hash": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==" - } - }, - "npm:restore-cursor@2.0.0": { - "type": "npm", - "name": "npm:restore-cursor@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "restore-cursor", - "hash": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:ret": { - "type": "npm", - "name": "npm:ret", - "data": { - "version": "0.1.15", - "packageName": "ret", - "hash": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" - } - }, - "npm:retry@0.10.1": { - "type": "npm", - "name": "npm:retry@0.10.1", - "data": { - "version": "0.10.1", - "packageName": "retry", - "hash": "sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=" - } - }, - "npm:retry@0.13.1": { - "type": "npm", - "name": "npm:retry@0.13.1", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.0.4", - "packageName": "reusify", - "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.3.0", - "packageName": "rfdc", - "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" - } - }, - "npm:riceburn": { - "type": "npm", - "name": "npm:riceburn", - "data": { - "version": "1.3.1", - "packageName": "riceburn", - "hash": "sha512-pjt5ION8z9sGIR4UHLO59Ow7ecgxJoraY+kxACzzap5bgDTSzJ8SSEOE2yxV335yfgrOkcck9JsxM2CdoiGq5A==" - } - }, - "npm:rimraf@2.7.1": { - "type": "npm", - "name": "npm:rimraf@2.7.1", - "data": { - "version": "2.7.1", - "packageName": "rimraf", - "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@4.4.1": { - "type": "npm", - "name": "npm:rimraf@4.4.1", - "data": { - "version": "4.4.1", - "packageName": "rimraf", - "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" - } - }, - "npm:ripemd160": { - "type": "npm", - "name": "npm:ripemd160", - "data": { - "version": "2.0.2", - "packageName": "ripemd160", - "hash": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==" - } - }, - "npm:rollup-plugin-commonjs": { - "type": "npm", - "name": "npm:rollup-plugin-commonjs", - "data": { - "version": "10.1.0", - "packageName": "rollup-plugin-commonjs", - "hash": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==" - } - }, - "npm:rollup-plugin-filesize": { - "type": "npm", - "name": "npm:rollup-plugin-filesize", - "data": { - "version": "8.0.2", - "packageName": "rollup-plugin-filesize", - "hash": "sha512-PcOYHPvpRh2sYWLX/1XbaLcRZ//rqwihl9iBiJWWo39XiyQlWv5623XWoXM9PjYcxP1q+7L7hjmlqzNx4kptlw==" - } - }, - "npm:rollup-plugin-node-resolve": { - "type": "npm", - "name": "npm:rollup-plugin-node-resolve", - "data": { - "version": "5.2.0", - "packageName": "rollup-plugin-node-resolve", - "hash": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==" - } - }, - "npm:rollup-plugin-terser": { - "type": "npm", - "name": "npm:rollup-plugin-terser", - "data": { - "version": "5.3.1", - "packageName": "rollup-plugin-terser", - "hash": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==" - } - }, - "npm:rollup-plugin-transform-tagged-template": { - "type": "npm", - "name": "npm:rollup-plugin-transform-tagged-template", - "data": { - "version": "0.0.3", - "packageName": "rollup-plugin-transform-tagged-template", - "hash": "sha512-IY8JwVTZxwOqQU1B1lqBAfvj0PXgy60pe480mgfs5CCbwytBMQCSrG1eHnD1o8+JCl+5gHdKK5wNXnFngCHxkw==" - } - }, - "npm:rollup-plugin-typescript2": { - "type": "npm", - "name": "npm:rollup-plugin-typescript2", - "data": { - "version": "0.27.1", - "packageName": "rollup-plugin-typescript2", - "hash": "sha512-RJl77Bbj1EunAQDC3dK/O2HWuSUX3oJbRGzyLoS5o9W4Hs1Nix3Gavqj1Lzs5Y6Ff4H2xXfmZ1WWUQCYocSbzQ==" - } - }, - "npm:rollup-pluginutils": { - "type": "npm", - "name": "npm:rollup-pluginutils", - "data": { - "version": "2.8.2", - "packageName": "rollup-pluginutils", - "hash": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==" - } - }, - "npm:rollup": { - "type": "npm", - "name": "npm:rollup", - "data": { - "version": "2.45.2", - "packageName": "rollup", - "hash": "sha512-kRRU7wXzFHUzBIv0GfoFFIN3m9oteY4uAsKllIpQDId5cfnkWF2J130l+27dzDju0E6MScKiV0ZM5Bw8m4blYQ==" - } - }, - "npm:rst-selector-parser": { - "type": "npm", - "name": "npm:rst-selector-parser", - "data": { - "version": "2.2.3", - "packageName": "rst-selector-parser", - "hash": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=" - } - }, - "npm:rsvp": { - "type": "npm", - "name": "npm:rsvp", - "data": { - "version": "4.8.5", - "packageName": "rsvp", - "hash": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" - } - }, - "npm:rtl-css-js": { - "type": "npm", - "name": "npm:rtl-css-js", - "data": { - "version": "1.16.1", - "packageName": "rtl-css-js", - "hash": "sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==" - } - }, - "npm:run-async": { - "type": "npm", - "name": "npm:run-async", - "data": { - "version": "2.4.1", - "packageName": "run-async", - "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" - } - }, - "npm:run-parallel-limit": { - "type": "npm", - "name": "npm:run-parallel-limit", - "data": { - "version": "1.0.6", - "packageName": "run-parallel-limit", - "hash": "sha512-yFFs4Q2kECi5mWXyyZj3UlAZ5OFq5E07opABC+EmhZdjEkrxXaUwFqOaaNF4tbayMnBxrsbujpeCYTVjGufZGQ==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.1.9", - "packageName": "run-parallel", - "hash": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" - } - }, - "npm:run-queue": { - "type": "npm", - "name": "npm:run-queue", - "data": { - "version": "1.0.3", - "packageName": "run-queue", - "hash": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=" - } - }, - "npm:rw": { - "type": "npm", - "name": "npm:rw", - "data": { - "version": "1.3.3", - "packageName": "rw", - "hash": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" - } - }, - "npm:rxjs": { - "type": "npm", - "name": "npm:rxjs", - "data": { - "version": "7.8.1", - "packageName": "rxjs", - "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" - } - }, - "npm:rxjs@6.6.7": { - "type": "npm", - "name": "npm:rxjs@6.6.7", - "data": { - "version": "6.6.7", - "packageName": "rxjs", - "hash": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==" - } - }, - "npm:safe-buffer@5.1.1": { - "type": "npm", - "name": "npm:safe-buffer@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "safe-buffer", - "hash": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" - } - }, - "npm:safe-buffer@5.1.2": { - "type": "npm", - "name": "npm:safe-buffer@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:safe-regex": { - "type": "npm", - "name": "npm:safe-regex", - "data": { - "version": "1.1.0", - "packageName": "safe-regex", - "hash": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:sane": { - "type": "npm", - "name": "npm:sane", - "data": { - "version": "4.1.0", - "packageName": "sane", - "hash": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==" - } - }, - "npm:sanitize-filename": { - "type": "npm", - "name": "npm:sanitize-filename", - "data": { - "version": "1.6.3", - "packageName": "sanitize-filename", - "hash": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==" - } - }, - "npm:sass-loader": { - "type": "npm", - "name": "npm:sass-loader", - "data": { - "version": "12.4.0", - "packageName": "sass-loader", - "hash": "sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==" - } - }, - "npm:sass": { - "type": "npm", - "name": "npm:sass", - "data": { - "version": "1.49.11", - "packageName": "sass", - "hash": "sha512-wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ==" - } - }, - "npm:satisfied": { - "type": "npm", - "name": "npm:satisfied", - "data": { - "version": "1.1.2", - "packageName": "satisfied", - "hash": "sha512-4/p+apZMl0WJVH8/HGT4qu5nXey1SokSgGCuxXqFV8ntAXVqRjfjn0i5Zxbp7xh7NsRk2zy71xO+qADxXATLgw==" - } - }, - "npm:sax@0.5.8": { - "type": "npm", - "name": "npm:sax@0.5.8", - "data": { - "version": "0.5.8", - "packageName": "sax", - "hash": "sha512-c0YL9VcSfcdH3F1Qij9qpYJFpKFKMXNOkLWFssBL3RuF7ZS8oZhllR2rWlCRjDTJsfq3R6wbSsaRU6o0rkEdNw==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.2.4", - "packageName": "sax", - "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:scheduler": { - "type": "npm", - "name": "npm:scheduler", - "data": { - "version": "0.20.2", - "packageName": "scheduler", - "hash": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==" - } - }, - "npm:scheduler@0.19.1": { - "type": "npm", - "name": "npm:scheduler@0.19.1", - "data": { - "version": "0.19.1", - "packageName": "scheduler", - "hash": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==" - } - }, - "npm:scheduler@0.23.0": { - "type": "npm", - "name": "npm:scheduler@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "scheduler", - "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" - } - }, - "npm:schema-utils@2.7.0": { - "type": "npm", - "name": "npm:schema-utils@2.7.0", - "data": { - "version": "2.7.0", - "packageName": "schema-utils", - "hash": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "3.1.1", - "packageName": "schema-utils", - "hash": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" - } - }, - "npm:schema-utils@0.3.0": { - "type": "npm", - "name": "npm:schema-utils@0.3.0", - "data": { - "version": "0.3.0", - "packageName": "schema-utils", - "hash": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=" - } - }, - "npm:schema-utils@1.0.0": { - "type": "npm", - "name": "npm:schema-utils@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "schema-utils", - "hash": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==" - } - }, - "npm:schema-utils@3.1.2": { - "type": "npm", - "name": "npm:schema-utils@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "schema-utils", - "hash": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==" - } - }, - "npm:schema-utils@4.0.0": { - "type": "npm", - "name": "npm:schema-utils@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "schema-utils", - "hash": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==" - } - }, - "npm:select-hose": { - "type": "npm", - "name": "npm:select-hose", - "data": { - "version": "2.0.0", - "packageName": "select-hose", - "hash": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" - } - }, - "npm:select": { - "type": "npm", - "name": "npm:select", - "data": { - "version": "1.1.2", - "packageName": "select", - "hash": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" - } - }, - "npm:selenium-webdriver": { - "type": "npm", - "name": "npm:selenium-webdriver", - "data": { - "version": "4.3.1", - "packageName": "selenium-webdriver", - "hash": "sha512-TjH/ls1WKRQoFEHcqtn6UtwcLnA3yvx08v9cSSFYvyhp8hJWRtbe9ae2I8uXPisEZ2EaGKKoxBZ4EHv0BJM15g==" - } - }, - "npm:selfsigned": { - "type": "npm", - "name": "npm:selfsigned", - "data": { - "version": "2.1.1", - "packageName": "selfsigned", - "hash": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==" - } - }, - "npm:semver-compare": { - "type": "npm", - "name": "npm:semver-compare", - "data": { - "version": "1.0.0", - "packageName": "semver-compare", - "hash": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=" - } - }, - "npm:semver-diff": { - "type": "npm", - "name": "npm:semver-diff", - "data": { - "version": "2.1.0", - "packageName": "semver-diff", - "hash": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=" - } - }, - "npm:semver-greatest-satisfied-range": { - "type": "npm", - "name": "npm:semver-greatest-satisfied-range", - "data": { - "version": "1.1.0", - "packageName": "semver-greatest-satisfied-range", - "hash": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=" - } - }, - "npm:semver-regex": { - "type": "npm", - "name": "npm:semver-regex", - "data": { - "version": "4.0.5", - "packageName": "semver-regex", - "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" - } - }, - "npm:semver-truncate": { - "type": "npm", - "name": "npm:semver-truncate", - "data": { - "version": "3.0.0", - "packageName": "semver-truncate", - "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" - } - }, - "npm:semver@5.7.1": { - "type": "npm", - "name": "npm:semver@5.7.1", - "data": { - "version": "5.7.1", - "packageName": "semver", - "hash": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - }, - "npm:semver@7.5.2": { - "type": "npm", - "name": "npm:semver@7.5.2", - "data": { - "version": "7.5.2", - "packageName": "semver", - "hash": "sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==" - } - }, - "npm:semver@7.5.3": { - "type": "npm", - "name": "npm:semver@7.5.3", - "data": { - "version": "7.5.3", - "packageName": "semver", - "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver@7.5.4": { - "type": "npm", - "name": "npm:semver@7.5.4", - "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" - } - }, - "npm:semver@7.3.8": { - "type": "npm", - "name": "npm:semver@7.3.8", - "data": { - "version": "7.3.8", - "packageName": "semver", - "hash": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.17.2", - "packageName": "send", - "hash": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==" - } - }, - "npm:sentence-case": { - "type": "npm", - "name": "npm:sentence-case", - "data": { - "version": "2.1.1", - "packageName": "sentence-case", - "hash": "sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ=" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "4.0.0", - "packageName": "serialize-javascript", - "hash": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" - } - }, - "npm:serialize-javascript@5.0.1": { - "type": "npm", - "name": "npm:serialize-javascript@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "serialize-javascript", - "hash": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==" - } - }, - "npm:serialize-javascript@6.0.1": { - "type": "npm", - "name": "npm:serialize-javascript@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "serialize-javascript", - "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" - } - }, - "npm:serve-favicon": { - "type": "npm", - "name": "npm:serve-favicon", - "data": { - "version": "2.5.0", - "packageName": "serve-favicon", - "hash": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "1.14.2", - "packageName": "serve-static", - "hash": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==" - } - }, - "npm:set-blocking": { - "type": "npm", - "name": "npm:set-blocking", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - } - }, - "npm:set-value": { - "type": "npm", - "name": "npm:set-value", - "data": { - "version": "2.0.1", - "packageName": "set-value", - "hash": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==" - } - }, - "npm:setimmediate": { - "type": "npm", - "name": "npm:setimmediate", - "data": { - "version": "1.0.5", - "packageName": "setimmediate", - "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - } - }, - "npm:setprototypeof@1.1.0": { - "type": "npm", - "name": "npm:setprototypeof@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "setprototypeof", - "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:sha.js": { - "type": "npm", - "name": "npm:sha.js", - "data": { - "version": "2.4.11", - "packageName": "sha.js", - "hash": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shallow-equal": { - "type": "npm", - "name": "npm:shallow-equal", - "data": { - "version": "1.2.1", - "packageName": "shallow-equal", - "hash": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" - } - }, - "npm:shallowequal": { - "type": "npm", - "name": "npm:shallowequal", - "data": { - "version": "1.1.0", - "packageName": "shallowequal", - "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" - } - }, - "npm:shebang-command@2.0.0": { - "type": "npm", - "name": "npm:shebang-command@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" - } - }, - "npm:shebang-regex@3.0.0": { - "type": "npm", - "name": "npm:shebang-regex@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.4", - "packageName": "side-channel", - "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:signal-exit@4.0.2": { - "type": "npm", - "name": "npm:signal-exit@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "signal-exit", - "hash": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" - } - }, - "npm:sigstore": { - "type": "npm", - "name": "npm:sigstore", - "data": { - "version": "1.8.0", - "packageName": "sigstore", - "hash": "sha512-ogU8qtQ3VFBawRJ8wjsBEX/vIFeHuGs1fm4jZtjWQwjo8pfAt7T/rh+udlAN4+QUe0IzA8qRSc/YZ7dHP6kh+w==" - } - }, - "npm:simple-swizzle": { - "type": "npm", - "name": "npm:simple-swizzle", - "data": { - "version": "0.2.2", - "packageName": "simple-swizzle", - "hash": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=" - } - }, - "npm:simulant": { - "type": "npm", - "name": "npm:simulant", - "data": { - "version": "0.2.2", - "packageName": "simulant", - "hash": "sha1-8bzlJxK2p6DaON392n6DsgsdoB4=" - } - }, - "npm:sirv": { - "type": "npm", - "name": "npm:sirv", - "data": { - "version": "1.0.10", - "packageName": "sirv", - "hash": "sha512-H5EZCoZaggEUQy8ocKsF7WAToGuZhjJlLvM3XOef46CbdIgbNeQ1p32N1PCuCjkVYwrAVOSMacN6CXXgIzuspg==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:slash@2.0.0": { - "type": "npm", - "name": "npm:slash@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "slash", - "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" - } - }, - "npm:slash@4.0.0": { - "type": "npm", - "name": "npm:slash@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slash", - "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - }, - "npm:slash@5.1.0": { - "type": "npm", - "name": "npm:slash@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:slice-ansi@3.0.0": { - "type": "npm", - "name": "npm:slice-ansi@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "slice-ansi", - "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "data": { - "version": "4.0.0", - "packageName": "slice-ansi", - "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" - } - }, - "npm:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - } - }, - "npm:snake-case": { - "type": "npm", - "name": "npm:snake-case", - "data": { - "version": "2.1.0", - "packageName": "snake-case", - "hash": "sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8=" - } - }, - "npm:snapdragon-node": { - "type": "npm", - "name": "npm:snapdragon-node", - "data": { - "version": "2.1.1", - "packageName": "snapdragon-node", - "hash": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==" - } - }, - "npm:snapdragon-util": { - "type": "npm", - "name": "npm:snapdragon-util", - "data": { - "version": "3.0.1", - "packageName": "snapdragon-util", - "hash": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==" - } - }, - "npm:snapdragon": { - "type": "npm", - "name": "npm:snapdragon", - "data": { - "version": "0.8.2", - "packageName": "snapdragon", - "hash": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==" - } - }, - "npm:socket.io-adapter": { - "type": "npm", - "name": "npm:socket.io-adapter", - "data": { - "version": "2.4.0", - "packageName": "socket.io-adapter", - "hash": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" - } - }, - "npm:socket.io-parser": { - "type": "npm", - "name": "npm:socket.io-parser", - "data": { - "version": "4.0.5", - "packageName": "socket.io-parser", - "hash": "sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==" - } - }, - "npm:socket.io": { - "type": "npm", - "name": "npm:socket.io", - "data": { - "version": "4.5.1", - "packageName": "socket.io", - "hash": "sha512-0y9pnIso5a9i+lJmsCdtmTTgJFFSvNQKDnPQRz28mGNnxbmqYg2QPtJTLFxhymFZhAIn50eHAKzJeiNaKr+yUQ==" - } - }, - "npm:sockjs": { - "type": "npm", - "name": "npm:sockjs", - "data": { - "version": "0.3.24", - "packageName": "sockjs", - "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - } - }, - "npm:socks-proxy-agent@5.0.0": { - "type": "npm", - "name": "npm:socks-proxy-agent@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "socks-proxy-agent", - "hash": "sha512-lEpa1zsWCChxiynk+lCycKuC502RxDWLKJZoIhnxrWNjLSDGYRFflHA1/228VkRcnv9TIb8w98derGbpKxJRgA==" - } - }, - "npm:socks-proxy-agent": { - "type": "npm", - "name": "npm:socks-proxy-agent", - "data": { - "version": "7.0.0", - "packageName": "socks-proxy-agent", - "hash": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" - } - }, - "npm:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.7.0", - "packageName": "socks", - "hash": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==" - } - }, - "npm:sort-css-media-queries": { - "type": "npm", - "name": "npm:sort-css-media-queries", - "data": { - "version": "1.5.4", - "packageName": "sort-css-media-queries", - "hash": "sha512-YP5W/h4Sid/YP7Lp87ejJ5jP13/Mtqt2vx33XyhO+IAugKlufRPbOrPlIiEUuxmpNBSBd3EeeQpFhdu3RfI2Ag==" - } - }, - "npm:sort-keys-length": { - "type": "npm", - "name": "npm:sort-keys-length", - "data": { - "version": "1.0.1", - "packageName": "sort-keys-length", - "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" - } - }, - "npm:sort-keys@1.1.2": { - "type": "npm", - "name": "npm:sort-keys@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "sort-keys", - "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "2.0.0", - "packageName": "sort-keys", - "hash": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=" - } - }, - "npm:source-list-map": { - "type": "npm", - "name": "npm:source-list-map", - "data": { - "version": "2.0.1", - "packageName": "source-list-map", - "hash": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.0.2", - "packageName": "source-map-js", - "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - } - }, - "npm:source-map-js@0.6.2": { - "type": "npm", - "name": "npm:source-map-js@0.6.2", - "data": { - "version": "0.6.2", - "packageName": "source-map-js", - "hash": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==" - } - }, - "npm:source-map-loader": { - "type": "npm", - "name": "npm:source-map-loader", - "data": { - "version": "4.0.0", - "packageName": "source-map-loader", - "hash": "sha512-i3KVgM3+QPAHNbGavK+VBq03YoJl24m9JWNbLgsjTj8aJzXG9M61bantBTNBt7CNwY2FYf+RJRYJ3pzalKjIrw==" - } - }, - "npm:source-map-resolve": { - "type": "npm", - "name": "npm:source-map-resolve", - "data": { - "version": "0.5.3", - "packageName": "source-map-resolve", - "hash": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==" - } - }, - "npm:source-map-support@0.5.13": { - "type": "npm", - "name": "npm:source-map-support@0.5.13", - "data": { - "version": "0.5.13", - "packageName": "source-map-support", - "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" - } - }, - "npm:source-map-support@0.5.19": { - "type": "npm", - "name": "npm:source-map-support@0.5.19", - "data": { - "version": "0.5.19", - "packageName": "source-map-support", - "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:source-map-url": { - "type": "npm", - "name": "npm:source-map-url", - "data": { - "version": "0.4.0", - "packageName": "source-map-url", - "hash": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" - } - }, - "npm:source-map@0.5.7": { - "type": "npm", - "name": "npm:source-map@0.5.7", - "data": { - "version": "0.5.7", - "packageName": "source-map", - "hash": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map@0.7.3": { - "type": "npm", - "name": "npm:source-map@0.7.3", - "data": { - "version": "0.7.3", - "packageName": "source-map", - "hash": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - } - }, - "npm:source-map@0.2.0": { - "type": "npm", - "name": "npm:source-map@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "source-map", - "hash": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=" - } - }, - "npm:sourcemap-codec": { - "type": "npm", - "name": "npm:sourcemap-codec", - "data": { - "version": "1.4.8", - "packageName": "sourcemap-codec", - "hash": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" - } - }, - "npm:space-separated-tokens": { - "type": "npm", - "name": "npm:space-separated-tokens", - "data": { - "version": "1.1.4", - "packageName": "space-separated-tokens", - "hash": "sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA==" - } - }, - "npm:sparkles": { - "type": "npm", - "name": "npm:sparkles", - "data": { - "version": "1.0.1", - "packageName": "sparkles", - "hash": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==" - } - }, - "npm:spdx-correct": { - "type": "npm", - "name": "npm:spdx-correct", - "data": { - "version": "3.1.0", - "packageName": "spdx-correct", - "hash": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==" - } - }, - "npm:spdx-exceptions": { - "type": "npm", - "name": "npm:spdx-exceptions", - "data": { - "version": "2.2.0", - "packageName": "spdx-exceptions", - "hash": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==" - } - }, - "npm:spdx-expression-parse": { - "type": "npm", - "name": "npm:spdx-expression-parse", - "data": { - "version": "3.0.1", - "packageName": "spdx-expression-parse", - "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" - } - }, - "npm:spdx-license-ids": { - "type": "npm", - "name": "npm:spdx-license-ids", - "data": { - "version": "3.0.4", - "packageName": "spdx-license-ids", - "hash": "sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA==" - } - }, - "npm:spdy-transport": { - "type": "npm", - "name": "npm:spdy-transport", - "data": { - "version": "3.0.0", - "packageName": "spdy-transport", - "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - } - }, - "npm:spdy": { - "type": "npm", - "name": "npm:spdy", - "data": { - "version": "4.0.2", - "packageName": "spdy", - "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - } - }, - "npm:split-on-first": { - "type": "npm", - "name": "npm:split-on-first", - "data": { - "version": "1.1.0", - "packageName": "split-on-first", - "hash": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" - } - }, - "npm:split-string": { - "type": "npm", - "name": "npm:split-string", - "data": { - "version": "3.1.0", - "packageName": "split-string", - "hash": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "3.2.2", - "packageName": "split2", - "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" - } - }, - "npm:split": { - "type": "npm", - "name": "npm:split", - "data": { - "version": "1.0.1", - "packageName": "split", - "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - } - }, - "npm:sshpk": { - "type": "npm", - "name": "npm:sshpk", - "data": { - "version": "1.17.0", - "packageName": "sshpk", - "hash": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "10.0.4", - "packageName": "ssri", - "hash": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==" - } - }, - "npm:ssri@6.0.2": { - "type": "npm", - "name": "npm:ssri@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "ssri", - "hash": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==" - } - }, - "npm:ssri@8.0.0": { - "type": "npm", - "name": "npm:ssri@8.0.0", - "data": { - "version": "8.0.0", - "packageName": "ssri", - "hash": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==" - } - }, - "npm:ssri@9.0.1": { - "type": "npm", - "name": "npm:ssri@9.0.1", - "data": { - "version": "9.0.1", - "packageName": "ssri", - "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" - } - }, - "npm:stable": { - "type": "npm", - "name": "npm:stable", - "data": { - "version": "0.1.8", - "packageName": "stable", - "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - } - }, - "npm:stack-trace": { - "type": "npm", - "name": "npm:stack-trace", - "data": { - "version": "0.0.10", - "packageName": "stack-trace", - "hash": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.5", - "packageName": "stack-utils", - "hash": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==" - } - }, - "npm:stackframe": { - "type": "npm", - "name": "npm:stackframe", - "data": { - "version": "1.2.0", - "packageName": "stackframe", - "hash": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" - } - }, - "npm:state-toggle": { - "type": "npm", - "name": "npm:state-toggle", - "data": { - "version": "1.0.3", - "packageName": "state-toggle", - "hash": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" - } - }, - "npm:static-extend": { - "type": "npm", - "name": "npm:static-extend", - "data": { - "version": "0.1.2", - "packageName": "static-extend", - "hash": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" - } - }, - "npm:stealthy-require": { - "type": "npm", - "name": "npm:stealthy-require", - "data": { - "version": "1.1.1", - "packageName": "stealthy-require", - "hash": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" - } - }, - "npm:store2": { - "type": "npm", - "name": "npm:store2", - "data": { - "version": "2.12.0", - "packageName": "store2", - "hash": "sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==" - } - }, - "npm:storybook-addon-performance": { - "type": "npm", - "name": "npm:storybook-addon-performance", - "data": { - "version": "0.16.1", - "packageName": "storybook-addon-performance", - "hash": "sha512-hDMRXvZljwBXYKrNegB9+LvT1b0ZQlkvTEDqq4gbMovQcD9yR0mka1eDuhwZfzxcgY1PrhkN3EhNxLybA/ql9Q==" - } - }, - "npm:storybook-addon-swc": { - "type": "npm", - "name": "npm:storybook-addon-swc", - "data": { - "version": "1.2.0", - "packageName": "storybook-addon-swc", - "hash": "sha512-PEpxhAH+407KTcVDC7uUH4S26qtuBDC/JlZI3NqFYu0Tm2uCBf56On+13lK4iE3Iz8FORl4aSXo2RricJ/UhPQ==" - } - }, - "npm:storywright": { - "type": "npm", - "name": "npm:storywright", - "data": { - "version": "0.0.26-beta.1", - "packageName": "storywright", - "hash": "sha512-zNWRzTl8rOSDBFrbvozOcOshvLJPJzcSpm8sfZD6My24lsNK1xXsXDAykWZ7hh9y2XRtlXBL0Rewx82OoVKCXA==" - } - }, - "npm:stream-browserify@2.0.2": { - "type": "npm", - "name": "npm:stream-browserify@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "stream-browserify", - "hash": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==" - } - }, - "npm:stream-browserify": { - "type": "npm", - "name": "npm:stream-browserify", - "data": { - "version": "3.0.0", - "packageName": "stream-browserify", - "hash": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==" - } - }, - "npm:stream-each": { - "type": "npm", - "name": "npm:stream-each", - "data": { - "version": "1.2.3", - "packageName": "stream-each", - "hash": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==" - } - }, - "npm:stream-exhaust": { - "type": "npm", - "name": "npm:stream-exhaust", - "data": { - "version": "1.0.2", - "packageName": "stream-exhaust", - "hash": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==" - } - }, - "npm:stream-http@2.8.3": { - "type": "npm", - "name": "npm:stream-http@2.8.3", - "data": { - "version": "2.8.3", - "packageName": "stream-http", - "hash": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==" - } - }, - "npm:stream-http": { - "type": "npm", - "name": "npm:stream-http", - "data": { - "version": "3.1.1", - "packageName": "stream-http", - "hash": "sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg==" - } - }, - "npm:stream-shift": { - "type": "npm", - "name": "npm:stream-shift", - "data": { - "version": "1.0.0", - "packageName": "stream-shift", - "hash": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" - } - }, - "npm:streamroller": { - "type": "npm", - "name": "npm:streamroller", - "data": { - "version": "3.0.4", - "packageName": "streamroller", - "hash": "sha512-GI9NzeD+D88UFuIlJkKNDH/IsuR+qIN7Qh8EsmhoRZr9bQoehTraRgwtLUkZbpcAw+hLPfHOypmppz8YyGK68w==" - } - }, - "npm:strict-uri-encode": { - "type": "npm", - "name": "npm:strict-uri-encode", - "data": { - "version": "2.0.0", - "packageName": "strict-uri-encode", - "hash": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=" - } - }, - "npm:string-argv": { - "type": "npm", - "name": "npm:string-argv", - "data": { - "version": "0.3.1", - "packageName": "string-argv", - "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" - } - }, - "npm:string-hash": { - "type": "npm", - "name": "npm:string-hash", - "data": { - "version": "1.1.3", - "packageName": "string-hash", - "hash": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string-length@5.0.1": { - "type": "npm", - "name": "npm:string-length@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "string-length", - "hash": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@^4.2.0", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string-width@1.0.2": { - "type": "npm", - "name": "npm:string-width@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "string-width", - "hash": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=" - } - }, - "npm:string-width@2.1.1": { - "type": "npm", - "name": "npm:string-width@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "string-width", - "hash": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==" - } - }, - "npm:string-width@3.1.0": { - "type": "npm", - "name": "npm:string-width@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "string-width", - "hash": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string.prototype.matchall": { - "type": "npm", - "name": "npm:string.prototype.matchall", - "data": { - "version": "4.0.6", - "packageName": "string.prototype.matchall", - "hash": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==" - } - }, - "npm:string.prototype.padend": { - "type": "npm", - "name": "npm:string.prototype.padend", - "data": { - "version": "3.0.0", - "packageName": "string.prototype.padend", - "hash": "sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA=" - } - }, - "npm:string.prototype.padstart": { - "type": "npm", - "name": "npm:string.prototype.padstart", - "data": { - "version": "3.0.0", - "packageName": "string.prototype.padstart", - "hash": "sha1-W8+tOfRkm7LQMSkuGbzwtRDUskI=" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.1.2", - "packageName": "string.prototype.trim", - "hash": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.4", - "packageName": "string.prototype.trimend", - "hash": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.4", - "packageName": "string.prototype.trimstart", - "hash": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:string_decoder@0.10.31": { - "type": "npm", - "name": "npm:string_decoder@0.10.31", - "data": { - "version": "0.10.31", - "packageName": "string_decoder", - "hash": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" - } - }, - "npm:string_decoder@1.1.1": { - "type": "npm", - "name": "npm:string_decoder@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "string_decoder", - "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - }, - "npm:stringify-object": { - "type": "npm", - "name": "npm:stringify-object", - "data": { - "version": "3.3.0", - "packageName": "stringify-object", - "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@^6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-ansi@6.0.1": { - "type": "npm", - "name": "npm:strip-ansi@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.0", - "packageName": "strip-ansi", - "hash": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" - } - }, - "npm:strip-ansi@3.0.1": { - "type": "npm", - "name": "npm:strip-ansi@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "strip-ansi", - "hash": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=" - } - }, - "npm:strip-ansi@4.0.0": { - "type": "npm", - "name": "npm:strip-ansi@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "strip-ansi", - "hash": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=" - } - }, - "npm:strip-ansi@5.2.0": { - "type": "npm", - "name": "npm:strip-ansi@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "strip-ansi", - "hash": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" - } - }, - "npm:strip-ansi@7.0.1": { - "type": "npm", - "name": "npm:strip-ansi@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "strip-ansi", - "hash": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==" - } - }, - "npm:strip-bom-string": { - "type": "npm", - "name": "npm:strip-bom-string", - "data": { - "version": "1.0.0", - "packageName": "strip-bom-string", - "hash": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" - } - }, - "npm:strip-bom@2.0.0": { - "type": "npm", - "name": "npm:strip-bom@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "strip-bom", - "hash": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - } - }, - "npm:strip-bom@4.0.0": { - "type": "npm", - "name": "npm:strip-bom@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:strip-comments": { - "type": "npm", - "name": "npm:strip-comments", - "data": { - "version": "2.0.1", - "packageName": "strip-comments", - "hash": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" - } - }, - "npm:strip-eof": { - "type": "npm", - "name": "npm:strip-eof", - "data": { - "version": "1.0.0", - "packageName": "strip-eof", - "hash": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:strip-indent@1.0.1": { - "type": "npm", - "name": "npm:strip-indent@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "strip-indent", - "hash": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=" - } - }, - "npm:strip-indent": { - "type": "npm", - "name": "npm:strip-indent", - "data": { - "version": "3.0.0", - "packageName": "strip-indent", - "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" - } - }, - "npm:strip-json-comments@2.0.1": { - "type": "npm", - "name": "npm:strip-json-comments@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "strip-json-comments", - "hash": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:strip-outer": { - "type": "npm", - "name": "npm:strip-outer", - "data": { - "version": "1.0.1", - "packageName": "strip-outer", - "hash": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==" - } - }, - "npm:strip-outer@2.0.0": { - "type": "npm", - "name": "npm:strip-outer@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "strip-outer", - "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" - } - }, - "npm:strong-log-transformer": { - "type": "npm", - "name": "npm:strong-log-transformer", - "data": { - "version": "2.1.0", - "packageName": "strong-log-transformer", - "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" - } - }, - "npm:strtok3": { - "type": "npm", - "name": "npm:strtok3", - "data": { - "version": "7.0.0", - "packageName": "strtok3", - "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" - } - }, - "npm:structured-source": { - "type": "npm", - "name": "npm:structured-source", - "data": { - "version": "3.0.2", - "packageName": "structured-source", - "hash": "sha1-3YAkJeD1PcSm56yjdSkBoczaevU=" - } - }, - "npm:style-loader": { - "type": "npm", - "name": "npm:style-loader", - "data": { - "version": "2.0.0", - "packageName": "style-loader", - "hash": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==" - } - }, - "npm:style-loader@1.3.0": { - "type": "npm", - "name": "npm:style-loader@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "style-loader", - "hash": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==" - } - }, - "npm:style-to-object": { - "type": "npm", - "name": "npm:style-to-object", - "data": { - "version": "0.3.0", - "packageName": "style-to-object", - "hash": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" - } - }, - "npm:styled-components": { - "type": "npm", - "name": "npm:styled-components", - "data": { - "version": "5.2.1", - "packageName": "styled-components", - "hash": "sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==" - } - }, - "npm:stylis-plugin-rtl": { - "type": "npm", - "name": "npm:stylis-plugin-rtl", - "data": { - "version": "2.1.0", - "packageName": "stylis-plugin-rtl", - "hash": "sha512-WGqhbQdlbXN3UelhOObu58+aG02jm8ACehr8iBDf7qLQ6lbUxD6YwM8t/5IcwLRjj7BVjIN8eA8YfwJuqwBVSg==" - } - }, - "npm:stylis@3.5.4": { - "type": "npm", - "name": "npm:stylis@3.5.4", - "data": { - "version": "3.5.4", - "packageName": "stylis", - "hash": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" - } - }, - "npm:stylis": { - "type": "npm", - "name": "npm:stylis", - "data": { - "version": "4.3.0", - "packageName": "stylis", - "hash": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" - } - }, - "npm:supports-color@6.0.0": { - "type": "npm", - "name": "npm:supports-color@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "supports-color", - "hash": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==" - } - }, - "npm:supports-color@2.0.0": { - "type": "npm", - "name": "npm:supports-color@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "supports-color", - "hash": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - }, - "npm:supports-color@3.2.3": { - "type": "npm", - "name": "npm:supports-color@3.2.3", - "data": { - "version": "3.2.3", - "packageName": "supports-color", - "hash": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=" - } - }, - "npm:supports-color@5.5.0": { - "type": "npm", - "name": "npm:supports-color@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "supports-color", - "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - } - }, - "npm:supports-color@6.1.0": { - "type": "npm", - "name": "npm:supports-color@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "supports-color", - "hash": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:supports-color@8.1.1": { - "type": "npm", - "name": "npm:supports-color@8.1.1", - "data": { - "version": "8.1.1", - "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - } - }, - "npm:supports-hyperlinks": { - "type": "npm", - "name": "npm:supports-hyperlinks", - "data": { - "version": "1.0.1", - "packageName": "supports-hyperlinks", - "hash": "sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==" - } - }, - "npm:supports-hyperlinks@2.2.0": { - "type": "npm", - "name": "npm:supports-hyperlinks@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "supports-hyperlinks", - "hash": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:sver-compat": { - "type": "npm", - "name": "npm:sver-compat", - "data": { - "version": "1.5.0", - "packageName": "sver-compat", - "hash": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=" - } - }, - "npm:swap-case": { - "type": "npm", - "name": "npm:swap-case", - "data": { - "version": "1.1.2", - "packageName": "swap-case", - "hash": "sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=" - } - }, - "npm:swc-loader": { - "type": "npm", - "name": "npm:swc-loader", - "data": { - "version": "0.2.3", - "packageName": "swc-loader", - "hash": "sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==" - } - }, - "npm:swc-plugin-de-indent-template-literal": { - "type": "npm", - "name": "npm:swc-plugin-de-indent-template-literal", - "data": { - "version": "1.0.0", - "packageName": "swc-plugin-de-indent-template-literal", - "hash": "sha512-Qb4G8h8hKlwWYFCJUVbmiELRmjzBM1hPmJh5+p0GiY/b6imGSIuEWV2zBAYcQyNvR2DI2MJ3OxJC2SCT9Ld7lA==" - } - }, - "npm:symbol-tree": { - "type": "npm", - "name": "npm:symbol-tree", - "data": { - "version": "3.2.4", - "packageName": "symbol-tree", - "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - } - }, - "npm:symbol.prototype.description": { - "type": "npm", - "name": "npm:symbol.prototype.description", - "data": { - "version": "1.0.0", - "packageName": "symbol.prototype.description", - "hash": "sha512-I9mrbZ5M96s7QeJDv95toF1svkUjeBybe8ydhY7foPaBmr0SPJMFupArmMkDrOKTTj0sJVr+nvQNxWLziQ7nDQ==" - } - }, - "npm:synchronous-promise": { - "type": "npm", - "name": "npm:synchronous-promise", - "data": { - "version": "2.0.15", - "packageName": "synchronous-promise", - "hash": "sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==" - } - }, - "npm:syncpack": { - "type": "npm", - "name": "npm:syncpack", - "data": { - "version": "10.6.1", - "packageName": "syncpack", - "hash": "sha512-mnBo6PYffon2TKxzJmOy3V7srv1GRX9wdmi+FHiqkOw0r2mQMgu1nmM/covETqZzB2px//cSaYpcPW+rniT/0Q==" - } - }, - "npm:systeminformation": { - "type": "npm", - "name": "npm:systeminformation", - "data": { - "version": "5.21.8", - "packageName": "systeminformation", - "hash": "sha512-Xf1KDMUTQHLOT9Z7MjpSpsbaICOHcm4OZ9c9qqpkCoXuxq5MoyDrgu5GIQYpoiralXNPrqxDz3ND8MdllpXeQA==" - } - }, - "npm:tabbable": { - "type": "npm", - "name": "npm:tabbable", - "data": { - "version": "5.2.0", - "packageName": "tabbable", - "hash": "sha512-0uyt8wbP0P3T4rrsfYg/5Rg3cIJ8Shl1RJ54QMqYxm1TLdWqJD1u6+RQjr2Lor3wmfT7JRHkirIwy99ydBsyPg==" - } - }, - "npm:table-layout": { - "type": "npm", - "name": "npm:table-layout", - "data": { - "version": "1.0.2", - "packageName": "table-layout", - "hash": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==" - } - }, - "npm:table": { - "type": "npm", - "name": "npm:table", - "data": { - "version": "6.8.0", - "packageName": "table", - "hash": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==" - } - }, - "npm:tabster": { - "type": "npm", - "name": "npm:tabster", - "data": { - "version": "5.0.1", - "packageName": "tabster", - "hash": "sha512-j5GGbN214MiPihGKemENq+fAHKoEpKZvVKakG/reUk3u+dPm/xvmlxYCQY8XayzxpvEu0i/6cMYjBMsEjcvdgA==" - } - }, - "npm:tachometer": { - "type": "npm", - "name": "npm:tachometer", - "data": { - "version": "0.7.0", - "packageName": "tachometer", - "hash": "sha512-163DdzoNkjZlr/m3IpaPMYBOTUc54hzfGSUw7pv9ZoO3OkjDcoGqJGImcrfEDNsw3DD0J/FM5AWjEi2/0W4YZA==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "1.1.3", - "packageName": "tapable", - "hash": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" - } - }, - "npm:tapable@2.2.1": { - "type": "npm", - "name": "npm:tapable@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "tapable", - "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - } - }, - "npm:tar-fs": { - "type": "npm", - "name": "npm:tar-fs", - "data": { - "version": "2.1.1", - "packageName": "tar-fs", - "hash": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==" - } - }, - "npm:tar-stream": { - "type": "npm", - "name": "npm:tar-stream", - "data": { - "version": "2.2.0", - "packageName": "tar-stream", - "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.1.11", - "packageName": "tar", - "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" - } - }, - "npm:tar@4.4.19": { - "type": "npm", - "name": "npm:tar@4.4.19", - "data": { - "version": "4.4.19", - "packageName": "tar", - "hash": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==" - } - }, - "npm:telejson": { - "type": "npm", - "name": "npm:telejson", - "data": { - "version": "6.0.8", - "packageName": "telejson", - "hash": "sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==" - } - }, - "npm:temp-dir": { - "type": "npm", - "name": "npm:temp-dir", - "data": { - "version": "1.0.0", - "packageName": "temp-dir", - "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" - } - }, - "npm:temp": { - "type": "npm", - "name": "npm:temp", - "data": { - "version": "0.4.0", - "packageName": "temp", - "hash": "sha1-ZxrWPVe+D+nXKUZks/xABjZnimA=" - } - }, - "npm:term-size@1.2.0": { - "type": "npm", - "name": "npm:term-size@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "term-size", - "hash": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=" - } - }, - "npm:term-size": { - "type": "npm", - "name": "npm:term-size", - "data": { - "version": "2.1.1", - "packageName": "term-size", - "hash": "sha512-UqvQSch04R+69g4RDhrslmGvGL3ucDRX/U+snYW0Mab4uCAyKSndUksaoqlJ81QKSpRnIsuOYQCbC2ZWx2896A==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.9", - "packageName": "terser-webpack-plugin", - "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" - } - }, - "npm:terser-webpack-plugin@1.4.5": { - "type": "npm", - "name": "npm:terser-webpack-plugin@1.4.5", - "data": { - "version": "1.4.5", - "packageName": "terser-webpack-plugin", - "hash": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==" - } - }, - "npm:terser-webpack-plugin@4.2.3": { - "type": "npm", - "name": "npm:terser-webpack-plugin@4.2.3", - "data": { - "version": "4.2.3", - "packageName": "terser-webpack-plugin", - "hash": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.17.4", - "packageName": "terser", - "hash": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==" - } - }, - "npm:terser@4.8.0": { - "type": "npm", - "name": "npm:terser@4.8.0", - "data": { - "version": "4.8.0", - "packageName": "terser", - "hash": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==" - } - }, - "npm:test-exclude": { - "type": "npm", - "name": "npm:test-exclude", - "data": { - "version": "6.0.0", - "packageName": "test-exclude", - "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" - } - }, - "npm:text-extensions": { - "type": "npm", - "name": "npm:text-extensions", - "data": { - "version": "1.9.0", - "packageName": "text-extensions", - "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" - } - }, - "npm:textextensions": { - "type": "npm", - "name": "npm:textextensions", - "data": { - "version": "2.6.0", - "packageName": "textextensions", - "hash": "sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==" - } - }, - "npm:throttle-debounce": { - "type": "npm", - "name": "npm:throttle-debounce", - "data": { - "version": "3.0.1", - "packageName": "throttle-debounce", - "hash": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==" - } - }, - "npm:throttleit": { - "type": "npm", - "name": "npm:throttleit", - "data": { - "version": "1.0.0", - "packageName": "throttleit", - "hash": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=" - } - }, - "npm:through2-filter": { - "type": "npm", - "name": "npm:through2-filter", - "data": { - "version": "3.0.0", - "packageName": "through2-filter", - "hash": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==" - } - }, - "npm:through2@2.0.5": { - "type": "npm", - "name": "npm:through2@2.0.5", - "data": { - "version": "2.0.5", - "packageName": "through2", - "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - } - }, - "npm:through2@3.0.1": { - "type": "npm", - "name": "npm:through2@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "through2", - "hash": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==" - } - }, - "npm:through2": { - "type": "npm", - "name": "npm:through2", - "data": { - "version": "4.0.2", - "packageName": "through2", - "hash": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" - } - }, - "npm:through2@0.5.1": { - "type": "npm", - "name": "npm:through2@0.5.1", - "data": { - "version": "0.5.1", - "packageName": "through2", - "hash": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - } - }, - "npm:thunky": { - "type": "npm", - "name": "npm:thunky", - "data": { - "version": "1.0.3", - "packageName": "thunky", - "hash": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==" - } - }, - "npm:tightrope": { - "type": "npm", - "name": "npm:tightrope", - "data": { - "version": "0.1.0", - "packageName": "tightrope", - "hash": "sha512-HHHNYdCAIYwl1jOslQBT455zQpdeSo8/A346xpIb/uuqhSg+tCvYNsP5f11QW+z9VZ3vSX8YIfzTApjjuGH63w==" - } - }, - "npm:time-stamp": { - "type": "npm", - "name": "npm:time-stamp", - "data": { - "version": "1.1.0", - "packageName": "time-stamp", - "hash": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" - } - }, - "npm:timed-out": { - "type": "npm", - "name": "npm:timed-out", - "data": { - "version": "4.0.1", - "packageName": "timed-out", - "hash": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" - } - }, - "npm:timers-browserify": { - "type": "npm", - "name": "npm:timers-browserify", - "data": { - "version": "2.0.12", - "packageName": "timers-browserify", - "hash": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==" - } - }, - "npm:timers-ext": { - "type": "npm", - "name": "npm:timers-ext", - "data": { - "version": "0.1.7", - "packageName": "timers-ext", - "hash": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" - } - }, - "npm:timsort": { - "type": "npm", - "name": "npm:timsort", - "data": { - "version": "0.3.0", - "packageName": "timsort", - "hash": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" - } - }, - "npm:tiny-emitter": { - "type": "npm", - "name": "npm:tiny-emitter", - "data": { - "version": "2.1.0", - "packageName": "tiny-emitter", - "hash": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" - } - }, - "npm:tiny-invariant": { - "type": "npm", - "name": "npm:tiny-invariant", - "data": { - "version": "1.1.0", - "packageName": "tiny-invariant", - "hash": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" - } - }, - "npm:tiny-warning": { - "type": "npm", - "name": "npm:tiny-warning", - "data": { - "version": "1.0.3", - "packageName": "tiny-warning", - "hash": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" - } - }, - "npm:title-case": { - "type": "npm", - "name": "npm:title-case", - "data": { - "version": "2.1.1", - "packageName": "title-case", - "hash": "sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.2.1", - "packageName": "tmp", - "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" - } - }, - "npm:tmp@0.0.33": { - "type": "npm", - "name": "npm:tmp@0.0.33", - "data": { - "version": "0.0.33", - "packageName": "tmp", - "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" - } - }, - "npm:tmpl": { - "type": "npm", - "name": "npm:tmpl", - "data": { - "version": "1.0.5", - "packageName": "tmpl", - "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - } - }, - "npm:to-absolute-glob": { - "type": "npm", - "name": "npm:to-absolute-glob", - "data": { - "version": "2.0.2", - "packageName": "to-absolute-glob", - "hash": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=" - } - }, - "npm:to-arraybuffer": { - "type": "npm", - "name": "npm:to-arraybuffer", - "data": { - "version": "1.0.1", - "packageName": "to-arraybuffer", - "hash": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" - } - }, - "npm:to-camel-case": { - "type": "npm", - "name": "npm:to-camel-case", - "data": { - "version": "1.0.0", - "packageName": "to-camel-case", - "hash": "sha1-GlYFSy+daWKYzmamCJcyK29CPkY=" - } - }, - "npm:to-fast-properties@1.0.3": { - "type": "npm", - "name": "npm:to-fast-properties@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "to-fast-properties", - "hash": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" - } - }, - "npm:to-fast-properties": { - "type": "npm", - "name": "npm:to-fast-properties", - "data": { - "version": "2.0.0", - "packageName": "to-fast-properties", - "hash": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" - } - }, - "npm:to-no-case": { - "type": "npm", - "name": "npm:to-no-case", - "data": { - "version": "1.0.2", - "packageName": "to-no-case", - "hash": "sha1-xyKQcWTvaxeBMsjmmTAhLRtKoWo=" - } - }, - "npm:to-object-path": { - "type": "npm", - "name": "npm:to-object-path", - "data": { - "version": "0.3.0", - "packageName": "to-object-path", - "hash": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=" - } - }, - "npm:to-regex-range@2.1.1": { - "type": "npm", - "name": "npm:to-regex-range@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "to-regex-range", - "hash": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:to-regex": { - "type": "npm", - "name": "npm:to-regex", - "data": { - "version": "3.0.2", - "packageName": "to-regex", - "hash": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==" - } - }, - "npm:to-space-case": { - "type": "npm", - "name": "npm:to-space-case", - "data": { - "version": "1.0.0", - "packageName": "to-space-case", - "hash": "sha1-sFLar7Gysp3HcM6gFj5ewOvJ/Bc=" - } - }, - "npm:to-through": { - "type": "npm", - "name": "npm:to-through", - "data": { - "version": "2.0.0", - "packageName": "to-through", - "hash": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=" - } - }, - "npm:toggle-selection": { - "type": "npm", - "name": "npm:toggle-selection", - "data": { - "version": "1.0.6", - "packageName": "toggle-selection", - "hash": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:token-types": { - "type": "npm", - "name": "npm:token-types", - "data": { - "version": "5.0.1", - "packageName": "token-types", - "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" - } - }, - "npm:toposort": { - "type": "npm", - "name": "npm:toposort", - "data": { - "version": "2.0.2", - "packageName": "toposort", - "hash": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=" - } - }, - "npm:totalist": { - "type": "npm", - "name": "npm:totalist", - "data": { - "version": "1.1.0", - "packageName": "totalist", - "hash": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "2.5.0", - "packageName": "tough-cookie", - "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" - } - }, - "npm:tough-cookie@4.1.2": { - "type": "npm", - "name": "npm:tough-cookie@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "tough-cookie", - "hash": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==" - } - }, - "npm:tr46@1.0.1": { - "type": "npm", - "name": "npm:tr46@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "tr46", - "hash": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:tr46@0.0.3": { - "type": "npm", - "name": "npm:tr46@0.0.3", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" - } - }, - "npm:traverse@0.3.9": { - "type": "npm", - "name": "npm:traverse@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "traverse", - "hash": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=" - } - }, - "npm:traverse": { - "type": "npm", - "name": "npm:traverse", - "data": { - "version": "0.6.6", - "packageName": "traverse", - "hash": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" - } - }, - "npm:trim-newlines@1.0.0": { - "type": "npm", - "name": "npm:trim-newlines@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "trim-newlines", - "hash": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" - } - }, - "npm:trim-newlines": { - "type": "npm", - "name": "npm:trim-newlines", - "data": { - "version": "3.0.0", - "packageName": "trim-newlines", - "hash": "sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==" - } - }, - "npm:trim-repeated": { - "type": "npm", - "name": "npm:trim-repeated", - "data": { - "version": "1.0.0", - "packageName": "trim-repeated", - "hash": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=" - } - }, - "npm:trim-repeated@2.0.0": { - "type": "npm", - "name": "npm:trim-repeated@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "trim-repeated", - "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" - } - }, - "npm:trim-right": { - "type": "npm", - "name": "npm:trim-right", - "data": { - "version": "1.0.1", - "packageName": "trim-right", - "hash": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" - } - }, - "npm:trim-trailing-lines": { - "type": "npm", - "name": "npm:trim-trailing-lines", - "data": { - "version": "1.1.3", - "packageName": "trim-trailing-lines", - "hash": "sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA==" - } - }, - "npm:trim": { - "type": "npm", - "name": "npm:trim", - "data": { - "version": "0.0.1", - "packageName": "trim", - "hash": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" - } - }, - "npm:trough": { - "type": "npm", - "name": "npm:trough", - "data": { - "version": "1.0.5", - "packageName": "trough", - "hash": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" - } - }, - "npm:truncate-utf8-bytes": { - "type": "npm", - "name": "npm:truncate-utf8-bytes", - "data": { - "version": "1.0.2", - "packageName": "truncate-utf8-bytes", - "hash": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==" - } - }, - "npm:ts-dedent": { - "type": "npm", - "name": "npm:ts-dedent", - "data": { - "version": "2.2.0", - "packageName": "ts-dedent", - "hash": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==" - } - }, - "npm:ts-invariant": { - "type": "npm", - "name": "npm:ts-invariant", - "data": { - "version": "0.10.3", - "packageName": "ts-invariant", - "hash": "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==" - } - }, - "npm:ts-jest": { - "type": "npm", - "name": "npm:ts-jest", - "data": { - "version": "29.1.1", - "packageName": "ts-jest", - "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" - } - }, - "npm:ts-loader": { - "type": "npm", - "name": "npm:ts-loader", - "data": { - "version": "9.3.1", - "packageName": "ts-loader", - "hash": "sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==" - } - }, - "npm:ts-morph": { - "type": "npm", - "name": "npm:ts-morph", - "data": { - "version": "10.0.1", - "packageName": "ts-morph", - "hash": "sha512-T1zufImtp5goTLTFhzi7XuKR1y/f+Jwz1gSULzB045LFjXuoqVlR87sfkpyWow8u2JwgusCJrhOnwmHCFNutTQ==" - } - }, - "npm:ts-node": { - "type": "npm", - "name": "npm:ts-node", - "data": { - "version": "10.9.1", - "packageName": "ts-node", - "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" - } - }, - "npm:ts-pnp": { - "type": "npm", - "name": "npm:ts-pnp", - "data": { - "version": "1.2.0", - "packageName": "ts-pnp", - "hash": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" - } - }, - "npm:ts-toolbelt": { - "type": "npm", - "name": "npm:ts-toolbelt", - "data": { - "version": "9.6.0", - "packageName": "ts-toolbelt", - "hash": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==" - } - }, - "npm:tsconfig-paths-webpack-plugin": { - "type": "npm", - "name": "npm:tsconfig-paths-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "tsconfig-paths-webpack-plugin", - "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.1.0", - "packageName": "tsconfig-paths", - "hash": "sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==" - } - }, - "npm:tsconfig-paths@3.13.0": { - "type": "npm", - "name": "npm:tsconfig-paths@3.13.0", - "data": { - "version": "3.13.0", - "packageName": "tsconfig-paths", - "hash": "sha512-nWuffZppoaYK0vQ1SQmkSsQzJoHA4s6uzdb2waRpD806x9yfq153AdVsWz4je2qZcW+pENrMQXbGQ3sMCkXuhw==" - } - }, - "npm:tsconfig-paths@4.2.0": { - "type": "npm", - "name": "npm:tsconfig-paths@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:tslib@1.11.2": { - "type": "npm", - "name": "npm:tslib@1.11.2", - "data": { - "version": "1.11.2", - "packageName": "tslib", - "hash": "sha512-tTSkux6IGPnUGUd1XAZHcpu85MOkIl5zX49pO+jfsie3eP0B6pyhOlLXm3cAC6T7s+euSDDUUV+Acop5WmtkVg==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.5.0", - "packageName": "tslib", - "hash": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - }, - "npm:tslib@1.14.1": { - "type": "npm", - "name": "npm:tslib@1.14.1", - "data": { - "version": "1.14.1", - "packageName": "tslib", - "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - }, - "npm:tsscmp": { - "type": "npm", - "name": "npm:tsscmp", - "data": { - "version": "1.0.6", - "packageName": "tsscmp", - "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" - } - }, - "npm:tsutils": { - "type": "npm", - "name": "npm:tsutils", - "data": { - "version": "3.21.0", - "packageName": "tsutils", - "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" - } - }, - "npm:tty-browserify@0.0.0": { - "type": "npm", - "name": "npm:tty-browserify@0.0.0", - "data": { - "version": "0.0.0", - "packageName": "tty-browserify", - "hash": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - } - }, - "npm:tty-browserify": { - "type": "npm", - "name": "npm:tty-browserify", - "data": { - "version": "0.0.1", - "packageName": "tty-browserify", - "hash": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" - } - }, - "npm:tuf-js": { - "type": "npm", - "name": "npm:tuf-js", - "data": { - "version": "1.1.7", - "packageName": "tuf-js", - "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" - } - }, - "npm:tunnel-agent": { - "type": "npm", - "name": "npm:tunnel-agent", - "data": { - "version": "0.6.0", - "packageName": "tunnel-agent", - "hash": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=" - } - }, - "npm:tunnel": { - "type": "npm", - "name": "npm:tunnel", - "data": { - "version": "0.0.6", - "packageName": "tunnel", - "hash": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" - } - }, - "npm:tweetnacl": { - "type": "npm", - "name": "npm:tweetnacl", - "data": { - "version": "0.14.5", - "packageName": "tweetnacl", - "hash": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - } - }, - "npm:type-check@0.4.0": { - "type": "npm", - "name": "npm:type-check@0.4.0", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.3.2", - "packageName": "type-check", - "hash": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=" - } - }, - "npm:type-detect": { - "type": "npm", - "name": "npm:type-detect", - "data": { - "version": "4.0.8", - "packageName": "type-detect", - "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - } - }, - "npm:type-fest@0.11.0": { - "type": "npm", - "name": "npm:type-fest@0.11.0", - "data": { - "version": "0.11.0", - "packageName": "type-fest", - "hash": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" - } - }, - "npm:type-fest@0.18.1": { - "type": "npm", - "name": "npm:type-fest@0.18.1", - "data": { - "version": "0.18.1", - "packageName": "type-fest", - "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest@0.4.1": { - "type": "npm", - "name": "npm:type-fest@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "type-fest", - "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" - } - }, - "npm:type-fest@0.6.0": { - "type": "npm", - "name": "npm:type-fest@0.6.0", - "data": { - "version": "0.6.0", - "packageName": "type-fest", - "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" - } - }, - "npm:type-fest@0.8.1": { - "type": "npm", - "name": "npm:type-fest@0.8.1", - "data": { - "version": "0.8.1", - "packageName": "type-fest", - "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } - }, - "npm:type-fest@3.11.0": { - "type": "npm", - "name": "npm:type-fest@3.11.0", - "data": { - "version": "3.11.0", - "packageName": "type-fest", - "hash": "sha512-JaPw5U9ixP0XcpUbQoVSbxSDcK/K4nww20C3kjm9yE6cDRRhptU28AH60VWf9ltXmCrIfIbtt9J+2OUk2Uqiaw==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "1.6.18", - "packageName": "type-is", - "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - } - }, - "npm:type": { - "type": "npm", - "name": "npm:type", - "data": { - "version": "1.0.1", - "packageName": "type", - "hash": "sha512-MAM5dBMJCJNKs9E7JXo4CXRAansRfG0nlJxW7Wf6GZzSOvH31zClSaHdIMWLehe/EGMBkqeC55rrkaOr5Oo7Nw==" - } - }, - "npm:type@2.0.0": { - "type": "npm", - "name": "npm:type@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "type", - "hash": "sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==" - } - }, - "npm:typed-rest-client": { - "type": "npm", - "name": "npm:typed-rest-client", - "data": { - "version": "1.8.9", - "packageName": "typed-rest-client", - "hash": "sha512-uSmjE38B80wjL85UFX3sTYEUlvZ1JgCRhsWj/fJ4rZ0FqDUFoIuodtiVeE+cUqiVTOKPdKrp/sdftD15MDek6g==" - } - }, - "npm:typedarray-to-buffer": { - "type": "npm", - "name": "npm:typedarray-to-buffer", - "data": { - "version": "3.1.5", - "packageName": "typedarray-to-buffer", - "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" - } - }, - "npm:typedarray": { - "type": "npm", - "name": "npm:typedarray", - "data": { - "version": "0.0.6", - "packageName": "typedarray", - "hash": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "4.7.4", - "packageName": "typescript", - "hash": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==" - } - }, - "npm:typescript@5.1.6": { - "type": "npm", - "name": "npm:typescript@5.1.6", - "data": { - "version": "5.1.6", - "packageName": "typescript", - "hash": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==" - } - }, - "npm:typical@4.0.0": { - "type": "npm", - "name": "npm:typical@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "typical", - "hash": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" - } - }, - "npm:typical": { - "type": "npm", - "name": "npm:typical", - "data": { - "version": "5.2.0", - "packageName": "typical", - "hash": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" - } - }, - "npm:ua-parser-js@0.7.33": { - "type": "npm", - "name": "npm:ua-parser-js@0.7.33", - "data": { - "version": "0.7.33", - "packageName": "ua-parser-js", - "hash": "sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==" - } - }, - "npm:ua-parser-js": { - "type": "npm", - "name": "npm:ua-parser-js", - "data": { - "version": "1.0.2", - "packageName": "ua-parser-js", - "hash": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==" - } - }, - "npm:uglify-js": { - "type": "npm", - "name": "npm:uglify-js", - "data": { - "version": "3.17.4", - "packageName": "uglify-js", - "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.0.1", - "packageName": "unbox-primitive", - "hash": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==" - } - }, - "npm:unbzip2-stream": { - "type": "npm", - "name": "npm:unbzip2-stream", - "data": { - "version": "1.4.3", - "packageName": "unbzip2-stream", - "hash": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==" - } - }, - "npm:unc-path-regex": { - "type": "npm", - "name": "npm:unc-path-regex", - "data": { - "version": "0.1.2", - "packageName": "unc-path-regex", - "hash": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" - } - }, - "npm:underscore": { - "type": "npm", - "name": "npm:underscore", - "data": { - "version": "1.12.1", - "packageName": "underscore", - "hash": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" - } - }, - "npm:undertaker-registry": { - "type": "npm", - "name": "npm:undertaker-registry", - "data": { - "version": "1.0.1", - "packageName": "undertaker-registry", - "hash": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" - } - }, - "npm:undertaker": { - "type": "npm", - "name": "npm:undertaker", - "data": { - "version": "1.3.0", - "packageName": "undertaker", - "hash": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==" - } - }, - "npm:unfetch@3.1.2": { - "type": "npm", - "name": "npm:unfetch@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "unfetch", - "hash": "sha512-L0qrK7ZeAudGiKYw6nzFjnJ2D5WHblUBwmHIqtPS6oKUd+Hcpk7/hKsSmcHsTlpd1TbTNsiRBUKRq3bHLNIqIw==" - } - }, - "npm:unfetch": { - "type": "npm", - "name": "npm:unfetch", - "data": { - "version": "4.2.0", - "packageName": "unfetch", - "hash": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==" - } - }, - "npm:unherit": { - "type": "npm", - "name": "npm:unherit", - "data": { - "version": "1.1.3", - "packageName": "unherit", - "hash": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==" - } - }, - "npm:unicode-canonical-property-names-ecmascript": { - "type": "npm", - "name": "npm:unicode-canonical-property-names-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-canonical-property-names-ecmascript", - "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - } - }, - "npm:unicode-match-property-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-match-property-ecmascript", - "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - } - }, - "npm:unicode-match-property-value-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-value-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-match-property-value-ecmascript", - "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - } - }, - "npm:unicode-property-aliases-ecmascript": { - "type": "npm", - "name": "npm:unicode-property-aliases-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-property-aliases-ecmascript", - "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - } - }, - "npm:unified@9.2.0": { - "type": "npm", - "name": "npm:unified@9.2.0", - "data": { - "version": "9.2.0", - "packageName": "unified", - "hash": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==" - } - }, - "npm:unified": { - "type": "npm", - "name": "npm:unified", - "data": { - "version": "6.2.0", - "packageName": "unified", - "hash": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==" - } - }, - "npm:union-value": { - "type": "npm", - "name": "npm:union-value", - "data": { - "version": "1.0.1", - "packageName": "union-value", - "hash": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "1.1.1", - "packageName": "unique-filename", - "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" - } - }, - "npm:unique-filename@2.0.1": { - "type": "npm", - "name": "npm:unique-filename@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "unique-filename", - "hash": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" - } - }, - "npm:unique-filename@3.0.0": { - "type": "npm", - "name": "npm:unique-filename@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "unique-filename", - "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "2.0.2", - "packageName": "unique-slug", - "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" - } - }, - "npm:unique-slug@3.0.0": { - "type": "npm", - "name": "npm:unique-slug@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "unique-slug", - "hash": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" - } - }, - "npm:unique-slug@4.0.0": { - "type": "npm", - "name": "npm:unique-slug@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "unique-slug", - "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" - } - }, - "npm:unique-stream": { - "type": "npm", - "name": "npm:unique-stream", - "data": { - "version": "2.3.1", - "packageName": "unique-stream", - "hash": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==" - } - }, - "npm:unique-string": { - "type": "npm", - "name": "npm:unique-string", - "data": { - "version": "1.0.0", - "packageName": "unique-string", - "hash": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=" - } - }, - "npm:unist-builder": { - "type": "npm", - "name": "npm:unist-builder", - "data": { - "version": "2.0.3", - "packageName": "unist-builder", - "hash": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" - } - }, - "npm:unist-util-generated": { - "type": "npm", - "name": "npm:unist-util-generated", - "data": { - "version": "1.1.6", - "packageName": "unist-util-generated", - "hash": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" - } - }, - "npm:unist-util-is@3.0.0": { - "type": "npm", - "name": "npm:unist-util-is@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "unist-util-is", - "hash": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==" - } - }, - "npm:unist-util-is": { - "type": "npm", - "name": "npm:unist-util-is", - "data": { - "version": "4.0.1", - "packageName": "unist-util-is", - "hash": "sha512-7NYjErP4LJtkEptPR22wO5RsCPnHZZrop7t2SoQzjvpFedCFer4WW8ujj9GI5DkUX7yVcffXLjoURf6h2QUv6Q==" - } - }, - "npm:unist-util-position": { - "type": "npm", - "name": "npm:unist-util-position", - "data": { - "version": "3.0.4", - "packageName": "unist-util-position", - "hash": "sha512-tWvIbV8goayTjobxDIr4zVTyG+Q7ragMSMeKC3xnPl9xzIc0+she8mxXLM3JVNDDsfARPbCd3XdzkyLdo7fF3g==" - } - }, - "npm:unist-util-remove-position": { - "type": "npm", - "name": "npm:unist-util-remove-position", - "data": { - "version": "1.1.4", - "packageName": "unist-util-remove-position", - "hash": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==" - } - }, - "npm:unist-util-remove-position@2.0.1": { - "type": "npm", - "name": "npm:unist-util-remove-position@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "unist-util-remove-position", - "hash": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==" - } - }, - "npm:unist-util-remove": { - "type": "npm", - "name": "npm:unist-util-remove", - "data": { - "version": "2.1.0", - "packageName": "unist-util-remove", - "hash": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==" - } - }, - "npm:unist-util-stringify-position": { - "type": "npm", - "name": "npm:unist-util-stringify-position", - "data": { - "version": "1.1.2", - "packageName": "unist-util-stringify-position", - "hash": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==" - } - }, - "npm:unist-util-stringify-position@2.0.2": { - "type": "npm", - "name": "npm:unist-util-stringify-position@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "unist-util-stringify-position", - "hash": "sha512-nK5n8OGhZ7ZgUwoUbL8uiVRwAbZyzBsB/Ddrlbu6jwwubFza4oe15KlyEaLNMXQW1svOQq4xesUeqA85YrIUQA==" - } - }, - "npm:unist-util-visit-parents@1.1.2": { - "type": "npm", - "name": "npm:unist-util-visit-parents@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "unist-util-visit-parents", - "hash": "sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==" - } - }, - "npm:unist-util-visit-parents@2.1.2": { - "type": "npm", - "name": "npm:unist-util-visit-parents@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "unist-util-visit-parents", - "hash": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==" - } - }, - "npm:unist-util-visit-parents": { - "type": "npm", - "name": "npm:unist-util-visit-parents", - "data": { - "version": "3.0.1", - "packageName": "unist-util-visit-parents", - "hash": "sha512-umEOTkm6/y1gIqPrqet55mYqlvGXCia/v1FSc5AveLAI7jFmOAIbqiwcHcviLcusAkEQt1bq2hixCKO9ltMb2Q==" - } - }, - "npm:unist-util-visit": { - "type": "npm", - "name": "npm:unist-util-visit", - "data": { - "version": "2.0.3", - "packageName": "unist-util-visit", - "hash": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==" - } - }, - "npm:unist-util-visit@1.4.1": { - "type": "npm", - "name": "npm:unist-util-visit@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "unist-util-visit", - "hash": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==" - } - }, - "npm:universal-url": { - "type": "npm", - "name": "npm:universal-url", - "data": { - "version": "2.0.0", - "packageName": "universal-url", - "hash": "sha512-3DLtXdm/G1LQMCnPj+Aw7uDoleQttNHp2g5FnNQKR6cP6taNWS1b/Ehjjx4PVyvejKi3TJyu8iBraKM4q3JQPg==" - } - }, - "npm:universal-user-agent": { - "type": "npm", - "name": "npm:universal-user-agent", - "data": { - "version": "6.0.0", - "packageName": "universal-user-agent", - "hash": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:universalify@1.0.0": { - "type": "npm", - "name": "npm:universalify@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "universalify", - "hash": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" - } - }, - "npm:universalify@2.0.0": { - "type": "npm", - "name": "npm:universalify@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "universalify", - "hash": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" - } - }, - "npm:unset-value": { - "type": "npm", - "name": "npm:unset-value", - "data": { - "version": "1.0.0", - "packageName": "unset-value", - "hash": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=" - } - }, - "npm:untildify@2.1.0": { - "type": "npm", - "name": "npm:untildify@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "untildify", - "hash": "sha1-F+soB5h/dpUunASF/DEdBqgmouA=" - } - }, - "npm:untildify": { - "type": "npm", - "name": "npm:untildify", - "data": { - "version": "4.0.0", - "packageName": "untildify", - "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" - } - }, - "npm:unzip-response": { - "type": "npm", - "name": "npm:unzip-response", - "data": { - "version": "2.0.1", - "packageName": "unzip-response", - "hash": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" - } - }, - "npm:unzipper": { - "type": "npm", - "name": "npm:unzipper", - "data": { - "version": "0.10.11", - "packageName": "unzipper", - "hash": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==" - } - }, - "npm:upath": { - "type": "npm", - "name": "npm:upath", - "data": { - "version": "2.0.1", - "packageName": "upath", - "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" - } - }, - "npm:upath@1.1.2": { - "type": "npm", - "name": "npm:upath@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "upath", - "hash": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.0.13", - "packageName": "update-browserslist-db", - "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" - } - }, - "npm:update-notifier": { - "type": "npm", - "name": "npm:update-notifier", - "data": { - "version": "2.5.0", - "packageName": "update-notifier", - "hash": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==" - } - }, - "npm:update-section": { - "type": "npm", - "name": "npm:update-section", - "data": { - "version": "0.3.3", - "packageName": "update-section", - "hash": "sha1-RY8Xgg03gg3GDiC4bZQ5GwASMVg=" - } - }, - "npm:upper-case-first": { - "type": "npm", - "name": "npm:upper-case-first", - "data": { - "version": "1.1.2", - "packageName": "upper-case-first", - "hash": "sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=" - } - }, - "npm:upper-case": { - "type": "npm", - "name": "npm:upper-case", - "data": { - "version": "1.1.3", - "packageName": "upper-case", - "hash": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.2.2", - "packageName": "uri-js", - "hash": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==" - } - }, - "npm:urix": { - "type": "npm", - "name": "npm:urix", - "data": { - "version": "0.1.0", - "packageName": "urix", - "hash": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" - } - }, - "npm:url-loader@4.1.1": { - "type": "npm", - "name": "npm:url-loader@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "url-loader", - "hash": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" - } - }, - "npm:url-parse-lax": { - "type": "npm", - "name": "npm:url-parse-lax", - "data": { - "version": "1.0.0", - "packageName": "url-parse-lax", - "hash": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:url": { - "type": "npm", - "name": "npm:url", - "data": { - "version": "0.11.0", - "packageName": "url", - "hash": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=" - } - }, - "npm:use-disposable": { - "type": "npm", - "name": "npm:use-disposable", - "data": { - "version": "1.0.1", - "packageName": "use-disposable", - "hash": "sha512-5Sle1XEmK3lw3xyGqeIY7UKkiUgF+TxwUty7fTsqM5D5AxfQfo2ft+LY9xKCA+W5YbaBFbOkWfQsZY/y5JhInA==" - } - }, - "npm:use-immer": { - "type": "npm", - "name": "npm:use-immer", - "data": { - "version": "0.6.0", - "packageName": "use-immer", - "hash": "sha512-dFGRfvWCqPDTOt/S431ETYTg6+uxbpb7A1pptufwXVzGJY3RlXr38+3wyLNpc6SbbmAKjWl6+EP6uW74fkEsXQ==" - } - }, - "npm:use-isomorphic-layout-effect": { - "type": "npm", - "name": "npm:use-isomorphic-layout-effect", - "data": { - "version": "1.1.2", - "packageName": "use-isomorphic-layout-effect", - "hash": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==" - } - }, - "npm:use-subscription": { - "type": "npm", - "name": "npm:use-subscription", - "data": { - "version": "1.4.1", - "packageName": "use-subscription", - "hash": "sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ==" - } - }, - "npm:use": { - "type": "npm", - "name": "npm:use", - "data": { - "version": "3.1.1", - "packageName": "use", - "hash": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" - } - }, - "npm:user-home": { - "type": "npm", - "name": "npm:user-home", - "data": { - "version": "1.1.1", - "packageName": "user-home", - "hash": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=" - } - }, - "npm:utf8-byte-length": { - "type": "npm", - "name": "npm:utf8-byte-length", - "data": { - "version": "1.0.4", - "packageName": "utf8-byte-length", - "hash": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - } - }, - "npm:util.promisify": { - "type": "npm", - "name": "npm:util.promisify", - "data": { - "version": "1.0.0", - "packageName": "util.promisify", - "hash": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==" - } - }, - "npm:util@0.10.3": { - "type": "npm", - "name": "npm:util@0.10.3", - "data": { - "version": "0.10.3", - "packageName": "util", - "hash": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=" - } - }, - "npm:util@0.11.1": { - "type": "npm", - "name": "npm:util@0.11.1", - "data": { - "version": "0.11.1", - "packageName": "util", - "hash": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==" - } - }, - "npm:util": { - "type": "npm", - "name": "npm:util", - "data": { - "version": "0.12.3", - "packageName": "util", - "hash": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==" - } - }, - "npm:utila": { - "type": "npm", - "name": "npm:utila", - "data": { - "version": "0.4.0", - "packageName": "utila", - "hash": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" - } - }, - "npm:utils-merge": { - "type": "npm", - "name": "npm:utils-merge", - "data": { - "version": "1.0.1", - "packageName": "utils-merge", - "hash": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" - } - }, - "npm:uuid-browser": { - "type": "npm", - "name": "npm:uuid-browser", - "data": { - "version": "3.1.0", - "packageName": "uuid-browser", - "hash": "sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=" - } - }, - "npm:uuid@3.4.0": { - "type": "npm", - "name": "npm:uuid@3.4.0", - "data": { - "version": "3.4.0", - "packageName": "uuid", - "hash": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, - "npm:uuid@9.0.0": { - "type": "npm", - "name": "npm:uuid@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "uuid", - "hash": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" - } - }, - "npm:v8-compile-cache-lib": { - "type": "npm", - "name": "npm:v8-compile-cache-lib", - "data": { - "version": "3.0.1", - "packageName": "v8-compile-cache-lib", - "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - } - }, - "npm:v8-compile-cache": { - "type": "npm", - "name": "npm:v8-compile-cache", - "data": { - "version": "2.3.0", - "packageName": "v8-compile-cache", - "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.1.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==" - } - }, - "npm:v8flags": { - "type": "npm", - "name": "npm:v8flags", - "data": { - "version": "2.1.1", - "packageName": "v8flags", - "hash": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=" - } - }, - "npm:v8flags@3.1.3": { - "type": "npm", - "name": "npm:v8flags@3.1.3", - "data": { - "version": "3.1.3", - "packageName": "v8flags", - "hash": "sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==" - } - }, - "npm:validate-npm-package-license": { - "type": "npm", - "name": "npm:validate-npm-package-license", - "data": { - "version": "3.0.4", - "packageName": "validate-npm-package-license", - "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "5.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" - } - }, - "npm:validate-npm-package-name@3.0.0": { - "type": "npm", - "name": "npm:validate-npm-package-name@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=" - } - }, - "npm:validator": { - "type": "npm", - "name": "npm:validator", - "data": { - "version": "13.7.0", - "packageName": "validator", - "hash": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" - } - }, - "npm:value-equal": { - "type": "npm", - "name": "npm:value-equal", - "data": { - "version": "1.0.1", - "packageName": "value-equal", - "hash": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" - } - }, - "npm:value-or-function": { - "type": "npm", - "name": "npm:value-or-function", - "data": { - "version": "3.0.0", - "packageName": "value-or-function", - "hash": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" - } - }, - "npm:verror": { - "type": "npm", - "name": "npm:verror", - "data": { - "version": "1.10.0", - "packageName": "verror", - "hash": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=" - } - }, - "npm:vfile-location@2.0.6": { - "type": "npm", - "name": "npm:vfile-location@2.0.6", - "data": { - "version": "2.0.6", - "packageName": "vfile-location", - "hash": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==" - } - }, - "npm:vfile-location": { - "type": "npm", - "name": "npm:vfile-location", - "data": { - "version": "3.2.0", - "packageName": "vfile-location", - "hash": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" - } - }, - "npm:vfile-message@1.1.1": { - "type": "npm", - "name": "npm:vfile-message@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "vfile-message", - "hash": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==" - } - }, - "npm:vfile-message": { - "type": "npm", - "name": "npm:vfile-message", - "data": { - "version": "2.0.2", - "packageName": "vfile-message", - "hash": "sha512-gNV2Y2fDvDOOqq8bEe7cF3DXU6QgV4uA9zMR2P8tix11l1r7zju3zry3wZ8sx+BEfuO6WQ7z2QzfWTvqHQiwsA==" - } - }, - "npm:vfile@2.3.0": { - "type": "npm", - "name": "npm:vfile@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "vfile", - "hash": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==" - } - }, - "npm:vfile": { - "type": "npm", - "name": "npm:vfile", - "data": { - "version": "4.0.2", - "packageName": "vfile", - "hash": "sha512-yhoTU5cDMSsaeaMfJ5g0bUKYkYmZhAh9fn9TZicxqn+Cw4Z439il2v3oT9S0yjlpqlI74aFOQCt3nOV+pxzlkw==" - } - }, - "npm:vinyl-fs": { - "type": "npm", - "name": "npm:vinyl-fs", - "data": { - "version": "3.0.3", - "packageName": "vinyl-fs", - "hash": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==" - } - }, - "npm:vinyl-sourcemap": { - "type": "npm", - "name": "npm:vinyl-sourcemap", - "data": { - "version": "1.1.0", - "packageName": "vinyl-sourcemap", - "hash": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=" - } - }, - "npm:vinyl-sourcemaps-apply": { - "type": "npm", - "name": "npm:vinyl-sourcemaps-apply", - "data": { - "version": "0.2.1", - "packageName": "vinyl-sourcemaps-apply", - "hash": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=" - } - }, - "npm:vinyl": { - "type": "npm", - "name": "npm:vinyl", - "data": { - "version": "2.2.0", - "packageName": "vinyl", - "hash": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==" - } - }, - "npm:vinyl@0.5.3": { - "type": "npm", - "name": "npm:vinyl@0.5.3", - "data": { - "version": "0.5.3", - "packageName": "vinyl", - "hash": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=" - } - }, - "npm:vm-browserify": { - "type": "npm", - "name": "npm:vm-browserify", - "data": { - "version": "1.1.2", - "packageName": "vm-browserify", - "hash": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" - } - }, - "npm:void-elements": { - "type": "npm", - "name": "npm:void-elements", - "data": { - "version": "2.0.1", - "packageName": "void-elements", - "hash": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" - } - }, - "npm:vrscreenshotdiff": { - "type": "npm", - "name": "npm:vrscreenshotdiff", - "data": { - "version": "0.0.17", - "packageName": "vrscreenshotdiff", - "hash": "sha512-zfL6eUs3FbJzNhmqih/YtciAh2tf8dz9427kn6BRpdo/VC/fnCTUSl2ZzaAW0/wJaQpkWnl24PPfCa2ptuZENQ==" - } - }, - "npm:w3c-xmlserializer": { - "type": "npm", - "name": "npm:w3c-xmlserializer", - "data": { - "version": "4.0.0", - "packageName": "w3c-xmlserializer", - "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" - } - }, - "npm:walker": { - "type": "npm", - "name": "npm:walker", - "data": { - "version": "1.0.8", - "packageName": "walker", - "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" - } - }, - "npm:watchpack-chokidar2": { - "type": "npm", - "name": "npm:watchpack-chokidar2", - "data": { - "version": "2.0.1", - "packageName": "watchpack-chokidar2", - "hash": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==" - } - }, - "npm:watchpack@1.7.5": { - "type": "npm", - "name": "npm:watchpack@1.7.5", - "data": { - "version": "1.7.5", - "packageName": "watchpack", - "hash": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==" - } - }, - "npm:watchpack": { - "type": "npm", - "name": "npm:watchpack", - "data": { - "version": "2.4.0", - "packageName": "watchpack", - "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" - } - }, - "npm:wbuf": { - "type": "npm", - "name": "npm:wbuf", - "data": { - "version": "1.7.3", - "packageName": "wbuf", - "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=" - } - }, - "npm:web-namespaces": { - "type": "npm", - "name": "npm:web-namespaces", - "data": { - "version": "1.1.4", - "packageName": "web-namespaces", - "hash": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" - } - }, - "npm:web-streams-polyfill": { - "type": "npm", - "name": "npm:web-streams-polyfill", - "data": { - "version": "3.2.1", - "packageName": "web-streams-polyfill", - "hash": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==" - } - }, - "npm:webidl-conversions@3.0.1": { - "type": "npm", - "name": "npm:webidl-conversions@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" - } - }, - "npm:webidl-conversions@4.0.2": { - "type": "npm", - "name": "npm:webidl-conversions@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "webidl-conversions", - "hash": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "7.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - } - }, - "npm:webpack-bundle-analyzer": { - "type": "npm", - "name": "npm:webpack-bundle-analyzer", - "data": { - "version": "4.4.2", - "packageName": "webpack-bundle-analyzer", - "hash": "sha512-PIagMYhlEzFfhMYOzs5gFT55DkUdkyrJi/SxJp8EF3YMWhS+T9vvs2EoTetpk5qb6VsCq02eXTlRDOydRhDFAQ==" - } - }, - "npm:webpack-cli": { - "type": "npm", - "name": "npm:webpack-cli", - "data": { - "version": "4.10.0", - "packageName": "webpack-cli", - "hash": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==" - } - }, - "npm:webpack-dev-middleware": { - "type": "npm", - "name": "npm:webpack-dev-middleware", - "data": { - "version": "4.2.0", - "packageName": "webpack-dev-middleware", - "hash": "sha512-HVVpHw+5H4lfGasUKjpIkOy9TB27OyKiL13c+dhzVG1w77OQ87b408fp0qKDKQQkNGgShbStDzVJ8sK46JajXg==" - } - }, - "npm:webpack-dev-middleware@3.7.3": { - "type": "npm", - "name": "npm:webpack-dev-middleware@3.7.3", - "data": { - "version": "3.7.3", - "packageName": "webpack-dev-middleware", - "hash": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==" - } - }, - "npm:webpack-dev-middleware@5.3.1": { - "type": "npm", - "name": "npm:webpack-dev-middleware@5.3.1", - "data": { - "version": "5.3.1", - "packageName": "webpack-dev-middleware", - "hash": "sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==" - } - }, - "npm:webpack-dev-server": { - "type": "npm", - "name": "npm:webpack-dev-server", - "data": { - "version": "4.7.4", - "packageName": "webpack-dev-server", - "hash": "sha512-nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A==" - } - }, - "npm:webpack-filter-warnings-plugin@1.2.1": { - "type": "npm", - "name": "npm:webpack-filter-warnings-plugin@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "webpack-filter-warnings-plugin", - "hash": "sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==" - } - }, - "npm:webpack-hot-middleware": { - "type": "npm", - "name": "npm:webpack-hot-middleware", - "data": { - "version": "2.25.1", - "packageName": "webpack-hot-middleware", - "hash": "sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==" - } - }, - "npm:webpack-log": { - "type": "npm", - "name": "npm:webpack-log", - "data": { - "version": "2.0.0", - "packageName": "webpack-log", - "hash": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==" - } - }, - "npm:webpack-merge": { - "type": "npm", - "name": "npm:webpack-merge", - "data": { - "version": "5.7.3", - "packageName": "webpack-merge", - "hash": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==" - } - }, - "npm:webpack-merge@4.2.2": { - "type": "npm", - "name": "npm:webpack-merge@4.2.2", - "data": { - "version": "4.2.2", - "packageName": "webpack-merge", - "hash": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==" - } - }, - "npm:webpack-sources": { - "type": "npm", - "name": "npm:webpack-sources", - "data": { - "version": "1.4.3", - "packageName": "webpack-sources", - "hash": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==" - } - }, - "npm:webpack-sources@3.2.3": { - "type": "npm", - "name": "npm:webpack-sources@3.2.3", - "data": { - "version": "3.2.3", - "packageName": "webpack-sources", - "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - } - }, - "npm:webpack-virtual-modules": { - "type": "npm", - "name": "npm:webpack-virtual-modules", - "data": { - "version": "0.2.2", - "packageName": "webpack-virtual-modules", - "hash": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==" - } - }, - "npm:webpack-virtual-modules@0.4.3": { - "type": "npm", - "name": "npm:webpack-virtual-modules@0.4.3", - "data": { - "version": "0.4.3", - "packageName": "webpack-virtual-modules", - "hash": "sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==" - } - }, - "npm:webpack@4.46.0": { - "type": "npm", - "name": "npm:webpack@4.46.0", - "data": { - "version": "4.46.0", - "packageName": "webpack", - "hash": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==" - } - }, - "npm:webpack": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.83.1", - "packageName": "webpack", - "hash": "sha512-TNsG9jDScbNuB+Lb/3+vYolPplCS3bbEaJf+Bj0Gw4DhP3ioAflBb1flcRt9zsWITyvOhM96wMQNRWlSX52DgA==" - } - }, - "npm:websocket-driver": { - "type": "npm", - "name": "npm:websocket-driver", - "data": { - "version": "0.7.4", - "packageName": "websocket-driver", - "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - } - }, - "npm:websocket-extensions": { - "type": "npm", - "name": "npm:websocket-extensions", - "data": { - "version": "0.1.4", - "packageName": "websocket-extensions", - "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-fetch": { - "type": "npm", - "name": "npm:whatwg-fetch", - "data": { - "version": "2.0.4", - "packageName": "whatwg-fetch", - "hash": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" - } - }, - "npm:whatwg-fetch@3.6.2": { - "type": "npm", - "name": "npm:whatwg-fetch@3.6.2", - "data": { - "version": "3.6.2", - "packageName": "whatwg-fetch", - "hash": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" - } - }, - "npm:whatwg-mimetype": { - "type": "npm", - "name": "npm:whatwg-mimetype", - "data": { - "version": "3.0.0", - "packageName": "whatwg-mimetype", - "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:whatwg-url@5.0.0": { - "type": "npm", - "name": "npm:whatwg-url@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=" - } - }, - "npm:whatwg-url@7.0.0": { - "type": "npm", - "name": "npm:whatwg-url@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "whatwg-url", - "hash": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==" - } - }, - "npm:which-boxed-primitive": { - "type": "npm", - "name": "npm:which-boxed-primitive", - "data": { - "version": "1.0.2", - "packageName": "which-boxed-primitive", - "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" - } - }, - "npm:which-module@1.0.0": { - "type": "npm", - "name": "npm:which-module@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "which-module", - "hash": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" - } - }, - "npm:which-module": { - "type": "npm", - "name": "npm:which-module", - "data": { - "version": "2.0.0", - "packageName": "which-module", - "hash": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.4", - "packageName": "which-typed-array", - "hash": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "1.3.1", - "packageName": "which", - "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - } - }, - "npm:which@2.0.2": { - "type": "npm", - "name": "npm:which@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:which@3.0.1": { - "type": "npm", - "name": "npm:which@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "which", - "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" - } - }, - "npm:wide-align@1.1.3": { - "type": "npm", - "name": "npm:wide-align@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "wide-align", - "hash": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==" - } - }, - "npm:wide-align": { - "type": "npm", - "name": "npm:wide-align", - "data": { - "version": "1.1.5", - "packageName": "wide-align", - "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" - } - }, - "npm:widest-line@2.0.1": { - "type": "npm", - "name": "npm:widest-line@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "widest-line", - "hash": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==" - } - }, - "npm:widest-line": { - "type": "npm", - "name": "npm:widest-line", - "data": { - "version": "3.1.0", - "packageName": "widest-line", - "hash": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" - } - }, - "npm:wildcard": { - "type": "npm", - "name": "npm:wildcard", - "data": { - "version": "2.0.0", - "packageName": "wildcard", - "hash": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" - } - }, - "npm:word-wrap": { - "type": "npm", - "name": "npm:word-wrap", - "data": { - "version": "1.2.4", - "packageName": "word-wrap", - "hash": "sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==" - } - }, - "npm:wordwrap": { - "type": "npm", - "name": "npm:wordwrap", - "data": { - "version": "1.0.0", - "packageName": "wordwrap", - "hash": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" - } - }, - "npm:wordwrapjs": { - "type": "npm", - "name": "npm:wordwrapjs", - "data": { - "version": "4.0.1", - "packageName": "wordwrapjs", - "hash": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==" - } - }, - "npm:worker-farm": { - "type": "npm", - "name": "npm:worker-farm", - "data": { - "version": "1.7.0", - "packageName": "worker-farm", - "hash": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==" - } - }, - "npm:worker-rpc": { - "type": "npm", - "name": "npm:worker-rpc", - "data": { - "version": "0.1.1", - "packageName": "worker-rpc", - "hash": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==" - } - }, - "npm:workspace-tools": { - "type": "npm", - "name": "npm:workspace-tools", - "data": { - "version": "0.29.1", - "packageName": "workspace-tools", - "hash": "sha512-BVPROxNszGmyaUD2ErLWP4BpCiIkG1P//CnziOvHd27o1TeBm+7T1HKlYu89T4XGAjgPL/NP+tZ4j6aBvG/p/A==" - } - }, - "npm:workspace-tools@0.27.0": { - "type": "npm", - "name": "npm:workspace-tools@0.27.0", - "data": { - "version": "0.27.0", - "packageName": "workspace-tools", - "hash": "sha512-5mtE5Vy0Se4brAUJXKfXNtaS9jcUcH+IGF4LNU1xJr4bW1o5bK2gV0pykodB+n6V84nRtaD/4I/9w98aujm7LA==" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@^7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi@2.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "wrap-ansi", - "hash": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=" - } - }, - "npm:wrap-ansi@5.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==" - } - }, - "npm:wrap-ansi@6.2.0": { - "type": "npm", - "name": "npm:wrap-ansi@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - } - }, - "npm:write-file-atomic@5.0.1": { - "type": "npm", - "name": "npm:write-file-atomic@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "write-file-atomic", - "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "2.4.3", - "packageName": "write-file-atomic", - "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" - } - }, - "npm:write-file-atomic@3.0.3": { - "type": "npm", - "name": "npm:write-file-atomic@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "write-file-atomic", - "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" - } - }, - "npm:write-file-atomic@4.0.2": { - "type": "npm", - "name": "npm:write-file-atomic@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:write-file-webpack-plugin": { - "type": "npm", - "name": "npm:write-file-webpack-plugin", - "data": { - "version": "4.5.0", - "packageName": "write-file-webpack-plugin", - "hash": "sha512-k46VeERtaezbmjpDcMWATjKUWBrVe/ZEEm0cyvUm8FFP8A/r+dw5x3psRvkUOhqh9bqBLUlGYYbtr6luI+HeAg==" - } - }, - "npm:write-json-file": { - "type": "npm", - "name": "npm:write-json-file", - "data": { - "version": "3.2.0", - "packageName": "write-json-file", - "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" - } - }, - "npm:write-pkg": { - "type": "npm", - "name": "npm:write-pkg", - "data": { - "version": "4.0.0", - "packageName": "write-pkg", - "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.11.0", - "packageName": "ws", - "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" - } - }, - "npm:ws@7.5.6": { - "type": "npm", - "name": "npm:ws@7.5.6", - "data": { - "version": "7.5.6", - "packageName": "ws", - "hash": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==" - } - }, - "npm:ws@8.2.3": { - "type": "npm", - "name": "npm:ws@8.2.3", - "data": { - "version": "8.2.3", - "packageName": "ws", - "hash": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==" - } - }, - "npm:x-default-browser": { - "type": "npm", - "name": "npm:x-default-browser", - "data": { - "version": "0.4.0", - "packageName": "x-default-browser", - "hash": "sha1-cM8NqF2nwKtcsPFaiX8jIqa91IE=" - } - }, - "npm:x-is-string": { - "type": "npm", - "name": "npm:x-is-string", - "data": { - "version": "0.1.0", - "packageName": "x-is-string", - "hash": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=" - } - }, - "npm:xdg-basedir": { - "type": "npm", - "name": "npm:xdg-basedir", - "data": { - "version": "3.0.0", - "packageName": "xdg-basedir", - "hash": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:xml2js": { - "type": "npm", - "name": "npm:xml2js", - "data": { - "version": "0.4.23", - "packageName": "xml2js", - "hash": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" - } - }, - "npm:xml2js@0.2.8": { - "type": "npm", - "name": "npm:xml2js@0.2.8", - "data": { - "version": "0.2.8", - "packageName": "xml2js", - "hash": "sha512-ZHZBIAO55GHCn2jBYByVPHvHS+o3j8/a/qmpEe6kxO3cTnTCWC3Htq9RYJ5G4XMwMMClD2QkXA9SNdPadLyn3Q==" - } - }, - "npm:xmlbuilder@9.0.7": { - "type": "npm", - "name": "npm:xmlbuilder@9.0.7", - "data": { - "version": "9.0.7", - "packageName": "xmlbuilder", - "hash": "sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==" - } - }, - "npm:xmlbuilder": { - "type": "npm", - "name": "npm:xmlbuilder", - "data": { - "version": "11.0.1", - "packageName": "xmlbuilder", - "hash": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" - } - }, - "npm:xmlchars": { - "type": "npm", - "name": "npm:xmlchars", - "data": { - "version": "2.2.0", - "packageName": "xmlchars", - "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - } - }, - "npm:xpath.js": { - "type": "npm", - "name": "npm:xpath.js", - "data": { - "version": "1.1.0", - "packageName": "xpath.js", - "hash": "sha512-jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ==" - } - }, - "npm:xstate": { - "type": "npm", - "name": "npm:xstate", - "data": { - "version": "4.33.1", - "packageName": "xstate", - "hash": "sha512-C9A3esyOuw/xRpwQUkG2e1Gjd8sZYh42t66COq8DaJgaaLOqmE8zWRH1ouL9mHtQ3WV//uT5Ki3ijHGSUdLiww==" - } - }, - "npm:xtend": { - "type": "npm", - "name": "npm:xtend", - "data": { - "version": "4.0.2", - "packageName": "xtend", - "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - } - }, - "npm:xtend@3.0.0": { - "type": "npm", - "name": "npm:xtend@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "xtend", - "hash": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=" - } - }, - "npm:y18n@3.2.2": { - "type": "npm", - "name": "npm:y18n@3.2.2", - "data": { - "version": "3.2.2", - "packageName": "y18n", - "hash": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "4.0.3", - "packageName": "y18n", - "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" - } - }, - "npm:y18n@5.0.5": { - "type": "npm", - "name": "npm:y18n@5.0.5", - "data": { - "version": "5.0.5", - "packageName": "y18n", - "hash": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==" - } - }, - "npm:yallist@2.1.2": { - "type": "npm", - "name": "npm:yallist@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "yallist", - "hash": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" - } - }, - "npm:yallist@3.1.1": { - "type": "npm", - "name": "npm:yallist@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "13.1.2", - "packageName": "yargs-parser", - "hash": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==" - } - }, - "npm:yargs-parser@20.2.4": { - "type": "npm", - "name": "npm:yargs-parser@20.2.4", - "data": { - "version": "20.2.4", - "packageName": "yargs-parser", - "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" - } - }, - "npm:yargs-parser@21.1.1": { - "type": "npm", - "name": "npm:yargs-parser@21.1.1", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yargs-parser@18.1.3": { - "type": "npm", - "name": "npm:yargs-parser@18.1.3", - "data": { - "version": "18.1.3", - "packageName": "yargs-parser", - "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" - } - }, - "npm:yargs-parser@5.0.0": { - "type": "npm", - "name": "npm:yargs-parser@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "yargs-parser", - "hash": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=" - } - }, - "npm:yargs-unparser@1.6.0": { - "type": "npm", - "name": "npm:yargs-unparser@1.6.0", - "data": { - "version": "1.6.0", - "packageName": "yargs-unparser", - "hash": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==" - } - }, - "npm:yargs-unparser": { - "type": "npm", - "name": "npm:yargs-unparser", - "data": { - "version": "2.0.0", - "packageName": "yargs-unparser", - "hash": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "13.3.2", - "packageName": "yargs", - "hash": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==" - } - }, - "npm:yargs@16.2.0": { - "type": "npm", - "name": "npm:yargs@16.2.0", - "data": { - "version": "16.2.0", - "packageName": "yargs", - "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" - } - }, - "npm:yargs@15.4.1": { - "type": "npm", - "name": "npm:yargs@15.4.1", - "data": { - "version": "15.4.1", - "packageName": "yargs", - "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" - } - }, - "npm:yargs@17.7.2": { - "type": "npm", - "name": "npm:yargs@17.7.2", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yargs@7.1.0": { - "type": "npm", - "name": "npm:yargs@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "yargs", - "hash": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=" - } - }, - "npm:yauzl": { - "type": "npm", - "name": "npm:yauzl", - "data": { - "version": "2.10.0", - "packageName": "yauzl", - "hash": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=" - } - }, - "npm:ylru": { - "type": "npm", - "name": "npm:ylru", - "data": { - "version": "1.3.2", - "packageName": "ylru", - "hash": "sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA==" - } - }, - "npm:yn": { - "type": "npm", - "name": "npm:yn", - "data": { - "version": "3.1.1", - "packageName": "yn", - "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:yocto-queue@1.0.0": { - "type": "npm", - "name": "npm:yocto-queue@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "yocto-queue", - "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - }, - "npm:z-schema": { - "type": "npm", - "name": "npm:z-schema", - "data": { - "version": "5.0.2", - "packageName": "z-schema", - "hash": "sha512-40TH47ukMHq5HrzkeVE40Ad7eIDKaRV2b+Qpi2prLc9X9eFJFzV7tMe5aH12e6avaSS/u5l653EQOv+J9PirPw==" - } - }, - "npm:zwitch": { - "type": "npm", - "name": "npm:zwitch", - "data": { - "version": "1.0.5", - "packageName": "zwitch", - "hash": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" - } - } - }, - "dependencies": [ - { - "source": "npm:@actions/core", - "target": "npm:@actions/http-client", - "type": "static" - }, - { - "source": "npm:@actions/core", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@actions/github", - "target": "npm:@actions/http-client", - "type": "static" - }, - { - "source": "npm:@actions/github", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@actions/github", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@actions/github", - "target": "npm:@octokit/plugin-rest-endpoint-methods", - "type": "static" - }, - { - "source": "npm:@actions/http-client", - "target": "npm:tunnel", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/gen-mapping@0.1.1", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@azure/abort-controller", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/core-asynciterator-polyfill", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/core-rest-pipeline", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/core-tracing@1.0.0-preview.11", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@azure/core-tracing@1.0.0-preview.8", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@types/node-fetch", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@types/tunnel", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:form-data@3.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:tough-cookie@4.1.2", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:tunnel", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:xml2js", - "type": "static" - }, - { - "source": "npm:@azure/core-lro", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-lro", - "target": "npm:@azure/core-http", - "type": "static" - }, - { - "source": "npm:@azure/core-lro", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:@azure/core-lro", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@azure/core-paging", - "target": "npm:@azure/core-asynciterator-polyfill", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:http-proxy-agent@4.0.1", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:http-proxy-agent@4.0.1", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.11", - "target": "npm:@opencensus/web-types", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.11", - "target": "npm:@opentelemetry/api@1.0.0-rc.0", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.11", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing", - "target": "npm:@opentelemetry/api@1.0.3", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.8", - "target": "npm:@opencensus/web-types", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.8", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.8", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@azure/core-xml", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-xml", - "target": "npm:xml2js", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-client", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-paging", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-rest-pipeline", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-xml", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@azure/logger", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/core-http", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/core-lro", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/core-paging", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/core-tracing@1.0.0-preview.8", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@babel/code-frame@7.12.11", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-hoist-variables", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-optimise-call-expression", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-split-export-declaration", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-default-from", - "target": "npm:@babel/plugin-syntax-export-default-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx@7.12.1", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-display-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx-development", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-pure-annotations", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-pure-annotations", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:regenerator-transform", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/polyfill", - "target": "npm:core-js@2.6.11", - "type": "static" - }, - { - "source": "npm:@babel/polyfill", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@babel/polyfill", - "target": "npm:core-js@2.6.11", - "type": "static" - }, - { - "source": "npm:@babel/polyfill", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx-development", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-pure-annotations", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx-development", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-pure-annotations", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:find-cache-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:find-cache-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@babel/runtime-corejs3", - "target": "npm:core-js-pure", - "type": "static" - }, - { - "source": "npm:@babel/runtime-corejs3", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@charlietango/use-script", - "target": "npm:@charlietango/use-client-hydrated", - "type": "static" - }, - { - "source": "npm:@cnakazawa/watch", - "target": "npm:exec-sh", - "type": "static" - }, - { - "source": "npm:@cnakazawa/watch", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:@cspotcode/source-map-support", - "target": "npm:@jridgewell/trace-mapping@0.3.9", - "type": "static" - }, - { - "source": "npm:@cypress/react", - "target": "npm:@cypress/mount-utils", - "type": "static" - }, - { - "source": "npm:@cypress/react", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@cypress/react", - "target": "npm:find-webpack", - "type": "static" - }, - { - "source": "npm:@cypress/react", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:form-data@2.3.3", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:http-signature", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:qs@6.5.3", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@cypress/webpack-dev-server", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@cypress/webpack-dev-server", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@cypress/webpack-dev-server", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:@dnd-kit/accessibility", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@dnd-kit/core", - "target": "npm:@dnd-kit/accessibility", - "type": "static" - }, - { - "source": "npm:@dnd-kit/core", - "target": "npm:@dnd-kit/utilities", - "type": "static" - }, - { - "source": "npm:@dnd-kit/core", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@dnd-kit/sortable", - "target": "npm:@dnd-kit/utilities", - "type": "static" - }, - { - "source": "npm:@dnd-kit/sortable", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@dnd-kit/utilities", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@dnd-kit/utilities", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@dsherret/to-absolute-glob", - "target": "npm:is-absolute", - "type": "static" - }, - { - "source": "npm:@dsherret/to-absolute-glob", - "target": "npm:is-negated-glob", - "type": "static" - }, - { - "source": "npm:@effect/io", - "target": "npm:@effect/data", - "type": "static" - }, - { - "source": "npm:@effect/io", - "target": "npm:@effect/data", - "type": "static" - }, - { - "source": "npm:@effect/match", - "target": "npm:@effect/data", - "type": "static" - }, - { - "source": "npm:@effect/match", - "target": "npm:@effect/schema", - "type": "static" - }, - { - "source": "npm:@effect/schema", - "target": "npm:@effect/data", - "type": "static" - }, - { - "source": "npm:@effect/schema", - "target": "npm:@effect/io", - "type": "static" - }, - { - "source": "npm:@effect/schema", - "target": "npm:fast-check", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/sheet", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/stylis", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/weak-memoize", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/sheet", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/stylis", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/weak-memoize", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:@emotion/sheet@1.0.1", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:@emotion/utils@1.0.0", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:@emotion/weak-memoize", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/cache", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/css", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/serialize", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/sheet", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/css", - "target": "npm:@emotion/serialize", - "type": "static" - }, - { - "source": "npm:@emotion/css", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/css", - "target": "npm:babel-plugin-emotion", - "type": "static" - }, - { - "source": "npm:@emotion/css", - "target": "npm:@emotion/serialize", - "type": "static" - }, - { - "source": "npm:@emotion/css", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/css", - "target": "npm:babel-plugin-emotion", - "type": "static" - }, - { - "source": "npm:@emotion/is-prop-valid", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:@emotion/hash", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:@emotion/unitless", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:csstype@2.6.19", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:@emotion/hash@0.8.0", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:@emotion/unitless", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:@emotion/utils@1.0.0", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@es-joy/jsdoccomment", - "target": "npm:comment-parser", - "type": "static" - }, - { - "source": "npm:@es-joy/jsdoccomment", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:@es-joy/jsdoccomment", - "target": "npm:jsdoc-type-pratt-parser", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals@13.12.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore@4.0.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:@floating-ui/dom", - "target": "npm:@floating-ui/core", - "type": "static" - }, - { - "source": "npm:@fluentui/dom-utilities@1.1.1", - "target": "npm:@uifabric/set-version", - "type": "static" - }, - { - "source": "npm:@fluentui/dom-utilities@1.1.1", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@fluentui/react-icons", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "npm:@fluentui/react-icons", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@linaria/babel-preset", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@linaria/shaker", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@linaria/babel-preset", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@linaria/shaker", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:@emotion/hash@0.9.1", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:@griffel/style-types", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:rtl-css-js", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@griffel/eslint-plugin", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@griffel/eslint-plugin", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/jest-serializer", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/jest-serializer", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/react", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/react", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/react", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/react", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/shadow-dom", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/shadow-dom", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/style-types", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-loader", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-loader", - "target": "npm:@griffel/babel-preset", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-loader", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-loader", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:acorn@5.7.4", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:css", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:normalize-path@2.1.1", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/map-sources", - "target": "npm:normalize-path@2.1.1", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/map-sources", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:@hot-loader/react-dom@17.0.2", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:@hot-loader/react-dom@17.0.2", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:@hot-loader/react-dom@17.0.2", - "target": "npm:scheduler", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-changed-files", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve-dependencies", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@sinonjs/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument@6.0.0", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument@6.0.0", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument@6.0.0", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:jest-haste-map@26.6.2", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:jest-regex-util@26.0.0", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:jest-util@26.6.2", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:write-file-atomic@3.0.3", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:write-file-atomic@4.0.2", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/istanbul-reports@1.1.1", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/yargs@15.0.13", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/yargs@15.0.13", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/yargs@17.0.22", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping@0.1.1", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping@0.1.1", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:@lerna/child-process", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:init-package-json", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:pify@5.0.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-proposal-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/core", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/logger", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/utils", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:cosmiconfig@5.2.1", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:source-map@0.7.3", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:stylis@3.5.4", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-proposal-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/core", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/logger", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/utils", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:cosmiconfig@5.2.1", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:source-map@0.7.3", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:stylis@3.5.4", - "type": "static" - }, - { - "source": "npm:@linaria/core", - "target": "npm:@linaria/logger", - "type": "static" - }, - { - "source": "npm:@linaria/core", - "target": "npm:@linaria/utils", - "type": "static" - }, - { - "source": "npm:@linaria/logger", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@linaria/logger", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@linaria/preeval", - "target": "npm:@linaria/babel-preset", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@linaria/babel-preset", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@linaria/logger", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@linaria/preeval", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:babel-plugin-transform-react-remove-prop-types", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:ts-invariant", - "type": "static" - }, - { - "source": "npm:@mdx-js/loader", - "target": "npm:@mdx-js/mdx", - "type": "static" - }, - { - "source": "npm:@mdx-js/loader", - "target": "npm:@mdx-js/react", - "type": "static" - }, - { - "source": "npm:@mdx-js/loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/core@7.12.9", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/plugin-syntax-jsx@7.12.1", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@mdx-js/util", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:babel-plugin-extract-import-names", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:camelcase-css", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:detab", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:hast-util-raw", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:lodash.uniq", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:mdast-util-to-hast", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-footnotes", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-mdx", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-parse@8.0.3", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-squeeze-paragraphs", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:style-to-object", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unified@9.2.0", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unist-builder", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/core@7.12.9", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/plugin-syntax-jsx@7.12.1", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@mdx-js/util", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:babel-plugin-extract-import-names", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:camelcase-css", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:detab", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:hast-util-raw", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:lodash.uniq", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:mdast-util-to-hast", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-footnotes", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-mdx", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-parse@8.0.3", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-squeeze-paragraphs", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:style-to-object", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unified@9.2.0", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unist-builder", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor-model", - "target": "npm:@microsoft/tsdoc", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor-model", - "target": "npm:@microsoft/tsdoc-config", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor-model", - "target": "npm:@rushstack/node-core-library", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@microsoft/api-extractor-model", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@microsoft/tsdoc", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@microsoft/tsdoc-config", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@rushstack/node-core-library", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@rushstack/rig-package", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@rushstack/ts-command-line", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:colors", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:resolve@1.17.0", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:semver@7.3.8", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@nevware21/ts-async", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-common", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-common", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-common", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-common", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-core-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-core-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-core-js", - "target": "npm:@nevware21/ts-async", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-core-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@nevware21/ts-async", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-shims", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-analytics-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-channel-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-dependencies-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-properties-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@nevware21/ts-async", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/dynamicproto-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@microsoft/eslint-plugin-sdl", - "target": "npm:eslint-plugin-node", - "type": "static" - }, - { - "source": "npm:@microsoft/eslint-plugin-sdl", - "target": "npm:eslint-plugin-react@7.24.0", - "type": "static" - }, - { - "source": "npm:@microsoft/eslint-plugin-sdl", - "target": "npm:eslint-plugin-security", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-foundation", - "target": "npm:@microsoft/fast-element", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-foundation", - "target": "npm:@microsoft/fast-web-utilities", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-foundation", - "target": "npm:tabbable", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-foundation", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-web-utilities", - "target": "npm:exenv-es6", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-web-utilities", - "target": "npm:exenv-es6", - "type": "static" - }, - { - "source": "npm:@microsoft/loader-load-themed-styles", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:@microsoft/tsdoc-config", - "target": "npm:@microsoft/tsdoc@0.14.2", - "type": "static" - }, - { - "source": "npm:@microsoft/tsdoc-config", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:@microsoft/tsdoc-config", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:@microsoft/tsdoc-config", - "target": "npm:resolve@1.19.0", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-version-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:ext-name", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:file-type", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:filenamify@5.1.1", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:os-filter-obj", - "type": "static" - }, - { - "source": "npm:@mrmlnc/readdir-enhanced", - "target": "npm:call-me-maybe", - "type": "static" - }, - { - "source": "npm:@mrmlnc/readdir-enhanced", - "target": "npm:glob-to-regexp@0.3.0", - "type": "static" - }, - { - "source": "npm:@nevware21/ts-async", - "target": "npm:@nevware21/ts-utils", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - }, - { - "source": "npm:@npmcli/fs@2.1.2", - "target": "npm:@gar/promisify", - "type": "static" - }, - { - "source": "npm:@npmcli/fs@2.1.2", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@npmcli/fs", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:promise-retry@1.1.1", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:@npmcli/promise-spawn@6.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:npm-pick-manifest@8.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:which@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents@1.0.7", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents@1.0.7", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled@3.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file@2.0.1", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file@2.0.1", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:@npmcli/promise-spawn@6.0.2", - "target": "npm:which@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/promise-spawn@6.0.2", - "target": "npm:which@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/promise-spawn@6.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:read-package-json-fast@3.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:which@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/promise-spawn@6.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:read-package-json-fast@3.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:which@3.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script@1.3.1", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script@1.3.1", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script@1.3.1", - "target": "npm:node-gyp@6.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script@1.3.1", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nrwl/jest", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nrwl/js", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nrwl/linter", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nrwl/node", - "target": "npm:@nx/node", - "type": "static" - }, - { - "source": "npm:@nrwl/nx-plugin", - "target": "npm:@nx/plugin", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nrwl/workspace", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nrwl/jest", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@phenomnomnominal/tsquery@5.0.1", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:identity-obj-proxy", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nrwl/js", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@phenomnomnominal/tsquery@5.0.1", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-const-enum", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-transform-typescript-metadata", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fast-glob@3.2.7", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-package-arg@11.0.1", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:source-map-support@0.5.19", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tsconfig-paths@4.2.0", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@nrwl/linter", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@phenomnomnominal/tsquery@5.0.1", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:typescript@5.1.6", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nrwl/node", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nrwl/nx-plugin", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@phenomnomnominal/tsquery@5.0.1", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nrwl/workspace", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:@octokit/auth-token", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/auth-token@3.0.1", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/auth-token", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/graphql", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:before-after-hook", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/auth-token", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/graphql", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:before-after-hook", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/auth-token@3.0.1", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/graphql@5.0.1", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/request@6.2.1", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/request-error@3.0.1", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/types@9.3.2", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:before-after-hook", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint@7.0.2", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint@7.0.2", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint@7.0.2", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/graphql@5.0.1", - "target": "npm:@octokit/request@6.2.1", - "type": "static" - }, - { - "source": "npm:@octokit/graphql@5.0.1", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/graphql@5.0.1", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest@6.1.2", - "target": "npm:@octokit/tsconfig", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest@6.1.2", - "target": "npm:@octokit/types@9.3.2", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", - "target": "npm:@octokit/types@10.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:@octokit/request-error@3.0.1", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/request-error@3.0.1", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/request-error@3.0.1", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/endpoint", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/endpoint", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:@octokit/endpoint@7.0.2", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:@octokit/request-error@3.0.1", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:universal-user-agent", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-rest-endpoint-methods", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-rest-endpoint-methods", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-rest-endpoint-methods", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/core@4.2.4", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-paginate-rest@6.1.2", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/core@4.2.4", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-paginate-rest@6.1.2", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", - "type": "static" - }, - { - "source": "npm:@octokit/types@10.0.0", - "target": "npm:@octokit/openapi-types", - "type": "static" - }, - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types@12.11.0", - "type": "static" - }, - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types@12.11.0", - "type": "static" - }, - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types@12.11.0", - "type": "static" - }, - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types@12.11.0", - "type": "static" - }, - { - "source": "npm:@octokit/types@7.5.0", - "target": "npm:@octokit/openapi-types@13.12.0", - "type": "static" - }, - { - "source": "npm:@octokit/types@9.3.2", - "target": "npm:@octokit/openapi-types", - "type": "static" - }, - { - "source": "npm:@octokit/types@9.3.2", - "target": "npm:@octokit/openapi-types", - "type": "static" - }, - { - "source": "npm:@opentelemetry/api", - "target": "npm:@opentelemetry/context-base", - "type": "static" - }, - { - "source": "npm:@parcel/watcher", - "target": "npm:node-addon-api", - "type": "static" - }, - { - "source": "npm:@parcel/watcher", - "target": "npm:node-gyp-build", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:@types/esquery", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery@5.0.1", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:common-path-prefix", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:core-js-pure", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:source-map@0.7.3", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:@typescript-eslint/eslint-plugin", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:eslint-plugin-jest@25.2.4", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:eslint-plugin-react", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:@types/estree@0.0.39", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:estree-walker@1.0.1", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:@types/node@12.20.24", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:colors", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:import-lazy", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:resolve@1.17.0", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:semver@7.3.8", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:timsort", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:z-schema", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:@types/node@12.20.24", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:colors", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:import-lazy", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:resolve@1.17.0", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:semver@7.3.8", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:z-schema", - "type": "static" - }, - { - "source": "npm:@rushstack/package-deps-hash", - "target": "npm:@rushstack/node-core-library@3.50.1", - "type": "static" - }, - { - "source": "npm:@rushstack/package-deps-hash", - "target": "npm:@rushstack/node-core-library@3.50.1", - "type": "static" - }, - { - "source": "npm:@rushstack/rig-package", - "target": "npm:resolve@1.17.0", - "type": "static" - }, - { - "source": "npm:@rushstack/rig-package", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:@rushstack/ts-command-line", - "target": "npm:@types/argparse", - "type": "static" - }, - { - "source": "npm:@rushstack/ts-command-line", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:@rushstack/ts-command-line", - "target": "npm:colors", - "type": "static" - }, - { - "source": "npm:@rushstack/ts-command-line", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:@sigstore/bundle", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:tuf-js", - "type": "static" - }, - { - "source": "npm:@sinonjs/commons", - "target": "npm:type-detect", - "type": "static" - }, - { - "source": "npm:@sinonjs/fake-timers", - "target": "npm:@sinonjs/commons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:react-sizeme", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:polished", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:react-inspector", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:uuid-browser", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@jest/transform@26.6.2", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@mdx-js/react", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/docs-tools", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/mdx1-csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/postinstall", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/source-loader", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:remark-external-links", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:remark-slug", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-actions", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-backgrounds", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-controls", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-docs", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-measure", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-outline", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-toolbars", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-viewport", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:copy-to-clipboard", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:react-colorful", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:react-lifecycles-compat", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:react-select", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:store2", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:store2", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/client-api", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/ui", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:autoprefixer@9.8.6", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:case-sensitive-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:css-loader@3.6.0", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:file-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:glob-promise", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:html-webpack-plugin@4.5.2", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:pnp-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:postcss-flexbugs-fixes", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:postcss-loader@4.3.0", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:raw-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:stable", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:style-loader@1.3.0", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:terser-webpack-plugin@4.2.3", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:url-loader@4.1.1", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack@4.46.0", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack-dev-middleware@3.7.3", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack-filter-warnings-plugin@1.2.1", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack-hot-middleware", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack-virtual-modules", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/client-api", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:babel-plugin-named-exports-order", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:browser-assert", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:case-sensitive-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:fork-ts-checker-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:glob-promise", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:html-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:path-browserify", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:stable", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:webpack-hot-middleware", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:webpack-virtual-modules@0.4.3", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/channels", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/channels", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/channels", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/channels", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/channels", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/channels", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:store2", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:synchronous-promise", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/client-logger", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/client-logger", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/channel-websocket", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/client-api", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/ui", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:airbnb-js-shims", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:ansi-to-html", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:unfetch", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-export-default-from", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-optional-chaining", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-private-methods", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/register", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@types/pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:babel-plugin-macros@3.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:babel-plugin-polyfill-corejs3@0.1.7", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:file-system-cache", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:fork-ts-checker-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:interpret@2.2.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:lazy-universal-dotenv", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:pkg-dir@5.0.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:webpack@4.46.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-events", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/core-events", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@discoveryjs/json-ext", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/builder-webpack4", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/core-client", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/csf-tools", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/manager-webpack4", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/telemetry", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@types/node-fetch", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@types/pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:better-opn", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:boxen@5.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:commander@6.2.1", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:cpy", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:serve-favicon", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:webpack@4.46.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:x-default-browser", - "type": "static" - }, - { - "source": "npm:@storybook/core", - "target": "npm:@storybook/core-client", - "type": "static" - }, - { - "source": "npm:@storybook/core", - "target": "npm:@storybook/core-server", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@storybook/mdx1-csf", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/csf", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/core", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/docs-tools", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:html-loader", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:react@16.14.0", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:react-dom@16.14.0", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/core-client", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/ui", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:case-sensitive-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:css-loader@3.6.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:file-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:html-webpack-plugin@4.5.2", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:pnp-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:style-loader@1.3.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:terser-webpack-plugin@4.2.3", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:url-loader@4.1.1", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:webpack@4.46.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:webpack-dev-middleware@3.7.3", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:webpack-virtual-modules", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/core-client", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/ui", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:case-sensitive-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:html-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:webpack-virtual-modules@0.4.3", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@mdx-js/mdx", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:js-string-escape", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:@types/npmlog", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:npmlog@5.0.1", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/postinstall", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:ansi-to-html", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:synchronous-promise", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:unfetch", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:endent", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:flat-cache", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:react-docgen-typescript", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@babel/preset-flow", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@pmmmwh/react-refresh-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/core", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/docs-tools", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/react-docgen-typescript-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@types/estree@0.0.51", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:acorn@7.4.1", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:acorn-walk@7.2.0", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:babel-plugin-add-react-displayname", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:babel-plugin-react-docgen", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:html-tags", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:react-element-to-jsx-string", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:react-refresh", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/semver", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/semver", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:stable", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:synchronous-promise", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:detect-package-manager", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:fetch-retry", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:isomorphic-unfetch@3.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@mole-inc/bin-wrapper", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:commander@7.2.0", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:source-map@0.7.3", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/types", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-arm64@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-x64@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm-gnueabihf@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-gnu@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-musl@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-gnu@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-musl@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-arm64-msvc@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-ia32-msvc@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:@swc/helpers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@swc/helpers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@szmarczak/http-timer", - "target": "npm:defer-to-connect", - "type": "static" - }, - { - "source": "npm:@szmarczak/http-timer@5.0.1", - "target": "npm:defer-to-connect", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:@types/aria-query", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:aria-query@5.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:dom-accessibility-api", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:lz-string", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:pretty-format@27.5.1", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:@types/aria-query", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:aria-query@5.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:dom-accessibility-api", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:lz-string", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:pretty-format@27.5.1", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:@types/aria-query", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:dom-accessibility-api", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:pretty-format@25.5.0", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@adobe/css-tools", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@types/testing-library__jest-dom", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:aria-query@5.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:css.escape", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:dom-accessibility-api", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@adobe/css-tools", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@types/testing-library__jest-dom", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:aria-query@5.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:css.escape", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:dom-accessibility-api", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:@types/react-dom@18.0.6", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:@types/react-test-renderer", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:react-error-boundary", - "type": "static" - }, - { - "source": "npm:@testing-library/react", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/react", - "target": "npm:@testing-library/dom", - "type": "static" - }, - { - "source": "npm:@testing-library/user-event", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:@textlint/ast-node-types", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:remark-frontmatter", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:remark-parse", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:structured-source", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:traverse", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:unified", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:@dsherret/to-absolute-glob", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:is-negated-glob", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:@tufjs/canonical-json", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.1", - "type": "static" - }, - { - "source": "npm:@types/babel-plugin-tester", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:@types/babel-plugin-tester", - "target": "npm:@types/prettier", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__helper-plugin-utils", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:@types/babel__register", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/bonjour", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:@types/chai-spies", - "target": "npm:@types/chai", - "type": "static" - }, - { - "source": "npm:@types/cheerio", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/cheerio", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/chrome-remote-interface", - "target": "npm:devtools-protocol", - "type": "static" - }, - { - "source": "npm:@types/circular-dependency-plugin", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/circular-dependency-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@types/color-convert", - "target": "npm:@types/color-name", - "type": "static" - }, - { - "source": "npm:@types/color", - "target": "npm:@types/color-convert", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/connect", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/copy-webpack-plugin", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@types/cors", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/d3-axis", - "target": "npm:@types/d3-selection", - "type": "static" - }, - { - "source": "npm:@types/d3-fetch", - "target": "npm:@types/d3-dsv", - "type": "static" - }, - { - "source": "npm:@types/d3-sankey", - "target": "npm:@types/d3-shape@1.3.8", - "type": "static" - }, - { - "source": "npm:@types/d3-scale", - "target": "npm:@types/d3-time", - "type": "static" - }, - { - "source": "npm:@types/d3-shape", - "target": "npm:@types/d3-path", - "type": "static" - }, - { - "source": "npm:@types/d3-shape@1.3.8", - "target": "npm:@types/d3-path", - "type": "static" - }, - { - "source": "npm:@types/enzyme", - "target": "npm:@types/cheerio", - "type": "static" - }, - { - "source": "npm:@types/enzyme", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@types/esquery", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/execa", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/fs-extra", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/glob-stream", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:@types/glob-stream", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/events", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/events", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/events", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/globby", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/graphviz", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-babel", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-cache", - "target": "npm:@types/gulp-util", - "type": "static" - }, - { - "source": "npm:@types/gulp-cache", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-cache", - "target": "npm:@types/vinyl", - "type": "static" - }, - { - "source": "npm:@types/gulp-remember", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-sourcemaps", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-sourcemaps", - "target": "npm:@types/vinyl", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/through2", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/vinyl", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/through2", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/vinyl", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@types/gulp", - "target": "npm:@types/undertaker", - "type": "static" - }, - { - "source": "npm:@types/gulp", - "target": "npm:@types/vinyl-fs", - "type": "static" - }, - { - "source": "npm:@types/gulp", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@types/handlebars", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:@types/hast", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:@types/http-proxy", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/inquirer", - "target": "npm:@types/through", - "type": "static" - }, - { - "source": "npm:@types/inquirer", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports@1.1.1", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports@1.1.1", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@types/jest-axe", - "target": "npm:@types/jest", - "type": "static" - }, - { - "source": "npm:@types/jest-axe", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:@types/karma", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/karma", - "target": "npm:log4js", - "type": "static" - }, - { - "source": "npm:@types/keyv", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/loader-utils", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/loader-utils", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@types/mdast", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:@types/micromatch", - "target": "npm:@types/braces", - "type": "static" - }, - { - "source": "npm:@types/node-fetch", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/node-fetch", - "target": "npm:form-data@3.0.0", - "type": "static" - }, - { - "source": "npm:@types/node-fetch", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/node-fetch", - "target": "npm:form-data@3.0.0", - "type": "static" - }, - { - "source": "npm:@types/progress", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/prompts", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/react-addons-test-utils", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-custom-scrollbars", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-dom", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-dom@18.0.6", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-dom@18.0.6", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-frame-component", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-is", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-router-dom", - "target": "npm:@types/history", - "type": "static" - }, - { - "source": "npm:@types/react-router-dom", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-router-dom", - "target": "npm:@types/react-router", - "type": "static" - }, - { - "source": "npm:@types/react-router", - "target": "npm:@types/history", - "type": "static" - }, - { - "source": "npm:@types/react-router", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-syntax-highlighter", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-table", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-test-renderer", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-test-renderer", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-transition-group", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-virtualized", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react-virtualized", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-window", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@types/react@18.0.14", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react@18.0.14", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react@18.0.14", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@types/request-promise-native", - "target": "npm:@types/request", - "type": "static" - }, - { - "source": "npm:@types/request", - "target": "npm:@types/caseless", - "type": "static" - }, - { - "source": "npm:@types/request", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/request", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/request", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:@types/resolve", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/responselike", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/responselike", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/serve-index", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/sockjs", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/testing-library__jest-dom", - "target": "npm:@types/jest", - "type": "static" - }, - { - "source": "npm:@types/through2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/through", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/tunnel", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/uglify-js", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@types/undertaker", - "target": "npm:@types/undertaker-registry", - "type": "static" - }, - { - "source": "npm:@types/vinyl-fs", - "target": "npm:@types/glob-stream", - "type": "static" - }, - { - "source": "npm:@types/vinyl-fs", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/vinyl-fs", - "target": "npm:@types/vinyl", - "type": "static" - }, - { - "source": "npm:@types/vinyl", - "target": "npm:@types/expect", - "type": "static" - }, - { - "source": "npm:@types/vinyl", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/vinyl", - "target": "npm:@types/expect", - "type": "static" - }, - { - "source": "npm:@types/vinyl", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack-bundle-analyzer", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack-bundle-analyzer", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:@types/webpack-bundle-analyzer", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@types/webpack-dev-middleware", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/webpack-dev-middleware", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@types/webpack-hot-middleware", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/webpack-hot-middleware", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:@types/webpack-hot-middleware", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@types/webpack-sources", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack-sources", - "target": "npm:@types/source-list-map", - "type": "static" - }, - { - "source": "npm:@types/webpack-sources", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@types/webpack-sources", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack-sources", - "target": "npm:@types/source-list-map", - "type": "static" - }, - { - "source": "npm:@types/webpack-sources", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/tapable", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/uglify-js", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/webpack-sources", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/tapable", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/uglify-js", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/webpack-sources", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/tapable", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/uglify-js", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/webpack-sources", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/tapable", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/uglify-js", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/webpack-sources", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@types/ws", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@types/yargs@15.0.13", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@types/yargs@17.0.22", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@types/yauzl", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@5.59.1", - "target": "npm:@typescript-eslint/types@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@5.59.1", - "target": "npm:@typescript-eslint/visitor-keys@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:@typescript-eslint/types@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:@typescript-eslint/visitor-keys@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/semver@7.3.13", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys@2.0.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@5.59.1", - "target": "npm:@typescript-eslint/types@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@5.59.1", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@uifabric/set-version", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast@1.9.0", - "target": "npm:@webassemblyjs/helper-module-context", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast@1.9.0", - "target": "npm:@webassemblyjs/wast-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-code-frame", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-module-context", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/floating-point-hex-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "target": "npm:@webassemblyjs/helper-buffer@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "target": "npm:@webassemblyjs/wasm-gen@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ieee754", - "target": "npm:@xtuc/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ieee754@1.9.0", - "target": "npm:@xtuc/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/leb128", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/leb128@1.9.0", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/helper-buffer@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/wasm-gen@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/wasm-opt@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/wasm-parser@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-section", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-opt", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wast-printer@1.11.6", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/ieee754@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/leb128@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/utf8@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt@1.9.0", - "target": "npm:@webassemblyjs/helper-buffer@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt@1.9.0", - "target": "npm:@webassemblyjs/wasm-gen@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt@1.9.0", - "target": "npm:@webassemblyjs/wasm-parser@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/helper-api-error@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/ieee754@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/leb128@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/utf8@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/floating-point-hex-parser@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/helper-api-error@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/helper-code-frame", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/helper-fsm", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer@1.11.6", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer@1.11.6", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/wast-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webpack-cli/info", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:@wojtekmaj/enzyme-adapter-utils", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:enzyme-shallow-equal", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:react-test-renderer", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-utils", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-utils", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-utils", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-utils", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@xstate/react", - "target": "npm:use-isomorphic-layout-effect", - "type": "static" - }, - { - "source": "npm:@xstate/react", - "target": "npm:use-subscription", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:ability-attributes-generator", - "target": "npm:ability-attributes", - "type": "static" - }, - { - "source": "npm:ability-attributes-generator", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:ability-attributes-generator", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:ability-attributes", - "target": "npm:ability-attributes-js-constraints", - "type": "static" - }, - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:@xmldom/xmldom@0.7.9", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:axios@0.21.4", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:date-utils", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:underscore", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:xpath.js", - "type": "static" - }, - { - "source": "npm:agent-base@4.3.0", - "target": "npm:es6-promisify", - "type": "static" - }, - { - "source": "npm:agent-base@4.3.0", - "target": "npm:es6-promisify", - "type": "static" - }, - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:humanize-ms", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:humanize-ms", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:aggregate-error@4.0.1", - "target": "npm:clean-stack@4.2.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@4.0.1", - "target": "npm:indent-string@5.0.0", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:es5-shim", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:es6-shim", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:object.getownpropertydescriptors", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:promise.allsettled", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:promise.prototype.finally", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:string.prototype.padend", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:string.prototype.padstart", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:symbol.prototype.description", - "type": "static" - }, - { - "source": "npm:ajv-formats@2.1.1", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:ajv-keywords@5.1.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@4.11.8", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:ajv@4.11.8", - "target": "npm:json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@5.5.2", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:ajv@5.5.2", - "target": "npm:fast-deep-equal@1.1.0", - "type": "static" - }, - { - "source": "npm:ajv@5.5.2", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@5.5.2", - "target": "npm:json-schema-traverse@0.3.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:anchor-markdown-header", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:ansi-align@2.0.0", - "target": "npm:string-width@2.1.1", - "type": "static" - }, - { - "source": "npm:ansi-align", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:ansi-colors", - "target": "npm:ansi-wrap", - "type": "static" - }, - { - "source": "npm:ansi-cyan", - "target": "npm:ansi-wrap", - "type": "static" - }, - { - "source": "npm:ansi-escape-sequences", - "target": "npm:array-back@6.2.2", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.11.0", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.11.0", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.11.0", - "type": "static" - }, - { - "source": "npm:ansi-escapes@6.2.0", - "target": "npm:type-fest@3.11.0", - "type": "static" - }, - { - "source": "npm:ansi-gray", - "target": "npm:ansi-wrap", - "type": "static" - }, - { - "source": "npm:ansi-red", - "target": "npm:ansi-wrap", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:ansi-styles", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:ansi-styles", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:ansi-to-html", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:anymatch@2.0.0", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:anymatch@2.0.0", - "target": "npm:normalize-path@2.1.1", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:append-buffer", - "target": "npm:buffer-equal", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@2.0.0", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@2.0.0", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@3.0.1", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@3.0.1", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:argparse", - "target": "npm:sprintf-js", - "type": "static" - }, - { - "source": "npm:argparse", - "target": "npm:sprintf-js", - "type": "static" - }, - { - "source": "npm:aria-query", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:aria-query", - "target": "npm:@babel/runtime-corejs3", - "type": "static" - }, - { - "source": "npm:arr-diff@1.1.0", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:arr-diff@1.1.0", - "target": "npm:array-slice@0.2.3", - "type": "static" - }, - { - "source": "npm:arr-filter", - "target": "npm:make-iterator", - "type": "static" - }, - { - "source": "npm:arr-map", - "target": "npm:make-iterator", - "type": "static" - }, - { - "source": "npm:arr-map", - "target": "npm:make-iterator", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-initial", - "target": "npm:array-slice", - "type": "static" - }, - { - "source": "npm:array-initial", - "target": "npm:is-number@4.0.0", - "type": "static" - }, - { - "source": "npm:array-last", - "target": "npm:is-number@4.0.0", - "type": "static" - }, - { - "source": "npm:array-sort", - "target": "npm:default-compare", - "type": "static" - }, - { - "source": "npm:array-sort", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:array-sort", - "target": "npm:kind-of@5.1.0", - "type": "static" - }, - { - "source": "npm:array-union@1.0.2", - "target": "npm:array-uniq", - "type": "static" - }, - { - "source": "npm:array-union@1.0.2", - "target": "npm:array-uniq", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:asn1.js", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:asn1.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:asn1.js", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:asn1", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:assert@1.5.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:assert@1.5.0", - "target": "npm:util@0.10.3", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:es6-object-assign", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:is-nan", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:object-is", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:util", - "type": "static" - }, - { - "source": "npm:ast-types", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:stream-exhaust", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:stream-exhaust", - "type": "static" - }, - { - "source": "npm:async-retry", - "target": "npm:retry", - "type": "static" - }, - { - "source": "npm:async-settle", - "target": "npm:async-done", - "type": "static" - }, - { - "source": "npm:async", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:async", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:async", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:fraction.js", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:normalize-range", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:normalize-range", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:num2fraction", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:available-typed-arrays", - "target": "npm:array-filter", - "type": "static" - }, - { - "source": "npm:axios@0.21.4", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:azure-devops-node-api", - "target": "npm:tunnel", - "type": "static" - }, - { - "source": "npm:azure-devops-node-api", - "target": "npm:typed-rest-client", - "type": "static" - }, - { - "source": "npm:azure-storage-simple", - "target": "npm:azure-storage", - "type": "static" - }, - { - "source": "npm:azure-storage-simple", - "target": "npm:fclone", - "type": "static" - }, - { - "source": "npm:azure-storage-simple", - "target": "npm:repromise", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:browserify-mime", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:json-edm-parser", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:request", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:underscore", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:xml2js@0.2.8", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:xmlbuilder@9.0.7", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:browserify-mime", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:json-edm-parser", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:request", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:underscore", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:xml2js@0.2.8", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:xmlbuilder@9.0.7", - "type": "static" - }, - { - "source": "npm:babel-code-frame", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:babel-code-frame", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:babel-code-frame", - "target": "npm:js-tokens@3.0.2", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:babel-messages", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:detect-indent@4.0.0", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:jsesc@1.3.0", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:trim-right", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils@2.7.0", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils@2.7.0", - "type": "static" - }, - { - "source": "npm:babel-messages", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-annotate-pure-imports", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-annotate-pure-imports", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:babel-plugin-annotate-pure-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "target": "npm:@babel/helper-plugin-utils@7.10.4", - "type": "static" - }, - { - "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "target": "npm:@mdx-js/util", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:@emotion/hash", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:@emotion/serialize", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:babel-plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:find-root", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:babel-plugin-extract-import-names", - "target": "npm:@babel/helper-plugin-utils@7.10.4", - "type": "static" - }, - { - "source": "npm:babel-plugin-iife-wrap-react-components", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-iife-wrap-react-components", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:babel-plugin-iife-wrap-react-components", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:require-package-name", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:cosmiconfig@6.0.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:cosmiconfig@6.0.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:find-babel-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:pkg-up", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:reselect", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3@0.1.7", - "target": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3@0.1.7", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-react-docgen", - "target": "npm:ast-types", - "type": "static" - }, - { - "source": "npm:babel-plugin-react-docgen", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-plugin-react-docgen", - "target": "npm:react-docgen", - "type": "static" - }, - { - "source": "npm:babel-plugin-styled-components", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:babel-plugin-styled-components", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:babel-plugin-styled-components", - "target": "npm:babel-plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:babel-plugin-styled-components", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-plugin-tester", - "target": "npm:@types/babel-plugin-tester", - "type": "static" - }, - { - "source": "npm:babel-plugin-tester", - "target": "npm:lodash.mergewith", - "type": "static" - }, - { - "source": "npm:babel-plugin-tester", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:babel-plugin-tester", - "target": "npm:strip-indent", - "type": "static" - }, - { - "source": "npm:babel-plugin-transform-typescript-metadata", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-bigint", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-plugin-jest-hoist", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:babel-runtime", - "target": "npm:core-js@2.6.11", - "type": "static" - }, - { - "source": "npm:babel-runtime", - "target": "npm:regenerator-runtime@0.11.1", - "type": "static" - }, - { - "source": "npm:babel-runtime", - "target": "npm:core-js@2.6.11", - "type": "static" - }, - { - "source": "npm:babel-runtime", - "target": "npm:regenerator-runtime@0.11.1", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:babel-traverse", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:babylon", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-code-frame", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-messages", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babylon", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:globals@9.18.0", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-code-frame", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-messages", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babylon", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:globals@9.18.0", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:to-fast-properties@1.0.3", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:to-fast-properties@1.0.3", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:arr-filter", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:arr-map", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-each", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-initial", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-last", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:async-done", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:async-settle", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:now-and-later", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:arr-filter", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:arr-map", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-each", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-initial", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-last", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:async-done", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:async-settle", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:now-and-later", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:@azure/storage-blob", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:@rushstack/package-deps-hash", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:tar-fs", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:@azure/storage-blob", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:@rushstack/package-deps-hash", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:tar-fs", - "type": "static" - }, - { - "source": "npm:backfill-config", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill-config", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:backfill-config", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill-config", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:@rushstack/package-deps-hash", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:workspace-tools@0.27.0", - "type": "static" - }, - { - "source": "npm:backfill-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:backfill-logger", - "target": "npm:filenamify", - "type": "static" - }, - { - "source": "npm:backfill-logger", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill-utils-dotenv", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:backfill-utils-dotenv", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-cache", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-hasher", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-utils-dotenv", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:cache-base", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:class-utils", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:component-emitter", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:define-property@1.0.0", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:mixin-deep", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:pascalcase", - "type": "static" - }, - { - "source": "npm:bcrypt-pbkdf", - "target": "npm:tweetnacl", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:toposort", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:uuid@9.0.0", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:workspace-tools@0.27.0", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:better-opn", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:execa@0.7.0", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:bin-version", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver-truncate", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:find-versions", - "type": "static" - }, - { - "source": "npm:binary", - "target": "npm:buffers", - "type": "static" - }, - { - "source": "npm:binary", - "target": "npm:chainsaw", - "type": "static" - }, - { - "source": "npm:bindings@1.5.0", - "target": "npm:file-uri-to-path@1.0.0", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs@6.9.7", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs@6.9.7", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:array-flatten@2.1.2", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:dns-equal", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:dns-txt", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:multicast-dns", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:multicast-dns-service-types", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:ansi-align@2.0.0", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:camelcase@4.1.0", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:cli-boxes@1.0.0", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:string-width@2.1.1", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:term-size@1.2.0", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:widest-line@2.0.1", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:ansi-align", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:cli-boxes", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:term-size", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:type-fest@0.8.1", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:widest-line", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:ansi-align", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:cli-boxes", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:widest-line", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:bplist-parser", - "target": "npm:big-integer", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:fill-range@4.0.0", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:repeat-element", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:snapdragon-node", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:split-string", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:to-regex", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:fill-range@4.0.0", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:repeat-element", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:snapdragon-node", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:split-string", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:to-regex", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:brotli-size", - "target": "npm:duplexer@0.1.1", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:buffer-xor", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:evp_bytestokey", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:buffer-xor", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:evp_bytestokey", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:browserify-cipher", - "target": "npm:browserify-aes", - "type": "static" - }, - { - "source": "npm:browserify-cipher", - "target": "npm:browserify-des", - "type": "static" - }, - { - "source": "npm:browserify-cipher", - "target": "npm:evp_bytestokey", - "type": "static" - }, - { - "source": "npm:browserify-des", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:browserify-des", - "target": "npm:des.js", - "type": "static" - }, - { - "source": "npm:browserify-des", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:browserify-des", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:browserify-rsa", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:browserify-rsa", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:browserify-rsa", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:create-hmac", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:elliptic", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:parse-asn1", - "type": "static" - }, - { - "source": "npm:browserify-zlib", - "target": "npm:pako", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:bs-logger", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:bser", - "target": "npm:node-int64", - "type": "static" - }, - { - "source": "npm:buffer@4.9.1", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@4.9.1", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:buffer@4.9.1", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:builtins", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:chownr@1.1.4", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:figgy-pudding", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:mississippi", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:move-concurrently", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:ssri@6.0.2", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/move-file", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri@8.0.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/move-file", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri@8.0.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:@npmcli/fs@2.1.2", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:@npmcli/move-file@2.0.1", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:ssri@9.0.1", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:unique-filename@2.0.1", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:fs-minipass@3.0.2", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:glob@10.3.3", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:unique-filename@3.0.0", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:collection-visit", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:component-emitter", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:has-value", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:set-value", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:to-object-path", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:union-value", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:unset-value", - "type": "static" - }, - { - "source": "npm:cache-content-type", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:cache-content-type", - "target": "npm:ylru", - "type": "static" - }, - { - "source": "npm:cache-swap", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:cache-swap", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:cache-swap", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:cache-swap", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:clone-response", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:caller-callsite", - "target": "npm:callsites@2.0.0", - "type": "static" - }, - { - "source": "npm:caller-path", - "target": "npm:caller-callsite", - "type": "static" - }, - { - "source": "npm:camel-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:camel-case", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:camel-case@4.1.2", - "target": "npm:pascal-case@3.1.2", - "type": "static" - }, - { - "source": "npm:camel-case@4.1.2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:camelcase-keys@2.1.0", - "target": "npm:camelcase@2.1.1", - "type": "static" - }, - { - "source": "npm:camelcase-keys@2.1.0", - "target": "npm:map-obj", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:map-obj@4.1.0", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:quick-lru@4.0.1", - "type": "static" - }, - { - "source": "npm:capture-exit", - "target": "npm:rsvp", - "type": "static" - }, - { - "source": "npm:cardinal", - "target": "npm:ansicolors", - "type": "static" - }, - { - "source": "npm:cardinal", - "target": "npm:redeyed", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:assertion-error", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:check-error", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:deep-eql", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:get-func-name", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:loupe", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:pathval", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:type-detect", - "type": "static" - }, - { - "source": "npm:chainsaw", - "target": "npm:traverse@0.3.9", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:ansi-styles@2.2.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:has-ansi", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:supports-color@2.0.0", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:ansi-styles@2.2.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:has-ansi", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:supports-color@2.0.0", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:ansi-styles@2.2.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:has-ansi", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:supports-color@2.0.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:camel-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:constant-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:dot-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:header-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:is-lower-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:is-upper-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:lower-case-first", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:param-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:pascal-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:path-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:sentence-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:snake-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:swap-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:title-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:upper-case-first", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:htmlparser2@3.10.1", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:parse5@3.0.3", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:readdirp@3.2.0", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:fsevents@2.1.3", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:anymatch@2.0.0", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:async-each", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:braces@2.3.2", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:glob-parent@3.1.0", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:is-binary-path@1.0.1", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:readdirp@2.2.1", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:upath@1.1.2", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:fsevents@1.2.13", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:anymatch@2.0.0", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:async-each", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:braces@2.3.2", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:glob-parent@3.1.0", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:is-binary-path@1.0.1", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:readdirp@2.2.1", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:upath@1.1.2", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:fsevents@1.2.13", - "type": "static" - }, - { - "source": "npm:chrome-remote-interface", - "target": "npm:commander@2.11.0", - "type": "static" - }, - { - "source": "npm:chrome-remote-interface", - "target": "npm:ws@7.5.6", - "type": "static" - }, - { - "source": "npm:chrome-trace-event", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:cipher-base", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:cipher-base", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:cipher-base", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:cipher-base", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:cipher-base", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:cipher-base", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:class-utils", - "target": "npm:arr-union", - "type": "static" - }, - { - "source": "npm:class-utils", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:class-utils", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:class-utils", - "target": "npm:static-extend", - "type": "static" - }, - { - "source": "npm:clean-css", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:clean-css", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:clean-stack@4.2.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:clean-webpack-plugin", - "target": "npm:del@4.1.1", - "type": "static" - }, - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - }, - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - }, - { - "source": "npm:cli-cursor@2.1.0", - "target": "npm:restore-cursor@2.0.0", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:cli-table", - "target": "npm:colors@1.0.3", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi@3.0.0", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi@3.0.0", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:clipboard", - "target": "npm:good-listener", - "type": "static" - }, - { - "source": "npm:clipboard", - "target": "npm:select", - "type": "static" - }, - { - "source": "npm:clipboard", - "target": "npm:tiny-emitter", - "type": "static" - }, - { - "source": "npm:cliui@3.2.0", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:cliui@3.2.0", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:cliui@3.2.0", - "target": "npm:wrap-ansi@2.1.0", - "type": "static" - }, - { - "source": "npm:cliui@5.0.0", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:cliui@5.0.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:cliui@5.0.0", - "target": "npm:wrap-ansi@5.1.0", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:wrap-ansi@6.2.0", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - }, - { - "source": "npm:clone-response", - "target": "npm:mimic-response@1.0.1", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:co-body", - "target": "npm:inflation", - "type": "static" - }, - { - "source": "npm:co-body", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:co-body", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:co-body", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:codesandbox-import-utils", - "target": "npm:codesandbox-import-util-types", - "type": "static" - }, - { - "source": "npm:codesandbox-import-utils", - "target": "npm:istextorbinary", - "type": "static" - }, - { - "source": "npm:codesandbox-import-utils", - "target": "npm:lz-string", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:isomorphic-unfetch", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:lz-string", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:path-browserify", - "type": "static" - }, - { - "source": "npm:collection-map", - "target": "npm:arr-map", - "type": "static" - }, - { - "source": "npm:collection-map", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:collection-map", - "target": "npm:make-iterator", - "type": "static" - }, - { - "source": "npm:collection-visit", - "target": "npm:map-visit", - "type": "static" - }, - { - "source": "npm:collection-visit", - "target": "npm:object-visit", - "type": "static" - }, - { - "source": "npm:color-convert", - "target": "npm:color-name@1.1.3", - "type": "static" - }, - { - "source": "npm:color-convert", - "target": "npm:color-name@1.1.3", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-string", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - }, - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - }, - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - }, - { - "source": "npm:command-line-args", - "target": "npm:array-back", - "type": "static" - }, - { - "source": "npm:command-line-args", - "target": "npm:find-replace", - "type": "static" - }, - { - "source": "npm:command-line-args", - "target": "npm:lodash.camelcase", - "type": "static" - }, - { - "source": "npm:command-line-args", - "target": "npm:typical@4.0.0", - "type": "static" - }, - { - "source": "npm:command-line-usage", - "target": "npm:array-back@4.0.2", - "type": "static" - }, - { - "source": "npm:command-line-usage", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:command-line-usage", - "target": "npm:table-layout", - "type": "static" - }, - { - "source": "npm:command-line-usage", - "target": "npm:typical", - "type": "static" - }, - { - "source": "npm:compare-func", - "target": "npm:array-ify", - "type": "static" - }, - { - "source": "npm:compare-func", - "target": "npm:dot-prop@5.3.0", - "type": "static" - }, - { - "source": "npm:compressible", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:typedarray", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:typedarray", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:typedarray", - "type": "static" - }, - { - "source": "npm:concat-stream@2.0.0", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream@2.0.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream@2.0.0", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:concat-stream@2.0.0", - "target": "npm:typedarray", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:dot-prop", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:make-dir@1.3.0", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:unique-string", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:xdg-basedir", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:constant-case", - "target": "npm:snake-case", - "type": "static" - }, - { - "source": "npm:constant-case", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:conventional-changelog-angular", - "target": "npm:compare-func", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:add-stream", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:conventional-changelog-writer", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:get-pkg-repo", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-raw-commits", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-remote-origin-url", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-semver-tags", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:normalize-package-data@3.0.3", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:read-pkg-up@3.0.0", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:split", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter", - "target": "npm:lodash.ismatch", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter", - "target": "npm:modify-values", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:is-text-path", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:concat-stream@2.0.0", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-changelog-preset-loader", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:git-raw-commits", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:git-semver-tags", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:convert-source-map", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:convert-source-map", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:convert-source-map", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:convert-source-map", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:convert-source-map", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:depd@2.0.0", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:keygrip", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:fs-write-stream-atomic", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:iferr", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:run-queue", - "type": "static" - }, - { - "source": "npm:copy-props", - "target": "npm:each-props", - "type": "static" - }, - { - "source": "npm:copy-props", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:copy-to-clipboard", - "target": "npm:toggle-selection", - "type": "static" - }, - { - "source": "npm:copy-to-clipboard", - "target": "npm:toggle-selection", - "type": "static" - }, - { - "source": "npm:copy-to-clipboard", - "target": "npm:toggle-selection", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:serialize-javascript@5.0.1", - "type": "static" - }, - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.0.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.0.0", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.0.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.0.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@5.2.1", - "target": "npm:import-fresh@2.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@5.2.1", - "target": "npm:is-directory", - "type": "static" - }, - { - "source": "npm:cosmiconfig@5.2.1", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig@5.2.1", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:cp-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:cp-file", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:cp-file", - "target": "npm:nested-error-stacks", - "type": "static" - }, - { - "source": "npm:cp-file", - "target": "npm:p-event", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:arrify", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:cp-file", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:globby@9.2.0", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:has-glob", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:junk", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:nested-error-stacks", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:p-all", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:p-filter", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:p-map@3.0.0", - "type": "static" - }, - { - "source": "npm:create-ecdh", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:create-ecdh", - "target": "npm:elliptic", - "type": "static" - }, - { - "source": "npm:create-error-class", - "target": "npm:capture-stack-trace", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:sha.js", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:sha.js", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:sha.js", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:sha.js", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:sha.js", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:cross-env", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - }, - { - "source": "npm:cross-fetch", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:lru-cache@4.1.5", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:nice-try", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:nice-try", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command@2.0.0", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command@2.0.0", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command@2.0.0", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:browserify-cipher", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:browserify-sign", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-ecdh", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-hmac", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:diffie-hellman", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:pbkdf2", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:public-encrypt", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:randomfill", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:browserify-cipher", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:browserify-sign", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-ecdh", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-hmac", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:diffie-hellman", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:pbkdf2", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:public-encrypt", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:randomfill", - "type": "static" - }, - { - "source": "npm:css-in-js-utils", - "target": "npm:hyphenate-style-name", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:icss-utils@5.1.0", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:icss-utils@5.1.0", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-modules-extract-imports@2.0.0", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-modules-local-by-default@3.0.2", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-modules-scope@2.2.0", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-modules-values@3.0.0", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:schema-utils@2.7.0", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:css-what@5.0.1", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:nth-check@2.0.0", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils@1.5.1", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:css-to-react-native", - "target": "npm:camelize", - "type": "static" - }, - { - "source": "npm:css-to-react-native", - "target": "npm:css-color-keywords", - "type": "static" - }, - { - "source": "npm:css-to-react-native", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:source-map-resolve", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:urix", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:source-map-resolve", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:urix", - "type": "static" - }, - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - }, - { - "source": "npm:currently-unhandled", - "target": "npm:array-find-index", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/request", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/xvfb", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sinonjs__fake-timers", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sizzle", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:blob-util", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cachedir", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:check-more-types", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:commander@5.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:common-tags", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:dayjs", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:eventemitter2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:getos", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-installed-globally", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lazy-ass", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:listr2@3.14.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:ospath", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:proxy-from-env@1.0.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:request-progress", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:untildify", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:d3-array@2.12.1", - "target": "npm:internmap", - "type": "static" - }, - { - "source": "npm:d3-array@2.12.1", - "target": "npm:internmap", - "type": "static" - }, - { - "source": "npm:d3-array@2.12.1", - "target": "npm:internmap", - "type": "static" - }, - { - "source": "npm:d3-array@2.12.1", - "target": "npm:internmap", - "type": "static" - }, - { - "source": "npm:d3-contour", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:d3-dsv", - "target": "npm:commander@7.2.0", - "type": "static" - }, - { - "source": "npm:d3-dsv", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:d3-dsv", - "target": "npm:rw", - "type": "static" - }, - { - "source": "npm:d3-fetch", - "target": "npm:d3-dsv", - "type": "static" - }, - { - "source": "npm:d3-geo", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:d3-interpolate", - "target": "npm:d3-color", - "type": "static" - }, - { - "source": "npm:d3-interpolate", - "target": "npm:d3-color", - "type": "static" - }, - { - "source": "npm:d3-interpolate", - "target": "npm:d3-color", - "type": "static" - }, - { - "source": "npm:d3-sankey", - "target": "npm:d3-array@2.12.1", - "type": "static" - }, - { - "source": "npm:d3-sankey", - "target": "npm:d3-shape", - "type": "static" - }, - { - "source": "npm:d3-sankey@0.7.1", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:d3-sankey@0.7.1", - "target": "npm:d3-collection", - "type": "static" - }, - { - "source": "npm:d3-sankey@0.7.1", - "target": "npm:d3-shape", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-collection", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-color", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-interpolate", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-time@1.1.0", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-time-format@2.1.3", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-array@2.12.1", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-interpolate", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-time", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-time-format", - "type": "static" - }, - { - "source": "npm:d3-shape@3.2.0", - "target": "npm:d3-path@3.1.0", - "type": "static" - }, - { - "source": "npm:d3-shape", - "target": "npm:d3-path", - "type": "static" - }, - { - "source": "npm:d3-shape", - "target": "npm:d3-path", - "type": "static" - }, - { - "source": "npm:d3-time-format@2.1.3", - "target": "npm:d3-time@1.1.0", - "type": "static" - }, - { - "source": "npm:d3-time-format", - "target": "npm:d3-time", - "type": "static" - }, - { - "source": "npm:d3-time-format", - "target": "npm:d3-time", - "type": "static" - }, - { - "source": "npm:d3-time", - "target": "npm:d3-array@2.12.1", - "type": "static" - }, - { - "source": "npm:d3-time", - "target": "npm:d3-array@2.12.1", - "type": "static" - }, - { - "source": "npm:d3-time", - "target": "npm:d3-array@2.12.1", - "type": "static" - }, - { - "source": "npm:d", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:d", - "target": "npm:type", - "type": "static" - }, - { - "source": "npm:d", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:d", - "target": "npm:type", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:@babel/polyfill", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:@octokit/rest", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:async-retry", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:fast-json-patch", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:get-stdin", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:gitlab", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:http-proxy-agent@2.1.0", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:https-proxy-agent@2.2.4", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:hyperlinker", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:jsonpointer", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.find", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.isobject", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.keys", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.mapvalues", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:memfs-or-file-map-to-github-branch", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:node-cleanup", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:override-require", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:parse-diff", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:parse-git-config", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:parse-github-url", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:parse-link-header", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:pinpoint", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:prettyjson", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:readline-sync", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:supports-hyperlinks", - "type": "static" - }, - { - "source": "npm:dashdash", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:debug-fabulous", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:debug-fabulous", - "target": "npm:memoizee", - "type": "static" - }, - { - "source": "npm:debug-fabulous", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug@3.1.0", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug@3.2.6", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug@4.1.1", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:decamelize-keys", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:decamelize-keys", - "target": "npm:map-obj", - "type": "static" - }, - { - "source": "npm:decompress-response", - "target": "npm:mimic-response", - "type": "static" - }, - { - "source": "npm:deep-assign", - "target": "npm:is-obj", - "type": "static" - }, - { - "source": "npm:deep-eql", - "target": "npm:type-detect", - "type": "static" - }, - { - "source": "npm:default-browser-id", - "target": "npm:bplist-parser", - "type": "static" - }, - { - "source": "npm:default-browser-id", - "target": "npm:meow@3.7.0", - "type": "static" - }, - { - "source": "npm:default-browser-id", - "target": "npm:untildify@2.1.0", - "type": "static" - }, - { - "source": "npm:default-compare", - "target": "npm:kind-of@5.1.0", - "type": "static" - }, - { - "source": "npm:default-gateway", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:define-property", - "target": "npm:is-descriptor@0.1.6", - "type": "static" - }, - { - "source": "npm:define-property@1.0.0", - "target": "npm:is-descriptor", - "type": "static" - }, - { - "source": "npm:define-property@2.0.2", - "target": "npm:is-descriptor", - "type": "static" - }, - { - "source": "npm:define-property@2.0.2", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:globby@6.1.0", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:is-path-in-cwd", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:p-map@2.1.0", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:globby@10.0.2", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:p-map@3.0.0", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:globby@13.2.2", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:is-path-cwd@3.0.0", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:is-path-inside@4.0.0", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:p-map@5.5.0", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:slash@4.0.0", - "type": "static" - }, - { - "source": "npm:des.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:des.js", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:detab", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:detect-indent@4.0.0", - "target": "npm:repeating", - "type": "static" - }, - { - "source": "npm:detect-package-manager", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:address", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:address", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:diffie-hellman", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:diffie-hellman", - "target": "npm:miller-rabin", - "type": "static" - }, - { - "source": "npm:diffie-hellman", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:dir-glob@2.2.2", - "target": "npm:path-type@3.0.0", - "type": "static" - }, - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:dns-packet", - "target": "npm:ip@1.1.5", - "type": "static" - }, - { - "source": "npm:dns-packet", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:dns-txt", - "target": "npm:buffer-indexof", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:@textlint/markdown-to-ast", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:anchor-markdown-header", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:underscore", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:update-section", - "type": "static" - }, - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:doctrine@2.1.0", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:dom-converter", - "target": "npm:utila", - "type": "static" - }, - { - "source": "npm:dom-css", - "target": "npm:add-px-to-style", - "type": "static" - }, - { - "source": "npm:dom-css", - "target": "npm:prefix-style", - "type": "static" - }, - { - "source": "npm:dom-css", - "target": "npm:to-camel-case", - "type": "static" - }, - { - "source": "npm:dom-helpers", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:dom-helpers", - "target": "npm:csstype@2.6.19", - "type": "static" - }, - { - "source": "npm:dom-helpers", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:dom-helpers", - "target": "npm:csstype@2.6.19", - "type": "static" - }, - { - "source": "npm:dom-serialize", - "target": "npm:custom-event", - "type": "static" - }, - { - "source": "npm:dom-serialize", - "target": "npm:ent", - "type": "static" - }, - { - "source": "npm:dom-serialize", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:dom-serialize", - "target": "npm:void-elements", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype@1.3.1", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype@1.3.1", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:dom-serializer@1.3.2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer@1.3.2", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer@1.3.2", - "target": "npm:entities@2.0.0", - "type": "static" - }, - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:domhandler@2.4.2", - "target": "npm:domelementtype@1.3.1", - "type": "static" - }, - { - "source": "npm:domhandler@3.0.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domhandler@3.0.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils@1.5.1", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils@1.5.1", - "target": "npm:domelementtype@1.3.1", - "type": "static" - }, - { - "source": "npm:domutils@1.5.1", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils@1.5.1", - "target": "npm:domelementtype@1.3.1", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:dom-serializer@1.3.2", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:dom-serializer@1.3.2", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:dom-serializer@1.3.2", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dot-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:dot-case@3.0.4", - "target": "npm:no-case@3.0.4", - "type": "static" - }, - { - "source": "npm:dot-case@3.0.4", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:dot-prop", - "target": "npm:is-obj", - "type": "static" - }, - { - "source": "npm:dot-prop@5.3.0", - "target": "npm:is-obj@2.0.0", - "type": "static" - }, - { - "source": "npm:downshift", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:downshift", - "target": "npm:compute-scroll-into-view", - "type": "static" - }, - { - "source": "npm:downshift", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:downshift", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:duplexer2", - "target": "npm:readable-stream@1.1.14", - "type": "static" - }, - { - "source": "npm:duplexer2@0.1.4", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:stream-shift", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:stream-shift", - "type": "static" - }, - { - "source": "npm:each-props", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:each-props", - "target": "npm:object.defaults", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:ecdsa-sig-formatter", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:editions", - "target": "npm:errlop", - "type": "static" - }, - { - "source": "npm:editions", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - }, - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - }, - { - "source": "npm:element-resize-detector", - "target": "npm:batch-processor", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:brorand", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:hash.js", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:hmac-drbg", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:minimalistic-crypto-utils", - "type": "static" - }, - { - "source": "npm:encoding", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:encoding", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:endent", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:endent", - "target": "npm:fast-json-parse", - "type": "static" - }, - { - "source": "npm:endent", - "target": "npm:objectorarray", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:ws@8.2.3", - "type": "static" - }, - { - "source": "npm:enhanced-resolve@4.5.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve@4.5.0", - "target": "npm:memory-fs@0.5.0", - "type": "static" - }, - { - "source": "npm:enhanced-resolve@4.5.0", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:ansi-colors@4.1.1", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:ansi-colors@4.1.1", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:ansi-colors@4.1.1", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:ansi-colors@4.1.1", - "type": "static" - }, - { - "source": "npm:enzyme-shallow-equal", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:enzyme-shallow-equal", - "target": "npm:object-is", - "type": "static" - }, - { - "source": "npm:enzyme-to-json", - "target": "npm:@types/cheerio", - "type": "static" - }, - { - "source": "npm:enzyme-to-json", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:enzyme-to-json", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:cheerio", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:html-element-map", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-subset", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:lodash.escape@4.0.1", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:lodash.isequal", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object-is", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:raf", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:rst-selector-parser", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:string.prototype.trim", - "type": "static" - }, - { - "source": "npm:errno", - "target": "npm:prr", - "type": "static" - }, - { - "source": "npm:errno", - "target": "npm:prr", - "type": "static" - }, - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - }, - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - }, - { - "source": "npm:error-stack-parser", - "target": "npm:stackframe", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es6-promisify", - "target": "npm:es6-promise", - "type": "static" - }, - { - "source": "npm:es6-symbol", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-symbol", - "target": "npm:ext", - "type": "static" - }, - { - "source": "npm:es6-symbol", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-symbol", - "target": "npm:ext", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:esbuild-loader", - "target": "npm:esbuild@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild-loader", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:esbuild-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:esbuild-loader", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-android-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-android-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-darwin-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-darwin-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-freebsd-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-freebsd-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-32@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-arm@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-mips64le@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-ppc64le@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-riscv64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-s390x@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-netbsd-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-openbsd-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-sunos-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-windows-32@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-windows-64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-windows-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/android-arm@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/android-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/android-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/darwin-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/darwin-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/freebsd-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/freebsd-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-arm@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-ia32@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-loong64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-mips64el@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-ppc64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-riscv64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-s390x@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/netbsd-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/openbsd-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/sunos-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/win32-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/win32-ia32@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/win32-x64", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:esprima@2.7.3", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:estraverse@1.9.3", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:source-map@0.2.0", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb-base", - "target": "npm:confusing-browser-globals", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb-base", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb-base", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb", - "target": "npm:eslint-config-airbnb-base", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb", - "target": "npm:eslint-config-airbnb-base", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:tsconfig-paths@3.13.0", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:tsconfig-paths@3.13.0", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:find-up@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es@3.0.1", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es@3.0.1", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-import-resolver-node", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-module-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:tsconfig-paths@3.13.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-import-resolver-node", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-module-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:tsconfig-paths@3.13.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jest", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jest", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jest@25.2.4", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:@es-joy/jsdoccomment", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:comment-parser", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:escape-string-regexp@4.0.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:@es-joy/jsdoccomment", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:comment-parser", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:escape-string-regexp@4.0.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:ast-types-flow", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:axobject-query", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:damerau-levenshtein", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:language-tags", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:ast-types-flow", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:axobject-query", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:damerau-levenshtein", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:language-tags", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:eslint-plugin-es@3.0.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:resolve@2.0.0-next.3", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve@2.0.0-next.3", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve@2.0.0-next.3", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve@2.0.0-next.3", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:eslint-plugin-security", - "target": "npm:safe-regex", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse@4.2.0", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse@4.2.0", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse@4.2.0", - "type": "static" - }, - { - "source": "npm:eslint-scope@4.0.3", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@4.0.3", - "target": "npm:estraverse@4.2.0", - "type": "static" - }, - { - "source": "npm:eslint-utils", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - }, - { - "source": "npm:eslint-utils", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@babel/code-frame@7.12.11", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys@2.0.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals@13.12.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore@4.0.6", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator@0.9.1", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:table", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:v8-compile-cache", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn@7.4.1", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn@7.4.1", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - }, - { - "source": "npm:espree@9.6.1", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree@9.6.1", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree@9.6.1", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:esprima-extract-comments", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:event-emitter", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:event-emitter", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:evp_bytestokey", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:evp_bytestokey", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:evp_bytestokey", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:evp_bytestokey", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:human-signals@1.1.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:human-signals@1.1.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:human-signals@1.1.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:get-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:strip-eof", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:get-stream@4.1.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:strip-eof", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:executable", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:executable", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:posix-character-classes", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:to-regex", - "type": "static" - }, - { - "source": "npm:expand-tilde", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:expand-tilde", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs@6.9.7", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs@6.9.7", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:ext-list", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:ext-list", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:sort-keys-length", - "type": "static" - }, - { - "source": "npm:ext", - "target": "npm:type@2.0.0", - "type": "static" - }, - { - "source": "npm:extend-shallow@1.1.4", - "target": "npm:kind-of@1.1.0", - "type": "static" - }, - { - "source": "npm:extend-shallow", - "target": "npm:is-extendable", - "type": "static" - }, - { - "source": "npm:extend-shallow@3.0.2", - "target": "npm:assign-symbols", - "type": "static" - }, - { - "source": "npm:extend-shallow@3.0.2", - "target": "npm:is-extendable@1.0.1", - "type": "static" - }, - { - "source": "npm:extend-shallow@3.0.2", - "target": "npm:assign-symbols", - "type": "static" - }, - { - "source": "npm:extend-shallow@3.0.2", - "target": "npm:is-extendable@1.0.1", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:chardet", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:tmp@0.0.33", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:define-property@1.0.0", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:expand-brackets", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:fragment-cache", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:to-regex", - "type": "static" - }, - { - "source": "npm:extract-comments", - "target": "npm:esprima-extract-comments", - "type": "static" - }, - { - "source": "npm:extract-comments", - "target": "npm:parse-code-context", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:@types/yauzl", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:ansi-gray", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:time-stamp", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:ansi-gray", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:time-stamp", - "type": "static" - }, - { - "source": "npm:fast-check", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:@mrmlnc/readdir-enhanced", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:@nodelib/fs.stat@1.1.3", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:glob-parent@3.1.0", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-png", - "target": "npm:@types/pako", - "type": "static" - }, - { - "source": "npm:fast-png", - "target": "npm:iobuffer", - "type": "static" - }, - { - "source": "npm:fast-png", - "target": "npm:pako@2.1.0", - "type": "static" - }, - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - }, - { - "source": "npm:fault", - "target": "npm:format", - "type": "static" - }, - { - "source": "npm:fault", - "target": "npm:format", - "type": "static" - }, - { - "source": "npm:faye-websocket", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - }, - { - "source": "npm:fd-slicer", - "target": "npm:pend", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:fela-dom", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:fela-tools", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:react-addons-shallow-compare", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:shallow-equal", - "type": "static" - }, - { - "source": "npm:fela-dom", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-dom", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-dom", - "target": "npm:fela-utils", - "type": "static" - }, - { - "source": "npm:fela-dom@11.7.0", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-dom@11.7.0", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-dom@11.7.0", - "target": "npm:fela-utils@11.7.0", - "type": "static" - }, - { - "source": "npm:fela-dom@11.7.0", - "target": "npm:sort-css-media-queries", - "type": "static" - }, - { - "source": "npm:fela-plugin-custom-property", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-plugin-custom-property", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:fela-plugin-embedded", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-plugin-embedded", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:fela-plugin-fallback-value", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-plugin-fallback-value", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:fela-plugin-placeholder-prefixer", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-plugin-placeholder-prefixer", - "target": "npm:fela-plugin-custom-property", - "type": "static" - }, - { - "source": "npm:fela-plugin-rtl", - "target": "npm:rtl-css-js", - "type": "static" - }, - { - "source": "npm:fela-tools", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-tools", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-tools", - "target": "npm:fela", - "type": "static" - }, - { - "source": "npm:fela-tools", - "target": "npm:fela-utils", - "type": "static" - }, - { - "source": "npm:fela-utils", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-utils", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-utils@11.7.0", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-utils@11.7.0", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:csstype@2.6.19", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:fela-utils", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:fetch-blob", - "target": "npm:node-domexception", - "type": "static" - }, - { - "source": "npm:fetch-blob", - "target": "npm:web-streams-polyfill", - "type": "static" - }, - { - "source": "npm:fetch-blob", - "target": "npm:node-domexception", - "type": "static" - }, - { - "source": "npm:fetch-blob", - "target": "npm:web-streams-polyfill", - "type": "static" - }, - { - "source": "npm:figures", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:figures", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:figures", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - }, - { - "source": "npm:file-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:file-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:file-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:file-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:file-system-cache", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:file-system-cache", - "target": "npm:fs-extra@0.30.0", - "type": "static" - }, - { - "source": "npm:file-system-cache", - "target": "npm:ramda@0.21.0", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:readable-web-to-node-stream", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:strtok3", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:token-types", - "type": "static" - }, - { - "source": "npm:filelist", - "target": "npm:minimatch@5.0.1", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:filename-reserved-regex", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:strip-outer", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:trim-repeated", - "type": "static" - }, - { - "source": "npm:filenamify@5.1.1", - "target": "npm:filename-reserved-regex@3.0.0", - "type": "static" - }, - { - "source": "npm:filenamify@5.1.1", - "target": "npm:strip-outer@2.0.0", - "type": "static" - }, - { - "source": "npm:filenamify@5.1.1", - "target": "npm:trim-repeated@2.0.0", - "type": "static" - }, - { - "source": "npm:fill-range@4.0.0", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:fill-range@4.0.0", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:fill-range@4.0.0", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:fill-range@4.0.0", - "target": "npm:to-regex-range@2.1.1", - "type": "static" - }, - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:find-babel-config", - "target": "npm:json5@0.5.1", - "type": "static" - }, - { - "source": "npm:find-babel-config", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:pkg-dir@3.0.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:pkg-dir@3.0.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:find-replace", - "target": "npm:array-back", - "type": "static" - }, - { - "source": "npm:find-up@3.0.0", - "target": "npm:locate-path@3.0.0", - "type": "static" - }, - { - "source": "npm:find-up@3.0.0", - "target": "npm:locate-path@3.0.0", - "type": "static" - }, - { - "source": "npm:find-up@1.1.2", - "target": "npm:path-exists@2.1.0", - "type": "static" - }, - { - "source": "npm:find-up@1.1.2", - "target": "npm:pinkie-promise", - "type": "static" - }, - { - "source": "npm:find-up@2.1.0", - "target": "npm:locate-path@2.0.0", - "type": "static" - }, - { - "source": "npm:find-up@2.1.0", - "target": "npm:locate-path@2.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:locate-path@5.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:path-exists@4.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:locate-path@5.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:path-exists@4.0.0", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists@4.0.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.1.1", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.1.1", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - }, - { - "source": "npm:find-versions", - "target": "npm:semver-regex", - "type": "static" - }, - { - "source": "npm:find-webpack", - "target": "npm:debug@4.1.1", - "type": "static" - }, - { - "source": "npm:find-webpack", - "target": "npm:find-yarn-workspace-root@1.2.1", - "type": "static" - }, - { - "source": "npm:find-webpack", - "target": "npm:mocked-env", - "type": "static" - }, - { - "source": "npm:find-yarn-workspace-root@1.2.1", - "target": "npm:fs-extra@4.0.3", - "type": "static" - }, - { - "source": "npm:find-yarn-workspace-root@1.2.1", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:find-yarn-workspace-root", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:detect-file", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:is-glob@3.1.0", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:resolve-dir", - "type": "static" - }, - { - "source": "npm:findup-sync@3.0.0", - "target": "npm:detect-file", - "type": "static" - }, - { - "source": "npm:findup-sync@3.0.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:findup-sync@3.0.0", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:findup-sync@3.0.0", - "target": "npm:resolve-dir", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:object.defaults", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:parse-filepath", - "type": "static" - }, - { - "source": "npm:flamebearer", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:flamebearer", - "target": "npm:opn", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:concat-stream@2.0.0", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:flamebearer", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:n-readlines", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:puppeteer", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:flat@4.1.0", - "target": "npm:is-buffer@2.0.4", - "type": "static" - }, - { - "source": "npm:flush-write-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:flush-write-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:flush-write-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:flush-write-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:for-own", - "target": "npm:for-in", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.0.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:cosmiconfig@6.0.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:memfs@3.4.1", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:schema-utils@2.7.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:cosmiconfig@6.0.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:memfs@3.4.1", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:schema-utils@2.7.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:worker-rpc", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:form-data@3.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@3.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@3.0.0", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:formdata-polyfill", - "target": "npm:fetch-blob", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:deepmerge@2.2.1", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:react-fast-compare", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:tiny-warning", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:fragment-cache", - "target": "npm:map-cache", - "type": "static" - }, - { - "source": "npm:from2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:from2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:universalify@2.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:universalify@2.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:universalify@2.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:jsonfile@2.4.0", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:klaw", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:universalify@2.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:universalify@2.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@4.0.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@4.0.3", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@4.0.3", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify@2.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify@2.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify@2.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-minipass@1.2.7", - "target": "npm:minipass@2.9.0", - "type": "static" - }, - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:fs-minipass@3.0.2", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:fs-mkdirp-stream", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-mkdirp-stream", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:fs-write-stream-atomic", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-write-stream-atomic", - "target": "npm:iferr", - "type": "static" - }, - { - "source": "npm:fs-write-stream-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:fs-write-stream-atomic", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:fsevents@1.2.13", - "target": "npm:bindings@1.5.0", - "type": "static" - }, - { - "source": "npm:fsevents@1.2.13", - "target": "npm:nan@2.15.0", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:wide-align", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:wide-align", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:wide-align", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:adm-zip", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:https-proxy-agent@5.0.0", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:generic-names", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-lerna-packages", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:@hutson/parse-repository-url", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:get-stream@4.1.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:get-stream", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:get-stream", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:get-tsconfig", - "target": "npm:resolve-pkg-maps", - "type": "static" - }, - { - "source": "npm:getos", - "target": "npm:async@3.2.3", - "type": "static" - }, - { - "source": "npm:getpass", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:git-config-path", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:git-config-path", - "target": "npm:fs-exists-sync", - "type": "static" - }, - { - "source": "npm:git-config-path", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:dargs", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:git-remote-origin-url", - "target": "npm:gitconfiglocal", - "type": "static" - }, - { - "source": "npm:git-remote-origin-url", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:git-semver-tags", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:git-semver-tags", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:git-up", - "target": "npm:is-ssh", - "type": "static" - }, - { - "source": "npm:git-up", - "target": "npm:parse-url", - "type": "static" - }, - { - "source": "npm:git-url-parse", - "target": "npm:git-up", - "type": "static" - }, - { - "source": "npm:git-url-parse", - "target": "npm:git-up", - "type": "static" - }, - { - "source": "npm:gitconfiglocal", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:github-slugger", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:humps", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:ky", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:ky-universal", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:li", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:query-string", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:universal-url", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent@3.1.0", - "target": "npm:is-glob@3.1.0", - "type": "static" - }, - { - "source": "npm:glob-parent@3.1.0", - "target": "npm:path-dirname", - "type": "static" - }, - { - "source": "npm:glob-promise", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:glob-parent@3.1.0", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:is-negated-glob", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:ordered-read-streams", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:pumpify", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:to-absolute-glob", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:unique-stream", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:anymatch@2.0.0", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:async-done", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:chokidar@2.1.8", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:is-negated-glob", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:just-debounce", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:object.defaults", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:minimatch@9.0.1", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.0.1", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.0.1", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minimatch@8.0.4", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minipass@4.2.8", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:global-dirs@0.1.1", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:global-dirs", - "target": "npm:ini@2.0.0", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:global-prefix", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:resolve-dir", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:global", - "target": "npm:min-document", - "type": "static" - }, - { - "source": "npm:global", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:global", - "target": "npm:min-document", - "type": "static" - }, - { - "source": "npm:global", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:global", - "target": "npm:min-document", - "type": "static" - }, - { - "source": "npm:global", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:globals@13.12.0", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:globals@13.12.0", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:slash@4.0.0", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:array-union@1.0.2", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:pinkie-promise", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:array-union@1.0.2", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:dir-glob@2.2.2", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:fast-glob@2.2.7", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:ignore@4.0.6", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:slash@2.0.0", - "type": "static" - }, - { - "source": "npm:glogg", - "target": "npm:sparkles", - "type": "static" - }, - { - "source": "npm:good-listener", - "target": "npm:delegate", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:@sindresorhus/is@5.3.0", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:@szmarczak/http-timer@5.0.1", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:cacheable-lookup@6.1.0", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:form-data-encoder", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:http2-wrapper@2.1.11", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:lowercase-keys@3.0.0", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:p-cancelable@3.0.0", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:create-error-class", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:duplexer3", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:get-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:is-redirect", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:is-retry-allowed", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:lowercase-keys@1.0.0", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:timed-out", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:unzip-response", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:url-parse-lax", - "type": "static" - }, - { - "source": "npm:graphviz", - "target": "npm:temp", - "type": "static" - }, - { - "source": "npm:gulp-babel", - "target": "npm:plugin-error", - "type": "static" - }, - { - "source": "npm:gulp-babel", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:gulp-babel", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:gulp-babel", - "target": "npm:vinyl-sourcemaps-apply", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:cache-swap", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:plugin-error", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:through2@3.0.1", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:vinyl", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:archy", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:array-sort", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:copy-props", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:fancy-log", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:gulplog", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:interpret", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:liftoff@3.1.0", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:matchdep", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:mute-stdout", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:pretty-hrtime", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:replace-homedir", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:semver-greatest-satisfied-range", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:v8flags@3.1.3", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:yargs@7.1.0", - "type": "static" - }, - { - "source": "npm:gulp-remember", - "target": "npm:fancy-log", - "type": "static" - }, - { - "source": "npm:gulp-remember", - "target": "npm:plugin-error@0.1.2", - "type": "static" - }, - { - "source": "npm:gulp-remember", - "target": "npm:through2@0.5.1", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:@gulp-sourcemaps/identity-map", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:@gulp-sourcemaps/map-sources", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:acorn@5.7.4", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:css", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:debug-fabulous", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:detect-newline", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:strip-bom-string", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:array-differ", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:array-uniq", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:beeper", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:dateformat@2.2.0", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:fancy-log", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:gulplog", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:has-gulplog", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:lodash._reescape", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:lodash._reevaluate", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:lodash.template", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:multipipe", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:object-assign@3.0.0", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:replace-ext@0.0.1", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:vinyl@0.5.3", - "type": "static" - }, - { - "source": "npm:gulp", - "target": "npm:glob-watcher", - "type": "static" - }, - { - "source": "npm:gulp", - "target": "npm:gulp-cli", - "type": "static" - }, - { - "source": "npm:gulp", - "target": "npm:undertaker", - "type": "static" - }, - { - "source": "npm:gulp", - "target": "npm:vinyl-fs", - "type": "static" - }, - { - "source": "npm:gulplog", - "target": "npm:glogg", - "type": "static" - }, - { - "source": "npm:gzip-js", - "target": "npm:crc32", - "type": "static" - }, - { - "source": "npm:gzip-js", - "target": "npm:deflate-js", - "type": "static" - }, - { - "source": "npm:gzip-size", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:gzip-size", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:gzip-size@6.0.0", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:gzip-size@7.0.0", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - }, - { - "source": "npm:har-validator", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:har-validator", - "target": "npm:har-schema", - "type": "static" - }, - { - "source": "npm:has-ansi", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - }, - { - "source": "npm:has-glob", - "target": "npm:is-glob@3.1.0", - "type": "static" - }, - { - "source": "npm:has-gulplog", - "target": "npm:sparkles", - "type": "static" - }, - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:has-value@0.3.1", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:has-value@0.3.1", - "target": "npm:has-values@0.1.4", - "type": "static" - }, - { - "source": "npm:has-value@0.3.1", - "target": "npm:isobject@2.1.0", - "type": "static" - }, - { - "source": "npm:has-value", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:has-value", - "target": "npm:has-values", - "type": "static" - }, - { - "source": "npm:has-value", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:has-values", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:has-values", - "target": "npm:kind-of@4.0.0", - "type": "static" - }, - { - "source": "npm:has", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:has", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:hash-base", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hash-base", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:hash.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hash.js", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:hash.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hash.js", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:comma-separated-tokens", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:space-separated-tokens", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:style-to-object", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:web-namespaces", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:@types/parse5", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:hastscript@6.0.0", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:vfile", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:vfile-location", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:web-namespaces", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:@types/hast", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:hast-util-from-parse5", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:hast-util-to-parse5", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:html-void-elements", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:parse5@6.0.1", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:unist-util-position", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:vfile", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:web-namespaces", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:zwitch", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:hast-to-hyperscript", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:web-namespaces", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:zwitch", - "type": "static" - }, - { - "source": "npm:hastscript", - "target": "npm:comma-separated-tokens", - "type": "static" - }, - { - "source": "npm:hastscript", - "target": "npm:hast-util-parse-selector", - "type": "static" - }, - { - "source": "npm:hastscript", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hastscript", - "target": "npm:space-separated-tokens", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:@types/hast", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:comma-separated-tokens", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:hast-util-parse-selector", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:space-separated-tokens", - "type": "static" - }, - { - "source": "npm:header-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:header-case", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:resolve-pathname", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:tiny-invariant", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:tiny-warning", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:value-equal", - "type": "static" - }, - { - "source": "npm:hmac-drbg", - "target": "npm:hash.js", - "type": "static" - }, - { - "source": "npm:hmac-drbg", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:hmac-drbg", - "target": "npm:minimalistic-crypto-utils", - "type": "static" - }, - { - "source": "npm:hoist-non-react-statics", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:hoist-non-react-statics", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:hoist-non-react-statics", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:homedir-polyfill", - "target": "npm:parse-passwd", - "type": "static" - }, - { - "source": "npm:homedir-polyfill", - "target": "npm:parse-passwd", - "type": "static" - }, - { - "source": "npm:hosted-git-info@3.0.8", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:hosted-git-info@6.1.1", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:hosted-git-info@7.0.1", - "target": "npm:lru-cache@10.0.1", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:wbuf", - "type": "static" - }, - { - "source": "npm:html-element-map", - "target": "npm:array-filter", - "type": "static" - }, - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:html-loader", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-loader", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:html-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:html-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:camel-case@4.1.2", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:clean-css", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:commander@4.1.1", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:param-case@3.0.4", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:relateurl", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:terser@4.8.0", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:camel-case@4.1.2", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:clean-css", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:commander@4.1.1", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:param-case@3.0.4", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:relateurl", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:terser@4.8.0", - "type": "static" - }, - { - "source": "npm:html-to-react", - "target": "npm:domhandler@3.0.0", - "type": "static" - }, - { - "source": "npm:html-to-react", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:html-to-react", - "target": "npm:lodash.camelcase", - "type": "static" - }, - { - "source": "npm:html-to-react", - "target": "npm:ramda", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:@types/html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:pretty-error", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:@types/html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:pretty-error", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:@types/html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:@types/tapable", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:pretty-error", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:util.promisify", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:domelementtype@1.3.1", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:domhandler@2.4.2", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:domutils@1.5.1", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler@3.0.0", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities@2.0.0", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler@3.0.0", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities@2.0.0", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler@3.0.0", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities@2.0.0", - "type": "static" - }, - { - "source": "npm:htmlparser2@6.1.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2@6.1.0", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:htmlparser2@6.1.0", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2@6.1.0", - "target": "npm:entities@2.0.0", - "type": "static" - }, - { - "source": "npm:http-assert", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:http-assert", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@2.1.0", - "target": "npm:agent-base@4.3.0", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@2.1.0", - "target": "npm:debug@3.1.0", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@4.0.1", - "target": "npm:@tootallnate/once@1.1.2", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@4.0.1", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@4.0.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:@tootallnate/once", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj@3.0.0", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:http-signature@1.2.0", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:http-signature@1.2.0", - "target": "npm:jsprim@1.4.1", - "type": "static" - }, - { - "source": "npm:http-signature@1.2.0", - "target": "npm:sshpk", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:jsprim", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:sshpk", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:resolve-alpn", - "type": "static" - }, - { - "source": "npm:http2-wrapper@2.1.11", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper@2.1.11", - "target": "npm:resolve-alpn", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@2.2.4", - "target": "npm:agent-base@4.3.0", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@2.2.4", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:humanize-ms", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.4.24", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.4.24", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:icss-utils", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:icss-utils", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:identity-obj-proxy", - "target": "npm:harmony-reflect", - "type": "static" - }, - { - "source": "npm:ignore-walk@3.0.3", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:ignore-walk", - "target": "npm:minimatch@5.0.1", - "type": "static" - }, - { - "source": "npm:ignore-walk@6.0.3", - "target": "npm:minimatch@9.0.1", - "type": "static" - }, - { - "source": "npm:import-fresh@2.0.0", - "target": "npm:caller-path", - "type": "static" - }, - { - "source": "npm:import-fresh@2.0.0", - "target": "npm:resolve-from@3.0.0", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - }, - { - "source": "npm:imports-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:imports-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:imports-loader", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:imports-loader", - "target": "npm:strip-comments", - "type": "static" - }, - { - "source": "npm:indent-string@2.1.0", - "target": "npm:repeating", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:promzard", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:read", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:run-async", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:rxjs@6.6.7", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:ora@5.4.1", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:run-async", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:invariant", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:invariant", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:is-absolute", - "target": "npm:is-relative", - "type": "static" - }, - { - "source": "npm:is-absolute", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:is-accessor-descriptor@0.1.6", - "target": "npm:kind-of@3.2.2", - "type": "static" - }, - { - "source": "npm:is-accessor-descriptor", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:is-alphanumerical", - "target": "npm:is-alphabetical", - "type": "static" - }, - { - "source": "npm:is-alphanumerical", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:is-binary-path@1.0.1", - "target": "npm:binary-extensions@1.13.1", - "type": "static" - }, - { - "source": "npm:is-binary-path", - "target": "npm:binary-extensions", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-ci", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:is-ci", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:is-ci@1.2.1", - "target": "npm:ci-info@1.6.0", - "type": "static" - }, - { - "source": "npm:is-ci@2.0.0", - "target": "npm:ci-info@2.0.0", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:is-data-descriptor@0.1.4", - "target": "npm:kind-of@3.2.2", - "type": "static" - }, - { - "source": "npm:is-data-descriptor", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:is-descriptor@0.1.6", - "target": "npm:is-accessor-descriptor@0.1.6", - "type": "static" - }, - { - "source": "npm:is-descriptor@0.1.6", - "target": "npm:is-data-descriptor@0.1.4", - "type": "static" - }, - { - "source": "npm:is-descriptor@0.1.6", - "target": "npm:kind-of@5.1.0", - "type": "static" - }, - { - "source": "npm:is-descriptor", - "target": "npm:is-accessor-descriptor", - "type": "static" - }, - { - "source": "npm:is-descriptor", - "target": "npm:is-data-descriptor", - "type": "static" - }, - { - "source": "npm:is-descriptor", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:is-descriptor", - "target": "npm:is-accessor-descriptor", - "type": "static" - }, - { - "source": "npm:is-descriptor", - "target": "npm:is-data-descriptor", - "type": "static" - }, - { - "source": "npm:is-descriptor", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:is-dom", - "target": "npm:is-object", - "type": "static" - }, - { - "source": "npm:is-dom", - "target": "npm:is-window", - "type": "static" - }, - { - "source": "npm:is-extendable@1.0.1", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:is-finite", - "target": "npm:number-is-nan", - "type": "static" - }, - { - "source": "npm:is-fullwidth-code-point@1.0.0", - "target": "npm:number-is-nan", - "type": "static" - }, - { - "source": "npm:is-glob@3.1.0", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-glob@3.1.0", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-installed-globally@0.1.0", - "target": "npm:global-dirs@0.1.1", - "type": "static" - }, - { - "source": "npm:is-installed-globally@0.1.0", - "target": "npm:is-path-inside@1.0.1", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:global-dirs", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:is-lower-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:is-nan", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-nan", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:is-number", - "target": "npm:kind-of@3.2.2", - "type": "static" - }, - { - "source": "npm:is-path-in-cwd", - "target": "npm:is-path-inside@2.1.0", - "type": "static" - }, - { - "source": "npm:is-path-inside@1.0.1", - "target": "npm:path-is-inside", - "type": "static" - }, - { - "source": "npm:is-path-inside@2.1.0", - "target": "npm:path-is-inside", - "type": "static" - }, - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:is-reference", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-relative", - "target": "npm:is-unc-path", - "type": "static" - }, - { - "source": "npm:is-ssh", - "target": "npm:protocols", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:is-text-path", - "target": "npm:text-extensions", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:foreach", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:is-unc-path", - "target": "npm:unc-path-regex", - "type": "static" - }, - { - "source": "npm:is-upper-case", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:is-weakref", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:isobject@2.1.0", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:isomorphic-unfetch", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:isomorphic-unfetch", - "target": "npm:unfetch@3.1.2", - "type": "static" - }, - { - "source": "npm:isomorphic-unfetch@3.1.0", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:isomorphic-unfetch@3.1.0", - "target": "npm:unfetch", - "type": "static" - }, - { - "source": "npm:istanbul-instrumenter-loader", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:istanbul-instrumenter-loader", - "target": "npm:istanbul-lib-instrument@1.10.2", - "type": "static" - }, - { - "source": "npm:istanbul-instrumenter-loader", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:istanbul-instrumenter-loader", - "target": "npm:schema-utils@0.3.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babel-generator", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babel-template", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babel-traverse", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babylon", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:istanbul-lib-coverage@1.2.1", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:istanbul-lib-coverage@2.0.5", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:async@1.5.2", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:escodegen@1.8.1", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:esprima@2.7.3", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:glob@5.0.15", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:resolve@1.1.7", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:supports-color@3.2.3", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:istextorbinary", - "target": "npm:binaryextensions", - "type": "static" - }, - { - "source": "npm:istextorbinary", - "target": "npm:editions", - "type": "static" - }, - { - "source": "npm:istextorbinary", - "target": "npm:textextensions", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:async@3.2.3", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:jest-axe", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "npm:jest-axe", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-axe", - "target": "npm:jest-matcher-utils@27.0.2", - "type": "static" - }, - { - "source": "npm:jest-axe", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:jest-canvas-mock", - "target": "npm:cssfontparser", - "type": "static" - }, - { - "source": "npm:jest-canvas-mock", - "target": "npm:moo-color", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent@1.5.1", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:is-generator-fn", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-each", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:stack-utils", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-diff@27.5.1", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-diff@27.5.1", - "target": "npm:diff-sequences@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-diff@27.5.1", - "target": "npm:jest-get-type@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-diff@27.5.1", - "target": "npm:pretty-format@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-docblock", - "target": "npm:detect-newline@3.1.0", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-node-single-context", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:jest-regex-util@26.0.0", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:jest-serializer", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:jest-util@26.6.2", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:jest-worker@26.6.2", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:sane", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@27.0.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@27.0.2", - "target": "npm:jest-diff@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@27.0.2", - "target": "npm:jest-get-type@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@27.0.2", - "target": "npm:pretty-format@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:stack-utils", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports@2.0.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports@2.0.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-docblock", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-leak-detector", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/globals", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/source-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:strip-bom@4.0.0", - "type": "static" - }, - { - "source": "npm:jest-serializer", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-serializer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:is-ci@2.0.0", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:ansi-escapes@6.2.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:chalk@5.2.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:slash@5.1.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:string-length@5.0.1", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:jest-worker@24.9.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@24.9.0", - "target": "npm:supports-color@6.1.0", - "type": "static" - }, - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:jest-cli", - "type": "static" - }, - { - "source": "npm:js-queue", - "target": "npm:easy-stack", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn-globals", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssom", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssstyle", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:data-urls", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:decimal.js", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:domexception", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:is-potential-custom-element-name", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:nwsapi", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:saxes", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:symbol-tree", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:tough-cookie@4.1.2", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:w3c-xmlserializer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:json-edm-parser", - "target": "npm:jsonparse@1.2.0", - "type": "static" - }, - { - "source": "npm:json-stable-stringify", - "target": "npm:jsonify", - "type": "static" - }, - { - "source": "npm:json5@1.0.2", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:espree@9.6.1", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:jsonfile@2.4.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jsonfile@6.0.1", - "target": "npm:universalify@1.0.0", - "type": "static" - }, - { - "source": "npm:jsonfile@6.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isboolean", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isinteger", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isnumber", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isboolean", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isinteger", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isnumber", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:jsprim@1.4.1", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:jsprim@1.4.1", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:jsprim@1.4.1", - "target": "npm:json-schema@0.2.3", - "type": "static" - }, - { - "source": "npm:jsprim@1.4.1", - "target": "npm:verror", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:verror", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:jszip", - "target": "npm:lie", - "type": "static" - }, - { - "source": "npm:jszip", - "target": "npm:pako", - "type": "static" - }, - { - "source": "npm:jszip", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:jszip", - "target": "npm:setimmediate", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:just-task-logger", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:marked", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:marked-terminal", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:@types/node@10.17.13", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:diff-match-patch", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:just-scripts-utils", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:just-task", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:run-parallel-limit", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:just-task-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:just-task-logger", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:just-task-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:just-task-logger", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:@rushstack/package-deps-hash", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:bach", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:just-task-logger", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:undertaker", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:undertaker-registry", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:buffer-equal-constant-time", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:ecdsa-sig-formatter", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:jwa", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:jwa", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:karma-chrome-launcher", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:istanbul-lib-source-maps@3.0.6", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:karma-firefox-launcher", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:karma-mocha-reporter", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:karma-mocha-reporter", - "target": "npm:log-symbols@2.2.0", - "type": "static" - }, - { - "source": "npm:karma-mocha-reporter", - "target": "npm:strip-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:karma-mocha", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:karma-source-map-support", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:karma-sourcemap-loader", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:karma-webpack", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:karma-webpack", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:karma-webpack", - "target": "npm:webpack-merge@4.2.2", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:di", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:dom-serialize", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:isbinaryfile", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:log4js", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:qjobs", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:socket.io", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:ua-parser-js@0.7.33", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:keygrip", - "target": "npm:tsscmp", - "type": "static" - }, - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - }, - { - "source": "npm:kind-of@3.2.2", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:kind-of@3.2.2", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:kind-of@3.2.2", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:kind-of@4.0.0", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:klaw", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:koa-bodyparser", - "target": "npm:co-body", - "type": "static" - }, - { - "source": "npm:koa-bodyparser", - "target": "npm:copy-to", - "type": "static" - }, - { - "source": "npm:koa-convert", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:koa-convert", - "target": "npm:koa-compose", - "type": "static" - }, - { - "source": "npm:koa-mount", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:koa-mount", - "target": "npm:koa-compose", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@types/parse5", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:parse5@5.1.1", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:koa-send", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:koa-send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:koa-send", - "target": "npm:resolve-path", - "type": "static" - }, - { - "source": "npm:koa-static", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:koa-static", - "target": "npm:koa-send", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:cache-content-type", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:cookies", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:depd@2.0.0", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:http-assert", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:koa-compose", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:koa-convert", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:only", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:ky-universal", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:ky-universal", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:@lage-run/logger", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:@xmldom/xmldom", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:backfill", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:backfill-cache", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:p-graph", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:p-profiler", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:workspace-tools@0.27.0", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:yargs-parser@18.1.3", - "type": "static" - }, - { - "source": "npm:language-tags", - "target": "npm:language-subtag-registry", - "type": "static" - }, - { - "source": "npm:last-run", - "target": "npm:default-resolution", - "type": "static" - }, - { - "source": "npm:last-run", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "npm:latest-version", - "target": "npm:package-json", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:app-root-dir", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:dotenv-expand@5.1.0", - "type": "static" - }, - { - "source": "npm:lazystream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:lcid", - "target": "npm:invert-kv", - "type": "static" - }, - { - "source": "npm:lead", - "target": "npm:flush-write-stream", - "type": "static" - }, - { - "source": "npm:lerna-alias", - "target": "npm:get-lerna-packages", - "type": "static" - }, - { - "source": "npm:lerna-alias", - "target": "npm:get-lerna-packages", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@lerna/child-process", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@lerna/create", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@octokit/plugin-enterprise-rest", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@octokit/rest@19.0.11", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:byte-size", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:cmd-shim", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-changelog-angular", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-changelog-core", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-recommended-bump", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:cosmiconfig@8.2.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:execa@5.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:get-stream@6.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:init-package-json", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:inquirer@8.2.4", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:libnpmaccess", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:libnpmpublish", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npmlog@6.0.2", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-map-series", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-pipe", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-queue", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-waterfall", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:pify@5.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:read-cmd-shim", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:rimraf@4.4.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:ssri@9.0.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:upath", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:uuid@9.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:write-file-atomic@5.0.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:write-pkg", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:prelude-ls@1.2.1", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check@0.4.0", - "type": "static" - }, - { - "source": "npm:levn@0.3.0", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn@0.3.0", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:libnpmaccess", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmaccess", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:license-webpack-plugin", - "target": "npm:@types/webpack-sources", - "type": "static" - }, - { - "source": "npm:license-webpack-plugin", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:lie", - "target": "npm:immediate", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:findup-sync", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:fined", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:flagged-respawn", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:object.map", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:rechoir", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:findup-sync@3.0.0", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:fined", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:flagged-respawn", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:object.map", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:rechoir", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:commander@5.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cosmiconfig@6.0.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:please-upgrade-node", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:stringify-object", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rxjs@6.6.7", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:colorette@2.0.20", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:strip-bom@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:type-fest@0.6.0", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:parse-json@2.2.0", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:pinkie-promise", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:strip-bom@2.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:locate-path@2.0.0", - "target": "npm:p-locate@2.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@2.0.0", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:p-locate@3.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:locate-path@5.0.0", - "target": "npm:p-locate@4.1.0", - "type": "static" - }, - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - }, - { - "source": "npm:locate-path@7.1.1", - "target": "npm:p-locate@6.0.0", - "type": "static" - }, - { - "source": "npm:lodash.escape", - "target": "npm:lodash._root", - "type": "static" - }, - { - "source": "npm:lodash.keys@3.1.2", - "target": "npm:lodash._getnative", - "type": "static" - }, - { - "source": "npm:lodash.keys@3.1.2", - "target": "npm:lodash.isarguments", - "type": "static" - }, - { - "source": "npm:lodash.keys@3.1.2", - "target": "npm:lodash.isarray", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._basecopy", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._basetostring", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._basevalues", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._isiterateecall", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.escape", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.keys@3.1.2", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.restparam", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.templatesettings", - "type": "static" - }, - { - "source": "npm:lodash.templatesettings", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:lodash.templatesettings", - "target": "npm:lodash.escape", - "type": "static" - }, - { - "source": "npm:log-symbols@3.0.0", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:log-symbols@1.0.2", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:log-symbols@2.2.0", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:log-symbols@2.2.0", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:wrap-ansi@6.2.0", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:streamroller", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:loud-rejection", - "target": "npm:currently-unhandled", - "type": "static" - }, - { - "source": "npm:loud-rejection", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:loupe", - "target": "npm:get-func-name", - "type": "static" - }, - { - "source": "npm:lower-case-first", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:lower-case@2.0.2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lowlight", - "target": "npm:fault", - "type": "static" - }, - { - "source": "npm:lowlight", - "target": "npm:highlight.js", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:pseudomap", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:yallist@2.1.2", - "type": "static" - }, - { - "source": "npm:lru-cache@5.1.1", - "target": "npm:yallist@3.1.1", - "type": "static" - }, - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:lru-queue", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:magic-string", - "target": "npm:sourcemap-codec", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:make-dir@1.3.0", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:cacache@16.1.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-fetch@2.1.2", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:ssri@9.0.1", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache@17.1.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch@3.0.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache@17.1.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch@3.0.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache@17.1.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch@3.0.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:http-proxy-agent@4.0.1", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:promise-retry@1.1.1", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:socks-proxy-agent@5.0.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:ssri@8.0.0", - "type": "static" - }, - { - "source": "npm:make-iterator", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - }, - { - "source": "npm:map-age-cleaner", - "target": "npm:p-defer", - "type": "static" - }, - { - "source": "npm:map-visit", - "target": "npm:object-visit", - "type": "static" - }, - { - "source": "npm:markdown-table", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:cardinal", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:cli-table", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:node-emoji", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:supports-hyperlinks@2.2.0", - "type": "static" - }, - { - "source": "npm:matchdep", - "target": "npm:findup-sync", - "type": "static" - }, - { - "source": "npm:matchdep", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:matchdep", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:matchdep", - "target": "npm:stack-trace", - "type": "static" - }, - { - "source": "npm:md5.js", - "target": "npm:hash-base", - "type": "static" - }, - { - "source": "npm:md5.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:md5.js", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:mdast-add-list-metadata", - "target": "npm:unist-util-visit-parents@1.1.2", - "type": "static" - }, - { - "source": "npm:mdast-squeeze-paragraphs", - "target": "npm:unist-util-remove", - "type": "static" - }, - { - "source": "npm:mdast-util-definitions", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:mdast-util-definitions", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:mdurl", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:unist-builder", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:unist-util-generated", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:unist-util-position", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:mem", - "target": "npm:map-age-cleaner", - "type": "static" - }, - { - "source": "npm:mem", - "target": "npm:mimic-fn@3.1.0", - "type": "static" - }, - { - "source": "npm:memfs-or-file-map-to-github-branch", - "target": "npm:@octokit/rest", - "type": "static" - }, - { - "source": "npm:memfs", - "target": "npm:fs-monkey", - "type": "static" - }, - { - "source": "npm:memfs@3.4.1", - "target": "npm:fs-monkey", - "type": "static" - }, - { - "source": "npm:memfs@3.4.1", - "target": "npm:fs-monkey", - "type": "static" - }, - { - "source": "npm:memfs@3.4.1", - "target": "npm:fs-monkey", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:event-emitter", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:lru-queue", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:timers-ext", - "type": "static" - }, - { - "source": "npm:memoizerific", - "target": "npm:map-or-similar", - "type": "static" - }, - { - "source": "npm:memory-fs", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:memory-fs", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:memory-fs@0.5.0", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:memory-fs@0.5.0", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:camelcase-keys@2.1.0", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:loud-rejection", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:map-obj", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:read-pkg-up@1.0.1", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:redent@1.0.0", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:trim-newlines@1.0.0", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:@types/minimist", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:camelcase-keys", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:decamelize-keys", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:hard-rejection", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:minimist-options", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:normalize-package-data@3.0.3", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:trim-newlines", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:type-fest@0.18.1", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:arr-diff", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:braces@2.3.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:extglob", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:fragment-cache", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:nanomatch", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:to-regex", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:arr-diff", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:braces@2.3.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:extglob", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:fragment-cache", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:nanomatch", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:to-regex", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:arr-diff", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:braces@2.3.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:extglob", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:fragment-cache", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:nanomatch", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:to-regex", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:miller-rabin", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:miller-rabin", - "target": "npm:brorand", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:min-document", - "target": "npm:dom-walk", - "type": "static" - }, - { - "source": "npm:mini-create-react-context", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:mini-create-react-context", - "target": "npm:tiny-warning", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:schema-utils@4.0.0", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch@3.0.4", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.1", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.1", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.1", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch@5.0.1", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch@8.0.4", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:arrify@1.0.1", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:minipass-fetch@3.0.3", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:minipass-fetch@3.0.3", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch@3.0.3", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch@3.0.3", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:minipass-flush", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-sized", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass@2.9.0", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:minipass@2.9.0", - "target": "npm:yallist@3.1.1", - "type": "static" - }, - { - "source": "npm:minipass@2.9.0", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:minipass@2.9.0", - "target": "npm:yallist@3.1.1", - "type": "static" - }, - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minizlib@1.3.3", - "target": "npm:minipass@2.9.0", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:flush-write-stream", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:from2", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:parallel-transform", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:pumpify", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:stream-each", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:mixin-deep", - "target": "npm:for-in", - "type": "static" - }, - { - "source": "npm:mixin-deep", - "target": "npm:is-extendable@1.0.1", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:ansi-colors@3.2.3", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:browser-stdout", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:chokidar@3.3.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:debug@3.2.6", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:diff@3.5.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:glob@7.1.3", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:growl", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:log-symbols@3.0.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:minimatch@3.0.4", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:ms@2.1.1", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:node-environment-flags", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:object.assign@4.1.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:supports-color@6.0.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:wide-align@1.1.3", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:yargs-unparser@1.6.0", - "type": "static" - }, - { - "source": "npm:mocked-env", - "target": "npm:check-more-types", - "type": "static" - }, - { - "source": "npm:mocked-env", - "target": "npm:debug@4.1.1", - "type": "static" - }, - { - "source": "npm:mocked-env", - "target": "npm:lazy-ass", - "type": "static" - }, - { - "source": "npm:mocked-env", - "target": "npm:ramda", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:@azure/data-tables", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:monosize", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:node-fetch@3.3.1", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:del@7.0.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:find-up@6.3.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:gzip-size@7.0.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:pretty-bytes@6.1.1", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:workspace-tools", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:del@7.0.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:find-up@6.3.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:gzip-size@7.0.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:pretty-bytes@6.1.1", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:workspace-tools", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:moo-color", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:copy-concurrently", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:fs-write-stream-atomic", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:run-queue", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:dns-packet", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:thunky", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-differ@3.0.0", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:arrify", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-differ@3.0.0", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:arrify", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:multipipe", - "target": "npm:duplexer2", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:arr-diff", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:fragment-cache", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:to-regex", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:moo", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:railroad-diagrams", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:randexp", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:no-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:no-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:no-case@3.0.4", - "target": "npm:lower-case@2.0.2", - "type": "static" - }, - { - "source": "npm:no-case@3.0.4", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:node-dir", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:node-emoji", - "target": "npm:lodash.toarray", - "type": "static" - }, - { - "source": "npm:node-environment-flags", - "target": "npm:object.getownpropertydescriptors", - "type": "static" - }, - { - "source": "npm:node-environment-flags", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch@3.3.1", - "target": "npm:data-uri-to-buffer", - "type": "static" - }, - { - "source": "npm:node-fetch@3.3.1", - "target": "npm:fetch-blob", - "type": "static" - }, - { - "source": "npm:node-fetch@3.3.1", - "target": "npm:formdata-polyfill", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:nopt@4.0.1", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:request", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:tar@4.4.19", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen@10.2.1", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt@5.0.0", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:npmlog@6.0.2", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:node-ipc", - "target": "npm:event-pubsub", - "type": "static" - }, - { - "source": "npm:node-ipc", - "target": "npm:js-message", - "type": "static" - }, - { - "source": "npm:node-ipc", - "target": "npm:js-queue", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:assert@1.5.0", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:browserify-zlib", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:buffer@4.9.1", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:console-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:constants-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:crypto-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:domain-browser@1.2.0", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:https-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:os-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:path-browserify@0.0.1", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:punycode@1.3.2", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:querystring-es3", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:stream-browserify@2.0.2", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:stream-http@2.8.3", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:timers-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:tty-browserify@0.0.0", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:url", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:util@0.11.1", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:vm-browserify", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:@types/globby", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:@types/handlebars", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:@types/inquirer", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:change-case", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:del@5.1.0", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:globby@10.0.2", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:isbinaryfile", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:lodash.get", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:@types/globby", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:@types/handlebars", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:@types/inquirer", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:change-case", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:del@5.1.0", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:globby@10.0.2", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:isbinaryfile", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:lodash.get", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:assert", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:browserify-zlib", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:buffer@6.0.3", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:console-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:constants-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:crypto-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:domain-browser", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:https-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:os-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:querystring-es3", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:stream-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:stream-http", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:timers-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:tty-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:url", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:util", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:vm-browserify", - "type": "static" - }, - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:nopt@4.0.1", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:nopt@4.0.1", - "target": "npm:osenv", - "type": "static" - }, - { - "source": "npm:nopt@5.0.0", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info@2.8.9", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info@2.8.9", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info@2.8.9", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:normalize-path@2.1.1", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:normalize-path@2.1.1", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:now-and-later", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-bundled@3.0.0", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:npm-install-checks", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-install-checks@6.1.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:hosted-git-info@7.0.1", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:hosted-git-info@3.0.8", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:validate-npm-package-name@3.0.0", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:hosted-git-info@3.0.8", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:validate-npm-package-name@3.0.0", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:hosted-git-info@3.0.8", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:validate-npm-package-name@3.0.0", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-packlist@2.1.2", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:npm-packlist@2.1.2", - "target": "npm:ignore-walk@3.0.3", - "type": "static" - }, - { - "source": "npm:npm-packlist@2.1.2", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:npm-packlist@2.1.2", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-packlist@7.0.4", - "target": "npm:ignore-walk@6.0.3", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest@8.0.1", - "target": "npm:npm-install-checks@6.1.1", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest@8.0.1", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest@8.0.1", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest@8.0.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch@3.0.3", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch@3.0.3", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch@3.0.3", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:@npmcli/ci-detect", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:make-fetch-happen@8.0.9", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:npm-run-path", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:npm-run-path", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:are-we-there-yet", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:gauge", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:npmlog@5.0.1", - "target": "npm:are-we-there-yet@2.0.0", - "type": "static" - }, - { - "source": "npm:npmlog@5.0.1", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog@5.0.1", - "target": "npm:gauge@3.0.2", - "type": "static" - }, - { - "source": "npm:npmlog@5.0.1", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:are-we-there-yet@3.0.1", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:gauge@4.0.4", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:are-we-there-yet@3.0.1", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:gauge@4.0.4", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:nth-check@2.0.0", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nrwl/tao", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@parcel/watcher", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv@16.3.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:glob@7.1.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns@2.0.3", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths@4.2.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:v8-compile-cache", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nrwl/tao", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@parcel/watcher", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv@16.3.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:glob@7.1.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns@2.0.3", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths@4.2.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:v8-compile-cache", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:object-copy", - "target": "npm:copy-descriptor", - "type": "static" - }, - { - "source": "npm:object-copy", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:object-copy", - "target": "npm:kind-of@3.2.2", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object-visit", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:object.assign@4.1.0", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign@4.1.0", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:object.assign@4.1.0", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign@4.1.0", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:array-each", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:array-slice", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:array-each", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:array-slice", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.getownpropertydescriptors", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.getownpropertydescriptors", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.hasown", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.hasown", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.map", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:object.map", - "target": "npm:make-iterator", - "type": "static" - }, - { - "source": "npm:object.pick", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:object.pick", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:object.reduce", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:object.reduce", - "target": "npm:make-iterator", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:onetime@2.0.1", - "target": "npm:mimic-fn@1.2.0", - "type": "static" - }, - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - }, - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:opn", - "target": "npm:is-wsl@1.1.0", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn@0.3.0", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:prelude-ls@1.2.1", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:type-check@0.4.0", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:word-wrap", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:cli-cursor@2.1.0", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:log-symbols@2.2.0", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:ordered-read-streams", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:os-filter-obj", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:os-locale", - "target": "npm:lcid", - "type": "static" - }, - { - "source": "npm:osenv", - "target": "npm:os-homedir", - "type": "static" - }, - { - "source": "npm:osenv", - "target": "npm:os-tmpdir", - "type": "static" - }, - { - "source": "npm:p-all", - "target": "npm:p-map@2.1.0", - "type": "static" - }, - { - "source": "npm:p-event", - "target": "npm:p-timeout", - "type": "static" - }, - { - "source": "npm:p-filter", - "target": "npm:p-map@2.1.0", - "type": "static" - }, - { - "source": "npm:p-limit@1.3.0", - "target": "npm:p-try@1.0.0", - "type": "static" - }, - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-limit@4.0.0", - "target": "npm:yocto-queue@1.0.0", - "type": "static" - }, - { - "source": "npm:p-locate@2.0.0", - "target": "npm:p-limit@1.3.0", - "type": "static" - }, - { - "source": "npm:p-locate@3.0.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:p-locate@4.1.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:p-locate", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:p-locate@6.0.0", - "target": "npm:p-limit@4.0.0", - "type": "static" - }, - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:p-map@3.0.0", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:p-map@5.5.0", - "target": "npm:aggregate-error@4.0.1", - "type": "static" - }, - { - "source": "npm:p-queue", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:p-queue", - "target": "npm:p-timeout", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry@0.13.1", - "type": "static" - }, - { - "source": "npm:p-timeout", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:p-timeout", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:p-waterfall", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:package-json", - "target": "npm:got@6.7.1", - "type": "static" - }, - { - "source": "npm:package-json", - "target": "npm:registry-auth-token", - "type": "static" - }, - { - "source": "npm:package-json", - "target": "npm:registry-url", - "type": "static" - }, - { - "source": "npm:package-json", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:@npmcli/git@2.0.3", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:@npmcli/installed-package-contents@1.0.7", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:@npmcli/run-script@1.3.1", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:npm-packlist@2.1.2", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:npm-registry-fetch@8.1.3", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:promise-retry@1.1.1", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:ssri@8.0.0", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/promise-spawn@6.0.2", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:cacache@17.1.3", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:fs-minipass@3.0.2", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-packlist@7.0.4", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-pick-manifest@8.0.1", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:read-package-json-fast@3.0.2", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:parallel-transform", - "target": "npm:cyclist", - "type": "static" - }, - { - "source": "npm:parallel-transform", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:parallel-transform", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:ajv@4.11.8", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:interpret", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:lodash.assign", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:lodash.endswith", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:lodash.flatten", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:node-ipc", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:pluralize", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:supports-color@3.2.3", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:worker-farm", - "type": "static" - }, - { - "source": "npm:param-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:param-case@3.0.4", - "target": "npm:dot-case@3.0.4", - "type": "static" - }, - { - "source": "npm:param-case@3.0.4", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:asn1.js", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:browserify-aes", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:evp_bytestokey", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:pbkdf2", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:character-entities", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:character-entities-legacy", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:character-reference-invalid", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-alphanumerical", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-hexadecimal", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:character-entities", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:character-entities-legacy", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:character-reference-invalid", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-alphanumerical", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-hexadecimal", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:character-entities", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:character-entities-legacy", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:character-reference-invalid", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:is-alphanumerical", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:is-hexadecimal", - "type": "static" - }, - { - "source": "npm:parse-filepath", - "target": "npm:is-absolute", - "type": "static" - }, - { - "source": "npm:parse-filepath", - "target": "npm:map-cache", - "type": "static" - }, - { - "source": "npm:parse-filepath", - "target": "npm:path-root", - "type": "static" - }, - { - "source": "npm:parse-git-config", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:parse-git-config", - "target": "npm:git-config-path", - "type": "static" - }, - { - "source": "npm:parse-git-config", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:parse-json@2.2.0", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:json-parse-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:parse-link-header", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:parse-path", - "target": "npm:protocols", - "type": "static" - }, - { - "source": "npm:parse-url", - "target": "npm:parse-path", - "type": "static" - }, - { - "source": "npm:parse5@3.0.3", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:parse5", - "target": "npm:entities@4.5.0", - "type": "static" - }, - { - "source": "npm:parse5", - "target": "npm:entities@4.5.0", - "type": "static" - }, - { - "source": "npm:pascal-case", - "target": "npm:camel-case", - "type": "static" - }, - { - "source": "npm:pascal-case", - "target": "npm:upper-case-first", - "type": "static" - }, - { - "source": "npm:pascal-case@3.1.2", - "target": "npm:no-case@3.0.4", - "type": "static" - }, - { - "source": "npm:pascal-case@3.1.2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:path-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:path-exists@2.1.0", - "target": "npm:pinkie-promise", - "type": "static" - }, - { - "source": "npm:path-root", - "target": "npm:path-root-regex", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.0.1", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.0.1", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:path-to-regexp@1.7.0", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:path-type@1.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:path-type@1.1.0", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:path-type@1.1.0", - "target": "npm:pinkie-promise", - "type": "static" - }, - { - "source": "npm:path-type@3.0.0", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:create-hmac", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:sha.js", - "type": "static" - }, - { - "source": "npm:pinkie-promise", - "target": "npm:pinkie", - "type": "static" - }, - { - "source": "npm:pixel-buffer-diff-folders", - "target": "npm:fast-png", - "type": "static" - }, - { - "source": "npm:pixel-buffer-diff-folders", - "target": "npm:jpeg-js", - "type": "static" - }, - { - "source": "npm:pixel-buffer-diff-folders", - "target": "npm:pixel-buffer-diff", - "type": "static" - }, - { - "source": "npm:pkg-dir@3.0.0", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:pkg-dir", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:pkg-dir", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:pkg-dir@5.0.0", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:pkg-install", - "target": "npm:@types/execa", - "type": "static" - }, - { - "source": "npm:pkg-install", - "target": "npm:@types/node@11.15.54", - "type": "static" - }, - { - "source": "npm:pkg-install", - "target": "npm:execa@1.0.0", - "type": "static" - }, - { - "source": "npm:pkg-up", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:pkg-up@4.0.0", - "target": "npm:find-up@6.3.0", - "type": "static" - }, - { - "source": "npm:playwright", - "target": "npm:playwright-core", - "type": "static" - }, - { - "source": "npm:please-upgrade-node", - "target": "npm:semver-compare", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:interpret", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:liftoff", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:node-plop", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:ora@3.4.0", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:v8flags", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:ansi-cyan", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:ansi-red", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:arr-diff@1.1.0", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:arr-union@2.1.0", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:extend-shallow@1.1.4", - "type": "static" - }, - { - "source": "npm:plugin-error", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:plugin-error", - "target": "npm:arr-diff", - "type": "static" - }, - { - "source": "npm:plugin-error", - "target": "npm:arr-union", - "type": "static" - }, - { - "source": "npm:plugin-error", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:pnp-webpack-plugin", - "target": "npm:ts-pnp", - "type": "static" - }, - { - "source": "npm:polished", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:postcss-flexbugs-fixes", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:postcss-modules-extract-imports@2.0.0", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default@3.0.2", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default@3.0.2", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default@3.0.2", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default@3.0.2", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:icss-utils@5.1.0", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope@2.2.0", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope@2.2.0", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-values@3.0.0", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-values@3.0.0", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:postcss-modules-values", - "target": "npm:icss-utils@5.1.0", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:generic-names", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:icss-replace-symbols", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:lodash.camelcase", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:string-hash", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js@0.6.2", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js@0.6.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:supports-color@6.1.0", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:supports-color@6.1.0", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:supports-color@6.1.0", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:supports-color@6.1.0", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:supports-color@6.1.0", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:supports-color@6.1.0", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:supports-color@6.1.0", - "type": "static" - }, - { - "source": "npm:pretty-error", - "target": "npm:renderkid", - "type": "static" - }, - { - "source": "npm:pretty-error", - "target": "npm:utila", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:prettyjson", - "target": "npm:colors@1.4.0", - "type": "static" - }, - { - "source": "npm:prettyjson", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:prismjs", - "target": "npm:clipboard", - "type": "static" - }, - { - "source": "npm:prismjs", - "target": "npm:clipboard", - "type": "static" - }, - { - "source": "npm:prismjs", - "target": "npm:clipboard", - "type": "static" - }, - { - "source": "npm:promise-retry@1.1.1", - "target": "npm:err-code@1.1.2", - "type": "static" - }, - { - "source": "npm:promise-retry@1.1.1", - "target": "npm:retry@0.10.1", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry", - "type": "static" - }, - { - "source": "npm:promise.allsettled", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:promise.allsettled", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:promise.allsettled", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:promise.prototype.finally", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:promise.prototype.finally", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:promise.prototype.finally", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:promise", - "target": "npm:asap", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:promzard", - "target": "npm:read", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:property-information", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:property-information", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:property-information", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js@1.9.1", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:browserify-rsa", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:parse-asn1", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:pump@2.0.1", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump@2.0.1", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:pumpify", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:pumpify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:pumpify", - "target": "npm:pump@2.0.1", - "type": "static" - }, - { - "source": "npm:pumpify", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:pumpify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:pumpify", - "target": "npm:pump@2.0.1", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:cross-fetch", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:devtools-protocol@0.0.1082910", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:tar-fs", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:unbzip2-stream", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:cosmiconfig@8.0.0", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:puppeteer-core", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:cosmiconfig@8.0.0", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:puppeteer-core", - "type": "static" - }, - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:filter-obj", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:split-on-first", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:strict-uri-encode", - "type": "static" - }, - { - "source": "npm:raf", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:raf", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:raf", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:randexp", - "target": "npm:discontinuous-range", - "type": "static" - }, - { - "source": "npm:randexp", - "target": "npm:ret", - "type": "static" - }, - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:randomfill", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:randomfill", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:raw-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:raw-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:raw-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:raw-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:react-ace", - "target": "npm:brace", - "type": "static" - }, - { - "source": "npm:react-ace", - "target": "npm:lodash.get", - "type": "static" - }, - { - "source": "npm:react-ace", - "target": "npm:lodash.isequal", - "type": "static" - }, - { - "source": "npm:react-ace", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-addons-shallow-compare", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:promise", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:raf", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:whatwg-fetch@3.6.2", - "type": "static" - }, - { - "source": "npm:react-codesandboxer", - "target": "npm:codesandboxer", - "type": "static" - }, - { - "source": "npm:react-codesandboxer", - "target": "npm:lodash.isequal", - "type": "static" - }, - { - "source": "npm:react-codesandboxer", - "target": "npm:lodash.pick", - "type": "static" - }, - { - "source": "npm:react-codesandboxer", - "target": "npm:react-node-resolver", - "type": "static" - }, - { - "source": "npm:react-custom-scrollbars", - "target": "npm:dom-css", - "type": "static" - }, - { - "source": "npm:react-custom-scrollbars", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-custom-scrollbars", - "target": "npm:raf", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:ast-types@0.13.2", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:node-dir", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:strip-indent", - "type": "static" - }, - { - "source": "npm:react-document-title", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-document-title", - "target": "npm:react-side-effect", - "type": "static" - }, - { - "source": "npm:react-dom@16.14.0", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-dom@16.14.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-dom@16.14.0", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-dom@16.14.0", - "target": "npm:scheduler@0.19.1", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:scheduler", - "type": "static" - }, - { - "source": "npm:react-dom@18.2.0", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-dom@18.2.0", - "target": "npm:scheduler@0.23.0", - "type": "static" - }, - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:@base2/pretty-print-object", - "type": "static" - }, - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:@base2/pretty-print-object", - "type": "static" - }, - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:react-error-boundary", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-fela", - "target": "npm:fela-bindings", - "type": "static" - }, - { - "source": "npm:react-fela", - "target": "npm:fela-dom", - "type": "static" - }, - { - "source": "npm:react-fela", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-hooks-testing-library", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:react-lifecycles-compat", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:source-map@0.7.3", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:react-lifecycles-compat", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:source-map@0.7.3", - "type": "static" - }, - { - "source": "npm:react-input-autosize", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-inspector", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-inspector", - "target": "npm:is-dom", - "type": "static" - }, - { - "source": "npm:react-inspector", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:html-to-react", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:mdast-add-list-metadata", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:remark-parse", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:unified", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:unist-util-visit@1.4.1", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:react-motion", - "target": "npm:performance-now@0.2.0", - "type": "static" - }, - { - "source": "npm:react-motion", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-motion", - "target": "npm:raf", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:history", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:react-router", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:tiny-invariant", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:tiny-warning", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:history", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:mini-create-react-context", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:path-to-regexp@1.7.0", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:tiny-invariant", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:tiny-warning", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:@emotion/cache", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:@emotion/core", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:@emotion/css", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:memoize-one", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:react-input-autosize", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:react-transition-group", - "type": "static" - }, - { - "source": "npm:react-shadow", - "target": "npm:humps", - "type": "static" - }, - { - "source": "npm:react-shallow-renderer", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-shallow-renderer", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:react-side-effect", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:react-sizeme", - "target": "npm:element-resize-detector", - "type": "static" - }, - { - "source": "npm:react-sizeme", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-sizeme", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:react-sizeme", - "target": "npm:throttle-debounce", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:deepmerge@2.2.1", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:react-fast-compare", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:highlight.js", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:lowlight", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:prismjs", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:refractor", - "type": "static" - }, - { - "source": "npm:react-table", - "target": "npm:@scarf/scarf", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-shallow-renderer", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:scheduler", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-shallow-renderer", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:scheduler", - "type": "static" - }, - { - "source": "npm:react-textarea-autosize", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:dom-helpers", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:dom-helpers", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:clsx", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:dom-helpers", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:react-lifecycles-compat", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-collection", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-color", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-contour", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-geo", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-hexbin", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-hierarchy@1.1.9", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-interpolate", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-sankey@0.7.1", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-scale", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-shape", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-voronoi", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:hoek", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:react-motion", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-collection", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-color", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-contour", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-geo", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-hexbin", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-hierarchy@1.1.9", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-interpolate", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-sankey@0.7.1", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-scale", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-shape", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-voronoi", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:hoek", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:react-motion", - "type": "static" - }, - { - "source": "npm:react-window", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-window", - "target": "npm:memoize-one", - "type": "static" - }, - { - "source": "npm:react@16.14.0", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react@16.14.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react@16.14.0", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react@18.2.0", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:read-package-json-fast@3.0.2", - "target": "npm:json-parse-even-better-errors@3.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json-fast@3.0.2", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:glob@10.3.3", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors@3.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:glob@10.3.3", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors@3.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:read-pkg@5.2.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:type-fest@0.8.1", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:read-pkg@5.2.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:type-fest@0.8.1", - "type": "static" - }, - { - "source": "npm:read-pkg-up@1.0.1", - "target": "npm:find-up@1.1.2", - "type": "static" - }, - { - "source": "npm:read-pkg-up@1.0.1", - "target": "npm:read-pkg@1.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up@3.0.0", - "target": "npm:find-up@2.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up@3.0.0", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:read-pkg@1.1.0", - "target": "npm:load-json-file@1.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg@1.1.0", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@1.1.0", - "target": "npm:path-type@1.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:load-json-file@4.0.0", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:path-type@3.0.0", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:@types/normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:type-fest@0.6.0", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:strip-bom@4.0.0", - "type": "static" - }, - { - "source": "npm:read", - "target": "npm:mute-stream@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@1.0.34", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@1.0.34", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@1.0.34", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream@1.0.34", - "target": "npm:string_decoder@0.10.31", - "type": "static" - }, - { - "source": "npm:readable-stream@1.1.14", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@1.1.14", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@1.1.14", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream@1.1.14", - "target": "npm:string_decoder@0.10.31", - "type": "static" - }, - { - "source": "npm:readable-web-to-node-stream", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:readdirp@2.2.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:readdirp@2.2.1", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:readdirp@2.2.1", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:readdirp@3.2.0", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:readdirp", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:rechoir", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:rechoir@0.7.0", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:redent@1.0.0", - "target": "npm:indent-string@2.1.0", - "type": "static" - }, - { - "source": "npm:redent@1.0.0", - "target": "npm:strip-indent@1.0.1", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:strip-indent", - "type": "static" - }, - { - "source": "npm:redeyed", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:refractor", - "target": "npm:hastscript", - "type": "static" - }, - { - "source": "npm:refractor", - "target": "npm:parse-entities", - "type": "static" - }, - { - "source": "npm:refractor", - "target": "npm:prismjs", - "type": "static" - }, - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:regex-not", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:regex-not", - "target": "npm:safe-regex", - "type": "static" - }, - { - "source": "npm:regex-not", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:regex-not", - "target": "npm:safe-regex", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - }, - { - "source": "npm:registry-auth-token", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:registry-auth-token", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:registry-url", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:is-absolute-url", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:mdast-util-definitions", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:space-separated-tokens", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:remark-frontmatter", - "target": "npm:fault", - "type": "static" - }, - { - "source": "npm:remark-frontmatter", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@babel/core@7.12.9", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@babel/helper-plugin-utils@7.10.4", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@babel/plugin-syntax-jsx@7.12.1", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@mdx-js/util", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:is-alphabetical", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:remark-parse@8.0.3", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:unified@9.2.0", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:ccount", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:collapse-white-space", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:is-alphabetical", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:is-whitespace-character", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:is-word-character", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:markdown-escapes", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:parse-entities@2.0.0", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:state-toggle", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:trim", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:trim-trailing-lines", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:unherit", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:unist-util-remove-position@2.0.1", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:vfile-location", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:collapse-white-space", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:is-alphabetical", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:is-whitespace-character", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:is-word-character", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:markdown-escapes", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:parse-entities", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:state-toggle", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:trim", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:trim-trailing-lines", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:unherit", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:unist-util-remove-position", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:vfile-location@2.0.6", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:remark-slug", - "target": "npm:github-slugger", - "type": "static" - }, - { - "source": "npm:remark-slug", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "npm:remark-slug", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:remark-squeeze-paragraphs", - "target": "npm:mdast-squeeze-paragraphs", - "type": "static" - }, - { - "source": "npm:remove-bom-buffer", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:remove-bom-buffer", - "target": "npm:is-utf8", - "type": "static" - }, - { - "source": "npm:remove-bom-stream", - "target": "npm:remove-bom-buffer", - "type": "static" - }, - { - "source": "npm:remove-bom-stream", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:remove-bom-stream", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:css-select@4.1.3", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:dom-converter", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:htmlparser2@6.1.0", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:repeating", - "target": "npm:is-finite", - "type": "static" - }, - { - "source": "npm:replace-homedir", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:replace-homedir", - "target": "npm:is-absolute", - "type": "static" - }, - { - "source": "npm:replace-homedir", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:replace-in-file", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:replace-in-file", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:replace-in-file", - "target": "npm:yargs@15.4.1", - "type": "static" - }, - { - "source": "npm:request-progress", - "target": "npm:throttleit", - "type": "static" - }, - { - "source": "npm:request-promise-core", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:request-promise-native", - "target": "npm:request-promise-core", - "type": "static" - }, - { - "source": "npm:request-promise-native", - "target": "npm:stealthy-require", - "type": "static" - }, - { - "source": "npm:request-promise-native", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:form-data@2.3.3", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:har-validator", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:http-signature@1.2.0", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:oauth-sign", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:qs@6.5.3", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:form-data@2.3.3", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:har-validator", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:http-signature@1.2.0", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:oauth-sign", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:qs@6.5.3", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:global-modules", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:global-modules", - "type": "static" - }, - { - "source": "npm:resolve-options", - "target": "npm:value-or-function", - "type": "static" - }, - { - "source": "npm:resolve-path", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:resolve-path", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:resolve@1.15.1", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.3", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.3", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve@1.17.0", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve@1.19.0", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@1.19.0", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:responselike", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:restore-cursor@2.0.0", - "target": "npm:onetime@2.0.1", - "type": "static" - }, - { - "source": "npm:restore-cursor@2.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:riceburn", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@4.4.1", - "target": "npm:glob@9.3.5", - "type": "static" - }, - { - "source": "npm:ripemd160", - "target": "npm:hash-base", - "type": "static" - }, - { - "source": "npm:ripemd160", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:ripemd160", - "target": "npm:hash-base", - "type": "static" - }, - { - "source": "npm:ripemd160", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:is-reference", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:rollup-pluginutils", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:boxen", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:brotli-size", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:colors@1.4.0", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:filesize", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:gzip-size", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:pacote@11.1.11", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:terser@4.8.0", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:@types/resolve", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:builtin-modules", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:is-module", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:rollup-pluginutils", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:jest-worker@24.9.0", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:rollup-pluginutils", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:terser@4.8.0", - "type": "static" - }, - { - "source": "npm:rollup-plugin-transform-tagged-template", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:rollup-plugin-transform-tagged-template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:rollup-plugin-transform-tagged-template", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:resolve@1.15.1", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:tslib@1.11.2", - "type": "static" - }, - { - "source": "npm:rollup-pluginutils", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:rollup-pluginutils", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:rollup", - "target": "npm:fsevents@2.3.3", - "type": "static" - }, - { - "source": "npm:rst-selector-parser", - "target": "npm:lodash.flattendeep", - "type": "static" - }, - { - "source": "npm:rst-selector-parser", - "target": "npm:nearley", - "type": "static" - }, - { - "source": "npm:rtl-css-js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:rtl-css-js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:run-queue", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:run-queue", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:rxjs@6.6.7", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:rxjs@6.6.7", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:safe-regex", - "target": "npm:ret", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:@cnakazawa/watch", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:anymatch@2.0.0", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:capture-exit", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:exec-sh", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:execa@1.0.0", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:sanitize-filename", - "target": "npm:truncate-utf8-bytes", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:halcyon", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:log-symbols@1.0.2", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:update-notifier", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:yargs@7.1.0", - "type": "static" - }, - { - "source": "npm:saxes", - "target": "npm:xmlchars", - "type": "static" - }, - { - "source": "npm:scheduler", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:scheduler", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:scheduler", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:scheduler", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:scheduler@0.19.1", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:scheduler@0.19.1", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:scheduler@0.23.0", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@0.3.0", - "target": "npm:ajv@5.5.2", - "type": "static" - }, - { - "source": "npm:schema-utils@1.0.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@1.0.0", - "target": "npm:ajv-errors@1.0.1", - "type": "static" - }, - { - "source": "npm:schema-utils@1.0.0", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@4.0.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@4.0.0", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:schema-utils@4.0.0", - "target": "npm:ajv-formats@2.1.1", - "type": "static" - }, - { - "source": "npm:schema-utils@4.0.0", - "target": "npm:ajv-keywords@5.1.0", - "type": "static" - }, - { - "source": "npm:selenium-webdriver", - "target": "npm:jszip", - "type": "static" - }, - { - "source": "npm:selenium-webdriver", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:selenium-webdriver", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:node-forge", - "type": "static" - }, - { - "source": "npm:semver-diff", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:semver-greatest-satisfied-range", - "target": "npm:sver-compat", - "type": "static" - }, - { - "source": "npm:semver-truncate", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:semver@7.5.2", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver@7.3.8", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime@1.6.0", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:sentence-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:sentence-case", - "target": "npm:upper-case-first", - "type": "static" - }, - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:serialize-javascript@5.0.1", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:serialize-javascript@6.0.1", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:ms@2.1.1", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:safe-buffer@5.1.1", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:batch", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:is-extendable", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:split-string", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:is-extendable", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:split-string", - "type": "static" - }, - { - "source": "npm:sha.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:sha.js", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:sha.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:sha.js", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:shallow-clone", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - }, - { - "source": "npm:shebang-command@2.0.0", - "target": "npm:shebang-regex@3.0.0", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:simple-swizzle", - "target": "npm:is-arrayish@0.3.2", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:@polka/url", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:totalist", - "type": "static" - }, - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:snake-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:snapdragon-node", - "target": "npm:define-property@1.0.0", - "type": "static" - }, - { - "source": "npm:snapdragon-node", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:snapdragon-node", - "target": "npm:snapdragon-util", - "type": "static" - }, - { - "source": "npm:snapdragon-util", - "target": "npm:kind-of@3.2.2", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:base", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:map-cache", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:source-map-resolve", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:use", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:@types/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:engine.io", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-adapter", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-parser", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent@5.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent@5.0.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent@5.0.0", - "target": "npm:socks", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - }, - { - "source": "npm:sort-keys-length", - "target": "npm:sort-keys@1.1.2", - "type": "static" - }, - { - "source": "npm:sort-keys@1.1.2", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:atob", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:resolve-url", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:source-map-url", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:urix", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:atob", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:resolve-url", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:source-map-url", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:urix", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map@0.2.0", - "target": "npm:amdefine", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:wbuf", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - }, - { - "source": "npm:split-string", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:split-string", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:split2", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:split", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:asn1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:bcrypt-pbkdf", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:dashdash", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:ecc-jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:getpass", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:tweetnacl", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:asn1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:bcrypt-pbkdf", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:dashdash", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:ecc-jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:getpass", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:tweetnacl", - "type": "static" - }, - { - "source": "npm:ssri", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:ssri", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:ssri@6.0.2", - "target": "npm:figgy-pudding", - "type": "static" - }, - { - "source": "npm:ssri@8.0.0", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:ssri@9.0.1", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:ssri@9.0.1", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - }, - { - "source": "npm:static-extend", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:static-extend", - "target": "npm:object-copy", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@testing-library/dom@7.22.3", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@testing-library/jest-dom", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@xstate/react", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:gzip-js", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:styled-components", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:tiny-invariant", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:xstate", - "type": "static" - }, - { - "source": "npm:storybook-addon-swc", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:storybook-addon-swc", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:storybook-addon-swc", - "target": "npm:swc-loader", - "type": "static" - }, - { - "source": "npm:storywright", - "target": "npm:playwright", - "type": "static" - }, - { - "source": "npm:storywright", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:storywright", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:stream-browserify@2.0.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:stream-browserify@2.0.2", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:stream-browserify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:stream-browserify", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:stream-each", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:stream-each", - "target": "npm:stream-shift", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:builtin-status-codes", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:to-arraybuffer", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:stream-http", - "target": "npm:builtin-status-codes", - "type": "static" - }, - { - "source": "npm:stream-http", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:stream-http", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:stream-http", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-length@5.0.1", - "target": "npm:char-regex@2.0.1", - "type": "static" - }, - { - "source": "npm:string-length@5.0.1", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width@1.0.2", - "target": "npm:code-point-at", - "type": "static" - }, - { - "source": "npm:string-width@1.0.2", - "target": "npm:is-fullwidth-code-point@1.0.0", - "type": "static" - }, - { - "source": "npm:string-width@1.0.2", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:string-width@1.0.2", - "target": "npm:code-point-at", - "type": "static" - }, - { - "source": "npm:string-width@1.0.2", - "target": "npm:is-fullwidth-code-point@1.0.0", - "type": "static" - }, - { - "source": "npm:string-width@1.0.2", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:string-width@2.1.1", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - }, - { - "source": "npm:string-width@2.1.1", - "target": "npm:strip-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:string-width@2.1.1", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - }, - { - "source": "npm:string-width@2.1.1", - "target": "npm:strip-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:string-width@2.1.1", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - }, - { - "source": "npm:string-width@2.1.1", - "target": "npm:strip-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:string-width@3.1.0", - "target": "npm:emoji-regex@7.0.3", - "type": "static" - }, - { - "source": "npm:string-width@3.1.0", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - }, - { - "source": "npm:string-width@3.1.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:string-width@3.1.0", - "target": "npm:emoji-regex@7.0.3", - "type": "static" - }, - { - "source": "npm:string-width@3.1.0", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - }, - { - "source": "npm:string-width@3.1.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.padstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.padstart", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.padstart", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:string_decoder@1.1.1", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:get-own-enumerable-property-symbols", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:is-obj", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:is-regexp", - "type": "static" - }, - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi@6.0.1", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi@6.0.1", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi@3.0.1", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@3.0.1", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@4.0.0", - "target": "npm:ansi-regex@3.0.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@5.2.0", - "target": "npm:ansi-regex@4.1.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@5.2.0", - "target": "npm:ansi-regex@4.1.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@5.2.0", - "target": "npm:ansi-regex@4.1.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@7.0.1", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@7.0.1", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - }, - { - "source": "npm:strip-bom@2.0.0", - "target": "npm:is-utf8", - "type": "static" - }, - { - "source": "npm:strip-indent@1.0.1", - "target": "npm:get-stdin@4.0.1", - "type": "static" - }, - { - "source": "npm:strip-indent", - "target": "npm:min-indent", - "type": "static" - }, - { - "source": "npm:strip-outer", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:peek-readable", - "type": "static" - }, - { - "source": "npm:structured-source", - "target": "npm:boundary", - "type": "static" - }, - { - "source": "npm:style-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:style-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:style-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:style-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:style-loader@1.3.0", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:style-loader@1.3.0", - "target": "npm:schema-utils@2.7.0", - "type": "static" - }, - { - "source": "npm:style-to-object", - "target": "npm:inline-style-parser", - "type": "static" - }, - { - "source": "npm:style-to-object", - "target": "npm:inline-style-parser", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@emotion/stylis", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@emotion/unitless", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:babel-plugin-styled-components", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:css-to-react-native", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:stylis-plugin-rtl", - "target": "npm:cssjanus", - "type": "static" - }, - { - "source": "npm:supports-color@6.0.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-color@3.2.3", - "target": "npm:has-flag@1.0.0", - "type": "static" - }, - { - "source": "npm:supports-color@3.2.3", - "target": "npm:has-flag@1.0.0", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-color@6.1.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-color", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:supports-color", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:has-flag@2.0.0", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks@2.2.0", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks@2.2.0", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:sver-compat", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:sver-compat", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:swap-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:swap-case", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:symbol.prototype.description", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:@effect/data@0.12.5", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:@effect/io", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:@effect/match", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:commander@11.0.0", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:cosmiconfig@8.2.0", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:minimatch@9.0.1", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:read-yaml-file", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:semver@7.5.2", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:tightrope", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:ts-toolbelt", - "type": "static" - }, - { - "source": "npm:table-layout", - "target": "npm:array-back@4.0.2", - "type": "static" - }, - { - "source": "npm:table-layout", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:table-layout", - "target": "npm:typical", - "type": "static" - }, - { - "source": "npm:table-layout", - "target": "npm:wordwrapjs", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:lodash.truncate", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:lodash.truncate", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:tabster", - "target": "npm:keyborg", - "type": "static" - }, - { - "source": "npm:tabster", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:ansi-escape-sequences", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:command-line-args", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:command-line-usage", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:csv-stringify", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:got@12.3.1", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:jsonschema", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:jstat", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-bodyparser", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-mount", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-node-resolve", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-send", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-static", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:pkg-install", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:pkg-up@4.0.0", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:sanitize-filename", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:selenium-webdriver", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:systeminformation", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:table", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:ua-parser-js", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:chownr@1.1.4", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:mkdirp-classic", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:chownr@1.1.4", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:mkdirp-classic", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:chownr@1.1.4", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:fs-minipass@1.2.7", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:minipass@2.9.0", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:minizlib@1.3.3", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:yallist@3.1.1", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:@types/is-function", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:is-function", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:isobject@4.0.0", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:term-size@1.2.0", - "target": "npm:execa@0.7.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript@6.0.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript@6.0.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript@6.0.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:cacache@12.0.3", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:find-cache-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:is-wsl@1.1.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:schema-utils@1.0.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:terser@4.8.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:worker-farm", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:jest-worker@26.6.2", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:serialize-javascript@5.0.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:through2-filter", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:through2-filter", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:through2@3.0.1", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:through2", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:through2@0.5.1", - "target": "npm:readable-stream@1.0.34", - "type": "static" - }, - { - "source": "npm:through2@0.5.1", - "target": "npm:xtend@3.0.0", - "type": "static" - }, - { - "source": "npm:timers-browserify", - "target": "npm:setimmediate", - "type": "static" - }, - { - "source": "npm:timers-browserify", - "target": "npm:setimmediate", - "type": "static" - }, - { - "source": "npm:timers-ext", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:timers-ext", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:title-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:title-case", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:tmp", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:tmp", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:tmp", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:tmp@0.0.33", - "target": "npm:os-tmpdir", - "type": "static" - }, - { - "source": "npm:to-absolute-glob", - "target": "npm:is-absolute", - "type": "static" - }, - { - "source": "npm:to-absolute-glob", - "target": "npm:is-negated-glob", - "type": "static" - }, - { - "source": "npm:to-camel-case", - "target": "npm:to-space-case", - "type": "static" - }, - { - "source": "npm:to-object-path", - "target": "npm:kind-of@3.2.2", - "type": "static" - }, - { - "source": "npm:to-regex-range@2.1.1", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:to-regex-range@2.1.1", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:to-regex-range", - "target": "npm:is-number@7.0.0", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:safe-regex", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:safe-regex", - "type": "static" - }, - { - "source": "npm:to-space-case", - "target": "npm:to-no-case", - "type": "static" - }, - { - "source": "npm:to-through", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:url-parse", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:url-parse", - "type": "static" - }, - { - "source": "npm:tr46@1.0.1", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tr46", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:trim-repeated", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:trim-repeated@2.0.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:truncate-utf8-bytes", - "target": "npm:utf8-byte-length", - "type": "static" - }, - { - "source": "npm:ts-invariant", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:ts-morph", - "target": "npm:@dsherret/to-absolute-glob", - "type": "static" - }, - { - "source": "npm:ts-morph", - "target": "npm:@ts-morph/common", - "type": "static" - }, - { - "source": "npm:ts-morph", - "target": "npm:code-block-writer", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node10", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node12", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node14", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node16", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:arg", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:create-require", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:diff", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:v8-compile-cache-lib", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:yn", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:tsconfig-paths@4.2.0", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:@types/json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:@types/json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:@tufjs/models", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:tunnel-agent", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:type-check@0.4.0", - "target": "npm:prelude-ls@1.2.1", - "type": "static" - }, - { - "source": "npm:type-check@0.4.0", - "target": "npm:prelude-ls@1.2.1", - "type": "static" - }, - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:typed-rest-client", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:typed-rest-client", - "target": "npm:tunnel", - "type": "static" - }, - { - "source": "npm:typed-rest-client", - "target": "npm:underscore", - "type": "static" - }, - { - "source": "npm:typedarray-to-buffer", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:unbzip2-stream", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:unbzip2-stream", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:arr-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:bach", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:collection-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:fast-levenshtein@1.1.4", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:last-run", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:object.defaults", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:object.reduce", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:undertaker-registry", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:arr-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:bach", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:collection-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:fast-levenshtein@1.1.4", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:last-run", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:object.defaults", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:object.reduce", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:undertaker-registry", - "type": "static" - }, - { - "source": "npm:unherit", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:unherit", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-canonical-property-names-ecmascript", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-property-aliases-ecmascript", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:bail", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:is-buffer@2.0.4", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:is-plain-obj@2.1.0", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:trough", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:vfile", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:bail", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:trough", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:vfile@2.3.0", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:x-is-string", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:bail", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:trough", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:vfile@2.3.0", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:x-is-string", - "type": "static" - }, - { - "source": "npm:union-value", - "target": "npm:arr-union", - "type": "static" - }, - { - "source": "npm:union-value", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:union-value", - "target": "npm:is-extendable", - "type": "static" - }, - { - "source": "npm:union-value", - "target": "npm:set-value", - "type": "static" - }, - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - }, - { - "source": "npm:unique-filename@2.0.1", - "target": "npm:unique-slug@3.0.0", - "type": "static" - }, - { - "source": "npm:unique-filename@3.0.0", - "target": "npm:unique-slug@4.0.0", - "type": "static" - }, - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:unique-slug@3.0.0", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:unique-slug@4.0.0", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:unique-stream", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:unique-stream", - "target": "npm:through2-filter", - "type": "static" - }, - { - "source": "npm:unique-string", - "target": "npm:crypto-random-string", - "type": "static" - }, - { - "source": "npm:unist-util-remove-position", - "target": "npm:unist-util-visit@1.4.1", - "type": "static" - }, - { - "source": "npm:unist-util-remove-position@2.0.1", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:unist-util-remove", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:unist-util-stringify-position@2.0.2", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:unist-util-visit-parents@2.1.2", - "target": "npm:unist-util-is@3.0.0", - "type": "static" - }, - { - "source": "npm:unist-util-visit-parents", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:unist-util-visit-parents", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-visit-parents", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-visit-parents", - "type": "static" - }, - { - "source": "npm:unist-util-visit@1.4.1", - "target": "npm:unist-util-visit-parents@2.1.2", - "type": "static" - }, - { - "source": "npm:unist-util-visit@1.4.1", - "target": "npm:unist-util-visit-parents@2.1.2", - "type": "static" - }, - { - "source": "npm:universal-url", - "target": "npm:hasurl", - "type": "static" - }, - { - "source": "npm:universal-url", - "target": "npm:whatwg-url@7.0.0", - "type": "static" - }, - { - "source": "npm:unset-value", - "target": "npm:has-value@0.3.1", - "type": "static" - }, - { - "source": "npm:unset-value", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:untildify@2.1.0", - "target": "npm:os-homedir", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:big-integer", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:binary", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:bluebird@3.4.7", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:buffer-indexof-polyfill", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:duplexer2@0.1.4", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:fstream", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:listenercount", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:setimmediate", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:boxen@1.3.0", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:configstore", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:import-lazy@2.1.0", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:is-ci@1.2.1", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:is-installed-globally@0.1.0", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:is-npm", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:latest-version", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:semver-diff", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:xdg-basedir", - "type": "static" - }, - { - "source": "npm:upper-case-first", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:upper-case-first", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:url-loader@4.1.1", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:url-loader@4.1.1", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:url-loader@4.1.1", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:url-parse-lax", - "target": "npm:prepend-http", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:querystringify", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:url", - "target": "npm:punycode@1.3.2", - "type": "static" - }, - { - "source": "npm:url", - "target": "npm:querystring", - "type": "static" - }, - { - "source": "npm:use-subscription", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:util.promisify", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:util.promisify", - "target": "npm:object.getownpropertydescriptors", - "type": "static" - }, - { - "source": "npm:util@0.10.3", - "target": "npm:inherits@2.0.1", - "type": "static" - }, - { - "source": "npm:util@0.11.1", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-arguments", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-arguments", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:v8flags", - "target": "npm:user-home", - "type": "static" - }, - { - "source": "npm:v8flags@3.1.3", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - }, - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - }, - { - "source": "npm:validate-npm-package-name@3.0.0", - "target": "npm:builtins@1.0.3", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:vfile-message@1.1.1", - "target": "npm:unist-util-stringify-position", - "type": "static" - }, - { - "source": "npm:vfile-message", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:vfile-message", - "target": "npm:unist-util-stringify-position@2.0.2", - "type": "static" - }, - { - "source": "npm:vfile@2.3.0", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:vfile@2.3.0", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:vfile@2.3.0", - "target": "npm:unist-util-stringify-position", - "type": "static" - }, - { - "source": "npm:vfile@2.3.0", - "target": "npm:vfile-message@1.1.1", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:is-buffer@2.0.4", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:unist-util-stringify-position@2.0.2", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:vfile-message", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:fs-mkdirp-stream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:glob-stream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:is-valid-glob", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:lazystream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:lead", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:pumpify", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:remove-bom-buffer", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:remove-bom-stream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:resolve-options", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:to-through", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:value-or-function", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:vinyl", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:vinyl-sourcemap", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:append-buffer", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:normalize-path@2.1.1", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:now-and-later", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:remove-bom-buffer", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:vinyl", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemaps-apply", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone@2.1.2", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-buffer", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-stats", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:cloneable-readable", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone@2.1.2", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-buffer", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-stats", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:cloneable-readable", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone@2.1.2", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-buffer", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-stats", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:cloneable-readable", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:vinyl@0.5.3", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:vinyl@0.5.3", - "target": "npm:clone-stats@0.0.1", - "type": "static" - }, - { - "source": "npm:vinyl@0.5.3", - "target": "npm:replace-ext@0.0.1", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:@octokit/rest@19.0.11", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:adal-node", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:azure-devops-node-api", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:azure-storage", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:azure-storage-simple", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:pixel-buffer-diff-folders", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:unzipper", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:w3c-xmlserializer", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - }, - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - }, - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - }, - { - "source": "npm:watchpack-chokidar2", - "target": "npm:chokidar@2.1.8", - "type": "static" - }, - { - "source": "npm:watchpack@1.7.5", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:watchpack@1.7.5", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:watchpack@1.7.5", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:watchpack@1.7.5", - "target": "npm:watchpack-chokidar2", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - }, - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:commander@6.2.1", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:gzip-size@6.0.0", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:opener", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:sirv", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:ws@7.5.6", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:@discoveryjs/json-ext", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:@webpack-cli/configtest", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:@webpack-cli/info", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:@webpack-cli/serve", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:colorette@2.0.20", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:commander@7.2.0", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:fastest-levenshtein", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:interpret@2.2.0", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:rechoir@0.7.0", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mem", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs@3.4.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mem", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs@3.4.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:memory-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:webpack-log", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:colorette@2.0.20", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:memfs@3.4.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:schema-utils@4.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:colorette@2.0.20", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:del", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ipaddr.js", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:portfinder", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:schema-utils@4.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack-dev-middleware@5.3.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:querystring", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:querystring", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:webpack-log", - "target": "npm:ansi-colors@3.2.3", - "type": "static" - }, - { - "source": "npm:webpack-log", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:wildcard", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:wildcard", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:wildcard", - "type": "static" - }, - { - "source": "npm:webpack-merge@4.2.2", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-list-map", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-list-map", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-list-map", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-list-map", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:webpack-virtual-modules", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:@webassemblyjs/helper-module-context", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:@webassemblyjs/wasm-edit@1.9.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:@webassemblyjs/wasm-parser@1.9.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:acorn@6.4.1", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:enhanced-resolve@4.5.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:eslint-scope@4.0.3", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:json-parse-better-errors", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:loader-runner@2.4.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:memory-fs", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:node-libs-browser", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:schema-utils@1.0.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:terser-webpack-plugin@1.4.5", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:watchpack@1.7.5", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources@3.2.3", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources@3.2.3", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources@3.2.3", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources@3.2.3", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources@3.2.3", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources@3.2.3", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources@3.2.3", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - }, - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:tr46@0.0.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:webidl-conversions@3.0.1", - "type": "static" - }, - { - "source": "npm:whatwg-url@7.0.0", - "target": "npm:lodash.sortby", - "type": "static" - }, - { - "source": "npm:whatwg-url@7.0.0", - "target": "npm:tr46@1.0.1", - "type": "static" - }, - { - "source": "npm:whatwg-url@7.0.0", - "target": "npm:webidl-conversions@4.0.2", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-bigint", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:foreach", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which@2.0.2", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which@2.0.2", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which@3.0.1", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:wide-align@1.1.3", - "target": "npm:string-width@2.1.1", - "type": "static" - }, - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:widest-line@2.0.1", - "target": "npm:string-width@2.1.1", - "type": "static" - }, - { - "source": "npm:widest-line", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wordwrapjs", - "target": "npm:reduce-flatten", - "type": "static" - }, - { - "source": "npm:wordwrapjs", - "target": "npm:typical", - "type": "static" - }, - { - "source": "npm:worker-farm", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:worker-farm", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:worker-rpc", - "target": "npm:microevent.ts", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@2.1.0", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@2.1.0", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@5.1.0", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@5.1.0", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@5.1.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:write-file-atomic@5.0.1", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@5.0.1", - "target": "npm:signal-exit@4.0.2", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:typedarray-to-buffer", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:filesize@3.6.1", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:moment", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:detect-indent", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:type-fest@0.4.1", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:write-json-file", - "type": "static" - }, - { - "source": "npm:x-default-browser", - "target": "npm:default-browser-id", - "type": "static" - }, - { - "source": "npm:xml2js", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:xml2js", - "target": "npm:xmlbuilder", - "type": "static" - }, - { - "source": "npm:xml2js@0.2.8", - "target": "npm:sax@0.5.8", - "type": "static" - }, - { - "source": "npm:yargs-parser", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs-parser", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs-parser", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs-parser@5.0.0", - "target": "npm:camelcase@3.0.0", - "type": "static" - }, - { - "source": "npm:yargs-unparser@1.6.0", - "target": "npm:flat@4.1.0", - "type": "static" - }, - { - "source": "npm:yargs-unparser@1.6.0", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:yargs-unparser@1.6.0", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:yargs-unparser", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:yargs-unparser", - "target": "npm:decamelize@4.0.0", - "type": "static" - }, - { - "source": "npm:yargs-unparser", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:yargs-unparser", - "target": "npm:is-plain-obj@2.1.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui@5.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui@5.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui@5.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:cliui@7.0.4", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:y18n@5.0.5", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:cliui@7.0.4", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:y18n@5.0.5", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:cliui@7.0.4", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:y18n@5.0.5", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:cliui@6.0.0", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:yargs-parser@18.1.3", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:y18n@5.0.5", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:y18n@5.0.5", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:camelcase@3.0.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:cliui@3.2.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:get-caller-file@1.0.3", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:os-locale", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:read-pkg-up@1.0.1", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:require-main-filename@1.0.1", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:which-module@1.0.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:y18n@3.2.2", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:yargs-parser@5.0.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:camelcase@3.0.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:cliui@3.2.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:get-caller-file@1.0.3", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:os-locale", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:read-pkg-up@1.0.1", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:require-main-filename@1.0.1", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:which-module@1.0.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:y18n@3.2.2", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:yargs-parser@5.0.0", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:buffer-crc32", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:fd-slicer", - "type": "static" - }, - { - "source": "npm:z-schema", - "target": "npm:lodash.get", - "type": "static" - }, - { - "source": "npm:z-schema", - "target": "npm:lodash.isequal", - "type": "static" - }, - { - "source": "npm:z-schema", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:z-schema", - "target": "npm:commander", - "type": "static" - } - ] -} diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json deleted file mode 100644 index 764e533ceb4f0..0000000000000 --- a/.nx/cache/project-graph.json +++ /dev/null @@ -1,101797 +0,0 @@ -{ - "nodes": { - "@fluentui/react-storybook-addon-export-to-sandbox": { - "name": "@fluentui/react-storybook-addon-export-to-sandbox", - "type": "lib", - "data": { - "root": "packages/react-components/react-storybook-addon-export-to-sandbox", - "sourceRoot": "packages/react-components/react-storybook-addon-export-to-sandbox/src", - "name": "@fluentui/react-storybook-addon-export-to-sandbox", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/babel-preset-storybook-full-source": { - "name": "@fluentui/babel-preset-storybook-full-source", - "type": "lib", - "data": { - "root": "packages/react-components/babel-preset-storybook-full-source", - "sourceRoot": "packages/react-components/babel-preset-storybook-full-source/src", - "name": "@fluentui/babel-preset-storybook-full-source", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:node"] - } - }, - "@fluentui/react-timepicker-compat-preview": { - "name": "@fluentui/react-timepicker-compat-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-timepicker-compat-preview", - "sourceRoot": "packages/react-components/react-timepicker-compat-preview/src", - "name": "@fluentui/react-timepicker-compat-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext", "compat"], - "implicitDependencies": [] - } - }, - "@fluentui/react-teaching-popover-preview": { - "name": "@fluentui/react-teaching-popover-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-teaching-popover-preview", - "sourceRoot": "packages/react-components/react-teaching-popover-preview/src", - "name": "@fluentui/react-teaching-popover-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/babel-preset-global-context": { - "name": "@fluentui/babel-preset-global-context", - "type": "lib", - "data": { - "root": "packages/react-components/babel-preset-global-context", - "sourceRoot": "packages/react-components/babel-preset-global-context/src", - "name": "@fluentui/babel-preset-global-context", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "pree2e": { - "executor": "nx:run-script", - "options": { - "script": "pree2e" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:node"] - } - }, - "@fluentui/react-portal-compat-context": { - "name": "@fluentui/react-portal-compat-context", - "type": "lib", - "data": { - "root": "packages/react-components/react-portal-compat-context", - "sourceRoot": "packages/react-components/react-portal-compat-context/src", - "name": "@fluentui/react-portal-compat-context", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "ships-amd", "platform:web"] - } - }, - "@fluentui/react-swatch-picker-preview": { - "name": "@fluentui/react-swatch-picker-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-swatch-picker-preview", - "sourceRoot": "packages/react-components/react-swatch-picker-preview/src", - "name": "@fluentui/react-swatch-picker-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/react-conformance-griffel": { - "name": "@fluentui/react-conformance-griffel", - "type": "lib", - "data": { - "root": "packages/react-components/react-conformance-griffel", - "sourceRoot": "packages/react-components/react-conformance-griffel/src", - "name": "@fluentui/react-conformance-griffel", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:node"], - "implicitDependencies": [] - } - }, - "@fluentui/react-component-nesting-registry": { - "name": "@fluentui/react-component-nesting-registry", - "type": "lib", - "data": { - "root": "packages/fluentui/react-component-nesting-registry", - "sourceRoot": "packages/fluentui/react-component-nesting-registry", - "name": "@fluentui/react-component-nesting-registry", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-northstar-emotion-renderer": { - "name": "@fluentui/react-northstar-emotion-renderer", - "type": "lib", - "data": { - "root": "packages/fluentui/react-northstar-emotion-renderer", - "sourceRoot": "packages/fluentui/react-northstar-emotion-renderer", - "name": "@fluentui/react-northstar-emotion-renderer", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-colorpicker-compat": { - "name": "@fluentui/react-colorpicker-compat", - "type": "lib", - "data": { - "root": "packages/react-components/react-colorpicker-compat", - "sourceRoot": "packages/react-components/react-colorpicker-compat/src", - "name": "@fluentui/react-colorpicker-compat", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-northstar-styles-renderer": { - "name": "@fluentui/react-northstar-styles-renderer", - "type": "lib", - "data": { - "root": "packages/fluentui/react-northstar-styles-renderer", - "sourceRoot": "packages/fluentui/react-northstar-styles-renderer", - "name": "@fluentui/react-northstar-styles-renderer", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-datepicker-compat": { - "name": "@fluentui/react-datepicker-compat", - "type": "lib", - "data": { - "root": "packages/react-components/react-datepicker-compat", - "sourceRoot": "packages/react-components/react-datepicker-compat/src", - "name": "@fluentui/react-datepicker-compat", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web", "compat"] - } - }, - "@fluentui/react-timepicker-compat": { - "name": "@fluentui/react-timepicker-compat", - "type": "lib", - "data": { - "root": "packages/react-components/react-timepicker-compat", - "sourceRoot": "packages/react-components/react-timepicker-compat/src", - "name": "@fluentui/react-timepicker-compat", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext", "compat"], - "implicitDependencies": [] - } - }, - "@fluentui/react-context-selector": { - "name": "@fluentui/react-context-selector", - "type": "lib", - "data": { - "root": "packages/react-components/react-context-selector", - "sourceRoot": "packages/react-components/react-context-selector/src", - "name": "@fluentui/react-context-selector", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-component-event-listener": { - "name": "@fluentui/react-component-event-listener", - "type": "lib", - "data": { - "root": "packages/fluentui/react-component-event-listener", - "sourceRoot": "packages/fluentui/react-component-event-listener", - "name": "@fluentui/react-component-event-listener", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-northstar-fela-renderer": { - "name": "@fluentui/react-northstar-fela-renderer", - "type": "lib", - "data": { - "root": "packages/fluentui/react-northstar-fela-renderer", - "sourceRoot": "packages/fluentui/react-northstar-fela-renderer", - "name": "@fluentui/react-northstar-fela-renderer", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-motions-preview": { - "name": "@fluentui/react-motions-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-motions-preview", - "sourceRoot": "packages/react-components/react-motions-preview/src", - "name": "@fluentui/react-motions-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/react-migration-v0-v9": { - "name": "@fluentui/react-migration-v0-v9", - "type": "lib", - "data": { - "root": "packages/react-components/react-migration-v0-v9", - "sourceRoot": "packages/react-components/react-migration-v0-v9/src", - "name": "@fluentui/react-migration-v0-v9", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "react-northstar", "platform:web"] - } - }, - "@fluentui/react-calendar-compat": { - "name": "@fluentui/react-calendar-compat", - "type": "lib", - "data": { - "root": "packages/react-components/react-calendar-compat", - "sourceRoot": "packages/react-components/react-calendar-compat/src", - "name": "@fluentui/react-calendar-compat", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext", "compat"], - "implicitDependencies": [] - } - }, - "@fluentui/react-shared-contexts": { - "name": "@fluentui/react-shared-contexts", - "type": "lib", - "data": { - "root": "packages/react-components/react-shared-contexts", - "sourceRoot": "packages/react-components/react-shared-contexts/src", - "name": "@fluentui/react-shared-contexts", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-migration-v8-v9": { - "name": "@fluentui/react-migration-v8-v9", - "type": "lib", - "data": { - "root": "packages/react-components/react-migration-v8-v9", - "sourceRoot": "packages/react-components/react-migration-v8-v9/src", - "name": "@fluentui/react-migration-v8-v9", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "v8", "platform:web"] - } - }, - "@fluentui/react-storybook-addon": { - "name": "@fluentui/react-storybook-addon", - "type": "lib", - "data": { - "root": "packages/react-components/react-storybook-addon", - "sourceRoot": "packages/react-components/react-storybook-addon/src", - "name": "@fluentui/react-storybook-addon", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-motion-preview": { - "name": "@fluentui/react-motion-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-motion-preview", - "sourceRoot": "packages/react-components/react-motion-preview/src", - "name": "@fluentui/react-motion-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/react-rating-preview": { - "name": "@fluentui/react-rating-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-rating-preview", - "sourceRoot": "packages/react-components/react-rating-preview/src", - "name": "@fluentui/react-rating-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/react-search-preview": { - "name": "@fluentui/react-search-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-search-preview", - "sourceRoot": "packages/react-components/react-search-preview/src", - "name": "@fluentui/react-search-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-portal-compat": { - "name": "@fluentui/react-portal-compat", - "type": "lib", - "data": { - "root": "packages/react-components/react-portal-compat", - "sourceRoot": "packages/react-components/react-portal-compat/src", - "name": "@fluentui/react-portal-compat", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "ships-amd", "platform:web"] - } - }, - "@fluentui/react-northstar-prototypes": { - "name": "@fluentui/react-northstar-prototypes", - "type": "lib", - "data": { - "root": "packages/fluentui/react-northstar-prototypes", - "sourceRoot": "packages/fluentui/react-northstar-prototypes", - "name": "@fluentui/react-northstar-prototypes", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-list-preview": { - "name": "@fluentui/react-list-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-list-preview", - "sourceRoot": "packages/react-components/react-list-preview/src", - "name": "@fluentui/react-list-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/priority-overflow": { - "name": "@fluentui/priority-overflow", - "type": "lib", - "data": { - "root": "packages/react-components/priority-overflow", - "sourceRoot": "packages/react-components/priority-overflow/src", - "name": "@fluentui/priority-overflow", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-nav-preview": { - "name": "@fluentui/react-nav-preview", - "type": "lib", - "data": { - "root": "packages/react-components/react-nav-preview", - "sourceRoot": "packages/react-components/react-nav-preview/src", - "name": "@fluentui/react-nav-preview", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/react-positioning": { - "name": "@fluentui/react-positioning", - "type": "lib", - "data": { - "root": "packages/react-components/react-positioning", - "sourceRoot": "packages/react-components/react-positioning/src", - "name": "@fluentui/react-positioning", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-virtualizer": { - "name": "@fluentui/react-virtualizer", - "type": "lib", - "data": { - "root": "packages/react-components/react-virtualizer", - "sourceRoot": "packages/react-components/react-virtualizer/src", - "name": "@fluentui/react-virtualizer", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-jsx-runtime": { - "name": "@fluentui/react-jsx-runtime", - "type": "lib", - "data": { - "root": "packages/react-components/react-jsx-runtime", - "sourceRoot": "packages/react-components/react-jsx-runtime/src", - "name": "@fluentui/react-jsx-runtime", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-message-bar": { - "name": "@fluentui/react-message-bar", - "type": "lib", - "data": { - "root": "packages/react-components/react-message-bar", - "sourceRoot": "packages/react-components/react-message-bar/src", - "name": "@fluentui/react-message-bar", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/react-infobutton": { - "name": "@fluentui/react-infobutton", - "type": "lib", - "data": { - "root": "packages/react-components/react-infobutton", - "sourceRoot": "packages/react-components/react-infobutton/src", - "name": "@fluentui/react-infobutton", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-breadcrumb": { - "name": "@fluentui/react-breadcrumb", - "type": "lib", - "data": { - "root": "packages/react-components/react-breadcrumb", - "sourceRoot": "packages/react-components/react-breadcrumb/src", - "name": "@fluentui/react-breadcrumb", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-spinbutton": { - "name": "@fluentui/react-spinbutton", - "type": "lib", - "data": { - "root": "packages/react-components/react-spinbutton", - "sourceRoot": "packages/react-components/react-spinbutton/src", - "name": "@fluentui/react-spinbutton", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-components": { - "name": "@fluentui/react-components", - "type": "lib", - "data": { - "root": "packages/react-components/react-components", - "sourceRoot": "packages/react-components/react-components/src", - "name": "@fluentui/react-components", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "verify-packaging": { - "executor": "nx:run-script", - "options": { - "script": "verify-packaging" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-theme-sass": { - "name": "@fluentui/react-theme-sass", - "type": "lib", - "data": { - "root": "packages/react-components/react-theme-sass", - "sourceRoot": "packages/react-components/react-theme-sass/src", - "name": "@fluentui/react-theme-sass", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-accordion": { - "name": "@fluentui/react-accordion", - "type": "lib", - "data": { - "root": "packages/react-components/react-accordion", - "sourceRoot": "packages/react-components/react-accordion/src", - "name": "@fluentui/react-accordion", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-utilities": { - "name": "@fluentui/react-utilities", - "type": "lib", - "data": { - "root": "packages/react-components/react-utilities", - "sourceRoot": "packages/react-components/react-utilities/src", - "name": "@fluentui/react-utilities", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-infolabel": { - "name": "@fluentui/react-infolabel", - "type": "lib", - "data": { - "root": "packages/react-components/react-infolabel", - "sourceRoot": "packages/react-components/react-infolabel/src", - "name": "@fluentui/react-infolabel", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/react-skeleton": { - "name": "@fluentui/react-skeleton", - "type": "lib", - "data": { - "root": "packages/react-components/react-skeleton", - "sourceRoot": "packages/react-components/react-skeleton/src", - "name": "@fluentui/react-skeleton", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-textarea": { - "name": "@fluentui/react-textarea", - "type": "lib", - "data": { - "root": "packages/react-components/react-textarea", - "sourceRoot": "packages/react-components/react-textarea/src", - "name": "@fluentui/react-textarea", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-checkbox": { - "name": "@fluentui/react-checkbox", - "type": "lib", - "data": { - "root": "packages/react-components/react-checkbox", - "sourceRoot": "packages/react-components/react-checkbox/src", - "name": "@fluentui/react-checkbox", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-overflow": { - "name": "@fluentui/react-overflow", - "type": "lib", - "data": { - "root": "packages/react-components/react-overflow", - "sourceRoot": "packages/react-components/react-overflow/src", - "name": "@fluentui/react-overflow", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/global-context": { - "name": "@fluentui/global-context", - "type": "lib", - "data": { - "root": "packages/react-components/global-context", - "sourceRoot": "packages/react-components/global-context/src", - "name": "@fluentui/global-context", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-provider": { - "name": "@fluentui/react-provider", - "type": "lib", - "data": { - "root": "packages/react-components/react-provider", - "sourceRoot": "packages/react-components/react-provider/src", - "name": "@fluentui/react-provider", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-progress": { - "name": "@fluentui/react-progress", - "type": "lib", - "data": { - "root": "packages/react-components/react-progress", - "sourceRoot": "packages/react-components/react-progress/src", - "name": "@fluentui/react-progress", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-combobox": { - "name": "@fluentui/react-combobox", - "type": "lib", - "data": { - "root": "packages/react-components/react-combobox", - "sourceRoot": "packages/react-components/react-combobox/src", - "name": "@fluentui/react-combobox", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/theme-designer": { - "name": "@fluentui/theme-designer", - "type": "lib", - "data": { - "root": "packages/react-components/theme-designer", - "sourceRoot": "packages/react-components/theme-designer/src", - "name": "@fluentui/theme-designer", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "build-storybook": { - "executor": "nx:run-script", - "options": { - "script": "build-storybook" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-tooltip": { - "name": "@fluentui/react-tooltip", - "type": "lib", - "data": { - "root": "packages/react-components/react-tooltip", - "sourceRoot": "packages/react-components/react-tooltip/src", - "name": "@fluentui/react-tooltip", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/keyboard-keys": { - "name": "@fluentui/keyboard-keys", - "type": "lib", - "data": { - "root": "packages/react-components/keyboard-keys", - "sourceRoot": "packages/react-components/keyboard-keys/src", - "name": "@fluentui/keyboard-keys", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-toolbar": { - "name": "@fluentui/react-toolbar", - "type": "lib", - "data": { - "root": "packages/react-components/react-toolbar", - "sourceRoot": "packages/react-components/react-toolbar/src", - "name": "@fluentui/react-toolbar", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-popover": { - "name": "@fluentui/react-popover", - "type": "lib", - "data": { - "root": "packages/react-components/react-popover", - "sourceRoot": "packages/react-components/react-popover/src", - "name": "@fluentui/react-popover", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-icons-northstar": { - "name": "@fluentui/react-icons-northstar", - "type": "lib", - "data": { - "root": "packages/fluentui/react-icons-northstar", - "sourceRoot": "packages/fluentui/react-icons-northstar", - "name": "@fluentui/react-icons-northstar", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-divider": { - "name": "@fluentui/react-divider", - "type": "lib", - "data": { - "root": "packages/react-components/react-divider", - "sourceRoot": "packages/react-components/react-divider/src", - "name": "@fluentui/react-divider", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-tabster": { - "name": "@fluentui/react-tabster", - "type": "lib", - "data": { - "root": "packages/react-components/react-tabster", - "sourceRoot": "packages/react-components/react-tabster/src", - "name": "@fluentui/react-tabster", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-persona": { - "name": "@fluentui/react-persona", - "type": "lib", - "data": { - "root": "packages/react-components/react-persona", - "sourceRoot": "packages/react-components/react-persona/src", - "name": "@fluentui/react-persona", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-spinner": { - "name": "@fluentui/react-spinner", - "type": "lib", - "data": { - "root": "packages/react-components/react-spinner", - "sourceRoot": "packages/react-components/react-spinner/src", - "name": "@fluentui/react-spinner", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-drawer": { - "name": "@fluentui/react-drawer", - "type": "lib", - "data": { - "root": "packages/react-components/react-drawer", - "sourceRoot": "packages/react-components/react-drawer/src", - "name": "@fluentui/react-drawer", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-button": { - "name": "@fluentui/react-button", - "type": "lib", - "data": { - "root": "packages/react-components/react-button", - "sourceRoot": "packages/react-components/react-button/src", - "name": "@fluentui/react-button", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-slider": { - "name": "@fluentui/react-slider", - "type": "lib", - "data": { - "root": "packages/react-components/react-slider", - "sourceRoot": "packages/react-components/react-slider/src", - "name": "@fluentui/react-slider", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-select": { - "name": "@fluentui/react-select", - "type": "lib", - "data": { - "root": "packages/react-components/react-select", - "sourceRoot": "packages/react-components/react-select/src", - "name": "@fluentui/react-select", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-switch": { - "name": "@fluentui/react-switch", - "type": "lib", - "data": { - "root": "packages/react-components/react-switch", - "sourceRoot": "packages/react-components/react-switch/src", - "name": "@fluentui/react-switch", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-dialog": { - "name": "@fluentui/react-dialog", - "type": "lib", - "data": { - "root": "packages/react-components/react-dialog", - "sourceRoot": "packages/react-components/react-dialog/src", - "name": "@fluentui/react-dialog", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-avatar": { - "name": "@fluentui/react-avatar", - "type": "lib", - "data": { - "root": "packages/react-components/react-avatar", - "sourceRoot": "packages/react-components/react-avatar/src", - "name": "@fluentui/react-avatar", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-portal": { - "name": "@fluentui/react-portal", - "type": "lib", - "data": { - "root": "packages/react-components/react-portal", - "sourceRoot": "packages/react-components/react-portal/src", - "name": "@fluentui/react-portal", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-table": { - "name": "@fluentui/react-table", - "type": "lib", - "data": { - "root": "packages/react-components/react-table", - "sourceRoot": "packages/react-components/react-table/src", - "name": "@fluentui/react-table", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-badge": { - "name": "@fluentui/react-badge", - "type": "lib", - "data": { - "root": "packages/react-components/react-badge", - "sourceRoot": "packages/react-components/react-badge/src", - "name": "@fluentui/react-badge", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/perf-test-northstar": { - "name": "@fluentui/perf-test-northstar", - "type": "app", - "data": { - "root": "packages/fluentui/perf-test-northstar", - "sourceRoot": "packages/fluentui/perf-test-northstar", - "name": "@fluentui/perf-test-northstar", - "projectType": "application", - "targets": { - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "perf:test": { - "executor": "nx:run-script", - "options": { - "script": "perf:test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-field": { - "name": "@fluentui/react-field", - "type": "lib", - "data": { - "root": "packages/react-components/react-field", - "sourceRoot": "packages/react-components/react-field/src", - "name": "@fluentui/react-field", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-theme": { - "name": "@fluentui/react-theme", - "type": "lib", - "data": { - "root": "packages/react-components/react-theme", - "sourceRoot": "packages/react-components/react-theme/src", - "name": "@fluentui/react-theme", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-alert": { - "name": "@fluentui/react-alert", - "type": "lib", - "data": { - "root": "packages/react-components/react-alert", - "sourceRoot": "packages/react-components/react-alert/src", - "name": "@fluentui/react-alert", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-label": { - "name": "@fluentui/react-label", - "type": "lib", - "data": { - "root": "packages/react-components/react-label", - "sourceRoot": "packages/react-components/react-label/src", - "name": "@fluentui/react-label", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-toast": { - "name": "@fluentui/react-toast", - "type": "lib", - "data": { - "root": "packages/react-components/react-toast", - "sourceRoot": "packages/react-components/react-toast/src", - "name": "@fluentui/react-toast", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-input": { - "name": "@fluentui/react-input", - "type": "lib", - "data": { - "root": "packages/react-components/react-input", - "sourceRoot": "packages/react-components/react-input/src", - "name": "@fluentui/react-input", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-image": { - "name": "@fluentui/react-image", - "type": "lib", - "data": { - "root": "packages/react-components/react-image", - "sourceRoot": "packages/react-components/react-image/src", - "name": "@fluentui/react-image", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-component-ref": { - "name": "@fluentui/react-component-ref", - "type": "lib", - "data": { - "root": "packages/fluentui/react-component-ref", - "sourceRoot": "packages/fluentui/react-component-ref", - "name": "@fluentui/react-component-ref", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "build:info": { - "executor": "nx:run-script", - "options": { - "script": "build:info" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/jest-serializer-merge-styles": { - "name": "@fluentui/jest-serializer-merge-styles", - "type": "lib", - "data": { - "root": "packages/jest-serializer-merge-styles", - "sourceRoot": "packages/jest-serializer-merge-styles/src", - "name": "@fluentui/jest-serializer-merge-styles", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8", "platform:node"] - } - }, - "@fluentui/react-radio": { - "name": "@fluentui/react-radio", - "type": "lib", - "data": { - "root": "packages/react-components/react-radio", - "sourceRoot": "packages/react-components/react-radio/src", - "name": "@fluentui/react-radio", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-text": { - "name": "@fluentui/react-text", - "type": "lib", - "data": { - "root": "packages/react-components/react-text", - "sourceRoot": "packages/react-components/react-text/src", - "name": "@fluentui/react-text", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "verify-packaging": { - "executor": "nx:run-script", - "options": { - "script": "verify-packaging" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-menu": { - "name": "@fluentui/react-menu", - "type": "lib", - "data": { - "root": "packages/react-components/react-menu", - "sourceRoot": "packages/react-components/react-menu/src", - "name": "@fluentui/react-menu", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-aria": { - "name": "@fluentui/react-aria", - "type": "lib", - "data": { - "root": "packages/react-components/react-aria", - "sourceRoot": "packages/react-components/react-aria/src", - "name": "@fluentui/react-aria", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-tree": { - "name": "@fluentui/react-tree", - "type": "lib", - "data": { - "root": "packages/react-components/react-tree", - "sourceRoot": "packages/react-components/react-tree/src", - "name": "@fluentui/react-tree", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:web", "vNext"], - "implicitDependencies": [] - } - }, - "@fluentui/ability-attributes": { - "name": "@fluentui/ability-attributes", - "type": "lib", - "data": { - "root": "packages/fluentui/ability-attributes", - "sourceRoot": "packages/fluentui/ability-attributes", - "name": "@fluentui/ability-attributes", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "schema": { - "executor": "nx:run-script", - "options": { - "script": "schema" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-tags": { - "name": "@fluentui/react-tags", - "type": "lib", - "data": { - "root": "packages/react-components/react-tags", - "sourceRoot": "packages/react-components/react-tags/src", - "name": "@fluentui/react-tags", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/react-tabs": { - "name": "@fluentui/react-tabs", - "type": "lib", - "data": { - "root": "packages/react-components/react-tabs", - "sourceRoot": "packages/react-components/react-tabs/src", - "name": "@fluentui/react-tabs", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/ts-minbar-test-react-components": { - "name": "@fluentui/ts-minbar-test-react-components", - "type": "app", - "data": { - "root": "apps/ts-minbar-test-react-components", - "sourceRoot": "apps/ts-minbar-test-react-components", - "name": "@fluentui/ts-minbar-test-react-components", - "projectType": "application", - "targets": { - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-link": { - "name": "@fluentui/react-link", - "type": "lib", - "data": { - "root": "packages/react-components/react-link", - "sourceRoot": "packages/react-components/react-link/src", - "name": "@fluentui/react-link", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/react-card": { - "name": "@fluentui/react-card", - "type": "lib", - "data": { - "root": "packages/react-components/react-card", - "sourceRoot": "packages/react-components/react-card/src", - "name": "@fluentui/react-card", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle-size": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "tags": ["vNext", "platform:web"], - "implicitDependencies": [] - } - }, - "@fluentui/docs-components": { - "name": "@fluentui/docs-components", - "type": "lib", - "data": { - "root": "packages/fluentui/docs-components", - "sourceRoot": "packages/fluentui/docs-components", - "name": "@fluentui/docs-components", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-icons-mdl2-branded": { - "name": "@fluentui/react-icons-mdl2-branded", - "type": "lib", - "data": { - "root": "packages/react-icons-mdl2-branded", - "sourceRoot": "packages/react-icons-mdl2-branded", - "name": "@fluentui/react-icons-mdl2-branded", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-docsite-components": { - "name": "@fluentui/react-docsite-components", - "type": "lib", - "data": { - "root": "packages/react-docsite-components", - "sourceRoot": "packages/react-docsite-components/src", - "name": "@fluentui/react-docsite-components", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/react-proptypes": { - "name": "@fluentui/react-proptypes", - "type": "lib", - "data": { - "root": "packages/fluentui/react-proptypes", - "sourceRoot": "packages/fluentui/react-proptypes", - "name": "@fluentui/react-proptypes", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-telemetry": { - "name": "@fluentui/react-telemetry", - "type": "lib", - "data": { - "root": "packages/fluentui/react-telemetry", - "sourceRoot": "packages/fluentui/react-telemetry", - "name": "@fluentui/react-telemetry", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-northstar": { - "name": "@fluentui/react-northstar", - "type": "lib", - "data": { - "root": "packages/fluentui/react-northstar", - "sourceRoot": "packages/fluentui/react-northstar", - "name": "@fluentui/react-northstar", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "build:info": { - "executor": "nx:run-script", - "options": { - "script": "build:info" - }, - "configurations": {} - }, - "bundle-size-auditor": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size-auditor" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-bindings": { - "name": "@fluentui/react-bindings", - "type": "lib", - "data": { - "root": "packages/fluentui/react-bindings", - "sourceRoot": "packages/fluentui/react-bindings", - "name": "@fluentui/react-bindings", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "build:info": { - "executor": "nx:run-script", - "options": { - "script": "build:info" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/circulars-test": { - "name": "@fluentui/circulars-test", - "type": "app", - "data": { - "root": "packages/fluentui/circulars-test", - "sourceRoot": "packages/fluentui/circulars-test", - "name": "@fluentui/circulars-test", - "projectType": "application", - "targets": { - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/accessibility": { - "name": "@fluentui/accessibility", - "type": "lib", - "data": { - "root": "packages/fluentui/accessibility", - "sourceRoot": "packages/fluentui/accessibility", - "name": "@fluentui/accessibility", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/local-sandbox": { - "name": "@fluentui/local-sandbox", - "type": "app", - "data": { - "root": "packages/fluentui/local-sandbox", - "sourceRoot": "packages/fluentui/local-sandbox", - "name": "@fluentui/local-sandbox", - "projectType": "application", - "targets": { - "build:withdependencies": { - "executor": "nx:run-script", - "options": { - "script": "build:withdependencies" - }, - "configurations": {} - }, - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "build:production": { - "executor": "nx:run-script", - "options": { - "script": "build:production" - }, - "configurations": {} - }, - "serve": { - "executor": "nx:run-script", - "options": { - "script": "serve" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/perf-test-react-components": { - "name": "@fluentui/perf-test-react-components", - "type": "app", - "data": { - "root": "apps/perf-test-react-components", - "sourceRoot": "apps/perf-test-react-components", - "name": "@fluentui/perf-test-react-components", - "projectType": "application", - "targets": { - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "test:perf": { - "executor": "nx:run-script", - "options": { - "script": "test:perf" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-builder": { - "name": "@fluentui/react-builder", - "type": "lib", - "data": { - "root": "packages/fluentui/react-builder", - "sourceRoot": "packages/fluentui/react-builder", - "name": "@fluentui/react-builder", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/projects-test": { - "name": "@fluentui/projects-test", - "type": "app", - "data": { - "root": "packages/fluentui/projects-test", - "sourceRoot": "packages/fluentui/projects-test", - "name": "@fluentui/projects-test", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/react-file-type-icons": { - "name": "@fluentui/react-file-type-icons", - "type": "lib", - "data": { - "root": "packages/react-file-type-icons", - "sourceRoot": "packages/react-file-type-icons/src", - "name": "@fluentui/react-file-type-icons", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/vr-tests-react-components": { - "name": "@fluentui/vr-tests-react-components", - "type": "app", - "data": { - "root": "apps/vr-tests-react-components", - "sourceRoot": "apps/vr-tests-react-components", - "name": "@fluentui/vr-tests-react-components", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "vr:build": { - "executor": "nx:run-script", - "options": { - "script": "vr:build" - }, - "configurations": {} - }, - "vr:test": { - "executor": "nx:run-script", - "options": { - "script": "vr:test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext"] - } - }, - "@fluentui/react-window-provider": { - "name": "@fluentui/react-window-provider", - "type": "lib", - "data": { - "root": "packages/react-window-provider", - "sourceRoot": "packages/react-window-provider", - "name": "@fluentui/react-window-provider", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/code-sandbox": { - "name": "@fluentui/code-sandbox", - "type": "lib", - "data": { - "root": "packages/fluentui/code-sandbox", - "sourceRoot": "packages/fluentui/code-sandbox", - "name": "@fluentui/code-sandbox", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/public-docsite-setup": { - "name": "@fluentui/public-docsite-setup", - "type": "lib", - "data": { - "root": "packages/public-docsite-setup", - "sourceRoot": "packages/public-docsite-setup", - "name": "@fluentui/public-docsite-setup", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/recipes-react-components": { - "name": "@fluentui/recipes-react-components", - "type": "app", - "data": { - "root": "apps/recipes-react-components", - "sourceRoot": "apps/recipes-react-components/src", - "name": "@fluentui/recipes-react-components", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext"] - } - }, - "@fluentui/public-docsite-resources": { - "name": "@fluentui/public-docsite-resources", - "type": "app", - "data": { - "root": "apps/public-docsite-resources", - "sourceRoot": "apps/public-docsite-resources", - "name": "@fluentui/public-docsite-resources", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/scripts-update-release-notes": { - "name": "@fluentui/scripts-update-release-notes", - "type": "lib", - "data": { - "root": "scripts/update-release-notes", - "sourceRoot": "scripts/update-release-notes", - "name": "@fluentui/scripts-update-release-notes", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/react-monaco-editor": { - "name": "@fluentui/react-monaco-editor", - "type": "lib", - "data": { - "root": "packages/react-monaco-editor", - "sourceRoot": "packages/react-monaco-editor", - "name": "@fluentui/react-monaco-editor", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-icon-provider": { - "name": "@fluentui/react-icon-provider", - "type": "lib", - "data": { - "root": "packages/react-icon-provider", - "sourceRoot": "packages/react-icon-provider", - "name": "@fluentui/react-icon-provider", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/scripts-perf-test-flamegrill": { - "name": "@fluentui/scripts-perf-test-flamegrill", - "type": "lib", - "data": { - "root": "scripts/perf-test-flamegrill", - "sourceRoot": "scripts/perf-test-flamegrill/src", - "name": "@fluentui/scripts-perf-test-flamegrill", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools", "platform:any"], - "implicitDependencies": [] - } - }, - "@fluentui/date-time-utilities": { - "name": "@fluentui/date-time-utilities", - "type": "lib", - "data": { - "root": "packages/date-time-utilities", - "sourceRoot": "packages/date-time-utilities/src", - "name": "@fluentui/date-time-utilities", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/scripts-bundle-size-auditor": { - "name": "@fluentui/scripts-bundle-size-auditor", - "type": "lib", - "data": { - "root": "scripts/bundle-size-auditor", - "sourceRoot": "scripts/bundle-size-auditor/src", - "name": "@fluentui/scripts-bundle-size-auditor", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/react-experiments": { - "name": "@fluentui/react-experiments", - "type": "lib", - "data": { - "root": "packages/react-experiments", - "sourceRoot": "packages/react-experiments/src", - "name": "@fluentui/react-experiments", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "start:legacy": { - "executor": "nx:run-script", - "options": { - "script": "start:legacy" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/webpack-utilities": { - "name": "@fluentui/webpack-utilities", - "type": "lib", - "data": { - "root": "packages/webpack-utilities", - "sourceRoot": "packages/webpack-utilities/src", - "name": "@fluentui/webpack-utilities", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8", "platform:node"] - } - }, - "@fluentui/react-conformance": { - "name": "@fluentui/react-conformance", - "type": "lib", - "data": { - "root": "packages/react-conformance", - "sourceRoot": "packages/react-conformance/src", - "name": "@fluentui/react-conformance", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:node"] - } - }, - "@fluentui/foundation-legacy": { - "name": "@fluentui/foundation-legacy", - "type": "lib", - "data": { - "root": "packages/foundation-legacy", - "sourceRoot": "packages/foundation-legacy/src", - "name": "@fluentui/foundation-legacy", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/scheme-utilities": { - "name": "@fluentui/scheme-utilities", - "type": "lib", - "data": { - "root": "packages/scheme-utilities", - "sourceRoot": "packages/scheme-utilities/src", - "name": "@fluentui/scheme-utilities", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/ts-minbar-test-react": { - "name": "@fluentui/ts-minbar-test-react", - "type": "app", - "data": { - "root": "apps/ts-minbar-test-react", - "sourceRoot": "apps/ts-minbar-test-react", - "name": "@fluentui/ts-minbar-test-react", - "projectType": "application", - "targets": { - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-icons-mdl2": { - "name": "@fluentui/react-icons-mdl2", - "type": "lib", - "data": { - "root": "packages/react-icons-mdl2", - "sourceRoot": "packages/react-icons-mdl2", - "name": "@fluentui/react-icons-mdl2", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-date-time": { - "name": "@fluentui/react-date-time", - "type": "lib", - "data": { - "root": "packages/react-date-time", - "sourceRoot": "packages/react-date-time/src", - "name": "@fluentui/react-date-time", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/scripts-fluentui-publish": { - "name": "@fluentui/scripts-fluentui-publish", - "type": "lib", - "data": { - "root": "scripts/fluentui-publish", - "sourceRoot": "scripts/fluentui-publish", - "name": "@fluentui/scripts-fluentui-publish", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/style-utilities": { - "name": "@fluentui/style-utilities", - "type": "lib", - "data": { - "root": "packages/style-utilities", - "sourceRoot": "packages/style-utilities/src", - "name": "@fluentui/style-utilities", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/digest": { - "name": "@fluentui/digest", - "type": "lib", - "data": { - "root": "packages/fluentui/digest", - "sourceRoot": "packages/fluentui/digest", - "name": "@fluentui/digest", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/styles": { - "name": "@fluentui/styles", - "type": "lib", - "data": { - "root": "packages/fluentui/styles", - "sourceRoot": "packages/fluentui/styles", - "name": "@fluentui/styles", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/font-icons-mdl2": { - "name": "@fluentui/font-icons-mdl2", - "type": "lib", - "data": { - "root": "packages/font-icons-mdl2", - "sourceRoot": "packages/font-icons-mdl2/src", - "name": "@fluentui/font-icons-mdl2", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/web-components": { - "name": "@fluentui/web-components", - "type": "lib", - "data": { - "root": "packages/web-components", - "sourceRoot": "packages/web-components", - "name": "@fluentui/web-components", - "projectType": "library", - "targets": { - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "doc": { - "executor": "nx:run-script", - "options": { - "script": "doc" - }, - "configurations": {} - }, - "doc:ci": { - "executor": "nx:run-script", - "options": { - "script": "doc:ci" - }, - "configurations": {} - }, - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "dev": { - "executor": "nx:run-script", - "options": { - "script": "dev" - }, - "configurations": {} - }, - "tdd": { - "executor": "nx:run-script", - "options": { - "script": "tdd" - }, - "configurations": {} - }, - "prepare": { - "dependsOn": ["^prepare"], - "executor": "nx:run-script", - "options": { - "script": "prepare" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "start-storybook": { - "executor": "nx:run-script", - "options": { - "script": "start-storybook" - }, - "configurations": {} - }, - "build-storybook": { - "executor": "nx:run-script", - "options": { - "script": "build-storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "test-node": { - "executor": "nx:run-script", - "options": { - "script": "test-node" - }, - "configurations": {} - }, - "test-node:verbose": { - "executor": "nx:run-script", - "options": { - "script": "test-node:verbose" - }, - "configurations": {} - }, - "test-chrome": { - "executor": "nx:run-script", - "options": { - "script": "test-chrome" - }, - "configurations": {} - }, - "test-chrome:verbose": { - "executor": "nx:run-script", - "options": { - "script": "test-chrome:verbose" - }, - "configurations": {} - }, - "test-chrome:watch": { - "executor": "nx:run-script", - "options": { - "script": "test-chrome:watch" - }, - "configurations": {} - }, - "test-chrome:debugger": { - "executor": "nx:run-script", - "options": { - "script": "test-chrome:debugger" - }, - "configurations": {} - }, - "test-chrome:verbose:watch": { - "executor": "nx:run-script", - "options": { - "script": "test-chrome:verbose:watch" - }, - "configurations": {} - }, - "test-chrome:verbose:debugger": { - "executor": "nx:run-script", - "options": { - "script": "test-chrome:verbose:debugger" - }, - "configurations": {} - }, - "test-firefox": { - "executor": "nx:run-script", - "options": { - "script": "test-firefox" - }, - "configurations": {} - }, - "test-firefox:verbose": { - "executor": "nx:run-script", - "options": { - "script": "test-firefox:verbose" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-charting": { - "name": "@fluentui/react-charting", - "type": "lib", - "data": { - "root": "packages/react-charting", - "sourceRoot": "packages/react-charting", - "name": "@fluentui/react-charting", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "codepen": { - "executor": "nx:run-script", - "options": { - "script": "codepen" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "start:legacy": { - "executor": "nx:run-script", - "options": { - "script": "start:legacy" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-examples": { - "name": "@fluentui/react-examples", - "type": "lib", - "data": { - "root": "packages/react-examples", - "sourceRoot": "packages/react-examples/src", - "name": "@fluentui/react-examples", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/test-utilities": { - "name": "@fluentui/test-utilities", - "type": "lib", - "data": { - "root": "packages/test-utilities", - "sourceRoot": "packages/test-utilities/src", - "name": "@fluentui/test-utilities", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8", "platform:node"] - } - }, - "@fluentui/scripts-package-manager": { - "name": "@fluentui/scripts-package-manager", - "type": "lib", - "data": { - "root": "scripts/package-manager", - "sourceRoot": "scripts/package-manager", - "name": "@fluentui/scripts-package-manager", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/state": { - "name": "@fluentui/state", - "type": "lib", - "data": { - "root": "packages/fluentui/state", - "sourceRoot": "packages/fluentui/state", - "name": "@fluentui/state", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "test:watch": { - "executor": "nx:run-script", - "options": { - "script": "test:watch" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/common-styles": { - "name": "@fluentui/common-styles", - "type": "lib", - "data": { - "root": "packages/common-styles", - "sourceRoot": "packages/common-styles", - "name": "@fluentui/common-styles", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "update-sass-theme-files": { - "executor": "nx:run-script", - "options": { - "script": "update-sass-theme-files" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/theme-samples": { - "name": "@fluentui/theme-samples", - "type": "lib", - "data": { - "root": "packages/theme-samples", - "sourceRoot": "packages/theme-samples/src", - "name": "@fluentui/theme-samples", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/eslint-plugin": { - "name": "@fluentui/eslint-plugin", - "type": "lib", - "data": { - "root": "packages/eslint-plugin", - "sourceRoot": "packages/eslint-plugin", - "name": "@fluentui/eslint-plugin", - "projectType": "library", - "targets": { - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/perf": { - "name": "@fluentui/perf", - "type": "app", - "data": { - "root": "packages/fluentui/perf", - "sourceRoot": "packages/fluentui/perf", - "name": "@fluentui/perf", - "projectType": "application", - "targets": { - "perf:test": { - "executor": "nx:run-script", - "options": { - "script": "perf:test" - }, - "configurations": {} - }, - "perf:test:debug": { - "executor": "nx:run-script", - "options": { - "script": "perf:test:debug" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/docs": { - "name": "@fluentui/docs", - "type": "app", - "data": { - "root": "packages/fluentui/docs", - "sourceRoot": "packages/fluentui/docs", - "name": "@fluentui/docs", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "prebuild:storybook": { - "executor": "nx:run-script", - "options": { - "script": "prebuild:storybook" - }, - "configurations": {} - }, - "build:storybook": { - "executor": "nx:run-script", - "options": { - "script": "build:storybook" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "start:profile": { - "executor": "nx:run-script", - "options": { - "script": "start:profile" - }, - "configurations": {} - }, - "prestart:storybook": { - "executor": "nx:run-script", - "options": { - "script": "prestart:storybook" - }, - "configurations": {} - }, - "start:storybook": { - "executor": "nx:run-script", - "options": { - "script": "start:storybook" - }, - "configurations": {} - }, - "vr:build": { - "executor": "nx:run-script", - "options": { - "script": "vr:build" - }, - "configurations": {} - }, - "vr:test": { - "executor": "nx:run-script", - "options": { - "script": "vr:test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/monaco-editor": { - "name": "@fluentui/monaco-editor", - "type": "lib", - "data": { - "root": "packages/monaco-editor", - "sourceRoot": "packages/monaco-editor", - "name": "@fluentui/monaco-editor", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/dom-utilities": { - "name": "@fluentui/dom-utilities", - "type": "lib", - "data": { - "root": "packages/dom-utilities", - "sourceRoot": "packages/dom-utilities", - "name": "@fluentui/dom-utilities", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/public-docsite-v9": { - "name": "@fluentui/public-docsite-v9", - "type": "app", - "data": { - "root": "apps/public-docsite-v9", - "sourceRoot": "apps/public-docsite-v9", - "name": "@fluentui/public-docsite-v9", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "build-storybook": { - "executor": "nx:run-script", - "options": { - "script": "build-storybook" - }, - "configurations": {} - }, - "chromatic:branch": { - "executor": "nx:run-script", - "options": { - "script": "chromatic:branch" - }, - "configurations": {} - }, - "chromatic": { - "executor": "nx:run-script", - "options": { - "script": "chromatic" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "storybook:docs": { - "executor": "nx:run-script", - "options": { - "script": "storybook:docs" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["platform:web", "vNext"] - } - }, - "@fluentui/workspace-plugin": { - "name": "@fluentui/workspace-plugin", - "type": "lib", - "data": { - "root": "tools/workspace-plugin", - "sourceRoot": "tools/workspace-plugin/src", - "name": "@fluentui/workspace-plugin", - "projectType": "library", - "targets": { - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "@nx/jest:jest", - "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], - "options": { - "jestConfig": "tools/workspace-plugin/jest.config.ts", - "passWithNoTests": true - }, - "configurations": { - "ci": { - "ci": true, - "codeCoverage": true - } - } - }, - "type-check": { - "executor": "nx:run-commands", - "options": { - "command": "tsc -b tools/workspace-plugin/tsconfig.json" - }, - "configurations": {} - }, - "lint": { - "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": [ - "tools/workspace-plugin/**/*.ts", - "tools/workspace-plugin/package.json", - "tools/workspace-plugin/generators.json" - ] - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - }, - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "@nx/js:tsc", - "outputs": ["{options.outputPath}"], - "options": { - "outputPath": "dist/tools/workspace-plugin", - "main": "tools/workspace-plugin/src/index.ts", - "tsConfig": "tools/workspace-plugin/tsconfig.lib.json", - "assets": [ - { - "input": "./tools/workspace-plugin/src", - "glob": "**/!(*.ts)", - "output": "./src" - }, - { - "input": "./tools/workspace-plugin/src", - "glob": "**/*.d.ts", - "output": "./src" - }, - { - "input": "./tools/workspace-plugin", - "glob": "generators.json", - "output": "." - }, - { - "input": "./tools/workspace-plugin", - "glob": "executors.json", - "output": "." - } - ], - "updateBuildableProjectDepsInPackageJson": true - }, - "configurations": {} - }, - "lint-old": { - "executor": "nx:run-commands", - "options": { - "command": "eslint tools/workspace-plugin/**/*.ts" - }, - "configurations": {} - }, - "check-graph": { - "executor": "nx:run-commands", - "options": { - "command": "node ./tools/workspace-plugin/scripts/check-dep-graph.js" - }, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:node", "tools"], - "implicitDependencies": [] - } - }, - "@fluentui/fluent2-theme": { - "name": "@fluentui/fluent2-theme", - "type": "lib", - "data": { - "root": "packages/fluent2-theme", - "sourceRoot": "packages/fluent2-theme/src", - "name": "@fluentui/fluent2-theme", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/react-18-tests-v9": { - "name": "@fluentui/react-18-tests-v9", - "type": "app", - "data": { - "root": "apps/react-18-tests-v9", - "sourceRoot": "apps/react-18-tests-v9", - "name": "@fluentui/react-18-tests-v9", - "projectType": "application", - "targets": { - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-18-tests-v8": { - "name": "@fluentui/react-18-tests-v8", - "type": "app", - "data": { - "root": "apps/react-18-tests-v8", - "sourceRoot": "apps/react-18-tests-v8", - "name": "@fluentui/react-18-tests-v8", - "projectType": "application", - "targets": { - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/azure-themes": { - "name": "@fluentui/azure-themes", - "type": "lib", - "data": { - "root": "packages/azure-themes", - "sourceRoot": "packages/azure-themes/src", - "name": "@fluentui/azure-themes", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/e2e": { - "name": "@fluentui/e2e", - "type": "app", - "data": { - "root": "packages/fluentui/e2e", - "sourceRoot": "packages/fluentui/e2e", - "name": "@fluentui/e2e", - "projectType": "application", - "targets": { - "serve": { - "executor": "nx:run-script", - "options": { - "script": "serve" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "lint:fix": { - "executor": "nx:run-script", - "options": { - "script": "lint:fix" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["react-northstar"] - } - }, - "@fluentui/theming-designer": { - "name": "@fluentui/theming-designer", - "type": "app", - "data": { - "root": "apps/theming-designer", - "sourceRoot": "apps/theming-designer", - "name": "@fluentui/theming-designer", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/merge-styles": { - "name": "@fluentui/merge-styles", - "type": "lib", - "data": { - "root": "packages/merge-styles", - "sourceRoot": "packages/merge-styles/src", - "name": "@fluentui/merge-styles", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/keyboard-key": { - "name": "@fluentui/keyboard-key", - "type": "lib", - "data": { - "root": "packages/keyboard-key", - "sourceRoot": "packages/keyboard-key", - "name": "@fluentui/keyboard-key", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/scripts-api-extractor": { - "name": "@fluentui/scripts-api-extractor", - "type": "lib", - "data": { - "root": "scripts/api-extractor", - "sourceRoot": "scripts/api-extractor", - "name": "@fluentui/scripts-api-extractor", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/cra-template": { - "name": "@fluentui/cra-template", - "type": "lib", - "data": { - "root": "packages/cra-template", - "sourceRoot": "packages/cra-template/src", - "name": "@fluentui/cra-template", - "projectType": "library", - "targets": { - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/example-data": { - "name": "@fluentui/example-data", - "type": "lib", - "data": { - "root": "packages/example-data", - "sourceRoot": "packages/example-data/src", - "name": "@fluentui/example-data", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/a11y-testing": { - "name": "@fluentui/a11y-testing", - "type": "lib", - "data": { - "root": "packages/a11y-testing", - "sourceRoot": "packages/a11y-testing", - "name": "@fluentui/a11y-testing", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["platform:node"] - } - }, - "@fluentui/scripts-projects-test": { - "name": "@fluentui/scripts-projects-test", - "type": "lib", - "data": { - "root": "scripts/projects-test", - "sourceRoot": "scripts/projects-test/src", - "name": "@fluentui/scripts-projects-test", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/set-version": { - "name": "@fluentui/set-version", - "type": "lib", - "data": { - "root": "packages/set-version", - "sourceRoot": "packages/set-version/src", - "name": "@fluentui/set-version", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/react-hooks": { - "name": "@fluentui/react-hooks", - "type": "lib", - "data": { - "root": "packages/react-hooks", - "sourceRoot": "packages/react-hooks/src", - "name": "@fluentui/react-hooks", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/react-cards": { - "name": "@fluentui/react-cards", - "type": "lib", - "data": { - "root": "packages/react-cards", - "sourceRoot": "packages/react-cards", - "name": "@fluentui/react-cards", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/react-focus": { - "name": "@fluentui/react-focus", - "type": "lib", - "data": { - "root": "packages/react-focus", - "sourceRoot": "packages/react-focus/src", - "name": "@fluentui/react-focus", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/scripts-lint-staged": { - "name": "@fluentui/scripts-lint-staged", - "type": "lib", - "data": { - "root": "scripts/lint-staged", - "sourceRoot": "scripts/lint-staged", - "name": "@fluentui/scripts-lint-staged", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/pr-deploy-site": { - "name": "@fluentui/pr-deploy-site", - "type": "app", - "data": { - "root": "apps/pr-deploy-site", - "sourceRoot": "apps/pr-deploy-site", - "name": "@fluentui/pr-deploy-site", - "projectType": "application", - "targets": { - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "generate:site": { - "executor": "nx:run-script", - "options": { - "script": "generate:site" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/public-docsite": { - "name": "@fluentui/public-docsite", - "type": "app", - "data": { - "root": "apps/public-docsite", - "sourceRoot": "apps/public-docsite", - "name": "@fluentui/public-docsite", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/utilities": { - "name": "@fluentui/utilities", - "type": "lib", - "data": { - "root": "packages/utilities", - "sourceRoot": "packages/utilities/src", - "name": "@fluentui/utilities", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "verify-packaging": { - "executor": "nx:run-script", - "options": { - "script": "verify-packaging" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/scripts-triage-bot": { - "name": "@fluentui/scripts-triage-bot", - "type": "lib", - "data": { - "root": "scripts/triage-bot", - "sourceRoot": "scripts/triage-bot/src", - "name": "@fluentui/scripts-triage-bot", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/storybook": { - "name": "@fluentui/storybook", - "type": "lib", - "data": { - "root": "packages/storybook", - "sourceRoot": "packages/storybook", - "name": "@fluentui/storybook", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8", "platform:web"] - } - }, - "@fluentui/scripts-generators": { - "name": "@fluentui/scripts-generators", - "type": "lib", - "data": { - "root": "scripts/generators", - "sourceRoot": "scripts/generators", - "name": "@fluentui/scripts-generators", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-beachball": { - "name": "@fluentui/scripts-beachball", - "type": "lib", - "data": { - "root": "scripts/beachball", - "sourceRoot": "scripts/beachball", - "name": "@fluentui/scripts-beachball", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-storybook": { - "name": "@fluentui/scripts-storybook", - "type": "lib", - "data": { - "root": "scripts/storybook", - "sourceRoot": "scripts/storybook/src", - "name": "@fluentui/scripts-storybook", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/codemods": { - "name": "@fluentui/codemods", - "type": "lib", - "data": { - "root": "packages/codemods", - "sourceRoot": "packages/codemods/src", - "name": "@fluentui/codemods", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8", "platform:node"] - } - }, - "@fluentui/ssr-tests-v9": { - "name": "@fluentui/ssr-tests-v9", - "type": "app", - "data": { - "root": "apps/ssr-tests-v9", - "sourceRoot": "apps/ssr-tests-v9/src", - "name": "@fluentui/ssr-tests-v9", - "projectType": "application", - "targets": { - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "storybook": { - "executor": "nx:run-script", - "options": { - "script": "storybook" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "test-ssr": { - "executor": "nx:run-script", - "options": { - "script": "test-ssr" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:node"] - } - }, - "@fluentui/api-docs": { - "name": "@fluentui/api-docs", - "type": "lib", - "data": { - "root": "packages/api-docs", - "sourceRoot": "packages/api-docs/src", - "name": "@fluentui/api-docs", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8", "platform:node"] - } - }, - "@fluentui/scripts-executors": { - "name": "@fluentui/scripts-executors", - "type": "lib", - "data": { - "root": "scripts/executors", - "sourceRoot": "scripts/executors", - "name": "@fluentui/scripts-executors", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-puppeteer": { - "name": "@fluentui/scripts-puppeteer", - "type": "lib", - "data": { - "root": "scripts/puppeteer", - "sourceRoot": "scripts/puppeteer/src", - "name": "@fluentui/scripts-puppeteer", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-prettier": { - "name": "@fluentui/scripts-prettier", - "type": "lib", - "data": { - "root": "scripts/prettier", - "sourceRoot": "scripts/prettier/src", - "name": "@fluentui/scripts-prettier", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-dangerjs": { - "name": "@fluentui/scripts-dangerjs", - "type": "lib", - "data": { - "root": "scripts/dangerjs", - "sourceRoot": "scripts/dangerjs/src", - "name": "@fluentui/scripts-dangerjs", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-test-ssr": { - "name": "@fluentui/scripts-test-ssr", - "type": "lib", - "data": { - "root": "scripts/test-ssr", - "sourceRoot": "scripts/test-ssr/src", - "name": "@fluentui/scripts-test-ssr", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-monorepo": { - "name": "@fluentui/scripts-monorepo", - "type": "lib", - "data": { - "root": "scripts/monorepo", - "sourceRoot": "scripts/monorepo/src", - "name": "@fluentui/scripts-monorepo", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/stress-test": { - "name": "@fluentui/stress-test", - "type": "app", - "data": { - "root": "apps/stress-test", - "sourceRoot": "apps/stress-test", - "name": "@fluentui/stress-test", - "projectType": "application", - "targets": { - "stress-test": { - "executor": "nx:run-script", - "options": { - "script": "stress-test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/scripts-cypress": { - "name": "@fluentui/scripts-cypress", - "type": "lib", - "data": { - "root": "scripts/cypress", - "sourceRoot": "scripts/cypress/src", - "name": "@fluentui/scripts-cypress", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-webpack": { - "name": "@fluentui/scripts-webpack", - "type": "lib", - "data": { - "root": "scripts/webpack", - "sourceRoot": "scripts/webpack/src", - "name": "@fluentui/scripts-webpack", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/tokens": { - "name": "@fluentui/tokens", - "type": "lib", - "data": { - "root": "packages/tokens", - "sourceRoot": "packages/tokens/src", - "name": "@fluentui/tokens", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "token-pipeline": { - "executor": "nx:run-script", - "options": { - "script": "token-pipeline" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "generate-api": { - "executor": "nx:run-script", - "options": { - "script": "generate-api" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["vNext", "platform:web"] - } - }, - "@fluentui/scripts-ts-node": { - "name": "@fluentui/scripts-ts-node", - "type": "lib", - "data": { - "root": "scripts/ts-node", - "sourceRoot": "scripts/ts-node", - "name": "@fluentui/scripts-ts-node", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/perf-test": { - "name": "@fluentui/perf-test", - "type": "app", - "data": { - "root": "apps/perf-test", - "sourceRoot": "apps/perf-test", - "name": "@fluentui/perf-test", - "projectType": "application", - "targets": { - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "test:perf": { - "executor": "nx:run-script", - "options": { - "script": "test:perf" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/theme": { - "name": "@fluentui/theme", - "type": "lib", - "data": { - "root": "packages/theme", - "sourceRoot": "packages/theme", - "name": "@fluentui/theme", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/scripts-github": { - "name": "@fluentui/scripts-github", - "type": "lib", - "data": { - "root": "scripts/github", - "sourceRoot": "scripts/github/src", - "name": "@fluentui/scripts-github", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/react": { - "name": "@fluentui/react", - "type": "lib", - "data": { - "root": "packages/react", - "sourceRoot": "packages/react/src", - "name": "@fluentui/react", - "projectType": "library", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "bundle-size-auditor": { - "executor": "nx:run-script", - "options": { - "script": "bundle-size-auditor" - }, - "configurations": {} - }, - "build-storybook": { - "executor": "nx:run-script", - "options": { - "script": "build-storybook" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "codepen": { - "executor": "nx:run-script", - "options": { - "script": "codepen" - }, - "configurations": {} - }, - "e2e": { - "executor": "nx:run-script", - "options": { - "script": "e2e" - }, - "configurations": {} - }, - "e2e:local": { - "executor": "nx:run-script", - "options": { - "script": "e2e:local" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "start:legacy": { - "executor": "nx:run-script", - "options": { - "script": "start:legacy" - }, - "configurations": {} - }, - "start-test": { - "executor": "nx:run-script", - "options": { - "script": "start-test" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "update-snapshots": { - "executor": "nx:run-script", - "options": { - "script": "update-snapshots" - }, - "configurations": {} - }, - "mf": { - "executor": "nx:run-script", - "options": { - "script": "mf" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": ["v8"] - } - }, - "@fluentui/ssr-tests": { - "name": "@fluentui/ssr-tests", - "type": "app", - "data": { - "root": "apps/ssr-tests", - "sourceRoot": "apps/ssr-tests", - "name": "@fluentui/ssr-tests", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "bundle": { - "executor": "nx:run-script", - "options": { - "script": "bundle" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/vr-tests": { - "name": "@fluentui/vr-tests", - "type": "app", - "data": { - "root": "apps/vr-tests", - "sourceRoot": "apps/vr-tests", - "name": "@fluentui/vr-tests", - "projectType": "application", - "targets": { - "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "configurations": {} - }, - "clean": { - "executor": "nx:run-script", - "options": { - "script": "clean" - }, - "configurations": {} - }, - "code-style": { - "executor": "nx:run-script", - "options": { - "script": "code-style" - }, - "configurations": {} - }, - "just": { - "executor": "nx:run-script", - "options": { - "script": "just" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "vr:build": { - "executor": "nx:run-script", - "options": { - "script": "vr:build" - }, - "configurations": {} - }, - "vr:test": { - "executor": "nx:run-script", - "options": { - "script": "vr:test" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [], - "tags": [] - } - }, - "@fluentui/scripts-utils": { - "name": "@fluentui/scripts-utils", - "type": "lib", - "data": { - "root": "scripts/utils", - "sourceRoot": "scripts/utils/src", - "name": "@fluentui/scripts-utils", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-tasks": { - "name": "@fluentui/scripts-tasks", - "type": "lib", - "data": { - "root": "scripts/tasks", - "sourceRoot": "scripts/tasks/src", - "name": "@fluentui/scripts-tasks", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-babel": { - "name": "@fluentui/scripts-babel", - "type": "lib", - "data": { - "root": "scripts/babel", - "sourceRoot": "scripts/babel", - "name": "@fluentui/scripts-babel", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-jest": { - "name": "@fluentui/scripts-jest", - "type": "lib", - "data": { - "root": "scripts/jest", - "sourceRoot": "scripts/jest/src", - "name": "@fluentui/scripts-jest", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/scripts-gulp": { - "name": "@fluentui/scripts-gulp", - "type": "lib", - "data": { - "root": "scripts/gulp", - "sourceRoot": "scripts/gulp/src", - "name": "@fluentui/scripts-gulp", - "projectType": "library", - "targets": { - "format": { - "executor": "nx:run-script", - "options": { - "script": "format" - }, - "configurations": {} - }, - "format:check": { - "executor": "nx:run-script", - "options": { - "script": "format:check" - }, - "configurations": {} - }, - "lint": { - "executor": "nx:run-script", - "options": { - "script": "lint" - }, - "configurations": {} - }, - "test": { - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "configurations": {} - }, - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "tags": ["tools"], - "implicitDependencies": [] - } - }, - "@fluentui/typings": { - "name": "@fluentui/typings", - "type": "lib", - "data": { - "root": "typings", - "sourceRoot": "typings", - "name": "@fluentui/typings", - "projectType": "library", - "targets": { - "type-check": { - "executor": "nx:run-script", - "options": { - "script": "type-check" - }, - "configurations": {} - }, - "nx-release-publish": { - "dependsOn": ["^nx-release-publish"], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {} - } - }, - "$schema": "../node_modules/nx/schemas/project-schema.json", - "tags": ["platform:any"], - "implicitDependencies": [] - } - } - }, - "externalNodes": { - "npm:@types/color": { - "type": "npm", - "name": "npm:@types/color", - "data": { - "version": "3.0.1", - "packageName": "@types/color", - "hash": "sha512-oeUWVaAwI+xINDUx+3F2vJkl/vVB03VChFF/Gl3iQCdbcakjuoJyMOba+3BXRtnBhxZ7uBYqQBi9EpLnvSoztA==" - } - }, - "npm:camelize": { - "type": "npm", - "name": "npm:camelize", - "data": { - "version": "1.0.0", - "packageName": "camelize", - "hash": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" - } - }, - "npm:arr-filter": { - "type": "npm", - "name": "npm:arr-filter", - "data": { - "version": "1.1.2", - "packageName": "arr-filter", - "hash": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=" - } - }, - "npm:add-stream": { - "type": "npm", - "name": "npm:add-stream", - "data": { - "version": "1.0.0", - "packageName": "add-stream", - "hash": "sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==" - } - }, - "npm:atob": { - "type": "npm", - "name": "npm:atob", - "data": { - "version": "2.1.2", - "packageName": "atob", - "hash": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - } - }, - "npm:estree-walker@1.0.1": { - "type": "npm", - "name": "npm:estree-walker@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "estree-walker", - "hash": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" - } - }, - "npm:@babel/code-frame@7.12.11": { - "type": "npm", - "name": "npm:@babel/code-frame@7.12.11", - "data": { - "version": "7.12.11", - "packageName": "@babel/code-frame", - "hash": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==" - } - }, - "npm:glob@7.1.4": { - "type": "npm", - "name": "npm:glob@7.1.4", - "data": { - "version": "7.1.4", - "packageName": "glob", - "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" - } - }, - "npm:braces@2.3.2": { - "type": "npm", - "name": "npm:braces@2.3.2", - "data": { - "version": "2.3.2", - "packageName": "braces", - "hash": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==" - } - }, - "npm:format": { - "type": "npm", - "name": "npm:format", - "data": { - "version": "0.2.2", - "packageName": "format", - "hash": "sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=" - } - }, - "npm:emoji-regex@7.0.3": { - "type": "npm", - "name": "npm:emoji-regex@7.0.3", - "data": { - "version": "7.0.3", - "packageName": "emoji-regex", - "hash": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - } - }, - "npm:indent-string@5.0.0": { - "type": "npm", - "name": "npm:indent-string@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "indent-string", - "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" - } - }, - "npm:jsonc-parser": { - "type": "npm", - "name": "npm:jsonc-parser", - "data": { - "version": "3.2.0", - "packageName": "jsonc-parser", - "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "1.1.6", - "packageName": "lines-and-columns", - "hash": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" - } - }, - "npm:npmlog@5.0.1": { - "type": "npm", - "name": "npm:npmlog@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "npmlog", - "hash": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==" - } - }, - "npm:refractor": { - "type": "npm", - "name": "npm:refractor", - "data": { - "version": "2.9.0", - "packageName": "refractor", - "hash": "sha512-lCnCYvXpqd8hC7ksuvo516rz5q4NwzBbq0X5qjH5pxRfcQKiQxKZ8JctrSQmrR/7pcV2TRrs9TT+Whmq/wtluQ==" - } - }, - "npm:responselike": { - "type": "npm", - "name": "npm:responselike", - "data": { - "version": "2.0.0", - "packageName": "responselike", - "hash": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==" - } - }, - "npm:split": { - "type": "npm", - "name": "npm:split", - "data": { - "version": "1.0.1", - "packageName": "split", - "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" - } - }, - "npm:@npmcli/installed-package-contents@1.0.7": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents@1.0.7", - "data": { - "version": "1.0.7", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==" - } - }, - "npm:escape-string-regexp@4.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:is-relative": { - "type": "npm", - "name": "npm:is-relative", - "data": { - "version": "1.0.0", - "packageName": "is-relative", - "hash": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "0.1.1", - "packageName": "dom-serializer", - "hash": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==" - } - }, - "npm:@microsoft/fast-web-utilities": { - "type": "npm", - "name": "npm:@microsoft/fast-web-utilities", - "data": { - "version": "5.4.1", - "packageName": "@microsoft/fast-web-utilities", - "hash": "sha512-ReWYncndjV3c8D8iq9tp7NcFNc1vbVHvcBFPME2nNFKNbS1XCesYZGlIlf3ot5EmuOXPlrzUHOWzQ2vFpIkqDg==" - } - }, - "npm:ansi-wrap": { - "type": "npm", - "name": "npm:ansi-wrap", - "data": { - "version": "0.1.0", - "packageName": "ansi-wrap", - "hash": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=" - } - }, - "npm:@babel/plugin-transform-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-literals", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==" - } - }, - "npm:@babel/plugin-transform-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-numeric-separator", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-numeric-separator", - "hash": "sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==" - } - }, - "npm:@cypress/request": { - "type": "npm", - "name": "npm:@cypress/request", - "data": { - "version": "2.88.10", - "packageName": "@cypress/request", - "hash": "sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg==" - } - }, - "npm:unist-util-visit": { - "type": "npm", - "name": "npm:unist-util-visit", - "data": { - "version": "2.0.3", - "packageName": "unist-util-visit", - "hash": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==" - } - }, - "npm:@types/react-table": { - "type": "npm", - "name": "npm:@types/react-table", - "data": { - "version": "7.0.19", - "packageName": "@types/react-table", - "hash": "sha512-RYyEY7Yry6F2JsKhHeFsGdzuFF1hMqBStQrrazDzpBl4m/ECGHJxFVQjLBRzRwK+47ZKNPm79f7qEpHirbiCLA==" - } - }, - "npm:anymatch@2.0.0": { - "type": "npm", - "name": "npm:anymatch@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "anymatch", - "hash": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==" - } - }, - "npm:iferr": { - "type": "npm", - "name": "npm:iferr", - "data": { - "version": "0.1.5", - "packageName": "iferr", - "hash": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" - } - }, - "npm:vinyl-sourcemap": { - "type": "npm", - "name": "npm:vinyl-sourcemap", - "data": { - "version": "1.1.0", - "packageName": "vinyl-sourcemap", - "hash": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=" - } - }, - "npm:@babel/plugin-transform-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-nullish-coalescing-operator", - "hash": "sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==" - } - }, - "npm:jest-watch-typeahead": { - "type": "npm", - "name": "npm:jest-watch-typeahead", - "data": { - "version": "2.2.2", - "packageName": "jest-watch-typeahead", - "hash": "sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" - } - }, - "npm:esbuild-linux-32@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-32@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-32", - "hash": "sha512-RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==" - } - }, - "npm:escape-string-regexp@5.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.2.5", - "packageName": "array.prototype.flatmap", - "hash": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==" - } - }, - "npm:har-schema": { - "type": "npm", - "name": "npm:har-schema", - "data": { - "version": "2.0.0", - "packageName": "har-schema", - "hash": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:streamroller": { - "type": "npm", - "name": "npm:streamroller", - "data": { - "version": "3.0.4", - "packageName": "streamroller", - "hash": "sha512-GI9NzeD+D88UFuIlJkKNDH/IsuR+qIN7Qh8EsmhoRZr9bQoehTraRgwtLUkZbpcAw+hLPfHOypmppz8YyGK68w==" - } - }, - "npm:npm-run-path@2.0.2": { - "type": "npm", - "name": "npm:npm-run-path@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "npm-run-path", - "hash": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" - } - }, - "npm:scheduler": { - "type": "npm", - "name": "npm:scheduler", - "data": { - "version": "0.20.2", - "packageName": "scheduler", - "hash": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==" - } - }, - "npm:d3-time@1.1.0": { - "type": "npm", - "name": "npm:d3-time@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "d3-time", - "hash": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" - } - }, - "npm:human-signals@1.1.1": { - "type": "npm", - "name": "npm:human-signals@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "human-signals", - "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:react-fast-compare": { - "type": "npm", - "name": "npm:react-fast-compare", - "data": { - "version": "2.0.4", - "packageName": "react-fast-compare", - "hash": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" - } - }, - "npm:strtok3": { - "type": "npm", - "name": "npm:strtok3", - "data": { - "version": "7.0.0", - "packageName": "strtok3", - "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" - } - }, - "npm:@azure/abort-controller": { - "type": "npm", - "name": "npm:@azure/abort-controller", - "data": { - "version": "1.0.1", - "packageName": "@azure/abort-controller", - "hash": "sha512-wP2Jw6uPp8DEDy0n4KNidvwzDjyVV2xnycEIq7nPzj1rHyb/r+t3OPeNT1INZePP2wy5ZqlwyuyOMTi0ePyY1A==" - } - }, - "npm:convert-source-map@2.0.0": { - "type": "npm", - "name": "npm:convert-source-map@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:wordwrap": { - "type": "npm", - "name": "npm:wordwrap", - "data": { - "version": "1.0.0", - "packageName": "wordwrap", - "hash": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.6", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" - } - }, - "npm:is-path-inside@2.1.0": { - "type": "npm", - "name": "npm:is-path-inside@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "is-path-inside", - "hash": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.22.20", - "packageName": "@babel/highlight", - "hash": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.0", - "packageName": "globalthis", - "hash": "sha512-vcCAZTJ3r5Qcu5l8/2oyVdoFwxKgfYnMTR2vwWeux/NAVZK3PwcMaWkdUIn4GJbmKuRK7xcvDsLuK+CKcXyodg==" - } - }, - "npm:constants-browserify": { - "type": "npm", - "name": "npm:constants-browserify", - "data": { - "version": "1.0.0", - "packageName": "constants-browserify", - "hash": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" - } - }, - "npm:@storybook/builder-webpack5": { - "type": "npm", - "name": "npm:@storybook/builder-webpack5", - "data": { - "version": "6.5.15", - "packageName": "@storybook/builder-webpack5", - "hash": "sha512-BnSoAmI02pvbGBSyzCx+voXb/d5EopQ78zx/lYv4CeOspBFOYEfGvAgYHILFo04V12S2/k8aSOc/tCYw5AqPtw==" - } - }, - "npm:@microsoft/fast-foundation": { - "type": "npm", - "name": "npm:@microsoft/fast-foundation", - "data": { - "version": "2.48.1", - "packageName": "@microsoft/fast-foundation", - "hash": "sha512-gJR/26hhJipsZ4JD5DSOODb3GFYf7vgCnxS2ag4dj+Mi8ytkAwMPglTOv7v0zsJC2CHqOjY8Ixs66dhepgNkeQ==" - } - }, - "npm:cli-truncate": { - "type": "npm", - "name": "npm:cli-truncate", - "data": { - "version": "2.1.0", - "packageName": "cli-truncate", - "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" - } - }, - "npm:ejs": { - "type": "npm", - "name": "npm:ejs", - "data": { - "version": "3.1.9", - "packageName": "ejs", - "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.0", - "packageName": "pump", - "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - } - }, - "npm:env-paths": { - "type": "npm", - "name": "npm:env-paths", - "data": { - "version": "2.2.0", - "packageName": "env-paths", - "hash": "sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==" - } - }, - "npm:get-pkg-repo": { - "type": "npm", - "name": "npm:get-pkg-repo", - "data": { - "version": "4.2.1", - "packageName": "get-pkg-repo", - "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "29.7.0", - "packageName": "pretty-format", - "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" - } - }, - "npm:make-fetch-happen@10.2.1": { - "type": "npm", - "name": "npm:make-fetch-happen@10.2.1", - "data": { - "version": "10.2.1", - "packageName": "make-fetch-happen", - "hash": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" - } - }, - "npm:promzard": { - "type": "npm", - "name": "npm:promzard", - "data": { - "version": "1.0.0", - "packageName": "promzard", - "hash": "sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==" - } - }, - "npm:istanbul-lib-coverage@1.2.1": { - "type": "npm", - "name": "npm:istanbul-lib-coverage@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==" - } - }, - "npm:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.0", - "packageName": "@sinonjs/commons", - "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==" - } - }, - "npm:@storybook/theming": { - "type": "npm", - "name": "npm:@storybook/theming", - "data": { - "version": "6.5.15", - "packageName": "@storybook/theming", - "hash": "sha512-pgdW0lVZKKXQ4VhIfLHycMmwFSVOY7vLTKnytag4Y8Yz+aXm0bwDN/QxPntFzDH47F1Rcy2ywNnvty8ooDTvuA==" - } - }, - "npm:json5@0.5.1": { - "type": "npm", - "name": "npm:json5@0.5.1", - "data": { - "version": "0.5.1", - "packageName": "json5", - "hash": "sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.0.6", - "packageName": "cookie-signature", - "hash": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - } - }, - "npm:marked-terminal": { - "type": "npm", - "name": "npm:marked-terminal", - "data": { - "version": "4.1.0", - "packageName": "marked-terminal", - "hash": "sha512-5KllfAOW02WS6hLRQ7cNvGOxvKW1BKuXELH4EtbWfyWgxQhROoMxEvuQ/3fTgkNjledR0J48F4HbapvYp1zWkQ==" - } - }, - "npm:es6-promisify": { - "type": "npm", - "name": "npm:es6-promisify", - "data": { - "version": "5.0.0", - "packageName": "es6-promisify", - "hash": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=" - } - }, - "npm:react-input-autosize": { - "type": "npm", - "name": "npm:react-input-autosize", - "data": { - "version": "3.0.0", - "packageName": "react-input-autosize", - "hash": "sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==" - } - }, - "npm:vinyl-sourcemaps-apply": { - "type": "npm", - "name": "npm:vinyl-sourcemaps-apply", - "data": { - "version": "0.2.1", - "packageName": "vinyl-sourcemaps-apply", - "hash": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=" - } - }, - "npm:which-module": { - "type": "npm", - "name": "npm:which-module", - "data": { - "version": "2.0.0", - "packageName": "which-module", - "hash": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" - } - }, - "npm:findup-sync": { - "type": "npm", - "name": "npm:findup-sync", - "data": { - "version": "2.0.0", - "packageName": "findup-sync", - "hash": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=" - } - }, - "npm:@webassemblyjs/helper-fsm": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-fsm", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-fsm", - "hash": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" - } - }, - "npm:strip-outer": { - "type": "npm", - "name": "npm:strip-outer", - "data": { - "version": "1.0.1", - "packageName": "strip-outer", - "hash": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==" - } - }, - "npm:is-path-cwd": { - "type": "npm", - "name": "npm:is-path-cwd", - "data": { - "version": "2.2.0", - "packageName": "is-path-cwd", - "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" - } - }, - "npm:event-emitter": { - "type": "npm", - "name": "npm:event-emitter", - "data": { - "version": "0.3.5", - "packageName": "event-emitter", - "hash": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=" - } - }, - "npm:css.escape": { - "type": "npm", - "name": "npm:css.escape", - "data": { - "version": "1.5.1", - "packageName": "css.escape", - "hash": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" - } - }, - "npm:camelcase": { - "type": "npm", - "name": "npm:camelcase", - "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:abbrev": { - "type": "npm", - "name": "npm:abbrev", - "data": { - "version": "1.0.9", - "packageName": "abbrev", - "hash": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=" - } - }, - "npm:afterframe": { - "type": "npm", - "name": "npm:afterframe", - "data": { - "version": "1.0.2", - "packageName": "afterframe", - "hash": "sha512-0JeMZI7dIfVs5guqLgidQNV7c6jBC2HO0QNSekAUB82Hr7PdU9QXNAF3kpFkvATvHYDDTGto7FPsRu1ey+aKJQ==" - } - }, - "npm:detect-indent": { - "type": "npm", - "name": "npm:detect-indent", - "data": { - "version": "5.0.0", - "packageName": "detect-indent", - "hash": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=" - } - }, - "npm:eslint-plugin-react@7.24.0": { - "type": "npm", - "name": "npm:eslint-plugin-react@7.24.0", - "data": { - "version": "7.24.0", - "packageName": "eslint-plugin-react", - "hash": "sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q==" - } - }, - "npm:microevent.ts": { - "type": "npm", - "name": "npm:microevent.ts", - "data": { - "version": "0.1.1", - "packageName": "microevent.ts", - "hash": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" - } - }, - "npm:eslint-import-resolver-node": { - "type": "npm", - "name": "npm:eslint-import-resolver-node", - "data": { - "version": "0.3.6", - "packageName": "eslint-import-resolver-node", - "hash": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==" - } - }, - "npm:hast-to-hyperscript": { - "type": "npm", - "name": "npm:hast-to-hyperscript", - "data": { - "version": "9.0.1", - "packageName": "hast-to-hyperscript", - "hash": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:@linaria/babel-preset": { - "type": "npm", - "name": "npm:@linaria/babel-preset", - "data": { - "version": "3.0.0-beta.23", - "packageName": "@linaria/babel-preset", - "hash": "sha512-NhxUZokEq12RLpDo4v/f59dB9A/1BbLgGLFotnrDzNBHfylm0qXSIIel68pZOXUB5lVdPJHqZWcT2zxbpGW6fA==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" - } - }, - "npm:@octokit/endpoint@7.0.2": { - "type": "npm", - "name": "npm:@octokit/endpoint@7.0.2", - "data": { - "version": "7.0.2", - "packageName": "@octokit/endpoint", - "hash": "sha512-8/AUACfE9vpRpehE6ZLfEtzkibe5nfsSwFZVMsG8qabqRt1M81qZYUFRZa1B8w8lP6cdfDJfRq9HWS+MbmR7tw==" - } - }, - "npm:commander@4.1.1": { - "type": "npm", - "name": "npm:commander@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "commander", - "hash": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" - } - }, - "npm:cyclist": { - "type": "npm", - "name": "npm:cyclist", - "data": { - "version": "0.2.2", - "packageName": "cyclist", - "hash": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=" - } - }, - "npm:@types/d3-hierarchy": { - "type": "npm", - "name": "npm:@types/d3-hierarchy", - "data": { - "version": "2.0.0", - "packageName": "@types/d3-hierarchy", - "hash": "sha512-YxdskUvwzqggpnSnDQj4KVkicgjpkgXn/g/9M9iGsiToLS3nG6Ytjo1FoYhYVAAElV/fJBGVL3cQ9Hb7tcv+lw==" - } - }, - "npm:http2-wrapper@2.1.11": { - "type": "npm", - "name": "npm:http2-wrapper@2.1.11", - "data": { - "version": "2.1.11", - "packageName": "http2-wrapper", - "hash": "sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==" - } - }, - "npm:@octokit/openapi-types@12.11.0": { - "type": "npm", - "name": "npm:@octokit/openapi-types@12.11.0", - "data": { - "version": "12.11.0", - "packageName": "@octokit/openapi-types", - "hash": "sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==" - } - }, - "npm:@babel/preset-typescript": { - "type": "npm", - "name": "npm:@babel/preset-typescript", - "data": { - "version": "7.23.2", - "packageName": "@babel/preset-typescript", - "hash": "sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==" - } - }, - "npm:pinkie": { - "type": "npm", - "name": "npm:pinkie", - "data": { - "version": "2.0.4", - "packageName": "pinkie", - "hash": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" - } - }, - "npm:postcss@7.0.36": { - "type": "npm", - "name": "npm:postcss@7.0.36", - "data": { - "version": "7.0.36", - "packageName": "postcss", - "hash": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:babel-plugin-iife-wrap-react-components": { - "type": "npm", - "name": "npm:babel-plugin-iife-wrap-react-components", - "data": { - "version": "1.0.0-5", - "packageName": "babel-plugin-iife-wrap-react-components", - "hash": "sha512-N91+hcZ98cm7AhqqC9zTwRCwziqEcljgXNuZXWeHRicDKeFASbzbyG5TuSGdgiRYm4oO0TLEEXWx2dxMNoXzaw==" - } - }, - "npm:htmlparser2": { - "type": "npm", - "name": "npm:htmlparser2", - "data": { - "version": "4.1.0", - "packageName": "htmlparser2", - "hash": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==" - } - }, - "npm:file-uri-to-path@1.0.0": { - "type": "npm", - "name": "npm:file-uri-to-path@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "file-uri-to-path", - "hash": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" - } - }, - "npm:d3-hexbin": { - "type": "npm", - "name": "npm:d3-hexbin", - "data": { - "version": "0.2.2", - "packageName": "d3-hexbin", - "hash": "sha1-nFg32s/UcasFM3qeke8Qv8T5iDE=" - } - }, - "npm:has-glob": { - "type": "npm", - "name": "npm:has-glob", - "data": { - "version": "1.0.0", - "packageName": "has-glob", - "hash": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=" - } - }, - "npm:@azure/core-tracing@1.0.0-preview.8": { - "type": "npm", - "name": "npm:@azure/core-tracing@1.0.0-preview.8", - "data": { - "version": "1.0.0-preview.8", - "packageName": "@azure/core-tracing", - "hash": "sha512-ZKUpCd7Dlyfn7bdc+/zC/sf0aRIaNQMDuSj2RhYRFe3p70hVAnYGp3TX4cnG2yoEALp/LTj/XnZGQ8Xzf6Ja/Q==" - } - }, - "npm:jest-regex-util": { - "type": "npm", - "name": "npm:jest-regex-util", - "data": { - "version": "29.6.3", - "packageName": "jest-regex-util", - "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" - } - }, - "npm:inherits@2.0.1": { - "type": "npm", - "name": "npm:inherits@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "inherits", - "hash": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - } - }, - "npm:@tufjs/canonical-json": { - "type": "npm", - "name": "npm:@tufjs/canonical-json", - "data": { - "version": "1.0.0", - "packageName": "@tufjs/canonical-json", - "hash": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==" - } - }, - "npm:bail": { - "type": "npm", - "name": "npm:bail", - "data": { - "version": "1.0.5", - "packageName": "bail", - "hash": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" - } - }, - "npm:jsonc-eslint-parser": { - "type": "npm", - "name": "npm:jsonc-eslint-parser", - "data": { - "version": "2.3.0", - "packageName": "jsonc-eslint-parser", - "hash": "sha512-9xZPKVYp9DxnM3sd1yAsh/d59iIaswDkai8oTxbursfKYbg/ibjX0IzFt35+VZ8iEW453TVTXztnRvYUQlAfUQ==" - } - }, - "npm:karma-coverage": { - "type": "npm", - "name": "npm:karma-coverage", - "data": { - "version": "2.2.0", - "packageName": "karma-coverage", - "hash": "sha512-gPVdoZBNDZ08UCzdMHHhEImKrw1+PAOQOIiffv1YsvxFhBjqvo/SVXNk4tqn1SYqX0BJZT6S/59zgxiBe+9OuA==" - } - }, - "npm:acorn@5.7.4": { - "type": "npm", - "name": "npm:acorn@5.7.4", - "data": { - "version": "5.7.4", - "packageName": "acorn", - "hash": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" - } - }, - "npm:@babel/plugin-syntax-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-typescript", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" - } - }, - "npm:prop-types": { - "type": "npm", - "name": "npm:prop-types", - "data": { - "version": "15.8.1", - "packageName": "prop-types", - "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" - } - }, - "npm:react-side-effect": { - "type": "npm", - "name": "npm:react-side-effect", - "data": { - "version": "1.2.0", - "packageName": "react-side-effect", - "hash": "sha512-v1ht1aHg5k/thv56DRcjw+WtojuuDHFUgGfc+bFHOWsF4ZK6C2V57DO0Or0GPsg6+LSTE0M6Ry/gfzhzSwbc5w==" - } - }, - "npm:circular-dependency-plugin": { - "type": "npm", - "name": "npm:circular-dependency-plugin", - "data": { - "version": "5.2.2", - "packageName": "circular-dependency-plugin", - "hash": "sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ==" - } - }, - "npm:react-sizeme": { - "type": "npm", - "name": "npm:react-sizeme", - "data": { - "version": "3.0.1", - "packageName": "react-sizeme", - "hash": "sha512-9Hf1NLgSbny1bha77l9HwvwwxQUJxFUqi44Ih+y3evA+PezBpGdCGlnvye6avss2cIgs9PgdYgMnfuzJWn/RUw==" - } - }, - "npm:source-list-map": { - "type": "npm", - "name": "npm:source-list-map", - "data": { - "version": "2.0.1", - "packageName": "source-list-map", - "hash": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" - } - }, - "npm:@storybook/manager-webpack5": { - "type": "npm", - "name": "npm:@storybook/manager-webpack5", - "data": { - "version": "6.5.15", - "packageName": "@storybook/manager-webpack5", - "hash": "sha512-yrHVFUHGdVRWq/oGJwQu+UOZzxELH5SS+Lpn5oIQ/Dblam9piQC0KmBZtFuA9X8acaw4BBVnXgF/aiqs9fOp/Q==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "4.17.15", - "packageName": "@types/express", - "hash": "sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - } - }, - "npm:buffers": { - "type": "npm", - "name": "npm:buffers", - "data": { - "version": "0.1.1", - "packageName": "buffers", - "hash": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=" - } - }, - "npm:cli-cursor@2.1.0": { - "type": "npm", - "name": "npm:cli-cursor@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "cli-cursor", - "hash": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=" - } - }, - "npm:react-is@18.2.0": { - "type": "npm", - "name": "npm:react-is@18.2.0", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, - "npm:@babel/plugin-syntax-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-unicode-sets-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-syntax-unicode-sets-regex", - "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" - } - }, - "npm:data-uri-to-buffer": { - "type": "npm", - "name": "npm:data-uri-to-buffer", - "data": { - "version": "4.0.1", - "packageName": "data-uri-to-buffer", - "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "10.1.0", - "packageName": "npm-package-arg", - "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" - } - }, - "npm:@azure/core-auth": { - "type": "npm", - "name": "npm:@azure/core-auth", - "data": { - "version": "1.3.0", - "packageName": "@azure/core-auth", - "hash": "sha512-kSDSZBL6c0CYdhb+7KuutnKGf2geeT+bCJAgccB0DD7wmNJSsQPcF7TcuoZX83B7VK4tLz/u+8sOO/CnCsYp8A==" - } - }, - "npm:@azure/core-http": { - "type": "npm", - "name": "npm:@azure/core-http", - "data": { - "version": "1.1.3", - "packageName": "@azure/core-http", - "hash": "sha512-GysW3+BRVV4L9cs3GsuCbnlyibrQU6hh5mcJ7hlnk7tdUBzWybUvJ8/P/nHX49PgwRmi81pD5v1ht2jF0IzxAQ==" - } - }, - "npm:camelcase@6.2.1": { - "type": "npm", - "name": "npm:camelcase@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "camelcase", - "hash": "sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==" - } - }, - "npm:clone@2.1.2": { - "type": "npm", - "name": "npm:clone@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "clone", - "hash": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" - } - }, - "npm:esm": { - "type": "npm", - "name": "npm:esm", - "data": { - "version": "3.2.25", - "packageName": "esm", - "hash": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" - } - }, - "npm:fs-minipass@3.0.2": { - "type": "npm", - "name": "npm:fs-minipass@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "fs-minipass", - "hash": "sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==" - } - }, - "npm:halcyon": { - "type": "npm", - "name": "npm:halcyon", - "data": { - "version": "0.19.1", - "packageName": "halcyon", - "hash": "sha1-86aN7DydyKJ8Ot5pbol+GxSfCKc=" - } - }, - "npm:karma-webpack": { - "type": "npm", - "name": "npm:karma-webpack", - "data": { - "version": "5.0.0", - "packageName": "karma-webpack", - "hash": "sha512-+54i/cd3/piZuP3dr54+NcFeKOPnys5QeM1IY+0SPASwrtHsliXUiCL50iW+K9WWA7RvamC4macvvQ86l3KtaA==" - } - }, - "npm:react-document-title": { - "type": "npm", - "name": "npm:react-document-title", - "data": { - "version": "2.0.3", - "packageName": "react-document-title", - "hash": "sha1-u/kioNcUEvyUgkXkKDskEt9w8rk=" - } - }, - "npm:git-url-parse": { - "type": "npm", - "name": "npm:git-url-parse", - "data": { - "version": "13.1.0", - "packageName": "git-url-parse", - "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" - } - }, - "npm:stream-http": { - "type": "npm", - "name": "npm:stream-http", - "data": { - "version": "3.1.1", - "packageName": "stream-http", - "hash": "sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg==" - } - }, - "npm:to-space-case": { - "type": "npm", - "name": "npm:to-space-case", - "data": { - "version": "1.0.0", - "packageName": "to-space-case", - "hash": "sha1-sFLar7Gysp3HcM6gFj5ewOvJ/Bc=" - } - }, - "npm:only": { - "type": "npm", - "name": "npm:only", - "data": { - "version": "0.0.2", - "packageName": "only", - "hash": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==" - } - }, - "npm:has-unicode": { - "type": "npm", - "name": "npm:has-unicode", - "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "2.5.0", - "packageName": "tough-cookie", - "hash": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" - } - }, - "npm:timers-ext": { - "type": "npm", - "name": "npm:timers-ext", - "data": { - "version": "0.1.7", - "packageName": "timers-ext", - "hash": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==" - } - }, - "npm:jest-haste-map@26.6.2": { - "type": "npm", - "name": "npm:jest-haste-map@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "jest-haste-map", - "hash": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==" - } - }, - "npm:@esbuild/win32-ia32@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-47gL/ek1v36iN0wL9L4Q2MFdujR0poLZMJwhO2/N3gA89jgHp4MR8DKCmwYtGNksbfJb9JoTtbkoe6sDhg2QTA==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" - } - }, - "npm:tr46@0.0.3": { - "type": "npm", - "name": "npm:tr46@0.0.3", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" - } - }, - "npm:@storybook/addon-viewport": { - "type": "npm", - "name": "npm:@storybook/addon-viewport", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-viewport", - "hash": "sha512-oOiVzgFMlTnzPLVoHWQNzWdmpksrUyT6Aq8ZOyBPNMQ0RN2doIgFr7W53nZ1OBB5cPQx9q2FgWwzJ7Tawo+iVA==" - } - }, - "npm:tunnel-agent": { - "type": "npm", - "name": "npm:tunnel-agent", - "data": { - "version": "0.6.0", - "packageName": "tunnel-agent", - "hash": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=" - } - }, - "npm:@xmldom/xmldom@0.7.9": { - "type": "npm", - "name": "npm:@xmldom/xmldom@0.7.9", - "data": { - "version": "0.7.9", - "packageName": "@xmldom/xmldom", - "hash": "sha512-yceMpm/xd4W2a85iqZyO09gTnHvXF6pyiWjD2jcOJs7hRoZtNNOO1eJlhHj1ixA+xip2hOyGn+LgcvLCMo5zXA==" - } - }, - "npm:conventional-changelog-writer": { - "type": "npm", - "name": "npm:conventional-changelog-writer", - "data": { - "version": "6.0.1", - "packageName": "conventional-changelog-writer", - "hash": "sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - } - }, - "npm:safe-buffer@5.1.1": { - "type": "npm", - "name": "npm:safe-buffer@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "safe-buffer", - "hash": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" - } - }, - "npm:humanize-ms": { - "type": "npm", - "name": "npm:humanize-ms", - "data": { - "version": "1.2.1", - "packageName": "humanize-ms", - "hash": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=" - } - }, - "npm:batch-processor": { - "type": "npm", - "name": "npm:batch-processor", - "data": { - "version": "1.0.0", - "packageName": "batch-processor", - "hash": "sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=" - } - }, - "npm:camel-case": { - "type": "npm", - "name": "npm:camel-case", - "data": { - "version": "3.0.0", - "packageName": "camel-case", - "hash": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=" - } - }, - "npm:is-buffer@2.0.4": { - "type": "npm", - "name": "npm:is-buffer@2.0.4", - "data": { - "version": "2.0.4", - "packageName": "is-buffer", - "hash": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==" - } - }, - "npm:@jest/types@26.6.2": { - "type": "npm", - "name": "npm:@jest/types@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "@jest/types", - "hash": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" - } - }, - "npm:@emotion/utils@1.0.0": { - "type": "npm", - "name": "npm:@emotion/utils@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "@emotion/utils", - "hash": "sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==" - } - }, - "npm:ansi-regex@4.1.1": { - "type": "npm", - "name": "npm:ansi-regex@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "ansi-regex", - "hash": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" - } - }, - "npm:@babel/plugin-syntax-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-dynamic-import", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-dynamic-import", - "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - } - }, - "npm:@tsconfig/node12": { - "type": "npm", - "name": "npm:@tsconfig/node12", - "data": { - "version": "1.0.11", - "packageName": "@tsconfig/node12", - "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" - } - }, - "npm:aria-query@5.0.0": { - "type": "npm", - "name": "npm:aria-query@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "aria-query", - "hash": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==" - } - }, - "npm:async-settle": { - "type": "npm", - "name": "npm:async-settle", - "data": { - "version": "1.0.0", - "packageName": "async-settle", - "hash": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=" - } - }, - "npm:change-case": { - "type": "npm", - "name": "npm:change-case", - "data": { - "version": "3.1.0", - "packageName": "change-case", - "hash": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==" - } - }, - "npm:fill-range@4.0.0": { - "type": "npm", - "name": "npm:fill-range@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "fill-range", - "hash": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=" - } - }, - "npm:jsonwebtoken": { - "type": "npm", - "name": "npm:jsonwebtoken", - "data": { - "version": "8.5.1", - "packageName": "jsonwebtoken", - "hash": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==" - } - }, - "npm:flamebearer": { - "type": "npm", - "name": "npm:flamebearer", - "data": { - "version": "1.1.3", - "packageName": "flamebearer", - "hash": "sha512-3AEti4HwtsVRQTHTB47kQZvXkenSn5YfmpGGZX/mRW8R+9ZDFO+iqgEC4W7Nb8PQvUceYVfbM7nqQxI/m6DeDA==" - } - }, - "npm:libnpmpublish": { - "type": "npm", - "name": "npm:libnpmpublish", - "data": { - "version": "7.3.0", - "packageName": "libnpmpublish", - "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:@types/yargs@15.0.13": { - "type": "npm", - "name": "npm:@types/yargs@15.0.13", - "data": { - "version": "15.0.13", - "packageName": "@types/yargs", - "hash": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==" - } - }, - "npm:clone-buffer": { - "type": "npm", - "name": "npm:clone-buffer", - "data": { - "version": "1.0.0", - "packageName": "clone-buffer", - "hash": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" - } - }, - "npm:memfs": { - "type": "npm", - "name": "npm:memfs", - "data": { - "version": "3.2.2", - "packageName": "memfs", - "hash": "sha512-RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==" - } - }, - "npm:p-limit@1.3.0": { - "type": "npm", - "name": "npm:p-limit@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "p-limit", - "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" - } - }, - "npm:postcss-modules-extract-imports": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" - } - }, - "npm:pseudomap": { - "type": "npm", - "name": "npm:pseudomap", - "data": { - "version": "1.0.2", - "packageName": "pseudomap", - "hash": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==" - } - }, - "npm:is-accessor-descriptor@0.1.6": { - "type": "npm", - "name": "npm:is-accessor-descriptor@0.1.6", - "data": { - "version": "0.1.6", - "packageName": "is-accessor-descriptor", - "hash": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=" - } - }, - "npm:sha.js": { - "type": "npm", - "name": "npm:sha.js", - "data": { - "version": "2.4.11", - "packageName": "sha.js", - "hash": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==" - } - }, - "npm:@jridgewell/trace-mapping@0.3.9": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" - } - }, - "npm:@types/istanbul-lib-coverage": { - "type": "npm", - "name": "npm:@types/istanbul-lib-coverage", - "data": { - "version": "2.0.3", - "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" - } - }, - "npm:ansi-align": { - "type": "npm", - "name": "npm:ansi-align", - "data": { - "version": "3.0.0", - "packageName": "ansi-align", - "hash": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==" - } - }, - "npm:babel-plugin-jest-hoist": { - "type": "npm", - "name": "npm:babel-plugin-jest-hoist", - "data": { - "version": "29.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:gulp-remember": { - "type": "npm", - "name": "npm:gulp-remember", - "data": { - "version": "1.0.1", - "packageName": "gulp-remember", - "hash": "sha512-6OMSOzGeW05rl2TSFiBgXp6bV5r16n1CbZAT4t98vt1osQQ0UL76Y2M91xJTtMwppTo3Aj25Rle85jCP1eL9rQ==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "0.0.1", - "packageName": "isarray", - "hash": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - } - }, - "npm:lower-case-first": { - "type": "npm", - "name": "npm:lower-case-first", - "data": { - "version": "1.0.2", - "packageName": "lower-case-first", - "hash": "sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=" - } - }, - "npm:object-keys": { - "type": "npm", - "name": "npm:object-keys", - "data": { - "version": "1.1.1", - "packageName": "object-keys", - "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - } - }, - "npm:@babel/plugin-transform-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typescript", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==" - } - }, - "npm:just-scripts": { - "type": "npm", - "name": "npm:just-scripts", - "data": { - "version": "1.8.2", - "packageName": "just-scripts", - "hash": "sha512-ZTaWL/r2hdswji60HFrOP3FrqUCXrIr5ElgXH3sr1cySamOeP1aWsvfKXssc7c2gAP8xi3S5JFAAffDOV60/EA==" - } - }, - "npm:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - } - }, - "npm:console-control-strings": { - "type": "npm", - "name": "npm:console-control-strings", - "data": { - "version": "1.1.0", - "packageName": "console-control-strings", - "hash": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.23.2", - "packageName": "@babel/traverse", - "hash": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==" - } - }, - "npm:spdy-transport": { - "type": "npm", - "name": "npm:spdy-transport", - "data": { - "version": "3.0.0", - "packageName": "spdy-transport", - "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - } - }, - "npm:@babel/plugin-transform-computed-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-computed-properties", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==" - } - }, - "npm:portfinder": { - "type": "npm", - "name": "npm:portfinder", - "data": { - "version": "1.0.28", - "packageName": "portfinder", - "hash": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==" - } - }, - "npm:cliui@7.0.4": { - "type": "npm", - "name": "npm:cliui@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "cliui", - "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" - } - }, - "npm:ajv-formats@2.1.1": { - "type": "npm", - "name": "npm:ajv-formats@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ajv-formats", - "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - } - }, - "npm:@swc/core-linux-arm64-musl@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-musl@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-arm64-musl", - "hash": "sha512-WQ5tirVBiU8lUODQ25dt8JRCZHyRDInBe4fkGuxzImMa017zYPWa2WxrKK8LdDF7DzrAITlGl9VeoeE/l0WJbw==" - } - }, - "npm:replace-ext": { - "type": "npm", - "name": "npm:replace-ext", - "data": { - "version": "1.0.0", - "packageName": "replace-ext", - "hash": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=" - } - }, - "npm:duplexer2": { - "type": "npm", - "name": "npm:duplexer2", - "data": { - "version": "0.0.2", - "packageName": "duplexer2", - "hash": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=" - } - }, - "npm:executable": { - "type": "npm", - "name": "npm:executable", - "data": { - "version": "4.1.1", - "packageName": "executable", - "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" - } - }, - "npm:lodash.restparam": { - "type": "npm", - "name": "npm:lodash.restparam", - "data": { - "version": "3.6.1", - "packageName": "lodash.restparam", - "hash": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" - } - }, - "npm:@types/progress": { - "type": "npm", - "name": "npm:@types/progress", - "data": { - "version": "2.0.5", - "packageName": "@types/progress", - "hash": "sha512-ZYYVc/kSMkhH9W/4dNK/sLNra3cnkfT2nJyOAIDY+C2u6w72wa0s1aXAezVtbTsnN8HID1uhXCrLwDE2ZXpplg==" - } - }, - "npm:bplist-parser": { - "type": "npm", - "name": "npm:bplist-parser", - "data": { - "version": "0.1.1", - "packageName": "bplist-parser", - "hash": "sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "4.17.3", - "packageName": "express", - "hash": "sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==" - } - }, - "npm:@types/http-proxy": { - "type": "npm", - "name": "npm:@types/http-proxy", - "data": { - "version": "1.17.11", - "packageName": "@types/http-proxy", - "hash": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==" - } - }, - "npm:spdx-correct": { - "type": "npm", - "name": "npm:spdx-correct", - "data": { - "version": "3.1.0", - "packageName": "spdx-correct", - "hash": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==" - } - }, - "npm:strip-outer@2.0.0": { - "type": "npm", - "name": "npm:strip-outer@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "strip-outer", - "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" - } - }, - "npm:check-error": { - "type": "npm", - "name": "npm:check-error", - "data": { - "version": "1.0.2", - "packageName": "check-error", - "hash": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=" - } - }, - "npm:type-fest@0.11.0": { - "type": "npm", - "name": "npm:type-fest@0.11.0", - "data": { - "version": "0.11.0", - "packageName": "type-fest", - "hash": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" - } - }, - "npm:unist-util-is": { - "type": "npm", - "name": "npm:unist-util-is", - "data": { - "version": "4.0.1", - "packageName": "unist-util-is", - "hash": "sha512-7NYjErP4LJtkEptPR22wO5RsCPnHZZrop7t2SoQzjvpFedCFer4WW8ujj9GI5DkUX7yVcffXLjoURf6h2QUv6Q==" - } - }, - "npm:buffer@6.0.3": { - "type": "npm", - "name": "npm:buffer@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "buffer", - "hash": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==" - } - }, - "npm:body-scroll-lock": { - "type": "npm", - "name": "npm:body-scroll-lock", - "data": { - "version": "3.1.5", - "packageName": "body-scroll-lock", - "hash": "sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.12.1", - "packageName": "is-core-module", - "hash": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==" - } - }, - "npm:fast-glob@3.2.7": { - "type": "npm", - "name": "npm:fast-glob@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "fast-glob", - "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" - } - }, - "npm:string.prototype.padstart": { - "type": "npm", - "name": "npm:string.prototype.padstart", - "data": { - "version": "3.0.0", - "packageName": "string.prototype.padstart", - "hash": "sha1-W8+tOfRkm7LQMSkuGbzwtRDUskI=" - } - }, - "npm:strip-bom@2.0.0": { - "type": "npm", - "name": "npm:strip-bom@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "strip-bom", - "hash": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" - } - }, - "npm:is-window": { - "type": "npm", - "name": "npm:is-window", - "data": { - "version": "1.0.2", - "packageName": "is-window", - "hash": "sha1-LIlspT25feRdPDMTOmXYyfVjSA0=" - } - }, - "npm:object.reduce": { - "type": "npm", - "name": "npm:object.reduce", - "data": { - "version": "1.0.1", - "packageName": "object.reduce", - "hash": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=" - } - }, - "npm:pretty-error": { - "type": "npm", - "name": "npm:pretty-error", - "data": { - "version": "2.1.1", - "packageName": "pretty-error", - "hash": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=" - } - }, - "npm:isstream": { - "type": "npm", - "name": "npm:isstream", - "data": { - "version": "0.1.2", - "packageName": "isstream", - "hash": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - } - }, - "npm:react-shadow": { - "type": "npm", - "name": "npm:react-shadow", - "data": { - "version": "20.3.0", - "packageName": "react-shadow", - "hash": "sha512-oWi4W+FE6Puz+7+psL5l90wD9tu+OI1x+Uf1C2Y+O9J1AZzfaWVBbAQjvrDk/Sn8Nh0owCGSD0eemcr1ErtGzw==" - } - }, - "npm:babel-plugin-const-enum": { - "type": "npm", - "name": "npm:babel-plugin-const-enum", - "data": { - "version": "1.2.0", - "packageName": "babel-plugin-const-enum", - "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" - } - }, - "npm:fela-plugin-embedded": { - "type": "npm", - "name": "npm:fela-plugin-embedded", - "data": { - "version": "10.8.2", - "packageName": "fela-plugin-embedded", - "hash": "sha512-HeLyDJHQgpBEMbWjsCES1Jtptawtaqnp0Ml3zKebPMrryCQj4j0k4VdyzcS+QzE4M0JD1r0FYhKla+mpuMP5Qw==" - } - }, - "npm:@esbuild/linux-ia32@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-mLfp0ziRPOLSTek0Gd9T5B8AtzKAkoZE70fneiiyPlSnUKKI4lp+mGEnQXcQEHLJAcIYDPSyBvsUbKUG2ri/XQ==" - } - }, - "npm:is-module": { - "type": "npm", - "name": "npm:is-module", - "data": { - "version": "1.0.0", - "packageName": "is-module", - "hash": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" - } - }, - "npm:has-bigints": { - "type": "npm", - "name": "npm:has-bigints", - "data": { - "version": "1.0.1", - "packageName": "has-bigints", - "hash": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" - } - }, - "npm:is-glob@3.1.0": { - "type": "npm", - "name": "npm:is-glob@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "is-glob", - "hash": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=" - } - }, - "npm:@npmcli/ci-detect": { - "type": "npm", - "name": "npm:@npmcli/ci-detect", - "data": { - "version": "1.3.0", - "packageName": "@npmcli/ci-detect", - "hash": "sha512-oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q==" - } - }, - "npm:globby@9.2.0": { - "type": "npm", - "name": "npm:globby@9.2.0", - "data": { - "version": "9.2.0", - "packageName": "globby", - "hash": "sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==" - } - }, - "npm:mdast-util-definitions": { - "type": "npm", - "name": "npm:mdast-util-definitions", - "data": { - "version": "4.0.0", - "packageName": "mdast-util-definitions", - "hash": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==" - } - }, - "npm:tuf-js": { - "type": "npm", - "name": "npm:tuf-js", - "data": { - "version": "1.1.7", - "packageName": "tuf-js", - "hash": "sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==" - } - }, - "npm:pinpoint": { - "type": "npm", - "name": "npm:pinpoint", - "data": { - "version": "1.1.0", - "packageName": "pinpoint", - "hash": "sha1-DPd1eml38b9/ajIge3CeN3OI6HQ=" - } - }, - "npm:validate-npm-package-license": { - "type": "npm", - "name": "npm:validate-npm-package-license", - "data": { - "version": "3.0.4", - "packageName": "validate-npm-package-license", - "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" - } - }, - "npm:zwitch": { - "type": "npm", - "name": "npm:zwitch", - "data": { - "version": "1.0.5", - "packageName": "zwitch", - "hash": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" - } - }, - "npm:before-after-hook": { - "type": "npm", - "name": "npm:before-after-hook", - "data": { - "version": "2.2.2", - "packageName": "before-after-hook", - "hash": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:p-cancelable": { - "type": "npm", - "name": "npm:p-cancelable", - "data": { - "version": "2.0.0", - "packageName": "p-cancelable", - "hash": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==" - } - }, - "npm:color-check": { - "type": "npm", - "name": "npm:color-check", - "data": { - "version": "0.0.2", - "packageName": "color-check", - "hash": "sha1-L07qW3QykYGtzAd+DOhF2UEbR8Q=" - } - }, - "npm:@types/cors": { - "type": "npm", - "name": "npm:@types/cors", - "data": { - "version": "2.8.13", - "packageName": "@types/cors", - "hash": "sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==" - } - }, - "npm:character-entities-legacy": { - "type": "npm", - "name": "npm:character-entities-legacy", - "data": { - "version": "1.1.3", - "packageName": "character-entities-legacy", - "hash": "sha512-YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww==" - } - }, - "npm:cypress-real-events": { - "type": "npm", - "name": "npm:cypress-real-events", - "data": { - "version": "1.7.1", - "packageName": "cypress-real-events", - "hash": "sha512-/Bg15RgJ0SYsuXc6lPqH08x19z6j2vmhWN4wXfJqm3z8BTAFiK2MvipZPzxT8Z0jJP0q7kuniWrLIvz/i/8lCQ==" - } - }, - "npm:vfile-message": { - "type": "npm", - "name": "npm:vfile-message", - "data": { - "version": "2.0.2", - "packageName": "vfile-message", - "hash": "sha512-gNV2Y2fDvDOOqq8bEe7cF3DXU6QgV4uA9zMR2P8tix11l1r7zju3zry3wZ8sx+BEfuO6WQ7z2QzfWTvqHQiwsA==" - } - }, - "npm:filenamify@5.1.1": { - "type": "npm", - "name": "npm:filenamify@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "filenamify", - "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" - } - }, - "npm:copy-descriptor": { - "type": "npm", - "name": "npm:copy-descriptor", - "data": { - "version": "0.1.1", - "packageName": "copy-descriptor", - "hash": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" - } - }, - "npm:@babel/plugin-syntax-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-namespace-from", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-export-namespace-from", - "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - } - }, - "npm:errlop": { - "type": "npm", - "name": "npm:errlop", - "data": { - "version": "2.2.0", - "packageName": "errlop", - "hash": "sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==" - } - }, - "npm:p-timeout": { - "type": "npm", - "name": "npm:p-timeout", - "data": { - "version": "3.2.0", - "packageName": "p-timeout", - "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "5.2.0", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==" - } - }, - "npm:postcss-loader": { - "type": "npm", - "name": "npm:postcss-loader", - "data": { - "version": "4.1.0", - "packageName": "postcss-loader", - "hash": "sha512-vbCkP70F3Q9PIk6d47aBwjqAMI4LfkXCoyxj+7NPNuVIwfTGdzv2KVQes59/RuxMniIgsYQCFSY42P3+ykJfaw==" - } - }, - "npm:JSONStream": { - "type": "npm", - "name": "npm:JSONStream", - "data": { - "version": "1.3.5", - "packageName": "JSONStream", - "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - } - }, - "npm:minimatch@9.0.1": { - "type": "npm", - "name": "npm:minimatch@9.0.1", - "data": { - "version": "9.0.1", - "packageName": "minimatch", - "hash": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==" - } - }, - "npm:parse5@3.0.3": { - "type": "npm", - "name": "npm:parse5@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "parse5", - "hash": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==" - } - }, - "npm:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:swap-case": { - "type": "npm", - "name": "npm:swap-case", - "data": { - "version": "1.1.2", - "packageName": "swap-case", - "hash": "sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=" - } - }, - "npm:@babel/plugin-transform-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-transform-export-namespace-from", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-export-namespace-from", - "hash": "sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==" - } - }, - "npm:array-filter": { - "type": "npm", - "name": "npm:array-filter", - "data": { - "version": "1.0.0", - "packageName": "array-filter", - "hash": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" - } - }, - "npm:regenerate-unicode-properties": { - "type": "npm", - "name": "npm:regenerate-unicode-properties", - "data": { - "version": "10.1.0", - "packageName": "regenerate-unicode-properties", - "hash": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" - } - }, - "npm:doctrine@2.1.0": { - "type": "npm", - "name": "npm:doctrine@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "doctrine", - "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" - } - }, - "npm:unique-string": { - "type": "npm", - "name": "npm:unique-string", - "data": { - "version": "1.0.0", - "packageName": "unique-string", - "hash": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=" - } - }, - "npm:@types/istanbul-reports": { - "type": "npm", - "name": "npm:@types/istanbul-reports", - "data": { - "version": "3.0.0", - "packageName": "@types/istanbul-reports", - "hash": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==" - } - }, - "npm:chai-spies": { - "type": "npm", - "name": "npm:chai-spies", - "data": { - "version": "1.0.0", - "packageName": "chai-spies", - "hash": "sha512-elF2ZUczBsFoP07qCfMO/zeggs8pqCf3fZGyK5+2X4AndS8jycZYID91ztD9oQ7d/0tnS963dPkd0frQEThDsg==" - } - }, - "npm:babel-plugin-polyfill-regenerator": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-regenerator", - "data": { - "version": "0.5.3", - "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==" - } - }, - "npm:d3-time": { - "type": "npm", - "name": "npm:d3-time", - "data": { - "version": "2.1.1", - "packageName": "d3-time", - "hash": "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==" - } - }, - "npm:xtend@3.0.0": { - "type": "npm", - "name": "npm:xtend@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "xtend", - "hash": "sha1-XM50B7r2Qsunvs2laBEcST9ZZlo=" - } - }, - "npm:@types/semver": { - "type": "npm", - "name": "npm:@types/semver", - "data": { - "version": "6.2.3", - "packageName": "@types/semver", - "hash": "sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==" - } - }, - "npm:@babel/helper-environment-visitor": { - "type": "npm", - "name": "npm:@babel/helper-environment-visitor", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" - } - }, - "npm:@types/yargs-parser": { - "type": "npm", - "name": "npm:@types/yargs-parser", - "data": { - "version": "15.0.0", - "packageName": "@types/yargs-parser", - "hash": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "11.1.1", - "packageName": "make-fetch-happen", - "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" - } - }, - "npm:babel-messages": { - "type": "npm", - "name": "npm:babel-messages", - "data": { - "version": "6.23.0", - "packageName": "babel-messages", - "hash": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=" - } - }, - "npm:d3-scale": { - "type": "npm", - "name": "npm:d3-scale", - "data": { - "version": "1.0.7", - "packageName": "d3-scale", - "hash": "sha512-KvU92czp2/qse5tUfGms6Kjig0AhHOwkzXG0+PqIJB3ke0WUv088AHMZI0OssO9NCkXt4RP8yju9rpH8aGB7Lw==" - } - }, - "npm:symbol-tree": { - "type": "npm", - "name": "npm:symbol-tree", - "data": { - "version": "3.2.4", - "packageName": "symbol-tree", - "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.0-placeholder-for-preset-env.2", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" - } - }, - "npm:buffer-xor": { - "type": "npm", - "name": "npm:buffer-xor", - "data": { - "version": "1.0.3", - "packageName": "buffer-xor", - "hash": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" - } - }, - "npm:memoize-one": { - "type": "npm", - "name": "npm:memoize-one", - "data": { - "version": "5.1.1", - "packageName": "memoize-one", - "hash": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.1", - "packageName": "merge-descriptors", - "hash": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - } - }, - "npm:@types/webpack-dev-middleware": { - "type": "npm", - "name": "npm:@types/webpack-dev-middleware", - "data": { - "version": "4.1.0", - "packageName": "@types/webpack-dev-middleware", - "hash": "sha512-cG/RhZcpAmVCQi7sGMc7bFyYGA2Yzu/+pWxTJezs7z2asjGZJ7j+0/+t39AuxQQbEuABWgYAwolg/DysGEcLyA==" - } - }, - "npm:create-require": { - "type": "npm", - "name": "npm:create-require", - "data": { - "version": "1.1.1", - "packageName": "create-require", - "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - } - }, - "npm:is-utf8": { - "type": "npm", - "name": "npm:is-utf8", - "data": { - "version": "0.2.1", - "packageName": "is-utf8", - "hash": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" - } - }, - "npm:@types/keyv": { - "type": "npm", - "name": "npm:@types/keyv", - "data": { - "version": "3.1.1", - "packageName": "@types/keyv", - "hash": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==" - } - }, - "npm:deep-equal": { - "type": "npm", - "name": "npm:deep-equal", - "data": { - "version": "1.0.1", - "packageName": "deep-equal", - "hash": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" - } - }, - "npm:pacote@11.1.11": { - "type": "npm", - "name": "npm:pacote@11.1.11", - "data": { - "version": "11.1.11", - "packageName": "pacote", - "hash": "sha512-r6PHtCEhkaGv+QPx1JdE/xRdkSkZUG7dE2oloNk/CGTPGNOtaJyYqZPFeN6d6UcUrTPRvZXFo3IBzJIBopPuSA==" - } - }, - "npm:clone-stats": { - "type": "npm", - "name": "npm:clone-stats", - "data": { - "version": "1.0.0", - "packageName": "clone-stats", - "hash": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" - } - }, - "npm:@webassemblyjs/wasm-edit@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:is-alphabetical": { - "type": "npm", - "name": "npm:is-alphabetical", - "data": { - "version": "1.0.4", - "packageName": "is-alphabetical", - "hash": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" - } - }, - "npm:dom-converter": { - "type": "npm", - "name": "npm:dom-converter", - "data": { - "version": "0.2.0", - "packageName": "dom-converter", - "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" - } - }, - "npm:@octokit/graphql@5.0.1": { - "type": "npm", - "name": "npm:@octokit/graphql@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "@octokit/graphql", - "hash": "sha512-sxmnewSwAixkP1TrLdE6yRG53eEhHhDTYUykUwdV9x8f91WcbhunIHk9x1PZLALdBZKRPUO2HRcm4kezZ79HoA==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "8.6.0", - "packageName": "dotenv", - "hash": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==" - } - }, - "npm:jest-matcher-utils": { - "type": "npm", - "name": "npm:jest-matcher-utils", - "data": { - "version": "29.7.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" - } - }, - "npm:jpeg-js": { - "type": "npm", - "name": "npm:jpeg-js", - "data": { - "version": "0.4.4", - "packageName": "jpeg-js", - "hash": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" - } - }, - "npm:log-symbols@1.0.2": { - "type": "npm", - "name": "npm:log-symbols@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "log-symbols", - "hash": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=" - } - }, - "npm:react-colorful": { - "type": "npm", - "name": "npm:react-colorful", - "data": { - "version": "5.3.0", - "packageName": "react-colorful", - "hash": "sha512-zWE5E88zmjPXFhv6mGnRZqKin9s5vip1O3IIGynY9EhZxN8MATUxZkT3e/9OwTEm4DjQBXc6PFWP6AetY+Px+A==" - } - }, - "npm:@esbuild/linux-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-oxzHTEv6VPm3XXNaHPyUTTte+3wGv7qVQtqaZCrgstI16gCuhNOtBXLEBkBREP57YTd68P0VgDgG73jSD8bwXQ==" - } - }, - "npm:commander@5.1.0": { - "type": "npm", - "name": "npm:commander@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "commander", - "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" - } - }, - "npm:cpy": { - "type": "npm", - "name": "npm:cpy", - "data": { - "version": "8.1.2", - "packageName": "cpy", - "hash": "sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:find-free-port": { - "type": "npm", - "name": "npm:find-free-port", - "data": { - "version": "2.0.0", - "packageName": "find-free-port", - "hash": "sha512-J1j8gfEVf5FN4PR5w5wrZZ7NYs2IvqsHcd03cAeQx3Ec/mo+lKceaVNhpsRKoZpZKbId88o8qh+dwUwzBV6WCg==" - } - }, - "npm:safe-buffer@5.1.2": { - "type": "npm", - "name": "npm:safe-buffer@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:string-width@2.1.1": { - "type": "npm", - "name": "npm:string-width@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "string-width", - "hash": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==" - } - }, - "npm:symbol.prototype.description": { - "type": "npm", - "name": "npm:symbol.prototype.description", - "data": { - "version": "1.0.0", - "packageName": "symbol.prototype.description", - "hash": "sha512-I9mrbZ5M96s7QeJDv95toF1svkUjeBybe8ydhY7foPaBmr0SPJMFupArmMkDrOKTTj0sJVr+nvQNxWLziQ7nDQ==" - } - }, - "npm:tiny-emitter": { - "type": "npm", - "name": "npm:tiny-emitter", - "data": { - "version": "2.1.0", - "packageName": "tiny-emitter", - "hash": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "1.6.18", - "packageName": "type-is", - "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "1.1.2", - "packageName": "entities", - "hash": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" - } - }, - "npm:array-sort": { - "type": "npm", - "name": "npm:array-sort", - "data": { - "version": "1.0.0", - "packageName": "array-sort", - "hash": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==" - } - }, - "npm:execa@1.0.0": { - "type": "npm", - "name": "npm:execa@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "execa", - "hash": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" - } - }, - "npm:pretty-bytes": { - "type": "npm", - "name": "npm:pretty-bytes", - "data": { - "version": "5.6.0", - "packageName": "pretty-bytes", - "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - } - }, - "npm:azure-devops-node-api": { - "type": "npm", - "name": "npm:azure-devops-node-api", - "data": { - "version": "10.2.2", - "packageName": "azure-devops-node-api", - "hash": "sha512-4TVv2X7oNStT0vLaEfExmy3J4/CzfuXolEcQl/BRUmvGySqKStTG2O55/hUQ0kM7UJlZBLgniM0SBq4d/WkKow==" - } - }, - "npm:untildify": { - "type": "npm", - "name": "npm:untildify", - "data": { - "version": "4.0.0", - "packageName": "untildify", - "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" - } - }, - "npm:aproba": { - "type": "npm", - "name": "npm:aproba", - "data": { - "version": "1.2.0", - "packageName": "aproba", - "hash": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" - } - }, - "npm:es6-object-assign": { - "type": "npm", - "name": "npm:es6-object-assign", - "data": { - "version": "1.1.0", - "packageName": "es6-object-assign", - "hash": "sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=" - } - }, - "npm:bin-version-check": { - "type": "npm", - "name": "npm:bin-version-check", - "data": { - "version": "5.1.0", - "packageName": "bin-version-check", - "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" - } - }, - "npm:unicode-property-aliases-ecmascript": { - "type": "npm", - "name": "npm:unicode-property-aliases-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-property-aliases-ecmascript", - "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - } - }, - "npm:define-property@2.0.2": { - "type": "npm", - "name": "npm:define-property@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "define-property", - "hash": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==" - } - }, - "npm:@types/webpack-sources": { - "type": "npm", - "name": "npm:@types/webpack-sources", - "data": { - "version": "0.1.6", - "packageName": "@types/webpack-sources", - "hash": "sha512-FtAWR7wR5ocJ9+nP137DV81tveD/ZgB1sadnJ/axUGM3BUVfRPx8oQNMtv3JNfTeHx3VP7cXiyfR/jmtEsVHsQ==" - } - }, - "npm:@microsoft/applicationinsights-shims": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-shims", - "data": { - "version": "3.0.1", - "packageName": "@microsoft/applicationinsights-shims", - "hash": "sha512-DKwboF47H1nb33rSUfjqI6ryX29v+2QWcTrRvcQDA32AZr5Ilkr7whOOSsD1aBzwqX0RJEIP1Z81jfE3NBm/Lg==" - } - }, - "npm:@octokit/core": { - "type": "npm", - "name": "npm:@octokit/core", - "data": { - "version": "3.6.0", - "packageName": "@octokit/core", - "hash": "sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==" - } - }, - "npm:babel-plugin-tester": { - "type": "npm", - "name": "npm:babel-plugin-tester", - "data": { - "version": "10.1.0", - "packageName": "babel-plugin-tester", - "hash": "sha512-4P2tNaM/Mtg6ytA9YAqmgONnMYqWvdbGDuwRTpIIC9yFZGQrEHoyvDPCx+X1QALAufVb5DKieOPGj5dffiEiNg==" - } - }, - "npm:koa-mount": { - "type": "npm", - "name": "npm:koa-mount", - "data": { - "version": "4.0.0", - "packageName": "koa-mount", - "hash": "sha512-rm71jaA/P+6HeCpoRhmCv8KVBIi0tfGuO/dMKicbQnQW/YJntJ6MnnspkodoA4QstMVEZArsCphmd0bJEtoMjQ==" - } - }, - "npm:typedarray-to-buffer": { - "type": "npm", - "name": "npm:typedarray-to-buffer", - "data": { - "version": "3.1.5", - "packageName": "typedarray-to-buffer", - "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" - } - }, - "npm:@effect/data": { - "type": "npm", - "name": "npm:@effect/data", - "data": { - "version": "0.12.10", - "packageName": "@effect/data", - "hash": "sha512-zIz/DgumH2LgGdr1Wc9ChET5JSG0k/G5kDc8rn4a6yIJ0v2d5rfnbRWIJO2fWmdFvc+128JyaBvYguIyz9JaAQ==" - } - }, - "npm:urix": { - "type": "npm", - "name": "npm:urix", - "data": { - "version": "0.1.0", - "packageName": "urix", - "hash": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" - } - }, - "npm:color-name@1.1.3": { - "type": "npm", - "name": "npm:color-name@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - } - }, - "npm:hash-base": { - "type": "npm", - "name": "npm:hash-base", - "data": { - "version": "3.0.4", - "packageName": "hash-base", - "hash": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=" - } - }, - "npm:p-graph": { - "type": "npm", - "name": "npm:p-graph", - "data": { - "version": "1.1.1", - "packageName": "p-graph", - "hash": "sha512-KdD5JEqSEbOYK5Yl4MKbHo8cNaJs+O6TW+HacoyPVau704KukYhJMhSXuC8tF332zqgB87pyAMf2FhQ54R0ugA==" - } - }, - "npm:v8flags": { - "type": "npm", - "name": "npm:v8flags", - "data": { - "version": "2.1.1", - "packageName": "v8flags", - "hash": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=" - } - }, - "npm:@storybook/client-api": { - "type": "npm", - "name": "npm:@storybook/client-api", - "data": { - "version": "6.5.15", - "packageName": "@storybook/client-api", - "hash": "sha512-0ZGpRgVz7rdbCguBqBpwObXbsVY5qlSTWDzzIBpmz8EkxW/MtK5wEyeq+0L0O+DTn41FwvH5yCGLAENpzWD8BQ==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" - } - }, - "npm:destroy": { - "type": "npm", - "name": "npm:destroy", - "data": { - "version": "1.0.4", - "packageName": "destroy", - "hash": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - } - }, - "npm:@babel/preset-react": { - "type": "npm", - "name": "npm:@babel/preset-react", - "data": { - "version": "7.22.15", - "packageName": "@babel/preset-react", - "hash": "sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==" - } - }, - "npm:buffer-crc32": { - "type": "npm", - "name": "npm:buffer-crc32", - "data": { - "version": "0.2.13", - "packageName": "buffer-crc32", - "hash": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" - } - }, - "npm:strict-uri-encode": { - "type": "npm", - "name": "npm:strict-uri-encode", - "data": { - "version": "2.0.0", - "packageName": "strict-uri-encode", - "hash": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=" - } - }, - "npm:through2": { - "type": "npm", - "name": "npm:through2", - "data": { - "version": "4.0.2", - "packageName": "through2", - "hash": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.8.5", - "packageName": "jake", - "hash": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==" - } - }, - "npm:@uifabric/set-version": { - "type": "npm", - "name": "npm:@uifabric/set-version", - "data": { - "version": "7.0.23", - "packageName": "@uifabric/set-version", - "hash": "sha512-9E+YKtnH2kyMKnK9XZZsqyM8OCxEJIIfxtaThTlQpYOzrWAGJxQADFbZ7+Usi0U2xHnWNPFROjq+B9ocEzhqMA==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:fela-bindings": { - "type": "npm", - "name": "npm:fela-bindings", - "data": { - "version": "10.6.1", - "packageName": "fela-bindings", - "hash": "sha512-VY6PzkVHDpVHSvefa4AnfRYuzw1jgAheU+ePof4m8je3JgkoezKDiadI7uHD0teyzJhajDZ25nr2dOt2yCuMtA==" - } - }, - "npm:vinyl@0.5.3": { - "type": "npm", - "name": "npm:vinyl@0.5.3", - "data": { - "version": "0.5.3", - "packageName": "vinyl", - "hash": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=" - } - }, - "npm:webpack-dev-server": { - "type": "npm", - "name": "npm:webpack-dev-server", - "data": { - "version": "4.7.4", - "packageName": "webpack-dev-server", - "hash": "sha512-nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:get-stream@6.0.1": { - "type": "npm", - "name": "npm:get-stream@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - } - }, - "npm:class-utils": { - "type": "npm", - "name": "npm:class-utils", - "data": { - "version": "0.3.6", - "packageName": "class-utils", - "hash": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==" - } - }, - "npm:codesandbox-import-util-types": { - "type": "npm", - "name": "npm:codesandbox-import-util-types", - "data": { - "version": "2.2.3", - "packageName": "codesandbox-import-util-types", - "hash": "sha512-Qj00p60oNExthP2oR3vvXmUGjukij+rxJGuiaKM6tyUmSyimdZsqHI/TUvFFClAffk9s7hxGnQgWQ8KCce27qQ==" - } - }, - "npm:@types/vinyl": { - "type": "npm", - "name": "npm:@types/vinyl", - "data": { - "version": "2.0.7", - "packageName": "@types/vinyl", - "hash": "sha512-4UqPv+2567NhMQuMLdKAyK4yzrfCqwaTt6bLhHEs8PFcxbHILsrxaY63n4wgE/BRLDWDQeI+WcTmkXKExh9hQg==" - } - }, - "npm:@griffel/webpack-extraction-plugin": { - "type": "npm", - "name": "npm:@griffel/webpack-extraction-plugin", - "data": { - "version": "0.3.18", - "packageName": "@griffel/webpack-extraction-plugin", - "hash": "sha512-FYqaacXXMG3ekAXdpkS6Snc/ECW095pMIvLY8bDtOkNZidslbbg5gF/KqVrOqRcR3gDPXLpT3GylfGEHVrvEgw==" - } - }, - "npm:ylru": { - "type": "npm", - "name": "npm:ylru", - "data": { - "version": "1.3.2", - "packageName": "ylru", - "hash": "sha512-RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA==" - } - }, - "npm:d3-array": { - "type": "npm", - "name": "npm:d3-array", - "data": { - "version": "1.2.1", - "packageName": "d3-array", - "hash": "sha512-CyINJQ0SOUHojDdFDH4JEM0552vCR1utGyLHegJHyYH0JyCpSeTPxi4OBqHMA2jJZq4NH782LtaJWBImqI/HBw==" - } - }, - "npm:@npmcli/installed-package-contents": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents", - "data": { - "version": "2.0.2", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "2.7.0", - "packageName": "domutils", - "hash": "sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==" - } - }, - "npm:array-back@6.2.2": { - "type": "npm", - "name": "npm:array-back@6.2.2", - "data": { - "version": "6.2.2", - "packageName": "array-back", - "hash": "sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==" - } - }, - "npm:user-home": { - "type": "npm", - "name": "npm:user-home", - "data": { - "version": "1.1.1", - "packageName": "user-home", - "hash": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=" - } - }, - "npm:@babel/plugin-transform-block-scoping": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoping", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==" - } - }, - "npm:domelementtype@1.3.1": { - "type": "npm", - "name": "npm:domelementtype@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "domelementtype", - "hash": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - } - }, - "npm:js-queue": { - "type": "npm", - "name": "npm:js-queue", - "data": { - "version": "2.0.0", - "packageName": "js-queue", - "hash": "sha1-NiITz4YPRo8BJfxslqvBdCUx+Ug=" - } - }, - "npm:@lerna/create": { - "type": "npm", - "name": "npm:@lerna/create", - "data": { - "version": "7.1.3", - "packageName": "@lerna/create", - "hash": "sha512-i/xUmT7sMNTUhGpSUuQJ8N776YiT/fJaKPrzMSAoxqDBhyDryi4o4JUR+rrN9oELOEsO+SOXQEusBdkmUdVTMg==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:util@0.11.1": { - "type": "npm", - "name": "npm:util@0.11.1", - "data": { - "version": "0.11.1", - "packageName": "util", - "hash": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==" - } - }, - "npm:@babel/plugin-syntax-import-assertions": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-assertions", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "8.4.0", - "packageName": "ajv", - "hash": "sha512-7QD2l6+KBSLwf+7MuYocbWvRPdOu63/trReTLu2KFwkgctnub1auoF+Y1WYcm09CTM7quuscrzqmASaLHC/K4Q==" - } - }, - "npm:esbuild-android-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-android-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-android-arm64", - "hash": "sha512-vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==" - } - }, - "npm:webpack-bundle-analyzer": { - "type": "npm", - "name": "npm:webpack-bundle-analyzer", - "data": { - "version": "4.4.2", - "packageName": "webpack-bundle-analyzer", - "hash": "sha512-PIagMYhlEzFfhMYOzs5gFT55DkUdkyrJi/SxJp8EF3YMWhS+T9vvs2EoTetpk5qb6VsCq02eXTlRDOydRhDFAQ==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:p-locate@3.0.0": { - "type": "npm", - "name": "npm:p-locate@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-locate", - "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" - } - }, - "npm:babel-types": { - "type": "npm", - "name": "npm:babel-types", - "data": { - "version": "6.26.0", - "packageName": "babel-types", - "hash": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=" - } - }, - "npm:supports-color@5.5.0": { - "type": "npm", - "name": "npm:supports-color@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "supports-color", - "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - } - }, - "npm:@jest/fake-timers": { - "type": "npm", - "name": "npm:@jest/fake-timers", - "data": { - "version": "29.7.0", - "packageName": "@jest/fake-timers", - "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" - } - }, - "npm:node-polyfill-webpack-plugin": { - "type": "npm", - "name": "npm:node-polyfill-webpack-plugin", - "data": { - "version": "1.0.2", - "packageName": "node-polyfill-webpack-plugin", - "hash": "sha512-x4dNQ28D/kwvDbp52y6WBOuXs2QhGkIkv8RT2xhBj5JO21iUrNT4aSJyw41Jio3Ima/S0UKCTfHdS6mUOxjYmw==" - } - }, - "npm:postcss-modules": { - "type": "npm", - "name": "npm:postcss-modules", - "data": { - "version": "4.1.3", - "packageName": "postcss-modules", - "hash": "sha512-dBT39hrXe4OAVYJe/2ZuIZ9BzYhOe7t+IhedYeQ2OxKwDpAGlkEN/fR0fGnrbx4BvgbMReRX4hCubYK9cE/pJQ==" - } - }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, - "npm:tachometer": { - "type": "npm", - "name": "npm:tachometer", - "data": { - "version": "0.7.0", - "packageName": "tachometer", - "hash": "sha512-163DdzoNkjZlr/m3IpaPMYBOTUc54hzfGSUw7pv9ZoO3OkjDcoGqJGImcrfEDNsw3DD0J/FM5AWjEi2/0W4YZA==" - } - }, - "npm:@emotion/hash@0.9.1": { - "type": "npm", - "name": "npm:@emotion/hash@0.9.1", - "data": { - "version": "0.9.1", - "packageName": "@emotion/hash", - "hash": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" - } - }, - "npm:@babel/plugin-transform-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-rest-spread", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-object-rest-spread", - "hash": "sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.4.0", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" - } - }, - "npm:binary-extensions@1.13.1": { - "type": "npm", - "name": "npm:binary-extensions@1.13.1", - "data": { - "version": "1.13.1", - "packageName": "binary-extensions", - "hash": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" - } - }, - "npm:babel-plugin-polyfill-corejs3": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3", - "data": { - "version": "0.8.6", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==" - } - }, - "npm:camelcase-keys@2.1.0": { - "type": "npm", - "name": "npm:camelcase-keys@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "camelcase-keys", - "hash": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=" - } - }, - "npm:anchor-markdown-header": { - "type": "npm", - "name": "npm:anchor-markdown-header", - "data": { - "version": "0.5.7", - "packageName": "anchor-markdown-header", - "hash": "sha1-BFBj125qH5zTJ6V6ASaqD97Dcac=" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.7.0", - "packageName": "jest", - "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" - } - }, - "npm:@types/is-function": { - "type": "npm", - "name": "npm:@types/is-function", - "data": { - "version": "1.0.0", - "packageName": "@types/is-function", - "hash": "sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==" - } - }, - "npm:typedarray": { - "type": "npm", - "name": "npm:typedarray", - "data": { - "version": "0.0.6", - "packageName": "typedarray", - "hash": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" - } - }, - "npm:@nevware21/ts-utils": { - "type": "npm", - "name": "npm:@nevware21/ts-utils", - "data": { - "version": "0.9.8", - "packageName": "@nevware21/ts-utils", - "hash": "sha512-kZ8s8hcn9jPVX/M7kSsBYrOGlHjqLahmxrG7QeKTk5paeVwfgKdvVCjj5Acb4UGb/ukU1G34U1Z3eb7bbVanyA==" - } - }, - "npm:babel-plugin-polyfill-corejs2": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs2", - "data": { - "version": "0.4.6", - "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" - } - }, - "npm:koa-bodyparser": { - "type": "npm", - "name": "npm:koa-bodyparser", - "data": { - "version": "4.3.0", - "packageName": "koa-bodyparser", - "hash": "sha512-uyV8G29KAGwZc4q/0WUAjH+Tsmuv9ImfBUF2oZVyZtaeo0husInagyn/JH85xMSxM0hEk/mbCII5ubLDuqW/Rw==" - } - }, - "npm:lodash.escape@4.0.1": { - "type": "npm", - "name": "npm:lodash.escape@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "lodash.escape", - "hash": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=" - } - }, - "npm:to-fast-properties": { - "type": "npm", - "name": "npm:to-fast-properties", - "data": { - "version": "2.0.0", - "packageName": "to-fast-properties", - "hash": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" - } - }, - "npm:expand-tilde": { - "type": "npm", - "name": "npm:expand-tilde", - "data": { - "version": "2.0.2", - "packageName": "expand-tilde", - "hash": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=" - } - }, - "npm:slice-ansi@3.0.0": { - "type": "npm", - "name": "npm:slice-ansi@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "slice-ansi", - "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" - } - }, - "npm:@nrwl/jest": { - "type": "npm", - "name": "npm:@nrwl/jest", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/jest", - "hash": "sha512-hZuIK3xXh4HaE6/Ny8hGidjkJ4aLZjnQtPDxKD/423gznQe2FdHx3avoSlbOEOx5Oc6sJ9QGGZLcvckKQ5uWww==" - } - }, - "npm:babel-loader": { - "type": "npm", - "name": "npm:babel-loader", - "data": { - "version": "8.3.0", - "packageName": "babel-loader", - "hash": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==" - } - }, - "npm:is-typedarray": { - "type": "npm", - "name": "npm:is-typedarray", - "data": { - "version": "1.0.0", - "packageName": "is-typedarray", - "hash": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - } - }, - "npm:monosize-storage-azure": { - "type": "npm", - "name": "npm:monosize-storage-azure", - "data": { - "version": "0.0.3", - "packageName": "monosize-storage-azure", - "hash": "sha512-KmivlWDprIdSSa59Ot9osXB/+niB3hQsbgLFq/SxNh0fOv7UkxIqC6HnnlRPD5aWq07XO6mP0S0iJOSxKLLuWA==" - } - }, - "npm:ip": { - "type": "npm", - "name": "npm:ip", - "data": { - "version": "2.0.0", - "packageName": "ip", - "hash": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - } - }, - "npm:array-initial": { - "type": "npm", - "name": "npm:array-initial", - "data": { - "version": "1.1.0", - "packageName": "array-initial", - "hash": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=" - } - }, - "npm:npm-packlist": { - "type": "npm", - "name": "npm:npm-packlist", - "data": { - "version": "5.1.1", - "packageName": "npm-packlist", - "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" - } - }, - "npm:strip-ansi@4.0.0": { - "type": "npm", - "name": "npm:strip-ansi@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "strip-ansi", - "hash": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=" - } - }, - "npm:esbuild-netbsd-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-netbsd-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-netbsd-64", - "hash": "sha512-ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==" - } - }, - "npm:@babel/plugin-transform-flow-strip-types": { - "type": "npm", - "name": "npm:@babel/plugin-transform-flow-strip-types", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-transform-flow-strip-types", - "hash": "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==" - } - }, - "npm:codesandboxer": { - "type": "npm", - "name": "npm:codesandboxer", - "data": { - "version": "1.0.3", - "packageName": "codesandboxer", - "hash": "sha512-LRBGbQ707AsaC8cPEMEr5K5y2EGskg7T5K4RIC30wzgr1LKeLEtB2exy4P+QwUrQKwJOgxmiq1yKPLnKzXWJ+w==" - } - }, - "npm:@storybook/addon-measure": { - "type": "npm", - "name": "npm:@storybook/addon-measure", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-measure", - "hash": "sha512-j77WX/v6qpWK8ZuYscWLIc+Am4/WOJRsVgyXLIw1EZIviQsjoXPo7mmyoTneEIbbHfPtWlLRbtmkjh8DAVDrCA==" - } - }, - "npm:@types/eslint-scope": { - "type": "npm", - "name": "npm:@types/eslint-scope", - "data": { - "version": "3.7.3", - "packageName": "@types/eslint-scope", - "hash": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-class-static-block", - "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - } - }, - "npm:@storybook/addon-controls": { - "type": "npm", - "name": "npm:@storybook/addon-controls", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-controls", - "hash": "sha512-q5y0TvD0stvQoJZ2PnFmmKIRNSOI4/k2NKyZq//J2cBUBcP1reYlFxdsNwLZWmAFpSIkc2+nsliEzNxU1WByoA==" - } - }, - "npm:chai": { - "type": "npm", - "name": "npm:chai", - "data": { - "version": "4.3.6", - "packageName": "chai", - "hash": "sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==" - } - }, - "npm:@microsoft/loader-load-themed-styles": { - "type": "npm", - "name": "npm:@microsoft/loader-load-themed-styles", - "data": { - "version": "2.0.17", - "packageName": "@microsoft/loader-load-themed-styles", - "hash": "sha512-FyQdwbnkgta2pJU4PjyeLp/1/V5OBpZKrUJgrQAhjO7ApCj3X7/eYCxn0DZ+EMNjJKBKF9PUoM0BDPtSZAzJjg==" - } - }, - "npm:@octokit/plugin-paginate-rest@6.1.2": { - "type": "npm", - "name": "npm:@octokit/plugin-paginate-rest@6.1.2", - "data": { - "version": "6.1.2", - "packageName": "@octokit/plugin-paginate-rest", - "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" - } - }, - "npm:cors": { - "type": "npm", - "name": "npm:cors", - "data": { - "version": "2.8.5", - "packageName": "cors", - "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" - } - }, - "npm:is-plain-obj@2.1.0": { - "type": "npm", - "name": "npm:is-plain-obj@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" - } - }, - "npm:assert-plus": { - "type": "npm", - "name": "npm:assert-plus", - "data": { - "version": "1.0.0", - "packageName": "assert-plus", - "hash": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - }, - "npm:assertion-error": { - "type": "npm", - "name": "npm:assertion-error", - "data": { - "version": "1.1.0", - "packageName": "assertion-error", - "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" - } - }, - "npm:ansi-colors@3.2.3": { - "type": "npm", - "name": "npm:ansi-colors@3.2.3", - "data": { - "version": "3.2.3", - "packageName": "ansi-colors", - "hash": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==" - } - }, - "npm:@effect/data@0.12.5": { - "type": "npm", - "name": "npm:@effect/data@0.12.5", - "data": { - "version": "0.12.5", - "packageName": "@effect/data", - "hash": "sha512-gmHSsG4earpIWufwCNT1R1pZ5BIe7z0bMmexnAFOT9csc8bwTSzk1e5QAd/65/vyczf/cMMrXgjpasdxlJ5POA==" - } - }, - "npm:minipass-fetch@3.0.3": { - "type": "npm", - "name": "npm:minipass-fetch@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "minipass-fetch", - "hash": "sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "npm:lodash.templatesettings": { - "type": "npm", - "name": "npm:lodash.templatesettings", - "data": { - "version": "3.1.1", - "packageName": "lodash.templatesettings", - "hash": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=" - } - }, - "npm:proxy-from-env@1.0.0": { - "type": "npm", - "name": "npm:proxy-from-env@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "proxy-from-env", - "hash": "sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=" - } - }, - "npm:asn1.js": { - "type": "npm", - "name": "npm:asn1.js", - "data": { - "version": "4.10.1", - "packageName": "asn1.js", - "hash": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==" - } - }, - "npm:@npmcli/git": { - "type": "npm", - "name": "npm:@npmcli/git", - "data": { - "version": "4.1.0", - "packageName": "@npmcli/git", - "hash": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==" - } - }, - "npm:is-data-descriptor": { - "type": "npm", - "name": "npm:is-data-descriptor", - "data": { - "version": "1.0.0", - "packageName": "is-data-descriptor", - "hash": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:resolve-path": { - "type": "npm", - "name": "npm:resolve-path", - "data": { - "version": "1.4.0", - "packageName": "resolve-path", - "hash": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==" - } - }, - "npm:@esbuild/android-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/android-x64", - "hash": "sha512-qK/TpmHt2M/Hg82WXHRc/W/2SGo/l1thtDHZWqFq7oi24AjZ4O/CpPSu6ZuYKFkEgmZlFoa7CooAyYmuvnaG8w==" - } - }, - "npm:lower-case@2.0.2": { - "type": "npm", - "name": "npm:lower-case@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "lower-case", - "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" - } - }, - "npm:esbuild-windows-32@0.14.51": { - "type": "npm", - "name": "npm:esbuild-windows-32@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-windows-32", - "hash": "sha512-4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==" - } - }, - "npm:stealthy-require": { - "type": "npm", - "name": "npm:stealthy-require", - "data": { - "version": "1.1.1", - "packageName": "stealthy-require", - "hash": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" - } - }, - "npm:supports-color@6.1.0": { - "type": "npm", - "name": "npm:supports-color@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "supports-color", - "hash": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==" - } - }, - "npm:xml2js": { - "type": "npm", - "name": "npm:xml2js", - "data": { - "version": "0.4.23", - "packageName": "xml2js", - "hash": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" - } - }, - "npm:ramda@0.21.0": { - "type": "npm", - "name": "npm:ramda@0.21.0", - "data": { - "version": "0.21.0", - "packageName": "ramda", - "hash": "sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=" - } - }, - "npm:ignore-walk@3.0.3": { - "type": "npm", - "name": "npm:ignore-walk@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "ignore-walk", - "hash": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==" - } - }, - "npm:npm-registry-fetch@8.1.3": { - "type": "npm", - "name": "npm:npm-registry-fetch@8.1.3", - "data": { - "version": "8.1.3", - "packageName": "npm-registry-fetch", - "hash": "sha512-xpBFcg13wkFR0SsscvemmrIe1Sxe1SPgGUOAb7+5Uo6fR8SIRMenMHeDSjfyulv1px66/y0Ib40rtKO20PcgPg==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "7.3.1", - "packageName": "espree", - "hash": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" - } - }, - "npm:@emotion/cache@11.4.0": { - "type": "npm", - "name": "npm:@emotion/cache@11.4.0", - "data": { - "version": "11.4.0", - "packageName": "@emotion/cache", - "hash": "sha512-Zx70bjE7LErRO9OaZrhf22Qye1y4F7iDl+ITjet0J+i+B88PrAOBkKvaAWhxsZf72tDLajwCgfCjJ2dvH77C3g==" - } - }, - "npm:@jest/test-sequencer": { - "type": "npm", - "name": "npm:@jest/test-sequencer", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-sequencer", - "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" - } - }, - "npm:use-subscription": { - "type": "npm", - "name": "npm:use-subscription", - "data": { - "version": "1.4.1", - "packageName": "use-subscription", - "hash": "sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ==" - } - }, - "npm:date-utils": { - "type": "npm", - "name": "npm:date-utils", - "data": { - "version": "1.2.21", - "packageName": "date-utils", - "hash": "sha512-wJMBjqlwXR0Iv0wUo/lFbhSQ7MmG1hl36iuxuE91kW+5b5sWbase73manEqNH9sOLFAMG83B4ffNKq9/Iq0FVA==" - } - }, - "npm:html-to-react": { - "type": "npm", - "name": "npm:html-to-react", - "data": { - "version": "1.4.2", - "packageName": "html-to-react", - "hash": "sha512-TdTfxd95sRCo6QL8admCkE7mvNNrXtGoVr1dyS+7uvc8XCqAymnf/6ckclvnVbQNUo2Nh21VPwtfEHd0khiV7g==" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.2.5", - "packageName": "array.prototype.flat", - "hash": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==" - } - }, - "npm:invariant": { - "type": "npm", - "name": "npm:invariant", - "data": { - "version": "2.2.4", - "packageName": "invariant", - "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" - } - }, - "npm:lines-and-columns@2.0.3": { - "type": "npm", - "name": "npm:lines-and-columns@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "lines-and-columns", - "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - } - }, - "npm:kind-of@1.1.0": { - "type": "npm", - "name": "npm:kind-of@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "kind-of", - "hash": "sha1-FAo9LUGjbS78+pN3tiwk+ElaXEQ=" - } - }, - "npm:load-json-file@4.0.0": { - "type": "npm", - "name": "npm:load-json-file@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "load-json-file", - "hash": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=" - } - }, - "npm:lodash._reevaluate": { - "type": "npm", - "name": "npm:lodash._reevaluate", - "data": { - "version": "3.0.0", - "packageName": "lodash._reevaluate", - "hash": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=" - } - }, - "npm:postcss-flexbugs-fixes": { - "type": "npm", - "name": "npm:postcss-flexbugs-fixes", - "data": { - "version": "4.2.1", - "packageName": "postcss-flexbugs-fixes", - "hash": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==" - } - }, - "npm:character-entities": { - "type": "npm", - "name": "npm:character-entities", - "data": { - "version": "1.2.3", - "packageName": "character-entities", - "hash": "sha512-yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w==" - } - }, - "npm:@types/normalize-package-data": { - "type": "npm", - "name": "npm:@types/normalize-package-data", - "data": { - "version": "2.4.0", - "packageName": "@types/normalize-package-data", - "hash": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:flamegrill": { - "type": "npm", - "name": "npm:flamegrill", - "data": { - "version": "0.2.0", - "packageName": "flamegrill", - "hash": "sha512-p4TMMR47KjZCYy+rLucMfoVOXFPAwxvF+NmNKmDJV0bPzKM3Q19txSiHzIsOuCF9WDWrbTgyA97RT1HI+exQ1g==" - } - }, - "npm:postcss-modules-extract-imports@2.0.0": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==" - } - }, - "npm:regex-not": { - "type": "npm", - "name": "npm:regex-not", - "data": { - "version": "1.0.2", - "packageName": "regex-not", - "hash": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==" - } - }, - "npm:@types/aria-query": { - "type": "npm", - "name": "npm:@types/aria-query", - "data": { - "version": "4.2.1", - "packageName": "@types/aria-query", - "hash": "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:socket.io-adapter": { - "type": "npm", - "name": "npm:socket.io-adapter", - "data": { - "version": "2.4.0", - "packageName": "socket.io-adapter", - "hash": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" - } - }, - "npm:parse-asn1": { - "type": "npm", - "name": "npm:parse-asn1", - "data": { - "version": "5.1.4", - "packageName": "parse-asn1", - "hash": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.23.0", - "packageName": "@babel/types", - "hash": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==" - } - }, - "npm:@szmarczak/http-timer@5.0.1": { - "type": "npm", - "name": "npm:@szmarczak/http-timer@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==" - } - }, - "npm:@webpack-cli/info": { - "type": "npm", - "name": "npm:@webpack-cli/info", - "data": { - "version": "1.5.0", - "packageName": "@webpack-cli/info", - "hash": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==" - } - }, - "npm:git-semver-tags": { - "type": "npm", - "name": "npm:git-semver-tags", - "data": { - "version": "5.0.1", - "packageName": "git-semver-tags", - "hash": "sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==" - } - }, - "npm:http2-wrapper": { - "type": "npm", - "name": "npm:http2-wrapper", - "data": { - "version": "1.0.0-beta.5.2", - "packageName": "http2-wrapper", - "hash": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:ssri@9.0.1": { - "type": "npm", - "name": "npm:ssri@9.0.1", - "data": { - "version": "9.0.1", - "packageName": "ssri", - "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" - } - }, - "npm:is-extendable": { - "type": "npm", - "name": "npm:is-extendable", - "data": { - "version": "0.1.1", - "packageName": "is-extendable", - "hash": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" - } - }, - "npm:mute-stream@1.0.0": { - "type": "npm", - "name": "npm:mute-stream@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "mute-stream", - "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" - } - }, - "npm:@ctrl/tinycolor": { - "type": "npm", - "name": "npm:@ctrl/tinycolor", - "data": { - "version": "3.3.4", - "packageName": "@ctrl/tinycolor", - "hash": "sha512-8vmPV/nIULFDWsnJalQJDqFLC2uTPx6A/ASA2t27QGp+7oXnbWWXCe0uV8xasIH2rGbI/XoB2vmkdP/94WvMrw==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:pify@5.0.0": { - "type": "npm", - "name": "npm:pify@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "pify", - "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" - } - }, - "npm:@types/react-virtualized": { - "type": "npm", - "name": "npm:@types/react-virtualized", - "data": { - "version": "9.21.8", - "packageName": "@types/react-virtualized", - "hash": "sha512-7fZoA0Azd2jLIE9XC37fMZgMqaJe3o3pfzGjvrzphoKjBCdT4oNl6wikvo4dDMESDnpkZ8DvVTc7aSe4DW86Ew==" - } - }, - "npm:domhandler@3.0.0": { - "type": "npm", - "name": "npm:domhandler@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "domhandler", - "hash": "sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==" - } - }, - "npm:source-map@0.7.3": { - "type": "npm", - "name": "npm:source-map@0.7.3", - "data": { - "version": "0.7.3", - "packageName": "source-map", - "hash": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" - } - }, - "npm:@types/sizzle": { - "type": "npm", - "name": "npm:@types/sizzle", - "data": { - "version": "2.3.2", - "packageName": "@types/sizzle", - "hash": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==" - } - }, - "npm:progress": { - "type": "npm", - "name": "npm:progress", - "data": { - "version": "2.0.3", - "packageName": "progress", - "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - } - }, - "npm:randexp": { - "type": "npm", - "name": "npm:randexp", - "data": { - "version": "0.4.6", - "packageName": "randexp", - "hash": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==" - } - }, - "npm:unherit": { - "type": "npm", - "name": "npm:unherit", - "data": { - "version": "1.1.3", - "packageName": "unherit", - "hash": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==" - } - }, - "npm:@storybook/addon-actions": { - "type": "npm", - "name": "npm:@storybook/addon-actions", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-actions", - "hash": "sha512-cnLzVK1S+EydFDSuvxMmMAxVqNXijBGdV9QTgsu6ys5sOkoiXRETKZmxuN8/ZRbkfc4N+1KAylSCZOOHzBQTBQ==" - } - }, - "npm:loose-envify": { - "type": "npm", - "name": "npm:loose-envify", - "data": { - "version": "1.4.0", - "packageName": "loose-envify", - "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" - } - }, - "npm:swc-plugin-de-indent-template-literal": { - "type": "npm", - "name": "npm:swc-plugin-de-indent-template-literal", - "data": { - "version": "1.0.0", - "packageName": "swc-plugin-de-indent-template-literal", - "hash": "sha512-Qb4G8h8hKlwWYFCJUVbmiELRmjzBM1hPmJh5+p0GiY/b6imGSIuEWV2zBAYcQyNvR2DI2MJ3OxJC2SCT9Ld7lA==" - } - }, - "npm:eslint-plugin-es@3.0.1": { - "type": "npm", - "name": "npm:eslint-plugin-es@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "eslint-plugin-es", - "hash": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" - } - }, - "npm:glob-to-regexp@0.3.0": { - "type": "npm", - "name": "npm:glob-to-regexp@0.3.0", - "data": { - "version": "0.3.0", - "packageName": "glob-to-regexp", - "hash": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=" - } - }, - "npm:@scarf/scarf": { - "type": "npm", - "name": "npm:@scarf/scarf", - "data": { - "version": "1.0.5", - "packageName": "@scarf/scarf", - "hash": "sha512-9WKaGVpQH905Aqkk+BczFEeLQxS07rl04afFRPUG9IcSlOwmo5EVVuuNu0d4M9LMYucObvK0LoAe+5HfMW2QhQ==" - } - }, - "npm:mixin-deep": { - "type": "npm", - "name": "npm:mixin-deep", - "data": { - "version": "1.3.2", - "packageName": "mixin-deep", - "hash": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:esbuild-linux-s390x@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-s390x@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-s390x", - "hash": "sha512-kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==" - } - }, - "npm:@types/d3-axis": { - "type": "npm", - "name": "npm:@types/d3-axis", - "data": { - "version": "1.0.10", - "packageName": "@types/d3-axis", - "hash": "sha512-5YF0wfdQMPKw01VAAupLIlg/T4pn5M3/vL9u0KZjiemnVnnKBEWE24na4X1iW+TfZiYJ8j+BgK2KFYnAAT54Ug==" - } - }, - "npm:strip-comments": { - "type": "npm", - "name": "npm:strip-comments", - "data": { - "version": "2.0.1", - "packageName": "strip-comments", - "hash": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.0-rc.46", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" - } - }, - "npm:caseless": { - "type": "npm", - "name": "npm:caseless", - "data": { - "version": "0.12.0", - "packageName": "caseless", - "hash": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - } - }, - "npm:unist-builder": { - "type": "npm", - "name": "npm:unist-builder", - "data": { - "version": "2.0.3", - "packageName": "unist-builder", - "hash": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.6.7", - "packageName": "node-fetch", - "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" - } - }, - "npm:ts-invariant": { - "type": "npm", - "name": "npm:ts-invariant", - "data": { - "version": "0.10.3", - "packageName": "ts-invariant", - "hash": "sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==" - } - }, - "npm:@types/circular-dependency-plugin": { - "type": "npm", - "name": "npm:@types/circular-dependency-plugin", - "data": { - "version": "5.0.5", - "packageName": "@types/circular-dependency-plugin", - "hash": "sha512-JU1sYQWNbUluWHseLUfokakx18+BXRA9Bxji56hdY5NW0nvrJSJd4SNAl0Btpm5ima9BnUkoGEcW/2PH1QuWQA==" - } - }, - "npm:is-text-path": { - "type": "npm", - "name": "npm:is-text-path", - "data": { - "version": "1.0.1", - "packageName": "is-text-path", - "hash": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@^7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:pascal-case@3.1.2": { - "type": "npm", - "name": "npm:pascal-case@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "pascal-case", - "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" - } - }, - "npm:ansi-gray": { - "type": "npm", - "name": "npm:ansi-gray", - "data": { - "version": "0.1.1", - "packageName": "ansi-gray", - "hash": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "npm:resolve-cwd": { - "type": "npm", - "name": "npm:resolve-cwd", - "data": { - "version": "3.0.0", - "packageName": "resolve-cwd", - "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" - } - }, - "npm:schema-utils@2.7.0": { - "type": "npm", - "name": "npm:schema-utils@2.7.0", - "data": { - "version": "2.7.0", - "packageName": "schema-utils", - "hash": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==" - } - }, - "npm:deflate-js": { - "type": "npm", - "name": "npm:deflate-js", - "data": { - "version": "0.2.3", - "packageName": "deflate-js", - "hash": "sha1-+Fq7WOvFFRowYUdHPVfD5PfkQms=" - } - }, - "npm:cacache@17.1.3": { - "type": "npm", - "name": "npm:cacache@17.1.3", - "data": { - "version": "17.1.3", - "packageName": "cacache", - "hash": "sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - } - }, - "npm:enzyme-shallow-equal": { - "type": "npm", - "name": "npm:enzyme-shallow-equal", - "data": { - "version": "1.0.4", - "packageName": "enzyme-shallow-equal", - "hash": "sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==" - } - }, - "npm:@phenomnomnominal/tsquery@5.0.1": { - "type": "npm", - "name": "npm:@phenomnomnominal/tsquery@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "@phenomnomnominal/tsquery", - "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" - } - }, - "npm:big-integer": { - "type": "npm", - "name": "npm:big-integer", - "data": { - "version": "1.6.51", - "packageName": "big-integer", - "hash": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" - } - }, - "npm:extend-shallow": { - "type": "npm", - "name": "npm:extend-shallow", - "data": { - "version": "2.0.1", - "packageName": "extend-shallow", - "hash": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" - } - }, - "npm:buffer-indexof": { - "type": "npm", - "name": "npm:buffer-indexof", - "data": { - "version": "1.1.1", - "packageName": "buffer-indexof", - "hash": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" - } - }, - "npm:hasurl": { - "type": "npm", - "name": "npm:hasurl", - "data": { - "version": "1.0.0", - "packageName": "hasurl", - "hash": "sha512-43ypUd3DbwyCT01UYpA99AEZxZ4aKtRxWGBHEIbjcOsUghd9YUON0C+JF6isNjaiwC/UF5neaUudy6JS9jZPZQ==" - } - }, - "npm:is-data-descriptor@0.1.4": { - "type": "npm", - "name": "npm:is-data-descriptor@0.1.4", - "data": { - "version": "0.1.4", - "packageName": "is-data-descriptor", - "hash": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=" - } - }, - "npm:just-task-logger": { - "type": "npm", - "name": "npm:just-task-logger", - "data": { - "version": "1.2.0", - "packageName": "just-task-logger", - "hash": "sha512-pa5FfJMiJ11KgCXDSfnbu/Enoiwm3ReOrSO9tP0CK69/yYtfsDhE8g6S0v6cCdDYGa4zpVkX7E4G1u3L7lAPTw==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "1.3.0", - "packageName": "minipass-fetch", - "hash": "sha512-Yb23ESZZ/8QxiBvSpJ4atbVMVDx2CXrerzrtQzQ67eLqKg+zFIkYFTagk3xh6fdo+e/FvDtVuCD4QcuYDRR3hw==" - } - }, - "npm:@types/events": { - "type": "npm", - "name": "npm:@types/events", - "data": { - "version": "3.0.0", - "packageName": "@types/events", - "hash": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" - } - }, - "npm:lodash._isiterateecall": { - "type": "npm", - "name": "npm:lodash._isiterateecall", - "data": { - "version": "3.0.9", - "packageName": "lodash._isiterateecall", - "hash": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" - } - }, - "npm:objectorarray": { - "type": "npm", - "name": "npm:objectorarray", - "data": { - "version": "1.0.4", - "packageName": "objectorarray", - "hash": "sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "3.2.2", - "packageName": "split2", - "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" - } - }, - "npm:@types/d3-selection": { - "type": "npm", - "name": "npm:@types/d3-selection", - "data": { - "version": "1.4.1", - "packageName": "@types/d3-selection", - "hash": "sha512-bv8IfFYo/xG6dxri9OwDnK3yCagYPeRIjTlrcdYJSx+FDWlCeBDepIHUpqROmhPtZ53jyna0aUajZRk0I3rXNA==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.3.2", - "packageName": "type-check", - "hash": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=" - } - }, - "npm:write-json-file": { - "type": "npm", - "name": "npm:write-json-file", - "data": { - "version": "3.2.0", - "packageName": "write-json-file", - "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" - } - }, - "npm:configstore": { - "type": "npm", - "name": "npm:configstore", - "data": { - "version": "3.1.2", - "packageName": "configstore", - "hash": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==" - } - }, - "npm:react-error-boundary": { - "type": "npm", - "name": "npm:react-error-boundary", - "data": { - "version": "3.1.0", - "packageName": "react-error-boundary", - "hash": "sha512-lmPrdi5SLRJR+AeJkqdkGlW/CRkAUvZnETahK58J4xb5wpbfDngasEGu+w0T1iXEhVrYBJZeW+c4V1hILCnMWQ==" - } - }, - "npm:@types/through2": { - "type": "npm", - "name": "npm:@types/through2", - "data": { - "version": "2.0.34", - "packageName": "@types/through2", - "hash": "sha512-nhRG8+RuG/L+0fAZBQYaRflXKjTrHOKH8MFTChnf+dNVMxA3wHYYrfj0tztK0W51ABXjGfRCDc0vRkecCOrsow==" - } - }, - "npm:@linaria/logger": { - "type": "npm", - "name": "npm:@linaria/logger", - "data": { - "version": "3.0.0-beta.20", - "packageName": "@linaria/logger", - "hash": "sha512-wCxWnldCHf7HXdLG3QtbKyBur+z5V1qZTouSEvcVYDfd4aSRPOi/jLdwsZlsUq2PFGpA3jW6JnreZJ/vxuEl7g==" - } - }, - "npm:ansi-to-html": { - "type": "npm", - "name": "npm:ansi-to-html", - "data": { - "version": "0.6.13", - "packageName": "ansi-to-html", - "hash": "sha512-Ys2/umuaTlQvP9DLkaa7UzRKF2FLrfod/hNHXS9QhXCrw7seObG6ksOGmNz3UoK+adwM8L9vQfG7mvaxfJ3Jvw==" - } - }, - "npm:@esbuild/linux-s390x@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-U+RinR6aXXABFCcAY4gSlv4CL1oOVvSSCdseQmGO66H+XyuQGZIUdhG56SZaDJQcLmrSfRmx5XZOWyCJPRqS7g==" - } - }, - "npm:@azure/core-rest-pipeline": { - "type": "npm", - "name": "npm:@azure/core-rest-pipeline", - "data": { - "version": "1.3.2", - "packageName": "@azure/core-rest-pipeline", - "hash": "sha512-kymICKESeHBpVLgQiAxllgWdSTopkqtmfPac8ITwMCxNEC6hzbSpqApYbjzxbBNkBMgoD4GESo6LLhR/sPh6kA==" - } - }, - "npm:enhanced-resolve@4.5.0": { - "type": "npm", - "name": "npm:enhanced-resolve@4.5.0", - "data": { - "version": "4.5.0", - "packageName": "enhanced-resolve", - "hash": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==" - } - }, - "npm:extend-shallow@1.1.4": { - "type": "npm", - "name": "npm:extend-shallow@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "extend-shallow", - "hash": "sha1-Gda/lN/AnXa6cR85uHLSH/TdkHE=" - } - }, - "npm:default-browser-id": { - "type": "npm", - "name": "npm:default-browser-id", - "data": { - "version": "1.0.4", - "packageName": "default-browser-id", - "hash": "sha1-5Z0JpdFXuCi4dsJoFuYcPSosIDo=" - } - }, - "npm:npm-package-arg@8.1.1": { - "type": "npm", - "name": "npm:npm-package-arg@8.1.1", - "data": { - "version": "8.1.1", - "packageName": "npm-package-arg", - "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" - } - }, - "npm:react-textarea-autosize": { - "type": "npm", - "name": "npm:react-textarea-autosize", - "data": { - "version": "7.0.4", - "packageName": "react-textarea-autosize", - "hash": "sha512-1cC8pFSrIVH92aE+UKxGQ2Gqq43qdIcMscJKScEFeBNemn6gHa+NwKqdXkHxxg5H6uuvW+cPpJPTes6zh90M+A==" - } - }, - "npm:whatwg-mimetype": { - "type": "npm", - "name": "npm:whatwg-mimetype", - "data": { - "version": "3.0.0", - "packageName": "whatwg-mimetype", - "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - } - }, - "npm:ws@8.2.3": { - "type": "npm", - "name": "npm:ws@8.2.3", - "data": { - "version": "8.2.3", - "packageName": "ws", - "hash": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==" - } - }, - "npm:@griffel/core": { - "type": "npm", - "name": "npm:@griffel/core", - "data": { - "version": "1.14.1", - "packageName": "@griffel/core", - "hash": "sha512-KQ6yueap1zff9TJrn7MdfSAHDMDVP6Ec97gnpCi4NOeKiyCyT13MwPCmkkK0o/poaV1f9MdHhUTQZCpK0QtxzQ==" - } - }, - "npm:d3-geo": { - "type": "npm", - "name": "npm:d3-geo", - "data": { - "version": "1.11.9", - "packageName": "d3-geo", - "hash": "sha512-9edcH6J3s/Aa3KJITWqFJbyB/8q3mMlA9Fi7z6yy+FAYMnRaxmC7jBhUnsINxVWD14GmqX3DK8uk7nV6/Ekt4A==" - } - }, - "npm:d3-sankey@0.7.1": { - "type": "npm", - "name": "npm:d3-sankey@0.7.1", - "data": { - "version": "0.7.1", - "packageName": "d3-sankey", - "hash": "sha1-0imDImj8aaf+yEgD6WwiVqYUxSE=" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.25.7", - "packageName": "magic-string", - "hash": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:x-is-string": { - "type": "npm", - "name": "npm:x-is-string", - "data": { - "version": "0.1.0", - "packageName": "x-is-string", - "hash": "sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI=" - } - }, - "npm:number-is-nan": { - "type": "npm", - "name": "npm:number-is-nan", - "data": { - "version": "1.0.1", - "packageName": "number-is-nan", - "hash": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - } - }, - "npm:espree@9.6.1": { - "type": "npm", - "name": "npm:espree@9.6.1", - "data": { - "version": "9.6.1", - "packageName": "espree", - "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" - } - }, - "npm:matchdep": { - "type": "npm", - "name": "npm:matchdep", - "data": { - "version": "2.0.0", - "packageName": "matchdep", - "hash": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=" - } - }, - "npm:camelcase@2.1.1": { - "type": "npm", - "name": "npm:camelcase@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "camelcase", - "hash": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" - } - }, - "npm:generic-names": { - "type": "npm", - "name": "npm:generic-names", - "data": { - "version": "2.0.1", - "packageName": "generic-names", - "hash": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==" - } - }, - "npm:@babel/helper-optimise-call-expression": { - "type": "npm", - "name": "npm:@babel/helper-optimise-call-expression", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-optimise-call-expression", - "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" - } - }, - "npm:ansi-escape-sequences": { - "type": "npm", - "name": "npm:ansi-escape-sequences", - "data": { - "version": "6.2.1", - "packageName": "ansi-escape-sequences", - "hash": "sha512-0gK95MrLXv+Vy5h4eKGvSX1yXopBqSYBi3/w4hekUxs/hHakF6asH9Gg7UXbb7IH9weAlVIrUzVOITNBr8Imag==" - } - }, - "npm:ripemd160": { - "type": "npm", - "name": "npm:ripemd160", - "data": { - "version": "2.0.2", - "packageName": "ripemd160", - "hash": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==" - } - }, - "npm:asap": { - "type": "npm", - "name": "npm:asap", - "data": { - "version": "2.0.6", - "packageName": "asap", - "hash": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:parse-entities@2.0.0": { - "type": "npm", - "name": "npm:parse-entities@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "parse-entities", - "hash": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==" - } - }, - "npm:@types/undertaker-registry": { - "type": "npm", - "name": "npm:@types/undertaker-registry", - "data": { - "version": "1.0.1", - "packageName": "@types/undertaker-registry", - "hash": "sha512-Z4TYuEKn9+RbNVk1Ll2SS4x1JeLHecolIbM/a8gveaHsW0Hr+RQMraZACwTO2VD7JvepgA6UO1A1VrbktQrIbQ==" - } - }, - "npm:babylon": { - "type": "npm", - "name": "npm:babylon", - "data": { - "version": "6.18.0", - "packageName": "babylon", - "hash": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" - } - }, - "npm:repeat-element": { - "type": "npm", - "name": "npm:repeat-element", - "data": { - "version": "1.1.3", - "packageName": "repeat-element", - "hash": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" - } - }, - "npm:os-homedir": { - "type": "npm", - "name": "npm:os-homedir", - "data": { - "version": "1.0.2", - "packageName": "os-homedir", - "hash": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" - } - }, - "npm:stream-browserify@2.0.2": { - "type": "npm", - "name": "npm:stream-browserify@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "stream-browserify", - "hash": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==" - } - }, - "npm:ora@5.4.1": { - "type": "npm", - "name": "npm:ora@5.4.1", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:path-exists@5.0.0": { - "type": "npm", - "name": "npm:path-exists@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-exists", - "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" - } - }, - "npm:default-compare": { - "type": "npm", - "name": "npm:default-compare", - "data": { - "version": "1.0.0", - "packageName": "default-compare", - "hash": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==" - } - }, - "npm:semver-greatest-satisfied-range": { - "type": "npm", - "name": "npm:semver-greatest-satisfied-range", - "data": { - "version": "1.1.0", - "packageName": "semver-greatest-satisfied-range", - "hash": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=" - } - }, - "npm:@rollup/pluginutils": { - "type": "npm", - "name": "npm:@rollup/pluginutils", - "data": { - "version": "3.1.0", - "packageName": "@rollup/pluginutils", - "hash": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" - } - }, - "npm:npm-bundled": { - "type": "npm", - "name": "npm:npm-bundled", - "data": { - "version": "1.1.2", - "packageName": "npm-bundled", - "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" - } - }, - "npm:traverse@0.3.9": { - "type": "npm", - "name": "npm:traverse@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "traverse", - "hash": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=" - } - }, - "npm:diff-sequences@27.5.1": { - "type": "npm", - "name": "npm:diff-sequences@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "diff-sequences", - "hash": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" - } - }, - "npm:find-webpack": { - "type": "npm", - "name": "npm:find-webpack", - "data": { - "version": "2.2.1", - "packageName": "find-webpack", - "hash": "sha512-OdDtn2AzQvu3l9U1TS5ALc7uTVcLK/yv3fhjo+Pz7yuv4hG3ANKnbkKnPIPZ5ofd9mpYe6wRf5g5H4X9Lx48vQ==" - } - }, - "npm:@types/react-frame-component": { - "type": "npm", - "name": "npm:@types/react-frame-component", - "data": { - "version": "4.1.1", - "packageName": "@types/react-frame-component", - "hash": "sha512-7soxaTJ030rtC2lFlaFzzJyCY4rsPwOLxfw/eGnbEq/wq80e71outSL6dUXM9bOh2qMhM1xnp+EMEhjdVvIlkA==" - } - }, - "npm:find-yarn-workspace-root": { - "type": "npm", - "name": "npm:find-yarn-workspace-root", - "data": { - "version": "2.0.0", - "packageName": "find-yarn-workspace-root", - "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" - } - }, - "npm:read-package-json-fast": { - "type": "npm", - "name": "npm:read-package-json-fast", - "data": { - "version": "1.1.3", - "packageName": "read-package-json-fast", - "hash": "sha512-MmFqiyfCXV2Dmm4jH24DEGhxdkUDFivJQj4oPZQPOKywxR7HWBE6WnMWDAapfFHi3wm1b+mhR+XHlUH0CL8axg==" - } - }, - "npm:constant-case": { - "type": "npm", - "name": "npm:constant-case", - "data": { - "version": "2.0.0", - "packageName": "constant-case", - "hash": "sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.4", - "packageName": "string.prototype.trimstart", - "hash": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==" - } - }, - "npm:azure-storage": { - "type": "npm", - "name": "npm:azure-storage", - "data": { - "version": "2.10.7", - "packageName": "azure-storage", - "hash": "sha512-4oeFGtn3Ziw/fGs/zkoIpKKtygnCVIcZwzJ7UQzKTxhkGQqVCByOFbYqMGYR3L+wOsunX9lNfD0jc51SQuKSSA==" - } - }, - "npm:@babel/helper-builder-binary-assignment-operator-visitor": { - "type": "npm", - "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" - } - }, - "npm:@tsconfig/node10": { - "type": "npm", - "name": "npm:@tsconfig/node10", - "data": { - "version": "1.0.9", - "packageName": "@tsconfig/node10", - "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" - } - }, - "npm:@dnd-kit/core": { - "type": "npm", - "name": "npm:@dnd-kit/core", - "data": { - "version": "6.0.8", - "packageName": "@dnd-kit/core", - "hash": "sha512-lYaoP8yHTQSLlZe6Rr9qogouGUz9oRUj4AHhDQGQzq/hqaJRpFo65X+JKsdHf8oUFBzx5A+SJPUvxAwTF2OabA==" - } - }, - "npm:ast-types-flow": { - "type": "npm", - "name": "npm:ast-types-flow", - "data": { - "version": "0.0.7", - "packageName": "ast-types-flow", - "hash": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" - } - }, - "npm:es5-shim": { - "type": "npm", - "name": "npm:es5-shim", - "data": { - "version": "4.5.13", - "packageName": "es5-shim", - "hash": "sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw==" - } - }, - "npm:execa@4.1.0": { - "type": "npm", - "name": "npm:execa@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "execa", - "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" - } - }, - "npm:fs-minipass@1.2.7": { - "type": "npm", - "name": "npm:fs-minipass@1.2.7", - "data": { - "version": "1.2.7", - "packageName": "fs-minipass", - "hash": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==" - } - }, - "npm:defer-to-connect": { - "type": "npm", - "name": "npm:defer-to-connect", - "data": { - "version": "2.0.1", - "packageName": "defer-to-connect", - "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - } - }, - "npm:global-prefix": { - "type": "npm", - "name": "npm:global-prefix", - "data": { - "version": "1.0.2", - "packageName": "global-prefix", - "hash": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=" - } - }, - "npm:icss-utils": { - "type": "npm", - "name": "npm:icss-utils", - "data": { - "version": "4.1.1", - "packageName": "icss-utils", - "hash": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==" - } - }, - "npm:react": { - "type": "npm", - "name": "npm:react", - "data": { - "version": "17.0.2", - "packageName": "react", - "hash": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==" - } - }, - "npm:@sinonjs/fake-timers": { - "type": "npm", - "name": "npm:@sinonjs/fake-timers", - "data": { - "version": "10.2.0", - "packageName": "@sinonjs/fake-timers", - "hash": "sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg==" - } - }, - "npm:conventional-commits-parser": { - "type": "npm", - "name": "npm:conventional-commits-parser", - "data": { - "version": "4.0.0", - "packageName": "conventional-commits-parser", - "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" - } - }, - "npm:split-on-first": { - "type": "npm", - "name": "npm:split-on-first", - "data": { - "version": "1.1.0", - "packageName": "split-on-first", - "hash": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" - } - }, - "npm:acorn-import-assertions": { - "type": "npm", - "name": "npm:acorn-import-assertions", - "data": { - "version": "1.8.0", - "packageName": "acorn-import-assertions", - "hash": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==" - } - }, - "npm:typical@4.0.0": { - "type": "npm", - "name": "npm:typical@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "typical", - "hash": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==" - } - }, - "npm:ajv@5.5.2": { - "type": "npm", - "name": "npm:ajv@5.5.2", - "data": { - "version": "5.5.2", - "packageName": "ajv", - "hash": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=" - } - }, - "npm:p-cancelable@3.0.0": { - "type": "npm", - "name": "npm:p-cancelable@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-cancelable", - "hash": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==" - } - }, - "npm:inquirer": { - "type": "npm", - "name": "npm:inquirer", - "data": { - "version": "7.3.3", - "packageName": "inquirer", - "hash": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.5", - "packageName": "stack-utils", - "hash": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==" - } - }, - "npm:@charlietango/use-script": { - "type": "npm", - "name": "npm:@charlietango/use-script", - "data": { - "version": "2.1.1", - "packageName": "@charlietango/use-script", - "hash": "sha512-g6sbWV4Vg0eqbhL1z90dO3ZsMrF0EHWCw0//M4iE9OwJf9r7x0y7a+KcPb2+Myu96tT35NsmNnIeww4rSG95jQ==" - } - }, - "npm:stream-each": { - "type": "npm", - "name": "npm:stream-each", - "data": { - "version": "1.2.3", - "packageName": "stream-each", - "hash": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==" - } - }, - "npm:stackframe": { - "type": "npm", - "name": "npm:stackframe", - "data": { - "version": "1.2.0", - "packageName": "stackframe", - "hash": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" - } - }, - "npm:@swc/types": { - "type": "npm", - "name": "npm:@swc/types", - "data": { - "version": "0.1.5", - "packageName": "@swc/types", - "hash": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==" - } - }, - "npm:@types/connect-history-api-fallback": { - "type": "npm", - "name": "npm:@types/connect-history-api-fallback", - "data": { - "version": "1.3.5", - "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==" - } - }, - "npm:glob-parent@3.1.0": { - "type": "npm", - "name": "npm:glob-parent@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "glob-parent", - "hash": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=" - } - }, - "npm:qs@6.5.3": { - "type": "npm", - "name": "npm:qs@6.5.3", - "data": { - "version": "6.5.3", - "packageName": "qs", - "hash": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - } - }, - "npm:@cnakazawa/watch": { - "type": "npm", - "name": "npm:@cnakazawa/watch", - "data": { - "version": "1.0.3", - "packageName": "@cnakazawa/watch", - "hash": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==" - } - }, - "npm:param-case": { - "type": "npm", - "name": "npm:param-case", - "data": { - "version": "2.1.1", - "packageName": "param-case", - "hash": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=" - } - }, - "npm:pixel-buffer-diff-folders": { - "type": "npm", - "name": "npm:pixel-buffer-diff-folders", - "data": { - "version": "1.3.0", - "packageName": "pixel-buffer-diff-folders", - "hash": "sha512-EYARjQXOAN/XKdnUiJC2JX6GdyJ1hv1MXZlGbPdB6sAKxFJJN4Cl1zZcHCVKh2eOAaWEvegTctx0VNRRrcqeog==" - } - }, - "npm:has-values": { - "type": "npm", - "name": "npm:has-values", - "data": { - "version": "1.0.0", - "packageName": "has-values", - "hash": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=" - } - }, - "npm:locate-path@7.1.1": { - "type": "npm", - "name": "npm:locate-path@7.1.1", - "data": { - "version": "7.1.1", - "packageName": "locate-path", - "hash": "sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==" - } - }, - "npm:w3c-xmlserializer": { - "type": "npm", - "name": "npm:w3c-xmlserializer", - "data": { - "version": "4.0.0", - "packageName": "w3c-xmlserializer", - "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" - } - }, - "npm:json-edm-parser": { - "type": "npm", - "name": "npm:json-edm-parser", - "data": { - "version": "0.1.2", - "packageName": "json-edm-parser", - "hash": "sha512-J1U9mk6lf8dPULcaMwALXB6yel3cJyyhk9Z8FQ4sMwiazNwjaUhegIcpZyZFNMvLRtnXwh+TkCjX9uYUObBBYA==" - } - }, - "npm:inflight": { - "type": "npm", - "name": "npm:inflight", - "data": { - "version": "1.0.6", - "packageName": "inflight", - "hash": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" - } - }, - "npm:@storybook/store": { - "type": "npm", - "name": "npm:@storybook/store", - "data": { - "version": "6.5.15", - "packageName": "@storybook/store", - "hash": "sha512-r6cYTf6GtbqgdI4ZG3xuWdJAAu5fJ3xAWMiDkHyoK2u+R2TeYXIsJvgn0BPrW87sZhELIkg4ckdFECmATs3kpQ==" - } - }, - "npm:event-pubsub": { - "type": "npm", - "name": "npm:event-pubsub", - "data": { - "version": "4.3.0", - "packageName": "event-pubsub", - "hash": "sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==" - } - }, - "npm:@azure/logger": { - "type": "npm", - "name": "npm:@azure/logger", - "data": { - "version": "1.0.0", - "packageName": "@azure/logger", - "hash": "sha512-g2qLDgvmhyIxR3JVS8N67CyIOeFRKQlX/llxYJQr1OSGQqM3HTpVP8MjmjcEKbL/OIt2N9C9UFaNQuKOw1laOA==" - } - }, - "npm:@webassemblyjs/wasm-edit": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "1.15.1", - "packageName": "@types/serve-static", - "hash": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==" - } - }, - "npm:jsx-ast-utils": { - "type": "npm", - "name": "npm:jsx-ast-utils", - "data": { - "version": "3.2.0", - "packageName": "jsx-ast-utils", - "hash": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.6", - "packageName": "nanoid", - "hash": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" - } - }, - "npm:supports-color@3.2.3": { - "type": "npm", - "name": "npm:supports-color@3.2.3", - "data": { - "version": "3.2.3", - "packageName": "supports-color", - "hash": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=" - } - }, - "npm:unist-util-remove-position": { - "type": "npm", - "name": "npm:unist-util-remove-position", - "data": { - "version": "1.1.4", - "packageName": "unist-util-remove-position", - "hash": "sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.0.2", - "packageName": "has-symbols", - "hash": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - } - }, - "npm:@webassemblyjs/utf8": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" - } - }, - "npm:confusing-browser-globals": { - "type": "npm", - "name": "npm:confusing-browser-globals", - "data": { - "version": "1.0.10", - "packageName": "confusing-browser-globals", - "hash": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" - } - }, - "npm:minimalistic-assert": { - "type": "npm", - "name": "npm:minimalistic-assert", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-assert", - "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.1.0", - "packageName": "tsconfig-paths", - "hash": "sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==" - } - }, - "npm:unified": { - "type": "npm", - "name": "npm:unified", - "data": { - "version": "6.2.0", - "packageName": "unified", - "hash": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==" - } - }, - "npm:@types/node@11.15.54": { - "type": "npm", - "name": "npm:@types/node@11.15.54", - "data": { - "version": "11.15.54", - "packageName": "@types/node", - "hash": "sha512-1RWYiq+5UfozGsU6MwJyFX6BtktcT10XRjvcAQmskCtMcW3tPske88lM/nHv7BQG1w9KBXI1zPGuu5PnNCX14g==" - } - }, - "npm:jsprim": { - "type": "npm", - "name": "npm:jsprim", - "data": { - "version": "2.0.2", - "packageName": "jsprim", - "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" - } - }, - "npm:bytes@3.0.0": { - "type": "npm", - "name": "npm:bytes@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "bytes", - "hash": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - } - }, - "npm:renderkid": { - "type": "npm", - "name": "npm:renderkid", - "data": { - "version": "2.0.7", - "packageName": "renderkid", - "hash": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.0", - "packageName": "strip-ansi", - "hash": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" - } - }, - "npm:webpack-virtual-modules": { - "type": "npm", - "name": "npm:webpack-virtual-modules", - "data": { - "version": "0.2.2", - "packageName": "webpack-virtual-modules", - "hash": "sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==" - } - }, - "npm:clone-stats@0.0.1": { - "type": "npm", - "name": "npm:clone-stats@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "clone-stats", - "hash": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.8.2", - "packageName": "optionator", - "hash": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=" - } - }, - "npm:@dnd-kit/accessibility": { - "type": "npm", - "name": "npm:@dnd-kit/accessibility", - "data": { - "version": "3.0.1", - "packageName": "@dnd-kit/accessibility", - "hash": "sha512-HXRrwS9YUYQO9lFRc/49uO/VICbM+O+ZRpFDe9Pd1rwVv2PCNkRiTZRdxrDgng/UkvdC3Re9r2vwPpXXrWeFzg==" - } - }, - "npm:@emotion/sheet@1.0.1": { - "type": "npm", - "name": "npm:@emotion/sheet@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "@emotion/sheet", - "hash": "sha512-GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g==" - } - }, - "npm:@webassemblyjs/helper-code-frame": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-code-frame", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-code-frame", - "hash": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==" - } - }, - "npm:core-js@2.6.11": { - "type": "npm", - "name": "npm:core-js@2.6.11", - "data": { - "version": "2.6.11", - "packageName": "core-js", - "hash": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==" - } - }, - "npm:license-webpack-plugin": { - "type": "npm", - "name": "npm:license-webpack-plugin", - "data": { - "version": "2.3.10", - "packageName": "license-webpack-plugin", - "hash": "sha512-WU+tVS0465NwdaV/DLb0t7GmQUwdaGI7QVWVKvvwLSlpYERKUD7DwcWIqSaXO+uoXM+6T3IAw3fCaGyVnI3DIQ==" - } - }, - "npm:path-exists@4.0.0": { - "type": "npm", - "name": "npm:path-exists@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.3", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==" - } - }, - "npm:array-slice": { - "type": "npm", - "name": "npm:array-slice", - "data": { - "version": "1.1.0", - "packageName": "array-slice", - "hash": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==" - } - }, - "npm:pumpify": { - "type": "npm", - "name": "npm:pumpify", - "data": { - "version": "1.5.1", - "packageName": "pumpify", - "hash": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==" - } - }, - "npm:has-flag@1.0.0": { - "type": "npm", - "name": "npm:has-flag@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "has-flag", - "hash": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - } - }, - "npm:posix-character-classes": { - "type": "npm", - "name": "npm:posix-character-classes", - "data": { - "version": "0.1.1", - "packageName": "posix-character-classes", - "hash": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" - } - }, - "npm:react-is@16.13.1": { - "type": "npm", - "name": "npm:react-is@16.13.1", - "data": { - "version": "16.13.1", - "packageName": "react-is", - "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.11.0", - "packageName": "ws", - "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" - } - }, - "npm:yargs-parser@20.2.4": { - "type": "npm", - "name": "npm:yargs-parser@20.2.4", - "data": { - "version": "20.2.4", - "packageName": "yargs-parser", - "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" - } - }, - "npm:@dsherret/to-absolute-glob": { - "type": "npm", - "name": "npm:@dsherret/to-absolute-glob", - "data": { - "version": "2.0.2", - "packageName": "@dsherret/to-absolute-glob", - "hash": "sha1-H2R13IvZdM6gei2vOGSzF7HdMyw=" - } - }, - "npm:lodash._basecopy": { - "type": "npm", - "name": "npm:lodash._basecopy", - "data": { - "version": "3.0.1", - "packageName": "lodash._basecopy", - "hash": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" - } - }, - "npm:minipass@5.0.0": { - "type": "npm", - "name": "npm:minipass@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" - } - }, - "npm:prepend-http": { - "type": "npm", - "name": "npm:prepend-http", - "data": { - "version": "1.0.4", - "packageName": "prepend-http", - "hash": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - } - }, - "npm:binaryextensions": { - "type": "npm", - "name": "npm:binaryextensions", - "data": { - "version": "2.3.0", - "packageName": "binaryextensions", - "hash": "sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==" - } - }, - "npm:interpret@2.2.0": { - "type": "npm", - "name": "npm:interpret@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "interpret", - "hash": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==" - } - }, - "npm:whatwg-fetch@3.6.2": { - "type": "npm", - "name": "npm:whatwg-fetch@3.6.2", - "data": { - "version": "3.6.2", - "packageName": "whatwg-fetch", - "hash": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" - } - }, - "npm:got@12.3.1": { - "type": "npm", - "name": "npm:got@12.3.1", - "data": { - "version": "12.3.1", - "packageName": "got", - "hash": "sha512-tS6+JMhBh4iXMSXF6KkIsRxmloPln31QHDlcb6Ec3bzxjjFJFr/8aXdpyuLmVc9I4i2HyBHYw1QU5K1ruUdpkw==" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.1.11", - "packageName": "tar", - "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" - } - }, - "npm:web-streams-polyfill": { - "type": "npm", - "name": "npm:web-streams-polyfill", - "data": { - "version": "3.2.1", - "packageName": "web-streams-polyfill", - "hash": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==" - } - }, - "npm:d3-axis": { - "type": "npm", - "name": "npm:d3-axis", - "data": { - "version": "1.0.8", - "packageName": "d3-axis", - "hash": "sha1-MacFoLU15ldZ3hQXOjGTMTfxjvo=" - } - }, - "npm:@types/react@18.0.14": { - "type": "npm", - "name": "npm:@types/react@18.0.14", - "data": { - "version": "18.0.14", - "packageName": "@types/react", - "hash": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==" - } - }, - "npm:mini-create-react-context": { - "type": "npm", - "name": "npm:mini-create-react-context", - "data": { - "version": "0.4.0", - "packageName": "mini-create-react-context", - "hash": "sha512-b0TytUgFSbgFJGzJqXPKCFCBWigAjpjo+Fl7Vf7ZbKRDptszpppKxXH6DRXEABZ/gcEQczeb0iZ7JvL8e8jjCA==" - } - }, - "npm:unist-util-visit@1.4.1": { - "type": "npm", - "name": "npm:unist-util-visit@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "unist-util-visit", - "hash": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==" - } - }, - "npm:markdown-escapes": { - "type": "npm", - "name": "npm:markdown-escapes", - "data": { - "version": "1.0.4", - "packageName": "markdown-escapes", - "hash": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" - } - }, - "npm:@types/color-check": { - "type": "npm", - "name": "npm:@types/color-check", - "data": { - "version": "0.0.0", - "packageName": "@types/color-check", - "hash": "sha512-ZAm8KesT3hIm6I1vb5EbwD2C4f5XYawZjpE1UGlpfbMFOmLtBpYcZP0duGnsZY/6wzvw1y8MTofRqFzpzU2uOg==" - } - }, - "npm:isobject@4.0.0": { - "type": "npm", - "name": "npm:isobject@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "isobject", - "hash": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==" - } - }, - "npm:@esbuild/win32-x64": { - "type": "npm", - "name": "npm:@esbuild/win32-x64", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-tcuhV7ncXBqbt/Ybf0IyrMcwVOAPDckMK9rXNHtF17UTK18OKLpg08glminN06pt2WCoALhXdLfSPbVvK/6fxw==" - } - }, - "npm:@npmcli/run-script": { - "type": "npm", - "name": "npm:@npmcli/run-script", - "data": { - "version": "6.0.2", - "packageName": "@npmcli/run-script", - "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" - } - }, - "npm:array-differ@3.0.0": { - "type": "npm", - "name": "npm:array-differ@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "array-differ", - "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" - } - }, - "npm:err-code": { - "type": "npm", - "name": "npm:err-code", - "data": { - "version": "2.0.3", - "packageName": "err-code", - "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - } - }, - "npm:esbuild-sunos-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-sunos-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-sunos-64", - "hash": "sha512-HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==" - } - }, - "npm:has-gulplog": { - "type": "npm", - "name": "npm:has-gulplog", - "data": { - "version": "0.1.0", - "packageName": "has-gulplog", - "hash": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=" - } - }, - "npm:@types/tmp": { - "type": "npm", - "name": "npm:@types/tmp", - "data": { - "version": "0.2.0", - "packageName": "@types/tmp", - "hash": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==" - } - }, - "npm:satisfied": { - "type": "npm", - "name": "npm:satisfied", - "data": { - "version": "1.1.2", - "packageName": "satisfied", - "hash": "sha512-4/p+apZMl0WJVH8/HGT4qu5nXey1SokSgGCuxXqFV8ntAXVqRjfjn0i5Zxbp7xh7NsRk2zy71xO+qADxXATLgw==" - } - }, - "npm:uuid-browser": { - "type": "npm", - "name": "npm:uuid-browser", - "data": { - "version": "3.1.0", - "packageName": "uuid-browser", - "hash": "sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=" - } - }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:browserify-mime": { - "type": "npm", - "name": "npm:browserify-mime", - "data": { - "version": "1.2.9", - "packageName": "browserify-mime", - "hash": "sha512-uz+ItyJXBLb6wgon1ELEiVowJBEsy03PUWGRQU7cxxx9S+DW2hujPp+DaMYEOClRPzsn7NB99NtJ6pGnt8y+CQ==" - } - }, - "npm:has": { - "type": "npm", - "name": "npm:has", - "data": { - "version": "1.0.3", - "packageName": "has", - "hash": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" - } - }, - "npm:@babel/plugin-syntax-top-level-await": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-top-level-await", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-top-level-await", - "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - } - }, - "npm:@storybook/postinstall": { - "type": "npm", - "name": "npm:@storybook/postinstall", - "data": { - "version": "6.5.15", - "packageName": "@storybook/postinstall", - "hash": "sha512-l7pApTgLD10OedNOyuf4vUdVCHLOSaIUIL9gdJl1WaSFHiUpJvvzBIh5M4aRICYPbnuExQc8y2GAjERKO4Ep+g==" - } - }, - "npm:internmap": { - "type": "npm", - "name": "npm:internmap", - "data": { - "version": "1.0.1", - "packageName": "internmap", - "hash": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" - } - }, - "npm:no-case@3.0.4": { - "type": "npm", - "name": "npm:no-case@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "no-case", - "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" - } - }, - "npm:@types/chai-spies": { - "type": "npm", - "name": "npm:@types/chai-spies", - "data": { - "version": "1.0.3", - "packageName": "@types/chai-spies", - "hash": "sha512-RBZjhVuK7vrg4rWMt04UF5zHYwfHnpk5mIWu3nQvU3AKGDixXzSjZ6v0zke6pBcaJqMv3IBZ5ibLWPMRDL0sLw==" - } - }, - "npm:jstat": { - "type": "npm", - "name": "npm:jstat", - "data": { - "version": "1.9.5", - "packageName": "jstat", - "hash": "sha512-cWnp4vObF5GmB2XsIEzxI/1ZTcYlcfNqxQ/9Fp5KFUa0Jf/4tO0ZkGVnqoEHDisJvYgvn5n3eWZbd2xTVJJPUQ==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:fast-levenshtein@1.1.4": { - "type": "npm", - "name": "npm:fast-levenshtein@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "fast-levenshtein", - "hash": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=" - } - }, - "npm:esprima@2.7.3": { - "type": "npm", - "name": "npm:esprima@2.7.3", - "data": { - "version": "2.7.3", - "packageName": "esprima", - "hash": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=" - } - }, - "npm:sockjs": { - "type": "npm", - "name": "npm:sockjs", - "data": { - "version": "0.3.24", - "packageName": "sockjs", - "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - } - }, - "npm:is-symbol": { - "type": "npm", - "name": "npm:is-symbol", - "data": { - "version": "1.0.3", - "packageName": "is-symbol", - "hash": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==" - } - }, - "npm:esbuild-darwin-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-darwin-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-darwin-arm64", - "hash": "sha512-juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==" - } - }, - "npm:@griffel/babel-preset": { - "type": "npm", - "name": "npm:@griffel/babel-preset", - "data": { - "version": "1.4.20", - "packageName": "@griffel/babel-preset", - "hash": "sha512-fN3ntaNnshPY6rY8ysNrQgo/EdheZjcAi/xT8hBVV85VHFjuTkL+aKA2S3Ufea4gdSt9R4eGavMkPsO08r8dEA==" - } - }, - "npm:lodash.isplainobject": { - "type": "npm", - "name": "npm:lodash.isplainobject", - "data": { - "version": "4.0.6", - "packageName": "lodash.isplainobject", - "hash": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" - } - }, - "npm:react-fela": { - "type": "npm", - "name": "npm:react-fela", - "data": { - "version": "10.6.1", - "packageName": "react-fela", - "hash": "sha512-HEtJXkvmwvvPJ4lbYrbttudgmacXnWSU9H3Syx4KiyiUBq9y/f0bn1YW/BLh4jQVVxAsbI6s6hSNornX/sdEzw==" - } - }, - "npm:@jridgewell/gen-mapping@0.1.1": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping@0.1.1", - "data": { - "version": "0.1.1", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==" - } - }, - "npm:argparse@2.0.1": { - "type": "npm", - "name": "npm:argparse@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:@npmcli/move-file@2.0.1": { - "type": "npm", - "name": "npm:@npmcli/move-file@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "@npmcli/move-file", - "hash": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" - } - }, - "npm:@griffel/react": { - "type": "npm", - "name": "npm:@griffel/react", - "data": { - "version": "1.5.14", - "packageName": "@griffel/react", - "hash": "sha512-/x6cy6xMtpow1r+Zrw/hMKHwo+imFAgKaZ3A/+M8GyT3L9AFxK1Kyg4JvARPjLBAn9Q2q5dkCr78jOguuVSScg==" - } - }, - "npm:import-fresh@2.0.0": { - "type": "npm", - "name": "npm:import-fresh@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "import-fresh", - "hash": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=" - } - }, - "npm:psl": { - "type": "npm", - "name": "npm:psl", - "data": { - "version": "1.8.0", - "packageName": "psl", - "hash": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.0", - "packageName": "resolve", - "hash": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:sirv": { - "type": "npm", - "name": "npm:sirv", - "data": { - "version": "1.0.10", - "packageName": "sirv", - "hash": "sha512-H5EZCoZaggEUQy8ocKsF7WAToGuZhjJlLvM3XOef46CbdIgbNeQ1p32N1PCuCjkVYwrAVOSMacN6CXXgIzuspg==" - } - }, - "npm:@storybook/csf-tools": { - "type": "npm", - "name": "npm:@storybook/csf-tools", - "data": { - "version": "6.5.15", - "packageName": "@storybook/csf-tools", - "hash": "sha512-2LwSD7yE/ccXBc58K4vdKw/oJJg6IpC4WD51rBt2mAl5JUCkxhOq7wG/Z8Wy1lZw2LVuKNTmjVou5blGRI/bTg==" - } - }, - "npm:@types/color-name": { - "type": "npm", - "name": "npm:@types/color-name", - "data": { - "version": "1.1.1", - "packageName": "@types/color-name", - "hash": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" - } - }, - "npm:@types/prettier": { - "type": "npm", - "name": "npm:@types/prettier", - "data": { - "version": "2.7.2", - "packageName": "@types/prettier", - "hash": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==" - } - }, - "npm:execa@0.7.0": { - "type": "npm", - "name": "npm:execa@0.7.0", - "data": { - "version": "0.7.0", - "packageName": "execa", - "hash": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=" - } - }, - "npm:hosted-git-info@7.0.1": { - "type": "npm", - "name": "npm:hosted-git-info@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "hosted-git-info", - "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - } - }, - "npm:jsesc@1.3.0": { - "type": "npm", - "name": "npm:jsesc@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "jsesc", - "hash": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" - } - }, - "npm:jsonfile@2.4.0": { - "type": "npm", - "name": "npm:jsonfile@2.4.0", - "data": { - "version": "2.4.0", - "packageName": "jsonfile", - "hash": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=" - } - }, - "npm:no-case": { - "type": "npm", - "name": "npm:no-case", - "data": { - "version": "2.3.2", - "packageName": "no-case", - "hash": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==" - } - }, - "npm:p-reduce": { - "type": "npm", - "name": "npm:p-reduce", - "data": { - "version": "2.1.0", - "packageName": "p-reduce", - "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.1", - "packageName": "@types/estree", - "hash": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" - } - }, - "npm:@types/react-is": { - "type": "npm", - "name": "npm:@types/react-is", - "data": { - "version": "17.0.3", - "packageName": "@types/react-is", - "hash": "sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==" - } - }, - "npm:promise": { - "type": "npm", - "name": "npm:promise", - "data": { - "version": "8.1.0", - "packageName": "promise", - "hash": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.3.1", - "packageName": "regexp.prototype.flags", - "hash": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==" - } - }, - "npm:through2@2.0.5": { - "type": "npm", - "name": "npm:through2@2.0.5", - "data": { - "version": "2.0.5", - "packageName": "through2", - "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - } - }, - "npm:ts-morph": { - "type": "npm", - "name": "npm:ts-morph", - "data": { - "version": "10.0.1", - "packageName": "ts-morph", - "hash": "sha512-T1zufImtp5goTLTFhzi7XuKR1y/f+Jwz1gSULzB045LFjXuoqVlR87sfkpyWow8u2JwgusCJrhOnwmHCFNutTQ==" - } - }, - "npm:webpack-hot-middleware": { - "type": "npm", - "name": "npm:webpack-hot-middleware", - "data": { - "version": "2.25.1", - "packageName": "webpack-hot-middleware", - "hash": "sha512-Koh0KyU/RPYwel/khxbsDz9ibDivmUbrRuKSSQvW42KSDdO4w23WI3SkHpSUKHE76LrFnnM/L7JCrpBwu8AXYw==" - } - }, - "npm:d3-contour": { - "type": "npm", - "name": "npm:d3-contour", - "data": { - "version": "1.3.2", - "packageName": "d3-contour", - "hash": "sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg==" - } - }, - "npm:@babel/plugin-transform-react-display-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-display-name", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-react-display-name", - "hash": "sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==" - } - }, - "npm:diff-match-patch": { - "type": "npm", - "name": "npm:diff-match-patch", - "data": { - "version": "1.0.5", - "packageName": "diff-match-patch", - "hash": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" - } - }, - "npm:cacheable-request": { - "type": "npm", - "name": "npm:cacheable-request", - "data": { - "version": "7.0.2", - "packageName": "cacheable-request", - "hash": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==" - } - }, - "npm:@azure/data-tables": { - "type": "npm", - "name": "npm:@azure/data-tables", - "data": { - "version": "13.0.0", - "packageName": "@azure/data-tables", - "hash": "sha512-OA9X0rsTP7AM+cZENppMljihYWfn02Tkwa1IdbU8jNfCjV5SL8x2e76L7SN5z/sFxAJ3hdcyMa3sAOXvuSs6/Q==" - } - }, - "npm:custom-event": { - "type": "npm", - "name": "npm:custom-event", - "data": { - "version": "1.0.1", - "packageName": "custom-event", - "hash": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=" - } - }, - "npm:fela-plugin-custom-property": { - "type": "npm", - "name": "npm:fela-plugin-custom-property", - "data": { - "version": "10.8.2", - "packageName": "fela-plugin-custom-property", - "hash": "sha512-SFbuMRQpetEUYwMsG0ngZrdEB7N7ytH+jsXeWt54GKhdz68XcvbAEIoc5vWSPiNVBKH47jV3+dwXjhejd5AdaQ==" - } - }, - "npm:immutable": { - "type": "npm", - "name": "npm:immutable", - "data": { - "version": "4.0.0", - "packageName": "immutable", - "hash": "sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==" - } - }, - "npm:colorette@2.0.20": { - "type": "npm", - "name": "npm:colorette@2.0.20", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:copy-concurrently": { - "type": "npm", - "name": "npm:copy-concurrently", - "data": { - "version": "1.0.5", - "packageName": "copy-concurrently", - "hash": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==" - } - }, - "npm:@types/node@14.18.32": { - "type": "npm", - "name": "npm:@types/node@14.18.32", - "data": { - "version": "14.18.32", - "packageName": "@types/node", - "hash": "sha512-Y6S38pFr04yb13qqHf8uk1nHE3lXgQ30WZbv1mLliV9pt0NjvqdWttLcrOYLnXbOafknVYRHZGoMSpR9UwfYow==" - } - }, - "npm:@webassemblyjs/utf8@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" - } - }, - "npm:jest-docblock": { - "type": "npm", - "name": "npm:jest-docblock", - "data": { - "version": "29.7.0", - "packageName": "jest-docblock", - "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" - } - }, - "npm:formdata-polyfill": { - "type": "npm", - "name": "npm:formdata-polyfill", - "data": { - "version": "4.0.10", - "packageName": "formdata-polyfill", - "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" - } - }, - "npm:react-window": { - "type": "npm", - "name": "npm:react-window", - "data": { - "version": "1.8.6", - "packageName": "react-window", - "hash": "sha512-8VwEEYyjz6DCnGBsd+MgkD0KJ2/OXFULyDtorIiTz+QzwoP94tBoA7CnbtyXMm+cCeAUER5KJcPtWl9cpKbOBg==" - } - }, - "npm:word-wrap": { - "type": "npm", - "name": "npm:word-wrap", - "data": { - "version": "1.2.4", - "packageName": "word-wrap", - "hash": "sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==" - } - }, - "npm:performance-now@0.2.0": { - "type": "npm", - "name": "npm:performance-now@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "performance-now", - "hash": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=" - } - }, - "npm:jest-haste-map": { - "type": "npm", - "name": "npm:jest-haste-map", - "data": { - "version": "29.7.0", - "packageName": "jest-haste-map", - "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.0", - "packageName": "fast-glob", - "hash": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==" - } - }, - "npm:jest-validate": { - "type": "npm", - "name": "npm:jest-validate", - "data": { - "version": "29.7.0", - "packageName": "jest-validate", - "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.0.4", - "packageName": "reusify", - "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - } - }, - "npm:@nx/nx-freebsd-x64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-UeEYFDmdbbDkTQamqvtU8ibgu5jQLgFF1ruNb/U4Ywvwutw2d4ruOMl2e0u9hiNja9NFFAnDbvzrDcMo7jYqYw==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.3", - "packageName": "@types/babel__core", - "hash": "sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "7.2.13", - "packageName": "@types/eslint", - "hash": "sha512-LKmQCWAlnVHvvXq4oasNUMTJJb2GwSyTY8+1C7OH5ILR8mPLaljv1jxL1bXW3xB3jFbQxTKxJAvI8PyjB09aBg==" - } - }, - "npm:colors": { - "type": "npm", - "name": "npm:colors", - "data": { - "version": "1.2.5", - "packageName": "colors", - "hash": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==" - } - }, - "npm:lodash.get": { - "type": "npm", - "name": "npm:lodash.get", - "data": { - "version": "4.4.2", - "packageName": "lodash.get", - "hash": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" - } - }, - "npm:select": { - "type": "npm", - "name": "npm:select", - "data": { - "version": "1.1.2", - "packageName": "select", - "hash": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" - } - }, - "npm:obuf": { - "type": "npm", - "name": "npm:obuf", - "data": { - "version": "1.1.2", - "packageName": "obuf", - "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.22.13", - "packageName": "@babel/code-frame", - "hash": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==" - } - }, - "npm:merge-stream": { - "type": "npm", - "name": "npm:merge-stream", - "data": { - "version": "2.0.0", - "packageName": "merge-stream", - "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" - } - }, - "npm:@babel/plugin-transform-function-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-function-name", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==" - } - }, - "npm:source-map-support@0.5.13": { - "type": "npm", - "name": "npm:source-map-support@0.5.13", - "data": { - "version": "0.5.13", - "packageName": "source-map-support", - "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" - } - }, - "npm:@emotion/memoize": { - "type": "npm", - "name": "npm:@emotion/memoize", - "data": { - "version": "0.7.4", - "packageName": "@emotion/memoize", - "hash": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.3", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==" - } - }, - "npm:@types/undertaker": { - "type": "npm", - "name": "npm:@types/undertaker", - "data": { - "version": "1.2.2", - "packageName": "@types/undertaker", - "hash": "sha512-j4iepCSuY2JGW/hShVtUBagic0klYNFIXP7VweavnYnNC2EjiKxJFeaS9uaJmAT0ty9sQSqTS1aagWMZMV0HyA==" - } - }, - "npm:array-differ": { - "type": "npm", - "name": "npm:array-differ", - "data": { - "version": "1.0.0", - "packageName": "array-differ", - "hash": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=" - } - }, - "npm:@opentelemetry/context-base": { - "type": "npm", - "name": "npm:@opentelemetry/context-base", - "data": { - "version": "0.6.1", - "packageName": "@opentelemetry/context-base", - "hash": "sha512-5bHhlTBBq82ti3qPT15TRxkYTFPPQWbnkkQkmHPtqiS1XcTB69cEKd3Jm7Cfi/vkPoyxapmePE9tyA7EzLt8SQ==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.2.1", - "packageName": "es-to-primitive", - "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - } - }, - "npm:@jest/globals": { - "type": "npm", - "name": "npm:@jest/globals", - "data": { - "version": "29.7.0", - "packageName": "@jest/globals", - "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" - } - }, - "npm:@testing-library/dom@7.22.3": { - "type": "npm", - "name": "npm:@testing-library/dom@7.22.3", - "data": { - "version": "7.22.3", - "packageName": "@testing-library/dom", - "hash": "sha512-IK6/eL1Xza/0goDKrwnBvlM06L+5eL9b1o+hUhX7HslfUvMETh0TYgXEr2LVpsVkHiOhRmUbUyml95KV/VlRNw==" - } - }, - "npm:append-buffer": { - "type": "npm", - "name": "npm:append-buffer", - "data": { - "version": "1.0.2", - "packageName": "append-buffer", - "hash": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=" - } - }, - "npm:envinfo": { - "type": "npm", - "name": "npm:envinfo", - "data": { - "version": "7.8.1", - "packageName": "envinfo", - "hash": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-5iV2NKZnzxJwZZ4DM5JVbRG/nkhAbzEskKaLBB82PmYGKzaDHuMHP1lcPoD/rtYMlowZgNA/RQndfKvPBPwmXA==" - } - }, - "npm:@webassemblyjs/leb128": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" - } - }, - "npm:@webassemblyjs/helper-wasm-section@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==" - } - }, - "npm:@babel/plugin-transform-new-target": { - "type": "npm", - "name": "npm:@babel/plugin-transform-new-target", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==" - } - }, - "npm:@octokit/rest@19.0.11": { - "type": "npm", - "name": "npm:@octokit/rest@19.0.11", - "data": { - "version": "19.0.11", - "packageName": "@octokit/rest", - "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" - } - }, - "npm:debug@2.6.9": { - "type": "npm", - "name": "npm:debug@2.6.9", - "data": { - "version": "2.6.9", - "packageName": "debug", - "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - } - }, - "npm:eslint-scope@4.0.3": { - "type": "npm", - "name": "npm:eslint-scope@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "eslint-scope", - "hash": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==" - } - }, - "npm:gzip-size@7.0.0": { - "type": "npm", - "name": "npm:gzip-size@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "gzip-size", - "hash": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==" - } - }, - "npm:@babel/plugin-syntax-export-default-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-default-from", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-export-default-from", - "hash": "sha512-snWDxjuaPEobRBnhpqEfZ8RMxDbHt8+87fiEioGuE+Uc0xAKgSD8QiuL3lF93hPVQfZFAcYwrrf+H5qUhike3Q==" - } - }, - "npm:decode-uri-component": { - "type": "npm", - "name": "npm:decode-uri-component", - "data": { - "version": "0.2.2", - "packageName": "decode-uri-component", - "hash": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" - } - }, - "npm:is-retry-allowed": { - "type": "npm", - "name": "npm:is-retry-allowed", - "data": { - "version": "1.2.0", - "packageName": "is-retry-allowed", - "hash": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.4", - "packageName": "is-typed-array", - "hash": "sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==" - } - }, - "npm:@webassemblyjs/wasm-gen@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==" - } - }, - "npm:gzip-js": { - "type": "npm", - "name": "npm:gzip-js", - "data": { - "version": "0.3.2", - "packageName": "gzip-js", - "hash": "sha1-IxF+/usozzhSSN7/Df+tiUg22Ws=" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:get-port": { - "type": "npm", - "name": "npm:get-port", - "data": { - "version": "5.1.1", - "packageName": "get-port", - "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" - } - }, - "npm:icss-utils@5.1.0": { - "type": "npm", - "name": "npm:icss-utils@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "icss-utils", - "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - } - }, - "npm:@microsoft/dynamicproto-js": { - "type": "npm", - "name": "npm:@microsoft/dynamicproto-js", - "data": { - "version": "2.0.2", - "packageName": "@microsoft/dynamicproto-js", - "hash": "sha512-MB8trWaFREpmb037k/d0bB7T2BP7Ai24w1e1tbz3ASLB0/lwphsq3Nq8S9I5AsI5vs4zAQT+SB5nC5/dLYTiOg==" - } - }, - "npm:ipaddr.js@1.9.1": { - "type": "npm", - "name": "npm:ipaddr.js@1.9.1", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:mute-stdout": { - "type": "npm", - "name": "npm:mute-stdout", - "data": { - "version": "1.0.1", - "packageName": "mute-stdout", - "hash": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==" - } - }, - "npm:node-int64": { - "type": "npm", - "name": "npm:node-int64", - "data": { - "version": "0.4.0", - "packageName": "node-int64", - "hash": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" - } - }, - "npm:regenerator-runtime@0.11.1": { - "type": "npm", - "name": "npm:regenerator-runtime@0.11.1", - "data": { - "version": "0.11.1", - "packageName": "regenerator-runtime", - "hash": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" - } - }, - "npm:har-validator": { - "type": "npm", - "name": "npm:har-validator", - "data": { - "version": "5.1.3", - "packageName": "har-validator", - "hash": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==" - } - }, - "npm:property-information": { - "type": "npm", - "name": "npm:property-information", - "data": { - "version": "5.4.0", - "packageName": "property-information", - "hash": "sha512-nmMWAm/3vKFGmmOWOcdLjgq/Hlxa+hsuR/px1Lp/UGEyc5A22A6l78Shc2C0E71sPmAqglni+HrS7L7VJ7AUCA==" - } - }, - "npm:remove-bom-stream": { - "type": "npm", - "name": "npm:remove-bom-stream", - "data": { - "version": "1.2.0", - "packageName": "remove-bom-stream", - "hash": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=" - } - }, - "npm:cross-spawn@6.0.5": { - "type": "npm", - "name": "npm:cross-spawn@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "cross-spawn", - "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" - } - }, - "npm:require-main-filename@1.0.1": { - "type": "npm", - "name": "npm:require-main-filename@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "require-main-filename", - "hash": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:@babel/preset-modules": { - "type": "npm", - "name": "npm:@babel/preset-modules", - "data": { - "version": "0.1.6-no-external-plugins", - "packageName": "@babel/preset-modules", - "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" - } - }, - "npm:@actions/github": { - "type": "npm", - "name": "npm:@actions/github", - "data": { - "version": "5.0.3", - "packageName": "@actions/github", - "hash": "sha512-myjA/pdLQfhUGLtRZC/J4L1RXOG4o6aYdiEq+zr5wVVKljzbFld+xv10k1FX6IkIJtNxbAq44BdwSNpQ015P0A==" - } - }, - "npm:browserify-cipher": { - "type": "npm", - "name": "npm:browserify-cipher", - "data": { - "version": "1.0.1", - "packageName": "browserify-cipher", - "hash": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==" - } - }, - "npm:conventional-changelog-preset-loader": { - "type": "npm", - "name": "npm:conventional-changelog-preset-loader", - "data": { - "version": "3.0.0", - "packageName": "conventional-changelog-preset-loader", - "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" - } - }, - "npm:archy": { - "type": "npm", - "name": "npm:archy", - "data": { - "version": "1.0.0", - "packageName": "archy", - "hash": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=" - } - }, - "npm:cacache@12.0.3": { - "type": "npm", - "name": "npm:cacache@12.0.3", - "data": { - "version": "12.0.3", - "packageName": "cacache", - "hash": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==" - } - }, - "npm:github-slugger": { - "type": "npm", - "name": "npm:github-slugger", - "data": { - "version": "1.3.0", - "packageName": "github-slugger", - "hash": "sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==" - } - }, - "npm:lru-cache@7.14.0": { - "type": "npm", - "name": "npm:lru-cache@7.14.0", - "data": { - "version": "7.14.0", - "packageName": "lru-cache", - "hash": "sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ==" - } - }, - "npm:@types/sinonjs__fake-timers": { - "type": "npm", - "name": "npm:@types/sinonjs__fake-timers", - "data": { - "version": "8.1.1", - "packageName": "@types/sinonjs__fake-timers", - "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" - } - }, - "npm:event-target-shim": { - "type": "npm", - "name": "npm:event-target-shim", - "data": { - "version": "5.0.1", - "packageName": "event-target-shim", - "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:setimmediate": { - "type": "npm", - "name": "npm:setimmediate", - "data": { - "version": "1.0.5", - "packageName": "setimmediate", - "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:react-hooks-testing-library": { - "type": "npm", - "name": "npm:react-hooks-testing-library", - "data": { - "version": "0.5.1", - "packageName": "react-hooks-testing-library", - "hash": "sha512-wSwnVPceof2AOpdvZpiC3EX4gZiVVvY78foz0/44yYGXjC2AeaWvNAjyRH1UjlPqCfHTaEANvXCq+m9YCbWBfQ==" - } - }, - "npm:@babel/runtime-corejs3": { - "type": "npm", - "name": "npm:@babel/runtime-corejs3", - "data": { - "version": "7.12.13", - "packageName": "@babel/runtime-corejs3", - "hash": "sha512-8fSpqYRETHATtNitsCXq8QQbKJP31/KnDl2Wz2Vtui9nKzjss2ysuZtyVsWjBtvkeEFo346gkwjYPab1hvrXkQ==" - } - }, - "npm:@types/ws": { - "type": "npm", - "name": "npm:@types/ws", - "data": { - "version": "8.5.4", - "packageName": "@types/ws", - "hash": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==" - } - }, - "npm:bindings@1.5.0": { - "type": "npm", - "name": "npm:bindings@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "bindings", - "hash": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" - } - }, - "npm:lodash._basevalues": { - "type": "npm", - "name": "npm:lodash._basevalues", - "data": { - "version": "3.0.0", - "packageName": "lodash._basevalues", - "hash": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=" - } - }, - "npm:jsonify": { - "type": "npm", - "name": "npm:jsonify", - "data": { - "version": "0.0.0", - "packageName": "jsonify", - "hash": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" - } - }, - "npm:semver@5.7.1": { - "type": "npm", - "name": "npm:semver@5.7.1", - "data": { - "version": "5.7.1", - "packageName": "semver", - "hash": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "2.5.1", - "packageName": "form-data", - "hash": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==" - } - }, - "npm:traverse": { - "type": "npm", - "name": "npm:traverse", - "data": { - "version": "0.6.6", - "packageName": "traverse", - "hash": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" - } - }, - "npm:ms@2.0.0": { - "type": "npm", - "name": "npm:ms@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ms", - "hash": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - }, - "npm:neo-async": { - "type": "npm", - "name": "npm:neo-async", - "data": { - "version": "2.6.2", - "packageName": "neo-async", - "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - } - }, - "npm:del": { - "type": "npm", - "name": "npm:del", - "data": { - "version": "6.0.0", - "packageName": "del", - "hash": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==" - } - }, - "npm:wrap-ansi@2.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "wrap-ansi", - "hash": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=" - } - }, - "npm:decamelize": { - "type": "npm", - "name": "npm:decamelize", - "data": { - "version": "1.2.0", - "packageName": "decamelize", - "hash": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - } - }, - "npm:eslint-visitor-keys@1.3.0": { - "type": "npm", - "name": "npm:eslint-visitor-keys@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - } - }, - "npm:got": { - "type": "npm", - "name": "npm:got", - "data": { - "version": "11.8.5", - "packageName": "got", - "hash": "sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==" - } - }, - "npm:run-async": { - "type": "npm", - "name": "npm:run-async", - "data": { - "version": "2.4.1", - "packageName": "run-async", - "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@^6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:iconv-lite@0.4.24": { - "type": "npm", - "name": "npm:iconv-lite@0.4.24", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "npm:minimalistic-crypto-utils": { - "type": "npm", - "name": "npm:minimalistic-crypto-utils", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-crypto-utils", - "hash": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - } - }, - "npm:rollup-plugin-typescript2": { - "type": "npm", - "name": "npm:rollup-plugin-typescript2", - "data": { - "version": "0.27.1", - "packageName": "rollup-plugin-typescript2", - "hash": "sha512-RJl77Bbj1EunAQDC3dK/O2HWuSUX3oJbRGzyLoS5o9W4Hs1Nix3Gavqj1Lzs5Y6Ff4H2xXfmZ1WWUQCYocSbzQ==" - } - }, - "npm:@storybook/react": { - "type": "npm", - "name": "npm:@storybook/react", - "data": { - "version": "6.5.15", - "packageName": "@storybook/react", - "hash": "sha512-iQta2xOs/oK0sw/zpn3g/huvOmvggzi8z2/WholmUmmRiSQRo9lOhRXH0u13T4ja4fEa+u7m58G83xOG6i73Kw==" - } - }, - "npm:@types/lerna-alias": { - "type": "npm", - "name": "npm:@types/lerna-alias", - "data": { - "version": "3.0.0", - "packageName": "@types/lerna-alias", - "hash": "sha512-EfwEzSWxAxrZgUJT5sECi4RPFCIgOm/K9e5EWXp2hR9H6wzV1QIBgjGtGEl/OpOCcglNWzmqrVRX/qjvNwli9Q==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "13.0.11", - "packageName": "@types/yargs", - "hash": "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==" - } - }, - "npm:arrify": { - "type": "npm", - "name": "npm:arrify", - "data": { - "version": "2.0.1", - "packageName": "arrify", - "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" - } - }, - "npm:@esbuild/freebsd-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-YbPY2kc0acfzL1VPVK6EnAlig4f+l8xmq36OZkU0jzBVHcOTyQDhnKQaLzZudNJQyymd9OqQezeaBgkTGdTGeQ==" - } - }, - "npm:is-promise": { - "type": "npm", - "name": "npm:is-promise", - "data": { - "version": "2.1.0", - "packageName": "is-promise", - "hash": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" - } - }, - "npm:array-last": { - "type": "npm", - "name": "npm:array-last", - "data": { - "version": "1.3.0", - "packageName": "array-last", - "hash": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==" - } - }, - "npm:@nx/nx-linux-arm64-musl@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-uO6Gg+irqpVcCKMcEPIQcTFZ+tDI02AZkqkP7koQAjniLEappd8DnUBSQdcn53T086pHpdc264X/ZEpXFfrKWQ==" - } - }, - "npm:brace-expansion@1.1.11": { - "type": "npm", - "name": "npm:brace-expansion@1.1.11", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "npm:lodash.isboolean": { - "type": "npm", - "name": "npm:lodash.isboolean", - "data": { - "version": "3.0.3", - "packageName": "lodash.isboolean", - "hash": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" - } - }, - "npm:timed-out": { - "type": "npm", - "name": "npm:timed-out", - "data": { - "version": "4.0.1", - "packageName": "timed-out", - "hash": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "5.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" - } - }, - "npm:node-ipc": { - "type": "npm", - "name": "npm:node-ipc", - "data": { - "version": "9.1.1", - "packageName": "node-ipc", - "hash": "sha512-FAyICv0sIRJxVp3GW5fzgaf9jwwRQxAKDJlmNFUL5hOy+W4X/I5AypyHoq0DXXbo9o/gt79gj++4cMr4jVWE/w==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:@babel/plugin-transform-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-catch-binding", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-optional-catch-binding", - "hash": "sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==" - } - }, - "npm:dotenv@16.3.1": { - "type": "npm", - "name": "npm:dotenv@16.3.1", - "data": { - "version": "16.3.1", - "packageName": "dotenv", - "hash": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.2.4", - "packageName": "sax", - "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - } - }, - "npm:gulp": { - "type": "npm", - "name": "npm:gulp", - "data": { - "version": "4.0.2", - "packageName": "gulp", - "hash": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.0.2", - "packageName": "source-map-js", - "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - } - }, - "npm:ts-jest": { - "type": "npm", - "name": "npm:ts-jest", - "data": { - "version": "29.1.1", - "packageName": "ts-jest", - "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" - } - }, - "npm:validate-npm-package-name@3.0.0": { - "type": "npm", - "name": "npm:validate-npm-package-name@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=" - } - }, - "npm:gulp-cache": { - "type": "npm", - "name": "npm:gulp-cache", - "data": { - "version": "1.1.3", - "packageName": "gulp-cache", - "hash": "sha512-NE814LdX1NWQn2sMzn+Rf673o4mqlgg7OyLf92oQ4KEl6DdPfduEGLNH+HexLVcFZXH93DBuxFOvpv4/Js5VaA==" - } - }, - "npm:@types/minimatch": { - "type": "npm", - "name": "npm:@types/minimatch", - "data": { - "version": "3.0.3", - "packageName": "@types/minimatch", - "hash": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" - } - }, - "npm:global": { - "type": "npm", - "name": "npm:global", - "data": { - "version": "4.4.0", - "packageName": "global", - "hash": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==" - } - }, - "npm:webpack": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.83.1", - "packageName": "webpack", - "hash": "sha512-TNsG9jDScbNuB+Lb/3+vYolPplCS3bbEaJf+Bj0Gw4DhP3ioAflBb1flcRt9zsWITyvOhM96wMQNRWlSX52DgA==" - } - }, - "npm:assert": { - "type": "npm", - "name": "npm:assert", - "data": { - "version": "2.0.0", - "packageName": "assert", - "hash": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==" - } - }, - "npm:is-plain-object": { - "type": "npm", - "name": "npm:is-plain-object", - "data": { - "version": "2.0.4", - "packageName": "is-plain-object", - "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - } - }, - "npm:language-tags": { - "type": "npm", - "name": "npm:language-tags", - "data": { - "version": "1.0.5", - "packageName": "language-tags", - "hash": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=" - } - }, - "npm:which@3.0.1": { - "type": "npm", - "name": "npm:which@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "which", - "hash": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==" - } - }, - "npm:@types/d3-shape": { - "type": "npm", - "name": "npm:@types/d3-shape", - "data": { - "version": "3.1.1", - "packageName": "@types/d3-shape", - "hash": "sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==" - } - }, - "npm:wrap-ansi@5.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==" - } - }, - "npm:is-path-inside@4.0.0": { - "type": "npm", - "name": "npm:is-path-inside@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-path-inside", - "hash": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==" - } - }, - "npm:@types/faker": { - "type": "npm", - "name": "npm:@types/faker", - "data": { - "version": "4.1.9", - "packageName": "@types/faker", - "hash": "sha512-4ZFqA3CEXB6MgT8sDV8E5LhW+O9ndONsHeQXMbEwfOsjoQ4UXKqTJKru+BjDBUfobYEpQz1WYF9/uzQsvbY2wA==" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "npm:@types/sockjs": { - "type": "npm", - "name": "npm:@types/sockjs", - "data": { - "version": "0.3.33", - "packageName": "@types/sockjs", - "hash": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" - } - }, - "npm:amdefine": { - "type": "npm", - "name": "npm:amdefine", - "data": { - "version": "1.0.1", - "packageName": "amdefine", - "hash": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" - } - }, - "npm:arch": { - "type": "npm", - "name": "npm:arch", - "data": { - "version": "2.2.0", - "packageName": "arch", - "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" - } - }, - "npm:node-dir": { - "type": "npm", - "name": "npm:node-dir", - "data": { - "version": "0.1.17", - "packageName": "node-dir", - "hash": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=" - } - }, - "npm:unicode-match-property-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-match-property-ecmascript", - "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - } - }, - "npm:faye-websocket": { - "type": "npm", - "name": "npm:faye-websocket", - "data": { - "version": "0.11.3", - "packageName": "faye-websocket", - "hash": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==" - } - }, - "npm:path-exists@2.1.0": { - "type": "npm", - "name": "npm:path-exists@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "path-exists", - "hash": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.2", - "packageName": "call-bind", - "hash": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:systeminformation": { - "type": "npm", - "name": "npm:systeminformation", - "data": { - "version": "5.21.8", - "packageName": "systeminformation", - "hash": "sha512-Xf1KDMUTQHLOT9Z7MjpSpsbaICOHcm4OZ9c9qqpkCoXuxq5MoyDrgu5GIQYpoiralXNPrqxDz3ND8MdllpXeQA==" - } - }, - "npm:encoding": { - "type": "npm", - "name": "npm:encoding", - "data": { - "version": "0.1.13", - "packageName": "encoding", - "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - } - }, - "npm:md5.js": { - "type": "npm", - "name": "npm:md5.js", - "data": { - "version": "1.3.5", - "packageName": "md5.js", - "hash": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==" - } - }, - "npm:eslint-plugin-jest": { - "type": "npm", - "name": "npm:eslint-plugin-jest", - "data": { - "version": "23.20.0", - "packageName": "eslint-plugin-jest", - "hash": "sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==" - } - }, - "npm:parse5@6.0.1": { - "type": "npm", - "name": "npm:parse5@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "parse5", - "hash": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" - } - }, - "npm:@jest/expect-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:dargs": { - "type": "npm", - "name": "npm:dargs", - "data": { - "version": "7.0.0", - "packageName": "dargs", - "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" - } - }, - "npm:fela-utils@11.7.0": { - "type": "npm", - "name": "npm:fela-utils@11.7.0", - "data": { - "version": "11.7.0", - "packageName": "fela-utils", - "hash": "sha512-s/3QJtkCesH+2/yJDpedHVAvMgKy9hSt2++6l7Xjio5BixiUnvkwbqdCV/fcAb4E3reJLNzYeatgPdcw4HVXRQ==" - } - }, - "npm:lowercase-keys": { - "type": "npm", - "name": "npm:lowercase-keys", - "data": { - "version": "2.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:@types/serve-index": { - "type": "npm", - "name": "npm:@types/serve-index", - "data": { - "version": "1.9.1", - "packageName": "@types/serve-index", - "hash": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" - } - }, - "npm:caller-path": { - "type": "npm", - "name": "npm:caller-path", - "data": { - "version": "2.0.0", - "packageName": "caller-path", - "hash": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=" - } - }, - "npm:fast-json-parse": { - "type": "npm", - "name": "npm:fast-json-parse", - "data": { - "version": "1.0.3", - "packageName": "fast-json-parse", - "hash": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==" - } - }, - "npm:react-source-render": { - "type": "npm", - "name": "npm:react-source-render", - "data": { - "version": "4.0.0-1", - "packageName": "react-source-render", - "hash": "sha512-JSL6Xs2mcHJ3jtLoe/K9aualo3XJSQW5nOqLthHkjTCrEvfb7jaSfpkjDVFGvgNCVOu7keClX7I/ZQaTP1gnVw==" - } - }, - "npm:@babel/plugin-transform-named-capturing-groups-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-named-capturing-groups-regex", - "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" - } - }, - "npm:regjsparser": { - "type": "npm", - "name": "npm:regjsparser", - "data": { - "version": "0.9.1", - "packageName": "regjsparser", - "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" - } - }, - "npm:@types/react-transition-group": { - "type": "npm", - "name": "npm:@types/react-transition-group", - "data": { - "version": "4.4.6", - "packageName": "@types/react-transition-group", - "hash": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==" - } - }, - "npm:jsprim@1.4.1": { - "type": "npm", - "name": "npm:jsprim@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "jsprim", - "hash": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=" - } - }, - "npm:yargs-parser@5.0.0": { - "type": "npm", - "name": "npm:yargs-parser@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "yargs-parser", - "hash": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=" - } - }, - "npm:react@18.2.0": { - "type": "npm", - "name": "npm:react@18.2.0", - "data": { - "version": "18.2.0", - "packageName": "react", - "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" - } - }, - "npm:enzyme-to-json": { - "type": "npm", - "name": "npm:enzyme-to-json", - "data": { - "version": "3.6.2", - "packageName": "enzyme-to-json", - "hash": "sha512-Ynm6Z6R6iwQ0g2g1YToz6DWhxVnt8Dy1ijR2zynRKxTyBGA8rCDXU3rs2Qc4OKvUvc2Qoe1bcFK6bnPs20TrTg==" - } - }, - "npm:tar-fs": { - "type": "npm", - "name": "npm:tar-fs", - "data": { - "version": "2.1.1", - "packageName": "tar-fs", - "hash": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==" - } - }, - "npm:tty-browserify": { - "type": "npm", - "name": "npm:tty-browserify", - "data": { - "version": "0.0.1", - "packageName": "tty-browserify", - "hash": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" - } - }, - "npm:watchpack-chokidar2": { - "type": "npm", - "name": "npm:watchpack-chokidar2", - "data": { - "version": "2.0.1", - "packageName": "watchpack-chokidar2", - "hash": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==" - } - }, - "npm:endent": { - "type": "npm", - "name": "npm:endent", - "data": { - "version": "2.0.1", - "packageName": "endent", - "hash": "sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:default-gateway": { - "type": "npm", - "name": "npm:default-gateway", - "data": { - "version": "6.0.3", - "packageName": "default-gateway", - "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - } - }, - "npm:@cypress/react": { - "type": "npm", - "name": "npm:@cypress/react", - "data": { - "version": "5.12.4", - "packageName": "@cypress/react", - "hash": "sha512-d44InxWKmwQKyCMQT/3n1UplYa39yKEQTPlb2HhXF6ickqtmhxw7kePv00yrJpBc9gy2jUkNUOfCbtt2uz1kUw==" - } - }, - "npm:state-toggle": { - "type": "npm", - "name": "npm:state-toggle", - "data": { - "version": "1.0.3", - "packageName": "state-toggle", - "hash": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" - } - }, - "npm:@types/node@10.17.13": { - "type": "npm", - "name": "npm:@types/node@10.17.13", - "data": { - "version": "10.17.13", - "packageName": "@types/node", - "hash": "sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg==" - } - }, - "npm:autoprefixer": { - "type": "npm", - "name": "npm:autoprefixer", - "data": { - "version": "10.2.1", - "packageName": "autoprefixer", - "hash": "sha512-dwP0UjyYvROUvtU+boBx8ff5pPWami1NGTrJs9YUsS/oZVbRAcdNHOOuXSA1fc46tgKqe072cVaKD69rvCc3QQ==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "2.0.0", - "packageName": "is-stream", - "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" - } - }, - "npm:@types/braces": { - "type": "npm", - "name": "npm:@types/braces", - "data": { - "version": "3.0.1", - "packageName": "@types/braces", - "hash": "sha512-+euflG6ygo4bn0JHtn4pYqcXwRtLvElQ7/nnjDu7iYG56H0+OhCd7d6Ug0IE3WcFpZozBKW2+80FUbv5QGk5AQ==" - } - }, - "npm:error-stack-parser": { - "type": "npm", - "name": "npm:error-stack-parser", - "data": { - "version": "2.0.6", - "packageName": "error-stack-parser", - "hash": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==" - } - }, - "npm:jsdom": { - "type": "npm", - "name": "npm:jsdom", - "data": { - "version": "20.0.3", - "packageName": "jsdom", - "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" - } - }, - "npm:enzyme": { - "type": "npm", - "name": "npm:enzyme", - "data": { - "version": "3.10.0", - "packageName": "enzyme", - "hash": "sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg==" - } - }, - "npm:lodash.mapvalues": { - "type": "npm", - "name": "npm:lodash.mapvalues", - "data": { - "version": "4.6.0", - "packageName": "lodash.mapvalues", - "hash": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=" - } - }, - "npm:nanomatch": { - "type": "npm", - "name": "npm:nanomatch", - "data": { - "version": "1.2.13", - "packageName": "nanomatch", - "hash": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==" - } - }, - "npm:danger": { - "type": "npm", - "name": "npm:danger", - "data": { - "version": "11.0.2", - "packageName": "danger", - "hash": "sha512-TKE5E1Zrb0uV7Ft3mhbTA3bwVf4hZs7DVx6Mo8weVdIcaXJIIle3+aCjn259GX9/pF4ewoYuof7eLRPJligOgA==" - } - }, - "npm:@storybook/telemetry": { - "type": "npm", - "name": "npm:@storybook/telemetry", - "data": { - "version": "6.5.15", - "packageName": "@storybook/telemetry", - "hash": "sha512-WHMRG6xMkEGscn1q4SotwzV8hxM1g3zHyXPN77iosY5zpOIn/qAzvkmW28V1DPH9jPWMZMizBgG1TIQvUpduXg==" - } - }, - "npm:path-browserify@0.0.1": { - "type": "npm", - "name": "npm:path-browserify@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "path-browserify", - "hash": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - } - }, - "npm:pathval": { - "type": "npm", - "name": "npm:pathval", - "data": { - "version": "1.1.1", - "packageName": "pathval", - "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:resolve-options": { - "type": "npm", - "name": "npm:resolve-options", - "data": { - "version": "1.1.0", - "packageName": "resolve-options", - "hash": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=" - } - }, - "npm:select-hose": { - "type": "npm", - "name": "npm:select-hose", - "data": { - "version": "2.0.0", - "packageName": "select-hose", - "hash": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" - } - }, - "npm:lru-cache@5.1.1": { - "type": "npm", - "name": "npm:lru-cache@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:@microsoft/fast-colors": { - "type": "npm", - "name": "npm:@microsoft/fast-colors", - "data": { - "version": "5.3.1", - "packageName": "@microsoft/fast-colors", - "hash": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" - } - }, - "npm:lodash.ismatch": { - "type": "npm", - "name": "npm:lodash.ismatch", - "data": { - "version": "4.4.0", - "packageName": "lodash.ismatch", - "hash": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=" - } - }, - "npm:conventional-changelog-core": { - "type": "npm", - "name": "npm:conventional-changelog-core", - "data": { - "version": "5.0.1", - "packageName": "conventional-changelog-core", - "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" - } - }, - "npm:node-gyp@6.1.0": { - "type": "npm", - "name": "npm:node-gyp@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "node-gyp", - "hash": "sha512-h4A2zDlOujeeaaTx06r4Vy+8MZ1679lU+wbCKDS4ZtvY2A37DESo37oejIw0mtmR3+rvNwts5B6Kpt1KrNYdNw==" - } - }, - "npm:semver-diff": { - "type": "npm", - "name": "npm:semver-diff", - "data": { - "version": "2.1.0", - "packageName": "semver-diff", - "hash": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "1.14.2", - "packageName": "serve-static", - "hash": "sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "4.0.3", - "packageName": "y18n", - "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:@typescript-eslint/visitor-keys@5.59.1": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@5.59.1", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-6waEYwBTCWryx0VJmP7JaM4FpipLsFl9CvYf2foAE8Qh/Y0s+bxWysciwOs0LTBED4JCaNxTZ5rGadB14M6dwA==" - } - }, - "npm:fork-ts-checker-webpack-plugin@4.1.6": { - "type": "npm", - "name": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "data": { - "version": "4.1.6", - "packageName": "fork-ts-checker-webpack-plugin", - "hash": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - } - }, - "npm:polished": { - "type": "npm", - "name": "npm:polished", - "data": { - "version": "4.2.2", - "packageName": "polished", - "hash": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==" - } - }, - "npm:arr-flatten": { - "type": "npm", - "name": "npm:arr-flatten", - "data": { - "version": "1.1.0", - "packageName": "arr-flatten", - "hash": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - } - }, - "npm:lru-cache@4.1.5": { - "type": "npm", - "name": "npm:lru-cache@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "lru-cache", - "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "1.0.2", - "packageName": "nth-check", - "hash": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==" - } - }, - "npm:through2@3.0.1": { - "type": "npm", - "name": "npm:through2@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "through2", - "hash": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==" - } - }, - "npm:clean-css": { - "type": "npm", - "name": "npm:clean-css", - "data": { - "version": "4.2.3", - "packageName": "clean-css", - "hash": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==" - } - }, - "npm:@emotion/is-prop-valid": { - "type": "npm", - "name": "npm:@emotion/is-prop-valid", - "data": { - "version": "0.8.8", - "packageName": "@emotion/is-prop-valid", - "hash": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" - } - }, - "npm:cli-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "3.0.0", - "packageName": "cli-width", - "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" - } - }, - "npm:nth-check@2.0.0": { - "type": "npm", - "name": "npm:nth-check@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "nth-check", - "hash": "sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q==" - } - }, - "npm:globals@13.12.0": { - "type": "npm", - "name": "npm:globals@13.12.0", - "data": { - "version": "13.12.0", - "packageName": "globals", - "hash": "sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==" - } - }, - "npm:ecdsa-sig-formatter": { - "type": "npm", - "name": "npm:ecdsa-sig-formatter", - "data": { - "version": "1.0.11", - "packageName": "ecdsa-sig-formatter", - "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" - } - }, - "npm:asn1": { - "type": "npm", - "name": "npm:asn1", - "data": { - "version": "0.2.4", - "packageName": "asn1", - "hash": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==" - } - }, - "npm:@babel/preset-flow": { - "type": "npm", - "name": "npm:@babel/preset-flow", - "data": { - "version": "7.14.5", - "packageName": "@babel/preset-flow", - "hash": "sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:compare-func": { - "type": "npm", - "name": "npm:compare-func", - "data": { - "version": "2.0.0", - "packageName": "compare-func", - "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "4.2.0", - "packageName": "domhandler", - "hash": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==" - } - }, - "npm:csstype@2.6.19": { - "type": "npm", - "name": "npm:csstype@2.6.19", - "data": { - "version": "2.6.19", - "packageName": "csstype", - "hash": "sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==" - } - }, - "npm:@storybook/addon-backgrounds": { - "type": "npm", - "name": "npm:@storybook/addon-backgrounds", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-backgrounds", - "hash": "sha512-9ddB3QIL8mRurf7TvYG1P9i1sW0b8Iik3kGlHggKogHER9WJPzbiUeH0XDjkASSa4rMCZdYn5CZKNkIAoJ2jdA==" - } - }, - "npm:@octokit/types@10.0.0": { - "type": "npm", - "name": "npm:@octokit/types@10.0.0", - "data": { - "version": "10.0.0", - "packageName": "@octokit/types", - "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" - } - }, - "npm:object-is": { - "type": "npm", - "name": "npm:object-is", - "data": { - "version": "1.1.5", - "packageName": "object-is", - "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" - } - }, - "npm:@jest/types": { - "type": "npm", - "name": "npm:@jest/types", - "data": { - "version": "29.6.3", - "packageName": "@jest/types", - "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" - } - }, - "npm:react-frame-component": { - "type": "npm", - "name": "npm:react-frame-component", - "data": { - "version": "4.1.1", - "packageName": "react-frame-component", - "hash": "sha512-NfJp90AvYA1R6+uSYafQ+n+UM2HjHqi4WGHeprVXa6quU9d8o6ZFRzQ36uemY82dlkZFzf2jigFx6E4UzNFajA==" - } - }, - "npm:jsonpointer": { - "type": "npm", - "name": "npm:jsonpointer", - "data": { - "version": "5.0.0", - "packageName": "jsonpointer", - "hash": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==" - } - }, - "npm:chalk@4.1.2": { - "type": "npm", - "name": "npm:chalk@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:@emotion/serialize": { - "type": "npm", - "name": "npm:@emotion/serialize", - "data": { - "version": "0.11.15", - "packageName": "@emotion/serialize", - "hash": "sha512-YE+qnrmGwyR+XB5j7Bi+0GT1JWsdcjM/d4POu+TXkcnrRs4RFCCsi3d/Ebf+wSStHqAlTT2+dfd+b9N9EO2KBg==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:fd-slicer": { - "type": "npm", - "name": "npm:fd-slicer", - "data": { - "version": "1.1.0", - "packageName": "fd-slicer", - "hash": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=" - } - }, - "npm:jest-circus": { - "type": "npm", - "name": "npm:jest-circus", - "data": { - "version": "29.7.0", - "packageName": "jest-circus", - "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" - } - }, - "npm:request-promise-native": { - "type": "npm", - "name": "npm:request-promise-native", - "data": { - "version": "1.0.9", - "packageName": "request-promise-native", - "hash": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==" - } - }, - "npm:rxjs": { - "type": "npm", - "name": "npm:rxjs", - "data": { - "version": "7.8.1", - "packageName": "rxjs", - "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:plugin-error": { - "type": "npm", - "name": "npm:plugin-error", - "data": { - "version": "1.0.1", - "packageName": "plugin-error", - "hash": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:to-through": { - "type": "npm", - "name": "npm:to-through", - "data": { - "version": "2.0.0", - "packageName": "to-through", - "hash": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=" - } - }, - "npm:cross-fetch": { - "type": "npm", - "name": "npm:cross-fetch", - "data": { - "version": "3.1.5", - "packageName": "cross-fetch", - "hash": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==" - } - }, - "npm:@linaria/shaker": { - "type": "npm", - "name": "npm:@linaria/shaker", - "data": { - "version": "3.0.0-beta.22", - "packageName": "@linaria/shaker", - "hash": "sha512-NOi71i/XfBJpBOT5eepRvv6B64IMdjsKwv+vxLW+IuFHx3wnqXgZsgimNK2qoXbpqy9xWsSEeB/4QA4m8GCUKQ==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "1.2.2", - "packageName": "colorette", - "hash": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" - } - }, - "npm:lodash.isequal": { - "type": "npm", - "name": "npm:lodash.isequal", - "data": { - "version": "4.5.0", - "packageName": "lodash.isequal", - "hash": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" - } - }, - "npm:typed-rest-client": { - "type": "npm", - "name": "npm:typed-rest-client", - "data": { - "version": "1.8.9", - "packageName": "typed-rest-client", - "hash": "sha512-uSmjE38B80wjL85UFX3sTYEUlvZ1JgCRhsWj/fJ4rZ0FqDUFoIuodtiVeE+cUqiVTOKPdKrp/sdftD15MDek6g==" - } - }, - "npm:which@2.0.2": { - "type": "npm", - "name": "npm:which@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:fraction.js": { - "type": "npm", - "name": "npm:fraction.js", - "data": { - "version": "4.2.0", - "packageName": "fraction.js", - "hash": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" - } - }, - "npm:data-urls": { - "type": "npm", - "name": "npm:data-urls", - "data": { - "version": "3.0.2", - "packageName": "data-urls", - "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" - } - }, - "npm:html-webpack-plugin": { - "type": "npm", - "name": "npm:html-webpack-plugin", - "data": { - "version": "5.1.0", - "packageName": "html-webpack-plugin", - "hash": "sha512-2axkp+2NHmvHUWrKe1dY4LyM3WatQEdFChr42OY7R/Ad7f0AQzaKscGCcqN/FtQBxo8rdfJP7M3RMFDttqok3g==" - } - }, - "npm:lodash.endswith": { - "type": "npm", - "name": "npm:lodash.endswith", - "data": { - "version": "4.2.1", - "packageName": "lodash.endswith", - "hash": "sha1-/tWawXOO0+I27dcGTsRWRIs3vAk=" - } - }, - "npm:object.defaults": { - "type": "npm", - "name": "npm:object.defaults", - "data": { - "version": "1.1.0", - "packageName": "object.defaults", - "hash": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=" - } - }, - "npm:@babel/plugin-syntax-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-logical-assignment-operators", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-logical-assignment-operators", - "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - } - }, - "npm:@types/unist": { - "type": "npm", - "name": "npm:@types/unist", - "data": { - "version": "2.0.6", - "packageName": "@types/unist", - "hash": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "2.6.4", - "packageName": "async", - "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" - } - }, - "npm:babel-runtime": { - "type": "npm", - "name": "npm:babel-runtime", - "data": { - "version": "6.26.0", - "packageName": "babel-runtime", - "hash": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=" - } - }, - "npm:formik": { - "type": "npm", - "name": "npm:formik", - "data": { - "version": "2.2.6", - "packageName": "formik", - "hash": "sha512-Kxk2zQRafy56zhLmrzcbryUpMBvT0tal5IvcifK5+4YNGelKsnrODFJ0sZQRMQboblWNym4lAW3bt+tf2vApSA==" - } - }, - "npm:dot-case": { - "type": "npm", - "name": "npm:dot-case", - "data": { - "version": "2.1.1", - "packageName": "dot-case", - "hash": "sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:process": { - "type": "npm", - "name": "npm:process", - "data": { - "version": "0.11.10", - "packageName": "process", - "hash": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" - } - }, - "npm:puppeteer": { - "type": "npm", - "name": "npm:puppeteer", - "data": { - "version": "19.6.0", - "packageName": "puppeteer", - "hash": "sha512-KpRjn/bosTWe8xOQ/F5J1UmQ4inR77ADddn8G6MqMPp/y9Tl+7EycXgrjO0/3i/OQfHi5bsvkTKXRkm0ieo/ew==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:synchronous-promise": { - "type": "npm", - "name": "npm:synchronous-promise", - "data": { - "version": "2.0.15", - "packageName": "synchronous-promise", - "hash": "sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==" - } - }, - "npm:webpack-dev-middleware": { - "type": "npm", - "name": "npm:webpack-dev-middleware", - "data": { - "version": "4.2.0", - "packageName": "webpack-dev-middleware", - "hash": "sha512-HVVpHw+5H4lfGasUKjpIkOy9TB27OyKiL13c+dhzVG1w77OQ87b408fp0qKDKQQkNGgShbStDzVJ8sK46JajXg==" - } - }, - "npm:liftoff": { - "type": "npm", - "name": "npm:liftoff", - "data": { - "version": "2.5.0", - "packageName": "liftoff", - "hash": "sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - } - }, - "npm:fs-constants": { - "type": "npm", - "name": "npm:fs-constants", - "data": { - "version": "1.0.0", - "packageName": "fs-constants", - "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - } - }, - "npm:@microsoft/tsdoc@0.14.2": { - "type": "npm", - "name": "npm:@microsoft/tsdoc@0.14.2", - "data": { - "version": "0.14.2", - "packageName": "@microsoft/tsdoc", - "hash": "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==" - } - }, - "npm:@dnd-kit/sortable": { - "type": "npm", - "name": "npm:@dnd-kit/sortable", - "data": { - "version": "7.0.2", - "packageName": "@dnd-kit/sortable", - "hash": "sha512-wDkBHHf9iCi1veM834Gbk1429bd4lHX4RpAwT0y2cHLf246GAvU2sVw/oxWNpPKQNQRQaeGXhAVgrOl1IT+iyA==" - } - }, - "npm:@jest/transform@26.6.2": { - "type": "npm", - "name": "npm:@jest/transform@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "@jest/transform", - "hash": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==" - } - }, - "npm:memfs@3.4.1": { - "type": "npm", - "name": "npm:memfs@3.4.1", - "data": { - "version": "3.4.1", - "packageName": "memfs", - "hash": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==" - } - }, - "npm:functional-red-black-tree": { - "type": "npm", - "name": "npm:functional-red-black-tree", - "data": { - "version": "1.0.1", - "packageName": "functional-red-black-tree", - "hash": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" - } - }, - "npm:@nevware21/ts-async": { - "type": "npm", - "name": "npm:@nevware21/ts-async", - "data": { - "version": "0.2.6", - "packageName": "@nevware21/ts-async", - "hash": "sha512-NCUqEZSbsy7LVtKlUScd/eTst6djkWauLlzoIPVKCOxalEBdO8lrgNRIm4Xy68JNudNN5faqa2WA12X8m0BVhA==" - } - }, - "npm:core-js-compat": { - "type": "npm", - "name": "npm:core-js-compat", - "data": { - "version": "3.33.1", - "packageName": "core-js-compat", - "hash": "sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==" - } - }, - "npm:ora@3.4.0": { - "type": "npm", - "name": "npm:ora@3.4.0", - "data": { - "version": "3.4.0", - "packageName": "ora", - "hash": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==" - } - }, - "npm:rsvp": { - "type": "npm", - "name": "npm:rsvp", - "data": { - "version": "4.8.5", - "packageName": "rsvp", - "hash": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" - } - }, - "npm:@types/loader-utils": { - "type": "npm", - "name": "npm:@types/loader-utils", - "data": { - "version": "2.0.3", - "packageName": "@types/loader-utils", - "hash": "sha512-sDXXzZnTLXgdso54/iOpAFSDgqhVXabCvwGAt77Agadh/Xk0QYgOk520r3tpOouI098gyqGIFywx8Op1voc3vQ==" - } - }, - "npm:axobject-query": { - "type": "npm", - "name": "npm:axobject-query", - "data": { - "version": "2.2.0", - "packageName": "axobject-query", - "hash": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" - } - }, - "npm:globby@6.1.0": { - "type": "npm", - "name": "npm:globby@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "globby", - "hash": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=" - } - }, - "npm:react-hot-loader": { - "type": "npm", - "name": "npm:react-hot-loader", - "data": { - "version": "4.13.0", - "packageName": "react-hot-loader", - "hash": "sha512-JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA==" - } - }, - "npm:@types/react-router": { - "type": "npm", - "name": "npm:@types/react-router", - "data": { - "version": "5.1.4", - "packageName": "@types/react-router", - "hash": "sha512-PZtnBuyfL07sqCJvGg3z+0+kt6fobc/xmle08jBiezLS8FrmGeiGkJnuxL/8Zgy9L83ypUhniV5atZn/L8n9MQ==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:@microsoft/applicationinsights-common": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-common", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-common", - "hash": "sha512-y+WXWop+OVim954Cu1uyYMnNx6PWO8okHpZIQi/1YSqtqaYdtJVPv4P0AVzwJdohxzVfgzKvqj9nec/VWqE2Zg==" - } - }, - "npm:csv-stringify": { - "type": "npm", - "name": "npm:csv-stringify", - "data": { - "version": "6.2.0", - "packageName": "csv-stringify", - "hash": "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA==" - } - }, - "npm:@octokit/core@4.2.4": { - "type": "npm", - "name": "npm:@octokit/core@4.2.4", - "data": { - "version": "4.2.4", - "packageName": "@octokit/core", - "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:@azure/core-asynciterator-polyfill": { - "type": "npm", - "name": "npm:@azure/core-asynciterator-polyfill", - "data": { - "version": "1.0.0", - "packageName": "@azure/core-asynciterator-polyfill", - "hash": "sha512-kmv8CGrPfN9SwMwrkiBK9VTQYxdFQEGe0BmQk+M8io56P9KNzpAxcWE/1fxJj7uouwN4kXF0BHW8DNlgx+wtCg==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:webpack-virtual-modules@0.4.3": { - "type": "npm", - "name": "npm:webpack-virtual-modules@0.4.3", - "data": { - "version": "0.4.3", - "packageName": "webpack-virtual-modules", - "hash": "sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==" - } - }, - "npm:unified@9.2.0": { - "type": "npm", - "name": "npm:unified@9.2.0", - "data": { - "version": "9.2.0", - "packageName": "unified", - "hash": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==" - } - }, - "npm:@microsoft/tsdoc": { - "type": "npm", - "name": "npm:@microsoft/tsdoc", - "data": { - "version": "0.14.1", - "packageName": "@microsoft/tsdoc", - "hash": "sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==" - } - }, - "npm:css-loader@3.6.0": { - "type": "npm", - "name": "npm:css-loader@3.6.0", - "data": { - "version": "3.6.0", - "packageName": "css-loader", - "hash": "sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==" - } - }, - "npm:easy-stack": { - "type": "npm", - "name": "npm:easy-stack", - "data": { - "version": "1.0.0", - "packageName": "easy-stack", - "hash": "sha1-EskbMIWjfwuqM26UhurEv5Tj54g=" - } - }, - "npm:esbuild-linux-riscv64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-riscv64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-riscv64", - "hash": "sha512-syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==" - } - }, - "npm:@storybook/preview-web": { - "type": "npm", - "name": "npm:@storybook/preview-web", - "data": { - "version": "6.5.15", - "packageName": "@storybook/preview-web", - "hash": "sha512-gIHABSAD0JS0iRaG67BnSDq/q8Zf4fFwEWBQOSYgcEx2TzhAUeSkhGZUQHdlOTCwuA2PpXT0/cWDH8u2Ev+msg==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.17.1", - "packageName": "@types/body-parser", - "hash": "sha512-RoX2EZjMiFMjZh9lmYrwgoP9RTpAjSHiJxdp4oidAQVO02T7HER3xj9UKue5534ULWeqVEkujhWcyvUce+d68w==" - } - }, - "npm:z-schema": { - "type": "npm", - "name": "npm:z-schema", - "data": { - "version": "5.0.2", - "packageName": "z-schema", - "hash": "sha512-40TH47ukMHq5HrzkeVE40Ad7eIDKaRV2b+Qpi2prLc9X9eFJFzV7tMe5aH12e6avaSS/u5l653EQOv+J9PirPw==" - } - }, - "npm:are-we-there-yet": { - "type": "npm", - "name": "npm:are-we-there-yet", - "data": { - "version": "1.1.5", - "packageName": "are-we-there-yet", - "hash": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==" - } - }, - "npm:monaco-editor": { - "type": "npm", - "name": "npm:monaco-editor", - "data": { - "version": "0.33.0", - "packageName": "monaco-editor", - "hash": "sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==" - } - }, - "npm:@octokit/types": { - "type": "npm", - "name": "npm:@octokit/types", - "data": { - "version": "6.41.0", - "packageName": "@octokit/types", - "hash": "sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==" - } - }, - "npm:jest-get-type": { - "type": "npm", - "name": "npm:jest-get-type", - "data": { - "version": "29.6.3", - "packageName": "jest-get-type", - "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" - } - }, - "npm:lodash._reescape": { - "type": "npm", - "name": "npm:lodash._reescape", - "data": { - "version": "3.0.0", - "packageName": "lodash._reescape", - "hash": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=" - } - }, - "npm:node-plop": { - "type": "npm", - "name": "npm:node-plop", - "data": { - "version": "0.25.0", - "packageName": "node-plop", - "hash": "sha512-OFvnTsDw9nxNdLrYcveJhU2Hnzg+AxOz6xBk8uXsi0vCOSP7Rng98pdgfsuZKyCN+qrc+/fSwlNC5hkXhJ6gww==" - } - }, - "npm:@textlint/markdown-to-ast": { - "type": "npm", - "name": "npm:@textlint/markdown-to-ast", - "data": { - "version": "6.1.7", - "packageName": "@textlint/markdown-to-ast", - "hash": "sha512-B0QtokeQR4a9+4q0NQr8T9l7A1fFihTN5Ze57tVgqW+3ymzXEouh8DvPHeNQ4T6jEkAThvdjk95mxAMpGRJ79w==" - } - }, - "npm:hast-util-from-parse5": { - "type": "npm", - "name": "npm:hast-util-from-parse5", - "data": { - "version": "6.0.1", - "packageName": "hast-util-from-parse5", - "hash": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==" - } - }, - "npm:tunnel": { - "type": "npm", - "name": "npm:tunnel", - "data": { - "version": "0.0.6", - "packageName": "tunnel", - "hash": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:mkdirp-classic": { - "type": "npm", - "name": "npm:mkdirp-classic", - "data": { - "version": "0.5.3", - "packageName": "mkdirp-classic", - "hash": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - } - }, - "npm:strip-indent": { - "type": "npm", - "name": "npm:strip-indent", - "data": { - "version": "3.0.0", - "packageName": "strip-indent", - "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" - } - }, - "npm:onetime@2.0.1": { - "type": "npm", - "name": "npm:onetime@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "onetime", - "hash": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=" - } - }, - "npm:builtin-status-codes": { - "type": "npm", - "name": "npm:builtin-status-codes", - "data": { - "version": "3.0.0", - "packageName": "builtin-status-codes", - "hash": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" - } - }, - "npm:querystring": { - "type": "npm", - "name": "npm:querystring", - "data": { - "version": "0.2.0", - "packageName": "querystring", - "hash": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - } - }, - "npm:rechoir@0.7.0": { - "type": "npm", - "name": "npm:rechoir@0.7.0", - "data": { - "version": "0.7.0", - "packageName": "rechoir", - "hash": "sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q==" - } - }, - "npm:tsconfig-paths@4.2.0": { - "type": "npm", - "name": "npm:tsconfig-paths@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:eslint-visitor-keys@2.0.0": { - "type": "npm", - "name": "npm:eslint-visitor-keys@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" - } - }, - "npm:lie": { - "type": "npm", - "name": "npm:lie", - "data": { - "version": "3.3.0", - "packageName": "lie", - "hash": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:di": { - "type": "npm", - "name": "npm:di", - "data": { - "version": "0.0.1", - "packageName": "di", - "hash": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.13", - "packageName": "node-releases", - "hash": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" - } - }, - "npm:detect-node": { - "type": "npm", - "name": "npm:detect-node", - "data": { - "version": "2.0.4", - "packageName": "detect-node", - "hash": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.2", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==" - } - }, - "npm:mdast-util-to-string": { - "type": "npm", - "name": "npm:mdast-util-to-string", - "data": { - "version": "1.1.0", - "packageName": "mdast-util-to-string", - "hash": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==" - } - }, - "npm:@babel/plugin-transform-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-methods", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-private-methods", - "hash": "sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==" - } - }, - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==" - } - }, - "npm:parallel-transform": { - "type": "npm", - "name": "npm:parallel-transform", - "data": { - "version": "1.1.0", - "packageName": "parallel-transform", - "hash": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=" - } - }, - "npm:rimraf@2.7.1": { - "type": "npm", - "name": "npm:rimraf@2.7.1", - "data": { - "version": "2.7.1", - "packageName": "rimraf", - "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" - } - }, - "npm:node-domexception": { - "type": "npm", - "name": "npm:node-domexception", - "data": { - "version": "1.0.0", - "packageName": "node-domexception", - "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" - } - }, - "npm:connect-history-api-fallback": { - "type": "npm", - "name": "npm:connect-history-api-fallback", - "data": { - "version": "1.6.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - } - }, - "npm:@babel/plugin-proposal-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==" - } - }, - "npm:@types/graphviz": { - "type": "npm", - "name": "npm:@types/graphviz", - "data": { - "version": "0.0.34", - "packageName": "@types/graphviz", - "hash": "sha512-5pyobgT+/NhwKy/LMLw14xFInvYXBPx4ITc2a5FvZbm6hcudcP73DpTKTlaZbjr8fdNAkaK9KdP8GAEF0iBwlQ==" - } - }, - "npm:@types/micromatch": { - "type": "npm", - "name": "npm:@types/micromatch", - "data": { - "version": "4.0.2", - "packageName": "@types/micromatch", - "hash": "sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==" - } - }, - "npm:d3-path@3.1.0": { - "type": "npm", - "name": "npm:d3-path@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "d3-path", - "hash": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==" - } - }, - "npm:node-machine-id": { - "type": "npm", - "name": "npm:node-machine-id", - "data": { - "version": "1.1.12", - "packageName": "node-machine-id", - "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" - } - }, - "npm:playwright": { - "type": "npm", - "name": "npm:playwright", - "data": { - "version": "1.27.1", - "packageName": "playwright", - "hash": "sha512-xXYZ7m36yTtC+oFgqH0eTgullGztKSRMb4yuwLPl8IYSmgBM88QiB+3IWb1mRIC9/NNwcgbG0RwtFlg+EAFQHQ==" - } - }, - "npm:html-webpack-plugin@4.5.2": { - "type": "npm", - "name": "npm:html-webpack-plugin@4.5.2", - "data": { - "version": "4.5.2", - "packageName": "html-webpack-plugin", - "hash": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==" - } - }, - "npm:plugin-error@0.1.2": { - "type": "npm", - "name": "npm:plugin-error@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "plugin-error", - "hash": "sha1-O5uzM1zPAPQl4HQ34ZJ2ln2kes4=" - } - }, - "npm:create-ecdh": { - "type": "npm", - "name": "npm:create-ecdh", - "data": { - "version": "4.0.3", - "packageName": "create-ecdh", - "hash": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==" - } - }, - "npm:are-we-there-yet@2.0.0": { - "type": "npm", - "name": "npm:are-we-there-yet@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "are-we-there-yet", - "hash": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==" - } - }, - "npm:camelcase@4.1.0": { - "type": "npm", - "name": "npm:camelcase@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "camelcase", - "hash": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" - } - }, - "npm:p-map@5.5.0": { - "type": "npm", - "name": "npm:p-map@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "p-map", - "hash": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "1.19.2", - "packageName": "body-parser", - "hash": "sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==" - } - }, - "npm:ordered-read-streams": { - "type": "npm", - "name": "npm:ordered-read-streams", - "data": { - "version": "1.0.1", - "packageName": "ordered-read-streams", - "hash": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=" - } - }, - "npm:react-node-resolver": { - "type": "npm", - "name": "npm:react-node-resolver", - "data": { - "version": "1.0.1", - "packageName": "react-node-resolver", - "hash": "sha1-F5inKcDiGL8vDo3fecVQ1K9h2Do=" - } - }, - "npm:cssjanus": { - "type": "npm", - "name": "npm:cssjanus", - "data": { - "version": "2.1.0", - "packageName": "cssjanus", - "hash": "sha512-kAijbny3GmdOi9k+QT6DGIXqFvL96aksNlGr4Rhk9qXDZYWUojU4bRc3IHWxdaLNOqgEZHuXoe5Wl2l7dxLW5g==" - } - }, - "npm:run-queue": { - "type": "npm", - "name": "npm:run-queue", - "data": { - "version": "1.0.3", - "packageName": "run-queue", - "hash": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=" - } - }, - "npm:yallist@3.1.1": { - "type": "npm", - "name": "npm:yallist@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.22.15", - "packageName": "@babel/template", - "hash": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==" - } - }, - "npm:sort-keys@1.1.2": { - "type": "npm", - "name": "npm:sort-keys@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "sort-keys", - "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" - } - }, - "npm:is-installed-globally@0.1.0": { - "type": "npm", - "name": "npm:is-installed-globally@0.1.0", - "data": { - "version": "0.1.0", - "packageName": "is-installed-globally", - "hash": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=" - } - }, - "npm:jest-each": { - "type": "npm", - "name": "npm:jest-each", - "data": { - "version": "29.7.0", - "packageName": "jest-each", - "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" - } - }, - "npm:hast-util-to-parse5": { - "type": "npm", - "name": "npm:hast-util-to-parse5", - "data": { - "version": "6.0.0", - "packageName": "hast-util-to-parse5", - "hash": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==" - } - }, - "npm:jest-worker@27.5.1": { - "type": "npm", - "name": "npm:jest-worker@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-worker", - "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - } - }, - "npm:language-subtag-registry": { - "type": "npm", - "name": "npm:language-subtag-registry", - "data": { - "version": "0.3.21", - "packageName": "language-subtag-registry", - "hash": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:fsevents@2.3.3": { - "type": "npm", - "name": "npm:fsevents@2.3.3", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "2.0.0", - "packageName": "sort-keys", - "hash": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=" - } - }, - "npm:gulplog": { - "type": "npm", - "name": "npm:gulplog", - "data": { - "version": "1.0.0", - "packageName": "gulplog", - "hash": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.0.2", - "packageName": "pure-rand", - "hash": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==" - } - }, - "npm:@esbuild/netbsd-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-WNa5zZk1XpTTwMDompZmvQLHszDDDN7lYjEHCUmAGB83Bgs20EMs7ICD+oKeT6xt4phV4NDdSi/8OfjPbSbZfQ==" - } - }, - "npm:is-buffer": { - "type": "npm", - "name": "npm:is-buffer", - "data": { - "version": "1.1.6", - "packageName": "is-buffer", - "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - } - }, - "npm:unique-slug@3.0.0": { - "type": "npm", - "name": "npm:unique-slug@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "unique-slug", - "hash": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" - } - }, - "npm:qs@6.9.7": { - "type": "npm", - "name": "npm:qs@6.9.7", - "data": { - "version": "6.9.7", - "packageName": "qs", - "hash": "sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==" - } - }, - "npm:write-file-atomic@3.0.3": { - "type": "npm", - "name": "npm:write-file-atomic@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "write-file-atomic", - "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" - } - }, - "npm:unist-util-position": { - "type": "npm", - "name": "npm:unist-util-position", - "data": { - "version": "3.0.4", - "packageName": "unist-util-position", - "hash": "sha512-tWvIbV8goayTjobxDIr4zVTyG+Q7ragMSMeKC3xnPl9xzIc0+she8mxXLM3JVNDDsfARPbCd3XdzkyLdo7fF3g==" - } - }, - "npm:@types/enzyme": { - "type": "npm", - "name": "npm:@types/enzyme", - "data": { - "version": "3.10.7", - "packageName": "@types/enzyme", - "hash": "sha512-J+0wduPGAkzOvW7sr6hshGv1gBI3WXLRTczkRKzVPxLP3xAkYxZmvvagSBPw8Z452fZ8TGUxCmAXcb44yLQksw==" - } - }, - "npm:@types/gulp": { - "type": "npm", - "name": "npm:@types/gulp", - "data": { - "version": "4.0.9", - "packageName": "@types/gulp", - "hash": "sha512-zzT+wfQ8uwoXjDhRK9Zkmmk09/fbLLmN/yDHFizJiEKIve85qutOnXcP/TM2sKPBTU+Jc16vfPbOMkORMUBN7Q==" - } - }, - "npm:@npmcli/promise-spawn": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn", - "data": { - "version": "1.2.0", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-nFtqjVETliApiRdjbYwKwhlSHx2ZMagyj5b9YbNt0BWeeOVxJd47ZVE2u16vxDHyTOZvk+YLV7INwfAE9a2uow==" - } - }, - "npm:base64id": { - "type": "npm", - "name": "npm:base64id", - "data": { - "version": "2.0.0", - "packageName": "base64id", - "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" - } - }, - "npm:cloneable-readable": { - "type": "npm", - "name": "npm:cloneable-readable", - "data": { - "version": "1.1.3", - "packageName": "cloneable-readable", - "hash": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "3.4.1", - "packageName": "eslint-visitor-keys", - "hash": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==" - } - }, - "npm:comma-separated-tokens": { - "type": "npm", - "name": "npm:comma-separated-tokens", - "data": { - "version": "1.0.7", - "packageName": "comma-separated-tokens", - "hash": "sha512-Jrx3xsP4pPv4AwJUDWY9wOXGtwPXARej6Xd99h4TUGotmf8APuquKMpK+dnD3UgyxK7OEWaisjZz+3b5jtL6xQ==" - } - }, - "npm:react-test-renderer": { - "type": "npm", - "name": "npm:react-test-renderer", - "data": { - "version": "17.0.2", - "packageName": "react-test-renderer", - "hash": "sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==" - } - }, - "npm:rimraf@4.4.1": { - "type": "npm", - "name": "npm:rimraf@4.4.1", - "data": { - "version": "4.4.1", - "packageName": "rimraf", - "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" - } - }, - "npm:safe-regex": { - "type": "npm", - "name": "npm:safe-regex", - "data": { - "version": "1.1.0", - "packageName": "safe-regex", - "hash": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=" - } - }, - "npm:strip-ansi@5.2.0": { - "type": "npm", - "name": "npm:strip-ansi@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "strip-ansi", - "hash": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" - } - }, - "npm:@storybook/router": { - "type": "npm", - "name": "npm:@storybook/router", - "data": { - "version": "6.5.15", - "packageName": "@storybook/router", - "hash": "sha512-9t8rI8t7/Krolau29gsdjdbRQ66orONIyP0efp0EukVgv6reNFzb/U14ARrl0uHys6Tl5Xyece9FoakQUdn8Kg==" - } - }, - "npm:columnify": { - "type": "npm", - "name": "npm:columnify", - "data": { - "version": "1.6.0", - "packageName": "columnify", - "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" - } - }, - "npm:devtools-protocol@0.0.1082910": { - "type": "npm", - "name": "npm:devtools-protocol@0.0.1082910", - "data": { - "version": "0.0.1082910", - "packageName": "devtools-protocol", - "hash": "sha512-RqoZ2GmqaNxyx+99L/RemY5CkwG9D0WEfOKxekwCRXOGrDCep62ngezEJUVMq6rISYQ+085fJnWDQqGHlxVNww==" - } - }, - "npm:d3-interpolate": { - "type": "npm", - "name": "npm:d3-interpolate", - "data": { - "version": "1.4.0", - "packageName": "d3-interpolate", - "hash": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==" - } - }, - "npm:faker": { - "type": "npm", - "name": "npm:faker", - "data": { - "version": "4.1.0", - "packageName": "faker", - "hash": "sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8=" - } - }, - "npm:@opentelemetry/api@1.0.3": { - "type": "npm", - "name": "npm:@opentelemetry/api@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "@opentelemetry/api", - "hash": "sha512-puWxACExDe9nxbBB3lOymQFrLYml2dVOrd7USiVRnSbgXE+KwBu+HxFvxrzfqsiSda9IWsXJG1ef7C1O2/GmKQ==" - } - }, - "npm:liftoff@3.1.0": { - "type": "npm", - "name": "npm:liftoff@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "liftoff", - "hash": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==" - } - }, - "npm:address": { - "type": "npm", - "name": "npm:address", - "data": { - "version": "1.1.2", - "packageName": "address", - "hash": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" - } - }, - "npm:@babel/plugin-transform-shorthand-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-shorthand-properties", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==" - } - }, - "npm:@esbuild/freebsd-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-nSO5uZT2clM6hosjWHAsS15hLrwCvIWx+b2e3lZ3MwbYSaXwvfO528OF+dLjas1g3bZonciivI8qKR/Hm7IWGw==" - } - }, - "npm:pbkdf2": { - "type": "npm", - "name": "npm:pbkdf2", - "data": { - "version": "3.0.17", - "packageName": "pbkdf2", - "hash": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==" - } - }, - "npm:each-props": { - "type": "npm", - "name": "npm:each-props", - "data": { - "version": "1.3.2", - "packageName": "each-props", - "hash": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:react-table": { - "type": "npm", - "name": "npm:react-table", - "data": { - "version": "7.1.0", - "packageName": "react-table", - "hash": "sha512-AZpgW0Xpo6Z7jxXZIBovzCGoYVkuBwATsJh7X4+JXwq9JtDaorOmxWC9gKx5Hui4d+n+I99enyyJS+LRtKydxA==" - } - }, - "npm:style-loader": { - "type": "npm", - "name": "npm:style-loader", - "data": { - "version": "2.0.0", - "packageName": "style-loader", - "hash": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==" - } - }, - "npm:istanbul-instrumenter-loader": { - "type": "npm", - "name": "npm:istanbul-instrumenter-loader", - "data": { - "version": "3.0.1", - "packageName": "istanbul-instrumenter-loader", - "hash": "sha512-a5SPObZgS0jB/ixaKSMdn6n/gXSrK2S6q/UfRJBT3e6gQmVjwZROTODQsYW5ZNwOu78hG62Y3fWlebaVOL0C+w==" - } - }, - "npm:@azure/core-xml": { - "type": "npm", - "name": "npm:@azure/core-xml", - "data": { - "version": "1.0.0", - "packageName": "@azure/core-xml", - "hash": "sha512-VSM3wQomzRZk4SnDK5vKaROON/d3hgfl+D/pfLjpGR8gxRGuO0I8R+Rp/qj6Cq3x7HPgUqrii3/s/RRwDWWdvQ==" - } - }, - "npm:tsconfig-paths-webpack-plugin": { - "type": "npm", - "name": "npm:tsconfig-paths-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "tsconfig-paths-webpack-plugin", - "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" - } - }, - "npm:create-hash": { - "type": "npm", - "name": "npm:create-hash", - "data": { - "version": "1.2.0", - "packageName": "create-hash", - "hash": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==" - } - }, - "npm:flagged-respawn": { - "type": "npm", - "name": "npm:flagged-respawn", - "data": { - "version": "1.0.1", - "packageName": "flagged-respawn", - "hash": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==" - } - }, - "npm:tsscmp": { - "type": "npm", - "name": "npm:tsscmp", - "data": { - "version": "1.0.6", - "packageName": "tsscmp", - "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" - } - }, - "npm:require-package-name": { - "type": "npm", - "name": "npm:require-package-name", - "data": { - "version": "2.0.1", - "packageName": "require-package-name", - "hash": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=" - } - }, - "npm:underscore": { - "type": "npm", - "name": "npm:underscore", - "data": { - "version": "1.12.1", - "packageName": "underscore", - "hash": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" - } - }, - "npm:inline-style-parser": { - "type": "npm", - "name": "npm:inline-style-parser", - "data": { - "version": "0.1.1", - "packageName": "inline-style-parser", - "hash": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" - } - }, - "npm:ansi-regex@6.0.1": { - "type": "npm", - "name": "npm:ansi-regex@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "ansi-regex", - "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "2.4.3", - "packageName": "raw-body", - "hash": "sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==" - } - }, - "npm:deep-assign": { - "type": "npm", - "name": "npm:deep-assign", - "data": { - "version": "2.0.0", - "packageName": "deep-assign", - "hash": "sha1-6+BrHwfwja5ZdiDj3RYi83GhxXI=" - } - }, - "npm:cli-boxes@1.0.0": { - "type": "npm", - "name": "npm:cli-boxes@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "cli-boxes", - "hash": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=" - } - }, - "npm:@rushstack/package-deps-hash": { - "type": "npm", - "name": "npm:@rushstack/package-deps-hash", - "data": { - "version": "3.2.40", - "packageName": "@rushstack/package-deps-hash", - "hash": "sha512-0nnhbWrYE8mdEZXYXY9wOGEMFW3VtZ7+vgh6CJeyY95MDqjz6Alx2PpAHM1T53TNDV/LNFagwl0AzivfJnjhCw==" - } - }, - "npm:airbnb-js-shims": { - "type": "npm", - "name": "npm:airbnb-js-shims", - "data": { - "version": "2.2.1", - "packageName": "airbnb-js-shims", - "hash": "sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.6.4", - "packageName": "@types/babel__generator", - "hash": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==" - } - }, - "npm:ansi-styles@3.2.1": { - "type": "npm", - "name": "npm:ansi-styles@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-regex@3.0.1": { - "type": "npm", - "name": "npm:ansi-regex@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "ansi-regex", - "hash": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" - } - }, - "npm:babel-plugin-annotate-pure-imports": { - "type": "npm", - "name": "npm:babel-plugin-annotate-pure-imports", - "data": { - "version": "1.0.0-1", - "packageName": "babel-plugin-annotate-pure-imports", - "hash": "sha512-BJk9paXY1qh7amBLwWfhWbvxFWsUCmiz6NSnpTbP5T4EAM0PwvCr6U5bz+0NbCADphziPMVgbt/M+/06oV+1GA==" - } - }, - "npm:@fluentui/react-icons": { - "type": "npm", - "name": "npm:@fluentui/react-icons", - "data": { - "version": "2.0.217", - "packageName": "@fluentui/react-icons", - "hash": "sha512-kTaocW+UuLTzEaTobzQTQZX5lamall7U8p4n9aibcGQYeNPtxhRvdNJK8SNkKoSGCukx46mB2hDfc0mKvky+wQ==" - } - }, - "npm:conventional-commits-filter": { - "type": "npm", - "name": "npm:conventional-commits-filter", - "data": { - "version": "3.0.0", - "packageName": "conventional-commits-filter", - "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "1.2.0", - "packageName": "css-select", - "hash": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=" - } - }, - "npm:esbuild-freebsd-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-freebsd-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-freebsd-64", - "hash": "sha512-cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==" - } - }, - "npm:events": { - "type": "npm", - "name": "npm:events", - "data": { - "version": "3.3.0", - "packageName": "events", - "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - } - }, - "npm:are-we-there-yet@3.0.1": { - "type": "npm", - "name": "npm:are-we-there-yet@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "are-we-there-yet", - "hash": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:@nrwl/linter": { - "type": "npm", - "name": "npm:@nrwl/linter", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/linter", - "hash": "sha512-XvMuTeIc2I3630iaqhlV4w3qgABQIo+kv8mT0DbT1HfjjZDm4ST8hrvkdWSf9mCl24vShNL8GDVQVNOX0bZY5A==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:got@6.7.1": { - "type": "npm", - "name": "npm:got@6.7.1", - "data": { - "version": "6.7.1", - "packageName": "got", - "hash": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "7.25.0", - "packageName": "eslint", - "hash": "sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==" - } - }, - "npm:inflation": { - "type": "npm", - "name": "npm:inflation", - "data": { - "version": "2.0.0", - "packageName": "inflation", - "hash": "sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==" - } - }, - "npm:inquirer@8.2.4": { - "type": "npm", - "name": "npm:inquirer@8.2.4", - "data": { - "version": "8.2.4", - "packageName": "inquirer", - "hash": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==" - } - }, - "npm:is-whitespace-character": { - "type": "npm", - "name": "npm:is-whitespace-character", - "data": { - "version": "1.0.4", - "packageName": "is-whitespace-character", - "hash": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" - } - }, - "npm:keyborg": { - "type": "npm", - "name": "npm:keyborg", - "data": { - "version": "2.3.0", - "packageName": "keyborg", - "hash": "sha512-TU7VDxohtY7Rf4rTuCwa8QrHjya4eqKiSThI3lHF/wcBpm29gAui/vy0wY8l3ahcFEJ9tZhV+iduXPo6EkNQXw==" - } - }, - "npm:kind-of@4.0.0": { - "type": "npm", - "name": "npm:kind-of@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "kind-of", - "hash": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=" - } - }, - "npm:dom-walk": { - "type": "npm", - "name": "npm:dom-walk", - "data": { - "version": "0.1.1", - "packageName": "dom-walk", - "hash": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" - } - }, - "npm:is-stream@1.1.0": { - "type": "npm", - "name": "npm:is-stream@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - } - }, - "npm:crypto-random-string": { - "type": "npm", - "name": "npm:crypto-random-string", - "data": { - "version": "1.0.0", - "packageName": "crypto-random-string", - "hash": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" - } - }, - "npm:libnpmaccess": { - "type": "npm", - "name": "npm:libnpmaccess", - "data": { - "version": "7.0.2", - "packageName": "libnpmaccess", - "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" - } - }, - "npm:@emotion/core": { - "type": "npm", - "name": "npm:@emotion/core", - "data": { - "version": "10.1.1", - "packageName": "@emotion/core", - "hash": "sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==" - } - }, - "npm:@types/execa": { - "type": "npm", - "name": "npm:@types/execa", - "data": { - "version": "0.9.0", - "packageName": "@types/execa", - "hash": "sha512-mgfd93RhzjYBUHHV532turHC2j4l/qxsF/PbfDmprHDEUHmNZGlDn1CEsulGK3AfsPdhkWzZQT/S/k0UGhLGsA==" - } - }, - "npm:lodash.keys@3.1.2": { - "type": "npm", - "name": "npm:lodash.keys@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "lodash.keys", - "hash": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "6.0.0", - "packageName": "lru-cache", - "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - } - }, - "npm:ms@2.1.1": { - "type": "npm", - "name": "npm:ms@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ms", - "hash": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - } - }, - "npm:ky-universal": { - "type": "npm", - "name": "npm:ky-universal", - "data": { - "version": "0.3.0", - "packageName": "ky-universal", - "hash": "sha512-CM4Bgb2zZZpsprcjI6DNYTaH3oGHXL2u7BU4DK+lfCuC4snkt9/WRpMYeKbBbXscvKkeqBwzzjFX2WwmKY5K/A==" - } - }, - "npm:nan@2.15.0": { - "type": "npm", - "name": "npm:nan@2.15.0", - "data": { - "version": "2.15.0", - "packageName": "nan", - "hash": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" - } - }, - "npm:next-tick": { - "type": "npm", - "name": "npm:next-tick", - "data": { - "version": "1.0.0", - "packageName": "next-tick", - "hash": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - } - }, - "npm:path-type@3.0.0": { - "type": "npm", - "name": "npm:path-type@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-type", - "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" - } - }, - "npm:ramda": { - "type": "npm", - "name": "npm:ramda", - "data": { - "version": "0.26.1", - "packageName": "ramda", - "hash": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==" - } - }, - "npm:sass-loader": { - "type": "npm", - "name": "npm:sass-loader", - "data": { - "version": "12.4.0", - "packageName": "sass-loader", - "hash": "sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg==" - } - }, - "npm:strip-json-comments@2.0.1": { - "type": "npm", - "name": "npm:strip-json-comments@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "strip-json-comments", - "hash": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" - } - }, - "npm:json-parse-even-better-errors@3.0.0": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==" - } - }, - "npm:util.promisify": { - "type": "npm", - "name": "npm:util.promisify", - "data": { - "version": "1.0.0", - "packageName": "util.promisify", - "hash": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==" - } - }, - "npm:@floating-ui/devtools": { - "type": "npm", - "name": "npm:@floating-ui/devtools", - "data": { - "version": "0.0.1", - "packageName": "@floating-ui/devtools", - "hash": "sha512-itUtNTkiHPfvRDOrAFKLCYEEZ3PrSIir44El6AoBBl7IbmciAx4CxXVfIWjSCIZdZnHFaeXg6vIfEukqC3Z6bw==" - } - }, - "npm:chalk@2.4.2": { - "type": "npm", - "name": "npm:chalk@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:history": { - "type": "npm", - "name": "npm:history", - "data": { - "version": "4.10.1", - "packageName": "history", - "hash": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" - } - }, - "npm:cacache@16.1.3": { - "type": "npm", - "name": "npm:cacache@16.1.3", - "data": { - "version": "16.1.3", - "packageName": "cacache", - "hash": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" - } - }, - "npm:postcss-modules-local-by-default": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==" - } - }, - "npm:lerna-alias": { - "type": "npm", - "name": "npm:lerna-alias", - "data": { - "version": "3.0.3-0", - "packageName": "lerna-alias", - "hash": "sha512-IX0c2QH3v4rkgE+iG7Ro0FSEWKqqrMhvbGbB1txrnaJ8YbcrNbJ0IPpcJi+uiiPLV3olNX74EO08x9hGZ+J5ig==" - } - }, - "npm:dot-prop@5.3.0": { - "type": "npm", - "name": "npm:dot-prop@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "dot-prop", - "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" - } - }, - "npm:tiny-invariant": { - "type": "npm", - "name": "npm:tiny-invariant", - "data": { - "version": "1.1.0", - "packageName": "tiny-invariant", - "hash": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" - } - }, - "npm:@storybook/channel-postmessage": { - "type": "npm", - "name": "npm:@storybook/channel-postmessage", - "data": { - "version": "6.5.15", - "packageName": "@storybook/channel-postmessage", - "hash": "sha512-gMpA8LWT8lC4z5KWnaMh03aazEwtDO7GtY5kZVru+EEMgExGmaR82qgekwmLmgLj2nRJEv0o138o9IqYUcou8w==" - } - }, - "npm:dateformat@2.2.0": { - "type": "npm", - "name": "npm:dateformat@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "dateformat", - "hash": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=" - } - }, - "npm:@types/mdast": { - "type": "npm", - "name": "npm:@types/mdast", - "data": { - "version": "3.0.7", - "packageName": "@types/mdast", - "hash": "sha512-YwR7OK8aPmaBvMMUi+pZXBNoW2unbVbfok4YRqGMJBe1dpDlzpRkJrYEYmvjxgs5JhuQmKfDexrN98u941Zasg==" - } - }, - "npm:@xtuc/ieee754": { - "type": "npm", - "name": "npm:@xtuc/ieee754", - "data": { - "version": "1.2.0", - "packageName": "@xtuc/ieee754", - "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - } - }, - "npm:del@7.0.0": { - "type": "npm", - "name": "npm:del@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "del", - "hash": "sha512-tQbV/4u5WVB8HMJr08pgw0b6nG4RGt/tj+7Numvq+zqcvUFeMaIWWOUFltiU+6go8BSO2/ogsB4EasDaj0y68Q==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:@types/request-promise-native": { - "type": "npm", - "name": "npm:@types/request-promise-native", - "data": { - "version": "1.0.18", - "packageName": "@types/request-promise-native", - "hash": "sha512-tPnODeISFc/c1LjWyLuZUY+Z0uLB3+IMfNoQyDEi395+j6kTFTTRAqjENjoPJUid4vHRGEozoTrcTrfZM+AcbA==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.6.1", - "packageName": "cli-spinners", - "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" - } - }, - "npm:meow@3.7.0": { - "type": "npm", - "name": "npm:meow@3.7.0", - "data": { - "version": "3.7.0", - "packageName": "meow", - "hash": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - } - }, - "npm:is-redirect": { - "type": "npm", - "name": "npm:is-redirect", - "data": { - "version": "1.0.0", - "packageName": "is-redirect", - "hash": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" - } - }, - "npm:ansi-red": { - "type": "npm", - "name": "npm:ansi-red", - "data": { - "version": "0.1.1", - "packageName": "ansi-red", - "hash": "sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=" - } - }, - "npm:lodash.includes": { - "type": "npm", - "name": "npm:lodash.includes", - "data": { - "version": "4.3.0", - "packageName": "lodash.includes", - "hash": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" - } - }, - "npm:multicast-dns-service-types": { - "type": "npm", - "name": "npm:multicast-dns-service-types", - "data": { - "version": "1.1.0", - "packageName": "multicast-dns-service-types", - "hash": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" - } - }, - "npm:object.assign@4.1.0": { - "type": "npm", - "name": "npm:object.assign@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "object.assign", - "hash": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==" - } - }, - "npm:dedent": { - "type": "npm", - "name": "npm:dedent", - "data": { - "version": "0.7.0", - "packageName": "dedent", - "hash": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.0.1", - "packageName": "aggregate-error", - "hash": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:quick-lru@4.0.1": { - "type": "npm", - "name": "npm:quick-lru@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "quick-lru", - "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" - } - }, - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==" - } - }, - "npm:remark-squeeze-paragraphs": { - "type": "npm", - "name": "npm:remark-squeeze-paragraphs", - "data": { - "version": "4.0.0", - "packageName": "remark-squeeze-paragraphs", - "hash": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==" - } - }, - "npm:@emotion/hash": { - "type": "npm", - "name": "npm:@emotion/hash", - "data": { - "version": "0.7.4", - "packageName": "@emotion/hash", - "hash": "sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A==" - } - }, - "npm:snapdragon-node": { - "type": "npm", - "name": "npm:snapdragon-node", - "data": { - "version": "2.1.1", - "packageName": "snapdragon-node", - "hash": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==" - } - }, - "npm:verror": { - "type": "npm", - "name": "npm:verror", - "data": { - "version": "1.10.0", - "packageName": "verror", - "hash": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=" - } - }, - "npm:debug@4.1.1": { - "type": "npm", - "name": "npm:debug@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "debug", - "hash": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.0.0", - "packageName": "escodegen", - "hash": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==" - } - }, - "npm:get-stdin": { - "type": "npm", - "name": "npm:get-stdin", - "data": { - "version": "6.0.0", - "packageName": "get-stdin", - "hash": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==" - } - }, - "npm:npm-pick-manifest@8.0.1": { - "type": "npm", - "name": "npm:npm-pick-manifest@8.0.1", - "data": { - "version": "8.0.1", - "packageName": "npm-pick-manifest", - "hash": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==" - } - }, - "npm:ajv@6.12.6": { - "type": "npm", - "name": "npm:ajv@6.12.6", - "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.2", - "packageName": "esutils", - "hash": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" - } - }, - "npm:dotparser": { - "type": "npm", - "name": "npm:dotparser", - "data": { - "version": "1.1.1", - "packageName": "dotparser", - "hash": "sha512-8ojhUts0HbLnXJgjTiJOddwVVBUk6hg4SJ5kGiuhzgK/f+y79TiWvICwx1oCWlVbBC8YI3nEaIQg9fjGYbGBXw==" - } - }, - "npm:is-date-object": { - "type": "npm", - "name": "npm:is-date-object", - "data": { - "version": "1.0.1", - "packageName": "is-date-object", - "hash": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" - } - }, - "npm:brotli-size": { - "type": "npm", - "name": "npm:brotli-size", - "data": { - "version": "4.0.0", - "packageName": "brotli-size", - "hash": "sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==" - } - }, - "npm:object.assign": { - "type": "npm", - "name": "npm:object.assign", - "data": { - "version": "4.1.2", - "packageName": "object.assign", - "hash": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:is-lower-case": { - "type": "npm", - "name": "npm:is-lower-case", - "data": { - "version": "1.1.3", - "packageName": "is-lower-case", - "hash": "sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=" - } - }, - "npm:prefix-style": { - "type": "npm", - "name": "npm:prefix-style", - "data": { - "version": "2.0.1", - "packageName": "prefix-style", - "hash": "sha1-ZrupqHDP2jCKXcIOhekSCTLJWgY=" - } - }, - "npm:simple-swizzle": { - "type": "npm", - "name": "npm:simple-swizzle", - "data": { - "version": "0.2.2", - "packageName": "simple-swizzle", - "hash": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=" - } - }, - "npm:unicode-canonical-property-names-ecmascript": { - "type": "npm", - "name": "npm:unicode-canonical-property-names-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-canonical-property-names-ecmascript", - "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - } - }, - "npm:unique-stream": { - "type": "npm", - "name": "npm:unique-stream", - "data": { - "version": "2.3.1", - "packageName": "unique-stream", - "hash": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.14.51", - "packageName": "esbuild", - "hash": "sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==" - } - }, - "npm:write-pkg": { - "type": "npm", - "name": "npm:write-pkg", - "data": { - "version": "4.0.0", - "packageName": "write-pkg", - "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" - } - }, - "npm:just-task": { - "type": "npm", - "name": "npm:just-task", - "data": { - "version": "1.5.0", - "packageName": "just-task", - "hash": "sha512-oamAeJBBfI3zbzEHjLCnPJJCeBeAJPLssRpAGO/C0vCa7Hf0p2UORBbR77irZTdNRzW/fSLV2ua6lsDJIz3mIA==" - } - }, - "npm:@babel/preset-env": { - "type": "npm", - "name": "npm:@babel/preset-env", - "data": { - "version": "7.23.2", - "packageName": "@babel/preset-env", - "hash": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:type-detect": { - "type": "npm", - "name": "npm:type-detect", - "data": { - "version": "4.0.8", - "packageName": "type-detect", - "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.4", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==" - } - }, - "npm:ext-list": { - "type": "npm", - "name": "npm:ext-list", - "data": { - "version": "2.2.2", - "packageName": "ext-list", - "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" - } - }, - "npm:git-raw-commits": { - "type": "npm", - "name": "npm:git-raw-commits", - "data": { - "version": "3.0.0", - "packageName": "git-raw-commits", - "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" - } - }, - "npm:@swc/core-linux-arm-gnueabihf@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-arm-gnueabihf@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-arm-gnueabihf", - "hash": "sha512-JVyNIO3tGLPSQ59rJXeKaykTpPhRNozB+7PtYMvMcxpUbYGpEzWxTPkFAX2KKPvl0ejBdA0GW5OXeuPMvTwE0w==" - } - }, - "npm:abort-controller": { - "type": "npm", - "name": "npm:abort-controller", - "data": { - "version": "3.0.0", - "packageName": "abort-controller", - "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" - } - }, - "npm:filelist": { - "type": "npm", - "name": "npm:filelist", - "data": { - "version": "1.0.3", - "packageName": "filelist", - "hash": "sha512-LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "2.5.2", - "packageName": "jsesc", - "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - } - }, - "npm:tough-cookie@4.1.2": { - "type": "npm", - "name": "npm:tough-cookie@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "tough-cookie", - "hash": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:eslint-config-airbnb-base": { - "type": "npm", - "name": "npm:eslint-config-airbnb-base", - "data": { - "version": "14.2.1", - "packageName": "eslint-config-airbnb-base", - "hash": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==" - } - }, - "npm:lodash.truncate": { - "type": "npm", - "name": "npm:lodash.truncate", - "data": { - "version": "4.4.2", - "packageName": "lodash.truncate", - "hash": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=" - } - }, - "npm:tmpl": { - "type": "npm", - "name": "npm:tmpl", - "data": { - "version": "1.0.5", - "packageName": "tmpl", - "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - } - }, - "npm:ansi-escapes": { - "type": "npm", - "name": "npm:ansi-escapes", - "data": { - "version": "4.3.1", - "packageName": "ansi-escapes", - "hash": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==" - } - }, - "npm:minimist-options": { - "type": "npm", - "name": "npm:minimist-options", - "data": { - "version": "4.1.0", - "packageName": "minimist-options", - "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" - } - }, - "npm:pkg-install": { - "type": "npm", - "name": "npm:pkg-install", - "data": { - "version": "1.0.0", - "packageName": "pkg-install", - "hash": "sha512-UGI8bfhrDb1KN01RZ7Bq08GRQc8rmVjxQ2up0g4mUHPCYDTK1FzQ0PMmLOBCHg3yaIijZ2U3Fn9ofLa4N392Ug==" - } - }, - "npm:jest-leak-detector": { - "type": "npm", - "name": "npm:jest-leak-detector", - "data": { - "version": "29.7.0", - "packageName": "jest-leak-detector", - "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" - } - }, - "npm:pretty-format@25.5.0": { - "type": "npm", - "name": "npm:pretty-format@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "pretty-format", - "hash": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==" - } - }, - "npm:fela": { - "type": "npm", - "name": "npm:fela", - "data": { - "version": "10.6.1", - "packageName": "fela", - "hash": "sha512-Fp07Wst/BchfJAufCF+sfeMeIsB8hq+EHObpjUMrLfXcweqRtcJ5gg+47ncYO6W/HnRi1NBUzV+fY4tnMVm+MA==" - } - }, - "npm:websocket-extensions": { - "type": "npm", - "name": "npm:websocket-extensions", - "data": { - "version": "0.1.4", - "packageName": "websocket-extensions", - "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.4", - "packageName": "side-channel", - "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" - } - }, - "npm:sourcemap-codec": { - "type": "npm", - "name": "npm:sourcemap-codec", - "data": { - "version": "1.4.8", - "packageName": "sourcemap-codec", - "hash": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" - } - }, - "npm:lru-queue": { - "type": "npm", - "name": "npm:lru-queue", - "data": { - "version": "0.1.0", - "packageName": "lru-queue", - "hash": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=" - } - }, - "npm:@octokit/plugin-paginate-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-paginate-rest", - "data": { - "version": "2.21.3", - "packageName": "@octokit/plugin-paginate-rest", - "hash": "sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==" - } - }, - "npm:parse-git-config": { - "type": "npm", - "name": "npm:parse-git-config", - "data": { - "version": "2.0.3", - "packageName": "parse-git-config", - "hash": "sha512-Js7ueMZOVSZ3tP8C7E3KZiHv6QQl7lnJ+OkbxoaFazzSa2KyEHqApfGbU3XboUgUnq4ZuUmskUpYKTNx01fm5A==" - } - }, - "npm:estree-walker": { - "type": "npm", - "name": "npm:estree-walker", - "data": { - "version": "0.6.1", - "packageName": "estree-walker", - "hash": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" - } - }, - "npm:web-namespaces": { - "type": "npm", - "name": "npm:web-namespaces", - "data": { - "version": "1.1.4", - "packageName": "web-namespaces", - "hash": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" - } - }, - "npm:locate-path@3.0.0": { - "type": "npm", - "name": "npm:locate-path@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "locate-path", - "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" - } - }, - "npm:yargs-unparser@1.6.0": { - "type": "npm", - "name": "npm:yargs-unparser@1.6.0", - "data": { - "version": "1.6.0", - "packageName": "yargs-unparser", - "hash": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==" - } - }, - "npm:common-tags": { - "type": "npm", - "name": "npm:common-tags", - "data": { - "version": "1.8.0", - "packageName": "common-tags", - "hash": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.5", - "packageName": "nwsapi", - "hash": "sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ==" - } - }, - "npm:unzip-response": { - "type": "npm", - "name": "npm:unzip-response", - "data": { - "version": "2.0.1", - "packageName": "unzip-response", - "hash": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" - } - }, - "npm:koa-send": { - "type": "npm", - "name": "npm:koa-send", - "data": { - "version": "5.0.1", - "packageName": "koa-send", - "hash": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==" - } - }, - "npm:webpack-merge": { - "type": "npm", - "name": "npm:webpack-merge", - "data": { - "version": "5.7.3", - "packageName": "webpack-merge", - "hash": "sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "0.4.3", - "packageName": "@eslint/eslintrc", - "hash": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==" - } - }, - "npm:@types/gulp-babel": { - "type": "npm", - "name": "npm:@types/gulp-babel", - "data": { - "version": "6.1.32", - "packageName": "@types/gulp-babel", - "hash": "sha512-vonKyjPvqmVwJE85g2nnJ9UHND+R2snIXP/7mqMuHumHNTORHGLiqBUbbixlcKqurvWe5zJkZrZWeLiGT8L5yg==" - } - }, - "npm:@types/vinyl-fs": { - "type": "npm", - "name": "npm:@types/vinyl-fs", - "data": { - "version": "2.4.11", - "packageName": "@types/vinyl-fs", - "hash": "sha512-2OzQSfIr9CqqWMGqmcERE6Hnd2KY3eBVtFaulVo3sJghplUcaeMdL9ZjEiljcQQeHjheWY9RlNmumjIAvsBNaA==" - } - }, - "npm:is-callable": { - "type": "npm", - "name": "npm:is-callable", - "data": { - "version": "1.2.4", - "packageName": "is-callable", - "hash": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.23.2", - "packageName": "@babel/compat-data", - "hash": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==" - } - }, - "npm:karma-firefox-launcher": { - "type": "npm", - "name": "npm:karma-firefox-launcher", - "data": { - "version": "1.3.0", - "packageName": "karma-firefox-launcher", - "hash": "sha512-Fi7xPhwrRgr+94BnHX0F5dCl1miIW4RHnzjIGxF8GaIEp7rNqX7LSi7ok63VXs3PS/5MQaQMhGxw+bvD+pibBQ==" - } - }, - "npm:jws": { - "type": "npm", - "name": "npm:jws", - "data": { - "version": "3.2.2", - "packageName": "jws", - "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" - } - }, - "npm:split-string": { - "type": "npm", - "name": "npm:split-string", - "data": { - "version": "3.1.0", - "packageName": "split-string", - "hash": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==" - } - }, - "npm:is-ci@2.0.0": { - "type": "npm", - "name": "npm:is-ci@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-ci", - "hash": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" - } - }, - "npm:react-shallow-renderer": { - "type": "npm", - "name": "npm:react-shallow-renderer", - "data": { - "version": "16.15.0", - "packageName": "react-shallow-renderer", - "hash": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==" - } - }, - "npm:fela-plugin-rtl": { - "type": "npm", - "name": "npm:fela-plugin-rtl", - "data": { - "version": "10.8.2", - "packageName": "fela-plugin-rtl", - "hash": "sha512-Xc3uYTNU0TponAtMwqfJQc/F33gACCCPr7QOMqpJurlYUU9VaYhchgs7YMocqns6kBPRGrYc0mYiQqNCfpKsjw==" - } - }, - "npm:webpack@4.46.0": { - "type": "npm", - "name": "npm:webpack@4.46.0", - "data": { - "version": "4.46.0", - "packageName": "webpack", - "hash": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==" - } - }, - "npm:@babel/plugin-transform-exponentiation-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-exponentiation-operator", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.1.1", - "packageName": "punycode", - "hash": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - } - }, - "npm:sass": { - "type": "npm", - "name": "npm:sass", - "data": { - "version": "1.49.11", - "packageName": "sass", - "hash": "sha512-wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ==" - } - }, - "npm:form-data@2.3.3": { - "type": "npm", - "name": "npm:form-data@2.3.3", - "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "2.1.0", - "packageName": "detect-newline", - "hash": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=" - } - }, - "npm:@octokit/request-error": { - "type": "npm", - "name": "npm:@octokit/request-error", - "data": { - "version": "2.1.0", - "packageName": "@octokit/request-error", - "hash": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==" - } - }, - "npm:is-function": { - "type": "npm", - "name": "npm:is-function", - "data": { - "version": "1.0.2", - "packageName": "is-function", - "hash": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - } - }, - "npm:last-run": { - "type": "npm", - "name": "npm:last-run", - "data": { - "version": "1.1.1", - "packageName": "last-run", - "hash": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=" - } - }, - "npm:postcss-modules-values@3.0.0": { - "type": "npm", - "name": "npm:postcss-modules-values@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "4.0.0", - "packageName": "jsonfile", - "hash": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" - } - }, - "npm:escodegen@1.8.1": { - "type": "npm", - "name": "npm:escodegen@1.8.1", - "data": { - "version": "1.8.1", - "packageName": "escodegen", - "hash": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=" - } - }, - "npm:v8-compile-cache-lib": { - "type": "npm", - "name": "npm:v8-compile-cache-lib", - "data": { - "version": "3.0.1", - "packageName": "v8-compile-cache-lib", - "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - } - }, - "npm:unfetch": { - "type": "npm", - "name": "npm:unfetch", - "data": { - "version": "4.2.0", - "packageName": "unfetch", - "hash": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "1.1.0", - "packageName": "resolve.exports", - "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" - } - }, - "npm:leven": { - "type": "npm", - "name": "npm:leven", - "data": { - "version": "3.1.0", - "packageName": "leven", - "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - } - }, - "npm:@webassemblyjs/wasm-opt@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==" - } - }, - "npm:js-string-escape": { - "type": "npm", - "name": "npm:js-string-escape", - "data": { - "version": "1.0.1", - "packageName": "js-string-escape", - "hash": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=" - } - }, - "npm:lazy-ass": { - "type": "npm", - "name": "npm:lazy-ass", - "data": { - "version": "1.6.0", - "packageName": "lazy-ass", - "hash": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "16.10.0", - "packageName": "nx", - "hash": "sha512-gZl4iCC0Hx0Qe1VWmO4Bkeul2nttuXdPpfnlcDKSACGu3ZIo+uySqwOF8yBAxSTIf8xe2JRhgzJN1aFkuezEBg==" - } - }, - "npm:jest-config": { - "type": "npm", - "name": "npm:jest-config", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:@types/bonjour": { - "type": "npm", - "name": "npm:@types/bonjour", - "data": { - "version": "3.5.10", - "packageName": "@types/bonjour", - "hash": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" - } - }, - "npm:dot-prop": { - "type": "npm", - "name": "npm:dot-prop", - "data": { - "version": "4.2.0", - "packageName": "dot-prop", - "hash": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==" - } - }, - "npm:jest-worker@24.9.0": { - "type": "npm", - "name": "npm:jest-worker@24.9.0", - "data": { - "version": "24.9.0", - "packageName": "jest-worker", - "hash": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==" - } - }, - "npm:read-pkg-up@3.0.0": { - "type": "npm", - "name": "npm:read-pkg-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "read-pkg-up", - "hash": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=" - } - }, - "npm:decamelize-keys": { - "type": "npm", - "name": "npm:decamelize-keys", - "data": { - "version": "1.1.0", - "packageName": "decamelize-keys", - "hash": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=" - } - }, - "npm:hastscript": { - "type": "npm", - "name": "npm:hastscript", - "data": { - "version": "5.1.0", - "packageName": "hastscript", - "hash": "sha512-7mOQX5VfVs/gmrOGlN8/EDfp1GqV6P3gTNVt+KnX4gbYhpASTM8bklFdFQCbFRAadURXAmw0R1QQdBdqp7jswQ==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:http-parser-js": { - "type": "npm", - "name": "npm:http-parser-js", - "data": { - "version": "0.5.3", - "packageName": "http-parser-js", - "hash": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" - } - }, - "npm:dotenv-expand@5.1.0": { - "type": "npm", - "name": "npm:dotenv-expand@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "dotenv-expand", - "hash": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" - } - }, - "npm:hast-util-raw": { - "type": "npm", - "name": "npm:hast-util-raw", - "data": { - "version": "6.0.1", - "packageName": "hast-util-raw", - "hash": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:is-obj": { - "type": "npm", - "name": "npm:is-obj", - "data": { - "version": "1.0.1", - "packageName": "is-obj", - "hash": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" - } - }, - "npm:jwa": { - "type": "npm", - "name": "npm:jwa", - "data": { - "version": "1.4.1", - "packageName": "jwa", - "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" - } - }, - "npm:react-virtualized": { - "type": "npm", - "name": "npm:react-virtualized", - "data": { - "version": "9.21.2", - "packageName": "react-virtualized", - "hash": "sha512-oX7I7KYiUM7lVXQzmhtF4Xg/4UA5duSA+/ZcAvdWlTLFCoFYq1SbauJT5gZK9cZS/wdYR6TPGpX/dqzvTqQeBA==" - } - }, - "npm:@types/gulp-sourcemaps": { - "type": "npm", - "name": "npm:@types/gulp-sourcemaps", - "data": { - "version": "0.0.35", - "packageName": "@types/gulp-sourcemaps", - "hash": "sha512-vUBuizwA4CAV3Mke0DJYHQxyN4YOB1aAql284qAO7Et7fe0hmnPi/R9Fhu2UhxMuSxAwFktsJUOQk5dJHOU1eA==" - } - }, - "npm:array-back": { - "type": "npm", - "name": "npm:array-back", - "data": { - "version": "3.1.0", - "packageName": "array-back", - "hash": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==" - } - }, - "npm:spdx-exceptions": { - "type": "npm", - "name": "npm:spdx-exceptions", - "data": { - "version": "2.2.0", - "packageName": "spdx-exceptions", - "hash": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==" - } - }, - "npm:@cypress/webpack-dev-server": { - "type": "npm", - "name": "npm:@cypress/webpack-dev-server", - "data": { - "version": "1.8.3", - "packageName": "@cypress/webpack-dev-server", - "hash": "sha512-r5udgc5ZhXYsnjhen+CI3CRjAjqY2UszbLQcda0np2JjLfLQX+F/bTF6g5NYWr3BMurXalC8JAZUrsBgvE0Wqw==" - } - }, - "npm:@storybook/node-logger": { - "type": "npm", - "name": "npm:@storybook/node-logger", - "data": { - "version": "6.5.15", - "packageName": "@storybook/node-logger", - "hash": "sha512-LQjjbfMuUXm7wZTBKb+iGeCNnej4r1Jb2NxG3Svu2bVhaoB6u33jHAcbmhXpXW1jghzW3kQwOU7BoLuJiRRFIw==" - } - }, - "npm:path-browserify": { - "type": "npm", - "name": "npm:path-browserify", - "data": { - "version": "1.0.1", - "packageName": "path-browserify", - "hash": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" - } - }, - "npm:@griffel/shadow-dom": { - "type": "npm", - "name": "npm:@griffel/shadow-dom", - "data": { - "version": "0.1.5", - "packageName": "@griffel/shadow-dom", - "hash": "sha512-/4MUZd1udyX7OMwqfjbZrBdAnjCbz/BqsIxsX/N/2yLMDA9lmiJonySi6NGLKzoGphGy+tAgBkCh2t4YBI1Phg==" - } - }, - "npm:detect-newline@3.1.0": { - "type": "npm", - "name": "npm:detect-newline@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "2.0.0", - "packageName": "astral-regex", - "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:is-path-inside@1.0.1": { - "type": "npm", - "name": "npm:is-path-inside@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "is-path-inside", - "hash": "sha1-jvW33lBDej/cprToZe96pVy0gDY=" - } - }, - "npm:is-upper-case": { - "type": "npm", - "name": "npm:is-upper-case", - "data": { - "version": "1.1.2", - "packageName": "is-upper-case", - "hash": "sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=" - } - }, - "npm:locate-path@2.0.0": { - "type": "npm", - "name": "npm:locate-path@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "locate-path", - "hash": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" - } - }, - "npm:type": { - "type": "npm", - "name": "npm:type", - "data": { - "version": "1.0.1", - "packageName": "type", - "hash": "sha512-MAM5dBMJCJNKs9E7JXo4CXRAansRfG0nlJxW7Wf6GZzSOvH31zClSaHdIMWLehe/EGMBkqeC55rrkaOr5Oo7Nw==" - } - }, - "npm:arr-union": { - "type": "npm", - "name": "npm:arr-union", - "data": { - "version": "3.1.0", - "packageName": "arr-union", - "hash": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" - } - }, - "npm:form-data@4.0.0": { - "type": "npm", - "name": "npm:form-data@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" - } - }, - "npm:at-least-node": { - "type": "npm", - "name": "npm:at-least-node", - "data": { - "version": "1.0.0", - "packageName": "at-least-node", - "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==" - } - }, - "npm:@babel/plugin-transform-modules-amd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-amd", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==" - } - }, - "npm:fault": { - "type": "npm", - "name": "npm:fault", - "data": { - "version": "1.0.4", - "packageName": "fault", - "hash": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==" - } - }, - "npm:glob-stream": { - "type": "npm", - "name": "npm:glob-stream", - "data": { - "version": "6.1.0", - "packageName": "glob-stream", - "hash": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:@testing-library/user-event": { - "type": "npm", - "name": "npm:@testing-library/user-event", - "data": { - "version": "13.5.0", - "packageName": "@testing-library/user-event", - "hash": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==" - } - }, - "npm:string_decoder@1.1.1": { - "type": "npm", - "name": "npm:string_decoder@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "string_decoder", - "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - }, - "npm:universal-user-agent": { - "type": "npm", - "name": "npm:universal-user-agent", - "data": { - "version": "6.0.0", - "packageName": "universal-user-agent", - "hash": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==" - } - }, - "npm:utf8-byte-length": { - "type": "npm", - "name": "npm:utf8-byte-length", - "data": { - "version": "1.0.4", - "packageName": "utf8-byte-length", - "hash": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==" - } - }, - "npm:@mdx-js/loader": { - "type": "npm", - "name": "npm:@mdx-js/loader", - "data": { - "version": "1.6.22", - "packageName": "@mdx-js/loader", - "hash": "sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==" - } - }, - "npm:rollup-pluginutils": { - "type": "npm", - "name": "npm:rollup-pluginutils", - "data": { - "version": "2.8.2", - "packageName": "rollup-pluginutils", - "hash": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==" - } - }, - "npm:@storybook/addon-outline": { - "type": "npm", - "name": "npm:@storybook/addon-outline", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-outline", - "hash": "sha512-8yGEZQOYypnliU3rsakoZlgT4Pkq8iOhX9JclVXZL/fJMQWFQGCsXqlLaRn8sx7qsa+21PPxY5bd2+Hv/Au4zQ==" - } - }, - "npm:fast-glob@2.2.7": { - "type": "npm", - "name": "npm:fast-glob@2.2.7", - "data": { - "version": "2.2.7", - "packageName": "fast-glob", - "hash": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==" - } - }, - "npm:pacote": { - "type": "npm", - "name": "npm:pacote", - "data": { - "version": "15.2.0", - "packageName": "pacote", - "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" - } - }, - "npm:watchpack": { - "type": "npm", - "name": "npm:watchpack", - "data": { - "version": "2.4.0", - "packageName": "watchpack", - "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" - } - }, - "npm:babel-traverse": { - "type": "npm", - "name": "npm:babel-traverse", - "data": { - "version": "6.26.0", - "packageName": "babel-traverse", - "hash": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=" - } - }, - "npm:d3-dsv": { - "type": "npm", - "name": "npm:d3-dsv", - "data": { - "version": "3.0.1", - "packageName": "d3-dsv", - "hash": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==" - } - }, - "npm:beeper": { - "type": "npm", - "name": "npm:beeper", - "data": { - "version": "1.1.1", - "packageName": "beeper", - "hash": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=" - } - }, - "npm:@nx/nx-win32-arm64-msvc@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-moJkL9kcqxUdJSRpG7dET3UeLIciwrfP08mzBQ12ewo8K8FzxU8ZUsTIVVdNrwt01CXOdXoweGfdQLjJ4qTURA==" - } - }, - "npm:is-ci@1.2.1": { - "type": "npm", - "name": "npm:is-ci@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "is-ci", - "hash": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==" - } - }, - "npm:normalize-range": { - "type": "npm", - "name": "npm:normalize-range", - "data": { - "version": "0.1.2", - "packageName": "normalize-range", - "hash": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" - } - }, - "npm:move-concurrently": { - "type": "npm", - "name": "npm:move-concurrently", - "data": { - "version": "1.0.1", - "packageName": "move-concurrently", - "hash": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=" - } - }, - "npm:sparkles": { - "type": "npm", - "name": "npm:sparkles", - "data": { - "version": "1.0.1", - "packageName": "sparkles", - "hash": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==" - } - }, - "npm:ts-pnp": { - "type": "npm", - "name": "npm:ts-pnp", - "data": { - "version": "1.2.0", - "packageName": "ts-pnp", - "hash": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" - } - }, - "npm:js-tokens@3.0.2": { - "type": "npm", - "name": "npm:js-tokens@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "js-tokens", - "hash": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - } - }, - "npm:imports-loader": { - "type": "npm", - "name": "npm:imports-loader", - "data": { - "version": "1.2.0", - "packageName": "imports-loader", - "hash": "sha512-zPvangKEgrrPeqeUqH0Uhc59YqK07JqZBi9a9cQ3v/EKUIqrbJHY4CvUrDus2lgQa5AmPyXuGrWP8JJTqzE5RQ==" - } - }, - "npm:backfill": { - "type": "npm", - "name": "npm:backfill", - "data": { - "version": "6.1.23", - "packageName": "backfill", - "hash": "sha512-VidtpsjTnEFH5Vg7p+IR8F5Fko+FJWse9SWEmbufaflL/Jp9xQO5igReqIp+HX2qzz1JjpfrPmRzFwOyVFdkrA==" - } - }, - "npm:@types/chai": { - "type": "npm", - "name": "npm:@types/chai", - "data": { - "version": "4.3.3", - "packageName": "@types/chai", - "hash": "sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==" - } - }, - "npm:typescript@5.1.6": { - "type": "npm", - "name": "npm:typescript@5.1.6", - "data": { - "version": "5.1.6", - "packageName": "typescript", - "hash": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==" - } - }, - "npm:@azure/core-tracing@1.0.0-preview.11": { - "type": "npm", - "name": "npm:@azure/core-tracing@1.0.0-preview.11", - "data": { - "version": "1.0.0-preview.11", - "packageName": "@azure/core-tracing", - "hash": "sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ==" - } - }, - "npm:cardinal": { - "type": "npm", - "name": "npm:cardinal", - "data": { - "version": "2.1.1", - "packageName": "cardinal", - "hash": "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=" - } - }, - "npm:hyphenate-style-name": { - "type": "npm", - "name": "npm:hyphenate-style-name", - "data": { - "version": "1.0.3", - "packageName": "hyphenate-style-name", - "hash": "sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==" - } - }, - "npm:karma-sourcemap-loader": { - "type": "npm", - "name": "npm:karma-sourcemap-loader", - "data": { - "version": "0.3.8", - "packageName": "karma-sourcemap-loader", - "hash": "sha512-zorxyAakYZuBcHRJE+vbrK2o2JXLFWK8VVjiT/6P+ltLBUGUvqTEkUiQ119MGdOrK7mrmxXHZF1/pfT6GgIZ6g==" - } - }, - "npm:node-forge": { - "type": "npm", - "name": "npm:node-forge", - "data": { - "version": "1.3.1", - "packageName": "node-forge", - "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - } - }, - "npm:@testing-library/jest-dom": { - "type": "npm", - "name": "npm:@testing-library/jest-dom", - "data": { - "version": "5.16.5", - "packageName": "@testing-library/jest-dom", - "hash": "sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==" - } - }, - "npm:@types/d3-fetch": { - "type": "npm", - "name": "npm:@types/d3-fetch", - "data": { - "version": "3.0.1", - "packageName": "@types/d3-fetch", - "hash": "sha512-toZJNOwrOIqz7Oh6Q7l2zkaNfXkfR7mFSJvGvlD/Ciq/+SQ39d5gynHJZ/0fjt83ec3WL7+u3ssqIijQtBISsw==" - } - }, - "npm:eslint-plugin-node": { - "type": "npm", - "name": "npm:eslint-plugin-node", - "data": { - "version": "11.1.0", - "packageName": "eslint-plugin-node", - "hash": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" - } - }, - "npm:get-stdin@4.0.1": { - "type": "npm", - "name": "npm:get-stdin@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "get-stdin", - "hash": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" - } - }, - "npm:locate-path@5.0.0": { - "type": "npm", - "name": "npm:locate-path@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "npm:osenv": { - "type": "npm", - "name": "npm:osenv", - "data": { - "version": "0.1.5", - "packageName": "osenv", - "hash": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.0.1", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" - } - }, - "npm:jest-message-util": { - "type": "npm", - "name": "npm:jest-message-util", - "data": { - "version": "29.7.0", - "packageName": "jest-message-util", - "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" - } - }, - "npm:jest-serializer": { - "type": "npm", - "name": "npm:jest-serializer", - "data": { - "version": "26.6.2", - "packageName": "jest-serializer", - "hash": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==" - } - }, - "npm:react-inspector": { - "type": "npm", - "name": "npm:react-inspector", - "data": { - "version": "5.1.1", - "packageName": "react-inspector", - "hash": "sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==" - } - }, - "npm:@nx/nx-linux-arm64-gnu@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-aWIkOUw995V3ItfpAi5FuxQ+1e9EWLS1cjWM1jmeuo+5WtaKToJn5itgQOkvSlPz+HSLgM3VfXMvOFALNk125g==" - } - }, - "npm:@testing-library/react": { - "type": "npm", - "name": "npm:@testing-library/react", - "data": { - "version": "12.1.2", - "packageName": "@testing-library/react", - "hash": "sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g==" - } - }, - "npm:lodash.assign": { - "type": "npm", - "name": "npm:lodash.assign", - "data": { - "version": "4.2.0", - "packageName": "lodash.assign", - "hash": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" - } - }, - "npm:chrome-remote-interface": { - "type": "npm", - "name": "npm:chrome-remote-interface", - "data": { - "version": "0.28.2", - "packageName": "chrome-remote-interface", - "hash": "sha512-F7mjof7rWvRNsJqhVXuiFU/HWySCxTA9tzpLxUJxVfdLkljwFJ1aMp08AnwXRmmP7r12/doTDOMwaNhFCJsacw==" - } - }, - "npm:@babel/plugin-transform-unicode-escapes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-escapes", - "data": { - "version": "7.22.10", - "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.7", - "packageName": "minimist", - "hash": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" - } - }, - "npm:npm-packlist@7.0.4": { - "type": "npm", - "name": "npm:npm-packlist@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "npm-packlist", - "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" - } - }, - "npm:read-pkg-up@1.0.1": { - "type": "npm", - "name": "npm:read-pkg-up@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "read-pkg-up", - "hash": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=" - } - }, - "npm:karma": { - "type": "npm", - "name": "npm:karma", - "data": { - "version": "6.4.0", - "packageName": "karma", - "hash": "sha512-s8m7z0IF5g/bS5ONT7wsOavhW4i4aFkzD4u4wgzAQWT4HGUeWI3i21cK2Yz6jndMAeHETp5XuNsRoyGJZXVd4w==" - } - }, - "npm:find-up@6.3.0": { - "type": "npm", - "name": "npm:find-up@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "find-up", - "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.1", - "packageName": "function-bind", - "hash": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.27.8", - "packageName": "@sinclair/typebox", - "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" - } - }, - "npm:jest-snapshot": { - "type": "npm", - "name": "npm:jest-snapshot", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:n-readlines": { - "type": "npm", - "name": "npm:n-readlines", - "data": { - "version": "1.0.0", - "packageName": "n-readlines", - "hash": "sha512-ISDqGcspVu6U3VKqtJZG1uR55SmNNF9uK0EMq1IvNVVZOui6MW6VR0+pIZhqz85ORAGp+4zW+5fJ/SE7bwEibA==" - } - }, - "npm:is-regexp": { - "type": "npm", - "name": "npm:is-regexp", - "data": { - "version": "1.0.0", - "packageName": "is-regexp", - "hash": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" - } - }, - "npm:schema-utils@1.0.0": { - "type": "npm", - "name": "npm:schema-utils@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "schema-utils", - "hash": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==" - } - }, - "npm:spdy": { - "type": "npm", - "name": "npm:spdy", - "data": { - "version": "4.0.2", - "packageName": "spdy", - "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - } - }, - "npm:ts-loader": { - "type": "npm", - "name": "npm:ts-loader", - "data": { - "version": "9.3.1", - "packageName": "ts-loader", - "hash": "sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==" - } - }, - "npm:unzipper": { - "type": "npm", - "name": "npm:unzipper", - "data": { - "version": "0.10.11", - "packageName": "unzipper", - "hash": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==" - } - }, - "npm:@babel/plugin-syntax-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-json-strings", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-json-strings", - "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - } - }, - "npm:isobject@2.1.0": { - "type": "npm", - "name": "npm:isobject@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "isobject", - "hash": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.1.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==" - } - }, - "npm:@babel/plugin-syntax-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "npm:@babel/plugin-transform-runtime": { - "type": "npm", - "name": "npm:@babel/plugin-transform-runtime", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==" - } - }, - "npm:read-package-json-fast@3.0.2": { - "type": "npm", - "name": "npm:read-package-json-fast@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "read-package-json-fast", - "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:supports-color@8.1.1": { - "type": "npm", - "name": "npm:supports-color@8.1.1", - "data": { - "version": "8.1.1", - "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.23.2", - "packageName": "@babel/helpers", - "hash": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==" - } - }, - "npm:commander@11.0.0": { - "type": "npm", - "name": "npm:commander@11.0.0", - "data": { - "version": "11.0.0", - "packageName": "commander", - "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" - } - }, - "npm:cosmiconfig@5.2.1": { - "type": "npm", - "name": "npm:cosmiconfig@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "cosmiconfig", - "hash": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" - } - }, - "npm:throttleit": { - "type": "npm", - "name": "npm:throttleit", - "data": { - "version": "1.0.0", - "packageName": "throttleit", - "hash": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=" - } - }, - "npm:@babel/plugin-syntax-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-private-property-in-object", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-private-property-in-object", - "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - } - }, - "npm:office-ui-fabric-core": { - "type": "npm", - "name": "npm:office-ui-fabric-core", - "data": { - "version": "11.0.1", - "packageName": "office-ui-fabric-core", - "hash": "sha512-jcfycbVOm2aUoI+AGtHW24HvM7nUVFr44hR5NIE56EobK67bVwbNAQL15CJj3vNz5PBrnitsV9ROOB+KOEWn8g==" - } - }, - "npm:string-width@1.0.2": { - "type": "npm", - "name": "npm:string-width@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "string-width", - "hash": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=" - } - }, - "npm:parse-node-version": { - "type": "npm", - "name": "npm:parse-node-version", - "data": { - "version": "1.0.1", - "packageName": "parse-node-version", - "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:graphviz": { - "type": "npm", - "name": "npm:graphviz", - "data": { - "version": "0.0.9", - "packageName": "graphviz", - "hash": "sha512-SmoY2pOtcikmMCqCSy2NO1YsRfu9OO0wpTlOYW++giGjfX1a6gax/m1Fo8IdUd0/3H15cTOfR1SMKwohj4LKsg==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "0.5.4", - "packageName": "content-disposition", - "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - } - }, - "npm:lodash._getnative": { - "type": "npm", - "name": "npm:lodash._getnative", - "data": { - "version": "3.9.1", - "packageName": "lodash._getnative", - "hash": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:workspace-tools@0.27.0": { - "type": "npm", - "name": "npm:workspace-tools@0.27.0", - "data": { - "version": "0.27.0", - "packageName": "workspace-tools", - "hash": "sha512-5mtE5Vy0Se4brAUJXKfXNtaS9jcUcH+IGF4LNU1xJr4bW1o5bK2gV0pykodB+n6V84nRtaD/4I/9w98aujm7LA==" - } - }, - "npm:stylis": { - "type": "npm", - "name": "npm:stylis", - "data": { - "version": "4.3.0", - "packageName": "stylis", - "hash": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" - } - }, - "npm:@swc/core-win32-x64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-x64-msvc", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-win32-x64-msvc", - "hash": "sha512-2Xak7TidlRuNQamLZC3fEOdUCmMiBzD2BW8+Dnn29f4odzamgAFfeYJ/PnqN7jdTWOINLn95tex4JBm3Pm11HQ==" - } - }, - "npm:riceburn": { - "type": "npm", - "name": "npm:riceburn", - "data": { - "version": "1.3.1", - "packageName": "riceburn", - "hash": "sha512-pjt5ION8z9sGIR4UHLO59Ow7ecgxJoraY+kxACzzap5bgDTSzJ8SSEOE2yxV335yfgrOkcck9JsxM2CdoiGq5A==" - } - }, - "npm:tty-browserify@0.0.0": { - "type": "npm", - "name": "npm:tty-browserify@0.0.0", - "data": { - "version": "0.0.0", - "packageName": "tty-browserify", - "hash": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:postcss-loader@4.3.0": { - "type": "npm", - "name": "npm:postcss-loader@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "postcss-loader", - "hash": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==" - } - }, - "npm:peek-readable": { - "type": "npm", - "name": "npm:peek-readable", - "data": { - "version": "5.0.0", - "packageName": "peek-readable", - "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" - } - }, - "npm:trim-right": { - "type": "npm", - "name": "npm:trim-right", - "data": { - "version": "1.0.1", - "packageName": "trim-right", - "hash": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" - } - }, - "npm:devtools-protocol": { - "type": "npm", - "name": "npm:devtools-protocol", - "data": { - "version": "0.0.894172", - "packageName": "devtools-protocol", - "hash": "sha512-tL9V5hs9s8TBkSX/d0qy8PbHQ6rW9myDILIbDdCboJxenSwqgoVx+C/+qEmI1OZH/zQ7OREv6ic336wJ82cOXg==" - } - }, - "npm:@typescript-eslint/scope-manager@5.59.1": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@5.59.1", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-mau0waO5frJctPuAzcxiNWqJR5Z8V0190FTSqRw1Q4Euop6+zTwHAf8YIXNwDOT29tyUDrQ65jSg9aTU/H0omA==" - } - }, - "npm:cp-file": { - "type": "npm", - "name": "npm:cp-file", - "data": { - "version": "7.0.0", - "packageName": "cp-file", - "hash": "sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==" - } - }, - "npm:minipass-fetch@2.1.2": { - "type": "npm", - "name": "npm:minipass-fetch@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "minipass-fetch", - "hash": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@^4.2.0", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:@floating-ui/core": { - "type": "npm", - "name": "npm:@floating-ui/core", - "data": { - "version": "1.2.0", - "packageName": "@floating-ui/core", - "hash": "sha512-GHUXPEhMEmTpnpIfesFA2KAoMJPb1SPQw964tToQwt+BbGXdhqTCWT1rOb0VURGylsxsYxiGMnseJ3IlclVpVA==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" - } - }, - "npm:minipass-json-stream": { - "type": "npm", - "name": "npm:minipass-json-stream", - "data": { - "version": "1.0.1", - "packageName": "minipass-json-stream", - "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:deep-eql": { - "type": "npm", - "name": "npm:deep-eql", - "data": { - "version": "3.0.1", - "packageName": "deep-eql", - "hash": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==" - } - }, - "npm:fela-dom": { - "type": "npm", - "name": "npm:fela-dom", - "data": { - "version": "10.6.1", - "packageName": "fela-dom", - "hash": "sha512-J/EbPv7w7GGEBwhwwohTNdBThS1CrVaO5t8eapuKg0GDUCulbpBHuL5fw1+TbpJKEL54h7GwaCV9RZKZPUOXGA==" - } - }, - "npm:@mole-inc/bin-wrapper": { - "type": "npm", - "name": "npm:@mole-inc/bin-wrapper", - "data": { - "version": "8.0.1", - "packageName": "@mole-inc/bin-wrapper", - "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" - } - }, - "npm:@swc/core-linux-arm64-gnu@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-gnu@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-arm64-gnu", - "hash": "sha512-gLdZKIoql5vjrNjrwwsiS7d3vOAIzYUWqN97iGCSscQOg0MgYbfUnSTO4UEvH4BYlwRNlHepfTZ7ALoG8areUQ==" - } - }, - "npm:mdurl": { - "type": "npm", - "name": "npm:mdurl", - "data": { - "version": "1.0.1", - "packageName": "mdurl", - "hash": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" - } - }, - "npm:@dnd-kit/utilities": { - "type": "npm", - "name": "npm:@dnd-kit/utilities", - "data": { - "version": "3.2.1", - "packageName": "@dnd-kit/utilities", - "hash": "sha512-OOXqISfvBw/1REtkSK2N3Fi2EQiLMlWUlqnOK/UpOISqBZPWpE6TqL+jcPtMOkE8TqYGiURvRdPSI9hltNUjEA==" - } - }, - "npm:has-flag@2.0.0": { - "type": "npm", - "name": "npm:has-flag@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "has-flag", - "hash": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" - } - }, - "npm:npm-pick-manifest": { - "type": "npm", - "name": "npm:npm-pick-manifest", - "data": { - "version": "6.1.0", - "packageName": "npm-pick-manifest", - "hash": "sha512-ygs4k6f54ZxJXrzT0x34NybRlLeZ4+6nECAIbr2i0foTnijtS1TJiyzpqtuUAJOps/hO0tNDr8fRV5g+BtRlTw==" - } - }, - "npm:replace-ext@0.0.1": { - "type": "npm", - "name": "npm:replace-ext@0.0.1", - "data": { - "version": "0.0.1", - "packageName": "replace-ext", - "hash": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.0.4", - "packageName": "flat-cache", - "hash": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "1.3.8", - "packageName": "accepts", - "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - } - }, - "npm:bach": { - "type": "npm", - "name": "npm:bach", - "data": { - "version": "1.2.0", - "packageName": "bach", - "hash": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=" - } - }, - "npm:punycode@1.3.2": { - "type": "npm", - "name": "npm:punycode@1.3.2", - "data": { - "version": "1.3.2", - "packageName": "punycode", - "hash": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - } - }, - "npm:find-up@2.1.0": { - "type": "npm", - "name": "npm:find-up@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-up", - "hash": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" - } - }, - "npm:@octokit/rest": { - "type": "npm", - "name": "npm:@octokit/rest", - "data": { - "version": "18.12.0", - "packageName": "@octokit/rest", - "hash": "sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==" - } - }, - "npm:@types/cheerio": { - "type": "npm", - "name": "npm:@types/cheerio", - "data": { - "version": "0.22.31", - "packageName": "@types/cheerio", - "hash": "sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw==" - } - }, - "npm:@types/estree@0.0.51": { - "type": "npm", - "name": "npm:@types/estree@0.0.51", - "data": { - "version": "0.0.51", - "packageName": "@types/estree", - "hash": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - } - }, - "npm:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "3.0.0", - "packageName": "proc-log", - "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-MkTe7FE+K1/GxZkP5gRj3rCztg45bEhsd8HYjczBuYm+qFHP5vtZmjx3B0yUCDotceQ4sHgTyz60Ycl225njmA==" - } - }, - "npm:@nodelib/fs.stat@1.1.3": { - "type": "npm", - "name": "npm:@nodelib/fs.stat@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" - } - }, - "npm:read-package-json": { - "type": "npm", - "name": "npm:read-package-json", - "data": { - "version": "6.0.4", - "packageName": "read-package-json", - "hash": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.1.2", - "packageName": "string.prototype.trim", - "hash": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=" - } - }, - "npm:jest-diff@27.5.1": { - "type": "npm", - "name": "npm:jest-diff@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-diff", - "hash": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==" - } - }, - "npm:d3-hierarchy": { - "type": "npm", - "name": "npm:d3-hierarchy", - "data": { - "version": "2.0.0", - "packageName": "d3-hierarchy", - "hash": "sha512-SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw==" - } - }, - "npm:js-yaml@4.1.0": { - "type": "npm", - "name": "npm:js-yaml@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "js-yaml", - "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - } - }, - "npm:now-and-later": { - "type": "npm", - "name": "npm:now-and-later", - "data": { - "version": "2.0.1", - "packageName": "now-and-later", - "hash": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==" - } - }, - "npm:find-up@4.1.0": { - "type": "npm", - "name": "npm:find-up@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:read-pkg-up": { - "type": "npm", - "name": "npm:read-pkg-up", - "data": { - "version": "7.0.1", - "packageName": "read-pkg-up", - "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" - } - }, - "npm:koa-convert": { - "type": "npm", - "name": "npm:koa-convert", - "data": { - "version": "2.0.0", - "packageName": "koa-convert", - "hash": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==" - } - }, - "npm:lowercase-keys@1.0.0": { - "type": "npm", - "name": "npm:lowercase-keys@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "lowercase-keys", - "hash": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" - } - }, - "npm:@popperjs/core": { - "type": "npm", - "name": "npm:@popperjs/core", - "data": { - "version": "2.4.4", - "packageName": "@popperjs/core", - "hash": "sha512-1oO6+dN5kdIA3sKPZhRGJTfGVP4SWV6KqlMOwry4J3HfyD68sl/3KmG7DeYUzvN+RbhXDnv/D8vNNB8168tAMg==" - } - }, - "npm:puppeteer-core": { - "type": "npm", - "name": "npm:puppeteer-core", - "data": { - "version": "19.6.0", - "packageName": "puppeteer-core", - "hash": "sha512-GvqWdHr9eY/MFR5pXf9o0apnrTmG0hhS7/TtCPfeAvCbaUS1bsLMZWxNGvI/QbviRu4xxi6HrR7VW4x/4esq1Q==" - } - }, - "npm:readable-stream@1.0.34": { - "type": "npm", - "name": "npm:readable-stream@1.0.34", - "data": { - "version": "1.0.34", - "packageName": "readable-stream", - "hash": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=" - } - }, - "npm:@babel/plugin-transform-typeof-symbol": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typeof-symbol", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==" - } - }, - "npm:@types/minimist": { - "type": "npm", - "name": "npm:@types/minimist", - "data": { - "version": "1.2.1", - "packageName": "@types/minimist", - "hash": "sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==" - } - }, - "npm:@tootallnate/once@1.1.2": { - "type": "npm", - "name": "npm:@tootallnate/once@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "@tootallnate/once", - "hash": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" - } - }, - "npm:universal-url": { - "type": "npm", - "name": "npm:universal-url", - "data": { - "version": "2.0.0", - "packageName": "universal-url", - "hash": "sha512-3DLtXdm/G1LQMCnPj+Aw7uDoleQttNHp2g5FnNQKR6cP6taNWS1b/Ehjjx4PVyvejKi3TJyu8iBraKM4q3JQPg==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.1", - "packageName": "buffer-from", - "hash": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - } - }, - "npm:@babel/plugin-transform-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-properties", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-class-properties", - "hash": "sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==" - } - }, - "npm:harmony-reflect": { - "type": "npm", - "name": "npm:harmony-reflect", - "data": { - "version": "1.6.2", - "packageName": "harmony-reflect", - "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" - } - }, - "npm:http-cache-semantics": { - "type": "npm", - "name": "npm:http-cache-semantics", - "data": { - "version": "4.1.1", - "packageName": "http-cache-semantics", - "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - } - }, - "npm:methods": { - "type": "npm", - "name": "npm:methods", - "data": { - "version": "1.1.2", - "packageName": "methods", - "hash": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - } - }, - "npm:npm-install-checks": { - "type": "npm", - "name": "npm:npm-install-checks", - "data": { - "version": "4.0.0", - "packageName": "npm-install-checks", - "hash": "sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==" - } - }, - "npm:css-color-keywords": { - "type": "npm", - "name": "npm:css-color-keywords", - "data": { - "version": "1.0.0", - "packageName": "css-color-keywords", - "hash": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" - } - }, - "npm:postcss-modules-scope": { - "type": "npm", - "name": "npm:postcss-modules-scope", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-scope", - "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" - } - }, - "npm:style-to-object": { - "type": "npm", - "name": "npm:style-to-object", - "data": { - "version": "0.3.0", - "packageName": "style-to-object", - "hash": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" - } - }, - "npm:moo": { - "type": "npm", - "name": "npm:moo", - "data": { - "version": "0.4.3", - "packageName": "moo", - "hash": "sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw==" - } - }, - "npm:@esbuild/linux-riscv64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-7Z/jKNFufZ/bbu4INqqCN6DDlrmOTmdw6D0gH+6Y7auok2r02Ur661qPuXidPOJ+FSgbEeQnnAGgsVynfLuOEw==" - } - }, - "npm:detect-package-manager": { - "type": "npm", - "name": "npm:detect-package-manager", - "data": { - "version": "2.0.1", - "packageName": "detect-package-manager", - "hash": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==" - } - }, - "npm:header-case": { - "type": "npm", - "name": "npm:header-case", - "data": { - "version": "1.0.1", - "packageName": "header-case", - "hash": "sha1-lTWXMZfBRLCWE81l0xfvGZY70C0=" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:yocto-queue@1.0.0": { - "type": "npm", - "name": "npm:yocto-queue@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "yocto-queue", - "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - }, - "npm:doctoc": { - "type": "npm", - "name": "npm:doctoc", - "data": { - "version": "2.0.1", - "packageName": "doctoc", - "hash": "sha512-JsxnSVZtLCThKehjFPBDhP1+ZLmdfXQynZH/0ABAwrnd1Zf3AV6LigC9oWJyaZ+c6RXCDnlGUNJ7I+1v8VaaRg==" - } - }, - "npm:p-map@3.0.0": { - "type": "npm", - "name": "npm:p-map@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-map", - "hash": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==" - } - }, - "npm:boxen@5.1.2": { - "type": "npm", - "name": "npm:boxen@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "boxen", - "hash": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==" - } - }, - "npm:@nx/js": { - "type": "npm", - "name": "npm:@nx/js", - "data": { - "version": "16.10.0", - "packageName": "@nx/js", - "hash": "sha512-27AH0/+XTMzOxVS6oV8Zl7/Rr1UDMYsnCVqoCU9CXp087uxcD4VnBOEjsEUlJKh1RdwGE3K0hBkk7NC1LP+vYQ==" - } - }, - "npm:@types/react-dom@18.0.6": { - "type": "npm", - "name": "npm:@types/react-dom@18.0.6", - "data": { - "version": "18.0.6", - "packageName": "@types/react-dom", - "hash": "sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==" - } - }, - "npm:core-js-pure": { - "type": "npm", - "name": "npm:core-js-pure", - "data": { - "version": "3.21.1", - "packageName": "core-js-pure", - "hash": "sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==" - } - }, - "npm:hosted-git-info@6.1.1": { - "type": "npm", - "name": "npm:hosted-git-info@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "hosted-git-info", - "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" - } - }, - "npm:array-back@4.0.2": { - "type": "npm", - "name": "npm:array-back@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "array-back", - "hash": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==" - } - }, - "npm:redent@1.0.0": { - "type": "npm", - "name": "npm:redent@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "redent", - "hash": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=" - } - }, - "npm:component-emitter": { - "type": "npm", - "name": "npm:component-emitter", - "data": { - "version": "1.3.0", - "packageName": "component-emitter", - "hash": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" - } - }, - "npm:es6-shim": { - "type": "npm", - "name": "npm:es6-shim", - "data": { - "version": "0.35.5", - "packageName": "es6-shim", - "hash": "sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg==" - } - }, - "npm:regexpp": { - "type": "npm", - "name": "npm:regexpp", - "data": { - "version": "3.1.0", - "packageName": "regexpp", - "hash": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" - } - }, - "npm:serialize-javascript@6.0.1": { - "type": "npm", - "name": "npm:serialize-javascript@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "serialize-javascript", - "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - } - }, - "npm:style-loader@1.3.0": { - "type": "npm", - "name": "npm:style-loader@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "style-loader", - "hash": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "8.1.0", - "packageName": "fs-extra", - "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - } - }, - "npm:webpack-dev-middleware@3.7.3": { - "type": "npm", - "name": "npm:webpack-dev-middleware@3.7.3", - "data": { - "version": "3.7.3", - "packageName": "webpack-dev-middleware", - "hash": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "13.1.2", - "packageName": "yargs-parser", - "hash": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:json-stringify-safe": { - "type": "npm", - "name": "npm:json-stringify-safe", - "data": { - "version": "5.0.1", - "packageName": "json-stringify-safe", - "hash": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - } - }, - "npm:fs-extra@7.0.1": { - "type": "npm", - "name": "npm:fs-extra@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "fs-extra", - "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" - } - }, - "npm:resolve-dir": { - "type": "npm", - "name": "npm:resolve-dir", - "data": { - "version": "1.0.1", - "packageName": "resolve-dir", - "hash": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.0.13", - "packageName": "update-browserslist-db", - "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" - } - }, - "npm:fined": { - "type": "npm", - "name": "npm:fined", - "data": { - "version": "1.2.0", - "packageName": "fined", - "hash": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==" - } - }, - "npm:esbuild-linux-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-arm64", - "hash": "sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==" - } - }, - "npm:moo-color": { - "type": "npm", - "name": "npm:moo-color", - "data": { - "version": "1.0.3", - "packageName": "moo-color", - "hash": "sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==" - } - }, - "npm:@storybook/channels": { - "type": "npm", - "name": "npm:@storybook/channels", - "data": { - "version": "6.5.15", - "packageName": "@storybook/channels", - "hash": "sha512-gPpsBgirv2NCXbH4WbYqdkI0JLE96aiVuu7UEWfn9yu071pQ9CLHbhXGD9fSFNrfOkyBBY10ppSE7uCXw3Wexg==" - } - }, - "npm:unset-value": { - "type": "npm", - "name": "npm:unset-value", - "data": { - "version": "1.0.0", - "packageName": "unset-value", - "hash": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=" - } - }, - "npm:webidl-conversions@4.0.2": { - "type": "npm", - "name": "npm:webidl-conversions@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "webidl-conversions", - "hash": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - } - }, - "npm:@types/parse-json": { - "type": "npm", - "name": "npm:@types/parse-json", - "data": { - "version": "4.0.0", - "packageName": "@types/parse-json", - "hash": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - } - }, - "npm:chrome-trace-event": { - "type": "npm", - "name": "npm:chrome-trace-event", - "data": { - "version": "1.0.2", - "packageName": "chrome-trace-event", - "hash": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==" - } - }, - "npm:babel-plugin-styled-components": { - "type": "npm", - "name": "npm:babel-plugin-styled-components", - "data": { - "version": "1.10.7", - "packageName": "babel-plugin-styled-components", - "hash": "sha512-MBMHGcIA22996n9hZRf/UJLVVgkEOITuR2SvjHLb5dSTUyR4ZRGn+ngITapes36FI3WLxZHfRhkA1ffHxihOrg==" - } - }, - "npm:discontinuous-range": { - "type": "npm", - "name": "npm:discontinuous-range", - "data": { - "version": "1.0.0", - "packageName": "discontinuous-range", - "hash": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=" - } - }, - "npm:@typescript-eslint/typescript-estree@5.59.1": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@5.59.1", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-lYLBBOCsFltFy7XVqzX0Ju+Lh3WPIAWxYpmH/Q7ZoqzbscLiCW00LeYCdsUnnfnj29/s1WovXKh2gwCoinHNGA==" - } - }, - "npm:backfill-cache": { - "type": "npm", - "name": "npm:backfill-cache", - "data": { - "version": "5.6.2", - "packageName": "backfill-cache", - "hash": "sha512-E2SjMLgHt8NJ9sPKL6djxPqQKvI3YEedT0q/fZ8uknQbNg9H6JAxjWlff6sB8UcoBmep4R99ACUuYqOfFEBglw==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "4.1.0", - "packageName": "chalk", - "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" - } - }, - "npm:ast-types@0.13.2": { - "type": "npm", - "name": "npm:ast-types@0.13.2", - "data": { - "version": "0.13.2", - "packageName": "ast-types", - "hash": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==" - } - }, - "npm:junk": { - "type": "npm", - "name": "npm:junk", - "data": { - "version": "3.1.0", - "packageName": "junk", - "hash": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==" - } - }, - "npm:syncpack": { - "type": "npm", - "name": "npm:syncpack", - "data": { - "version": "10.6.1", - "packageName": "syncpack", - "hash": "sha512-mnBo6PYffon2TKxzJmOy3V7srv1GRX9wdmi+FHiqkOw0r2mQMgu1nmM/covETqZzB2px//cSaYpcPW+rniT/0Q==" - } - }, - "npm:lodash.isarray": { - "type": "npm", - "name": "npm:lodash.isarray", - "data": { - "version": "3.0.4", - "packageName": "lodash.isarray", - "hash": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" - } - }, - "npm:to-camel-case": { - "type": "npm", - "name": "npm:to-camel-case", - "data": { - "version": "1.0.0", - "packageName": "to-camel-case", - "hash": "sha1-GlYFSy+daWKYzmamCJcyK29CPkY=" - } - }, - "npm:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "4.1.3", - "packageName": "arg", - "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - } - }, - "npm:toposort": { - "type": "npm", - "name": "npm:toposort", - "data": { - "version": "2.0.2", - "packageName": "toposort", - "hash": "sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=" - } - }, - "npm:ccount": { - "type": "npm", - "name": "npm:ccount", - "data": { - "version": "1.1.0", - "packageName": "ccount", - "hash": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.0.2", - "packageName": "is-bigint", - "hash": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" - } - }, - "npm:unicode-match-property-value-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-value-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-match-property-value-ecmascript", - "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - } - }, - "npm:write-file-webpack-plugin": { - "type": "npm", - "name": "npm:write-file-webpack-plugin", - "data": { - "version": "4.5.0", - "packageName": "write-file-webpack-plugin", - "hash": "sha512-k46VeERtaezbmjpDcMWATjKUWBrVe/ZEEm0cyvUm8FFP8A/r+dw5x3psRvkUOhqh9bqBLUlGYYbtr6luI+HeAg==" - } - }, - "npm:tar@4.4.19": { - "type": "npm", - "name": "npm:tar@4.4.19", - "data": { - "version": "4.4.19", - "packageName": "tar", - "hash": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==" - } - }, - "npm:@griffel/eslint-plugin": { - "type": "npm", - "name": "npm:@griffel/eslint-plugin", - "data": { - "version": "1.2.0", - "packageName": "@griffel/eslint-plugin", - "hash": "sha512-ThqQR1UIeM+WZH1z8RUrKHCDuSXrFEwRIL4nX0UmBZznV/36DiGzODOQl6ZoZ9eCGoGYxTnl6riwy/1cB/0yGA==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.0.5", - "packageName": "minimatch", - "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" - } - }, - "npm:lcid": { - "type": "npm", - "name": "npm:lcid", - "data": { - "version": "1.0.0", - "packageName": "lcid", - "hash": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=" - } - }, - "npm:@types/tough-cookie": { - "type": "npm", - "name": "npm:@types/tough-cookie", - "data": { - "version": "4.0.2", - "packageName": "@types/tough-cookie", - "hash": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==" - } - }, - "npm:fs-extra@0.30.0": { - "type": "npm", - "name": "npm:fs-extra@0.30.0", - "data": { - "version": "0.30.0", - "packageName": "fs-extra", - "hash": "sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=" - } - }, - "npm:@babel/plugin-transform-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dynamic-import", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-dynamic-import", - "hash": "sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==" - } - }, - "npm:find-versions": { - "type": "npm", - "name": "npm:find-versions", - "data": { - "version": "5.1.0", - "packageName": "find-versions", - "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" - } - }, - "npm:is-word-character": { - "type": "npm", - "name": "npm:is-word-character", - "data": { - "version": "1.0.4", - "packageName": "is-word-character", - "hash": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" - } - }, - "npm:ignore-walk@6.0.3": { - "type": "npm", - "name": "npm:ignore-walk@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "ignore-walk", - "hash": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==" - } - }, - "npm:@types/gulp-remember": { - "type": "npm", - "name": "npm:@types/gulp-remember", - "data": { - "version": "0.0.31", - "packageName": "@types/gulp-remember", - "hash": "sha512-pULOyv3Nr3TCIqbrr0ecTkFn5iIPRoQIkvljYMJUIdfwN8JPbEdMemzt2XOlvqJ6xj5cxCVgFqv5zkWjQ3AVZw==" - } - }, - "npm:cross-spawn@5.1.0": { - "type": "npm", - "name": "npm:cross-spawn@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "cross-spawn", - "hash": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=" - } - }, - "npm:define-properties": { - "type": "npm", - "name": "npm:define-properties", - "data": { - "version": "1.1.3", - "packageName": "define-properties", - "hash": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" - } - }, - "npm:duplexer2@0.1.4": { - "type": "npm", - "name": "npm:duplexer2@0.1.4", - "data": { - "version": "0.1.4", - "packageName": "duplexer2", - "hash": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==" - } - }, - "npm:htmlparser2@3.10.1": { - "type": "npm", - "name": "npm:htmlparser2@3.10.1", - "data": { - "version": "3.10.1", - "packageName": "htmlparser2", - "hash": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==" - } - }, - "npm:@rnx-kit/eslint-plugin": { - "type": "npm", - "name": "npm:@rnx-kit/eslint-plugin", - "data": { - "version": "0.2.5", - "packageName": "@rnx-kit/eslint-plugin", - "hash": "sha512-69Xlsz7fMMAQqLJ9ghglH5fXvU5xXZR09gCkjoK4gephhnQR/i+QDyt0wlqKt2HBo0RUGFbO+EA8aNPcOrJDJg==" - } - }, - "npm:@types/node@12.20.24": { - "type": "npm", - "name": "npm:@types/node@12.20.24", - "data": { - "version": "12.20.24", - "packageName": "@types/node", - "hash": "sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==" - } - }, - "npm:spdx-expression-parse": { - "type": "npm", - "name": "npm:spdx-expression-parse", - "data": { - "version": "3.0.1", - "packageName": "spdx-expression-parse", - "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.19.1", - "packageName": "es-abstract", - "hash": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==" - } - }, - "npm:@types/babel-plugin-tester": { - "type": "npm", - "name": "npm:@types/babel-plugin-tester", - "data": { - "version": "9.0.5", - "packageName": "@types/babel-plugin-tester", - "hash": "sha512-NRBPlhi5VkrTXMqDB1hSUnHs7vqLGRopeukC9u1zilOIFe9O1siwqeKZRiuJiVYakgpeDso/HE2Q5DU1aDqBog==" - } - }, - "npm:ability-attributes": { - "type": "npm", - "name": "npm:ability-attributes", - "data": { - "version": "0.0.8", - "packageName": "ability-attributes", - "hash": "sha512-GU2Gd1nAUzvTEu4+615DKCf7OkWf+rL5kLmsi3Fg+nY7fhjrMT1ZwsU8MJ8hqilipspq1Q2yIuUYj4q8l2W8nQ==" - } - }, - "npm:istanbul-lib-coverage": { - "type": "npm", - "name": "npm:istanbul-lib-coverage", - "data": { - "version": "3.2.0", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.10.1", - "packageName": "path-scurry", - "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" - } - }, - "npm:typical": { - "type": "npm", - "name": "npm:typical", - "data": { - "version": "5.2.0", - "packageName": "typical", - "hash": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==" - } - }, - "npm:beachball": { - "type": "npm", - "name": "npm:beachball", - "data": { - "version": "2.31.0", - "packageName": "beachball", - "hash": "sha512-xi6xf9nLLp9dpXBhnQuDsWdM6k+I34CrSdtniW8Qlt/BdHoUdTGhFFk9ky30pgywCam/bgGQbMd2FOChaUvfjQ==" - } - }, - "npm:union-value": { - "type": "npm", - "name": "npm:union-value", - "data": { - "version": "1.0.1", - "packageName": "union-value", - "hash": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==" - } - }, - "npm:@hot-loader/react-dom@17.0.2": { - "type": "npm", - "name": "npm:@hot-loader/react-dom@17.0.2", - "data": { - "version": "17.0.2", - "packageName": "@hot-loader/react-dom", - "hash": "sha512-G2RZrFhsQClS+bdDh/Ojpk3SgocLPUGnvnJDTQYnmKSSwXtU+Yh+8QMs+Ia3zaAvBiOSpIIDSUxuN69cvKqrWg==" - } - }, - "npm:mem": { - "type": "npm", - "name": "npm:mem", - "data": { - "version": "8.1.1", - "packageName": "mem", - "hash": "sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==" - } - }, - "npm:@types/graceful-fs": { - "type": "npm", - "name": "npm:@types/graceful-fs", - "data": { - "version": "4.1.6", - "packageName": "@types/graceful-fs", - "hash": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==" - } - }, - "npm:@lage-run/logger": { - "type": "npm", - "name": "npm:@lage-run/logger", - "data": { - "version": "1.1.1", - "packageName": "@lage-run/logger", - "hash": "sha512-8ZWHKCnnOYdLlLS2sSrMRZ4PM3oY5uqc2JN1RptSaKg8tR8g6ITMRmJ04/J4OqqiXiWVv2vozGt9pgxJLI2i7A==" - } - }, - "npm:@webassemblyjs/ieee754@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==" - } - }, - "npm:@opencensus/web-types": { - "type": "npm", - "name": "npm:@opencensus/web-types", - "data": { - "version": "0.0.7", - "packageName": "@opencensus/web-types", - "hash": "sha512-xB+w7ZDAu3YBzqH44rCmG9/RlrOmFuDPt/bpf17eJr8eZSrLt7nc7LnWdxM9Mmoj/YKMHpxRg28txu3TcpiL+g==" - } - }, - "npm:currently-unhandled": { - "type": "npm", - "name": "npm:currently-unhandled", - "data": { - "version": "0.4.1", - "packageName": "currently-unhandled", - "hash": "sha1-mI3zP+qxke95mmE2nddsF635V+o=" - } - }, - "npm:d3-voronoi": { - "type": "npm", - "name": "npm:d3-voronoi", - "data": { - "version": "1.1.4", - "packageName": "d3-voronoi", - "hash": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" - } - }, - "npm:redeyed": { - "type": "npm", - "name": "npm:redeyed", - "data": { - "version": "2.1.1", - "packageName": "redeyed", - "hash": "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=" - } - }, - "npm:remark-frontmatter": { - "type": "npm", - "name": "npm:remark-frontmatter", - "data": { - "version": "1.3.2", - "packageName": "remark-frontmatter", - "hash": "sha512-2eayxITZ8rezsXdgcXnYB3iLivohm2V/ZT4Ne8uhua6A4pk6GdLE2ZzJnbnINtD1HRLaTdB7RwF9sgUbMptJZA==" - } - }, - "npm:shallowequal": { - "type": "npm", - "name": "npm:shallowequal", - "data": { - "version": "1.1.0", - "packageName": "shallowequal", - "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - } - }, - "npm:swc-loader": { - "type": "npm", - "name": "npm:swc-loader", - "data": { - "version": "0.2.3", - "packageName": "swc-loader", - "hash": "sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:babel-plugin-transform-typescript-metadata": { - "type": "npm", - "name": "npm:babel-plugin-transform-typescript-metadata", - "data": { - "version": "0.3.2", - "packageName": "babel-plugin-transform-typescript-metadata", - "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" - } - }, - "npm:chownr@1.1.4": { - "type": "npm", - "name": "npm:chownr@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "chownr", - "hash": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - } - }, - "npm:mini-css-extract-plugin": { - "type": "npm", - "name": "npm:mini-css-extract-plugin", - "data": { - "version": "2.6.1", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==" - } - }, - "npm:@octokit/auth-token": { - "type": "npm", - "name": "npm:@octokit/auth-token", - "data": { - "version": "2.5.0", - "packageName": "@octokit/auth-token", - "hash": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==" - } - }, - "npm:agent-base@4.3.0": { - "type": "npm", - "name": "npm:agent-base@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "agent-base", - "hash": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.0.2", - "packageName": "@types/babel__template", - "hash": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==" - } - }, - "npm:copy-props": { - "type": "npm", - "name": "npm:copy-props", - "data": { - "version": "2.0.5", - "packageName": "copy-props", - "hash": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==" - } - }, - "npm:@types/dedent": { - "type": "npm", - "name": "npm:@types/dedent", - "data": { - "version": "0.7.0", - "packageName": "@types/dedent", - "hash": "sha512-EGlKlgMhnLt/cM4DbUSafFdrkeJoC9Mvnj0PUCU7tFmTjMjNRT957kXCx0wYm3JuEq4o4ZsS5vG+NlkM2DMd2A==" - } - }, - "npm:browserify-zlib": { - "type": "npm", - "name": "npm:browserify-zlib", - "data": { - "version": "0.2.0", - "packageName": "browserify-zlib", - "hash": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==" - } - }, - "npm:fclone": { - "type": "npm", - "name": "npm:fclone", - "data": { - "version": "1.0.11", - "packageName": "fclone", - "hash": "sha512-GDqVQezKzRABdeqflsgMr7ktzgF9CyS+p2oe0jJqUY6izSSbhPIQJDpoU4PtGcD7VPM9xh/dVrTu6z1nwgmEGw==" - } - }, - "npm:eslint-import-resolver-typescript": { - "type": "npm", - "name": "npm:eslint-import-resolver-typescript", - "data": { - "version": "2.5.0", - "packageName": "eslint-import-resolver-typescript", - "hash": "sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==" - } - }, - "npm:@azure/storage-blob": { - "type": "npm", - "name": "npm:@azure/storage-blob", - "data": { - "version": "12.1.2", - "packageName": "@azure/storage-blob", - "hash": "sha512-PCHgG4r3xLt5FaFj+uiMqrRpuzD3TD17cvxCeA1JKK2bJEf8b07H3QRLQVf0DM1MmvYY8FgQagkWZTp+jr9yew==" - } - }, - "npm:http-proxy-agent@2.1.0": { - "type": "npm", - "name": "npm:http-proxy-agent@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "http-proxy-agent", - "hash": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==" - } - }, - "npm:css-select@4.1.3": { - "type": "npm", - "name": "npm:css-select@4.1.3", - "data": { - "version": "4.1.3", - "packageName": "css-select", - "hash": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "3.0.2", - "packageName": "is-path-inside", - "hash": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==" - } - }, - "npm:normalize-package-data": { - "type": "npm", - "name": "npm:normalize-package-data", - "data": { - "version": "2.5.0", - "packageName": "normalize-package-data", - "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" - } - }, - "npm:object.hasown": { - "type": "npm", - "name": "npm:object.hasown", - "data": { - "version": "1.1.0", - "packageName": "object.hasown", - "hash": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==" - } - }, - "npm:snapdragon-util": { - "type": "npm", - "name": "npm:snapdragon-util", - "data": { - "version": "3.0.1", - "packageName": "snapdragon-util", - "hash": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==" - } - }, - "npm:uuid@3.4.0": { - "type": "npm", - "name": "npm:uuid@3.4.0", - "data": { - "version": "3.4.0", - "packageName": "uuid", - "hash": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - } - }, - "npm:code-block-writer": { - "type": "npm", - "name": "npm:code-block-writer", - "data": { - "version": "10.1.1", - "packageName": "code-block-writer", - "hash": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==" - } - }, - "npm:vfile": { - "type": "npm", - "name": "npm:vfile", - "data": { - "version": "4.0.2", - "packageName": "vfile", - "hash": "sha512-yhoTU5cDMSsaeaMfJ5g0bUKYkYmZhAh9fn9TZicxqn+Cw4Z439il2v3oT9S0yjlpqlI74aFOQCt3nOV+pxzlkw==" - } - }, - "npm:resolve-alpn": { - "type": "npm", - "name": "npm:resolve-alpn", - "data": { - "version": "1.2.1", - "packageName": "resolve-alpn", - "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - } - }, - "npm:wrap-ansi@6.2.0": { - "type": "npm", - "name": "npm:wrap-ansi@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" - } - }, - "npm:@opentelemetry/api": { - "type": "npm", - "name": "npm:@opentelemetry/api", - "data": { - "version": "0.6.1", - "packageName": "@opentelemetry/api", - "hash": "sha512-wpufGZa7tTxw7eAsjXJtiyIQ42IWQdX9iUQp7ACJcKo1hCtuhLU+K2Nv1U6oRwT1oAlZTE6m4CgWKZBhOiau3Q==" - } - }, - "npm:type-fest@0.6.0": { - "type": "npm", - "name": "npm:type-fest@0.6.0", - "data": { - "version": "0.6.0", - "packageName": "type-fest", - "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" - } - }, - "npm:yargs@7.1.0": { - "type": "npm", - "name": "npm:yargs@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "yargs", - "hash": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=" - } - }, - "npm:storybook-addon-performance": { - "type": "npm", - "name": "npm:storybook-addon-performance", - "data": { - "version": "0.16.1", - "packageName": "storybook-addon-performance", - "hash": "sha512-hDMRXvZljwBXYKrNegB9+LvT1b0ZQlkvTEDqq4gbMovQcD9yR0mka1eDuhwZfzxcgY1PrhkN3EhNxLybA/ql9Q==" - } - }, - "npm:@storybook/addons": { - "type": "npm", - "name": "npm:@storybook/addons", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addons", - "hash": "sha512-xT31SuSX+kYGyxCNK2nqL7WTxucs3rSmhiCLovJcUjYk+QquV3c2c53Ki7lwwdDbzfXFcNAe0HJ4hoTN4jhn0Q==" - } - }, - "npm:is-obj@2.0.0": { - "type": "npm", - "name": "npm:is-obj@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-obj", - "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - } - }, - "npm:batch": { - "type": "npm", - "name": "npm:batch", - "data": { - "version": "0.6.1", - "packageName": "batch", - "hash": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" - } - }, - "npm:fs-extra@10.1.0": { - "type": "npm", - "name": "npm:fs-extra@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:gzip-size@6.0.0": { - "type": "npm", - "name": "npm:gzip-size@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "gzip-size", - "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" - } - }, - "npm:pend": { - "type": "npm", - "name": "npm:pend", - "data": { - "version": "1.2.0", - "packageName": "pend", - "hash": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:stringify-object": { - "type": "npm", - "name": "npm:stringify-object", - "data": { - "version": "3.3.0", - "packageName": "stringify-object", - "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" - } - }, - "npm:code-point-at": { - "type": "npm", - "name": "npm:code-point-at", - "data": { - "version": "1.1.0", - "packageName": "code-point-at", - "hash": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - } - }, - "npm:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "2.1.3", - "packageName": "css-what", - "hash": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" - } - }, - "npm:forever-agent": { - "type": "npm", - "name": "npm:forever-agent", - "data": { - "version": "0.6.1", - "packageName": "forever-agent", - "hash": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - } - }, - "npm:color-string": { - "type": "npm", - "name": "npm:color-string", - "data": { - "version": "1.5.5", - "packageName": "color-string", - "hash": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==" - } - }, - "npm:stream-http@2.8.3": { - "type": "npm", - "name": "npm:stream-http@2.8.3", - "data": { - "version": "2.8.3", - "packageName": "stream-http", - "hash": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==" - } - }, - "npm:@types/babel__helper-plugin-utils": { - "type": "npm", - "name": "npm:@types/babel__helper-plugin-utils", - "data": { - "version": "7.10.2", - "packageName": "@types/babel__helper-plugin-utils", - "hash": "sha512-Sa17cG0SKMedlH5bEozh0eXo/54iWpSxbxCoqknRJY0oGGTwO9/SCfIx1taDnG0dvkJnYW+/7tv+PTSFaQsRNA==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.2", - "packageName": "follow-redirects", - "hash": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" - } - }, - "npm:semver@7.5.4": { - "type": "npm", - "name": "npm:semver@7.5.4", - "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" - } - }, - "npm:lodash._root": { - "type": "npm", - "name": "npm:lodash._root", - "data": { - "version": "3.0.1", - "packageName": "lodash._root", - "hash": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=" - } - }, - "npm:@rushstack/node-core-library@3.50.1": { - "type": "npm", - "name": "npm:@rushstack/node-core-library@3.50.1", - "data": { - "version": "3.50.1", - "packageName": "@rushstack/node-core-library", - "hash": "sha512-9d2xE7E9yQEBS6brTptdP8cslt6iL5+UnkY2lRxQQ4Q/jlXtsrWCCJCxwr56W/eJEe9YT/yHR4mMn5QY64Ps2w==" - } - }, - "npm:run-parallel-limit": { - "type": "npm", - "name": "npm:run-parallel-limit", - "data": { - "version": "1.0.6", - "packageName": "run-parallel-limit", - "hash": "sha512-yFFs4Q2kECi5mWXyyZj3UlAZ5OFq5E07opABC+EmhZdjEkrxXaUwFqOaaNF4tbayMnBxrsbujpeCYTVjGufZGQ==" - } - }, - "npm:connect": { - "type": "npm", - "name": "npm:connect", - "data": { - "version": "3.7.0", - "packageName": "connect", - "hash": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" - } - }, - "npm:collapse-white-space": { - "type": "npm", - "name": "npm:collapse-white-space", - "data": { - "version": "1.0.6", - "packageName": "collapse-white-space", - "hash": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" - } - }, - "npm:@babel/helper-remap-async-to-generator": { - "type": "npm", - "name": "npm:@babel/helper-remap-async-to-generator", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" - } - }, - "npm:@types/webpack-env": { - "type": "npm", - "name": "npm:@types/webpack-env", - "data": { - "version": "1.16.0", - "packageName": "@types/webpack-env", - "hash": "sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==" - } - }, - "npm:json-schema@0.2.3": { - "type": "npm", - "name": "npm:json-schema@0.2.3", - "data": { - "version": "0.2.3", - "packageName": "json-schema", - "hash": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - } - }, - "npm:trim": { - "type": "npm", - "name": "npm:trim", - "data": { - "version": "0.0.1", - "packageName": "trim", - "hash": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.1.2", - "packageName": "@jridgewell/set-array", - "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:array-union@1.0.2": { - "type": "npm", - "name": "npm:array-union@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "array-union", - "hash": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.13.11", - "packageName": "regenerator-runtime", - "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - } - }, - "npm:colors@1.0.3": { - "type": "npm", - "name": "npm:colors@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "colors", - "hash": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - } - }, - "npm:default-resolution": { - "type": "npm", - "name": "npm:default-resolution", - "data": { - "version": "2.0.0", - "packageName": "default-resolution", - "hash": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=" - } - }, - "npm:@emotion/utils": { - "type": "npm", - "name": "npm:@emotion/utils", - "data": { - "version": "0.11.3", - "packageName": "@emotion/utils", - "hash": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" - } - }, - "npm:@storybook/manager-webpack4": { - "type": "npm", - "name": "npm:@storybook/manager-webpack4", - "data": { - "version": "6.5.15", - "packageName": "@storybook/manager-webpack4", - "hash": "sha512-zRvBTMoaFO6MvHDsDLnt3tsFENhpY3k+e/UIPdqbIDMbUPGGQzxJucAM9aS/kbVSO5IVs8IflVxbeeB/uTIIfA==" - } - }, - "npm:acorn-walk@7.2.0": { - "type": "npm", - "name": "npm:acorn-walk@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "acorn-walk", - "hash": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" - } - }, - "npm:@types/jest-axe": { - "type": "npm", - "name": "npm:@types/jest-axe", - "data": { - "version": "3.5.5", - "packageName": "@types/jest-axe", - "hash": "sha512-b8WDIdoeKtr/JDJ2+QjFXMuS8UhfdMA6+15Z5KjjIie3jQrSXD9KZWMSQxc0nPtx7L9rIFKdiDpQk+m7s4a/8w==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" - } - }, - "npm:json-stable-stringify": { - "type": "npm", - "name": "npm:json-stable-stringify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify", - "hash": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=" - } - }, - "npm:p-event": { - "type": "npm", - "name": "npm:p-event", - "data": { - "version": "4.2.0", - "packageName": "p-event", - "hash": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==" - } - }, - "npm:geckodriver": { - "type": "npm", - "name": "npm:geckodriver", - "data": { - "version": "3.0.2", - "packageName": "geckodriver", - "hash": "sha512-GHOQzQnTeZOJdcdEXLuzmcRwkbHuei1VivXkn2BLyleKiT6lTvl0T7vm+d0wvr/EZC7jr0m1u1pBHSfqtuFuNQ==" - } - }, - "npm:glob@7.1.3": { - "type": "npm", - "name": "npm:glob@7.1.3", - "data": { - "version": "7.1.3", - "packageName": "glob", - "hash": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==" - } - }, - "npm:hastscript@6.0.0": { - "type": "npm", - "name": "npm:hastscript@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "hastscript", - "hash": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==" - } - }, - "npm:lodash.isobject": { - "type": "npm", - "name": "npm:lodash.isobject", - "data": { - "version": "3.0.2", - "packageName": "lodash.isobject", - "hash": "sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0=" - } - }, - "npm:has-values@0.1.4": { - "type": "npm", - "name": "npm:has-values@0.1.4", - "data": { - "version": "0.1.4", - "packageName": "has-values", - "hash": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - } - }, - "npm:has-value": { - "type": "npm", - "name": "npm:has-value", - "data": { - "version": "1.0.0", - "packageName": "has-value", - "hash": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=" - } - }, - "npm:rollup-plugin-node-resolve": { - "type": "npm", - "name": "npm:rollup-plugin-node-resolve", - "data": { - "version": "5.2.0", - "packageName": "rollup-plugin-node-resolve", - "hash": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==" - } - }, - "npm:cookies": { - "type": "npm", - "name": "npm:cookies", - "data": { - "version": "0.8.0", - "packageName": "cookies", - "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" - } - }, - "npm:@octokit/openapi-types": { - "type": "npm", - "name": "npm:@octokit/openapi-types", - "data": { - "version": "18.0.0", - "packageName": "@octokit/openapi-types", - "hash": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==" - } - }, - "npm:@types/expect": { - "type": "npm", - "name": "npm:@types/expect", - "data": { - "version": "1.20.4", - "packageName": "@types/expect", - "hash": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==" - } - }, - "npm:crypto-browserify": { - "type": "npm", - "name": "npm:crypto-browserify", - "data": { - "version": "3.12.0", - "packageName": "crypto-browserify", - "hash": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==" - } - }, - "npm:@types/gulp-cache": { - "type": "npm", - "name": "npm:@types/gulp-cache", - "data": { - "version": "0.4.5", - "packageName": "@types/gulp-cache", - "hash": "sha512-VUG4CILSTCrL6VV+6ZD7jxZN4kWkmd74h+fAw1gq9+t8gtBEMUHMBICOmmkMAOM+itsQDOlZC3AzUeUAcLw07w==" - } - }, - "npm:@babel/plugin-transform-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-spread", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==" - } - }, - "npm:webpack-log": { - "type": "npm", - "name": "npm:webpack-log", - "data": { - "version": "2.0.0", - "packageName": "webpack-log", - "hash": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==" - } - }, - "npm:whatwg-fetch": { - "type": "npm", - "name": "npm:whatwg-fetch", - "data": { - "version": "2.0.4", - "packageName": "whatwg-fetch", - "hash": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==" - } - }, - "npm:which-module@1.0.0": { - "type": "npm", - "name": "npm:which-module@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "which-module", - "hash": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" - } - }, - "npm:xtend": { - "type": "npm", - "name": "npm:xtend", - "data": { - "version": "4.0.2", - "packageName": "xtend", - "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - } - }, - "npm:detect-port": { - "type": "npm", - "name": "npm:detect-port", - "data": { - "version": "1.5.1", - "packageName": "detect-port", - "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" - } - }, - "npm:downshift": { - "type": "npm", - "name": "npm:downshift", - "data": { - "version": "5.0.5", - "packageName": "downshift", - "hash": "sha512-V1idov3Rkvz1YWA1K67aIx51EgokIDvep4x6KmU7HhsayI8DvTEZBeH4O92zeFVGximKujRO7ChBzBAf4PKWFA==" - } - }, - "npm:eslint-plugin-react": { - "type": "npm", - "name": "npm:eslint-plugin-react", - "data": { - "version": "7.26.0", - "packageName": "eslint-plugin-react", - "hash": "sha512-dceliS5itjk4EZdQYtLMz6GulcsasguIs+VTXuiC7Q5IPIdGTkyfXVdmsQOqEhlD9MciofH4cMcT1bw1WWNxCQ==" - } - }, - "npm:fork-ts-checker-webpack-plugin": { - "type": "npm", - "name": "npm:fork-ts-checker-webpack-plugin", - "data": { - "version": "6.1.0", - "packageName": "fork-ts-checker-webpack-plugin", - "hash": "sha512-xLNufWQ1dfQUdZe48TGQlER/0OkcMnUB6lfbN9Tt13wsYyo+2DwcCbnOaPBo1PoFow/WL8pJPktGIdbJaHxAnw==" - } - }, - "npm:is-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.0.7", - "packageName": "is-string", - "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - } - }, - "npm:oauth-sign": { - "type": "npm", - "name": "npm:oauth-sign", - "data": { - "version": "0.9.0", - "packageName": "oauth-sign", - "hash": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - } - }, - "npm:p-profiler": { - "type": "npm", - "name": "npm:p-profiler", - "data": { - "version": "0.2.1", - "packageName": "p-profiler", - "hash": "sha512-/XDER5u19OrAJ283ofIgw9hsLSoyQnjzki+tmn42vdppHOfo8PgivSSZfwaiyRAzLC2h02+Q+MKiIuuSve+7nw==" - } - }, - "npm:sane": { - "type": "npm", - "name": "npm:sane", - "data": { - "version": "4.1.0", - "packageName": "sane", - "hash": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:lerna": { - "type": "npm", - "name": "npm:lerna", - "data": { - "version": "7.1.3", - "packageName": "lerna", - "hash": "sha512-LMs9HU0z5fNFMNOyDVinJcf04QaScReJ8Q2pqxO+nPOmbvNsBwykBgMTWLboL1rI1CCR0/WLdMnvObvR52MtTw==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "1.1.3", - "packageName": "tapable", - "hash": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" - } - }, - "npm:ajv@4.11.8": { - "type": "npm", - "name": "npm:ajv@4.11.8", - "data": { - "version": "4.11.8", - "packageName": "ajv", - "hash": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=" - } - }, - "npm:arr-union@2.1.0": { - "type": "npm", - "name": "npm:arr-union@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "arr-union", - "hash": "sha1-IPnqtexw9cfSFbEHexw5Fh0pLH0=" - } - }, - "npm:markdown-to-jsx": { - "type": "npm", - "name": "npm:markdown-to-jsx", - "data": { - "version": "7.1.7", - "packageName": "markdown-to-jsx", - "hash": "sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==" - } - }, - "npm:path-root-regex": { - "type": "npm", - "name": "npm:path-root-regex", - "data": { - "version": "0.1.2", - "packageName": "path-root-regex", - "hash": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" - } - }, - "npm:is-potential-custom-element-name": { - "type": "npm", - "name": "npm:is-potential-custom-element-name", - "data": { - "version": "1.0.1", - "packageName": "is-potential-custom-element-name", - "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - } - }, - "npm:istextorbinary": { - "type": "npm", - "name": "npm:istextorbinary", - "data": { - "version": "2.6.0", - "packageName": "istextorbinary", - "hash": "sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==" - } - }, - "npm:rxjs@6.6.7": { - "type": "npm", - "name": "npm:rxjs@6.6.7", - "data": { - "version": "6.6.7", - "packageName": "rxjs", - "hash": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==" - } - }, - "npm:miller-rabin": { - "type": "npm", - "name": "npm:miller-rabin", - "data": { - "version": "4.0.1", - "packageName": "miller-rabin", - "hash": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==" - } - }, - "npm:npmlog@6.0.2": { - "type": "npm", - "name": "npm:npmlog@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "npmlog", - "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" - } - }, - "npm:string-hash": { - "type": "npm", - "name": "npm:string-hash", - "data": { - "version": "1.1.3", - "packageName": "string-hash", - "hash": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" - } - }, - "npm:tslib@1.11.2": { - "type": "npm", - "name": "npm:tslib@1.11.2", - "data": { - "version": "1.11.2", - "packageName": "tslib", - "hash": "sha512-tTSkux6IGPnUGUd1XAZHcpu85MOkIl5zX49pO+jfsie3eP0B6pyhOlLXm3cAC6T7s+euSDDUUV+Acop5WmtkVg==" - } - }, - "npm:stream-exhaust": { - "type": "npm", - "name": "npm:stream-exhaust", - "data": { - "version": "1.0.2", - "packageName": "stream-exhaust", - "hash": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==" - } - }, - "npm:azure-storage-simple": { - "type": "npm", - "name": "npm:azure-storage-simple", - "data": { - "version": "1.0.0", - "packageName": "azure-storage-simple", - "hash": "sha512-n9zaOEfoxKUNZaeT1fJKJRfns9yyckstLlRXSPVr32m4RXwMSarJQZYl0ePBxToPY/JxdRK4lwXE0r0hp1JP3w==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.2.1", - "packageName": "es-module-lexer", - "hash": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.0.1", - "packageName": "unbox-primitive", - "hash": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" - } - }, - "npm:compute-scroll-into-view": { - "type": "npm", - "name": "npm:compute-scroll-into-view", - "data": { - "version": "1.0.11", - "packageName": "compute-scroll-into-view", - "hash": "sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==" - } - }, - "npm:https-proxy-agent@5.0.0": { - "type": "npm", - "name": "npm:https-proxy-agent@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "https-proxy-agent", - "hash": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==" - } - }, - "npm:icss-replace-symbols": { - "type": "npm", - "name": "npm:icss-replace-symbols", - "data": { - "version": "1.1.0", - "packageName": "icss-replace-symbols", - "hash": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" - } - }, - "npm:fs-exists-sync": { - "type": "npm", - "name": "npm:fs-exists-sync", - "data": { - "version": "0.1.0", - "packageName": "fs-exists-sync", - "hash": "sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=" - } - }, - "npm:@typescript-eslint/experimental-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/experimental-utils", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/experimental-utils", - "hash": "sha512-xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==" - } - }, - "npm:@types/ejs": { - "type": "npm", - "name": "npm:@types/ejs", - "data": { - "version": "3.1.2", - "packageName": "@types/ejs", - "hash": "sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==" - } - }, - "npm:parse-json@4.0.0": { - "type": "npm", - "name": "npm:parse-json@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "parse-json", - "hash": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - } - }, - "npm:@types/caseless": { - "type": "npm", - "name": "npm:@types/caseless", - "data": { - "version": "0.12.2", - "packageName": "@types/caseless", - "hash": "sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w==" - } - }, - "npm:filter-obj": { - "type": "npm", - "name": "npm:filter-obj", - "data": { - "version": "1.1.0", - "packageName": "filter-obj", - "hash": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=" - } - }, - "npm:@nrwl/nx-plugin": { - "type": "npm", - "name": "npm:@nrwl/nx-plugin", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/nx-plugin", - "hash": "sha512-AZiQ+amECFQGcWKhvs+KbqOzGU2dcQydGd0j4Wlz3xlfkEmYfCk80dj26ypSFB+3O+0p+q+HPpJhD0fka3shtw==" - } - }, - "npm:@types/react-syntax-highlighter": { - "type": "npm", - "name": "npm:@types/react-syntax-highlighter", - "data": { - "version": "10.2.1", - "packageName": "@types/react-syntax-highlighter", - "hash": "sha512-M2BAOiiQ2KDkCiuhO1UxAsSNfrSegUfXL1MabRggOoqJoPpaoSuTxGF+TgLuAjMEVW8dJDtp7WpBjjRLMxWgrQ==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:cache-swap": { - "type": "npm", - "name": "npm:cache-swap", - "data": { - "version": "0.3.0", - "packageName": "cache-swap", - "hash": "sha1-HFQaoQilAQb2ML3Zj+HeyLoTP1E=" - } - }, - "npm:check-more-types": { - "type": "npm", - "name": "npm:check-more-types", - "data": { - "version": "2.24.0", - "packageName": "check-more-types", - "hash": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=" - } - }, - "npm:color-support": { - "type": "npm", - "name": "npm:color-support", - "data": { - "version": "1.1.3", - "packageName": "color-support", - "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" - } - }, - "npm:storywright": { - "type": "npm", - "name": "npm:storywright", - "data": { - "version": "0.0.26-beta.1", - "packageName": "storywright", - "hash": "sha512-zNWRzTl8rOSDBFrbvozOcOshvLJPJzcSpm8sfZD6My24lsNK1xXsXDAykWZ7hh9y2XRtlXBL0Rewx82OoVKCXA==" - } - }, - "npm:is-nan": { - "type": "npm", - "name": "npm:is-nan", - "data": { - "version": "1.3.2", - "packageName": "is-nan", - "hash": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==" - } - }, - "npm:get-stream@4.1.0": { - "type": "npm", - "name": "npm:get-stream@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "get-stream", - "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" - } - }, - "npm:type-check@0.4.0": { - "type": "npm", - "name": "npm:type-check@0.4.0", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:commander@7.2.0": { - "type": "npm", - "name": "npm:commander@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:@types/http-cache-semantics": { - "type": "npm", - "name": "npm:@types/http-cache-semantics", - "data": { - "version": "4.0.0", - "packageName": "@types/http-cache-semantics", - "hash": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==" - } - }, - "npm:resolve-url": { - "type": "npm", - "name": "npm:resolve-url", - "data": { - "version": "0.2.1", - "packageName": "resolve-url", - "hash": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" - } - }, - "npm:snake-case": { - "type": "npm", - "name": "npm:snake-case", - "data": { - "version": "2.1.0", - "packageName": "snake-case", - "hash": "sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8=" - } - }, - "npm:source-map-loader": { - "type": "npm", - "name": "npm:source-map-loader", - "data": { - "version": "4.0.0", - "packageName": "source-map-loader", - "hash": "sha512-i3KVgM3+QPAHNbGavK+VBq03YoJl24m9JWNbLgsjTj8aJzXG9M61bantBTNBt7CNwY2FYf+RJRYJ3pzalKjIrw==" - } - }, - "npm:@nx/nx-linux-x64-musl@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-q8sINYLdIJxK/iUx9vRk5jWAWb/2O0PAbOJFwv4qkxBv4rLoN7y+otgCZ5v0xfx/zztFgk/oNY4lg5xYjIso2Q==" - } - }, - "npm:domutils@1.5.1": { - "type": "npm", - "name": "npm:domutils@1.5.1", - "data": { - "version": "1.5.1", - "packageName": "domutils", - "hash": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.1.1", - "packageName": "get-intrinsic", - "hash": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" - } - }, - "npm:set-blocking": { - "type": "npm", - "name": "npm:set-blocking", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "1.1.2", - "packageName": "depd", - "hash": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - } - }, - "npm:term-size@1.2.0": { - "type": "npm", - "name": "npm:term-size@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "term-size", - "hash": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=" - } - }, - "npm:map-age-cleaner": { - "type": "npm", - "name": "npm:map-age-cleaner", - "data": { - "version": "0.1.3", - "packageName": "map-age-cleaner", - "hash": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==" - } - }, - "npm:glob@8.1.0": { - "type": "npm", - "name": "npm:glob@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:acorn@7.4.1": { - "type": "npm", - "name": "npm:acorn@7.4.1", - "data": { - "version": "7.4.1", - "packageName": "acorn", - "hash": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } - }, - "npm:kind-of@5.1.0": { - "type": "npm", - "name": "npm:kind-of@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "kind-of", - "hash": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } - }, - "npm:prelude-ls@1.2.1": { - "type": "npm", - "name": "npm:prelude-ls@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:extend-shallow@3.0.2": { - "type": "npm", - "name": "npm:extend-shallow@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "extend-shallow", - "hash": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" - } - }, - "npm:babel-plugin-emotion": { - "type": "npm", - "name": "npm:babel-plugin-emotion", - "data": { - "version": "10.0.27", - "packageName": "babel-plugin-emotion", - "hash": "sha512-SUNYcT4FqhOqvwv0z1oeYhqgheU8qrceLojuHyX17ngo7WtWqN5I9l3IGHzf21Xraj465CVzF4IvOlAF+3ed0A==" - } - }, - "npm:@babel/helper-wrap-function": { - "type": "npm", - "name": "npm:@babel/helper-wrap-function", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-wrap-function", - "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" - } - }, - "npm:classnames": { - "type": "npm", - "name": "npm:classnames", - "data": { - "version": "2.2.6", - "packageName": "classnames", - "hash": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:@emotion/hash@0.8.0": { - "type": "npm", - "name": "npm:@emotion/hash@0.8.0", - "data": { - "version": "0.8.0", - "packageName": "@emotion/hash", - "hash": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" - } - }, - "npm:domhandler@2.4.2": { - "type": "npm", - "name": "npm:domhandler@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "domhandler", - "hash": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==" - } - }, - "npm:jest-canvas-mock": { - "type": "npm", - "name": "npm:jest-canvas-mock", - "data": { - "version": "2.4.0", - "packageName": "jest-canvas-mock", - "hash": "sha512-mmMpZzpmLzn5vepIaHk5HoH3Ka4WykbSoLuG/EKoJd0x0ID/t+INo1l8ByfcUJuDM+RIsL4QDg/gDnBbrj2/IQ==" - } - }, - "npm:jest-cli": { - "type": "npm", - "name": "npm:jest-cli", - "data": { - "version": "29.7.0", - "packageName": "jest-cli", - "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" - } - }, - "npm:minimatch@8.0.4": { - "type": "npm", - "name": "npm:minimatch@8.0.4", - "data": { - "version": "8.0.4", - "packageName": "minimatch", - "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.23.0", - "packageName": "@babel/generator", - "hash": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==" - } - }, - "npm:@emotion/sheet": { - "type": "npm", - "name": "npm:@emotion/sheet", - "data": { - "version": "0.9.4", - "packageName": "@emotion/sheet", - "hash": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" - } - }, - "npm:@esbuild/linux-mips64el@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-KbXaC0Sejt7vD2fEgPoIKb6nxkfYW9OmFUK9XQE4//PvGIxNIfPk1NmlHmMg6f25x57rpmEFrn1OotASYIAaTg==" - } - }, - "npm:on-headers": { - "type": "npm", - "name": "npm:on-headers", - "data": { - "version": "1.0.2", - "packageName": "on-headers", - "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - }, - "npm:remove-bom-buffer": { - "type": "npm", - "name": "npm:remove-bom-buffer", - "data": { - "version": "3.0.0", - "packageName": "remove-bom-buffer", - "hash": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==" - } - }, - "npm:semver@7.3.8": { - "type": "npm", - "name": "npm:semver@7.3.8", - "data": { - "version": "7.3.8", - "packageName": "semver", - "hash": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==" - } - }, - "npm:@microsoft/api-extractor-model": { - "type": "npm", - "name": "npm:@microsoft/api-extractor-model", - "data": { - "version": "7.24.2", - "packageName": "@microsoft/api-extractor-model", - "hash": "sha512-uUvjqTCY7hYERWGks+joTioN1QYHIucCDy7I/JqLxFxLbFXE5dpc1X7L+FG4PN/s8QYL24DKt0fqJkgcrFKLTw==" - } - }, - "npm:node-emoji": { - "type": "npm", - "name": "npm:node-emoji", - "data": { - "version": "1.10.0", - "packageName": "node-emoji", - "hash": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==" - } - }, - "npm:socks-proxy-agent": { - "type": "npm", - "name": "npm:socks-proxy-agent", - "data": { - "version": "7.0.0", - "packageName": "socks-proxy-agent", - "hash": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" - } - }, - "npm:@webassemblyjs/ast@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/ast@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==" - } - }, - "npm:@types/prompts": { - "type": "npm", - "name": "npm:@types/prompts", - "data": { - "version": "2.4.1", - "packageName": "@types/prompts", - "hash": "sha512-1Mqzhzi9W5KlooNE4o0JwSXGUDeQXKldbGn9NO4tpxwZbHXYd+WcKpCksG2lbhH7U9I9LigfsdVsP2QAY0lNPA==" - } - }, - "npm:eslint-plugin-react-hooks": { - "type": "npm", - "name": "npm:eslint-plugin-react-hooks", - "data": { - "version": "4.2.0", - "packageName": "eslint-plugin-react-hooks", - "hash": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==" - } - }, - "npm:undertaker-registry": { - "type": "npm", - "name": "npm:undertaker-registry", - "data": { - "version": "1.0.1", - "packageName": "undertaker-registry", - "hash": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" - } - }, - "npm:@esbuild/darwin-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-Ora8JokrvrzEPEpZO18ZYXkH4asCdc1DLdcVy8TGf5eWtPO1Ie4WroEJzwI52ZGtpODy3+m0a2yEX9l+KUn0tA==" - } - }, - "npm:hard-rejection": { - "type": "npm", - "name": "npm:hard-rejection", - "data": { - "version": "2.1.0", - "packageName": "hard-rejection", - "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" - } - }, - "npm:char-regex@2.0.1": { - "type": "npm", - "name": "npm:char-regex@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "char-regex", - "hash": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" - } - }, - "npm:file-system-cache": { - "type": "npm", - "name": "npm:file-system-cache", - "data": { - "version": "1.0.5", - "packageName": "file-system-cache", - "hash": "sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "4.6.1", - "packageName": "p-retry", - "hash": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==" - } - }, - "npm:multimatch": { - "type": "npm", - "name": "npm:multimatch", - "data": { - "version": "5.0.0", - "packageName": "multimatch", - "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" - } - }, - "npm:@types/classnames": { - "type": "npm", - "name": "npm:@types/classnames", - "data": { - "version": "2.2.9", - "packageName": "@types/classnames", - "hash": "sha512-MNl+rT5UmZeilaPxAVs6YaPC2m6aA8rofviZbhbxpPpl61uKodfdQVsBtgJGTqGizEf02oW3tsVe7FYB8kK14A==" - } - }, - "npm:binary": { - "type": "npm", - "name": "npm:binary", - "data": { - "version": "0.3.0", - "packageName": "binary", - "hash": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==" - } - }, - "npm:eslint-plugin-es": { - "type": "npm", - "name": "npm:eslint-plugin-es", - "data": { - "version": "4.1.0", - "packageName": "eslint-plugin-es", - "hash": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==" - } - }, - "npm:bonjour": { - "type": "npm", - "name": "npm:bonjour", - "data": { - "version": "3.5.0", - "packageName": "bonjour", - "hash": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=" - } - }, - "npm:@babel/plugin-transform-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-transform-logical-assignment-operators", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-logical-assignment-operators", - "hash": "sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==" - } - }, - "npm:acorn@6.4.1": { - "type": "npm", - "name": "npm:acorn@6.4.1", - "data": { - "version": "6.4.1", - "packageName": "acorn", - "hash": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" - } - }, - "npm:extract-zip": { - "type": "npm", - "name": "npm:extract-zip", - "data": { - "version": "2.0.1", - "packageName": "extract-zip", - "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" - } - }, - "npm:call-me-maybe": { - "type": "npm", - "name": "npm:call-me-maybe", - "data": { - "version": "1.0.1", - "packageName": "call-me-maybe", - "hash": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" - } - }, - "npm:http-assert": { - "type": "npm", - "name": "npm:http-assert", - "data": { - "version": "1.5.0", - "packageName": "http-assert", - "hash": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==" - } - }, - "npm:parse5@5.1.1": { - "type": "npm", - "name": "npm:parse5@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "parse5", - "hash": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" - } - }, - "npm:path-dirname": { - "type": "npm", - "name": "npm:path-dirname", - "data": { - "version": "1.0.2", - "packageName": "path-dirname", - "hash": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" - } - }, - "npm:quick-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "5.1.1", - "packageName": "quick-lru", - "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - } - }, - "npm:supports-hyperlinks": { - "type": "npm", - "name": "npm:supports-hyperlinks", - "data": { - "version": "1.0.1", - "packageName": "supports-hyperlinks", - "hash": "sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "10.0.0", - "packageName": "dotenv-expand", - "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.0", - "packageName": "has-tostringtag", - "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" - } - }, - "npm:multipipe": { - "type": "npm", - "name": "npm:multipipe", - "data": { - "version": "0.1.2", - "packageName": "multipipe", - "hash": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=" - } - }, - "npm:@babel/plugin-transform-classes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-classes", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==" - } - }, - "npm:js-message": { - "type": "npm", - "name": "npm:js-message", - "data": { - "version": "1.0.5", - "packageName": "js-message", - "hash": "sha1-IwDSSxrwjondCVvBpMnJz8uJLRU=" - } - }, - "npm:character-reference-invalid": { - "type": "npm", - "name": "npm:character-reference-invalid", - "data": { - "version": "1.1.3", - "packageName": "character-reference-invalid", - "hash": "sha512-VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg==" - } - }, - "npm:debug-fabulous": { - "type": "npm", - "name": "npm:debug-fabulous", - "data": { - "version": "1.1.0", - "packageName": "debug-fabulous", - "hash": "sha512-GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:debug@3.1.0": { - "type": "npm", - "name": "npm:debug@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "debug", - "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" - } - }, - "npm:ecc-jsbn": { - "type": "npm", - "name": "npm:ecc-jsbn", - "data": { - "version": "0.1.2", - "packageName": "ecc-jsbn", - "hash": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=" - } - }, - "npm:minipass@4.2.8": { - "type": "npm", - "name": "npm:minipass@4.2.8", - "data": { - "version": "4.2.8", - "packageName": "minipass", - "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" - } - }, - "npm:parse-entities": { - "type": "npm", - "name": "npm:parse-entities", - "data": { - "version": "1.2.2", - "packageName": "parse-entities", - "hash": "sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==" - } - }, - "npm:dom-serialize": { - "type": "npm", - "name": "npm:dom-serialize", - "data": { - "version": "2.2.1", - "packageName": "dom-serialize", - "hash": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=" - } - }, - "npm:pako@2.1.0": { - "type": "npm", - "name": "npm:pako@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "pako", - "hash": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" - } - }, - "npm:esbuild-freebsd-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-freebsd-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-freebsd-arm64", - "hash": "sha512-TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "6.0.13", - "packageName": "postcss-selector-parser", - "hash": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==" - } - }, - "npm:@types/d3-array": { - "type": "npm", - "name": "npm:@types/d3-array", - "data": { - "version": "2.12.1", - "packageName": "@types/d3-array", - "hash": "sha512-kVHqB3kfLpU0WYEmx5Y2hi3LRhUGIEIQXFdGazNNWQhyhzHx8xrgLtpAOKYzpfS3a+GjFMdKsI82QUH4q5dACQ==" - } - }, - "npm:d3-time-format@2.1.3": { - "type": "npm", - "name": "npm:d3-time-format@2.1.3", - "data": { - "version": "2.1.3", - "packageName": "d3-time-format", - "hash": "sha512-6k0a2rZryzGm5Ihx+aFMuO1GgelgIz+7HhB4PH4OEndD5q2zGn1mDfRdNrulspOfR6JXkb2sThhDK41CSK85QA==" - } - }, - "npm:monosize": { - "type": "npm", - "name": "npm:monosize", - "data": { - "version": "0.1.0", - "packageName": "monosize", - "hash": "sha512-+a8VUdzZwHlja72zs4Les4UTNu3H/kPrJT7L90DPZW4XLc9LNnMyU+6Sx731X/cdQe5utWBfcYv2DbCkWBPLRA==" - } - }, - "npm:@babel/plugin-transform-duplicate-keys": { - "type": "npm", - "name": "npm:@babel/plugin-transform-duplicate-keys", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==" - } - }, - "npm:@npmcli/node-gyp": { - "type": "npm", - "name": "npm:@npmcli/node-gyp", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/node-gyp", - "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" - } - }, - "npm:blob-util": { - "type": "npm", - "name": "npm:blob-util", - "data": { - "version": "2.0.2", - "packageName": "blob-util", - "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" - } - }, - "npm:react-ace": { - "type": "npm", - "name": "npm:react-ace", - "data": { - "version": "5.10.0", - "packageName": "react-ace", - "hash": "sha512-aEK/XZCowP8IXq91e2DYqOtGhabk1bbjt+fyeW0UBcIkzDzP/RX/MeJKeyW7wsZcwElACVwyy9nnwXBTqgky3A==" - } - }, - "npm:react-syntax-highlighter": { - "type": "npm", - "name": "npm:react-syntax-highlighter", - "data": { - "version": "10.3.5", - "packageName": "react-syntax-highlighter", - "hash": "sha512-KR4YE7Q91bHEhvIxuvs/J3tJWfxTyBAAMS4fcMOR9h0C6SoCZIr1OUkVamHOqHMDEck4tdS9gp0D/vlAyPLftA==" - } - }, - "npm:koa-node-resolve": { - "type": "npm", - "name": "npm:koa-node-resolve", - "data": { - "version": "1.0.0-pre.9", - "packageName": "koa-node-resolve", - "hash": "sha512-WKgqe5TGVD6zuR3NrKnmbb/NNHIbWOCezQVqqnyQLdtLLXWgiothlUQT23S5qQGE0Z623jp6jxpMjvAqyrcZFQ==" - } - }, - "npm:html-tags": { - "type": "npm", - "name": "npm:html-tags", - "data": { - "version": "3.1.0", - "packageName": "html-tags", - "hash": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==" - } - }, - "npm:babel-generator": { - "type": "npm", - "name": "npm:babel-generator", - "data": { - "version": "6.26.1", - "packageName": "babel-generator", - "hash": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==" - } - }, - "npm:@types/jsdom": { - "type": "npm", - "name": "npm:@types/jsdom", - "data": { - "version": "20.0.1", - "packageName": "@types/jsdom", - "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" - } - }, - "npm:css-to-react-native": { - "type": "npm", - "name": "npm:css-to-react-native", - "data": { - "version": "3.0.0", - "packageName": "css-to-react-native", - "hash": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==" - } - }, - "npm:duplexer": { - "type": "npm", - "name": "npm:duplexer", - "data": { - "version": "0.1.2", - "packageName": "duplexer", - "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - } - }, - "npm:esbuild-linux-ppc64le@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-ppc64le@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-ppc64le", - "hash": "sha512-xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==" - } - }, - "npm:find-root": { - "type": "npm", - "name": "npm:find-root", - "data": { - "version": "1.1.0", - "packageName": "find-root", - "hash": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "2.0.1", - "packageName": "ipaddr.js", - "hash": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" - } - }, - "npm:micromatch@3.1.10": { - "type": "npm", - "name": "npm:micromatch@3.1.10", - "data": { - "version": "3.1.10", - "packageName": "micromatch", - "hash": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==" - } - }, - "npm:mimic-response@1.0.1": { - "type": "npm", - "name": "npm:mimic-response@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "mimic-response", - "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - }, - "npm:querystring-es3": { - "type": "npm", - "name": "npm:querystring-es3", - "data": { - "version": "0.2.1", - "packageName": "querystring-es3", - "hash": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" - } - }, - "npm:schema-utils@3.1.2": { - "type": "npm", - "name": "npm:schema-utils@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "schema-utils", - "hash": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==" - } - }, - "npm:@azure/core-paging": { - "type": "npm", - "name": "npm:@azure/core-paging", - "data": { - "version": "1.1.1", - "packageName": "@azure/core-paging", - "hash": "sha512-hqEJBEGKan4YdOaL9ZG/GRG6PXaFd/Wb3SSjQW4LWotZzgl6xqG00h6wmkrpd2NNkbBkD1erLHBO3lPHApv+iQ==" - } - }, - "npm:slash@4.0.0": { - "type": "npm", - "name": "npm:slash@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slash", - "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - }, - "npm:source-map-resolve": { - "type": "npm", - "name": "npm:source-map-resolve", - "data": { - "version": "0.5.3", - "packageName": "source-map-resolve", - "hash": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==" - } - }, - "npm:strong-log-transformer": { - "type": "npm", - "name": "npm:strong-log-transformer", - "data": { - "version": "2.1.0", - "packageName": "strong-log-transformer", - "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" - } - }, - "npm:tightrope": { - "type": "npm", - "name": "npm:tightrope", - "data": { - "version": "0.1.0", - "packageName": "tightrope", - "hash": "sha512-HHHNYdCAIYwl1jOslQBT455zQpdeSo8/A346xpIb/uuqhSg+tCvYNsP5f11QW+z9VZ3vSX8YIfzTApjjuGH63w==" - } - }, - "npm:timers-browserify": { - "type": "npm", - "name": "npm:timers-browserify", - "data": { - "version": "2.0.12", - "packageName": "timers-browserify", - "hash": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==" - } - }, - "npm:object.map": { - "type": "npm", - "name": "npm:object.map", - "data": { - "version": "1.0.1", - "packageName": "object.map", - "hash": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=" - } - }, - "npm:unbzip2-stream": { - "type": "npm", - "name": "npm:unbzip2-stream", - "data": { - "version": "1.4.3", - "packageName": "unbzip2-stream", - "hash": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==" - } - }, - "npm:p-locate@2.0.0": { - "type": "npm", - "name": "npm:p-locate@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "p-locate", - "hash": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" - } - }, - "npm:trim-newlines@1.0.0": { - "type": "npm", - "name": "npm:trim-newlines@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "trim-newlines", - "hash": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" - } - }, - "npm:v8-compile-cache": { - "type": "npm", - "name": "npm:v8-compile-cache", - "data": { - "version": "2.3.0", - "packageName": "v8-compile-cache", - "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - } - }, - "npm:es5-ext": { - "type": "npm", - "name": "npm:es5-ext", - "data": { - "version": "0.10.53", - "packageName": "es5-ext", - "hash": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==" - } - }, - "npm:semver@7.5.3": { - "type": "npm", - "name": "npm:semver@7.5.3", - "data": { - "version": "7.5.3", - "packageName": "semver", - "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:shebang-regex@3.0.0": { - "type": "npm", - "name": "npm:shebang-regex@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:@swc/cli": { - "type": "npm", - "name": "npm:@swc/cli", - "data": { - "version": "0.1.62", - "packageName": "@swc/cli", - "hash": "sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==" - } - }, - "npm:keygrip": { - "type": "npm", - "name": "npm:keygrip", - "data": { - "version": "1.1.0", - "packageName": "keygrip", - "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" - } - }, - "npm:@babel/helper-define-polyfill-provider": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider", - "data": { - "version": "0.4.3", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==" - } - }, - "npm:@webassemblyjs/helper-api-error": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.10.0", - "packageName": "acorn", - "hash": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" - } - }, - "npm:ini@2.0.0": { - "type": "npm", - "name": "npm:ini@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ini", - "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" - } - }, - "npm:react@16.14.0": { - "type": "npm", - "name": "npm:react@16.14.0", - "data": { - "version": "16.14.0", - "packageName": "react", - "hash": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==" - } - }, - "npm:ts-dedent": { - "type": "npm", - "name": "npm:ts-dedent", - "data": { - "version": "2.2.0", - "packageName": "ts-dedent", - "hash": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==" - } - }, - "npm:@octokit/plugin-request-log": { - "type": "npm", - "name": "npm:@octokit/plugin-request-log", - "data": { - "version": "1.0.4", - "packageName": "@octokit/plugin-request-log", - "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" - } - }, - "npm:unist-util-visit-parents@1.1.2": { - "type": "npm", - "name": "npm:unist-util-visit-parents@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "unist-util-visit-parents", - "hash": "sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==" - } - }, - "npm:@swc/core-win32-arm64-msvc@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-win32-arm64-msvc@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-win32-arm64-msvc", - "hash": "sha512-AE7JKDJ0OsV9LsYGFfYKMTkGNfsy1au4RT5jT1rxr5MTOsmMD7P2mgiRF8drgc1WX3uOJbTHQfgdVTYroAGfdA==" - } - }, - "npm:@babel/helper-create-class-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-class-features-plugin", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==" - } - }, - "npm:webpack-sources@3.2.3": { - "type": "npm", - "name": "npm:webpack-sources@3.2.3", - "data": { - "version": "3.2.3", - "packageName": "webpack-sources", - "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - } - }, - "npm:nearley": { - "type": "npm", - "name": "npm:nearley", - "data": { - "version": "2.16.0", - "packageName": "nearley", - "hash": "sha512-Tr9XD3Vt/EujXbZBv6UAHYoLUSMQAxSsTnm9K3koXzjzNWY195NqALeyrzLZBKzAkL3gl92BcSogqrHjD8QuUg==" - } - }, - "npm:elliptic": { - "type": "npm", - "name": "npm:elliptic", - "data": { - "version": "6.5.4", - "packageName": "elliptic", - "hash": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==" - } - }, - "npm:klona": { - "type": "npm", - "name": "npm:klona", - "data": { - "version": "2.0.6", - "packageName": "klona", - "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" - } - }, - "npm:ssri@6.0.2": { - "type": "npm", - "name": "npm:ssri@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "ssri", - "hash": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==" - } - }, - "npm:@types/deep-assign": { - "type": "npm", - "name": "npm:@types/deep-assign", - "data": { - "version": "0.1.1", - "packageName": "@types/deep-assign", - "hash": "sha512-88jktQ7RJ96bJ4S8I2oeRylMXGeaZt/QBG0k8PiQ5UXCIliUQm0Pzlv3zcN1ZvEIuaLBgMkP0ynr8fAkwChgOQ==" - } - }, - "npm:@typescript-eslint/types@5.59.1": { - "type": "npm", - "name": "npm:@typescript-eslint/types@5.59.1", - "data": { - "version": "5.59.1", - "packageName": "@typescript-eslint/types", - "hash": "sha512-dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg==" - } - }, - "npm:cache-base": { - "type": "npm", - "name": "npm:cache-base", - "data": { - "version": "1.0.1", - "packageName": "cache-base", - "hash": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==" - } - }, - "npm:cliui@3.2.0": { - "type": "npm", - "name": "npm:cliui@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "cliui", - "hash": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=" - } - }, - "npm:engine.io-parser": { - "type": "npm", - "name": "npm:engine.io-parser", - "data": { - "version": "5.0.4", - "packageName": "engine.io-parser", - "hash": "sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==" - } - }, - "npm:memory-fs": { - "type": "npm", - "name": "npm:memory-fs", - "data": { - "version": "0.4.1", - "packageName": "memory-fs", - "hash": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=" - } - }, - "npm:xmlbuilder@9.0.7": { - "type": "npm", - "name": "npm:xmlbuilder@9.0.7", - "data": { - "version": "9.0.7", - "packageName": "xmlbuilder", - "hash": "sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==" - } - }, - "npm:@babel/plugin-proposal-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-optional-chaining", - "data": { - "version": "7.21.0", - "packageName": "@babel/plugin-proposal-optional-chaining", - "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.23.2", - "packageName": "@babel/runtime", - "hash": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==" - } - }, - "npm:@szmarczak/http-timer": { - "type": "npm", - "name": "npm:@szmarczak/http-timer", - "data": { - "version": "4.0.5", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==" - } - }, - "npm:railroad-diagrams": { - "type": "npm", - "name": "npm:railroad-diagrams", - "data": { - "version": "1.0.0", - "packageName": "railroad-diagrams", - "hash": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=" - } - }, - "npm:resolve-pkg-maps": { - "type": "npm", - "name": "npm:resolve-pkg-maps", - "data": { - "version": "1.0.0", - "packageName": "resolve-pkg-maps", - "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" - } - }, - "npm:@swc/core-darwin-x64@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-darwin-x64@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-darwin-x64", - "hash": "sha512-hjSQNcW9BN8gEz3UQZ7Ye80ymbkFHLkUDeEek4lorRyq6S+uxvbL1f1mJAZnFPBpove7AXusykIalWMPvyOR2A==" - } - }, - "npm:lead": { - "type": "npm", - "name": "npm:lead", - "data": { - "version": "1.0.0", - "packageName": "lead", - "hash": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=" - } - }, - "npm:@webassemblyjs/helper-module-context": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-module-context", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-module-context", - "hash": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==" - } - }, - "npm:validator": { - "type": "npm", - "name": "npm:validator", - "data": { - "version": "13.7.0", - "packageName": "validator", - "hash": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "5.0.1", - "packageName": "builtins", - "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "2.1.7", - "packageName": "listr2", - "hash": "sha512-XCC1sWLkBFFIMIRwG/LedgHUzN2XLEo02ZqXn6fwuP0GlXGE5BCuL6EAbQFb4vZB+++YEonzEXDPWQe+jCoF6Q==" - } - }, - "npm:@babel/plugin-transform-block-scoped-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoped-functions", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==" - } - }, - "npm:@emotion/weak-memoize": { - "type": "npm", - "name": "npm:@emotion/weak-memoize", - "data": { - "version": "0.2.5", - "packageName": "@emotion/weak-memoize", - "hash": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.4", - "packageName": "content-type", - "hash": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - } - }, - "npm:type-fest@0.8.1": { - "type": "npm", - "name": "npm:type-fest@0.8.1", - "data": { - "version": "0.8.1", - "packageName": "type-fest", - "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } - }, - "npm:for-in": { - "type": "npm", - "name": "npm:for-in", - "data": { - "version": "1.0.2", - "packageName": "for-in", - "hash": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" - } - }, - "npm:@babel/helper-replace-supers": { - "type": "npm", - "name": "npm:@babel/helper-replace-supers", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-replace-supers", - "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" - } - }, - "npm:get-stream@6.0.0": { - "type": "npm", - "name": "npm:get-stream@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "get-stream", - "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" - } - }, - "npm:log4js": { - "type": "npm", - "name": "npm:log4js", - "data": { - "version": "6.4.2", - "packageName": "log4js", - "hash": "sha512-k80cggS2sZQLBwllpT1p06GtfvzMmSdUCkW96f0Hj83rKGJDAu2vZjt9B9ag2vx8Zz1IXzxoLgqvRJCdMKybGg==" - } - }, - "npm:mimic-response": { - "type": "npm", - "name": "npm:mimic-response", - "data": { - "version": "3.1.0", - "packageName": "mimic-response", - "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - }, - "npm:camelcase@3.0.0": { - "type": "npm", - "name": "npm:camelcase@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "camelcase", - "hash": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:worker-farm": { - "type": "npm", - "name": "npm:worker-farm", - "data": { - "version": "1.7.0", - "packageName": "worker-farm", - "hash": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==" - } - }, - "npm:@types/color-convert": { - "type": "npm", - "name": "npm:@types/color-convert", - "data": { - "version": "1.9.0", - "packageName": "@types/color-convert", - "hash": "sha512-OKGEfULrvSL2VRbkl/gnjjgbbF7ycIlpSsX7Nkab4MOWi5XxmgBYvuiQ7lcCFY5cPDz7MUNaKgxte2VRmtr4Fg==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.2.4", - "packageName": "ignore", - "hash": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:isarray@1.0.0": { - "type": "npm", - "name": "npm:isarray@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - } - }, - "npm:@types/argparse": { - "type": "npm", - "name": "npm:@types/argparse", - "data": { - "version": "1.0.38", - "packageName": "@types/argparse", - "hash": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==" - } - }, - "npm:raf": { - "type": "npm", - "name": "npm:raf", - "data": { - "version": "3.4.1", - "packageName": "raf", - "hash": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==" - } - }, - "npm:getos": { - "type": "npm", - "name": "npm:getos", - "data": { - "version": "3.2.1", - "packageName": "getos", - "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" - } - }, - "npm:isomorphic-unfetch": { - "type": "npm", - "name": "npm:isomorphic-unfetch", - "data": { - "version": "2.1.1", - "packageName": "isomorphic-unfetch", - "hash": "sha512-nd8AULy4i2rA8dv0nOBT9xieIegd3xi7NDxTQ9+iNXDTyaG6VbUYW3F+TdMRqxqXhDFWM2k7fttKx9W2Wd8JpQ==" - } - }, - "npm:remark-footnotes": { - "type": "npm", - "name": "npm:remark-footnotes", - "data": { - "version": "2.0.0", - "packageName": "remark-footnotes", - "hash": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" - } - }, - "npm:source-map@0.2.0": { - "type": "npm", - "name": "npm:source-map@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "source-map", - "hash": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=" - } - }, - "npm:is-plain-object@5.0.0": { - "type": "npm", - "name": "npm:is-plain-object@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "is-plain-object", - "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" - } - }, - "npm:@types/glob": { - "type": "npm", - "name": "npm:@types/glob", - "data": { - "version": "7.1.1", - "packageName": "@types/glob", - "hash": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.1.2", - "packageName": "finalhandler", - "hash": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" - } - }, - "npm:http-signature@1.2.0": { - "type": "npm", - "name": "npm:http-signature@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "http-signature", - "hash": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=" - } - }, - "npm:is-absolute-url": { - "type": "npm", - "name": "npm:is-absolute-url", - "data": { - "version": "3.0.3", - "packageName": "is-absolute-url", - "hash": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" - } - }, - "npm:npmlog": { - "type": "npm", - "name": "npm:npmlog", - "data": { - "version": "4.1.2", - "packageName": "npmlog", - "hash": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==" - } - }, - "npm:semver-compare": { - "type": "npm", - "name": "npm:semver-compare", - "data": { - "version": "1.0.0", - "packageName": "semver-compare", - "hash": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=" - } - }, - "npm:extract-comments": { - "type": "npm", - "name": "npm:extract-comments", - "data": { - "version": "1.1.0", - "packageName": "extract-comments", - "hash": "sha512-dzbZV2AdSSVW/4E7Ti5hZdHWbA+Z80RJsJhr5uiL10oyjl/gy7/o+HI1HwK4/WSZhlq4SNKU3oUzXlM13Qx02Q==" - } - }, - "npm:compression": { - "type": "npm", - "name": "npm:compression", - "data": { - "version": "1.7.4", - "packageName": "compression", - "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - } - }, - "npm:is-finite": { - "type": "npm", - "name": "npm:is-finite", - "data": { - "version": "1.0.2", - "packageName": "is-finite", - "hash": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.3.0", - "packageName": "rfdc", - "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" - } - }, - "npm:array-each": { - "type": "npm", - "name": "npm:array-each", - "data": { - "version": "1.0.1", - "packageName": "array-each", - "hash": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" - } - }, - "npm:make-dir@1.3.0": { - "type": "npm", - "name": "npm:make-dir@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "make-dir", - "hash": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.2.2", - "packageName": "cjs-module-lexer", - "hash": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" - } - }, - "npm:mississippi": { - "type": "npm", - "name": "npm:mississippi", - "data": { - "version": "3.0.0", - "packageName": "mississippi", - "hash": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "10.0.4", - "packageName": "ssri", - "hash": "sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==" - } - }, - "npm:stream-browserify": { - "type": "npm", - "name": "npm:stream-browserify", - "data": { - "version": "3.0.0", - "packageName": "stream-browserify", - "hash": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==" - } - }, - "npm:ua-parser-js@0.7.33": { - "type": "npm", - "name": "npm:ua-parser-js@0.7.33", - "data": { - "version": "0.7.33", - "packageName": "ua-parser-js", - "hash": "sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==" - } - }, - "npm:vfile-location": { - "type": "npm", - "name": "npm:vfile-location", - "data": { - "version": "3.2.0", - "packageName": "vfile-location", - "hash": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" - } - }, - "npm:eventemitter2": { - "type": "npm", - "name": "npm:eventemitter2", - "data": { - "version": "6.4.5", - "packageName": "eventemitter2", - "hash": "sha512-bXE7Dyc1i6oQElDG0jMRZJrRAn9QR2xyyFGmBdZleNmyQX0FqGYmhZIrIrpPfm/w//LTo4tVQGOGQcGCb5q9uw==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "7.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - } - }, - "npm:ignore-walk": { - "type": "npm", - "name": "npm:ignore-walk", - "data": { - "version": "5.0.1", - "packageName": "ignore-walk", - "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" - } - }, - "npm:exec-sh": { - "type": "npm", - "name": "npm:exec-sh", - "data": { - "version": "0.3.2", - "packageName": "exec-sh", - "hash": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==" - } - }, - "npm:memoizerific": { - "type": "npm", - "name": "npm:memoizerific", - "data": { - "version": "1.11.3", - "packageName": "memoizerific", - "hash": "sha1-fIekZGREwy11Q4VwkF8tvRsagFo=" - } - }, - "npm:vrscreenshotdiff": { - "type": "npm", - "name": "npm:vrscreenshotdiff", - "data": { - "version": "0.0.17", - "packageName": "vrscreenshotdiff", - "hash": "sha512-zfL6eUs3FbJzNhmqih/YtciAh2tf8dz9427kn6BRpdo/VC/fnCTUSl2ZzaAW0/wJaQpkWnl24PPfCa2ptuZENQ==" - } - }, - "npm:minimatch@5.0.1": { - "type": "npm", - "name": "npm:minimatch@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "minimatch", - "hash": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==" - } - }, - "npm:domain-browser": { - "type": "npm", - "name": "npm:domain-browser", - "data": { - "version": "4.19.0", - "packageName": "domain-browser", - "hash": "sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ==" - } - }, - "npm:extend": { - "type": "npm", - "name": "npm:extend", - "data": { - "version": "3.0.2", - "packageName": "extend", - "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - } - }, - "npm:get-tsconfig": { - "type": "npm", - "name": "npm:get-tsconfig", - "data": { - "version": "4.7.0", - "packageName": "get-tsconfig", - "hash": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==" - } - }, - "npm:exenv-es6": { - "type": "npm", - "name": "npm:exenv-es6", - "data": { - "version": "1.1.1", - "packageName": "exenv-es6", - "hash": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" - } - }, - "npm:readable-web-to-node-stream": { - "type": "npm", - "name": "npm:readable-web-to-node-stream", - "data": { - "version": "3.0.2", - "packageName": "readable-web-to-node-stream", - "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" - } - }, - "npm:get-func-name": { - "type": "npm", - "name": "npm:get-func-name", - "data": { - "version": "2.0.2", - "packageName": "get-func-name", - "hash": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==" - } - }, - "npm:request-progress": { - "type": "npm", - "name": "npm:request-progress", - "data": { - "version": "3.0.0", - "packageName": "request-progress", - "hash": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=" - } - }, - "npm:boxen": { - "type": "npm", - "name": "npm:boxen", - "data": { - "version": "4.2.0", - "packageName": "boxen", - "hash": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==" - } - }, - "npm:@base2/pretty-print-object": { - "type": "npm", - "name": "npm:@base2/pretty-print-object", - "data": { - "version": "1.0.1", - "packageName": "@base2/pretty-print-object", - "hash": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==" - } - }, - "npm:@types/istanbul-lib-report": { - "type": "npm", - "name": "npm:@types/istanbul-lib-report", - "data": { - "version": "1.1.1", - "packageName": "@types/istanbul-lib-report", - "hash": "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==" - } - }, - "npm:@effect/schema": { - "type": "npm", - "name": "npm:@effect/schema", - "data": { - "version": "0.20.3", - "packageName": "@effect/schema", - "hash": "sha512-pjJW9QkHZd2/fq7Bhd6pAOidMJ0OUODOeUlesPDK0jpo62AaU9g+IGXt3v5NU8rXSX77igZgfK08XhmofwHn0A==" - } - }, - "npm:@mdx-js/mdx": { - "type": "npm", - "name": "npm:@mdx-js/mdx", - "data": { - "version": "1.6.22", - "packageName": "@mdx-js/mdx", - "hash": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==" - } - }, - "npm:@microsoft/applicationinsights-core-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-core-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-core-js", - "hash": "sha512-WQhVhzlRlLDrQzn3OShCW/pL3BW5WC57t0oywSknX3q7lMzI3jDg7Ihh0iuIcNTzGCTbDkuqr4d6IjEDWIMtJQ==" - } - }, - "npm:camel-case@4.1.2": { - "type": "npm", - "name": "npm:camel-case@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "camel-case", - "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" - } - }, - "npm:byte-size": { - "type": "npm", - "name": "npm:byte-size", - "data": { - "version": "8.1.1", - "packageName": "byte-size", - "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" - } - }, - "npm:@webassemblyjs/helper-wasm-section": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" - } - }, - "npm:ansi-cyan": { - "type": "npm", - "name": "npm:ansi-cyan", - "data": { - "version": "0.1.1", - "packageName": "ansi-cyan", - "hash": "sha1-U4rlKK+JgvKK4w2G8vF0VtJgmHM=" - } - }, - "npm:is-decimal": { - "type": "npm", - "name": "npm:is-decimal", - "data": { - "version": "1.0.3", - "packageName": "is-decimal", - "hash": "sha512-bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:del@4.1.1": { - "type": "npm", - "name": "npm:del@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "del", - "hash": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" - } - }, - "npm:jest-environment-jsdom": { - "type": "npm", - "name": "npm:jest-environment-jsdom", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-jsdom", - "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" - } - }, - "npm:babel-plugin-react-docgen": { - "type": "npm", - "name": "npm:babel-plugin-react-docgen", - "data": { - "version": "4.2.1", - "packageName": "babel-plugin-react-docgen", - "hash": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==" - } - }, - "npm:better-opn": { - "type": "npm", - "name": "npm:better-opn", - "data": { - "version": "2.1.1", - "packageName": "better-opn", - "hash": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==" - } - }, - "npm:react-element-to-jsx-string": { - "type": "npm", - "name": "npm:react-element-to-jsx-string", - "data": { - "version": "14.3.4", - "packageName": "react-element-to-jsx-string", - "hash": "sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "3.6.0", - "packageName": "readdirp", - "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - } - }, - "npm:@microsoft/api-extractor": { - "type": "npm", - "name": "npm:@microsoft/api-extractor", - "data": { - "version": "7.31.2", - "packageName": "@microsoft/api-extractor", - "hash": "sha512-ZODCU9ckTS9brXiZpUW2iDrnAg7jLxeLBM1AkPpSZFcbG/8HGLvfKOKrd71VIJHjc52x2lB8xj7ZWksnP7AOBA==" - } - }, - "npm:dir-glob@2.2.2": { - "type": "npm", - "name": "npm:dir-glob@2.2.2", - "data": { - "version": "2.2.2", - "packageName": "dir-glob", - "hash": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==" - } - }, - "npm:babel-code-frame": { - "type": "npm", - "name": "npm:babel-code-frame", - "data": { - "version": "6.26.0", - "packageName": "babel-code-frame", - "hash": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=" - } - }, - "npm:@ts-morph/common": { - "type": "npm", - "name": "npm:@ts-morph/common", - "data": { - "version": "0.8.1", - "packageName": "@ts-morph/common", - "hash": "sha512-3TC91LfCKCNCW7zYpegoMnMa9VigXtZHQererUM9pCvZKN3ust3ioLA0kfX+UHSzIGln+UYYiRzfOsv0QoiUng==" - } - }, - "npm:http-deceiver": { - "type": "npm", - "name": "npm:http-deceiver", - "data": { - "version": "1.2.7", - "packageName": "http-deceiver", - "hash": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" - } - }, - "npm:store2": { - "type": "npm", - "name": "npm:store2", - "data": { - "version": "2.12.0", - "packageName": "store2", - "hash": "sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==" - } - }, - "npm:p-waterfall": { - "type": "npm", - "name": "npm:p-waterfall", - "data": { - "version": "2.1.1", - "packageName": "p-waterfall", - "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" - } - }, - "npm:supports-color@6.0.0": { - "type": "npm", - "name": "npm:supports-color@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "supports-color", - "hash": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==" - } - }, - "npm:tar-stream": { - "type": "npm", - "name": "npm:tar-stream", - "data": { - "version": "2.2.0", - "packageName": "tar-stream", - "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.0.0", - "packageName": "picocolors", - "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - } - }, - "npm:@types/cookie": { - "type": "npm", - "name": "npm:@types/cookie", - "data": { - "version": "0.4.1", - "packageName": "@types/cookie", - "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" - } - }, - "npm:tmp@0.0.33": { - "type": "npm", - "name": "npm:tmp@0.0.33", - "data": { - "version": "0.0.33", - "packageName": "tmp", - "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" - } - }, - "npm:conventional-changelog-angular": { - "type": "npm", - "name": "npm:conventional-changelog-angular", - "data": { - "version": "6.0.0", - "packageName": "conventional-changelog-angular", - "hash": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==" - } - }, - "npm:isbinaryfile": { - "type": "npm", - "name": "npm:isbinaryfile", - "data": { - "version": "4.0.8", - "packageName": "isbinaryfile", - "hash": "sha512-53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==" - } - }, - "npm:is-subset": { - "type": "npm", - "name": "npm:is-subset", - "data": { - "version": "0.1.1", - "packageName": "is-subset", - "hash": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=" - } - }, - "npm:utils-merge": { - "type": "npm", - "name": "npm:utils-merge", - "data": { - "version": "1.0.1", - "packageName": "utils-merge", - "hash": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" - } - }, - "npm:path-is-absolute": { - "type": "npm", - "name": "npm:path-is-absolute", - "data": { - "version": "1.0.1", - "packageName": "path-is-absolute", - "hash": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - } - }, - "npm:yargs-unparser": { - "type": "npm", - "name": "npm:yargs-unparser", - "data": { - "version": "2.0.0", - "packageName": "yargs-unparser", - "hash": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==" - } - }, - "npm:@wojtekmaj/enzyme-adapter-react-17": { - "type": "npm", - "name": "npm:@wojtekmaj/enzyme-adapter-react-17", - "data": { - "version": "0.6.7", - "packageName": "@wojtekmaj/enzyme-adapter-react-17", - "hash": "sha512-B+byiwi/T1bx5hcj9wc0fUL5Hlb5giSXJzcnEfJVl2j6dGV2NJfcxDBYX0WWwIxlzNiFz8kAvlkFWI2y/nscZQ==" - } - }, - "npm:@babel/plugin-transform-modules-umd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-umd", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==" - } - }, - "npm:@octokit/endpoint": { - "type": "npm", - "name": "npm:@octokit/endpoint", - "data": { - "version": "6.0.12", - "packageName": "@octokit/endpoint", - "hash": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==" - } - }, - "npm:element-resize-detector": { - "type": "npm", - "name": "npm:element-resize-detector", - "data": { - "version": "1.2.3", - "packageName": "element-resize-detector", - "hash": "sha512-+dhNzUgLpq9ol5tyhoG7YLoXL3ssjfFW+0gpszXPwRU6NjGr1fVHMEAF8fVzIiRJq57Nre0RFeIjJwI8Nh2NmQ==" - } - }, - "npm:@octokit/plugin-rest-endpoint-methods@7.2.3": { - "type": "npm", - "name": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", - "data": { - "version": "7.2.3", - "packageName": "@octokit/plugin-rest-endpoint-methods", - "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" - } - }, - "npm:performance-now": { - "type": "npm", - "name": "npm:performance-now", - "data": { - "version": "2.1.0", - "packageName": "performance-now", - "hash": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - } - }, - "npm:to-fast-properties@1.0.3": { - "type": "npm", - "name": "npm:to-fast-properties@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "to-fast-properties", - "hash": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.11.0", - "packageName": "qs", - "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" - } - }, - "npm:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "4.1.0", - "packageName": "hosted-git-info", - "hash": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" - } - }, - "npm:@webassemblyjs/ieee754": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.6.0", - "packageName": "fastq", - "hash": "sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA==" - } - }, - "npm:json-parse-better-errors": { - "type": "npm", - "name": "npm:json-parse-better-errors", - "data": { - "version": "1.0.2", - "packageName": "json-parse-better-errors", - "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - } - }, - "npm:resolve.exports@2.0.2": { - "type": "npm", - "name": "npm:resolve.exports@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:boundary": { - "type": "npm", - "name": "npm:boundary", - "data": { - "version": "1.0.1", - "packageName": "boundary", - "hash": "sha1-TWfcJgLAzBbdm85+v4fpSCkPWBI=" - } - }, - "npm:snapdragon": { - "type": "npm", - "name": "npm:snapdragon", - "data": { - "version": "0.8.2", - "packageName": "snapdragon", - "hash": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==" - } - }, - "npm:ability-attributes-js-constraints": { - "type": "npm", - "name": "npm:ability-attributes-js-constraints", - "data": { - "version": "0.0.8", - "packageName": "ability-attributes-js-constraints", - "hash": "sha512-+TjS0GcQnFaX0thTs+sXiGtNelPcy6odeN8hKntd1KxsnFtqyrC3l2i55s+z3rRzei6BvkoSHvkKEOjk0E5UjA==" - } - }, - "npm:lowercase-keys@3.0.0": { - "type": "npm", - "name": "npm:lowercase-keys@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==" - } - }, - "npm:app-root-dir": { - "type": "npm", - "name": "npm:app-root-dir", - "data": { - "version": "1.0.2", - "packageName": "app-root-dir", - "hash": "sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=" - } - }, - "npm:@types/webpack-bundle-analyzer": { - "type": "npm", - "name": "npm:@types/webpack-bundle-analyzer", - "data": { - "version": "4.4.3", - "packageName": "@types/webpack-bundle-analyzer", - "hash": "sha512-7+4XhCMxc1XyQr2lwAbEEeWTax+FX70xMeskU0WtxrODczoOZXTo9vrYh/XF7pAOn+NxqR4yRKW5gfz1HHNnfw==" - } - }, - "npm:find-up@3.0.0": { - "type": "npm", - "name": "npm:find-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "find-up", - "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" - } - }, - "npm:npm-packlist@2.1.2": { - "type": "npm", - "name": "npm:npm-packlist@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "npm-packlist", - "hash": "sha512-eByPaP+wsKai0BJX5pmb58d3mfR0zUATcnyuvSxIudTEn+swCPFLxh7srCmqB4hr7i9V24/DPjjq5b2qUtbgXQ==" - } - }, - "npm:pkg-dir@3.0.0": { - "type": "npm", - "name": "npm:pkg-dir@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pkg-dir", - "hash": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" - } - }, - "npm:object.pick": { - "type": "npm", - "name": "npm:object.pick", - "data": { - "version": "1.3.0", - "packageName": "object.pick", - "hash": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=" - } - }, - "npm:@jest/environment": { - "type": "npm", - "name": "npm:@jest/environment", - "data": { - "version": "29.7.0", - "packageName": "@jest/environment", - "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" - } - }, - "npm:rc": { - "type": "npm", - "name": "npm:rc", - "data": { - "version": "1.2.8", - "packageName": "rc", - "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - } - }, - "npm:karma-mocha": { - "type": "npm", - "name": "npm:karma-mocha", - "data": { - "version": "2.0.1", - "packageName": "karma-mocha", - "hash": "sha512-Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ==" - } - }, - "npm:@types/react-router-dom": { - "type": "npm", - "name": "npm:@types/react-router-dom", - "data": { - "version": "5.1.5", - "packageName": "@types/react-router-dom", - "hash": "sha512-ArBM4B1g3BWLGbaGvwBGO75GNFbLDUthrDojV2vHLih/Tq8M+tgvY1DSwkuNrPSwdp/GUL93WSEpTZs8nVyJLw==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "18.18.6", - "packageName": "@types/node", - "hash": "sha512-wf3Vz+jCmOQ2HV1YUJuCWdL64adYxumkrxtc+H1VUQlnQI04+5HtH+qZCOE21lBE7gIrt+CwX2Wv8Acrw5Ak6w==" - } - }, - "npm:find-cache-dir@2.1.0": { - "type": "npm", - "name": "npm:find-cache-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-cache-dir", - "hash": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" - } - }, - "npm:plop": { - "type": "npm", - "name": "npm:plop", - "data": { - "version": "2.6.0", - "packageName": "plop", - "hash": "sha512-faK3oVbWL7DYdC5ZjM+lJPrmXAPirN28QRFykPWwg6i7dv2T373JyxKlcO+XGMQcPlEYDFyKUXIuiY3Db5Ktkw==" - } - }, - "npm:rollup": { - "type": "npm", - "name": "npm:rollup", - "data": { - "version": "2.45.2", - "packageName": "rollup", - "hash": "sha512-kRRU7wXzFHUzBIv0GfoFFIN3m9oteY4uAsKllIpQDId5cfnkWF2J130l+27dzDju0E6MScKiV0ZM5Bw8m4blYQ==" - } - }, - "npm:vinyl": { - "type": "npm", - "name": "npm:vinyl", - "data": { - "version": "2.2.0", - "packageName": "vinyl", - "hash": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:thunky": { - "type": "npm", - "name": "npm:thunky", - "data": { - "version": "1.0.3", - "packageName": "thunky", - "hash": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==" - } - }, - "npm:@babel/plugin-transform-member-expression-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-member-expression-literals", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==" - } - }, - "npm:@floating-ui/dom": { - "type": "npm", - "name": "npm:@floating-ui/dom", - "data": { - "version": "1.2.0", - "packageName": "@floating-ui/dom", - "hash": "sha512-QXzg57o1cjLz3cGETzKXjI3kx1xyS49DW9l7kV2jw2c8Yftd434t2hllX0sVGn2Q8MtcW/4pNm8bfE1/4n6mng==" - } - }, - "npm:fela-plugin-fallback-value": { - "type": "npm", - "name": "npm:fela-plugin-fallback-value", - "data": { - "version": "10.8.2", - "packageName": "fela-plugin-fallback-value", - "hash": "sha512-pjNQ4TJVJz8rDS8kEB7afRDHelQFzi0kIOhLSR0/LWLLFC7CfaQ3Vop9/w5Ot7iJtH8oR1dAxSQEyk497QcyPw==" - } - }, - "npm:is-lambda": { - "type": "npm", - "name": "npm:is-lambda", - "data": { - "version": "1.0.1", - "packageName": "is-lambda", - "hash": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" - } - }, - "npm:@microsoft/load-themed-styles": { - "type": "npm", - "name": "npm:@microsoft/load-themed-styles", - "data": { - "version": "1.10.26", - "packageName": "@microsoft/load-themed-styles", - "hash": "sha512-N//pFTBL/iCSrMuDoLvBLpgGjlk+MgKX2kyFI3bJVb+LRozeyWCOZVRcR8aMKiYHdqwy5isu2Frp8drvWx7RbA==" - } - }, - "npm:d3-time-format": { - "type": "npm", - "name": "npm:d3-time-format", - "data": { - "version": "3.0.0", - "packageName": "d3-time-format", - "hash": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==" - } - }, - "npm:pnp-webpack-plugin": { - "type": "npm", - "name": "npm:pnp-webpack-plugin", - "data": { - "version": "1.6.4", - "packageName": "pnp-webpack-plugin", - "hash": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==" - } - }, - "npm:make-iterator": { - "type": "npm", - "name": "npm:make-iterator", - "data": { - "version": "1.0.1", - "packageName": "make-iterator", - "hash": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==" - } - }, - "npm:shallow-equal": { - "type": "npm", - "name": "npm:shallow-equal", - "data": { - "version": "1.2.1", - "packageName": "shallow-equal", - "hash": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=" - } - }, - "npm:y18n@5.0.5": { - "type": "npm", - "name": "npm:y18n@5.0.5", - "data": { - "version": "5.0.5", - "packageName": "y18n", - "hash": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==" - } - }, - "npm:assign-symbols": { - "type": "npm", - "name": "npm:assign-symbols", - "data": { - "version": "1.0.0", - "packageName": "assign-symbols", - "hash": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" - } - }, - "npm:lodash._reinterpolate": { - "type": "npm", - "name": "npm:lodash._reinterpolate", - "data": { - "version": "3.0.0", - "packageName": "lodash._reinterpolate", - "hash": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" - } - }, - "npm:array-uniq": { - "type": "npm", - "name": "npm:array-uniq", - "data": { - "version": "1.0.3", - "packageName": "array-uniq", - "hash": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "2.0.1", - "packageName": "@types/stack-utils", - "hash": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" - } - }, - "npm:html-minifier-terser": { - "type": "npm", - "name": "npm:html-minifier-terser", - "data": { - "version": "5.1.1", - "packageName": "html-minifier-terser", - "hash": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==" - } - }, - "npm:just-scripts-utils": { - "type": "npm", - "name": "npm:just-scripts-utils", - "data": { - "version": "1.2.0", - "packageName": "just-scripts-utils", - "hash": "sha512-rJMNtMz4V6uyMyfx+a2CqdMh1X/C9cVJTOPegvEzSonYMOKsiZEw2L9VzKVIFwNteKGZT6D2hFjSMAle41MAgA==" - } - }, - "npm:expand-brackets": { - "type": "npm", - "name": "npm:expand-brackets", - "data": { - "version": "2.1.4", - "packageName": "expand-brackets", - "hash": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=" - } - }, - "npm:@esbuild/android-arm@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/android-arm", - "hash": "sha512-tM8yLeYVe7pRyAu9VMi/Q7aunpLwD139EY1S99xbQkT4/q2qa6eA4ige/WJQYdJ8GBL1K33pPFhPfPdJ/WzT8Q==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.1.1", - "packageName": "foreground-child", - "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" - } - }, - "npm:@types/html-minifier-terser": { - "type": "npm", - "name": "npm:@types/html-minifier-terser", - "data": { - "version": "5.1.0", - "packageName": "@types/html-minifier-terser", - "hash": "sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA==" - } - }, - "npm:dns-equal": { - "type": "npm", - "name": "npm:dns-equal", - "data": { - "version": "1.0.0", - "packageName": "dns-equal", - "hash": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" - } - }, - "npm:parse-code-context": { - "type": "npm", - "name": "npm:parse-code-context", - "data": { - "version": "1.0.0", - "packageName": "parse-code-context", - "hash": "sha512-OZQaqKaQnR21iqhlnPfVisFjBWjhnMl5J9MgbP8xC+EwoVqbXrq78lp+9Zb3ahmLzrIX5Us/qbvBnaS3hkH6OA==" - } - }, - "npm:mdast-add-list-metadata": { - "type": "npm", - "name": "npm:mdast-add-list-metadata", - "data": { - "version": "1.0.1", - "packageName": "mdast-add-list-metadata", - "hash": "sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==" - } - }, - "npm:rollup-plugin-commonjs": { - "type": "npm", - "name": "npm:rollup-plugin-commonjs", - "data": { - "version": "10.1.0", - "packageName": "rollup-plugin-commonjs", - "hash": "sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==" - } - }, - "npm:extsprintf": { - "type": "npm", - "name": "npm:extsprintf", - "data": { - "version": "1.3.0", - "packageName": "extsprintf", - "hash": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - } - }, - "npm:fast-loops": { - "type": "npm", - "name": "npm:fast-loops", - "data": { - "version": "1.1.2", - "packageName": "fast-loops", - "hash": "sha512-ql8BgnHFryLogmmzR5O3uobe+3Zzaq6h6MWn/VtAyL9OXb51r5PSTbCm9f56fvEvMWWGjbdkr4xyhT0/vLJkKw==" - } - }, - "npm:kind-of@3.2.2": { - "type": "npm", - "name": "npm:kind-of@3.2.2", - "data": { - "version": "3.2.2", - "packageName": "kind-of", - "hash": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" - } - }, - "npm:walker": { - "type": "npm", - "name": "npm:walker", - "data": { - "version": "1.0.8", - "packageName": "walker", - "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" - } - }, - "npm:es6-weak-map": { - "type": "npm", - "name": "npm:es6-weak-map", - "data": { - "version": "2.0.3", - "packageName": "es6-weak-map", - "hash": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "1.0.2", - "packageName": "minipass-collect", - "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" - } - }, - "npm:@babel/plugin-transform-object-super": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-super", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==" - } - }, - "npm:esprima-extract-comments": { - "type": "npm", - "name": "npm:esprima-extract-comments", - "data": { - "version": "1.1.0", - "packageName": "esprima-extract-comments", - "hash": "sha512-sBQUnvJwpeE9QnPrxh7dpI/dp67erYG4WXEAreAMoelPRpMR7NWb4YtwRPn9b+H1uLQKl/qS8WYmyaljTpjIsw==" - } - }, - "npm:detab": { - "type": "npm", - "name": "npm:detab", - "data": { - "version": "2.0.4", - "packageName": "detab", - "hash": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==" - } - }, - "npm:@swc/helpers": { - "type": "npm", - "name": "npm:@swc/helpers", - "data": { - "version": "0.5.1", - "packageName": "@swc/helpers", - "hash": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==" - } - }, - "npm:indent-string@2.1.0": { - "type": "npm", - "name": "npm:indent-string@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "indent-string", - "hash": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=" - } - }, - "npm:@textlint/ast-node-types": { - "type": "npm", - "name": "npm:@textlint/ast-node-types", - "data": { - "version": "4.4.3", - "packageName": "@textlint/ast-node-types", - "hash": "sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:browserify-aes": { - "type": "npm", - "name": "npm:browserify-aes", - "data": { - "version": "1.2.0", - "packageName": "browserify-aes", - "hash": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.2.0", - "packageName": "loader-runner", - "hash": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==" - } - }, - "npm:ssri@8.0.0": { - "type": "npm", - "name": "npm:ssri@8.0.0", - "data": { - "version": "8.0.0", - "packageName": "ssri", - "hash": "sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==" - } - }, - "npm:li": { - "type": "npm", - "name": "npm:li", - "data": { - "version": "1.3.0", - "packageName": "li", - "hash": "sha1-IsWbyu+qmo7zWc91l4TkvxBq6hs=" - } - }, - "npm:@parcel/watcher": { - "type": "npm", - "name": "npm:@parcel/watcher", - "data": { - "version": "2.0.4", - "packageName": "@parcel/watcher", - "hash": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==" - } - }, - "npm:object-assign@3.0.0": { - "type": "npm", - "name": "npm:object-assign@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "object-assign", - "hash": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" - } - }, - "npm:axios@0.21.4": { - "type": "npm", - "name": "npm:axios@0.21.4", - "data": { - "version": "0.21.4", - "packageName": "axios", - "hash": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==" - } - }, - "npm:pkg-dir@5.0.0": { - "type": "npm", - "name": "npm:pkg-dir@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "pkg-dir", - "hash": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==" - } - }, - "npm:p-map@2.1.0": { - "type": "npm", - "name": "npm:p-map@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "p-map", - "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - } - }, - "npm:upper-case": { - "type": "npm", - "name": "npm:upper-case", - "data": { - "version": "1.1.3", - "packageName": "upper-case", - "hash": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" - } - }, - "npm:@babel/plugin-syntax-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", - "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - } - }, - "npm:@types/pretty-hrtime": { - "type": "npm", - "name": "npm:@types/pretty-hrtime", - "data": { - "version": "1.0.1", - "packageName": "@types/pretty-hrtime", - "hash": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==" - } - }, - "npm:@types/d3-time-format": { - "type": "npm", - "name": "npm:@types/d3-time-format", - "data": { - "version": "3.0.4", - "packageName": "@types/d3-time-format", - "hash": "sha512-or9DiDnYI1h38J9hxKEsw513+KVuFbEVhl7qdxcaudoiqWWepapUen+2vAriFGexr6W5+P4l9+HJrB39GG+oRg==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.2.5", - "packageName": "flatted", - "hash": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" - } - }, - "npm:is-installed-globally": { - "type": "npm", - "name": "npm:is-installed-globally", - "data": { - "version": "0.4.0", - "packageName": "is-installed-globally", - "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" - } - }, - "npm:path-key@3.1.1": { - "type": "npm", - "name": "npm:path-key@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:@npmcli/run-script@1.3.1": { - "type": "npm", - "name": "npm:@npmcli/run-script@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "@npmcli/run-script", - "hash": "sha512-9Ea57XJjNLtBFRAaiKqqdoqRrL2QkM0vvCbMjPecljhog5IHupStPtZULbl0CoGN00N3lhLWJ4PaIEC0MGjqJw==" - } - }, - "npm:@webassemblyjs/helper-buffer@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" - } - }, - "npm:cssfontparser": { - "type": "npm", - "name": "npm:cssfontparser", - "data": { - "version": "1.2.1", - "packageName": "cssfontparser", - "hash": "sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==" - } - }, - "npm:@fluentui/dom-utilities@1.1.1": { - "type": "npm", - "name": "npm:@fluentui/dom-utilities@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "@fluentui/dom-utilities", - "hash": "sha512-w40gi8fzCpwa7U8cONiuu8rszPStkVOL/weDf5pCbYEb1gdaV7MDPSNkgM6IV0Kz+k017noDgK9Fv4ru1Dwz1g==" - } - }, - "npm:cypress": { - "type": "npm", - "name": "npm:cypress", - "data": { - "version": "10.6.0", - "packageName": "cypress", - "hash": "sha512-6sOpHjostp8gcLO34p6r/Ci342lBs8S5z9/eb3ZCQ22w2cIhMWGUoGKkosabPBfKcvRS9BE4UxybBtlIs8gTQA==" - } - }, - "npm:@esbuild/win32-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-5NayUlSAyb5PQYFAU9x3bHdsqB88RC3aM9lKDAz4X1mo/EchMIT1Q+pSeBXNgkfNmRecLXA0O8xP+x8V+g/LKg==" - } - }, - "npm:backfill-logger": { - "type": "npm", - "name": "npm:backfill-logger", - "data": { - "version": "5.1.3", - "packageName": "backfill-logger", - "hash": "sha512-S1QUP+q3WWqcXWfwVt/jpi3r61CGWWJBfxGpzLPbRE8vMUw71P8sA+zYSx7M8ZI1PNZrxSA/TKq/NhoiMYXnpA==" - } - }, - "npm:deepmerge@2.2.1": { - "type": "npm", - "name": "npm:deepmerge@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "deepmerge", - "hash": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" - } - }, - "npm:unique-filename@3.0.0": { - "type": "npm", - "name": "npm:unique-filename@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "unique-filename", - "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" - } - }, - "npm:ci-info@1.6.0": { - "type": "npm", - "name": "npm:ci-info@1.6.0", - "data": { - "version": "1.6.0", - "packageName": "ci-info", - "hash": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==" - } - }, - "npm:tsutils": { - "type": "npm", - "name": "npm:tsutils", - "data": { - "version": "3.21.0", - "packageName": "tsutils", - "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.4", - "packageName": "which-typed-array", - "hash": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==" - } - }, - "npm:cacheable-lookup@6.1.0": { - "type": "npm", - "name": "npm:cacheable-lookup@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "cacheable-lookup", - "hash": "sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.4.14", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - } - }, - "npm:@babel/helper-create-regexp-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-regexp-features-plugin", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" - } - }, - "npm:babel-plugin-macros@3.1.0": { - "type": "npm", - "name": "npm:babel-plugin-macros@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:@actions/http-client": { - "type": "npm", - "name": "npm:@actions/http-client", - "data": { - "version": "2.0.1", - "packageName": "@actions/http-client", - "hash": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==" - } - }, - "npm:bser": { - "type": "npm", - "name": "npm:bser", - "data": { - "version": "2.1.0", - "packageName": "bser", - "hash": "sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg==" - } - }, - "npm:@babel/plugin-transform-modules-systemjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-systemjs", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==" - } - }, - "npm:@storybook/addon-essentials": { - "type": "npm", - "name": "npm:@storybook/addon-essentials", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-essentials", - "hash": "sha512-m3EY6BhUk6Z9Et7P5wGaRGNoEDHzJIOsLbGS/4IXvIoDfrqmNIilqUQl8kfDqpVdBSFprvpacHpKpLosu9H37w==" - } - }, - "npm:array-flatten@2.1.2": { - "type": "npm", - "name": "npm:array-flatten@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "array-flatten", - "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" - } - }, - "npm:lazy-universal-dotenv": { - "type": "npm", - "name": "npm:lazy-universal-dotenv", - "data": { - "version": "3.0.1", - "packageName": "lazy-universal-dotenv", - "hash": "sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==" - } - }, - "npm:lodash.isinteger": { - "type": "npm", - "name": "npm:lodash.isinteger", - "data": { - "version": "4.0.4", - "packageName": "lodash.isinteger", - "hash": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:@rushstack/node-core-library": { - "type": "npm", - "name": "npm:@rushstack/node-core-library", - "data": { - "version": "3.52.0", - "packageName": "@rushstack/node-core-library", - "hash": "sha512-Z+MAP//G3rEGZd3JxJcBGcPYJlh8pvPoLMTLa5Sy6FTE6hRPzN+5J8DT7BbTmlqZaL6SZpXF30heRUbnYOvujw==" - } - }, - "npm:is-number@7.0.0": { - "type": "npm", - "name": "npm:is-number@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:storybook-addon-swc": { - "type": "npm", - "name": "npm:storybook-addon-swc", - "data": { - "version": "1.2.0", - "packageName": "storybook-addon-swc", - "hash": "sha512-PEpxhAH+407KTcVDC7uUH4S26qtuBDC/JlZI3NqFYu0Tm2uCBf56On+13lK4iE3Iz8FORl4aSXo2RricJ/UhPQ==" - } - }, - "npm:@types/d3-format": { - "type": "npm", - "name": "npm:@types/d3-format", - "data": { - "version": "1.3.1", - "packageName": "@types/d3-format", - "hash": "sha512-KAWvReOKMDreaAwOjdfQMm0HjcUMlQG47GwqdVKgmm20vTd2pucj0a70c3gUSHrnsmo6H2AMrkBsZU2UhJLq8A==" - } - }, - "npm:istanbul-lib-source-maps": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps", - "data": { - "version": "4.0.1", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" - } - }, - "npm:@octokit/types@9.3.2": { - "type": "npm", - "name": "npm:@octokit/types@9.3.2", - "data": { - "version": "9.3.2", - "packageName": "@octokit/types", - "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" - } - }, - "npm:homedir-polyfill": { - "type": "npm", - "name": "npm:homedir-polyfill", - "data": { - "version": "1.0.3", - "packageName": "homedir-polyfill", - "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" - } - }, - "npm:css": { - "type": "npm", - "name": "npm:css", - "data": { - "version": "2.2.4", - "packageName": "css", - "hash": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==" - } - }, - "npm:marked": { - "type": "npm", - "name": "npm:marked", - "data": { - "version": "4.0.12", - "packageName": "marked", - "hash": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==" - } - }, - "npm:concat-stream": { - "type": "npm", - "name": "npm:concat-stream", - "data": { - "version": "1.6.2", - "packageName": "concat-stream", - "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" - } - }, - "npm:esbuild-darwin-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-darwin-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-darwin-64", - "hash": "sha512-YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==" - } - }, - "npm:@effect/io": { - "type": "npm", - "name": "npm:@effect/io", - "data": { - "version": "0.26.0", - "packageName": "@effect/io", - "hash": "sha512-umwZ/sRoV7zb/8WwoiK7xWoypqvY6C1EXWEGORpViAFUTx3/bXc9i7JtdttTWVokXb3qogrxGX2SHopB20I4vQ==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.33", - "packageName": "@types/connect", - "hash": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==" - } - }, - "npm:@nrwl/tao": { - "type": "npm", - "name": "npm:@nrwl/tao", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/tao", - "hash": "sha512-QNAanpINbr+Pod6e1xNgFbzK1x5wmZl+jMocgiEFXZ67KHvmbD6MAQQr0MMz+GPhIu7EE4QCTLTyCEMlAG+K5Q==" - } - }, - "npm:interpret": { - "type": "npm", - "name": "npm:interpret", - "data": { - "version": "1.2.0", - "packageName": "interpret", - "hash": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==" - } - }, - "npm:is-descriptor@0.1.6": { - "type": "npm", - "name": "npm:is-descriptor@0.1.6", - "data": { - "version": "0.1.6", - "packageName": "is-descriptor", - "hash": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==" - } - }, - "npm:jest-runtime": { - "type": "npm", - "name": "npm:jest-runtime", - "data": { - "version": "29.7.0", - "packageName": "jest-runtime", - "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" - } - }, - "npm:path-to-regexp@1.7.0": { - "type": "npm", - "name": "npm:path-to-regexp@1.7.0", - "data": { - "version": "1.7.0", - "packageName": "path-to-regexp", - "hash": "sha1-Wf3g9DW62suhA6hOnTvGTpa5k30=" - } - }, - "npm:istanbul": { - "type": "npm", - "name": "npm:istanbul", - "data": { - "version": "0.4.5", - "packageName": "istanbul", - "hash": "sha512-nMtdn4hvK0HjUlzr1DrKSUY8ychprt8dzHOgY2KXsIhHu5PuQQEOTM27gV9Xblyon7aUH/TSFIjRHEODF/FRPg==" - } - }, - "npm:unc-path-regex": { - "type": "npm", - "name": "npm:unc-path-regex", - "data": { - "version": "0.1.2", - "packageName": "unc-path-regex", - "hash": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.9.7", - "packageName": "@types/qs", - "hash": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" - } - }, - "npm:html-loader": { - "type": "npm", - "name": "npm:html-loader", - "data": { - "version": "1.3.2", - "packageName": "html-loader", - "hash": "sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==" - } - }, - "npm:serve-favicon": { - "type": "npm", - "name": "npm:serve-favicon", - "data": { - "version": "2.5.0", - "packageName": "serve-favicon", - "hash": "sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=" - } - }, - "npm:vinyl-fs": { - "type": "npm", - "name": "npm:vinyl-fs", - "data": { - "version": "3.0.3", - "packageName": "vinyl-fs", - "hash": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==" - } - }, - "npm:object-visit": { - "type": "npm", - "name": "npm:object-visit", - "data": { - "version": "1.0.1", - "packageName": "object-visit", - "hash": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=" - } - }, - "npm:globals@9.18.0": { - "type": "npm", - "name": "npm:globals@9.18.0", - "data": { - "version": "9.18.0", - "packageName": "globals", - "hash": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" - } - }, - "npm:babel-jest": { - "type": "npm", - "name": "npm:babel-jest", - "data": { - "version": "29.7.0", - "packageName": "babel-jest", - "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" - } - }, - "npm:koa-compose": { - "type": "npm", - "name": "npm:koa-compose", - "data": { - "version": "4.1.0", - "packageName": "koa-compose", - "hash": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "0.3.0", - "packageName": "media-typer", - "hash": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - } - }, - "npm:istanbul-lib-instrument@1.10.2": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@1.10.2", - "data": { - "version": "1.10.2", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==" - } - }, - "npm:deprecation": { - "type": "npm", - "name": "npm:deprecation", - "data": { - "version": "2.3.1", - "packageName": "deprecation", - "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" - } - }, - "npm:array-slice@0.2.3": { - "type": "npm", - "name": "npm:array-slice@0.2.3", - "data": { - "version": "0.2.3", - "packageName": "array-slice", - "hash": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=" - } - }, - "npm:@babel/plugin-proposal-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-export-namespace-from", - "data": { - "version": "7.18.9", - "packageName": "@babel/plugin-proposal-export-namespace-from", - "hash": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" - } - }, - "npm:bn.js": { - "type": "npm", - "name": "npm:bn.js", - "data": { - "version": "4.11.9", - "packageName": "bn.js", - "hash": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" - } - }, - "npm:jest-changed-files": { - "type": "npm", - "name": "npm:jest-changed-files", - "data": { - "version": "29.7.0", - "packageName": "jest-changed-files", - "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" - } - }, - "npm:p-try@1.0.0": { - "type": "npm", - "name": "npm:p-try@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "p-try", - "hash": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" - } - }, - "npm:pkg-up": { - "type": "npm", - "name": "npm:pkg-up", - "data": { - "version": "3.1.0", - "packageName": "pkg-up", - "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" - } - }, - "npm:postcss-modules-local-by-default@3.0.2": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ==" - } - }, - "npm:esbuild@0.19.2": { - "type": "npm", - "name": "npm:esbuild@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "esbuild", - "hash": "sha512-G6hPax8UbFakEj3hWO0Vs52LQ8k3lnBhxZWomUJDxfz3rZTLqF5k/FCzuNdLx2RbpBiQQF9H9onlDDH1lZsnjg==" - } - }, - "npm:@nx/devkit": { - "type": "npm", - "name": "npm:@nx/devkit", - "data": { - "version": "16.10.0", - "packageName": "@nx/devkit", - "hash": "sha512-IvKQqRJFDDiaj33SPfGd3ckNHhHi6ceEoqCbAP4UuMXOPPVOX6H0KVk+9tknkPb48B7jWIw6/AgOeWkBxPRO5w==" - } - }, - "npm:@storybook/mdx1-csf": { - "type": "npm", - "name": "npm:@storybook/mdx1-csf", - "data": { - "version": "0.0.1", - "packageName": "@storybook/mdx1-csf", - "hash": "sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==" - } - }, - "npm:babel-plugin-syntax-jsx": { - "type": "npm", - "name": "npm:babel-plugin-syntax-jsx", - "data": { - "version": "6.18.0", - "packageName": "babel-plugin-syntax-jsx", - "hash": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" - } - }, - "npm:lodash.once": { - "type": "npm", - "name": "npm:lodash.once", - "data": { - "version": "4.1.1", - "packageName": "lodash.once", - "hash": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" - } - }, - "npm:open@7.4.2": { - "type": "npm", - "name": "npm:open@7.4.2", - "data": { - "version": "7.4.2", - "packageName": "open", - "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" - } - }, - "npm:p-pipe": { - "type": "npm", - "name": "npm:p-pipe", - "data": { - "version": "3.1.0", - "packageName": "p-pipe", - "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" - } - }, - "npm:is-ci": { - "type": "npm", - "name": "npm:is-ci", - "data": { - "version": "3.0.1", - "packageName": "is-ci", - "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.2.1", - "packageName": "import-fresh", - "hash": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==" - } - }, - "npm:@esbuild/linux-ppc64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-dJ0kE8KTqbiHtA3Fc/zn7lCd7pqVr4JcT0JqOnbj4LLzYnp+7h8Qi4yjfq42ZlHfhOCM42rBh0EwHYLL6LEzcw==" - } - }, - "npm:iobuffer": { - "type": "npm", - "name": "npm:iobuffer", - "data": { - "version": "5.2.1", - "packageName": "iobuffer", - "hash": "sha512-VcilIyf5iaeEEPwCdhDsVMpZuWJ94j9KYI1hQQz1z7k/m+WygYvOGc6s51sg5R4qzN2EfDGEIW9EUbTU0iJIXw==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:karma-mocha-reporter": { - "type": "npm", - "name": "npm:karma-mocha-reporter", - "data": { - "version": "2.2.5", - "packageName": "karma-mocha-reporter", - "hash": "sha512-Hr6nhkIp0GIJJrvzY8JFeHpQZNseuIakGac4bpw8K1+5F0tLb6l7uvXRa8mt2Z+NVwYgCct4QAfp2R2QP6o00w==" - } - }, - "npm:get-caller-file@1.0.3": { - "type": "npm", - "name": "npm:get-caller-file@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "get-caller-file", - "hash": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:codesandbox-import-utils": { - "type": "npm", - "name": "npm:codesandbox-import-utils", - "data": { - "version": "2.2.3", - "packageName": "codesandbox-import-utils", - "hash": "sha512-ymtmcgZKU27U+nM2qUb21aO8Ut/u2S9s6KorOgG81weP+NA0UZkaHKlaRqbLJ9h4i/4FLvwmEXYAnTjNmp6ogg==" - } - }, - "npm:@nx/nx-linux-x64-gnu@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-134PW/u/arNFAQKpqMJniC7irbChMPz+W+qtyKPAUXE0XFKPa7c1GtlI/wK2dvP9qJDZ6bKf0KtA0U/m2HMUOA==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:@nx/nx-darwin-x64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-ypi6YxwXgb0kg2ixKXE3pwf5myVNUgWf1CsV5OzVccCM8NzheMO51KDXTDmEpXdzUsfT0AkO1sk5GZeCjhVONg==" - } - }, - "npm:@types/d3-time": { - "type": "npm", - "name": "npm:@types/d3-time", - "data": { - "version": "2.1.3", - "packageName": "@types/d3-time", - "hash": "sha512-9EOa1kDZ1f8v6C5Mepz5YpWrVikrywGTQQ6QaYiVonrN6Chmmji2/XEVF38gn4uId3f2j85Uod14OKsv7ITOhw==" - } - }, - "npm:ansi-align@2.0.0": { - "type": "npm", - "name": "npm:ansi-align@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ansi-align", - "hash": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=" - } - }, - "npm:ansi-regex@2.1.1": { - "type": "npm", - "name": "npm:ansi-regex@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ansi-regex", - "hash": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - } - }, - "npm:jest-util": { - "type": "npm", - "name": "npm:jest-util", - "data": { - "version": "29.7.0", - "packageName": "jest-util", - "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:get-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.0.0", - "packageName": "get-symbol-description", - "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" - } - }, - "npm:prismjs": { - "type": "npm", - "name": "npm:prismjs", - "data": { - "version": "1.16.0", - "packageName": "prismjs", - "hash": "sha512-OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA==" - } - }, - "npm:read-pkg@1.1.0": { - "type": "npm", - "name": "npm:read-pkg@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "read-pkg", - "hash": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=" - } - }, - "npm:semver-regex": { - "type": "npm", - "name": "npm:semver-regex", - "data": { - "version": "4.0.5", - "packageName": "semver-regex", - "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" - } - }, - "npm:unist-util-visit-parents@2.1.2": { - "type": "npm", - "name": "npm:unist-util-visit-parents@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "unist-util-visit-parents", - "hash": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==" - } - }, - "npm:upper-case-first": { - "type": "npm", - "name": "npm:upper-case-first", - "data": { - "version": "1.1.2", - "packageName": "upper-case-first", - "hash": "sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=" - } - }, - "npm:is-descriptor": { - "type": "npm", - "name": "npm:is-descriptor", - "data": { - "version": "1.0.2", - "packageName": "is-descriptor", - "hash": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "4.17.31", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==" - } - }, - "npm:d3-color": { - "type": "npm", - "name": "npm:d3-color", - "data": { - "version": "1.4.0", - "packageName": "d3-color", - "hash": "sha512-TzNPeJy2+iEepfiL92LAAB7fvnp/dV2YwANPVHdDWmYMm23qIJBYww3qT8I8C1wXrmrg4UWs7BKc2tKIgyjzHg==" - } - }, - "npm:tslib@1.14.1": { - "type": "npm", - "name": "npm:tslib@1.14.1", - "data": { - "version": "1.14.1", - "packageName": "tslib", - "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - }, - "npm:uglify-js": { - "type": "npm", - "name": "npm:uglify-js", - "data": { - "version": "3.17.4", - "packageName": "uglify-js", - "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" - } - }, - "npm:@mrmlnc/readdir-enhanced": { - "type": "npm", - "name": "npm:@mrmlnc/readdir-enhanced", - "data": { - "version": "2.2.1", - "packageName": "@mrmlnc/readdir-enhanced", - "hash": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==" - } - }, - "npm:react-docgen": { - "type": "npm", - "name": "npm:react-docgen", - "data": { - "version": "5.1.0", - "packageName": "react-docgen", - "hash": "sha512-buAVMVqDEtvC7+VRDRlA9udS9cO9jFfb7yxRvKNYR9MXS0MJwaIe7OjSEydNzH9oH7LND3whDE+koFDUBtF3zA==" - } - }, - "npm:is-hexadecimal": { - "type": "npm", - "name": "npm:is-hexadecimal", - "data": { - "version": "1.0.3", - "packageName": "is-hexadecimal", - "hash": "sha512-zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA==" - } - }, - "npm:remark-slug": { - "type": "npm", - "name": "npm:remark-slug", - "data": { - "version": "6.0.0", - "packageName": "remark-slug", - "hash": "sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==" - } - }, - "npm:protocols": { - "type": "npm", - "name": "npm:protocols", - "data": { - "version": "2.0.1", - "packageName": "protocols", - "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" - } - }, - "npm:scheduler@0.23.0": { - "type": "npm", - "name": "npm:scheduler@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "scheduler", - "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" - } - }, - "npm:istanbul-lib-report": { - "type": "npm", - "name": "npm:istanbul-lib-report", - "data": { - "version": "3.0.0", - "packageName": "istanbul-lib-report", - "hash": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==" - } - }, - "npm:string-argv": { - "type": "npm", - "name": "npm:string-argv", - "data": { - "version": "0.3.1", - "packageName": "string-argv", - "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" - } - }, - "npm:backfill-utils-dotenv": { - "type": "npm", - "name": "npm:backfill-utils-dotenv", - "data": { - "version": "5.1.1", - "packageName": "backfill-utils-dotenv", - "hash": "sha512-hSdY1pflGFf4xXXpI51bnNPr8arS3ga5tSeyeTjIdohC5IwUf+Eldz2yeSMrbqtP3PKIuxHc2RcwTJfL5jSBfg==" - } - }, - "npm:supports-color@2.0.0": { - "type": "npm", - "name": "npm:supports-color@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "supports-color", - "hash": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - }, - "npm:wide-align@1.1.3": { - "type": "npm", - "name": "npm:wide-align@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "wide-align", - "hash": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==" - } - }, - "npm:lz-string": { - "type": "npm", - "name": "npm:lz-string", - "data": { - "version": "1.4.4", - "packageName": "lz-string", - "hash": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" - } - }, - "npm:commander@6.2.1": { - "type": "npm", - "name": "npm:commander@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "commander", - "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:sax@0.5.8": { - "type": "npm", - "name": "npm:sax@0.5.8", - "data": { - "version": "0.5.8", - "packageName": "sax", - "hash": "sha512-c0YL9VcSfcdH3F1Qij9qpYJFpKFKMXNOkLWFssBL3RuF7ZS8oZhllR2rWlCRjDTJsfq3R6wbSsaRU6o0rkEdNw==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "29.7.0", - "packageName": "jest-diff", - "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" - } - }, - "npm:esbuild-linux-mips64le@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-mips64le@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-mips64le", - "hash": "sha512-vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==" - } - }, - "npm:lodash.isnumber": { - "type": "npm", - "name": "npm:lodash.isnumber", - "data": { - "version": "3.0.3", - "packageName": "lodash.isnumber", - "hash": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" - } - }, - "npm:d3-hierarchy@1.1.9": { - "type": "npm", - "name": "npm:d3-hierarchy@1.1.9", - "data": { - "version": "1.1.9", - "packageName": "d3-hierarchy", - "hash": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "0.5.2", - "packageName": "fresh", - "hash": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" - } - }, - "npm:@adobe/css-tools": { - "type": "npm", - "name": "npm:@adobe/css-tools", - "data": { - "version": "4.3.1", - "packageName": "@adobe/css-tools", - "hash": "sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - } - }, - "npm:@storybook/api": { - "type": "npm", - "name": "npm:@storybook/api", - "data": { - "version": "6.5.15", - "packageName": "@storybook/api", - "hash": "sha512-BBE0KXKvj1/3jTghbIoWfrcDM0t+xO7EYtWWAXD6XlhGsZVD2Dy82Z52ONyLulMDRpMWl0OYy3h6A1YnFUH25w==" - } - }, - "npm:cachedir": { - "type": "npm", - "name": "npm:cachedir", - "data": { - "version": "2.3.0", - "packageName": "cachedir", - "hash": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==" - } - }, - "npm:eslint-utils": { - "type": "npm", - "name": "npm:eslint-utils", - "data": { - "version": "2.1.0", - "packageName": "eslint-utils", - "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" - } - }, - "npm:moment": { - "type": "npm", - "name": "npm:moment", - "data": { - "version": "2.29.4", - "packageName": "moment", - "hash": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" - } - }, - "npm:num2fraction": { - "type": "npm", - "name": "npm:num2fraction", - "data": { - "version": "1.2.2", - "packageName": "num2fraction", - "hash": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" - } - }, - "npm:object-copy": { - "type": "npm", - "name": "npm:object-copy", - "data": { - "version": "0.1.0", - "packageName": "object-copy", - "hash": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:sort-keys-length": { - "type": "npm", - "name": "npm:sort-keys-length", - "data": { - "version": "1.0.1", - "packageName": "sort-keys-length", - "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" - } - }, - "npm:@types/istanbul-reports@1.1.1": { - "type": "npm", - "name": "npm:@types/istanbul-reports@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "@types/istanbul-reports", - "hash": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==" - } - }, - "npm:ip@1.1.5": { - "type": "npm", - "name": "npm:ip@1.1.5", - "data": { - "version": "1.1.5", - "packageName": "ip", - "hash": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" - } - }, - "npm:@mdx-js/react": { - "type": "npm", - "name": "npm:@mdx-js/react", - "data": { - "version": "1.6.22", - "packageName": "@mdx-js/react", - "hash": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "5.1.0", - "packageName": "get-stream", - "hash": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "2.0.2", - "packageName": "unique-slug", - "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" - } - }, - "npm:write-file-atomic@4.0.2": { - "type": "npm", - "name": "npm:write-file-atomic@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:@types/hast": { - "type": "npm", - "name": "npm:@types/hast", - "data": { - "version": "2.3.1", - "packageName": "@types/hast", - "hash": "sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==" - } - }, - "npm:textextensions": { - "type": "npm", - "name": "npm:textextensions", - "data": { - "version": "2.6.0", - "packageName": "textextensions", - "hash": "sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==" - } - }, - "npm:jest-pnp-resolver": { - "type": "npm", - "name": "npm:jest-pnp-resolver", - "data": { - "version": "1.2.2", - "packageName": "jest-pnp-resolver", - "hash": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "3.0.0", - "packageName": "is-number", - "hash": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=" - } - }, - "npm:@microsoft/tsdoc-config": { - "type": "npm", - "name": "npm:@microsoft/tsdoc-config", - "data": { - "version": "0.16.2", - "packageName": "@microsoft/tsdoc-config", - "hash": "sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==" - } - }, - "npm:loader-runner@2.4.0": { - "type": "npm", - "name": "npm:loader-runner@2.4.0", - "data": { - "version": "2.4.0", - "packageName": "loader-runner", - "hash": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" - } - }, - "npm:@types/source-list-map": { - "type": "npm", - "name": "npm:@types/source-list-map", - "data": { - "version": "0.1.2", - "packageName": "@types/source-list-map", - "hash": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" - } - }, - "npm:clean-webpack-plugin": { - "type": "npm", - "name": "npm:clean-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "clean-webpack-plugin", - "hash": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==" - } - }, - "npm:gzip-size": { - "type": "npm", - "name": "npm:gzip-size", - "data": { - "version": "5.1.1", - "packageName": "gzip-size", - "hash": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==" - } - }, - "npm:@cspotcode/source-map-support": { - "type": "npm", - "name": "npm:@cspotcode/source-map-support", - "data": { - "version": "0.8.1", - "packageName": "@cspotcode/source-map-support", - "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" - } - }, - "npm:@types/mocha": { - "type": "npm", - "name": "npm:@types/mocha", - "data": { - "version": "7.0.2", - "packageName": "@types/mocha", - "hash": "sha512-ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w==" - } - }, - "npm:toggle-selection": { - "type": "npm", - "name": "npm:toggle-selection", - "data": { - "version": "1.0.6", - "packageName": "toggle-selection", - "hash": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" - } - }, - "npm:upath": { - "type": "npm", - "name": "npm:upath", - "data": { - "version": "2.0.1", - "packageName": "upath", - "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" - } - }, - "npm:os-filter-obj": { - "type": "npm", - "name": "npm:os-filter-obj", - "data": { - "version": "2.0.0", - "packageName": "os-filter-obj", - "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" - } - }, - "npm:watchpack@1.7.5": { - "type": "npm", - "name": "npm:watchpack@1.7.5", - "data": { - "version": "1.7.5", - "packageName": "watchpack", - "hash": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==" - } - }, - "npm:lage": { - "type": "npm", - "name": "npm:lage", - "data": { - "version": "1.8.8", - "packageName": "lage", - "hash": "sha512-rMXedlK1lvC69P+bVir6r9EaGqy/NZm1Rg4vE7LD1vlDzNLYkCnvD1JkMxxQHkbMjhKXBLwcB6JnAti79GdLgA==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:regenerator-runtime@0.14.0": { - "type": "npm", - "name": "npm:regenerator-runtime@0.14.0", - "data": { - "version": "0.14.0", - "packageName": "regenerator-runtime", - "hash": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - } - }, - "npm:@types/prop-types": { - "type": "npm", - "name": "npm:@types/prop-types", - "data": { - "version": "15.7.1", - "packageName": "@types/prop-types", - "hash": "sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg==" - } - }, - "npm:d3-shape@3.2.0": { - "type": "npm", - "name": "npm:d3-shape@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "d3-shape", - "hash": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==" - } - }, - "npm:whatwg-url@5.0.0": { - "type": "npm", - "name": "npm:whatwg-url@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=" - } - }, - "npm:get-value": { - "type": "npm", - "name": "npm:get-value", - "data": { - "version": "2.0.6", - "packageName": "get-value", - "hash": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" - } - }, - "npm:arr-map": { - "type": "npm", - "name": "npm:arr-map", - "data": { - "version": "2.0.2", - "packageName": "arr-map", - "hash": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=" - } - }, - "npm:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.2", - "packageName": "core-util-is", - "hash": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - } - }, - "npm:unist-util-stringify-position@2.0.2": { - "type": "npm", - "name": "npm:unist-util-stringify-position@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "unist-util-stringify-position", - "hash": "sha512-nK5n8OGhZ7ZgUwoUbL8uiVRwAbZyzBsB/Ddrlbu6jwwubFza4oe15KlyEaLNMXQW1svOQq4xesUeqA85YrIUQA==" - } - }, - "npm:brace": { - "type": "npm", - "name": "npm:brace", - "data": { - "version": "0.11.1", - "packageName": "brace", - "hash": "sha1-SJb8ydVE7vRfS7dmDbMg07N5/lg=" - } - }, - "npm:@babel/plugin-syntax-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-catch-binding", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-catch-binding", - "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - } - }, - "npm:function.prototype.name": { - "type": "npm", - "name": "npm:function.prototype.name", - "data": { - "version": "1.1.0", - "packageName": "function.prototype.name", - "hash": "sha512-Bs0VRrTz4ghD8pTmbJQD1mZ8A/mN0ur/jGz+A6FBxPDUPkm1tNfF6bhTYPA7i7aF4lZJVr+OXTNNrnnIl58Wfg==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "2.0.0", - "packageName": "chownr", - "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - } - }, - "npm:regenerator-transform": { - "type": "npm", - "name": "npm:regenerator-transform", - "data": { - "version": "0.15.2", - "packageName": "regenerator-transform", - "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.0", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - } - }, - "npm:@storybook/ui": { - "type": "npm", - "name": "npm:@storybook/ui", - "data": { - "version": "6.5.15", - "packageName": "@storybook/ui", - "hash": "sha512-OO+TWZmI8ebWA1C3JBKNvbUbsgvt4GppqsGlkf5CTBZrT/MzmMlYiooLAtlY1ZPcMtTd5ynLxvroHWBEnMOk2A==" - } - }, - "npm:@types/tunnel": { - "type": "npm", - "name": "npm:@types/tunnel", - "data": { - "version": "0.0.1", - "packageName": "@types/tunnel", - "hash": "sha512-AOqu6bQu5MSWwYvehMXLukFHnupHrpZ8nvgae5Ggie9UwzDR1CCwoXgSSWNZJuyOlCdfdsWMA5F2LlmvyoTv8A==" - } - }, - "npm:arrify@1.0.1": { - "type": "npm", - "name": "npm:arrify@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "arrify", - "hash": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" - } - }, - "npm:memoizee": { - "type": "npm", - "name": "npm:memoizee", - "data": { - "version": "0.4.14", - "packageName": "memoizee", - "hash": "sha512-/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg==" - } - }, - "npm:regexpu-core": { - "type": "npm", - "name": "npm:regexpu-core", - "data": { - "version": "5.3.2", - "packageName": "regexpu-core", - "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:@types/semver@7.3.13": { - "type": "npm", - "name": "npm:@types/semver@7.3.13", - "data": { - "version": "7.3.13", - "packageName": "@types/semver", - "hash": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" - } - }, - "npm:@webpack-cli/serve": { - "type": "npm", - "name": "npm:@webpack-cli/serve", - "data": { - "version": "1.7.0", - "packageName": "@webpack-cli/serve", - "hash": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==" - } - }, - "npm:delegate": { - "type": "npm", - "name": "npm:delegate", - "data": { - "version": "3.2.0", - "packageName": "delegate", - "hash": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" - } - }, - "npm:@emotion/unitless": { - "type": "npm", - "name": "npm:@emotion/unitless", - "data": { - "version": "0.7.5", - "packageName": "@emotion/unitless", - "hash": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" - } - }, - "npm:fela-utils": { - "type": "npm", - "name": "npm:fela-utils", - "data": { - "version": "10.8.2", - "packageName": "fela-utils", - "hash": "sha512-RmoDOIby14Zb3Xn03noLolyMC2528xcNO5KcNCaznyByd1Acq8DnvQn91Ph9nBLcLqdC1rGme5HwRcrCOHG+kA==" - } - }, - "npm:ospath": { - "type": "npm", - "name": "npm:ospath", - "data": { - "version": "1.2.2", - "packageName": "ospath", - "hash": "sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" - } - }, - "npm:clone-response": { - "type": "npm", - "name": "npm:clone-response", - "data": { - "version": "1.0.2", - "packageName": "clone-response", - "hash": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" - } - }, - "npm:@types/d3-sankey": { - "type": "npm", - "name": "npm:@types/d3-sankey", - "data": { - "version": "0.11.2", - "packageName": "@types/d3-sankey", - "hash": "sha512-U6SrTWUERSlOhnpSrgvMX64WblX1AxX6nEjI2t3mLK2USpQrnbwYYK+AS9SwiE7wgYmOsSSKoSdr8aoKBH0HgQ==" - } - }, - "npm:pixel-buffer-diff": { - "type": "npm", - "name": "npm:pixel-buffer-diff", - "data": { - "version": "1.3.3", - "packageName": "pixel-buffer-diff", - "hash": "sha512-Idq8Wps2P5iKgvP3DEb0aZuKqqDuqsiqY0jJmqHMYfCzq4xuNPygFg1zdZSM5k5m14u8Ww72mTY39Bu2XtT2+A==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:emoji-regex@8.0.0": { - "type": "npm", - "name": "npm:emoji-regex@8.0.0", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:@types/doctrine": { - "type": "npm", - "name": "npm:@types/doctrine", - "data": { - "version": "0.0.5", - "packageName": "@types/doctrine", - "hash": "sha512-JJwEeFy8Sl9ctiugU4h4DGN9hCB47oyhUkM2H8g8xZr4tHTEXtmV4U6krKrU8Ng0S7RlG/J7fkta1rGu3pq+YQ==" - } - }, - "npm:dashdash": { - "type": "npm", - "name": "npm:dashdash", - "data": { - "version": "1.14.1", - "packageName": "dashdash", - "hash": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=" - } - }, - "npm:jsonschema": { - "type": "npm", - "name": "npm:jsonschema", - "data": { - "version": "1.4.1", - "packageName": "jsonschema", - "hash": "sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==" - } - }, - "npm:source-map@0.5.7": { - "type": "npm", - "name": "npm:source-map@0.5.7", - "data": { - "version": "0.5.7", - "packageName": "source-map", - "hash": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } - }, - "npm:esbuild-loader": { - "type": "npm", - "name": "npm:esbuild-loader", - "data": { - "version": "3.2.0", - "packageName": "esbuild-loader", - "hash": "sha512-lnIdRMQpk50alCa0QoW0ozc0D3rjJXl02mtMsk9INIcW25RPZhDja332bu85ixwVNbhQ7VfBRcQyZ/qza8mWiA==" - } - }, - "npm:@microsoft/applicationinsights-properties-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-properties-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-properties-js", - "hash": "sha512-PFqicp8q4Tc0hqfPjwfqKo12gEqTk1l4lMyUUIU7ugE1XOuDkZcMPha05KnZWKj+F4zQXJcetcAHoVkyoyCFQw==" - } - }, - "npm:eslint-plugin-jsx-a11y": { - "type": "npm", - "name": "npm:eslint-plugin-jsx-a11y", - "data": { - "version": "6.4.1", - "packageName": "eslint-plugin-jsx-a11y", - "hash": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==" - } - }, - "npm:@octokit/request-error@3.0.1": { - "type": "npm", - "name": "npm:@octokit/request-error@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "@octokit/request-error", - "hash": "sha512-ym4Bp0HTP7F3VFssV88WD1ZyCIRoE8H35pXSKwLeMizcdZAYc/t6N9X9Yr9n6t3aG9IH75XDnZ6UeZph0vHMWQ==" - } - }, - "npm:fastest-levenshtein": { - "type": "npm", - "name": "npm:fastest-levenshtein", - "data": { - "version": "1.0.12", - "packageName": "fastest-levenshtein", - "hash": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==" - } - }, - "npm:aria-query": { - "type": "npm", - "name": "npm:aria-query", - "data": { - "version": "4.2.2", - "packageName": "aria-query", - "hash": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==" - } - }, - "npm:global-modules": { - "type": "npm", - "name": "npm:global-modules", - "data": { - "version": "1.0.0", - "packageName": "global-modules", - "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" - } - }, - "npm:globby@13.2.2": { - "type": "npm", - "name": "npm:globby@13.2.2", - "data": { - "version": "13.2.2", - "packageName": "globby", - "hash": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==" - } - }, - "npm:loud-rejection": { - "type": "npm", - "name": "npm:loud-rejection", - "data": { - "version": "1.6.0", - "packageName": "loud-rejection", - "hash": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=" - } - }, - "npm:@tokenizer/token": { - "type": "npm", - "name": "npm:@tokenizer/token", - "data": { - "version": "0.3.0", - "packageName": "@tokenizer/token", - "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - } - }, - "npm:stylis@3.5.4": { - "type": "npm", - "name": "npm:stylis@3.5.4", - "data": { - "version": "3.5.4", - "packageName": "stylis", - "hash": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" - } - }, - "npm:url-parse-lax": { - "type": "npm", - "name": "npm:url-parse-lax", - "data": { - "version": "1.0.0", - "packageName": "url-parse-lax", - "hash": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=" - } - }, - "npm:globby@10.0.2": { - "type": "npm", - "name": "npm:globby@10.0.2", - "data": { - "version": "10.0.2", - "packageName": "globby", - "hash": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==" - } - }, - "npm:glogg": { - "type": "npm", - "name": "npm:glogg", - "data": { - "version": "1.0.2", - "packageName": "glogg", - "hash": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==" - } - }, - "npm:react-app-polyfill": { - "type": "npm", - "name": "npm:react-app-polyfill", - "data": { - "version": "2.0.0", - "packageName": "react-app-polyfill", - "hash": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==" - } - }, - "npm:array-union": { - "type": "npm", - "name": "npm:array-union", - "data": { - "version": "2.1.0", - "packageName": "array-union", - "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - } - }, - "npm:restore-cursor@2.0.0": { - "type": "npm", - "name": "npm:restore-cursor@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "restore-cursor", - "hash": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=" - } - }, - "npm:d3-collection": { - "type": "npm", - "name": "npm:d3-collection", - "data": { - "version": "1.0.7", - "packageName": "d3-collection", - "hash": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" - } - }, - "npm:type-fest@0.18.1": { - "type": "npm", - "name": "npm:type-fest@0.18.1", - "data": { - "version": "0.18.1", - "packageName": "type-fest", - "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - } - }, - "npm:handle-thing": { - "type": "npm", - "name": "npm:handle-thing", - "data": { - "version": "2.0.0", - "packageName": "handle-thing", - "hash": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==" - } - }, - "npm:@swc/core-linux-x64-musl@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-musl@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-x64-musl", - "hash": "sha512-C1NUeISJDyMlIk4919bjcpHvjyjzbkjW7v53gUdN41Y4BPlEk7UKcLez7UHMjdMGA/o9721SLqYVp4/NrQErUw==" - } - }, - "npm:@griffel/webpack-loader": { - "type": "npm", - "name": "npm:@griffel/webpack-loader", - "data": { - "version": "2.1.20", - "packageName": "@griffel/webpack-loader", - "hash": "sha512-R4Sk64rZIkWuTQX0mpzOFm5ULJ0HpnD3GMxOvprqNTpQmaCaL89FHOMc1le90s25clQfmxTAZuCueBOJHYxNCA==" - } - }, - "npm:@types/glob-stream": { - "type": "npm", - "name": "npm:@types/glob-stream", - "data": { - "version": "6.1.0", - "packageName": "@types/glob-stream", - "hash": "sha512-RHv6ZQjcTncXo3thYZrsbAVwoy4vSKosSWhuhuQxLOTv74OJuFQxXkmUuZCr3q9uNBEVCvIzmZL/FeRNbHZGUg==" - } - }, - "npm:debug@3.2.7": { - "type": "npm", - "name": "npm:debug@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "debug", - "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - } - }, - "npm:opn": { - "type": "npm", - "name": "npm:opn", - "data": { - "version": "5.5.0", - "packageName": "opn", - "hash": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==" - } - }, - "npm:comment-parser": { - "type": "npm", - "name": "npm:comment-parser", - "data": { - "version": "1.3.1", - "packageName": "comment-parser", - "hash": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==" - } - }, - "npm:editions": { - "type": "npm", - "name": "npm:editions", - "data": { - "version": "2.3.1", - "packageName": "editions", - "hash": "sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==" - } - }, - "npm:ajv-errors@1.0.1": { - "type": "npm", - "name": "npm:ajv-errors@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "ajv-errors", - "hash": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" - } - }, - "npm:os-locale": { - "type": "npm", - "name": "npm:os-locale", - "data": { - "version": "1.4.0", - "packageName": "os-locale", - "hash": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=" - } - }, - "npm:jest-mock": { - "type": "npm", - "name": "npm:jest-mock", - "data": { - "version": "29.7.0", - "packageName": "jest-mock", - "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" - } - }, - "npm:@tsconfig/node16": { - "type": "npm", - "name": "npm:@tsconfig/node16", - "data": { - "version": "1.0.3", - "packageName": "@tsconfig/node16", - "hash": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==" - } - }, - "npm:estraverse@1.9.3": { - "type": "npm", - "name": "npm:estraverse@1.9.3", - "data": { - "version": "1.9.3", - "packageName": "estraverse", - "hash": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.0.3", - "packageName": "internal-slot", - "hash": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" - } - }, - "npm:hash.js": { - "type": "npm", - "name": "npm:hash.js", - "data": { - "version": "1.1.7", - "packageName": "hash.js", - "hash": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==" - } - }, - "npm:is-arguments": { - "type": "npm", - "name": "npm:is-arguments", - "data": { - "version": "1.0.4", - "packageName": "is-arguments", - "hash": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==" - } - }, - "npm:is-path-in-cwd": { - "type": "npm", - "name": "npm:is-path-in-cwd", - "data": { - "version": "2.1.0", - "packageName": "is-path-in-cwd", - "hash": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" - } - }, - "npm:d3-scale@4.0.2": { - "type": "npm", - "name": "npm:d3-scale@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "d3-scale", - "hash": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==" - } - }, - "npm:dedent@1.5.1": { - "type": "npm", - "name": "npm:dedent@1.5.1", - "data": { - "version": "1.5.1", - "packageName": "dedent", - "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" - } - }, - "npm:lodash.escape": { - "type": "npm", - "name": "npm:lodash.escape", - "data": { - "version": "3.2.0", - "packageName": "lodash.escape", - "hash": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=" - } - }, - "npm:loupe": { - "type": "npm", - "name": "npm:loupe", - "data": { - "version": "2.3.4", - "packageName": "loupe", - "hash": "sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==" - } - }, - "npm:load-json-file@1.1.0": { - "type": "npm", - "name": "npm:load-json-file@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "load-json-file", - "hash": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=" - } - }, - "npm:parse-url": { - "type": "npm", - "name": "npm:parse-url", - "data": { - "version": "8.1.0", - "packageName": "parse-url", - "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" - } - }, - "npm:resolve-from@3.0.0": { - "type": "npm", - "name": "npm:resolve-from@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "resolve-from", - "hash": "sha1-six699nWiBvItuZTM17rywoYh0g=" - } - }, - "npm:tiny-warning": { - "type": "npm", - "name": "npm:tiny-warning", - "data": { - "version": "1.0.3", - "packageName": "tiny-warning", - "hash": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" - } - }, - "npm:use": { - "type": "npm", - "name": "npm:use", - "data": { - "version": "3.1.1", - "packageName": "use", - "hash": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" - } - }, - "npm:babel-plugin-extract-import-names": { - "type": "npm", - "name": "npm:babel-plugin-extract-import-names", - "data": { - "version": "1.6.22", - "packageName": "babel-plugin-extract-import-names", - "hash": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==" - } - }, - "npm:@babel/plugin-syntax-jsx@7.12.1": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx@7.12.1", - "data": { - "version": "7.12.1", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==" - } - }, - "npm:@npmcli/fs@2.1.2": { - "type": "npm", - "name": "npm:@npmcli/fs@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "@npmcli/fs", - "hash": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" - } - }, - "npm:commondir": { - "type": "npm", - "name": "npm:commondir", - "data": { - "version": "1.0.1", - "packageName": "commondir", - "hash": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" - } - }, - "npm:@types/parse5": { - "type": "npm", - "name": "npm:@types/parse5", - "data": { - "version": "5.0.3", - "packageName": "@types/parse5", - "hash": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" - } - }, - "npm:get-package-type": { - "type": "npm", - "name": "npm:get-package-type", - "data": { - "version": "0.1.0", - "packageName": "get-package-type", - "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - } - }, - "npm:fsevents@1.2.13": { - "type": "npm", - "name": "npm:fsevents@1.2.13", - "data": { - "version": "1.2.13", - "packageName": "fsevents", - "hash": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==" - } - }, - "npm:pretty-hrtime": { - "type": "npm", - "name": "npm:pretty-hrtime", - "data": { - "version": "1.0.3", - "packageName": "pretty-hrtime", - "hash": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" - } - }, - "npm:unist-util-visit-parents": { - "type": "npm", - "name": "npm:unist-util-visit-parents", - "data": { - "version": "3.0.1", - "packageName": "unist-util-visit-parents", - "hash": "sha512-umEOTkm6/y1gIqPrqet55mYqlvGXCia/v1FSc5AveLAI7jFmOAIbqiwcHcviLcusAkEQt1bq2hixCKO9ltMb2Q==" - } - }, - "npm:@babel/plugin-transform-destructuring": { - "type": "npm", - "name": "npm:@babel/plugin-transform-destructuring", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==" - } - }, - "npm:util": { - "type": "npm", - "name": "npm:util", - "data": { - "version": "0.12.3", - "packageName": "util", - "hash": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==" - } - }, - "npm:create-hmac": { - "type": "npm", - "name": "npm:create-hmac", - "data": { - "version": "1.1.7", - "packageName": "create-hmac", - "hash": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==" - } - }, - "npm:assert@1.5.0": { - "type": "npm", - "name": "npm:assert@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "assert", - "hash": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==" - } - }, - "npm:@babel/plugin-proposal-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", - "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" - } - }, - "npm:node-environment-flags": { - "type": "npm", - "name": "npm:node-environment-flags", - "data": { - "version": "1.0.6", - "packageName": "node-environment-flags", - "hash": "sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:react-transition-group": { - "type": "npm", - "name": "npm:react-transition-group", - "data": { - "version": "4.4.2", - "packageName": "react-transition-group", - "hash": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==" - } - }, - "npm:widest-line": { - "type": "npm", - "name": "npm:widest-line", - "data": { - "version": "3.1.0", - "packageName": "widest-line", - "hash": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" - } - }, - "npm:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.2", - "packageName": "available-typed-arrays", - "hash": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==" - } - }, - "npm:esbuild-android-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-android-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-android-64", - "hash": "sha512-6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==" - } - }, - "npm:lodash.camelcase": { - "type": "npm", - "name": "npm:lodash.camelcase", - "data": { - "version": "4.3.0", - "packageName": "lodash.camelcase", - "hash": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" - } - }, - "npm:param-case@3.0.4": { - "type": "npm", - "name": "npm:param-case@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "param-case", - "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" - } - }, - "npm:@nx/workspace": { - "type": "npm", - "name": "npm:@nx/workspace", - "data": { - "version": "16.10.0", - "packageName": "@nx/workspace", - "hash": "sha512-95Eq36bzq2hb095Zvg+Ru8o9oIeOE62tNGGpohBkZPKoK2CUTYEq0AZtdj1suXS82ukCFCyyZ/c/fwxL62HRZA==" - } - }, - "npm:browser-assert": { - "type": "npm", - "name": "npm:browser-assert", - "data": { - "version": "1.2.1", - "packageName": "browser-assert", - "hash": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==" - } - }, - "npm:wordwrapjs": { - "type": "npm", - "name": "npm:wordwrapjs", - "data": { - "version": "4.0.1", - "packageName": "wordwrapjs", - "hash": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.1.9", - "packageName": "run-parallel", - "hash": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" - } - }, - "npm:table": { - "type": "npm", - "name": "npm:table", - "data": { - "version": "6.8.0", - "packageName": "table", - "hash": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==" - } - }, - "npm:define-property": { - "type": "npm", - "name": "npm:define-property", - "data": { - "version": "0.2.5", - "packageName": "define-property", - "hash": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" - } - }, - "npm:lodash.isarguments": { - "type": "npm", - "name": "npm:lodash.isarguments", - "data": { - "version": "3.1.0", - "packageName": "lodash.isarguments", - "hash": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "1.8.0", - "packageName": "convert-source-map", - "hash": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==" - } - }, - "npm:p-limit@4.0.0": { - "type": "npm", - "name": "npm:p-limit@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "p-limit", - "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" - } - }, - "npm:reduce-flatten": { - "type": "npm", - "name": "npm:reduce-flatten", - "data": { - "version": "2.0.0", - "packageName": "reduce-flatten", - "hash": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==" - } - }, - "npm:source-map-support@0.5.19": { - "type": "npm", - "name": "npm:source-map-support@0.5.19", - "data": { - "version": "0.5.19", - "packageName": "source-map-support", - "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" - } - }, - "npm:to-object-path": { - "type": "npm", - "name": "npm:to-object-path", - "data": { - "version": "0.3.0", - "packageName": "to-object-path", - "hash": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=" - } - }, - "npm:@types/markdown-table": { - "type": "npm", - "name": "npm:@types/markdown-table", - "data": { - "version": "2.0.0", - "packageName": "@types/markdown-table", - "hash": "sha512-fVZN/DRjZvjuk+lo7ovlI/ZycS51gpYU5vw5EcFeqkcX6lucQ+UWgEOH2O4KJHkSck4DHAY7D7CkVLD0wzc5qw==" - } - }, - "npm:http-signature": { - "type": "npm", - "name": "npm:http-signature", - "data": { - "version": "1.3.6", - "packageName": "http-signature", - "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" - } - }, - "npm:@storybook/react-docgen-typescript-plugin": { - "type": "npm", - "name": "npm:@storybook/react-docgen-typescript-plugin", - "data": { - "version": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0", - "packageName": "@storybook/react-docgen-typescript-plugin", - "hash": "sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==" - } - }, - "npm:babel-plugin-apply-mdx-type-prop@1.6.22": { - "type": "npm", - "name": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "data": { - "version": "1.6.22", - "packageName": "babel-plugin-apply-mdx-type-prop", - "hash": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==" - } - }, - "npm:minizlib@1.3.3": { - "type": "npm", - "name": "npm:minizlib@1.3.3", - "data": { - "version": "1.3.3", - "packageName": "minizlib", - "hash": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==" - } - }, - "npm:p-locate@4.1.0": { - "type": "npm", - "name": "npm:p-locate@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:case-sensitive-paths-webpack-plugin": { - "type": "npm", - "name": "npm:case-sensitive-paths-webpack-plugin", - "data": { - "version": "2.4.0", - "packageName": "case-sensitive-paths-webpack-plugin", - "hash": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==" - } - }, - "npm:eslint-plugin-jest@25.2.4": { - "type": "npm", - "name": "npm:eslint-plugin-jest@25.2.4", - "data": { - "version": "25.2.4", - "packageName": "eslint-plugin-jest", - "hash": "sha512-HRyinpgmEdkVr7pNPaYPHCoGqEzpgk79X8pg/xCeoAdurbyQjntJQ4pTzHl7BiVEBlam/F1Qsn+Dk0HtJO7Aaw==" - } - }, - "npm:regenerate": { - "type": "npm", - "name": "npm:regenerate", - "data": { - "version": "1.4.2", - "packageName": "regenerate", - "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - } - }, - "npm:@esbuild/openbsd-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-S6kI1aT3S++Dedb7vxIuUOb3oAxqxk2Rh5rOXOTYnzN8JzW1VzBd+IqPiSpgitu45042SYD3HCoEyhLKQcDFDw==" - } - }, - "npm:remark-mdx": { - "type": "npm", - "name": "npm:remark-mdx", - "data": { - "version": "1.6.22", - "packageName": "remark-mdx", - "hash": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==" - } - }, - "npm:@types/mime": { - "type": "npm", - "name": "npm:@types/mime", - "data": { - "version": "2.0.1", - "packageName": "@types/mime", - "hash": "sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw==" - } - }, - "npm:esbuild-linux-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-64", - "hash": "sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==" - } - }, - "npm:text-extensions": { - "type": "npm", - "name": "npm:text-extensions", - "data": { - "version": "1.9.0", - "packageName": "text-extensions", - "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" - } - }, - "npm:y18n@3.2.2": { - "type": "npm", - "name": "npm:y18n@3.2.2", - "data": { - "version": "3.2.2", - "packageName": "y18n", - "hash": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" - } - }, - "npm:@sigstore/tuf": { - "type": "npm", - "name": "npm:@sigstore/tuf", - "data": { - "version": "1.0.3", - "packageName": "@sigstore/tuf", - "hash": "sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==" - } - }, - "npm:@babel/plugin-transform-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-property-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-unicode-property-regex", - "hash": "sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==" - } - }, - "npm:string-length@5.0.1": { - "type": "npm", - "name": "npm:string-length@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "string-length", - "hash": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==" - } - }, - "npm:@octokit/types@7.5.0": { - "type": "npm", - "name": "npm:@octokit/types@7.5.0", - "data": { - "version": "7.5.0", - "packageName": "@octokit/types", - "hash": "sha512-aHm+olfIZjQpzoODpl+RCZzchKOrdSLJs+yfI7pMMcmB19Li6vidgx0DwUDO/Ic4Q3fq/lOjJORVCcLZefcrJw==" - } - }, - "npm:builtins@1.0.3": { - "type": "npm", - "name": "npm:builtins@1.0.3", - "data": { - "version": "1.0.3", - "packageName": "builtins", - "hash": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=" - } - }, - "npm:cssom@0.3.8": { - "type": "npm", - "name": "npm:cssom@0.3.8", - "data": { - "version": "0.3.8", - "packageName": "cssom", - "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - }, - "npm:@sigstore/protobuf-specs": { - "type": "npm", - "name": "npm:@sigstore/protobuf-specs", - "data": { - "version": "0.2.0", - "packageName": "@sigstore/protobuf-specs", - "hash": "sha512-8ZhZKAVfXjIspDWwm3D3Kvj0ddbJ0HqDZ/pOs5cx88HpT8mVsotFrg7H1UMnXOuDHz6Zykwxn4mxG3QLuN+RUg==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.3.2", - "packageName": "html-entities", - "hash": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==" - } - }, - "npm:strip-bom-string": { - "type": "npm", - "name": "npm:strip-bom-string", - "data": { - "version": "1.0.0", - "packageName": "strip-bom-string", - "hash": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" - } - }, - "npm:p-map-series": { - "type": "npm", - "name": "npm:p-map-series", - "data": { - "version": "2.1.0", - "packageName": "p-map-series", - "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" - } - }, - "npm:debug@3.2.6": { - "type": "npm", - "name": "npm:debug@3.2.6", - "data": { - "version": "3.2.6", - "packageName": "debug", - "hash": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==" - } - }, - "npm:mimic-fn@3.1.0": { - "type": "npm", - "name": "npm:mimic-fn@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "mimic-fn", - "hash": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==" - } - }, - "npm:css-what@5.0.1": { - "type": "npm", - "name": "npm:css-what@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "css-what", - "hash": "sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==" - } - }, - "npm:redent": { - "type": "npm", - "name": "npm:redent", - "data": { - "version": "3.0.0", - "packageName": "redent", - "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" - } - }, - "npm:remark-external-links": { - "type": "npm", - "name": "npm:remark-external-links", - "data": { - "version": "8.0.0", - "packageName": "remark-external-links", - "hash": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==" - } - }, - "npm:static-extend": { - "type": "npm", - "name": "npm:static-extend", - "data": { - "version": "0.1.2", - "packageName": "static-extend", - "hash": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=" - } - }, - "npm:get-lerna-packages": { - "type": "npm", - "name": "npm:get-lerna-packages", - "data": { - "version": "0.1.1", - "packageName": "get-lerna-packages", - "hash": "sha512-venxkvga57gOUZoTmXZlJ0zHc8cmvsx7Y0GTMcoEK/7OCEK3PLpG5gVTbUUMJaLxbzK13AWQdKPf1LSkuEfWqA==" - } - }, - "npm:fragment-cache": { - "type": "npm", - "name": "npm:fragment-cache", - "data": { - "version": "0.2.1", - "packageName": "fragment-cache", - "hash": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=" - } - }, - "npm:temp-dir": { - "type": "npm", - "name": "npm:temp-dir", - "data": { - "version": "1.0.0", - "packageName": "temp-dir", - "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" - } - }, - "npm:yauzl": { - "type": "npm", - "name": "npm:yauzl", - "data": { - "version": "2.10.0", - "packageName": "yauzl", - "hash": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=" - } - }, - "npm:@webassemblyjs/helper-api-error@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" - } - }, - "npm:npm-package-arg@11.0.1": { - "type": "npm", - "name": "npm:npm-package-arg@11.0.1", - "data": { - "version": "11.0.1", - "packageName": "npm-package-arg", - "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" - } - }, - "npm:jest-watcher": { - "type": "npm", - "name": "npm:jest-watcher", - "data": { - "version": "29.7.0", - "packageName": "jest-watcher", - "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" - } - }, - "npm:react-dom@16.14.0": { - "type": "npm", - "name": "npm:react-dom@16.14.0", - "data": { - "version": "16.14.0", - "packageName": "react-dom", - "hash": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==" - } - }, - "npm:@microsoft/applicationinsights-web": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-web", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-web", - "hash": "sha512-pf2zz/3mmGy1RoyaiLZwhHoE2mFZ+AWR3Zf7xPW7HjTG7dEE4BnovNyW3f9Eu6WWkcHUAHmS/ATzqvVlpB3W6A==" - } - }, - "npm:@colors/colors": { - "type": "npm", - "name": "npm:@colors/colors", - "data": { - "version": "1.5.0", - "packageName": "@colors/colors", - "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - } - }, - "npm:@octokit/plugin-rest-endpoint-methods": { - "type": "npm", - "name": "npm:@octokit/plugin-rest-endpoint-methods", - "data": { - "version": "5.16.2", - "packageName": "@octokit/plugin-rest-endpoint-methods", - "hash": "sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==" - } - }, - "npm:@rushstack/rig-package": { - "type": "npm", - "name": "npm:@rushstack/rig-package", - "data": { - "version": "0.3.15", - "packageName": "@rushstack/rig-package", - "hash": "sha512-jxVfvO5OnkRlYRhcVDZWvwiI2l4pv37HDJRtyg5HbD8Z/I8Xj32RICgrxS5xMeGGytobrg5S6OfPOHskg7Nw+A==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.23.2", - "packageName": "@babel/core", - "hash": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==" - } - }, - "npm:chalk@3.0.0": { - "type": "npm", - "name": "npm:chalk@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chalk", - "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" - } - }, - "npm:decompress-response": { - "type": "npm", - "name": "npm:decompress-response", - "data": { - "version": "6.0.0", - "packageName": "decompress-response", - "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "1.3.1", - "packageName": "which", - "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - } - }, - "npm:dns-txt": { - "type": "npm", - "name": "npm:dns-txt", - "data": { - "version": "2.0.2", - "packageName": "dns-txt", - "hash": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=" - } - }, - "npm:react-markdown": { - "type": "npm", - "name": "npm:react-markdown", - "data": { - "version": "4.3.1", - "packageName": "react-markdown", - "hash": "sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==" - } - }, - "npm:http-errors@1.6.3": { - "type": "npm", - "name": "npm:http-errors@1.6.3", - "data": { - "version": "1.6.3", - "packageName": "http-errors", - "hash": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=" - } - }, - "npm:chokidar@2.1.8": { - "type": "npm", - "name": "npm:chokidar@2.1.8", - "data": { - "version": "2.1.8", - "packageName": "chokidar", - "hash": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==" - } - }, - "npm:@storybook/core-common": { - "type": "npm", - "name": "npm:@storybook/core-common", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core-common", - "hash": "sha512-uits9o6qwHTPnjsNZP25f7hWmUBGRJ7FXtxxtEaNSmtiwk50KWxBaro7wt505lJ1Gb9vOhpNPhS7y3IxdsXNmQ==" - } - }, - "npm:is-reference": { - "type": "npm", - "name": "npm:is-reference", - "data": { - "version": "1.2.1", - "packageName": "is-reference", - "hash": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==" - } - }, - "npm:jsonfile@6.0.1": { - "type": "npm", - "name": "npm:jsonfile@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "jsonfile", - "hash": "sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==" - } - }, - "npm:@types/jju": { - "type": "npm", - "name": "npm:@types/jju", - "data": { - "version": "1.4.1", - "packageName": "@types/jju", - "hash": "sha512-LFt+YA7Lv2IZROMwokZKiPNORAV5N3huMs3IKnzlE430HWhWYZ8b+78HiwJXJJP1V2IEjinyJURuRJfGoaFSIA==" - } - }, - "npm:entities@4.5.0": { - "type": "npm", - "name": "npm:entities@4.5.0", - "data": { - "version": "4.5.0", - "packageName": "entities", - "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - } - }, - "npm:@nx/linter": { - "type": "npm", - "name": "npm:@nx/linter", - "data": { - "version": "16.10.0", - "packageName": "@nx/linter", - "hash": "sha512-G6XBfuMHNHoJDc4n2Gip4fsa9KssT91V5PF2Rd4hILkg4YU8B8mlmHN71stpzwbEyUJtyhyJc5SGgVLrSpRQew==" - } - }, - "npm:@types/responselike": { - "type": "npm", - "name": "npm:@types/responselike", - "data": { - "version": "1.0.0", - "packageName": "@types/responselike", - "hash": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==" - } - }, - "npm:esbuild-windows-arm64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-windows-arm64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-windows-arm64", - "hash": "sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==" - } - }, - "npm:jest-regex-util@26.0.0": { - "type": "npm", - "name": "npm:jest-regex-util@26.0.0", - "data": { - "version": "26.0.0", - "packageName": "jest-regex-util", - "hash": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" - } - }, - "npm:engine.io": { - "type": "npm", - "name": "npm:engine.io", - "data": { - "version": "6.2.1", - "packageName": "engine.io", - "hash": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==" - } - }, - "npm:@octokit/request@6.2.1": { - "type": "npm", - "name": "npm:@octokit/request@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "@octokit/request", - "hash": "sha512-gYKRCia3cpajRzDSU+3pt1q2OcuC6PK8PmFIyxZDWCzRXRSIBH8jXjFJ8ZceoygBIm0KsEUg4x1+XcYBz7dHPQ==" - } - }, - "npm:@storybook/core-events": { - "type": "npm", - "name": "npm:@storybook/core-events", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core-events", - "hash": "sha512-B1Ba6l5W7MeNclclqMMTMHgYgfdpB5SIhNCQFnzIz8blynzRhNFMdxvbAl6Je5G0S4xydYYd7Lno2kXQebs7HA==" - } - }, - "npm:form-data-encoder": { - "type": "npm", - "name": "npm:form-data-encoder", - "data": { - "version": "2.0.1", - "packageName": "form-data-encoder", - "hash": "sha512-Oy+P9w5mnO4TWXVgUiQvggNKPI9/ummcSt5usuIV6HkaLKigwzPpoenhEqmGmx3zHqm6ZLJ+CR/99N8JLinaEw==" - } - }, - "npm:spdx-license-ids": { - "type": "npm", - "name": "npm:spdx-license-ids", - "data": { - "version": "3.0.4", - "packageName": "spdx-license-ids", - "hash": "sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA==" - } - }, - "npm:ua-parser-js": { - "type": "npm", - "name": "npm:ua-parser-js", - "data": { - "version": "1.0.2", - "packageName": "ua-parser-js", - "hash": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==" - } - }, - "npm:utila": { - "type": "npm", - "name": "npm:utila", - "data": { - "version": "0.4.0", - "packageName": "utila", - "hash": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" - } - }, - "npm:xmlchars": { - "type": "npm", - "name": "npm:xmlchars", - "data": { - "version": "2.2.0", - "packageName": "xmlchars", - "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - } - }, - "npm:@types/d3-path": { - "type": "npm", - "name": "npm:@types/d3-path", - "data": { - "version": "1.0.9", - "packageName": "@types/d3-path", - "hash": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:glob@5.0.15": { - "type": "npm", - "name": "npm:glob@5.0.15", - "data": { - "version": "5.0.15", - "packageName": "glob", - "hash": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=" - } - }, - "npm:trough": { - "type": "npm", - "name": "npm:trough", - "data": { - "version": "1.0.5", - "packageName": "trough", - "hash": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" - } - }, - "npm:markdown-table": { - "type": "npm", - "name": "npm:markdown-table", - "data": { - "version": "2.0.0", - "packageName": "markdown-table", - "hash": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==" - } - }, - "npm:@actions/core": { - "type": "npm", - "name": "npm:@actions/core", - "data": { - "version": "1.9.1", - "packageName": "@actions/core", - "hash": "sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==" - } - }, - "npm:jsdoc-type-pratt-parser": { - "type": "npm", - "name": "npm:jsdoc-type-pratt-parser", - "data": { - "version": "3.1.0", - "packageName": "jsdoc-type-pratt-parser", - "hash": "sha512-MgtD0ZiCDk9B+eI73BextfRrVQl0oyzRG8B2BjORts6jbunj4ScKPcyXGTbB6eXL4y9TzxCm6hyeLq/2ASzNdw==" - } - }, - "npm:@types/testing-library__jest-dom": { - "type": "npm", - "name": "npm:@types/testing-library__jest-dom", - "data": { - "version": "5.9.5", - "packageName": "@types/testing-library__jest-dom", - "hash": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==" - } - }, - "npm:mdast-squeeze-paragraphs": { - "type": "npm", - "name": "npm:mdast-squeeze-paragraphs", - "data": { - "version": "4.0.0", - "packageName": "mdast-squeeze-paragraphs", - "hash": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==" - } - }, - "npm:nice-try": { - "type": "npm", - "name": "npm:nice-try", - "data": { - "version": "1.0.5", - "packageName": "nice-try", - "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - } - }, - "npm:simulant": { - "type": "npm", - "name": "npm:simulant", - "data": { - "version": "0.2.2", - "packageName": "simulant", - "hash": "sha1-8bzlJxK2p6DaON392n6DsgsdoB4=" - } - }, - "npm:external-editor": { - "type": "npm", - "name": "npm:external-editor", - "data": { - "version": "3.0.3", - "packageName": "external-editor", - "hash": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==" - } - }, - "npm:p-filter": { - "type": "npm", - "name": "npm:p-filter", - "data": { - "version": "2.1.0", - "packageName": "p-filter", - "hash": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==" - } - }, - "npm:react-custom-scrollbars": { - "type": "npm", - "name": "npm:react-custom-scrollbars", - "data": { - "version": "4.2.1", - "packageName": "react-custom-scrollbars", - "hash": "sha1-gw/ZUCkn6X6KeMIIaBOJmyqLZts=" - } - }, - "npm:use-isomorphic-layout-effect": { - "type": "npm", - "name": "npm:use-isomorphic-layout-effect", - "data": { - "version": "1.1.2", - "packageName": "use-isomorphic-layout-effect", - "hash": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==" - } - }, - "npm:xml2js@0.2.8": { - "type": "npm", - "name": "npm:xml2js@0.2.8", - "data": { - "version": "0.2.8", - "packageName": "xml2js", - "hash": "sha512-ZHZBIAO55GHCn2jBYByVPHvHS+o3j8/a/qmpEe6kxO3cTnTCWC3Htq9RYJ5G4XMwMMClD2QkXA9SNdPadLyn3Q==" - } - }, - "npm:trim-repeated@2.0.0": { - "type": "npm", - "name": "npm:trim-repeated@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "trim-repeated", - "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" - } - }, - "npm:pinkie-promise": { - "type": "npm", - "name": "npm:pinkie-promise", - "data": { - "version": "2.0.1", - "packageName": "pinkie-promise", - "hash": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=" - } - }, - "npm:schema-utils@0.3.0": { - "type": "npm", - "name": "npm:schema-utils@0.3.0", - "data": { - "version": "0.3.0", - "packageName": "schema-utils", - "hash": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=" - } - }, - "npm:normalize-package-data@5.0.0": { - "type": "npm", - "name": "npm:normalize-package-data@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "normalize-package-data", - "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "17.0.2", - "packageName": "react-is", - "hash": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - } - }, - "npm:promise.prototype.finally": { - "type": "npm", - "name": "npm:promise.prototype.finally", - "data": { - "version": "3.1.0", - "packageName": "promise.prototype.finally", - "hash": "sha512-7p/K2f6dI+dM8yjRQEGrTQs5hTQixUAdOGpMEA3+pVxpX5oHKRSKAXyLw9Q9HUWDTdwtoo39dSHGQtN90HcEwQ==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.20.3", - "packageName": "@types/babel__traverse", - "hash": "sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==" - } - }, - "npm:@cypress/mount-utils": { - "type": "npm", - "name": "npm:@cypress/mount-utils", - "data": { - "version": "1.0.2", - "packageName": "@cypress/mount-utils", - "hash": "sha512-Fn3fdTiyayHoy8Ol0RSu4MlBH2maQ2ZEXeEVKl/zHHXEQpld5HX3vdNLhK5YLij8cLynA4DxOT/nO9iEnIiOXw==" - } - }, - "npm:capture-stack-trace": { - "type": "npm", - "name": "npm:capture-stack-trace", - "data": { - "version": "1.0.1", - "packageName": "capture-stack-trace", - "hash": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "6.1.1", - "packageName": "emoji-regex", - "hash": "sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=" - } - }, - "npm:@nrwl/js": { - "type": "npm", - "name": "npm:@nrwl/js", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/js", - "hash": "sha512-asybPpyPrxLLDWWdYzFqbgubLmDKLEhoMz8x9MPOm3CH8v2vlIE6hD0JT19GdJArBPxRB33nhjtu8wmJGz5czw==" - } - }, - "npm:gulp-sourcemaps": { - "type": "npm", - "name": "npm:gulp-sourcemaps", - "data": { - "version": "2.6.5", - "packageName": "gulp-sourcemaps", - "hash": "sha512-SYLBRzPTew8T5Suh2U8jCSDKY+4NARua4aqjj8HOysBh2tSgT9u4jc1FYirAdPx1akUxxDeK++fqw6Jg0LkQRg==" - } - }, - "npm:hoek": { - "type": "npm", - "name": "npm:hoek", - "data": { - "version": "4.2.1", - "packageName": "hoek", - "hash": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==" - } - }, - "npm:jsonparse@1.2.0": { - "type": "npm", - "name": "npm:jsonparse@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "jsonparse", - "hash": "sha512-LkDEYtKnPFI9hQ/IURETe6F1dUH80cbRkaF6RaViSwoSNPwaxQpi6TgJGvJKyLQ2/9pQW+XCxK3hBoR44RAjkg==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:vfile-message@1.1.1": { - "type": "npm", - "name": "npm:vfile-message@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "vfile-message", - "hash": "sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==" - } - }, - "npm:pify@3.0.0": { - "type": "npm", - "name": "npm:pify@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pify", - "hash": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" - } - }, - "npm:read-cmd-shim": { - "type": "npm", - "name": "npm:read-cmd-shim", - "data": { - "version": "4.0.0", - "packageName": "read-cmd-shim", - "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" - } - }, - "npm:import-lazy@2.1.0": { - "type": "npm", - "name": "npm:import-lazy@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "import-lazy", - "hash": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" - } - }, - "npm:ignore-not-found-export-webpack-plugin": { - "type": "npm", - "name": "npm:ignore-not-found-export-webpack-plugin", - "data": { - "version": "1.0.2", - "packageName": "ignore-not-found-export-webpack-plugin", - "hash": "sha512-CeMqul+L7fEEc59NpQhzr5sh/LRjbMW4cYmMUJWdCm3dYyWF8Big6qea0YSBHQvajKfrnKTcARmwzd9rTp+50w==" - } - }, - "npm:v8flags@3.1.3": { - "type": "npm", - "name": "npm:v8flags@3.1.3", - "data": { - "version": "3.1.3", - "packageName": "v8flags", - "hash": "sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "npm:d3-array@2.12.1": { - "type": "npm", - "name": "npm:d3-array@2.12.1", - "data": { - "version": "2.12.1", - "packageName": "d3-array", - "hash": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==" - } - }, - "npm:truncate-utf8-bytes": { - "type": "npm", - "name": "npm:truncate-utf8-bytes", - "data": { - "version": "1.0.2", - "packageName": "truncate-utf8-bytes", - "hash": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==" - } - }, - "npm:undertaker": { - "type": "npm", - "name": "npm:undertaker", - "data": { - "version": "1.3.0", - "packageName": "undertaker", - "hash": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==" - } - }, - "npm:string-width@3.1.0": { - "type": "npm", - "name": "npm:string-width@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "string-width", - "hash": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==" - } - }, - "npm:universalify@1.0.0": { - "type": "npm", - "name": "npm:universalify@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "universalify", - "hash": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" - } - }, - "npm:sver-compat": { - "type": "npm", - "name": "npm:sver-compat", - "data": { - "version": "1.5.0", - "packageName": "sver-compat", - "hash": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=" - } - }, - "npm:@esbuild/linux-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-ig2P7GeG//zWlU0AggA3pV1h5gdix0MA3wgB+NsnBXViwiGgY77fuN9Wr5uoCrs2YzaYfogXgsWZbm+HGr09xg==" - } - }, - "npm:react-dom@18.2.0": { - "type": "npm", - "name": "npm:react-dom@18.2.0", - "data": { - "version": "18.2.0", - "packageName": "react-dom", - "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" - } - }, - "npm:@swc/core-darwin-arm64@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-darwin-arm64@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-darwin-arm64", - "hash": "sha512-/LxLjPat1LA9CXS7Cn2M4MIqwNOoDF4KjcikPkO08H54rd6WubhaJnr0sLDjms3adRr+pmcCL0yfsUBTX//85A==" - } - }, - "npm:d": { - "type": "npm", - "name": "npm:d", - "data": { - "version": "1.0.1", - "packageName": "d", - "hash": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.4", - "packageName": "end-of-stream", - "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - } - }, - "npm:@mdx-js/util": { - "type": "npm", - "name": "npm:@mdx-js/util", - "data": { - "version": "1.6.22", - "packageName": "@mdx-js/util", - "hash": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" - } - }, - "npm:koa": { - "type": "npm", - "name": "npm:koa", - "data": { - "version": "2.13.4", - "packageName": "koa", - "hash": "sha512-43zkIKubNbnrULWlHdN5h1g3SEKXOEzoAlRsHOTFpnlDu8JlAOZSMJBLULusuXRequboiwJcj5vtYXKB3k7+2g==" - } - }, - "npm:p-queue": { - "type": "npm", - "name": "npm:p-queue", - "data": { - "version": "6.6.2", - "packageName": "p-queue", - "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" - } - }, - "npm:istanbul-lib-coverage@2.0.5": { - "type": "npm", - "name": "npm:istanbul-lib-coverage@2.0.5", - "data": { - "version": "2.0.5", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:term-size": { - "type": "npm", - "name": "npm:term-size", - "data": { - "version": "2.1.1", - "packageName": "term-size", - "hash": "sha512-UqvQSch04R+69g4RDhrslmGvGL3ucDRX/U+snYW0Mab4uCAyKSndUksaoqlJ81QKSpRnIsuOYQCbC2ZWx2896A==" - } - }, - "npm:@babel/plugin-transform-async-to-generator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-to-generator", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.5.0", - "packageName": "tslib", - "hash": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - }, - "npm:array-find-index": { - "type": "npm", - "name": "npm:array-find-index", - "data": { - "version": "1.0.2", - "packageName": "array-find-index", - "hash": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" - } - }, - "npm:@types/tapable": { - "type": "npm", - "name": "npm:@types/tapable", - "data": { - "version": "1.0.6", - "packageName": "@types/tapable", - "hash": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:selenium-webdriver": { - "type": "npm", - "name": "npm:selenium-webdriver", - "data": { - "version": "4.3.1", - "packageName": "selenium-webdriver", - "hash": "sha512-TjH/ls1WKRQoFEHcqtn6UtwcLnA3yvx08v9cSSFYvyhp8hJWRtbe9ae2I8uXPisEZ2EaGKKoxBZ4EHv0BJM15g==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "13.3.2", - "packageName": "yargs", - "hash": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==" - } - }, - "npm:babel-plugin-named-exports-order": { - "type": "npm", - "name": "npm:babel-plugin-named-exports-order", - "data": { - "version": "0.0.2", - "packageName": "babel-plugin-named-exports-order", - "hash": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==" - } - }, - "npm:memfs-or-file-map-to-github-branch": { - "type": "npm", - "name": "npm:memfs-or-file-map-to-github-branch", - "data": { - "version": "1.2.1", - "packageName": "memfs-or-file-map-to-github-branch", - "hash": "sha512-I/hQzJ2a/pCGR8fkSQ9l5Yx+FQ4e7X6blNHyWBm2ojeFLT3GVzGkTj7xnyWpdclrr7Nq4dmx3xrvu70m3ypzAQ==" - } - }, - "npm:csstype": { - "type": "npm", - "name": "npm:csstype", - "data": { - "version": "3.1.2", - "packageName": "csstype", - "hash": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - } - }, - "npm:@babel/plugin-transform-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-property-in-object", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-private-property-in-object", - "hash": "sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==" - } - }, - "npm:ajv@8.12.0": { - "type": "npm", - "name": "npm:ajv@8.12.0", - "data": { - "version": "8.12.0", - "packageName": "ajv", - "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" - } - }, - "npm:glob@10.3.3": { - "type": "npm", - "name": "npm:glob@10.3.3", - "data": { - "version": "10.3.3", - "packageName": "glob", - "hash": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==" - } - }, - "npm:@babel/helper-member-expression-to-functions": { - "type": "npm", - "name": "npm:@babel/helper-member-expression-to-functions", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" - } - }, - "npm:gitlab": { - "type": "npm", - "name": "npm:gitlab", - "data": { - "version": "10.2.1", - "packageName": "gitlab", - "hash": "sha512-z+DxRF1C9uayVbocs9aJkJz+kGy14TSm1noB/rAIEBbXOkOYbjKxyuqJzt+0zeFpXFdgA0yq6DVVbvM7HIfGwg==" - } - }, - "npm:ignore-loader": { - "type": "npm", - "name": "npm:ignore-loader", - "data": { - "version": "0.1.2", - "packageName": "ignore-loader", - "hash": "sha512-yOJQEKrNwoYqrWLS4DcnzM7SEQhRKis5mB+LdKKh4cPmGYlLPR0ozRzHV5jmEk2IxptqJNQA5Cc0gw8Fj12bXA==" - } - }, - "npm:@webassemblyjs/wast-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-parser", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wast-parser", - "hash": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:@npmcli/move-file": { - "type": "npm", - "name": "npm:@npmcli/move-file", - "data": { - "version": "1.0.1", - "packageName": "@npmcli/move-file", - "hash": "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" - } - }, - "npm:collection-map": { - "type": "npm", - "name": "npm:collection-map", - "data": { - "version": "1.0.0", - "packageName": "collection-map", - "hash": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=" - } - }, - "npm:find-replace": { - "type": "npm", - "name": "npm:find-replace", - "data": { - "version": "3.0.0", - "packageName": "find-replace", - "hash": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==" - } - }, - "npm:ajv-keywords@5.1.0": { - "type": "npm", - "name": "npm:ajv-keywords@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "ajv-keywords", - "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - } - }, - "npm:diff@3.5.0": { - "type": "npm", - "name": "npm:diff@3.5.0", - "data": { - "version": "3.5.0", - "packageName": "diff", - "hash": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" - } - }, - "npm:@types/through": { - "type": "npm", - "name": "npm:@types/through", - "data": { - "version": "0.0.30", - "packageName": "@types/through", - "hash": "sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==" - } - }, - "npm:foreach": { - "type": "npm", - "name": "npm:foreach", - "data": { - "version": "2.0.5", - "packageName": "foreach", - "hash": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.1.1", - "packageName": "escalade", - "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.0.3", - "packageName": "keyv", - "hash": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==" - } - }, - "npm:lodash.pick": { - "type": "npm", - "name": "npm:lodash.pick", - "data": { - "version": "4.4.0", - "packageName": "lodash.pick", - "hash": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" - } - }, - "npm:@babel/core@7.12.9": { - "type": "npm", - "name": "npm:@babel/core@7.12.9", - "data": { - "version": "7.12.9", - "packageName": "@babel/core", - "hash": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==" - } - }, - "npm:@types/history": { - "type": "npm", - "name": "npm:@types/history", - "data": { - "version": "4.7.4", - "packageName": "@types/history", - "hash": "sha512-+o2igcuZA3xtOoFH56s+MCZVidwlJNcJID57DSCyawS2i910yG9vkwehCjJNZ6ImhCR5S9DbvIJKyYHcMyOfMw==" - } - }, - "npm:node-fetch@3.3.1": { - "type": "npm", - "name": "npm:node-fetch@3.3.1", - "data": { - "version": "3.3.1", - "packageName": "node-fetch", - "hash": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==" - } - }, - "npm:@types/component-emitter": { - "type": "npm", - "name": "npm:@types/component-emitter", - "data": { - "version": "1.2.11", - "packageName": "@types/component-emitter", - "hash": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==" - } - }, - "npm:file-type": { - "type": "npm", - "name": "npm:file-type", - "data": { - "version": "17.1.6", - "packageName": "file-type", - "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.4", - "packageName": "micromatch", - "hash": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - } - }, - "npm:copy-to": { - "type": "npm", - "name": "npm:copy-to", - "data": { - "version": "2.0.1", - "packageName": "copy-to", - "hash": "sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==" - } - }, - "npm:dayjs": { - "type": "npm", - "name": "npm:dayjs", - "data": { - "version": "1.11.0", - "packageName": "dayjs", - "hash": "sha512-JLC809s6Y948/FuCZPm5IX8rRhQwOiyMb2TfVVQEixG7P8Lm/gt5S7yoQZmC8x1UehI9Pb7sksEt4xx14m+7Ug==" - } - }, - "npm:npm-normalize-package-bin@3.0.1": { - "type": "npm", - "name": "npm:npm-normalize-package-bin@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" - } - }, - "npm:parse-github-url": { - "type": "npm", - "name": "npm:parse-github-url", - "data": { - "version": "1.0.2", - "packageName": "parse-github-url", - "hash": "sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==" - } - }, - "npm:read-yaml-file": { - "type": "npm", - "name": "npm:read-yaml-file", - "data": { - "version": "2.1.0", - "packageName": "read-yaml-file", - "hash": "sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==" - } - }, - "npm:readable-stream@3.6.0": { - "type": "npm", - "name": "npm:readable-stream@3.6.0", - "data": { - "version": "3.6.0", - "packageName": "readable-stream", - "hash": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" - } - }, - "npm:bs-logger": { - "type": "npm", - "name": "npm:bs-logger", - "data": { - "version": "0.2.6", - "packageName": "bs-logger", - "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" - } - }, - "npm:duplexify": { - "type": "npm", - "name": "npm:duplexify", - "data": { - "version": "3.7.1", - "packageName": "duplexify", - "hash": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==" - } - }, - "npm:resolve@1.15.1": { - "type": "npm", - "name": "npm:resolve@1.15.1", - "data": { - "version": "1.15.1", - "packageName": "resolve", - "hash": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==" - } - }, - "npm:rollup-plugin-transform-tagged-template": { - "type": "npm", - "name": "npm:rollup-plugin-transform-tagged-template", - "data": { - "version": "0.0.3", - "packageName": "rollup-plugin-transform-tagged-template", - "hash": "sha512-IY8JwVTZxwOqQU1B1lqBAfvj0PXgy60pe480mgfs5CCbwytBMQCSrG1eHnD1o8+JCl+5gHdKK5wNXnFngCHxkw==" - } - }, - "npm:ansi-colors@4.1.1": { - "type": "npm", - "name": "npm:ansi-colors@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "ansi-colors", - "hash": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.5.0", - "packageName": "esquery", - "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" - } - }, - "npm:init-package-json": { - "type": "npm", - "name": "npm:init-package-json", - "data": { - "version": "5.0.0", - "packageName": "init-package-json", - "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" - } - }, - "npm:remark-parse@8.0.3": { - "type": "npm", - "name": "npm:remark-parse@8.0.3", - "data": { - "version": "8.0.3", - "packageName": "remark-parse", - "hash": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==" - } - }, - "npm:hosted-git-info@3.0.8": { - "type": "npm", - "name": "npm:hosted-git-info@3.0.8", - "data": { - "version": "3.0.8", - "packageName": "hosted-git-info", - "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" - } - }, - "npm:string.prototype.padend": { - "type": "npm", - "name": "npm:string.prototype.padend", - "data": { - "version": "3.0.0", - "packageName": "string.prototype.padend", - "hash": "sha1-86rvfBcZ8XDF6rHDK/eA2W4h8vA=" - } - }, - "npm:strip-ansi@7.0.1": { - "type": "npm", - "name": "npm:strip-ansi@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "strip-ansi", - "hash": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.2.2", - "packageName": "uri-js", - "hash": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==" - } - }, - "npm:chainsaw": { - "type": "npm", - "name": "npm:chainsaw", - "data": { - "version": "0.1.0", - "packageName": "chainsaw", - "hash": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "npm:dateformat": { - "type": "npm", - "name": "npm:dateformat", - "data": { - "version": "3.0.3", - "packageName": "dateformat", - "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" - } - }, - "npm:lint-staged": { - "type": "npm", - "name": "npm:lint-staged", - "data": { - "version": "10.2.10", - "packageName": "lint-staged", - "hash": "sha512-dgelFaNH6puUGAcU+OVMgbfpKSerNYsPSn6+nlbRDjovL0KigpsVpCu0PFZG6BJxX8gnHJqaZlR9krZamQsb0w==" - } - }, - "npm:querystringify": { - "type": "npm", - "name": "npm:querystringify", - "data": { - "version": "2.2.0", - "packageName": "querystringify", - "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - } - }, - "npm:@types/react-addons-test-utils": { - "type": "npm", - "name": "npm:@types/react-addons-test-utils", - "data": { - "version": "0.14.18", - "packageName": "@types/react-addons-test-utils", - "hash": "sha1-g+EK8dvl7CU1vC3FNz17w7gv3uE=" - } - }, - "npm:replace-in-file": { - "type": "npm", - "name": "npm:replace-in-file", - "data": { - "version": "6.1.0", - "packageName": "replace-in-file", - "hash": "sha512-URzjyF3nucvejuY13HFd7O+Q6tFJRLKGHLYVvSh+LiZj3gFXzSYGnIkQflnJJulCAI2/RTZaZkpOtdVdW0EhQA==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:strip-eof": { - "type": "npm", - "name": "npm:strip-eof", - "data": { - "version": "1.0.0", - "packageName": "strip-eof", - "hash": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" - } - }, - "npm:bcrypt-pbkdf": { - "type": "npm", - "name": "npm:bcrypt-pbkdf", - "data": { - "version": "1.0.2", - "packageName": "bcrypt-pbkdf", - "hash": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=" - } - }, - "npm:crc32": { - "type": "npm", - "name": "npm:crc32", - "data": { - "version": "0.2.2", - "packageName": "crc32", - "hash": "sha1-etIg1v/c0Rn5/BJ6d3LKzqOQpLo=" - } - }, - "npm:invert-kv": { - "type": "npm", - "name": "npm:invert-kv", - "data": { - "version": "1.0.0", - "packageName": "invert-kv", - "hash": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" - } - }, - "npm:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:clipboard": { - "type": "npm", - "name": "npm:clipboard", - "data": { - "version": "2.0.4", - "packageName": "clipboard", - "hash": "sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==" - } - }, - "npm:dom-accessibility-api": { - "type": "npm", - "name": "npm:dom-accessibility-api", - "data": { - "version": "0.5.11", - "packageName": "dom-accessibility-api", - "hash": "sha512-7X6GvzjYf4yTdRKuCVScV+aA9Fvh5r8WzWrXBH9w82ZWB/eYDMGCnazoC/YAqAzUJWHzLOnZqr46K3iEyUhUvw==" - } - }, - "npm:bin-check": { - "type": "npm", - "name": "npm:bin-check", - "data": { - "version": "4.1.0", - "packageName": "bin-check", - "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" - } - }, - "npm:filename-reserved-regex": { - "type": "npm", - "name": "npm:filename-reserved-regex", - "data": { - "version": "2.0.0", - "packageName": "filename-reserved-regex", - "hash": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=" - } - }, - "npm:fsevents@2.1.3": { - "type": "npm", - "name": "npm:fsevents@2.1.3", - "data": { - "version": "2.1.3", - "packageName": "fsevents", - "hash": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==" - } - }, - "npm:lodash-es": { - "type": "npm", - "name": "npm:lodash-es", - "data": { - "version": "4.17.21", - "packageName": "lodash-es", - "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - } - }, - "npm:is-accessor-descriptor": { - "type": "npm", - "name": "npm:is-accessor-descriptor", - "data": { - "version": "1.0.0", - "packageName": "is-accessor-descriptor", - "hash": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" - } - }, - "npm:minipass-sized": { - "type": "npm", - "name": "npm:minipass-sized", - "data": { - "version": "1.0.3", - "packageName": "minipass-sized", - "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - } - }, - "npm:npm-registry-fetch": { - "type": "npm", - "name": "npm:npm-registry-fetch", - "data": { - "version": "14.0.5", - "packageName": "npm-registry-fetch", - "hash": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.1.2", - "packageName": "prelude-ls", - "hash": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - } - }, - "npm:request": { - "type": "npm", - "name": "npm:request", - "data": { - "version": "2.88.2", - "packageName": "request", - "hash": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.2.1", - "packageName": "tmp", - "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" - } - }, - "npm:@babel/plugin-transform-sticky-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-sticky-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==" - } - }, - "npm:array-ify": { - "type": "npm", - "name": "npm:array-ify", - "data": { - "version": "1.0.0", - "packageName": "array-ify", - "hash": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" - } - }, - "npm:react-codesandboxer": { - "type": "npm", - "name": "npm:react-codesandboxer", - "data": { - "version": "3.1.5", - "packageName": "react-codesandboxer", - "hash": "sha512-gao6ydAfVI9DlmxvXJb1poqWDZt4jCSi2DWvfUCLUBmJAxH8+DkoGtjrO3VJDjdwcCFvumWb+ztg3WxsvrsWJw==" - } - }, - "npm:update-notifier": { - "type": "npm", - "name": "npm:update-notifier", - "data": { - "version": "2.5.0", - "packageName": "update-notifier", - "hash": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==" - } - }, - "npm:url": { - "type": "npm", - "name": "npm:url", - "data": { - "version": "0.11.0", - "packageName": "url", - "hash": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=" - } - }, - "npm:@babel/plugin-transform-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-static-block", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-class-static-block", - "hash": "sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==" - } - }, - "npm:@types/pako": { - "type": "npm", - "name": "npm:@types/pako", - "data": { - "version": "1.0.4", - "packageName": "@types/pako", - "hash": "sha512-Z+5bJSm28EXBSUJEgx29ioWeEEHUh6TiMkZHDhLwjc9wVFH+ressbkmX6waUZc5R3Gobn4Qu5llGxaoflZ+yhA==" - } - }, - "npm:dom-helpers": { - "type": "npm", - "name": "npm:dom-helpers", - "data": { - "version": "5.1.3", - "packageName": "dom-helpers", - "hash": "sha512-nZD1OtwfWGRBWlpANxacBEZrEuLa16o1nh7YopFWeoF68Zt8GGEmzHu6Xv4F3XaFIC+YXtTLrzgqKxFgLEe4jw==" - } - }, - "npm:@babel/plugin-transform-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-chaining", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==" - } - }, - "npm:errno": { - "type": "npm", - "name": "npm:errno", - "data": { - "version": "0.1.8", - "packageName": "errno", - "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" - } - }, - "npm:bluebird": { - "type": "npm", - "name": "npm:bluebird", - "data": { - "version": "3.7.2", - "packageName": "bluebird", - "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - } - }, - "npm:file-loader": { - "type": "npm", - "name": "npm:file-loader", - "data": { - "version": "6.2.0", - "packageName": "file-loader", - "hash": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==" - } - }, - "npm:registry-url": { - "type": "npm", - "name": "npm:registry-url", - "data": { - "version": "3.1.0", - "packageName": "registry-url", - "hash": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=" - } - }, - "npm:@linaria/utils": { - "type": "npm", - "name": "npm:@linaria/utils", - "data": { - "version": "3.0.0-beta.20", - "packageName": "@linaria/utils", - "hash": "sha512-SKRC9dBApzu0kTksVtGZ7eJz1vMu7xew/JEAjQj6XTQDblzWpTPyKQHBOGXNkqXjIB8PwAqWfvKzKapzaOwQaQ==" - } - }, - "npm:random-seedable": { - "type": "npm", - "name": "npm:random-seedable", - "data": { - "version": "1.0.8", - "packageName": "random-seedable", - "hash": "sha512-f6gzvNhAnZBht1Prn0e/tpukUNhkANntFF42uIdWDPriyEATYaRpyH8A9bYaGecUB3AL+dXeYtBUggy18fe3rw==" - } - }, - "npm:@testing-library/react-hooks": { - "type": "npm", - "name": "npm:@testing-library/react-hooks", - "data": { - "version": "7.0.2", - "packageName": "@testing-library/react-hooks", - "hash": "sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==" - } - }, - "npm:cross-env": { - "type": "npm", - "name": "npm:cross-env", - "data": { - "version": "5.2.1", - "packageName": "cross-env", - "hash": "sha512-1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==" - } - }, - "npm:@storybook/html@6.5.15": { - "type": "npm", - "name": "npm:@storybook/html@6.5.15", - "data": { - "version": "6.5.15", - "packageName": "@storybook/html", - "hash": "sha512-SFjhq9VqZNpocSLJ94j/CK9sT4g+Qt3gMixQSuhSvvNDEt2tN8T7dy/vB2IwnjIrMBdbtQZO4UDcX6kZvy0g8A==" - } - }, - "npm:gulp-cli": { - "type": "npm", - "name": "npm:gulp-cli", - "data": { - "version": "2.2.0", - "packageName": "gulp-cli", - "hash": "sha512-rGs3bVYHdyJpLqR0TUBnlcZ1O5O++Zs4bA0ajm+zr3WFCfiSLjGwoCBqFs18wzN+ZxahT9DkOK5nDf26iDsWjA==" - } - }, - "npm:@xtuc/long": { - "type": "npm", - "name": "npm:@xtuc/long", - "data": { - "version": "4.2.2", - "packageName": "@xtuc/long", - "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - } - }, - "npm:ansicolors": { - "type": "npm", - "name": "npm:ansicolors", - "data": { - "version": "0.3.2", - "packageName": "ansicolors", - "hash": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.0", - "packageName": "fb-watchman", - "hash": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=" - } - }, - "npm:levn@0.3.0": { - "type": "npm", - "name": "npm:levn@0.3.0", - "data": { - "version": "0.3.0", - "packageName": "levn", - "hash": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=" - } - }, - "npm:html-escaper": { - "type": "npm", - "name": "npm:html-escaper", - "data": { - "version": "2.0.0", - "packageName": "html-escaper", - "hash": "sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==" - } - }, - "npm:dom-css": { - "type": "npm", - "name": "npm:dom-css", - "data": { - "version": "2.1.0", - "packageName": "dom-css", - "hash": "sha1-/bwtWgFdCj4YcuEUcrvQ57nmogI=" - } - }, - "npm:cliui@6.0.0": { - "type": "npm", - "name": "npm:cliui@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "cliui", - "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" - } - }, - "npm:lodash.flatten": { - "type": "npm", - "name": "npm:lodash.flatten", - "data": { - "version": "4.4.0", - "packageName": "lodash.flatten", - "hash": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" - } - }, - "npm:@jest/test-result": { - "type": "npm", - "name": "npm:@jest/test-result", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-result", - "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" - } - }, - "npm:@storybook/core": { - "type": "npm", - "name": "npm:@storybook/core", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core", - "hash": "sha512-T9TjLxbb5P/XvLEoj0dnbtexJa0V3pqCifRlIUNkTJO0nU3PdGLMcKMSyIYWjkthAJ9oBrajnodV0UveM/epTg==" - } - }, - "npm:eslint-plugin-deprecation": { - "type": "npm", - "name": "npm:eslint-plugin-deprecation", - "data": { - "version": "1.2.1", - "packageName": "eslint-plugin-deprecation", - "hash": "sha512-8KFAWPO3AvF0szxIh1ivRtHotd1fzxVOuNR3NI8dfCsQKgcxu9fAgEY+eTKvCRLAwwI8kaDDfImMt+498+EgRw==" - } - }, - "npm:babel-plugin-transform-react-remove-prop-types": { - "type": "npm", - "name": "npm:babel-plugin-transform-react-remove-prop-types", - "data": { - "version": "0.4.24", - "packageName": "babel-plugin-transform-react-remove-prop-types", - "hash": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" - } - }, - "npm:fela-dom@11.7.0": { - "type": "npm", - "name": "npm:fela-dom@11.7.0", - "data": { - "version": "11.7.0", - "packageName": "fela-dom", - "hash": "sha512-mYboADGGQc/EihhyPOs8Xo2aJ0cOQI4q3+aWQ11KPzaCAT3TTVdXuTslT5QeXoE6cT6nS77GvvrRzXb3U/gY6Q==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:@storybook/builder-webpack4": { - "type": "npm", - "name": "npm:@storybook/builder-webpack4", - "data": { - "version": "6.5.15", - "packageName": "@storybook/builder-webpack4", - "hash": "sha512-1ZkMECUUdiYplhlgyUF5fqW3XU7eWNDJbuPUguyDOeidgJ111WZzBcLuKj+SNrzdNNgXwROCWAFybiNnX33YHQ==" - } - }, - "npm:@babel/plugin-transform-react-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-react-jsx", - "hash": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==" - } - }, - "npm:create-error-class": { - "type": "npm", - "name": "npm:create-error-class", - "data": { - "version": "3.0.2", - "packageName": "create-error-class", - "hash": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=" - } - }, - "npm:p-all": { - "type": "npm", - "name": "npm:p-all", - "data": { - "version": "2.1.0", - "packageName": "p-all", - "hash": "sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==" - } - }, - "npm:retry@0.13.1": { - "type": "npm", - "name": "npm:retry@0.13.1", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:setprototypeof@1.1.0": { - "type": "npm", - "name": "npm:setprototypeof@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "setprototypeof", - "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - }, - "npm:sigstore": { - "type": "npm", - "name": "npm:sigstore", - "data": { - "version": "1.8.0", - "packageName": "sigstore", - "hash": "sha512-ogU8qtQ3VFBawRJ8wjsBEX/vIFeHuGs1fm4jZtjWQwjo8pfAt7T/rh+udlAN4+QUe0IzA8qRSc/YZ7dHP6kh+w==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - } - }, - "npm:unique-slug@4.0.0": { - "type": "npm", - "name": "npm:unique-slug@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "unique-slug", - "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" - } - }, - "npm:url-loader@4.1.1": { - "type": "npm", - "name": "npm:url-loader@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "url-loader", - "hash": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" - } - }, - "npm:add-px-to-style": { - "type": "npm", - "name": "npm:add-px-to-style", - "data": { - "version": "1.0.0", - "packageName": "add-px-to-style", - "hash": "sha1-0ME1RB+oAUqBN5BFMQlvZ/KPJjo=" - } - }, - "npm:@polka/url": { - "type": "npm", - "name": "npm:@polka/url", - "data": { - "version": "1.0.0-next.11", - "packageName": "@polka/url", - "hash": "sha512-3NsZsJIA/22P3QUyrEDNA2D133H4j224twJrdipXN38dpnIOzAbUDtOwkcJ5pXmn75w7LSQDjA4tO9dm1XlqlA==" - } - }, - "npm:hpack.js": { - "type": "npm", - "name": "npm:hpack.js", - "data": { - "version": "2.1.6", - "packageName": "hpack.js", - "hash": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=" - } - }, - "npm:flush-write-stream": { - "type": "npm", - "name": "npm:flush-write-stream", - "data": { - "version": "1.1.1", - "packageName": "flush-write-stream", - "hash": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==" - } - }, - "npm:minimatch@3.0.4": { - "type": "npm", - "name": "npm:minimatch@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "minimatch", - "hash": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" - } - }, - "npm:base": { - "type": "npm", - "name": "npm:base", - "data": { - "version": "0.11.2", - "packageName": "base", - "hash": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==" - } - }, - "npm:@microsoft/eslint-plugin-sdl": { - "type": "npm", - "name": "npm:@microsoft/eslint-plugin-sdl", - "data": { - "version": "0.1.9", - "packageName": "@microsoft/eslint-plugin-sdl", - "hash": "sha512-g3XwhU/p/N9yzNWHm8453qraT74LOyCHY39ntHq+zNRn4B0KxSvKh6iXqhnnOYTZBNgsxSpFcejBmdzO47N3oA==" - } - }, - "npm:@octokit/request": { - "type": "npm", - "name": "npm:@octokit/request", - "data": { - "version": "5.6.3", - "packageName": "@octokit/request", - "hash": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==" - } - }, - "npm:expect": { - "type": "npm", - "name": "npm:expect", - "data": { - "version": "29.7.0", - "packageName": "expect", - "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" - } - }, - "npm:path-root": { - "type": "npm", - "name": "npm:path-root", - "data": { - "version": "0.1.1", - "packageName": "path-root", - "hash": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=" - } - }, - "npm:handlebars": { - "type": "npm", - "name": "npm:handlebars", - "data": { - "version": "4.7.7", - "packageName": "handlebars", - "hash": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" - } - }, - "npm:prettyjson": { - "type": "npm", - "name": "npm:prettyjson", - "data": { - "version": "1.2.5", - "packageName": "prettyjson", - "hash": "sha512-rksPWtoZb2ZpT5OVgtmy0KHVM+Dca3iVwWY9ifwhcexfjebtgjg3wmrUt9PvJ59XIYBcknQeYHD8IAnVlh9lAw==" - } - }, - "npm:es6-iterator": { - "type": "npm", - "name": "npm:es6-iterator", - "data": { - "version": "2.0.3", - "packageName": "es6-iterator", - "hash": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=" - } - }, - "npm:@babel/plugin-transform-parameters": { - "type": "npm", - "name": "npm:@babel/plugin-transform-parameters", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==" - } - }, - "npm:core-js": { - "type": "npm", - "name": "npm:core-js", - "data": { - "version": "3.15.2", - "packageName": "core-js", - "hash": "sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q==" - } - }, - "npm:string.prototype.matchall": { - "type": "npm", - "name": "npm:string.prototype.matchall", - "data": { - "version": "4.0.6", - "packageName": "string.prototype.matchall", - "hash": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==" - } - }, - "npm:jest-matcher-utils@27.0.2": { - "type": "npm", - "name": "npm:jest-matcher-utils@27.0.2", - "data": { - "version": "27.0.2", - "packageName": "jest-matcher-utils", - "hash": "sha512-Qczi5xnTNjkhcIB0Yy75Txt+Ez51xdhOxsukN7awzq2auZQGPHcQrJ623PZj0ECDEMOk2soxWx05EXdXGd1CbA==" - } - }, - "npm:token-types": { - "type": "npm", - "name": "npm:token-types", - "data": { - "version": "5.0.1", - "packageName": "token-types", - "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" - } - }, - "npm:d3-shape": { - "type": "npm", - "name": "npm:d3-shape", - "data": { - "version": "1.3.7", - "packageName": "d3-shape", - "hash": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==" - } - }, - "npm:@types/npmlog": { - "type": "npm", - "name": "npm:@types/npmlog", - "data": { - "version": "4.1.2", - "packageName": "@types/npmlog", - "hash": "sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==" - } - }, - "npm:unique-filename@2.0.1": { - "type": "npm", - "name": "npm:unique-filename@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "unique-filename", - "hash": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" - } - }, - "npm:wbuf": { - "type": "npm", - "name": "npm:wbuf", - "data": { - "version": "1.7.3", - "packageName": "wbuf", - "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.2", - "packageName": "@jridgewell/source-map", - "hash": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==" - } - }, - "npm:dot-case@3.0.4": { - "type": "npm", - "name": "npm:dot-case@3.0.4", - "data": { - "version": "3.0.4", - "packageName": "dot-case", - "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" - } - }, - "npm:browserify-sign": { - "type": "npm", - "name": "npm:browserify-sign", - "data": { - "version": "4.0.4", - "packageName": "browserify-sign", - "hash": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=" - } - }, - "npm:@types/d3-dsv": { - "type": "npm", - "name": "npm:@types/d3-dsv", - "data": { - "version": "3.0.0", - "packageName": "@types/d3-dsv", - "hash": "sha512-o0/7RlMl9p5n6FQDptuJVMxDf/7EDEv2SYEO/CwdG2tr1hTfUVi0Iavkk2ax+VpaQ/1jVhpnj5rq1nj8vwhn2A==" - } - }, - "npm:@azure/core-lro": { - "type": "npm", - "name": "npm:@azure/core-lro", - "data": { - "version": "1.0.2", - "packageName": "@azure/core-lro", - "hash": "sha512-Yr0JD7GKryOmbcb5wHCQoQ4KCcH5QJWRNorofid+UvudLaxnbCfvKh/cUfQsGUqRjO9L/Bw4X7FP824DcHdMxw==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "7.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==" - } - }, - "npm:istanbul-lib-instrument@6.0.0": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==" - } - }, - "npm:esbuild-openbsd-64@0.14.51": { - "type": "npm", - "name": "npm:esbuild-openbsd-64@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-openbsd-64", - "hash": "sha512-7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==" - } - }, - "npm:get-stream@3.0.0": { - "type": "npm", - "name": "npm:get-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "get-stream", - "hash": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" - } - }, - "npm:@microsoft/applicationinsights-channel-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-channel-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-channel-js", - "hash": "sha512-jDBNKbCHsJgmpv0CKNhJ/uN9ZphvfGdb93Svk+R4LjO8L3apNNMbDDPxBvXXi0uigRmA1TBcmyBG4IRKjabGhw==" - } - }, - "npm:path-is-inside": { - "type": "npm", - "name": "npm:path-is-inside", - "data": { - "version": "1.0.2", - "packageName": "path-is-inside", - "hash": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" - } - }, - "npm:registry-auth-token": { - "type": "npm", - "name": "npm:registry-auth-token", - "data": { - "version": "3.4.0", - "packageName": "registry-auth-token", - "hash": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==" - } - }, - "npm:sshpk": { - "type": "npm", - "name": "npm:sshpk", - "data": { - "version": "1.17.0", - "packageName": "sshpk", - "hash": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==" - } - }, - "npm:x-default-browser": { - "type": "npm", - "name": "npm:x-default-browser", - "data": { - "version": "0.4.0", - "packageName": "x-default-browser", - "hash": "sha1-cM8NqF2nwKtcsPFaiX8jIqa91IE=" - } - }, - "npm:wildcard": { - "type": "npm", - "name": "npm:wildcard", - "data": { - "version": "2.0.0", - "packageName": "wildcard", - "hash": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" - } - }, - "npm:unfetch@3.1.2": { - "type": "npm", - "name": "npm:unfetch@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "unfetch", - "hash": "sha512-L0qrK7ZeAudGiKYw6nzFjnJ2D5WHblUBwmHIqtPS6oKUd+Hcpk7/hKsSmcHsTlpd1TbTNsiRBUKRq3bHLNIqIw==" - } - }, - "npm:xpath.js": { - "type": "npm", - "name": "npm:xpath.js", - "data": { - "version": "1.1.0", - "packageName": "xpath.js", - "hash": "sha512-jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ==" - } - }, - "npm:to-arraybuffer": { - "type": "npm", - "name": "npm:to-arraybuffer", - "data": { - "version": "1.0.1", - "packageName": "to-arraybuffer", - "hash": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" - } - }, - "npm:deepmerge": { - "type": "npm", - "name": "npm:deepmerge", - "data": { - "version": "4.2.2", - "packageName": "deepmerge", - "hash": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.3", - "packageName": "defaults", - "hash": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=" - } - }, - "npm:@types/d3-shape@1.3.8": { - "type": "npm", - "name": "npm:@types/d3-shape@1.3.8", - "data": { - "version": "1.3.8", - "packageName": "@types/d3-shape", - "hash": "sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==" - } - }, - "npm:async@1.5.2": { - "type": "npm", - "name": "npm:async@1.5.2", - "data": { - "version": "1.5.2", - "packageName": "async", - "hash": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" - } - }, - "npm:babel-plugin-istanbul": { - "type": "npm", - "name": "npm:babel-plugin-istanbul", - "data": { - "version": "6.1.1", - "packageName": "babel-plugin-istanbul", - "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" - } - }, - "npm:browserify-des": { - "type": "npm", - "name": "npm:browserify-des", - "data": { - "version": "1.0.2", - "packageName": "browserify-des", - "hash": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==" - } - }, - "npm:slash@5.1.0": { - "type": "npm", - "name": "npm:slash@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:vfile@2.3.0": { - "type": "npm", - "name": "npm:vfile@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "vfile", - "hash": "sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==" - } - }, - "npm:fancy-log": { - "type": "npm", - "name": "npm:fancy-log", - "data": { - "version": "1.3.3", - "packageName": "fancy-log", - "hash": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==" - } - }, - "npm:json5@1.0.2": { - "type": "npm", - "name": "npm:json5@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "json5", - "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" - } - }, - "npm:json-schema": { - "type": "npm", - "name": "npm:json-schema", - "data": { - "version": "0.4.0", - "packageName": "json-schema", - "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - } - }, - "npm:webidl-conversions@3.0.1": { - "type": "npm", - "name": "npm:webidl-conversions@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" - } - }, - "npm:just-debounce": { - "type": "npm", - "name": "npm:just-debounce", - "data": { - "version": "1.0.0", - "packageName": "just-debounce", - "hash": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=" - } - }, - "npm:@npmcli/git@2.0.3": { - "type": "npm", - "name": "npm:@npmcli/git@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "@npmcli/git", - "hash": "sha512-c/ODsV5ppjB12VDXKc6hzVNgg6ZJX/etILUn3WgF5NLAYBhQLJ3fBq6uB2jQD4OwqOzJdPT1/xA3Xh3aaWGk5w==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:node-cleanup": { - "type": "npm", - "name": "npm:node-cleanup", - "data": { - "version": "2.1.2", - "packageName": "node-cleanup", - "hash": "sha1-esGavSl+Caf3KnFUXZUbUX5N3iw=" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "4.0.0", - "packageName": "serialize-javascript", - "hash": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" - } - }, - "npm:@babel/plugin-transform-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-sets-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-unicode-sets-regex", - "hash": "sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==" - } - }, - "npm:@types/inquirer": { - "type": "npm", - "name": "npm:@types/inquirer", - "data": { - "version": "6.0.1", - "packageName": "@types/inquirer", - "hash": "sha512-O9rEHE9iBvYaFAGS0fAlDzqY/3CsOrRKzni4zwnAEce2JrHUEbXAce2Pwwe8ZGzmQkucwSXn1tSiKig37INgfA==" - } - }, - "npm:modify-values": { - "type": "npm", - "name": "npm:modify-values", - "data": { - "version": "1.0.1", - "packageName": "modify-values", - "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" - } - }, - "npm:@types/scheduler": { - "type": "npm", - "name": "npm:@types/scheduler", - "data": { - "version": "0.16.2", - "packageName": "@types/scheduler", - "hash": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" - } - }, - "npm:capture-exit": { - "type": "npm", - "name": "npm:capture-exit", - "data": { - "version": "2.0.0", - "packageName": "capture-exit", - "hash": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==" - } - }, - "npm:scheduler@0.19.1": { - "type": "npm", - "name": "npm:scheduler@0.19.1", - "data": { - "version": "0.19.1", - "packageName": "scheduler", - "hash": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==" - } - }, - "npm:tr46@1.0.1": { - "type": "npm", - "name": "npm:tr46@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "tr46", - "hash": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=" - } - }, - "npm:webpack-merge@4.2.2": { - "type": "npm", - "name": "npm:webpack-merge@4.2.2", - "data": { - "version": "4.2.2", - "packageName": "webpack-merge", - "hash": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==" - } - }, - "npm:find-up@1.1.2": { - "type": "npm", - "name": "npm:find-up@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "find-up", - "hash": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:@types/react-custom-scrollbars": { - "type": "npm", - "name": "npm:@types/react-custom-scrollbars", - "data": { - "version": "4.0.5", - "packageName": "@types/react-custom-scrollbars", - "hash": "sha512-Qdotjy9wbf9nrNRzGj0bFDlhYIvjMxwrxHR0V1zUSc2cqb74a8ujLWTfIQ6JBSUx+3hY74+tHgEOthRJLEMyKw==" - } - }, - "npm:brorand": { - "type": "npm", - "name": "npm:brorand", - "data": { - "version": "1.1.0", - "packageName": "brorand", - "hash": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - } - }, - "npm:@octokit/tsconfig": { - "type": "npm", - "name": "npm:@octokit/tsconfig", - "data": { - "version": "1.0.2", - "packageName": "@octokit/tsconfig", - "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" - } - }, - "npm:@rushstack/ts-command-line": { - "type": "npm", - "name": "npm:@rushstack/ts-command-line", - "data": { - "version": "4.12.3", - "packageName": "@rushstack/ts-command-line", - "hash": "sha512-Pdij22RotMXzI+HWHyYCvw0RMZhiP5a6Za/96XamZ1+mxmpSm4ujf8TROKxGAHySmR5A8iNVSlzhNMnUlFQE6g==" - } - }, - "npm:decamelize@4.0.0": { - "type": "npm", - "name": "npm:decamelize@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "decamelize", - "hash": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==" - } - }, - "npm:min-indent": { - "type": "npm", - "name": "npm:min-indent", - "data": { - "version": "1.0.0", - "packageName": "min-indent", - "hash": "sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY=" - } - }, - "npm:conventional-recommended-bump": { - "type": "npm", - "name": "npm:conventional-recommended-bump", - "data": { - "version": "7.0.1", - "packageName": "conventional-recommended-bump", - "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.2.0", - "packageName": "glob", - "hash": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==" - } - }, - "npm:react-hook-form": { - "type": "npm", - "name": "npm:react-hook-form", - "data": { - "version": "5.7.2", - "packageName": "react-hook-form", - "hash": "sha512-bJvY348vayIvEUmSK7Fvea/NgqbT2racA2IbnJz/aPlQ3GBtaTeDITH6rtCa6y++obZzG6E3Q8VuoXPir7QYUg==" - } - }, - "npm:es6-promise": { - "type": "npm", - "name": "npm:es6-promise", - "data": { - "version": "4.2.8", - "packageName": "es6-promise", - "hash": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.8.0", - "packageName": "ci-info", - "hash": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==" - } - }, - "npm:@storybook/addon-links": { - "type": "npm", - "name": "npm:@storybook/addon-links", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-links", - "hash": "sha512-L7Q3u/xEUuy1uPq8ttjDfvDj19Hr2Crq/Us0RfowfGAAzOb7fCoiUJDP37ADtRUlCYyuKM5V/nHxN8eGpWtugw==" - } - }, - "npm:estraverse@4.2.0": { - "type": "npm", - "name": "npm:estraverse@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "estraverse", - "hash": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" - } - }, - "npm:filename-reserved-regex@3.0.0": { - "type": "npm", - "name": "npm:filename-reserved-regex@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "filename-reserved-regex", - "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:isomorphic-unfetch@3.1.0": { - "type": "npm", - "name": "npm:isomorphic-unfetch@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "isomorphic-unfetch", - "hash": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" - } - }, - "npm:@babel/standalone": { - "type": "npm", - "name": "npm:@babel/standalone", - "data": { - "version": "7.23.2", - "packageName": "@babel/standalone", - "hash": "sha512-VJNw7OS26JvB6rE9XpbT6uQeQIEBWU5eeHGS4VR/+/4ZoKdLBXLcy66ZVJ/9IBkK1RMp8B0cohvhzdKWtJAGmg==" - } - }, - "npm:@jest/transform": { - "type": "npm", - "name": "npm:@jest/transform", - "data": { - "version": "29.7.0", - "packageName": "@jest/transform", - "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:immediate": { - "type": "npm", - "name": "npm:immediate", - "data": { - "version": "3.0.6", - "packageName": "immediate", - "hash": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" - } - }, - "npm:lodash.keys": { - "type": "npm", - "name": "npm:lodash.keys", - "data": { - "version": "4.2.0", - "packageName": "lodash.keys", - "hash": "sha1-oIYCrBLk+4P5H8H7ejYKTZujUgU=" - } - }, - "npm:readdirp@2.2.1": { - "type": "npm", - "name": "npm:readdirp@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "readdirp", - "hash": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==" - } - }, - "npm:karma-source-map-support": { - "type": "npm", - "name": "npm:karma-source-map-support", - "data": { - "version": "1.4.0", - "packageName": "karma-source-map-support", - "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" - } - }, - "npm:throttle-debounce": { - "type": "npm", - "name": "npm:throttle-debounce", - "data": { - "version": "3.0.1", - "packageName": "throttle-debounce", - "hash": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==" - } - }, - "npm:ts-toolbelt": { - "type": "npm", - "name": "npm:ts-toolbelt", - "data": { - "version": "9.6.0", - "packageName": "ts-toolbelt", - "hash": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.2.0", - "packageName": "acorn-walk", - "hash": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" - } - }, - "npm:infer-owner": { - "type": "npm", - "name": "npm:infer-owner", - "data": { - "version": "1.0.4", - "packageName": "infer-owner", - "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" - } - }, - "npm:is-object": { - "type": "npm", - "name": "npm:is-object", - "data": { - "version": "1.0.1", - "packageName": "is-object", - "hash": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=" - } - }, - "npm:filenamify": { - "type": "npm", - "name": "npm:filenamify", - "data": { - "version": "4.1.0", - "packageName": "filenamify", - "hash": "sha512-KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" - } - }, - "npm:caller-callsite": { - "type": "npm", - "name": "npm:caller-callsite", - "data": { - "version": "2.0.0", - "packageName": "caller-callsite", - "hash": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=" - } - }, - "npm:fstream": { - "type": "npm", - "name": "npm:fstream", - "data": { - "version": "1.0.12", - "packageName": "fstream", - "hash": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==" - } - }, - "npm:log-symbols@2.2.0": { - "type": "npm", - "name": "npm:log-symbols@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "log-symbols", - "hash": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" - } - }, - "npm:socket.io-parser": { - "type": "npm", - "name": "npm:socket.io-parser", - "data": { - "version": "4.0.5", - "packageName": "socket.io-parser", - "hash": "sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:co-body": { - "type": "npm", - "name": "npm:co-body", - "data": { - "version": "6.1.0", - "packageName": "co-body", - "hash": "sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==" - } - }, - "npm:webpack-cli": { - "type": "npm", - "name": "npm:webpack-cli", - "data": { - "version": "4.10.0", - "packageName": "webpack-cli", - "hash": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:@esbuild/darwin-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-tP+B5UuIbbFMj2hQaUr6EALlHOIOmlLM2FK7jeFBobPy2ERdohI4Ka6ZFjZ1ZYsrHE/hZimGuU90jusRE0pwDw==" - } - }, - "npm:@sindresorhus/is": { - "type": "npm", - "name": "npm:@sindresorhus/is", - "data": { - "version": "4.0.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==" - } - }, - "npm:char-regex": { - "type": "npm", - "name": "npm:char-regex", - "data": { - "version": "1.0.2", - "packageName": "char-regex", - "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - } - }, - "npm:@opentelemetry/api@1.0.0-rc.0": { - "type": "npm", - "name": "npm:@opentelemetry/api@1.0.0-rc.0", - "data": { - "version": "1.0.0-rc.0", - "packageName": "@opentelemetry/api", - "hash": "sha512-iXKByCMfrlO5S6Oh97BuM56tM2cIBB0XsL/vWF/AtJrJEKx4MC/Xdu0xDsGXMGcNWpqF7ujMsjjnp0+UHBwnDQ==" - } - }, - "npm:write-file-atomic@5.0.1": { - "type": "npm", - "name": "npm:write-file-atomic@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "write-file-atomic", - "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" - } - }, - "npm:is-plain-obj@3.0.0": { - "type": "npm", - "name": "npm:is-plain-obj@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:type-fest@3.11.0": { - "type": "npm", - "name": "npm:type-fest@3.11.0", - "data": { - "version": "3.11.0", - "packageName": "type-fest", - "hash": "sha512-JaPw5U9ixP0XcpUbQoVSbxSDcK/K4nww20C3kjm9yE6cDRRhptU28AH60VWf9ltXmCrIfIbtt9J+2OUk2Uqiaw==" - } - }, - "npm:array-unique": { - "type": "npm", - "name": "npm:array-unique", - "data": { - "version": "0.3.2", - "packageName": "array-unique", - "hash": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - } - }, - "npm:@storybook/addon-docs": { - "type": "npm", - "name": "npm:@storybook/addon-docs", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-docs", - "hash": "sha512-k3LAu+wVp6pNhfh6B1soCRl6+7sNTNxtqy6WTrIeVJVCGbXbyc5s7gQ48gJ4WAk6meoDEZbypiP4NK1El03YLg==" - } - }, - "npm:cipher-base": { - "type": "npm", - "name": "npm:cipher-base", - "data": { - "version": "1.0.4", - "packageName": "cipher-base", - "hash": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==" - } - }, - "npm:html-void-elements": { - "type": "npm", - "name": "npm:html-void-elements", - "data": { - "version": "1.0.5", - "packageName": "html-void-elements", - "hash": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" - } - }, - "npm:depd@2.0.0": { - "type": "npm", - "name": "npm:depd@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:@types/estree@0.0.39": { - "type": "npm", - "name": "npm:@types/estree@0.0.39", - "data": { - "version": "0.0.39", - "packageName": "@types/estree", - "hash": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" - } - }, - "npm:lodash.toarray": { - "type": "npm", - "name": "npm:lodash.toarray", - "data": { - "version": "4.4.0", - "packageName": "lodash.toarray", - "hash": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" - } - }, - "npm:@types/globby": { - "type": "npm", - "name": "npm:@types/globby", - "data": { - "version": "9.1.0", - "packageName": "@types/globby", - "hash": "sha512-9du/HCA71EBz7syHRnM4Q/u4Fbx3SyN/Uu+4Of9lyPX4A6Xi+A8VMxvx8j5/CMTfrae2Zwdwg0fAaKvKXfRbAw==" - } - }, - "npm:react-docgen-typescript": { - "type": "npm", - "name": "npm:react-docgen-typescript", - "data": { - "version": "2.2.2", - "packageName": "react-docgen-typescript", - "hash": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.17.4", - "packageName": "terser", - "hash": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==" - } - }, - "npm:from2": { - "type": "npm", - "name": "npm:from2", - "data": { - "version": "2.3.0", - "packageName": "from2", - "hash": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=" - } - }, - "npm:@babel/plugin-syntax-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-object-rest-spread", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-object-rest-spread", - "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - } - }, - "npm:fs-write-stream-atomic": { - "type": "npm", - "name": "npm:fs-write-stream-atomic", - "data": { - "version": "1.0.10", - "packageName": "fs-write-stream-atomic", - "hash": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=" - } - }, - "npm:global-dirs": { - "type": "npm", - "name": "npm:global-dirs", - "data": { - "version": "3.0.0", - "packageName": "global-dirs", - "hash": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==" - } - }, - "npm:fast-png": { - "type": "npm", - "name": "npm:fast-png", - "data": { - "version": "6.1.0", - "packageName": "fast-png", - "hash": "sha512-v8e/40RKZbE1mALigoqBOkYnemCVSMmVlGSz8fawZAZg5UQ9OZeR00L++CPvrhIGm2F6TxV5u9lbWD0oOJHcCw==" - } - }, - "npm:is-binary-path": { - "type": "npm", - "name": "npm:is-binary-path", - "data": { - "version": "2.1.0", - "packageName": "is-binary-path", - "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "1.0.2", - "packageName": "encodeurl", - "hash": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - } - }, - "npm:rw": { - "type": "npm", - "name": "npm:rw", - "data": { - "version": "1.3.3", - "packageName": "rw", - "hash": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" - } - }, - "npm:semver-truncate": { - "type": "npm", - "name": "npm:semver-truncate", - "data": { - "version": "3.0.0", - "packageName": "semver-truncate", - "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" - } - }, - "npm:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" - } - }, - "npm:gulp-babel": { - "type": "npm", - "name": "npm:gulp-babel", - "data": { - "version": "8.0.0", - "packageName": "gulp-babel", - "hash": "sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ==" - } - }, - "npm:react-lifecycles-compat": { - "type": "npm", - "name": "npm:react-lifecycles-compat", - "data": { - "version": "3.0.4", - "packageName": "react-lifecycles-compat", - "hash": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - } - }, - "npm:serialize-javascript@5.0.1": { - "type": "npm", - "name": "npm:serialize-javascript@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "serialize-javascript", - "hash": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==" - } - }, - "npm:p-locate@6.0.0": { - "type": "npm", - "name": "npm:p-locate@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "p-locate", - "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" - } - }, - "npm:source-map-url": { - "type": "npm", - "name": "npm:source-map-url", - "data": { - "version": "0.4.0", - "packageName": "source-map-url", - "hash": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" - } - }, - "npm:map-cache": { - "type": "npm", - "name": "npm:map-cache", - "data": { - "version": "0.2.2", - "packageName": "map-cache", - "hash": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" - } - }, - "npm:fs-monkey": { - "type": "npm", - "name": "npm:fs-monkey", - "data": { - "version": "1.0.3", - "packageName": "fs-monkey", - "hash": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" - } - }, - "npm:which-boxed-primitive": { - "type": "npm", - "name": "npm:which-boxed-primitive", - "data": { - "version": "1.0.2", - "packageName": "which-boxed-primitive", - "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" - } - }, - "npm:xdg-basedir": { - "type": "npm", - "name": "npm:xdg-basedir", - "data": { - "version": "3.0.0", - "packageName": "xdg-basedir", - "hash": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" - } - }, - "npm:memory-fs@0.5.0": { - "type": "npm", - "name": "npm:memory-fs@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "memory-fs", - "hash": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.10", - "packageName": "@types/json-schema", - "hash": "sha512-BLO9bBq59vW3fxCpD4o0N4U+DXsvwvIcl+jofw0frQo/GrBFC+/jRZj1E7kgp6dvTyNmA4y6JCV5Id/r3mNP5A==" - } - }, - "npm:@types/yargs@17.0.22": { - "type": "npm", - "name": "npm:@types/yargs@17.0.22", - "data": { - "version": "17.0.22", - "packageName": "@types/yargs", - "hash": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==" - } - }, - "npm:table-layout": { - "type": "npm", - "name": "npm:table-layout", - "data": { - "version": "1.0.2", - "packageName": "table-layout", - "hash": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==" - } - }, - "npm:strip-indent@1.0.1": { - "type": "npm", - "name": "npm:strip-indent@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "strip-indent", - "hash": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=" - } - }, - "npm:@babel/plugin-proposal-export-default-from": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-export-default-from", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-proposal-export-default-from", - "hash": "sha512-T8KZ5abXvKMjF6JcoXjgac3ElmXf0AWzJwi2O/42Jk+HmCky3D9+i1B7NPP1FblyceqTevKeV/9szeikFoaMDg==" - } - }, - "npm:buffer@4.9.1": { - "type": "npm", - "name": "npm:buffer@4.9.1", - "data": { - "version": "4.9.1", - "packageName": "buffer", - "hash": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=" - } - }, - "npm:@xmldom/xmldom": { - "type": "npm", - "name": "npm:@xmldom/xmldom", - "data": { - "version": "0.8.2", - "packageName": "@xmldom/xmldom", - "hash": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ==" - } - }, - "npm:schema-utils@4.0.0": { - "type": "npm", - "name": "npm:schema-utils@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "schema-utils", - "hash": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==" - } - }, - "npm:space-separated-tokens": { - "type": "npm", - "name": "npm:space-separated-tokens", - "data": { - "version": "1.1.4", - "packageName": "space-separated-tokens", - "hash": "sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.2", - "packageName": "anymatch", - "hash": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" - } - }, - "npm:untildify@2.1.0": { - "type": "npm", - "name": "npm:untildify@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "untildify", - "hash": "sha1-F+soB5h/dpUunASF/DEdBqgmouA=" - } - }, - "npm:array-includes": { - "type": "npm", - "name": "npm:array-includes", - "data": { - "version": "3.1.4", - "packageName": "array-includes", - "hash": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==" - } - }, - "npm:execa@5.0.0": { - "type": "npm", - "name": "npm:execa@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "execa", - "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" - } - }, - "npm:@swc/core-linux-x64-gnu@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-gnu@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-linux-x64-gnu", - "hash": "sha512-/vQSH7ZKOuT1It9GzpJ9UFnsOP/dQr1VLUrKQFBlHp9owIWNb2oUrZdNla+KhljCIIahh0JfQ08sycKeycCNzQ==" - } - }, - "npm:esbuild-windows-64": { - "type": "npm", - "name": "npm:esbuild-windows-64", - "data": { - "version": "0.14.51", - "packageName": "esbuild-windows-64", - "hash": "sha512-HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==" - } - }, - "npm:@babel/plugin-transform-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-generator-functions", - "data": { - "version": "7.23.2", - "packageName": "@babel/plugin-transform-async-generator-functions", - "hash": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==" - } - }, - "npm:git-remote-origin-url": { - "type": "npm", - "name": "npm:git-remote-origin-url", - "data": { - "version": "2.0.0", - "packageName": "git-remote-origin-url", - "hash": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=" - } - }, - "npm:is-path-cwd@3.0.0": { - "type": "npm", - "name": "npm:is-path-cwd@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-path-cwd", - "hash": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==" - } - }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.1.5", - "packageName": "object.values", - "hash": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==" - } - }, - "npm:universalify@2.0.0": { - "type": "npm", - "name": "npm:universalify@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "universalify", - "hash": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" - } - }, - "npm:@octokit/openapi-types@13.12.0": { - "type": "npm", - "name": "npm:@octokit/openapi-types@13.12.0", - "data": { - "version": "13.12.0", - "packageName": "@octokit/openapi-types", - "hash": "sha512-1QYzZrwnn3rTQE7ZoSxXrO8lhu0aIbac1c+qIPOPEaVXBWSaUyLV1x9yt4uDQOwmu6u5ywVS8OJgs+ErDLf6vQ==" - } - }, - "npm:@jest/types@25.5.0": { - "type": "npm", - "name": "npm:@jest/types@25.5.0", - "data": { - "version": "25.5.0", - "packageName": "@jest/types", - "hash": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==" - } - }, - "npm:is-unc-path": { - "type": "npm", - "name": "npm:is-unc-path", - "data": { - "version": "1.0.0", - "packageName": "is-unc-path", - "hash": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==" - } - }, - "npm:unist-util-remove-position@2.0.1": { - "type": "npm", - "name": "npm:unist-util-remove-position@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "unist-util-remove-position", - "hash": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==" - } - }, - "npm:lodash.sortby": { - "type": "npm", - "name": "npm:lodash.sortby", - "data": { - "version": "4.7.0", - "packageName": "lodash.sortby", - "hash": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" - } - }, - "npm:tapable@2.2.1": { - "type": "npm", - "name": "npm:tapable@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "tapable", - "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - } - }, - "npm:@azure/core-tracing": { - "type": "npm", - "name": "npm:@azure/core-tracing", - "data": { - "version": "1.0.0-preview.13", - "packageName": "@azure/core-tracing", - "hash": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==" - } - }, - "npm:entities@2.0.0": { - "type": "npm", - "name": "npm:entities@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "entities", - "hash": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.3", - "packageName": "deep-is", - "hash": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" - } - }, - "npm:unist-util-generated": { - "type": "npm", - "name": "npm:unist-util-generated", - "data": { - "version": "1.1.6", - "packageName": "unist-util-generated", - "hash": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" - } - }, - "npm:@microsoft/applicationinsights-dependencies-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-dependencies-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-dependencies-js", - "hash": "sha512-b/YTonnbghg9DOFsLg4zdbYPafW8fPIzV+nZxfPPpxjA1LGvPhZz/zVx9YYWJg2RBXjojLQoJxLf1ro5eNGVig==" - } - }, - "npm:rollup-plugin-filesize": { - "type": "npm", - "name": "npm:rollup-plugin-filesize", - "data": { - "version": "8.0.2", - "packageName": "rollup-plugin-filesize", - "hash": "sha512-PcOYHPvpRh2sYWLX/1XbaLcRZ//rqwihl9iBiJWWo39XiyQlWv5623XWoXM9PjYcxP1q+7L7hjmlqzNx4kptlw==" - } - }, - "npm:webpack-filter-warnings-plugin@1.2.1": { - "type": "npm", - "name": "npm:webpack-filter-warnings-plugin@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "webpack-filter-warnings-plugin", - "hash": "sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==" - } - }, - "npm:json-schema-traverse@0.4.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:lodash.mergewith": { - "type": "npm", - "name": "npm:lodash.mergewith", - "data": { - "version": "4.6.2", - "packageName": "lodash.mergewith", - "hash": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==" - } - }, - "npm:tabbable": { - "type": "npm", - "name": "npm:tabbable", - "data": { - "version": "5.2.0", - "packageName": "tabbable", - "hash": "sha512-0uyt8wbP0P3T4rrsfYg/5Rg3cIJ8Shl1RJ54QMqYxm1TLdWqJD1u6+RQjr2Lor3wmfT7JRHkirIwy99ydBsyPg==" - } - }, - "npm:node-libs-browser": { - "type": "npm", - "name": "npm:node-libs-browser", - "data": { - "version": "2.2.1", - "packageName": "node-libs-browser", - "hash": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==" - } - }, - "npm:nested-error-stacks": { - "type": "npm", - "name": "npm:nested-error-stacks", - "data": { - "version": "2.1.0", - "packageName": "nested-error-stacks", - "hash": "sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==" - } - }, - "npm:readable-stream@1.1.14": { - "type": "npm", - "name": "npm:readable-stream@1.1.14", - "data": { - "version": "1.1.14", - "packageName": "readable-stream", - "hash": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=" - } - }, - "npm:map-obj": { - "type": "npm", - "name": "npm:map-obj", - "data": { - "version": "1.0.1", - "packageName": "map-obj", - "hash": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:aws4": { - "type": "npm", - "name": "npm:aws4", - "data": { - "version": "1.8.0", - "packageName": "aws4", - "hash": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:growl": { - "type": "npm", - "name": "npm:growl", - "data": { - "version": "1.10.5", - "packageName": "growl", - "hash": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==" - } - }, - "npm:@types/chrome-remote-interface": { - "type": "npm", - "name": "npm:@types/chrome-remote-interface", - "data": { - "version": "0.30.0", - "packageName": "@types/chrome-remote-interface", - "hash": "sha512-j7LCipaiuft35hJqocb15a+zzL2/h3AaOnWlQin/SbVVj0i+I/dhgpJJmRsJFV6XtlkMyySI3WFOBvpYC7xhpg==" - } - }, - "npm:ansi-styles@2.2.1": { - "type": "npm", - "name": "npm:ansi-styles@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "ansi-styles", - "hash": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - } - }, - "npm:evp_bytestokey": { - "type": "npm", - "name": "npm:evp_bytestokey", - "data": { - "version": "1.0.3", - "packageName": "evp_bytestokey", - "hash": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==" - } - }, - "npm:@babel/plugin-transform-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-transform-json-strings", - "data": { - "version": "7.22.11", - "packageName": "@babel/plugin-transform-json-strings", - "hash": "sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "2.20.3", - "packageName": "commander", - "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:make-dir@2.1.0": { - "type": "npm", - "name": "npm:make-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-fetch-happen@8.0.9": { - "type": "npm", - "name": "npm:make-fetch-happen@8.0.9", - "data": { - "version": "8.0.9", - "packageName": "make-fetch-happen", - "hash": "sha512-uHa4gv/NIdm9cUvfOhYb57nxrCY08iyMRXru0jbpaH57Q3NCge/ypY7fOvgCr8tPyucKrGbVndKhjXE0IX0VfQ==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.3.0", - "packageName": "node-gyp-build", - "hash": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==" - } - }, - "npm:autoprefixer@9.8.6": { - "type": "npm", - "name": "npm:autoprefixer@9.8.6", - "data": { - "version": "9.8.6", - "packageName": "autoprefixer", - "hash": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==" - } - }, - "npm:react-select": { - "type": "npm", - "name": "npm:react-select", - "data": { - "version": "3.2.0", - "packageName": "react-select", - "hash": "sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==" - } - }, - "npm:require-main-filename": { - "type": "npm", - "name": "npm:require-main-filename", - "data": { - "version": "2.0.0", - "packageName": "require-main-filename", - "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - } - }, - "npm:type@2.0.0": { - "type": "npm", - "name": "npm:type@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "type", - "hash": "sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.19", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==" - } - }, - "npm:min-document": { - "type": "npm", - "name": "npm:min-document", - "data": { - "version": "2.19.0", - "packageName": "min-document", - "hash": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=" - } - }, - "npm:@babel/plugin-transform-for-of": { - "type": "npm", - "name": "npm:@babel/plugin-transform-for-of", - "data": { - "version": "7.22.15", - "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==" - } - }, - "npm:nopt@4.0.1": { - "type": "npm", - "name": "npm:nopt@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "nopt", - "hash": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=" - } - }, - "npm:chardet": { - "type": "npm", - "name": "npm:chardet", - "data": { - "version": "0.7.0", - "packageName": "chardet", - "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - } - }, - "npm:playwright-core": { - "type": "npm", - "name": "npm:playwright-core", - "data": { - "version": "1.27.1", - "packageName": "playwright-core", - "hash": "sha512-9EmeXDncC2Pmp/z+teoVYlvmPWUC6ejSSYZUln7YaP89Z6lpAaiaAnqroUt/BoLo8tn7WYShcfaCh+xofZa44Q==" - } - }, - "npm:@storybook/core-server": { - "type": "npm", - "name": "npm:@storybook/core-server", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core-server", - "hash": "sha512-m+pZwHhCjwryeqTptyyKHSbIjnnPGKoRSnkqLTOpKQf8llZMnNQWUFrn4fx6UDKzxFQ2st2+laV8O2QbMs8qwQ==" - } - }, - "npm:jsdom-global": { - "type": "npm", - "name": "npm:jsdom-global", - "data": { - "version": "3.0.2", - "packageName": "jsdom-global", - "hash": "sha1-a9KZwTsMRiay2iwDk81DhdYGrLk=" - } - }, - "npm:is-ssh": { - "type": "npm", - "name": "npm:is-ssh", - "data": { - "version": "1.4.0", - "packageName": "is-ssh", - "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" - } - }, - "npm:d3-selection": { - "type": "npm", - "name": "npm:d3-selection", - "data": { - "version": "1.3.0", - "packageName": "d3-selection", - "hash": "sha512-qgpUOg9tl5CirdqESUAu0t9MU/t3O9klYfGfyKsXEmhyxyzLpzpeh08gaxBUTQw1uXIOkr/30Ut2YRjSSxlmHA==" - } - }, - "npm:collect-v8-coverage": { - "type": "npm", - "name": "npm:collect-v8-coverage", - "data": { - "version": "1.0.1", - "packageName": "collect-v8-coverage", - "hash": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" - } - }, - "npm:postcss-modules-values": { - "type": "npm", - "name": "npm:postcss-modules-values", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - } - }, - "npm:repeating": { - "type": "npm", - "name": "npm:repeating", - "data": { - "version": "2.0.1", - "packageName": "repeating", - "hash": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=" - } - }, - "npm:@nrwl/devkit": { - "type": "npm", - "name": "npm:@nrwl/devkit", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/devkit", - "hash": "sha512-fRloARtsDQoQgQ7HKEy0RJiusg/HSygnmg4gX/0n/Z+SUS+4KoZzvHjXc6T5ZdEiSjvLypJ+HBM8dQzIcVACPQ==" - } - }, - "npm:react-dom": { - "type": "npm", - "name": "npm:react-dom", - "data": { - "version": "17.0.2", - "packageName": "react-dom", - "hash": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==" - } - }, - "npm:@emotion/stylis": { - "type": "npm", - "name": "npm:@emotion/stylis", - "data": { - "version": "0.8.5", - "packageName": "@emotion/stylis", - "hash": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" - } - }, - "npm:@babel/helper-function-name": { - "type": "npm", - "name": "npm:@babel/helper-function-name", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-function-name", - "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" - } - }, - "npm:pump@2.0.1": { - "type": "npm", - "name": "npm:pump@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "pump", - "hash": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==" - } - }, - "npm:timsort": { - "type": "npm", - "name": "npm:timsort", - "data": { - "version": "0.3.0", - "packageName": "timsort", - "hash": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" - } - }, - "npm:@storybook/client-logger": { - "type": "npm", - "name": "npm:@storybook/client-logger", - "data": { - "version": "6.5.15", - "packageName": "@storybook/client-logger", - "hash": "sha512-0uyxKvodq+FycGv6aUwC1wUR6suXf2+7ywMFAOlYolI4UvNj8NyU/5AfgKT5XnxYAgPmoCiAjOE700TrfHrosw==" - } - }, - "npm:yn": { - "type": "npm", - "name": "npm:yn", - "data": { - "version": "3.1.1", - "packageName": "yn", - "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" - } - }, - "npm:upath@1.1.2": { - "type": "npm", - "name": "npm:upath@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "upath", - "hash": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:gauge": { - "type": "npm", - "name": "npm:gauge", - "data": { - "version": "2.7.4", - "packageName": "gauge", - "hash": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=" - } - }, - "npm:@babel/plugin-syntax-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-chaining", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-chaining", - "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - } - }, - "npm:ansi-colors": { - "type": "npm", - "name": "npm:ansi-colors", - "data": { - "version": "1.1.0", - "packageName": "ansi-colors", - "hash": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==" - } - }, - "npm:find-babel-config": { - "type": "npm", - "name": "npm:find-babel-config", - "data": { - "version": "1.2.0", - "packageName": "find-babel-config", - "hash": "sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==" - } - }, - "npm:@linaria/core": { - "type": "npm", - "name": "npm:@linaria/core", - "data": { - "version": "3.0.0-beta.22", - "packageName": "@linaria/core", - "hash": "sha512-BPSecW8QmhQ0y+5cWXEja+MTmLsuo0T1PjqRlSWsmDgjJFFObqCnPEgbR1KNtQb3Msmx1/9q3dYKpA5Zk3g8KQ==" - } - }, - "npm:@babel/plugin-transform-arrow-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-arrow-functions", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==" - } - }, - "npm:pkg-up@4.0.0": { - "type": "npm", - "name": "npm:pkg-up@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "pkg-up", - "hash": "sha512-N4zdA4sfOe6yCv+ulPCmpnIBQ5I60xfhDr1otdBBhKte9QtEf3bhfrfkW7dTb+IQ0iEx4ZDzas0kc1o5rdWpYg==" - } - }, - "npm:rollup-plugin-terser": { - "type": "npm", - "name": "npm:rollup-plugin-terser", - "data": { - "version": "5.3.1", - "packageName": "rollup-plugin-terser", - "hash": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==" - } - }, - "npm:@babel/plugin-proposal-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-object-rest-spread", - "data": { - "version": "7.12.1", - "packageName": "@babel/plugin-proposal-object-rest-spread", - "hash": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==" - } - }, - "npm:gulp-util": { - "type": "npm", - "name": "npm:gulp-util", - "data": { - "version": "3.0.8", - "packageName": "gulp-util", - "hash": "sha512-q5oWPc12lwSFS9h/4VIjG+1NuNDlJ48ywV2JKItY4Ycc/n1fXJeYPVQsfu5ZrhQi7FGSDBalwUCLar/GyHXKGw==" - } - }, - "npm:resolve@1.19.0": { - "type": "npm", - "name": "npm:resolve@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "resolve", - "hash": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==" - } - }, - "npm:websocket-driver": { - "type": "npm", - "name": "npm:websocket-driver", - "data": { - "version": "0.7.4", - "packageName": "websocket-driver", - "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - } - }, - "npm:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.7.0", - "packageName": "socks", - "hash": "sha512-scnOe9y4VuiNUULJN72GrM26BNOjVsfPXI+j+98PkyEfsIXroa5ofyjT+FzGvn/xHs73U2JtoBYAVx9Hl4quSA==" - } - }, - "npm:object.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.5", - "packageName": "object.fromentries", - "hash": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.4.563", - "packageName": "electron-to-chromium", - "hash": "sha512-dg5gj5qOgfZNkPNeyKBZQAQitIQ/xwfIDmEQJHCbXaD9ebTZxwJXUsDYcBlAvZGZLi+/354l35J1wkmP6CqYaw==" - } - }, - "npm:@gulp-sourcemaps/identity-map": { - "type": "npm", - "name": "npm:@gulp-sourcemaps/identity-map", - "data": { - "version": "1.0.2", - "packageName": "@gulp-sourcemaps/identity-map", - "hash": "sha512-ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ==" - } - }, - "npm:@babel/plugin-transform-dotall-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dotall-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==" - } - }, - "npm:ci-info@2.0.0": { - "type": "npm", - "name": "npm:ci-info@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ci-info", - "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - } - }, - "npm:delegates": { - "type": "npm", - "name": "npm:delegates", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" - } - }, - "npm:is-absolute": { - "type": "npm", - "name": "npm:is-absolute", - "data": { - "version": "1.0.0", - "packageName": "is-absolute", - "hash": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==" - } - }, - "npm:vfile-location@2.0.6": { - "type": "npm", - "name": "npm:vfile-location@2.0.6", - "data": { - "version": "2.0.6", - "packageName": "vfile-location", - "hash": "sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==" - } - }, - "npm:@types/react-window": { - "type": "npm", - "name": "npm:@types/react-window", - "data": { - "version": "1.8.2", - "packageName": "@types/react-window", - "hash": "sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.23.0", - "packageName": "@babel/parser", - "hash": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" - } - }, - "npm:cosmiconfig@8.0.0": { - "type": "npm", - "name": "npm:cosmiconfig@8.0.0", - "data": { - "version": "8.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==" - } - }, - "npm:@babel/register": { - "type": "npm", - "name": "npm:@babel/register", - "data": { - "version": "7.22.15", - "packageName": "@babel/register", - "hash": "sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==" - } - }, - "npm:domain-browser@1.2.0": { - "type": "npm", - "name": "npm:domain-browser@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "domain-browser", - "hash": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" - } - }, - "npm:@gar/promisify": { - "type": "npm", - "name": "npm:@gar/promisify", - "data": { - "version": "1.1.3", - "packageName": "@gar/promisify", - "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" - } - }, - "npm:find-yarn-workspace-root@1.2.1": { - "type": "npm", - "name": "npm:find-yarn-workspace-root@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "find-yarn-workspace-root", - "hash": "sha512-dVtfb0WuQG+8Ag2uWkbG79hOUzEsRrhBzgfn86g2sJPkzmcpGdghbNTfUKGTxymFrY/tLIodDzLoW9nOJ4FY8Q==" - } - }, - "npm:cache-content-type": { - "type": "npm", - "name": "npm:cache-content-type", - "data": { - "version": "1.0.1", - "packageName": "cache-content-type", - "hash": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==" - } - }, - "npm:glob@9.3.5": { - "type": "npm", - "name": "npm:glob@9.3.5", - "data": { - "version": "9.3.5", - "packageName": "glob", - "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" - } - }, - "npm:@octokit/auth-token@3.0.1": { - "type": "npm", - "name": "npm:@octokit/auth-token@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "@octokit/auth-token", - "hash": "sha512-/USkK4cioY209wXRpund6HZzHo9GmjakpV9ycOkpMcMxMk7QVcVFVyCMtzvXYiHsB2crgDgrtNYSELYFBXhhaA==" - } - }, - "npm:@azure/core-client": { - "type": "npm", - "name": "npm:@azure/core-client", - "data": { - "version": "1.1.1", - "packageName": "@azure/core-client", - "hash": "sha512-SHW4H4I9IxzqaadHCUJLQPTD5jLfBOVNkWw1TSEZr4SGk0AzZzA3BG5q8Pr9L6WDK3MKCXdi6f9IViGYKGXjzw==" - } - }, - "npm:@sigstore/bundle": { - "type": "npm", - "name": "npm:@sigstore/bundle", - "data": { - "version": "1.0.0", - "packageName": "@sigstore/bundle", - "hash": "sha512-yLvrWDOh6uMOUlFCTJIZEnwOT9Xte7NPXUqVexEKGSF5XtBAuSg5du0kn3dRR0p47a4ah10Y0mNt8+uyeQXrBQ==" - } - }, - "npm:inline-style-expand-shorthand": { - "type": "npm", - "name": "npm:inline-style-expand-shorthand", - "data": { - "version": "1.2.0", - "packageName": "inline-style-expand-shorthand", - "hash": "sha512-YdteDMlG1StHeEXF7opaVfPMCIVO8B4TPjE6kZLwdhZdgjH3Q7lxwSe+89sMhdPN77F3quOYhBbqBE0+KXuHpA==" - } - }, - "npm:@babel/helper-hoist-variables": { - "type": "npm", - "name": "npm:@babel/helper-hoist-variables", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-hoist-variables", - "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" - } - }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "4.0.0", - "packageName": "log-update", - "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" - } - }, - "npm:mdast-util-to-hast": { - "type": "npm", - "name": "npm:mdast-util-to-hast", - "data": { - "version": "10.0.1", - "packageName": "mdast-util-to-hast", - "hash": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - } - }, - "npm:cosmiconfig@6.0.0": { - "type": "npm", - "name": "npm:cosmiconfig@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" - } - }, - "npm:@types/uglify-js": { - "type": "npm", - "name": "npm:@types/uglify-js", - "data": { - "version": "3.17.1", - "packageName": "@types/uglify-js", - "hash": "sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==" - } - }, - "npm:adal-node": { - "type": "npm", - "name": "npm:adal-node", - "data": { - "version": "0.2.3", - "packageName": "adal-node", - "hash": "sha512-gMKr8RuYEYvsj7jyfCv/4BfKToQThz20SP71N3AtFn3ia3yAR8Qt2T3aVQhuJzunWs2b38ZsQV0qsZPdwZr7VQ==" - } - }, - "npm:babel-plugin-add-react-displayname": { - "type": "npm", - "name": "npm:babel-plugin-add-react-displayname", - "data": { - "version": "0.0.5", - "packageName": "babel-plugin-add-react-displayname", - "hash": "sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=" - } - }, - "npm:copy-webpack-plugin": { - "type": "npm", - "name": "npm:copy-webpack-plugin", - "data": { - "version": "8.1.0", - "packageName": "copy-webpack-plugin", - "hash": "sha512-Soiq8kXI2AZkpw3dSp18u6oU2JonC7UKv3UdXsKOmT1A5QT46ku9+6c0Qy29JDbSavQJNN1/eKGpd3QNw+cZWg==" - } - }, - "npm:has-flag@4.0.0": { - "type": "npm", - "name": "npm:has-flag@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:@octokit/plugin-enterprise-rest": { - "type": "npm", - "name": "npm:@octokit/plugin-enterprise-rest", - "data": { - "version": "6.0.1", - "packageName": "@octokit/plugin-enterprise-rest", - "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" - } - }, - "npm:is-binary-path@1.0.1": { - "type": "npm", - "name": "npm:is-binary-path@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "is-binary-path", - "hash": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=" - } - }, - "npm:gauge@4.0.4": { - "type": "npm", - "name": "npm:gauge@4.0.4", - "data": { - "version": "4.0.4", - "packageName": "gauge", - "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" - } - }, - "npm:readdirp@3.2.0": { - "type": "npm", - "name": "npm:readdirp@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "readdirp", - "hash": "sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:@linaria/preeval": { - "type": "npm", - "name": "npm:@linaria/preeval", - "data": { - "version": "3.0.0-beta.22", - "packageName": "@linaria/preeval", - "hash": "sha512-/PS86ljXBu3HVLTRd2sn/5wxD4ywnlTUGZPMMFlZDGuBCHlMZehD7xE6VbX6t/JZtOAylU8vDi2RYum96evHAw==" - } - }, - "npm:cmd-shim": { - "type": "npm", - "name": "npm:cmd-shim", - "data": { - "version": "6.0.1", - "packageName": "cmd-shim", - "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" - } - }, - "npm:concat-stream@2.0.0": { - "type": "npm", - "name": "npm:concat-stream@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "concat-stream", - "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" - } - }, - "npm:del@5.1.0": { - "type": "npm", - "name": "npm:del@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "del", - "hash": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "2.6.0", - "packageName": "mime", - "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - }, - "npm:@jest/source-map": { - "type": "npm", - "name": "npm:@jest/source-map", - "data": { - "version": "29.6.3", - "packageName": "@jest/source-map", - "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001553", - "packageName": "caniuse-lite", - "hash": "sha512-N0ttd6TrFfuqKNi+pMgWJTb9qrdJu4JSpgPFLe/lrD19ugC6fZgF0pUewRowDwzdDnb9V41mFcdlYgl/PyKf4A==" - } - }, - "npm:npm-normalize-package-bin": { - "type": "npm", - "name": "npm:npm-normalize-package-bin", - "data": { - "version": "1.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" - } - }, - "npm:@storybook/core-client": { - "type": "npm", - "name": "npm:@storybook/core-client", - "data": { - "version": "6.5.15", - "packageName": "@storybook/core-client", - "hash": "sha512-i9t4WONy2MxJwLI1FIp5ck7b52EXyJfALnxUn4O/3GTkw09J0NOKi2DPjefUsi7IB5MzFpDjDH9vw/XiTM+OZw==" - } - }, - "npm:read-pkg": { - "type": "npm", - "name": "npm:read-pkg", - "data": { - "version": "3.0.0", - "packageName": "read-pkg", - "hash": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=" - } - }, - "npm:css-in-js-utils": { - "type": "npm", - "name": "npm:css-in-js-utils", - "data": { - "version": "3.0.0", - "packageName": "css-in-js-utils", - "hash": "sha512-FSdC7hZIeSmEPANOZB/VHHeaYh+MiNvqLRP7MWVck6MQs2B5KHH3XmMU9Asb/6BdwDp+JTt1q+cGgSBCuFU1GQ==" - } - }, - "npm:shebang-command@2.0.0": { - "type": "npm", - "name": "npm:shebang-command@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "npm:telejson": { - "type": "npm", - "name": "npm:telejson", - "data": { - "version": "6.0.8", - "packageName": "telejson", - "hash": "sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "6.0.1", - "packageName": "file-entry-cache", - "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - } - }, - "npm:retry@0.10.1": { - "type": "npm", - "name": "npm:retry@0.10.1", - "data": { - "version": "0.10.1", - "packageName": "retry", - "hash": "sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q=" - } - }, - "npm:to-no-case": { - "type": "npm", - "name": "npm:to-no-case", - "data": { - "version": "1.0.2", - "packageName": "to-no-case", - "hash": "sha1-xyKQcWTvaxeBMsjmmTAhLRtKoWo=" - } - }, - "npm:type-fest@0.4.1": { - "type": "npm", - "name": "npm:type-fest@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "type-fest", - "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" - } - }, - "npm:async-retry": { - "type": "npm", - "name": "npm:async-retry", - "data": { - "version": "1.2.3", - "packageName": "async-retry", - "hash": "sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==" - } - }, - "npm:gitconfiglocal": { - "type": "npm", - "name": "npm:gitconfiglocal", - "data": { - "version": "1.0.0", - "packageName": "gitconfiglocal", - "hash": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=" - } - }, - "npm:@babel/plugin-syntax-flow": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-flow", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-flow", - "hash": "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q==" - } - }, - "npm:@lerna/child-process": { - "type": "npm", - "name": "npm:@lerna/child-process", - "data": { - "version": "7.1.3", - "packageName": "@lerna/child-process", - "hash": "sha512-ZXHo30G5Ia/RCWKVyBm+3kAe/liWy7KaRF+CPWZpxYo+ysFPBIJ/7XZlGMzmq8fQaMsPj1z61q4wyqeAlUwuvQ==" - } - }, - "npm:@types/cacheable-request": { - "type": "npm", - "name": "npm:@types/cacheable-request", - "data": { - "version": "6.0.2", - "packageName": "@types/cacheable-request", - "hash": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==" - } - }, - "npm:@types/esquery": { - "type": "npm", - "name": "npm:@types/esquery", - "data": { - "version": "1.5.0", - "packageName": "@types/esquery", - "hash": "sha512-MNQ5gCt3j1idWHlj/dEF+WPS1kl6Woe0Agzwy96JvrwDQdDadqeIBhY7mUca51CCUzxf7BsnXzcyKi6ENpEtmQ==" - } - }, - "npm:backfill-hasher": { - "type": "npm", - "name": "npm:backfill-hasher", - "data": { - "version": "6.4.3", - "packageName": "backfill-hasher", - "hash": "sha512-Btijbf5mC96bbFervlUMf5I14V9/bPPUiEFhWYO+XRyxlfbTejpvqzTpCDKEyCR/wMlt3AViAjZ3/UOZ6cMGsg==" - } - }, - "npm:html-element-map": { - "type": "npm", - "name": "npm:html-element-map", - "data": { - "version": "1.0.1", - "packageName": "html-element-map", - "hash": "sha512-BZSfdEm6n706/lBfXKWa4frZRZcT5k1cOusw95ijZsHlI+GdgY0v95h6IzO3iIDf2ROwq570YTwqNPqHcNMozw==" - } - }, - "npm:koa-static": { - "type": "npm", - "name": "npm:koa-static", - "data": { - "version": "5.0.0", - "packageName": "koa-static", - "hash": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - } - }, - "npm:rtl-css-js": { - "type": "npm", - "name": "npm:rtl-css-js", - "data": { - "version": "1.16.1", - "packageName": "rtl-css-js", - "hash": "sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==" - } - }, - "npm:lodash._basetostring": { - "type": "npm", - "name": "npm:lodash._basetostring", - "data": { - "version": "3.0.1", - "packageName": "lodash._basetostring", - "hash": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=" - } - }, - "npm:browserify-rsa": { - "type": "npm", - "name": "npm:browserify-rsa", - "data": { - "version": "4.0.1", - "packageName": "browserify-rsa", - "hash": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=" - } - }, - "npm:common-path-prefix": { - "type": "npm", - "name": "npm:common-path-prefix", - "data": { - "version": "3.0.0", - "packageName": "common-path-prefix", - "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - } - }, - "npm:callsites@2.0.0": { - "type": "npm", - "name": "npm:callsites@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "callsites", - "hash": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" - } - }, - "npm:@cypress/xvfb": { - "type": "npm", - "name": "npm:@cypress/xvfb", - "data": { - "version": "1.2.4", - "packageName": "@cypress/xvfb", - "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" - } - }, - "npm:filesize@3.6.1": { - "type": "npm", - "name": "npm:filesize@3.6.1", - "data": { - "version": "3.6.1", - "packageName": "filesize", - "hash": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:ky": { - "type": "npm", - "name": "npm:ky", - "data": { - "version": "0.12.0", - "packageName": "ky", - "hash": "sha512-t9b7v3V2fGwAcQnnDDQwKQGF55eWrf4pwi1RN08Fy8b/9GEwV7Ea0xQiaSW6ZbeghBHIwl8kgnla4vVo9seepQ==" - } - }, - "npm:@istanbuljs/schema": { - "type": "npm", - "name": "npm:@istanbuljs/schema", - "data": { - "version": "0.1.2", - "packageName": "@istanbuljs/schema", - "hash": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==" - } - }, - "npm:lower-case": { - "type": "npm", - "name": "npm:lower-case", - "data": { - "version": "1.1.4", - "packageName": "lower-case", - "hash": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" - } - }, - "npm:normalize-path@2.1.1": { - "type": "npm", - "name": "npm:normalize-path@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "normalize-path", - "hash": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=" - } - }, - "npm:eslint-config-airbnb": { - "type": "npm", - "name": "npm:eslint-config-airbnb", - "data": { - "version": "18.2.1", - "packageName": "eslint-config-airbnb", - "hash": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==" - } - }, - "npm:@babel/plugin-transform-react-pure-annotations": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-pure-annotations", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-react-pure-annotations", - "hash": "sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - } - }, - "npm:jest-environment-node-single-context": { - "type": "npm", - "name": "npm:jest-environment-node-single-context", - "data": { - "version": "29.1.0", - "packageName": "jest-environment-node-single-context", - "hash": "sha512-sMQSq/b4aK9f0V1atn/ZfBgdrEQZzoZo95UzUTXaS/GtiCx9e62IFP4gX0GR+IGDu1k7UuqB/Xot46vJoOsoyg==" - } - }, - "npm:source-map-js@0.6.2": { - "type": "npm", - "name": "npm:source-map-js@0.6.2", - "data": { - "version": "0.6.2", - "packageName": "source-map-js", - "hash": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==" - } - }, - "npm:dom-serializer@1.3.2": { - "type": "npm", - "name": "npm:dom-serializer@1.3.2", - "data": { - "version": "1.3.2", - "packageName": "dom-serializer", - "hash": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" - } - }, - "npm:query-string": { - "type": "npm", - "name": "npm:query-string", - "data": { - "version": "6.14.1", - "packageName": "query-string", - "hash": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" - } - }, - "npm:@babel/plugin-proposal-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-methods", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-private-methods", - "hash": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" - } - }, - "npm:is-directory": { - "type": "npm", - "name": "npm:is-directory", - "data": { - "version": "0.3.1", - "packageName": "is-directory", - "hash": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" - } - }, - "npm:@types/lodash": { - "type": "npm", - "name": "npm:@types/lodash", - "data": { - "version": "4.14.182", - "packageName": "@types/lodash", - "hash": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.2.0", - "packageName": "domelementtype", - "hash": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" - } - }, - "npm:signal-exit@4.0.2": { - "type": "npm", - "name": "npm:signal-exit@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "signal-exit", - "hash": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" - } - }, - "npm:value-equal": { - "type": "npm", - "name": "npm:value-equal", - "data": { - "version": "1.0.1", - "packageName": "value-equal", - "hash": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" - } - }, - "npm:@nx/jest": { - "type": "npm", - "name": "npm:@nx/jest", - "data": { - "version": "16.10.0", - "packageName": "@nx/jest", - "hash": "sha512-QseeLjDrl4c9q9Dd/057SXYqd47JVLhD2VQlQDraYwjsHz3lWkzlGaaHy0ZrVu8LSzY7lUUhJMPyYO3qo8wT6A==" - } - }, - "npm:@types/babel__register": { - "type": "npm", - "name": "npm:@types/babel__register", - "data": { - "version": "7.17.2", - "packageName": "@types/babel__register", - "hash": "sha512-vtX15ukwrteTilZGP2/qAKKQcydKHUSioiIVItmKQZAwGwTOH0ZFfJ2L4kei/lq6EmwBuYooipl+5bh5gtmQgQ==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==" - } - }, - "npm:babel-plugin-annotate-pure-calls": { - "type": "npm", - "name": "npm:babel-plugin-annotate-pure-calls", - "data": { - "version": "0.4.0", - "packageName": "babel-plugin-annotate-pure-calls", - "hash": "sha512-oi4M/PWUJOU9ZyRGoPTfPMqdyMp06jbJAomd3RcyYuzUtBOddv98BqLm96Lucpi2QFoQHkdGQt0ACvw7VzVEQA==" - } - }, - "npm:clean-stack@4.2.0": { - "type": "npm", - "name": "npm:clean-stack@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "clean-stack", - "hash": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==" - } - }, - "npm:err-code@1.1.2": { - "type": "npm", - "name": "npm:err-code@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "err-code", - "hash": "sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA=" - } - }, - "npm:es6-symbol": { - "type": "npm", - "name": "npm:es6-symbol", - "data": { - "version": "3.1.3", - "packageName": "es6-symbol", - "hash": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" - } - }, - "npm:@storybook/semver": { - "type": "npm", - "name": "npm:@storybook/semver", - "data": { - "version": "7.3.2", - "packageName": "@storybook/semver", - "hash": "sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==" - } - }, - "npm:color-convert@2.0.1": { - "type": "npm", - "name": "npm:color-convert@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:load-json-file": { - "type": "npm", - "name": "npm:load-json-file", - "data": { - "version": "6.2.0", - "packageName": "load-json-file", - "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "2.2.2", - "packageName": "jackspeak", - "hash": "sha512-mgNtVv4vUuaKA97yxUHoA3+FkuhtxkjdXEWOyB/N76fjy0FjezEt34oy3epBtvCvS+7DyKwqCFWx/oJLV5+kCg==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.23.0", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==" - } - }, - "npm:to-regex-range@2.1.1": { - "type": "npm", - "name": "npm:to-regex-range@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "to-regex-range", - "hash": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=" - } - }, - "npm:socks-proxy-agent@5.0.0": { - "type": "npm", - "name": "npm:socks-proxy-agent@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "socks-proxy-agent", - "hash": "sha512-lEpa1zsWCChxiynk+lCycKuC502RxDWLKJZoIhnxrWNjLSDGYRFflHA1/228VkRcnv9TIb8w98derGbpKxJRgA==" - } - }, - "npm:fetch-blob": { - "type": "npm", - "name": "npm:fetch-blob", - "data": { - "version": "3.2.0", - "packageName": "fetch-blob", - "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:to-regex": { - "type": "npm", - "name": "npm:to-regex", - "data": { - "version": "3.0.2", - "packageName": "to-regex", - "hash": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==" - } - }, - "npm:compressible": { - "type": "npm", - "name": "npm:compressible", - "data": { - "version": "2.0.17", - "packageName": "compressible", - "hash": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==" - } - }, - "npm:@xstate/react": { - "type": "npm", - "name": "npm:@xstate/react", - "data": { - "version": "1.6.3", - "packageName": "@xstate/react", - "hash": "sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==" - } - }, - "npm:hast-util-parse-selector": { - "type": "npm", - "name": "npm:hast-util-parse-selector", - "data": { - "version": "2.2.5", - "packageName": "hast-util-parse-selector", - "hash": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" - } - }, - "npm:@babel/plugin-syntax-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-decorators", - "data": { - "version": "7.22.10", - "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==" - } - }, - "npm:aggregate-error@4.0.1": { - "type": "npm", - "name": "npm:aggregate-error@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "aggregate-error", - "hash": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:eslint-module-utils": { - "type": "npm", - "name": "npm:eslint-module-utils", - "data": { - "version": "2.7.3", - "packageName": "eslint-module-utils", - "hash": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==" - } - }, - "npm:@hutson/parse-repository-url": { - "type": "npm", - "name": "npm:@hutson/parse-repository-url", - "data": { - "version": "3.0.2", - "packageName": "@hutson/parse-repository-url", - "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" - } - }, - "npm:@types/resolve": { - "type": "npm", - "name": "npm:@types/resolve", - "data": { - "version": "0.0.8", - "packageName": "@types/resolve", - "hash": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==" - } - }, - "npm:babel-plugin-module-resolver": { - "type": "npm", - "name": "npm:babel-plugin-module-resolver", - "data": { - "version": "4.1.0", - "packageName": "babel-plugin-module-resolver", - "hash": "sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==" - } - }, - "npm:colors@1.4.0": { - "type": "npm", - "name": "npm:colors@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "colors", - "hash": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" - } - }, - "npm:duplexer@0.1.1": { - "type": "npm", - "name": "npm:duplexer@0.1.1", - "data": { - "version": "0.1.1", - "packageName": "duplexer", - "hash": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=" - } - }, - "npm:flat@4.1.0": { - "type": "npm", - "name": "npm:flat@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "flat", - "hash": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==" - } - }, - "npm:lazystream": { - "type": "npm", - "name": "npm:lazystream", - "data": { - "version": "1.0.0", - "packageName": "lazystream", - "hash": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=" - } - }, - "npm:pascal-case": { - "type": "npm", - "name": "npm:pascal-case", - "data": { - "version": "2.0.1", - "packageName": "pascal-case", - "hash": "sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.17.2", - "packageName": "send", - "hash": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" - } - }, - "npm:util@0.10.3": { - "type": "npm", - "name": "npm:util@0.10.3", - "data": { - "version": "0.10.3", - "packageName": "util", - "hash": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=" - } - }, - "npm:@types/simulant": { - "type": "npm", - "name": "npm:@types/simulant", - "data": { - "version": "0.2.0", - "packageName": "@types/simulant", - "hash": "sha512-pQcnO5/JMR9KEnQGuYkDNQ9IDFAp0nrCfCjxqZ03WY2QDcuMPR6w0VpL6MO5VQEn93YkNCW9nTuRl/q0+iasVg==" - } - }, - "npm:@babel/helper-skip-transparent-expression-wrappers": { - "type": "npm", - "name": "npm:@babel/helper-skip-transparent-expression-wrappers", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-skip-transparent-expression-wrappers", - "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" - } - }, - "npm:xmlbuilder": { - "type": "npm", - "name": "npm:xmlbuilder", - "data": { - "version": "11.0.1", - "packageName": "xmlbuilder", - "hash": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" - } - }, - "npm:yargs-parser@21.1.1": { - "type": "npm", - "name": "npm:yargs-parser@21.1.1", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:@storybook/addon-knobs": { - "type": "npm", - "name": "npm:@storybook/addon-knobs", - "data": { - "version": "6.4.0", - "packageName": "@storybook/addon-knobs", - "hash": "sha512-DiH1/5e2AFHoHrncl1qLu18ZHPHzRMMPvOLFz8AWvvmc+VCqTdIaE+tdxKr3e8rYylKllibgvDOzrLjfTNjF+Q==" - } - }, - "npm:mime@1.6.0": { - "type": "npm", - "name": "npm:mime@1.6.0", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:ms@2.1.2": { - "type": "npm", - "name": "npm:ms@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "ms", - "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - }, - "npm:os-browserify": { - "type": "npm", - "name": "npm:os-browserify", - "data": { - "version": "0.3.0", - "packageName": "os-browserify", - "hash": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - } - }, - "npm:package-json": { - "type": "npm", - "name": "npm:package-json", - "data": { - "version": "4.0.1", - "packageName": "package-json", - "hash": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=" - } - }, - "npm:react-motion": { - "type": "npm", - "name": "npm:react-motion", - "data": { - "version": "0.5.2", - "packageName": "react-motion", - "hash": "sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "9.1.0", - "packageName": "node-gyp", - "hash": "sha512-HkmN0ZpQJU7FLbJauJTHkHlSVAXlNGDAzH/VYFZGDOnFyn/Na3GlNJfkudmufOdS6/jNFhy88ObzL7ERz9es1g==" - } - }, - "npm:glob-promise": { - "type": "npm", - "name": "npm:glob-promise", - "data": { - "version": "3.4.0", - "packageName": "glob-promise", - "hash": "sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==" - } - }, - "npm:react-router": { - "type": "npm", - "name": "npm:react-router", - "data": { - "version": "5.2.0", - "packageName": "react-router", - "hash": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "3.1.1", - "packageName": "schema-utils", - "hash": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" - } - }, - "npm:@tsconfig/node14": { - "type": "npm", - "name": "npm:@tsconfig/node14", - "data": { - "version": "1.0.3", - "packageName": "@tsconfig/node14", - "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - } - }, - "npm:cosmiconfig@8.2.0": { - "type": "npm", - "name": "npm:cosmiconfig@8.2.0", - "data": { - "version": "8.2.0", - "packageName": "cosmiconfig", - "hash": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==" - } - }, - "npm:is-weakref": { - "type": "npm", - "name": "npm:is-weakref", - "data": { - "version": "1.0.1", - "packageName": "is-weakref", - "hash": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==" - } - }, - "npm:lodash.flattendeep": { - "type": "npm", - "name": "npm:lodash.flattendeep", - "data": { - "version": "4.4.0", - "packageName": "lodash.flattendeep", - "hash": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" - } - }, - "npm:@esbuild/linux-arm@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-Odalh8hICg7SOD7XCj0YLpYCEc+6mkoq63UnExDCiRA2wXEmGlK5JVrW50vZR9Qz4qkvqnHcpH+OFEggO3PgTg==" - } - }, - "npm:color": { - "type": "npm", - "name": "npm:color", - "data": { - "version": "3.1.2", - "packageName": "color", - "hash": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==" - } - }, - "npm:inherits@2.0.3": { - "type": "npm", - "name": "npm:inherits@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "inherits", - "hash": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } - }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "0.0.8", - "packageName": "mute-stream", - "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - } - }, - "npm:opener": { - "type": "npm", - "name": "npm:opener", - "data": { - "version": "1.5.2", - "packageName": "opener", - "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - } - }, - "npm:temp": { - "type": "npm", - "name": "npm:temp", - "data": { - "version": "0.4.0", - "packageName": "temp", - "hash": "sha1-ZxrWPVe+D+nXKUZks/xABjZnimA=" - } - }, - "npm:listenercount": { - "type": "npm", - "name": "npm:listenercount", - "data": { - "version": "1.0.1", - "packageName": "listenercount", - "hash": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" - } - }, - "npm:@esbuild/sunos-x64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-VXSSMsmb+Z8LbsQGcBMiM+fYObDNRm8p7tkUDMPG/g4fhFX5DEFmjxIEa3N8Zr96SjsJ1woAhF0DUnS3MF3ARw==" - } - }, - "npm:is-negated-glob": { - "type": "npm", - "name": "npm:is-negated-glob", - "data": { - "version": "1.0.0", - "packageName": "is-negated-glob", - "hash": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" - } - }, - "npm:nopt@5.0.0": { - "type": "npm", - "name": "npm:nopt@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "nopt", - "hash": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==" - } - }, - "npm:terser-webpack-plugin@4.2.3": { - "type": "npm", - "name": "npm:terser-webpack-plugin@4.2.3", - "data": { - "version": "4.2.3", - "packageName": "terser-webpack-plugin", - "hash": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==" - } - }, - "npm:strip-ansi@3.0.1": { - "type": "npm", - "name": "npm:strip-ansi@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "strip-ansi", - "hash": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=" - } - }, - "npm:workspace-tools": { - "type": "npm", - "name": "npm:workspace-tools", - "data": { - "version": "0.29.1", - "packageName": "workspace-tools", - "hash": "sha512-BVPROxNszGmyaUD2ErLWP4BpCiIkG1P//CnziOvHd27o1TeBm+7T1HKlYu89T4XGAjgPL/NP+tZ4j6aBvG/p/A==" - } - }, - "npm:@babel/plugin-proposal-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-class-properties", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-class-properties", - "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" - } - }, - "npm:is-alphanumerical": { - "type": "npm", - "name": "npm:is-alphanumerical", - "data": { - "version": "1.0.3", - "packageName": "is-alphanumerical", - "hash": "sha512-A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA==" - } - }, - "npm:process-nextick-args": { - "type": "npm", - "name": "npm:process-nextick-args", - "data": { - "version": "2.0.1", - "packageName": "process-nextick-args", - "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:@swc/core": { - "type": "npm", - "name": "npm:@swc/core", - "data": { - "version": "1.3.87", - "packageName": "@swc/core", - "hash": "sha512-u33Mi/EBvb+g/xpYKyxODB5XvKYqISmy81J+lhFS/Oahja0PbJWZdKEGwSQEFvBecp6E+PfaTOLPOoF1EWcRrw==" - } - }, - "npm:listr2@3.14.0": { - "type": "npm", - "name": "npm:listr2@3.14.0", - "data": { - "version": "3.14.0", - "packageName": "listr2", - "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" - } - }, - "npm:hyperlinker": { - "type": "npm", - "name": "npm:hyperlinker", - "data": { - "version": "1.0.0", - "packageName": "hyperlinker", - "hash": "sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==" - } - }, - "npm:react-vis": { - "type": "npm", - "name": "npm:react-vis", - "data": { - "version": "1.11.7", - "packageName": "react-vis", - "hash": "sha512-vJqS12l/6RHeSq8DVl4PzX0j8iPgbT8H8PtgTRsimKsBNcPjPseO4RICw1FUPrwj8MPrrna34LBtzyC4ATd5Ow==" - } - }, - "npm:is-npm": { - "type": "npm", - "name": "npm:is-npm", - "data": { - "version": "1.0.0", - "packageName": "is-npm", - "hash": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" - } - }, - "npm:use-immer": { - "type": "npm", - "name": "npm:use-immer", - "data": { - "version": "0.6.0", - "packageName": "use-immer", - "hash": "sha512-dFGRfvWCqPDTOt/S431ETYTg6+uxbpb7A1pptufwXVzGJY3RlXr38+3wyLNpc6SbbmAKjWl6+EP6uW74fkEsXQ==" - } - }, - "npm:@esbuild/android-arm64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-lsB65vAbe90I/Qe10OjkmrdxSX4UJDjosDgb8sZUKcg3oefEuW2OT2Vozz8ef7wrJbMcmhvCC+hciF8jY/uAkw==" - } - }, - "npm:is-arrayish@0.3.2": { - "type": "npm", - "name": "npm:is-arrayish@0.3.2", - "data": { - "version": "0.3.2", - "packageName": "is-arrayish", - "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.5", - "packageName": "pirates", - "hash": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" - } - }, - "npm:remove-trailing-separator": { - "type": "npm", - "name": "npm:remove-trailing-separator", - "data": { - "version": "1.1.0", - "packageName": "remove-trailing-separator", - "hash": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" - } - }, - "npm:relateurl": { - "type": "npm", - "name": "npm:relateurl", - "data": { - "version": "0.2.7", - "packageName": "relateurl", - "hash": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:findup-sync@3.0.0": { - "type": "npm", - "name": "npm:findup-sync@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "findup-sync", - "hash": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==" - } - }, - "npm:normalize-package-data@3.0.3": { - "type": "npm", - "name": "npm:normalize-package-data@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "normalize-package-data", - "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" - } - }, - "npm:@cactuslab/usepubsub": { - "type": "npm", - "name": "npm:@cactuslab/usepubsub", - "data": { - "version": "1.0.2", - "packageName": "@cactuslab/usepubsub", - "hash": "sha512-xNl3YemJ+aTDgs7MRlmGla7TGDVowtZ/FAF5DaHfR5EJaM4tV5EvK0FIk9hz/lt3AHXL+vxnBoyf4z2Z1sYzJA==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:eslint-plugin-security": { - "type": "npm", - "name": "npm:eslint-plugin-security", - "data": { - "version": "1.4.0", - "packageName": "eslint-plugin-security", - "hash": "sha512-xlS7P2PLMXeqfhyf3NpqbvbnW04kN8M9NtmhpR3XGyOvt/vNKS7XPXT5EDbwKW9vCjWH4PpfQvgD/+JgN0VJKA==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "data": { - "version": "7.21.0", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==" - } - }, - "npm:chokidar@3.3.0": { - "type": "npm", - "name": "npm:chokidar@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "chokidar", - "hash": "sha512-dGmKLDdT3Gdl7fBUe8XK+gAtGmzy5Fn0XkkWQuYxGIgWVPPse2CxFA5mtrlD0TOHaHjEUqkWNyP1XdHoJES/4A==" - } - }, - "npm:fast-check": { - "type": "npm", - "name": "npm:fast-check", - "data": { - "version": "3.11.0", - "packageName": "fast-check", - "hash": "sha512-H2tctb7AGfFQfz+DEr3UWhJ3s47LXsGp5g3jeJr5tHjnf4xUvpArIqiwcDmL2EXiv+auLHIpF5MqaIpIKvpxiA==" - } - }, - "npm:jsonparse": { - "type": "npm", - "name": "npm:jsonparse", - "data": { - "version": "1.3.1", - "packageName": "jsonparse", - "hash": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:pluralize": { - "type": "npm", - "name": "npm:pluralize", - "data": { - "version": "1.2.1", - "packageName": "pluralize", - "hash": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=" - } - }, - "npm:public-encrypt": { - "type": "npm", - "name": "npm:public-encrypt", - "data": { - "version": "4.0.3", - "packageName": "public-encrypt", - "hash": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==" - } - }, - "npm:read": { - "type": "npm", - "name": "npm:read", - "data": { - "version": "2.1.0", - "packageName": "read", - "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" - } - }, - "npm:test-exclude": { - "type": "npm", - "name": "npm:test-exclude", - "data": { - "version": "6.0.0", - "packageName": "test-exclude", - "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" - } - }, - "npm:@tufjs/models": { - "type": "npm", - "name": "npm:@tufjs/models", - "data": { - "version": "1.0.4", - "packageName": "@tufjs/models", - "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" - } - }, - "npm:http-proxy-agent@4.0.1": { - "type": "npm", - "name": "npm:http-proxy-agent@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "http-proxy-agent", - "hash": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==" - } - }, - "npm:request-promise-core": { - "type": "npm", - "name": "npm:request-promise-core", - "data": { - "version": "1.1.4", - "packageName": "request-promise-core", - "hash": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==" - } - }, - "npm:cliui@5.0.0": { - "type": "npm", - "name": "npm:cliui@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "cliui", - "hash": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==" - } - }, - "npm:arr-diff": { - "type": "npm", - "name": "npm:arr-diff", - "data": { - "version": "4.0.0", - "packageName": "arr-diff", - "hash": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - } - }, - "npm:is-generator-function": { - "type": "npm", - "name": "npm:is-generator-function", - "data": { - "version": "1.0.8", - "packageName": "is-generator-function", - "hash": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==" - } - }, - "npm:@types/fs-extra": { - "type": "npm", - "name": "npm:@types/fs-extra", - "data": { - "version": "8.0.1", - "packageName": "@types/fs-extra", - "hash": "sha512-J00cVDALmi/hJOYsunyT52Hva5TnJeKP5yd1r+mH/ZU0mbYZflR0Z5kw5kITtKTRYMhm1JMClOFYdHnQszEvqw==" - } - }, - "npm:@types/yargs-unparser": { - "type": "npm", - "name": "npm:@types/yargs-unparser", - "data": { - "version": "2.0.1", - "packageName": "@types/yargs-unparser", - "hash": "sha512-fAnDylacESFJBN4a1J2VnYCl2bTIMkwZ6f3CLCA04x/qCDalGR9aAec89KtS3K4zu05JxjQGn0aRWSPYQJ6zRQ==" - } - }, - "npm:through2@0.5.1": { - "type": "npm", - "name": "npm:through2@0.5.1", - "data": { - "version": "0.5.1", - "packageName": "through2", - "hash": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=" - } - }, - "npm:promise.allsettled": { - "type": "npm", - "name": "npm:promise.allsettled", - "data": { - "version": "1.0.1", - "packageName": "promise.allsettled", - "hash": "sha512-3ST7RS7TY3TYLOIe+OACZFvcWVe1osbgz2x07nTb446pa3t4GUZWidMDzQ4zf9jC2l6mRa1/3X81icFYbi+D/g==" - } - }, - "npm:date-format": { - "type": "npm", - "name": "npm:date-format", - "data": { - "version": "4.0.4", - "packageName": "date-format", - "hash": "sha512-/jyf4rhB17ge328HJuJjAcmRtCsGd+NDeAtahRBTaK6vSPR6MO5HlrAit3Nn7dVjaa6sowW0WXt8yQtLyZQFRg==" - } - }, - "npm:@storybook/channel-websocket": { - "type": "npm", - "name": "npm:@storybook/channel-websocket", - "data": { - "version": "6.5.15", - "packageName": "@storybook/channel-websocket", - "hash": "sha512-K85KEgzo5ahzJNJjyUbSNyuRmkeC8glJX2hCg2j9HiJ9rasX53qugkODrKDlWAeheulo3kR13VSuAqIuwVbmbw==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - } - }, - "npm:@types/react": { - "type": "npm", - "name": "npm:@types/react", - "data": { - "version": "17.0.44", - "packageName": "@types/react", - "hash": "sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==" - } - }, - "npm:parse-path": { - "type": "npm", - "name": "npm:parse-path", - "data": { - "version": "7.0.0", - "packageName": "parse-path", - "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" - } - }, - "npm:@octokit/graphql": { - "type": "npm", - "name": "npm:@octokit/graphql", - "data": { - "version": "4.8.0", - "packageName": "@octokit/graphql", - "hash": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==" - } - }, - "npm:@nrwl/node": { - "type": "npm", - "name": "npm:@nrwl/node", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/node", - "hash": "sha512-UZ1s02f2IpFRXzVZIBuDLXXB+obyP280RFHV9smYruhOHrj8iA5wXNSXcJJGorwpKP3WCUS/+KS49oVSHOkLUA==" - } - }, - "npm:widest-line@2.0.1": { - "type": "npm", - "name": "npm:widest-line@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "widest-line", - "hash": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==" - } - }, - "npm:@swc/core-win32-ia32-msvc@1.3.87": { - "type": "npm", - "name": "npm:@swc/core-win32-ia32-msvc@1.3.87", - "data": { - "version": "1.3.87", - "packageName": "@swc/core-win32-ia32-msvc", - "hash": "sha512-2V+5uvisaTPXd5lvTujNLNlEC2LPo07gEUQVGdKGsbhtLAYAggVXBnHjxU1TkuyA6NlciMS59tPKW+L2u2KpTw==" - } - }, - "npm:lodash.isstring": { - "type": "npm", - "name": "npm:lodash.isstring", - "data": { - "version": "4.0.1", - "packageName": "lodash.isstring", - "hash": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" - } - }, - "npm:@emotion/cache": { - "type": "npm", - "name": "npm:@emotion/cache", - "data": { - "version": "10.0.27", - "packageName": "@emotion/cache", - "hash": "sha512-Zp8BEpbMunFsTcqAK4D7YTm3MvCp1SekflSLJH8lze2fCcSZ/yMkXHo8kb3t1/1Tdd3hAqf3Fb7z9VZ+FMiC9w==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "2.0.1", - "packageName": "brace-expansion", - "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" - } - }, - "npm:@babel/plugin-transform-property-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-property-literals", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==" - } - }, - "npm:define-property@1.0.0": { - "type": "npm", - "name": "npm:define-property@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "define-property", - "hash": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" - } - }, - "npm:path-type@1.1.0": { - "type": "npm", - "name": "npm:path-type@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "path-type", - "hash": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=" - } - }, - "npm:read-pkg@5.2.0": { - "type": "npm", - "name": "npm:read-pkg@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "read-pkg", - "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" - } - }, - "npm:klaw": { - "type": "npm", - "name": "npm:klaw", - "data": { - "version": "1.3.1", - "packageName": "klaw", - "hash": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=" - } - }, - "npm:@babel/plugin-transform-unicode-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==" - } - }, - "npm:cacheable-lookup": { - "type": "npm", - "name": "npm:cacheable-lookup", - "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "3.5.3", - "packageName": "chokidar", - "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" - } - }, - "npm:http-proxy-middleware": { - "type": "npm", - "name": "npm:http-proxy-middleware", - "data": { - "version": "2.0.6", - "packageName": "http-proxy-middleware", - "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - } - }, - "npm:dns-packet": { - "type": "npm", - "name": "npm:dns-packet", - "data": { - "version": "1.3.4", - "packageName": "dns-packet", - "hash": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==" - } - }, - "npm:highlight.js": { - "type": "npm", - "name": "npm:highlight.js", - "data": { - "version": "9.13.1", - "packageName": "highlight.js", - "hash": "sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "3.13.1", - "packageName": "js-yaml", - "hash": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:detect-indent@4.0.0": { - "type": "npm", - "name": "npm:detect-indent@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "detect-indent", - "hash": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=" - } - }, - "npm:css-loader": { - "type": "npm", - "name": "npm:css-loader", - "data": { - "version": "5.0.1", - "packageName": "css-loader", - "hash": "sha512-cXc2ti9V234cq7rJzFKhirb2L2iPy8ZjALeVJAozXYz9te3r4eqLSixNAbMDJSgJEQywqXzs8gonxaboeKqwiw==" - } - }, - "npm:rechoir": { - "type": "npm", - "name": "npm:rechoir", - "data": { - "version": "0.6.2", - "packageName": "rechoir", - "hash": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" - } - }, - "npm:resolve@2.0.0-next.3": { - "type": "npm", - "name": "npm:resolve@2.0.0-next.3", - "data": { - "version": "2.0.0-next.3", - "packageName": "resolve", - "hash": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==" - } - }, - "npm:unist-util-remove": { - "type": "npm", - "name": "npm:unist-util-remove", - "data": { - "version": "2.1.0", - "packageName": "unist-util-remove", - "hash": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==" - } - }, - "npm:repromise": { - "type": "npm", - "name": "npm:repromise", - "data": { - "version": "4.0.0", - "packageName": "repromise", - "hash": "sha512-ad12PiDwzGOVD4Oc7j9cJPJuX700mquqsMWyoJ5HHysuIMh7jrF8c7lpCC6zRiKAe+ufOrD285KGPtExgAokTw==" - } - }, - "npm:update-section": { - "type": "npm", - "name": "npm:update-section", - "data": { - "version": "0.3.3", - "packageName": "update-section", - "hash": "sha1-RY8Xgg03gg3GDiC4bZQ5GwASMVg=" - } - }, - "npm:fela-tools": { - "type": "npm", - "name": "npm:fela-tools", - "data": { - "version": "10.6.1", - "packageName": "fela-tools", - "hash": "sha512-fywHZDZPY2jQoNA+COPn5ge4rq4uFYVEeNVsT/AKW/RtQNnr18JsHoO1kbn/n4N76NJcNKP6R8OM6jOcOdLiYQ==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:@gulp-sourcemaps/map-sources": { - "type": "npm", - "name": "npm:@gulp-sourcemaps/map-sources", - "data": { - "version": "1.0.0", - "packageName": "@gulp-sourcemaps/map-sources", - "hash": "sha1-iQrnxdjId/bThIYCFazp1+yUW9o=" - } - }, - "npm:ast-types": { - "type": "npm", - "name": "npm:ast-types", - "data": { - "version": "0.14.2", - "packageName": "ast-types", - "hash": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==" - } - }, - "npm:is-generator-fn": { - "type": "npm", - "name": "npm:is-generator-fn", - "data": { - "version": "2.1.0", - "packageName": "is-generator-fn", - "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - } - }, - "npm:jest-runner": { - "type": "npm", - "name": "npm:jest-runner", - "data": { - "version": "29.7.0", - "packageName": "jest-runner", - "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" - } - }, - "npm:jest-util@26.6.2": { - "type": "npm", - "name": "npm:jest-util@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "jest-util", - "hash": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==" - } - }, - "npm:parse-diff": { - "type": "npm", - "name": "npm:parse-diff", - "data": { - "version": "0.7.1", - "packageName": "parse-diff", - "hash": "sha512-1j3l8IKcy4yRK2W4o9EYvJLSzpAVwz4DXqCewYyx2vEwk2gcf3DBPqc8Fj4XV3K33OYJ08A8fWwyu/ykD/HUSg==" - } - }, - "npm:structured-source": { - "type": "npm", - "name": "npm:structured-source", - "data": { - "version": "3.0.2", - "packageName": "structured-source", - "hash": "sha1-3YAkJeD1PcSm56yjdSkBoczaevU=" - } - }, - "npm:totalist": { - "type": "npm", - "name": "npm:totalist", - "data": { - "version": "1.1.0", - "packageName": "totalist", - "hash": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" - } - }, - "npm:stylis-plugin-rtl": { - "type": "npm", - "name": "npm:stylis-plugin-rtl", - "data": { - "version": "2.1.0", - "packageName": "stylis-plugin-rtl", - "hash": "sha512-WGqhbQdlbXN3UelhOObu58+aG02jm8ACehr8iBDf7qLQ6lbUxD6YwM8t/5IcwLRjj7BVjIN8eA8YfwJuqwBVSg==" - } - }, - "npm:@types/react-test-renderer": { - "type": "npm", - "name": "npm:@types/react-test-renderer", - "data": { - "version": "17.0.2", - "packageName": "@types/react-test-renderer", - "hash": "sha512-+F1KONQTBHDBBhbHuT2GNydeMpPuviduXIVJRB7Y4nma4NR5DrTJfMMZ+jbhEHbpwL+Uqhs1WXh4KHiyrtYTPg==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.22.1", - "packageName": "browserslist", - "hash": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==" - } - }, - "npm:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.2.0", - "packageName": "@ampproject/remapping", - "hash": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==" - } - }, - "npm:is-wsl@1.1.0": { - "type": "npm", - "name": "npm:is-wsl@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-wsl", - "hash": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" - } - }, - "npm:@babel/plugin-transform-template-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-template-literals", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==" - } - }, - "npm:map-obj@4.1.0": { - "type": "npm", - "name": "npm:map-obj@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "map-obj", - "hash": "sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==" - } - }, - "npm:multicast-dns": { - "type": "npm", - "name": "npm:multicast-dns", - "data": { - "version": "6.2.3", - "packageName": "multicast-dns", - "hash": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==" - } - }, - "npm:@webassemblyjs/helper-numbers": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-numbers", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-numbers", - "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" - } - }, - "npm:diffie-hellman": { - "type": "npm", - "name": "npm:diffie-hellman", - "data": { - "version": "5.0.3", - "packageName": "diffie-hellman", - "hash": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "0.5.5", - "packageName": "mkdirp", - "hash": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==" - } - }, - "npm:prr": { - "type": "npm", - "name": "npm:prr", - "data": { - "version": "1.0.1", - "packageName": "prr", - "hash": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" - } - }, - "npm:qjobs": { - "type": "npm", - "name": "npm:qjobs", - "data": { - "version": "1.2.0", - "packageName": "qjobs", - "hash": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "2.3.7", - "packageName": "readable-stream", - "hash": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@types/handlebars": { - "type": "npm", - "name": "npm:@types/handlebars", - "data": { - "version": "4.1.0", - "packageName": "@types/handlebars", - "hash": "sha512-gq9YweFKNNB1uFK71eRqsd4niVkXrxHugqWFQkeLRJvGjnxsLr16bYtcsG4tOFwmYi0Bax+wCkbf1reUfdl4kA==" - } - }, - "npm:ansi-escapes@6.2.0": { - "type": "npm", - "name": "npm:ansi-escapes@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "ansi-escapes", - "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.9", - "packageName": "terser-webpack-plugin", - "hash": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==" - } - }, - "npm:tweetnacl": { - "type": "npm", - "name": "npm:tweetnacl", - "data": { - "version": "0.14.5", - "packageName": "tweetnacl", - "hash": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - } - }, - "npm:hmac-drbg": { - "type": "npm", - "name": "npm:hmac-drbg", - "data": { - "version": "1.0.1", - "packageName": "hmac-drbg", - "hash": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=" - } - }, - "npm:glob-watcher": { - "type": "npm", - "name": "npm:glob-watcher", - "data": { - "version": "5.0.3", - "packageName": "glob-watcher", - "hash": "sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg==" - } - }, - "npm:buffer-equal-constant-time": { - "type": "npm", - "name": "npm:buffer-equal-constant-time", - "data": { - "version": "1.0.1", - "packageName": "buffer-equal-constant-time", - "hash": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" - } - }, - "npm:value-or-function": { - "type": "npm", - "name": "npm:value-or-function", - "data": { - "version": "3.0.0", - "packageName": "value-or-function", - "hash": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=" - } - }, - "npm:xstate": { - "type": "npm", - "name": "npm:xstate", - "data": { - "version": "4.33.1", - "packageName": "xstate", - "hash": "sha512-C9A3esyOuw/xRpwQUkG2e1Gjd8sZYh42t66COq8DaJgaaLOqmE8zWRH1ouL9mHtQ3WV//uT5Ki3ijHGSUdLiww==" - } - }, - "npm:@jest/console": { - "type": "npm", - "name": "npm:@jest/console", - "data": { - "version": "29.7.0", - "packageName": "@jest/console", - "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" - } - }, - "npm:@types/webpack": { - "type": "npm", - "name": "npm:@types/webpack", - "data": { - "version": "4.41.30", - "packageName": "@types/webpack", - "hash": "sha512-GUHyY+pfuQ6haAfzu4S14F+R5iGRwN6b2FRNJY7U0NilmFAqbsOfK6j1HwuLBAqwRIT+pVdNDJGJ6e8rpp0KHA==" - } - }, - "npm:ent": { - "type": "npm", - "name": "npm:ent", - "data": { - "version": "2.2.0", - "packageName": "ent", - "hash": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=" - } - }, - "npm:for-own": { - "type": "npm", - "name": "npm:for-own", - "data": { - "version": "1.0.0", - "packageName": "for-own", - "hash": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=" - } - }, - "npm:babel-template": { - "type": "npm", - "name": "npm:babel-template", - "data": { - "version": "6.26.0", - "packageName": "babel-template", - "hash": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=" - } - }, - "npm:async-done": { - "type": "npm", - "name": "npm:async-done", - "data": { - "version": "1.3.2", - "packageName": "async-done", - "hash": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==" - } - }, - "npm:cli-boxes": { - "type": "npm", - "name": "npm:cli-boxes", - "data": { - "version": "2.2.1", - "packageName": "cli-boxes", - "hash": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" - } - }, - "npm:ansi-html-community": { - "type": "npm", - "name": "npm:ansi-html-community", - "data": { - "version": "0.0.8", - "packageName": "ansi-html-community", - "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - } - }, - "npm:@es-joy/jsdoccomment": { - "type": "npm", - "name": "npm:@es-joy/jsdoccomment", - "data": { - "version": "0.36.1", - "packageName": "@es-joy/jsdoccomment", - "hash": "sha512-922xqFsTpHs6D0BUiG4toiyPOMc8/jafnWKxz1KWgS4XzKPy2qXf1Pe6UFuNSCQqt6tOuhAWXBNuuyUhJmw9Vg==" - } - }, - "npm:@storybook/source-loader": { - "type": "npm", - "name": "npm:@storybook/source-loader", - "data": { - "version": "6.5.15", - "packageName": "@storybook/source-loader", - "hash": "sha512-MaWzki40g0/7NWmJgUBhOp+e7y8Ohw6G/bRr/rcDP7eXSnud6ThYylXv0QqBScLPPTy8txjmBClCoqdLGyvLWQ==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:fast-json-patch": { - "type": "npm", - "name": "npm:fast-json-patch", - "data": { - "version": "3.1.1", - "packageName": "fast-json-patch", - "hash": "sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==" - } - }, - "npm:fs-extra@11.1.1": { - "type": "npm", - "name": "npm:fs-extra@11.1.1", - "data": { - "version": "11.1.1", - "packageName": "fs-extra", - "hash": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==" - } - }, - "npm:git-up": { - "type": "npm", - "name": "npm:git-up", - "data": { - "version": "7.0.0", - "packageName": "git-up", - "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" - } - }, - "npm:humps": { - "type": "npm", - "name": "npm:humps", - "data": { - "version": "2.0.1", - "packageName": "humps", - "hash": "sha1-3QLqYIG9BWjcXQcxhEY5V7qe+ao=" - } - }, - "npm:node-addon-api": { - "type": "npm", - "name": "npm:node-addon-api", - "data": { - "version": "3.2.1", - "packageName": "node-addon-api", - "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "0.1.7", - "packageName": "path-to-regexp", - "hash": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "npm:command-line-args": { - "type": "npm", - "name": "npm:command-line-args", - "data": { - "version": "5.2.1", - "packageName": "command-line-args", - "hash": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==" - } - }, - "npm:figgy-pudding": { - "type": "npm", - "name": "npm:figgy-pudding", - "data": { - "version": "3.5.2", - "packageName": "figgy-pudding", - "hash": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" - } - }, - "npm:styled-components": { - "type": "npm", - "name": "npm:styled-components", - "data": { - "version": "5.2.1", - "packageName": "styled-components", - "hash": "sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" - } - }, - "npm:is-windows": { - "type": "npm", - "name": "npm:is-windows", - "data": { - "version": "1.0.2", - "packageName": "is-windows", - "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - } - }, - "npm:is-negative-zero": { - "type": "npm", - "name": "npm:is-negative-zero", - "data": { - "version": "2.0.1", - "packageName": "is-negative-zero", - "hash": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - } - }, - "npm:fast-deep-equal@1.1.0": { - "type": "npm", - "name": "npm:fast-deep-equal@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "fast-deep-equal", - "hash": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" - } - }, - "npm:istanbul-reports": { - "type": "npm", - "name": "npm:istanbul-reports", - "data": { - "version": "3.1.5", - "packageName": "istanbul-reports", - "hash": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==" - } - }, - "npm:copy-to-clipboard": { - "type": "npm", - "name": "npm:copy-to-clipboard", - "data": { - "version": "3.3.1", - "packageName": "copy-to-clipboard", - "hash": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==" - } - }, - "npm:deep-extend": { - "type": "npm", - "name": "npm:deep-extend", - "data": { - "version": "0.6.0", - "packageName": "deep-extend", - "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:raw-loader": { - "type": "npm", - "name": "npm:raw-loader", - "data": { - "version": "4.0.2", - "packageName": "raw-loader", - "hash": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==" - } - }, - "npm:@babel/plugin-syntax-import-meta": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-meta", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-import-meta", - "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" - } - }, - "npm:@storybook/docs-tools": { - "type": "npm", - "name": "npm:@storybook/docs-tools", - "data": { - "version": "6.5.15", - "packageName": "@storybook/docs-tools", - "hash": "sha512-8w78NFOtlJGuIa9vPPsr87J9iQUGmLFh7CrMS2+t9LxW+0oH5MZ8QqPQUHNuTuKsYN3r+QAmmi2pj0auZmCoKA==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "3.1.0", - "packageName": "@npmcli/fs", - "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" - } - }, - "npm:@types/webpack-hot-middleware": { - "type": "npm", - "name": "npm:@types/webpack-hot-middleware", - "data": { - "version": "2.25.6", - "packageName": "@types/webpack-hot-middleware", - "hash": "sha512-1Q9ClNvZR30HIsEAHYQL3bXJK1K7IsrqjGMTfIureFjphsGOZ3TkbeoCupbCmi26pSLjVTPHp+pFrJNpOkBSVg==" - } - }, - "npm:babel-plugin-macros": { - "type": "npm", - "name": "npm:babel-plugin-macros", - "data": { - "version": "2.8.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" - } - }, - "npm:getpass": { - "type": "npm", - "name": "npm:getpass", - "data": { - "version": "0.1.7", - "packageName": "getpass", - "hash": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=" - } - }, - "npm:has-ansi": { - "type": "npm", - "name": "npm:has-ansi", - "data": { - "version": "2.0.0", - "packageName": "has-ansi", - "hash": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=" - } - }, - "npm:hoist-non-react-statics": { - "type": "npm", - "name": "npm:hoist-non-react-statics", - "data": { - "version": "3.3.2", - "packageName": "hoist-non-react-statics", - "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" - } - }, - "npm:jest-resolve-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:axe-core": { - "type": "npm", - "name": "npm:axe-core", - "data": { - "version": "4.4.3", - "packageName": "axe-core", - "hash": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==" - } - }, - "npm:ext-name": { - "type": "npm", - "name": "npm:ext-name", - "data": { - "version": "5.0.0", - "packageName": "ext-name", - "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" - } - }, - "npm:@types/d3-scale": { - "type": "npm", - "name": "npm:@types/d3-scale", - "data": { - "version": "4.0.2", - "packageName": "@types/d3-scale", - "hash": "sha512-Yk4htunhPAwN0XGlIwArRomOjdoBFXC3+kCxK2Ubg7I9shQlVSJy/pG/Ht5ASN+gdMIalpk8TJ5xV74jFsetLA==" - } - }, - "npm:https-proxy-agent@2.2.4": { - "type": "npm", - "name": "npm:https-proxy-agent@2.2.4", - "data": { - "version": "2.2.4", - "packageName": "https-proxy-agent", - "hash": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==" - } - }, - "npm:@types/request": { - "type": "npm", - "name": "npm:@types/request", - "data": { - "version": "2.48.8", - "packageName": "@types/request", - "hash": "sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==" - } - }, - "npm:@wojtekmaj/enzyme-adapter-utils": { - "type": "npm", - "name": "npm:@wojtekmaj/enzyme-adapter-utils", - "data": { - "version": "0.1.4", - "packageName": "@wojtekmaj/enzyme-adapter-utils", - "hash": "sha512-ARGIQSIIv3oBia1m5Ihn1VU0FGmft6KPe39SBKTb8p7LSXO23YI4kNtc4M/cKoIY7P+IYdrZcgMObvedyjoSQA==" - } - }, - "npm:jju": { - "type": "npm", - "name": "npm:jju", - "data": { - "version": "1.4.0", - "packageName": "jju", - "hash": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=" - } - }, - "npm:pako": { - "type": "npm", - "name": "npm:pako", - "data": { - "version": "1.0.11", - "packageName": "pako", - "hash": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - } - }, - "npm:postcss-modules-scope@2.2.0": { - "type": "npm", - "name": "npm:postcss-modules-scope@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "postcss-modules-scope", - "hash": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==" - } - }, - "npm:readline-sync": { - "type": "npm", - "name": "npm:readline-sync", - "data": { - "version": "1.4.10", - "packageName": "readline-sync", - "hash": "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==" - } - }, - "npm:backfill-config": { - "type": "npm", - "name": "npm:backfill-config", - "data": { - "version": "6.3.0", - "packageName": "backfill-config", - "hash": "sha512-4Pvqe4SIthHmlJi1yEyh8ThdZCh9SbNcf12Dx1TNkLii6um3Ez1P1rruPNQGW8jFtLb5kOWWkTnXPj6OXewXSA==" - } - }, - "npm:@microsoft/fast-element": { - "type": "npm", - "name": "npm:@microsoft/fast-element", - "data": { - "version": "1.11.1", - "packageName": "@microsoft/fast-element", - "hash": "sha512-qBGQ94V4ktMMXmxNdgF78TPNImv2ctXUi3Vzj3j2X71gpUcr+Fkat7mLcTNC3y/Jc4W63fAhK2vP3MkwYRS5kQ==" - } - }, - "npm:randomfill": { - "type": "npm", - "name": "npm:randomfill", - "data": { - "version": "1.0.4", - "packageName": "randomfill", - "hash": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==" - } - }, - "npm:replace-homedir": { - "type": "npm", - "name": "npm:replace-homedir", - "data": { - "version": "1.0.0", - "packageName": "replace-homedir", - "hash": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=" - } - }, - "npm:@discoveryjs/json-ext": { - "type": "npm", - "name": "npm:@discoveryjs/json-ext", - "data": { - "version": "0.5.6", - "packageName": "@discoveryjs/json-ext", - "hash": "sha512-ws57AidsDvREKrZKYffXddNkyaF14iHNHm8VQnZH6t99E8gczjNN0GpvcGny0imC80yQ0tHz1xVUKk/KFQSUyA==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "data": { - "version": "4.0.0", - "packageName": "slice-ansi", - "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" - } - }, - "npm:tsconfig-paths@3.13.0": { - "type": "npm", - "name": "npm:tsconfig-paths@3.13.0", - "data": { - "version": "3.13.0", - "packageName": "tsconfig-paths", - "hash": "sha512-nWuffZppoaYK0vQ1SQmkSsQzJoHA4s6uzdb2waRpD806x9yfq153AdVsWz4je2qZcW+pENrMQXbGQ3sMCkXuhw==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "1.1.1", - "packageName": "unique-filename", - "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" - } - }, - "npm:@storybook/addon-toolbars": { - "type": "npm", - "name": "npm:@storybook/addon-toolbars", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-toolbars", - "hash": "sha512-btwDTgElmaaT0dBRASABbTpq6m1UiQXQmLUmxfjLxVC3I2SK5tyJKbPQ2hVLFAQHK4cQn4u45BxdZ5LDpJ830A==" - } - }, - "npm:git-config-path": { - "type": "npm", - "name": "npm:git-config-path", - "data": { - "version": "1.0.1", - "packageName": "git-config-path", - "hash": "sha1-bTP37WPbDQ4RgTFQO6s6ykfVRmQ=" - } - }, - "npm:bin-version": { - "type": "npm", - "name": "npm:bin-version", - "data": { - "version": "6.0.0", - "packageName": "bin-version", - "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" - } - }, - "npm:des.js": { - "type": "npm", - "name": "npm:des.js", - "data": { - "version": "1.0.0", - "packageName": "des.js", - "hash": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=" - } - }, - "npm:is-number@4.0.0": { - "type": "npm", - "name": "npm:is-number@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-number", - "hash": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - } - }, - "npm:parse-passwd": { - "type": "npm", - "name": "npm:parse-passwd", - "data": { - "version": "1.0.0", - "packageName": "parse-passwd", - "hash": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.3.5", - "packageName": "postcss", - "hash": "sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.0", - "packageName": "open", - "hash": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==" - } - }, - "npm:filesize": { - "type": "npm", - "name": "npm:filesize", - "data": { - "version": "6.1.0", - "packageName": "filesize", - "hash": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" - } - }, - "npm:@nrwl/workspace": { - "type": "npm", - "name": "npm:@nrwl/workspace", - "data": { - "version": "16.10.0", - "packageName": "@nrwl/workspace", - "hash": "sha512-fZeNxhFs/2cm326NebfJIgSI3W4KZN94WGS46wlIBrUUGP5/vwHYsi09Kx6sG1kRkAuZVtgJ33uU2F6xcAWzUA==" - } - }, - "npm:selfsigned": { - "type": "npm", - "name": "npm:selfsigned", - "data": { - "version": "2.1.1", - "packageName": "selfsigned", - "hash": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==" - } - }, - "npm:trim-trailing-lines": { - "type": "npm", - "name": "npm:trim-trailing-lines", - "data": { - "version": "1.1.3", - "packageName": "trim-trailing-lines", - "hash": "sha512-4ku0mmjXifQcTVfYDfR5lpgV7zVqPg6zV9rdZmwOPqq0+Zq19xDqEgagqVbc4pOOShbncuAOIs59R3+3gcF3ZA==" - } - }, - "npm:@webpack-cli/configtest": { - "type": "npm", - "name": "npm:@webpack-cli/configtest", - "data": { - "version": "1.2.0", - "packageName": "@webpack-cli/configtest", - "hash": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==" - } - }, - "npm:adm-zip": { - "type": "npm", - "name": "npm:adm-zip", - "data": { - "version": "0.5.9", - "packageName": "adm-zip", - "hash": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "15.0.5", - "packageName": "cacache", - "hash": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==" - } - }, - "npm:@types/gulp-util": { - "type": "npm", - "name": "npm:@types/gulp-util", - "data": { - "version": "3.0.36", - "packageName": "@types/gulp-util", - "hash": "sha512-hR3troWx2qr8Hx2xXSn0SijTG83WRPNgWS5/h0OtN4Eyqxi3KW1ptLp+zxnO8Z7DCZj0Ij5SSgYBHACMES4VCg==" - } - }, - "npm:@webassemblyjs/wast-printer@1.11.6": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer@1.11.6", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" - } - }, - "npm:wide-align": { - "type": "npm", - "name": "npm:wide-align", - "data": { - "version": "1.1.5", - "packageName": "wide-align", - "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" - } - }, - "npm:@types/copy-webpack-plugin": { - "type": "npm", - "name": "npm:@types/copy-webpack-plugin", - "data": { - "version": "6.4.0", - "packageName": "@types/copy-webpack-plugin", - "hash": "sha512-f5mQG5c7xH3zLGrEmKgzLLFSGNB7Y4+4a+a1X4DvjgfbTEWEZUNNXUqGs5tBVCtb5qKPzm2z+6ixX3xirWmOCg==" - } - }, - "npm:clsx": { - "type": "npm", - "name": "npm:clsx", - "data": { - "version": "1.1.0", - "packageName": "clsx", - "hash": "sha512-3avwM37fSK5oP6M5rQ9CNe99lwxhXDOeSWVPAOYF6OazUTgZCMb0yWlJpmdD74REy1gkEaFiub2ULv4fq9GUhA==" - } - }, - "npm:@babel/plugin-transform-regenerator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-regenerator", - "data": { - "version": "7.22.10", - "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==" - } - }, - "npm:global-dirs@0.1.1": { - "type": "npm", - "name": "npm:global-dirs@0.1.1", - "data": { - "version": "0.1.1", - "packageName": "global-dirs", - "hash": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=" - } - }, - "npm:@babel/polyfill": { - "type": "npm", - "name": "npm:@babel/polyfill", - "data": { - "version": "7.12.1", - "packageName": "@babel/polyfill", - "hash": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==" - } - }, - "npm:ability-attributes-generator": { - "type": "npm", - "name": "npm:ability-attributes-generator", - "data": { - "version": "0.0.8", - "packageName": "ability-attributes-generator", - "hash": "sha512-GN7lfbyOnpYXBEH2BT6e9gsXwna3v+nOfojzHTKJKuo6HiT8seCSLxqWGbxLW/RMNacqIjJ2OA04d4ufzPx9yw==" - } - }, - "npm:agentkeepalive": { - "type": "npm", - "name": "npm:agentkeepalive", - "data": { - "version": "4.2.1", - "packageName": "agentkeepalive", - "hash": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:is-boolean-object": { - "type": "npm", - "name": "npm:is-boolean-object", - "data": { - "version": "1.1.1", - "packageName": "is-boolean-object", - "hash": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==" - } - }, - "npm:semver@7.5.2": { - "type": "npm", - "name": "npm:semver@7.5.2", - "data": { - "version": "7.5.2", - "packageName": "semver", - "hash": "sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==" - } - }, - "npm:cli-table3": { - "type": "npm", - "name": "npm:cli-table3", - "data": { - "version": "0.6.3", - "packageName": "cli-table3", - "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.4", - "packageName": "string.prototype.trimend", - "hash": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==" - } - }, - "npm:trim-repeated": { - "type": "npm", - "name": "npm:trim-repeated", - "data": { - "version": "1.0.0", - "packageName": "trim-repeated", - "hash": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=" - } - }, - "npm:@types/node-fetch": { - "type": "npm", - "name": "npm:@types/node-fetch", - "data": { - "version": "2.5.7", - "packageName": "@types/node-fetch", - "hash": "sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==" - } - }, - "npm:binary-extensions": { - "type": "npm", - "name": "npm:binary-extensions", - "data": { - "version": "2.1.0", - "packageName": "binary-extensions", - "hash": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==" - } - }, - "npm:fetch-retry": { - "type": "npm", - "name": "npm:fetch-retry", - "data": { - "version": "5.0.2", - "packageName": "fetch-retry", - "hash": "sha512-57Hmu+1kc6pKFUGVIobT7qw3NeAzY/uNN26bSevERLVvf6VGFR/ooDCOFBHMNDgAxBiU2YJq1D0vFzc6U1DcPw==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.1", - "packageName": "is-shared-array-buffer", - "hash": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==" - } - }, - "npm:loader-utils@1.4.2": { - "type": "npm", - "name": "npm:loader-utils@1.4.2", - "data": { - "version": "1.4.2", - "packageName": "loader-utils", - "hash": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "3.3.4", - "packageName": "minipass", - "hash": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==" - } - }, - "npm:@babel/plugin-transform-react-jsx-development": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx-development", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-react-jsx-development", - "hash": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==" - } - }, - "npm:yargs@16.2.0": { - "type": "npm", - "name": "npm:yargs@16.2.0", - "data": { - "version": "16.2.0", - "packageName": "yargs", - "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" - } - }, - "npm:@jest/reporters": { - "type": "npm", - "name": "npm:@jest/reporters", - "data": { - "version": "29.7.0", - "packageName": "@jest/reporters", - "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" - } - }, - "npm:@griffel/jest-serializer": { - "type": "npm", - "name": "npm:@griffel/jest-serializer", - "data": { - "version": "1.1.16", - "packageName": "@griffel/jest-serializer", - "hash": "sha512-43EK5EdX/xsSKQl7ObLfM/IxiZU6imlkFoJj7bzsP7aykMn6xePe11oAwMcZb+lMmiP/gtEsNMvsi1UBt+6NFw==" - } - }, - "npm:is-number-object": { - "type": "npm", - "name": "npm:is-number-object", - "data": { - "version": "1.0.5", - "packageName": "is-number-object", - "hash": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" - } - }, - "npm:yargs@17.7.2": { - "type": "npm", - "name": "npm:yargs@17.7.2", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:get-own-enumerable-property-symbols": { - "type": "npm", - "name": "npm:get-own-enumerable-property-symbols", - "data": { - "version": "3.0.0", - "packageName": "get-own-enumerable-property-symbols", - "hash": "sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.3", - "packageName": "@types/range-parser", - "hash": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" - } - }, - "npm:unist-util-is@3.0.0": { - "type": "npm", - "name": "npm:unist-util-is@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "unist-util-is", - "hash": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==" - } - }, - "npm:babel-plugin-polyfill-corejs3@0.1.7": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3@0.1.7", - "data": { - "version": "0.1.7", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==" - } - }, - "npm:@babel/plugin-syntax-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-numeric-separator", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-numeric-separator", - "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - } - }, - "npm:builtin-modules": { - "type": "npm", - "name": "npm:builtin-modules", - "data": { - "version": "3.1.0", - "packageName": "builtin-modules", - "hash": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==" - } - }, - "npm:@griffel/style-types": { - "type": "npm", - "name": "npm:@griffel/style-types", - "data": { - "version": "1.0.1", - "packageName": "@griffel/style-types", - "hash": "sha512-nhVryiNHhoBt5L93tfDYGoE4KtWvhBvY7y1yR1n6WKpRjasgw3GI2pBwiMiVt68bycnyvXIvcJjJTr0QM22VLQ==" - } - }, - "npm:collection-visit": { - "type": "npm", - "name": "npm:collection-visit", - "data": { - "version": "1.0.0", - "packageName": "collection-visit", - "hash": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=" - } - }, - "npm:karma-coverage-istanbul-reporter": { - "type": "npm", - "name": "npm:karma-coverage-istanbul-reporter", - "data": { - "version": "3.0.3", - "packageName": "karma-coverage-istanbul-reporter", - "hash": "sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "4.7.4", - "packageName": "typescript", - "hash": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==" - } - }, - "npm:vm-browserify": { - "type": "npm", - "name": "npm:vm-browserify", - "data": { - "version": "1.1.2", - "packageName": "vm-browserify", - "hash": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "2.4.3", - "packageName": "write-file-atomic", - "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" - } - }, - "npm:void-elements": { - "type": "npm", - "name": "npm:void-elements", - "data": { - "version": "2.0.1", - "packageName": "void-elements", - "hash": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" - } - }, - "npm:@emotion/serialize@1.0.2": { - "type": "npm", - "name": "npm:@emotion/serialize@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "@emotion/serialize", - "hash": "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==" - } - }, - "npm:@babel/helper-define-polyfill-provider@0.1.5": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "data": { - "version": "0.1.5", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==" - } - }, - "npm:cheerio": { - "type": "npm", - "name": "npm:cheerio", - "data": { - "version": "1.0.0-rc.3", - "packageName": "cheerio", - "hash": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==" - } - }, - "npm:commander@2.11.0": { - "type": "npm", - "name": "npm:commander@2.11.0", - "data": { - "version": "2.11.0", - "packageName": "commander", - "hash": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - }, - "npm:detect-file": { - "type": "npm", - "name": "npm:detect-file", - "data": { - "version": "1.0.0", - "packageName": "detect-file", - "hash": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==" - } - }, - "npm:terser@4.8.0": { - "type": "npm", - "name": "npm:terser@4.8.0", - "data": { - "version": "4.8.0", - "packageName": "terser", - "hash": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==" - } - }, - "npm:trim-newlines": { - "type": "npm", - "name": "npm:trim-newlines", - "data": { - "version": "3.0.0", - "packageName": "trim-newlines", - "hash": "sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==" - } - }, - "npm:strip-bom@4.0.0": { - "type": "npm", - "name": "npm:strip-bom@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:array-flatten": { - "type": "npm", - "name": "npm:array-flatten", - "data": { - "version": "1.1.1", - "packageName": "array-flatten", - "hash": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - } - }, - "npm:uuid@9.0.0": { - "type": "npm", - "name": "npm:uuid@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "uuid", - "hash": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" - } - }, - "npm:use-disposable": { - "type": "npm", - "name": "npm:use-disposable", - "data": { - "version": "1.0.1", - "packageName": "use-disposable", - "hash": "sha512-5Sle1XEmK3lw3xyGqeIY7UKkiUgF+TxwUty7fTsqM5D5AxfQfo2ft+LY9xKCA+W5YbaBFbOkWfQsZY/y5JhInA==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:react-addons-shallow-compare": { - "type": "npm", - "name": "npm:react-addons-shallow-compare", - "data": { - "version": "15.6.3", - "packageName": "react-addons-shallow-compare", - "hash": "sha512-EDJbgKTtGRLhr3wiGDXK/+AEJ59yqGS+tKE6mue0aNXT6ZMR7VJbbzIiT6akotmHg1BLj46ElJSb+NBMp80XBg==" - } - }, - "npm:lodash.template": { - "type": "npm", - "name": "npm:lodash.template", - "data": { - "version": "3.6.2", - "packageName": "lodash.template", - "hash": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=" - } - }, - "npm:ret": { - "type": "npm", - "name": "npm:ret", - "data": { - "version": "0.1.15", - "packageName": "ret", - "hash": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - } - }, - "npm:title-case": { - "type": "npm", - "name": "npm:title-case", - "data": { - "version": "2.1.1", - "packageName": "title-case", - "hash": "sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=" - } - }, - "npm:yargs-parser@18.1.3": { - "type": "npm", - "name": "npm:yargs-parser@18.1.3", - "data": { - "version": "18.1.3", - "packageName": "yargs-parser", - "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" - } - }, - "npm:make-error": { - "type": "npm", - "name": "npm:make-error", - "data": { - "version": "1.3.5", - "packageName": "make-error", - "hash": "sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==" - } - }, - "npm:parse-json@2.2.0": { - "type": "npm", - "name": "npm:parse-json@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "parse-json", - "hash": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=" - } - }, - "npm:stack-trace": { - "type": "npm", - "name": "npm:stack-trace", - "data": { - "version": "0.0.10", - "packageName": "stack-trace", - "hash": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.5.5", - "packageName": "@types/jest", - "hash": "sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==" - } - }, - "npm:yallist@2.1.2": { - "type": "npm", - "name": "npm:yallist@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "yallist", - "hash": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-WV3XUC2DB6/+bz1sx+d1Ai9q2Cdr+kTZRN50SOkfmZUQyEBaF6DRYpx/a4ahhxH3ktpNfyY8Maa9OEYxGCBkQA==" - } - }, - "npm:d3-sankey": { - "type": "npm", - "name": "npm:d3-sankey", - "data": { - "version": "0.12.3", - "packageName": "d3-sankey", - "hash": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==" - } - }, - "npm:ext": { - "type": "npm", - "name": "npm:ext", - "data": { - "version": "1.4.0", - "packageName": "ext", - "hash": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==" - } - }, - "npm:buffer-indexof-polyfill": { - "type": "npm", - "name": "npm:buffer-indexof-polyfill", - "data": { - "version": "1.0.2", - "packageName": "buffer-indexof-polyfill", - "hash": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==" - } - }, - "npm:extglob": { - "type": "npm", - "name": "npm:extglob", - "data": { - "version": "2.0.4", - "packageName": "extglob", - "hash": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==" - } - }, - "npm:mkdirp@1.0.4": { - "type": "npm", - "name": "npm:mkdirp@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:browser-stdout": { - "type": "npm", - "name": "npm:browser-stdout", - "data": { - "version": "1.3.1", - "packageName": "browser-stdout", - "hash": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==" - } - }, - "npm:cypress-storybook": { - "type": "npm", - "name": "npm:cypress-storybook", - "data": { - "version": "0.5.1", - "packageName": "cypress-storybook", - "hash": "sha512-+CNDdcrFD3QRvHrjwpVclFpLtseyXA0NxeB3PDTheisvg/OJjLkP96t0I9R66IkZRYUUE3mLhqZpmpsv59FIIw==" - } - }, - "npm:damerau-levenshtein": { - "type": "npm", - "name": "npm:damerau-levenshtein", - "data": { - "version": "1.0.7", - "packageName": "damerau-levenshtein", - "hash": "sha512-VvdQIPGdWP0SqFXghj79Wf/5LArmreyMsGLa6FG6iC4t3j7j5s71TrwWmT/4akbDQIqjfACkLZmjXhA7g2oUZw==" - } - }, - "npm:latest-version": { - "type": "npm", - "name": "npm:latest-version", - "data": { - "version": "3.1.0", - "packageName": "latest-version", - "hash": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=" - } - }, - "npm:parse-filepath": { - "type": "npm", - "name": "npm:parse-filepath", - "data": { - "version": "1.0.2", - "packageName": "parse-filepath", - "hash": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=" - } - }, - "npm:react-refresh": { - "type": "npm", - "name": "npm:react-refresh", - "data": { - "version": "0.11.0", - "packageName": "react-refresh", - "hash": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" - } - }, - "npm:object.entries": { - "type": "npm", - "name": "npm:object.entries", - "data": { - "version": "1.1.5", - "packageName": "object.entries", - "hash": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "1.4.0", - "packageName": "axios", - "hash": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==" - } - }, - "npm:@storybook/csf": { - "type": "npm", - "name": "npm:@storybook/csf", - "data": { - "version": "0.0.2--canary.4566f4d.1", - "packageName": "@storybook/csf", - "hash": "sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==" - } - }, - "npm:lowlight": { - "type": "npm", - "name": "npm:lowlight", - "data": { - "version": "1.11.0", - "packageName": "lowlight", - "hash": "sha512-xrGGN6XLL7MbTMdPD6NfWPwY43SNkjf/d0mecSx/CW36fUZTjRHEq0/Cdug3TWKtRXLWi7iMl1eP0olYxj/a4A==" - } - }, - "npm:repeat-string": { - "type": "npm", - "name": "npm:repeat-string", - "data": { - "version": "1.6.1", - "packageName": "repeat-string", - "hash": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - } - }, - "npm:fs-extra@4.0.3": { - "type": "npm", - "name": "npm:fs-extra@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "fs-extra", - "hash": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==" - } - }, - "npm:console-browserify": { - "type": "npm", - "name": "npm:console-browserify", - "data": { - "version": "1.2.0", - "packageName": "console-browserify", - "hash": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - } - }, - "npm:reselect": { - "type": "npm", - "name": "npm:reselect", - "data": { - "version": "4.1.7", - "packageName": "reselect", - "hash": "sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==" - } - }, - "npm:sentence-case": { - "type": "npm", - "name": "npm:sentence-case", - "data": { - "version": "2.1.1", - "packageName": "sentence-case", - "hash": "sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ=" - } - }, - "npm:socket.io": { - "type": "npm", - "name": "npm:socket.io", - "data": { - "version": "4.5.1", - "packageName": "socket.io", - "hash": "sha512-0y9pnIso5a9i+lJmsCdtmTTgJFFSvNQKDnPQRz28mGNnxbmqYg2QPtJTLFxhymFZhAIn50eHAKzJeiNaKr+yUQ==" - } - }, - "npm:sort-css-media-queries": { - "type": "npm", - "name": "npm:sort-css-media-queries", - "data": { - "version": "1.5.4", - "packageName": "sort-css-media-queries", - "hash": "sha512-YP5W/h4Sid/YP7Lp87ejJ5jP13/Mtqt2vx33XyhO+IAugKlufRPbOrPlIiEUuxmpNBSBd3EeeQpFhdu3RfI2Ag==" - } - }, - "npm:@nx/plugin": { - "type": "npm", - "name": "npm:@nx/plugin", - "data": { - "version": "16.10.0", - "packageName": "@nx/plugin", - "hash": "sha512-oTTl+yZBfj/EBvqp8vxzE/JhavT2lWaWNKBj1B8kNOYDG041Pf6jj7GazcQmPd+g1UM96Ut0HZit/rsoJOTdvQ==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:strip-ansi@6.0.1": { - "type": "npm", - "name": "npm:strip-ansi@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:webpack-dev-middleware@5.3.1": { - "type": "npm", - "name": "npm:webpack-dev-middleware@5.3.1", - "data": { - "version": "5.3.1", - "packageName": "webpack-dev-middleware", - "hash": "sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "4.22.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==" - } - }, - "npm:worker-rpc": { - "type": "npm", - "name": "npm:worker-rpc", - "data": { - "version": "0.1.1", - "packageName": "worker-rpc", - "hash": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==" - } - }, - "npm:@storybook/addon-a11y": { - "type": "npm", - "name": "npm:@storybook/addon-a11y", - "data": { - "version": "6.5.15", - "packageName": "@storybook/addon-a11y", - "hash": "sha512-4IgsCU7mrfooyGSgvyQdkZVu2iGJZqZ+2GDDIzzeIs1yXvuRy6QiHYNzesSrgeL52ykDXaPGuzKu2pcMKfDQHA==" - } - }, - "npm:esbuild-linux-arm@0.14.51": { - "type": "npm", - "name": "npm:esbuild-linux-arm@0.14.51", - "data": { - "version": "0.14.51", - "packageName": "esbuild-linux-arm", - "hash": "sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==" - } - }, - "npm:@microsoft/applicationinsights-analytics-js": { - "type": "npm", - "name": "npm:@microsoft/applicationinsights-analytics-js", - "data": { - "version": "3.0.2", - "packageName": "@microsoft/applicationinsights-analytics-js", - "hash": "sha512-vrgEiT6cKC2Yb0Y6rCp9CXjFStlRZLI/IhIiBEGYaUfzoytLxUj6F/AizUDYBuNQfE+CTYe0jNyqf+RJgEMkJQ==" - } - }, - "npm:duplexer3": { - "type": "npm", - "name": "npm:duplexer3", - "data": { - "version": "0.1.4", - "packageName": "duplexer3", - "hash": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" - } - }, - "npm:to-absolute-glob": { - "type": "npm", - "name": "npm:to-absolute-glob", - "data": { - "version": "2.0.2", - "packageName": "to-absolute-glob", - "hash": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=" - } - }, - "npm:ws@7.5.6": { - "type": "npm", - "name": "npm:ws@7.5.6", - "data": { - "version": "7.5.6", - "packageName": "ws", - "hash": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==" - } - }, - "npm:@pmmmwh/react-refresh-webpack-plugin": { - "type": "npm", - "name": "npm:@pmmmwh/react-refresh-webpack-plugin", - "data": { - "version": "0.5.7", - "packageName": "@pmmmwh/react-refresh-webpack-plugin", - "hash": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==" - } - }, - "npm:arr-diff@1.1.0": { - "type": "npm", - "name": "npm:arr-diff@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "arr-diff", - "hash": "sha1-aHwydYFjWI/vfeezb6vklesaOZo=" - } - }, - "npm:stable": { - "type": "npm", - "name": "npm:stable", - "data": { - "version": "0.1.8", - "packageName": "stable", - "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - } - }, - "npm:mimic-fn@1.2.0": { - "type": "npm", - "name": "npm:mimic-fn@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "mimic-fn", - "hash": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" - } - }, - "npm:promise-retry@1.1.1": { - "type": "npm", - "name": "npm:promise-retry@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "promise-retry", - "hash": "sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0=" - } - }, - "npm:remark-parse": { - "type": "npm", - "name": "npm:remark-parse", - "data": { - "version": "5.0.0", - "packageName": "remark-parse", - "hash": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==" - } - }, - "npm:babel-plugin-lodash": { - "type": "npm", - "name": "npm:babel-plugin-lodash", - "data": { - "version": "3.3.4", - "packageName": "babel-plugin-lodash", - "hash": "sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==" - } - }, - "npm:istanbul-lib-source-maps@3.0.6": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps@3.0.6", - "data": { - "version": "3.0.6", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==" - } - }, - "npm:@types/yauzl": { - "type": "npm", - "name": "npm:@types/yauzl", - "data": { - "version": "2.9.2", - "packageName": "@types/yauzl", - "hash": "sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==" - } - }, - "npm:@jest/core": { - "type": "npm", - "name": "npm:@jest/core", - "data": { - "version": "29.7.0", - "packageName": "@jest/core", - "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" - } - }, - "npm:aws-sign2": { - "type": "npm", - "name": "npm:aws-sign2", - "data": { - "version": "0.7.0", - "packageName": "aws-sign2", - "hash": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - } - }, - "npm:parse-link-header": { - "type": "npm", - "name": "npm:parse-link-header", - "data": { - "version": "2.0.0", - "packageName": "parse-link-header", - "hash": "sha512-xjU87V0VyHZybn2RrCX5TIFGxTVZE6zqqZWMPlIKiSKuWh/X5WZdt+w1Ki1nXB+8L/KtL+nZ4iq+sfI6MrhhMw==" - } - }, - "npm:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "2.8.8", - "packageName": "prettier", - "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" - } - }, - "npm:fela-plugin-placeholder-prefixer": { - "type": "npm", - "name": "npm:fela-plugin-placeholder-prefixer", - "data": { - "version": "10.6.1", - "packageName": "fela-plugin-placeholder-prefixer", - "hash": "sha512-yZcTYsjRXjNrDFeDvML5QalgeO9hHN6sqC3geAwC44GTpaw9BG22BKiuCInvzhkSYWuT+q8XSgPrW7wDwL1TRQ==" - } - }, - "npm:path-case": { - "type": "npm", - "name": "npm:path-case", - "data": { - "version": "2.1.1", - "packageName": "path-case", - "hash": "sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU=" - } - }, - "npm:camelcase-keys": { - "type": "npm", - "name": "npm:camelcase-keys", - "data": { - "version": "6.2.2", - "packageName": "camelcase-keys", - "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" - } - }, - "npm:@webassemblyjs/wasm-parser@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "npm:map-or-similar": { - "type": "npm", - "name": "npm:map-or-similar", - "data": { - "version": "1.5.0", - "packageName": "map-or-similar", - "hash": "sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=" - } - }, - "npm:json-schema-traverse@0.3.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "json-schema-traverse", - "hash": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:mocha": { - "type": "npm", - "name": "npm:mocha", - "data": { - "version": "7.2.0", - "packageName": "mocha", - "hash": "sha512-O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==" - } - }, - "npm:@testing-library/dom": { - "type": "npm", - "name": "npm:@testing-library/dom", - "data": { - "version": "8.11.3", - "packageName": "@testing-library/dom", - "hash": "sha512-9LId28I+lx70wUiZjLvi1DB/WT2zGOxUh46glrSNMaWVx849kKAluezVzZrXJfTKKoQTmEOutLes/bHg4Bj3aA==" - } - }, - "npm:npm-install-checks@6.1.1": { - "type": "npm", - "name": "npm:npm-install-checks@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "npm-install-checks", - "hash": "sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==" - } - }, - "npm:@types/stylis": { - "type": "npm", - "name": "npm:@types/stylis", - "data": { - "version": "4.0.0", - "packageName": "@types/stylis", - "hash": "sha512-DB1wPXVDfTTyLO9tr4wTeAptinTGd+EemFDDJTdCfsLedYXuF1mRWpJtU74Rucqx7N7HecBmMwEERbPpLt1tGA==" - } - }, - "npm:jszip": { - "type": "npm", - "name": "npm:jszip", - "data": { - "version": "3.10.1", - "packageName": "jszip", - "hash": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=" - } - }, - "npm:bluebird@3.4.7": { - "type": "npm", - "name": "npm:bluebird@3.4.7", - "data": { - "version": "3.4.7", - "packageName": "bluebird", - "hash": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" - } - }, - "npm:import-lazy": { - "type": "npm", - "name": "npm:import-lazy", - "data": { - "version": "4.0.0", - "packageName": "import-lazy", - "hash": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==" - } - }, - "npm:chalk@5.2.0": { - "type": "npm", - "name": "npm:chalk@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "chalk", - "hash": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.14.0", - "packageName": "enhanced-resolve", - "hash": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==" - } - }, - "npm:babel-preset-jest": { - "type": "npm", - "name": "npm:babel-preset-jest", - "data": { - "version": "29.6.3", - "packageName": "babel-preset-jest", - "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" - } - }, - "npm:@nx/node": { - "type": "npm", - "name": "npm:@nx/node", - "data": { - "version": "16.10.0", - "packageName": "@nx/node", - "hash": "sha512-mOGxsZzLNg9kMy/FDkCQfhb/ig3WsttHxzG9+ynCHBV5svKOIqA3F+EUp1gre6wgRyi/qrEUhk6GER5ZTX2ygw==" - } - }, - "npm:@nx/nx-darwin-arm64@16.10.0": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64@16.10.0", - "data": { - "version": "16.10.0", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-YF+MIpeuwFkyvM5OwgY/rTNRpgVAI/YiR0yTYCZR+X3AAvP775IVlusNgQ3oedTBRUzyRnI4Tknj1WniENFsvQ==" - } - }, - "npm:d3-fetch": { - "type": "npm", - "name": "npm:d3-fetch", - "data": { - "version": "3.0.1", - "packageName": "d3-fetch", - "hash": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==" - } - }, - "npm:eslint-plugin-import": { - "type": "npm", - "name": "npm:eslint-plugin-import", - "data": { - "version": "2.25.4", - "packageName": "eslint-plugin-import", - "hash": "sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==" - } - }, - "npm:meow": { - "type": "npm", - "name": "npm:meow", - "data": { - "version": "8.1.2", - "packageName": "meow", - "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" - } - }, - "npm:map-visit": { - "type": "npm", - "name": "npm:map-visit", - "data": { - "version": "1.0.0", - "packageName": "map-visit", - "hash": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=" - } - }, - "npm:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:npm-bundled@3.0.0": { - "type": "npm", - "name": "npm:npm-bundled@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "npm-bundled", - "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" - } - }, - "npm:object.getownpropertydescriptors": { - "type": "npm", - "name": "npm:object.getownpropertydescriptors", - "data": { - "version": "2.0.3", - "packageName": "object.getownpropertydescriptors", - "hash": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=" - } - }, - "npm:optionator@0.9.1": { - "type": "npm", - "name": "npm:optionator@0.9.1", - "data": { - "version": "0.9.1", - "packageName": "optionator", - "hash": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==" - } - }, - "npm:lodash.debounce": { - "type": "npm", - "name": "npm:lodash.debounce", - "data": { - "version": "4.0.8", - "packageName": "lodash.debounce", - "hash": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" - } - }, - "npm:jest-get-type@27.5.1": { - "type": "npm", - "name": "npm:jest-get-type@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-get-type", - "hash": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } - }, - "npm:terser-webpack-plugin@1.4.5": { - "type": "npm", - "name": "npm:terser-webpack-plugin@1.4.5", - "data": { - "version": "1.4.5", - "packageName": "terser-webpack-plugin", - "hash": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==" - } - }, - "npm:mocked-env": { - "type": "npm", - "name": "npm:mocked-env", - "data": { - "version": "1.3.2", - "packageName": "mocked-env", - "hash": "sha512-jwm3ziowCjpbLNhUNYwn2G0tawV/ZGRuWeEGt6PItrkQT74Nk3pDldL2pmwm9sQZw6a/x+ZBGeBVYq54acTauQ==" - } - }, - "npm:time-stamp": { - "type": "npm", - "name": "npm:time-stamp", - "data": { - "version": "1.1.0", - "packageName": "time-stamp", - "hash": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.22.6", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" - } - }, - "npm:fs-mkdirp-stream": { - "type": "npm", - "name": "npm:fs-mkdirp-stream", - "data": { - "version": "1.0.0", - "packageName": "fs-mkdirp-stream", - "hash": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=" - } - }, - "npm:@webassemblyjs/leb128@1.9.0": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128@1.9.0", - "data": { - "version": "1.9.0", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.11.0", - "packageName": "object-inspect", - "hash": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" - } - }, - "npm:@sindresorhus/is@5.3.0": { - "type": "npm", - "name": "npm:@sindresorhus/is@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==" - } - }, - "npm:immer": { - "type": "npm", - "name": "npm:immer", - "data": { - "version": "9.0.12", - "packageName": "immer", - "hash": "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" - } - }, - "npm:@charlietango/use-client-hydrated": { - "type": "npm", - "name": "npm:@charlietango/use-client-hydrated", - "data": { - "version": "1.8.2", - "packageName": "@charlietango/use-client-hydrated", - "hash": "sha512-Wlr6MvlCvmPVwAW8Hc/UZaAnNAKfRs2h3vkOFMFSqhaiQp+zix/ZQd+LhoY4iRGJNMhtNuOnht1ShOAz4odTIQ==" - } - }, - "npm:has-value@0.3.1": { - "type": "npm", - "name": "npm:has-value@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "has-value", - "hash": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=" - } - }, - "npm:is-fullwidth-code-point@2.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - } - }, - "npm:whatwg-url@7.0.0": { - "type": "npm", - "name": "npm:whatwg-url@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "whatwg-url", - "hash": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==" - } - }, - "npm:@webassemblyjs/helper-buffer": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" - } - }, - "npm:identity-obj-proxy": { - "type": "npm", - "name": "npm:identity-obj-proxy", - "data": { - "version": "3.0.0", - "packageName": "identity-obj-proxy", - "hash": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=" - } - }, - "npm:minipass@2.9.0": { - "type": "npm", - "name": "npm:minipass@2.9.0", - "data": { - "version": "2.9.0", - "packageName": "minipass", - "hash": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==" - } - }, - "npm:@emotion/css": { - "type": "npm", - "name": "npm:@emotion/css", - "data": { - "version": "10.0.27", - "packageName": "@emotion/css", - "hash": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==" - } - }, - "npm:pascalcase": { - "type": "npm", - "name": "npm:pascalcase", - "data": { - "version": "0.1.1", - "packageName": "pascalcase", - "hash": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" - } - }, - "npm:d3-path": { - "type": "npm", - "name": "npm:d3-path", - "data": { - "version": "1.0.7", - "packageName": "d3-path", - "hash": "sha512-q0cW1RpvA5c5ma2rch62mX8AYaiLX0+bdaSM2wxSU9tXjU4DNvkx9qiUvjkuWCj3p22UO/hlPivujqMiR9PDzA==" - } - }, - "npm:@effect/match": { - "type": "npm", - "name": "npm:@effect/match", - "data": { - "version": "0.24.4", - "packageName": "@effect/match", - "hash": "sha512-oo0uzazHhlDm4shxiMQep5osHsEZmBX6uhB9GM2RXseDahwsKrOp5Q3cMr/J4ZfhruH/0/o7GEhLLHxpwhEtuA==" - } - }, - "npm:jest-axe": { - "type": "npm", - "name": "npm:jest-axe", - "data": { - "version": "6.0.1", - "packageName": "jest-axe", - "hash": "sha512-+KcRAdZeKXBbtHTmMkokRq5/hXHaVFpX+WS2o3uvhkmF3szdr4+TYAz+QuOTeM0B1d4YPoNmQWhGzSzxHJNZrA==" - } - }, - "npm:jest-worker@26.6.2": { - "type": "npm", - "name": "npm:jest-worker@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "jest-worker", - "hash": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==" - } - }, - "npm:@babel/plugin-transform-reserved-words": { - "type": "npm", - "name": "npm:@babel/plugin-transform-reserved-words", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==" - } - }, - "npm:boxen@1.3.0": { - "type": "npm", - "name": "npm:boxen@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "boxen", - "hash": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==" - } - }, - "npm:ignore@4.0.6": { - "type": "npm", - "name": "npm:ignore@4.0.6", - "data": { - "version": "4.0.6", - "packageName": "ignore", - "hash": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - } - }, - "npm:jsbn": { - "type": "npm", - "name": "npm:jsbn", - "data": { - "version": "0.1.1", - "packageName": "jsbn", - "hash": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - } - }, - "npm:rst-selector-parser": { - "type": "npm", - "name": "npm:rst-selector-parser", - "data": { - "version": "2.2.3", - "packageName": "rst-selector-parser", - "hash": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=" - } - }, - "npm:stream-shift": { - "type": "npm", - "name": "npm:stream-shift", - "data": { - "version": "1.0.0", - "packageName": "stream-shift", - "hash": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=" - } - }, - "npm:through2-filter": { - "type": "npm", - "name": "npm:through2-filter", - "data": { - "version": "3.0.0", - "packageName": "through2-filter", - "hash": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==" - } - }, - "npm:resolve@1.1.7": { - "type": "npm", - "name": "npm:resolve@1.1.7", - "data": { - "version": "1.1.7", - "packageName": "resolve", - "hash": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" - } - }, - "npm:@esbuild/linux-loong64@0.19.2": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.19.2", - "data": { - "version": "0.19.2", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-hn28+JNDTxxCpnYjdDYVMNTR3SKavyLlCHHkufHV91fkewpIyQchS1d8wSbmXhs1fiYDpNww8KTFlJ1dHsxeSw==" - } - }, - "npm:@babel/regjsgen": { - "type": "npm", - "name": "npm:@babel/regjsgen", - "data": { - "version": "0.8.0", - "packageName": "@babel/regjsgen", - "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - } - }, - "npm:d3-format": { - "type": "npm", - "name": "npm:d3-format", - "data": { - "version": "1.4.4", - "packageName": "d3-format", - "hash": "sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw==" - } - }, - "npm:eslint-plugin-jsdoc": { - "type": "npm", - "name": "npm:eslint-plugin-jsdoc", - "data": { - "version": "39.9.1", - "packageName": "eslint-plugin-jsdoc", - "hash": "sha512-Rq2QY6BZP2meNIs48aZ3GlIlJgBqFCmR55+UBvaDkA3ZNQ0SvQXOs2QKkubakEijV8UbIVbVZKsOVN8G3MuqZw==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:set-value": { - "type": "npm", - "name": "npm:set-value", - "data": { - "version": "2.0.1", - "packageName": "set-value", - "hash": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.4.2", - "packageName": "cookie", - "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" - } - }, - "npm:unist-util-stringify-position": { - "type": "npm", - "name": "npm:unist-util-stringify-position", - "data": { - "version": "1.1.2", - "packageName": "unist-util-stringify-position", - "hash": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:@types/json5": { - "type": "npm", - "name": "npm:@types/json5", - "data": { - "version": "0.0.29", - "packageName": "@types/json5", - "hash": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" - } - }, - "npm:lru-cache@10.0.1": { - "type": "npm", - "name": "npm:lru-cache@10.0.1", - "data": { - "version": "10.0.1", - "packageName": "lru-cache", - "hash": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==" - } - }, - "npm:override-require": { - "type": "npm", - "name": "npm:override-require", - "data": { - "version": "1.1.1", - "packageName": "override-require", - "hash": "sha1-auIvresfhQ/7DPTCD/e4fl62UN8=" - } - }, - "npm:camelcase-css": { - "type": "npm", - "name": "npm:camelcase-css", - "data": { - "version": "2.0.1", - "packageName": "camelcase-css", - "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" - } - }, - "npm:@istanbuljs/load-nyc-config": { - "type": "npm", - "name": "npm:@istanbuljs/load-nyc-config", - "data": { - "version": "1.1.0", - "packageName": "@istanbuljs/load-nyc-config", - "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" - } - }, - "npm:@storybook/components": { - "type": "npm", - "name": "npm:@storybook/components", - "data": { - "version": "6.5.15", - "packageName": "@storybook/components", - "hash": "sha512-bHTT0Oa3s4g+MBMaLBbX9ofMtb1AW59AzIUNGrfqW1XqJMGuUHMiJ7TSo+i5dRSFpbFygnwMEG9LfHxpR2Z0Dw==" - } - }, - "npm:async-each": { - "type": "npm", - "name": "npm:async-each", - "data": { - "version": "1.0.3", - "packageName": "async-each", - "hash": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" - } - }, - "npm:diff": { - "type": "npm", - "name": "npm:diff", - "data": { - "version": "4.0.2", - "packageName": "diff", - "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - } - }, - "npm:form-data@3.0.0": { - "type": "npm", - "name": "npm:form-data@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "form-data", - "hash": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==" - } - }, - "npm:htmlparser2@6.1.0": { - "type": "npm", - "name": "npm:htmlparser2@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "htmlparser2", - "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" - } - }, - "npm:@types/karma": { - "type": "npm", - "name": "npm:@types/karma", - "data": { - "version": "6.3.3", - "packageName": "@types/karma", - "hash": "sha512-nRMec4mTCt+tkpRqh5/pAxmnjzEgAaalIq7mdfLFH88gSRC8+bxejLiSjHMMT/vHIhJHqg4GPIGCnCFbwvDRww==" - } - }, - "npm:async@3.2.3": { - "type": "npm", - "name": "npm:async@3.2.3", - "data": { - "version": "3.2.3", - "packageName": "async", - "hash": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" - } - }, - "npm:@phenomnomnominal/tsquery": { - "type": "npm", - "name": "npm:@phenomnomnominal/tsquery", - "data": { - "version": "6.1.2", - "packageName": "@phenomnomnominal/tsquery", - "hash": "sha512-NahxUvas4D4iRV1NqlL6Z3mIl2Fo+rw1x77wgZpYyaQjQnS4svv6XoVzjcRRtnP5cfY6XuVKLZki8Zltkz8z0w==" - } - }, - "npm:command-line-usage": { - "type": "npm", - "name": "npm:command-line-usage", - "data": { - "version": "6.1.3", - "packageName": "command-line-usage", - "hash": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==" - } - }, - "npm:escape-string-regexp@2.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } - }, - "npm:chalk@1.1.3": { - "type": "npm", - "name": "npm:chalk@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "chalk", - "hash": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=" - } - }, - "npm:is-fullwidth-code-point@1.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=" - } - }, - "npm:is-regex": { - "type": "npm", - "name": "npm:is-regex", - "data": { - "version": "1.1.4", - "packageName": "is-regex", - "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" - } - }, - "npm:jest-environment-node": { - "type": "npm", - "name": "npm:jest-environment-node", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:lodash.find": { - "type": "npm", - "name": "npm:lodash.find", - "data": { - "version": "4.6.0", - "packageName": "lodash.find", - "hash": "sha1-ywcE1Hq3F4n/oN6Ll92Sb7iLE7E=" - } - }, - "npm:cli-table": { - "type": "npm", - "name": "npm:cli-table", - "data": { - "version": "0.3.1", - "packageName": "cli-table", - "hash": "sha1-9TsFJmqLGguTSz0IIebi3FkUriM=" - } - }, - "npm:buffer-equal": { - "type": "npm", - "name": "npm:buffer-equal", - "data": { - "version": "1.0.0", - "packageName": "buffer-equal", - "hash": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "3.0.6", - "packageName": "nopt", - "hash": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=" - } - }, - "npm:parallel-webpack": { - "type": "npm", - "name": "npm:parallel-webpack", - "data": { - "version": "2.6.0", - "packageName": "parallel-webpack", - "hash": "sha512-aOOLfQ40yWWRt8214F0zNWp0DWbeCs7tJaEur0/XUlYU8Yht1sMTYt+eNrbY4VkM4O/SRSme7cdZJTtIantiOw==" - } - }, - "npm:is-extendable@1.0.1": { - "type": "npm", - "name": "npm:is-extendable@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "is-extendable", - "hash": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" - } - }, - "npm:@npmcli/promise-spawn@6.0.2": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==" - } - }, - "npm:please-upgrade-node": { - "type": "npm", - "name": "npm:please-upgrade-node", - "data": { - "version": "3.2.0", - "packageName": "please-upgrade-node", - "hash": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==" - } - }, - "npm:@types/react-dom": { - "type": "npm", - "name": "npm:@types/react-dom", - "data": { - "version": "17.0.15", - "packageName": "@types/react-dom", - "hash": "sha512-Tr9VU9DvNoHDWlmecmcsE5ZZiUkYx+nKBzum4Oxe1K0yJVyBlfbq7H3eXjxXqJczBKqPGq3EgfTru4MgKb9+Yw==" - } - }, - "npm:good-listener": { - "type": "npm", - "name": "npm:good-listener", - "data": { - "version": "1.2.2", - "packageName": "good-listener", - "hash": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=" - } - }, - "npm:pretty-format@27.5.1": { - "type": "npm", - "name": "npm:pretty-format@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "pretty-format", - "hash": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==" - } - }, - "npm:react-router-dom": { - "type": "npm", - "name": "npm:react-router-dom", - "data": { - "version": "5.2.0", - "packageName": "react-router-dom", - "hash": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==" - } - }, - "npm:resolve-pathname": { - "type": "npm", - "name": "npm:resolve-pathname", - "data": { - "version": "3.0.0", - "packageName": "resolve-pathname", - "hash": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" - } - }, - "npm:p-defer": { - "type": "npm", - "name": "npm:p-defer", - "data": { - "version": "1.0.0", - "packageName": "p-defer", - "hash": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=" - } - }, - "npm:resolve@1.17.0": { - "type": "npm", - "name": "npm:resolve@1.17.0", - "data": { - "version": "1.17.0", - "packageName": "resolve", - "hash": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==" - } - }, - "npm:slash@2.0.0": { - "type": "npm", - "name": "npm:slash@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "slash", - "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "1.8.1", - "packageName": "http-errors", - "hash": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:supports-hyperlinks@2.2.0": { - "type": "npm", - "name": "npm:supports-hyperlinks@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "supports-hyperlinks", - "hash": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==" - } - }, - "npm:fs-extra@9.1.0": { - "type": "npm", - "name": "npm:fs-extra@9.1.0", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:tabster": { - "type": "npm", - "name": "npm:tabster", - "data": { - "version": "5.0.1", - "packageName": "tabster", - "hash": "sha512-j5GGbN214MiPihGKemENq+fAHKoEpKZvVKakG/reUk3u+dPm/xvmlxYCQY8XayzxpvEu0i/6cMYjBMsEjcvdgA==" - } - }, - "npm:string_decoder@0.10.31": { - "type": "npm", - "name": "npm:string_decoder@0.10.31", - "data": { - "version": "0.10.31", - "packageName": "string_decoder", - "hash": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" - } - }, - "npm:abab": { - "type": "npm", - "name": "npm:abab", - "data": { - "version": "2.0.6", - "packageName": "abab", - "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - } - }, - "npm:karma-chrome-launcher": { - "type": "npm", - "name": "npm:karma-chrome-launcher", - "data": { - "version": "3.1.1", - "packageName": "karma-chrome-launcher", - "hash": "sha512-hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ==" - } - }, - "npm:ts-node": { - "type": "npm", - "name": "npm:ts-node", - "data": { - "version": "10.9.1", - "packageName": "ts-node", - "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "8.3.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "29.6.3", - "packageName": "@jest/schemas", - "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" - } - }, - "npm:pretty-bytes@6.1.1": { - "type": "npm", - "name": "npm:pretty-bytes@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "pretty-bytes", - "hash": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==" - } - }, - "npm:hosted-git-info@2.8.9": { - "type": "npm", - "name": "npm:hosted-git-info@2.8.9", - "data": { - "version": "2.8.9", - "packageName": "hosted-git-info", - "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" - } - }, - "npm:https-browserify": { - "type": "npm", - "name": "npm:https-browserify", - "data": { - "version": "1.0.0", - "packageName": "https-browserify", - "hash": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - } - }, - "npm:webpack-sources": { - "type": "npm", - "name": "npm:webpack-sources", - "data": { - "version": "1.4.3", - "packageName": "webpack-sources", - "hash": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==" - } - }, - "npm:@babel/helper-plugin-utils@7.10.4": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils@7.10.4", - "data": { - "version": "7.10.4", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, - "npm:jsesc@0.5.0": { - "type": "npm", - "name": "npm:jsesc@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "jsesc", - "hash": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" - } - }, - "npm:log-symbols@3.0.0": { - "type": "npm", - "name": "npm:log-symbols@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "log-symbols", - "hash": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==" - } - }, - "npm:sanitize-filename": { - "type": "npm", - "name": "npm:sanitize-filename", - "data": { - "version": "1.6.3", - "packageName": "sanitize-filename", - "hash": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==" - } - }, - "npm:is-valid-glob": { - "type": "npm", - "name": "npm:is-valid-glob", - "data": { - "version": "1.0.0", - "packageName": "is-valid-glob", - "hash": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" - } - }, - "npm:is-dom": { - "type": "npm", - "name": "npm:is-dom", - "data": { - "version": "1.1.0", - "packageName": "is-dom", - "hash": "sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==" - } - }, - "npm:yargs@15.4.1": { - "type": "npm", - "name": "npm:yargs@15.4.1", - "data": { - "version": "15.4.1", - "packageName": "yargs", - "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" - } - }, - "npm:gauge@3.0.2": { - "type": "npm", - "name": "npm:gauge@3.0.2", - "data": { - "version": "3.0.2", - "packageName": "gauge", - "hash": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==" - } - } - }, - "dependencies": { - "@fluentui/react-storybook-addon-export-to-sandbox": [ - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "npm:@types/dedent", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "npm:codesandbox-import-utils", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "@fluentui/babel-preset-storybook-full-source", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon-export-to-sandbox", - "target": "npm:@storybook/addons", - "type": "static" - } - ], - "@fluentui/babel-preset-storybook-full-source": [ - { - "source": "@fluentui/babel-preset-storybook-full-source", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-storybook-full-source", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-storybook-full-source", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-storybook-full-source", - "target": "npm:pkg-up", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-storybook-full-source", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-storybook-full-source", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-storybook-full-source", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-timepicker-compat-preview": [ - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/react-combobox", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-teaching-popover-preview": [ - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-popover", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-teaching-popover-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/babel-preset-global-context": [ - { - "source": "@fluentui/babel-preset-global-context", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "npm:@emotion/hash", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/babel-preset-global-context", - "target": "@fluentui/global-context", - "type": "static" - } - ], - "@fluentui/react-portal-compat-context": [ - { - "source": "@fluentui/react-portal-compat-context", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat-context", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat-context", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat-context", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat-context", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat-context", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-swatch-picker-preview": [ - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-swatch-picker-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-conformance-griffel": [ - { - "source": "@fluentui/react-conformance-griffel", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-conformance-griffel", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-conformance-griffel", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-conformance-griffel", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-conformance-griffel", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-conformance-griffel", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-conformance-griffel", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-conformance-griffel", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-conformance-griffel", - "target": "npm:typescript", - "type": "static" - } - ], - "@fluentui/react-component-nesting-registry": [ - { - "source": "@fluentui/react-component-nesting-registry", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-component-nesting-registry", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "@fluentui/react-component-nesting-registry", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-component-nesting-registry", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-component-nesting-registry", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-component-nesting-registry", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-component-nesting-registry", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-component-nesting-registry", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-component-nesting-registry", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-northstar-emotion-renderer": [ - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:@emotion/cache", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:@emotion/serialize", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:@emotion/sheet", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "@fluentui/react-northstar-styles-renderer", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "@fluentui/styles", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:stylis-plugin-rtl", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:@types/stylis", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-emotion-renderer", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-colorpicker-compat": [ - { - "source": "@fluentui/react-colorpicker-compat", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-colorpicker-compat", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-northstar-styles-renderer": [ - { - "source": "@fluentui/react-northstar-styles-renderer", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-styles-renderer", - "target": "@fluentui/styles", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-styles-renderer", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-styles-renderer", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-styles-renderer", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-styles-renderer", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-styles-renderer", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-datepicker-compat": [ - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-calendar-compat", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-input", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-popover", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-positioning", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-datepicker-compat", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-timepicker-compat": [ - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/react-combobox", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-timepicker-compat", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-context-selector": [ - { - "source": "@fluentui/react-context-selector", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-context-selector", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/react-component-event-listener": [ - { - "source": "@fluentui/react-component-event-listener", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "npm:@types/simulant", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "npm:simulant", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-component-event-listener", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-northstar-fela-renderer": [ - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "@fluentui/react-northstar-styles-renderer", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "@fluentui/styles", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:fela", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:fela-dom", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:fela-plugin-embedded", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:fela-plugin-fallback-value", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:fela-plugin-placeholder-prefixer", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:fela-plugin-rtl", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:fela-tools", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:fela-utils", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:inline-style-expand-shorthand", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:react-fela", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-fela-renderer", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-motions-preview": [ - { - "source": "@fluentui/react-motions-preview", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-motions-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-migration-v0-v9": [ - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "@fluentui/scripts-storybook", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v0-v9", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-calendar-compat": [ - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-calendar-compat", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-shared-contexts": [ - { - "source": "@fluentui/react-shared-contexts", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-shared-contexts", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-shared-contexts", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-shared-contexts", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-shared-contexts", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-shared-contexts", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-shared-contexts", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-migration-v8-v9": [ - { - "source": "@fluentui/react-migration-v8-v9", - "target": "npm:@ctrl/tinycolor", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/fluent2-theme", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-migration-v8-v9", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-storybook-addon": [ - { - "source": "@fluentui/react-storybook-addon", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "@fluentui/react-provider", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "@fluentui/react-storybook-addon", - "target": "npm:@storybook/theming", - "type": "static" - } - ], - "@fluentui/react-motion-preview": [ - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-motion-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-rating-preview": [ - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-rating-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-search-preview": [ - { - "source": "@fluentui/react-search-preview", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/react-input", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-search-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-portal-compat": [ - { - "source": "@fluentui/react-portal-compat", - "target": "@fluentui/react-portal-compat-context", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-portal-compat", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-northstar-prototypes": [ - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/accessibility", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/code-sandbox", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/docs-components", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/react-bindings", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/react-component-event-listener", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/react-component-ref", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/react-icons-northstar", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:classnames", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:copy-to-clipboard", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:faker", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:formik", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:moment", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:react-custom-scrollbars", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:react-document-title", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:react-hook-form", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:react-textarea-autosize", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:react-virtualized", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:react-window", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:@types/classnames", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:@types/faker", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:@types/react-custom-scrollbars", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:@types/react-virtualized", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:@types/react-window", - "type": "static" - }, - { - "source": "@fluentui/react-northstar-prototypes", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-list-preview": [ - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-list-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/priority-overflow": [ - { - "source": "@fluentui/priority-overflow", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/priority-overflow", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/priority-overflow", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/priority-overflow", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-nav-preview": [ - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-nav-preview", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-positioning": [ - { - "source": "@fluentui/react-positioning", - "target": "npm:@floating-ui/dom", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "npm:@floating-ui/devtools", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-positioning", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-virtualizer": [ - { - "source": "@fluentui/react-virtualizer", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-virtualizer", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-jsx-runtime": [ - { - "source": "@fluentui/react-jsx-runtime", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-jsx-runtime", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-message-bar": [ - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "npm:react-transition-group", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-message-bar", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-infobutton": [ - { - "source": "@fluentui/react-infobutton", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/react-popover", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-infobutton", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-breadcrumb": [ - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-link", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-breadcrumb", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-spinbutton": [ - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-spinbutton", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-components": [ - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-accordion", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-alert", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-avatar", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-badge", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-card", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-checkbox", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-combobox", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-dialog", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-divider", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-drawer", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-image", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-infobutton", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-infolabel", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-input", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-link", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-menu", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-overflow", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-persona", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-popover", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-positioning", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-progress", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-provider", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-radio", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-select", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-skeleton", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-slider", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-spinbutton", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-spinner", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-switch", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-table", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-tabs", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-tags", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-textarea", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-toast", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-toolbar", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-tooltip", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-text", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-virtualizer", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-tree", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-message-bar", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/react-breadcrumb", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "npm:react-hook-form", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-components", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/react-theme-sass": [ - { - "source": "@fluentui/react-theme-sass", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-theme-sass", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-theme-sass", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-theme-sass", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-theme-sass", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-accordion": [ - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-accordion", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/react-utilities": [ - { - "source": "@fluentui/react-utilities", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-utilities", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-utilities", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-utilities", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-utilities", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-utilities", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-utilities", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-utilities", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-infolabel": [ - { - "source": "@fluentui/react-infolabel", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/react-popover", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-infolabel", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-skeleton": [ - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-skeleton", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-textarea": [ - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-textarea", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-checkbox": [ - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-checkbox", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-overflow": [ - { - "source": "@fluentui/react-overflow", - "target": "@fluentui/priority-overflow", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-overflow", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/global-context": [ - { - "source": "@fluentui/global-context", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/global-context", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/react-provider": [ - { - "source": "@fluentui/react-provider", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-provider", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-progress": [ - { - "source": "@fluentui/react-progress", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-progress", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-combobox": [ - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-positioning", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-combobox", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/theme-designer": [ - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/react-alert", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/react-storybook-addon-export-to-sandbox", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:@types/dedent", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:codesandbox-import-utils", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/theme-designer", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-tooltip": [ - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-positioning", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-tooltip", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/keyboard-keys": [ - { - "source": "@fluentui/keyboard-keys", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/keyboard-keys", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/keyboard-keys", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/keyboard-keys", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-toolbar": [ - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-divider", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-radio", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-toolbar", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-popover": [ - { - "source": "@fluentui/react-popover", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-positioning", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-popover", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/react-icons-northstar": [ - { - "source": "@fluentui/react-icons-northstar", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "@fluentui/accessibility", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "@fluentui/react-bindings", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "@fluentui/styles", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "npm:classnames", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "npm:@types/classnames", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-icons-northstar", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-divider": [ - { - "source": "@fluentui/react-divider", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-divider", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-tabster": [ - { - "source": "@fluentui/react-tabster", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "npm:keyborg", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "npm:tabster", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-tabster", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-persona": [ - { - "source": "@fluentui/react-persona", - "target": "@fluentui/react-avatar", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/react-badge", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-persona", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-spinner": [ - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-spinner", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-drawer": [ - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-dialog", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-motion-preview", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-drawer", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-button": [ - { - "source": "@fluentui/react-button", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/a11y-testing", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-button", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-slider": [ - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-slider", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-select": [ - { - "source": "@fluentui/react-select", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-select", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-switch": [ - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-switch", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-dialog": [ - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "npm:react-transition-group", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-dialog", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-avatar": [ - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-badge", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-popover", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-tooltip", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-avatar", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/react-portal": [ - { - "source": "@fluentui/react-portal", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "npm:use-disposable", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-portal", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-table": [ - { - "source": "@fluentui/react-table", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-avatar", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-checkbox", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-radio", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-table", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-badge": [ - { - "source": "@fluentui/react-badge", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-badge", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/perf-test-northstar": [ - { - "source": "@fluentui/perf-test-northstar", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/perf-test-northstar", - "target": "@fluentui/react-northstar-prototypes", - "type": "static" - }, - { - "source": "@fluentui/perf-test-northstar", - "target": "@fluentui/digest", - "type": "static" - }, - { - "source": "@fluentui/perf-test-northstar", - "target": "npm:flamegrill", - "type": "static" - }, - { - "source": "@fluentui/perf-test-northstar", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-field": [ - { - "source": "@fluentui/react-field", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-field", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-theme": [ - { - "source": "@fluentui/react-theme", - "target": "@fluentui/tokens", - "type": "static" - }, - { - "source": "@fluentui/react-theme", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-theme", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-theme", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-theme", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-alert": [ - { - "source": "@fluentui/react-alert", - "target": "@fluentui/react-avatar", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-alert", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-label": [ - { - "source": "@fluentui/react-label", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-label", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-toast": [ - { - "source": "@fluentui/react-toast", - "target": "npm:react-transition-group", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-toast", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-input": [ - { - "source": "@fluentui/react-input", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/react-text", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-input", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-image": [ - { - "source": "@fluentui/react-image", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-image", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-component-ref": [ - { - "source": "@fluentui/react-component-ref", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-component-ref", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "@fluentui/react-component-ref", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-component-ref", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-component-ref", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-component-ref", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-component-ref", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-component-ref", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-component-ref", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/jest-serializer-merge-styles": [ - { - "source": "@fluentui/jest-serializer-merge-styles", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/jest-serializer-merge-styles", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/jest-serializer-merge-styles", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/jest-serializer-merge-styles", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-radio": [ - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-radio", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/react-text": [ - { - "source": "@fluentui/react-text", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-text", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-menu": [ - { - "source": "@fluentui/react-menu", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-positioning", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-menu", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/react-aria": [ - { - "source": "@fluentui/react-aria", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-aria", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-tree": [ - { - "source": "@fluentui/react-tree", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-avatar", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-checkbox", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-radio", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:@dnd-kit/core", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:@dnd-kit/sortable", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:@dnd-kit/utilities", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-tree", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/ability-attributes": [ - { - "source": "@fluentui/ability-attributes", - "target": "npm:ability-attributes", - "type": "static" - }, - { - "source": "@fluentui/ability-attributes", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/ability-attributes", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/ability-attributes", - "target": "npm:ability-attributes-generator", - "type": "static" - } - ], - "@fluentui/react-tags": [ - { - "source": "@fluentui/react-tags", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-aria", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-avatar", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-tags", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-tabs": [ - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-tabs", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/ts-minbar-test-react-components": [ - { - "source": "@fluentui/ts-minbar-test-react-components", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/ts-minbar-test-react-components", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/ts-minbar-test-react-components", - "target": "@fluentui/scripts-projects-test", - "type": "static" - } - ], - "@fluentui/react-link": [ - { - "source": "@fluentui/react-link", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/a11y-testing", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-link", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-card": [ - { - "source": "@fluentui/react-card", - "target": "@fluentui/keyboard-keys", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/react-tabster", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/react-jsx-runtime", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/react-conformance-griffel", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-card", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/docs-components": [ - { - "source": "@fluentui/docs-components", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:copy-to-clipboard", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:prismjs", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:react-ace", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:react-codesandboxer", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:react-element-to-jsx-string", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/docs-components", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-icons-mdl2-branded": [ - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "@fluentui/react-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2-branded", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-docsite-components": [ - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/theme", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/example-data", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/public-docsite-setup", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/react-hooks", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/react-monaco-editor", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:color-check", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:markdown-to-jsx", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:office-ui-fabric-core", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:react-custom-scrollbars", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:react-syntax-highlighter", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/common-styles", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:@types/color-check", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:@types/react-custom-scrollbars", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-docsite-components", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-proptypes": [ - { - "source": "@fluentui/react-proptypes", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-proptypes", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/react-proptypes", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "@fluentui/react-proptypes", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-proptypes", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-proptypes", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-proptypes", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-proptypes", - "target": "npm:lerna-alias", - "type": "static" - } - ], - "@fluentui/react-telemetry": [ - { - "source": "@fluentui/react-telemetry", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "@fluentui/react-bindings", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "@fluentui/react-component-event-listener", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "npm:react-table", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "npm:@types/react-table", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-telemetry", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-northstar": [ - { - "source": "@fluentui/react-northstar", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/accessibility", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/dom-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-bindings", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-component-event-listener", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-component-nesting-registry", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-component-ref", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-icons-northstar", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-northstar-styles-renderer", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-portal-compat-context", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-proptypes", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/state", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/styles", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:@popperjs/core", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:body-scroll-lock", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:classnames", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:compute-scroll-into-view", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:downshift", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:react-transition-group", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/a11y-testing", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:@types/classnames", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:@types/faker", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:@types/simulant", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:faker", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:fela-tools", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:qs", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:simulant", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-northstar", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-bindings": [ - { - "source": "@fluentui/react-bindings", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/accessibility", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/dom-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/react-component-event-listener", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/react-component-ref", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/react-northstar-fela-renderer", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/react-northstar-styles-renderer", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/state", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/styles", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:classnames", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:@types/classnames", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-bindings", - "target": "npm:scheduler", - "type": "static" - } - ], - "@fluentui/circulars-test": [ - { - "source": "@fluentui/circulars-test", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/circulars-test", - "target": "@fluentui/scripts-gulp", - "type": "static" - } - ], - "@fluentui/accessibility": [ - { - "source": "@fluentui/accessibility", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/accessibility", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/accessibility", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/accessibility", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/accessibility", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/accessibility", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/accessibility", - "target": "npm:lerna-alias", - "type": "static" - } - ], - "@fluentui/local-sandbox": [ - { - "source": "@fluentui/local-sandbox", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/local-sandbox", - "target": "@fluentui/scripts-babel", - "type": "static" - } - ], - "@fluentui/perf-test-react-components": [ - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/scripts-perf-test-flamegrill", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/react-avatar", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/react-persona", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/react-provider", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/react-spinbutton", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/perf-test-react-components", - "target": "@fluentui/scripts-storybook", - "type": "static" - } - ], - "@fluentui/react-builder": [ - { - "source": "@fluentui/react-builder", - "target": "@fluentui/accessibility", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/code-sandbox", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/docs-components", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/react-component-event-listener", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/react-component-ref", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/react-icons-northstar", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:immer", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:lz-string", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:react-document-title", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:react-frame-component", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:use-immer", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:@types/react-frame-component", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:@babel/standalone", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-builder", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/projects-test": [ - { - "source": "@fluentui/projects-test", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/projects-test", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/projects-test", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/projects-test", - "target": "@fluentui/scripts-projects-test", - "type": "static" - } - ], - "@fluentui/react-file-type-icons": [ - { - "source": "@fluentui/react-file-type-icons", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-file-type-icons", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-file-type-icons", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-file-type-icons", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-file-type-icons", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-file-type-icons", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-file-type-icons", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-file-type-icons", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/vr-tests-react-components": [ - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-accordion", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-avatar", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-badge", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-button", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-calendar-compat", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-card", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-checkbox", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-combobox", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-context-selector", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-datepicker-compat", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-dialog", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-divider", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-drawer", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-field", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-image", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-infolabel", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-input", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-label", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-link", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-menu", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-message-bar", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-persona", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-popover", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-portal", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-positioning", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-progress", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-provider", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-radio", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-search-preview", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-select", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-shared-contexts", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-skeleton", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-slider", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-spinner", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-spinbutton", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-storybook-addon", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-storybook-addon-export-to-sandbox", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-switch", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-table", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-tabs", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-tags", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-text", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-textarea", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-timepicker-compat-preview", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-toast", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-tooltip", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-toolbar", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-tree", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/react-breadcrumb", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/vr-tests-react-components", - "target": "@fluentui/scripts-storybook", - "type": "static" - } - ], - "@fluentui/react-window-provider": [ - { - "source": "@fluentui/react-window-provider", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-window-provider", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-window-provider", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-window-provider", - "target": "@fluentui/test-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-window-provider", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-window-provider", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-window-provider", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-window-provider", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-window-provider", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/code-sandbox": [ - { - "source": "@fluentui/code-sandbox", - "target": "@fluentui/docs-components", - "type": "static" - }, - { - "source": "@fluentui/code-sandbox", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/code-sandbox", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/code-sandbox", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/code-sandbox", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/code-sandbox", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/code-sandbox", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/code-sandbox", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/public-docsite-setup": [ - { - "source": "@fluentui/public-docsite-setup", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-setup", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/recipes-react-components": [ - { - "source": "@fluentui/recipes-react-components", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "@fluentui/react-theme", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "@fluentui/react-provider", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "@fluentui/react-storybook-addon", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "@fluentui/react-storybook-addon-export-to-sandbox", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/recipes-react-components", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/public-docsite-resources": [ - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/react-charting", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/react-examples", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/azure-themes", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/react-docsite-components", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/font-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/theme-samples", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/react-monaco-editor", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "npm:office-ui-fabric-core", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/api-docs", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-resources", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/scripts-update-release-notes": [ - { - "source": "@fluentui/scripts-update-release-notes", - "target": "@fluentui/scripts-github", - "type": "static" - } - ], - "@fluentui/react-monaco-editor": [ - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/example-data", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/monaco-editor", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/react-hooks", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/react-charting", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:raw-loader", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:react-syntax-highlighter", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:@types/react-syntax-highlighter", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-monaco-editor", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-icon-provider": [ - { - "source": "@fluentui/react-icon-provider", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-icon-provider", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/scripts-perf-test-flamegrill": [ - { - "source": "@fluentui/scripts-perf-test-flamegrill", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/scripts-perf-test-flamegrill", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/scripts-perf-test-flamegrill", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/scripts-perf-test-flamegrill", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/scripts-perf-test-flamegrill", - "target": "npm:webpack", - "type": "static" - } - ], - "@fluentui/date-time-utilities": [ - { - "source": "@fluentui/date-time-utilities", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/date-time-utilities", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/date-time-utilities", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/date-time-utilities", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/date-time-utilities", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/date-time-utilities", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/scripts-bundle-size-auditor": [], - "@fluentui/react-experiments": [ - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/theme", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/example-data", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/foundation-legacy", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/font-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/react-hooks", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:deep-assign", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/common-styles", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:@types/deep-assign", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:@types/react-addons-test-utils", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/jest-serializer-merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:react-hooks-testing-library", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-experiments", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/webpack-utilities": [ - { - "source": "@fluentui/webpack-utilities", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "@fluentui/webpack-utilities", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/webpack-utilities", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/webpack-utilities", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/webpack-utilities", - "target": "npm:webpack", - "type": "static" - } - ], - "@fluentui/react-conformance": [ - { - "source": "@fluentui/react-conformance", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:react-docgen-typescript", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:@testing-library/react", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:jest", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-conformance", - "target": "npm:typescript", - "type": "static" - } - ], - "@fluentui/foundation-legacy": [ - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/jest-serializer-merge-styles", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "npm:react-hooks-testing-library", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/foundation-legacy", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/scheme-utilities": [ - { - "source": "@fluentui/scheme-utilities", - "target": "@fluentui/theme", - "type": "static" - }, - { - "source": "@fluentui/scheme-utilities", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/scheme-utilities", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/scheme-utilities", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/scheme-utilities", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/scheme-utilities", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/ts-minbar-test-react": [ - { - "source": "@fluentui/ts-minbar-test-react", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/ts-minbar-test-react", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/ts-minbar-test-react", - "target": "@fluentui/scripts-projects-test", - "type": "static" - } - ], - "@fluentui/react-icons-mdl2": [ - { - "source": "@fluentui/react-icons-mdl2", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "@fluentui/react-icon-provider", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-icons-mdl2", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-date-time": [ - { - "source": "@fluentui/react-date-time", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-date-time", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/scripts-fluentui-publish": [ - { - "source": "@fluentui/scripts-fluentui-publish", - "target": "@fluentui/scripts-monorepo", - "type": "static" - } - ], - "@fluentui/style-utilities": [ - { - "source": "@fluentui/style-utilities", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "@fluentui/theme", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/style-utilities", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/digest": [ - { - "source": "@fluentui/digest", - "target": "npm:querystring", - "type": "static" - } - ], - "@fluentui/styles": [ - { - "source": "@fluentui/styles", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/styles", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "@fluentui/styles", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/styles", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/styles", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/styles", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/styles", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/styles", - "target": "npm:lerna-alias", - "type": "static" - } - ], - "@fluentui/font-icons-mdl2": [ - { - "source": "@fluentui/font-icons-mdl2", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/font-icons-mdl2", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/font-icons-mdl2", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/font-icons-mdl2", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/font-icons-mdl2", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/font-icons-mdl2", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/font-icons-mdl2", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/web-components": [ - { - "source": "@fluentui/web-components", - "target": "npm:@microsoft/fast-colors", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:@microsoft/fast-element", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:@microsoft/fast-foundation", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:@microsoft/fast-web-utilities", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:@types/chai", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:@types/chai-spies", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:@types/karma", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:@types/mocha", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:chai", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:chai-spies", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:esm", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:ignore-loader", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:istanbul", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:istanbul-instrumenter-loader", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:jsdom-global", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-chrome-launcher", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-coverage", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-coverage-istanbul-reporter", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-firefox-launcher", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-mocha", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-mocha-reporter", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-source-map-support", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-sourcemap-loader", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:karma-webpack", - "type": "static" - }, - { - "source": "@fluentui/web-components", - "target": "npm:mocha", - "type": "static" - } - ], - "@fluentui/react-charting": [ - { - "source": "@fluentui/react-charting", - "target": "@fluentui/react-focus", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/theme-samples", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-array", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-axis", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-format", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-hierarchy", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-sankey", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-scale", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-selection", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-shape", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-time-format", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/d3-time", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-axis", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-hierarchy", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-sankey", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-scale", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-selection", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-shape", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-time-format", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:d3-time", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/react-addons-test-utils", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/jest-serializer-merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:jest-canvas-mock", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-charting", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-examples": [ - { - "source": "@fluentui/react-examples", - "target": "@fluentui/azure-themes", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/date-time-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/dom-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/example-data", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/font-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/foundation-legacy", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react-cards", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react-charting", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react-docsite-components", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react-experiments", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react-file-type-icons", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react-focus", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react-hooks", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/react-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/scheme-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/theme", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/theme-samples", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "npm:d3-fetch", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/storybook", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "npm:@types/d3-format", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "npm:@types/d3-fetch", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-examples", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/test-utilities": [ - { - "source": "@fluentui/test-utilities", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/test-utilities", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/test-utilities", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/test-utilities", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/test-utilities", - "target": "npm:enzyme", - "type": "static" - }, - { - "source": "@fluentui/test-utilities", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/test-utilities", - "target": "npm:react-test-renderer", - "type": "static" - } - ], - "@fluentui/scripts-package-manager": [], - "@fluentui/state": [ - { - "source": "@fluentui/state", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "@fluentui/state", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/state", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/state", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/state", - "target": "npm:lerna-alias", - "type": "static" - } - ], - "@fluentui/common-styles": [ - { - "source": "@fluentui/common-styles", - "target": "npm:office-ui-fabric-core", - "type": "static" - }, - { - "source": "@fluentui/common-styles", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/common-styles", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/theme-samples": [ - { - "source": "@fluentui/theme-samples", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/theme-samples", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/theme-samples", - "target": "@fluentui/scheme-utilities", - "type": "static" - }, - { - "source": "@fluentui/theme-samples", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/theme-samples", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/theme-samples", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/theme-samples", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/eslint-plugin": [ - { - "source": "@fluentui/eslint-plugin", - "target": "npm:@griffel/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:@rnx-kit/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:@typescript-eslint/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-config-airbnb", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-import-resolver-typescript", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-plugin-deprecation", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-plugin-import", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-plugin-jest", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-plugin-jsdoc", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-plugin-jsx-a11y", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-plugin-react", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint-plugin-react-hooks", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:jju", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "@fluentui/eslint-plugin", - "target": "npm:typescript", - "type": "static" - } - ], - "@fluentui/perf": [ - { - "source": "@fluentui/perf", - "target": "npm:@babel/polyfill", - "type": "static" - }, - { - "source": "@fluentui/perf", - "target": "@fluentui/docs", - "type": "static" - }, - { - "source": "@fluentui/perf", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/perf", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/perf", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/perf", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "@fluentui/perf", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/perf", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/perf", - "target": "@fluentui/scripts-monorepo", - "type": "static" - } - ], - "@fluentui/docs": [ - { - "source": "@fluentui/docs", - "target": "npm:@charlietango/use-script", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/ability-attributes", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/accessibility", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/code-sandbox", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/docs-components", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-bindings", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-builder", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-component-event-listener", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-component-ref", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-icons-northstar", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-northstar-emotion-renderer", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-northstar-fela-renderer", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-northstar-prototypes", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-northstar-styles-renderer", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/react-telemetry", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/styles", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:@mdx-js/react", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:classnames", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:color", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:copy-to-clipboard", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:faker", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:formik", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:moment", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:qs", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-codesandboxer", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-custom-scrollbars", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-document-title", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-hook-form", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-hot-loader", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-markdown", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-router-dom", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-source-render", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-textarea-autosize", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-virtualized", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-vis", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:react-window", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:semver", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/scripts-gulp", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "@fluentui/scripts-storybook", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:@types/classnames", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:@types/color", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:@types/faker", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:@types/react-custom-scrollbars", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:@types/react-router-dom", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:@types/react-virtualized", - "type": "static" - }, - { - "source": "@fluentui/docs", - "target": "npm:@types/react-window", - "type": "static" - } - ], - "@fluentui/monaco-editor": [ - { - "source": "@fluentui/monaco-editor", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/monaco-editor", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/monaco-editor", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/monaco-editor", - "target": "npm:monaco-editor", - "type": "static" - }, - { - "source": "@fluentui/monaco-editor", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/dom-utilities": [ - { - "source": "@fluentui/dom-utilities", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/dom-utilities", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/dom-utilities", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/dom-utilities", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/dom-utilities", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/dom-utilities", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/public-docsite-v9": [ - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-calendar-compat", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-datepicker-compat", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-migration-v8-v9", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-migration-v0-v9", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-icons-northstar", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-storybook-addon", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-storybook-addon-export-to-sandbox", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/theme-designer", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-rating-preview", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-search-preview", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-motion-preview", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-teaching-popover-preview", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/react-timepicker-compat-preview", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "npm:@microsoft/applicationinsights-web", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "npm:react-window", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/scripts-storybook", - "type": "static" - }, - { - "source": "@fluentui/public-docsite-v9", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/workspace-plugin": [], - "@fluentui/fluent2-theme": [ - { - "source": "@fluentui/fluent2-theme", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/fluent2-theme", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/fluent2-theme", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/fluent2-theme", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/fluent2-theme", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/fluent2-theme", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/react-18-tests-v9": [ - { - "source": "@fluentui/react-18-tests-v9", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v9", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v9", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v9", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v9", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v9", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v9", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v9", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v9", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-18-tests-v8": [ - { - "source": "@fluentui/react-18-tests-v8", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "@fluentui/react-hooks", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "@fluentui/scripts-cypress", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-18-tests-v8", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/azure-themes": [ - { - "source": "@fluentui/azure-themes", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/azure-themes", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/azure-themes", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/azure-themes", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/azure-themes", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/azure-themes", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/e2e": [ - { - "source": "@fluentui/e2e", - "target": "@fluentui/accessibility", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "@fluentui/react-icons-northstar", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "@fluentui/react-northstar", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "@fluentui/react-northstar-prototypes", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "npm:@types/react-router-dom", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "npm:lerna-alias", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "npm:react-router-dom", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/e2e", - "target": "@fluentui/scripts-gulp", - "type": "static" - } - ], - "@fluentui/theming-designer": [ - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/react-docsite-components", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/foundation-legacy", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/scheme-utilities", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/font-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/theming-designer", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/merge-styles": [ - { - "source": "@fluentui/merge-styles", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/merge-styles", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/merge-styles", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/merge-styles", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/merge-styles", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/merge-styles", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/merge-styles", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/keyboard-key": [ - { - "source": "@fluentui/keyboard-key", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/keyboard-key", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/keyboard-key", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/keyboard-key", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/keyboard-key", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/scripts-api-extractor": [], - "@fluentui/cra-template": [ - { - "source": "@fluentui/cra-template", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/cra-template", - "target": "@fluentui/scripts-projects-test", - "type": "static" - } - ], - "@fluentui/example-data": [ - { - "source": "@fluentui/example-data", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/example-data", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/example-data", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/example-data", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/example-data", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/a11y-testing": [ - { - "source": "@fluentui/a11y-testing", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/a11y-testing", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/a11y-testing", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/a11y-testing", - "target": "npm:jest", - "type": "static" - }, - { - "source": "@fluentui/a11y-testing", - "target": "npm:@testing-library/react", - "type": "static" - }, - { - "source": "@fluentui/a11y-testing", - "target": "npm:@testing-library/user-event", - "type": "static" - }, - { - "source": "@fluentui/a11y-testing", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/scripts-projects-test": [ - { - "source": "@fluentui/scripts-projects-test", - "target": "@fluentui/scripts-utils", - "type": "static" - }, - { - "source": "@fluentui/scripts-projects-test", - "target": "@fluentui/scripts-puppeteer", - "type": "static" - }, - { - "source": "@fluentui/scripts-projects-test", - "target": "@fluentui/scripts-monorepo", - "type": "static" - } - ], - "@fluentui/set-version": [ - { - "source": "@fluentui/set-version", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/set-version", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/set-version", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/react-hooks": [ - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/react-window-provider", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/test-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-hooks", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/react-cards": [ - { - "source": "@fluentui/react-cards", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "@fluentui/foundation-legacy", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "@fluentui/jest-serializer-merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react-cards", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/react-focus": [ - { - "source": "@fluentui/react-focus", - "target": "@fluentui/keyboard-key", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/test-utilities", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/jest-serializer-merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react-focus", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/scripts-lint-staged": [ - { - "source": "@fluentui/scripts-lint-staged", - "target": "@fluentui/scripts-monorepo", - "type": "static" - } - ], - "@fluentui/pr-deploy-site": [ - { - "source": "@fluentui/pr-deploy-site", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/pr-deploy-site", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/pr-deploy-site", - "target": "@fluentui/scripts-monorepo", - "type": "static" - } - ], - "@fluentui/public-docsite": [ - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/font-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/public-docsite-resources", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/public-docsite-setup", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/react-docsite-components", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/react-examples", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/react-experiments", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/fluent2-theme", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/react-file-type-icons", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/react-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/react-icons-mdl2-branded", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/theme", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/theme-samples", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "npm:office-ui-fabric-core", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "npm:whatwg-fetch", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/common-styles", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/react-monaco-editor", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "npm:write-file-webpack-plugin", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/public-docsite", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/utilities": [ - { - "source": "@fluentui/utilities", - "target": "@fluentui/dom-utilities", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "@fluentui/jest-serializer-merge-styles", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "@fluentui/test-utilities", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/utilities", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/scripts-triage-bot": [], - "@fluentui/storybook": [ - { - "source": "@fluentui/storybook", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "@fluentui/theme", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "npm:@storybook/addon-knobs", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "npm:@storybook/addon-essentials", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "@fluentui/azure-themes", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "@fluentui/theme-samples", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/storybook", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/scripts-generators": [ - { - "source": "@fluentui/scripts-generators", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/scripts-generators", - "target": "@fluentui/scripts-projects-test", - "type": "static" - } - ], - "@fluentui/scripts-beachball": [ - { - "source": "@fluentui/scripts-beachball", - "target": "@fluentui/scripts-github", - "type": "static" - }, - { - "source": "@fluentui/scripts-beachball", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/scripts-beachball", - "target": "@fluentui/scripts-ts-node", - "type": "static" - } - ], - "@fluentui/scripts-storybook": [ - { - "source": "@fluentui/scripts-storybook", - "target": "@fluentui/scripts-monorepo", - "type": "static" - } - ], - "@fluentui/codemods": [ - { - "source": "@fluentui/codemods", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/codemods", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/codemods", - "target": "npm:ts-morph", - "type": "static" - }, - { - "source": "@fluentui/codemods", - "target": "npm:glob", - "type": "static" - }, - { - "source": "@fluentui/codemods", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "@fluentui/codemods", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/codemods", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/codemods", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/ssr-tests-v9": [ - { - "source": "@fluentui/ssr-tests-v9", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests-v9", - "target": "@fluentui/react-utilities", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests-v9", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests-v9", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests-v9", - "target": "@fluentui/scripts-storybook", - "type": "static" - } - ], - "@fluentui/api-docs": [ - { - "source": "@fluentui/api-docs", - "target": "npm:@microsoft/api-extractor-model", - "type": "static" - }, - { - "source": "@fluentui/api-docs", - "target": "npm:@microsoft/tsdoc", - "type": "static" - }, - { - "source": "@fluentui/api-docs", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "@fluentui/api-docs", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/api-docs", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/scripts-executors": [ - { - "source": "@fluentui/scripts-executors", - "target": "@fluentui/scripts-utils", - "type": "static" - }, - { - "source": "@fluentui/scripts-executors", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/scripts-executors", - "target": "@fluentui/scripts-prettier", - "type": "static" - } - ], - "@fluentui/scripts-puppeteer": [], - "@fluentui/scripts-prettier": [ - { - "source": "@fluentui/scripts-prettier", - "target": "@fluentui/scripts-monorepo", - "type": "static" - } - ], - "@fluentui/scripts-dangerjs": [ - { - "source": "@fluentui/scripts-dangerjs", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/scripts-dangerjs", - "target": "@fluentui/scripts-utils", - "type": "static" - } - ], - "@fluentui/scripts-test-ssr": [ - { - "source": "@fluentui/scripts-test-ssr", - "target": "@fluentui/scripts-puppeteer", - "type": "static" - }, - { - "source": "@fluentui/scripts-test-ssr", - "target": "@fluentui/scripts-ts-node", - "type": "static" - } - ], - "@fluentui/scripts-monorepo": [ - { - "source": "@fluentui/scripts-monorepo", - "target": "@fluentui/scripts-utils", - "type": "static" - } - ], - "@fluentui/stress-test": [ - { - "source": "@fluentui/stress-test", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "@fluentui/react-components", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "npm:@fluentui/react-icons", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "@fluentui/web-components", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "npm:@microsoft/fast-element", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "npm:afterframe", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "npm:random-seedable", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/stress-test", - "target": "@fluentui/scripts-storybook", - "type": "static" - } - ], - "@fluentui/scripts-cypress": [], - "@fluentui/scripts-webpack": [ - { - "source": "@fluentui/scripts-webpack", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/scripts-webpack", - "target": "@fluentui/scripts-utils", - "type": "static" - } - ], - "@fluentui/tokens": [ - { - "source": "@fluentui/tokens", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "@fluentui/tokens", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/tokens", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/tokens", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/scripts-ts-node": [], - "@fluentui/perf-test": [ - { - "source": "@fluentui/perf-test", - "target": "@fluentui/scripts-perf-test-flamegrill", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "@fluentui/example-data", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/perf-test", - "target": "@fluentui/scripts-storybook", - "type": "static" - } - ], - "@fluentui/theme": [ - { - "source": "@fluentui/theme", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/theme", - "target": "npm:react", - "type": "static" - } - ], - "@fluentui/scripts-github": [], - "@fluentui/react": [ - { - "source": "@fluentui/react", - "target": "@fluentui/date-time-utilities", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/foundation-legacy", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/font-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/react-focus", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/react-hooks", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/react-portal-compat-context", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/react-window-provider", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/set-version", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/style-utilities", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/theme", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/utilities", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/common-styles", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/example-data", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/jest-serializer-merge-styles", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/react-conformance", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/test-utilities", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/webpack-utilities", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "npm:office-ui-fabric-core", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/scripts-api-extractor", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/scripts-jest", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "@fluentui/scripts-webpack", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/react", - "target": "npm:react-dom", - "type": "static" - } - ], - "@fluentui/ssr-tests": [ - { - "source": "@fluentui/ssr-tests", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests", - "target": "npm:@microsoft/load-themed-styles", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests", - "target": "npm:@types/mocha", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests", - "target": "@fluentui/public-docsite-resources", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests", - "target": "npm:mocha", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests", - "target": "@fluentui/scripts-tasks", - "type": "static" - }, - { - "source": "@fluentui/ssr-tests", - "target": "@fluentui/scripts-webpack", - "type": "static" - } - ], - "@fluentui/vr-tests": [ - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/example-data", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/font-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/react", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/react-experiments", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/react-hooks", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/react-icons-mdl2", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/storybook", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/react-charting", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "npm:react", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/eslint-plugin", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/scripts-storybook", - "type": "static" - }, - { - "source": "@fluentui/vr-tests", - "target": "@fluentui/scripts-tasks", - "type": "static" - } - ], - "@fluentui/scripts-utils": [], - "@fluentui/scripts-tasks": [ - { - "source": "@fluentui/scripts-tasks", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/scripts-tasks", - "target": "@fluentui/scripts-utils", - "type": "static" - }, - { - "source": "@fluentui/scripts-tasks", - "target": "@fluentui/scripts-prettier", - "type": "static" - }, - { - "source": "@fluentui/scripts-tasks", - "target": "npm:flamegrill", - "type": "static" - } - ], - "@fluentui/scripts-babel": [], - "@fluentui/scripts-jest": [ - { - "source": "@fluentui/scripts-jest", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/scripts-jest", - "target": "@fluentui/scripts-utils", - "type": "static" - } - ], - "@fluentui/scripts-gulp": [ - { - "source": "@fluentui/scripts-gulp", - "target": "@fluentui/scripts-monorepo", - "type": "static" - }, - { - "source": "@fluentui/scripts-gulp", - "target": "@fluentui/scripts-utils", - "type": "static" - }, - { - "source": "@fluentui/scripts-gulp", - "target": "@fluentui/scripts-prettier", - "type": "static" - }, - { - "source": "@fluentui/scripts-gulp", - "target": "@fluentui/scripts-puppeteer", - "type": "static" - }, - { - "source": "@fluentui/scripts-gulp", - "target": "@fluentui/scripts-babel", - "type": "static" - }, - { - "source": "@fluentui/scripts-gulp", - "target": "@fluentui/scripts-projects-test", - "type": "static" - } - ], - "@fluentui/typings": [], - "npm:@actions/core": [ - { - "source": "npm:@actions/core", - "target": "npm:@actions/http-client", - "type": "static" - }, - { - "source": "npm:@actions/core", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:@actions/github": [ - { - "source": "npm:@actions/github", - "target": "npm:@actions/http-client", - "type": "static" - }, - { - "source": "npm:@actions/github", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@actions/github", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@actions/github", - "target": "npm:@octokit/plugin-rest-endpoint-methods", - "type": "static" - } - ], - "npm:@actions/http-client": [ - { - "source": "npm:@actions/http-client", - "target": "npm:tunnel", - "type": "static" - } - ], - "npm:@ampproject/remapping": [ - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/gen-mapping@0.1.1", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@azure/abort-controller": [ - { - "source": "npm:@azure/abort-controller", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:@azure/core-auth": [ - { - "source": "npm:@azure/core-auth", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-auth", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/core-client": [ - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/core-asynciterator-polyfill", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/core-rest-pipeline", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:@azure/core-tracing@1.0.0-preview.11", - "type": "static" - }, - { - "source": "npm:@azure/core-client", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/core-http": [ - { - "source": "npm:@azure/core-http", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@azure/core-tracing@1.0.0-preview.8", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@types/node-fetch", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:@types/tunnel", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:form-data@3.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:tough-cookie@4.1.2", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:tunnel", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@azure/core-http", - "target": "npm:xml2js", - "type": "static" - } - ], - "npm:@azure/core-lro": [ - { - "source": "npm:@azure/core-lro", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-lro", - "target": "npm:@azure/core-http", - "type": "static" - }, - { - "source": "npm:@azure/core-lro", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:@azure/core-lro", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:@azure/core-paging": [ - { - "source": "npm:@azure/core-paging", - "target": "npm:@azure/core-asynciterator-polyfill", - "type": "static" - } - ], - "npm:@azure/core-rest-pipeline": [ - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:http-proxy-agent@4.0.1", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-rest-pipeline", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:@azure/core-tracing@1.0.0-preview.11": [ - { - "source": "npm:@azure/core-tracing@1.0.0-preview.11", - "target": "npm:@opencensus/web-types", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.11", - "target": "npm:@opentelemetry/api@1.0.0-rc.0", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.11", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/core-tracing": [ - { - "source": "npm:@azure/core-tracing", - "target": "npm:@opentelemetry/api@1.0.3", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@azure/core-tracing@1.0.0-preview.8": [ - { - "source": "npm:@azure/core-tracing@1.0.0-preview.8", - "target": "npm:@opencensus/web-types", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.8", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@azure/core-tracing@1.0.0-preview.8", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:@azure/core-xml": [ - { - "source": "npm:@azure/core-xml", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/core-xml", - "target": "npm:xml2js", - "type": "static" - } - ], - "npm:@azure/data-tables": [ - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-auth", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-client", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-paging", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-rest-pipeline", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-tracing", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/core-xml", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@azure/data-tables", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:@azure/logger": [ - { - "source": "npm:@azure/logger", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:@azure/storage-blob": [ - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/abort-controller", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/core-http", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/core-lro", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/core-paging", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/core-tracing@1.0.0-preview.8", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@azure/logger", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:@opentelemetry/api", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:@azure/storage-blob", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:@babel/code-frame@7.12.11": [ - { - "source": "npm:@babel/code-frame@7.12.11", - "target": "npm:@babel/highlight", - "type": "static" - } - ], - "npm:@babel/code-frame": [ - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - } - ], - "npm:@babel/core@7.12.9": [ - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:@babel/core@7.12.9", - "target": "npm:source-map@0.5.7", - "type": "static" - } - ], - "npm:@babel/core": [ - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/generator": [ - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - } - ], - "npm:@babel/helper-annotate-as-pure": [ - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-builder-binary-assignment-operator-visitor": [ - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-compilation-targets": [ - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/helper-create-class-features-plugin": [ - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/helper-create-regexp-features-plugin": [ - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/helper-define-polyfill-provider@0.1.5": [ - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/helper-define-polyfill-provider": [ - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:@babel/helper-function-name": [ - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-hoist-variables": [ - { - "source": "npm:@babel/helper-hoist-variables", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-member-expression-to-functions": [ - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-imports": [ - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-transforms": [ - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - } - ], - "npm:@babel/helper-optimise-call-expression": [ - { - "source": "npm:@babel/helper-optimise-call-expression", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-remap-async-to-generator": [ - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - } - ], - "npm:@babel/helper-replace-supers": [ - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - } - ], - "npm:@babel/helper-simple-access": [ - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-skip-transparent-expression-wrappers": [ - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-split-export-declaration": [ - { - "source": "npm:@babel/helper-split-export-declaration", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-wrap-function": [ - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helpers": [ - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/highlight": [ - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-class-properties": [ - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-decorators": [ - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-export-default-from": [ - { - "source": "npm:@babel/plugin-proposal-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-default-from", - "target": "npm:@babel/plugin-syntax-export-default-from", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-export-namespace-from": [ - { - "source": "npm:@babel/plugin-proposal-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-object-rest-spread": [ - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-optional-chaining": [ - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-private-methods": [ - { - "source": "npm:@babel/plugin-proposal-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": [ - { - "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-async-generators": [ - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-bigint": [ - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-class-properties": [ - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-class-static-block": [ - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-decorators": [ - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-dynamic-import": [ - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-export-default-from": [ - { - "source": "npm:@babel/plugin-syntax-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-export-namespace-from": [ - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-flow": [ - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-assertions": [ - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-attributes": [ - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-meta": [ - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-json-strings": [ - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-jsx@7.12.1": [ - { - "source": "npm:@babel/plugin-syntax-jsx@7.12.1", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-jsx": [ - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-logical-assignment-operators": [ - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-numeric-separator": [ - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-object-rest-spread": [ - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-optional-chaining": [ - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-private-property-in-object": [ - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-top-level-await": [ - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-typescript": [ - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-unicode-sets-regex": [ - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-arrow-functions": [ - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-async-generator-functions": [ - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - } - ], - "npm:@babel/plugin-transform-async-to-generator": [ - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-block-scoped-functions": [ - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-block-scoping": [ - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-class-properties": [ - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-class-static-block": [ - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - } - ], - "npm:@babel/plugin-transform-classes": [ - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals", - "type": "static" - } - ], - "npm:@babel/plugin-transform-computed-properties": [ - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - } - ], - "npm:@babel/plugin-transform-destructuring": [ - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-dotall-regex": [ - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-duplicate-keys": [ - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-dynamic-import": [ - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - } - ], - "npm:@babel/plugin-transform-exponentiation-operator": [ - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-export-namespace-from": [ - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - } - ], - "npm:@babel/plugin-transform-flow-strip-types": [ - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - } - ], - "npm:@babel/plugin-transform-for-of": [ - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-function-name": [ - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-json-strings": [ - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - } - ], - "npm:@babel/plugin-transform-literals": [ - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-logical-assignment-operators": [ - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - } - ], - "npm:@babel/plugin-transform-member-expression-literals": [ - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-amd": [ - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-commonjs": [ - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-systemjs": [ - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-umd": [ - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-named-capturing-groups-regex": [ - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-new-target": [ - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-numeric-separator": [ - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-rest-spread": [ - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-super": [ - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - } - ], - "npm:@babel/plugin-transform-optional-chaining": [ - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-transform-parameters": [ - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-private-methods": [ - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-private-property-in-object": [ - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - } - ], - "npm:@babel/plugin-transform-property-literals": [ - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-display-name": [ - { - "source": "npm:@babel/plugin-transform-react-display-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-jsx-development": [ - { - "source": "npm:@babel/plugin-transform-react-jsx-development", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-jsx": [ - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-pure-annotations": [ - { - "source": "npm:@babel/plugin-transform-react-pure-annotations", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-pure-annotations", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-regenerator": [ - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:regenerator-transform", - "type": "static" - } - ], - "npm:@babel/plugin-transform-reserved-words": [ - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-runtime": [ - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/plugin-transform-shorthand-properties": [ - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-spread": [ - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-sticky-regex": [ - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-template-literals": [ - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-typeof-symbol": [ - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-typescript": [ - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-escapes": [ - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-property-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-sets-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/polyfill": [ - { - "source": "npm:@babel/polyfill", - "target": "npm:core-js@2.6.11", - "type": "static" - }, - { - "source": "npm:@babel/polyfill", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@babel/preset-env": [ - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/preset-flow": [ - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - } - ], - "npm:@babel/preset-modules": [ - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:@babel/preset-react": [ - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx-development", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-pure-annotations", - "type": "static" - } - ], - "npm:@babel/preset-typescript": [ - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - } - ], - "npm:@babel/register": [ - { - "source": "npm:@babel/register", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:find-cache-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:@babel/runtime-corejs3": [ - { - "source": "npm:@babel/runtime-corejs3", - "target": "npm:core-js-pure", - "type": "static" - }, - { - "source": "npm:@babel/runtime-corejs3", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@babel/runtime": [ - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.0", - "type": "static" - } - ], - "npm:@babel/template": [ - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/traverse": [ - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - } - ], - "npm:@babel/types": [ - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - } - ], - "npm:@charlietango/use-script": [ - { - "source": "npm:@charlietango/use-script", - "target": "npm:@charlietango/use-client-hydrated", - "type": "static" - } - ], - "npm:@cnakazawa/watch": [ - { - "source": "npm:@cnakazawa/watch", - "target": "npm:exec-sh", - "type": "static" - }, - { - "source": "npm:@cnakazawa/watch", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:@cspotcode/source-map-support": [ - { - "source": "npm:@cspotcode/source-map-support", - "target": "npm:@jridgewell/trace-mapping@0.3.9", - "type": "static" - } - ], - "npm:@cypress/react": [ - { - "source": "npm:@cypress/react", - "target": "npm:@cypress/mount-utils", - "type": "static" - }, - { - "source": "npm:@cypress/react", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@cypress/react", - "target": "npm:find-webpack", - "type": "static" - }, - { - "source": "npm:@cypress/react", - "target": "npm:find-yarn-workspace-root", - "type": "static" - } - ], - "npm:@cypress/request": [ - { - "source": "npm:@cypress/request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:form-data@2.3.3", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:http-signature", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:qs@6.5.3", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:@cypress/webpack-dev-server": [ - { - "source": "npm:@cypress/webpack-dev-server", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@cypress/webpack-dev-server", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@cypress/webpack-dev-server", - "target": "npm:webpack-merge", - "type": "static" - } - ], - "npm:@cypress/xvfb": [ - { - "source": "npm:@cypress/xvfb", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:lodash.once", - "type": "static" - } - ], - "npm:@dnd-kit/accessibility": [ - { - "source": "npm:@dnd-kit/accessibility", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@dnd-kit/core": [ - { - "source": "npm:@dnd-kit/core", - "target": "npm:@dnd-kit/accessibility", - "type": "static" - }, - { - "source": "npm:@dnd-kit/core", - "target": "npm:@dnd-kit/utilities", - "type": "static" - }, - { - "source": "npm:@dnd-kit/core", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@dnd-kit/sortable": [ - { - "source": "npm:@dnd-kit/sortable", - "target": "npm:@dnd-kit/utilities", - "type": "static" - }, - { - "source": "npm:@dnd-kit/sortable", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@dnd-kit/utilities": [ - { - "source": "npm:@dnd-kit/utilities", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@dsherret/to-absolute-glob": [ - { - "source": "npm:@dsherret/to-absolute-glob", - "target": "npm:is-absolute", - "type": "static" - }, - { - "source": "npm:@dsherret/to-absolute-glob", - "target": "npm:is-negated-glob", - "type": "static" - } - ], - "npm:@effect/io": [ - { - "source": "npm:@effect/io", - "target": "npm:@effect/data", - "type": "static" - } - ], - "npm:@effect/match": [ - { - "source": "npm:@effect/match", - "target": "npm:@effect/data", - "type": "static" - }, - { - "source": "npm:@effect/match", - "target": "npm:@effect/schema", - "type": "static" - } - ], - "npm:@effect/schema": [ - { - "source": "npm:@effect/schema", - "target": "npm:@effect/data", - "type": "static" - }, - { - "source": "npm:@effect/schema", - "target": "npm:@effect/io", - "type": "static" - }, - { - "source": "npm:@effect/schema", - "target": "npm:fast-check", - "type": "static" - } - ], - "npm:@emotion/cache": [ - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/sheet", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/stylis", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/cache", - "target": "npm:@emotion/weak-memoize", - "type": "static" - } - ], - "npm:@emotion/cache@11.4.0": [ - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:@emotion/sheet@1.0.1", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:@emotion/utils@1.0.0", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:@emotion/weak-memoize", - "type": "static" - }, - { - "source": "npm:@emotion/cache@11.4.0", - "target": "npm:stylis", - "type": "static" - } - ], - "npm:@emotion/core": [ - { - "source": "npm:@emotion/core", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/cache", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/css", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/serialize", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/sheet", - "type": "static" - }, - { - "source": "npm:@emotion/core", - "target": "npm:@emotion/utils", - "type": "static" - } - ], - "npm:@emotion/css": [ - { - "source": "npm:@emotion/css", - "target": "npm:@emotion/serialize", - "type": "static" - }, - { - "source": "npm:@emotion/css", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/css", - "target": "npm:babel-plugin-emotion", - "type": "static" - } - ], - "npm:@emotion/is-prop-valid": [ - { - "source": "npm:@emotion/is-prop-valid", - "target": "npm:@emotion/memoize", - "type": "static" - } - ], - "npm:@emotion/serialize": [ - { - "source": "npm:@emotion/serialize", - "target": "npm:@emotion/hash", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:@emotion/unitless", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:@emotion/utils", - "type": "static" - }, - { - "source": "npm:@emotion/serialize", - "target": "npm:csstype@2.6.19", - "type": "static" - } - ], - "npm:@emotion/serialize@1.0.2": [ - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:@emotion/hash@0.8.0", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:@emotion/unitless", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:@emotion/utils@1.0.0", - "type": "static" - }, - { - "source": "npm:@emotion/serialize@1.0.2", - "target": "npm:csstype", - "type": "static" - } - ], - "npm:@es-joy/jsdoccomment": [ - { - "source": "npm:@es-joy/jsdoccomment", - "target": "npm:comment-parser", - "type": "static" - }, - { - "source": "npm:@es-joy/jsdoccomment", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:@es-joy/jsdoccomment", - "target": "npm:jsdoc-type-pratt-parser", - "type": "static" - } - ], - "npm:@eslint-community/eslint-utils": [ - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@eslint/eslintrc": [ - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals@13.12.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore@4.0.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:@floating-ui/dom": [ - { - "source": "npm:@floating-ui/dom", - "target": "npm:@floating-ui/core", - "type": "static" - } - ], - "npm:@fluentui/dom-utilities@1.1.1": [ - { - "source": "npm:@fluentui/dom-utilities@1.1.1", - "target": "npm:@uifabric/set-version", - "type": "static" - }, - { - "source": "npm:@fluentui/dom-utilities@1.1.1", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:@fluentui/react-icons": [ - { - "source": "npm:@fluentui/react-icons", - "target": "npm:@griffel/react", - "type": "static" - }, - { - "source": "npm:@fluentui/react-icons", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@griffel/babel-preset": [ - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@linaria/babel-preset", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:@linaria/shaker", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "npm:@griffel/babel-preset", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@griffel/core": [ - { - "source": "npm:@griffel/core", - "target": "npm:@emotion/hash@0.9.1", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:@griffel/style-types", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:rtl-css-js", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "npm:@griffel/core", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@griffel/eslint-plugin": [ - { - "source": "npm:@griffel/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@griffel/eslint-plugin", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@griffel/eslint-plugin", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@griffel/jest-serializer": [ - { - "source": "npm:@griffel/jest-serializer", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/jest-serializer", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@griffel/react": [ - { - "source": "npm:@griffel/react", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/react", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@griffel/shadow-dom": [ - { - "source": "npm:@griffel/shadow-dom", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/shadow-dom", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@griffel/style-types": [ - { - "source": "npm:@griffel/style-types", - "target": "npm:csstype", - "type": "static" - } - ], - "npm:@griffel/webpack-extraction-plugin": [ - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:@griffel/core", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:stylis", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-extraction-plugin", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@griffel/webpack-loader": [ - { - "source": "npm:@griffel/webpack-loader", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-loader", - "target": "npm:@griffel/babel-preset", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-loader", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:@griffel/webpack-loader", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@gulp-sourcemaps/identity-map": [ - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:acorn@5.7.4", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:css", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:normalize-path@2.1.1", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/identity-map", - "target": "npm:through2@2.0.5", - "type": "static" - } - ], - "npm:@gulp-sourcemaps/map-sources": [ - { - "source": "npm:@gulp-sourcemaps/map-sources", - "target": "npm:normalize-path@2.1.1", - "type": "static" - }, - { - "source": "npm:@gulp-sourcemaps/map-sources", - "target": "npm:through2@2.0.5", - "type": "static" - } - ], - "npm:@hot-loader/react-dom@17.0.2": [ - { - "source": "npm:@hot-loader/react-dom@17.0.2", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:@hot-loader/react-dom@17.0.2", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:@hot-loader/react-dom@17.0.2", - "target": "npm:scheduler", - "type": "static" - } - ], - "npm:@isaacs/cliui": [ - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi-cjs", - "type": "static" - } - ], - "npm:@istanbuljs/load-nyc-config": [ - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@jest/console": [ - { - "source": "npm:@jest/console", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:slash", - "type": "static" - } - ], - "npm:@jest/core": [ - { - "source": "npm:@jest/core", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-changed-files", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve-dependencies", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:@jest/environment": [ - { - "source": "npm:@jest/environment", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:jest-mock", - "type": "static" - } - ], - "npm:@jest/expect-utils": [ - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - } - ], - "npm:@jest/expect": [ - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot", - "type": "static" - } - ], - "npm:@jest/fake-timers": [ - { - "source": "npm:@jest/fake-timers", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@sinonjs/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:@jest/globals": [ - { - "source": "npm:@jest/globals", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:jest-mock", - "type": "static" - } - ], - "npm:@jest/reporters": [ - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument@6.0.0", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - } - ], - "npm:@jest/schemas": [ - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - } - ], - "npm:@jest/source-map": [ - { - "source": "npm:@jest/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:@jest/test-result": [ - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - } - ], - "npm:@jest/test-sequencer": [ - { - "source": "npm:@jest/test-sequencer", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:slash", - "type": "static" - } - ], - "npm:@jest/transform@26.6.2": [ - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:jest-haste-map@26.6.2", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:jest-regex-util@26.0.0", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:jest-util@26.6.2", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@jest/transform@26.6.2", - "target": "npm:write-file-atomic@3.0.3", - "type": "static" - } - ], - "npm:@jest/transform": [ - { - "source": "npm:@jest/transform", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:write-file-atomic@4.0.2", - "type": "static" - } - ], - "npm:@jest/types@25.5.0": [ - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/istanbul-reports@1.1.1", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:@types/yargs@15.0.13", - "type": "static" - }, - { - "source": "npm:@jest/types@25.5.0", - "target": "npm:chalk@3.0.0", - "type": "static" - } - ], - "npm:@jest/types@26.6.2": [ - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/yargs@15.0.13", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:chalk@4.1.2", - "type": "static" - } - ], - "npm:@jest/types": [ - { - "source": "npm:@jest/types", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/yargs@17.0.22", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:chalk@4.1.2", - "type": "static" - } - ], - "npm:@jridgewell/gen-mapping@0.1.1": [ - { - "source": "npm:@jridgewell/gen-mapping@0.1.1", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping@0.1.1", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@jridgewell/gen-mapping": [ - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/source-map": [ - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping@0.3.9": [ - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping": [ - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@lerna/child-process": [ - { - "source": "npm:@lerna/child-process", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@lerna/child-process", - "target": "npm:strong-log-transformer", - "type": "static" - } - ], - "npm:@lerna/create": [ - { - "source": "npm:@lerna/create", - "target": "npm:@lerna/child-process", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:init-package-json", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:pify@5.0.0", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:@lerna/create", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - } - ], - "npm:@linaria/babel-preset": [ - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-proposal-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/core", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/logger", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:@linaria/utils", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:cosmiconfig@5.2.1", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:source-map@0.7.3", - "type": "static" - }, - { - "source": "npm:@linaria/babel-preset", - "target": "npm:stylis@3.5.4", - "type": "static" - } - ], - "npm:@linaria/core": [ - { - "source": "npm:@linaria/core", - "target": "npm:@linaria/logger", - "type": "static" - }, - { - "source": "npm:@linaria/core", - "target": "npm:@linaria/utils", - "type": "static" - } - ], - "npm:@linaria/logger": [ - { - "source": "npm:@linaria/logger", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@linaria/logger", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:@linaria/preeval": [ - { - "source": "npm:@linaria/preeval", - "target": "npm:@linaria/babel-preset", - "type": "static" - } - ], - "npm:@linaria/shaker": [ - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@linaria/babel-preset", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@linaria/logger", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:@linaria/preeval", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:babel-plugin-transform-react-remove-prop-types", - "type": "static" - }, - { - "source": "npm:@linaria/shaker", - "target": "npm:ts-invariant", - "type": "static" - } - ], - "npm:@mdx-js/loader": [ - { - "source": "npm:@mdx-js/loader", - "target": "npm:@mdx-js/mdx", - "type": "static" - }, - { - "source": "npm:@mdx-js/loader", - "target": "npm:@mdx-js/react", - "type": "static" - }, - { - "source": "npm:@mdx-js/loader", - "target": "npm:loader-utils", - "type": "static" - } - ], - "npm:@mdx-js/mdx": [ - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/core@7.12.9", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/plugin-syntax-jsx@7.12.1", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:@mdx-js/util", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:babel-plugin-extract-import-names", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:camelcase-css", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:detab", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:hast-util-raw", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:lodash.uniq", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:mdast-util-to-hast", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-footnotes", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-mdx", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-parse@8.0.3", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:remark-squeeze-paragraphs", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:style-to-object", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unified@9.2.0", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unist-builder", - "type": "static" - }, - { - "source": "npm:@mdx-js/mdx", - "target": "npm:unist-util-visit", - "type": "static" - } - ], - "npm:@microsoft/api-extractor-model": [ - { - "source": "npm:@microsoft/api-extractor-model", - "target": "npm:@microsoft/tsdoc", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor-model", - "target": "npm:@microsoft/tsdoc-config", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor-model", - "target": "npm:@rushstack/node-core-library", - "type": "static" - } - ], - "npm:@microsoft/api-extractor": [ - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@microsoft/api-extractor-model", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@microsoft/tsdoc", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@microsoft/tsdoc-config", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@rushstack/node-core-library", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@rushstack/rig-package", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:@rushstack/ts-command-line", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:colors", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:resolve@1.17.0", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:semver@7.3.8", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@microsoft/api-extractor", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@microsoft/applicationinsights-analytics-js": [ - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-analytics-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/applicationinsights-channel-js": [ - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@nevware21/ts-async", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-channel-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/applicationinsights-common": [ - { - "source": "npm:@microsoft/applicationinsights-common", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-common", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-common", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-common", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/applicationinsights-core-js": [ - { - "source": "npm:@microsoft/applicationinsights-core-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-core-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-core-js", - "target": "npm:@nevware21/ts-async", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-core-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/applicationinsights-dependencies-js": [ - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@nevware21/ts-async", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-dependencies-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/applicationinsights-properties-js": [ - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-properties-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/applicationinsights-shims": [ - { - "source": "npm:@microsoft/applicationinsights-shims", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/applicationinsights-web": [ - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-analytics-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-channel-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-common", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-core-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-dependencies-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-properties-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/applicationinsights-shims", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@microsoft/dynamicproto-js", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@nevware21/ts-async", - "type": "static" - }, - { - "source": "npm:@microsoft/applicationinsights-web", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/dynamicproto-js": [ - { - "source": "npm:@microsoft/dynamicproto-js", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@microsoft/eslint-plugin-sdl": [ - { - "source": "npm:@microsoft/eslint-plugin-sdl", - "target": "npm:eslint-plugin-node", - "type": "static" - }, - { - "source": "npm:@microsoft/eslint-plugin-sdl", - "target": "npm:eslint-plugin-react@7.24.0", - "type": "static" - }, - { - "source": "npm:@microsoft/eslint-plugin-sdl", - "target": "npm:eslint-plugin-security", - "type": "static" - } - ], - "npm:@microsoft/fast-foundation": [ - { - "source": "npm:@microsoft/fast-foundation", - "target": "npm:@microsoft/fast-element", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-foundation", - "target": "npm:@microsoft/fast-web-utilities", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-foundation", - "target": "npm:tabbable", - "type": "static" - }, - { - "source": "npm:@microsoft/fast-foundation", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:@microsoft/fast-web-utilities": [ - { - "source": "npm:@microsoft/fast-web-utilities", - "target": "npm:exenv-es6", - "type": "static" - } - ], - "npm:@microsoft/loader-load-themed-styles": [ - { - "source": "npm:@microsoft/loader-load-themed-styles", - "target": "npm:loader-utils@1.4.2", - "type": "static" - } - ], - "npm:@microsoft/tsdoc-config": [ - { - "source": "npm:@microsoft/tsdoc-config", - "target": "npm:@microsoft/tsdoc@0.14.2", - "type": "static" - }, - { - "source": "npm:@microsoft/tsdoc-config", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:@microsoft/tsdoc-config", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:@microsoft/tsdoc-config", - "target": "npm:resolve@1.19.0", - "type": "static" - } - ], - "npm:@mole-inc/bin-wrapper": [ - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-version-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:ext-name", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:file-type", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:filenamify@5.1.1", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:os-filter-obj", - "type": "static" - } - ], - "npm:@mrmlnc/readdir-enhanced": [ - { - "source": "npm:@mrmlnc/readdir-enhanced", - "target": "npm:call-me-maybe", - "type": "static" - }, - { - "source": "npm:@mrmlnc/readdir-enhanced", - "target": "npm:glob-to-regexp@0.3.0", - "type": "static" - } - ], - "npm:@nevware21/ts-async": [ - { - "source": "npm:@nevware21/ts-async", - "target": "npm:@nevware21/ts-utils", - "type": "static" - } - ], - "npm:@nodelib/fs.scandir": [ - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - } - ], - "npm:@nodelib/fs.walk": [ - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - } - ], - "npm:@npmcli/fs@2.1.2": [ - { - "source": "npm:@npmcli/fs@2.1.2", - "target": "npm:@gar/promisify", - "type": "static" - }, - { - "source": "npm:@npmcli/fs@2.1.2", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@npmcli/fs": [ - { - "source": "npm:@npmcli/fs", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@npmcli/git@2.0.3": [ - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:promise-retry@1.1.1", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:@npmcli/git@2.0.3", - "target": "npm:which@2.0.2", - "type": "static" - } - ], - "npm:@npmcli/git": [ - { - "source": "npm:@npmcli/git", - "target": "npm:@npmcli/promise-spawn@6.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:npm-pick-manifest@8.0.1", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:which@3.0.1", - "type": "static" - } - ], - "npm:@npmcli/installed-package-contents@1.0.7": [ - { - "source": "npm:@npmcli/installed-package-contents@1.0.7", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents@1.0.7", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:@npmcli/installed-package-contents": [ - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled@3.0.0", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - } - ], - "npm:@npmcli/move-file": [ - { - "source": "npm:@npmcli/move-file", - "target": "npm:mkdirp@1.0.4", - "type": "static" - } - ], - "npm:@npmcli/move-file@2.0.1": [ - { - "source": "npm:@npmcli/move-file@2.0.1", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file@2.0.1", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:@npmcli/promise-spawn": [ - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:infer-owner", - "type": "static" - } - ], - "npm:@npmcli/promise-spawn@6.0.2": [ - { - "source": "npm:@npmcli/promise-spawn@6.0.2", - "target": "npm:which@3.0.1", - "type": "static" - } - ], - "npm:@npmcli/run-script": [ - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/promise-spawn@6.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:read-package-json-fast@3.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:which@3.0.1", - "type": "static" - } - ], - "npm:@npmcli/run-script@1.3.1": [ - { - "source": "npm:@npmcli/run-script@1.3.1", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script@1.3.1", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script@1.3.1", - "target": "npm:node-gyp@6.1.0", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script@1.3.1", - "target": "npm:read-package-json-fast", - "type": "static" - } - ], - "npm:@nrwl/devkit": [ - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - } - ], - "npm:@nrwl/jest": [ - { - "source": "npm:@nrwl/jest", - "target": "npm:@nx/jest", - "type": "static" - } - ], - "npm:@nrwl/js": [ - { - "source": "npm:@nrwl/js", - "target": "npm:@nx/js", - "type": "static" - } - ], - "npm:@nrwl/linter": [ - { - "source": "npm:@nrwl/linter", - "target": "npm:@nx/linter", - "type": "static" - } - ], - "npm:@nrwl/node": [ - { - "source": "npm:@nrwl/node", - "target": "npm:@nx/node", - "type": "static" - } - ], - "npm:@nrwl/nx-plugin": [ - { - "source": "npm:@nrwl/nx-plugin", - "target": "npm:@nx/plugin", - "type": "static" - } - ], - "npm:@nrwl/tao": [ - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nrwl/workspace": [ - { - "source": "npm:@nrwl/workspace", - "target": "npm:@nx/workspace", - "type": "static" - } - ], - "npm:@nx/devkit": [ - { - "source": "npm:@nx/devkit", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/jest": [ - { - "source": "npm:@nx/jest", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nrwl/jest", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@phenomnomnominal/tsquery@5.0.1", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:identity-obj-proxy", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/js": [ - { - "source": "npm:@nx/js", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nrwl/js", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@phenomnomnominal/tsquery@5.0.1", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-const-enum", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-transform-typescript-metadata", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fast-glob@3.2.7", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-package-arg@11.0.1", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:source-map-support@0.5.19", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tsconfig-paths@4.2.0", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/linter": [ - { - "source": "npm:@nx/linter", - "target": "npm:@nrwl/linter", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@phenomnomnominal/tsquery@5.0.1", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:typescript@5.1.6", - "type": "static" - } - ], - "npm:@nx/node": [ - { - "source": "npm:@nx/node", - "target": "npm:@nrwl/node", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/plugin": [ - { - "source": "npm:@nx/plugin", - "target": "npm:@nrwl/nx-plugin", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@phenomnomnominal/tsquery@5.0.1", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/workspace": [ - { - "source": "npm:@nx/workspace", - "target": "npm:@nrwl/workspace", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - } - ], - "npm:@octokit/auth-token": [ - { - "source": "npm:@octokit/auth-token", - "target": "npm:@octokit/types", - "type": "static" - } - ], - "npm:@octokit/auth-token@3.0.1": [ - { - "source": "npm:@octokit/auth-token@3.0.1", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - } - ], - "npm:@octokit/core": [ - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/auth-token", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/graphql", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:before-after-hook", - "type": "static" - }, - { - "source": "npm:@octokit/core", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/core@4.2.4": [ - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/auth-token@3.0.1", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/graphql@5.0.1", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/request@6.2.1", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/request-error@3.0.1", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:@octokit/types@9.3.2", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:before-after-hook", - "type": "static" - }, - { - "source": "npm:@octokit/core@4.2.4", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/endpoint": [ - { - "source": "npm:@octokit/endpoint", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/endpoint@7.0.2": [ - { - "source": "npm:@octokit/endpoint@7.0.2", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint@7.0.2", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/endpoint@7.0.2", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/graphql": [ - { - "source": "npm:@octokit/graphql", - "target": "npm:@octokit/request", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/graphql", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/graphql@5.0.1": [ - { - "source": "npm:@octokit/graphql@5.0.1", - "target": "npm:@octokit/request@6.2.1", - "type": "static" - }, - { - "source": "npm:@octokit/graphql@5.0.1", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/graphql@5.0.1", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/plugin-paginate-rest": [ - { - "source": "npm:@octokit/plugin-paginate-rest", - "target": "npm:@octokit/types", - "type": "static" - } - ], - "npm:@octokit/plugin-paginate-rest@6.1.2": [ - { - "source": "npm:@octokit/plugin-paginate-rest@6.1.2", - "target": "npm:@octokit/tsconfig", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-paginate-rest@6.1.2", - "target": "npm:@octokit/types@9.3.2", - "type": "static" - } - ], - "npm:@octokit/plugin-rest-endpoint-methods": [ - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/plugin-rest-endpoint-methods", - "target": "npm:deprecation", - "type": "static" - } - ], - "npm:@octokit/plugin-rest-endpoint-methods@7.2.3": [ - { - "source": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", - "target": "npm:@octokit/types@10.0.0", - "type": "static" - } - ], - "npm:@octokit/request-error": [ - { - "source": "npm:@octokit/request-error", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/request-error", - "target": "npm:once", - "type": "static" - } - ], - "npm:@octokit/request-error@3.0.1": [ - { - "source": "npm:@octokit/request-error@3.0.1", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/request-error@3.0.1", - "target": "npm:deprecation", - "type": "static" - }, - { - "source": "npm:@octokit/request-error@3.0.1", - "target": "npm:once", - "type": "static" - } - ], - "npm:@octokit/request": [ - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/endpoint", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/request-error", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:@octokit/types", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@octokit/request", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/request@6.2.1": [ - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:@octokit/endpoint@7.0.2", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:@octokit/request-error@3.0.1", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:@octokit/types@7.5.0", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@octokit/request@6.2.1", - "target": "npm:universal-user-agent", - "type": "static" - } - ], - "npm:@octokit/rest": [ - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/core", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-paginate-rest", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest", - "target": "npm:@octokit/plugin-rest-endpoint-methods", - "type": "static" - } - ], - "npm:@octokit/rest@19.0.11": [ - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/core@4.2.4", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-paginate-rest@6.1.2", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-request-log", - "type": "static" - }, - { - "source": "npm:@octokit/rest@19.0.11", - "target": "npm:@octokit/plugin-rest-endpoint-methods@7.2.3", - "type": "static" - } - ], - "npm:@octokit/types@10.0.0": [ - { - "source": "npm:@octokit/types@10.0.0", - "target": "npm:@octokit/openapi-types", - "type": "static" - } - ], - "npm:@octokit/types": [ - { - "source": "npm:@octokit/types", - "target": "npm:@octokit/openapi-types@12.11.0", - "type": "static" - } - ], - "npm:@octokit/types@7.5.0": [ - { - "source": "npm:@octokit/types@7.5.0", - "target": "npm:@octokit/openapi-types@13.12.0", - "type": "static" - } - ], - "npm:@octokit/types@9.3.2": [ - { - "source": "npm:@octokit/types@9.3.2", - "target": "npm:@octokit/openapi-types", - "type": "static" - } - ], - "npm:@opentelemetry/api": [ - { - "source": "npm:@opentelemetry/api", - "target": "npm:@opentelemetry/context-base", - "type": "static" - } - ], - "npm:@parcel/watcher": [ - { - "source": "npm:@parcel/watcher", - "target": "npm:node-addon-api", - "type": "static" - }, - { - "source": "npm:@parcel/watcher", - "target": "npm:node-gyp-build", - "type": "static" - } - ], - "npm:@phenomnomnominal/tsquery": [ - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:@types/esquery", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:esquery", - "type": "static" - } - ], - "npm:@phenomnomnominal/tsquery@5.0.1": [ - { - "source": "npm:@phenomnomnominal/tsquery@5.0.1", - "target": "npm:esquery", - "type": "static" - } - ], - "npm:@pmmmwh/react-refresh-webpack-plugin": [ - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:common-path-prefix", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:core-js-pure", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:@pmmmwh/react-refresh-webpack-plugin", - "target": "npm:source-map@0.7.3", - "type": "static" - } - ], - "npm:@rnx-kit/eslint-plugin": [ - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:@typescript-eslint/eslint-plugin", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:eslint-plugin-jest@25.2.4", - "type": "static" - }, - { - "source": "npm:@rnx-kit/eslint-plugin", - "target": "npm:eslint-plugin-react", - "type": "static" - } - ], - "npm:@rollup/pluginutils": [ - { - "source": "npm:@rollup/pluginutils", - "target": "npm:@types/estree@0.0.39", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:estree-walker@1.0.1", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:@rushstack/node-core-library@3.50.1": [ - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:@types/node@12.20.24", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:colors", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:import-lazy", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:resolve@1.17.0", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:semver@7.3.8", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:timsort", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library@3.50.1", - "target": "npm:z-schema", - "type": "static" - } - ], - "npm:@rushstack/node-core-library": [ - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:@types/node@12.20.24", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:colors", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:fs-extra@7.0.1", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:import-lazy", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:resolve@1.17.0", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:semver@7.3.8", - "type": "static" - }, - { - "source": "npm:@rushstack/node-core-library", - "target": "npm:z-schema", - "type": "static" - } - ], - "npm:@rushstack/package-deps-hash": [ - { - "source": "npm:@rushstack/package-deps-hash", - "target": "npm:@rushstack/node-core-library@3.50.1", - "type": "static" - } - ], - "npm:@rushstack/rig-package": [ - { - "source": "npm:@rushstack/rig-package", - "target": "npm:resolve@1.17.0", - "type": "static" - }, - { - "source": "npm:@rushstack/rig-package", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:@rushstack/ts-command-line": [ - { - "source": "npm:@rushstack/ts-command-line", - "target": "npm:@types/argparse", - "type": "static" - }, - { - "source": "npm:@rushstack/ts-command-line", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:@rushstack/ts-command-line", - "target": "npm:colors", - "type": "static" - }, - { - "source": "npm:@rushstack/ts-command-line", - "target": "npm:string-argv", - "type": "static" - } - ], - "npm:@sigstore/bundle": [ - { - "source": "npm:@sigstore/bundle", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - } - ], - "npm:@sigstore/tuf": [ - { - "source": "npm:@sigstore/tuf", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:tuf-js", - "type": "static" - } - ], - "npm:@sinonjs/commons": [ - { - "source": "npm:@sinonjs/commons", - "target": "npm:type-detect", - "type": "static" - } - ], - "npm:@sinonjs/fake-timers": [ - { - "source": "npm:@sinonjs/fake-timers", - "target": "npm:@sinonjs/commons", - "type": "static" - } - ], - "npm:@storybook/addon-a11y": [ - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:react-sizeme", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-a11y", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/addon-actions": [ - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:polished", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:react-inspector", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/addon-actions", - "target": "npm:uuid-browser", - "type": "static" - } - ], - "npm:@storybook/addon-backgrounds": [ - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-backgrounds", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/addon-controls": [ - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-controls", - "target": "npm:ts-dedent", - "type": "static" - } - ], - "npm:@storybook/addon-docs": [ - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@jest/transform@26.6.2", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@mdx-js/react", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/docs-tools", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/mdx1-csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/postinstall", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/source-loader", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:remark-external-links", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:remark-slug", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/addon-docs", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/addon-essentials": [ - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-actions", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-backgrounds", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-controls", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-docs", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-measure", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-outline", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-toolbars", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addon-viewport", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-essentials", - "target": "npm:ts-dedent", - "type": "static" - } - ], - "npm:@storybook/addon-knobs": [ - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:copy-to-clipboard", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:react-colorful", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:react-lifecycles-compat", - "type": "static" - }, - { - "source": "npm:@storybook/addon-knobs", - "target": "npm:react-select", - "type": "static" - } - ], - "npm:@storybook/addon-links": [ - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-links", - "target": "npm:ts-dedent", - "type": "static" - } - ], - "npm:@storybook/addon-measure": [ - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-measure", - "target": "npm:global", - "type": "static" - } - ], - "npm:@storybook/addon-outline": [ - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/addon-outline", - "target": "npm:ts-dedent", - "type": "static" - } - ], - "npm:@storybook/addon-toolbars": [ - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-toolbars", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@storybook/addon-viewport": [ - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/addon-viewport", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@storybook/addons": [ - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/addons", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@storybook/api": [ - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:store2", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/api", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/builder-webpack4": [ - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/client-api", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@storybook/ui", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:autoprefixer@9.8.6", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:case-sensitive-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:css-loader@3.6.0", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:file-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:glob-promise", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:html-webpack-plugin@4.5.2", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:pnp-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:postcss-flexbugs-fixes", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:postcss-loader@4.3.0", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:raw-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:stable", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:style-loader@1.3.0", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:terser-webpack-plugin@4.2.3", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:url-loader@4.1.1", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack@4.46.0", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack-dev-middleware@3.7.3", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack-filter-warnings-plugin@1.2.1", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack-hot-middleware", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack4", - "target": "npm:webpack-virtual-modules", - "type": "static" - } - ], - "npm:@storybook/builder-webpack5": [ - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/client-api", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:babel-plugin-named-exports-order", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:browser-assert", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:case-sensitive-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:fork-ts-checker-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:glob-promise", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:html-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:path-browserify", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:stable", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:webpack-hot-middleware", - "type": "static" - }, - { - "source": "npm:@storybook/builder-webpack5", - "target": "npm:webpack-virtual-modules@0.4.3", - "type": "static" - } - ], - "npm:@storybook/channel-postmessage": [ - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/channel-postmessage", - "target": "npm:telejson", - "type": "static" - } - ], - "npm:@storybook/channel-websocket": [ - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/channel-websocket", - "target": "npm:telejson", - "type": "static" - } - ], - "npm:@storybook/channels": [ - { - "source": "npm:@storybook/channels", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/channels", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/channels", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/client-api": [ - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:store2", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:synchronous-promise", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/client-api", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/client-logger": [ - { - "source": "npm:@storybook/client-logger", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/client-logger", - "target": "npm:global", - "type": "static" - } - ], - "npm:@storybook/components": [ - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/components", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/core-client": [ - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/channel-websocket", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/client-api", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:@storybook/ui", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:airbnb-js-shims", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:ansi-to-html", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:unfetch", - "type": "static" - }, - { - "source": "npm:@storybook/core-client", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/core-common": [ - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-export-default-from", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-optional-chaining", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-private-methods", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@babel/register", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:@types/pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:babel-plugin-macros@3.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:babel-plugin-polyfill-corejs3@0.1.7", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:file-system-cache", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:fork-ts-checker-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:interpret@2.2.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:lazy-universal-dotenv", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:pkg-dir@5.0.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/core-common", - "target": "npm:webpack@4.46.0", - "type": "static" - } - ], - "npm:@storybook/core-events": [ - { - "source": "npm:@storybook/core-events", - "target": "npm:core-js", - "type": "static" - } - ], - "npm:@storybook/core-server": [ - { - "source": "npm:@storybook/core-server", - "target": "npm:@discoveryjs/json-ext", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/builder-webpack4", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/core-client", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/csf-tools", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/manager-webpack4", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@storybook/telemetry", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@types/node-fetch", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@types/pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:better-opn", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:boxen@5.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:commander@6.2.1", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:cpy", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:pretty-hrtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:serve-favicon", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:webpack@4.46.0", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:@storybook/core-server", - "target": "npm:x-default-browser", - "type": "static" - } - ], - "npm:@storybook/core": [ - { - "source": "npm:@storybook/core", - "target": "npm:@storybook/core-client", - "type": "static" - }, - { - "source": "npm:@storybook/core", - "target": "npm:@storybook/core-server", - "type": "static" - } - ], - "npm:@storybook/csf-tools": [ - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:@storybook/mdx1-csf", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/csf-tools", - "target": "npm:ts-dedent", - "type": "static" - } - ], - "npm:@storybook/csf": [ - { - "source": "npm:@storybook/csf", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:@storybook/docs-tools": [ - { - "source": "npm:@storybook/docs-tools", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/docs-tools", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@storybook/html@6.5.15": [ - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/core", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/docs-tools", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/preview-web", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:html-loader", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:react@16.14.0", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:react-dom@16.14.0", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/html@6.5.15", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:@storybook/manager-webpack4": [ - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/core-client", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@storybook/ui", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:case-sensitive-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:css-loader@3.6.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:file-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:html-webpack-plugin@4.5.2", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:pnp-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:style-loader@1.3.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:terser-webpack-plugin@4.2.3", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:url-loader@4.1.1", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:webpack@4.46.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:webpack-dev-middleware@3.7.3", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack4", - "target": "npm:webpack-virtual-modules", - "type": "static" - } - ], - "npm:@storybook/manager-webpack5": [ - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/core-client", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@storybook/ui", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:case-sensitive-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:html-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:telejson", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:@storybook/manager-webpack5", - "target": "npm:webpack-virtual-modules@0.4.3", - "type": "static" - } - ], - "npm:@storybook/mdx1-csf": [ - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@mdx-js/mdx", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:js-string-escape", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:@storybook/mdx1-csf", - "target": "npm:ts-dedent", - "type": "static" - } - ], - "npm:@storybook/node-logger": [ - { - "source": "npm:@storybook/node-logger", - "target": "npm:@types/npmlog", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:npmlog@5.0.1", - "type": "static" - }, - { - "source": "npm:@storybook/node-logger", - "target": "npm:pretty-hrtime", - "type": "static" - } - ], - "npm:@storybook/postinstall": [ - { - "source": "npm:@storybook/postinstall", - "target": "npm:core-js", - "type": "static" - } - ], - "npm:@storybook/preview-web": [ - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/channel-postmessage", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:ansi-to-html", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:synchronous-promise", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:unfetch", - "type": "static" - }, - { - "source": "npm:@storybook/preview-web", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/react-docgen-typescript-plugin": [ - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:endent", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:flat-cache", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:react-docgen-typescript", - "type": "static" - }, - { - "source": "npm:@storybook/react-docgen-typescript-plugin", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@storybook/react": [ - { - "source": "npm:@storybook/react", - "target": "npm:@babel/preset-flow", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@pmmmwh/react-refresh-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/core", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/docs-tools", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/node-logger", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/react-docgen-typescript-plugin", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@storybook/store", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@types/estree@0.0.51", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:@types/webpack-env", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:acorn@7.4.1", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:acorn-walk@7.2.0", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:babel-plugin-add-react-displayname", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:babel-plugin-react-docgen", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:html-tags", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:react-element-to-jsx-string", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:react-refresh", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:@storybook/react", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:@storybook/router": [ - { - "source": "npm:@storybook/router", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/router", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@storybook/semver": [ - { - "source": "npm:@storybook/semver", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/semver", - "target": "npm:find-up@4.1.0", - "type": "static" - } - ], - "npm:@storybook/source-loader": [ - { - "source": "npm:@storybook/source-loader", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:@storybook/source-loader", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@storybook/store": [ - { - "source": "npm:@storybook/store", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:@storybook/csf", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:stable", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:synchronous-promise", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:ts-dedent", - "type": "static" - }, - { - "source": "npm:@storybook/store", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:@storybook/telemetry": [ - { - "source": "npm:@storybook/telemetry", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:@storybook/core-common", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:detect-package-manager", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:fetch-retry", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:isomorphic-unfetch@3.1.0", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:@storybook/telemetry", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@storybook/theming": [ - { - "source": "npm:@storybook/theming", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/theming", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@storybook/ui": [ - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/client-logger", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/router", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/semver", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:memoizerific", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@storybook/ui", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@swc/cli": [ - { - "source": "npm:@swc/cli", - "target": "npm:@mole-inc/bin-wrapper", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:commander@7.2.0", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:source-map@0.7.3", - "type": "static" - } - ], - "npm:@swc/core": [ - { - "source": "npm:@swc/core", - "target": "npm:@swc/types", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-arm64@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-x64@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm-gnueabihf@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-gnu@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-musl@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-gnu@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-musl@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-arm64-msvc@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-ia32-msvc@1.3.87", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-x64-msvc", - "type": "static" - } - ], - "npm:@swc/helpers": [ - { - "source": "npm:@swc/helpers", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@szmarczak/http-timer": [ - { - "source": "npm:@szmarczak/http-timer", - "target": "npm:defer-to-connect", - "type": "static" - } - ], - "npm:@szmarczak/http-timer@5.0.1": [ - { - "source": "npm:@szmarczak/http-timer@5.0.1", - "target": "npm:defer-to-connect", - "type": "static" - } - ], - "npm:@testing-library/dom": [ - { - "source": "npm:@testing-library/dom", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:@types/aria-query", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:aria-query@5.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:dom-accessibility-api", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:lz-string", - "type": "static" - }, - { - "source": "npm:@testing-library/dom", - "target": "npm:pretty-format@27.5.1", - "type": "static" - } - ], - "npm:@testing-library/dom@7.22.3": [ - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:@types/aria-query", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:dom-accessibility-api", - "type": "static" - }, - { - "source": "npm:@testing-library/dom@7.22.3", - "target": "npm:pretty-format@25.5.0", - "type": "static" - } - ], - "npm:@testing-library/jest-dom": [ - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@adobe/css-tools", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:@types/testing-library__jest-dom", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:aria-query@5.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:css.escape", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:dom-accessibility-api", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-dom", - "target": "npm:redent", - "type": "static" - } - ], - "npm:@testing-library/react-hooks": [ - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:@types/react-dom@18.0.6", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:@types/react-test-renderer", - "type": "static" - }, - { - "source": "npm:@testing-library/react-hooks", - "target": "npm:react-error-boundary", - "type": "static" - } - ], - "npm:@testing-library/react": [ - { - "source": "npm:@testing-library/react", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@testing-library/react", - "target": "npm:@testing-library/dom", - "type": "static" - } - ], - "npm:@testing-library/user-event": [ - { - "source": "npm:@testing-library/user-event", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:@textlint/markdown-to-ast": [ - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:@textlint/ast-node-types", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:remark-frontmatter", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:remark-parse", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:structured-source", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:traverse", - "type": "static" - }, - { - "source": "npm:@textlint/markdown-to-ast", - "target": "npm:unified", - "type": "static" - } - ], - "npm:@ts-morph/common": [ - { - "source": "npm:@ts-morph/common", - "target": "npm:@dsherret/to-absolute-glob", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:is-negated-glob", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:multimatch", - "type": "static" - } - ], - "npm:@tufjs/models": [ - { - "source": "npm:@tufjs/models", - "target": "npm:@tufjs/canonical-json", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.1", - "type": "static" - } - ], - "npm:@types/babel-plugin-tester": [ - { - "source": "npm:@types/babel-plugin-tester", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:@types/babel-plugin-tester", - "target": "npm:@types/prettier", - "type": "static" - } - ], - "npm:@types/babel__core": [ - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:@types/babel__generator": [ - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__helper-plugin-utils": [ - { - "source": "npm:@types/babel__helper-plugin-utils", - "target": "npm:@types/babel__core", - "type": "static" - } - ], - "npm:@types/babel__register": [ - { - "source": "npm:@types/babel__register", - "target": "npm:@types/babel__core", - "type": "static" - } - ], - "npm:@types/babel__template": [ - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__traverse": [ - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/body-parser": [ - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/bonjour": [ - { - "source": "npm:@types/bonjour", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/cacheable-request": [ - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - } - ], - "npm:@types/chai-spies": [ - { - "source": "npm:@types/chai-spies", - "target": "npm:@types/chai", - "type": "static" - } - ], - "npm:@types/cheerio": [ - { - "source": "npm:@types/cheerio", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/chrome-remote-interface": [ - { - "source": "npm:@types/chrome-remote-interface", - "target": "npm:devtools-protocol", - "type": "static" - } - ], - "npm:@types/circular-dependency-plugin": [ - { - "source": "npm:@types/circular-dependency-plugin", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/circular-dependency-plugin", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:@types/color-convert": [ - { - "source": "npm:@types/color-convert", - "target": "npm:@types/color-name", - "type": "static" - } - ], - "npm:@types/color": [ - { - "source": "npm:@types/color", - "target": "npm:@types/color-convert", - "type": "static" - } - ], - "npm:@types/connect-history-api-fallback": [ - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/connect": [ - { - "source": "npm:@types/connect", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/copy-webpack-plugin": [ - { - "source": "npm:@types/copy-webpack-plugin", - "target": "npm:@types/webpack", - "type": "static" - } - ], - "npm:@types/cors": [ - { - "source": "npm:@types/cors", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/d3-axis": [ - { - "source": "npm:@types/d3-axis", - "target": "npm:@types/d3-selection", - "type": "static" - } - ], - "npm:@types/d3-fetch": [ - { - "source": "npm:@types/d3-fetch", - "target": "npm:@types/d3-dsv", - "type": "static" - } - ], - "npm:@types/d3-sankey": [ - { - "source": "npm:@types/d3-sankey", - "target": "npm:@types/d3-shape@1.3.8", - "type": "static" - } - ], - "npm:@types/d3-scale": [ - { - "source": "npm:@types/d3-scale", - "target": "npm:@types/d3-time", - "type": "static" - } - ], - "npm:@types/d3-shape": [ - { - "source": "npm:@types/d3-shape", - "target": "npm:@types/d3-path", - "type": "static" - } - ], - "npm:@types/d3-shape@1.3.8": [ - { - "source": "npm:@types/d3-shape@1.3.8", - "target": "npm:@types/d3-path", - "type": "static" - } - ], - "npm:@types/enzyme": [ - { - "source": "npm:@types/enzyme", - "target": "npm:@types/cheerio", - "type": "static" - }, - { - "source": "npm:@types/enzyme", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/eslint-scope": [ - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/estree", - "type": "static" - } - ], - "npm:@types/eslint": [ - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - } - ], - "npm:@types/esquery": [ - { - "source": "npm:@types/esquery", - "target": "npm:@types/estree", - "type": "static" - } - ], - "npm:@types/execa": [ - { - "source": "npm:@types/execa", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/express-serve-static-core": [ - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - } - ], - "npm:@types/express": [ - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - } - ], - "npm:@types/fs-extra": [ - { - "source": "npm:@types/fs-extra", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/glob-stream": [ - { - "source": "npm:@types/glob-stream", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:@types/glob-stream", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/glob": [ - { - "source": "npm:@types/glob", - "target": "npm:@types/events", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/globby": [ - { - "source": "npm:@types/globby", - "target": "npm:globby", - "type": "static" - } - ], - "npm:@types/graceful-fs": [ - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/graphviz": [ - { - "source": "npm:@types/graphviz", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/gulp-babel": [ - { - "source": "npm:@types/gulp-babel", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/gulp-cache": [ - { - "source": "npm:@types/gulp-cache", - "target": "npm:@types/gulp-util", - "type": "static" - }, - { - "source": "npm:@types/gulp-cache", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-cache", - "target": "npm:@types/vinyl", - "type": "static" - } - ], - "npm:@types/gulp-remember": [ - { - "source": "npm:@types/gulp-remember", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/gulp-sourcemaps": [ - { - "source": "npm:@types/gulp-sourcemaps", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-sourcemaps", - "target": "npm:@types/vinyl", - "type": "static" - } - ], - "npm:@types/gulp-util": [ - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/through2", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:@types/vinyl", - "type": "static" - }, - { - "source": "npm:@types/gulp-util", - "target": "npm:chalk@2.4.2", - "type": "static" - } - ], - "npm:@types/gulp": [ - { - "source": "npm:@types/gulp", - "target": "npm:@types/undertaker", - "type": "static" - }, - { - "source": "npm:@types/gulp", - "target": "npm:@types/vinyl-fs", - "type": "static" - }, - { - "source": "npm:@types/gulp", - "target": "npm:chokidar", - "type": "static" - } - ], - "npm:@types/handlebars": [ - { - "source": "npm:@types/handlebars", - "target": "npm:handlebars", - "type": "static" - } - ], - "npm:@types/hast": [ - { - "source": "npm:@types/hast", - "target": "npm:@types/unist", - "type": "static" - } - ], - "npm:@types/http-proxy": [ - { - "source": "npm:@types/http-proxy", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/inquirer": [ - { - "source": "npm:@types/inquirer", - "target": "npm:@types/through", - "type": "static" - }, - { - "source": "npm:@types/inquirer", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:@types/istanbul-lib-report": [ - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - } - ], - "npm:@types/istanbul-reports@1.1.1": [ - { - "source": "npm:@types/istanbul-reports@1.1.1", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports@1.1.1", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - } - ], - "npm:@types/istanbul-reports": [ - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - } - ], - "npm:@types/jest-axe": [ - { - "source": "npm:@types/jest-axe", - "target": "npm:@types/jest", - "type": "static" - }, - { - "source": "npm:@types/jest-axe", - "target": "npm:axe-core", - "type": "static" - } - ], - "npm:@types/jest": [ - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:@types/jsdom": [ - { - "source": "npm:@types/jsdom", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:parse5", - "type": "static" - } - ], - "npm:@types/karma": [ - { - "source": "npm:@types/karma", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/karma", - "target": "npm:log4js", - "type": "static" - } - ], - "npm:@types/keyv": [ - { - "source": "npm:@types/keyv", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/loader-utils": [ - { - "source": "npm:@types/loader-utils", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/loader-utils", - "target": "npm:@types/webpack", - "type": "static" - } - ], - "npm:@types/mdast": [ - { - "source": "npm:@types/mdast", - "target": "npm:@types/unist", - "type": "static" - } - ], - "npm:@types/micromatch": [ - { - "source": "npm:@types/micromatch", - "target": "npm:@types/braces", - "type": "static" - } - ], - "npm:@types/node-fetch": [ - { - "source": "npm:@types/node-fetch", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/node-fetch", - "target": "npm:form-data@3.0.0", - "type": "static" - } - ], - "npm:@types/progress": [ - { - "source": "npm:@types/progress", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/prompts": [ - { - "source": "npm:@types/prompts", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/react-addons-test-utils": [ - { - "source": "npm:@types/react-addons-test-utils", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-custom-scrollbars": [ - { - "source": "npm:@types/react-custom-scrollbars", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-dom": [ - { - "source": "npm:@types/react-dom", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-dom@18.0.6": [ - { - "source": "npm:@types/react-dom@18.0.6", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-frame-component": [ - { - "source": "npm:@types/react-frame-component", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-is": [ - { - "source": "npm:@types/react-is", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-router-dom": [ - { - "source": "npm:@types/react-router-dom", - "target": "npm:@types/history", - "type": "static" - }, - { - "source": "npm:@types/react-router-dom", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-router-dom", - "target": "npm:@types/react-router", - "type": "static" - } - ], - "npm:@types/react-router": [ - { - "source": "npm:@types/react-router", - "target": "npm:@types/history", - "type": "static" - }, - { - "source": "npm:@types/react-router", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-syntax-highlighter": [ - { - "source": "npm:@types/react-syntax-highlighter", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-table": [ - { - "source": "npm:@types/react-table", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-test-renderer": [ - { - "source": "npm:@types/react-test-renderer", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-transition-group": [ - { - "source": "npm:@types/react-transition-group", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-virtualized": [ - { - "source": "npm:@types/react-virtualized", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react-virtualized", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-window": [ - { - "source": "npm:@types/react-window", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react": [ - { - "source": "npm:@types/react", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - } - ], - "npm:@types/react@18.0.14": [ - { - "source": "npm:@types/react@18.0.14", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react@18.0.14", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react@18.0.14", - "target": "npm:csstype", - "type": "static" - } - ], - "npm:@types/request-promise-native": [ - { - "source": "npm:@types/request-promise-native", - "target": "npm:@types/request", - "type": "static" - } - ], - "npm:@types/request": [ - { - "source": "npm:@types/request", - "target": "npm:@types/caseless", - "type": "static" - }, - { - "source": "npm:@types/request", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/request", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/request", - "target": "npm:form-data", - "type": "static" - } - ], - "npm:@types/resolve": [ - { - "source": "npm:@types/resolve", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/responselike": [ - { - "source": "npm:@types/responselike", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/serve-index": [ - { - "source": "npm:@types/serve-index", - "target": "npm:@types/express", - "type": "static" - } - ], - "npm:@types/serve-static": [ - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/sockjs": [ - { - "source": "npm:@types/sockjs", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/testing-library__jest-dom": [ - { - "source": "npm:@types/testing-library__jest-dom", - "target": "npm:@types/jest", - "type": "static" - } - ], - "npm:@types/through2": [ - { - "source": "npm:@types/through2", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/through": [ - { - "source": "npm:@types/through", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/tunnel": [ - { - "source": "npm:@types/tunnel", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/uglify-js": [ - { - "source": "npm:@types/uglify-js", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:@types/undertaker": [ - { - "source": "npm:@types/undertaker", - "target": "npm:@types/undertaker-registry", - "type": "static" - } - ], - "npm:@types/vinyl-fs": [ - { - "source": "npm:@types/vinyl-fs", - "target": "npm:@types/glob-stream", - "type": "static" - }, - { - "source": "npm:@types/vinyl-fs", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/vinyl-fs", - "target": "npm:@types/vinyl", - "type": "static" - } - ], - "npm:@types/vinyl": [ - { - "source": "npm:@types/vinyl", - "target": "npm:@types/expect", - "type": "static" - }, - { - "source": "npm:@types/vinyl", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/webpack-bundle-analyzer": [ - { - "source": "npm:@types/webpack-bundle-analyzer", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack-bundle-analyzer", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:@types/webpack-bundle-analyzer", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:@types/webpack-dev-middleware": [ - { - "source": "npm:@types/webpack-dev-middleware", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/webpack-dev-middleware", - "target": "npm:@types/webpack", - "type": "static" - } - ], - "npm:@types/webpack-hot-middleware": [ - { - "source": "npm:@types/webpack-hot-middleware", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/webpack-hot-middleware", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:@types/webpack-hot-middleware", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:@types/webpack-sources": [ - { - "source": "npm:@types/webpack-sources", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack-sources", - "target": "npm:@types/source-list-map", - "type": "static" - }, - { - "source": "npm:@types/webpack-sources", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:@types/webpack": [ - { - "source": "npm:@types/webpack", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/tapable", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/uglify-js", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:@types/webpack-sources", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:@types/webpack", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:@types/ws": [ - { - "source": "npm:@types/ws", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@types/yargs": [ - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@types/yargs@15.0.13": [ - { - "source": "npm:@types/yargs@15.0.13", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@types/yargs@17.0.22": [ - { - "source": "npm:@types/yargs@17.0.22", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@types/yauzl": [ - { - "source": "npm:@types/yauzl", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:@typescript-eslint/eslint-plugin": [ - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:tsutils", - "type": "static" - } - ], - "npm:@typescript-eslint/experimental-utils": [ - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/experimental-utils", - "target": "npm:eslint-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/parser": [ - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager": [ - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager@5.59.1": [ - { - "source": "npm:@typescript-eslint/scope-manager@5.59.1", - "target": "npm:@typescript-eslint/types@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@5.59.1", - "target": "npm:@typescript-eslint/visitor-keys@5.59.1", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree": [ - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:tsutils", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree@5.59.1": [ - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:@typescript-eslint/types@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:@typescript-eslint/visitor-keys@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@5.59.1", - "target": "npm:tsutils", - "type": "static" - } - ], - "npm:@typescript-eslint/utils": [ - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/semver@7.3.13", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@typescript-eslint/visitor-keys": [ - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys@2.0.0", - "type": "static" - } - ], - "npm:@typescript-eslint/visitor-keys@5.59.1": [ - { - "source": "npm:@typescript-eslint/visitor-keys@5.59.1", - "target": "npm:@typescript-eslint/types@5.59.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@5.59.1", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@uifabric/set-version": [ - { - "source": "npm:@uifabric/set-version", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:@webassemblyjs/ast": [ - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - } - ], - "npm:@webassemblyjs/ast@1.9.0": [ - { - "source": "npm:@webassemblyjs/ast@1.9.0", - "target": "npm:@webassemblyjs/helper-module-context", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast@1.9.0", - "target": "npm:@webassemblyjs/wast-parser", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-code-frame": [ - { - "source": "npm:@webassemblyjs/helper-code-frame", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-module-context": [ - { - "source": "npm:@webassemblyjs/helper-module-context", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-numbers": [ - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/floating-point-hex-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-wasm-section": [ - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-wasm-section@1.9.0": [ - { - "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "target": "npm:@webassemblyjs/helper-buffer@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "target": "npm:@webassemblyjs/wasm-gen@1.9.0", - "type": "static" - } - ], - "npm:@webassemblyjs/ieee754": [ - { - "source": "npm:@webassemblyjs/ieee754", - "target": "npm:@xtuc/ieee754", - "type": "static" - } - ], - "npm:@webassemblyjs/ieee754@1.9.0": [ - { - "source": "npm:@webassemblyjs/ieee754@1.9.0", - "target": "npm:@xtuc/ieee754", - "type": "static" - } - ], - "npm:@webassemblyjs/leb128": [ - { - "source": "npm:@webassemblyjs/leb128", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/leb128@1.9.0": [ - { - "source": "npm:@webassemblyjs/leb128@1.9.0", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-edit@1.9.0": [ - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/helper-buffer@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-section@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/wasm-gen@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/wasm-opt@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/wasm-parser@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit@1.9.0", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-edit": [ - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-section", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-opt", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wast-printer@1.11.6", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-gen": [ - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-gen@1.9.0": [ - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/ieee754@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/leb128@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen@1.9.0", - "target": "npm:@webassemblyjs/utf8@1.9.0", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-opt": [ - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-opt@1.9.0": [ - { - "source": "npm:@webassemblyjs/wasm-opt@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt@1.9.0", - "target": "npm:@webassemblyjs/helper-buffer@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt@1.9.0", - "target": "npm:@webassemblyjs/wasm-gen@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt@1.9.0", - "target": "npm:@webassemblyjs/wasm-parser@1.9.0", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-parser": [ - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-parser@1.9.0": [ - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/helper-api-error@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/helper-wasm-bytecode@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/ieee754@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/leb128@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser@1.9.0", - "target": "npm:@webassemblyjs/utf8@1.9.0", - "type": "static" - } - ], - "npm:@webassemblyjs/wast-parser": [ - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/floating-point-hex-parser@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/helper-api-error@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/helper-code-frame", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@webassemblyjs/helper-fsm", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-parser", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/wast-printer@1.11.6": [ - { - "source": "npm:@webassemblyjs/wast-printer@1.11.6", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer@1.11.6", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/wast-printer": [ - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/wast-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webpack-cli/info": [ - { - "source": "npm:@webpack-cli/info", - "target": "npm:envinfo", - "type": "static" - } - ], - "npm:@wojtekmaj/enzyme-adapter-react-17": [ - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:@wojtekmaj/enzyme-adapter-utils", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:enzyme-shallow-equal", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-react-17", - "target": "npm:react-test-renderer", - "type": "static" - } - ], - "npm:@wojtekmaj/enzyme-adapter-utils": [ - { - "source": "npm:@wojtekmaj/enzyme-adapter-utils", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-utils", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-utils", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:@wojtekmaj/enzyme-adapter-utils", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:@xstate/react": [ - { - "source": "npm:@xstate/react", - "target": "npm:use-isomorphic-layout-effect", - "type": "static" - }, - { - "source": "npm:@xstate/react", - "target": "npm:use-subscription", - "type": "static" - } - ], - "npm:@yarnpkg/parsers": [ - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@zkochan/js-yaml": [ - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse@2.0.1", - "type": "static" - } - ], - "npm:JSONStream": [ - { - "source": "npm:JSONStream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:through", - "type": "static" - } - ], - "npm:ability-attributes-generator": [ - { - "source": "npm:ability-attributes-generator", - "target": "npm:ability-attributes", - "type": "static" - }, - { - "source": "npm:ability-attributes-generator", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:ability-attributes-generator", - "target": "npm:commander", - "type": "static" - } - ], - "npm:ability-attributes": [ - { - "source": "npm:ability-attributes", - "target": "npm:ability-attributes-js-constraints", - "type": "static" - } - ], - "npm:abort-controller": [ - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - } - ], - "npm:accepts": [ - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - } - ], - "npm:acorn-globals": [ - { - "source": "npm:acorn-globals", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - } - ], - "npm:adal-node": [ - { - "source": "npm:adal-node", - "target": "npm:@xmldom/xmldom@0.7.9", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:axios@0.21.4", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:date-utils", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:underscore", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:adal-node", - "target": "npm:xpath.js", - "type": "static" - } - ], - "npm:agent-base@4.3.0": [ - { - "source": "npm:agent-base@4.3.0", - "target": "npm:es6-promisify", - "type": "static" - } - ], - "npm:agent-base": [ - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - } - ], - "npm:agentkeepalive": [ - { - "source": "npm:agentkeepalive", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:agentkeepalive", - "target": "npm:humanize-ms", - "type": "static" - } - ], - "npm:aggregate-error": [ - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - } - ], - "npm:aggregate-error@4.0.1": [ - { - "source": "npm:aggregate-error@4.0.1", - "target": "npm:clean-stack@4.2.0", - "type": "static" - }, - { - "source": "npm:aggregate-error@4.0.1", - "target": "npm:indent-string@5.0.0", - "type": "static" - } - ], - "npm:airbnb-js-shims": [ - { - "source": "npm:airbnb-js-shims", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:es5-shim", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:es6-shim", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:object.getownpropertydescriptors", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:promise.allsettled", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:promise.prototype.finally", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:string.prototype.padend", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:string.prototype.padstart", - "type": "static" - }, - { - "source": "npm:airbnb-js-shims", - "target": "npm:symbol.prototype.description", - "type": "static" - } - ], - "npm:ajv-formats@2.1.1": [ - { - "source": "npm:ajv-formats@2.1.1", - "target": "npm:ajv@8.12.0", - "type": "static" - } - ], - "npm:ajv-keywords@5.1.0": [ - { - "source": "npm:ajv-keywords@5.1.0", - "target": "npm:fast-deep-equal", - "type": "static" - } - ], - "npm:ajv": [ - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv@4.11.8": [ - { - "source": "npm:ajv@4.11.8", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:ajv@4.11.8", - "target": "npm:json-stable-stringify", - "type": "static" - } - ], - "npm:ajv@5.5.2": [ - { - "source": "npm:ajv@5.5.2", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:ajv@5.5.2", - "target": "npm:fast-deep-equal@1.1.0", - "type": "static" - }, - { - "source": "npm:ajv@5.5.2", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@5.5.2", - "target": "npm:json-schema-traverse@0.3.1", - "type": "static" - } - ], - "npm:ajv@6.12.6": [ - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv@8.12.0": [ - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:anchor-markdown-header": [ - { - "source": "npm:anchor-markdown-header", - "target": "npm:emoji-regex", - "type": "static" - } - ], - "npm:ansi-align@2.0.0": [ - { - "source": "npm:ansi-align@2.0.0", - "target": "npm:string-width@2.1.1", - "type": "static" - } - ], - "npm:ansi-align": [ - { - "source": "npm:ansi-align", - "target": "npm:string-width@3.1.0", - "type": "static" - } - ], - "npm:ansi-colors": [ - { - "source": "npm:ansi-colors", - "target": "npm:ansi-wrap", - "type": "static" - } - ], - "npm:ansi-cyan": [ - { - "source": "npm:ansi-cyan", - "target": "npm:ansi-wrap", - "type": "static" - } - ], - "npm:ansi-escape-sequences": [ - { - "source": "npm:ansi-escape-sequences", - "target": "npm:array-back@6.2.2", - "type": "static" - } - ], - "npm:ansi-escapes": [ - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.11.0", - "type": "static" - } - ], - "npm:ansi-escapes@6.2.0": [ - { - "source": "npm:ansi-escapes@6.2.0", - "target": "npm:type-fest@3.11.0", - "type": "static" - } - ], - "npm:ansi-gray": [ - { - "source": "npm:ansi-gray", - "target": "npm:ansi-wrap", - "type": "static" - } - ], - "npm:ansi-red": [ - { - "source": "npm:ansi-red", - "target": "npm:ansi-wrap", - "type": "static" - } - ], - "npm:ansi-styles@3.2.1": [ - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert", - "type": "static" - } - ], - "npm:ansi-styles": [ - { - "source": "npm:ansi-styles", - "target": "npm:color-convert@2.0.1", - "type": "static" - } - ], - "npm:ansi-to-html": [ - { - "source": "npm:ansi-to-html", - "target": "npm:entities", - "type": "static" - } - ], - "npm:anymatch@2.0.0": [ - { - "source": "npm:anymatch@2.0.0", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:anymatch@2.0.0", - "target": "npm:normalize-path@2.1.1", - "type": "static" - } - ], - "npm:anymatch": [ - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:append-buffer": [ - { - "source": "npm:append-buffer", - "target": "npm:buffer-equal", - "type": "static" - } - ], - "npm:are-we-there-yet@2.0.0": [ - { - "source": "npm:are-we-there-yet@2.0.0", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@2.0.0", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:are-we-there-yet@3.0.1": [ - { - "source": "npm:are-we-there-yet@3.0.1", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet@3.0.1", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:are-we-there-yet": [ - { - "source": "npm:are-we-there-yet", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:argparse": [ - { - "source": "npm:argparse", - "target": "npm:sprintf-js", - "type": "static" - } - ], - "npm:aria-query": [ - { - "source": "npm:aria-query", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:aria-query", - "target": "npm:@babel/runtime-corejs3", - "type": "static" - } - ], - "npm:arr-diff@1.1.0": [ - { - "source": "npm:arr-diff@1.1.0", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:arr-diff@1.1.0", - "target": "npm:array-slice@0.2.3", - "type": "static" - } - ], - "npm:arr-filter": [ - { - "source": "npm:arr-filter", - "target": "npm:make-iterator", - "type": "static" - } - ], - "npm:arr-map": [ - { - "source": "npm:arr-map", - "target": "npm:make-iterator", - "type": "static" - } - ], - "npm:array-includes": [ - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - } - ], - "npm:array-initial": [ - { - "source": "npm:array-initial", - "target": "npm:array-slice", - "type": "static" - }, - { - "source": "npm:array-initial", - "target": "npm:is-number@4.0.0", - "type": "static" - } - ], - "npm:array-last": [ - { - "source": "npm:array-last", - "target": "npm:is-number@4.0.0", - "type": "static" - } - ], - "npm:array-sort": [ - { - "source": "npm:array-sort", - "target": "npm:default-compare", - "type": "static" - }, - { - "source": "npm:array-sort", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:array-sort", - "target": "npm:kind-of@5.1.0", - "type": "static" - } - ], - "npm:array-union@1.0.2": [ - { - "source": "npm:array-union@1.0.2", - "target": "npm:array-uniq", - "type": "static" - } - ], - "npm:array.prototype.flat": [ - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:array.prototype.flatmap": [ - { - "source": "npm:array.prototype.flatmap", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:asn1.js": [ - { - "source": "npm:asn1.js", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:asn1.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:asn1.js", - "target": "npm:minimalistic-assert", - "type": "static" - } - ], - "npm:asn1": [ - { - "source": "npm:asn1", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:assert@1.5.0": [ - { - "source": "npm:assert@1.5.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:assert@1.5.0", - "target": "npm:util@0.10.3", - "type": "static" - } - ], - "npm:assert": [ - { - "source": "npm:assert", - "target": "npm:es6-object-assign", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:is-nan", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:object-is", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:util", - "type": "static" - } - ], - "npm:ast-types": [ - { - "source": "npm:ast-types", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:async-done": [ - { - "source": "npm:async-done", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:async-done", - "target": "npm:stream-exhaust", - "type": "static" - } - ], - "npm:async-retry": [ - { - "source": "npm:async-retry", - "target": "npm:retry", - "type": "static" - } - ], - "npm:async-settle": [ - { - "source": "npm:async-settle", - "target": "npm:async-done", - "type": "static" - } - ], - "npm:async": [ - { - "source": "npm:async", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:autoprefixer": [ - { - "source": "npm:autoprefixer", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:fraction.js", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:normalize-range", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:autoprefixer@9.8.6": [ - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:normalize-range", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:num2fraction", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:autoprefixer@9.8.6", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:available-typed-arrays": [ - { - "source": "npm:available-typed-arrays", - "target": "npm:array-filter", - "type": "static" - } - ], - "npm:axios@0.21.4": [ - { - "source": "npm:axios@0.21.4", - "target": "npm:follow-redirects", - "type": "static" - } - ], - "npm:axios": [ - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:proxy-from-env", - "type": "static" - } - ], - "npm:azure-devops-node-api": [ - { - "source": "npm:azure-devops-node-api", - "target": "npm:tunnel", - "type": "static" - }, - { - "source": "npm:azure-devops-node-api", - "target": "npm:typed-rest-client", - "type": "static" - } - ], - "npm:azure-storage-simple": [ - { - "source": "npm:azure-storage-simple", - "target": "npm:azure-storage", - "type": "static" - }, - { - "source": "npm:azure-storage-simple", - "target": "npm:fclone", - "type": "static" - }, - { - "source": "npm:azure-storage-simple", - "target": "npm:repromise", - "type": "static" - } - ], - "npm:azure-storage": [ - { - "source": "npm:azure-storage", - "target": "npm:browserify-mime", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:json-edm-parser", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:request", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:underscore", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:uuid@3.4.0", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:xml2js@0.2.8", - "type": "static" - }, - { - "source": "npm:azure-storage", - "target": "npm:xmlbuilder@9.0.7", - "type": "static" - } - ], - "npm:babel-code-frame": [ - { - "source": "npm:babel-code-frame", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:babel-code-frame", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:babel-code-frame", - "target": "npm:js-tokens@3.0.2", - "type": "static" - } - ], - "npm:babel-generator": [ - { - "source": "npm:babel-generator", - "target": "npm:babel-messages", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:detect-indent@4.0.0", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:jsesc@1.3.0", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:babel-generator", - "target": "npm:trim-right", - "type": "static" - } - ], - "npm:babel-jest": [ - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - } - ], - "npm:babel-loader": [ - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils@2.7.0", - "type": "static" - } - ], - "npm:babel-messages": [ - { - "source": "npm:babel-messages", - "target": "npm:babel-runtime", - "type": "static" - } - ], - "npm:babel-plugin-annotate-pure-imports": [ - { - "source": "npm:babel-plugin-annotate-pure-imports", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-annotate-pure-imports", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:babel-plugin-annotate-pure-imports", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:babel-plugin-apply-mdx-type-prop@1.6.22": [ - { - "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "target": "npm:@babel/helper-plugin-utils@7.10.4", - "type": "static" - }, - { - "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", - "target": "npm:@mdx-js/util", - "type": "static" - } - ], - "npm:babel-plugin-const-enum": [ - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:babel-plugin-emotion": [ - { - "source": "npm:babel-plugin-emotion", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:@emotion/hash", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:@emotion/serialize", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:babel-plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:find-root", - "type": "static" - }, - { - "source": "npm:babel-plugin-emotion", - "target": "npm:source-map@0.5.7", - "type": "static" - } - ], - "npm:babel-plugin-extract-import-names": [ - { - "source": "npm:babel-plugin-extract-import-names", - "target": "npm:@babel/helper-plugin-utils@7.10.4", - "type": "static" - } - ], - "npm:babel-plugin-iife-wrap-react-components": [ - { - "source": "npm:babel-plugin-iife-wrap-react-components", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-iife-wrap-react-components", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:babel-plugin-iife-wrap-react-components", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:babel-plugin-istanbul": [ - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - } - ], - "npm:babel-plugin-jest-hoist": [ - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:babel-plugin-lodash": [ - { - "source": "npm:babel-plugin-lodash", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-plugin-lodash", - "target": "npm:require-package-name", - "type": "static" - } - ], - "npm:babel-plugin-macros": [ - { - "source": "npm:babel-plugin-macros", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:cosmiconfig@6.0.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:babel-plugin-macros@3.1.0": [ - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:babel-plugin-module-resolver": [ - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:find-babel-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:pkg-up", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:reselect", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs2": [ - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs3@0.1.7": [ - { - "source": "npm:babel-plugin-polyfill-corejs3@0.1.7", - "target": "npm:@babel/helper-define-polyfill-provider@0.1.5", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3@0.1.7", - "target": "npm:core-js-compat", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs3": [ - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:core-js-compat", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-regenerator": [ - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - } - ], - "npm:babel-plugin-react-docgen": [ - { - "source": "npm:babel-plugin-react-docgen", - "target": "npm:ast-types", - "type": "static" - }, - { - "source": "npm:babel-plugin-react-docgen", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-plugin-react-docgen", - "target": "npm:react-docgen", - "type": "static" - } - ], - "npm:babel-plugin-styled-components": [ - { - "source": "npm:babel-plugin-styled-components", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:babel-plugin-styled-components", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:babel-plugin-styled-components", - "target": "npm:babel-plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:babel-plugin-styled-components", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:babel-plugin-tester": [ - { - "source": "npm:babel-plugin-tester", - "target": "npm:@types/babel-plugin-tester", - "type": "static" - }, - { - "source": "npm:babel-plugin-tester", - "target": "npm:lodash.mergewith", - "type": "static" - }, - { - "source": "npm:babel-plugin-tester", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:babel-plugin-tester", - "target": "npm:strip-indent", - "type": "static" - } - ], - "npm:babel-plugin-transform-typescript-metadata": [ - { - "source": "npm:babel-plugin-transform-typescript-metadata", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:babel-preset-current-node-syntax": [ - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-bigint", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - } - ], - "npm:babel-preset-jest": [ - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-plugin-jest-hoist", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - } - ], - "npm:babel-runtime": [ - { - "source": "npm:babel-runtime", - "target": "npm:core-js@2.6.11", - "type": "static" - }, - { - "source": "npm:babel-runtime", - "target": "npm:regenerator-runtime@0.11.1", - "type": "static" - } - ], - "npm:babel-template": [ - { - "source": "npm:babel-template", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:babel-traverse", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:babylon", - "type": "static" - }, - { - "source": "npm:babel-template", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:babel-traverse": [ - { - "source": "npm:babel-traverse", - "target": "npm:babel-code-frame", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-messages", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:babylon", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:globals@9.18.0", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:babel-traverse", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:babel-types": [ - { - "source": "npm:babel-types", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:babel-types", - "target": "npm:to-fast-properties@1.0.3", - "type": "static" - } - ], - "npm:bach": [ - { - "source": "npm:bach", - "target": "npm:arr-filter", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:arr-map", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-each", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-initial", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:array-last", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:async-done", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:async-settle", - "type": "static" - }, - { - "source": "npm:bach", - "target": "npm:now-and-later", - "type": "static" - } - ], - "npm:backfill-cache": [ - { - "source": "npm:backfill-cache", - "target": "npm:@azure/storage-blob", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:@rushstack/package-deps-hash", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:backfill-cache", - "target": "npm:tar-fs", - "type": "static" - } - ], - "npm:backfill-config": [ - { - "source": "npm:backfill-config", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill-config", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:backfill-config", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill-config", - "target": "npm:pkg-dir", - "type": "static" - } - ], - "npm:backfill-hasher": [ - { - "source": "npm:backfill-hasher", - "target": "npm:@rushstack/package-deps-hash", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill-hasher", - "target": "npm:workspace-tools@0.27.0", - "type": "static" - } - ], - "npm:backfill-logger": [ - { - "source": "npm:backfill-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:backfill-logger", - "target": "npm:filenamify", - "type": "static" - }, - { - "source": "npm:backfill-logger", - "target": "npm:fs-extra", - "type": "static" - } - ], - "npm:backfill-utils-dotenv": [ - { - "source": "npm:backfill-utils-dotenv", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:backfill-utils-dotenv", - "target": "npm:find-up", - "type": "static" - } - ], - "npm:backfill": [ - { - "source": "npm:backfill", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-cache", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-hasher", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:backfill-utils-dotenv", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:backfill", - "target": "npm:yargs@16.2.0", - "type": "static" - } - ], - "npm:base": [ - { - "source": "npm:base", - "target": "npm:cache-base", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:class-utils", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:component-emitter", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:define-property@1.0.0", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:mixin-deep", - "type": "static" - }, - { - "source": "npm:base", - "target": "npm:pascalcase", - "type": "static" - } - ], - "npm:bcrypt-pbkdf": [ - { - "source": "npm:bcrypt-pbkdf", - "target": "npm:tweetnacl", - "type": "static" - } - ], - "npm:beachball": [ - { - "source": "npm:beachball", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:toposort", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:uuid@9.0.0", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:workspace-tools@0.27.0", - "type": "static" - }, - { - "source": "npm:beachball", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - } - ], - "npm:better-opn": [ - { - "source": "npm:better-opn", - "target": "npm:open@7.4.2", - "type": "static" - } - ], - "npm:bin-check": [ - { - "source": "npm:bin-check", - "target": "npm:execa@0.7.0", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:executable", - "type": "static" - } - ], - "npm:bin-version-check": [ - { - "source": "npm:bin-version-check", - "target": "npm:bin-version", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver-truncate", - "type": "static" - } - ], - "npm:bin-version": [ - { - "source": "npm:bin-version", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:find-versions", - "type": "static" - } - ], - "npm:binary": [ - { - "source": "npm:binary", - "target": "npm:buffers", - "type": "static" - }, - { - "source": "npm:binary", - "target": "npm:chainsaw", - "type": "static" - } - ], - "npm:bindings@1.5.0": [ - { - "source": "npm:bindings@1.5.0", - "target": "npm:file-uri-to-path@1.0.0", - "type": "static" - } - ], - "npm:bl": [ - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:body-parser": [ - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs@6.9.7", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - } - ], - "npm:bonjour": [ - { - "source": "npm:bonjour", - "target": "npm:array-flatten@2.1.2", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:dns-equal", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:dns-txt", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:multicast-dns", - "type": "static" - }, - { - "source": "npm:bonjour", - "target": "npm:multicast-dns-service-types", - "type": "static" - } - ], - "npm:boxen@1.3.0": [ - { - "source": "npm:boxen@1.3.0", - "target": "npm:ansi-align@2.0.0", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:camelcase@4.1.0", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:cli-boxes@1.0.0", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:string-width@2.1.1", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:term-size@1.2.0", - "type": "static" - }, - { - "source": "npm:boxen@1.3.0", - "target": "npm:widest-line@2.0.1", - "type": "static" - } - ], - "npm:boxen": [ - { - "source": "npm:boxen", - "target": "npm:ansi-align", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:cli-boxes", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:term-size", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:type-fest@0.8.1", - "type": "static" - }, - { - "source": "npm:boxen", - "target": "npm:widest-line", - "type": "static" - } - ], - "npm:boxen@5.1.2": [ - { - "source": "npm:boxen@5.1.2", - "target": "npm:ansi-align", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:cli-boxes", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:widest-line", - "type": "static" - }, - { - "source": "npm:boxen@5.1.2", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:bplist-parser": [ - { - "source": "npm:bplist-parser", - "target": "npm:big-integer", - "type": "static" - } - ], - "npm:brace-expansion@1.1.11": [ - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - } - ], - "npm:brace-expansion": [ - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - } - ], - "npm:braces@2.3.2": [ - { - "source": "npm:braces@2.3.2", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:fill-range@4.0.0", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:repeat-element", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:snapdragon-node", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:split-string", - "type": "static" - }, - { - "source": "npm:braces@2.3.2", - "target": "npm:to-regex", - "type": "static" - } - ], - "npm:braces": [ - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - } - ], - "npm:brotli-size": [ - { - "source": "npm:brotli-size", - "target": "npm:duplexer@0.1.1", - "type": "static" - } - ], - "npm:browserify-aes": [ - { - "source": "npm:browserify-aes", - "target": "npm:buffer-xor", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:evp_bytestokey", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:browserify-aes", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:browserify-cipher": [ - { - "source": "npm:browserify-cipher", - "target": "npm:browserify-aes", - "type": "static" - }, - { - "source": "npm:browserify-cipher", - "target": "npm:browserify-des", - "type": "static" - }, - { - "source": "npm:browserify-cipher", - "target": "npm:evp_bytestokey", - "type": "static" - } - ], - "npm:browserify-des": [ - { - "source": "npm:browserify-des", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:browserify-des", - "target": "npm:des.js", - "type": "static" - }, - { - "source": "npm:browserify-des", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:browserify-des", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:browserify-rsa": [ - { - "source": "npm:browserify-rsa", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:browserify-rsa", - "target": "npm:randombytes", - "type": "static" - } - ], - "npm:browserify-sign": [ - { - "source": "npm:browserify-sign", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:browserify-rsa", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:create-hmac", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:elliptic", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:browserify-sign", - "target": "npm:parse-asn1", - "type": "static" - } - ], - "npm:browserify-zlib": [ - { - "source": "npm:browserify-zlib", - "target": "npm:pako", - "type": "static" - } - ], - "npm:browserslist": [ - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - } - ], - "npm:bs-logger": [ - { - "source": "npm:bs-logger", - "target": "npm:fast-json-stable-stringify", - "type": "static" - } - ], - "npm:bser": [ - { - "source": "npm:bser", - "target": "npm:node-int64", - "type": "static" - } - ], - "npm:buffer@4.9.1": [ - { - "source": "npm:buffer@4.9.1", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@4.9.1", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:buffer@4.9.1", - "target": "npm:isarray@1.0.0", - "type": "static" - } - ], - "npm:buffer": [ - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:buffer@6.0.3": [ - { - "source": "npm:buffer@6.0.3", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:builtins": [ - { - "source": "npm:builtins", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:cacache@12.0.3": [ - { - "source": "npm:cacache@12.0.3", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:chownr@1.1.4", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:figgy-pudding", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:mississippi", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:move-concurrently", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:ssri@6.0.2", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:cacache@12.0.3", - "target": "npm:y18n", - "type": "static" - } - ], - "npm:cacache": [ - { - "source": "npm:cacache", - "target": "npm:@npmcli/move-file", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri@8.0.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - } - ], - "npm:cacache@16.1.3": [ - { - "source": "npm:cacache@16.1.3", - "target": "npm:@npmcli/fs@2.1.2", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:@npmcli/move-file@2.0.1", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:ssri@9.0.1", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache@16.1.3", - "target": "npm:unique-filename@2.0.1", - "type": "static" - } - ], - "npm:cacache@17.1.3": [ - { - "source": "npm:cacache@17.1.3", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:fs-minipass@3.0.2", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:glob@10.3.3", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache@17.1.3", - "target": "npm:unique-filename@3.0.0", - "type": "static" - } - ], - "npm:cache-base": [ - { - "source": "npm:cache-base", - "target": "npm:collection-visit", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:component-emitter", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:has-value", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:set-value", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:to-object-path", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:union-value", - "type": "static" - }, - { - "source": "npm:cache-base", - "target": "npm:unset-value", - "type": "static" - } - ], - "npm:cache-content-type": [ - { - "source": "npm:cache-content-type", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:cache-content-type", - "target": "npm:ylru", - "type": "static" - } - ], - "npm:cache-swap": [ - { - "source": "npm:cache-swap", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:cache-swap", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:cache-swap", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:cache-swap", - "target": "npm:rimraf@2.7.1", - "type": "static" - } - ], - "npm:cacheable-request": [ - { - "source": "npm:cacheable-request", - "target": "npm:clone-response", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:call-bind": [ - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:caller-callsite": [ - { - "source": "npm:caller-callsite", - "target": "npm:callsites@2.0.0", - "type": "static" - } - ], - "npm:caller-path": [ - { - "source": "npm:caller-path", - "target": "npm:caller-callsite", - "type": "static" - } - ], - "npm:camel-case": [ - { - "source": "npm:camel-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:camel-case", - "target": "npm:upper-case", - "type": "static" - } - ], - "npm:camel-case@4.1.2": [ - { - "source": "npm:camel-case@4.1.2", - "target": "npm:pascal-case@3.1.2", - "type": "static" - }, - { - "source": "npm:camel-case@4.1.2", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:camelcase-keys@2.1.0": [ - { - "source": "npm:camelcase-keys@2.1.0", - "target": "npm:camelcase@2.1.1", - "type": "static" - }, - { - "source": "npm:camelcase-keys@2.1.0", - "target": "npm:map-obj", - "type": "static" - } - ], - "npm:camelcase-keys": [ - { - "source": "npm:camelcase-keys", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:map-obj@4.1.0", - "type": "static" - }, - { - "source": "npm:camelcase-keys", - "target": "npm:quick-lru@4.0.1", - "type": "static" - } - ], - "npm:capture-exit": [ - { - "source": "npm:capture-exit", - "target": "npm:rsvp", - "type": "static" - } - ], - "npm:cardinal": [ - { - "source": "npm:cardinal", - "target": "npm:ansicolors", - "type": "static" - }, - { - "source": "npm:cardinal", - "target": "npm:redeyed", - "type": "static" - } - ], - "npm:chai": [ - { - "source": "npm:chai", - "target": "npm:assertion-error", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:check-error", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:deep-eql", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:get-func-name", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:loupe", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:pathval", - "type": "static" - }, - { - "source": "npm:chai", - "target": "npm:type-detect", - "type": "static" - } - ], - "npm:chainsaw": [ - { - "source": "npm:chainsaw", - "target": "npm:traverse@0.3.9", - "type": "static" - } - ], - "npm:chalk": [ - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:chalk@4.1.2": [ - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:chalk@1.1.3": [ - { - "source": "npm:chalk@1.1.3", - "target": "npm:ansi-styles@2.2.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:has-ansi", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:supports-color@2.0.0", - "type": "static" - } - ], - "npm:chalk@2.4.2": [ - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - } - ], - "npm:chalk@3.0.0": [ - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:change-case": [ - { - "source": "npm:change-case", - "target": "npm:camel-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:constant-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:dot-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:header-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:is-lower-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:is-upper-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:lower-case-first", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:param-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:pascal-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:path-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:sentence-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:snake-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:swap-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:title-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:upper-case", - "type": "static" - }, - { - "source": "npm:change-case", - "target": "npm:upper-case-first", - "type": "static" - } - ], - "npm:cheerio": [ - { - "source": "npm:cheerio", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:htmlparser2@3.10.1", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:cheerio", - "target": "npm:parse5@3.0.3", - "type": "static" - } - ], - "npm:chokidar@3.3.0": [ - { - "source": "npm:chokidar@3.3.0", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:readdirp@3.2.0", - "type": "static" - }, - { - "source": "npm:chokidar@3.3.0", - "target": "npm:fsevents@2.1.3", - "type": "static" - } - ], - "npm:chokidar": [ - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents@2.3.3", - "type": "static" - } - ], - "npm:chokidar@2.1.8": [ - { - "source": "npm:chokidar@2.1.8", - "target": "npm:anymatch@2.0.0", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:async-each", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:braces@2.3.2", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:glob-parent@3.1.0", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:is-binary-path@1.0.1", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:readdirp@2.2.1", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:upath@1.1.2", - "type": "static" - }, - { - "source": "npm:chokidar@2.1.8", - "target": "npm:fsevents@1.2.13", - "type": "static" - } - ], - "npm:chrome-remote-interface": [ - { - "source": "npm:chrome-remote-interface", - "target": "npm:commander@2.11.0", - "type": "static" - }, - { - "source": "npm:chrome-remote-interface", - "target": "npm:ws@7.5.6", - "type": "static" - } - ], - "npm:chrome-trace-event": [ - { - "source": "npm:chrome-trace-event", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:cipher-base": [ - { - "source": "npm:cipher-base", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:cipher-base", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:class-utils": [ - { - "source": "npm:class-utils", - "target": "npm:arr-union", - "type": "static" - }, - { - "source": "npm:class-utils", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:class-utils", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:class-utils", - "target": "npm:static-extend", - "type": "static" - } - ], - "npm:clean-css": [ - { - "source": "npm:clean-css", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:clean-stack@4.2.0": [ - { - "source": "npm:clean-stack@4.2.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - } - ], - "npm:clean-webpack-plugin": [ - { - "source": "npm:clean-webpack-plugin", - "target": "npm:del@4.1.1", - "type": "static" - } - ], - "npm:cli-cursor": [ - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - } - ], - "npm:cli-cursor@2.1.0": [ - { - "source": "npm:cli-cursor@2.1.0", - "target": "npm:restore-cursor@2.0.0", - "type": "static" - } - ], - "npm:cli-table3": [ - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - } - ], - "npm:cli-table": [ - { - "source": "npm:cli-table", - "target": "npm:colors@1.0.3", - "type": "static" - } - ], - "npm:cli-truncate": [ - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi@3.0.0", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width", - "type": "static" - } - ], - "npm:clipboard": [ - { - "source": "npm:clipboard", - "target": "npm:good-listener", - "type": "static" - }, - { - "source": "npm:clipboard", - "target": "npm:select", - "type": "static" - }, - { - "source": "npm:clipboard", - "target": "npm:tiny-emitter", - "type": "static" - } - ], - "npm:cliui@3.2.0": [ - { - "source": "npm:cliui@3.2.0", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:cliui@3.2.0", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:cliui@3.2.0", - "target": "npm:wrap-ansi@2.1.0", - "type": "static" - } - ], - "npm:cliui@5.0.0": [ - { - "source": "npm:cliui@5.0.0", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:cliui@5.0.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:cliui@5.0.0", - "target": "npm:wrap-ansi@5.1.0", - "type": "static" - } - ], - "npm:cliui@6.0.0": [ - { - "source": "npm:cliui@6.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:wrap-ansi@6.2.0", - "type": "static" - } - ], - "npm:cliui@7.0.4": [ - { - "source": "npm:cliui@7.0.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:cliui@7.0.4", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:cliui": [ - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:clone-deep": [ - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - } - ], - "npm:clone-response": [ - { - "source": "npm:clone-response", - "target": "npm:mimic-response@1.0.1", - "type": "static" - } - ], - "npm:cloneable-readable": [ - { - "source": "npm:cloneable-readable", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:cloneable-readable", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:co-body": [ - { - "source": "npm:co-body", - "target": "npm:inflation", - "type": "static" - }, - { - "source": "npm:co-body", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:co-body", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:co-body", - "target": "npm:type-is", - "type": "static" - } - ], - "npm:codesandbox-import-utils": [ - { - "source": "npm:codesandbox-import-utils", - "target": "npm:codesandbox-import-util-types", - "type": "static" - }, - { - "source": "npm:codesandbox-import-utils", - "target": "npm:istextorbinary", - "type": "static" - }, - { - "source": "npm:codesandbox-import-utils", - "target": "npm:lz-string", - "type": "static" - } - ], - "npm:codesandboxer": [ - { - "source": "npm:codesandboxer", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:isomorphic-unfetch", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:lz-string", - "type": "static" - }, - { - "source": "npm:codesandboxer", - "target": "npm:path-browserify", - "type": "static" - } - ], - "npm:collection-map": [ - { - "source": "npm:collection-map", - "target": "npm:arr-map", - "type": "static" - }, - { - "source": "npm:collection-map", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:collection-map", - "target": "npm:make-iterator", - "type": "static" - } - ], - "npm:collection-visit": [ - { - "source": "npm:collection-visit", - "target": "npm:map-visit", - "type": "static" - }, - { - "source": "npm:collection-visit", - "target": "npm:object-visit", - "type": "static" - } - ], - "npm:color-convert": [ - { - "source": "npm:color-convert", - "target": "npm:color-name@1.1.3", - "type": "static" - } - ], - "npm:color-convert@2.0.1": [ - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name", - "type": "static" - } - ], - "npm:color-string": [ - { - "source": "npm:color-string", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - } - ], - "npm:color": [ - { - "source": "npm:color", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-string", - "type": "static" - } - ], - "npm:columnify": [ - { - "source": "npm:columnify", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:combined-stream": [ - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - } - ], - "npm:command-line-args": [ - { - "source": "npm:command-line-args", - "target": "npm:array-back", - "type": "static" - }, - { - "source": "npm:command-line-args", - "target": "npm:find-replace", - "type": "static" - }, - { - "source": "npm:command-line-args", - "target": "npm:lodash.camelcase", - "type": "static" - }, - { - "source": "npm:command-line-args", - "target": "npm:typical@4.0.0", - "type": "static" - } - ], - "npm:command-line-usage": [ - { - "source": "npm:command-line-usage", - "target": "npm:array-back@4.0.2", - "type": "static" - }, - { - "source": "npm:command-line-usage", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:command-line-usage", - "target": "npm:table-layout", - "type": "static" - }, - { - "source": "npm:command-line-usage", - "target": "npm:typical", - "type": "static" - } - ], - "npm:compare-func": [ - { - "source": "npm:compare-func", - "target": "npm:array-ify", - "type": "static" - }, - { - "source": "npm:compare-func", - "target": "npm:dot-prop@5.3.0", - "type": "static" - } - ], - "npm:compressible": [ - { - "source": "npm:compressible", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:compression": [ - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - } - ], - "npm:concat-stream": [ - { - "source": "npm:concat-stream", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:typedarray", - "type": "static" - } - ], - "npm:concat-stream@2.0.0": [ - { - "source": "npm:concat-stream@2.0.0", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream@2.0.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream@2.0.0", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:concat-stream@2.0.0", - "target": "npm:typedarray", - "type": "static" - } - ], - "npm:configstore": [ - { - "source": "npm:configstore", - "target": "npm:dot-prop", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:make-dir@1.3.0", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:unique-string", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:configstore", - "target": "npm:xdg-basedir", - "type": "static" - } - ], - "npm:connect": [ - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - } - ], - "npm:constant-case": [ - { - "source": "npm:constant-case", - "target": "npm:snake-case", - "type": "static" - }, - { - "source": "npm:constant-case", - "target": "npm:upper-case", - "type": "static" - } - ], - "npm:content-disposition": [ - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:conventional-changelog-angular": [ - { - "source": "npm:conventional-changelog-angular", - "target": "npm:compare-func", - "type": "static" - } - ], - "npm:conventional-changelog-core": [ - { - "source": "npm:conventional-changelog-core", - "target": "npm:add-stream", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:conventional-changelog-writer", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:get-pkg-repo", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-raw-commits", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-remote-origin-url", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:git-semver-tags", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:normalize-package-data@3.0.3", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:read-pkg", - "type": "static" - }, - { - "source": "npm:conventional-changelog-core", - "target": "npm:read-pkg-up@3.0.0", - "type": "static" - } - ], - "npm:conventional-changelog-writer": [ - { - "source": "npm:conventional-changelog-writer", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:dateformat", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:conventional-changelog-writer", - "target": "npm:split", - "type": "static" - } - ], - "npm:conventional-commits-filter": [ - { - "source": "npm:conventional-commits-filter", - "target": "npm:lodash.ismatch", - "type": "static" - }, - { - "source": "npm:conventional-commits-filter", - "target": "npm:modify-values", - "type": "static" - } - ], - "npm:conventional-commits-parser": [ - { - "source": "npm:conventional-commits-parser", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:is-text-path", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:conventional-commits-parser", - "target": "npm:split2", - "type": "static" - } - ], - "npm:conventional-recommended-bump": [ - { - "source": "npm:conventional-recommended-bump", - "target": "npm:concat-stream@2.0.0", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-changelog-preset-loader", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-commits-filter", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:conventional-commits-parser", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:git-raw-commits", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:git-semver-tags", - "type": "static" - }, - { - "source": "npm:conventional-recommended-bump", - "target": "npm:meow", - "type": "static" - } - ], - "npm:convert-source-map": [ - { - "source": "npm:convert-source-map", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - } - ], - "npm:cookies": [ - { - "source": "npm:cookies", - "target": "npm:depd@2.0.0", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:keygrip", - "type": "static" - } - ], - "npm:copy-concurrently": [ - { - "source": "npm:copy-concurrently", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:fs-write-stream-atomic", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:iferr", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:copy-concurrently", - "target": "npm:run-queue", - "type": "static" - } - ], - "npm:copy-props": [ - { - "source": "npm:copy-props", - "target": "npm:each-props", - "type": "static" - }, - { - "source": "npm:copy-props", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - } - ], - "npm:copy-to-clipboard": [ - { - "source": "npm:copy-to-clipboard", - "target": "npm:toggle-selection", - "type": "static" - } - ], - "npm:copy-webpack-plugin": [ - { - "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:serialize-javascript@5.0.1", - "type": "static" - } - ], - "npm:core-js-compat": [ - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - } - ], - "npm:cors": [ - { - "source": "npm:cors", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:vary", - "type": "static" - } - ], - "npm:cosmiconfig@8.0.0": [ - { - "source": "npm:cosmiconfig@8.0.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.0.0", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.0.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.0.0", - "target": "npm:path-type", - "type": "static" - } - ], - "npm:cosmiconfig@8.2.0": [ - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@8.2.0", - "target": "npm:path-type", - "type": "static" - } - ], - "npm:cosmiconfig@5.2.1": [ - { - "source": "npm:cosmiconfig@5.2.1", - "target": "npm:import-fresh@2.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig@5.2.1", - "target": "npm:is-directory", - "type": "static" - }, - { - "source": "npm:cosmiconfig@5.2.1", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig@5.2.1", - "target": "npm:parse-json@4.0.0", - "type": "static" - } - ], - "npm:cosmiconfig@6.0.0": [ - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@6.0.0", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:cosmiconfig": [ - { - "source": "npm:cosmiconfig", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:cp-file": [ - { - "source": "npm:cp-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:cp-file", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:cp-file", - "target": "npm:nested-error-stacks", - "type": "static" - }, - { - "source": "npm:cp-file", - "target": "npm:p-event", - "type": "static" - } - ], - "npm:cpy": [ - { - "source": "npm:cpy", - "target": "npm:arrify", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:cp-file", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:globby@9.2.0", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:has-glob", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:junk", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:nested-error-stacks", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:p-all", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:p-filter", - "type": "static" - }, - { - "source": "npm:cpy", - "target": "npm:p-map@3.0.0", - "type": "static" - } - ], - "npm:create-ecdh": [ - { - "source": "npm:create-ecdh", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:create-ecdh", - "target": "npm:elliptic", - "type": "static" - } - ], - "npm:create-error-class": [ - { - "source": "npm:create-error-class", - "target": "npm:capture-stack-trace", - "type": "static" - } - ], - "npm:create-hash": [ - { - "source": "npm:create-hash", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:create-hash", - "target": "npm:sha.js", - "type": "static" - } - ], - "npm:create-hmac": [ - { - "source": "npm:create-hmac", - "target": "npm:cipher-base", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:create-hmac", - "target": "npm:sha.js", - "type": "static" - } - ], - "npm:create-jest": [ - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - } - ], - "npm:cross-env": [ - { - "source": "npm:cross-env", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - } - ], - "npm:cross-fetch": [ - { - "source": "npm:cross-fetch", - "target": "npm:node-fetch", - "type": "static" - } - ], - "npm:cross-spawn@5.1.0": [ - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:lru-cache@4.1.5", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which", - "type": "static" - } - ], - "npm:cross-spawn@6.0.5": [ - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:nice-try", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which", - "type": "static" - } - ], - "npm:cross-spawn": [ - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command@2.0.0", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which@2.0.2", - "type": "static" - } - ], - "npm:crypto-browserify": [ - { - "source": "npm:crypto-browserify", - "target": "npm:browserify-cipher", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:browserify-sign", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-ecdh", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:create-hmac", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:diffie-hellman", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:pbkdf2", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:public-encrypt", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:crypto-browserify", - "target": "npm:randomfill", - "type": "static" - } - ], - "npm:css-in-js-utils": [ - { - "source": "npm:css-in-js-utils", - "target": "npm:hyphenate-style-name", - "type": "static" - } - ], - "npm:css-loader": [ - { - "source": "npm:css-loader", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:icss-utils@5.1.0", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:css-loader@3.6.0": [ - { - "source": "npm:css-loader@3.6.0", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-modules-extract-imports@2.0.0", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-modules-local-by-default@3.0.2", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-modules-scope@2.2.0", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-modules-values@3.0.0", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:schema-utils@2.7.0", - "type": "static" - }, - { - "source": "npm:css-loader@3.6.0", - "target": "npm:semver", - "type": "static" - } - ], - "npm:css-select@4.1.3": [ - { - "source": "npm:css-select@4.1.3", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:css-what@5.0.1", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select@4.1.3", - "target": "npm:nth-check@2.0.0", - "type": "static" - } - ], - "npm:css-select": [ - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils@1.5.1", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - } - ], - "npm:css-to-react-native": [ - { - "source": "npm:css-to-react-native", - "target": "npm:camelize", - "type": "static" - }, - { - "source": "npm:css-to-react-native", - "target": "npm:css-color-keywords", - "type": "static" - }, - { - "source": "npm:css-to-react-native", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:css": [ - { - "source": "npm:css", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:source-map-resolve", - "type": "static" - }, - { - "source": "npm:css", - "target": "npm:urix", - "type": "static" - } - ], - "npm:cssstyle": [ - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - } - ], - "npm:currently-unhandled": [ - { - "source": "npm:currently-unhandled", - "target": "npm:array-find-index", - "type": "static" - } - ], - "npm:cypress": [ - { - "source": "npm:cypress", - "target": "npm:@cypress/request", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/xvfb", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sinonjs__fake-timers", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sizzle", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:blob-util", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cachedir", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:check-more-types", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:commander@5.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:common-tags", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:dayjs", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:eventemitter2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:getos", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-installed-globally", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lazy-ass", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:listr2@3.14.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:ospath", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:proxy-from-env@1.0.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:request-progress", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:untildify", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:yauzl", - "type": "static" - } - ], - "npm:d3-array@2.12.1": [ - { - "source": "npm:d3-array@2.12.1", - "target": "npm:internmap", - "type": "static" - } - ], - "npm:d3-contour": [ - { - "source": "npm:d3-contour", - "target": "npm:d3-array", - "type": "static" - } - ], - "npm:d3-dsv": [ - { - "source": "npm:d3-dsv", - "target": "npm:commander@7.2.0", - "type": "static" - }, - { - "source": "npm:d3-dsv", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:d3-dsv", - "target": "npm:rw", - "type": "static" - } - ], - "npm:d3-fetch": [ - { - "source": "npm:d3-fetch", - "target": "npm:d3-dsv", - "type": "static" - } - ], - "npm:d3-geo": [ - { - "source": "npm:d3-geo", - "target": "npm:d3-array", - "type": "static" - } - ], - "npm:d3-interpolate": [ - { - "source": "npm:d3-interpolate", - "target": "npm:d3-color", - "type": "static" - } - ], - "npm:d3-sankey": [ - { - "source": "npm:d3-sankey", - "target": "npm:d3-array@2.12.1", - "type": "static" - }, - { - "source": "npm:d3-sankey", - "target": "npm:d3-shape", - "type": "static" - } - ], - "npm:d3-sankey@0.7.1": [ - { - "source": "npm:d3-sankey@0.7.1", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:d3-sankey@0.7.1", - "target": "npm:d3-collection", - "type": "static" - }, - { - "source": "npm:d3-sankey@0.7.1", - "target": "npm:d3-shape", - "type": "static" - } - ], - "npm:d3-scale": [ - { - "source": "npm:d3-scale", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-collection", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-color", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-interpolate", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-time@1.1.0", - "type": "static" - }, - { - "source": "npm:d3-scale", - "target": "npm:d3-time-format@2.1.3", - "type": "static" - } - ], - "npm:d3-scale@4.0.2": [ - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-array@2.12.1", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-interpolate", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-time", - "type": "static" - }, - { - "source": "npm:d3-scale@4.0.2", - "target": "npm:d3-time-format", - "type": "static" - } - ], - "npm:d3-shape@3.2.0": [ - { - "source": "npm:d3-shape@3.2.0", - "target": "npm:d3-path@3.1.0", - "type": "static" - } - ], - "npm:d3-shape": [ - { - "source": "npm:d3-shape", - "target": "npm:d3-path", - "type": "static" - } - ], - "npm:d3-time-format@2.1.3": [ - { - "source": "npm:d3-time-format@2.1.3", - "target": "npm:d3-time@1.1.0", - "type": "static" - } - ], - "npm:d3-time-format": [ - { - "source": "npm:d3-time-format", - "target": "npm:d3-time", - "type": "static" - } - ], - "npm:d3-time": [ - { - "source": "npm:d3-time", - "target": "npm:d3-array@2.12.1", - "type": "static" - } - ], - "npm:d": [ - { - "source": "npm:d", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:d", - "target": "npm:type", - "type": "static" - } - ], - "npm:danger": [ - { - "source": "npm:danger", - "target": "npm:@babel/polyfill", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:@octokit/rest", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:async-retry", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:fast-json-patch", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:get-stdin", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:gitlab", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:http-proxy-agent@2.1.0", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:https-proxy-agent@2.2.4", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:hyperlinker", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:jsonpointer", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.find", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.isobject", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.keys", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.mapvalues", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:memfs-or-file-map-to-github-branch", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:node-cleanup", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:override-require", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:parse-diff", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:parse-git-config", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:parse-github-url", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:parse-link-header", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:pinpoint", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:prettyjson", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:readline-sync", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:danger", - "target": "npm:supports-hyperlinks", - "type": "static" - } - ], - "npm:dashdash": [ - { - "source": "npm:dashdash", - "target": "npm:assert-plus", - "type": "static" - } - ], - "npm:data-urls": [ - { - "source": "npm:data-urls", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-url", - "type": "static" - } - ], - "npm:debug-fabulous": [ - { - "source": "npm:debug-fabulous", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:debug-fabulous", - "target": "npm:memoizee", - "type": "static" - }, - { - "source": "npm:debug-fabulous", - "target": "npm:object-assign", - "type": "static" - } - ], - "npm:debug@2.6.9": [ - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - } - ], - "npm:debug@3.1.0": [ - { - "source": "npm:debug@3.1.0", - "target": "npm:ms@2.0.0", - "type": "static" - } - ], - "npm:debug@3.2.6": [ - { - "source": "npm:debug@3.2.6", - "target": "npm:ms", - "type": "static" - } - ], - "npm:debug@3.2.7": [ - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - } - ], - "npm:debug": [ - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - } - ], - "npm:debug@4.1.1": [ - { - "source": "npm:debug@4.1.1", - "target": "npm:ms", - "type": "static" - } - ], - "npm:decamelize-keys": [ - { - "source": "npm:decamelize-keys", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:decamelize-keys", - "target": "npm:map-obj", - "type": "static" - } - ], - "npm:decompress-response": [ - { - "source": "npm:decompress-response", - "target": "npm:mimic-response", - "type": "static" - } - ], - "npm:deep-assign": [ - { - "source": "npm:deep-assign", - "target": "npm:is-obj", - "type": "static" - } - ], - "npm:deep-eql": [ - { - "source": "npm:deep-eql", - "target": "npm:type-detect", - "type": "static" - } - ], - "npm:default-browser-id": [ - { - "source": "npm:default-browser-id", - "target": "npm:bplist-parser", - "type": "static" - }, - { - "source": "npm:default-browser-id", - "target": "npm:meow@3.7.0", - "type": "static" - }, - { - "source": "npm:default-browser-id", - "target": "npm:untildify@2.1.0", - "type": "static" - } - ], - "npm:default-compare": [ - { - "source": "npm:default-compare", - "target": "npm:kind-of@5.1.0", - "type": "static" - } - ], - "npm:default-gateway": [ - { - "source": "npm:default-gateway", - "target": "npm:execa", - "type": "static" - } - ], - "npm:defaults": [ - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - } - ], - "npm:define-properties": [ - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:define-property": [ - { - "source": "npm:define-property", - "target": "npm:is-descriptor@0.1.6", - "type": "static" - } - ], - "npm:define-property@1.0.0": [ - { - "source": "npm:define-property@1.0.0", - "target": "npm:is-descriptor", - "type": "static" - } - ], - "npm:define-property@2.0.2": [ - { - "source": "npm:define-property@2.0.2", - "target": "npm:is-descriptor", - "type": "static" - }, - { - "source": "npm:define-property@2.0.2", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:del": [ - { - "source": "npm:del", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:slash", - "type": "static" - } - ], - "npm:del@4.1.1": [ - { - "source": "npm:del@4.1.1", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:globby@6.1.0", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:is-path-in-cwd", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:p-map@2.1.0", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:del@4.1.1", - "target": "npm:rimraf@2.7.1", - "type": "static" - } - ], - "npm:del@5.1.0": [ - { - "source": "npm:del@5.1.0", - "target": "npm:globby@10.0.2", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:p-map@3.0.0", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del@5.1.0", - "target": "npm:slash", - "type": "static" - } - ], - "npm:del@7.0.0": [ - { - "source": "npm:del@7.0.0", - "target": "npm:globby@13.2.2", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:is-path-cwd@3.0.0", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:is-path-inside@4.0.0", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:p-map@5.5.0", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del@7.0.0", - "target": "npm:slash@4.0.0", - "type": "static" - } - ], - "npm:des.js": [ - { - "source": "npm:des.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:des.js", - "target": "npm:minimalistic-assert", - "type": "static" - } - ], - "npm:detab": [ - { - "source": "npm:detab", - "target": "npm:repeat-string", - "type": "static" - } - ], - "npm:detect-indent@4.0.0": [ - { - "source": "npm:detect-indent@4.0.0", - "target": "npm:repeating", - "type": "static" - } - ], - "npm:detect-package-manager": [ - { - "source": "npm:detect-package-manager", - "target": "npm:execa", - "type": "static" - } - ], - "npm:detect-port": [ - { - "source": "npm:detect-port", - "target": "npm:address", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:debug", - "type": "static" - } - ], - "npm:diffie-hellman": [ - { - "source": "npm:diffie-hellman", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:diffie-hellman", - "target": "npm:miller-rabin", - "type": "static" - }, - { - "source": "npm:diffie-hellman", - "target": "npm:randombytes", - "type": "static" - } - ], - "npm:dir-glob@2.2.2": [ - { - "source": "npm:dir-glob@2.2.2", - "target": "npm:path-type@3.0.0", - "type": "static" - } - ], - "npm:dir-glob": [ - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - } - ], - "npm:dns-packet": [ - { - "source": "npm:dns-packet", - "target": "npm:ip@1.1.5", - "type": "static" - }, - { - "source": "npm:dns-packet", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:dns-txt": [ - { - "source": "npm:dns-txt", - "target": "npm:buffer-indexof", - "type": "static" - } - ], - "npm:doctoc": [ - { - "source": "npm:doctoc", - "target": "npm:@textlint/markdown-to-ast", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:anchor-markdown-header", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:underscore", - "type": "static" - }, - { - "source": "npm:doctoc", - "target": "npm:update-section", - "type": "static" - } - ], - "npm:doctrine": [ - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:doctrine@2.1.0": [ - { - "source": "npm:doctrine@2.1.0", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:dom-converter": [ - { - "source": "npm:dom-converter", - "target": "npm:utila", - "type": "static" - } - ], - "npm:dom-css": [ - { - "source": "npm:dom-css", - "target": "npm:add-px-to-style", - "type": "static" - }, - { - "source": "npm:dom-css", - "target": "npm:prefix-style", - "type": "static" - }, - { - "source": "npm:dom-css", - "target": "npm:to-camel-case", - "type": "static" - } - ], - "npm:dom-helpers": [ - { - "source": "npm:dom-helpers", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:dom-helpers", - "target": "npm:csstype@2.6.19", - "type": "static" - } - ], - "npm:dom-serialize": [ - { - "source": "npm:dom-serialize", - "target": "npm:custom-event", - "type": "static" - }, - { - "source": "npm:dom-serialize", - "target": "npm:ent", - "type": "static" - }, - { - "source": "npm:dom-serialize", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:dom-serialize", - "target": "npm:void-elements", - "type": "static" - } - ], - "npm:dom-serializer": [ - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype@1.3.1", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities", - "type": "static" - } - ], - "npm:dom-serializer@1.3.2": [ - { - "source": "npm:dom-serializer@1.3.2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer@1.3.2", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer@1.3.2", - "target": "npm:entities@2.0.0", - "type": "static" - } - ], - "npm:domexception": [ - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:domhandler@2.4.2": [ - { - "source": "npm:domhandler@2.4.2", - "target": "npm:domelementtype@1.3.1", - "type": "static" - } - ], - "npm:domhandler@3.0.0": [ - { - "source": "npm:domhandler@3.0.0", - "target": "npm:domelementtype", - "type": "static" - } - ], - "npm:domhandler": [ - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - } - ], - "npm:domutils@1.5.1": [ - { - "source": "npm:domutils@1.5.1", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils@1.5.1", - "target": "npm:domelementtype@1.3.1", - "type": "static" - } - ], - "npm:domutils": [ - { - "source": "npm:domutils", - "target": "npm:dom-serializer@1.3.2", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - } - ], - "npm:dot-case": [ - { - "source": "npm:dot-case", - "target": "npm:no-case", - "type": "static" - } - ], - "npm:dot-case@3.0.4": [ - { - "source": "npm:dot-case@3.0.4", - "target": "npm:no-case@3.0.4", - "type": "static" - }, - { - "source": "npm:dot-case@3.0.4", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:dot-prop": [ - { - "source": "npm:dot-prop", - "target": "npm:is-obj", - "type": "static" - } - ], - "npm:dot-prop@5.3.0": [ - { - "source": "npm:dot-prop@5.3.0", - "target": "npm:is-obj@2.0.0", - "type": "static" - } - ], - "npm:downshift": [ - { - "source": "npm:downshift", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:downshift", - "target": "npm:compute-scroll-into-view", - "type": "static" - }, - { - "source": "npm:downshift", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:downshift", - "target": "npm:react-is@16.13.1", - "type": "static" - } - ], - "npm:duplexer2": [ - { - "source": "npm:duplexer2", - "target": "npm:readable-stream@1.1.14", - "type": "static" - } - ], - "npm:duplexer2@0.1.4": [ - { - "source": "npm:duplexer2@0.1.4", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:duplexify": [ - { - "source": "npm:duplexify", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:stream-shift", - "type": "static" - } - ], - "npm:each-props": [ - { - "source": "npm:each-props", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:each-props", - "target": "npm:object.defaults", - "type": "static" - } - ], - "npm:ecc-jsbn": [ - { - "source": "npm:ecc-jsbn", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:ecdsa-sig-formatter": [ - { - "source": "npm:ecdsa-sig-formatter", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:editions": [ - { - "source": "npm:editions", - "target": "npm:errlop", - "type": "static" - }, - { - "source": "npm:editions", - "target": "npm:semver", - "type": "static" - } - ], - "npm:ejs": [ - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - } - ], - "npm:element-resize-detector": [ - { - "source": "npm:element-resize-detector", - "target": "npm:batch-processor", - "type": "static" - } - ], - "npm:elliptic": [ - { - "source": "npm:elliptic", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:brorand", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:hash.js", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:hmac-drbg", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:elliptic", - "target": "npm:minimalistic-crypto-utils", - "type": "static" - } - ], - "npm:encoding": [ - { - "source": "npm:encoding", - "target": "npm:iconv-lite", - "type": "static" - } - ], - "npm:end-of-stream": [ - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - } - ], - "npm:endent": [ - { - "source": "npm:endent", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:endent", - "target": "npm:fast-json-parse", - "type": "static" - }, - { - "source": "npm:endent", - "target": "npm:objectorarray", - "type": "static" - } - ], - "npm:engine.io": [ - { - "source": "npm:engine.io", - "target": "npm:@types/cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:ws@8.2.3", - "type": "static" - } - ], - "npm:enhanced-resolve@4.5.0": [ - { - "source": "npm:enhanced-resolve@4.5.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve@4.5.0", - "target": "npm:memory-fs@0.5.0", - "type": "static" - }, - { - "source": "npm:enhanced-resolve@4.5.0", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:enhanced-resolve": [ - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable@2.2.1", - "type": "static" - } - ], - "npm:enquirer": [ - { - "source": "npm:enquirer", - "target": "npm:ansi-colors@4.1.1", - "type": "static" - } - ], - "npm:enzyme-shallow-equal": [ - { - "source": "npm:enzyme-shallow-equal", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:enzyme-shallow-equal", - "target": "npm:object-is", - "type": "static" - } - ], - "npm:enzyme-to-json": [ - { - "source": "npm:enzyme-to-json", - "target": "npm:@types/cheerio", - "type": "static" - }, - { - "source": "npm:enzyme-to-json", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:enzyme-to-json", - "target": "npm:react-is@16.13.1", - "type": "static" - } - ], - "npm:enzyme": [ - { - "source": "npm:enzyme", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:cheerio", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:html-element-map", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:is-subset", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:lodash.escape@4.0.1", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:lodash.isequal", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object-is", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:raf", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:rst-selector-parser", - "type": "static" - }, - { - "source": "npm:enzyme", - "target": "npm:string.prototype.trim", - "type": "static" - } - ], - "npm:errno": [ - { - "source": "npm:errno", - "target": "npm:prr", - "type": "static" - } - ], - "npm:error-ex": [ - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - } - ], - "npm:error-stack-parser": [ - { - "source": "npm:error-stack-parser", - "target": "npm:stackframe", - "type": "static" - } - ], - "npm:es-abstract": [ - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - } - ], - "npm:es-to-primitive": [ - { - "source": "npm:es-to-primitive", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-symbol", - "type": "static" - } - ], - "npm:es5-ext": [ - { - "source": "npm:es5-ext", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:es6-symbol", - "type": "static" - }, - { - "source": "npm:es5-ext", - "target": "npm:next-tick", - "type": "static" - } - ], - "npm:es6-iterator": [ - { - "source": "npm:es6-iterator", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-iterator", - "target": "npm:es6-symbol", - "type": "static" - } - ], - "npm:es6-promisify": [ - { - "source": "npm:es6-promisify", - "target": "npm:es6-promise", - "type": "static" - } - ], - "npm:es6-symbol": [ - { - "source": "npm:es6-symbol", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-symbol", - "target": "npm:ext", - "type": "static" - } - ], - "npm:es6-weak-map": [ - { - "source": "npm:es6-weak-map", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:es6-weak-map", - "target": "npm:es6-symbol", - "type": "static" - } - ], - "npm:esbuild-loader": [ - { - "source": "npm:esbuild-loader", - "target": "npm:esbuild@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild-loader", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:esbuild-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:esbuild-loader", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:esbuild": [ - { - "source": "npm:esbuild", - "target": "npm:esbuild-android-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-android-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-darwin-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-darwin-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-freebsd-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-freebsd-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-32@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-arm@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-arm64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-mips64le@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-ppc64le@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-riscv64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-linux-s390x@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-netbsd-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-openbsd-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-sunos-64@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-windows-32@0.14.51", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-windows-64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:esbuild-windows-arm64@0.14.51", - "type": "static" - } - ], - "npm:esbuild@0.19.2": [ - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/android-arm@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/android-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/android-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/darwin-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/darwin-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/freebsd-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/freebsd-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-arm@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-ia32@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-loong64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-mips64el@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-ppc64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-riscv64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-s390x@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/linux-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/netbsd-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/openbsd-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/sunos-x64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/win32-arm64@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/win32-ia32@0.19.2", - "type": "static" - }, - { - "source": "npm:esbuild@0.19.2", - "target": "npm:@esbuild/win32-x64", - "type": "static" - } - ], - "npm:escodegen@1.8.1": [ - { - "source": "npm:escodegen@1.8.1", - "target": "npm:esprima@2.7.3", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:estraverse@1.9.3", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:escodegen@1.8.1", - "target": "npm:source-map@0.2.0", - "type": "static" - } - ], - "npm:escodegen": [ - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:eslint-config-airbnb-base": [ - { - "source": "npm:eslint-config-airbnb-base", - "target": "npm:confusing-browser-globals", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb-base", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb-base", - "target": "npm:object.entries", - "type": "static" - } - ], - "npm:eslint-config-airbnb": [ - { - "source": "npm:eslint-config-airbnb", - "target": "npm:eslint-config-airbnb-base", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:eslint-config-airbnb", - "target": "npm:object.entries", - "type": "static" - } - ], - "npm:eslint-import-resolver-node": [ - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:eslint-import-resolver-typescript": [ - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-typescript", - "target": "npm:tsconfig-paths@3.13.0", - "type": "static" - } - ], - "npm:eslint-module-utils": [ - { - "source": "npm:eslint-module-utils", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:find-up@2.1.0", - "type": "static" - } - ], - "npm:eslint-plugin-deprecation": [ - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-deprecation", - "target": "npm:tsutils", - "type": "static" - } - ], - "npm:eslint-plugin-es": [ - { - "source": "npm:eslint-plugin-es", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:regexpp", - "type": "static" - } - ], - "npm:eslint-plugin-es@3.0.1": [ - { - "source": "npm:eslint-plugin-es@3.0.1", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es@3.0.1", - "target": "npm:regexpp", - "type": "static" - } - ], - "npm:eslint-plugin-import": [ - { - "source": "npm:eslint-plugin-import", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-import-resolver-node", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-module-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:tsconfig-paths@3.13.0", - "type": "static" - } - ], - "npm:eslint-plugin-jest": [ - { - "source": "npm:eslint-plugin-jest", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - } - ], - "npm:eslint-plugin-jest@25.2.4": [ - { - "source": "npm:eslint-plugin-jest@25.2.4", - "target": "npm:@typescript-eslint/experimental-utils", - "type": "static" - } - ], - "npm:eslint-plugin-jsdoc": [ - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:@es-joy/jsdoccomment", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:comment-parser", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:escape-string-regexp@4.0.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsdoc", - "target": "npm:spdx-expression-parse", - "type": "static" - } - ], - "npm:eslint-plugin-jsx-a11y": [ - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:ast-types-flow", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:axobject-query", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:damerau-levenshtein", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-jsx-a11y", - "target": "npm:language-tags", - "type": "static" - } - ], - "npm:eslint-plugin-node": [ - { - "source": "npm:eslint-plugin-node", - "target": "npm:eslint-plugin-es@3.0.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:semver", - "type": "static" - } - ], - "npm:eslint-plugin-react@7.24.0": [ - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:resolve@2.0.0-next.3", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react@7.24.0", - "target": "npm:string.prototype.matchall", - "type": "static" - } - ], - "npm:eslint-plugin-react": [ - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine@2.1.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve@2.0.0-next.3", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - } - ], - "npm:eslint-plugin-security": [ - { - "source": "npm:eslint-plugin-security", - "target": "npm:safe-regex", - "type": "static" - } - ], - "npm:eslint-scope": [ - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse@4.2.0", - "type": "static" - } - ], - "npm:eslint-scope@4.0.3": [ - { - "source": "npm:eslint-scope@4.0.3", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@4.0.3", - "target": "npm:estraverse@4.2.0", - "type": "static" - } - ], - "npm:eslint-utils": [ - { - "source": "npm:eslint-utils", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - } - ], - "npm:eslint": [ - { - "source": "npm:eslint", - "target": "npm:@babel/code-frame@7.12.11", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys@2.0.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:functional-red-black-tree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals@13.12.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore@4.0.6", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator@0.9.1", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:table", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:v8-compile-cache", - "type": "static" - } - ], - "npm:espree": [ - { - "source": "npm:espree", - "target": "npm:acorn@7.4.1", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - } - ], - "npm:espree@9.6.1": [ - { - "source": "npm:espree@9.6.1", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree@9.6.1", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree@9.6.1", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:esprima-extract-comments": [ - { - "source": "npm:esprima-extract-comments", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:esquery": [ - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:esrecurse": [ - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:event-emitter": [ - { - "source": "npm:event-emitter", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:event-emitter", - "target": "npm:es5-ext", - "type": "static" - } - ], - "npm:evp_bytestokey": [ - { - "source": "npm:evp_bytestokey", - "target": "npm:md5.js", - "type": "static" - }, - { - "source": "npm:evp_bytestokey", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:execa@4.1.0": [ - { - "source": "npm:execa@4.1.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:human-signals@1.1.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:strip-final-newline", - "type": "static" - } - ], - "npm:execa@5.0.0": [ - { - "source": "npm:execa@5.0.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@5.0.0", - "target": "npm:strip-final-newline", - "type": "static" - } - ], - "npm:execa@0.7.0": [ - { - "source": "npm:execa@0.7.0", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:get-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@0.7.0", - "target": "npm:strip-eof", - "type": "static" - } - ], - "npm:execa@1.0.0": [ - { - "source": "npm:execa@1.0.0", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:get-stream@4.1.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:strip-eof", - "type": "static" - } - ], - "npm:execa": [ - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - } - ], - "npm:executable": [ - { - "source": "npm:executable", - "target": "npm:pify", - "type": "static" - } - ], - "npm:expand-brackets": [ - { - "source": "npm:expand-brackets", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:posix-character-classes", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:expand-brackets", - "target": "npm:to-regex", - "type": "static" - } - ], - "npm:expand-tilde": [ - { - "source": "npm:expand-tilde", - "target": "npm:homedir-polyfill", - "type": "static" - } - ], - "npm:expect": [ - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:express": [ - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs@6.9.7", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - } - ], - "npm:ext-list": [ - { - "source": "npm:ext-list", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:ext-name": [ - { - "source": "npm:ext-name", - "target": "npm:ext-list", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:sort-keys-length", - "type": "static" - } - ], - "npm:ext": [ - { - "source": "npm:ext", - "target": "npm:type@2.0.0", - "type": "static" - } - ], - "npm:extend-shallow@1.1.4": [ - { - "source": "npm:extend-shallow@1.1.4", - "target": "npm:kind-of@1.1.0", - "type": "static" - } - ], - "npm:extend-shallow": [ - { - "source": "npm:extend-shallow", - "target": "npm:is-extendable", - "type": "static" - } - ], - "npm:extend-shallow@3.0.2": [ - { - "source": "npm:extend-shallow@3.0.2", - "target": "npm:assign-symbols", - "type": "static" - }, - { - "source": "npm:extend-shallow@3.0.2", - "target": "npm:is-extendable@1.0.1", - "type": "static" - } - ], - "npm:external-editor": [ - { - "source": "npm:external-editor", - "target": "npm:chardet", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:tmp@0.0.33", - "type": "static" - } - ], - "npm:extglob": [ - { - "source": "npm:extglob", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:define-property@1.0.0", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:expand-brackets", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:fragment-cache", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:extglob", - "target": "npm:to-regex", - "type": "static" - } - ], - "npm:extract-comments": [ - { - "source": "npm:extract-comments", - "target": "npm:esprima-extract-comments", - "type": "static" - }, - { - "source": "npm:extract-comments", - "target": "npm:parse-code-context", - "type": "static" - } - ], - "npm:extract-zip": [ - { - "source": "npm:extract-zip", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:@types/yauzl", - "type": "static" - } - ], - "npm:fancy-log": [ - { - "source": "npm:fancy-log", - "target": "npm:ansi-gray", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:fancy-log", - "target": "npm:time-stamp", - "type": "static" - } - ], - "npm:fast-check": [ - { - "source": "npm:fast-check", - "target": "npm:pure-rand", - "type": "static" - } - ], - "npm:fast-glob@3.2.7": [ - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:fast-glob@2.2.7": [ - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:@mrmlnc/readdir-enhanced", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:@nodelib/fs.stat@1.1.3", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:glob-parent@3.1.0", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@2.2.7", - "target": "npm:micromatch@3.1.10", - "type": "static" - } - ], - "npm:fast-glob": [ - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:fast-png": [ - { - "source": "npm:fast-png", - "target": "npm:@types/pako", - "type": "static" - }, - { - "source": "npm:fast-png", - "target": "npm:iobuffer", - "type": "static" - }, - { - "source": "npm:fast-png", - "target": "npm:pako@2.1.0", - "type": "static" - } - ], - "npm:fastq": [ - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - } - ], - "npm:fault": [ - { - "source": "npm:fault", - "target": "npm:format", - "type": "static" - } - ], - "npm:faye-websocket": [ - { - "source": "npm:faye-websocket", - "target": "npm:websocket-driver", - "type": "static" - } - ], - "npm:fb-watchman": [ - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - } - ], - "npm:fd-slicer": [ - { - "source": "npm:fd-slicer", - "target": "npm:pend", - "type": "static" - } - ], - "npm:fela-bindings": [ - { - "source": "npm:fela-bindings", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:fela-dom", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:fela-tools", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:react-addons-shallow-compare", - "type": "static" - }, - { - "source": "npm:fela-bindings", - "target": "npm:shallow-equal", - "type": "static" - } - ], - "npm:fela-dom": [ - { - "source": "npm:fela-dom", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-dom", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-dom", - "target": "npm:fela-utils", - "type": "static" - } - ], - "npm:fela-dom@11.7.0": [ - { - "source": "npm:fela-dom@11.7.0", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-dom@11.7.0", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-dom@11.7.0", - "target": "npm:fela-utils@11.7.0", - "type": "static" - }, - { - "source": "npm:fela-dom@11.7.0", - "target": "npm:sort-css-media-queries", - "type": "static" - } - ], - "npm:fela-plugin-custom-property": [ - { - "source": "npm:fela-plugin-custom-property", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-plugin-custom-property", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:fela-plugin-embedded": [ - { - "source": "npm:fela-plugin-embedded", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-plugin-embedded", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:fela-plugin-fallback-value": [ - { - "source": "npm:fela-plugin-fallback-value", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-plugin-fallback-value", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:fela-plugin-placeholder-prefixer": [ - { - "source": "npm:fela-plugin-placeholder-prefixer", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-plugin-placeholder-prefixer", - "target": "npm:fela-plugin-custom-property", - "type": "static" - } - ], - "npm:fela-plugin-rtl": [ - { - "source": "npm:fela-plugin-rtl", - "target": "npm:rtl-css-js", - "type": "static" - } - ], - "npm:fela-tools": [ - { - "source": "npm:fela-tools", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-tools", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela-tools", - "target": "npm:fela", - "type": "static" - }, - { - "source": "npm:fela-tools", - "target": "npm:fela-utils", - "type": "static" - } - ], - "npm:fela-utils": [ - { - "source": "npm:fela-utils", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-utils", - "target": "npm:fast-loops", - "type": "static" - } - ], - "npm:fela-utils@11.7.0": [ - { - "source": "npm:fela-utils@11.7.0", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela-utils@11.7.0", - "target": "npm:fast-loops", - "type": "static" - } - ], - "npm:fela": [ - { - "source": "npm:fela", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:csstype@2.6.19", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:fela-utils", - "type": "static" - }, - { - "source": "npm:fela", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:fetch-blob": [ - { - "source": "npm:fetch-blob", - "target": "npm:node-domexception", - "type": "static" - }, - { - "source": "npm:fetch-blob", - "target": "npm:web-streams-polyfill", - "type": "static" - } - ], - "npm:figures": [ - { - "source": "npm:figures", - "target": "npm:escape-string-regexp", - "type": "static" - } - ], - "npm:file-entry-cache": [ - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - } - ], - "npm:file-loader": [ - { - "source": "npm:file-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:file-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - } - ], - "npm:file-system-cache": [ - { - "source": "npm:file-system-cache", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:file-system-cache", - "target": "npm:fs-extra@0.30.0", - "type": "static" - }, - { - "source": "npm:file-system-cache", - "target": "npm:ramda@0.21.0", - "type": "static" - } - ], - "npm:file-type": [ - { - "source": "npm:file-type", - "target": "npm:readable-web-to-node-stream", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:strtok3", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:token-types", - "type": "static" - } - ], - "npm:filelist": [ - { - "source": "npm:filelist", - "target": "npm:minimatch@5.0.1", - "type": "static" - } - ], - "npm:filenamify": [ - { - "source": "npm:filenamify", - "target": "npm:filename-reserved-regex", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:strip-outer", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:trim-repeated", - "type": "static" - } - ], - "npm:filenamify@5.1.1": [ - { - "source": "npm:filenamify@5.1.1", - "target": "npm:filename-reserved-regex@3.0.0", - "type": "static" - }, - { - "source": "npm:filenamify@5.1.1", - "target": "npm:strip-outer@2.0.0", - "type": "static" - }, - { - "source": "npm:filenamify@5.1.1", - "target": "npm:trim-repeated@2.0.0", - "type": "static" - } - ], - "npm:fill-range@4.0.0": [ - { - "source": "npm:fill-range@4.0.0", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:fill-range@4.0.0", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:fill-range@4.0.0", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:fill-range@4.0.0", - "target": "npm:to-regex-range@2.1.1", - "type": "static" - } - ], - "npm:fill-range": [ - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - } - ], - "npm:finalhandler": [ - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:find-babel-config": [ - { - "source": "npm:find-babel-config", - "target": "npm:json5@0.5.1", - "type": "static" - }, - { - "source": "npm:find-babel-config", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:find-cache-dir@2.1.0": [ - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:pkg-dir@3.0.0", - "type": "static" - } - ], - "npm:find-cache-dir": [ - { - "source": "npm:find-cache-dir", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:pkg-dir", - "type": "static" - } - ], - "npm:find-replace": [ - { - "source": "npm:find-replace", - "target": "npm:array-back", - "type": "static" - } - ], - "npm:find-up@3.0.0": [ - { - "source": "npm:find-up@3.0.0", - "target": "npm:locate-path@3.0.0", - "type": "static" - } - ], - "npm:find-up@1.1.2": [ - { - "source": "npm:find-up@1.1.2", - "target": "npm:path-exists@2.1.0", - "type": "static" - }, - { - "source": "npm:find-up@1.1.2", - "target": "npm:pinkie-promise", - "type": "static" - } - ], - "npm:find-up@2.1.0": [ - { - "source": "npm:find-up@2.1.0", - "target": "npm:locate-path@2.0.0", - "type": "static" - } - ], - "npm:find-up@4.1.0": [ - { - "source": "npm:find-up@4.1.0", - "target": "npm:locate-path@5.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:path-exists@4.0.0", - "type": "static" - } - ], - "npm:find-up": [ - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists@4.0.0", - "type": "static" - } - ], - "npm:find-up@6.3.0": [ - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.1.1", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - } - ], - "npm:find-versions": [ - { - "source": "npm:find-versions", - "target": "npm:semver-regex", - "type": "static" - } - ], - "npm:find-webpack": [ - { - "source": "npm:find-webpack", - "target": "npm:debug@4.1.1", - "type": "static" - }, - { - "source": "npm:find-webpack", - "target": "npm:find-yarn-workspace-root@1.2.1", - "type": "static" - }, - { - "source": "npm:find-webpack", - "target": "npm:mocked-env", - "type": "static" - } - ], - "npm:find-yarn-workspace-root@1.2.1": [ - { - "source": "npm:find-yarn-workspace-root@1.2.1", - "target": "npm:fs-extra@4.0.3", - "type": "static" - }, - { - "source": "npm:find-yarn-workspace-root@1.2.1", - "target": "npm:micromatch@3.1.10", - "type": "static" - } - ], - "npm:find-yarn-workspace-root": [ - { - "source": "npm:find-yarn-workspace-root", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:findup-sync": [ - { - "source": "npm:findup-sync", - "target": "npm:detect-file", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:is-glob@3.1.0", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:findup-sync", - "target": "npm:resolve-dir", - "type": "static" - } - ], - "npm:findup-sync@3.0.0": [ - { - "source": "npm:findup-sync@3.0.0", - "target": "npm:detect-file", - "type": "static" - }, - { - "source": "npm:findup-sync@3.0.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:findup-sync@3.0.0", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:findup-sync@3.0.0", - "target": "npm:resolve-dir", - "type": "static" - } - ], - "npm:fined": [ - { - "source": "npm:fined", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:object.defaults", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:fined", - "target": "npm:parse-filepath", - "type": "static" - } - ], - "npm:flamebearer": [ - { - "source": "npm:flamebearer", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:flamebearer", - "target": "npm:opn", - "type": "static" - } - ], - "npm:flamegrill": [ - { - "source": "npm:flamegrill", - "target": "npm:concat-stream@2.0.0", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:flamebearer", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:n-readlines", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:puppeteer", - "type": "static" - }, - { - "source": "npm:flamegrill", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:flat-cache": [ - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:flat@4.1.0": [ - { - "source": "npm:flat@4.1.0", - "target": "npm:is-buffer@2.0.4", - "type": "static" - } - ], - "npm:flush-write-stream": [ - { - "source": "npm:flush-write-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:flush-write-stream", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:for-own": [ - { - "source": "npm:for-own", - "target": "npm:for-in", - "type": "static" - } - ], - "npm:foreground-child": [ - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.0.2", - "type": "static" - } - ], - "npm:fork-ts-checker-webpack-plugin": [ - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:cosmiconfig@6.0.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:memfs@3.4.1", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:schema-utils@2.7.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:fork-ts-checker-webpack-plugin@4.1.6": [ - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin@4.1.6", - "target": "npm:worker-rpc", - "type": "static" - } - ], - "npm:form-data": [ - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:form-data@3.0.0": [ - { - "source": "npm:form-data@3.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@3.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@3.0.0", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:form-data@4.0.0": [ - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:form-data@2.3.3": [ - { - "source": "npm:form-data@2.3.3", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@2.3.3", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:formdata-polyfill": [ - { - "source": "npm:formdata-polyfill", - "target": "npm:fetch-blob", - "type": "static" - } - ], - "npm:formik": [ - { - "source": "npm:formik", - "target": "npm:deepmerge@2.2.1", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:react-fast-compare", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:tiny-warning", - "type": "static" - }, - { - "source": "npm:formik", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:fragment-cache": [ - { - "source": "npm:fragment-cache", - "target": "npm:map-cache", - "type": "static" - } - ], - "npm:from2": [ - { - "source": "npm:from2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:from2", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:fs-extra@11.1.1": [ - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@11.1.1", - "target": "npm:universalify@2.0.0", - "type": "static" - } - ], - "npm:fs-extra": [ - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:fs-extra@0.30.0": [ - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:jsonfile@2.4.0", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:klaw", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:fs-extra@0.30.0", - "target": "npm:rimraf@2.7.1", - "type": "static" - } - ], - "npm:fs-extra@10.1.0": [ - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:universalify@2.0.0", - "type": "static" - } - ], - "npm:fs-extra@4.0.3": [ - { - "source": "npm:fs-extra@4.0.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@4.0.3", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@4.0.3", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:fs-extra@9.1.0": [ - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile@6.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify@2.0.0", - "type": "static" - } - ], - "npm:fs-extra@7.0.1": [ - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@7.0.1", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:fs-minipass@1.2.7": [ - { - "source": "npm:fs-minipass@1.2.7", - "target": "npm:minipass@2.9.0", - "type": "static" - } - ], - "npm:fs-minipass": [ - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:fs-minipass@3.0.2": [ - { - "source": "npm:fs-minipass@3.0.2", - "target": "npm:minipass@5.0.0", - "type": "static" - } - ], - "npm:fs-mkdirp-stream": [ - { - "source": "npm:fs-mkdirp-stream", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-mkdirp-stream", - "target": "npm:through2@2.0.5", - "type": "static" - } - ], - "npm:fs-write-stream-atomic": [ - { - "source": "npm:fs-write-stream-atomic", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-write-stream-atomic", - "target": "npm:iferr", - "type": "static" - }, - { - "source": "npm:fs-write-stream-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:fs-write-stream-atomic", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:fsevents@1.2.13": [ - { - "source": "npm:fsevents@1.2.13", - "target": "npm:bindings@1.5.0", - "type": "static" - }, - { - "source": "npm:fsevents@1.2.13", - "target": "npm:nan@2.15.0", - "type": "static" - } - ], - "npm:fstream": [ - { - "source": "npm:fstream", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:fstream", - "target": "npm:rimraf@2.7.1", - "type": "static" - } - ], - "npm:function.prototype.name": [ - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:is-callable", - "type": "static" - } - ], - "npm:gauge@3.0.2": [ - { - "source": "npm:gauge@3.0.2", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:gauge@3.0.2", - "target": "npm:wide-align", - "type": "static" - } - ], - "npm:gauge@4.0.4": [ - { - "source": "npm:gauge@4.0.4", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:gauge@4.0.4", - "target": "npm:wide-align", - "type": "static" - } - ], - "npm:gauge": [ - { - "source": "npm:gauge", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:wide-align", - "type": "static" - } - ], - "npm:geckodriver": [ - { - "source": "npm:geckodriver", - "target": "npm:adm-zip", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:https-proxy-agent@5.0.0", - "type": "static" - }, - { - "source": "npm:geckodriver", - "target": "npm:tar", - "type": "static" - } - ], - "npm:generic-names": [ - { - "source": "npm:generic-names", - "target": "npm:loader-utils@1.4.2", - "type": "static" - } - ], - "npm:get-intrinsic": [ - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:get-lerna-packages": [ - { - "source": "npm:get-lerna-packages", - "target": "npm:glob", - "type": "static" - } - ], - "npm:get-pkg-repo": [ - { - "source": "npm:get-pkg-repo", - "target": "npm:@hutson/parse-repository-url", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:get-pkg-repo", - "target": "npm:yargs@16.2.0", - "type": "static" - } - ], - "npm:get-stream@4.1.0": [ - { - "source": "npm:get-stream@4.1.0", - "target": "npm:pump", - "type": "static" - } - ], - "npm:get-stream": [ - { - "source": "npm:get-stream", - "target": "npm:pump", - "type": "static" - } - ], - "npm:get-symbol-description": [ - { - "source": "npm:get-symbol-description", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:get-tsconfig": [ - { - "source": "npm:get-tsconfig", - "target": "npm:resolve-pkg-maps", - "type": "static" - } - ], - "npm:getos": [ - { - "source": "npm:getos", - "target": "npm:async@3.2.3", - "type": "static" - } - ], - "npm:getpass": [ - { - "source": "npm:getpass", - "target": "npm:assert-plus", - "type": "static" - } - ], - "npm:git-config-path": [ - { - "source": "npm:git-config-path", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:git-config-path", - "target": "npm:fs-exists-sync", - "type": "static" - }, - { - "source": "npm:git-config-path", - "target": "npm:homedir-polyfill", - "type": "static" - } - ], - "npm:git-raw-commits": [ - { - "source": "npm:git-raw-commits", - "target": "npm:dargs", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:git-raw-commits", - "target": "npm:split2", - "type": "static" - } - ], - "npm:git-remote-origin-url": [ - { - "source": "npm:git-remote-origin-url", - "target": "npm:gitconfiglocal", - "type": "static" - }, - { - "source": "npm:git-remote-origin-url", - "target": "npm:pify", - "type": "static" - } - ], - "npm:git-semver-tags": [ - { - "source": "npm:git-semver-tags", - "target": "npm:meow", - "type": "static" - }, - { - "source": "npm:git-semver-tags", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:git-up": [ - { - "source": "npm:git-up", - "target": "npm:is-ssh", - "type": "static" - }, - { - "source": "npm:git-up", - "target": "npm:parse-url", - "type": "static" - } - ], - "npm:git-url-parse": [ - { - "source": "npm:git-url-parse", - "target": "npm:git-up", - "type": "static" - } - ], - "npm:gitconfiglocal": [ - { - "source": "npm:gitconfiglocal", - "target": "npm:ini", - "type": "static" - } - ], - "npm:github-slugger": [ - { - "source": "npm:github-slugger", - "target": "npm:emoji-regex", - "type": "static" - } - ], - "npm:gitlab": [ - { - "source": "npm:gitlab", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:humps", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:ky", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:ky-universal", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:li", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:query-string", - "type": "static" - }, - { - "source": "npm:gitlab", - "target": "npm:universal-url", - "type": "static" - } - ], - "npm:glob-parent": [ - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:glob-parent@3.1.0": [ - { - "source": "npm:glob-parent@3.1.0", - "target": "npm:is-glob@3.1.0", - "type": "static" - }, - { - "source": "npm:glob-parent@3.1.0", - "target": "npm:path-dirname", - "type": "static" - } - ], - "npm:glob-promise": [ - { - "source": "npm:glob-promise", - "target": "npm:@types/glob", - "type": "static" - } - ], - "npm:glob-stream": [ - { - "source": "npm:glob-stream", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:glob-parent@3.1.0", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:is-negated-glob", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:ordered-read-streams", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:pumpify", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:to-absolute-glob", - "type": "static" - }, - { - "source": "npm:glob-stream", - "target": "npm:unique-stream", - "type": "static" - } - ], - "npm:glob-watcher": [ - { - "source": "npm:glob-watcher", - "target": "npm:anymatch@2.0.0", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:async-done", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:chokidar@2.1.8", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:is-negated-glob", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:just-debounce", - "type": "static" - }, - { - "source": "npm:glob-watcher", - "target": "npm:object.defaults", - "type": "static" - } - ], - "npm:glob@7.1.3": [ - { - "source": "npm:glob@7.1.3", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.3", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob@7.1.4": [ - { - "source": "npm:glob@7.1.4", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.4", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob": [ - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob@10.3.3": [ - { - "source": "npm:glob@10.3.3", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:minimatch@9.0.1", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:glob@10.3.3", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:glob@5.0.15": [ - { - "source": "npm:glob@5.0.15", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@5.0.15", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob@8.1.0": [ - { - "source": "npm:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.0.1", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - } - ], - "npm:glob@9.3.5": [ - { - "source": "npm:glob@9.3.5", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minimatch@8.0.4", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minipass@4.2.8", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:global-dirs@0.1.1": [ - { - "source": "npm:global-dirs@0.1.1", - "target": "npm:ini", - "type": "static" - } - ], - "npm:global-dirs": [ - { - "source": "npm:global-dirs", - "target": "npm:ini@2.0.0", - "type": "static" - } - ], - "npm:global-modules": [ - { - "source": "npm:global-modules", - "target": "npm:global-prefix", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:resolve-dir", - "type": "static" - } - ], - "npm:global-prefix": [ - { - "source": "npm:global-prefix", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:which", - "type": "static" - } - ], - "npm:global": [ - { - "source": "npm:global", - "target": "npm:min-document", - "type": "static" - }, - { - "source": "npm:global", - "target": "npm:process", - "type": "static" - } - ], - "npm:globals@13.12.0": [ - { - "source": "npm:globals@13.12.0", - "target": "npm:type-fest", - "type": "static" - } - ], - "npm:globalthis": [ - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:globby": [ - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - } - ], - "npm:globby@10.0.2": [ - { - "source": "npm:globby@10.0.2", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@10.0.2", - "target": "npm:slash", - "type": "static" - } - ], - "npm:globby@13.2.2": [ - { - "source": "npm:globby@13.2.2", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@13.2.2", - "target": "npm:slash@4.0.0", - "type": "static" - } - ], - "npm:globby@6.1.0": [ - { - "source": "npm:globby@6.1.0", - "target": "npm:array-union@1.0.2", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:pinkie-promise", - "type": "static" - } - ], - "npm:globby@9.2.0": [ - { - "source": "npm:globby@9.2.0", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:array-union@1.0.2", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:dir-glob@2.2.2", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:fast-glob@2.2.7", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:ignore@4.0.6", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:globby@9.2.0", - "target": "npm:slash@2.0.0", - "type": "static" - } - ], - "npm:glogg": [ - { - "source": "npm:glogg", - "target": "npm:sparkles", - "type": "static" - } - ], - "npm:good-listener": [ - { - "source": "npm:good-listener", - "target": "npm:delegate", - "type": "static" - } - ], - "npm:got": [ - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:got@12.3.1": [ - { - "source": "npm:got@12.3.1", - "target": "npm:@sindresorhus/is@5.3.0", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:@szmarczak/http-timer@5.0.1", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:cacheable-lookup@6.1.0", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:form-data-encoder", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:http2-wrapper@2.1.11", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:lowercase-keys@3.0.0", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:p-cancelable@3.0.0", - "type": "static" - }, - { - "source": "npm:got@12.3.1", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:got@6.7.1": [ - { - "source": "npm:got@6.7.1", - "target": "npm:create-error-class", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:duplexer3", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:get-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:is-redirect", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:is-retry-allowed", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:lowercase-keys@1.0.0", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:timed-out", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:unzip-response", - "type": "static" - }, - { - "source": "npm:got@6.7.1", - "target": "npm:url-parse-lax", - "type": "static" - } - ], - "npm:graphviz": [ - { - "source": "npm:graphviz", - "target": "npm:temp", - "type": "static" - } - ], - "npm:gulp-babel": [ - { - "source": "npm:gulp-babel", - "target": "npm:plugin-error", - "type": "static" - }, - { - "source": "npm:gulp-babel", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:gulp-babel", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:gulp-babel", - "target": "npm:vinyl-sourcemaps-apply", - "type": "static" - } - ], - "npm:gulp-cache": [ - { - "source": "npm:gulp-cache", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:cache-swap", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:plugin-error", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:through2@3.0.1", - "type": "static" - }, - { - "source": "npm:gulp-cache", - "target": "npm:vinyl", - "type": "static" - } - ], - "npm:gulp-cli": [ - { - "source": "npm:gulp-cli", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:archy", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:array-sort", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:copy-props", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:fancy-log", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:gulplog", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:interpret", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:liftoff@3.1.0", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:matchdep", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:mute-stdout", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:pretty-hrtime", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:replace-homedir", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:semver-greatest-satisfied-range", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:v8flags@3.1.3", - "type": "static" - }, - { - "source": "npm:gulp-cli", - "target": "npm:yargs@7.1.0", - "type": "static" - } - ], - "npm:gulp-remember": [ - { - "source": "npm:gulp-remember", - "target": "npm:fancy-log", - "type": "static" - }, - { - "source": "npm:gulp-remember", - "target": "npm:plugin-error@0.1.2", - "type": "static" - }, - { - "source": "npm:gulp-remember", - "target": "npm:through2@0.5.1", - "type": "static" - } - ], - "npm:gulp-sourcemaps": [ - { - "source": "npm:gulp-sourcemaps", - "target": "npm:@gulp-sourcemaps/identity-map", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:@gulp-sourcemaps/map-sources", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:acorn@5.7.4", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:css", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:debug-fabulous", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:detect-newline", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:strip-bom-string", - "type": "static" - }, - { - "source": "npm:gulp-sourcemaps", - "target": "npm:through2@2.0.5", - "type": "static" - } - ], - "npm:gulp-util": [ - { - "source": "npm:gulp-util", - "target": "npm:array-differ", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:array-uniq", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:beeper", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:dateformat@2.2.0", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:fancy-log", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:gulplog", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:has-gulplog", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:lodash._reescape", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:lodash._reevaluate", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:lodash.template", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:multipipe", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:object-assign@3.0.0", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:replace-ext@0.0.1", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:gulp-util", - "target": "npm:vinyl@0.5.3", - "type": "static" - } - ], - "npm:gulp": [ - { - "source": "npm:gulp", - "target": "npm:glob-watcher", - "type": "static" - }, - { - "source": "npm:gulp", - "target": "npm:gulp-cli", - "type": "static" - }, - { - "source": "npm:gulp", - "target": "npm:undertaker", - "type": "static" - }, - { - "source": "npm:gulp", - "target": "npm:vinyl-fs", - "type": "static" - } - ], - "npm:gulplog": [ - { - "source": "npm:gulplog", - "target": "npm:glogg", - "type": "static" - } - ], - "npm:gzip-js": [ - { - "source": "npm:gzip-js", - "target": "npm:crc32", - "type": "static" - }, - { - "source": "npm:gzip-js", - "target": "npm:deflate-js", - "type": "static" - } - ], - "npm:gzip-size": [ - { - "source": "npm:gzip-size", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:gzip-size", - "target": "npm:pify@4.0.1", - "type": "static" - } - ], - "npm:gzip-size@6.0.0": [ - { - "source": "npm:gzip-size@6.0.0", - "target": "npm:duplexer", - "type": "static" - } - ], - "npm:gzip-size@7.0.0": [ - { - "source": "npm:gzip-size@7.0.0", - "target": "npm:duplexer", - "type": "static" - } - ], - "npm:handlebars": [ - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - } - ], - "npm:har-validator": [ - { - "source": "npm:har-validator", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:har-validator", - "target": "npm:har-schema", - "type": "static" - } - ], - "npm:has-ansi": [ - { - "source": "npm:has-ansi", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - } - ], - "npm:has-glob": [ - { - "source": "npm:has-glob", - "target": "npm:is-glob@3.1.0", - "type": "static" - } - ], - "npm:has-gulplog": [ - { - "source": "npm:has-gulplog", - "target": "npm:sparkles", - "type": "static" - } - ], - "npm:has-tostringtag": [ - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:has-value@0.3.1": [ - { - "source": "npm:has-value@0.3.1", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:has-value@0.3.1", - "target": "npm:has-values@0.1.4", - "type": "static" - }, - { - "source": "npm:has-value@0.3.1", - "target": "npm:isobject@2.1.0", - "type": "static" - } - ], - "npm:has-value": [ - { - "source": "npm:has-value", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:has-value", - "target": "npm:has-values", - "type": "static" - }, - { - "source": "npm:has-value", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:has-values": [ - { - "source": "npm:has-values", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:has-values", - "target": "npm:kind-of@4.0.0", - "type": "static" - } - ], - "npm:has": [ - { - "source": "npm:has", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:hash-base": [ - { - "source": "npm:hash-base", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hash-base", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:hash.js": [ - { - "source": "npm:hash.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hash.js", - "target": "npm:minimalistic-assert", - "type": "static" - } - ], - "npm:hast-to-hyperscript": [ - { - "source": "npm:hast-to-hyperscript", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:comma-separated-tokens", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:space-separated-tokens", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:style-to-object", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:hast-to-hyperscript", - "target": "npm:web-namespaces", - "type": "static" - } - ], - "npm:hast-util-from-parse5": [ - { - "source": "npm:hast-util-from-parse5", - "target": "npm:@types/parse5", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:hastscript@6.0.0", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:vfile", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:vfile-location", - "type": "static" - }, - { - "source": "npm:hast-util-from-parse5", - "target": "npm:web-namespaces", - "type": "static" - } - ], - "npm:hast-util-raw": [ - { - "source": "npm:hast-util-raw", - "target": "npm:@types/hast", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:hast-util-from-parse5", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:hast-util-to-parse5", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:html-void-elements", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:parse5@6.0.1", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:unist-util-position", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:vfile", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:web-namespaces", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:hast-util-raw", - "target": "npm:zwitch", - "type": "static" - } - ], - "npm:hast-util-to-parse5": [ - { - "source": "npm:hast-util-to-parse5", - "target": "npm:hast-to-hyperscript", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:web-namespaces", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:hast-util-to-parse5", - "target": "npm:zwitch", - "type": "static" - } - ], - "npm:hastscript": [ - { - "source": "npm:hastscript", - "target": "npm:comma-separated-tokens", - "type": "static" - }, - { - "source": "npm:hastscript", - "target": "npm:hast-util-parse-selector", - "type": "static" - }, - { - "source": "npm:hastscript", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hastscript", - "target": "npm:space-separated-tokens", - "type": "static" - } - ], - "npm:hastscript@6.0.0": [ - { - "source": "npm:hastscript@6.0.0", - "target": "npm:@types/hast", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:comma-separated-tokens", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:hast-util-parse-selector", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:property-information", - "type": "static" - }, - { - "source": "npm:hastscript@6.0.0", - "target": "npm:space-separated-tokens", - "type": "static" - } - ], - "npm:header-case": [ - { - "source": "npm:header-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:header-case", - "target": "npm:upper-case", - "type": "static" - } - ], - "npm:history": [ - { - "source": "npm:history", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:resolve-pathname", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:tiny-invariant", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:tiny-warning", - "type": "static" - }, - { - "source": "npm:history", - "target": "npm:value-equal", - "type": "static" - } - ], - "npm:hmac-drbg": [ - { - "source": "npm:hmac-drbg", - "target": "npm:hash.js", - "type": "static" - }, - { - "source": "npm:hmac-drbg", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:hmac-drbg", - "target": "npm:minimalistic-crypto-utils", - "type": "static" - } - ], - "npm:hoist-non-react-statics": [ - { - "source": "npm:hoist-non-react-statics", - "target": "npm:react-is@16.13.1", - "type": "static" - } - ], - "npm:homedir-polyfill": [ - { - "source": "npm:homedir-polyfill", - "target": "npm:parse-passwd", - "type": "static" - } - ], - "npm:hosted-git-info@3.0.8": [ - { - "source": "npm:hosted-git-info@3.0.8", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:hosted-git-info": [ - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:hosted-git-info@6.1.1": [ - { - "source": "npm:hosted-git-info@6.1.1", - "target": "npm:lru-cache@7.14.0", - "type": "static" - } - ], - "npm:hosted-git-info@7.0.1": [ - { - "source": "npm:hosted-git-info@7.0.1", - "target": "npm:lru-cache@10.0.1", - "type": "static" - } - ], - "npm:hpack.js": [ - { - "source": "npm:hpack.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:wbuf", - "type": "static" - } - ], - "npm:html-element-map": [ - { - "source": "npm:html-element-map", - "target": "npm:array-filter", - "type": "static" - } - ], - "npm:html-encoding-sniffer": [ - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - } - ], - "npm:html-loader": [ - { - "source": "npm:html-loader", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-loader", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:html-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:html-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - } - ], - "npm:html-minifier-terser": [ - { - "source": "npm:html-minifier-terser", - "target": "npm:camel-case@4.1.2", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:clean-css", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:commander@4.1.1", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:param-case@3.0.4", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:relateurl", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:terser@4.8.0", - "type": "static" - } - ], - "npm:html-to-react": [ - { - "source": "npm:html-to-react", - "target": "npm:domhandler@3.0.0", - "type": "static" - }, - { - "source": "npm:html-to-react", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:html-to-react", - "target": "npm:lodash.camelcase", - "type": "static" - }, - { - "source": "npm:html-to-react", - "target": "npm:ramda", - "type": "static" - } - ], - "npm:html-webpack-plugin": [ - { - "source": "npm:html-webpack-plugin", - "target": "npm:@types/html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:pretty-error", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:tapable@2.2.1", - "type": "static" - } - ], - "npm:html-webpack-plugin@4.5.2": [ - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:@types/html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:@types/tapable", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:@types/webpack", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:pretty-error", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin@4.5.2", - "target": "npm:util.promisify", - "type": "static" - } - ], - "npm:htmlparser2@3.10.1": [ - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:domelementtype@1.3.1", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:domhandler@2.4.2", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:domutils@1.5.1", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:htmlparser2@3.10.1", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:htmlparser2": [ - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler@3.0.0", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities@2.0.0", - "type": "static" - } - ], - "npm:htmlparser2@6.1.0": [ - { - "source": "npm:htmlparser2@6.1.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2@6.1.0", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:htmlparser2@6.1.0", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2@6.1.0", - "target": "npm:entities@2.0.0", - "type": "static" - } - ], - "npm:http-assert": [ - { - "source": "npm:http-assert", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:http-assert", - "target": "npm:http-errors", - "type": "static" - } - ], - "npm:http-errors": [ - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - } - ], - "npm:http-errors@1.6.3": [ - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses", - "type": "static" - } - ], - "npm:http-proxy-agent@2.1.0": [ - { - "source": "npm:http-proxy-agent@2.1.0", - "target": "npm:agent-base@4.3.0", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@2.1.0", - "target": "npm:debug@3.1.0", - "type": "static" - } - ], - "npm:http-proxy-agent@4.0.1": [ - { - "source": "npm:http-proxy-agent@4.0.1", - "target": "npm:@tootallnate/once@1.1.2", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@4.0.1", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@4.0.1", - "target": "npm:debug", - "type": "static" - } - ], - "npm:http-proxy-agent": [ - { - "source": "npm:http-proxy-agent", - "target": "npm:@tootallnate/once", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:http-proxy-middleware": [ - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj@3.0.0", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:http-proxy": [ - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:http-signature@1.2.0": [ - { - "source": "npm:http-signature@1.2.0", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:http-signature@1.2.0", - "target": "npm:jsprim@1.4.1", - "type": "static" - }, - { - "source": "npm:http-signature@1.2.0", - "target": "npm:sshpk", - "type": "static" - } - ], - "npm:http-signature": [ - { - "source": "npm:http-signature", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:jsprim", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:sshpk", - "type": "static" - } - ], - "npm:http2-wrapper": [ - { - "source": "npm:http2-wrapper", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:resolve-alpn", - "type": "static" - } - ], - "npm:http2-wrapper@2.1.11": [ - { - "source": "npm:http2-wrapper@2.1.11", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper@2.1.11", - "target": "npm:resolve-alpn", - "type": "static" - } - ], - "npm:https-proxy-agent@5.0.0": [ - { - "source": "npm:https-proxy-agent@5.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.0", - "target": "npm:debug", - "type": "static" - } - ], - "npm:https-proxy-agent": [ - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:https-proxy-agent@2.2.4": [ - { - "source": "npm:https-proxy-agent@2.2.4", - "target": "npm:agent-base@4.3.0", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@2.2.4", - "target": "npm:debug@3.2.7", - "type": "static" - } - ], - "npm:humanize-ms": [ - { - "source": "npm:humanize-ms", - "target": "npm:ms", - "type": "static" - } - ], - "npm:iconv-lite@0.4.24": [ - { - "source": "npm:iconv-lite@0.4.24", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:iconv-lite": [ - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:icss-utils": [ - { - "source": "npm:icss-utils", - "target": "npm:postcss@7.0.36", - "type": "static" - } - ], - "npm:identity-obj-proxy": [ - { - "source": "npm:identity-obj-proxy", - "target": "npm:harmony-reflect", - "type": "static" - } - ], - "npm:ignore-walk@3.0.3": [ - { - "source": "npm:ignore-walk@3.0.3", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:ignore-walk": [ - { - "source": "npm:ignore-walk", - "target": "npm:minimatch@5.0.1", - "type": "static" - } - ], - "npm:ignore-walk@6.0.3": [ - { - "source": "npm:ignore-walk@6.0.3", - "target": "npm:minimatch@9.0.1", - "type": "static" - } - ], - "npm:import-fresh@2.0.0": [ - { - "source": "npm:import-fresh@2.0.0", - "target": "npm:caller-path", - "type": "static" - }, - { - "source": "npm:import-fresh@2.0.0", - "target": "npm:resolve-from@3.0.0", - "type": "static" - } - ], - "npm:import-fresh": [ - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - } - ], - "npm:import-local": [ - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - } - ], - "npm:imports-loader": [ - { - "source": "npm:imports-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:imports-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:imports-loader", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:imports-loader", - "target": "npm:strip-comments", - "type": "static" - } - ], - "npm:indent-string@2.1.0": [ - { - "source": "npm:indent-string@2.1.0", - "target": "npm:repeating", - "type": "static" - } - ], - "npm:inflight": [ - { - "source": "npm:inflight", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:init-package-json": [ - { - "source": "npm:init-package-json", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:promzard", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:read", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:init-package-json", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:inquirer": [ - { - "source": "npm:inquirer", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:run-async", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:rxjs@6.6.7", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:inquirer", - "target": "npm:through", - "type": "static" - } - ], - "npm:inquirer@8.2.4": [ - { - "source": "npm:inquirer@8.2.4", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:ora@5.4.1", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:run-async", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:inquirer@8.2.4", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:internal-slot": [ - { - "source": "npm:internal-slot", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:has", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:invariant": [ - { - "source": "npm:invariant", - "target": "npm:loose-envify", - "type": "static" - } - ], - "npm:is-absolute": [ - { - "source": "npm:is-absolute", - "target": "npm:is-relative", - "type": "static" - }, - { - "source": "npm:is-absolute", - "target": "npm:is-windows", - "type": "static" - } - ], - "npm:is-accessor-descriptor@0.1.6": [ - { - "source": "npm:is-accessor-descriptor@0.1.6", - "target": "npm:kind-of@3.2.2", - "type": "static" - } - ], - "npm:is-accessor-descriptor": [ - { - "source": "npm:is-accessor-descriptor", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:is-alphanumerical": [ - { - "source": "npm:is-alphanumerical", - "target": "npm:is-alphabetical", - "type": "static" - }, - { - "source": "npm:is-alphanumerical", - "target": "npm:is-decimal", - "type": "static" - } - ], - "npm:is-binary-path@1.0.1": [ - { - "source": "npm:is-binary-path@1.0.1", - "target": "npm:binary-extensions@1.13.1", - "type": "static" - } - ], - "npm:is-binary-path": [ - { - "source": "npm:is-binary-path", - "target": "npm:binary-extensions", - "type": "static" - } - ], - "npm:is-boolean-object": [ - { - "source": "npm:is-boolean-object", - "target": "npm:call-bind", - "type": "static" - } - ], - "npm:is-ci": [ - { - "source": "npm:is-ci", - "target": "npm:ci-info", - "type": "static" - } - ], - "npm:is-ci@1.2.1": [ - { - "source": "npm:is-ci@1.2.1", - "target": "npm:ci-info@1.6.0", - "type": "static" - } - ], - "npm:is-ci@2.0.0": [ - { - "source": "npm:is-ci@2.0.0", - "target": "npm:ci-info@2.0.0", - "type": "static" - } - ], - "npm:is-core-module": [ - { - "source": "npm:is-core-module", - "target": "npm:has", - "type": "static" - } - ], - "npm:is-data-descriptor@0.1.4": [ - { - "source": "npm:is-data-descriptor@0.1.4", - "target": "npm:kind-of@3.2.2", - "type": "static" - } - ], - "npm:is-data-descriptor": [ - { - "source": "npm:is-data-descriptor", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:is-descriptor@0.1.6": [ - { - "source": "npm:is-descriptor@0.1.6", - "target": "npm:is-accessor-descriptor@0.1.6", - "type": "static" - }, - { - "source": "npm:is-descriptor@0.1.6", - "target": "npm:is-data-descriptor@0.1.4", - "type": "static" - }, - { - "source": "npm:is-descriptor@0.1.6", - "target": "npm:kind-of@5.1.0", - "type": "static" - } - ], - "npm:is-descriptor": [ - { - "source": "npm:is-descriptor", - "target": "npm:is-accessor-descriptor", - "type": "static" - }, - { - "source": "npm:is-descriptor", - "target": "npm:is-data-descriptor", - "type": "static" - }, - { - "source": "npm:is-descriptor", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:is-dom": [ - { - "source": "npm:is-dom", - "target": "npm:is-object", - "type": "static" - }, - { - "source": "npm:is-dom", - "target": "npm:is-window", - "type": "static" - } - ], - "npm:is-extendable@1.0.1": [ - { - "source": "npm:is-extendable@1.0.1", - "target": "npm:is-plain-object", - "type": "static" - } - ], - "npm:is-finite": [ - { - "source": "npm:is-finite", - "target": "npm:number-is-nan", - "type": "static" - } - ], - "npm:is-fullwidth-code-point@1.0.0": [ - { - "source": "npm:is-fullwidth-code-point@1.0.0", - "target": "npm:number-is-nan", - "type": "static" - } - ], - "npm:is-glob@3.1.0": [ - { - "source": "npm:is-glob@3.1.0", - "target": "npm:is-extglob", - "type": "static" - } - ], - "npm:is-glob": [ - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - } - ], - "npm:is-installed-globally@0.1.0": [ - { - "source": "npm:is-installed-globally@0.1.0", - "target": "npm:global-dirs@0.1.1", - "type": "static" - }, - { - "source": "npm:is-installed-globally@0.1.0", - "target": "npm:is-path-inside@1.0.1", - "type": "static" - } - ], - "npm:is-installed-globally": [ - { - "source": "npm:is-installed-globally", - "target": "npm:global-dirs", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:is-path-inside", - "type": "static" - } - ], - "npm:is-lower-case": [ - { - "source": "npm:is-lower-case", - "target": "npm:lower-case", - "type": "static" - } - ], - "npm:is-nan": [ - { - "source": "npm:is-nan", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-nan", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:is-number": [ - { - "source": "npm:is-number", - "target": "npm:kind-of@3.2.2", - "type": "static" - } - ], - "npm:is-path-in-cwd": [ - { - "source": "npm:is-path-in-cwd", - "target": "npm:is-path-inside@2.1.0", - "type": "static" - } - ], - "npm:is-path-inside@1.0.1": [ - { - "source": "npm:is-path-inside@1.0.1", - "target": "npm:path-is-inside", - "type": "static" - } - ], - "npm:is-path-inside@2.1.0": [ - { - "source": "npm:is-path-inside@2.1.0", - "target": "npm:path-is-inside", - "type": "static" - } - ], - "npm:is-plain-object": [ - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:is-reference": [ - { - "source": "npm:is-reference", - "target": "npm:@types/estree", - "type": "static" - } - ], - "npm:is-regex": [ - { - "source": "npm:is-regex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-relative": [ - { - "source": "npm:is-relative", - "target": "npm:is-unc-path", - "type": "static" - } - ], - "npm:is-ssh": [ - { - "source": "npm:is-ssh", - "target": "npm:protocols", - "type": "static" - } - ], - "npm:is-string": [ - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-symbol": [ - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:is-text-path": [ - { - "source": "npm:is-text-path", - "target": "npm:text-extensions", - "type": "static" - } - ], - "npm:is-typed-array": [ - { - "source": "npm:is-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:foreach", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:is-unc-path": [ - { - "source": "npm:is-unc-path", - "target": "npm:unc-path-regex", - "type": "static" - } - ], - "npm:is-upper-case": [ - { - "source": "npm:is-upper-case", - "target": "npm:upper-case", - "type": "static" - } - ], - "npm:is-weakref": [ - { - "source": "npm:is-weakref", - "target": "npm:call-bind", - "type": "static" - } - ], - "npm:is-wsl": [ - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - } - ], - "npm:isobject@2.1.0": [ - { - "source": "npm:isobject@2.1.0", - "target": "npm:isarray@1.0.0", - "type": "static" - } - ], - "npm:isomorphic-unfetch": [ - { - "source": "npm:isomorphic-unfetch", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:isomorphic-unfetch", - "target": "npm:unfetch@3.1.2", - "type": "static" - } - ], - "npm:isomorphic-unfetch@3.1.0": [ - { - "source": "npm:isomorphic-unfetch@3.1.0", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:isomorphic-unfetch@3.1.0", - "target": "npm:unfetch", - "type": "static" - } - ], - "npm:istanbul-instrumenter-loader": [ - { - "source": "npm:istanbul-instrumenter-loader", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:istanbul-instrumenter-loader", - "target": "npm:istanbul-lib-instrument@1.10.2", - "type": "static" - }, - { - "source": "npm:istanbul-instrumenter-loader", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:istanbul-instrumenter-loader", - "target": "npm:schema-utils@0.3.0", - "type": "static" - } - ], - "npm:istanbul-lib-instrument@1.10.2": [ - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babel-generator", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babel-template", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babel-traverse", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babel-types", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:babylon", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:istanbul-lib-coverage@1.2.1", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@1.10.2", - "target": "npm:semver@5.7.1", - "type": "static" - } - ], - "npm:istanbul-lib-instrument": [ - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - } - ], - "npm:istanbul-lib-instrument@6.0.0": [ - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@6.0.0", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:istanbul-lib-report": [ - { - "source": "npm:istanbul-lib-report", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:istanbul-lib-source-maps@3.0.6": [ - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:istanbul-lib-coverage@2.0.5", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps@3.0.6", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:istanbul-lib-source-maps": [ - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:istanbul-reports": [ - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - } - ], - "npm:istanbul": [ - { - "source": "npm:istanbul", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:async@1.5.2", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:escodegen@1.8.1", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:esprima@2.7.3", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:glob@5.0.15", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:resolve@1.1.7", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:supports-color@3.2.3", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:istanbul", - "target": "npm:wordwrap", - "type": "static" - } - ], - "npm:istextorbinary": [ - { - "source": "npm:istextorbinary", - "target": "npm:binaryextensions", - "type": "static" - }, - { - "source": "npm:istextorbinary", - "target": "npm:editions", - "type": "static" - }, - { - "source": "npm:istextorbinary", - "target": "npm:textextensions", - "type": "static" - } - ], - "npm:jackspeak": [ - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - } - ], - "npm:jake": [ - { - "source": "npm:jake", - "target": "npm:async@3.2.3", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:jest-axe": [ - { - "source": "npm:jest-axe", - "target": "npm:axe-core", - "type": "static" - }, - { - "source": "npm:jest-axe", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-axe", - "target": "npm:jest-matcher-utils@27.0.2", - "type": "static" - }, - { - "source": "npm:jest-axe", - "target": "npm:lodash.merge", - "type": "static" - } - ], - "npm:jest-canvas-mock": [ - { - "source": "npm:jest-canvas-mock", - "target": "npm:cssfontparser", - "type": "static" - }, - { - "source": "npm:jest-canvas-mock", - "target": "npm:moo-color", - "type": "static" - } - ], - "npm:jest-changed-files": [ - { - "source": "npm:jest-changed-files", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:jest-circus": [ - { - "source": "npm:jest-circus", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent@1.5.1", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:is-generator-fn", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-each", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:stack-utils", - "type": "static" - } - ], - "npm:jest-cli": [ - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs@17.7.2", - "type": "static" - } - ], - "npm:jest-config": [ - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:jest-diff": [ - { - "source": "npm:jest-diff", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-diff@27.5.1": [ - { - "source": "npm:jest-diff@27.5.1", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-diff@27.5.1", - "target": "npm:diff-sequences@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-diff@27.5.1", - "target": "npm:jest-get-type@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-diff@27.5.1", - "target": "npm:pretty-format@27.5.1", - "type": "static" - } - ], - "npm:jest-docblock": [ - { - "source": "npm:jest-docblock", - "target": "npm:detect-newline@3.1.0", - "type": "static" - } - ], - "npm:jest-each": [ - { - "source": "npm:jest-each", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-environment-jsdom": [ - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jsdom", - "type": "static" - } - ], - "npm:jest-environment-node-single-context": [ - { - "source": "npm:jest-environment-node-single-context", - "target": "npm:jest-environment-node", - "type": "static" - } - ], - "npm:jest-environment-node": [ - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-haste-map@26.6.2": [ - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:jest-regex-util@26.0.0", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:jest-serializer", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:jest-util@26.6.2", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:jest-worker@26.6.2", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:sane", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map@26.6.2", - "target": "npm:fsevents@2.3.3", - "type": "static" - } - ], - "npm:jest-haste-map": [ - { - "source": "npm:jest-haste-map", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fsevents@2.3.3", - "type": "static" - } - ], - "npm:jest-leak-detector": [ - { - "source": "npm:jest-leak-detector", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-matcher-utils@27.0.2": [ - { - "source": "npm:jest-matcher-utils@27.0.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@27.0.2", - "target": "npm:jest-diff@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@27.0.2", - "target": "npm:jest-get-type@27.5.1", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils@27.0.2", - "target": "npm:pretty-format@27.5.1", - "type": "static" - } - ], - "npm:jest-matcher-utils": [ - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-message-util": [ - { - "source": "npm:jest-message-util", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:stack-utils", - "type": "static" - } - ], - "npm:jest-mock": [ - { - "source": "npm:jest-mock", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-resolve-dependencies": [ - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot", - "type": "static" - } - ], - "npm:jest-resolve": [ - { - "source": "npm:jest-resolve", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports@2.0.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - } - ], - "npm:jest-runner": [ - { - "source": "npm:jest-runner", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-docblock", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-leak-detector", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "type": "static" - } - ], - "npm:jest-runtime": [ - { - "source": "npm:jest-runtime", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/globals", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/source-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:strip-bom@4.0.0", - "type": "static" - } - ], - "npm:jest-serializer": [ - { - "source": "npm:jest-serializer", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-serializer", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:jest-snapshot": [ - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:jest-util@26.6.2": [ - { - "source": "npm:jest-util@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:is-ci@2.0.0", - "type": "static" - }, - { - "source": "npm:jest-util@26.6.2", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:jest-util": [ - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:jest-validate": [ - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-watch-typeahead": [ - { - "source": "npm:jest-watch-typeahead", - "target": "npm:ansi-escapes@6.2.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:chalk@5.2.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:slash@5.1.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:string-length@5.0.1", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - } - ], - "npm:jest-watcher": [ - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - } - ], - "npm:jest-worker@24.9.0": [ - { - "source": "npm:jest-worker@24.9.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@24.9.0", - "target": "npm:supports-color@6.1.0", - "type": "static" - } - ], - "npm:jest-worker@26.6.2": [ - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@26.6.2", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:jest-worker@27.5.1": [ - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color@8.1.1", - "type": "static" - } - ], - "npm:jest-worker": [ - { - "source": "npm:jest-worker", - "target": "npm:@types/node@14.18.32", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color@8.1.1", - "type": "static" - } - ], - "npm:jest": [ - { - "source": "npm:jest", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:jest-cli", - "type": "static" - } - ], - "npm:js-queue": [ - { - "source": "npm:js-queue", - "target": "npm:easy-stack", - "type": "static" - } - ], - "npm:js-yaml": [ - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:js-yaml@4.1.0": [ - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse@2.0.1", - "type": "static" - } - ], - "npm:jsdom": [ - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn-globals", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssom", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssstyle", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:data-urls", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:decimal.js", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:domexception", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:is-potential-custom-element-name", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:nwsapi", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:saxes", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:symbol-tree", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:tough-cookie@4.1.2", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:w3c-xmlserializer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:json-edm-parser": [ - { - "source": "npm:json-edm-parser", - "target": "npm:jsonparse@1.2.0", - "type": "static" - } - ], - "npm:json-stable-stringify": [ - { - "source": "npm:json-stable-stringify", - "target": "npm:jsonify", - "type": "static" - } - ], - "npm:json5@1.0.2": [ - { - "source": "npm:json5@1.0.2", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:jsonc-eslint-parser": [ - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:espree@9.6.1", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:jsonfile@2.4.0": [ - { - "source": "npm:jsonfile@2.4.0", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:jsonfile": [ - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:jsonfile@6.0.1": [ - { - "source": "npm:jsonfile@6.0.1", - "target": "npm:universalify@1.0.0", - "type": "static" - }, - { - "source": "npm:jsonfile@6.0.1", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:jsonwebtoken": [ - { - "source": "npm:jsonwebtoken", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isboolean", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isinteger", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isnumber", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:semver@5.7.1", - "type": "static" - } - ], - "npm:jsprim@1.4.1": [ - { - "source": "npm:jsprim@1.4.1", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:jsprim@1.4.1", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:jsprim@1.4.1", - "target": "npm:json-schema@0.2.3", - "type": "static" - }, - { - "source": "npm:jsprim@1.4.1", - "target": "npm:verror", - "type": "static" - } - ], - "npm:jsprim": [ - { - "source": "npm:jsprim", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:verror", - "type": "static" - } - ], - "npm:jsx-ast-utils": [ - { - "source": "npm:jsx-ast-utils", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.assign", - "type": "static" - } - ], - "npm:jszip": [ - { - "source": "npm:jszip", - "target": "npm:lie", - "type": "static" - }, - { - "source": "npm:jszip", - "target": "npm:pako", - "type": "static" - }, - { - "source": "npm:jszip", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:jszip", - "target": "npm:setimmediate", - "type": "static" - } - ], - "npm:just-scripts-utils": [ - { - "source": "npm:just-scripts-utils", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:just-task-logger", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:marked", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:marked-terminal", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:just-scripts-utils", - "target": "npm:yargs@16.2.0", - "type": "static" - } - ], - "npm:just-scripts": [ - { - "source": "npm:just-scripts", - "target": "npm:@types/node@10.17.13", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:diff-match-patch", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:just-scripts-utils", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:just-task", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:run-parallel-limit", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:just-scripts", - "target": "npm:webpack-merge", - "type": "static" - } - ], - "npm:just-task-logger": [ - { - "source": "npm:just-task-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:just-task-logger", - "target": "npm:yargs@16.2.0", - "type": "static" - } - ], - "npm:just-task": [ - { - "source": "npm:just-task", - "target": "npm:@rushstack/package-deps-hash", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:bach", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:just-task-logger", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:undertaker", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:undertaker-registry", - "type": "static" - }, - { - "source": "npm:just-task", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - } - ], - "npm:jwa": [ - { - "source": "npm:jwa", - "target": "npm:buffer-equal-constant-time", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:ecdsa-sig-formatter", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:jws": [ - { - "source": "npm:jws", - "target": "npm:jwa", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:karma-chrome-launcher": [ - { - "source": "npm:karma-chrome-launcher", - "target": "npm:which", - "type": "static" - } - ], - "npm:karma-coverage-istanbul-reporter": [ - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:istanbul-lib-source-maps@3.0.6", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:karma-coverage-istanbul-reporter", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:karma-coverage": [ - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:karma-coverage", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:karma-firefox-launcher": [ - { - "source": "npm:karma-firefox-launcher", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:karma-mocha-reporter": [ - { - "source": "npm:karma-mocha-reporter", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:karma-mocha-reporter", - "target": "npm:log-symbols@2.2.0", - "type": "static" - }, - { - "source": "npm:karma-mocha-reporter", - "target": "npm:strip-ansi@4.0.0", - "type": "static" - } - ], - "npm:karma-mocha": [ - { - "source": "npm:karma-mocha", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:karma-source-map-support": [ - { - "source": "npm:karma-source-map-support", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:karma-sourcemap-loader": [ - { - "source": "npm:karma-sourcemap-loader", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:karma-webpack": [ - { - "source": "npm:karma-webpack", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:karma-webpack", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:karma-webpack", - "target": "npm:webpack-merge@4.2.2", - "type": "static" - } - ], - "npm:karma": [ - { - "source": "npm:karma", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:di", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:dom-serialize", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:isbinaryfile", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:log4js", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:qjobs", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:socket.io", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:ua-parser-js@0.7.33", - "type": "static" - }, - { - "source": "npm:karma", - "target": "npm:yargs@16.2.0", - "type": "static" - } - ], - "npm:keygrip": [ - { - "source": "npm:keygrip", - "target": "npm:tsscmp", - "type": "static" - } - ], - "npm:keyv": [ - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - } - ], - "npm:kind-of@3.2.2": [ - { - "source": "npm:kind-of@3.2.2", - "target": "npm:is-buffer", - "type": "static" - } - ], - "npm:kind-of@4.0.0": [ - { - "source": "npm:kind-of@4.0.0", - "target": "npm:is-buffer", - "type": "static" - } - ], - "npm:klaw": [ - { - "source": "npm:klaw", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:koa-bodyparser": [ - { - "source": "npm:koa-bodyparser", - "target": "npm:co-body", - "type": "static" - }, - { - "source": "npm:koa-bodyparser", - "target": "npm:copy-to", - "type": "static" - } - ], - "npm:koa-convert": [ - { - "source": "npm:koa-convert", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:koa-convert", - "target": "npm:koa-compose", - "type": "static" - } - ], - "npm:koa-mount": [ - { - "source": "npm:koa-mount", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:koa-mount", - "target": "npm:koa-compose", - "type": "static" - } - ], - "npm:koa-node-resolve": [ - { - "source": "npm:koa-node-resolve", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:@types/parse5", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:parse5@5.1.1", - "type": "static" - }, - { - "source": "npm:koa-node-resolve", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:koa-send": [ - { - "source": "npm:koa-send", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:koa-send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:koa-send", - "target": "npm:resolve-path", - "type": "static" - } - ], - "npm:koa-static": [ - { - "source": "npm:koa-static", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:koa-static", - "target": "npm:koa-send", - "type": "static" - } - ], - "npm:koa": [ - { - "source": "npm:koa", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:cache-content-type", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:cookies", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:depd@2.0.0", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:http-assert", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:koa-compose", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:koa-convert", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:only", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:vary", - "type": "static" - } - ], - "npm:ky-universal": [ - { - "source": "npm:ky-universal", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:ky-universal", - "target": "npm:node-fetch", - "type": "static" - } - ], - "npm:lage": [ - { - "source": "npm:lage", - "target": "npm:@lage-run/logger", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:@xmldom/xmldom", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:backfill", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:backfill-cache", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:backfill-config", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:backfill-logger", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:p-graph", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:p-profiler", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:workspace-tools@0.27.0", - "type": "static" - }, - { - "source": "npm:lage", - "target": "npm:yargs-parser@18.1.3", - "type": "static" - } - ], - "npm:language-tags": [ - { - "source": "npm:language-tags", - "target": "npm:language-subtag-registry", - "type": "static" - } - ], - "npm:last-run": [ - { - "source": "npm:last-run", - "target": "npm:default-resolution", - "type": "static" - }, - { - "source": "npm:last-run", - "target": "npm:es6-weak-map", - "type": "static" - } - ], - "npm:latest-version": [ - { - "source": "npm:latest-version", - "target": "npm:package-json", - "type": "static" - } - ], - "npm:lazy-universal-dotenv": [ - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:app-root-dir", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "npm:lazy-universal-dotenv", - "target": "npm:dotenv-expand@5.1.0", - "type": "static" - } - ], - "npm:lazystream": [ - { - "source": "npm:lazystream", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:lcid": [ - { - "source": "npm:lcid", - "target": "npm:invert-kv", - "type": "static" - } - ], - "npm:lead": [ - { - "source": "npm:lead", - "target": "npm:flush-write-stream", - "type": "static" - } - ], - "npm:lerna-alias": [ - { - "source": "npm:lerna-alias", - "target": "npm:get-lerna-packages", - "type": "static" - } - ], - "npm:lerna": [ - { - "source": "npm:lerna", - "target": "npm:@lerna/child-process", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@lerna/create", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@octokit/plugin-enterprise-rest", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:@octokit/rest@19.0.11", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:byte-size", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:cmd-shim", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-changelog-angular", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-changelog-core", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:conventional-recommended-bump", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:cosmiconfig@8.2.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:execa@5.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:get-stream@6.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:init-package-json", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:inquirer@8.2.4", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:libnpmaccess", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:libnpmpublish", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:load-json-file", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:multimatch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:npmlog@6.0.2", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-map-series", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-pipe", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-queue", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-reduce", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:p-waterfall", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:pify@5.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:read-cmd-shim", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:rimraf@4.4.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:ssri@9.0.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:upath", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:uuid@9.0.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:write-file-atomic@5.0.1", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:write-pkg", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:yargs@16.2.0", - "type": "static" - }, - { - "source": "npm:lerna", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - } - ], - "npm:levn": [ - { - "source": "npm:levn", - "target": "npm:prelude-ls@1.2.1", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check@0.4.0", - "type": "static" - } - ], - "npm:levn@0.3.0": [ - { - "source": "npm:levn@0.3.0", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn@0.3.0", - "target": "npm:type-check", - "type": "static" - } - ], - "npm:libnpmaccess": [ - { - "source": "npm:libnpmaccess", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmaccess", - "target": "npm:npm-registry-fetch", - "type": "static" - } - ], - "npm:libnpmpublish": [ - { - "source": "npm:libnpmpublish", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:libnpmpublish", - "target": "npm:ssri", - "type": "static" - } - ], - "npm:license-webpack-plugin": [ - { - "source": "npm:license-webpack-plugin", - "target": "npm:@types/webpack-sources", - "type": "static" - }, - { - "source": "npm:license-webpack-plugin", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:lie": [ - { - "source": "npm:lie", - "target": "npm:immediate", - "type": "static" - } - ], - "npm:liftoff": [ - { - "source": "npm:liftoff", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:findup-sync", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:fined", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:flagged-respawn", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:object.map", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:rechoir", - "type": "static" - }, - { - "source": "npm:liftoff", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:liftoff@3.1.0": [ - { - "source": "npm:liftoff@3.1.0", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:findup-sync@3.0.0", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:fined", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:flagged-respawn", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:object.map", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:rechoir", - "type": "static" - }, - { - "source": "npm:liftoff@3.1.0", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:lint-staged": [ - { - "source": "npm:lint-staged", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:commander@5.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:cosmiconfig@6.0.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:please-upgrade-node", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:stringify-object", - "type": "static" - } - ], - "npm:listr2": [ - { - "source": "npm:listr2", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rxjs@6.6.7", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:through", - "type": "static" - } - ], - "npm:listr2@3.14.0": [ - { - "source": "npm:listr2@3.14.0", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:colorette@2.0.20", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:listr2@3.14.0", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:load-json-file": [ - { - "source": "npm:load-json-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:strip-bom@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file", - "target": "npm:type-fest@0.6.0", - "type": "static" - } - ], - "npm:load-json-file@1.1.0": [ - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:parse-json@2.2.0", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:pinkie-promise", - "type": "static" - }, - { - "source": "npm:load-json-file@1.1.0", - "target": "npm:strip-bom@2.0.0", - "type": "static" - } - ], - "npm:load-json-file@4.0.0": [ - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:load-json-file@4.0.0", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:loader-utils@1.4.2": [ - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@1.4.2", - "target": "npm:json5@1.0.2", - "type": "static" - } - ], - "npm:loader-utils": [ - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "type": "static" - } - ], - "npm:locate-path@2.0.0": [ - { - "source": "npm:locate-path@2.0.0", - "target": "npm:p-locate@2.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@2.0.0", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:locate-path@3.0.0": [ - { - "source": "npm:locate-path@3.0.0", - "target": "npm:p-locate@3.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:locate-path@5.0.0": [ - { - "source": "npm:locate-path@5.0.0", - "target": "npm:p-locate@4.1.0", - "type": "static" - } - ], - "npm:locate-path": [ - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - } - ], - "npm:locate-path@7.1.1": [ - { - "source": "npm:locate-path@7.1.1", - "target": "npm:p-locate@6.0.0", - "type": "static" - } - ], - "npm:lodash.escape": [ - { - "source": "npm:lodash.escape", - "target": "npm:lodash._root", - "type": "static" - } - ], - "npm:lodash.keys@3.1.2": [ - { - "source": "npm:lodash.keys@3.1.2", - "target": "npm:lodash._getnative", - "type": "static" - }, - { - "source": "npm:lodash.keys@3.1.2", - "target": "npm:lodash.isarguments", - "type": "static" - }, - { - "source": "npm:lodash.keys@3.1.2", - "target": "npm:lodash.isarray", - "type": "static" - } - ], - "npm:lodash.template": [ - { - "source": "npm:lodash.template", - "target": "npm:lodash._basecopy", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._basetostring", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._basevalues", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._isiterateecall", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.escape", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.keys@3.1.2", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.restparam", - "type": "static" - }, - { - "source": "npm:lodash.template", - "target": "npm:lodash.templatesettings", - "type": "static" - } - ], - "npm:lodash.templatesettings": [ - { - "source": "npm:lodash.templatesettings", - "target": "npm:lodash._reinterpolate", - "type": "static" - }, - { - "source": "npm:lodash.templatesettings", - "target": "npm:lodash.escape", - "type": "static" - } - ], - "npm:log-symbols@3.0.0": [ - { - "source": "npm:log-symbols@3.0.0", - "target": "npm:chalk@2.4.2", - "type": "static" - } - ], - "npm:log-symbols@1.0.2": [ - { - "source": "npm:log-symbols@1.0.2", - "target": "npm:chalk@1.1.3", - "type": "static" - } - ], - "npm:log-symbols@2.2.0": [ - { - "source": "npm:log-symbols@2.2.0", - "target": "npm:chalk@2.4.2", - "type": "static" - } - ], - "npm:log-symbols": [ - { - "source": "npm:log-symbols", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - } - ], - "npm:log-update": [ - { - "source": "npm:log-update", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:wrap-ansi@6.2.0", - "type": "static" - } - ], - "npm:log4js": [ - { - "source": "npm:log4js", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:streamroller", - "type": "static" - } - ], - "npm:loose-envify": [ - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - } - ], - "npm:loud-rejection": [ - { - "source": "npm:loud-rejection", - "target": "npm:currently-unhandled", - "type": "static" - }, - { - "source": "npm:loud-rejection", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:loupe": [ - { - "source": "npm:loupe", - "target": "npm:get-func-name", - "type": "static" - } - ], - "npm:lower-case-first": [ - { - "source": "npm:lower-case-first", - "target": "npm:lower-case", - "type": "static" - } - ], - "npm:lower-case@2.0.2": [ - { - "source": "npm:lower-case@2.0.2", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:lowlight": [ - { - "source": "npm:lowlight", - "target": "npm:fault", - "type": "static" - }, - { - "source": "npm:lowlight", - "target": "npm:highlight.js", - "type": "static" - } - ], - "npm:lru-cache@4.1.5": [ - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:pseudomap", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:yallist@2.1.2", - "type": "static" - } - ], - "npm:lru-cache@5.1.1": [ - { - "source": "npm:lru-cache@5.1.1", - "target": "npm:yallist@3.1.1", - "type": "static" - } - ], - "npm:lru-cache": [ - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:lru-queue": [ - { - "source": "npm:lru-queue", - "target": "npm:es5-ext", - "type": "static" - } - ], - "npm:magic-string": [ - { - "source": "npm:magic-string", - "target": "npm:sourcemap-codec", - "type": "static" - } - ], - "npm:make-dir": [ - { - "source": "npm:make-dir", - "target": "npm:semver", - "type": "static" - } - ], - "npm:make-dir@1.3.0": [ - { - "source": "npm:make-dir@1.3.0", - "target": "npm:pify@3.0.0", - "type": "static" - } - ], - "npm:make-dir@2.1.0": [ - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.1", - "type": "static" - } - ], - "npm:make-fetch-happen@10.2.1": [ - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:cacache@16.1.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-fetch@2.1.2", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@10.2.1", - "target": "npm:ssri@9.0.1", - "type": "static" - } - ], - "npm:make-fetch-happen": [ - { - "source": "npm:make-fetch-happen", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache@17.1.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:lru-cache@7.14.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch@3.0.3", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - } - ], - "npm:make-fetch-happen@8.0.9": [ - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:agentkeepalive", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:http-proxy-agent@4.0.1", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:promise-retry@1.1.1", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:socks-proxy-agent@5.0.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen@8.0.9", - "target": "npm:ssri@8.0.0", - "type": "static" - } - ], - "npm:make-iterator": [ - { - "source": "npm:make-iterator", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:makeerror": [ - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - } - ], - "npm:map-age-cleaner": [ - { - "source": "npm:map-age-cleaner", - "target": "npm:p-defer", - "type": "static" - } - ], - "npm:map-visit": [ - { - "source": "npm:map-visit", - "target": "npm:object-visit", - "type": "static" - } - ], - "npm:markdown-table": [ - { - "source": "npm:markdown-table", - "target": "npm:repeat-string", - "type": "static" - } - ], - "npm:marked-terminal": [ - { - "source": "npm:marked-terminal", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:cardinal", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:cli-table", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:node-emoji", - "type": "static" - }, - { - "source": "npm:marked-terminal", - "target": "npm:supports-hyperlinks@2.2.0", - "type": "static" - } - ], - "npm:matchdep": [ - { - "source": "npm:matchdep", - "target": "npm:findup-sync", - "type": "static" - }, - { - "source": "npm:matchdep", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:matchdep", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:matchdep", - "target": "npm:stack-trace", - "type": "static" - } - ], - "npm:md5.js": [ - { - "source": "npm:md5.js", - "target": "npm:hash-base", - "type": "static" - }, - { - "source": "npm:md5.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:md5.js", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:mdast-add-list-metadata": [ - { - "source": "npm:mdast-add-list-metadata", - "target": "npm:unist-util-visit-parents@1.1.2", - "type": "static" - } - ], - "npm:mdast-squeeze-paragraphs": [ - { - "source": "npm:mdast-squeeze-paragraphs", - "target": "npm:unist-util-remove", - "type": "static" - } - ], - "npm:mdast-util-definitions": [ - { - "source": "npm:mdast-util-definitions", - "target": "npm:unist-util-visit", - "type": "static" - } - ], - "npm:mdast-util-to-hast": [ - { - "source": "npm:mdast-util-to-hast", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:mdast-util-definitions", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:mdurl", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:unist-builder", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:unist-util-generated", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:unist-util-position", - "type": "static" - }, - { - "source": "npm:mdast-util-to-hast", - "target": "npm:unist-util-visit", - "type": "static" - } - ], - "npm:mem": [ - { - "source": "npm:mem", - "target": "npm:map-age-cleaner", - "type": "static" - }, - { - "source": "npm:mem", - "target": "npm:mimic-fn@3.1.0", - "type": "static" - } - ], - "npm:memfs-or-file-map-to-github-branch": [ - { - "source": "npm:memfs-or-file-map-to-github-branch", - "target": "npm:@octokit/rest", - "type": "static" - } - ], - "npm:memfs": [ - { - "source": "npm:memfs", - "target": "npm:fs-monkey", - "type": "static" - } - ], - "npm:memfs@3.4.1": [ - { - "source": "npm:memfs@3.4.1", - "target": "npm:fs-monkey", - "type": "static" - } - ], - "npm:memoizee": [ - { - "source": "npm:memoizee", - "target": "npm:d", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:event-emitter", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:lru-queue", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:next-tick", - "type": "static" - }, - { - "source": "npm:memoizee", - "target": "npm:timers-ext", - "type": "static" - } - ], - "npm:memoizerific": [ - { - "source": "npm:memoizerific", - "target": "npm:map-or-similar", - "type": "static" - } - ], - "npm:memory-fs": [ - { - "source": "npm:memory-fs", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:memory-fs", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:memory-fs@0.5.0": [ - { - "source": "npm:memory-fs@0.5.0", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:memory-fs@0.5.0", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:meow@3.7.0": [ - { - "source": "npm:meow@3.7.0", - "target": "npm:camelcase-keys@2.1.0", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:loud-rejection", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:map-obj", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:read-pkg-up@1.0.1", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:redent@1.0.0", - "type": "static" - }, - { - "source": "npm:meow@3.7.0", - "target": "npm:trim-newlines@1.0.0", - "type": "static" - } - ], - "npm:meow": [ - { - "source": "npm:meow", - "target": "npm:@types/minimist", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:camelcase-keys", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:decamelize-keys", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:hard-rejection", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:minimist-options", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:normalize-package-data@3.0.3", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:read-pkg-up", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:trim-newlines", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:type-fest@0.18.1", - "type": "static" - }, - { - "source": "npm:meow", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - } - ], - "npm:micromatch@3.1.10": [ - { - "source": "npm:micromatch@3.1.10", - "target": "npm:arr-diff", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:braces@2.3.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:extglob", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:fragment-cache", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:nanomatch", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:micromatch@3.1.10", - "target": "npm:to-regex", - "type": "static" - } - ], - "npm:micromatch": [ - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:miller-rabin": [ - { - "source": "npm:miller-rabin", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:miller-rabin", - "target": "npm:brorand", - "type": "static" - } - ], - "npm:mime-types": [ - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:min-document": [ - { - "source": "npm:min-document", - "target": "npm:dom-walk", - "type": "static" - } - ], - "npm:mini-create-react-context": [ - { - "source": "npm:mini-create-react-context", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:mini-create-react-context", - "target": "npm:tiny-warning", - "type": "static" - } - ], - "npm:mini-css-extract-plugin": [ - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:schema-utils@4.0.0", - "type": "static" - } - ], - "npm:minimatch": [ - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - } - ], - "npm:minimatch@3.0.4": [ - { - "source": "npm:minimatch@3.0.4", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - } - ], - "npm:minimatch@9.0.1": [ - { - "source": "npm:minimatch@9.0.1", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minimatch@5.0.1": [ - { - "source": "npm:minimatch@5.0.1", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minimatch@8.0.4": [ - { - "source": "npm:minimatch@8.0.4", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minimist-options": [ - { - "source": "npm:minimist-options", - "target": "npm:arrify@1.0.1", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:minimist-options", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:minipass-collect": [ - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-fetch": [ - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - } - ], - "npm:minipass-fetch@2.1.2": [ - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch@2.1.2", - "target": "npm:encoding", - "type": "static" - } - ], - "npm:minipass-fetch@3.0.3": [ - { - "source": "npm:minipass-fetch@3.0.3", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:minipass-fetch@3.0.3", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch@3.0.3", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch@3.0.3", - "target": "npm:encoding", - "type": "static" - } - ], - "npm:minipass-flush": [ - { - "source": "npm:minipass-flush", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-json-stream": [ - { - "source": "npm:minipass-json-stream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-pipeline": [ - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-sized": [ - { - "source": "npm:minipass-sized", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass@2.9.0": [ - { - "source": "npm:minipass@2.9.0", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:minipass@2.9.0", - "target": "npm:yallist@3.1.1", - "type": "static" - } - ], - "npm:minipass": [ - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:minizlib@1.3.3": [ - { - "source": "npm:minizlib@1.3.3", - "target": "npm:minipass@2.9.0", - "type": "static" - } - ], - "npm:minizlib": [ - { - "source": "npm:minizlib", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:mississippi": [ - { - "source": "npm:mississippi", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:flush-write-stream", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:from2", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:parallel-transform", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:pumpify", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:stream-each", - "type": "static" - }, - { - "source": "npm:mississippi", - "target": "npm:through2@2.0.5", - "type": "static" - } - ], - "npm:mixin-deep": [ - { - "source": "npm:mixin-deep", - "target": "npm:for-in", - "type": "static" - }, - { - "source": "npm:mixin-deep", - "target": "npm:is-extendable@1.0.1", - "type": "static" - } - ], - "npm:mkdirp": [ - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:mocha": [ - { - "source": "npm:mocha", - "target": "npm:ansi-colors@3.2.3", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:browser-stdout", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:chokidar@3.3.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:debug@3.2.6", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:diff@3.5.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:glob@7.1.3", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:growl", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:log-symbols@3.0.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:minimatch@3.0.4", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:ms@2.1.1", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:node-environment-flags", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:object.assign@4.1.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:supports-color@6.0.0", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:wide-align@1.1.3", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:mocha", - "target": "npm:yargs-unparser@1.6.0", - "type": "static" - } - ], - "npm:mocked-env": [ - { - "source": "npm:mocked-env", - "target": "npm:check-more-types", - "type": "static" - }, - { - "source": "npm:mocked-env", - "target": "npm:debug@4.1.1", - "type": "static" - }, - { - "source": "npm:mocked-env", - "target": "npm:lazy-ass", - "type": "static" - }, - { - "source": "npm:mocked-env", - "target": "npm:ramda", - "type": "static" - } - ], - "npm:monosize-storage-azure": [ - { - "source": "npm:monosize-storage-azure", - "target": "npm:@azure/data-tables", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:monosize", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:node-fetch@3.3.1", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:monosize-storage-azure", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:monosize": [ - { - "source": "npm:monosize", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:del@7.0.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:find-up@6.3.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:gzip-size@7.0.0", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:pretty-bytes@6.1.1", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:workspace-tools", - "type": "static" - }, - { - "source": "npm:monosize", - "target": "npm:yargs@17.7.2", - "type": "static" - } - ], - "npm:moo-color": [ - { - "source": "npm:moo-color", - "target": "npm:color-name", - "type": "static" - } - ], - "npm:move-concurrently": [ - { - "source": "npm:move-concurrently", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:copy-concurrently", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:fs-write-stream-atomic", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:move-concurrently", - "target": "npm:run-queue", - "type": "static" - } - ], - "npm:multicast-dns": [ - { - "source": "npm:multicast-dns", - "target": "npm:dns-packet", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:thunky", - "type": "static" - } - ], - "npm:multimatch": [ - { - "source": "npm:multimatch", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-differ@3.0.0", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:arrify", - "type": "static" - }, - { - "source": "npm:multimatch", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:multipipe": [ - { - "source": "npm:multipipe", - "target": "npm:duplexer2", - "type": "static" - } - ], - "npm:nanomatch": [ - { - "source": "npm:nanomatch", - "target": "npm:arr-diff", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:array-unique", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:fragment-cache", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:object.pick", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:snapdragon", - "type": "static" - }, - { - "source": "npm:nanomatch", - "target": "npm:to-regex", - "type": "static" - } - ], - "npm:nearley": [ - { - "source": "npm:nearley", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:moo", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:railroad-diagrams", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:randexp", - "type": "static" - }, - { - "source": "npm:nearley", - "target": "npm:semver@5.7.1", - "type": "static" - } - ], - "npm:no-case": [ - { - "source": "npm:no-case", - "target": "npm:lower-case", - "type": "static" - } - ], - "npm:no-case@3.0.4": [ - { - "source": "npm:no-case@3.0.4", - "target": "npm:lower-case@2.0.2", - "type": "static" - }, - { - "source": "npm:no-case@3.0.4", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:node-dir": [ - { - "source": "npm:node-dir", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:node-emoji": [ - { - "source": "npm:node-emoji", - "target": "npm:lodash.toarray", - "type": "static" - } - ], - "npm:node-environment-flags": [ - { - "source": "npm:node-environment-flags", - "target": "npm:object.getownpropertydescriptors", - "type": "static" - }, - { - "source": "npm:node-environment-flags", - "target": "npm:semver@5.7.1", - "type": "static" - } - ], - "npm:node-fetch": [ - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - } - ], - "npm:node-fetch@3.3.1": [ - { - "source": "npm:node-fetch@3.3.1", - "target": "npm:data-uri-to-buffer", - "type": "static" - }, - { - "source": "npm:node-fetch@3.3.1", - "target": "npm:fetch-blob", - "type": "static" - }, - { - "source": "npm:node-fetch@3.3.1", - "target": "npm:formdata-polyfill", - "type": "static" - } - ], - "npm:node-gyp@6.1.0": [ - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:nopt@4.0.1", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:request", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:tar@4.4.19", - "type": "static" - }, - { - "source": "npm:node-gyp@6.1.0", - "target": "npm:which", - "type": "static" - } - ], - "npm:node-gyp": [ - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen@10.2.1", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt@5.0.0", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:npmlog@6.0.2", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@2.0.2", - "type": "static" - } - ], - "npm:node-ipc": [ - { - "source": "npm:node-ipc", - "target": "npm:event-pubsub", - "type": "static" - }, - { - "source": "npm:node-ipc", - "target": "npm:js-message", - "type": "static" - }, - { - "source": "npm:node-ipc", - "target": "npm:js-queue", - "type": "static" - } - ], - "npm:node-libs-browser": [ - { - "source": "npm:node-libs-browser", - "target": "npm:assert@1.5.0", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:browserify-zlib", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:buffer@4.9.1", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:console-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:constants-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:crypto-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:domain-browser@1.2.0", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:https-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:os-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:path-browserify@0.0.1", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:punycode@1.3.2", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:querystring-es3", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:stream-browserify@2.0.2", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:stream-http@2.8.3", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:timers-browserify", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:tty-browserify@0.0.0", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:url", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:util@0.11.1", - "type": "static" - }, - { - "source": "npm:node-libs-browser", - "target": "npm:vm-browserify", - "type": "static" - } - ], - "npm:node-plop": [ - { - "source": "npm:node-plop", - "target": "npm:@types/globby", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:@types/handlebars", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:@types/inquirer", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:change-case", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:del@5.1.0", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:globby@10.0.2", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:inquirer", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:isbinaryfile", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:lodash.get", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:node-plop", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:node-polyfill-webpack-plugin": [ - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:assert", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:browserify-zlib", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:buffer@6.0.3", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:console-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:constants-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:crypto-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:domain-browser", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:https-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:os-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:querystring-es3", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:stream-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:stream-http", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:timers-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:tty-browserify", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:url", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:util", - "type": "static" - }, - { - "source": "npm:node-polyfill-webpack-plugin", - "target": "npm:vm-browserify", - "type": "static" - } - ], - "npm:nopt": [ - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - } - ], - "npm:nopt@4.0.1": [ - { - "source": "npm:nopt@4.0.1", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:nopt@4.0.1", - "target": "npm:osenv", - "type": "static" - } - ], - "npm:nopt@5.0.0": [ - { - "source": "npm:nopt@5.0.0", - "target": "npm:abbrev", - "type": "static" - } - ], - "npm:normalize-package-data": [ - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info@2.8.9", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - } - ], - "npm:normalize-package-data@3.0.3": [ - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:normalize-package-data@3.0.3", - "target": "npm:validate-npm-package-license", - "type": "static" - } - ], - "npm:normalize-package-data@5.0.0": [ - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:normalize-package-data@5.0.0", - "target": "npm:validate-npm-package-license", - "type": "static" - } - ], - "npm:normalize-path@2.1.1": [ - { - "source": "npm:normalize-path@2.1.1", - "target": "npm:remove-trailing-separator", - "type": "static" - } - ], - "npm:now-and-later": [ - { - "source": "npm:now-and-later", - "target": "npm:once", - "type": "static" - } - ], - "npm:npm-bundled": [ - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:npm-bundled@3.0.0": [ - { - "source": "npm:npm-bundled@3.0.0", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - } - ], - "npm:npm-install-checks": [ - { - "source": "npm:npm-install-checks", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:npm-install-checks@6.1.1": [ - { - "source": "npm:npm-install-checks@6.1.1", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:npm-package-arg@11.0.1": [ - { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:hosted-git-info@7.0.1", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.1", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:npm-package-arg@8.1.1": [ - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:hosted-git-info@3.0.8", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg@8.1.1", - "target": "npm:validate-npm-package-name@3.0.0", - "type": "static" - } - ], - "npm:npm-package-arg": [ - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info@6.1.1", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:npm-packlist": [ - { - "source": "npm:npm-packlist", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:npm-packlist@2.1.2": [ - { - "source": "npm:npm-packlist@2.1.2", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:npm-packlist@2.1.2", - "target": "npm:ignore-walk@3.0.3", - "type": "static" - }, - { - "source": "npm:npm-packlist@2.1.2", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:npm-packlist@2.1.2", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:npm-packlist@7.0.4": [ - { - "source": "npm:npm-packlist@7.0.4", - "target": "npm:ignore-walk@6.0.3", - "type": "static" - } - ], - "npm:npm-pick-manifest": [ - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:npm-pick-manifest@8.0.1": [ - { - "source": "npm:npm-pick-manifest@8.0.1", - "target": "npm:npm-install-checks@6.1.1", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest@8.0.1", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest@8.0.1", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest@8.0.1", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:npm-registry-fetch": [ - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch@3.0.3", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log", - "type": "static" - } - ], - "npm:npm-registry-fetch@8.1.3": [ - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:@npmcli/ci-detect", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:make-fetch-happen@8.0.9", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch@8.1.3", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - } - ], - "npm:npm-run-path@2.0.2": [ - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key", - "type": "static" - } - ], - "npm:npm-run-path": [ - { - "source": "npm:npm-run-path", - "target": "npm:path-key@3.1.1", - "type": "static" - } - ], - "npm:npmlog": [ - { - "source": "npm:npmlog", - "target": "npm:are-we-there-yet", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:gauge", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:set-blocking", - "type": "static" - } - ], - "npm:npmlog@5.0.1": [ - { - "source": "npm:npmlog@5.0.1", - "target": "npm:are-we-there-yet@2.0.0", - "type": "static" - }, - { - "source": "npm:npmlog@5.0.1", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog@5.0.1", - "target": "npm:gauge@3.0.2", - "type": "static" - }, - { - "source": "npm:npmlog@5.0.1", - "target": "npm:set-blocking", - "type": "static" - } - ], - "npm:npmlog@6.0.2": [ - { - "source": "npm:npmlog@6.0.2", - "target": "npm:are-we-there-yet@3.0.1", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:gauge@4.0.4", - "type": "static" - }, - { - "source": "npm:npmlog@6.0.2", - "target": "npm:set-blocking", - "type": "static" - } - ], - "npm:nth-check@2.0.0": [ - { - "source": "npm:nth-check@2.0.0", - "target": "npm:boolbase", - "type": "static" - } - ], - "npm:nth-check": [ - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - } - ], - "npm:nx": [ - { - "source": "npm:nx", - "target": "npm:@nrwl/tao", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@parcel/watcher", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv@16.3.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:glob@7.1.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns@2.0.3", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths@4.2.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:v8-compile-cache", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs@17.7.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc@16.10.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - } - ], - "npm:object-copy": [ - { - "source": "npm:object-copy", - "target": "npm:copy-descriptor", - "type": "static" - }, - { - "source": "npm:object-copy", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:object-copy", - "target": "npm:kind-of@3.2.2", - "type": "static" - } - ], - "npm:object-is": [ - { - "source": "npm:object-is", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:object-visit": [ - { - "source": "npm:object-visit", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:object.assign@4.1.0": [ - { - "source": "npm:object.assign@4.1.0", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign@4.1.0", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:object.assign@4.1.0", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign@4.1.0", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:object.assign": [ - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:object.defaults": [ - { - "source": "npm:object.defaults", - "target": "npm:array-each", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:array-slice", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:object.defaults", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:object.entries": [ - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:object.fromentries": [ - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:object.getownpropertydescriptors": [ - { - "source": "npm:object.getownpropertydescriptors", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.getownpropertydescriptors", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:object.hasown": [ - { - "source": "npm:object.hasown", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.hasown", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:object.map": [ - { - "source": "npm:object.map", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:object.map", - "target": "npm:make-iterator", - "type": "static" - } - ], - "npm:object.pick": [ - { - "source": "npm:object.pick", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:object.reduce": [ - { - "source": "npm:object.reduce", - "target": "npm:for-own", - "type": "static" - }, - { - "source": "npm:object.reduce", - "target": "npm:make-iterator", - "type": "static" - } - ], - "npm:object.values": [ - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:on-finished": [ - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - } - ], - "npm:once": [ - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:onetime@2.0.1": [ - { - "source": "npm:onetime@2.0.1", - "target": "npm:mimic-fn@1.2.0", - "type": "static" - } - ], - "npm:onetime": [ - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - } - ], - "npm:open@7.4.2": [ - { - "source": "npm:open@7.4.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:open": [ - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:opn": [ - { - "source": "npm:opn", - "target": "npm:is-wsl@1.1.0", - "type": "static" - } - ], - "npm:optionator": [ - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn@0.3.0", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:wordwrap", - "type": "static" - } - ], - "npm:optionator@0.9.1": [ - { - "source": "npm:optionator@0.9.1", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:prelude-ls@1.2.1", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:type-check@0.4.0", - "type": "static" - }, - { - "source": "npm:optionator@0.9.1", - "target": "npm:word-wrap", - "type": "static" - } - ], - "npm:ora": [ - { - "source": "npm:ora", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:ora@3.4.0": [ - { - "source": "npm:ora@3.4.0", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:cli-cursor@2.1.0", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:log-symbols@2.2.0", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:ora@3.4.0", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:ora@5.4.1": [ - { - "source": "npm:ora@5.4.1", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:ordered-read-streams": [ - { - "source": "npm:ordered-read-streams", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:os-filter-obj": [ - { - "source": "npm:os-filter-obj", - "target": "npm:arch", - "type": "static" - } - ], - "npm:os-locale": [ - { - "source": "npm:os-locale", - "target": "npm:lcid", - "type": "static" - } - ], - "npm:osenv": [ - { - "source": "npm:osenv", - "target": "npm:os-homedir", - "type": "static" - }, - { - "source": "npm:osenv", - "target": "npm:os-tmpdir", - "type": "static" - } - ], - "npm:p-all": [ - { - "source": "npm:p-all", - "target": "npm:p-map@2.1.0", - "type": "static" - } - ], - "npm:p-event": [ - { - "source": "npm:p-event", - "target": "npm:p-timeout", - "type": "static" - } - ], - "npm:p-filter": [ - { - "source": "npm:p-filter", - "target": "npm:p-map@2.1.0", - "type": "static" - } - ], - "npm:p-limit@1.3.0": [ - { - "source": "npm:p-limit@1.3.0", - "target": "npm:p-try@1.0.0", - "type": "static" - } - ], - "npm:p-limit@2.3.0": [ - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - } - ], - "npm:p-limit": [ - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - } - ], - "npm:p-limit@4.0.0": [ - { - "source": "npm:p-limit@4.0.0", - "target": "npm:yocto-queue@1.0.0", - "type": "static" - } - ], - "npm:p-locate@2.0.0": [ - { - "source": "npm:p-locate@2.0.0", - "target": "npm:p-limit@1.3.0", - "type": "static" - } - ], - "npm:p-locate@3.0.0": [ - { - "source": "npm:p-locate@3.0.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - } - ], - "npm:p-locate@4.1.0": [ - { - "source": "npm:p-locate@4.1.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - } - ], - "npm:p-locate": [ - { - "source": "npm:p-locate", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:p-locate@6.0.0": [ - { - "source": "npm:p-locate@6.0.0", - "target": "npm:p-limit@4.0.0", - "type": "static" - } - ], - "npm:p-map": [ - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - } - ], - "npm:p-map@3.0.0": [ - { - "source": "npm:p-map@3.0.0", - "target": "npm:aggregate-error", - "type": "static" - } - ], - "npm:p-map@5.5.0": [ - { - "source": "npm:p-map@5.5.0", - "target": "npm:aggregate-error@4.0.1", - "type": "static" - } - ], - "npm:p-queue": [ - { - "source": "npm:p-queue", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:p-queue", - "target": "npm:p-timeout", - "type": "static" - } - ], - "npm:p-retry": [ - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry@0.13.1", - "type": "static" - } - ], - "npm:p-timeout": [ - { - "source": "npm:p-timeout", - "target": "npm:p-finally", - "type": "static" - } - ], - "npm:p-waterfall": [ - { - "source": "npm:p-waterfall", - "target": "npm:p-reduce", - "type": "static" - } - ], - "npm:package-json": [ - { - "source": "npm:package-json", - "target": "npm:got@6.7.1", - "type": "static" - }, - { - "source": "npm:package-json", - "target": "npm:registry-auth-token", - "type": "static" - }, - { - "source": "npm:package-json", - "target": "npm:registry-url", - "type": "static" - }, - { - "source": "npm:package-json", - "target": "npm:semver@5.7.1", - "type": "static" - } - ], - "npm:pacote@11.1.11": [ - { - "source": "npm:pacote@11.1.11", - "target": "npm:@npmcli/git@2.0.3", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:@npmcli/installed-package-contents@1.0.7", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:@npmcli/run-script@1.3.1", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:npm-package-arg@8.1.1", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:npm-packlist@2.1.2", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:npm-registry-fetch@8.1.3", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:promise-retry@1.1.1", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:ssri@8.0.0", - "type": "static" - }, - { - "source": "npm:pacote@11.1.11", - "target": "npm:tar", - "type": "static" - } - ], - "npm:pacote": [ - { - "source": "npm:pacote", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/promise-spawn@6.0.2", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:cacache@17.1.3", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:fs-minipass@3.0.2", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-packlist@7.0.4", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-pick-manifest@8.0.1", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:read-package-json", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:read-package-json-fast@3.0.2", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:tar", - "type": "static" - } - ], - "npm:parallel-transform": [ - { - "source": "npm:parallel-transform", - "target": "npm:cyclist", - "type": "static" - }, - { - "source": "npm:parallel-transform", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:parallel-transform", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:parallel-webpack": [ - { - "source": "npm:parallel-webpack", - "target": "npm:ajv@4.11.8", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:interpret", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:lodash.assign", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:lodash.endswith", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:lodash.flatten", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:node-ipc", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:pluralize", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:supports-color@3.2.3", - "type": "static" - }, - { - "source": "npm:parallel-webpack", - "target": "npm:worker-farm", - "type": "static" - } - ], - "npm:param-case": [ - { - "source": "npm:param-case", - "target": "npm:no-case", - "type": "static" - } - ], - "npm:param-case@3.0.4": [ - { - "source": "npm:param-case@3.0.4", - "target": "npm:dot-case@3.0.4", - "type": "static" - }, - { - "source": "npm:param-case@3.0.4", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:parent-module": [ - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - } - ], - "npm:parse-asn1": [ - { - "source": "npm:parse-asn1", - "target": "npm:asn1.js", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:browserify-aes", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:evp_bytestokey", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:pbkdf2", - "type": "static" - }, - { - "source": "npm:parse-asn1", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:parse-entities": [ - { - "source": "npm:parse-entities", - "target": "npm:character-entities", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:character-entities-legacy", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:character-reference-invalid", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-alphanumerical", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:parse-entities", - "target": "npm:is-hexadecimal", - "type": "static" - } - ], - "npm:parse-entities@2.0.0": [ - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:character-entities", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:character-entities-legacy", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:character-reference-invalid", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:is-alphanumerical", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:parse-entities@2.0.0", - "target": "npm:is-hexadecimal", - "type": "static" - } - ], - "npm:parse-filepath": [ - { - "source": "npm:parse-filepath", - "target": "npm:is-absolute", - "type": "static" - }, - { - "source": "npm:parse-filepath", - "target": "npm:map-cache", - "type": "static" - }, - { - "source": "npm:parse-filepath", - "target": "npm:path-root", - "type": "static" - } - ], - "npm:parse-git-config": [ - { - "source": "npm:parse-git-config", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:parse-git-config", - "target": "npm:git-config-path", - "type": "static" - }, - { - "source": "npm:parse-git-config", - "target": "npm:ini", - "type": "static" - } - ], - "npm:parse-json@2.2.0": [ - { - "source": "npm:parse-json@2.2.0", - "target": "npm:error-ex", - "type": "static" - } - ], - "npm:parse-json@4.0.0": [ - { - "source": "npm:parse-json@4.0.0", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:json-parse-better-errors", - "type": "static" - } - ], - "npm:parse-json": [ - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns", - "type": "static" - } - ], - "npm:parse-link-header": [ - { - "source": "npm:parse-link-header", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:parse-path": [ - { - "source": "npm:parse-path", - "target": "npm:protocols", - "type": "static" - } - ], - "npm:parse-url": [ - { - "source": "npm:parse-url", - "target": "npm:parse-path", - "type": "static" - } - ], - "npm:parse5@3.0.3": [ - { - "source": "npm:parse5@3.0.3", - "target": "npm:@types/node@14.18.32", - "type": "static" - } - ], - "npm:parse5": [ - { - "source": "npm:parse5", - "target": "npm:entities@4.5.0", - "type": "static" - } - ], - "npm:pascal-case": [ - { - "source": "npm:pascal-case", - "target": "npm:camel-case", - "type": "static" - }, - { - "source": "npm:pascal-case", - "target": "npm:upper-case-first", - "type": "static" - } - ], - "npm:pascal-case@3.1.2": [ - { - "source": "npm:pascal-case@3.1.2", - "target": "npm:no-case@3.0.4", - "type": "static" - }, - { - "source": "npm:pascal-case@3.1.2", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:path-case": [ - { - "source": "npm:path-case", - "target": "npm:no-case", - "type": "static" - } - ], - "npm:path-exists@2.1.0": [ - { - "source": "npm:path-exists@2.1.0", - "target": "npm:pinkie-promise", - "type": "static" - } - ], - "npm:path-root": [ - { - "source": "npm:path-root", - "target": "npm:path-root-regex", - "type": "static" - } - ], - "npm:path-scurry": [ - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.0.1", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass@5.0.0", - "type": "static" - } - ], - "npm:path-to-regexp@1.7.0": [ - { - "source": "npm:path-to-regexp@1.7.0", - "target": "npm:isarray", - "type": "static" - } - ], - "npm:path-type@1.1.0": [ - { - "source": "npm:path-type@1.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:path-type@1.1.0", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:path-type@1.1.0", - "target": "npm:pinkie-promise", - "type": "static" - } - ], - "npm:path-type@3.0.0": [ - { - "source": "npm:path-type@3.0.0", - "target": "npm:pify@3.0.0", - "type": "static" - } - ], - "npm:pbkdf2": [ - { - "source": "npm:pbkdf2", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:create-hmac", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:ripemd160", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:pbkdf2", - "target": "npm:sha.js", - "type": "static" - } - ], - "npm:pinkie-promise": [ - { - "source": "npm:pinkie-promise", - "target": "npm:pinkie", - "type": "static" - } - ], - "npm:pixel-buffer-diff-folders": [ - { - "source": "npm:pixel-buffer-diff-folders", - "target": "npm:fast-png", - "type": "static" - }, - { - "source": "npm:pixel-buffer-diff-folders", - "target": "npm:jpeg-js", - "type": "static" - }, - { - "source": "npm:pixel-buffer-diff-folders", - "target": "npm:pixel-buffer-diff", - "type": "static" - } - ], - "npm:pkg-dir@3.0.0": [ - { - "source": "npm:pkg-dir@3.0.0", - "target": "npm:find-up@3.0.0", - "type": "static" - } - ], - "npm:pkg-dir": [ - { - "source": "npm:pkg-dir", - "target": "npm:find-up@4.1.0", - "type": "static" - } - ], - "npm:pkg-dir@5.0.0": [ - { - "source": "npm:pkg-dir@5.0.0", - "target": "npm:find-up", - "type": "static" - } - ], - "npm:pkg-install": [ - { - "source": "npm:pkg-install", - "target": "npm:@types/execa", - "type": "static" - }, - { - "source": "npm:pkg-install", - "target": "npm:@types/node@11.15.54", - "type": "static" - }, - { - "source": "npm:pkg-install", - "target": "npm:execa@1.0.0", - "type": "static" - } - ], - "npm:pkg-up": [ - { - "source": "npm:pkg-up", - "target": "npm:find-up@3.0.0", - "type": "static" - } - ], - "npm:pkg-up@4.0.0": [ - { - "source": "npm:pkg-up@4.0.0", - "target": "npm:find-up@6.3.0", - "type": "static" - } - ], - "npm:playwright": [ - { - "source": "npm:playwright", - "target": "npm:playwright-core", - "type": "static" - } - ], - "npm:please-upgrade-node": [ - { - "source": "npm:please-upgrade-node", - "target": "npm:semver-compare", - "type": "static" - } - ], - "npm:plop": [ - { - "source": "npm:plop", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:interpret", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:liftoff", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:node-plop", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:ora@3.4.0", - "type": "static" - }, - { - "source": "npm:plop", - "target": "npm:v8flags", - "type": "static" - } - ], - "npm:plugin-error@0.1.2": [ - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:ansi-cyan", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:ansi-red", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:arr-diff@1.1.0", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:arr-union@2.1.0", - "type": "static" - }, - { - "source": "npm:plugin-error@0.1.2", - "target": "npm:extend-shallow@1.1.4", - "type": "static" - } - ], - "npm:plugin-error": [ - { - "source": "npm:plugin-error", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:plugin-error", - "target": "npm:arr-diff", - "type": "static" - }, - { - "source": "npm:plugin-error", - "target": "npm:arr-union", - "type": "static" - }, - { - "source": "npm:plugin-error", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - } - ], - "npm:pnp-webpack-plugin": [ - { - "source": "npm:pnp-webpack-plugin", - "target": "npm:ts-pnp", - "type": "static" - } - ], - "npm:polished": [ - { - "source": "npm:polished", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:portfinder": [ - { - "source": "npm:portfinder", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:mkdirp", - "type": "static" - } - ], - "npm:postcss-flexbugs-fixes": [ - { - "source": "npm:postcss-flexbugs-fixes", - "target": "npm:postcss@7.0.36", - "type": "static" - } - ], - "npm:postcss-loader": [ - { - "source": "npm:postcss-loader", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:postcss-loader@4.3.0": [ - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:postcss-loader@4.3.0", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:postcss-modules-extract-imports@2.0.0": [ - { - "source": "npm:postcss-modules-extract-imports@2.0.0", - "target": "npm:postcss@7.0.36", - "type": "static" - } - ], - "npm:postcss-modules-local-by-default@3.0.2": [ - { - "source": "npm:postcss-modules-local-by-default@3.0.2", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default@3.0.2", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default@3.0.2", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default@3.0.2", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-modules-local-by-default": [ - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:icss-utils@5.1.0", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-modules-scope@2.2.0": [ - { - "source": "npm:postcss-modules-scope@2.2.0", - "target": "npm:postcss@7.0.36", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope@2.2.0", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-modules-scope": [ - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-modules-values@3.0.0": [ - { - "source": "npm:postcss-modules-values@3.0.0", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-values@3.0.0", - "target": "npm:postcss@7.0.36", - "type": "static" - } - ], - "npm:postcss-modules-values": [ - { - "source": "npm:postcss-modules-values", - "target": "npm:icss-utils@5.1.0", - "type": "static" - } - ], - "npm:postcss-modules": [ - { - "source": "npm:postcss-modules", - "target": "npm:generic-names", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:icss-replace-symbols", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:lodash.camelcase", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:postcss-modules", - "target": "npm:string-hash", - "type": "static" - } - ], - "npm:postcss-selector-parser": [ - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:postcss": [ - { - "source": "npm:postcss", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js@0.6.2", - "type": "static" - } - ], - "npm:postcss@7.0.36": [ - { - "source": "npm:postcss@7.0.36", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:postcss@7.0.36", - "target": "npm:supports-color@6.1.0", - "type": "static" - } - ], - "npm:pretty-error": [ - { - "source": "npm:pretty-error", - "target": "npm:renderkid", - "type": "static" - }, - { - "source": "npm:pretty-error", - "target": "npm:utila", - "type": "static" - } - ], - "npm:pretty-format@25.5.0": [ - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:@jest/types@25.5.0", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:pretty-format@25.5.0", - "target": "npm:react-is@16.13.1", - "type": "static" - } - ], - "npm:pretty-format@27.5.1": [ - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format@27.5.1", - "target": "npm:react-is", - "type": "static" - } - ], - "npm:pretty-format": [ - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.2.0", - "type": "static" - } - ], - "npm:prettyjson": [ - { - "source": "npm:prettyjson", - "target": "npm:colors@1.4.0", - "type": "static" - }, - { - "source": "npm:prettyjson", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:prismjs": [ - { - "source": "npm:prismjs", - "target": "npm:clipboard", - "type": "static" - } - ], - "npm:promise-retry@1.1.1": [ - { - "source": "npm:promise-retry@1.1.1", - "target": "npm:err-code@1.1.2", - "type": "static" - }, - { - "source": "npm:promise-retry@1.1.1", - "target": "npm:retry@0.10.1", - "type": "static" - } - ], - "npm:promise-retry": [ - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry", - "type": "static" - } - ], - "npm:promise.allsettled": [ - { - "source": "npm:promise.allsettled", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:promise.allsettled", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:promise.allsettled", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:promise.prototype.finally": [ - { - "source": "npm:promise.prototype.finally", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:promise.prototype.finally", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:promise.prototype.finally", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:promise": [ - { - "source": "npm:promise", - "target": "npm:asap", - "type": "static" - } - ], - "npm:prompts": [ - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - } - ], - "npm:promzard": [ - { - "source": "npm:promzard", - "target": "npm:read", - "type": "static" - } - ], - "npm:prop-types": [ - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is@16.13.1", - "type": "static" - } - ], - "npm:property-information": [ - { - "source": "npm:property-information", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:proxy-addr": [ - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js@1.9.1", - "type": "static" - } - ], - "npm:public-encrypt": [ - { - "source": "npm:public-encrypt", - "target": "npm:bn.js", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:browserify-rsa", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:create-hash", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:parse-asn1", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:public-encrypt", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:pump@2.0.1": [ - { - "source": "npm:pump@2.0.1", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump@2.0.1", - "target": "npm:once", - "type": "static" - } - ], - "npm:pump": [ - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - } - ], - "npm:pumpify": [ - { - "source": "npm:pumpify", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:pumpify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:pumpify", - "target": "npm:pump@2.0.1", - "type": "static" - } - ], - "npm:puppeteer-core": [ - { - "source": "npm:puppeteer-core", - "target": "npm:cross-fetch", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:devtools-protocol@0.0.1082910", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:tar-fs", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:unbzip2-stream", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:ws", - "type": "static" - } - ], - "npm:puppeteer": [ - { - "source": "npm:puppeteer", - "target": "npm:cosmiconfig@8.0.0", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:puppeteer-core", - "type": "static" - } - ], - "npm:qs": [ - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:query-string": [ - { - "source": "npm:query-string", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:filter-obj", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:split-on-first", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:strict-uri-encode", - "type": "static" - } - ], - "npm:raf": [ - { - "source": "npm:raf", - "target": "npm:performance-now", - "type": "static" - } - ], - "npm:randexp": [ - { - "source": "npm:randexp", - "target": "npm:discontinuous-range", - "type": "static" - }, - { - "source": "npm:randexp", - "target": "npm:ret", - "type": "static" - } - ], - "npm:randombytes": [ - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:randomfill": [ - { - "source": "npm:randomfill", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:randomfill", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:raw-body": [ - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:raw-loader": [ - { - "source": "npm:raw-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:raw-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - } - ], - "npm:rc": [ - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - } - ], - "npm:react-ace": [ - { - "source": "npm:react-ace", - "target": "npm:brace", - "type": "static" - }, - { - "source": "npm:react-ace", - "target": "npm:lodash.get", - "type": "static" - }, - { - "source": "npm:react-ace", - "target": "npm:lodash.isequal", - "type": "static" - }, - { - "source": "npm:react-ace", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:react-addons-shallow-compare": [ - { - "source": "npm:react-addons-shallow-compare", - "target": "npm:object-assign", - "type": "static" - } - ], - "npm:react-app-polyfill": [ - { - "source": "npm:react-app-polyfill", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:promise", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:raf", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:react-app-polyfill", - "target": "npm:whatwg-fetch@3.6.2", - "type": "static" - } - ], - "npm:react-codesandboxer": [ - { - "source": "npm:react-codesandboxer", - "target": "npm:codesandboxer", - "type": "static" - }, - { - "source": "npm:react-codesandboxer", - "target": "npm:lodash.isequal", - "type": "static" - }, - { - "source": "npm:react-codesandboxer", - "target": "npm:lodash.pick", - "type": "static" - }, - { - "source": "npm:react-codesandboxer", - "target": "npm:react-node-resolver", - "type": "static" - } - ], - "npm:react-custom-scrollbars": [ - { - "source": "npm:react-custom-scrollbars", - "target": "npm:dom-css", - "type": "static" - }, - { - "source": "npm:react-custom-scrollbars", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-custom-scrollbars", - "target": "npm:raf", - "type": "static" - } - ], - "npm:react-docgen": [ - { - "source": "npm:react-docgen", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:ast-types@0.13.2", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:node-dir", - "type": "static" - }, - { - "source": "npm:react-docgen", - "target": "npm:strip-indent", - "type": "static" - } - ], - "npm:react-document-title": [ - { - "source": "npm:react-document-title", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-document-title", - "target": "npm:react-side-effect", - "type": "static" - } - ], - "npm:react-dom@16.14.0": [ - { - "source": "npm:react-dom@16.14.0", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-dom@16.14.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-dom@16.14.0", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-dom@16.14.0", - "target": "npm:scheduler@0.19.1", - "type": "static" - } - ], - "npm:react-dom": [ - { - "source": "npm:react-dom", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:scheduler", - "type": "static" - } - ], - "npm:react-dom@18.2.0": [ - { - "source": "npm:react-dom@18.2.0", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-dom@18.2.0", - "target": "npm:scheduler@0.23.0", - "type": "static" - } - ], - "npm:react-element-to-jsx-string": [ - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:@base2/pretty-print-object", - "type": "static" - }, - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:is-plain-object@5.0.0", - "type": "static" - }, - { - "source": "npm:react-element-to-jsx-string", - "target": "npm:react-is", - "type": "static" - } - ], - "npm:react-error-boundary": [ - { - "source": "npm:react-error-boundary", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:react-fela": [ - { - "source": "npm:react-fela", - "target": "npm:fela-bindings", - "type": "static" - }, - { - "source": "npm:react-fela", - "target": "npm:fela-dom", - "type": "static" - }, - { - "source": "npm:react-fela", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:react-hooks-testing-library": [ - { - "source": "npm:react-hooks-testing-library", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:react-hot-loader": [ - { - "source": "npm:react-hot-loader", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:react-lifecycles-compat", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:react-hot-loader", - "target": "npm:source-map@0.7.3", - "type": "static" - } - ], - "npm:react-input-autosize": [ - { - "source": "npm:react-input-autosize", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:react-inspector": [ - { - "source": "npm:react-inspector", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-inspector", - "target": "npm:is-dom", - "type": "static" - }, - { - "source": "npm:react-inspector", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:react-markdown": [ - { - "source": "npm:react-markdown", - "target": "npm:html-to-react", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:mdast-add-list-metadata", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:remark-parse", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:unified", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:unist-util-visit@1.4.1", - "type": "static" - }, - { - "source": "npm:react-markdown", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:react-motion": [ - { - "source": "npm:react-motion", - "target": "npm:performance-now@0.2.0", - "type": "static" - }, - { - "source": "npm:react-motion", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-motion", - "target": "npm:raf", - "type": "static" - } - ], - "npm:react-router-dom": [ - { - "source": "npm:react-router-dom", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:history", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:react-router", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:tiny-invariant", - "type": "static" - }, - { - "source": "npm:react-router-dom", - "target": "npm:tiny-warning", - "type": "static" - } - ], - "npm:react-router": [ - { - "source": "npm:react-router", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:history", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:mini-create-react-context", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:path-to-regexp@1.7.0", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:react-is@16.13.1", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:tiny-invariant", - "type": "static" - }, - { - "source": "npm:react-router", - "target": "npm:tiny-warning", - "type": "static" - } - ], - "npm:react-select": [ - { - "source": "npm:react-select", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:@emotion/cache", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:@emotion/core", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:@emotion/css", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:memoize-one", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:react-input-autosize", - "type": "static" - }, - { - "source": "npm:react-select", - "target": "npm:react-transition-group", - "type": "static" - } - ], - "npm:react-shadow": [ - { - "source": "npm:react-shadow", - "target": "npm:humps", - "type": "static" - } - ], - "npm:react-shallow-renderer": [ - { - "source": "npm:react-shallow-renderer", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-shallow-renderer", - "target": "npm:react-is@16.13.1", - "type": "static" - } - ], - "npm:react-side-effect": [ - { - "source": "npm:react-side-effect", - "target": "npm:shallowequal", - "type": "static" - } - ], - "npm:react-sizeme": [ - { - "source": "npm:react-sizeme", - "target": "npm:element-resize-detector", - "type": "static" - }, - { - "source": "npm:react-sizeme", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-sizeme", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:react-sizeme", - "target": "npm:throttle-debounce", - "type": "static" - } - ], - "npm:react-source-render": [ - { - "source": "npm:react-source-render", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:deepmerge@2.2.1", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:react-fast-compare", - "type": "static" - }, - { - "source": "npm:react-source-render", - "target": "npm:react-is@16.13.1", - "type": "static" - } - ], - "npm:react-syntax-highlighter": [ - { - "source": "npm:react-syntax-highlighter", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:highlight.js", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:lowlight", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:prismjs", - "type": "static" - }, - { - "source": "npm:react-syntax-highlighter", - "target": "npm:refractor", - "type": "static" - } - ], - "npm:react-table": [ - { - "source": "npm:react-table", - "target": "npm:@scarf/scarf", - "type": "static" - } - ], - "npm:react-test-renderer": [ - { - "source": "npm:react-test-renderer", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-shallow-renderer", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:scheduler", - "type": "static" - } - ], - "npm:react-textarea-autosize": [ - { - "source": "npm:react-textarea-autosize", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:react-transition-group": [ - { - "source": "npm:react-transition-group", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:dom-helpers", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-transition-group", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:react-virtualized": [ - { - "source": "npm:react-virtualized", - "target": "npm:babel-runtime", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:clsx", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:dom-helpers", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-virtualized", - "target": "npm:react-lifecycles-compat", - "type": "static" - } - ], - "npm:react-vis": [ - { - "source": "npm:react-vis", - "target": "npm:d3-array", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-collection", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-color", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-contour", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-format", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-geo", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-hexbin", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-hierarchy@1.1.9", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-interpolate", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-sankey@0.7.1", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-scale", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-shape", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:d3-voronoi", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:hoek", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-vis", - "target": "npm:react-motion", - "type": "static" - } - ], - "npm:react-window": [ - { - "source": "npm:react-window", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-window", - "target": "npm:memoize-one", - "type": "static" - } - ], - "npm:react@16.14.0": [ - { - "source": "npm:react@16.14.0", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react@16.14.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react@16.14.0", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:react": [ - { - "source": "npm:react", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react", - "target": "npm:object-assign", - "type": "static" - } - ], - "npm:react@18.2.0": [ - { - "source": "npm:react@18.2.0", - "target": "npm:loose-envify", - "type": "static" - } - ], - "npm:read-package-json-fast": [ - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:read-package-json-fast@3.0.2": [ - { - "source": "npm:read-package-json-fast@3.0.2", - "target": "npm:json-parse-even-better-errors@3.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json-fast@3.0.2", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - } - ], - "npm:read-package-json": [ - { - "source": "npm:read-package-json", - "target": "npm:glob@10.3.3", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:json-parse-even-better-errors@3.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:normalize-package-data@5.0.0", - "type": "static" - }, - { - "source": "npm:read-package-json", - "target": "npm:npm-normalize-package-bin@3.0.1", - "type": "static" - } - ], - "npm:read-pkg-up": [ - { - "source": "npm:read-pkg-up", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:read-pkg@5.2.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up", - "target": "npm:type-fest@0.8.1", - "type": "static" - } - ], - "npm:read-pkg-up@1.0.1": [ - { - "source": "npm:read-pkg-up@1.0.1", - "target": "npm:find-up@1.1.2", - "type": "static" - }, - { - "source": "npm:read-pkg-up@1.0.1", - "target": "npm:read-pkg@1.1.0", - "type": "static" - } - ], - "npm:read-pkg-up@3.0.0": [ - { - "source": "npm:read-pkg-up@3.0.0", - "target": "npm:find-up@2.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg-up@3.0.0", - "target": "npm:read-pkg", - "type": "static" - } - ], - "npm:read-pkg@1.1.0": [ - { - "source": "npm:read-pkg@1.1.0", - "target": "npm:load-json-file@1.1.0", - "type": "static" - }, - { - "source": "npm:read-pkg@1.1.0", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@1.1.0", - "target": "npm:path-type@1.1.0", - "type": "static" - } - ], - "npm:read-pkg": [ - { - "source": "npm:read-pkg", - "target": "npm:load-json-file@4.0.0", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg", - "target": "npm:path-type@3.0.0", - "type": "static" - } - ], - "npm:read-pkg@5.2.0": [ - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:@types/normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:read-pkg@5.2.0", - "target": "npm:type-fest@0.6.0", - "type": "static" - } - ], - "npm:read-yaml-file": [ - { - "source": "npm:read-yaml-file", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:read-yaml-file", - "target": "npm:strip-bom@4.0.0", - "type": "static" - } - ], - "npm:read": [ - { - "source": "npm:read", - "target": "npm:mute-stream@1.0.0", - "type": "static" - } - ], - "npm:readable-stream": [ - { - "source": "npm:readable-stream", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:readable-stream@3.6.0": [ - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream@3.6.0", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:readable-stream@1.0.34": [ - { - "source": "npm:readable-stream@1.0.34", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@1.0.34", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@1.0.34", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream@1.0.34", - "target": "npm:string_decoder@0.10.31", - "type": "static" - } - ], - "npm:readable-stream@1.1.14": [ - { - "source": "npm:readable-stream@1.1.14", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@1.1.14", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@1.1.14", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream@1.1.14", - "target": "npm:string_decoder@0.10.31", - "type": "static" - } - ], - "npm:readable-web-to-node-stream": [ - { - "source": "npm:readable-web-to-node-stream", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:readdirp@2.2.1": [ - { - "source": "npm:readdirp@2.2.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:readdirp@2.2.1", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:readdirp@2.2.1", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:readdirp@3.2.0": [ - { - "source": "npm:readdirp@3.2.0", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:readdirp": [ - { - "source": "npm:readdirp", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:rechoir": [ - { - "source": "npm:rechoir", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:rechoir@0.7.0": [ - { - "source": "npm:rechoir@0.7.0", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:redent@1.0.0": [ - { - "source": "npm:redent@1.0.0", - "target": "npm:indent-string@2.1.0", - "type": "static" - }, - { - "source": "npm:redent@1.0.0", - "target": "npm:strip-indent@1.0.1", - "type": "static" - } - ], - "npm:redent": [ - { - "source": "npm:redent", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:strip-indent", - "type": "static" - } - ], - "npm:redeyed": [ - { - "source": "npm:redeyed", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:refractor": [ - { - "source": "npm:refractor", - "target": "npm:hastscript", - "type": "static" - }, - { - "source": "npm:refractor", - "target": "npm:parse-entities", - "type": "static" - }, - { - "source": "npm:refractor", - "target": "npm:prismjs", - "type": "static" - } - ], - "npm:regenerate-unicode-properties": [ - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - } - ], - "npm:regenerator-transform": [ - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:regex-not": [ - { - "source": "npm:regex-not", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:regex-not", - "target": "npm:safe-regex", - "type": "static" - } - ], - "npm:regexp.prototype.flags": [ - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:regexpu-core": [ - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - } - ], - "npm:registry-auth-token": [ - { - "source": "npm:registry-auth-token", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:registry-auth-token", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:registry-url": [ - { - "source": "npm:registry-url", - "target": "npm:rc", - "type": "static" - } - ], - "npm:regjsparser": [ - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - } - ], - "npm:remark-external-links": [ - { - "source": "npm:remark-external-links", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:is-absolute-url", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:mdast-util-definitions", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:space-separated-tokens", - "type": "static" - }, - { - "source": "npm:remark-external-links", - "target": "npm:unist-util-visit", - "type": "static" - } - ], - "npm:remark-frontmatter": [ - { - "source": "npm:remark-frontmatter", - "target": "npm:fault", - "type": "static" - }, - { - "source": "npm:remark-frontmatter", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:remark-mdx": [ - { - "source": "npm:remark-mdx", - "target": "npm:@babel/core@7.12.9", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@babel/helper-plugin-utils@7.10.4", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@babel/plugin-syntax-jsx@7.12.1", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:@mdx-js/util", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:is-alphabetical", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:remark-parse@8.0.3", - "type": "static" - }, - { - "source": "npm:remark-mdx", - "target": "npm:unified@9.2.0", - "type": "static" - } - ], - "npm:remark-parse@8.0.3": [ - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:ccount", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:collapse-white-space", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:is-alphabetical", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:is-whitespace-character", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:is-word-character", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:markdown-escapes", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:parse-entities@2.0.0", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:state-toggle", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:trim", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:trim-trailing-lines", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:unherit", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:unist-util-remove-position@2.0.1", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:vfile-location", - "type": "static" - }, - { - "source": "npm:remark-parse@8.0.3", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:remark-parse": [ - { - "source": "npm:remark-parse", - "target": "npm:collapse-white-space", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:is-alphabetical", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:is-decimal", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:is-whitespace-character", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:is-word-character", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:markdown-escapes", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:parse-entities", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:repeat-string", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:state-toggle", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:trim", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:trim-trailing-lines", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:unherit", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:unist-util-remove-position", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:vfile-location@2.0.6", - "type": "static" - }, - { - "source": "npm:remark-parse", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:remark-slug": [ - { - "source": "npm:remark-slug", - "target": "npm:github-slugger", - "type": "static" - }, - { - "source": "npm:remark-slug", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "npm:remark-slug", - "target": "npm:unist-util-visit", - "type": "static" - } - ], - "npm:remark-squeeze-paragraphs": [ - { - "source": "npm:remark-squeeze-paragraphs", - "target": "npm:mdast-squeeze-paragraphs", - "type": "static" - } - ], - "npm:remove-bom-buffer": [ - { - "source": "npm:remove-bom-buffer", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:remove-bom-buffer", - "target": "npm:is-utf8", - "type": "static" - } - ], - "npm:remove-bom-stream": [ - { - "source": "npm:remove-bom-stream", - "target": "npm:remove-bom-buffer", - "type": "static" - }, - { - "source": "npm:remove-bom-stream", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:remove-bom-stream", - "target": "npm:through2@2.0.5", - "type": "static" - } - ], - "npm:renderkid": [ - { - "source": "npm:renderkid", - "target": "npm:css-select@4.1.3", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:dom-converter", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:htmlparser2@6.1.0", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - } - ], - "npm:repeating": [ - { - "source": "npm:repeating", - "target": "npm:is-finite", - "type": "static" - } - ], - "npm:replace-homedir": [ - { - "source": "npm:replace-homedir", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:replace-homedir", - "target": "npm:is-absolute", - "type": "static" - }, - { - "source": "npm:replace-homedir", - "target": "npm:remove-trailing-separator", - "type": "static" - } - ], - "npm:replace-in-file": [ - { - "source": "npm:replace-in-file", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:replace-in-file", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:replace-in-file", - "target": "npm:yargs@15.4.1", - "type": "static" - } - ], - "npm:request-progress": [ - { - "source": "npm:request-progress", - "target": "npm:throttleit", - "type": "static" - } - ], - "npm:request-promise-core": [ - { - "source": "npm:request-promise-core", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:request-promise-native": [ - { - "source": "npm:request-promise-native", - "target": "npm:request-promise-core", - "type": "static" - }, - { - "source": "npm:request-promise-native", - "target": "npm:stealthy-require", - "type": "static" - }, - { - "source": "npm:request-promise-native", - "target": "npm:tough-cookie", - "type": "static" - } - ], - "npm:request": [ - { - "source": "npm:request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:form-data@2.3.3", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:har-validator", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:http-signature@1.2.0", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:oauth-sign", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:qs@6.5.3", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:request", - "target": "npm:uuid@3.4.0", - "type": "static" - } - ], - "npm:resolve-cwd": [ - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:resolve-dir": [ - { - "source": "npm:resolve-dir", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:global-modules", - "type": "static" - } - ], - "npm:resolve-options": [ - { - "source": "npm:resolve-options", - "target": "npm:value-or-function", - "type": "static" - } - ], - "npm:resolve-path": [ - { - "source": "npm:resolve-path", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:resolve-path", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:resolve@1.15.1": [ - { - "source": "npm:resolve@1.15.1", - "target": "npm:path-parse", - "type": "static" - } - ], - "npm:resolve": [ - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - } - ], - "npm:resolve@2.0.0-next.3": [ - { - "source": "npm:resolve@2.0.0-next.3", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.3", - "target": "npm:path-parse", - "type": "static" - } - ], - "npm:resolve@1.17.0": [ - { - "source": "npm:resolve@1.17.0", - "target": "npm:path-parse", - "type": "static" - } - ], - "npm:resolve@1.19.0": [ - { - "source": "npm:resolve@1.19.0", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@1.19.0", - "target": "npm:path-parse", - "type": "static" - } - ], - "npm:responselike": [ - { - "source": "npm:responselike", - "target": "npm:lowercase-keys", - "type": "static" - } - ], - "npm:restore-cursor@2.0.0": [ - { - "source": "npm:restore-cursor@2.0.0", - "target": "npm:onetime@2.0.1", - "type": "static" - }, - { - "source": "npm:restore-cursor@2.0.0", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:restore-cursor": [ - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:riceburn": [ - { - "source": "npm:riceburn", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rimraf@2.7.1": [ - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rimraf": [ - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rimraf@4.4.1": [ - { - "source": "npm:rimraf@4.4.1", - "target": "npm:glob@9.3.5", - "type": "static" - } - ], - "npm:ripemd160": [ - { - "source": "npm:ripemd160", - "target": "npm:hash-base", - "type": "static" - }, - { - "source": "npm:ripemd160", - "target": "npm:inherits", - "type": "static" - } - ], - "npm:rollup-plugin-commonjs": [ - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:is-reference", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:rollup-plugin-commonjs", - "target": "npm:rollup-pluginutils", - "type": "static" - } - ], - "npm:rollup-plugin-filesize": [ - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:boxen", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:brotli-size", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:colors@1.4.0", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:filesize", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:gzip-size", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:pacote@11.1.11", - "type": "static" - }, - { - "source": "npm:rollup-plugin-filesize", - "target": "npm:terser@4.8.0", - "type": "static" - } - ], - "npm:rollup-plugin-node-resolve": [ - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:@types/resolve", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:builtin-modules", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:is-module", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-resolve", - "target": "npm:rollup-pluginutils", - "type": "static" - } - ], - "npm:rollup-plugin-terser": [ - { - "source": "npm:rollup-plugin-terser", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:jest-worker@24.9.0", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:rollup-pluginutils", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:rollup-plugin-terser", - "target": "npm:terser@4.8.0", - "type": "static" - } - ], - "npm:rollup-plugin-transform-tagged-template": [ - { - "source": "npm:rollup-plugin-transform-tagged-template", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:rollup-plugin-transform-tagged-template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:rollup-plugin-transform-tagged-template", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:rollup-plugin-typescript2": [ - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:resolve@1.15.1", - "type": "static" - }, - { - "source": "npm:rollup-plugin-typescript2", - "target": "npm:tslib@1.11.2", - "type": "static" - } - ], - "npm:rollup-pluginutils": [ - { - "source": "npm:rollup-pluginutils", - "target": "npm:estree-walker", - "type": "static" - } - ], - "npm:rollup": [ - { - "source": "npm:rollup", - "target": "npm:fsevents@2.3.3", - "type": "static" - } - ], - "npm:rst-selector-parser": [ - { - "source": "npm:rst-selector-parser", - "target": "npm:lodash.flattendeep", - "type": "static" - }, - { - "source": "npm:rst-selector-parser", - "target": "npm:nearley", - "type": "static" - } - ], - "npm:rtl-css-js": [ - { - "source": "npm:rtl-css-js", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:run-queue": [ - { - "source": "npm:run-queue", - "target": "npm:aproba", - "type": "static" - } - ], - "npm:rxjs": [ - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:rxjs@6.6.7": [ - { - "source": "npm:rxjs@6.6.7", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:safe-regex": [ - { - "source": "npm:safe-regex", - "target": "npm:ret", - "type": "static" - } - ], - "npm:sane": [ - { - "source": "npm:sane", - "target": "npm:@cnakazawa/watch", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:anymatch@2.0.0", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:capture-exit", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:exec-sh", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:execa@1.0.0", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:sane", - "target": "npm:walker", - "type": "static" - } - ], - "npm:sanitize-filename": [ - { - "source": "npm:sanitize-filename", - "target": "npm:truncate-utf8-bytes", - "type": "static" - } - ], - "npm:sass-loader": [ - { - "source": "npm:sass-loader", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:neo-async", - "type": "static" - } - ], - "npm:sass": [ - { - "source": "npm:sass", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:satisfied": [ - { - "source": "npm:satisfied", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:halcyon", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:log-symbols@1.0.2", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:semver@5.7.1", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:update-notifier", - "type": "static" - }, - { - "source": "npm:satisfied", - "target": "npm:yargs@7.1.0", - "type": "static" - } - ], - "npm:saxes": [ - { - "source": "npm:saxes", - "target": "npm:xmlchars", - "type": "static" - } - ], - "npm:scheduler": [ - { - "source": "npm:scheduler", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:scheduler", - "target": "npm:object-assign", - "type": "static" - } - ], - "npm:scheduler@0.19.1": [ - { - "source": "npm:scheduler@0.19.1", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:scheduler@0.19.1", - "target": "npm:object-assign", - "type": "static" - } - ], - "npm:scheduler@0.23.0": [ - { - "source": "npm:scheduler@0.23.0", - "target": "npm:loose-envify", - "type": "static" - } - ], - "npm:schema-utils@2.7.0": [ - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.0", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:schema-utils": [ - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:schema-utils@0.3.0": [ - { - "source": "npm:schema-utils@0.3.0", - "target": "npm:ajv@5.5.2", - "type": "static" - } - ], - "npm:schema-utils@1.0.0": [ - { - "source": "npm:schema-utils@1.0.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@1.0.0", - "target": "npm:ajv-errors@1.0.1", - "type": "static" - }, - { - "source": "npm:schema-utils@1.0.0", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:schema-utils@3.1.2": [ - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.1.2", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:schema-utils@4.0.0": [ - { - "source": "npm:schema-utils@4.0.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@4.0.0", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:schema-utils@4.0.0", - "target": "npm:ajv-formats@2.1.1", - "type": "static" - }, - { - "source": "npm:schema-utils@4.0.0", - "target": "npm:ajv-keywords@5.1.0", - "type": "static" - } - ], - "npm:selenium-webdriver": [ - { - "source": "npm:selenium-webdriver", - "target": "npm:jszip", - "type": "static" - }, - { - "source": "npm:selenium-webdriver", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:selenium-webdriver", - "target": "npm:ws", - "type": "static" - } - ], - "npm:selfsigned": [ - { - "source": "npm:selfsigned", - "target": "npm:node-forge", - "type": "static" - } - ], - "npm:semver-diff": [ - { - "source": "npm:semver-diff", - "target": "npm:semver@5.7.1", - "type": "static" - } - ], - "npm:semver-greatest-satisfied-range": [ - { - "source": "npm:semver-greatest-satisfied-range", - "target": "npm:sver-compat", - "type": "static" - } - ], - "npm:semver-truncate": [ - { - "source": "npm:semver-truncate", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:semver@7.5.2": [ - { - "source": "npm:semver@7.5.2", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:semver@7.5.3": [ - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:semver@7.5.4": [ - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:semver@7.3.8": [ - { - "source": "npm:semver@7.3.8", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:send": [ - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime@1.6.0", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses", - "type": "static" - } - ], - "npm:sentence-case": [ - { - "source": "npm:sentence-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:sentence-case", - "target": "npm:upper-case-first", - "type": "static" - } - ], - "npm:serialize-javascript": [ - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - } - ], - "npm:serialize-javascript@5.0.1": [ - { - "source": "npm:serialize-javascript@5.0.1", - "target": "npm:randombytes", - "type": "static" - } - ], - "npm:serialize-javascript@6.0.1": [ - { - "source": "npm:serialize-javascript@6.0.1", - "target": "npm:randombytes", - "type": "static" - } - ], - "npm:serve-favicon": [ - { - "source": "npm:serve-favicon", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:ms@2.1.1", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-favicon", - "target": "npm:safe-buffer@5.1.1", - "type": "static" - } - ], - "npm:serve-index": [ - { - "source": "npm:serve-index", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:batch", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:parseurl", - "type": "static" - } - ], - "npm:serve-static": [ - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - } - ], - "npm:set-value": [ - { - "source": "npm:set-value", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:is-extendable", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:set-value", - "target": "npm:split-string", - "type": "static" - } - ], - "npm:sha.js": [ - { - "source": "npm:sha.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:sha.js", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:shallow-clone": [ - { - "source": "npm:shallow-clone", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:shebang-command": [ - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - } - ], - "npm:shebang-command@2.0.0": [ - { - "source": "npm:shebang-command@2.0.0", - "target": "npm:shebang-regex@3.0.0", - "type": "static" - } - ], - "npm:side-channel": [ - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - } - ], - "npm:sigstore": [ - { - "source": "npm:sigstore", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:make-fetch-happen", - "type": "static" - } - ], - "npm:simple-swizzle": [ - { - "source": "npm:simple-swizzle", - "target": "npm:is-arrayish@0.3.2", - "type": "static" - } - ], - "npm:sirv": [ - { - "source": "npm:sirv", - "target": "npm:@polka/url", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:totalist", - "type": "static" - } - ], - "npm:slice-ansi@3.0.0": [ - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@3.0.0", - "target": "npm:is-fullwidth-code-point", - "type": "static" - } - ], - "npm:slice-ansi": [ - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point", - "type": "static" - } - ], - "npm:snake-case": [ - { - "source": "npm:snake-case", - "target": "npm:no-case", - "type": "static" - } - ], - "npm:snapdragon-node": [ - { - "source": "npm:snapdragon-node", - "target": "npm:define-property@1.0.0", - "type": "static" - }, - { - "source": "npm:snapdragon-node", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:snapdragon-node", - "target": "npm:snapdragon-util", - "type": "static" - } - ], - "npm:snapdragon-util": [ - { - "source": "npm:snapdragon-util", - "target": "npm:kind-of@3.2.2", - "type": "static" - } - ], - "npm:snapdragon": [ - { - "source": "npm:snapdragon", - "target": "npm:base", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:extend-shallow", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:map-cache", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:source-map-resolve", - "type": "static" - }, - { - "source": "npm:snapdragon", - "target": "npm:use", - "type": "static" - } - ], - "npm:socket.io-parser": [ - { - "source": "npm:socket.io-parser", - "target": "npm:@types/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:debug", - "type": "static" - } - ], - "npm:socket.io": [ - { - "source": "npm:socket.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:engine.io", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-adapter", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-parser", - "type": "static" - } - ], - "npm:sockjs": [ - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - } - ], - "npm:socks-proxy-agent@5.0.0": [ - { - "source": "npm:socks-proxy-agent@5.0.0", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent@5.0.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent@5.0.0", - "target": "npm:socks", - "type": "static" - } - ], - "npm:socks-proxy-agent": [ - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - } - ], - "npm:socks": [ - { - "source": "npm:socks", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - } - ], - "npm:sort-keys-length": [ - { - "source": "npm:sort-keys-length", - "target": "npm:sort-keys@1.1.2", - "type": "static" - } - ], - "npm:sort-keys@1.1.2": [ - { - "source": "npm:sort-keys@1.1.2", - "target": "npm:is-plain-obj", - "type": "static" - } - ], - "npm:sort-keys": [ - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj", - "type": "static" - } - ], - "npm:source-map-loader": [ - { - "source": "npm:source-map-loader", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:source-map-resolve": [ - { - "source": "npm:source-map-resolve", - "target": "npm:atob", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:resolve-url", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:source-map-url", - "type": "static" - }, - { - "source": "npm:source-map-resolve", - "target": "npm:urix", - "type": "static" - } - ], - "npm:source-map-support@0.5.13": [ - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:source-map-support@0.5.19": [ - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:source-map-support": [ - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:source-map@0.2.0": [ - { - "source": "npm:source-map@0.2.0", - "target": "npm:amdefine", - "type": "static" - } - ], - "npm:spdx-correct": [ - { - "source": "npm:spdx-correct", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids", - "type": "static" - } - ], - "npm:spdx-expression-parse": [ - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - } - ], - "npm:spdy-transport": [ - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:wbuf", - "type": "static" - } - ], - "npm:spdy": [ - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - } - ], - "npm:split-string": [ - { - "source": "npm:split-string", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - } - ], - "npm:split2": [ - { - "source": "npm:split2", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:split": [ - { - "source": "npm:split", - "target": "npm:through", - "type": "static" - } - ], - "npm:sshpk": [ - { - "source": "npm:sshpk", - "target": "npm:asn1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:bcrypt-pbkdf", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:dashdash", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:ecc-jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:getpass", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:tweetnacl", - "type": "static" - } - ], - "npm:ssri": [ - { - "source": "npm:ssri", - "target": "npm:minipass@5.0.0", - "type": "static" - } - ], - "npm:ssri@6.0.2": [ - { - "source": "npm:ssri@6.0.2", - "target": "npm:figgy-pudding", - "type": "static" - } - ], - "npm:ssri@8.0.0": [ - { - "source": "npm:ssri@8.0.0", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:ssri@9.0.1": [ - { - "source": "npm:ssri@9.0.1", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:stack-utils": [ - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - } - ], - "npm:static-extend": [ - { - "source": "npm:static-extend", - "target": "npm:define-property", - "type": "static" - }, - { - "source": "npm:static-extend", - "target": "npm:object-copy", - "type": "static" - } - ], - "npm:storybook-addon-performance": [ - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/addons", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/api", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/channels", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/components", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/core-events", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@storybook/theming", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@testing-library/dom@7.22.3", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@testing-library/jest-dom", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:@xstate/react", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:gzip-js", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:styled-components", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:tiny-invariant", - "type": "static" - }, - { - "source": "npm:storybook-addon-performance", - "target": "npm:xstate", - "type": "static" - } - ], - "npm:storybook-addon-swc": [ - { - "source": "npm:storybook-addon-swc", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:storybook-addon-swc", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:storybook-addon-swc", - "target": "npm:swc-loader", - "type": "static" - } - ], - "npm:storywright": [ - { - "source": "npm:storywright", - "target": "npm:playwright", - "type": "static" - }, - { - "source": "npm:storywright", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:storywright", - "target": "npm:yargs@16.2.0", - "type": "static" - } - ], - "npm:stream-browserify@2.0.2": [ - { - "source": "npm:stream-browserify@2.0.2", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:stream-browserify@2.0.2", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:stream-browserify": [ - { - "source": "npm:stream-browserify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:stream-browserify", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:stream-each": [ - { - "source": "npm:stream-each", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:stream-each", - "target": "npm:stream-shift", - "type": "static" - } - ], - "npm:stream-http@2.8.3": [ - { - "source": "npm:stream-http@2.8.3", - "target": "npm:builtin-status-codes", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:to-arraybuffer", - "type": "static" - }, - { - "source": "npm:stream-http@2.8.3", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:stream-http": [ - { - "source": "npm:stream-http", - "target": "npm:builtin-status-codes", - "type": "static" - }, - { - "source": "npm:stream-http", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:stream-http", - "target": "npm:readable-stream@3.6.0", - "type": "static" - }, - { - "source": "npm:stream-http", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:streamroller": [ - { - "source": "npm:streamroller", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:fs-extra@10.1.0", - "type": "static" - } - ], - "npm:string-length": [ - { - "source": "npm:string-length", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:string-length@5.0.1": [ - { - "source": "npm:string-length@5.0.1", - "target": "npm:char-regex@2.0.1", - "type": "static" - }, - { - "source": "npm:string-length@5.0.1", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - } - ], - "npm:string-width-cjs": [ - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:string-width": [ - { - "source": "npm:string-width", - "target": "npm:emoji-regex@8.0.0", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:string-width@1.0.2": [ - { - "source": "npm:string-width@1.0.2", - "target": "npm:code-point-at", - "type": "static" - }, - { - "source": "npm:string-width@1.0.2", - "target": "npm:is-fullwidth-code-point@1.0.0", - "type": "static" - }, - { - "source": "npm:string-width@1.0.2", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - } - ], - "npm:string-width@2.1.1": [ - { - "source": "npm:string-width@2.1.1", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - }, - { - "source": "npm:string-width@2.1.1", - "target": "npm:strip-ansi@4.0.0", - "type": "static" - } - ], - "npm:string-width@3.1.0": [ - { - "source": "npm:string-width@3.1.0", - "target": "npm:emoji-regex@7.0.3", - "type": "static" - }, - { - "source": "npm:string-width@3.1.0", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - }, - { - "source": "npm:string-width@3.1.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - } - ], - "npm:string-width@5.1.2": [ - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - } - ], - "npm:string.prototype.matchall": [ - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:string.prototype.padend": [ - { - "source": "npm:string.prototype.padend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.padend", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:string.prototype.padstart": [ - { - "source": "npm:string.prototype.padstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.padstart", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.padstart", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:string.prototype.trim": [ - { - "source": "npm:string.prototype.trim", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:string.prototype.trimend": [ - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:string.prototype.trimstart": [ - { - "source": "npm:string.prototype.trimstart", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:string_decoder": [ - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:string_decoder@1.1.1": [ - { - "source": "npm:string_decoder@1.1.1", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - } - ], - "npm:stringify-object": [ - { - "source": "npm:stringify-object", - "target": "npm:get-own-enumerable-property-symbols", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:is-obj", - "type": "static" - }, - { - "source": "npm:stringify-object", - "target": "npm:is-regexp", - "type": "static" - } - ], - "npm:strip-ansi-cjs": [ - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strip-ansi@6.0.1": [ - { - "source": "npm:strip-ansi@6.0.1", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strip-ansi": [ - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strip-ansi@3.0.1": [ - { - "source": "npm:strip-ansi@3.0.1", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - } - ], - "npm:strip-ansi@4.0.0": [ - { - "source": "npm:strip-ansi@4.0.0", - "target": "npm:ansi-regex@3.0.1", - "type": "static" - } - ], - "npm:strip-ansi@5.2.0": [ - { - "source": "npm:strip-ansi@5.2.0", - "target": "npm:ansi-regex@4.1.1", - "type": "static" - } - ], - "npm:strip-ansi@7.0.1": [ - { - "source": "npm:strip-ansi@7.0.1", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - } - ], - "npm:strip-bom@2.0.0": [ - { - "source": "npm:strip-bom@2.0.0", - "target": "npm:is-utf8", - "type": "static" - } - ], - "npm:strip-indent@1.0.1": [ - { - "source": "npm:strip-indent@1.0.1", - "target": "npm:get-stdin@4.0.1", - "type": "static" - } - ], - "npm:strip-indent": [ - { - "source": "npm:strip-indent", - "target": "npm:min-indent", - "type": "static" - } - ], - "npm:strip-outer": [ - { - "source": "npm:strip-outer", - "target": "npm:escape-string-regexp", - "type": "static" - } - ], - "npm:strong-log-transformer": [ - { - "source": "npm:strong-log-transformer", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:through", - "type": "static" - } - ], - "npm:strtok3": [ - { - "source": "npm:strtok3", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:peek-readable", - "type": "static" - } - ], - "npm:structured-source": [ - { - "source": "npm:structured-source", - "target": "npm:boundary", - "type": "static" - } - ], - "npm:style-loader": [ - { - "source": "npm:style-loader", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:style-loader", - "target": "npm:schema-utils@3.1.2", - "type": "static" - } - ], - "npm:style-loader@1.3.0": [ - { - "source": "npm:style-loader@1.3.0", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:style-loader@1.3.0", - "target": "npm:schema-utils@2.7.0", - "type": "static" - } - ], - "npm:style-to-object": [ - { - "source": "npm:style-to-object", - "target": "npm:inline-style-parser", - "type": "static" - } - ], - "npm:styled-components": [ - { - "source": "npm:styled-components", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@emotion/stylis", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:@emotion/unitless", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:babel-plugin-styled-components", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:css-to-react-native", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:styled-components", - "target": "npm:supports-color@5.5.0", - "type": "static" - } - ], - "npm:stylis-plugin-rtl": [ - { - "source": "npm:stylis-plugin-rtl", - "target": "npm:cssjanus", - "type": "static" - } - ], - "npm:supports-color@6.0.0": [ - { - "source": "npm:supports-color@6.0.0", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:supports-color@3.2.3": [ - { - "source": "npm:supports-color@3.2.3", - "target": "npm:has-flag@1.0.0", - "type": "static" - } - ], - "npm:supports-color@5.5.0": [ - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:supports-color@6.1.0": [ - { - "source": "npm:supports-color@6.1.0", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:supports-color": [ - { - "source": "npm:supports-color", - "target": "npm:has-flag@4.0.0", - "type": "static" - } - ], - "npm:supports-color@8.1.1": [ - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag@4.0.0", - "type": "static" - } - ], - "npm:supports-hyperlinks": [ - { - "source": "npm:supports-hyperlinks", - "target": "npm:has-flag@2.0.0", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:supports-color@5.5.0", - "type": "static" - } - ], - "npm:supports-hyperlinks@2.2.0": [ - { - "source": "npm:supports-hyperlinks@2.2.0", - "target": "npm:has-flag@4.0.0", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks@2.2.0", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:sver-compat": [ - { - "source": "npm:sver-compat", - "target": "npm:es6-iterator", - "type": "static" - }, - { - "source": "npm:sver-compat", - "target": "npm:es6-symbol", - "type": "static" - } - ], - "npm:swap-case": [ - { - "source": "npm:swap-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:swap-case", - "target": "npm:upper-case", - "type": "static" - } - ], - "npm:symbol.prototype.description": [ - { - "source": "npm:symbol.prototype.description", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:syncpack": [ - { - "source": "npm:syncpack", - "target": "npm:@effect/data@0.12.5", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:@effect/io", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:@effect/match", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:commander@11.0.0", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:cosmiconfig@8.2.0", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:fs-extra@11.1.1", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:minimatch@9.0.1", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:read-yaml-file", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:semver@7.5.2", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:tightrope", - "type": "static" - }, - { - "source": "npm:syncpack", - "target": "npm:ts-toolbelt", - "type": "static" - } - ], - "npm:table-layout": [ - { - "source": "npm:table-layout", - "target": "npm:array-back@4.0.2", - "type": "static" - }, - { - "source": "npm:table-layout", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:table-layout", - "target": "npm:typical", - "type": "static" - }, - { - "source": "npm:table-layout", - "target": "npm:wordwrapjs", - "type": "static" - } - ], - "npm:table": [ - { - "source": "npm:table", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:lodash.truncate", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:table", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:tabster": [ - { - "source": "npm:tabster", - "target": "npm:keyborg", - "type": "static" - }, - { - "source": "npm:tabster", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:tachometer": [ - { - "source": "npm:tachometer", - "target": "npm:ansi-escape-sequences", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:command-line-args", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:command-line-usage", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:csv-stringify", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:got@12.3.1", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:jsonschema", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:jstat", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-bodyparser", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-mount", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-node-resolve", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-send", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:koa-static", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:pkg-install", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:pkg-up@4.0.0", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:sanitize-filename", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:selenium-webdriver", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:systeminformation", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:table", - "type": "static" - }, - { - "source": "npm:tachometer", - "target": "npm:ua-parser-js", - "type": "static" - } - ], - "npm:tar-fs": [ - { - "source": "npm:tar-fs", - "target": "npm:chownr@1.1.4", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:mkdirp-classic", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:tar-stream", - "type": "static" - } - ], - "npm:tar-stream": [ - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:tar": [ - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:tar@4.4.19": [ - { - "source": "npm:tar@4.4.19", - "target": "npm:chownr@1.1.4", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:fs-minipass@1.2.7", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:minipass@2.9.0", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:minizlib@1.3.3", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:tar@4.4.19", - "target": "npm:yallist@3.1.1", - "type": "static" - } - ], - "npm:telejson": [ - { - "source": "npm:telejson", - "target": "npm:@types/is-function", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:global", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:is-function", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:isobject@4.0.0", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:telejson", - "target": "npm:memoizerific", - "type": "static" - } - ], - "npm:term-size@1.2.0": [ - { - "source": "npm:term-size@1.2.0", - "target": "npm:execa@0.7.0", - "type": "static" - } - ], - "npm:terser-webpack-plugin": [ - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript@6.0.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - } - ], - "npm:terser-webpack-plugin@1.4.5": [ - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:cacache@12.0.3", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:find-cache-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:is-wsl@1.1.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:schema-utils@1.0.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:terser@4.8.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@1.4.5", - "target": "npm:worker-farm", - "type": "static" - } - ], - "npm:terser-webpack-plugin@4.2.3": [ - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:jest-worker@26.6.2", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:serialize-javascript@5.0.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin@4.2.3", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:terser": [ - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:terser@4.8.0": [ - { - "source": "npm:terser@4.8.0", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:terser@4.8.0", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:test-exclude": [ - { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:through2-filter": [ - { - "source": "npm:through2-filter", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:through2-filter", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:through2@2.0.5": [ - { - "source": "npm:through2@2.0.5", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:through2@2.0.5", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:through2@3.0.1": [ - { - "source": "npm:through2@3.0.1", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:through2": [ - { - "source": "npm:through2", - "target": "npm:readable-stream@3.6.0", - "type": "static" - } - ], - "npm:through2@0.5.1": [ - { - "source": "npm:through2@0.5.1", - "target": "npm:readable-stream@1.0.34", - "type": "static" - }, - { - "source": "npm:through2@0.5.1", - "target": "npm:xtend@3.0.0", - "type": "static" - } - ], - "npm:timers-browserify": [ - { - "source": "npm:timers-browserify", - "target": "npm:setimmediate", - "type": "static" - } - ], - "npm:timers-ext": [ - { - "source": "npm:timers-ext", - "target": "npm:es5-ext", - "type": "static" - }, - { - "source": "npm:timers-ext", - "target": "npm:next-tick", - "type": "static" - } - ], - "npm:title-case": [ - { - "source": "npm:title-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:title-case", - "target": "npm:upper-case", - "type": "static" - } - ], - "npm:tmp": [ - { - "source": "npm:tmp", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:tmp@0.0.33": [ - { - "source": "npm:tmp@0.0.33", - "target": "npm:os-tmpdir", - "type": "static" - } - ], - "npm:to-absolute-glob": [ - { - "source": "npm:to-absolute-glob", - "target": "npm:is-absolute", - "type": "static" - }, - { - "source": "npm:to-absolute-glob", - "target": "npm:is-negated-glob", - "type": "static" - } - ], - "npm:to-camel-case": [ - { - "source": "npm:to-camel-case", - "target": "npm:to-space-case", - "type": "static" - } - ], - "npm:to-object-path": [ - { - "source": "npm:to-object-path", - "target": "npm:kind-of@3.2.2", - "type": "static" - } - ], - "npm:to-regex-range@2.1.1": [ - { - "source": "npm:to-regex-range@2.1.1", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:to-regex-range@2.1.1", - "target": "npm:repeat-string", - "type": "static" - } - ], - "npm:to-regex-range": [ - { - "source": "npm:to-regex-range", - "target": "npm:is-number@7.0.0", - "type": "static" - } - ], - "npm:to-regex": [ - { - "source": "npm:to-regex", - "target": "npm:define-property@2.0.2", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:extend-shallow@3.0.2", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:regex-not", - "type": "static" - }, - { - "source": "npm:to-regex", - "target": "npm:safe-regex", - "type": "static" - } - ], - "npm:to-space-case": [ - { - "source": "npm:to-space-case", - "target": "npm:to-no-case", - "type": "static" - } - ], - "npm:to-through": [ - { - "source": "npm:to-through", - "target": "npm:through2@2.0.5", - "type": "static" - } - ], - "npm:token-types": [ - { - "source": "npm:token-types", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:tough-cookie": [ - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:tough-cookie@4.1.2": [ - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie@4.1.2", - "target": "npm:url-parse", - "type": "static" - } - ], - "npm:tr46@1.0.1": [ - { - "source": "npm:tr46@1.0.1", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:tr46": [ - { - "source": "npm:tr46", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:trim-repeated": [ - { - "source": "npm:trim-repeated", - "target": "npm:escape-string-regexp", - "type": "static" - } - ], - "npm:trim-repeated@2.0.0": [ - { - "source": "npm:trim-repeated@2.0.0", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - } - ], - "npm:truncate-utf8-bytes": [ - { - "source": "npm:truncate-utf8-bytes", - "target": "npm:utf8-byte-length", - "type": "static" - } - ], - "npm:ts-invariant": [ - { - "source": "npm:ts-invariant", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:ts-jest": [ - { - "source": "npm:ts-jest", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - } - ], - "npm:ts-loader": [ - { - "source": "npm:ts-loader", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:ts-morph": [ - { - "source": "npm:ts-morph", - "target": "npm:@dsherret/to-absolute-glob", - "type": "static" - }, - { - "source": "npm:ts-morph", - "target": "npm:@ts-morph/common", - "type": "static" - }, - { - "source": "npm:ts-morph", - "target": "npm:code-block-writer", - "type": "static" - } - ], - "npm:ts-node": [ - { - "source": "npm:ts-node", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node10", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node12", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node14", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node16", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:arg", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:create-require", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:diff", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:v8-compile-cache-lib", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:yn", - "type": "static" - } - ], - "npm:tsconfig-paths-webpack-plugin": [ - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:tsconfig-paths@4.2.0", - "type": "static" - } - ], - "npm:tsconfig-paths": [ - { - "source": "npm:tsconfig-paths", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:tsconfig-paths@3.13.0": [ - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:@types/json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.13.0", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:tsconfig-paths@4.2.0": [ - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@4.2.0", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:tsutils": [ - { - "source": "npm:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:tuf-js": [ - { - "source": "npm:tuf-js", - "target": "npm:@tufjs/models", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:make-fetch-happen", - "type": "static" - } - ], - "npm:tunnel-agent": [ - { - "source": "npm:tunnel-agent", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:type-check@0.4.0": [ - { - "source": "npm:type-check@0.4.0", - "target": "npm:prelude-ls@1.2.1", - "type": "static" - } - ], - "npm:type-check": [ - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - } - ], - "npm:type-is": [ - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:typed-rest-client": [ - { - "source": "npm:typed-rest-client", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:typed-rest-client", - "target": "npm:tunnel", - "type": "static" - }, - { - "source": "npm:typed-rest-client", - "target": "npm:underscore", - "type": "static" - } - ], - "npm:typedarray-to-buffer": [ - { - "source": "npm:typedarray-to-buffer", - "target": "npm:is-typedarray", - "type": "static" - } - ], - "npm:unbox-primitive": [ - { - "source": "npm:unbox-primitive", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:which-boxed-primitive", - "type": "static" - } - ], - "npm:unbzip2-stream": [ - { - "source": "npm:unbzip2-stream", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:unbzip2-stream", - "target": "npm:through", - "type": "static" - } - ], - "npm:undertaker": [ - { - "source": "npm:undertaker", - "target": "npm:arr-flatten", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:arr-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:bach", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:collection-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:es6-weak-map", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:fast-levenshtein@1.1.4", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:last-run", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:object.defaults", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:object.reduce", - "type": "static" - }, - { - "source": "npm:undertaker", - "target": "npm:undertaker-registry", - "type": "static" - } - ], - "npm:unherit": [ - { - "source": "npm:unherit", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:unherit", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:unicode-match-property-ecmascript": [ - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-canonical-property-names-ecmascript", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-property-aliases-ecmascript", - "type": "static" - } - ], - "npm:unified@9.2.0": [ - { - "source": "npm:unified@9.2.0", - "target": "npm:bail", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:is-buffer@2.0.4", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:is-plain-obj@2.1.0", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:trough", - "type": "static" - }, - { - "source": "npm:unified@9.2.0", - "target": "npm:vfile", - "type": "static" - } - ], - "npm:unified": [ - { - "source": "npm:unified", - "target": "npm:bail", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:trough", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:vfile@2.3.0", - "type": "static" - }, - { - "source": "npm:unified", - "target": "npm:x-is-string", - "type": "static" - } - ], - "npm:union-value": [ - { - "source": "npm:union-value", - "target": "npm:arr-union", - "type": "static" - }, - { - "source": "npm:union-value", - "target": "npm:get-value", - "type": "static" - }, - { - "source": "npm:union-value", - "target": "npm:is-extendable", - "type": "static" - }, - { - "source": "npm:union-value", - "target": "npm:set-value", - "type": "static" - } - ], - "npm:unique-filename": [ - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - } - ], - "npm:unique-filename@2.0.1": [ - { - "source": "npm:unique-filename@2.0.1", - "target": "npm:unique-slug@3.0.0", - "type": "static" - } - ], - "npm:unique-filename@3.0.0": [ - { - "source": "npm:unique-filename@3.0.0", - "target": "npm:unique-slug@4.0.0", - "type": "static" - } - ], - "npm:unique-slug": [ - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:unique-slug@3.0.0": [ - { - "source": "npm:unique-slug@3.0.0", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:unique-slug@4.0.0": [ - { - "source": "npm:unique-slug@4.0.0", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:unique-stream": [ - { - "source": "npm:unique-stream", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:unique-stream", - "target": "npm:through2-filter", - "type": "static" - } - ], - "npm:unique-string": [ - { - "source": "npm:unique-string", - "target": "npm:crypto-random-string", - "type": "static" - } - ], - "npm:unist-util-remove-position": [ - { - "source": "npm:unist-util-remove-position", - "target": "npm:unist-util-visit@1.4.1", - "type": "static" - } - ], - "npm:unist-util-remove-position@2.0.1": [ - { - "source": "npm:unist-util-remove-position@2.0.1", - "target": "npm:unist-util-visit", - "type": "static" - } - ], - "npm:unist-util-remove": [ - { - "source": "npm:unist-util-remove", - "target": "npm:unist-util-is", - "type": "static" - } - ], - "npm:unist-util-stringify-position@2.0.2": [ - { - "source": "npm:unist-util-stringify-position@2.0.2", - "target": "npm:@types/unist", - "type": "static" - } - ], - "npm:unist-util-visit-parents@2.1.2": [ - { - "source": "npm:unist-util-visit-parents@2.1.2", - "target": "npm:unist-util-is@3.0.0", - "type": "static" - } - ], - "npm:unist-util-visit-parents": [ - { - "source": "npm:unist-util-visit-parents", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:unist-util-visit-parents", - "target": "npm:unist-util-is", - "type": "static" - } - ], - "npm:unist-util-visit": [ - { - "source": "npm:unist-util-visit", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-visit-parents", - "type": "static" - } - ], - "npm:unist-util-visit@1.4.1": [ - { - "source": "npm:unist-util-visit@1.4.1", - "target": "npm:unist-util-visit-parents@2.1.2", - "type": "static" - } - ], - "npm:universal-url": [ - { - "source": "npm:universal-url", - "target": "npm:hasurl", - "type": "static" - }, - { - "source": "npm:universal-url", - "target": "npm:whatwg-url@7.0.0", - "type": "static" - } - ], - "npm:unset-value": [ - { - "source": "npm:unset-value", - "target": "npm:has-value@0.3.1", - "type": "static" - }, - { - "source": "npm:unset-value", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:untildify@2.1.0": [ - { - "source": "npm:untildify@2.1.0", - "target": "npm:os-homedir", - "type": "static" - } - ], - "npm:unzipper": [ - { - "source": "npm:unzipper", - "target": "npm:big-integer", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:binary", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:bluebird@3.4.7", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:buffer-indexof-polyfill", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:duplexer2@0.1.4", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:fstream", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:listenercount", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:unzipper", - "target": "npm:setimmediate", - "type": "static" - } - ], - "npm:update-browserslist-db": [ - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:update-notifier": [ - { - "source": "npm:update-notifier", - "target": "npm:boxen@1.3.0", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:configstore", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:import-lazy@2.1.0", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:is-ci@1.2.1", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:is-installed-globally@0.1.0", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:is-npm", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:latest-version", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:semver-diff", - "type": "static" - }, - { - "source": "npm:update-notifier", - "target": "npm:xdg-basedir", - "type": "static" - } - ], - "npm:upper-case-first": [ - { - "source": "npm:upper-case-first", - "target": "npm:upper-case", - "type": "static" - } - ], - "npm:uri-js": [ - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:url-loader@4.1.1": [ - { - "source": "npm:url-loader@4.1.1", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:url-loader@4.1.1", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:url-loader@4.1.1", - "target": "npm:schema-utils@3.1.2", - "type": "static" - } - ], - "npm:url-parse-lax": [ - { - "source": "npm:url-parse-lax", - "target": "npm:prepend-http", - "type": "static" - } - ], - "npm:url-parse": [ - { - "source": "npm:url-parse", - "target": "npm:querystringify", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:url": [ - { - "source": "npm:url", - "target": "npm:punycode@1.3.2", - "type": "static" - }, - { - "source": "npm:url", - "target": "npm:querystring", - "type": "static" - } - ], - "npm:use-subscription": [ - { - "source": "npm:use-subscription", - "target": "npm:object-assign", - "type": "static" - } - ], - "npm:util.promisify": [ - { - "source": "npm:util.promisify", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:util.promisify", - "target": "npm:object.getownpropertydescriptors", - "type": "static" - } - ], - "npm:util@0.10.3": [ - { - "source": "npm:util@0.10.3", - "target": "npm:inherits@2.0.1", - "type": "static" - } - ], - "npm:util@0.11.1": [ - { - "source": "npm:util@0.11.1", - "target": "npm:inherits@2.0.3", - "type": "static" - } - ], - "npm:util": [ - { - "source": "npm:util", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-arguments", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:v8-to-istanbul": [ - { - "source": "npm:v8-to-istanbul", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map", - "type": "static" - } - ], - "npm:v8flags": [ - { - "source": "npm:v8flags", - "target": "npm:user-home", - "type": "static" - } - ], - "npm:v8flags@3.1.3": [ - { - "source": "npm:v8flags@3.1.3", - "target": "npm:homedir-polyfill", - "type": "static" - } - ], - "npm:validate-npm-package-license": [ - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - } - ], - "npm:validate-npm-package-name": [ - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - } - ], - "npm:validate-npm-package-name@3.0.0": [ - { - "source": "npm:validate-npm-package-name@3.0.0", - "target": "npm:builtins@1.0.3", - "type": "static" - } - ], - "npm:verror": [ - { - "source": "npm:verror", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:extsprintf", - "type": "static" - } - ], - "npm:vfile-message@1.1.1": [ - { - "source": "npm:vfile-message@1.1.1", - "target": "npm:unist-util-stringify-position", - "type": "static" - } - ], - "npm:vfile-message": [ - { - "source": "npm:vfile-message", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:vfile-message", - "target": "npm:unist-util-stringify-position@2.0.2", - "type": "static" - } - ], - "npm:vfile@2.3.0": [ - { - "source": "npm:vfile@2.3.0", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:vfile@2.3.0", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:vfile@2.3.0", - "target": "npm:unist-util-stringify-position", - "type": "static" - }, - { - "source": "npm:vfile@2.3.0", - "target": "npm:vfile-message@1.1.1", - "type": "static" - } - ], - "npm:vfile": [ - { - "source": "npm:vfile", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:is-buffer@2.0.4", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:replace-ext", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:unist-util-stringify-position@2.0.2", - "type": "static" - }, - { - "source": "npm:vfile", - "target": "npm:vfile-message", - "type": "static" - } - ], - "npm:vinyl-fs": [ - { - "source": "npm:vinyl-fs", - "target": "npm:fs-mkdirp-stream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:glob-stream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:is-valid-glob", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:lazystream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:lead", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:pumpify", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:remove-bom-buffer", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:remove-bom-stream", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:resolve-options", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:through2@2.0.5", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:to-through", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:value-or-function", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:vinyl", - "type": "static" - }, - { - "source": "npm:vinyl-fs", - "target": "npm:vinyl-sourcemap", - "type": "static" - } - ], - "npm:vinyl-sourcemap": [ - { - "source": "npm:vinyl-sourcemap", - "target": "npm:append-buffer", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:normalize-path@2.1.1", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:now-and-later", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:remove-bom-buffer", - "type": "static" - }, - { - "source": "npm:vinyl-sourcemap", - "target": "npm:vinyl", - "type": "static" - } - ], - "npm:vinyl-sourcemaps-apply": [ - { - "source": "npm:vinyl-sourcemaps-apply", - "target": "npm:source-map@0.5.7", - "type": "static" - } - ], - "npm:vinyl": [ - { - "source": "npm:vinyl", - "target": "npm:clone@2.1.2", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-buffer", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:clone-stats", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:cloneable-readable", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:remove-trailing-separator", - "type": "static" - }, - { - "source": "npm:vinyl", - "target": "npm:replace-ext", - "type": "static" - } - ], - "npm:vinyl@0.5.3": [ - { - "source": "npm:vinyl@0.5.3", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:vinyl@0.5.3", - "target": "npm:clone-stats@0.0.1", - "type": "static" - }, - { - "source": "npm:vinyl@0.5.3", - "target": "npm:replace-ext@0.0.1", - "type": "static" - } - ], - "npm:vrscreenshotdiff": [ - { - "source": "npm:vrscreenshotdiff", - "target": "npm:@octokit/rest@19.0.11", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:adal-node", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:azure-devops-node-api", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:azure-storage", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:azure-storage-simple", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:pixel-buffer-diff-folders", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:unzipper", - "type": "static" - }, - { - "source": "npm:vrscreenshotdiff", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:w3c-xmlserializer": [ - { - "source": "npm:w3c-xmlserializer", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:walker": [ - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - } - ], - "npm:watchpack-chokidar2": [ - { - "source": "npm:watchpack-chokidar2", - "target": "npm:chokidar@2.1.8", - "type": "static" - } - ], - "npm:watchpack@1.7.5": [ - { - "source": "npm:watchpack@1.7.5", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:watchpack@1.7.5", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:watchpack@1.7.5", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:watchpack@1.7.5", - "target": "npm:watchpack-chokidar2", - "type": "static" - } - ], - "npm:watchpack": [ - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:wbuf": [ - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - } - ], - "npm:wcwidth": [ - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - } - ], - "npm:webpack-bundle-analyzer": [ - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:commander@6.2.1", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:gzip-size@6.0.0", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:opener", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:sirv", - "type": "static" - }, - { - "source": "npm:webpack-bundle-analyzer", - "target": "npm:ws@7.5.6", - "type": "static" - } - ], - "npm:webpack-cli": [ - { - "source": "npm:webpack-cli", - "target": "npm:@discoveryjs/json-ext", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:@webpack-cli/configtest", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:@webpack-cli/info", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:@webpack-cli/serve", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:colorette@2.0.20", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:commander@7.2.0", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:fastest-levenshtein", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:interpret@2.2.0", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:rechoir@0.7.0", - "type": "static" - }, - { - "source": "npm:webpack-cli", - "target": "npm:webpack-merge", - "type": "static" - } - ], - "npm:webpack-dev-middleware": [ - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mem", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs@3.4.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils@3.1.2", - "type": "static" - } - ], - "npm:webpack-dev-middleware@3.7.3": [ - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:memory-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@3.7.3", - "target": "npm:webpack-log", - "type": "static" - } - ], - "npm:webpack-dev-middleware@5.3.1": [ - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:colorette@2.0.20", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:memfs@3.4.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.1", - "target": "npm:schema-utils@4.0.0", - "type": "static" - } - ], - "npm:webpack-dev-server": [ - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:colorette@2.0.20", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:del", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ipaddr.js", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:portfinder", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:schema-utils@4.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack-dev-middleware@5.3.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ws", - "type": "static" - } - ], - "npm:webpack-hot-middleware": [ - { - "source": "npm:webpack-hot-middleware", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:querystring", - "type": "static" - }, - { - "source": "npm:webpack-hot-middleware", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:webpack-log": [ - { - "source": "npm:webpack-log", - "target": "npm:ansi-colors@3.2.3", - "type": "static" - }, - { - "source": "npm:webpack-log", - "target": "npm:uuid@3.4.0", - "type": "static" - } - ], - "npm:webpack-merge": [ - { - "source": "npm:webpack-merge", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:wildcard", - "type": "static" - } - ], - "npm:webpack-merge@4.2.2": [ - { - "source": "npm:webpack-merge@4.2.2", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:webpack-sources": [ - { - "source": "npm:webpack-sources", - "target": "npm:source-list-map", - "type": "static" - }, - { - "source": "npm:webpack-sources", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:webpack-virtual-modules": [ - { - "source": "npm:webpack-virtual-modules", - "target": "npm:debug@3.2.7", - "type": "static" - } - ], - "npm:webpack@4.46.0": [ - { - "source": "npm:webpack@4.46.0", - "target": "npm:@webassemblyjs/ast@1.9.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:@webassemblyjs/helper-module-context", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:@webassemblyjs/wasm-edit@1.9.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:@webassemblyjs/wasm-parser@1.9.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:acorn@6.4.1", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:enhanced-resolve@4.5.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:eslint-scope@4.0.3", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:json-parse-better-errors", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:loader-runner@2.4.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:loader-utils@1.4.2", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:memory-fs", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:micromatch@3.1.10", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:node-libs-browser", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:schema-utils@1.0.0", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:terser-webpack-plugin@1.4.5", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:watchpack@1.7.5", - "type": "static" - }, - { - "source": "npm:webpack@4.46.0", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:webpack": [ - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.1.2", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable@2.2.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources@3.2.3", - "type": "static" - } - ], - "npm:websocket-driver": [ - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - } - ], - "npm:whatwg-encoding": [ - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite", - "type": "static" - } - ], - "npm:whatwg-url": [ - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:whatwg-url@5.0.0": [ - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:tr46@0.0.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:webidl-conversions@3.0.1", - "type": "static" - } - ], - "npm:whatwg-url@7.0.0": [ - { - "source": "npm:whatwg-url@7.0.0", - "target": "npm:lodash.sortby", - "type": "static" - }, - { - "source": "npm:whatwg-url@7.0.0", - "target": "npm:tr46@1.0.1", - "type": "static" - }, - { - "source": "npm:whatwg-url@7.0.0", - "target": "npm:webidl-conversions@4.0.2", - "type": "static" - } - ], - "npm:which-boxed-primitive": [ - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-bigint", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-symbol", - "type": "static" - } - ], - "npm:which-typed-array": [ - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:foreach", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:which": [ - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:which@2.0.2": [ - { - "source": "npm:which@2.0.2", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:which@3.0.1": [ - { - "source": "npm:which@3.0.1", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:wide-align@1.1.3": [ - { - "source": "npm:wide-align@1.1.3", - "target": "npm:string-width@2.1.1", - "type": "static" - } - ], - "npm:wide-align": [ - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - } - ], - "npm:widest-line@2.0.1": [ - { - "source": "npm:widest-line@2.0.1", - "target": "npm:string-width@2.1.1", - "type": "static" - } - ], - "npm:widest-line": [ - { - "source": "npm:widest-line", - "target": "npm:string-width", - "type": "static" - } - ], - "npm:wordwrapjs": [ - { - "source": "npm:wordwrapjs", - "target": "npm:reduce-flatten", - "type": "static" - }, - { - "source": "npm:wordwrapjs", - "target": "npm:typical", - "type": "static" - } - ], - "npm:worker-farm": [ - { - "source": "npm:worker-farm", - "target": "npm:errno", - "type": "static" - } - ], - "npm:worker-rpc": [ - { - "source": "npm:worker-rpc", - "target": "npm:microevent.ts", - "type": "static" - } - ], - "npm:workspace-tools": [ - { - "source": "npm:workspace-tools", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:workspace-tools", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:workspace-tools@0.27.0": [ - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:git-url-parse", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:workspace-tools@0.27.0", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:wrap-ansi-cjs": [ - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:wrap-ansi": [ - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:wrap-ansi@2.1.0": [ - { - "source": "npm:wrap-ansi@2.1.0", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@2.1.0", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - } - ], - "npm:wrap-ansi@5.1.0": [ - { - "source": "npm:wrap-ansi@5.1.0", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@5.1.0", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@5.1.0", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - } - ], - "npm:wrap-ansi@6.2.0": [ - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:wrap-ansi@8.1.0": [ - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.0.1", - "type": "static" - } - ], - "npm:write-file-atomic@5.0.1": [ - { - "source": "npm:write-file-atomic@5.0.1", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@5.0.1", - "target": "npm:signal-exit@4.0.2", - "type": "static" - } - ], - "npm:write-file-atomic": [ - { - "source": "npm:write-file-atomic", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:write-file-atomic@3.0.3": [ - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic@3.0.3", - "target": "npm:typedarray-to-buffer", - "type": "static" - } - ], - "npm:write-file-atomic@4.0.2": [ - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:write-file-webpack-plugin": [ - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:filesize@3.6.1", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:moment", - "type": "static" - }, - { - "source": "npm:write-file-webpack-plugin", - "target": "npm:write-file-atomic", - "type": "static" - } - ], - "npm:write-json-file": [ - { - "source": "npm:write-json-file", - "target": "npm:detect-indent", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:write-json-file", - "target": "npm:write-file-atomic", - "type": "static" - } - ], - "npm:write-pkg": [ - { - "source": "npm:write-pkg", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:type-fest@0.4.1", - "type": "static" - }, - { - "source": "npm:write-pkg", - "target": "npm:write-json-file", - "type": "static" - } - ], - "npm:x-default-browser": [ - { - "source": "npm:x-default-browser", - "target": "npm:default-browser-id", - "type": "static" - } - ], - "npm:xml2js": [ - { - "source": "npm:xml2js", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:xml2js", - "target": "npm:xmlbuilder", - "type": "static" - } - ], - "npm:xml2js@0.2.8": [ - { - "source": "npm:xml2js@0.2.8", - "target": "npm:sax@0.5.8", - "type": "static" - } - ], - "npm:yargs-parser": [ - { - "source": "npm:yargs-parser", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser", - "target": "npm:decamelize", - "type": "static" - } - ], - "npm:yargs-parser@18.1.3": [ - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:decamelize", - "type": "static" - } - ], - "npm:yargs-parser@5.0.0": [ - { - "source": "npm:yargs-parser@5.0.0", - "target": "npm:camelcase@3.0.0", - "type": "static" - } - ], - "npm:yargs-unparser@1.6.0": [ - { - "source": "npm:yargs-unparser@1.6.0", - "target": "npm:flat@4.1.0", - "type": "static" - }, - { - "source": "npm:yargs-unparser@1.6.0", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:yargs-unparser@1.6.0", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:yargs-unparser": [ - { - "source": "npm:yargs-unparser", - "target": "npm:camelcase@6.2.1", - "type": "static" - }, - { - "source": "npm:yargs-unparser", - "target": "npm:decamelize@4.0.0", - "type": "static" - }, - { - "source": "npm:yargs-unparser", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:yargs-unparser", - "target": "npm:is-plain-obj@2.1.0", - "type": "static" - } - ], - "npm:yargs": [ - { - "source": "npm:yargs", - "target": "npm:cliui@5.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width@3.1.0", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:yargs@16.2.0": [ - { - "source": "npm:yargs@16.2.0", - "target": "npm:cliui@7.0.4", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:y18n@5.0.5", - "type": "static" - }, - { - "source": "npm:yargs@16.2.0", - "target": "npm:yargs-parser@20.2.4", - "type": "static" - } - ], - "npm:yargs@15.4.1": [ - { - "source": "npm:yargs@15.4.1", - "target": "npm:cliui@6.0.0", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:yargs-parser@18.1.3", - "type": "static" - } - ], - "npm:yargs@17.7.2": [ - { - "source": "npm:yargs@17.7.2", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:y18n@5.0.5", - "type": "static" - }, - { - "source": "npm:yargs@17.7.2", - "target": "npm:yargs-parser@21.1.1", - "type": "static" - } - ], - "npm:yargs@7.1.0": [ - { - "source": "npm:yargs@7.1.0", - "target": "npm:camelcase@3.0.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:cliui@3.2.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:get-caller-file@1.0.3", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:os-locale", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:read-pkg-up@1.0.1", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:require-main-filename@1.0.1", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:string-width@1.0.2", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:which-module@1.0.0", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:y18n@3.2.2", - "type": "static" - }, - { - "source": "npm:yargs@7.1.0", - "target": "npm:yargs-parser@5.0.0", - "type": "static" - } - ], - "npm:yauzl": [ - { - "source": "npm:yauzl", - "target": "npm:buffer-crc32", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:fd-slicer", - "type": "static" - } - ], - "npm:z-schema": [ - { - "source": "npm:z-schema", - "target": "npm:lodash.get", - "type": "static" - }, - { - "source": "npm:z-schema", - "target": "npm:lodash.isequal", - "type": "static" - }, - { - "source": "npm:z-schema", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:z-schema", - "target": "npm:commander", - "type": "static" - } - ] - }, - "version": "6.0" -} diff --git a/.nx/cache/run.json b/.nx/cache/run.json deleted file mode 100644 index 95e6a40cdd482..0000000000000 --- a/.nx/cache/run.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "run": { - "command": "cli run build:info", - "startTime": "2024-01-04T20:23:26.790Z", - "endTime": "2024-01-04T20:28:19.706Z", - "inner": false - }, - "tasks": [ - { - "taskId": "@fluentui/react-component-ref:build:info", - "target": "build:info", - "projectName": "@fluentui/react-component-ref", - "hash": "6676604441482990855", - "startTime": "2024-01-04T20:23:26.820Z", - "endTime": "2024-01-04T20:25:56.329Z", - "params": "", - "cacheStatus": "cache-miss", - "status": 0 - }, - { - "taskId": "@fluentui/react-bindings:build:info", - "target": "build:info", - "projectName": "@fluentui/react-bindings", - "hash": "1491914349901281437", - "startTime": "2024-01-04T20:25:56.330Z", - "endTime": "2024-01-04T20:26:37.923Z", - "params": "", - "cacheStatus": "cache-miss", - "status": 0 - }, - { - "taskId": "@fluentui/react-northstar:build:info", - "target": "build:info", - "projectName": "@fluentui/react-northstar", - "hash": "12681223089485204946", - "startTime": "2024-01-04T20:26:37.923Z", - "endTime": "2024-01-04T20:28:19.706Z", - "params": "", - "cacheStatus": "cache-miss", - "status": 0 - } - ] -} diff --git a/.nx/cache/terminalOutputs/12681223089485204946 b/.nx/cache/terminalOutputs/12681223089485204946 deleted file mode 100644 index e87ca269dd84d..0000000000000 --- a/.nx/cache/terminalOutputs/12681223089485204946 +++ /dev/null @@ -1,8 +0,0 @@ - -> @fluentui/react-northstar@0.66.4 build:info -> gulp build:component-info - -[12:27:27] Requiring external module @fluentui/scripts-babel/register -[12:28:15] Using gulpfile C:\git1\office-ui-fabric-react\packages\fluentui\react-northstar\gulpfile.ts -[12:28:15] Starting 'build:component-info'... -[12:28:19] Finished 'build:component-info' after 4.3 s diff --git a/.nx/cache/terminalOutputs/1491914349901281437 b/.nx/cache/terminalOutputs/1491914349901281437 deleted file mode 100644 index ac25298b61542..0000000000000 --- a/.nx/cache/terminalOutputs/1491914349901281437 +++ /dev/null @@ -1,8 +0,0 @@ - -> @fluentui/react-bindings@0.66.4 build:info -> gulp build:component-info - -[12:26:09] Requiring external module @fluentui/scripts-babel/register -[12:26:36] Using gulpfile C:\git1\office-ui-fabric-react\packages\fluentui\react-bindings\gulpfile.ts -[12:26:36] Starting 'build:component-info'... -[12:26:36] Finished 'build:component-info' after 619 ms diff --git a/.nx/cache/terminalOutputs/6676604441482990855 b/.nx/cache/terminalOutputs/6676604441482990855 deleted file mode 100644 index 6ef4a65ac752e..0000000000000 --- a/.nx/cache/terminalOutputs/6676604441482990855 +++ /dev/null @@ -1,8 +0,0 @@ - -> @fluentui/react-component-ref@0.66.4 build:info -> gulp build:component-info - -[12:24:18] Requiring external module @fluentui/scripts-babel/register -[12:25:55] Using gulpfile C:\git1\office-ui-fabric-react\packages\fluentui\react-component-ref\gulpfile.ts -[12:25:55] Starting 'build:component-info'... -[12:25:56] Finished 'build:component-info' after 179 ms From 9803a2d1f03b32f23e333e8c023c21f73a6bfb93 Mon Sep 17 00:00:00 2001 From: Mason Tejera <17346018+mltejera@users.noreply.github.com> Date: Fri, 5 Jan 2024 10:04:08 -0800 Subject: [PATCH 5/5] Update packages/react-components/react-nav-preview/src/components/Nav/index.ts Co-authored-by: Makoto Morimoto --- .../react-nav-preview/src/components/Nav/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/react-components/react-nav-preview/src/components/Nav/index.ts b/packages/react-components/react-nav-preview/src/components/Nav/index.ts index a95587cb093b9..79337d0b9e440 100644 --- a/packages/react-components/react-nav-preview/src/components/Nav/index.ts +++ b/packages/react-components/react-nav-preview/src/components/Nav/index.ts @@ -1,5 +1,4 @@ export { Nav } from './Nav'; -// don't export evenData and EventHandler since those will be added to react-utilities export type { NavSlots, NavProps, OnNavItemSelectData, NavState } from './Nav.types'; export { renderNav_unstable } from './renderNav'; export { useNav_unstable } from './useNav';